diff --git a/README.md b/README.md index d03d9d03..293f5b17 100644 --- a/README.md +++ b/README.md @@ -5,240 +5,5 @@ Galaxy Communities Dock aka Galaxy Codex is a catalog of Galaxy resources (tools This repository stores the sources to build this catalog. The catalog is automatically updated every week. -**The generated data of the catalog can be found in the dedicated [results branch](https://github.com/galaxyproject/galaxy_codex/tree/results)** Any Galaxy community can be added to this project and benefit from the dedicated resources, including interactive tables that can be embedded into subdomains and website via an iframe. **Learn [how to add your community](https://training.galaxyproject.org/training-material//topics/dev/tutorials/community-tool-table/tutorial.html) in the dedicated GTN toturial**. - -# Prepare environment - -- Install virtualenv (if not already there) - - ``` - $ python3 -m pip install --user virtualenv - ``` - -- Create virtual environment - - ``` - $ python3 -m venv env - ``` - -- Activate virtual environment - - ``` - $ source env/bin/activate - ``` - -- Install requirements - - ``` - $ python3 -m pip install -r requirements.txt - ``` - -# Extract Galaxy Tool Suites - -![plot](docs/images/Preprint_flowchart.png) - -This tool automatically collects a table of all available Galaxy tool suites including their metadata. Therefore, various sources are parsed to collect the metadata, such as: -* GitHub (parsing each tool wrapper) -* bio.tools -* Bioconda -* Galaxy server (availability, statistics) - -The created table can be filtered to only show the tools relevant for a specific community. - -The tool table benefits from EDAM annotations of the tools, this requires, that the tools are annotation via bio.tools. -**Learn [how to improve metadata for Galaxy tools using the bio.tools registry](https://training.galaxyproject.org/training-material//topics/dev/tutorials/tool-annotation/tutorial.html)**. - -## Extract tool suites and filter per community automatically - -A GitHub action performs every week the following steps: - -- Extract all tools by - 1. Parsing tool GitHub repository from [Planemo monitor listed](https://github.com/galaxyproject/planemo-monitor) - 2. Checking in each repo, their `.shed.yaml` file and filter for categories, such as metagenomics - 3. Extracting metadata from the `.shed.yaml` - 4. Extracting the requirements in the macros or xml to get version supported in Galaxy - 5. Checking available against conda version - 6. Extracting bio.tools information if available in the macros or xml - 7. Checking available on the 3 main galaxy instances (usegalaxy.eu, usegalaxy.org, usegalaxy.org.au) - 8. Getting usage statistics form usegalaxy.eu -- Create an interactive table for all tools: [All tools](https://galaxyproject.github.io/galaxy_tool_metadata_extractor/) -- Filter the tool suite per community -- Create an interactive table for all registered communities, e.g. [microGalaxy](https://galaxyproject.github.io/galaxy_tool_metadata_extractor/microgalaxy/) - -## Extract all tools outside a GitHub Action - -1. Get an API key ([personal token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)) for GitHub -2. Export the GitHub API key as an environment variable: - - ``` - $ export GITHUB_API_KEY= - ``` - -3. Run the script to extract all tools - - ``` - $ bash bin/extract_all_tools.sh - ``` - -The script will generate a TSV file with each tool found in the list of GitHub repositories and metadata for these tools: - -1. Galaxy wrapper id -2. Description -3. bio.tool id -4. bio.tool name -5. bio.tool description -6. EDAM operation -7. EDAM topic -8. Status -9. Source -10. ToolShed categories -11. ToolShed id -12. Galaxy wrapper owner -13. Galaxy wrapper source -14. Galaxy wrapper version -15. Conda id -16. Conda version - -## Filter tools based on their categories in the ToolShed outside a GitHub Action - -1. Run the extraction as explained before -2. (Optional) Create a text file with ToolShed categories for which tools need to be extracted: 1 ToolShed category per row ([example for microbial data analysis](data/microgalaxy/categories)) -3. (Optional) Create a TSV (tabular) file with tool status (1 tool suite per row) as 3 columns: - - ToolShed ids of tool suites (one per line) - - Boolean with True to keep and False to exclude - - Boolean with True if deprecated and False if not - - [Example for microbial data analysis](data/microgalaxy/tools_to_keep_exclude.tsv) - -4. Run the tool extractor script - - ``` - $ python bin/extract_galaxy_tools.py \ - filter \ - --all \ - --ts-filtered - --filtered \ - [--categories ] \ - [--status ] - ``` - -# Training - -Materials are extracted from the Galaxy Training Network and extended with information from Plausible (visits), YouTube (views), feedback and tools. - -## Extract training material and filter per community automatically - -A GitHub action performs every week the following steps: - -- Extract all training by - 1. Parsing the GTN API - 2. Adding EDAM operations from the tools used in the tutorial - 3. Adding visit stats using the Plausible API - 4. Adding video view stats using YouTube API - 5. Adding feedback from the GTN API -- Create an interactive table for all tutorials -- Filter the training per community based on tags -- Create an interactive table for all registered communities - -## Extract tutorials from GTN outside a GitHub Action - -1. Get an API key ([personal token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)) for Plausible -2. Export the Plausible API key as an environment variable: - - ``` - $ export PLAUSIBLE_API_KEY= - ``` - -3. Run the script - - ``` - $ bash bin/extract_all_tutorials.sh - ``` - -## Filter tutorials based on tags outside a GitHub Action - -1. Run the extraction as explained before -2. Create a file named `tutorial_tags` in your community `data` folder with the list of tutorial tags to keep -3. Run the following command - - ``` - $ python bin/extract_gtn_tutorials.py \ - filter\ - --all "results/all_tutorials.json" \ - --filtered "results//tutorials.tsv" \ - --tags "data/communities//tutorial_tags" - ``` - -## Export - -### Generate wordcloud - -Example to generate a wordcloud for the Galaxy tool suites with size of names of tool suites depends on the number of tool users in 2022-2023 on usegalaxy.eu: - -![](results/all_tools_wordcloud.png) - -```bash -$ python bin/create_wordcloud.py \ - --table "results/all_tools.tsv" \ - --name_col "Galaxy wrapper id" \ - --stat_col "No. of tool users (2022-2023) (usegalaxy.eu)" \ - --wordcloud_mask "data/usage_stats/wordcloud_mask.png" \ - --output "results/all_tools_wordcloud.png" \ -``` - -### Create interactive table in HTML - -Example to generate an HTML file with an interactive table with microGalaxy tools that should be kept (`True` in `To keep` column) - -```bash -$ python bin/create_interactive_table.py \ - --table "results/microgalaxy/tools.tsv" \ - --remove-col "Reviewed" \ - --remove-col "To keep" \ - --filter-col "To keep" \ - --template "data/interactive_table_template.html" \ - --output "results/microgalaxy/index.html" -``` - -## Development - -### Tools - -To make a test run of the tool to check its functionalities follow [Usage](#Usage) to set-up the environnement and the API key, then run - -1. Tool extraction - - ```bash - $ bash bin/extract_all_tools.sh test - ``` - - This runs the tool, but only parses the test repository [Galaxy-Tool-Metadata-Extractor-Test-Wrapper](https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper) - -2. Tool filter - - ```bash - $ bash bin/get_community_tools.sh test - ``` - -3. Create interactive table and wordcloud - - ```bash - $ bash bin/format_tools.sh - ``` - -### Tutorials - -1. Tutorial extraction - - ```bash - $ bash bin/extract_all_tutorials.sh test - ``` - -2. Tutorial filtering - - ```bash - $ bash bin/get_community_tutorials.sh test - ``` - diff --git a/bin/extract_all_tutorials.sh b/bin/extract_all_tutorials.sh deleted file mode 100644 index 48592c0b..00000000 --- a/bin/extract_all_tutorials.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash - -if [ ! -z $1 ] -then - python bin/extract_gtn_tutorials.py \ - extract \ - --all "results/test_tutorials.json" \ - --tools "results/all_tools.json" \ - --api $PLAUSIBLE_API_KEY \ - --test -else - python bin/extract_gtn_tutorials.py \ - extract \ - --all "results/all_tutorials.json" \ - --tools "results/all_tools.json" \ - --api $PLAUSIBLE_API_KEY -fi \ No newline at end of file diff --git a/bin/format_tools.sh b/bin/format_tools.sh deleted file mode 100755 index df2fae4a..00000000 --- a/bin/format_tools.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -mkdir -p 'results/' - -python bin/create_interactive_table.py \ - --input "results/all_tools.tsv" \ - --template "data/interactive_table_template.html" \ - --output "results/tools.html" - -python bin/create_wordcloud.py \ - --input "results/all_tools.tsv" \ - --name-col "Galaxy wrapper id" \ - --stat-col "No. of tool users (2022-2023) (usegalaxy.eu)" \ - --wordcloud_mask "data/usage_stats/wordcloud_mask.png" \ - --output "results/all_tools_wordcloud.png" \ \ No newline at end of file diff --git a/bin/get_community_tools.sh b/bin/get_community_tools.sh deleted file mode 100755 index 33921a56..00000000 --- a/bin/get_community_tools.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/usr/bin/env bash - -# stop on error -set -e - -if [[ ! -z $1 && $1 == "test" ]]; then - python bin/extract_galaxy_tools.py \ - filter \ - --all "results/all_tools.json" \ - --ts-filtered "results/microgalaxy/tools_filtered_by_ts_categories.tsv" \ - --filtered "results/microgalaxy/tools.tsv" \ - --categories "data/communities/microgalaxy/categories" \ - --status "data/communities/microgalaxy/tool_status.tsv" - - python bin/create_interactive_table.py \ - --input "results/microgalaxy/tools.tsv" \ - --remove-col "Reviewed" \ - --remove-col "To keep" \ - --filter-col "To keep" \ - --template "data/interactive_table_template.html" \ - --output "results/microgalaxy/tools.html" - - python bin/create_wordcloud.py \ - --input "results/microgalaxy/tools.tsv" \ - --name-col "Galaxy wrapper id" \ - --stat-col "No. of tool users (2022-2023) (usegalaxy.eu)" \ - --wordcloud_mask "data/usage_stats/wordcloud_mask.png" \ - --output "results/microgalaxy/tools_wordcloud.png" - -else - for com_data_fp in data/communities/* ; do - if [[ -d "$com_data_fp" && ! -L "$com_data_fp" ]]; then - community=`basename "$com_data_fp"` - - echo "$community"; - - mkdir -p "results/$community" - - python bin/extract_galaxy_tools.py \ - filter \ - --all "results/all_tools.json" \ - --ts-filtered "results/$community/tools_filtered_by_ts_categories.tsv" \ - --filtered "results/$community/tools.tsv" \ - --categories "data/communities/$community/categories" \ - --status "data/communities/$community/tool_status.tsv" - - python bin/create_interactive_table.py \ - --input "results/$community/tools.tsv" \ - --remove-col "Reviewed" \ - --remove-col "To keep" \ - --filter-col "To keep" \ - --template "data/interactive_table_template.html" \ - --output "results/$community/tools.html" - - python bin/create_wordcloud.py \ - --input "results/$community/tools.tsv" \ - --name-col "Galaxy wrapper id" \ - --stat-col "No. of tool users (2022-2023) (usegalaxy.eu)" \ - --wordcloud_mask "data/usage_stats/wordcloud_mask.png" \ - --output "results/$community/tools_wordcloud.png" - - fi; - done -fi - - diff --git a/bin/get_community_tutorials.sh b/bin/get_community_tutorials.sh deleted file mode 100644 index 5546fb3e..00000000 --- a/bin/get_community_tutorials.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env bash - -if [ ! -z $1 ] -then - python bin/extract_gtn_tutorials.py \ - filter \ - --all "results/test_tutorials.json" \ - --filtered "results/microgalaxy/test_tutorials.tsv" \ - --tags "data/communities/microgalaxy/tutorial_tags" - - python bin/create_interactive_table.py \ - --input "results/microgalaxy/tutorials.tsv" \ - --template "data/interactive_table_template.html" \ - --output "results/microgalaxy/tutorials.html" - -else - for com_data_fp in data/communities/* ; do - if [[ -d "$com_data_fp" && ! -L "$com_data_fp" ]]; then - community=`basename "$com_data_fp"` - - echo "$community"; - - if [[ -f "data/communities/$community/tutorial_tags" && -f "results/$community/tutorials.tsv" ]]; then - - python bin/extract_gtn_tutorials.py \ - filter \ - --all "results/all_tutorials.json" \ - --filtered "results/$community/tutorials.tsv" \ - --tags "data/communities/$community/tutorial_tags" - - python bin/create_interactive_table.py \ - --input "results/$community/tutorials.tsv" \ - --template "data/interactive_table_template.html" \ - --output "results/$community/tutorials.html" - fi; - fi; - done -fi diff --git a/bin/update_tools_to_keep_exclude.sh b/bin/update_tools_to_keep_exclude.sh deleted file mode 100644 index 0b555533..00000000 --- a/bin/update_tools_to_keep_exclude.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash - -for com_data_fp in data/communities/* ; do - if [[ -d "$com_data_fp" && ! -L "$com_data_fp" ]]; then - community=`basename "$com_data_fp"` - - echo "$community"; - - if [[ -f "data/communities/$community/tools_to_exclude" && -f "data/communities/$community/tools_to_keep" && -f "results/$community/tutorials.tsv" ]]; then - - python bin/compare_tools.py \ - --filtered_tutorials "results/$community/tutorials.tsv" \ - --exclude "data/communities/$community/tools_to_exclude" \ - --keep "data/communities/$community/tools_to_keep" \ - --all_tools "results/all_tools.tsv" - fi; - fi; -done \ No newline at end of file diff --git a/communities/all/resources/test_tools.json b/communities/all/resources/test_tools.json new file mode 100644 index 00000000..106bbde3 --- /dev/null +++ b/communities/all/resources/test_tools.json @@ -0,0 +1,424 @@ +[ + { + "Galaxy wrapper id": "2d_auto_threshold", + "Galaxy tool ids": [ + "ip_threshold" + ], + "Description": "Automatic thresholding", + "bio.tool id": "scikit-image", + "bio.tool ids": [ + "scikit-image" + ], + "biii": "scikit-image", + "bio.tool name": "scikit-image", + "bio.tool description": "Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.", + "EDAM operation": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "2d_auto_threshold", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/", + "Galaxy wrapper parsed folder": "https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/2d_auto_threshold", + "Galaxy wrapper version": "0.0.6-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 6541 + }, + { + "Galaxy wrapper id": "abritamr", + "Galaxy tool ids": [ + "abritamr" + ], + "Description": "A pipeline for running AMRfinderPlus and collating results into functional classes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://zenodo.org/record/7370628", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "abritamr", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamr", + "Galaxy wrapper parsed folder": "https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/abritamr", + "Galaxy wrapper version": "1.0.14", + "Conda id": "abritamr", + "Conda version": "1.0.19", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "aldex2", + "Galaxy tool ids": [ + "aldex2" + ], + "Description": "Performs analysis Of differential abundance taking sample variation into account", + "bio.tool id": "aldex2", + "bio.tool ids": [ + "aldex2" + ], + "biii": null, + "bio.tool name": "ALDEx2", + "bio.tool description": "A differential abundance analysis for the comparison of two or more conditions. It uses a Dirichlet-multinomial model to infer abundance from counts, that has been optimized for three or more experimental replicates. Infers sampling variation and calculates the expected FDR given the biological and sampling variation using the Wilcox rank test and Welches t-test, or the glm and Kruskal Wallis tests. Reports both P and fdr values calculated by the Benjamini Hochberg correction.", + "EDAM operation": [ + "Statistical inference" + ], + "EDAM topic": [ + "Gene expression", + "Statistics and probability" + ], + "Status": "To update", + "Source": "https://github.com/ggloor/ALDEx_bioc", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "aldex2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2", + "Galaxy wrapper parsed folder": "https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/aldex2", + "Galaxy wrapper version": "1.26.0", + "Conda id": "bioconductor-aldex2", + "Conda version": "1.34.0", + "EDAM operation (no superclasses)": [ + "Statistical inference" + ], + "EDAM topic (no superclasses)": [ + "Gene expression", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 129 + }, + { + "Galaxy wrapper id": "fastp", + "Galaxy tool ids": [ + "fastp" + ], + "Description": "Fast all-in-one preprocessing for FASTQ files", + "bio.tool id": "fastp", + "bio.tool ids": [ + "fastp" + ], + "biii": null, + "bio.tool name": "fastp", + "bio.tool description": "A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance.", + "EDAM operation": [ + "Sequencing quality control", + "Sequence contamination filtering" + ], + "EDAM topic": [ + "Sequence analysis", + "Probes and primers" + ], + "Status": "To update", + "Source": "https://github.com/OpenGene/fastp", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fastp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastp", + "Galaxy wrapper parsed folder": "https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/fastp", + "Galaxy wrapper version": null, + "Conda id": "fastp", + "Conda version": "0.23.4", + "EDAM operation (no superclasses)": [ + "Sequence contamination filtering" + ], + "EDAM topic (no superclasses)": [ + "Probes and primers" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2803, + "Total tool usage (usegalaxy.eu)": 1055760 + }, + { + "Galaxy wrapper id": "spades", + "Galaxy tool ids": [ + "spades_biosyntheticspades", + "spades_coronaspades", + "spades_metaplasmidspades", + "metaspades", + "spades_metaviralspades", + "spades_plasmidspades", + "rnaspades", + "spades_rnaviralspades", + "spades" + ], + "Description": "SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction.", + "bio.tool id": "spades", + "bio.tool ids": [ + "rnaspades", + "spades", + "metaplasmidspades", + "rnaviralspades", + "coronaspades", + "biosyntheticspades", + "metaspades", + "plasmidspades", + "metaviralspades" + ], + "biii": null, + "bio.tool name": "SPAdes", + "bio.tool description": "St. Petersburg genome assembler \u2013 is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads.", + "EDAM operation": [ + "Genome assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://github.com/ablab/spades", + "ToolShed categories": [ + "Assembly", + "RNA", + "Metagenomics" + ], + "ToolShed id": "spades", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades", + "Galaxy wrapper parsed folder": "https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/spades", + "Galaxy wrapper version": "3.15.5", + "Conda id": "spades", + "Conda version": "4.0.0", + "EDAM operation (no superclasses)": [ + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 9, + "Available on UseGalaxy.org.au": 9, + "Available on UseGalaxy.eu": 9, + "Available on UseGalaxy.fr": 9, + "Tools available on UseGalaxy.org (Main)": 9, + "Tools available on UseGalaxy.org.au": 9, + "Tools available on UseGalaxy.eu": 9, + "Tools available on UseGalaxy.fr": 9, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 3, + "Tools available on GalaxyTrakr": 8, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 3, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 9, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3547, + "Total tool usage (usegalaxy.eu)": 72953 + } +] \ No newline at end of file diff --git a/communities/all/resources/test_tools.tsv b/communities/all/resources/test_tools.tsv new file mode 100644 index 00000000..f7ce0163 --- /dev/null +++ b/communities/all/resources/test_tools.tsv @@ -0,0 +1,6 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) +2d_auto_threshold ip_threshold Automatic thresholding scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_auto_threshold imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/ https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/2d_auto_threshold 0.0.6-2 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 6541 +abritamr abritamr A pipeline for running AMRfinderPlus and collating results into functional classes To update https://zenodo.org/record/7370628 Sequence Analysis abritamr iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamr https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/abritamr 1.0.14 abritamr 1.0.19 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +aldex2 aldex2 Performs analysis Of differential abundance taking sample variation into account aldex2 aldex2 ALDEx2 A differential abundance analysis for the comparison of two or more conditions. It uses a Dirichlet-multinomial model to infer abundance from counts, that has been optimized for three or more experimental replicates. Infers sampling variation and calculates the expected FDR given the biological and sampling variation using the Wilcox rank test and Welches t-test, or the glm and Kruskal Wallis tests. Reports both P and fdr values calculated by the Benjamini Hochberg correction. Statistical inference Gene expression, Statistics and probability To update https://github.com/ggloor/ALDEx_bioc Metagenomics aldex2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2 https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/aldex2 1.26.0 bioconductor-aldex2 1.34.0 Statistical inference Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 13 129 +fastp fastp Fast all-in-one preprocessing for FASTQ files fastp fastp fastp A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance. Sequencing quality control, Sequence contamination filtering Sequence analysis, Probes and primers To update https://github.com/OpenGene/fastp Sequence Analysis fastp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastp https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/fastp fastp 0.23.4 Sequence contamination filtering Probes and primers 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 1 2803 1055760 +spades spades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spades SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction. spades rnaspades, spades, metaplasmidspades, rnaviralspades, coronaspades, biosyntheticspades, metaspades, plasmidspades, metaviralspades SPAdes St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads. Genome assembly Sequence assembly To update https://github.com/ablab/spades Assembly, RNA, Metagenomics spades iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper/tree/main/tools/spades 3.15.5 spades 4.0.0 Genome assembly Sequence assembly 9 9 9 9 9 9 9 9 0 0 0 0 1 0 0 0 0 0 0 0 1 3 8 0 0 2 0 0 0 3 0 0 0 0 0 0 0 9 3 0 3547 72953 diff --git a/communities/all/resources/test_tutorials.json b/communities/all/resources/test_tutorials.json new file mode 100644 index 00000000..dc8f63b3 --- /dev/null +++ b/communities/all/resources/test_tutorials.json @@ -0,0 +1,20495 @@ +[ + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/microbiome/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "microbiome/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-08-08", + "pageviews": 5788544, + "priority": 0, + "pub_date": "2017-06-22", + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "9OY1mklWuK0" + } + ], + "redirect_from": [ + "/topics/metagenomics/slides/introduction", + "/topics/microbiome/slides/introduction", + "/topics/metagenomics/tutorials/introduction/slides", + "/short/microbiome/introduction/slides", + "/short/S00078", + "/short/S00114" + ], + "short_id": "S00114", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "9OY1mklWuK0" + } + ], + "subtopic": "intro", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to Microbiome Analysis", + "tools": [], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/introduction/slides.json" + }, + "version": 5, + "video": true, + "video_versions": 1, + "video_view": 880, + "visit_duration": 152, + "visitors": 2088666 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "73486cc6170e", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann2", + "owner": "iuc", + "revisions": "1ab06263e083", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann2_regroup_table", + "owner": "iuc", + "revisions": "a1747df2bc21", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann2_renorm_table", + "owner": "iuc", + "revisions": "ba4dfbdc1295", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan2", + "owner": "iuc", + "revisions": "8c82c4d90cc6", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan2krona", + "owner": "iuc", + "revisions": "ebb74774457e", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_align_seqs", + "owner": "iuc", + "revisions": "2692b3107533", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_otu", + "owner": "iuc", + "revisions": "e664787de3ab", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_seqs", + "owner": "iuc", + "revisions": "cc9c7b550c29", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster_split", + "owner": "iuc", + "revisions": "a29ac7993cb0", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_seqs", + "owner": "iuc", + "revisions": "ecbd9ed733e6", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_filter_seqs", + "owner": "iuc", + "revisions": "bf20a30c263a", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_biom", + "owner": "iuc", + "revisions": "5dc4d49a238a", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_group", + "owner": "iuc", + "revisions": "8c964d119da8", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_shared", + "owner": "iuc", + "revisions": "83dabeeadb55", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_merge_files", + "owner": "iuc", + "revisions": "a70b25374a23", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_pre_cluster", + "owner": "iuc", + "revisions": "58d0fe3cc0f2", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_screen_seqs", + "owner": "iuc", + "revisions": "8743aecd26a9", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_seqs", + "owner": "iuc", + "revisions": "e4a4cb8b6bbf", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_unique_seqs", + "owner": "iuc", + "revisions": "1f72d9a3d09f", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krona_text", + "owner": "saskia-hiltemann", + "revisions": "b14f1444e464", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: 73486cc6170e\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann2\n owner: iuc\n revisions: 1ab06263e083\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann2_regroup_table\n owner: iuc\n revisions: a1747df2bc21\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann2_renorm_table\n owner: iuc\n revisions: ba4dfbdc1295\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan2\n owner: iuc\n revisions: 8c82c4d90cc6\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan2krona\n owner: iuc\n revisions: ebb74774457e\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_align_seqs\n owner: iuc\n revisions: 2692b3107533\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_otu\n owner: iuc\n revisions: e664787de3ab\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_seqs\n owner: iuc\n revisions: cc9c7b550c29\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster_split\n owner: iuc\n revisions: a29ac7993cb0\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_seqs\n owner: iuc\n revisions: ecbd9ed733e6\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_filter_seqs\n owner: iuc\n revisions: bf20a30c263a\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_biom\n owner: iuc\n revisions: 5dc4d49a238a\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_group\n owner: iuc\n revisions: 8c964d119da8\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_shared\n owner: iuc\n revisions: 83dabeeadb55\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_merge_files\n owner: iuc\n revisions: a70b25374a23\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_pre_cluster\n owner: iuc\n revisions: 58d0fe3cc0f2\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_screen_seqs\n owner: iuc\n revisions: 8743aecd26a9\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_seqs\n owner: iuc\n revisions: e4a4cb8b6bbf\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_unique_seqs\n owner: iuc\n revisions: 1f72d9a3d09f\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krona_text\n owner: saskia-hiltemann\n revisions: b14f1444e464\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/general-tutorial/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/microbiome/tutorials/general-tutorial", + "edam_ontology": [ + "topic_3174", + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Sequencing quality control", + "DNA barcoding", + "Sequence read processing", + "Taxonomic classification", + "Phylogenetic analysis", + "Sequence clustering", + "Visualisation" + ], + "edam_topic": [ + "Metagenomics", + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/general-tutorial", + "inexact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "With amplicon data, we can extract information about the studied community structure", + "With shotgun data, we can extract information about the studied community structure and also the functions realised by the community", + "The tools used to analyze amplicon and shotgun data are different, except for the visualisation", + "Metagenomics data analyses are complex and time-consuming" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Choosing the best approach to analyze metagenomics data", + "Selection of tools to analyze amplicon data or shotgun data", + "Visualisation of a community structure" + ], + "pageviews": 4381, + "pub_date": "2017-06-22", + "questions": [ + "How to analyze metagenomics data?", + "What information can be extracted of metagenomics data?", + "What is the difference between amplicon and shotgun data?", + "What are the difference in the analyses of amplicon and shotgun data?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/general-tutorial/tutorial", + "/short/microbiome/general-tutorial", + "/short/T00201", + "/short/T00385" + ], + "short_id": "T00385", + "short_tools": [ + "taxonomy_krona_chart", + "mothur_pre_cluster", + "mothur_filter_seqs", + "metaphlan2", + "humann2_regroup_table", + "mothur_make_biom", + "mothur_count_seqs", + "mothur_summary_seqs", + "humann2_renorm_table", + "krona-text", + "mothur_align_seqs", + "mothur_cluster_split", + "mothur_make_group", + "mothur_screen_seqs", + "mothur_unique_seqs", + "mothur_classify_otu", + "metaphlan2krona", + "mothur_merge_files", + "humann2", + "mothur_make_shared", + "mothur_classify_seqs" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "intro", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "microgalaxy" + ], + "time_estimation": "2H30M", + "title": "Analyses of metagenomics data - The global picture", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.6.1", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2/humann2/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2_regroup_table/humann2_regroup_table/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2_renorm_table/humann2_renorm_table/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan2/metaphlan2/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan2krona/metaphlan2krona/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_biom/mothur_make_biom/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_group/mothur_make_group/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/saskia-hiltemann/krona_text/krona-text/1" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "general-tutorial", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/general-tutorial/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/general-tutorial/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/general-tutorial/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 165, + "visitors": 3233, + "workflows": [ + { + "creators": [], + "description": "Analyses of metagenomics data - The global picture", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSILVA Reference\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnguil Soil Sample\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPampa Soil Sample\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTrainset PDS alignment\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTrainset PDS taxonomy\"]\n 5[label=\"Merge.files\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Make.group\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Unique.seqs\"]\n 5 -> 7 [label=\"output\"]\n 8[label=\"Count.seqs\"]\n 6 -> 8 [label=\"output\"]\n 7 -> 8 [label=\"out_names\"]\n 9[label=\"Summary.seqs\"]\n 8 -> 9 [label=\"seq_count\"]\n 7 -> 9 [label=\"out_fasta\"]\n 10[label=\"Screen.seqs\"]\n 7 -> 10 [label=\"out_fasta\"]\n 8 -> 10 [label=\"seq_count\"]\n 11[label=\"Align.seqs\"]\n 0 -> 11 [label=\"output\"]\n 10 -> 11 [label=\"fasta_out\"]\n 12[label=\"Summary.seqs\"]\n 10 -> 12 [label=\"count_out\"]\n 11 -> 12 [label=\"out_file\"]\n 13[label=\"Screen.seqs\"]\n 11 -> 13 [label=\"out_file\"]\n 10 -> 13 [label=\"count_out\"]\n 14[label=\"Filter.seqs\"]\n 13 -> 14 [label=\"fasta_out\"]\n 15[label=\"Pre.cluster\"]\n 14 -> 15 [label=\"filteredfasta\"]\n 13 -> 15 [label=\"count_out\"]\n 16[label=\"Classify.seqs\"]\n 15 -> 16 [label=\"count_out\"]\n 3 -> 16 [label=\"output\"]\n 15 -> 16 [label=\"fasta_out\"]\n 4 -> 16 [label=\"output\"]\n 17[label=\"Cluster.split\"]\n 16 -> 17 [label=\"taxonomy_out\"]\n 15 -> 17 [label=\"fasta_out\"]\n 15 -> 17 [label=\"count_out\"]\n 18[label=\"Make.shared\"]\n 15 -> 18 [label=\"count_out\"]\n 17 -> 18 [label=\"otulist\"]\n kdc7dc0bfbae04170b15735c082307fb2[color=lightseagreen,label=\"Output\\nmothur_make_shared_shared\"]\n 18 -> kdc7dc0bfbae04170b15735c082307fb2\n 19[label=\"Classify.otu\"]\n 15 -> 19 [label=\"count_out\"]\n 16 -> 19 [label=\"taxonomy_out\"]\n 17 -> 19 [label=\"otulist\"]\n 20[label=\"Make.biom\"]\n 18 -> 20 [label=\"shared\"]\n 19 -> 20 [label=\"taxonomies\"]\n 21[label=\"Visualize with Krona\"]\n 19 -> 21 [label=\"taxonomies\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "silva" + } + ], + "label": "SILVA Reference", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 463 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "372b68d9-2f00-4275-a372-ffe89cca2a63", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "anguil_soil_sample" + } + ], + "label": "Anguil Soil Sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 209, + "top": 746.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "3beec7e9-acbe-4c92-85b3-62d6ab3cd83d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "pampa_soil_sample" + } + ], + "label": "Pampa Soil Sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 212, + "top": 866.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "e23834b7-d5be-44b1-bbca-7bdea6884022", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "trainset_alignment" + } + ], + "label": "Trainset PDS alignment", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2468.5, + "top": 280.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "7368ffb8-03bd-42b4-bb81-53d147cd419b", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "trainset_taxonomy" + } + ], + "label": "Trainset PDS taxonomy", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2476.5, + "top": 389.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "31d8b02c-9ecc-4d55-ac86-8930adb5abc8", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSILVA Reference\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nAnguil Soil Sample\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nPampa Soil Sample\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nTrainset PDS alignment\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nTrainset PDS taxonomy\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Merge.files\"];\n 2 -->|output| 5;\n 1 -->|output| 5;\n 6[\"Make.group\"];\n 1 -->|output| 6;\n 2 -->|output| 6;\n 7[\"Unique.seqs\"];\n 5 -->|output| 7;\n 8[\"Count.seqs\"];\n 6 -->|output| 8;\n 7 -->|out_names| 8;\n 9[\"Summary.seqs\"];\n 8 -->|seq_count| 9;\n 7 -->|out_fasta| 9;\n 10[\"Screen.seqs\"];\n 7 -->|out_fasta| 10;\n 8 -->|seq_count| 10;\n 11[\"Align.seqs\"];\n 0 -->|output| 11;\n 10 -->|fasta_out| 11;\n 12[\"Summary.seqs\"];\n 10 -->|count_out| 12;\n 11 -->|out_file| 12;\n 13[\"Screen.seqs\"];\n 11 -->|out_file| 13;\n 10 -->|count_out| 13;\n 14[\"Filter.seqs\"];\n 13 -->|fasta_out| 14;\n 15[\"Pre.cluster\"];\n 14 -->|filteredfasta| 15;\n 13 -->|count_out| 15;\n 16[\"Classify.seqs\"];\n 15 -->|count_out| 16;\n 3 -->|output| 16;\n 15 -->|fasta_out| 16;\n 4 -->|output| 16;\n 17[\"Cluster.split\"];\n 16 -->|taxonomy_out| 17;\n 15 -->|fasta_out| 17;\n 15 -->|count_out| 17;\n 18[\"Make.shared\"];\n 15 -->|count_out| 18;\n 17 -->|otulist| 18;\n dc7dc0bf-bae0-4170-b157-35c082307fb2[\"Output\\nmothur_make_shared_shared\"];\n 18 --> dc7dc0bf-bae0-4170-b157-35c082307fb2;\n style dc7dc0bf-bae0-4170-b157-35c082307fb2 stroke:#2c3143,stroke-width:4px;\n 19[\"Classify.otu\"];\n 15 -->|count_out| 19;\n 16 -->|taxonomy_out| 19;\n 17 -->|otulist| 19;\n 20[\"Make.biom\"];\n 18 -->|shared| 20;\n 19 -->|taxonomies| 20;\n 21[\"Visualize with Krona\"];\n 19 -->|taxonomies| 21;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Amplicon Tutorial", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.36.1.0", + "errors": null, + "id": 18, + "input_connections": { + "intype|group": { + "id": 15, + "output_name": "count_out" + }, + "intype|otu": { + "id": 17, + "output_name": "otulist" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Make.shared", + "name": "intype" + }, + { + "description": "runtime parameter for tool Make.shared", + "name": "intype" + } + ], + "label": null, + "name": "Make.shared", + "outputs": [ + { + "name": "labelshares", + "type": "input" + }, + { + "name": "logfile", + "type": "txt" + }, + { + "name": "shared", + "type": "mothur.shared" + }, + { + "name": "groupout", + "type": "mothur.groups" + } + ], + "position": { + "left": 3069, + "top": 265 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.36.1.0", + "tool_shed_repository": { + "changeset_revision": "83dabeeadb55", + "name": "mothur_make_shared", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"intype\": \"{\\\"group\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"__current_case__\\\": 0, \\\"label\\\": [\\\"0.03\\\"], \\\"groups\\\": null, \\\"infile\\\": \\\"otulist\\\", \\\"otu\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\", \"chromInfo\": \"\\\"/data/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\\\"\"}", + "tool_version": "1.36.1.0", + "type": "tool", + "uuid": "d554ed42-8658-47c5-952f-9dc73834f267", + "workflow_outputs": [ + { + "label": "mothur_make_shared_shared", + "output_name": "shared", + "uuid": "dc7dc0bf-bae0-4170-b157-35c082307fb2" + } + ] + } + ], + "parent_id": "microbiome/general-tutorial", + "path": "topics/microbiome/tutorials/general-tutorial/workflows/amplicon.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": true, + "title": "Amplicon Tutorial", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-general-tutorial/versions/amplicon", + "tutorial_id": "general-tutorial", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/amplicon.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/amplicon.html", + "version": 1, + "wfid": "microbiome-general-tutorial", + "wfname": "amplicon", + "workflow": "amplicon.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_biom/mothur_make_biom/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_group/mothur_make_group/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/saskia-hiltemann/krona_text/krona-text/1" + ], + "workflowhub_id": "1070" + }, + { + "creators": [], + "description": "Analyses of metagenomics data - The global picture", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"MetaPhlAn2\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Format MetaPhlAn2\"]\n 1 -> 2 [label=\"output_file\"]\n 3[label=\"HUMAnN2\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output_file\"]\n 4[label=\"Krona pie chart\"]\n 2 -> 4 [label=\"krona\"]\n 5[label=\"Renormalize\"]\n 3 -> 5 [label=\"gene_families_tsv\"]\n 6[label=\"Regroup\"]\n 3 -> 6 [label=\"gene_families_tsv\"]\n 7[label=\"Renormalize\"]\n 6 -> 7 [label=\"output_table\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR606451_pampa.fasta" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR606451_pampa.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2b9a76e9-f7fc-451a-a6f7-16d87f96547b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"MetaPhlAn2\"];\n 0 -->|output| 1;\n 2[\"Format MetaPhlAn2\"];\n 1 -->|output_file| 2;\n 3[\"HUMAnN2\"];\n 0 -->|output| 3;\n 1 -->|output_file| 3;\n 4[\"Krona pie chart\"];\n 2 -->|krona| 4;\n 5[\"Renormalize\"];\n 3 -->|gene_families_tsv| 5;\n 6[\"Regroup\"];\n 3 -->|gene_families_tsv| 6;\n 7[\"Renormalize\"];\n 6 -->|output_table| 7;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "WGS Part In \"Analyses Of Metagenomics Data - The Global Picture\"", + "outputs": [], + "parent_id": "microbiome/general-tutorial", + "path": "topics/microbiome/tutorials/general-tutorial/workflows/wgs-worklow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "WGS Part In \"Analyses Of Metagenomics Data - The Global Picture\"", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-general-tutorial/versions/wgs-worklow", + "tutorial_id": "general-tutorial", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/wgs-worklow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/wgs-worklow.html", + "version": 1, + "wfid": "microbiome-general-tutorial", + "wfname": "wgs-worklow", + "workflow": "wgs-worklow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.6.1", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2/humann2/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2_regroup_table/humann2_regroup_table/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2_renorm_table/humann2_renorm_table/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan2/metaphlan2/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan2krona/metaphlan2krona/2.6.0.0" + ], + "workflowhub_id": "1067" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.815875" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_kreport2krona", + "owner": "iuc", + "revisions": "88d274322340", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "543cbeef3949", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_kreport2krona\n owner: iuc\n revisions: 88d274322340\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 543cbeef3949\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/beer-data-analysis/tutorial.json", + "contributions": { + "authorship": [ + "plushz", + "chensy96", + "bebatut", + "teresa-m" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "id": "plushz", + "joined": "2022-03", + "name": "Polina Polunina", + "orcid": "0000-0002-0507-4602", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/plushz/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/plushz.json" + }, + { + "id": "chensy96", + "joined": "2022-05", + "name": "Siyu Chen", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/chensy96/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/chensy96.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "teresa-m", + "joined": "2022-09", + "name": "Teresa M\u00fcller", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/teresa-m/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/teresa-m.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/microbiome/tutorials/beer-data-analysis", + "edam_ontology": [ + "topic_3174", + "topic_3697", + "topic_0637", + "topic_0080" + ], + "edam_operation": [ + "Statistical calculation", + "Taxonomic classification", + "Sequencing quality control", + "Aggregation", + "Sequence composition calculation", + "Sequence contamination filtering", + "Visualisation" + ], + "edam_topic": [ + "Metagenomics", + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/beer-data-analysis", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": 12074, + "mermaid": false + }, + "key_points": [ + "Data obtained by sequencing needs to be checked for quality and cleaned before further processing", + "Yeast species but also contamination can be identified and visualized directly from the sequences using several bioinformatics tools", + "With its graphical interface, Galaxy makes it easy to use the needed bioinformatics tools", + "Beer microbiome is not just made of yeast and can be quite complex" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Inspect metagenomics data", + "Run metagenomics tools", + "Identify yeast species contained in a sequenced beer sample using DNA", + "Visualize the microbiome community of a beer sample" + ], + "pageviews": 1813, + "pub_date": "2022-09-29", + "questions": [ + "How can yeast strains in a beer sample be identified?", + "How can we process metagenomic data sequenced using Nanopore?" + ], + "recordings": [ + { + "captioners": [ + "sophia120199" + ], + "date": "2023-05-10", + "galaxy_version": "23.01", + "length": "1H5M", + "speakers": [ + "bebatut" + ], + "youtube_id": "PJeS06yiJUM" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/beer-data-analysis/tutorial", + "/short/microbiome/beer-data-analysis", + "/short/T00200", + "/short/T00384" + ], + "short_id": "T00384", + "short_tools": [ + "porechop", + "fastqc", + "taxonomy_krona_chart", + "krakentools_kreport2krona", + "Filter1", + "kraken2", + "fastp" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "nanopore", + "beer", + "citizen science", + "metagenomics", + "microgalaxy" + ], + "time_estimation": "1H", + "title": "Identification of the micro-organisms in a beer using Nanopore sequencing", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "beer-data-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/beer-data-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/beer-data-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/beer-data-analysis/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 317, + "visit_duration": 171, + "visitors": 1155, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-1252-9684", + "name": "Teresa M\u00fcller" + }, + { + "class": "Person", + "identifier": "0000-0002-0507-4602", + "name": "Polina Polunina" + } + ], + "description": "Identification of the micro-organisms in a beer using Nanopore sequencing", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ninput\"]\n 1[label=\"FastQC\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Porechop\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"fastp\"]\n 2 -> 3 [label=\"outfile\"]\n 4[label=\"Kraken2\"]\n 3 -> 4 [label=\"out1\"]\n k0d3469505091452ba87253e179889ab6[color=lightseagreen,label=\"Output\\nkraken_report\"]\n 4 -> k0d3469505091452ba87253e179889ab6\n 5[label=\"Filter\"]\n 4 -> 5 [label=\"report_output\"]\n 6[label=\"Filter\"]\n 4 -> 6 [label=\"report_output\"]\n 7[label=\"Krakentools: Convert kraken report file\"]\n 4 -> 7 [label=\"report_output\"]\n k0776fcd5488844d386948f6493b8e3e2[color=lightseagreen,label=\"Output\\nkrakentool_report\"]\n 7 -> k0776fcd5488844d386948f6493b8e3e2\n 8[label=\"Krona pie chart\"]\n 7 -> 8 [label=\"output\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "input" + } + ], + "label": "input", + "name": "input", + "outputs": [], + "position": { + "left": 0, + "top": 301 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"input\"}", + "tool_version": null, + "type": "data_input", + "uuid": "31e2b384-0c1d-42fc-9379-8fb62462bffb", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ninput\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"FastQC\"];\n 0 -->|output| 1;\n 2[\"Porechop\"];\n 0 -->|output| 2;\n 3[\"fastp\"];\n 2 -->|outfile| 3;\n 4[\"Kraken2\"];\n 3 -->|out1| 4;\n 0d346950-5091-452b-a872-53e179889ab6[\"Output\\nkraken_report\"];\n 4 --> 0d346950-5091-452b-a872-53e179889ab6;\n style 0d346950-5091-452b-a872-53e179889ab6 stroke:#2c3143,stroke-width:4px;\n 5[\"Filter\"];\n 4 -->|report_output| 5;\n 6[\"Filter\"];\n 4 -->|report_output| 6;\n 7[\"Krakentools: Convert kraken report file\"];\n 4 -->|report_output| 7;\n 0776fcd5-4888-44d3-8694-8f6493b8e3e2[\"Output\\nkrakentool_report\"];\n 7 --> 0776fcd5-4888-44d3-8694-8f6493b8e3e2;\n style 0776fcd5-4888-44d3-8694-8f6493b8e3e2 stroke:#2c3143,stroke-width:4px;\n 8[\"Krona pie chart\"];\n 7 -->|output| 8;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Identification of the micro-organisms in a beer using Nanopore sequencing", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "single_paired|input_sequences": { + "id": 3, + "output_name": "out1" + } + }, + "inputs": [], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 840, + "top": 349 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e674066930b2", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"confidence\": \"0.0\", \"kraken2_database\": \"2022-09-04T165121Z_standard_prebuilt_pluspf_2022-06-07\", \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"no\", \"__current_case__\": 2, \"input_sequences\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "b0030c6f-df98-4ab9-a019-2b96fbad69e7", + "when": null, + "workflow_outputs": [ + { + "label": "kraken_report", + "output_name": "report_output", + "uuid": "0d346950-5091-452b-a872-53e179889ab6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "report": { + "id": 4, + "output_name": "report_output" + } + }, + "inputs": [], + "label": null, + "name": "Krakentools: Convert kraken report file", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1120, + "top": 517 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "88d274322340", + "name": "krakentools_kreport2krona", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"intermediate_ranks\": false, \"report\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2+galaxy0", + "type": "tool", + "uuid": "9c2946a8-b768-4ba1-879d-e96f1a2eda51", + "when": null, + "workflow_outputs": [ + { + "label": "krakentool_report", + "output_name": "output", + "uuid": "0776fcd5-4888-44d3-8694-8f6493b8e3e2" + } + ] + } + ], + "parent_id": "microbiome/beer-data-analysis", + "path": "topics/microbiome/tutorials/beer-data-analysis/workflows/main_workflow.ga", + "tags": [ + "Microbiome" + ], + "test_results": null, + "tests": true, + "title": "Identification of the micro-organisms in a beer using Nanopore sequencing", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-beer-data-analysis/versions/main-workflow", + "tutorial_id": "beer-data-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/beer-data-analysis/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/beer-data-analysis/workflows/main_workflow.html", + "version": 1, + "wfid": "microbiome-beer-data-analysis", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0" + ], + "workflowhub_id": "1097" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.7093173" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "combine_metaphlan2_humann2", + "owner": "bebatut", + "revisions": "fdfb35745104", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_paired_end_interlacer", + "owner": "devteam", + "revisions": "2ccb8dcabddc", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "export2graphlan", + "owner": "iuc", + "revisions": "635c90a27692", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "graphlan", + "owner": "iuc", + "revisions": "8f62f666dcb6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "graphlan_annotate", + "owner": "iuc", + "revisions": "5d6f8f0bef7c", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann", + "owner": "iuc", + "revisions": "95bf7479d53c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_regroup_table", + "owner": "iuc", + "revisions": "79706f10d680", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_rename_table", + "owner": "iuc", + "revisions": "172920f67a84", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_renorm_table", + "owner": "iuc", + "revisions": "d7e9a3c41657", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_split_stratified_table", + "owner": "iuc", + "revisions": "64bc7acc22a9", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_unpack_pathways", + "owner": "iuc", + "revisions": "080ea153677c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan", + "owner": "iuc", + "revisions": "ec368db926f4", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "135b80fb1ac2", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sortmerna", + "owner": "rnateam", + "revisions": "eb35257d2e29", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: combine_metaphlan2_humann2\n owner: bebatut\n revisions: fdfb35745104\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_paired_end_interlacer\n owner: devteam\n revisions: 2ccb8dcabddc\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: export2graphlan\n owner: iuc\n revisions: 635c90a27692\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: graphlan\n owner: iuc\n revisions: 8f62f666dcb6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: graphlan_annotate\n owner: iuc\n revisions: 5d6f8f0bef7c\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann\n owner: iuc\n revisions: 95bf7479d53c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_regroup_table\n owner: iuc\n revisions: 79706f10d680\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_rename_table\n owner: iuc\n revisions: 172920f67a84\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_renorm_table\n owner: iuc\n revisions: d7e9a3c41657\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_split_stratified_table\n owner: iuc\n revisions: 64bc7acc22a9\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_unpack_pathways\n owner: iuc\n revisions: '080ea153677c'\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan\n owner: iuc\n revisions: ec368db926f4\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 135b80fb1ac2\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sortmerna\n owner: rnateam\n revisions: eb35257d2e29\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics/tutorial.json", + "contributors": [ + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "rsajulga@umn.edu", + "id": "jraysajulga", + "joined": "2018-11", + "name": "Ray Sajulga", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jraysajulga/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jraysajulga.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "email": "leith023@umn.edu", + "id": "emmaleith", + "joined": "2019-07", + "name": "Emma Leith", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emmaleith/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emmaleith.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "engynasr94@gmail.com", + "id": "EngyNasr", + "joined": "2021-05", + "matrix": "EngyNasr:matrix.org", + "name": "Engy Nasr", + "orcid": "0000-0001-9047-4215", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/EngyNasr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/EngyNasr.json" + } + ], + "dir": "topics/microbiome/tutorials/metatranscriptomics", + "edam_ontology": [ + "topic_3941", + "topic_3697", + "topic_0637", + "topic_1775", + "topic_0080" + ], + "edam_operation": [ + "Statistical calculation", + "Species frequency estimation", + "Primer removal", + "Read pre-processing", + "Sequence trimming", + "Sequence similarity search", + "Taxonomic classification", + "Phylogenetic tree editing", + "Phylogenetic analysis", + "Sequence composition calculation", + "Phylogenetic tree visualisation", + "Phylogenetic tree analysis", + "Validation", + "Sequencing quality control", + "Sequence comparison", + "Conversion", + "Sequence alignment analysis", + "Nucleic acid sequence analysis", + "Phylogenetic inference", + "Visualisation" + ], + "edam_topic": [ + "Metatranscriptomics", + "Microbial ecology", + "Taxonomy", + "Function analysis", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/metatranscriptomics", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Metatranscriptomics data have the same QC profile that RNA-seq data", + "A lot of metatranscriptomics sequences are identified as rRNA sequences", + "With shotgun data, we can extract information about the studied community structure and also the functions realised by the community", + "Metatranscriptomics data analyses are complex and must be careful done, specially when they are done without combination to metagenomics data analyses" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Choose the best approach to analyze metatranscriptomics data", + "Understand the functional microbiome characterization using metatranscriptomic results", + "Understand where metatranscriptomics fits in 'multi-omic' analysis of microbiomes", + "Visualise a community structure" + ], + "pageviews": 5791768, + "pub_date": "2019-11-21", + "questions": [ + "How to analyze metatranscriptomics data?", + "What information can be extracted of metatranscriptomics data?", + "How to assign taxa and function to the identified sequences?" + ], + "recordings": [ + { + "captioners": [ + "paulzierep" + ], + "date": "2023-05-17", + "galaxy_version": "23.01", + "length": "1H5M", + "speakers": [ + "paulzierep" + ], + "youtube_id": "HNYop3vLpoM" + }, + { + "captioners": [ + "EngyNasr", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H30M", + "speakers": [ + "pratikdjagtap", + "timothygriffin", + "subinamehta", + "shiltemann" + ], + "youtube_id": "EMaos5u1_a8" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metatranscriptomics/tutorial", + "/short/microbiome/metatranscriptomics", + "/short/T00203", + "/short/T00388" + ], + "short_id": "T00388", + "short_tools": [ + "taxonomy_krona_chart", + "graphlan", + "Cut1", + "humann_unpack_pathways", + "humann_rename_table", + "cutadapt", + "graphlan_annotate", + "humann_renorm_table", + "Grep1", + "multiqc", + "humann_split_stratified_table", + "fastq_paired_end_interlacer", + "bg_sortmerna", + "humann_regroup_table", + "fastqc", + "combine_metaphlan2_humann2", + "metaphlan", + "export2graphlan", + "humann", + "tp_find_and_replace" + ], + "slides": true, + "slides_recordings": false, + "subtopic": "metatranscriptomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metatranscriptomics", + "microgalaxy" + ], + "time_estimation": "5H", + "title": "Metatranscriptomics analysis using microbiome RNA-seq data", + "tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metatranscriptomics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 2, + "video_view": 1865, + "visit_duration": 252, + "visitors": 2091207, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nT1A_forward\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nT1A_reverse\"]\n 2[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 1: Preprocessing\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 2: Community Profile\"]\n 2 -> 3 [label=\"Cutadapt on input datasets: Read 1 Output\"]\n 2 -> 3 [label=\"Cutadapt on input datasets: Read 2 Output\"]\n 4[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 3: Functional Information\"]\n 2 -> 4 [label=\"FASTQ interlacer pairs from input datasets\"]\n 3 -> 4 [label=\"MetaPhlAn on input datasets: Predicted taxon relative abundances\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "T1A_forward" + } + ], + "label": "T1A_forward", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 9.64714688080777, + "top": 53.73730095248055 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "444b00bb-40e3-4f08-8d9c-d471b9499ba1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "T1A_reverse" + } + ], + "label": "T1A_reverse", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 181.01421258880856 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bc827ef3-0ab1-4576-9c7d-c269b49f1dbb", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nT1A_forward\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nT1A_reverse\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 1: Preprocessing\"];\n style 2 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 2: Community Profile\"];\n style 3 fill:#edd,stroke:#900,stroke-width:4px;\n 2 -->|Cutadapt on input datasets: Read 1 Output| 3;\n 2 -->|Cutadapt on input datasets: Read 2 Output| 3;\n 4[\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 3: Functional Information\"];\n style 4 fill:#edd,stroke:#900,stroke-width:4px;\n 2 -->|FASTQ interlacer pairs from input datasets| 4;\n 3 -->|MetaPhlAn on input datasets: Predicted taxon relative abundances| 4;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Main Metatranscriptomics Analysis", + "outputs": [], + "parent_id": "microbiome/metatranscriptomics", + "path": "topics/microbiome/tutorials/metatranscriptomics/workflows/main_workflow.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Main Metatranscriptomics Analysis", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics/versions/main-workflow", + "tutorial_id": "metatranscriptomics", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics/workflows/main_workflow.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6" + ], + "workflowhub_id": "1076" + } + ], + "zenodo_link": "https://zenodo.org/record/4776250" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "racon", + "owner": "bgruening", + "revisions": "aa39b19ca11e", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "racon", + "owner": "bgruening", + "revisions": "a199cd7ac344", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "067592b6b312", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "b2860df42e16", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfa_to_fa", + "owner": "iuc", + "revisions": "49d6f8ef63b3", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfa_to_fa", + "owner": "iuc", + "revisions": "8e9d604e92f4", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "miniasm", + "owner": "iuc", + "revisions": "8b6d0d85252b", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "miniasm", + "owner": "iuc", + "revisions": "8dee0218ac7d", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "3f4d6399997b", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "8c6cd2650d1f", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "645159bcee2d", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "edbb6c5028f5", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "plasflow", + "owner": "iuc", + "revisions": "bda6012394f7", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unicycler", + "owner": "iuc", + "revisions": "0a3a602cd1e3", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unicycler", + "owner": "iuc", + "revisions": "9e3e80cc4ad4", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "staramr", + "owner": "nml", + "revisions": "da787fc8b740", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "staramr", + "owner": "nml", + "revisions": "2fd4d4c9c5c2", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: racon\n owner: bgruening\n revisions: aa39b19ca11e\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: racon\n owner: bgruening\n revisions: a199cd7ac344\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: '067592b6b312'\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: b2860df42e16\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfa_to_fa\n owner: iuc\n revisions: 49d6f8ef63b3\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfa_to_fa\n owner: iuc\n revisions: 8e9d604e92f4\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: miniasm\n owner: iuc\n revisions: 8b6d0d85252b\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: miniasm\n owner: iuc\n revisions: 8dee0218ac7d\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 3f4d6399997b\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 8c6cd2650d1f\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: 645159bcee2d\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: edbb6c5028f5\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: plasflow\n owner: iuc\n revisions: bda6012394f7\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unicycler\n owner: iuc\n revisions: 0a3a602cd1e3\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unicycler\n owner: iuc\n revisions: 9e3e80cc4ad4\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: staramr\n owner: nml\n revisions: da787fc8b740\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: staramr\n owner: nml\n revisions: 2fd4d4c9c5c2\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "nl", + "id": "willemdek11", + "joined": "2018-09", + "name": "Willem de Koning", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/willemdek11/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/willemdek11.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/microbiome/tutorials/plasmid-metagenomics-nanopore", + "edam_ontology": [ + "topic_3837", + "topic_3305", + "topic_3174", + "topic_3301", + "topic_3324", + "topic_0080", + "topic_4013" + ], + "edam_operation": [ + "Mapping assembly", + "Scatter plot plotting", + "Sequence analysis", + "Sequence assembly visualisation", + "Box-Whisker plot plotting", + "Genome assembly", + "Aggregation", + "De-novo assembly", + "Pairwise sequence alignment" + ], + "edam_topic": [ + "Metagenomic sequencing", + "Public health and epidemiology", + "Metagenomics", + "Microbiology", + "Infectious disease", + "Sequence analysis", + "Antimicrobial Resistance" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/plasmid-metagenomics-nanopore", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Minimap2, Miniasm, and Racon can be used for quickly assembling Nanopore data", + "Unicycler can be used to optimize settings of assembly tools", + "Nanopore sequencing is useful for reconstruction of genomes", + "Antimicrobial resistance genes are detectable after fast assembly", + "The CARD database is a useful resource describing antibiotic resistance genes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Perform Quality control on your reads", + "Assemble a genome with Minimap2/Miniasm/Racon", + "Determine the structure of the genome(s)", + "Scan for antimicrobial resistance genes with Staramr" + ], + "pageviews": 1830, + "pub_date": "2019-06-25", + "questions": [ + "How do I assemble a genome with Nanopore data?", + "How do I get more information about the structure of the genomes?", + "How do I get more information about the antimicrobial resistance genes?" + ], + "recordings": [ + { + "captioners": [ + "bebatut" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "45M", + "speakers": [ + "willemdek11" + ], + "youtube_id": "ECIl8ZU1Wko" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/plasmid-metagenomics-nanopore/tutorial", + "/short/microbiome/plasmid-metagenomics-nanopore", + "/short/T00209", + "/short/T00394" + ], + "short_id": "T00394", + "short_tools": [ + "racon", + "PlasFlow", + "bandage_image", + "gfa_to_fa", + "unicycler", + "minimap2", + "miniasm", + "nanoplot", + "staramr_search" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "nanopore", + "plasmids", + "assembly", + "amr", + "microgalaxy" + ], + "time_estimation": "3h", + "title": "Antibiotic resistance detection", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.3.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.4.13", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa/0.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/miniasm/miniasm/0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/miniasm/miniasm/0.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/plasflow/PlasFlow/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.7.0", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.5.1", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.7.1+galaxy2" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "plasmid-metagenomics-nanopore", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 808, + "visit_duration": 239, + "visitors": 1197, + "workflows": [ + { + "creators": [], + "description": "Antibiotic resistance detection", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nPlasmids\"]\n 1[label=\"NanoPlot\"]\n 0 -> 1 [label=\"output\"]\n 10[label=\"NanoPlot\"]\n 9 -> 10 [label=\"out_fa\"]\n 11[label=\"Map with minimap2\"]\n 0 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"out_fa\"]\n 12[label=\"Racon\"]\n 9 -> 12 [label=\"out_fa\"]\n 11 -> 12 [label=\"alignment_output\"]\n 0 -> 12 [label=\"output\"]\n 2[label=\"Map with minimap2\"]\n 0 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Create assemblies with Unicycler\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"miniasm\"]\n 2 -> 4 [label=\"alignment_output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Bandage Image\"]\n 3 -> 5 [label=\"assembly_graph\"]\n 6[label=\"PlasFlow\"]\n 3 -> 6 [label=\"assembly\"]\n 7[label=\"staramr\"]\n 3 -> 7 [label=\"assembly\"]\n 8[label=\"Bandage Image\"]\n 4 -> 8 [label=\"gfa\"]\n 9[label=\"GFA to FASTA\"]\n 4 -> 9 [label=\"gfa\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Plasmids", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 173, + "top": 696 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "348dcd93-2d40-4bdd-90f4-b321a1bd901d", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nPlasmids\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"NanoPlot\"];\n 0 -->|output| 1;\n 10[\"NanoPlot\"];\n 9 -->|out_fa| 10;\n 11[\"Map with minimap2\"];\n 0 -->|output| 11;\n 9 -->|out_fa| 11;\n 12[\"Racon\"];\n 9 -->|out_fa| 12;\n 11 -->|alignment_output| 12;\n 0 -->|output| 12;\n 2[\"Map with minimap2\"];\n 0 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Create assemblies with Unicycler\"];\n 0 -->|output| 3;\n 4[\"miniasm\"];\n 2 -->|alignment_output| 4;\n 0 -->|output| 4;\n 5[\"Bandage Image\"];\n 3 -->|assembly_graph| 5;\n 6[\"PlasFlow\"];\n 3 -->|assembly| 6;\n 7[\"staramr\"];\n 3 -->|assembly| 7;\n 8[\"Bandage Image\"];\n 4 -->|gfa| 8;\n 9[\"GFA to FASTA\"];\n 4 -->|gfa| 9;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Copy Of GTN Training - Antibiotic Resistance Detection", + "outputs": [], + "parent_id": "microbiome/plasmid-metagenomics-nanopore", + "path": "topics/microbiome/tutorials/plasmid-metagenomics-nanopore/workflows/Workflow-plasmid-metagenomics-nanopore.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Copy Of GTN Training - Antibiotic Resistance Detection", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-plasmid-metagenomics-nanopore/versions/workflow-plasmid-metagenomics-nanopore", + "tutorial_id": "plasmid-metagenomics-nanopore", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/workflows/Workflow-plasmid-metagenomics-nanopore.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/workflows/Workflow-plasmid-metagenomics-nanopore.html", + "version": 1, + "wfid": "microbiome-plasmid-metagenomics-nanopore", + "wfname": "workflow-plasmid-metagenomics-nanopore", + "workflow": "Workflow-plasmid-metagenomics-nanopore.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.3.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa/0.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/miniasm/miniasm/0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/plasflow/PlasFlow/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.7.0", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.5.1" + ], + "workflowhub_id": "1107" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.3247504" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "86755160afbf", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "86755160afbf", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "86755160afbf", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_element_identifiers", + "owner": "iuc", + "revisions": "d3c07d270a50", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_assigntaxonomyaddspecies", + "owner": "iuc", + "revisions": "7c2100246a2f", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_assigntaxonomyaddspecies", + "owner": "iuc", + "revisions": "65db807336bc", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_dada", + "owner": "iuc", + "revisions": "96336c6a2bb7", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_dada", + "owner": "iuc", + "revisions": "00f5005840fa", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_filterandtrim", + "owner": "iuc", + "revisions": "addaf9d22850", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_filterandtrim", + "owner": "iuc", + "revisions": "e8fba04706d3", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_learnerrors", + "owner": "iuc", + "revisions": "75403243703a", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_learnerrors", + "owner": "iuc", + "revisions": "5fe3edf19b9c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_makesequencetable", + "owner": "iuc", + "revisions": "43c99742158b", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_makesequencetable", + "owner": "iuc", + "revisions": "75c8945b0da2", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_mergepairs", + "owner": "iuc", + "revisions": "5c865a382933", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_mergepairs", + "owner": "iuc", + "revisions": "35176674168c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_plotqualityprofile", + "owner": "iuc", + "revisions": "7b8cb2b02978", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_plotqualityprofile", + "owner": "iuc", + "revisions": "cae017b76acb", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_removebimeradenovo", + "owner": "iuc", + "revisions": "7136e9ab70db", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_removebimeradenovo", + "owner": "iuc", + "revisions": "073608a50ac3", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_seqcounts", + "owner": "iuc", + "revisions": "19299bb1c6af", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_seqcounts", + "owner": "iuc", + "revisions": "a7817705348e", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "phyloseq_from_dada2", + "owner": "iuc", + "revisions": "87064cb77a52", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: 86755160afbf\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 86755160afbf\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 86755160afbf\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_element_identifiers\n owner: iuc\n revisions: d3c07d270a50\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_assigntaxonomyaddspecies\n owner: iuc\n revisions: 7c2100246a2f\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_assigntaxonomyaddspecies\n owner: iuc\n revisions: 65db807336bc\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_dada\n owner: iuc\n revisions: 96336c6a2bb7\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_dada\n owner: iuc\n revisions: 00f5005840fa\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_filterandtrim\n owner: iuc\n revisions: addaf9d22850\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_filterandtrim\n owner: iuc\n revisions: e8fba04706d3\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_learnerrors\n owner: iuc\n revisions: 75403243703a\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_learnerrors\n owner: iuc\n revisions: 5fe3edf19b9c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_makesequencetable\n owner: iuc\n revisions: 43c99742158b\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_makesequencetable\n owner: iuc\n revisions: 75c8945b0da2\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_mergepairs\n owner: iuc\n revisions: 5c865a382933\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_mergepairs\n owner: iuc\n revisions: 35176674168c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_plotqualityprofile\n owner: iuc\n revisions: 7b8cb2b02978\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_plotqualityprofile\n owner: iuc\n revisions: cae017b76acb\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_removebimeradenovo\n owner: iuc\n revisions: 7136e9ab70db\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_removebimeradenovo\n owner: iuc\n revisions: '073608a50ac3'\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_seqcounts\n owner: iuc\n revisions: 19299bb1c6af\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_seqcounts\n owner: iuc\n revisions: a7817705348e\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: phyloseq_from_dada2\n owner: iuc\n revisions: 87064cb77a52\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/dada-16S/tutorial.json", + "contributions": { + "authorship": [ + "bebatut" + ], + "editing": [ + "bernt-matthias", + "clsiguret" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "elixir_node": "de", + "id": "bernt-matthias", + "joined": "2017-09", + "name": "Matthias Bernt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bernt-matthias.json" + }, + { + "affiliations": [ + "ifb", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "clea.siguret@gmail.com", + "id": "clsiguret", + "joined": "2024-04", + "linkedin": "cl\u00e9a-siguret-58423b107", + "matrix": "clsiguret:matrix.org", + "name": "Clea Siguret", + "orcid": "0009-0005-6140-0379", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/clsiguret/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/clsiguret.json" + } + ], + "dir": "topics/microbiome/tutorials/dada-16S", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Analysis", + "Deposition", + "Variant calling", + "DNA barcoding", + "Visualisation" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/dada-16S", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 14594, + "mermaid": false + }, + "key_points": [ + "DADA2 allows for the generation of precise ASV tables, providing higher resolution and more accurate representation of microbial communities compared to traditional OTU-based methods.", + "Key steps such as quality filtering, error rate learning, and chimera removal are essential in the DADA2 pipeline to ensure the reliability and accuracy of the resulting ASV data.", + "Tools like phyloseq can be effectively used to explore and visualize ASV tables, facilitating deeper ecological and evolutionary insights into microbial diversity and community structure." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Identify the key steps in the DADA2 workflow for generating an ASV table from 16S rRNA gene sequencing data", + "Explain the importance of quality filtering, error rate learning, and chimera removal in ensuring accurate microbial community analysis", + "Execute the DADA2 pipeline to process raw 16S sequencing data and produce a high-resolution ASV table", + "Compare the advantages of ASV-based methods over traditional OTU-based approaches in terms of accuracy and resolution", + "Assess the effectiveness of using phyloseq for exploring and visualizing ASV data to gain ecological and evolutionary insights" + ], + "pageviews": 1075, + "pub_date": "2024-06-05", + "questions": [ + "What are the primary steps involved in generating an ASV table using DADA2 from 16S rRNA gene sequencing data?", + "How does DADA2 improve the accuracy of microbial community analysis compared to traditional OTU-based methods?", + "What is the importance of quality filtering in the DADA2 workflow, and how does it impact downstream analyses?", + "How does the error rate learning process contribute to the identification of true biological sequences in DADA2?", + "What role does chimera removal play in the DADA2 pipeline, and why is it crucial for obtaining reliable ASV data?", + "How can phyloseq be used to explore and visualize the ASV table generated by DADA2, and what types of ecological insights can it provide?" + ], + "short_id": "T00441", + "short_tools": [ + "__UNZIP_COLLECTION__", + "collection_element_identifiers", + "dada2_makeSequenceTable", + "dada2_seqCounts", + "tp_replace_in_column", + "dada2_plotQualityProfile", + "cat1", + "dada2_learnErrors", + "dada2_filterAndTrim", + "__SORTLIST__", + "dada2_dada", + "Add_a_column1", + "dada2_removeBimeraDenovo", + "Grouping1", + "tp_replace_in_line", + "dada2_mergePairs", + "interactive_tool_phyloseq", + "tp_head_tool", + "dada2_assignTaxonomyAddspecies", + "phyloseq_from_dada2" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "microgalaxy" + ], + "time_estimation": "3H", + "title": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", + "tools": [ + "Grouping1", + "__SORTLIST__", + "__UNZIP_COLLECTION__", + "cat1", + "interactive_tool_phyloseq", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_dada/dada2_dada/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_dada/dada2_dada/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_filterandtrim/dada2_filterAndTrim/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_filterandtrim/dada2_filterAndTrim/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_learnerrors/dada2_learnErrors/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_learnerrors/dada2_learnErrors/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_mergepairs/dada2_mergePairs/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_mergepairs/dada2_mergePairs/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_plotqualityprofile/dada2_plotQualityProfile/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_plotqualityprofile/dada2_plotQualityProfile/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_removebimeradenovo/dada2_removeBimeraDenovo/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_removebimeradenovo/dada2_removeBimeraDenovo/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/phyloseq_from_dada2/phyloseq_from_dada2/1.46.0+galaxy0" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "dada-16S", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/dada-16S/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/dada-16S/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/dada-16S/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 125, + "visitors": 787, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "isNew": true, + "name": "" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nRaw reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nheader\"]\n 2[label=\"Sort collection\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"dada2: filterAndTrim\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"dada2: plotQualityProfile\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Unzip collection\"]\n 3 -> 5 [label=\"paired_output\"]\n 6[label=\"dada2: plotQualityProfile\"]\n 3 -> 6 [label=\"paired_output\"]\n 7[label=\"dada2: learnErrors\"]\n 5 -> 7 [label=\"forward\"]\n 8[label=\"dada2: learnErrors\"]\n 5 -> 8 [label=\"reverse\"]\n 9[label=\"dada2: dada\"]\n 5 -> 9 [label=\"forward\"]\n 7 -> 9 [label=\"errors\"]\n 10[label=\"dada2: dada\"]\n 5 -> 10 [label=\"reverse\"]\n 8 -> 10 [label=\"errors\"]\n 11[label=\"dada2: mergePairs\"]\n 9 -> 11 [label=\"data_collection\"]\n 10 -> 11 [label=\"data_collection\"]\n 5 -> 11 [label=\"forward\"]\n 5 -> 11 [label=\"reverse\"]\n 12[label=\"Extract element identifiers\"]\n 11 -> 12 [label=\"merged\"]\n 13[label=\"dada2: makeSequenceTable\"]\n 11 -> 13 [label=\"merged\"]\n k3fd2597939df4698bad1aabfccbb7bd2[color=lightseagreen,label=\"Output\\nsequence_table\"]\n 13 -> k3fd2597939df4698bad1aabfccbb7bd2\n 14[label=\"Replace Text\"]\n 12 -> 14 [label=\"output\"]\n 15[label=\"dada2: removeBimeraDenovo\"]\n 13 -> 15 [label=\"stable\"]\n 16[label=\"Select first\"]\n 14 -> 16 [label=\"outfile\"]\n 17[label=\"dada2: sequence counts\"]\n 3 -> 17 [label=\"outtab\"]\n 9 -> 17 [label=\"data_collection\"]\n 10 -> 17 [label=\"data_collection\"]\n 11 -> 17 [label=\"merged\"]\n 15 -> 17 [label=\"stable_sequencetable\"]\n kc758f86144bc4208b1f71f5106cb678e[color=lightseagreen,label=\"Output\\nsequence_counts\"]\n 17 -> kc758f86144bc4208b1f71f5106cb678e\n 18[label=\"dada2: assignTaxonomy and addSpecies\"]\n 15 -> 18 [label=\"stable_sequencetable\"]\n k904fe0a2832945ca8493fc688fb216c3[color=lightseagreen,label=\"Output\\ntaxons\"]\n 18 -> k904fe0a2832945ca8493fc688fb216c3\n 19[label=\"Compute\"]\n 16 -> 19 [label=\"outfile\"]\n 20[label=\"Replace Text\"]\n 19 -> 20 [label=\"out_file1\"]\n 21[label=\"Concatenate datasets\"]\n 1 -> 21 [label=\"output\"]\n 20 -> 21 [label=\"outfile\"]\n k5479d3203e8247a9a92b6ed5959459cf[color=lightseagreen,label=\"Output\\nmetada_table\"]\n 21 -> k5479d3203e8247a9a92b6ed5959459cf\n 22[label=\"Create phyloseq object\"]\n 21 -> 22 [label=\"out_file1\"]\n 15 -> 22 [label=\"stable_sequencetable\"]\n 18 -> 22 [label=\"output\"]\n}", + "history": [ + { + "hash": "97f8a3d0b5448245415db5a9d9e8ab2182f3cce8", + "message": "Fix Matthias' comments", + "num": 2, + "short_hash": "97f8a3d0b", + "unix": "1717577403" + }, + { + "hash": "c1470a165d4a76032ae6f7eec76b94a40b7930bb", + "message": "Finalize tuto, add workflow+test, rename tuto folder", + "num": 1, + "short_hash": "c1470a165", + "unix": "1717074187" + } + ], + "inputs": [ + { + "annotation": "raw_reads", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "raw_reads", + "name": "Raw reads" + } + ], + "label": "Raw reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 72 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2b66bb2a-4ae5-436a-9428-11ac08ab9e39", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "header", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "header", + "name": "header" + } + ], + "label": "header", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3019, + "top": 196 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"tabular\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "582c8937-b1cb-4f01-977f-93d4ccc631b8", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nRaw reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nheader\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Sort collection\"];\n 0 -->|output| 2;\n 3[\"dada2: filterAndTrim\"];\n 2 -->|output| 3;\n 4[\"dada2: plotQualityProfile\"];\n 2 -->|output| 4;\n 5[\"Unzip collection\"];\n 3 -->|paired_output| 5;\n 6[\"dada2: plotQualityProfile\"];\n 3 -->|paired_output| 6;\n 7[\"dada2: learnErrors\"];\n 5 -->|forward| 7;\n 8[\"dada2: learnErrors\"];\n 5 -->|reverse| 8;\n 9[\"dada2: dada\"];\n 5 -->|forward| 9;\n 7 -->|errors| 9;\n 10[\"dada2: dada\"];\n 5 -->|reverse| 10;\n 8 -->|errors| 10;\n 11[\"dada2: mergePairs\"];\n 9 -->|data_collection| 11;\n 10 -->|data_collection| 11;\n 5 -->|forward| 11;\n 5 -->|reverse| 11;\n 12[\"Extract element identifiers\"];\n 11 -->|merged| 12;\n 13[\"dada2: makeSequenceTable\"];\n 11 -->|merged| 13;\n 3fd25979-39df-4698-bad1-aabfccbb7bd2[\"Output\\nsequence_table\"];\n 13 --> 3fd25979-39df-4698-bad1-aabfccbb7bd2;\n style 3fd25979-39df-4698-bad1-aabfccbb7bd2 stroke:#2c3143,stroke-width:4px;\n 14[\"Replace Text\"];\n 12 -->|output| 14;\n 15[\"dada2: removeBimeraDenovo\"];\n 13 -->|stable| 15;\n 16[\"Select first\"];\n 14 -->|outfile| 16;\n 17[\"dada2: sequence counts\"];\n 3 -->|outtab| 17;\n 9 -->|data_collection| 17;\n 10 -->|data_collection| 17;\n 11 -->|merged| 17;\n 15 -->|stable_sequencetable| 17;\n c758f861-44bc-4208-b1f7-1f5106cb678e[\"Output\\nsequence_counts\"];\n 17 --> c758f861-44bc-4208-b1f7-1f5106cb678e;\n style c758f861-44bc-4208-b1f7-1f5106cb678e stroke:#2c3143,stroke-width:4px;\n 18[\"dada2: assignTaxonomy and addSpecies\"];\n 15 -->|stable_sequencetable| 18;\n 904fe0a2-8329-45ca-8493-fc688fb216c3[\"Output\\ntaxons\"];\n 18 --> 904fe0a2-8329-45ca-8493-fc688fb216c3;\n style 904fe0a2-8329-45ca-8493-fc688fb216c3 stroke:#2c3143,stroke-width:4px;\n 19[\"Compute\"];\n 16 -->|outfile| 19;\n 20[\"Replace Text\"];\n 19 -->|out_file1| 20;\n 21[\"Concatenate datasets\"];\n 1 -->|output| 21;\n 20 -->|outfile| 21;\n 5479d320-3e82-47a9-a92b-6ed5959459cf[\"Output\\nmetada_table\"];\n 21 --> 5479d320-3e82-47a9-a92b-6ed5959459cf;\n style 5479d320-3e82-47a9-a92b-6ed5959459cf stroke:#2c3143,stroke-width:4px;\n 22[\"Create phyloseq object\"];\n 21 -->|out_file1| 22;\n 15 -->|stable_sequencetable| 22;\n 18 -->|output| 22;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.30.0+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "samples": { + "id": 11, + "output_name": "merged" + } + }, + "inputs": [], + "label": null, + "name": "dada2: makeSequenceTable", + "outputs": [ + { + "name": "stable", + "type": "dada2_sequencetable" + }, + { + "name": "plot_output", + "type": "pdf" + } + ], + "position": { + "left": 1970.000125527473, + "top": 273.99367961852937 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.30.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "75c8945b0da2", + "name": "dada2_makesequencetable", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_cond\": {\"filter_select\": \"no\", \"__current_case__\": 0}, \"orderBy\": \"abundance\", \"plot\": true, \"samples\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.30.0+galaxy0", + "type": "tool", + "uuid": "609d25ec-eea3-4893-9d8f-1de0bd185664", + "when": null, + "workflow_outputs": [ + { + "label": "sequence_table", + "output_name": "stable", + "uuid": "3fd25979-39df-4698-bad1-aabfccbb7bd2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.30.0+galaxy0", + "errors": null, + "id": 17, + "input_connections": { + "inrep_0|input": { + "id": 3, + "output_name": "outtab" + }, + "inrep_1|input": { + "id": 9, + "output_name": "data_collection" + }, + "inrep_2|input": { + "id": 10, + "output_name": "data_collection" + }, + "inrep_3|input": { + "id": 11, + "output_name": "merged" + }, + "inrep_4|input": { + "id": 15, + "output_name": "stable_sequencetable" + } + }, + "inputs": [], + "label": null, + "name": "dada2: sequence counts", + "outputs": [ + { + "name": "counts", + "type": "tabular" + } + ], + "position": { + "left": 2550, + "top": 154 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.30.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a7817705348e", + "name": "dada2_seqcounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"inrep\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"FiltTrim\"}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"Dada Forward\"}, {\"__index__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"Dada Reverse\"}, {\"__index__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"SeqTab\"}, {\"__index__\": 4, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"Bimera\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.30.0+galaxy0", + "type": "tool", + "uuid": "e749677d-de5a-4cf8-93de-e709b42b38f7", + "when": null, + "workflow_outputs": [ + { + "label": "sequence_counts", + "output_name": "counts", + "uuid": "c758f861-44bc-4208-b1f7-1f5106cb678e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "seqs": { + "id": 15, + "output_name": "stable_sequencetable" + } + }, + "inputs": [], + "label": null, + "name": "dada2: assignTaxonomy and addSpecies", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2830, + "top": 431 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "65db807336bc", + "name": "dada2_assigntaxonomyaddspecies", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"addSpecies_cond\": {\"addSpecies_select\": \"TRUE\", \"__current_case__\": 1, \"speciesreference_cond\": {\"speciesreference_select\": \"builtin\", \"__current_case__\": 0, \"speciesrefFasta\": \"silva_132\"}, \"allowMultiple_cond\": {\"allowMultiple\": \"FALSE\", \"__current_case__\": 0}, \"tryRC\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"minBoot\": \"50\", \"outputBootstraps\": false, \"reference_cond\": {\"reference_select\": \"builtin\", \"__current_case__\": 0, \"refFasta\": \"silva_132\"}, \"seed\": null, \"seqs\": {\"__class__\": \"ConnectedValue\"}, \"tryRC\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.30.0+galaxy0", + "type": "tool", + "uuid": "984044aa-daa8-4082-9a48-623bd5e6f448", + "when": null, + "workflow_outputs": [ + { + "label": "taxons", + "output_name": "output", + "uuid": "904fe0a2-8329-45ca-8493-fc688fb216c3" + } + ] + }, + { + "annotation": "", + "content_id": "cat1", + "errors": null, + "id": 21, + "input_connections": { + "input1": { + "id": 1, + "output_name": "output" + }, + "queries_0|input2": { + "id": 20, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 3390, + "top": 12 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Metadata table" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "cat1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [{\"__index__\": 0, \"input2\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "708b9c3c-9de6-4722-9852-39c1b82310b6", + "when": null, + "workflow_outputs": [ + { + "label": "metada_table", + "output_name": "out_file1", + "uuid": "5479d320-3e82-47a9-a92b-6ed5959459cf" + } + ] + } + ], + "parent_id": "microbiome/dada-16S", + "path": "topics/microbiome/tutorials/dada-16S/workflows/workflow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": true, + "title": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-dada-16S/versions/workflow", + "tutorial_id": "dada-16S", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/dada-16S/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/dada-16S/workflows/workflow.html", + "version": 1, + "wfid": "microbiome-dada-16S", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "__SORTLIST__", + "__UNZIP_COLLECTION__", + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_dada/dada2_dada/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_filterandtrim/dada2_filterAndTrim/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_learnerrors/dada2_learnErrors/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_mergepairs/dada2_mergePairs/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_plotqualityprofile/dada2_plotQualityProfile/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_removebimeradenovo/dada2_removeBimeraDenovo/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/phyloseq_from_dada2/phyloseq_from_dada2/1.46.0+galaxy0" + ], + "workflowhub_id": "1105" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.800651" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "1334cb4c6b68", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_reverse", + "owner": "iuc", + "revisions": "0f1724dd59d2", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "328c607150ff", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "5e33b465d8d5", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "93d623d9979c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: 1334cb4c6b68\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_reverse\n owner: iuc\n revisions: 0f1724dd59d2\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 328c607150ff\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 5e33b465d8d5\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 93d623d9979c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + } + ], + "dir": "topics/microbiome/tutorials/nanopore-16S-metagenomics", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Statistical calculation", + "Taxonomic classification", + "Validation", + "Sequencing quality control", + "Sequence composition calculation", + "Sequence contamination filtering", + "Visualisation" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/nanopore-16S-metagenomics", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We learned to use MinION Nanopore data for analyzing the health status of the soil", + "We preprocessed Nanopore sequences in order to improve their quality" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Use Nanopore data for studying soil metagenomics", + "Analyze and preprocess Nanopore reads", + "Use Kraken2 to assign a taxonomic labels" + ], + "pageviews": 3518, + "pub_date": "2020-11-24", + "questions": [ + "How can we analyse the health status of the soil?", + "How do plants modify the composition of microbial communities?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/nanopore-16S-metagenomics/tutorial", + "/short/microbiome/nanopore-16S-metagenomics", + "/short/T00207", + "/short/T00392" + ], + "short_id": "T00392", + "short_tools": [ + "porechop", + "fastqc", + "taxonomy_krona_chart", + "multiqc", + "datamash_reverse", + "kraken2", + "fastp", + "tp_replace_in_line", + "Remove beginning1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "nanopore", + "microgalaxy", + "plants" + ], + "time_estimation": "2H", + "title": "16S Microbial analysis with Nanopore data", + "tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_reverse/datamash_reverse/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.0.8_beta+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.3" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "nanopore-16S-metagenomics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 167, + "visitors": 2500, + "workflows": [ + { + "creators": [], + "description": "16S rRNA analysis with Nanopore reads", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 1[label=\"FastQC\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Porechop\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"MultiQC\"]\n 1 -> 3 [label=\"text_file\"]\n 4[label=\"fastp\"]\n 2 -> 4 [label=\"outfile\"]\n 5[label=\"FastQC\"]\n 4 -> 5 [label=\"out1\"]\n 6[label=\"Kraken2\"]\n 4 -> 6 [label=\"out1\"]\n 7[label=\"MultiQC\"]\n 5 -> 7 [label=\"text_file\"]\n 8[label=\"Reverse\"]\n 6 -> 8 [label=\"report_output\"]\n 9[label=\"Replace Text\"]\n 8 -> 9 [label=\"out_file\"]\n 10[label=\"Remove beginning\"]\n 9 -> 10 [label=\"outfile\"]\n 11[label=\"Krona pie chart\"]\n 10 -> 11 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "18fc8b44-c752-41a0-a17c-e03797a5fab1", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"FastQC\"];\n 0 -->|output| 1;\n 2[\"Porechop\"];\n 0 -->|output| 2;\n 3[\"MultiQC\"];\n 1 -->|text_file| 3;\n 4[\"fastp\"];\n 2 -->|outfile| 4;\n 5[\"FastQC\"];\n 4 -->|out1| 5;\n 6[\"Kraken2\"];\n 4 -->|out1| 6;\n 7[\"MultiQC\"];\n 5 -->|text_file| 7;\n 8[\"Reverse\"];\n 6 -->|report_output| 8;\n 9[\"Replace Text\"];\n 8 -->|out_file| 9;\n 10[\"Remove beginning\"];\n 9 -->|outfile| 10;\n 11[\"Krona pie chart\"];\n 10 -->|out_file1| 11;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Training: 16S rRNA Analysis with Nanopore Sequencing Reads", + "outputs": [], + "parent_id": "microbiome/nanopore-16S-metagenomics", + "path": "topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Training: 16S rRNA Analysis with Nanopore Sequencing Reads", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-nanopore-16S-metagenomics/versions/main-workflow", + "tutorial_id": "nanopore-16S-metagenomics", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.html", + "version": 1, + "wfid": "microbiome-nanopore-16S-metagenomics", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_reverse/datamash_reverse/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.0.8_beta+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.3" + ], + "workflowhub_id": "1064" + } + ], + "zenodo_link": "https://zenodo.org/record/4274812" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unique", + "owner": "bgruening", + "revisions": "7ce75adb93be", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools", + "owner": "devteam", + "revisions": "befc9dad4ca8", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "f6877ad76b00", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "03e9b2fbc005", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "21e491ad532a", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "21e491ad532a", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "coverm_contig", + "owner": "iuc", + "revisions": "6941d0d453ba", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filter_tabular", + "owner": "iuc", + "revisions": "34d29339abab", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "megahit", + "owner": "iuc", + "revisions": "14ddfc8ffb93", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "megahit_contig2fastg", + "owner": "iuc", + "revisions": "4ec5b3777508", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ngsutils_bam_filter", + "owner": "iuc", + "revisions": "2e957d4c4b95", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "3061c8b029e5", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "5915ea1ec9b1", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaspades", + "owner": "nml", + "revisions": "fd128c111ab0", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unique\n owner: bgruening\n revisions: 7ce75adb93be\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools\n owner: devteam\n revisions: befc9dad4ca8\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: f6877ad76b00\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: 03e9b2fbc005\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 21e491ad532a\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 21e491ad532a\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: coverm_contig\n owner: iuc\n revisions: 6941d0d453ba\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filter_tabular\n owner: iuc\n revisions: 34d29339abab\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: megahit\n owner: iuc\n revisions: 14ddfc8ffb93\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: megahit_contig2fastg\n owner: iuc\n revisions: 4ec5b3777508\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ngsutils_bam_filter\n owner: iuc\n revisions: 2e957d4c4b95\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 3061c8b029e5\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 5915ea1ec9b1\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaspades\n owner: nml\n revisions: fd128c111ab0\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-assembly/tutorial.json", + "contributions": { + "authorship": [ + "plushz", + "bebatut" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "id": "plushz", + "joined": "2022-03", + "name": "Polina Polunina", + "orcid": "0000-0002-0507-4602", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/plushz/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/plushz.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/microbiome/tutorials/metagenomics-assembly", + "edam_ontology": [ + "topic_3174", + "topic_0196" + ], + "edam_operation": [ + "Statistical calculation", + "Sequence file editing", + "Data handling", + "Sequence assembly validation", + "Sequencing quality control", + "Sequence contamination filtering", + "Sequence assembly visualisation", + "Primer removal", + "Read pre-processing", + "Sequence trimming", + "Variant calling", + "Local alignment", + "Sequence alignment analysis", + "Formatting", + "Genome assembly", + "Sequence composition calculation", + "Read mapping", + "Visualisation" + ], + "edam_topic": [ + "Metagenomics", + "Sequence assembly" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/metagenomics-assembly", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "js_requirements": { + "mathjax": 25185, + "mermaid": false + }, + "key_points": [ + "Assembly groups reads into contigs and scafolds.", + "De Brujin Graphs use k-mers to assembly reads", + "MetaSPAdes and MEGAHIT are assemblers", + "Quast is the tool to assess the assembly quality" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Describe what an assembly is", + "Describe what de-replication is", + "Explain the difference between co-assembly and individual assembly", + "Explain the difference between reads, contigs and scaffolds", + "Explain how tools based on De Bruijn graph work", + "Apply appropriate tools for analyzing the quality of metagenomic data", + "Construct and apply simple assembly pipelines on short read data", + "Apply appropriate tools for analyzing the quality of metagenomic assembly", + "Evaluate the Quality of the Assembly with Quast, Bowtie2, and CoverM-Genome" + ], + "pageviews": 2033, + "pub_date": "2022-12-05", + "questions": [ + "Why metagenomic data should be assembled?", + "What is the difference between co-assembly and individual assembly?", + "What is the difference between reads, contigs and scaffolds?", + "How tools based on De Bruijn graph work?", + "How to assess the quality of metagenomic data assembly?" + ], + "recordings": [ + { + "captioners": [ + "bebatut", + "sophia120199" + ], + "date": "2023-05-02", + "galaxy_version": "23.01", + "length": "1H", + "speakers": [ + "bebatut" + ], + "youtube_id": "1ZYGy85Im7w" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metagenomics-assembly/tutorial", + "/short/microbiome/metagenomics-assembly", + "/short/T00202", + "/short/T00386" + ], + "short_id": "T00386", + "short_tools": [ + "quast", + "fastqc", + "random_lines1", + "bg_uniq", + "bamtools", + "bandage_image", + "bandage_info", + "bowtie2", + "metaspades", + "megahit_contig2fastg", + "cutadapt", + "collection_column_join", + "tp_cat", + "megahit", + "ngsutils_bam_filter", + "filter_tabular", + "seqtk_subseq", + "coverm_contig" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "assembly", + "metagenomics", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Assembly of metagenomic sequencing data", + "tools": [ + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/coverm_contig/coverm_contig/0.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy10", + "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metagenomics-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-assembly/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 722, + "visit_duration": 160, + "visitors": 1455, + "workflows": [ + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[label=\"metaSPAdes\"]\n 0 -> 1 [label=\"output\"]\n k833d79ffe16f414c9c41db8dbfa8ed6b[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Scaffolds\"]\n 1 -> k833d79ffe16f414c9c41db8dbfa8ed6b\n k10319152d2f947d8be41f956a57e86d3[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Assembly graph\"]\n 1 -> k10319152d2f947d8be41f956a57e86d3\n kb1ffc3a48e394255ac57fd7cfb9c1633[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Assembly graph with scaffolds\"]\n 1 -> kb1ffc3a48e394255ac57fd7cfb9c1633\n kb6b74c9d5a164725a1d111c1f05ee909[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Contigs\"]\n 1 -> kb6b74c9d5a164725a1d111c1f05ee909\n 2[label=\"MEGAHIT\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Bowtie2\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"megahit contig2fastg\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Quast\"]\n 2 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Bandage Image\"]\n 4 -> 6 [label=\"fastg\"]\n 7[label=\"Bandage Info\"]\n 4 -> 7 [label=\"fastg\"]\n 8[label=\"Column join\"]\n 7 -> 8 [label=\"outfile\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 480 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cdb65097-d956-4715-9cd4-fadc9b0c07c5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c8ca2f5f-b0f4-4d90-8259-9e4796c4a35f" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"metaSPAdes\"];\n 0 -->|output| 1;\n 833d79ff-e16f-414c-9c41-db8dbfa8ed6b[\"Output\\nmetaSPAdes on input dataset(s): Scaffolds\"];\n 1 --> 833d79ff-e16f-414c-9c41-db8dbfa8ed6b;\n style 833d79ff-e16f-414c-9c41-db8dbfa8ed6b stroke:#2c3143,stroke-width:4px;\n 10319152-d2f9-47d8-be41-f956a57e86d3[\"Output\\nmetaSPAdes on input dataset(s): Assembly graph\"];\n 1 --> 10319152-d2f9-47d8-be41-f956a57e86d3;\n style 10319152-d2f9-47d8-be41-f956a57e86d3 stroke:#2c3143,stroke-width:4px;\n b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633[\"Output\\nmetaSPAdes on input dataset(s): Assembly graph with scaffolds\"];\n 1 --> b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633;\n style b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633 stroke:#2c3143,stroke-width:4px;\n b6b74c9d-5a16-4725-a1d1-11c1f05ee909[\"Output\\nmetaSPAdes on input dataset(s): Contigs\"];\n 1 --> b6b74c9d-5a16-4725-a1d1-11c1f05ee909;\n style b6b74c9d-5a16-4725-a1d1-11c1f05ee909 stroke:#2c3143,stroke-width:4px;\n 2[\"MEGAHIT\"];\n 0 -->|output| 2;\n 3[\"Bowtie2\"];\n 0 -->|output| 3;\n 2 -->|output| 3;\n 4[\"megahit contig2fastg\"];\n 2 -->|output| 4;\n 5[\"Quast\"];\n 2 -->|output| 5;\n 0 -->|output| 5;\n 6[\"Bandage Image\"];\n 4 -->|fastg| 6;\n 7[\"Bandage Info\"];\n 4 -->|fastg| 7;\n 8[\"Column join\"];\n 7 -->|outfile| 8;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Metagenomics assembly tutorial workflow", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 480 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cdb65097-d956-4715-9cd4-fadc9b0c07c5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c8ca2f5f-b0f4-4d90-8259-9e4796c4a35f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2", + "errors": null, + "id": 1, + "input_connections": { + "singlePaired|input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool metaSPAdes", + "name": "arf" + }, + { + "description": "runtime parameter for tool metaSPAdes", + "name": "arf" + }, + { + "description": "runtime parameter for tool metaSPAdes", + "name": "singlePaired" + } + ], + "label": null, + "name": "metaSPAdes", + "outputs": [ + { + "name": "out_ag", + "type": "fastg" + }, + { + "name": "out_ags", + "type": "txt" + }, + { + "name": "out_cn", + "type": "fasta" + }, + { + "name": "out_sc", + "type": "fasta" + } + ], + "position": { + "left": 247.0, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "fd128c111ab0", + "name": "metaspades", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"additional_reads\": {\"selector\": \"false\", \"__current_case__\": 1}, \"arf\": {\"nanopore\": {\"__class__\": \"RuntimeValue\"}, \"pacbio\": {\"__class__\": \"RuntimeValue\"}}, \"kmer_cond\": {\"kmer_sel\": \"manual\", \"__current_case__\": 1, \"manual\": \"21,33,55,77\"}, \"library_number\": \"true\", \"mode_sel\": null, \"optional_output\": [\"ag\", \"ags\", \"cn\", \"sc\"], \"phred_offset\": \"auto\", \"singlePaired\": {\"sPaired\": \"paired_collection\", \"__current_case__\": 2, \"input\": {\"__class__\": \"RuntimeValue\"}, \"type_paired\": \"pe\", \"orientation\": \"fr\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.15.4+galaxy2", + "type": "tool", + "uuid": "7dc08460-f398-4f1d-9f30-1736cf636a13", + "workflow_outputs": [ + { + "label": "metaSPAdes on input dataset(s): Scaffolds", + "output_name": "out_sc", + "uuid": "833d79ff-e16f-414c-9c41-db8dbfa8ed6b" + }, + { + "label": "metaSPAdes on input dataset(s): Assembly graph", + "output_name": "out_ag", + "uuid": "10319152-d2f9-47d8-be41-f956a57e86d3" + }, + { + "label": "metaSPAdes on input dataset(s): Assembly graph with scaffolds", + "output_name": "out_ags", + "uuid": "b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633" + }, + { + "label": "metaSPAdes on input dataset(s): Contigs", + "output_name": "out_cn", + "uuid": "b6b74c9d-5a16-4725-a1d1-11c1f05ee909" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_option|batchmode|pair_input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MEGAHIT", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 278.0, + "top": 464 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "14ddfc8ffb93", + "name": "megahit", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"advanced_section\": {\"nomercy\": \"false\", \"bubble_level\": \"2\", \"merge_level\": \"20,0.95\", \"prune_level\": \"2\", \"prune_depth\": \"2\", \"disconnect_ratio\": \"0.1\", \"low_local_ratio\": \"0.2\", \"cleaning_rounds\": \"5\", \"nolocal\": \"false\", \"kmin1pass\": \"false\"}, \"basic_section\": {\"min_count\": \"2\", \"k_mer\": {\"k_mer_method\": \"klim_method\", \"__current_case__\": 1, \"k_min\": \"21\", \"k_max\": \"91\", \"k_step\": \"12\"}}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_option\": {\"choice\": \"paired_collection\", \"__current_case__\": 3, \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"pair_input\": {\"__class__\": \"ConnectedValue\"}}}, \"output_section\": {\"min_contig_len\": \"200\", \"show_intermediate_contigs\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.9+galaxy0", + "type": "tool", + "uuid": "ffbb16f2-580a-4832-8b6d-e67932e24b27", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "061ac8dd-de43-467d-9c15-a4f46a125103" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "reference_genome|own_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 556.0, + "top": 130 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "03e9b2fbc005", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"own_file|__identifier__\": \"ERR2231567\", \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.0+galaxy0", + "type": "tool", + "uuid": "9f445c6b-31c9-4ff0-b559-6be00fb0fc17", + "workflow_outputs": [ + { + "label": null, + "output_name": "mapping_stats", + "uuid": "ff350260-91cd-4f01-a82f-f64e8eddd4ed" + }, + { + "label": null, + "output_name": "output", + "uuid": "2fa389b6-088a-4686-94e9-de884f86e1b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "contigs": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "megahit contig2fastg", + "outputs": [ + { + "name": "fastg", + "type": "fastg" + } + ], + "position": { + "left": 556.0, + "top": 444 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "4ec5b3777508", + "name": "megahit_contig2fastg", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contigs\": {\"__class__\": \"ConnectedValue\"}, \"contigs|__identifier__\": \"ERR2231567\", \"kmer\": \"91\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3+galaxy1", + "type": "tool", + "uuid": "c839a8b8-c719-474d-957e-d94614491f13", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastg", + "uuid": "91718981-2ae5-4cdd-8007-0ce9cc3c68f6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "in|inputs": { + "id": 2, + "output_name": "output" + }, + "reads|input_1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "metrics_tabular", + "type": "input" + }, + { + "name": "metrics_pdf", + "type": "input" + }, + { + "name": "report_tabular_meta", + "type": "tabular" + }, + { + "name": "report_html_meta", + "type": "html" + }, + { + "name": "log_meta", + "type": "txt" + }, + { + "name": "krona", + "type": "html" + } + ], + "position": { + "left": 556.0, + "top": 636 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3061c8b029e5", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": \"false\", \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": \"true\", \"fragmented_max_indent\": null, \"report_all_metrics\": \"false\", \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": \"false\", \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": \"false\", \"upper_bound_assembly\": \"false\", \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"metagenome\", \"__current_case__\": 1, \"ref\": {\"origin\": \"none\", \"__current_case__\": 3}, \"reuse_combined_alignments\": \"false\", \"min_identity\": \"90.0\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": \"false\", \"conserved_genes_finding\": \"false\"}, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"large\": \"false\", \"min_contig\": \"500\", \"output_files\": [\"html\", \"pdf\", \"tabular\", \"log\", \"summary\", \"krona\"], \"reads\": {\"reads_option\": \"paired_collection\", \"__current_case__\": 3, \"input_1\": {\"__class__\": \"ConnectedValue\"}}, \"split_scaffolds\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy0", + "type": "tool", + "uuid": "12072d4c-8ad5-4de1-bbe2-3b081b8373be", + "workflow_outputs": [ + { + "label": null, + "output_name": "log_meta", + "uuid": "33c6424f-fceb-45d1-9462-ea3e7cda79ea" + }, + { + "label": null, + "output_name": "krona", + "uuid": "44457a4b-760c-4080-b552-dc4724906b2c" + }, + { + "label": null, + "output_name": "metrics_tabular", + "uuid": "9b2b72ac-a297-46a2-883f-8f1704664cf3" + }, + { + "label": null, + "output_name": "report_tabular_meta", + "uuid": "1259f3a1-4952-48f1-be69-0fde3b6be9de" + }, + { + "label": null, + "output_name": "report_html_meta", + "uuid": "b8f1b46c-1421-4952-9e87-1790bdd076df" + }, + { + "label": null, + "output_name": "metrics_pdf", + "uuid": "ac4aa63b-5dc1-4b4c-bbb0-6afce689f0d2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "errors": null, + "id": 6, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "fastg" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 834.0, + "top": 466 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "21e491ad532a", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"input_file|__identifier__\": \"ERR2231567\", \"lengths\": \"false\", \"names\": \"false\", \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy4", + "type": "tool", + "uuid": "31b35530-ae7f-4e9c-8021-6983cf3f3401", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "e02c022d-3067-40ce-8bb6-4cc258d8523a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "fastg" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 834.0, + "top": 679 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b9e31c5c01c7", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"input_file|__identifier__\": \"ERR2231567\", \"tsv\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "b63e03dc-b9be-4a72-ac81-64b63ddf99f2", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "6bd3194a-9e8c-4677-b42c-2fb3bd1116f3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "errors": null, + "id": 8, + "input_connections": { + "input_tabular": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Column join", + "outputs": [ + { + "name": "tabular_output", + "type": "tabular" + } + ], + "position": { + "left": 1112.0, + "top": 732 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "tool_shed_repository": { + "changeset_revision": "3ddd99c7efee", + "name": "collection_column_join", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fill_char\": \".\", \"has_header\": \"0\", \"identifier_column\": \"1\", \"include_outputs\": null, \"input_tabular\": {\"__class__\": \"ConnectedValue\"}, \"old_col_in_header\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.3", + "type": "tool", + "uuid": "e9dc42b2-c638-4b9c-af5f-ce84f6b0d654", + "workflow_outputs": [ + { + "label": null, + "output_name": "tabular_output", + "uuid": "fe5b4460-6fa0-48a8-84e7-b3b8270e9b8f" + } + ] + } + ], + "parent_id": "microbiome/metagenomics-assembly", + "path": "topics/microbiome/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "Metagenomics assembly tutorial workflow", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metagenomics-assembly/versions/metagenomics-assembly-tutorial-workflow", + "tutorial_id": "metagenomics-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.html", + "version": 1, + "wfid": "microbiome-metagenomics-assembly", + "wfname": "metagenomics-assembly-tutorial-workflow", + "workflow": "metagenomics_assembly_tutorial_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2" + ], + "workflowhub_id": "1103" + }, + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nERR2231567_1.fastq.gz\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nERR2231567_2.fastq.gz\"]\n 2[label=\"Cutadapt\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"MEGAHIT\"]\n 2 -> 3 [label=\"out1\"]\n 2 -> 3 [label=\"out2\"]\n 4[label=\"Bowtie2\"]\n 2 -> 4 [label=\"out1\"]\n 2 -> 4 [label=\"out2\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"BAM filter\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"BAM filter\"]\n 4 -> 6 [label=\"output\"]\n 7[label=\"Convert, Merge, Randomize\"]\n 5 -> 7 [label=\"outfile\"]\n 8[label=\"Convert, Merge, Randomize\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"Select random lines\"]\n 7 -> 9 [label=\"out_file1\"]\n 10[label=\"Select random lines\"]\n 8 -> 10 [label=\"out_file1\"]\n 11[label=\"Filter Tabular\"]\n 9 -> 11 [label=\"out_file1\"]\n 12[label=\"Filter Tabular\"]\n 10 -> 12 [label=\"out_file1\"]\n 13[label=\"Unique\"]\n 11 -> 13 [label=\"output\"]\n 14[label=\"Unique\"]\n 12 -> 14 [label=\"output\"]\n 15[label=\"Concatenate datasets\"]\n 13 -> 15 [label=\"outfile\"]\n 14 -> 15 [label=\"outfile\"]\n 16[label=\"seqtk_subseq\"]\n 2 -> 16 [label=\"out1\"]\n 15 -> 16 [label=\"out_file1\"]\n 17[label=\"seqtk_subseq\"]\n 2 -> 17 [label=\"out2\"]\n 15 -> 17 [label=\"out_file1\"]\n 18[label=\"FastQC\"]\n 16 -> 18 [label=\"default\"]\n 19[label=\"FastQC\"]\n 17 -> 19 [label=\"default\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ERR2231567_1.fastq.gz" + } + ], + "label": "ERR2231567_1.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 174.98046875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ac2a7e31-6a0c-43f0-b39f-6764ae421dea", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ERR2231567_2.fastq.gz" + } + ], + "label": "ERR2231567_2.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.03515625, + "top": 365.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2e1fd5bf-3b01-49dd-a091-75c7215eb3f9", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nERR2231567_1.fastq.gz\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nERR2231567_2.fastq.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Cutadapt\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"MEGAHIT\"];\n 2 -->|out1| 3;\n 2 -->|out2| 3;\n 4[\"Bowtie2\"];\n 2 -->|out1| 4;\n 2 -->|out2| 4;\n 3 -->|output| 4;\n 5[\"BAM filter\"];\n 4 -->|output| 5;\n 6[\"BAM filter\"];\n 4 -->|output| 6;\n 7[\"Convert, Merge, Randomize\"];\n 5 -->|outfile| 7;\n 8[\"Convert, Merge, Randomize\"];\n 6 -->|outfile| 8;\n 9[\"Select random lines\"];\n 7 -->|out_file1| 9;\n 10[\"Select random lines\"];\n 8 -->|out_file1| 10;\n 11[\"Filter Tabular\"];\n 9 -->|out_file1| 11;\n 12[\"Filter Tabular\"];\n 10 -->|out_file1| 12;\n 13[\"Unique\"];\n 11 -->|output| 13;\n 14[\"Unique\"];\n 12 -->|output| 14;\n 15[\"Concatenate datasets\"];\n 13 -->|outfile| 15;\n 14 -->|outfile| 15;\n 16[\"seqtk_subseq\"];\n 2 -->|out1| 16;\n 15 -->|out_file1| 16;\n 17[\"seqtk_subseq\"];\n 2 -->|out2| 17;\n 15 -->|out_file1| 17;\n 18[\"FastQC\"];\n 16 -->|default| 18;\n 19[\"FastQC\"];\n 17 -->|default| 19;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "workflow-generate-dataset-for-assembly-tutorial", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "library|input_2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "out2", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 248.0078125, + "top": 260.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5915ea1ec9b1", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"internal\": \"\", \"error_rate\": \"0.1\", \"no_indels\": \"false\", \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"revcomp\": \"false\"}, \"filter_options\": {\"discard_trimmed\": \"false\", \"discard_untrimmed\": \"false\", \"minimum_length\": \"200\", \"maximum_length\": null, \"length_R2_options\": {\"length_R2_status\": \"False\", \"__current_case__\": 1}, \"max_n\": null, \"pair_filter\": \"any\", \"max_expected_errors\": null, \"discard_cassava\": \"false\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\", \"quality_cutoff2\": \"\"}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"strip_suffix\": \"\", \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0+galaxy0", + "type": "tool", + "uuid": "67ddef5c-cde3-462d-a189-77028682a357", + "workflow_outputs": [ + { + "label": null, + "output_name": "out1", + "uuid": "7b3621e4-5077-4ac8-95d3-61a94a6ee664" + }, + { + "label": null, + "output_name": "out2", + "uuid": "f7db5a96-f4e7-4caf-8e78-093d4e6b007c" + }, + { + "label": null, + "output_name": "report", + "uuid": "ff6985ad-6afe-4cf7-9def-223fdd5e5f62" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input_option|fastq_input1": { + "id": 2, + "output_name": "out1" + }, + "input_option|fastq_input2": { + "id": 2, + "output_name": "out2" + } + }, + "inputs": [], + "label": null, + "name": "MEGAHIT", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 735.9765625, + "top": 301.97265625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "14ddfc8ffb93", + "name": "megahit", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_section\": {\"nomercy\": \"false\", \"bubble_level\": \"2\", \"merge_level\": \"20,0.95\", \"prune_level\": \"2\", \"prune_depth\": \"2\", \"disconnect_ratio\": \"0.1\", \"low_local_ratio\": \"0.2\", \"cleaning_rounds\": \"5\", \"nolocal\": \"false\", \"kmin1pass\": \"false\"}, \"basic_section\": {\"min_count\": \"2\", \"k_mer\": {\"k_mer_method\": \"klist_method\", \"__current_case__\": 0, \"k_list\": \"21,29,39,59,79,99,119,141\"}}, \"input_option\": {\"choice\": \"paired\", \"__current_case__\": 2, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"fastq_input2\": {\"__class__\": \"ConnectedValue\"}}, \"output_section\": {\"min_contig_len\": \"200\", \"show_intermediate_contigs\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.9+galaxy0", + "type": "tool", + "uuid": "0e1e0ffb-4536-4802-b886-5f5f391255d1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7a0e5487-3923-46e0-9976-d3fdc3fe7e09" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "library|input_1": { + "id": 2, + "output_name": "out1" + }, + "library|input_2": { + "id": 2, + "output_name": "out2" + }, + "reference_genome|own_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 979.00390625, + "top": 40.9765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "f6877ad76b00", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.5+galaxy1", + "type": "tool", + "uuid": "cd8574f0-da3e-4dc1-848e-6f21c57831e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "mapping_stats", + "uuid": "cf119c49-eee7-448a-bfff-0f1053f87821" + }, + { + "label": null, + "output_name": "output", + "uuid": "44b0908f-2158-4ea2-be6f-65c0dd803bcb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool BAM filter", + "name": "excludebed" + }, + { + "description": "runtime parameter for tool BAM filter", + "name": "includebed" + } + ], + "label": null, + "name": "BAM filter", + "outputs": [ + { + "name": "outfile", + "type": "bam" + } + ], + "position": { + "left": 1265.01953125, + "top": 0.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "tool_shed_repository": { + "changeset_revision": "2e957d4c4b95", + "name": "ngsutils_bam_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"excludebed\": {\"__class__\": \"RuntimeValue\"}, \"excluderef\": \"\", \"ignore_strand\": \"false\", \"includebed\": {\"__class__\": \"RuntimeValue\"}, \"includeref\": \"\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mapped\": \"false\", \"mask\": \"\", \"maximum_mismatch_ratio\": null, \"maxlen\": null, \"minlen\": null, \"mismatch\": null, \"nopcrdup\": \"false\", \"noproperpair\": \"false\", \"noqcfail\": \"false\", \"nosecondary\": \"false\", \"properpair\": \"false\", \"uniq\": \"-1\", \"uniq_start\": \"false\", \"unmapped\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.9", + "type": "tool", + "uuid": "e2b45ca6-2a67-4b95-a454-5c67fa87bccb", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "c1c6c99c-c810-41f4-84f3-5998c50b1422" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool BAM filter", + "name": "excludebed" + }, + { + "description": "runtime parameter for tool BAM filter", + "name": "includebed" + } + ], + "label": null, + "name": "BAM filter", + "outputs": [ + { + "name": "outfile", + "type": "bam" + } + ], + "position": { + "left": 1268.0078125, + "top": 354.00390625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "tool_shed_repository": { + "changeset_revision": "2e957d4c4b95", + "name": "ngsutils_bam_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"excludebed\": {\"__class__\": \"RuntimeValue\"}, \"excluderef\": \"\", \"ignore_strand\": \"false\", \"includebed\": {\"__class__\": \"RuntimeValue\"}, \"includeref\": \"\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mapped\": \"true\", \"mask\": \"\", \"maximum_mismatch_ratio\": null, \"maxlen\": null, \"minlen\": null, \"mismatch\": null, \"nopcrdup\": \"false\", \"noproperpair\": \"false\", \"noqcfail\": \"false\", \"nosecondary\": \"false\", \"properpair\": \"false\", \"uniq\": \"-1\", \"uniq_start\": \"false\", \"unmapped\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.9", + "type": "tool", + "uuid": "eb538482-dcf6-4509-b4b0-3da71ac6c600", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "b7c08a3a-296d-4352-90a6-423897d8cc74" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input_bams": { + "id": 5, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Convert, Merge, Randomize", + "outputs": [ + { + "name": "out_file1", + "type": "txt" + } + ], + "position": { + "left": 1559.00390625, + "top": 110.9765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "befc9dad4ca8", + "name": "bamtools", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"convert\", \"__current_case__\": 0, \"format_type\": {\"format_type_selector\": \"sam\", \"__current_case__\": 6, \"noheader\": \"false\"}}, \"input_bams\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.1+galaxy0", + "type": "tool", + "uuid": "8dc250e9-c89b-40be-8432-08a7330d6e27", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "8ad07a76-7793-43b2-add3-7e236a696172" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input_bams": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Convert, Merge, Randomize", + "outputs": [ + { + "name": "out_file1", + "type": "txt" + } + ], + "position": { + "left": 1548.0078125, + "top": 462.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "befc9dad4ca8", + "name": "bamtools", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"convert\", \"__current_case__\": 0, \"format_type\": {\"format_type_selector\": \"sam\", \"__current_case__\": 6, \"noheader\": \"false\"}}, \"input_bams\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.1+galaxy0", + "type": "tool", + "uuid": "b5c1bcac-9624-477c-998f-a0988b110a26", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9801f8ee-e700-4e9b-bbfc-7ccf7aa99372" + } + ] + }, + { + "annotation": "", + "content_id": "random_lines1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 7, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select random lines", + "name": "input" + } + ], + "label": null, + "name": "Select random lines", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1823.0078125, + "top": 182.98828125 + }, + "post_job_actions": {}, + "tool_id": "random_lines1", + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"num_lines\": \"210000\", \"seed_source\": {\"seed_source_selector\": \"no_seed\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2", + "type": "tool", + "uuid": "88f4ed97-5899-48f1-a5de-256be6e58862", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "69da2900-e66d-4d95-9bdb-1d9f801097e3" + } + ] + }, + { + "annotation": "", + "content_id": "random_lines1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select random lines", + "name": "input" + } + ], + "label": null, + "name": "Select random lines", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1826.9921875, + "top": 535.99609375 + }, + "post_job_actions": {}, + "tool_id": "random_lines1", + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"num_lines\": \"1000000\", \"seed_source\": {\"seed_source_selector\": \"no_seed\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2", + "type": "tool", + "uuid": "9064c0e8-fdc9-4347-99c2-bd6d97104fc9", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "fd4f3605-1f48-4583-b11a-91a9869e7946" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2081.015625, + "top": 212.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "34d29339abab", + "name": "filter_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "302a62bb-98f7-4998-b290-281bb52e3c70", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e83fbb91-742e-448f-8592-bdf37ce3cbdf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2085, + "top": 566.97265625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "34d29339abab", + "name": "filter_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "ab1a4102-7bb2-4ba7-80d1-2a532b410201", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2701a2bd-2ec9-433a-9f26-7f35410ec018" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2330, + "top": 265.99609375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "tool_shed_repository": { + "changeset_revision": "7ce75adb93be", + "name": "unique", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"ignore_case\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3", + "type": "tool", + "uuid": "2a68a6a4-4d3d-4de3-bc64-35edc63287f9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "b2bb66d7-fe76-4ce3-bb5b-72c979a755d1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2331.97265625, + "top": 617.94921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "tool_shed_repository": { + "changeset_revision": "7ce75adb93be", + "name": "unique", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"ignore_case\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3", + "type": "tool", + "uuid": "c2d1dc5c-4d14-45e5-9bb9-bdab787ea5f3", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "df0bbae1-b735-4cf4-a5a3-ef4f8b525a4e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 15, + "input_connections": { + "inputs": [ + { + "id": 13, + "output_name": "outfile" + }, + { + "id": 14, + "output_name": "outfile" + } + ] + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2575, + "top": 417.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "bf2ba224-25ae-4ec3-9a1f-7cb1afd0aef2", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "53ae320a-b570-4985-ae2a-8344e15e43f9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 16, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "out1" + }, + "source|name_list": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2847.98828125, + "top": 819.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"l\": \"0\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "478adb2b-4910-4aed-af4e-2a66e9a1922c", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "b47e4af0-c185-4b6f-a529-6f0ef96a14ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 17, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "out2" + }, + "source|name_list": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2836.97265625, + "top": 1019.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"l\": \"0\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "81ae5423-c7d0-4ceb-a6e4-168ab1f3fd35", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "c7de5bbe-f941-4772-bb32-15aeff98678a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "input_file": { + "id": 16, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 3135.9765625, + "top": 775.99609375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "6d6cee2a-b879-463b-81d1-7ab4f72ca04b", + "workflow_outputs": [ + { + "label": null, + "output_name": "text_file", + "uuid": "ca3ea14a-b1cc-481d-b1a3-2b46b8d24809" + }, + { + "label": null, + "output_name": "html_file", + "uuid": "6849e3f4-33bc-47a9-8ef5-b7cbbdfe0d93" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "input_file": { + "id": 17, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 3133.984375, + "top": 1104.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "54fc20b8-5520-4b93-a7d8-ed447df19b3c", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "a85a4180-b2ab-4cac-9c71-76aee3df673f" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "65e24721-ec93-4648-9310-c3c2609b7818" + } + ] + } + ], + "parent_id": "microbiome/metagenomics-assembly", + "path": "topics/microbiome/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "workflow-generate-dataset-for-assembly-tutorial", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metagenomics-assembly/versions/workflow-generate-dataset-for-assembly-tutorial", + "tutorial_id": "metagenomics-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.html", + "version": 1, + "wfid": "microbiome-metagenomics-assembly", + "wfname": "workflow-generate-dataset-for-assembly-tutorial", + "workflow": "workflow-generate-dataset-for-assembly-tutorial.ga", + "workflow_tools": [ + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0" + ], + "workflowhub_id": "1099" + } + ], + "zenodo_link": "https://zenodo.org/record/7818827" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "krakentools_alpha_diversity", + "owner": "iuc", + "revisions": "bab112ba9d62", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_beta_diversity", + "owner": "iuc", + "revisions": "c254d75b8b67", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: krakentools_alpha_diversity\n owner: iuc\n revisions: bab112ba9d62\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_beta_diversity\n owner: iuc\n revisions: c254d75b8b67\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/diversity/tutorial.json", + "contributions": { + "authorship": [ + "sophia120199", + "bebatut", + "paulzierep" + ] + }, + "contributors": [ + { + "id": "sophia120199", + "joined": "2023-04", + "name": "Sophia Hampe", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sophia120199/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sophia120199.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + } + ], + "dir": "topics/microbiome/tutorials/diversity", + "draft": false, + "edam_operation": [ + "Aggregation", + "Visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@Pasteur", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/diversity", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 8337, + "mermaid": false + }, + "key_points": [ + "There are 2 different types of diversity metrics (\u03b1 and \u03b2 diversity)", + "Krakentools can be used in Galaxy for calculating the diversity" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-06", + "objectives": [ + "Explain what taxonomic diversity is", + "Explain different metrics to calculate \u03b1 and \u03b2 diversity", + "Apply Krakentools to calculate \u03b1 and \u03b2 diversity and understand the output" + ], + "pageviews": 127, + "pub_date": "2024-08-01", + "questions": [ + "How many different taxons are present in my sample? How do I additionally take their relative abundance into account?", + "How similar or how dissimilar are my samples in term of taxonomic diversity?", + "What are the different metrics used to calculate the taxonomic diversity of my samples?" + ], + "short_id": "T00447", + "short_tools": [ + "krakentools_alpha_diversity", + "krakentools_beta_diversity" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "Galaxy@Pasteur", + "url": "https://galaxy.pasteur.fr/", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "metagenomics", + "diversity" + ], + "time_estimation": "20M", + "title": "Calculating \u03b1 and \u03b2 diversity from microbiome taxonomic data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_alpha_diversity/krakentools_alpha_diversity/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_beta_diversity/krakentools_beta_diversity/1.2+galaxy1" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "diversity", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/diversity/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/diversity/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/diversity/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 246, + "visitors": 105, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + }, + { + "class": "Person", + "identifier": "NA", + "name": "Sophia Hampe" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Calculating diversity from bracken output", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow Inputs\n```galaxy\ninvocation_inputs()\n```\n\n## Workflow Outputs\n```galaxy\ninvocation_outputs()\n```\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Krakentools: calculates beta diversity Bray-Curtis dissimilarity\"]\n 0 -> 6 [label=\"output\"]\n}", + "history": [ + { + "hash": "e548ec8fcbcdf6978839bbd7fb0cbad8724978af", + "message": "add orcid to WF", + "num": 5, + "short_hash": "e548ec8fc", + "unix": "1722843023" + }, + { + "hash": "7e39380705c94841458f4826b03705b6aaf891e0", + "message": "add license, fix alpha div formula, add subsections", + "num": 4, + "short_hash": "7e3938070", + "unix": "1722841724" + }, + { + "hash": "d448f8052a7b897e44d2afb4a2ffe9053ab8b316", + "message": "update wf creator", + "num": 3, + "short_hash": "d448f8052", + "unix": "1722839579" + }, + { + "hash": "c0ff830e1929507fb3ad36b646990b1bcca4e748", + "message": "fix workflow", + "num": 2, + "short_hash": "c0ff830e1", + "unix": "1722519174" + }, + { + "hash": "cd4066fc9a27c98bc2f6273e8cd7d2672163a425", + "message": "add workflow", + "num": 1, + "short_hash": "cd4066fc9", + "unix": "1722518283" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 340.098225676056 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "41ce4f24-4b0b-4431-bbf4-7262199838db", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 1;\n 2[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 2;\n 3[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 3;\n 4[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 4;\n 5[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 5;\n 6[\"Krakentools: calculates beta diversity Bray-Curtis dissimilarity\"];\n 0 -->|output| 6;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Calculating diversity from microbiome taxonomic data", + "outputs": [], + "parent_id": "microbiome/diversity", + "path": "topics/microbiome/tutorials/diversity/workflows/workflow.ga", + "tags": [ + "name:GTN" + ], + "test_results": null, + "tests": true, + "title": "Calculating diversity from microbiome taxonomic data", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-diversity/versions/workflow", + "tutorial_id": "diversity", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/diversity/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/diversity/workflows/workflow.html", + "version": 1, + "wfid": "microbiome-diversity", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_alpha_diversity/krakentools_alpha_diversity/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_beta_diversity/krakentools_beta_diversity/1.2+galaxy1" + ], + "workflowhub_id": "1349" + } + ], + "zenodo_link": "https://zenodo.org/records/13150694" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "add_line_to_file", + "owner": "bgruening", + "revisions": "8e251055b1a9", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "flye", + "owner": "bgruening", + "revisions": "276f5d8712d5", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "flye", + "owner": "bgruening", + "revisions": "cb8dfd28c16f", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_on_column", + "owner": "bgruening", + "revisions": "ff2a81aa3f08", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "6cbe2f30c2d7", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "86755160afbf", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "86755160afbf", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "86755160afbf", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "86755160afbf", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clustalw", + "owner": "devteam", + "revisions": "5b097fde95dd", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_to_tabular", + "owner": "devteam", + "revisions": "e7ed3c310b74", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_fasta", + "owner": "devteam", + "revisions": "0a7799698fe5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "revisions": "f546e7278f04", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "503bcd6ebe4b", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "503bcd6ebe4b", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "abricate", + "owner": "iuc", + "revisions": "c2ef298da409", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_split_mapped", + "owner": "iuc", + "revisions": "fa7b5520ae53", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "b2860df42e16", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "da0bf365652d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "f867422772d6", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_norm", + "owner": "iuc", + "revisions": "da6fc9f4a367", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clair3", + "owner": "iuc", + "revisions": "63e02ef6e153", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_element_identifiers", + "owner": "iuc", + "revisions": "d3c07d270a50", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "compose_text_param", + "owner": "iuc", + "revisions": "e188c9826e0f", + "tool_panel_section_label": "Expression Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "c59d48774d03", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasttree", + "owner": "iuc", + "revisions": "e005e659ae21", + "tool_panel_section_label": "Genome Diversity", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_heatmap", + "owner": "iuc", + "revisions": "10515715c940", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_extract_kraken_reads", + "owner": "iuc", + "revisions": "f329328da134", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_kreport2krona", + "owner": "iuc", + "revisions": "2deaada69b14", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "revisions": "79e9a869f40e", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "11a0d50a54e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "5cc34c3f440d", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mlst", + "owner": "iuc", + "revisions": "31812e7a1315", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "9a913cdee30e", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "edbb6c5028f5", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "a02b8b3f5a0c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "newick_utils", + "owner": "iuc", + "revisions": "b4163d2f64ab", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "5f76b20953e5", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "543cbeef3949", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_coverage", + "owner": "iuc", + "revisions": "c4ff13d2aab3", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_depth", + "owner": "iuc", + "revisions": "971dc85e9441", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_fastx", + "owner": "iuc", + "revisions": "66e23b11feae", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "table_compute", + "owner": "iuc", + "revisions": "3bf5661c0280", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: add_line_to_file\n owner: bgruening\n revisions: 8e251055b1a9\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: flye\n owner: bgruening\n revisions: 276f5d8712d5\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: flye\n owner: bgruening\n revisions: cb8dfd28c16f\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_on_column\n owner: bgruening\n revisions: ff2a81aa3f08\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: 6cbe2f30c2d7\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 86755160afbf\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 86755160afbf\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 86755160afbf\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 86755160afbf\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clustalw\n owner: devteam\n revisions: 5b097fde95dd\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_to_tabular\n owner: devteam\n revisions: e7ed3c310b74\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_fasta\n owner: devteam\n revisions: 0a7799698fe5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_merge_files_and_filter_unique_sequences\n owner: galaxyp\n revisions: f546e7278f04\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 503bcd6ebe4b\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 503bcd6ebe4b\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: abricate\n owner: iuc\n revisions: c2ef298da409\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_split_mapped\n owner: iuc\n revisions: fa7b5520ae53\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: b2860df42e16\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: da0bf365652d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: f867422772d6\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_norm\n owner: iuc\n revisions: da6fc9f4a367\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clair3\n owner: iuc\n revisions: 63e02ef6e153\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_element_identifiers\n owner: iuc\n revisions: d3c07d270a50\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: compose_text_param\n owner: iuc\n revisions: e188c9826e0f\n tool_panel_section_label: Expression Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: c59d48774d03\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasttree\n owner: iuc\n revisions: e005e659ae21\n tool_panel_section_label: Genome Diversity\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_heatmap\n owner: iuc\n revisions: 10515715c940\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_extract_kraken_reads\n owner: iuc\n revisions: f329328da134\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_kreport2krona\n owner: iuc\n revisions: 2deaada69b14\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: medaka_consensus_pipeline\n owner: iuc\n revisions: 79e9a869f40e\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 11a0d50a54e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 5cc34c3f440d\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mlst\n owner: iuc\n revisions: 31812e7a1315\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 9a913cdee30e\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: edbb6c5028f5\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: a02b8b3f5a0c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: newick_utils\n owner: iuc\n revisions: b4163d2f64ab\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 5f76b20953e5\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 543cbeef3949\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_coverage\n owner: iuc\n revisions: c4ff13d2aab3\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_depth\n owner: iuc\n revisions: 971dc85e9441\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_fastx\n owner: iuc\n revisions: 66e23b11feae\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: table_compute\n owner: iuc\n revisions: 3bf5661c0280\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "EngyNasr", + "paulzierep" + ], + "editing": [ + "hrhotz", + "wm75" + ], + "funding": [ + "gallantries", + "eosc-life" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "engynasr94@gmail.com", + "id": "EngyNasr", + "joined": "2021-05", + "matrix": "EngyNasr:matrix.org", + "name": "Engy Nasr", + "orcid": "0000-0001-9047-4215", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/EngyNasr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/EngyNasr.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "hrhotz@googlemail.com", + "fediverse": "https://genomic.social/@hrhotz", + "fediverse_flavor": "mastodon", + "id": "hrhotz", + "joined": "2017-09", + "linkedin": "hans-rudolf-hotz-542b31", + "location": { + "country": "CH", + "lat": 47.57, + "lon": 7.6 + }, + "matrix": "hrhotz:matrix.org", + "name": "Hans-Rudolf Hotz", + "orcid": "0000-0002-2799-424X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hrhotz/", + "twitter": "hrhotz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hrhotz.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "https://www.eosc-life.eu/wp-content/themes/eosc-life-v2/assets/images/eosclogo.png", + "funder": true, + "funding_id": "824087", + "funding_statement": "EOSC-Life has received funding from the European Union\u2019s Horizon 2020 programme under grant agreement number 824087", + "funding_system": "cordis", + "github": false, + "id": "eosc-life", + "joined": "2023-04", + "members": [ + "bgruening" + ], + "name": "EOSC-Life", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eosc-life/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eosc-life.json" + } + ], + "dir": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data", + "edam_ontology": [ + "topic_3174", + "topic_3305", + "topic_0637", + "topic_0196", + "topic_0634", + "topic_0080" + ], + "edam_operation": [ + "Visualisation", + "Statistical calculation", + "Cross-assembly", + "Multiple sequence alignment", + "Scatter plot plotting", + "Phylogenetic tree generation", + "Base-calling", + "Mapping", + "Taxonomic classification", + "Genome assembly", + "Sequence composition calculation", + "De-novo assembly", + "Pairwise sequence alignment", + "Phylogenetic tree analysis", + "Mapping assembly", + "Phylogenetic tree generation (maximum likelihood and Bayesian methods)", + "Validation", + "Sequencing quality control", + "Phylogenetic tree reconstruction", + "Sequence contamination filtering", + "Variant calling", + "Data handling", + "Sequence assembly visualisation", + "Antimicrobial resistance prediction", + "Sequence alignment analysis", + "Aggregation", + "Phylogenetic tree generation (from molecular sequences)", + "Multilocus sequence typing", + "Box-Whisker plot plotting", + "Sequence assembly" + ], + "edam_topic": [ + "Metagenomics", + "Public health and epidemiology", + "Taxonomy", + "Sequence assembly", + "Pathology", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-22", + "objectives": [ + "Check quality reports generated by FastQC and NanoPlot for metagenomics Nanopore data", + "Preprocess the sequencing data to remove adapters, poor quality base content and host/contaminating reads", + "Perform taxonomy profiling indicating and visualizing up to species level in the samples", + "Identify pathogens based on the found virulence factor gene products via assembly, identify strains and indicate all antimicrobial resistance genes in samples", + "Identify pathogens via SNP calling and build the consensus gemone of the samples", + "Relate all samples' pathogenic genes for tracking pathogens via phylogenetic trees and heatmaps" + ], + "pageviews": 2725, + "pub_date": "2023-01-26", + "questions": [ + "What are the preprocessing steps to prepare ONT sequencing data for further analysis?", + "How to identify pathogens using sequencing data?", + "How to track the found pathogens through all your samples datasets?" + ], + "recordings": [ + { + "captioners": [ + "EngyNasr" + ], + "date": "2023-05-01", + "galaxy_version": "23.01", + "length": "1H45M", + "speakers": [ + "EngyNasr" + ], + "youtube_id": "gQHb_jkj-Z0" + }, + { + "bot-timestamp": 1723837296, + "captioners": [ + "EngyNasr" + ], + "date": "2024-08-16", + "galaxy_version": "24.1.2.dev0 ", + "length": "1H55M", + "speakers": [ + "EngyNasr" + ], + "youtube_id": "rGP-BKYwUbc" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial", + "/short/microbiome/pathogen-detection-from-nanopore-foodborne-data", + "/short/T00208", + "/short/T00393" + ], + "short_id": "T00393", + "short_tools": [ + "porechop", + "Count1", + "taxonomy_krona_chart", + "collection_element_identifiers", + "krakentools_extract_kraken_reads", + "krakentools_kreport2krona", + "ggplot2_heatmap", + "samtools_fastx", + "Cut1", + "add_line_to_file", + "tp_replace_in_column", + "param_value_from_file", + "abricate", + "medaka_consensus_pipeline", + "tp_sorted_uniq", + "barchart_gnuplot", + "Paste1", + "newick_display", + "nanoplot", + "tp_multijoin_tool", + "Remove beginning1", + "Grep1", + "fasta_merge_files_and_filter_unique_sequences", + "multiqc", + "Add_a_column1", + "bcftools_norm", + "collection_column_join", + "fasttree", + "Grouping1", + "collapse_dataset", + "fastp", + "split_file_to_collection", + "CONVERTER_gz_to_uncompressed", + "fastqc", + "samtools_coverage", + "regexColumn1", + "clustalw", + "bamtools_split_mapped", + "fasta2tab", + "__FILTER_FAILED_DATASETS__", + "minimap2", + "samtools_depth", + "snpSift_extractFields", + "kraken2", + "table_compute", + "bcftools_consensus", + "tp_split_on_column", + "snpSift_filter", + "tp_head_tool", + "bandage_image", + "tab2fasta", + "bedtools_getfastabed", + "tp_cut_tool", + "clair3", + "flye", + "__BUILD_LIST__", + "__FILTER_EMPTY_DATASETS__", + "tp_find_and_replace", + "mlst", + "regex1", + "compose_text_param" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "microgalaxy", + "Nanopore data analysis", + "Pathogens detection", + "Phylogenetic tree", + "Heatmap", + "cyoa" + ], + "time_estimation": "4h", + "title": "Pathogen detection from (direct Nanopore) sequencing data using Galaxy - Foodborne Edition", + "tools": [ + "CONVERTER_gz_to_uncompressed", + "Count1", + "Cut1", + "Grep1", + "Grouping1", + "Paste1", + "Remove beginning1", + "__BUILD_LIST__", + "__FILTER_EMPTY_DATASETS__", + "__FILTER_FAILED_DATASETS__", + "barchart_gnuplot", + "param_value_from_file", + "toolshed.g2.bx.psu.edu/repos/bgruening/add_line_to_file/add_line_to_file/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.6", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_multijoin_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped/2.5.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/clair3/clair3/0.1.12+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap/ggplot2_heatmap/3.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/mlst/mlst/2.22.0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_coverage/samtools_coverage/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_depth/samtools_depth/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "pathogen-detection-from-nanopore-foodborne-data", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 2, + "video_view": 531, + "visit_duration": 186, + "visitors": 1815, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Microbiome - Variant calling and Consensus Building", + "features": { + "comments": true, + "parameters": true, + "report": { + "markdown": "# Allele based Pathogen Identification Workflow Report\nBelow are the results for the Allele based Pathogenic Identification Workflow\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Workflow Inputs\nThe Perprocessing workflow main output (Collection of all samples reads after quality retaining and hosts filtering), and a FASTA file of the reference genome of the main Pathogen identified in the Gene based Pathogen Identification workflow, or per-known to the user.\n\n## Workflow Output: \n\n### All variants found per sample against the reference genome\n\n```galaxy\nhistory_dataset_display(output=\"extracted_fields_from_the_vcf_output\")\n```\n\n### Number of variants per sample\n\n```galaxy\nhistory_dataset_display(output=\"number_of_variants_per_sample\")\n```\n\n### Mapping mean depth per sample\n\n```galaxy\nhistory_dataset_display(output=\"mapping_mean_depth_per_sample\")\n```\n\n### Mapping coverage per sample\n\n```galaxy\nhistory_dataset_display(output=\"mapping_coverage_percentage_per_sample\")\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nsamples_profile\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreference_genome_of_tested_strain\"]\n 3[label=\"Convert compressed file to uncompressed.\"]\n 2 -> 3 [label=\"output\"]\n k9d6bde4a718040979ffd6992111a617c[color=lightseagreen,label=\"Output\\ndecompressed_rg_file\"]\n 3 -> k9d6bde4a718040979ffd6992111a617c\n 4[label=\"Map with minimap2\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output1\"]\n k31779c234f26418e94182551e883dbe7[color=lightseagreen,label=\"Output\\nmap_with_minimap2\"]\n 4 -> k31779c234f26418e94182551e883dbe7\n 5[label=\"Clair3\"]\n 4 -> 5 [label=\"alignment_output\"]\n 3 -> 5 [label=\"output1\"]\n k1cf1ee6c4cb745e39c7b88a1b678dd53[color=lightseagreen,label=\"Output\\nclair3_pileup_vcf\"]\n 5 -> k1cf1ee6c4cb745e39c7b88a1b678dd53\n k987f914583ab44f1801ab0d527ecbce8[color=lightseagreen,label=\"Output\\nclair3_full_alignment_vcf\"]\n 5 -> k987f914583ab44f1801ab0d527ecbce8\n kfab82215f59a43b192d737629a1fdb65[color=lightseagreen,label=\"Output\\nclair3_merged_output\"]\n 5 -> kfab82215f59a43b192d737629a1fdb65\n 6[label=\"Samtools depth\"]\n 4 -> 6 [label=\"alignment_output\"]\n 7[label=\"Samtools coverage\"]\n 4 -> 7 [label=\"alignment_output\"]\n 8[label=\"bcftools norm\"]\n 5 -> 8 [label=\"merge_output\"]\n 3 -> 8 [label=\"output1\"]\n k22553aa1f5db4d3787c41164dbb3d2d5[color=lightseagreen,label=\"Output\\nnormalized_vcf_output\"]\n 8 -> k22553aa1f5db4d3787c41164dbb3d2d5\n 9[label=\"Advanced Cut\"]\n 6 -> 9 [label=\"output\"]\n 10[label=\"Remove beginning\"]\n 7 -> 10 [label=\"output\"]\n 11[label=\"SnpSift Filter\"]\n 8 -> 11 [label=\"output_file\"]\n k3e7981ec2205457193eb10c0dd14b288[color=lightseagreen,label=\"Output\\nquality_filtered_vcf_output\"]\n 11 -> k3e7981ec2205457193eb10c0dd14b288\n 12[label=\"Table Compute\"]\n 9 -> 12 [label=\"output\"]\n 13[label=\"Cut\"]\n 10 -> 13 [label=\"out_file1\"]\n 14[label=\"SnpSift Extract Fields\"]\n 11 -> 14 [label=\"output\"]\n k1b0f4f2c471745beb580fe10cba78c35[color=lightseagreen,label=\"Output\\nextracted_fields_from_the_vcf_output\"]\n 14 -> k1b0f4f2c471745beb580fe10cba78c35\n 15[label=\"bcftools consensus\"]\n 11 -> 15 [label=\"output\"]\n 3 -> 15 [label=\"output1\"]\n k49497f3c93324924bcfdcb71788ad2c2[color=lightseagreen,label=\"Output\\nbcftools_consensus\"]\n 15 -> k49497f3c93324924bcfdcb71788ad2c2\n 16[label=\"Select first\"]\n 13 -> 16 [label=\"out_file1\"]\n 17[label=\"Remove beginning\"]\n 14 -> 17 [label=\"output\"]\n 18[label=\"Collapse Collection\"]\n 16 -> 18 [label=\"outfile\"]\n k5ee1c1581a8545ca9abdb30632b3092c[color=lightseagreen,label=\"Output\\nmapping_coverage_percentage_per_sample\"]\n 18 -> k5ee1c1581a8545ca9abdb30632b3092c\n 19[label=\"Count\"]\n 17 -> 19 [label=\"out_file1\"]\n 20[label=\"Advanced Cut\"]\n 18 -> 20 [label=\"output\"]\n 21[label=\"Cut\"]\n 19 -> 21 [label=\"out_file1\"]\n 22[label=\"Paste\"]\n 20 -> 22 [label=\"output\"]\n 12 -> 22 [label=\"table\"]\n k25b7b87b5ef1487f90cc81351a2f81ce[color=lightseagreen,label=\"Output\\nmapping_mean_depth_per_sample\"]\n 22 -> k25b7b87b5ef1487f90cc81351a2f81ce\n 23[label=\"Select first\"]\n 21 -> 23 [label=\"out_file1\"]\n 24[label=\"Collapse Collection\"]\n 23 -> 24 [label=\"outfile\"]\n 25[label=\"Column Regex Find And Replace\"]\n 24 -> 25 [label=\"output\"]\n k2852c4ee24ea4df7b59e54eb6e2f470b[color=lightseagreen,label=\"Output\\nnumber_of_variants_per_sample\"]\n 25 -> k2852c4ee24ea4df7b59e54eb6e2f470b\n}", + "history": [ + { + "hash": "fea16c6949ebaafe1f872bfe3a5f05958a15e7f9", + "message": "updating to include all previous comments", + "num": 1, + "short_hash": "fea16c694", + "unix": "1718833675" + } + ], + "inputs": [ + { + "annotation": "Output collection from the Nanopore Preprocessing workflow", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Output collection from the Nanopore Preprocessing workflow", + "name": "collection_of_preprocessed_samples" + } + ], + "label": "collection_of_preprocessed_samples", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 6, + "top": 205 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "7aaa03a4-2647-411b-863d-90f28ed01f32", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "based on the lab preparation of the samples during sequencing, there should be a sample profile better than the other, to be chosen as an optional input to Minimap2. e.g. PacBio/Oxford Nanpore\n\nFor more details check: https://github.com/lh3/minimap2?tab=readme-ov-file#use-cases", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "based on the lab preparation of the samples during sequencing, there should be a sample profile better than the other, to be chosen as an optional input to Minimap2. e.g. PacBio/Oxford Nanpore\n\nFor more details check: https://github.com/lh3/minimap2?tab=readme-ov-file#use-cases", + "name": "samples_profile" + } + ], + "label": "samples_profile", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 260, + "top": 35 + }, + "tool_id": null, + "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "d28b9bed-c674-406c-b58b-165bcc8eec17", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Can be built in the tool later", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Can be built in the tool later", + "name": "reference_genome_of_tested_strain" + } + ], + "label": "reference_genome_of_tested_strain", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 374 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "773b7592-d66c-4a85-92ba-06c0ab0f843f", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nsamples_profile\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nreference_genome_of_tested_strain\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Convert compressed file to uncompressed.\"];\n 2 -->|output| 3;\n 9d6bde4a-7180-4097-9ffd-6992111a617c[\"Output\\ndecompressed_rg_file\"];\n 3 --> 9d6bde4a-7180-4097-9ffd-6992111a617c;\n style 9d6bde4a-7180-4097-9ffd-6992111a617c stroke:#2c3143,stroke-width:4px;\n 4[\"Map with minimap2\"];\n 1 -->|output| 4;\n 0 -->|output| 4;\n 3 -->|output1| 4;\n 31779c23-4f26-418e-9418-2551e883dbe7[\"Output\\nmap_with_minimap2\"];\n 4 --> 31779c23-4f26-418e-9418-2551e883dbe7;\n style 31779c23-4f26-418e-9418-2551e883dbe7 stroke:#2c3143,stroke-width:4px;\n 5[\"Clair3\"];\n 4 -->|alignment_output| 5;\n 3 -->|output1| 5;\n 1cf1ee6c-4cb7-45e3-9c7b-88a1b678dd53[\"Output\\nclair3_pileup_vcf\"];\n 5 --> 1cf1ee6c-4cb7-45e3-9c7b-88a1b678dd53;\n style 1cf1ee6c-4cb7-45e3-9c7b-88a1b678dd53 stroke:#2c3143,stroke-width:4px;\n 987f9145-83ab-44f1-801a-b0d527ecbce8[\"Output\\nclair3_full_alignment_vcf\"];\n 5 --> 987f9145-83ab-44f1-801a-b0d527ecbce8;\n style 987f9145-83ab-44f1-801a-b0d527ecbce8 stroke:#2c3143,stroke-width:4px;\n fab82215-f59a-43b1-92d7-37629a1fdb65[\"Output\\nclair3_merged_output\"];\n 5 --> fab82215-f59a-43b1-92d7-37629a1fdb65;\n style fab82215-f59a-43b1-92d7-37629a1fdb65 stroke:#2c3143,stroke-width:4px;\n 6[\"Samtools depth\"];\n 4 -->|alignment_output| 6;\n 7[\"Samtools coverage\"];\n 4 -->|alignment_output| 7;\n 8[\"bcftools norm\"];\n 5 -->|merge_output| 8;\n 3 -->|output1| 8;\n 22553aa1-f5db-4d37-87c4-1164dbb3d2d5[\"Output\\nnormalized_vcf_output\"];\n 8 --> 22553aa1-f5db-4d37-87c4-1164dbb3d2d5;\n style 22553aa1-f5db-4d37-87c4-1164dbb3d2d5 stroke:#2c3143,stroke-width:4px;\n 9[\"Advanced Cut\"];\n 6 -->|output| 9;\n 10[\"Remove beginning\"];\n 7 -->|output| 10;\n 11[\"SnpSift Filter\"];\n 8 -->|output_file| 11;\n 3e7981ec-2205-4571-93eb-10c0dd14b288[\"Output\\nquality_filtered_vcf_output\"];\n 11 --> 3e7981ec-2205-4571-93eb-10c0dd14b288;\n style 3e7981ec-2205-4571-93eb-10c0dd14b288 stroke:#2c3143,stroke-width:4px;\n 12[\"Table Compute\"];\n 9 -->|output| 12;\n 13[\"Cut\"];\n 10 -->|out_file1| 13;\n 14[\"SnpSift Extract Fields\"];\n 11 -->|output| 14;\n 1b0f4f2c-4717-45be-b580-fe10cba78c35[\"Output\\nextracted_fields_from_the_vcf_output\"];\n 14 --> 1b0f4f2c-4717-45be-b580-fe10cba78c35;\n style 1b0f4f2c-4717-45be-b580-fe10cba78c35 stroke:#2c3143,stroke-width:4px;\n 15[\"bcftools consensus\"];\n 11 -->|output| 15;\n 3 -->|output1| 15;\n 49497f3c-9332-4924-bcfd-cb71788ad2c2[\"Output\\nbcftools_consensus\"];\n 15 --> 49497f3c-9332-4924-bcfd-cb71788ad2c2;\n style 49497f3c-9332-4924-bcfd-cb71788ad2c2 stroke:#2c3143,stroke-width:4px;\n 16[\"Select first\"];\n 13 -->|out_file1| 16;\n 17[\"Remove beginning\"];\n 14 -->|output| 17;\n 18[\"Collapse Collection\"];\n 16 -->|outfile| 18;\n 5ee1c158-1a85-45ca-9abd-b30632b3092c[\"Output\\nmapping_coverage_percentage_per_sample\"];\n 18 --> 5ee1c158-1a85-45ca-9abd-b30632b3092c;\n style 5ee1c158-1a85-45ca-9abd-b30632b3092c stroke:#2c3143,stroke-width:4px;\n 19[\"Count\"];\n 17 -->|out_file1| 19;\n 20[\"Advanced Cut\"];\n 18 -->|output| 20;\n 21[\"Cut\"];\n 19 -->|out_file1| 21;\n 22[\"Paste\"];\n 20 -->|output| 22;\n 12 -->|table| 22;\n 25b7b87b-5ef1-487f-90cc-81351a2f81ce[\"Output\\nmapping_mean_depth_per_sample\"];\n 22 --> 25b7b87b-5ef1-487f-90cc-81351a2f81ce;\n style 25b7b87b-5ef1-487f-90cc-81351a2f81ce stroke:#2c3143,stroke-width:4px;\n 23[\"Select first\"];\n 21 -->|out_file1| 23;\n 24[\"Collapse Collection\"];\n 23 -->|outfile| 24;\n 25[\"Column Regex Find And Replace\"];\n 24 -->|output| 25;\n 2852c4ee-24ea-4df7-b59e-54eb6e2f470b[\"Output\\nnumber_of_variants_per_sample\"];\n 25 --> 2852c4ee-24ea-4df7-b59e-54eb6e2f470b;\n style 2852c4ee-24ea-4df7-b59e-54eb6e2f470b stroke:#2c3143,stroke-width:4px;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Allele-based Pathogen Identification", + "outputs": [ + { + "annotation": "", + "content_id": "CONVERTER_gz_to_uncompressed", + "errors": null, + "id": 3, + "input_connections": { + "input1": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Convert compressed file to uncompressed.", + "outputs": [ + { + "name": "output1", + "type": "auto" + } + ], + "position": { + "left": 233, + "top": 346 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput1": { + "action_arguments": { + "newtype": "fasta" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output1" + }, + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "decompressed_rg_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "CONVERTER_gz_to_uncompressed", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "1ce51556-5526-4c7e-9b94-9634e8e25ed0", + "when": null, + "workflow_outputs": [ + { + "label": "decompressed_rg_file", + "output_name": "output1", + "uuid": "9d6bde4a-7180-4097-9ffd-6992111a617c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 1, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 0, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": null, + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 573, + "top": 40 + }, + "post_job_actions": { + "RenameDatasetActionalignment_output": { + "action_arguments": { + "newname": "map_with_minimap2" + }, + "action_type": "RenameDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "tool_shed_repository": { + "changeset_revision": "11a0d50a54e6", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"BAM\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.24+galaxy0", + "type": "tool", + "uuid": "6da37636-966d-4975-bce3-d650feaeb17c", + "when": null, + "workflow_outputs": [ + { + "label": "map_with_minimap2", + "output_name": "alignment_output", + "uuid": "31779c23-4f26-418e-9418-2551e883dbe7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/clair3/clair3/0.1.12+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "bam_input": { + "id": 4, + "output_name": "alignment_output" + }, + "ref_source|ref_fasta": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Clair3", + "name": "ref_source" + } + ], + "label": null, + "name": "Clair3", + "outputs": [ + { + "name": "merge_output", + "type": "vcf_bgzip" + }, + { + "name": "pileup", + "type": "vcf_bgzip" + }, + { + "name": "full_alignment", + "type": "vcf_bgzip" + } + ], + "position": { + "left": 853, + "top": 46 + }, + "post_job_actions": { + "RenameDatasetActionfull_alignment": { + "action_arguments": { + "newname": "clair3_full_alignment_vcf" + }, + "action_type": "RenameDatasetAction", + "output_name": "full_alignment" + }, + "RenameDatasetActionmerge_output": { + "action_arguments": { + "newname": "clair3_merged_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "merge_output" + }, + "RenameDatasetActionpileup": { + "action_arguments": { + "newname": "clair3_pileup_vcf" + }, + "action_type": "RenameDatasetAction", + "output_name": "pileup" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/clair3/clair3/0.1.12+galaxy0", + "tool_shed_repository": { + "changeset_revision": "63e02ef6e153", + "name": "clair3", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"qual\": \"0\", \"snp_min_af\": \"0.08\", \"indel_min_af\": \"0.15\", \"enable_phasing\": false, \"no_phasing_for_fa\": false, \"print_ref_calls\": false, \"ploidity_model\": \"--haploid_precise\", \"chunk_size\": \"5000000\"}, \"bam_input\": {\"__class__\": \"ConnectedValue\"}, \"bed_or_vcf\": {\"bed_or_vcf_selector\": \"unrestricted\", \"__current_case__\": 2, \"include_all_ctgs\": true}, \"gvcf\": false, \"model_source\": {\"source\": \"built-in\", \"__current_case__\": 0, \"select_built_in\": \"r941_prom_hac_g360+g422\"}, \"output_files\": [\"full_alignment\", \"pileup\"], \"ref_source\": {\"source\": \"history\", \"__current_case__\": 0, \"ref_fasta\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.12+galaxy0", + "type": "tool", + "uuid": "ffbad354-41de-488d-bb37-929926bbfb31", + "when": null, + "workflow_outputs": [ + { + "label": "clair3_pileup_vcf", + "output_name": "pileup", + "uuid": "1cf1ee6c-4cb7-45e3-9c7b-88a1b678dd53" + }, + { + "label": "clair3_full_alignment_vcf", + "output_name": "full_alignment", + "uuid": "987f9145-83ab-44f1-801a-b0d527ecbce8" + }, + { + "label": "clair3_merged_output", + "output_name": "merge_output", + "uuid": "fab82215-f59a-43b1-92d7-37629a1fdb65" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "merge_output" + }, + "reference_source|fasta_ref": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools norm", + "name": "reference_source" + } + ], + "label": null, + "name": "bcftools norm", + "outputs": [ + { + "name": "output_file", + "type": "vcf" + } + ], + "position": { + "left": 1089, + "top": 48 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "normalized_vcf_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "da6fc9f4a367", + "name": "bcftools_norm", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"check_ref\": \"w\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"multiallelics\": {\"mode\": \"\", \"__current_case__\": 0}, \"normalize_indels\": false, \"output_type\": \"v\", \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"ConnectedValue\"}}, \"rm_dup\": \"\", \"sec_default\": {\"site_win\": \"1000\"}, \"sec_restrict\": {\"regions\": {\"regions_src\": \"__none__\", \"__current_case__\": 0}, \"targets\": {\"targets_src\": \"__none__\", \"__current_case__\": 0}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "9a34ec91-725e-49b2-973b-1c508e4bdc5d", + "when": null, + "workflow_outputs": [ + { + "label": "normalized_vcf_output", + "output_name": "output_file", + "uuid": "22553aa1-f5db-4d37-87c4-1164dbb3d2d5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 8, + "output_name": "output_file" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Filter", + "outputs": [ + { + "name": "output", + "type": "vcf" + } + ], + "position": { + "left": 1317, + "top": 46 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "quality_filtered_vcf_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "tool_shed_repository": { + "changeset_revision": "5fab4f81391d", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_expression\": {\"type\": \"simple\", \"__current_case__\": 0, \"expr\": \"(QUAL > 2)\"}, \"filtering\": {\"mode\": \"entries\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"inverse\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy1", + "type": "tool", + "uuid": "9a9a0e61-4966-496a-85df-c3a137abe8d3", + "when": null, + "workflow_outputs": [ + { + "label": "quality_filtered_vcf_output", + "output_name": "output", + "uuid": "3e7981ec-2205-4571-93eb-10c0dd14b288" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Extract Fields", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1559, + "top": 45 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "extracted_fields_from_the_vcf_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "extracted_fields_from_the_vcf_output" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "tool_shed_repository": { + "changeset_revision": "5fab4f81391d", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"empty_text\": \"\", \"extract\": \"CHROM POS ID REF ALT FILTER\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"one_effect_per_line\": false, \"separator\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy0", + "type": "tool", + "uuid": "c9d51e45-9c09-438e-ab4b-c280a91dd2bc", + "when": null, + "workflow_outputs": [ + { + "label": "extracted_fields_from_the_vcf_output", + "output_name": "output", + "uuid": "1b0f4f2c-4717-45be-b580-fe10cba78c35" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy1", + "errors": null, + "id": 15, + "input_connections": { + "input_file": { + "id": 11, + "output_name": "output" + }, + "reference_source|fasta_ref": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools consensus", + "name": "reference_source" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "sec_default" + } + ], + "label": null, + "name": "bcftools consensus", + "outputs": [ + { + "name": "output_file", + "type": "fasta" + } + ], + "position": { + "left": 1565, + "top": 248 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "bcftools_consensus" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "f867422772d6", + "name": "bcftools_consensus", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chain\": false, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"ConnectedValue\"}}, \"sec_default\": {\"mask\": {\"__class__\": \"RuntimeValue\"}, \"iupac_codes\": false, \"sample\": \"\", \"select_haplotype\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "872ba641-1909-43ea-b3c2-62e6773583a6", + "when": null, + "workflow_outputs": [ + { + "label": "bcftools_consensus", + "output_name": "output_file", + "uuid": "49497f3c-9332-4924-bcfd-cb71788ad2c2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 18, + "input_connections": { + "input_list": { + "id": 16, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1861.2076226643767, + "top": 940.9587935676732 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "mapping_coverage_percentage_per_sample" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "mapping_coverage_percentage_per_sample" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": true, \"__current_case__\": 0, \"place_name\": \"same_once\"}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "bc05695c-433b-44df-9c94-d345f66be3cd", + "when": null, + "workflow_outputs": [ + { + "label": "mapping_coverage_percentage_per_sample", + "output_name": "output", + "uuid": "5ee1c158-1a85-45ca-9abd-b30632b3092c" + } + ] + }, + { + "annotation": "", + "content_id": "Paste1", + "errors": null, + "id": 22, + "input_connections": { + "input1": { + "id": 20, + "output_name": "output" + }, + "input2": { + "id": 12, + "output_name": "table" + } + }, + "inputs": [], + "label": null, + "name": "Paste", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2249.0333251953125, + "top": 620.8999938964844 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "mapping_mean_depth_per_sample" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "mapping_mean_depth_per_sample" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Paste1", + "tool_state": "{\"delimiter\": \"T\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "38616748-2327-49f3-a53e-c204a356d97b", + "when": null, + "workflow_outputs": [ + { + "label": "mapping_mean_depth_per_sample", + "output_name": "out_file1", + "uuid": "25b7b87b-5ef1-487f-90cc-81351a2f81ce" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 25, + "input_connections": { + "input": { + "id": 24, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2961.5528311718776, + "top": 47.899993896484375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "number_of_variants_per_sample" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "number_of_variants_per_sample" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^$\", \"replacement\": \"0\"}], \"field\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "dfa6d815-9c8a-4a04-8862-00a6f83789dc", + "when": null, + "workflow_outputs": [ + { + "label": "number_of_variants_per_sample", + "output_name": "out_file1", + "uuid": "2852c4ee-24ea-4df7-b59e-54eb6e2f470b" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/allele_based_pathogen_identification.ga", + "tags": [ + "name:Collection", + "name:microGalaxy", + "name:PathoGFAIR", + "name:IWC" + ], + "test_results": null, + "tests": true, + "title": "Allele-based Pathogen Identification", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/allele-based-pathogen-identification", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/allele_based_pathogen_identification.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/allele_based_pathogen_identification.html", + "version": 1, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "allele-based-pathogen-identification", + "workflow": "allele_based_pathogen_identification.ga", + "workflow_tools": [ + "CONVERTER_gz_to_uncompressed", + "Count1", + "Cut1", + "Paste1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/clair3/clair3/0.1.12+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_coverage/samtools_coverage/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_depth/samtools_depth/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1083" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Nanopore datasets analysis - Phylogenetic Identification - antibiotic resistance genes detection and contigs building", + "features": { + "comments": true, + "parameters": false, + "report": { + "markdown": "# Gene based Pathogen Identification Workflow Report\n\nBelow are the results for the Gene based Pathogen Identification Workflow\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Workflow Inputs\nThe Perprocessing workflow main output (Collection of all samples reads after quality retaining and hosts filtering)\n\n## Workflow Output\n\n### Identified contigs per sample\n\n```galaxy\nhistory_dataset_display(output=\"contigs\")\n```\n\n### Identified pathogenic genes per sample\n\n```galaxy\nhistory_dataset_display(output=\"vfs\")\n```\n\n### Identified Antimicrobial Resistance genes per sample\n\n```galaxy\nhistory_dataset_display(output=\"amrs\")\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"]\n 1[label=\"Extract element identifiers\"]\n 0 -> 1 [label=\"output\"]\n kd82a93c623a94f85879cecd759a31087[color=lightseagreen,label=\"Output\\nextracted_samples_IDs\"]\n 1 -> kd82a93c623a94f85879cecd759a31087\n 2[label=\"Build list\"]\n 0 -> 2 [label=\"output\"]\n kf5b5b2568ddf4da88111b1f6d3025a0d[color=lightseagreen,label=\"Output\\nlist_of_lists_of_preprocessed_samples\"]\n 2 -> kf5b5b2568ddf4da88111b1f6d3025a0d\n 3[label=\"Split file\"]\n 1 -> 3 [label=\"output\"]\n keb5317bd4bad4cad92193ac379221d6e[color=lightseagreen,label=\"Output\\nsplitted_extracted_samples_IDs\"]\n 3 -> keb5317bd4bad4cad92193ac379221d6e\n 4[label=\"Flye\"]\n 2 -> 4 [label=\"output\"]\n kff0d8c7b2ac74c6da110f71418dad938[color=lightseagreen,label=\"Output\\nflye_consensus_fasta\"]\n 4 -> kff0d8c7b2ac74c6da110f71418dad938\n k2385436ffbe84d77a40b27a097d02941[color=lightseagreen,label=\"Output\\nflye_assembly_graph\"]\n 4 -> k2385436ffbe84d77a40b27a097d02941\n k0e42ce51c46b45d8baa445c0e98ac712[color=lightseagreen,label=\"Output\\nflye_assembly_gfa\"]\n 4 -> k0e42ce51c46b45d8baa445c0e98ac712\n k3f297aed7cee4999bbf469d84de6b64f[color=lightseagreen,label=\"Output\\nflye_assembly_info_tabular\"]\n 4 -> k3f297aed7cee4999bbf469d84de6b64f\n 5[label=\"Parse parameter value\"]\n 3 -> 5 [label=\"list_output_txt\"]\n k3608e170c46242a28003f3f65baa3834[color=lightseagreen,label=\"Output\\nparsed_extracted_samples_IDs_to_text\"]\n 5 -> k3608e170c46242a28003f3f65baa3834\n 6[label=\"medaka consensus pipeline\"]\n 4 -> 6 [label=\"consensus\"]\n 0 -> 6 [label=\"output\"]\n k9e5ad6ecb4084132ba07dec9fa626923[color=lightseagreen,label=\"Output\\nmedaka_gaps_in_draft_bed_file\"]\n 6 -> k9e5ad6ecb4084132ba07dec9fa626923\n kfcbd3e3f2e934798b696dad7db9f2efd[color=lightseagreen,label=\"Output\\nmedaka_log_file\"]\n 6 -> kfcbd3e3f2e934798b696dad7db9f2efd\n k60656aacad2a4c9b9a68b9fb18ae5595[color=lightseagreen,label=\"Output\\nmedaka_propability_h5_file\"]\n 6 -> k60656aacad2a4c9b9a68b9fb18ae5595\n kc790d4348e784df0a0d48f9da0692158[color=lightseagreen,label=\"Output\\nmedaka_calls_of_draft_bam_file\"]\n 6 -> kc790d4348e784df0a0d48f9da0692158\n kdf361e19b6d1405b96ccb48c1ab7c604[color=lightseagreen,label=\"Output\\nsample_all_contigs\"]\n 6 -> kdf361e19b6d1405b96ccb48c1ab7c604\n 7[label=\"Bandage Image\"]\n 4 -> 7 [label=\"assembly_gfa\"]\n k9612a8511f944d54b0015d082bcc9055[color=lightseagreen,label=\"Output\\nbandage_assembly_graph_image\"]\n 7 -> k9612a8511f944d54b0015d082bcc9055\n 8[label=\"Compose text parameter value\"]\n 5 -> 8 [label=\"text_param\"]\n 9[label=\"FASTA-to-Tabular\"]\n 6 -> 9 [label=\"out_consensus\"]\n kde06c3625b0a4c29956efbf02539789a[color=lightseagreen,label=\"Output\\nsample_specific_contigs_tabular_file_preparation\"]\n 9 -> kde06c3625b0a4c29956efbf02539789a\n 10[label=\"ABRicate\"]\n 6 -> 10 [label=\"out_consensus\"]\n k8f227fc72d924c6faf64e841c1315b4f[color=lightseagreen,label=\"Output\\nabricate_with_vfdb_to_identify_genes_with_VFs\"]\n 10 -> k8f227fc72d924c6faf64e841c1315b4f\n 11[label=\"ABRicate\"]\n 6 -> 11 [label=\"out_consensus\"]\n kfa021d98d8854834ac62f30d5792260e[color=lightseagreen,label=\"Output\\nabricate_report_using_ncbi_database_to_indentify_amr\"]\n 11 -> kfa021d98d8854834ac62f30d5792260e\n 12[label=\"Replace\"]\n 8 -> 12 [label=\"out1\"]\n 9 -> 12 [label=\"output\"]\n k174cb2c3ed28453c8afb85150e0b51ad[color=lightseagreen,label=\"Output\\nsample_specific_contigs_tabular_file\"]\n 12 -> k174cb2c3ed28453c8afb85150e0b51ad\n 13[label=\"Replace\"]\n 8 -> 13 [label=\"out1\"]\n 10 -> 13 [label=\"report\"]\n k19e56e006eef4a4e9cc6d93dbf9420ad[color=lightseagreen,label=\"Output\\nvfs\"]\n 13 -> k19e56e006eef4a4e9cc6d93dbf9420ad\n 14[label=\"Replace\"]\n 8 -> 14 [label=\"out1\"]\n 11 -> 14 [label=\"report\"]\n ka8eb74a5362b4f0fa944672e27981a41[color=lightseagreen,label=\"Output\\namrs\"]\n 14 -> ka8eb74a5362b4f0fa944672e27981a41\n 15[label=\"Tabular-to-FASTA\"]\n 12 -> 15 [label=\"outfile\"]\n ka5bb1cbe1bde49a1ad866d57b1319fbe[color=lightseagreen,label=\"Output\\ncontigs\"]\n 15 -> ka5bb1cbe1bde49a1ad866d57b1319fbe\n}", + "history": [ + { + "hash": "cdd93376adc6ce80742881c25d6810bcce85fc05", + "message": "adding tags to some of the workflow outputs, updating the training with the latest PathoGFAIR workflows updates", + "num": 2, + "short_hash": "cdd93376a", + "unix": "1717675229" + }, + { + "hash": "c63ce23c7a7a631f1256b8e733defce3ca4e009b", + "message": "updating workflows file names", + "num": 1, + "short_hash": "c63ce23c7", + "unix": "1716726587" + } + ], + "inputs": [ + { + "annotation": "Output collection from the Nanopore Preprocessing workflow", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Output collection from the Nanopore Preprocessing workflow", + "name": "collection_of_preprocessed_samples" + } + ], + "label": "collection_of_preprocessed_samples", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 316.35 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "fb7f7c4b-70a7-4d6d-8b20-a3bfdc4380ff", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Extract element identifiers\"];\n 0 -->|output| 1;\n d82a93c6-23a9-4f85-879c-ecd759a31087[\"Output\\nextracted_samples_IDs\"];\n 1 --> d82a93c6-23a9-4f85-879c-ecd759a31087;\n style d82a93c6-23a9-4f85-879c-ecd759a31087 stroke:#2c3143,stroke-width:4px;\n 2[\"Build list\"];\n 0 -->|output| 2;\n f5b5b256-8ddf-4da8-8111-b1f6d3025a0d[\"Output\\nlist_of_lists_of_preprocessed_samples\"];\n 2 --> f5b5b256-8ddf-4da8-8111-b1f6d3025a0d;\n style f5b5b256-8ddf-4da8-8111-b1f6d3025a0d stroke:#2c3143,stroke-width:4px;\n 3[\"Split file\"];\n 1 -->|output| 3;\n eb5317bd-4bad-4cad-9219-3ac379221d6e[\"Output\\nsplitted_extracted_samples_IDs\"];\n 3 --> eb5317bd-4bad-4cad-9219-3ac379221d6e;\n style eb5317bd-4bad-4cad-9219-3ac379221d6e stroke:#2c3143,stroke-width:4px;\n 4[\"Flye\"];\n 2 -->|output| 4;\n ff0d8c7b-2ac7-4c6d-a110-f71418dad938[\"Output\\nflye_consensus_fasta\"];\n 4 --> ff0d8c7b-2ac7-4c6d-a110-f71418dad938;\n style ff0d8c7b-2ac7-4c6d-a110-f71418dad938 stroke:#2c3143,stroke-width:4px;\n 2385436f-fbe8-4d77-a40b-27a097d02941[\"Output\\nflye_assembly_graph\"];\n 4 --> 2385436f-fbe8-4d77-a40b-27a097d02941;\n style 2385436f-fbe8-4d77-a40b-27a097d02941 stroke:#2c3143,stroke-width:4px;\n 0e42ce51-c46b-45d8-baa4-45c0e98ac712[\"Output\\nflye_assembly_gfa\"];\n 4 --> 0e42ce51-c46b-45d8-baa4-45c0e98ac712;\n style 0e42ce51-c46b-45d8-baa4-45c0e98ac712 stroke:#2c3143,stroke-width:4px;\n 3f297aed-7cee-4999-bbf4-69d84de6b64f[\"Output\\nflye_assembly_info_tabular\"];\n 4 --> 3f297aed-7cee-4999-bbf4-69d84de6b64f;\n style 3f297aed-7cee-4999-bbf4-69d84de6b64f stroke:#2c3143,stroke-width:4px;\n 5[\"Parse parameter value\"];\n 3 -->|list_output_txt| 5;\n 3608e170-c462-42a2-8003-f3f65baa3834[\"Output\\nparsed_extracted_samples_IDs_to_text\"];\n 5 --> 3608e170-c462-42a2-8003-f3f65baa3834;\n style 3608e170-c462-42a2-8003-f3f65baa3834 stroke:#2c3143,stroke-width:4px;\n 6[\"medaka consensus pipeline\"];\n 4 -->|consensus| 6;\n 0 -->|output| 6;\n 9e5ad6ec-b408-4132-ba07-dec9fa626923[\"Output\\nmedaka_gaps_in_draft_bed_file\"];\n 6 --> 9e5ad6ec-b408-4132-ba07-dec9fa626923;\n style 9e5ad6ec-b408-4132-ba07-dec9fa626923 stroke:#2c3143,stroke-width:4px;\n fcbd3e3f-2e93-4798-b696-dad7db9f2efd[\"Output\\nmedaka_log_file\"];\n 6 --> fcbd3e3f-2e93-4798-b696-dad7db9f2efd;\n style fcbd3e3f-2e93-4798-b696-dad7db9f2efd stroke:#2c3143,stroke-width:4px;\n 60656aac-ad2a-4c9b-9a68-b9fb18ae5595[\"Output\\nmedaka_propability_h5_file\"];\n 6 --> 60656aac-ad2a-4c9b-9a68-b9fb18ae5595;\n style 60656aac-ad2a-4c9b-9a68-b9fb18ae5595 stroke:#2c3143,stroke-width:4px;\n c790d434-8e78-4df0-a0d4-8f9da0692158[\"Output\\nmedaka_calls_of_draft_bam_file\"];\n 6 --> c790d434-8e78-4df0-a0d4-8f9da0692158;\n style c790d434-8e78-4df0-a0d4-8f9da0692158 stroke:#2c3143,stroke-width:4px;\n df361e19-b6d1-405b-96cc-b48c1ab7c604[\"Output\\nsample_all_contigs\"];\n 6 --> df361e19-b6d1-405b-96cc-b48c1ab7c604;\n style df361e19-b6d1-405b-96cc-b48c1ab7c604 stroke:#2c3143,stroke-width:4px;\n 7[\"Bandage Image\"];\n 4 -->|assembly_gfa| 7;\n 9612a851-1f94-4d54-b001-5d082bcc9055[\"Output\\nbandage_assembly_graph_image\"];\n 7 --> 9612a851-1f94-4d54-b001-5d082bcc9055;\n style 9612a851-1f94-4d54-b001-5d082bcc9055 stroke:#2c3143,stroke-width:4px;\n 8[\"Compose text parameter value\"];\n 5 -->|text_param| 8;\n 9[\"FASTA-to-Tabular\"];\n 6 -->|out_consensus| 9;\n de06c362-5b0a-4c29-956e-fbf02539789a[\"Output\\nsample_specific_contigs_tabular_file_preparation\"];\n 9 --> de06c362-5b0a-4c29-956e-fbf02539789a;\n style de06c362-5b0a-4c29-956e-fbf02539789a stroke:#2c3143,stroke-width:4px;\n 10[\"ABRicate\"];\n 6 -->|out_consensus| 10;\n 8f227fc7-2d92-4c6f-af64-e841c1315b4f[\"Output\\nabricate_with_vfdb_to_identify_genes_with_VFs\"];\n 10 --> 8f227fc7-2d92-4c6f-af64-e841c1315b4f;\n style 8f227fc7-2d92-4c6f-af64-e841c1315b4f stroke:#2c3143,stroke-width:4px;\n 11[\"ABRicate\"];\n 6 -->|out_consensus| 11;\n fa021d98-d885-4834-ac62-f30d5792260e[\"Output\\nabricate_report_using_ncbi_database_to_indentify_amr\"];\n 11 --> fa021d98-d885-4834-ac62-f30d5792260e;\n style fa021d98-d885-4834-ac62-f30d5792260e stroke:#2c3143,stroke-width:4px;\n 12[\"Replace\"];\n 8 -->|out1| 12;\n 9 -->|output| 12;\n 174cb2c3-ed28-453c-8afb-85150e0b51ad[\"Output\\nsample_specific_contigs_tabular_file\"];\n 12 --> 174cb2c3-ed28-453c-8afb-85150e0b51ad;\n style 174cb2c3-ed28-453c-8afb-85150e0b51ad stroke:#2c3143,stroke-width:4px;\n 13[\"Replace\"];\n 8 -->|out1| 13;\n 10 -->|report| 13;\n 19e56e00-6eef-4a4e-9cc6-d93dbf9420ad[\"Output\\nvfs\"];\n 13 --> 19e56e00-6eef-4a4e-9cc6-d93dbf9420ad;\n style 19e56e00-6eef-4a4e-9cc6-d93dbf9420ad stroke:#2c3143,stroke-width:4px;\n 14[\"Replace\"];\n 8 -->|out1| 14;\n 11 -->|report| 14;\n a8eb74a5-362b-4f0f-a944-672e27981a41[\"Output\\namrs\"];\n 14 --> a8eb74a5-362b-4f0f-a944-672e27981a41;\n style a8eb74a5-362b-4f0f-a944-672e27981a41 stroke:#2c3143,stroke-width:4px;\n 15[\"Tabular-to-FASTA\"];\n 12 -->|outfile| 15;\n a5bb1cbe-1bde-49a1-ad86-6d57b1319fbe[\"Output\\ncontigs\"];\n 15 --> a5bb1cbe-1bde-49a1-ad86-6d57b1319fbe;\n style a5bb1cbe-1bde-49a1-ad86-6d57b1319fbe stroke:#2c3143,stroke-width:4px;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Gene-based Pathogen Identification", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "errors": null, + "id": 1, + "input_connections": { + "input_collection": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Extract element identifiers", + "outputs": [ + { + "name": "output", + "type": "txt" + } + ], + "position": { + "left": 322.37152236646415, + "top": 59.69265140673434 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "extracted_samples_IDs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "tool_shed_repository": { + "changeset_revision": "d3c07d270a50", + "name": "collection_element_identifiers", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_collection\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.2", + "type": "tool", + "uuid": "80a87744-c9fa-498c-9412-b59346fb7904", + "when": null, + "workflow_outputs": [ + { + "label": "extracted_samples_IDs", + "output_name": "output", + "uuid": "d82a93c6-23a9-4f85-879c-ecd759a31087" + } + ] + }, + { + "annotation": "", + "content_id": "__BUILD_LIST__", + "errors": null, + "id": 2, + "input_connections": { + "datasets_0|input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Build list", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 330, + "top": 597.5999771118164 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "list_of_lists_of_preprocessed_samples" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "__BUILD_LIST__", + "tool_state": "{\"datasets\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"idx\", \"__current_case__\": 0}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "38bc82a3-b563-44cf-b0db-9e3311fe99bb", + "when": null, + "workflow_outputs": [ + { + "label": "list_of_lists_of_preprocessed_samples", + "output_name": "output", + "uuid": "f5b5b256-8ddf-4da8-8111-b1f6d3025a0d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "errors": null, + "id": 3, + "input_connections": { + "split_parms|input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Split file", + "name": "split_parms" + } + ], + "label": null, + "name": "Split file", + "outputs": [ + { + "name": "list_output_txt", + "type": "input" + } + ], + "position": { + "left": 608.6215223664642, + "top": 47.19265140673434 + }, + "post_job_actions": { + "RenameDatasetActionlist_output_txt": { + "action_arguments": { + "newname": "splitted_extracted_samples_IDs" + }, + "action_type": "RenameDatasetAction", + "output_name": "list_output_txt" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "tool_shed_repository": { + "changeset_revision": "6cbe2f30c2d7", + "name": "split_file_to_collection", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"split_parms\": {\"select_ftype\": \"txt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}, \"select_mode\": {\"mode\": \"chunk\", \"__current_case__\": 0, \"chunksize\": \"1\"}, \"newfilenames\": \"split_file\", \"select_allocate\": {\"allocate\": \"byrow\", \"__current_case__\": 2}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.0", + "type": "tool", + "uuid": "f1e00cb8-a264-4acb-aff6-8c8b5aa0b48b", + "when": null, + "workflow_outputs": [ + { + "label": "splitted_extracted_samples_IDs", + "output_name": "list_output_txt", + "uuid": "eb5317bd-4bad-4cad-9219-3ac379221d6e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "inputs": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Flye", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + } + ], + "position": { + "left": 576.4000244140625, + "top": 602.433349609375 + }, + "post_job_actions": { + "RenameDatasetActionassembly_gfa": { + "action_arguments": { + "newname": "flye_assembly_gfa" + }, + "action_type": "RenameDatasetAction", + "output_name": "assembly_gfa" + }, + "RenameDatasetActionassembly_graph": { + "action_arguments": { + "newname": "flye_assembly_graph" + }, + "action_type": "RenameDatasetAction", + "output_name": "assembly_graph" + }, + "RenameDatasetActionassembly_info": { + "action_arguments": { + "newname": "flye_assembly_info_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "assembly_info" + }, + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "flye_consensus_fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "cb8dfd28c16f", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"asm\": {\"asm_select\": \"false\", \"__current_case__\": 1}, \"generate_log\": false, \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"iterations\": \"1\", \"keep_haplotypes\": false, \"meta\": true, \"min_overlap\": null, \"mode_conditional\": {\"mode\": \"--nano-hq\", \"__current_case__\": 2}, \"no_alt_contigs\": false, \"scaffold\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.9.1+galaxy0", + "type": "tool", + "uuid": "a343c482-44b1-4cb3-a46e-2e714f785960", + "when": null, + "workflow_outputs": [ + { + "label": "flye_consensus_fasta", + "output_name": "consensus", + "uuid": "ff0d8c7b-2ac7-4c6d-a110-f71418dad938" + }, + { + "label": "flye_assembly_graph", + "output_name": "assembly_graph", + "uuid": "2385436f-fbe8-4d77-a40b-27a097d02941" + }, + { + "label": "flye_assembly_gfa", + "output_name": "assembly_gfa", + "uuid": "0e42ce51-c46b-45d8-baa4-45c0e98ac712" + }, + { + "label": "flye_assembly_info_tabular", + "output_name": "assembly_info", + "uuid": "3f297aed-7cee-4999-bbf4-69d84de6b64f" + } + ] + }, + { + "annotation": "", + "content_id": "param_value_from_file", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 3, + "output_name": "list_output_txt" + } + }, + "inputs": [], + "label": null, + "name": "Parse parameter value", + "outputs": [ + { + "name": "text_param", + "type": "expression.json" + } + ], + "position": { + "left": 891.1214460725189, + "top": 39.942666665523404 + }, + "post_job_actions": { + "RenameDatasetActiontext_param": { + "action_arguments": { + "newname": "parsed_extracted_samples_IDs_to_text" + }, + "action_type": "RenameDatasetAction", + "output_name": "text_param" + } + }, + "tool_id": "param_value_from_file", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"param_type\": \"text\", \"remove_newlines\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "ee2062e3-4a3e-4bd0-98a1-264704be0009", + "when": null, + "workflow_outputs": [ + { + "label": "parsed_extracted_samples_IDs_to_text", + "output_name": "text_param", + "uuid": "3608e170-c462-42a2-8003-f3f65baa3834" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "d": { + "id": 4, + "output_name": "consensus" + }, + "i": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "medaka consensus pipeline", + "outputs": [ + { + "name": "out_consensus", + "type": "fasta" + }, + { + "name": "out_probs", + "type": "h5" + }, + { + "name": "out_calls", + "type": "bam" + }, + { + "name": "out_gaps", + "type": "bed" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 923.816650390625, + "top": 543.25 + }, + "post_job_actions": { + "RenameDatasetActionout_calls": { + "action_arguments": { + "newname": "medaka_calls_of_draft_bam_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_calls" + }, + "RenameDatasetActionout_consensus": { + "action_arguments": { + "newname": "sample_all_contigs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_consensus" + }, + "RenameDatasetActionout_gaps": { + "action_arguments": { + "newname": "medaka_gaps_in_draft_bed_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_gaps" + }, + "RenameDatasetActionout_log": { + "action_arguments": { + "newname": "medaka_log_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_log" + }, + "RenameDatasetActionout_probs": { + "action_arguments": { + "newname": "medaka_propability_h5_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_probs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "79e9a869f40e", + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"b\": \"100\", \"d\": {\"__class__\": \"ConnectedValue\"}, \"g\": false, \"i\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"r941_min_hac_g507\", \"out\": [\"consensus\", \"probs\", \"calls\", \"log\", \"gaps\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.2+galaxy0", + "type": "tool", + "uuid": "9e88fc55-f41e-4e87-852e-044359dcea53", + "when": null, + "workflow_outputs": [ + { + "label": "medaka_gaps_in_draft_bed_file", + "output_name": "out_gaps", + "uuid": "9e5ad6ec-b408-4132-ba07-dec9fa626923" + }, + { + "label": "medaka_log_file", + "output_name": "out_log", + "uuid": "fcbd3e3f-2e93-4798-b696-dad7db9f2efd" + }, + { + "label": "medaka_propability_h5_file", + "output_name": "out_probs", + "uuid": "60656aac-ad2a-4c9b-9a68-b9fb18ae5595" + }, + { + "label": "medaka_calls_of_draft_bam_file", + "output_name": "out_calls", + "uuid": "c790d434-8e78-4df0-a0d4-8f9da0692158" + }, + { + "label": "sample_all_contigs", + "output_name": "out_consensus", + "uuid": "df361e19-b6d1-405b-96cc-b48c1ab7c604" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "assembly_gfa" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 927.4666748046875, + "top": 965.5333251953125 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "bandage_assembly_graph_image" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "bandage_contigs_image" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "tool_shed_repository": { + "changeset_revision": "ddddce450736", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": false, \"names\": false, \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2022.09+galaxy4", + "type": "tool", + "uuid": "ab317904-7296-4549-966f-f2a27ad9990c", + "when": null, + "workflow_outputs": [ + { + "label": "bandage_assembly_graph_image", + "output_name": "outfile", + "uuid": "9612a851-1f94-4d54-b001-5d082bcc9055" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 6, + "output_name": "out_consensus" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1210.4666748046875, + "top": 757.7333374023438 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "sample_specific_contigs_tabular_file_preparation" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "e7ed3c310b74", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"descr_columns\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "c55f2b32-2214-4c07-90e7-ce425388dc01", + "when": null, + "workflow_outputs": [ + { + "label": "sample_specific_contigs_tabular_file_preparation", + "output_name": "output", + "uuid": "de06c362-5b0a-4c29-956e-fbf02539789a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "errors": null, + "id": 10, + "input_connections": { + "file_input": { + "id": 6, + "output_name": "out_consensus" + } + }, + "inputs": [], + "label": null, + "name": "ABRicate", + "outputs": [ + { + "name": "report", + "type": "tabular" + } + ], + "position": { + "left": 1831.7666625976562, + "top": 31.583328247070312 + }, + "post_job_actions": { + "RenameDatasetActionreport": { + "action_arguments": { + "newname": "vfs_of_genes_identified_by_vfdb" + }, + "action_type": "RenameDatasetAction", + "output_name": "report" + }, + "TagDatasetActionreport": { + "action_arguments": { + "tags": "vfs_of_genes_identified_by_vfdb" + }, + "action_type": "TagDatasetAction", + "output_name": "report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "tool_shed_repository": { + "changeset_revision": "3f3e247c053d", + "name": "abricate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"db\": \"vfdb\", \"no_header\": false, \"min_dna_id\": \"50.0\", \"min_cov\": \"50.0\"}, \"file_input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "1de6612c-0191-4e11-8b12-e321e460c4bf", + "when": null, + "workflow_outputs": [ + { + "label": "abricate_with_vfdb_to_identify_genes_with_VFs", + "output_name": "report", + "uuid": "8f227fc7-2d92-4c6f-af64-e841c1315b4f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "errors": null, + "id": 11, + "input_connections": { + "file_input": { + "id": 6, + "output_name": "out_consensus" + } + }, + "inputs": [], + "label": null, + "name": "ABRicate", + "outputs": [ + { + "name": "report", + "type": "tabular" + } + ], + "position": { + "left": 1847.25, + "top": 671.316650390625 + }, + "post_job_actions": { + "RenameDatasetActionreport": { + "action_arguments": { + "newname": "amr_identified_by_ncbi" + }, + "action_type": "RenameDatasetAction", + "output_name": "report" + }, + "TagDatasetActionreport": { + "action_arguments": { + "tags": "amr_identified_by_ncbi" + }, + "action_type": "TagDatasetAction", + "output_name": "report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "tool_shed_repository": { + "changeset_revision": "3f3e247c053d", + "name": "abricate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"db\": \"ncbi\", \"no_header\": false, \"min_dna_id\": \"50.0\", \"min_cov\": \"50.0\"}, \"file_input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "92d285c6-2c41-49e2-9ddd-9ca07c317b7a", + "when": null, + "workflow_outputs": [ + { + "label": "abricate_report_using_ncbi_database_to_indentify_amr", + "output_name": "report", + "uuid": "fa021d98-d885-4834-ac62-f30d5792260e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "errors": null, + "id": 12, + "input_connections": { + "find_and_replace_0|replace_pattern": { + "id": 8, + "output_name": "out1" + }, + "infile": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Replace", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 1528.3333740234375, + "top": 802.5333251953125 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "sample_specific_contigs_tabular_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "tool_shed_repository": { + "changeset_revision": "d698c222f354", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"^(.+)$\", \"replace_pattern\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"1\"}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.4", + "type": "tool", + "uuid": "4de0cdf1-967a-4c47-9c95-f1f129ad5810", + "when": null, + "workflow_outputs": [ + { + "label": "sample_specific_contigs_tabular_file", + "output_name": "outfile", + "uuid": "174cb2c3-ed28-453c-8afb-85150e0b51ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "errors": null, + "id": 13, + "input_connections": { + "find_and_replace_1|replace_pattern": { + "id": 8, + "output_name": "out1" + }, + "infile": { + "id": 10, + "output_name": "report" + } + }, + "inputs": [], + "label": null, + "name": "Replace", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2063.4155768063843, + "top": 43.25688097234852 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "vfs" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "vfs" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "tool_shed_repository": { + "changeset_revision": "d698c222f354", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#FILE\", \"replace_pattern\": \"SampleID\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"1\"}}, {\"__index__\": 1, \"find_pattern\": \"^(.+)$\", \"replace_pattern\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": true, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"2\"}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.4", + "type": "tool", + "uuid": "4e5b87e2-4743-44d3-b57d-b5cab2887e46", + "when": null, + "workflow_outputs": [ + { + "label": "vfs", + "output_name": "outfile", + "uuid": "19e56e00-6eef-4a4e-9cc6-d93dbf9420ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "errors": null, + "id": 14, + "input_connections": { + "find_and_replace_1|replace_pattern": { + "id": 8, + "output_name": "out1" + }, + "infile": { + "id": 11, + "output_name": "report" + } + }, + "inputs": [], + "label": null, + "name": "Replace", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2131.751242708332, + "top": 692.620361328125 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "amrs" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "amrs" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "tool_shed_repository": { + "changeset_revision": "d698c222f354", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#FILE\", \"replace_pattern\": \"SampleID\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"1\"}}, {\"__index__\": 1, \"find_pattern\": \"^(.+)$\", \"replace_pattern\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": true, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"2\"}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.4", + "type": "tool", + "uuid": "9ebff4c8-3b3c-43a1-a008-490b4745f407", + "when": null, + "workflow_outputs": [ + { + "label": "amrs", + "output_name": "outfile", + "uuid": "a8eb74a5-362b-4f0f-a944-672e27981a41" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 12, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Tabular-to-FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 1542.88330078125, + "top": 1009.6666870117188 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "contigs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "contigs" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "tool_shed_repository": { + "changeset_revision": "0a7799698fe5", + "name": "tabular_to_fasta", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"seq_col\": \"2\", \"title_col\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "52af9a9c-0c9c-4605-a2a6-caefde8efa89", + "when": null, + "workflow_outputs": [ + { + "label": "contigs", + "output_name": "output", + "uuid": "a5bb1cbe-1bde-49a1-ad86-6d57b1319fbe" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/gene_based_pathogen_identification.ga", + "tags": [ + "name:Collection", + "name:PathoGFAIR", + "name:IWC", + "name:microGalaxy" + ], + "test_results": null, + "tests": true, + "title": "Gene-based Pathogen Identification", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/gene-based-pathogen-identification", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/gene_based_pathogen_identification.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/gene_based_pathogen_identification.html", + "version": 2, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "gene-based-pathogen-identification", + "workflow": "gene_based_pathogen_identification.ga", + "workflow_tools": [ + "__BUILD_LIST__", + "param_value_from_file", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0" + ], + "workflowhub_id": "1091" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Microbiome - QC and Contamination Filtering", + "features": { + "comments": true, + "parameters": true, + "report": { + "markdown": "# Nanopore - Preprocessing Workflow Report\nBelow are the results of the Preprocessing Workflow\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Workflow Inputs\nA collection of all sample reads (all in the same sequence file format, e.g.: Fastq, Fastq.gz, Fastqsanger, etc.)\n\n## Workflow Outputs\n\n### Multi QC Report of all samples before reads quality retaining\n\n```galaxy\nhistory_dataset_as_image(output=\"multiQC_html_report_before_preprocessing\")\n```\n### Multi QC Report of all samples after reads quality retaining\n\n```galaxy\nhistory_dataset_as_image(output=\"multiQC_html_report_after_preprocessing\")\n```\n\n### Percentages of removed host sequences in every sample\n\n```galaxy\nhistory_dataset_display(output=\"removed_hosts_percentage_tabular\")\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nsamples_profile\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncollection_of_all_samples\"]\n 2[label=\"Porechop\"]\n 1 -> 2 [label=\"output\"]\n k34ea26db11cb41ee85c375af8a53a2c0[color=lightseagreen,label=\"Output\\nporechop_output_trimmed_reads\"]\n 2 -> k34ea26db11cb41ee85c375af8a53a2c0\n 3[label=\"NanoPlot\"]\n 1 -> 3 [label=\"output\"]\n k15ecf5b1e0eb405aac3a359feb66d4cd[color=lightseagreen,label=\"Output\\nnanoplot_qc_on_reads_before_preprocessing_nanostats\"]\n 3 -> k15ecf5b1e0eb405aac3a359feb66d4cd\n k304110f960d04ba28b3bfae0e2a49554[color=lightseagreen,label=\"Output\\nnanoplot_on_reads_before_preprocessing_nanostats_post_filtering\"]\n 3 -> k304110f960d04ba28b3bfae0e2a49554\n kf2bd0a1fcd604a36a7d08025cc19ea2e[color=lightseagreen,label=\"Output\\nnanoplot_qc_on_reads_before_preprocessing_html_report\"]\n 3 -> kf2bd0a1fcd604a36a7d08025cc19ea2e\n 4[label=\"FastQC\"]\n 1 -> 4 [label=\"output\"]\n kd0a6462405d04068835ba025fc011760[color=lightseagreen,label=\"Output\\nfastqc_quality_check_before_preprocessing_html_file\"]\n 4 -> kd0a6462405d04068835ba025fc011760\n ke61fef5d1bc84c8ebe6af74e210e9920[color=lightseagreen,label=\"Output\\nfastqc_quality_check_before_preprocessing_text_file\"]\n 4 -> ke61fef5d1bc84c8ebe6af74e210e9920\n 5[label=\"fastp\"]\n 2 -> 5 [label=\"outfile\"]\n ka221948350b74aed98dd333ad2e12eb8[color=lightseagreen,label=\"Output\\nnanopore_sequenced_reads_processed_with_fastp_after_host_removal\"]\n 5 -> ka221948350b74aed98dd333ad2e12eb8\n k2a9a8b4d458b40e79a21fb7108d5bbe4[color=lightseagreen,label=\"Output\\nnanopore_sequenced_reads_processed_with_fastp_after_host_removal_html_report\"]\n 5 -> k2a9a8b4d458b40e79a21fb7108d5bbe4\n 6[label=\"MultiQC\"]\n 4 -> 6 [label=\"text_file\"]\n kebffe782a56c431f8af4c0cb8d7a02fc[color=lightseagreen,label=\"Output\\nmultiQC_stats_before_preprocessing\"]\n 6 -> kebffe782a56c431f8af4c0cb8d7a02fc\n k0f92196d047d4918819dc0ff7cd3ae85[color=lightseagreen,label=\"Output\\nmultiQC_html_report_before_preprocessing\"]\n 6 -> k0f92196d047d4918819dc0ff7cd3ae85\n 7[label=\"Map with minimap2\"]\n 0 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"out1\"]\n k9d7bb3b709a1401fa132bb35a53375ea[color=lightseagreen,label=\"Output\\nbam_map_to_host\"]\n 7 -> k9d7bb3b709a1401fa132bb35a53375ea\n 8[label=\"NanoPlot\"]\n 5 -> 8 [label=\"out1\"]\n kb58992904c574662ad22860654652ade[color=lightseagreen,label=\"Output\\nnanoplot_qc_on_reads_after_preprocessing_html_report\"]\n 8 -> kb58992904c574662ad22860654652ade\n k949bfdf53d794dadbdd8c3a25e6af4cf[color=lightseagreen,label=\"Output\\nnanoplot_on_reads_after_preprocessing_nanostats_post_filtering\"]\n 8 -> k949bfdf53d794dadbdd8c3a25e6af4cf\n k42db7f93919e4bbb81a106411a9da410[color=lightseagreen,label=\"Output\\nnanoplot_qc_on_reads_after_preprocessing_nanostats\"]\n 8 -> k42db7f93919e4bbb81a106411a9da410\n 9[label=\"FastQC\"]\n 5 -> 9 [label=\"out1\"]\n k09306471afa041069cc7259b93dfc862[color=lightseagreen,label=\"Output\\nfastqc_quality_check_after_preprocessing_text_file\"]\n 9 -> k09306471afa041069cc7259b93dfc862\n k084f982f20f1457e801291ebbb85633d[color=lightseagreen,label=\"Output\\nfastqc_quality_check_after_preprocessing_html_file\"]\n 9 -> k084f982f20f1457e801291ebbb85633d\n 10[label=\"Split BAM by reads mapping status\"]\n 7 -> 10 [label=\"alignment_output\"]\n k14a53fe2f29643aa86b7243278c1050c[color=lightseagreen,label=\"Output\\nnon_host_sequences_bam\"]\n 10 -> k14a53fe2f29643aa86b7243278c1050c\n k3b1e626f6bc1484cbe01366534361b73[color=lightseagreen,label=\"Output\\nhost_sequences_bam\"]\n 10 -> k3b1e626f6bc1484cbe01366534361b73\n 11[label=\"Select\"]\n 9 -> 11 [label=\"text_file\"]\n ka809853b119f44d2986b8d2006439fbe[color=lightseagreen,label=\"Output\\ntotal_sequences_before_hosts_sequences_removal\"]\n 11 -> ka809853b119f44d2986b8d2006439fbe\n 12[label=\"Samtools fastx\"]\n 10 -> 12 [label=\"mapped\"]\n k10d4eaec81d8444e80757b77a1fb6870[color=lightseagreen,label=\"Output\\nhost_sequences_fastq\"]\n 12 -> k10d4eaec81d8444e80757b77a1fb6870\n 13[label=\"Samtools fastx\"]\n 10 -> 13 [label=\"unmapped\"]\n k0c2dd74dac4f45cf839c50386a7ece28[color=lightseagreen,label=\"Output\\nnon_host_sequences_fastq\"]\n 13 -> k0c2dd74dac4f45cf839c50386a7ece28\n 14[label=\"Collapse Collection\"]\n 11 -> 14 [label=\"out_file1\"]\n 15[label=\"Filter failed datasets\"]\n 12 -> 15 [label=\"output\"]\n 16[label=\"Kraken2\"]\n 13 -> 16 [label=\"output\"]\n k203d303e8f3a4242971fb345842ebdb8[color=lightseagreen,label=\"Output\\nkraken2_with_kalamri_database_output\"]\n 16 -> k203d303e8f3a4242971fb345842ebdb8\n k843afd4d23a846e7b9458b67dd7ae341[color=lightseagreen,label=\"Output\\nkraken2_with_kalamri_database_report\"]\n 16 -> k843afd4d23a846e7b9458b67dd7ae341\n 17[label=\"Cut\"]\n 14 -> 17 [label=\"output\"]\n kd07be9f1d250400891ee59a68521eb56[color=lightseagreen,label=\"Output\\nquality_retained_all_reads\"]\n 17 -> kd07be9f1d250400891ee59a68521eb56\n 18[label=\"FastQC\"]\n 15 -> 18 [label=\"output\"]\n kb0ee6e310eb1437d8c04fc3640b9a0b7[color=lightseagreen,label=\"Output\\nhosts_qc_text_file\"]\n 18 -> kb0ee6e310eb1437d8c04fc3640b9a0b7\n kb72ff57b092143bfa8176cd444c8f3cb[color=lightseagreen,label=\"Output\\nhosts_qc_html\"]\n 18 -> kb72ff57b092143bfa8176cd444c8f3cb\n 19[label=\"Krakentools: Extract Kraken Reads By ID\"]\n 5 -> 19 [label=\"out1\"]\n 16 -> 19 [label=\"report_output\"]\n 16 -> 19 [label=\"output\"]\n k57e3b7258e1340b29acc31fd56ebc80a[color=lightseagreen,label=\"Output\\ncollection_of_preprocessed_samples\"]\n 19 -> k57e3b7258e1340b29acc31fd56ebc80a\n 20[label=\"Select\"]\n 18 -> 20 [label=\"text_file\"]\n k3ba35c7132f0474198d4ea8522e27500[color=lightseagreen,label=\"Output\\ntotal_sequences_after_hosts_sequences_removal\"]\n 20 -> k3ba35c7132f0474198d4ea8522e27500\n 21[label=\"Collapse Collection\"]\n 20 -> 21 [label=\"out_file1\"]\n 22[label=\"Cut\"]\n 21 -> 22 [label=\"output\"]\n kcef36c6845494fd6b7c871fb21df012f[color=lightseagreen,label=\"Output\\nquality_retained_hosts_reads\"]\n 22 -> kcef36c6845494fd6b7c871fb21df012f\n 23[label=\"Column join\"]\n 17 -> 23 [label=\"out_file1\"]\n 22 -> 23 [label=\"out_file1\"]\n 24[label=\"Compute\"]\n 23 -> 24 [label=\"tabular_output\"]\n 25[label=\"Column Regex Find And Replace\"]\n 24 -> 25 [label=\"out_file1\"]\n k470892eedab948d7ad9745dbd52afaa7[color=lightseagreen,label=\"Output\\nremoved_hosts_percentage_tabular\"]\n 25 -> k470892eedab948d7ad9745dbd52afaa7\n 26[label=\"MultiQC\"]\n 9 -> 26 [label=\"text_file\"]\n 25 -> 26 [label=\"out_file1\"]\n k0b1b5a7336ee42a2a2201ced6ec7378b[color=lightseagreen,label=\"Output\\nmultiQC_html_report_after_preprocessing\"]\n 26 -> k0b1b5a7336ee42a2a2201ced6ec7378b\n k13cbf6c769544458aa66a5b020c63822[color=lightseagreen,label=\"Output\\nmultiQC_stats_after_preprocessing\"]\n 26 -> k13cbf6c769544458aa66a5b020c63822\n}", + "history": [ + { + "hash": "cdd93376adc6ce80742881c25d6810bcce85fc05", + "message": "adding tags to some of the workflow outputs, updating the training with the latest PathoGFAIR workflows updates", + "num": 5, + "short_hash": "cdd93376a", + "unix": "1717675229" + }, + { + "hash": "e230001f416aa3035d90535521418fa798ab643e", + "message": "updating preprocessing workflow and allele based workflow with a single user input parameter and adjusting the md file accodingly", + "num": 4, + "short_hash": "e230001f4", + "unix": "1716982398" + }, + { + "hash": "211b69394d6ef4d129eaa18cd76b93c8dece8cf3", + "message": "adding workflow reports to the workflows of the training to match the latest version of the IWC PR", + "num": 3, + "short_hash": "211b69394", + "unix": "1716716727" + }, + { + "hash": "d320748c5c8ea425a77aa03ac78a5956eb75b005", + "message": "Foodborne training update 2024", + "num": 2, + "short_hash": "d320748c5", + "unix": "1716229068" + }, + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "based on the lab preparation of the samples during sequencing, there should be a sample profile better than the other, to be chosen as an optional input to Minimap2. e.g. PacBio/Oxford Nanpore\n\nFor more details check: https://github.com/lh3/minimap2?tab=readme-ov-file#use-cases", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "based on the lab preparation of the samples during sequencing, there should be a sample profile better than the other, to be chosen as an optional input to Minimap2. e.g. PacBio/Oxford Nanpore\n\nFor more details check: https://github.com/lh3/minimap2?tab=readme-ov-file#use-cases", + "name": "samples_profile" + } + ], + "label": "samples_profile", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 655, + "top": 19.602400000005026 + }, + "tool_id": null, + "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "1435b9fc-84c0-4a1a-af49-007da98f4d5f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Nanopore reads of each sample are all in a single fastq or fastq.gz file", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Nanopore reads of each sample are all in a single fastq or fastq.gz file", + "name": "collection_of_all_samples" + } + ], + "label": "collection_of_all_samples", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 20, + "top": 981.4 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "6a0dea4c-3d2c-4ab9-bb87-82cff75ac6d0", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nsamples_profile\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\ncollection_of_all_samples\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Porechop\"];\n 1 -->|output| 2;\n 34ea26db-11cb-41ee-85c3-75af8a53a2c0[\"Output\\nporechop_output_trimmed_reads\"];\n 2 --> 34ea26db-11cb-41ee-85c3-75af8a53a2c0;\n style 34ea26db-11cb-41ee-85c3-75af8a53a2c0 stroke:#2c3143,stroke-width:4px;\n 3[\"NanoPlot\"];\n 1 -->|output| 3;\n 15ecf5b1-e0eb-405a-ac3a-359feb66d4cd[\"Output\\nnanoplot_qc_on_reads_before_preprocessing_nanostats\"];\n 3 --> 15ecf5b1-e0eb-405a-ac3a-359feb66d4cd;\n style 15ecf5b1-e0eb-405a-ac3a-359feb66d4cd stroke:#2c3143,stroke-width:4px;\n 304110f9-60d0-4ba2-8b3b-fae0e2a49554[\"Output\\nnanoplot_on_reads_before_preprocessing_nanostats_post_filtering\"];\n 3 --> 304110f9-60d0-4ba2-8b3b-fae0e2a49554;\n style 304110f9-60d0-4ba2-8b3b-fae0e2a49554 stroke:#2c3143,stroke-width:4px;\n f2bd0a1f-cd60-4a36-a7d0-8025cc19ea2e[\"Output\\nnanoplot_qc_on_reads_before_preprocessing_html_report\"];\n 3 --> f2bd0a1f-cd60-4a36-a7d0-8025cc19ea2e;\n style f2bd0a1f-cd60-4a36-a7d0-8025cc19ea2e stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC\"];\n 1 -->|output| 4;\n d0a64624-05d0-4068-835b-a025fc011760[\"Output\\nfastqc_quality_check_before_preprocessing_html_file\"];\n 4 --> d0a64624-05d0-4068-835b-a025fc011760;\n style d0a64624-05d0-4068-835b-a025fc011760 stroke:#2c3143,stroke-width:4px;\n e61fef5d-1bc8-4c8e-be6a-f74e210e9920[\"Output\\nfastqc_quality_check_before_preprocessing_text_file\"];\n 4 --> e61fef5d-1bc8-4c8e-be6a-f74e210e9920;\n style e61fef5d-1bc8-4c8e-be6a-f74e210e9920 stroke:#2c3143,stroke-width:4px;\n 5[\"fastp\"];\n 2 -->|outfile| 5;\n a2219483-50b7-4aed-98dd-333ad2e12eb8[\"Output\\nnanopore_sequenced_reads_processed_with_fastp_after_host_removal\"];\n 5 --> a2219483-50b7-4aed-98dd-333ad2e12eb8;\n style a2219483-50b7-4aed-98dd-333ad2e12eb8 stroke:#2c3143,stroke-width:4px;\n 2a9a8b4d-458b-40e7-9a21-fb7108d5bbe4[\"Output\\nnanopore_sequenced_reads_processed_with_fastp_after_host_removal_html_report\"];\n 5 --> 2a9a8b4d-458b-40e7-9a21-fb7108d5bbe4;\n style 2a9a8b4d-458b-40e7-9a21-fb7108d5bbe4 stroke:#2c3143,stroke-width:4px;\n 6[\"MultiQC\"];\n 4 -->|text_file| 6;\n ebffe782-a56c-431f-8af4-c0cb8d7a02fc[\"Output\\nmultiQC_stats_before_preprocessing\"];\n 6 --> ebffe782-a56c-431f-8af4-c0cb8d7a02fc;\n style ebffe782-a56c-431f-8af4-c0cb8d7a02fc stroke:#2c3143,stroke-width:4px;\n 0f92196d-047d-4918-819d-c0ff7cd3ae85[\"Output\\nmultiQC_html_report_before_preprocessing\"];\n 6 --> 0f92196d-047d-4918-819d-c0ff7cd3ae85;\n style 0f92196d-047d-4918-819d-c0ff7cd3ae85 stroke:#2c3143,stroke-width:4px;\n 7[\"Map with minimap2\"];\n 0 -->|output| 7;\n 5 -->|out1| 7;\n 9d7bb3b7-09a1-401f-a132-bb35a53375ea[\"Output\\nbam_map_to_host\"];\n 7 --> 9d7bb3b7-09a1-401f-a132-bb35a53375ea;\n style 9d7bb3b7-09a1-401f-a132-bb35a53375ea stroke:#2c3143,stroke-width:4px;\n 8[\"NanoPlot\"];\n 5 -->|out1| 8;\n b5899290-4c57-4662-ad22-860654652ade[\"Output\\nnanoplot_qc_on_reads_after_preprocessing_html_report\"];\n 8 --> b5899290-4c57-4662-ad22-860654652ade;\n style b5899290-4c57-4662-ad22-860654652ade stroke:#2c3143,stroke-width:4px;\n 949bfdf5-3d79-4dad-bdd8-c3a25e6af4cf[\"Output\\nnanoplot_on_reads_after_preprocessing_nanostats_post_filtering\"];\n 8 --> 949bfdf5-3d79-4dad-bdd8-c3a25e6af4cf;\n style 949bfdf5-3d79-4dad-bdd8-c3a25e6af4cf stroke:#2c3143,stroke-width:4px;\n 42db7f93-919e-4bbb-81a1-06411a9da410[\"Output\\nnanoplot_qc_on_reads_after_preprocessing_nanostats\"];\n 8 --> 42db7f93-919e-4bbb-81a1-06411a9da410;\n style 42db7f93-919e-4bbb-81a1-06411a9da410 stroke:#2c3143,stroke-width:4px;\n 9[\"FastQC\"];\n 5 -->|out1| 9;\n 09306471-afa0-4106-9cc7-259b93dfc862[\"Output\\nfastqc_quality_check_after_preprocessing_text_file\"];\n 9 --> 09306471-afa0-4106-9cc7-259b93dfc862;\n style 09306471-afa0-4106-9cc7-259b93dfc862 stroke:#2c3143,stroke-width:4px;\n 084f982f-20f1-457e-8012-91ebbb85633d[\"Output\\nfastqc_quality_check_after_preprocessing_html_file\"];\n 9 --> 084f982f-20f1-457e-8012-91ebbb85633d;\n style 084f982f-20f1-457e-8012-91ebbb85633d stroke:#2c3143,stroke-width:4px;\n 10[\"Split BAM by reads mapping status\"];\n 7 -->|alignment_output| 10;\n 14a53fe2-f296-43aa-86b7-243278c1050c[\"Output\\nnon_host_sequences_bam\"];\n 10 --> 14a53fe2-f296-43aa-86b7-243278c1050c;\n style 14a53fe2-f296-43aa-86b7-243278c1050c stroke:#2c3143,stroke-width:4px;\n 3b1e626f-6bc1-484c-be01-366534361b73[\"Output\\nhost_sequences_bam\"];\n 10 --> 3b1e626f-6bc1-484c-be01-366534361b73;\n style 3b1e626f-6bc1-484c-be01-366534361b73 stroke:#2c3143,stroke-width:4px;\n 11[\"Select\"];\n 9 -->|text_file| 11;\n a809853b-119f-44d2-986b-8d2006439fbe[\"Output\\ntotal_sequences_before_hosts_sequences_removal\"];\n 11 --> a809853b-119f-44d2-986b-8d2006439fbe;\n style a809853b-119f-44d2-986b-8d2006439fbe stroke:#2c3143,stroke-width:4px;\n 12[\"Samtools fastx\"];\n 10 -->|mapped| 12;\n 10d4eaec-81d8-444e-8075-7b77a1fb6870[\"Output\\nhost_sequences_fastq\"];\n 12 --> 10d4eaec-81d8-444e-8075-7b77a1fb6870;\n style 10d4eaec-81d8-444e-8075-7b77a1fb6870 stroke:#2c3143,stroke-width:4px;\n 13[\"Samtools fastx\"];\n 10 -->|unmapped| 13;\n 0c2dd74d-ac4f-45cf-839c-50386a7ece28[\"Output\\nnon_host_sequences_fastq\"];\n 13 --> 0c2dd74d-ac4f-45cf-839c-50386a7ece28;\n style 0c2dd74d-ac4f-45cf-839c-50386a7ece28 stroke:#2c3143,stroke-width:4px;\n 14[\"Collapse Collection\"];\n 11 -->|out_file1| 14;\n 15[\"Filter failed datasets\"];\n 12 -->|output| 15;\n 16[\"Kraken2\"];\n 13 -->|output| 16;\n 203d303e-8f3a-4242-971f-b345842ebdb8[\"Output\\nkraken2_with_kalamri_database_output\"];\n 16 --> 203d303e-8f3a-4242-971f-b345842ebdb8;\n style 203d303e-8f3a-4242-971f-b345842ebdb8 stroke:#2c3143,stroke-width:4px;\n 843afd4d-23a8-46e7-b945-8b67dd7ae341[\"Output\\nkraken2_with_kalamri_database_report\"];\n 16 --> 843afd4d-23a8-46e7-b945-8b67dd7ae341;\n style 843afd4d-23a8-46e7-b945-8b67dd7ae341 stroke:#2c3143,stroke-width:4px;\n 17[\"Cut\"];\n 14 -->|output| 17;\n d07be9f1-d250-4008-91ee-59a68521eb56[\"Output\\nquality_retained_all_reads\"];\n 17 --> d07be9f1-d250-4008-91ee-59a68521eb56;\n style d07be9f1-d250-4008-91ee-59a68521eb56 stroke:#2c3143,stroke-width:4px;\n 18[\"FastQC\"];\n 15 -->|output| 18;\n b0ee6e31-0eb1-437d-8c04-fc3640b9a0b7[\"Output\\nhosts_qc_text_file\"];\n 18 --> b0ee6e31-0eb1-437d-8c04-fc3640b9a0b7;\n style b0ee6e31-0eb1-437d-8c04-fc3640b9a0b7 stroke:#2c3143,stroke-width:4px;\n b72ff57b-0921-43bf-a817-6cd444c8f3cb[\"Output\\nhosts_qc_html\"];\n 18 --> b72ff57b-0921-43bf-a817-6cd444c8f3cb;\n style b72ff57b-0921-43bf-a817-6cd444c8f3cb stroke:#2c3143,stroke-width:4px;\n 19[\"Krakentools: Extract Kraken Reads By ID\"];\n 5 -->|out1| 19;\n 16 -->|report_output| 19;\n 16 -->|output| 19;\n 57e3b725-8e13-40b2-9acc-31fd56ebc80a[\"Output\\ncollection_of_preprocessed_samples\"];\n 19 --> 57e3b725-8e13-40b2-9acc-31fd56ebc80a;\n style 57e3b725-8e13-40b2-9acc-31fd56ebc80a stroke:#2c3143,stroke-width:4px;\n 20[\"Select\"];\n 18 -->|text_file| 20;\n 3ba35c71-32f0-4741-98d4-ea8522e27500[\"Output\\ntotal_sequences_after_hosts_sequences_removal\"];\n 20 --> 3ba35c71-32f0-4741-98d4-ea8522e27500;\n style 3ba35c71-32f0-4741-98d4-ea8522e27500 stroke:#2c3143,stroke-width:4px;\n 21[\"Collapse Collection\"];\n 20 -->|out_file1| 21;\n 22[\"Cut\"];\n 21 -->|output| 22;\n cef36c68-4549-4fd6-b7c8-71fb21df012f[\"Output\\nquality_retained_hosts_reads\"];\n 22 --> cef36c68-4549-4fd6-b7c8-71fb21df012f;\n style cef36c68-4549-4fd6-b7c8-71fb21df012f stroke:#2c3143,stroke-width:4px;\n 23[\"Column join\"];\n 17 -->|out_file1| 23;\n 22 -->|out_file1| 23;\n 24[\"Compute\"];\n 23 -->|tabular_output| 24;\n 25[\"Column Regex Find And Replace\"];\n 24 -->|out_file1| 25;\n 470892ee-dab9-48d7-ad97-45dbd52afaa7[\"Output\\nremoved_hosts_percentage_tabular\"];\n 25 --> 470892ee-dab9-48d7-ad97-45dbd52afaa7;\n style 470892ee-dab9-48d7-ad97-45dbd52afaa7 stroke:#2c3143,stroke-width:4px;\n 26[\"MultiQC\"];\n 9 -->|text_file| 26;\n 25 -->|out_file1| 26;\n 0b1b5a73-36ee-42a2-a220-1ced6ec7378b[\"Output\\nmultiQC_html_report_after_preprocessing\"];\n 26 --> 0b1b5a73-36ee-42a2-a220-1ced6ec7378b;\n style 0b1b5a73-36ee-42a2-a220-1ced6ec7378b stroke:#2c3143,stroke-width:4px;\n 13cbf6c7-6954-4458-aa66-a5b020c63822[\"Output\\nmultiQC_stats_after_preprocessing\"];\n 26 --> 13cbf6c7-6954-4458-aa66-a5b020c63822;\n style 13cbf6c7-6954-4458-aa66-a5b020c63822 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Nanopore Preprocessing", + "outputs": [ + { + "annotation": "Preprocessing (Trimming)", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Porechop", + "outputs": [ + { + "name": "outfile", + "type": "fasta" + } + ], + "position": { + "left": 314, + "top": 518.0441999996991 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "porechop_output_trimmed_reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "543cbeef3949", + "name": "porechop", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_search_settings\": {\"adapter_threshold\": \"90.0\", \"check_reads\": \"10000\", \"scoring_scheme\": \"3,-6,-5,-2\"}, \"barcode_binning_settings\": {\"barcode_threshold\": \"75.0\", \"barcode_diff\": \"5.0\", \"require_two_barcodes\": false, \"discard_unassigned\": false}, \"end_adapter_settings\": {\"end_size\": \"150\", \"min_trim_size\": \"4\", \"extra_end_trim\": \"2\", \"end_threshold\": \"75.0\"}, \"format\": \"fastq.gz\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"middle_adapter_settings\": {\"no_split\": false, \"discard_middle\": false, \"middle_threshold\": \"85.0\", \"extra_middle_trim_good_side\": \"10\", \"extra_middle_trim_bad_side\": \"100\", \"min_split_read_size\": \"1000\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.4+galaxy0", + "type": "tool", + "uuid": "c57309b3-3d32-42be-b1c1-509ed12d6f4a", + "when": null, + "workflow_outputs": [ + { + "label": "porechop_output_trimmed_reads", + "output_name": "outfile", + "uuid": "34ea26db-11cb-41ee-85c3-75af8a53a2c0" + } + ] + }, + { + "annotation": "Quality Check Before Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "mode|reads|files": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + } + ], + "position": { + "left": 314, + "top": 955.4031261035689 + }, + "post_job_actions": { + "RenameDatasetActionlog_read_length": { + "action_arguments": { + "newname": "nanoplot_on_reads_before_preprocessing_log_transformed_histogram_read_length" + }, + "action_type": "RenameDatasetAction", + "output_name": "log_read_length" + }, + "RenameDatasetActionnanostats": { + "action_arguments": { + "newname": "nanoplot_qc_on_reads_before_preprocessing_nanostats" + }, + "action_type": "RenameDatasetAction", + "output_name": "nanostats" + }, + "RenameDatasetActionnanostats_post_filtering": { + "action_arguments": { + "newname": "nanoplot_on_reads_before_preprocessing_nanostats_post_filtering" + }, + "action_type": "RenameDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "RenameDatasetActionoutput_html": { + "action_arguments": { + "newname": "nanoplot_qc_on_reads_before_preprocessing_html_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_html" + }, + "RenameDatasetActionread_length": { + "action_arguments": { + "newname": "nanoplot_on_reads_before_preprocessing_histogram_read_length" + }, + "action_type": "RenameDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a02b8b3f5a0c", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"customization\": {\"color\": null, \"plots\": null, \"N50\": false}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.42.0+galaxy1", + "type": "tool", + "uuid": "60c022d4-2cc5-4caf-a9f0-333cf8a3edc7", + "when": null, + "workflow_outputs": [ + { + "label": "nanoplot_qc_on_reads_before_preprocessing_nanostats", + "output_name": "nanostats", + "uuid": "15ecf5b1-e0eb-405a-ac3a-359feb66d4cd" + }, + { + "label": "nanoplot_on_reads_before_preprocessing_nanostats_post_filtering", + "output_name": "nanostats_post_filtering", + "uuid": "304110f9-60d0-4ba2-8b3b-fae0e2a49554" + }, + { + "label": "nanoplot_qc_on_reads_before_preprocessing_html_report", + "output_name": "output_html", + "uuid": "f2bd0a1f-cd60-4a36-a7d0-8025cc19ea2e" + } + ] + }, + { + "annotation": "Quality Check Before Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 313, + "top": 1305.4027477928287 + }, + "post_job_actions": { + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "fastqc_quality_check_before_preprocessing_html_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + }, + "RenameDatasetActiontext_file": { + "action_arguments": { + "newname": "fastqc_quality_check_before_preprocessing_text_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "text_file" + }, + "TagDatasetActionhtml_file": { + "action_arguments": { + "tags": "FastQC_Before_Preprocessing_HTM" + }, + "action_type": "TagDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5ec9f6bceaee", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.74+galaxy0", + "type": "tool", + "uuid": "b393d71b-0708-4825-97f2-d43a3f312f73", + "when": null, + "workflow_outputs": [ + { + "label": "fastqc_quality_check_before_preprocessing_html_file", + "output_name": "html_file", + "uuid": "d0a64624-05d0-4068-835b-a025fc011760" + }, + { + "label": "fastqc_quality_check_before_preprocessing_text_file", + "output_name": "text_file", + "uuid": "e61fef5d-1bc8-4c8e-be6a-f74e210e9920" + } + ] + }, + { + "annotation": "Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "single_paired|in1": { + "id": 2, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + } + ], + "label": null, + "name": "fastp", + "outputs": [ + { + "name": "out1", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 575, + "top": 505.969807011772 + }, + "post_job_actions": { + "RenameDatasetActionout1": { + "action_arguments": { + "newname": "nanopore_sequenced_reads_processed_with_fastp_after_host_removal" + }, + "action_type": "RenameDatasetAction", + "output_name": "out1" + }, + "RenameDatasetActionreport_html": { + "action_arguments": { + "newname": "nanopore_sequenced_reads_processed_with_fastp_after_host_removal_html_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_html" + }, + "TagDatasetActionreport_html": { + "action_arguments": { + "tags": "fastp_HTML" + }, + "action_type": "TagDatasetAction", + "output_name": "report_html" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c59d48774d03", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": false}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"single\", \"__current_case__\": 0, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": \"\"}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.23.4+galaxy0", + "type": "tool", + "uuid": "ca35835e-9381-49ee-9248-cbb8809113bf", + "when": null, + "workflow_outputs": [ + { + "label": "nanopore_sequenced_reads_processed_with_fastp_after_host_removal", + "output_name": "out1", + "uuid": "a2219483-50b7-4aed-98dd-333ad2e12eb8" + }, + { + "label": "nanopore_sequenced_reads_processed_with_fastp_after_host_removal_html_report", + "output_name": "report_html", + "uuid": "2a9a8b4d-458b-40e7-9a21-fb7108d5bbe4" + } + ] + }, + { + "annotation": "Quality Control Before and After Preprocessing\n\n", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 4, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 593, + "top": 1443.4027477928287 + }, + "post_job_actions": { + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "multiQC_html_report_before_preprocessing" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "multiQC_stats_before_preprocessing" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "TagDatasetActionhtml_report": { + "action_arguments": { + "tags": "MultiQC_Before_Preprocessing_HTML" + }, + "action_type": "TagDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"MultiQC Report Before PreProcessing\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "cf00d759-c11e-4e7c-bc39-2735ada49668", + "when": null, + "workflow_outputs": [ + { + "label": "multiQC_stats_before_preprocessing", + "output_name": "stats", + "uuid": "ebffe782-a56c-431f-8af4-c0cb8d7a02fc" + }, + { + "label": "multiQC_html_report_before_preprocessing", + "output_name": "html_report", + "uuid": "0f92196d-047d-4918-819d-c0ff7cd3ae85" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 0, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 5, + "output_name": "out1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + } + ], + "label": null, + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 895.0333251953125, + "top": 55.86977039067824 + }, + "post_job_actions": { + "RenameDatasetActionalignment_output": { + "action_arguments": { + "newname": "bam_map_to_host" + }, + "action_type": "RenameDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5cc34c3f440d", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"BAM\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"ref_file\": \"galGal6\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.28+galaxy0", + "type": "tool", + "uuid": "d3ae590a-f40f-40f8-a6c4-d9d07be650ca", + "when": null, + "workflow_outputs": [ + { + "label": "bam_map_to_host", + "output_name": "alignment_output", + "uuid": "9d7bb3b7-09a1-401f-a132-bb35a53375ea" + } + ] + }, + { + "annotation": "Nanoplot Quality Check After Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "mode|reads|files": { + "id": 5, + "output_name": "out1" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + } + ], + "position": { + "left": 914.2000122070312, + "top": 951.2031138965376 + }, + "post_job_actions": { + "RenameDatasetActionlog_read_length": { + "action_arguments": { + "newname": "nanoplot_on_reads_after_preprocessing_log_transformed_histogram_read_length" + }, + "action_type": "RenameDatasetAction", + "output_name": "log_read_length" + }, + "RenameDatasetActionnanostats": { + "action_arguments": { + "newname": "nanoplot_qc_on_reads_after_preprocessing_nanostats" + }, + "action_type": "RenameDatasetAction", + "output_name": "nanostats" + }, + "RenameDatasetActionnanostats_post_filtering": { + "action_arguments": { + "newname": "nanoplot_on_reads_after_preprocessing_nanostats_post_filtering" + }, + "action_type": "RenameDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "RenameDatasetActionoutput_html": { + "action_arguments": { + "newname": "nanoplot_qc_on_reads_after_preprocessing_html_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_html" + }, + "RenameDatasetActionread_length": { + "action_arguments": { + "newname": "nanoplot_on_reads_after_preprocessing_histogram_read_length" + }, + "action_type": "RenameDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a02b8b3f5a0c", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"customization\": {\"color\": null, \"plots\": null, \"N50\": false}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.42.0+galaxy1", + "type": "tool", + "uuid": "33511a93-8e27-4936-91e7-451ba3c1bb54", + "when": null, + "workflow_outputs": [ + { + "label": "nanoplot_qc_on_reads_after_preprocessing_html_report", + "output_name": "output_html", + "uuid": "b5899290-4c57-4662-ad22-860654652ade" + }, + { + "label": "nanoplot_on_reads_after_preprocessing_nanostats_post_filtering", + "output_name": "nanostats_post_filtering", + "uuid": "949bfdf5-3d79-4dad-bdd8-c3a25e6af4cf" + }, + { + "label": "nanoplot_qc_on_reads_after_preprocessing_nanostats", + "output_name": "nanostats", + "uuid": "42db7f93-919e-4bbb-81a1-06411a9da410" + } + ] + }, + { + "annotation": "Quality Check After Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "out1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 912.1138463352464, + "top": 1306.1819733214459 + }, + "post_job_actions": { + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "fastqc_quality_check_after_preprocessing_html_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + }, + "RenameDatasetActiontext_file": { + "action_arguments": { + "newname": "fastqc_quality_check_after_preprocessing_text_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "text_file" + }, + "TagDatasetActionhtml_file": { + "action_arguments": { + "tags": "FastQC_After_Preprocessing_HTML" + }, + "action_type": "TagDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5ec9f6bceaee", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.74+galaxy0", + "type": "tool", + "uuid": "2862f65a-7df0-4d6a-8aaf-caa677dd8bcf", + "when": null, + "workflow_outputs": [ + { + "label": "fastqc_quality_check_after_preprocessing_text_file", + "output_name": "text_file", + "uuid": "09306471-afa0-4106-9cc7-259b93dfc862" + }, + { + "label": "fastqc_quality_check_after_preprocessing_html_file", + "output_name": "html_file", + "uuid": "084f982f-20f1-457e-8012-91ebbb85633d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped/2.5.2+galaxy2", + "errors": null, + "id": 10, + "input_connections": { + "input_bam": { + "id": 7, + "output_name": "alignment_output" + } + }, + "inputs": [], + "label": null, + "name": "Split BAM by reads mapping status", + "outputs": [ + { + "name": "mapped", + "type": "bam" + }, + { + "name": "unmapped", + "type": "bam" + } + ], + "position": { + "left": 1109.933349609375, + "top": 59.936451298881366 + }, + "post_job_actions": { + "RenameDatasetActionmapped": { + "action_arguments": { + "newname": "host_sequences_bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "mapped" + }, + "RenameDatasetActionunmapped": { + "action_arguments": { + "newname": "non_host_sequences_bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "unmapped" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped/2.5.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "fa7b5520ae53", + "name": "bamtools_split_mapped", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.2+galaxy2", + "type": "tool", + "uuid": "f4882cef-bfad-45ca-8274-d5b6b18fa314", + "when": null, + "workflow_outputs": [ + { + "label": "non_host_sequences_bam", + "output_name": "unmapped", + "uuid": "14a53fe2-f296-43aa-86b7-243278c1050c" + }, + { + "label": "host_sequences_bam", + "output_name": "mapped", + "uuid": "3b1e626f-6bc1-484c-be01-366534361b73" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 9, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2045.9000244140625, + "top": 845.2833251953125 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "total_sequences_before_hosts_sequences_removal" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"Total Sequences\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "fce6adca-1caa-4032-9247-e884fa992348", + "when": null, + "workflow_outputs": [ + { + "label": "total_sequences_before_hosts_sequences_removal", + "output_name": "out_file1", + "uuid": "a809853b-119f-44d2-986b-8d2006439fbe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "mapped" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 1331.5833129882812, + "top": 44.38643298833449 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "fastq.gz" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "host_sequences_fastq" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "66e23b11feae", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_arb_tags\": null, \"copy_tags\": false, \"exclusive_filter\": [\"256\", \"2048\"], \"exclusive_filter_all\": null, \"idxout_cond\": {\"idxout_select\": \"no\", \"__current_case__\": 0}, \"inclusive_filter\": null, \"input\": {\"__class__\": \"ConnectedValue\"}, \"output_fmt_cond\": {\"output_fmt_select\": \"fastqsanger.gz\", \"__current_case__\": 2, \"default_quality\": null, \"output_quality\": false, \"ilumina_casava\": false}, \"outputs\": [\"other\"], \"read_numbering\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.15.1+galaxy2", + "type": "tool", + "uuid": "f79f5480-af0e-42e8-8a66-37dc436fedd9", + "when": null, + "workflow_outputs": [ + { + "label": "host_sequences_fastq", + "output_name": "output", + "uuid": "10d4eaec-81d8-444e-8075-7b77a1fb6870" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 10, + "output_name": "unmapped" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 1427.3131395036098, + "top": 457.02175796752795 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "fastq.gz" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "non_host_sequences_fastq" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "66e23b11feae", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_arb_tags\": null, \"copy_tags\": false, \"exclusive_filter\": [\"256\", \"2048\"], \"exclusive_filter_all\": null, \"idxout_cond\": {\"idxout_select\": \"no\", \"__current_case__\": 0}, \"inclusive_filter\": null, \"input\": {\"__class__\": \"ConnectedValue\"}, \"output_fmt_cond\": {\"output_fmt_select\": \"fastqsanger.gz\", \"__current_case__\": 2, \"default_quality\": null, \"output_quality\": false, \"ilumina_casava\": false}, \"outputs\": [\"other\"], \"read_numbering\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.15.1+galaxy2", + "type": "tool", + "uuid": "520e829b-f118-4655-8c0b-f996d01d67c3", + "when": null, + "workflow_outputs": [ + { + "label": "non_host_sequences_fastq", + "output_name": "output", + "uuid": "0c2dd74d-ac4f-45cf-839c-50386a7ece28" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "single_paired|input_sequences": { + "id": 13, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Kraken2", + "name": "single_paired" + } + ], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1655.9777899859946, + "top": 450.50115044702443 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "kraken2_with_kalamri_database_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "RenameDatasetActionreport_output": { + "action_arguments": { + "newname": "kraken2_with_kalamri_database_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "20e2f64aa1fe", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.0\", \"kraken2_database\": \"kalamari\", \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": true, \"report_minimizer_data\": true}, \"single_paired\": {\"single_paired_selector\": \"no\", \"__current_case__\": 2, \"input_sequences\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "2c6bbcf9-178e-4cc2-8340-385961c4bdb1", + "when": null, + "workflow_outputs": [ + { + "label": "kraken2_with_kalamri_database_output", + "output_name": "output", + "uuid": "203d303e-8f3a-4242-971f-b345842ebdb8" + }, + { + "label": "kraken2_with_kalamri_database_report", + "output_name": "report_output", + "uuid": "843afd4d-23a8-46e7-b945-8b67dd7ae341" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2500.9833374023438, + "top": 850.933349609375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "quality_retained_all_reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "be1b0c09-4ce8-480d-9116-3077c82ea684", + "when": null, + "workflow_outputs": [ + { + "label": "quality_retained_all_reads", + "output_name": "out_file1", + "uuid": "d07be9f1-d250-4008-91ee-59a68521eb56" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "input_file": { + "id": 15, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 1766.433349609375, + "top": 33.419788701225116 + }, + "post_job_actions": { + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "hosts_qc_html" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + }, + "RenameDatasetActiontext_file": { + "action_arguments": { + "newname": "hosts_qc_text_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5ec9f6bceaee", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.74+galaxy0", + "type": "tool", + "uuid": "7140e440-b547-4cae-baa0-89e29a3f2bda", + "when": null, + "workflow_outputs": [ + { + "label": "hosts_qc_text_file", + "output_name": "text_file", + "uuid": "b0ee6e31-0eb1-437d-8c04-fc3640b9a0b7" + }, + { + "label": "hosts_qc_html", + "output_name": "html_file", + "uuid": "b72ff57b-0921-43bf-a817-6cd444c8f3cb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "library|input_1": { + "id": 5, + "output_name": "out1" + }, + "report": { + "id": 16, + "output_name": "report_output" + }, + "results": { + "id": 16, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Krakentools: Extract Kraken Reads By ID", + "name": "library" + } + ], + "label": null, + "name": "Krakentools: Extract Kraken Reads By ID", + "outputs": [ + { + "name": "output_1", + "type": "fasta.gz" + } + ], + "position": { + "left": 1897.4166870117188, + "top": 442.90312610356887 + }, + "post_job_actions": { + "RenameDatasetActionoutput_1": { + "action_arguments": { + "newname": "collection_of_preprocessed_samples" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_1" + }, + "TagDatasetActionoutput_1": { + "action_arguments": { + "tags": "collection_of_preprocessed_samples" + }, + "action_type": "TagDatasetAction", + "output_name": "output_1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "f329328da134", + "name": "krakentools_extract_kraken_reads", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exclude\": true, \"fastq_output\": true, \"include_children\": true, \"include_parents\": true, \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}}, \"max\": \"100000000\", \"report\": {\"__class__\": \"ConnectedValue\"}, \"results\": {\"__class__\": \"ConnectedValue\"}, \"taxid\": \"9031 9606 9913\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2+galaxy1", + "type": "tool", + "uuid": "9d22fc4d-9b85-4f6b-b9df-ac9486de7acd", + "when": null, + "workflow_outputs": [ + { + "label": "collection_of_preprocessed_samples", + "output_name": "output_1", + "uuid": "57e3b725-8e13-40b2-9acc-31fd56ebc80a" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1985.4666748046875, + "top": 32.86977039067824 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "total_sequences_after_hosts_sequences_removal" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"Total Sequences\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "a2a29388-186c-41f3-b9a9-c4a6a9d3ffc3", + "when": null, + "workflow_outputs": [ + { + "label": "total_sequences_after_hosts_sequences_removal", + "output_name": "out_file1", + "uuid": "3ba35c71-32f0-4741-98d4-ea8522e27500" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 22, + "input_connections": { + "input": { + "id": 21, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2434.11669921875, + "top": 40.186451298881366 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "quality_retained_hosts_reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "10bee624-ebbf-4173-9444-ae45062bc401", + "when": null, + "workflow_outputs": [ + { + "label": "quality_retained_hosts_reads", + "output_name": "out_file1", + "uuid": "cef36c68-4549-4fd6-b7c8-71fb21df012f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 25, + "input_connections": { + "input": { + "id": 24, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 3208.8475559627727, + "top": 838.6604815167086 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "removed_hosts_percentage_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "removed_hosts_percentage_tabular" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"#KEY\", \"replacement\": \"key\"}], \"field\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "5f41f84c-e27e-4fb7-8128-42ae7f143965", + "when": null, + "workflow_outputs": [ + { + "label": "removed_hosts_percentage_tabular", + "output_name": "out_file1", + "uuid": "470892ee-dab9-48d7-ad97-45dbd52afaa7" + } + ] + }, + { + "annotation": "Quality Control Before and After Preprocessing\n\n", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 26, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 9, + "output_name": "text_file" + }, + "results_1|software_cond|input": { + "id": 25, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1241.3867206791317, + "top": 975.3576882745778 + }, + "post_job_actions": { + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "multiQC_html_report_after_preprocessing" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "multiQC_stats_after_preprocessing" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "TagDatasetActionhtml_report": { + "action_arguments": { + "tags": "MultiQC_After_Preprocessing_HTML" + }, + "action_type": "TagDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"custom_content\", \"__current_case__\": 32, \"plot_type\": \"table\", \"section_name\": \"Host Sequences Removal\", \"title\": \"Host Sequences\", \"description\": null, \"xlab\": null, \"ylab\": null, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"MultiQC Report After PreProcessing\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "df53a320-802c-459a-a4cb-fd41aac4af92", + "when": null, + "workflow_outputs": [ + { + "label": "multiQC_html_report_after_preprocessing", + "output_name": "html_report", + "uuid": "0b1b5a73-36ee-42a2-a220-1ced6ec7378b" + }, + { + "label": "multiQC_stats_after_preprocessing", + "output_name": "stats", + "uuid": "13cbf6c7-6954-4458-aa66-a5b020c63822" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/nanopore_preprocessing.ga", + "tags": [ + "name:Collection", + "name:microGalaxy", + "name:PathoGFAIR", + "name:Nanopore", + "name:IWC" + ], + "test_results": null, + "tests": true, + "title": "Nanopore Preprocessing", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/nanopore-preprocessing", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/nanopore_preprocessing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/nanopore_preprocessing.html", + "version": 3, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "nanopore-preprocessing", + "workflow": "nanopore_preprocessing.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "__FILTER_FAILED_DATASETS__", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped/2.5.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1087" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Pathogens of all samples report generation and visualization", + "features": { + "comments": true, + "parameters": false, + "report": { + "markdown": "# Pathogen Detection - PathoGFAIR Samples Aggregation and Visualisation workflow Report\nBelow are the results for the PathoGFAIR Samples Aggregation and Visualisation Workflow\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Workflow Inputs\nTabular files and a FASTA file from the Gene based Pathogenic Identification workflow, four other tabular files from Nanopore Preprocessing and Nanopore - Allele bases Pathogen Identification workflow, and an optional Metadata tabular file with more sample information:\n\nFrom Gene based Pathogenic Identification workflow: \n- contigs, FASTA file\n- vfs, Tabular file\n- vfs_of_genes_identified_by_vfdb, Tabular file\n- amrs, Tabular file\n- amr_identified_by_ncbi, Tabular file\n\nFrom Nanopore - Allele bases Pathogen Identification workflow: \n- number_of_variants_per_sample, Tabular file\n- mapping_mean_depth_per_sample, Tabular file\n- mapping_coverage_percentage_per_sample, Tabular file\n\nFrom Nanopore Preprocessing: \n- removed_hosts_percentage_tabular, Tabular file\n\n## Some of the Workflow Outputs\n\n1- All Samples VFs Heatmap\n\n```galaxy\nhistory_dataset_as_image(output=\"heatmap_png\")\n```\n\n2- All samples phylogenetic tree VFs based\n\n```galaxy\nhistory_dataset_as_image(output=\"all_samples_phylogenetic_tree_based_vfs\")\n```\n\n3- All samples Phylogenetic tree AMR based \n\n```galaxy\nhistory_dataset_as_image(output=\"all_samples_phylogenetic_tree_based_amrs\")\n```\n\n4- Barplot for the Number of reads before host sequences removal and Number of found host reads per sample, performed in the Nanopore - Preprocessing workflow\n\n```galaxy\nhistory_dataset_as_image(output=\"number_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig\")\n```\n\n5- Barplot for the total number of removed host sequences per sample\n\n```galaxy\nhistory_dataset_as_image(output=\"removed_host_percentage_fig\")\n```\n \n6- Barplot for the Mapping mean depth per sample\n\n```galaxy\nhistory_dataset_as_image(output=\"mapping_mean_depth_per_sample_fig\")\n```\n\n6- Barplot for the Mapping coverage percentage per sample\n\n```galaxy\nhistory_dataset_as_image(output=\"mapping_coverage_percentage_per_sample_fig\")\n```\n\n7- Barplot for the total number of variants and SNPs identified per sample\n\n```galaxy\nhistory_dataset_as_image(output=\"number_of_Variants_and_SNPs_indentified_fig\")\n```\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\namr_identified_by_ncbi\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nvfs_of_genes_identified_by_vfdb\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmetadata\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nremoved_hosts_percentage_tabular\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmapping_mean_depth_per_sample\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Collection\\namrs\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmapping_coverage_percentage_per_sample\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nnumber_of_variants_per_sample\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncontigs\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nvfs\"]\n 10[label=\"Filter failed datasets\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"Filter failed datasets\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Bar chart\"]\n 3 -> 12 [label=\"output\"]\n k0961166e38b644e393db100d821b0070[color=lightseagreen,label=\"Output\\nnumber_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig\"]\n 12 -> k0961166e38b644e393db100d821b0070\n 13[label=\"Bar chart\"]\n 3 -> 13 [label=\"output\"]\n k548975e5461949fc9e954d7f4d761dfd[color=lightseagreen,label=\"Output\\nremoved_host_percentage_fig\"]\n 13 -> k548975e5461949fc9e954d7f4d761dfd\n 14[label=\"Bar chart\"]\n 4 -> 14 [label=\"output\"]\n ka71ebb6711544f25a62de8fa2b839e2e[color=lightseagreen,label=\"Output\\nmapping_mean_depth_per_sample_fig\"]\n 14 -> ka71ebb6711544f25a62de8fa2b839e2e\n 15[label=\"Filter failed datasets\"]\n 5 -> 15 [label=\"output\"]\n 16[label=\"Bar chart\"]\n 6 -> 16 [label=\"output\"]\n k2567360ed39f431684f577aaf8e8198c[color=lightseagreen,label=\"Output\\nmapping_coverage_percentage_per_sample_fig\"]\n 16 -> k2567360ed39f431684f577aaf8e8198c\n 17[label=\"Bar chart\"]\n 7 -> 17 [label=\"output\"]\n k68c76f06d2ea42809e6fa7b4f1568389[color=lightseagreen,label=\"Output\\nnumber_of_Variants_and_SNPs_indentified_fig\"]\n 17 -> k68c76f06d2ea42809e6fa7b4f1568389\n 18[label=\"Filter failed datasets\"]\n 8 -> 18 [label=\"output\"]\n 19[label=\"Filter failed datasets\"]\n 9 -> 19 [label=\"output\"]\n 20[label=\"Remove beginning\"]\n 10 -> 20 [label=\"output\"]\n 21[label=\"Remove beginning\"]\n 11 -> 21 [label=\"output\"]\n 22[label=\"Remove beginning\"]\n 15 -> 22 [label=\"output\"]\n 23[label=\"Collapse Collection\"]\n 18 -> 23 [label=\"output\"]\n k86910e3957bf4a76ac4c739340fd2387[color=lightseagreen,label=\"Output\\nall_samples_contigs_in_one_fasta_file\"]\n 23 -> k86910e3957bf4a76ac4c739340fd2387\n 24[label=\"Collapse Collection\"]\n 19 -> 24 [label=\"output\"]\n k02b996c6a9124e4eb3ec49601faaa452[color=lightseagreen,label=\"Output\\nall_vfs_in_one_tabular\"]\n 24 -> k02b996c6a9124e4eb3ec49601faaa452\n 25[label=\"Remove beginning\"]\n 19 -> 25 [label=\"output\"]\n 26[label=\"Count\"]\n 20 -> 26 [label=\"out_file1\"]\n 27[label=\"Count\"]\n 21 -> 27 [label=\"out_file1\"]\n 28[label=\"Group\"]\n 21 -> 28 [label=\"out_file1\"]\n 29[label=\"Unique\"]\n 22 -> 29 [label=\"out_file1\"]\n 30[label=\"Split by group\"]\n 24 -> 30 [label=\"output\"]\n k59f8cb09424b47b1b94ba612c2610cab[color=lightseagreen,label=\"Output\\nsplit_by_group_collection\"]\n 30 -> k59f8cb09424b47b1b94ba612c2610cab\n 31[label=\"Unique\"]\n 25 -> 31 [label=\"out_file1\"]\n 32[label=\"Cut\"]\n 26 -> 32 [label=\"out_file1\"]\n 33[label=\"Cut\"]\n 27 -> 33 [label=\"out_file1\"]\n 34[label=\"Filter empty datasets\"]\n 28 -> 34 [label=\"out_file1\"]\n 35[label=\"Cut\"]\n 29 -> 35 [label=\"outfile\"]\n 36[label=\"Cut\"]\n 30 -> 36 [label=\"split_output\"]\n keeb25a51ea214a19a19655d5bd919b10[color=lightseagreen,label=\"Output\\nadjusted_abricate_vfs_tabular_part1\"]\n 36 -> keeb25a51ea214a19a19655d5bd919b10\n 37[label=\"Cut\"]\n 31 -> 37 [label=\"outfile\"]\n 38[label=\"Collapse Collection\"]\n 32 -> 38 [label=\"out_file1\"]\n 39[label=\"Collapse Collection\"]\n 33 -> 39 [label=\"out_file1\"]\n 40[label=\"Column join\"]\n 34 -> 40 [label=\"output\"]\n 41[label=\"bedtools getfasta\"]\n 23 -> 41 [label=\"output\"]\n 35 -> 41 [label=\"out_file1\"]\n 42[label=\"Remove beginning\"]\n 36 -> 42 [label=\"out_file1\"]\n kaaaa444608174e5caa1b9ec384f2a363[color=lightseagreen,label=\"Output\\nadjusted_abricate_vfs_tabular_part2\"]\n 42 -> kaaaa444608174e5caa1b9ec384f2a363\n 43[label=\"bedtools getfasta\"]\n 23 -> 43 [label=\"output\"]\n 37 -> 43 [label=\"out_file1\"]\n 44[label=\"Column Regex Find And Replace\"]\n 38 -> 44 [label=\"output\"]\n k4809c36b31ef46648e4e47f0f72152de[color=lightseagreen,label=\"Output\\namrs_count\"]\n 44 -> k4809c36b31ef46648e4e47f0f72152de\n 45[label=\"Column Regex Find And Replace\"]\n 39 -> 45 [label=\"output\"]\n k87efc81d4d844af3831fdfe033c59f78[color=lightseagreen,label=\"Output\\nvfs_count\"]\n 45 -> k87efc81d4d844af3831fdfe033c59f78\n 46[label=\"Column Regex Find And Replace\"]\n 40 -> 46 [label=\"tabular_output\"]\n kf5c221e300ef48349a5fa94c97fd6764[color=lightseagreen,label=\"Output\\nheatmap_table\"]\n 46 -> kf5c221e300ef48349a5fa94c97fd6764\n 47[label=\"Regex Find And Replace\"]\n 41 -> 47 [label=\"output\"]\n 48[label=\"bedtools getfasta\"]\n 23 -> 48 [label=\"output\"]\n 42 -> 48 [label=\"out_file1\"]\n k82ce210789a3438c95bbdc871b5258b7[color=lightseagreen,label=\"Output\\nfiltered_sequences_with_vfs_fasta\"]\n 48 -> k82ce210789a3438c95bbdc871b5258b7\n 49[label=\"Regex Find And Replace\"]\n 43 -> 49 [label=\"output\"]\n 50[label=\"Multi-Join\"]\n 45 -> 50 [label=\"out_file1\"]\n 44 -> 50 [label=\"out_file1\"]\n 51[label=\"Heatmap w ggplot\"]\n 46 -> 51 [label=\"out_file1\"]\n kc0417c91a5134c6a9a623aac2f1f8e85[color=lightseagreen,label=\"Output\\nheatmap_pdf\"]\n 51 -> kc0417c91a5134c6a9a623aac2f1f8e85\n k97816bc2fd0c4077a7218dd1470879d1[color=lightseagreen,label=\"Output\\nheatmap_png\"]\n 51 -> k97816bc2fd0c4077a7218dd1470879d1\n 52[label=\"Filter empty datasets\"]\n 47 -> 52 [label=\"out_file1\"]\n 53[label=\"ClustalW\"]\n 48 -> 53 [label=\"output\"]\n k9b7bd78cf112480ba7dfc10711af254c[color=lightseagreen,label=\"Output\\nclustalw_on_input_dnd\"]\n 53 -> k9b7bd78cf112480ba7dfc10711af254c\n k6af2032224da403680de37bed2d25848[color=lightseagreen,label=\"Output\\nclustalw_on_input_clustal\"]\n 53 -> k6af2032224da403680de37bed2d25848\n 54[label=\"Filter empty datasets\"]\n 49 -> 54 [label=\"out_file1\"]\n 55[label=\"Replace Text\"]\n 50 -> 55 [label=\"outfile\"]\n k91745da00b8d4a7ab927b36107f17ec5[color=lightseagreen,label=\"Output\\nvfs_amrs_count_table\"]\n 55 -> k91745da00b8d4a7ab927b36107f17ec5\n 56[label=\"FASTA-to-Tabular\"]\n 52 -> 56 [label=\"output\"]\n 57[label=\"Filter empty datasets\"]\n 53 -> 57 [label=\"output\"]\n k32d00c1d68c440698d5d023aabdfadbe[color=lightseagreen,label=\"Output\\nfiltered_empty_datasets\"]\n 57 -> k32d00c1d68c440698d5d023aabdfadbe\n 58[label=\"FASTA-to-Tabular\"]\n 54 -> 58 [label=\"output\"]\n 59[label=\"Cut\"]\n 56 -> 59 [label=\"output\"]\n 60[label=\"FASTTREE\"]\n 57 -> 60 [label=\"output\"]\n kaacdfe45eb0c4f6ea479eeb170774757[color=lightseagreen,label=\"Output\\nfasttree_nhx\"]\n 60 -> kaacdfe45eb0c4f6ea479eeb170774757\n 61[label=\"Cut\"]\n 58 -> 61 [label=\"output\"]\n 62[label=\"Group\"]\n 59 -> 62 [label=\"out_file1\"]\n 63[label=\"Newick Display\"]\n 60 -> 63 [label=\"output\"]\n k0c22178cdc85413780e2f3040b92bd20[color=lightseagreen,label=\"Output\\nnewick_genes_tree_graphs_collection\"]\n 63 -> k0c22178cdc85413780e2f3040b92bd20\n 64[label=\"Group\"]\n 61 -> 64 [label=\"out_file1\"]\n 65[label=\"Tabular-to-FASTA\"]\n 62 -> 65 [label=\"out_file1\"]\n 66[label=\"Tabular-to-FASTA\"]\n 64 -> 66 [label=\"out_file1\"]\n 67[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 65 -> 67 [label=\"output\"]\n 68[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 66 -> 68 [label=\"output\"]\n 69[label=\"ClustalW\"]\n 67 -> 69 [label=\"output\"]\n 70[label=\"ClustalW\"]\n 68 -> 70 [label=\"output\"]\n 71[label=\"FASTTREE\"]\n 69 -> 71 [label=\"output\"]\n 72[label=\"FASTTREE\"]\n 70 -> 72 [label=\"output\"]\n 73[label=\"Newick Display\"]\n 71 -> 73 [label=\"output\"]\n k1f9cb2cf219f48de8058d6d45f3b3158[color=lightseagreen,label=\"Output\\nall_samples_phylogenetic_tree_based_amrs\"]\n 73 -> k1f9cb2cf219f48de8058d6d45f3b3158\n 74[label=\"Newick Display\"]\n 72 -> 74 [label=\"output\"]\n k6bb4b32b7cca4e048120be9f64ccba39[color=lightseagreen,label=\"Output\\nall_samples_phylogenetic_tree_based_vfs\"]\n 74 -> k6bb4b32b7cca4e048120be9f64ccba39\n}", + "history": [ + { + "hash": "cdd93376adc6ce80742881c25d6810bcce85fc05", + "message": "adding tags to some of the workflow outputs, updating the training with the latest PathoGFAIR workflows updates", + "num": 3, + "short_hash": "cdd93376a", + "unix": "1717675229" + }, + { + "hash": "211b69394d6ef4d129eaa18cd76b93c8dece8cf3", + "message": "adding workflow reports to the workflows of the training to match the latest version of the IWC PR", + "num": 2, + "short_hash": "211b69394", + "unix": "1716716727" + }, + { + "hash": "d320748c5c8ea425a77aa03ac78a5956eb75b005", + "message": "Foodborne training update 2024", + "num": 1, + "short_hash": "d320748c5", + "unix": "1716229068" + } + ], + "inputs": [ + { + "annotation": "output_of_abricate_with_amrfinderncbi", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "output_of_abricate_with_amrfinderncbi", + "name": "amr_identified_by_ncbi" + } + ], + "label": "amr_identified_by_ncbi", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 19.98333740234375, + "top": 1006.3443929882739 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "a7f1c4a9-5d07-49df-82cd-1bbcf3fd628f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "output_of_abricate_with_vfdb", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "output_of_abricate_with_vfdb", + "name": "vfs_of_genes_identified_by_vfdb" + } + ], + "label": "vfs_of_genes_identified_by_vfdb", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 34.98484848484827, + "top": 1508.441282170953 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2908a402-5edf-4bcc-a970-1db21c474d09", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "samples_metadata", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "samples_metadata", + "name": "metadata" + } + ], + "label": "metadata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1858.3512218637072, + "top": 209.99121532505262 + }, + "tool_id": null, + "tool_state": "{\"optional\": true, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f4765d9d-b134-4462-bae6-9695c95ae596", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "removed_hosts_percentage_tabular", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "removed_hosts_percentage_tabular", + "name": "removed_hosts_percentage_tabular" + } + ], + "label": "removed_hosts_percentage_tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1853.666381138832, + "top": 289.6725384559728 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e7dccd07-76a8-48a2-8931-67567fb31598", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "mapping_mean_depth_per_sample", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "mapping_mean_depth_per_sample", + "name": "mapping_mean_depth_per_sample" + } + ], + "label": "mapping_mean_depth_per_sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1854.0957915122806, + "top": 419.61832235919906 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c18104cc-35d8-43ed-85e6-15e4f7af0b4d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "amrs", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "amrs", + "name": "amrs" + } + ], + "label": "amrs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 50.9848484848481, + "top": 1934.2745890557185 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "297bede6-bef8-44f1-bcbb-134464821c44", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "mapping_coverage_percentage_per_sample", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "mapping_coverage_percentage_per_sample", + "name": "mapping_coverage_percentage_per_sample" + } + ], + "label": "mapping_coverage_percentage_per_sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1856.926239945225, + "top": 545.6990912189043 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bbf94808-86af-468d-bbdd-6872ddbf6c30", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "number_of_variants_per_sample", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "number_of_variants_per_sample", + "name": "number_of_variants_per_sample" + } + ], + "label": "number_of_variants_per_sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1858.9173115502963, + "top": 671.3113831546217 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "833bedfd-e345-4c8a-8d19-1623faaaf602", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Contigs", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "Contigs", + "name": "contigs" + } + ], + "label": "contigs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 600.9833984375, + "top": 2266.2999877929688 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "ce948faa-f897-47e3-ac8c-0227afdd8203", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "VFs", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "VFs", + "name": "vfs" + } + ], + "label": "vfs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 46.984848484848044, + "top": 2487.3079752861872 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8ff72508-664e-4af1-b0e6-ca2643626295", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\namr_identified_by_ncbi\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nvfs_of_genes_identified_by_vfdb\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nmetadata\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nremoved_hosts_percentage_tabular\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nmapping_mean_depth_per_sample\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Collection\\namrs\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nmapping_coverage_percentage_per_sample\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nnumber_of_variants_per_sample\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Collection\\ncontigs\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Collection\\nvfs\"];\n style 9 stroke:#2c3143,stroke-width:4px;\n 10[\"Filter failed datasets\"];\n 0 -->|output| 10;\n 11[\"Filter failed datasets\"];\n 1 -->|output| 11;\n 12[\"Bar chart\"];\n 3 -->|output| 12;\n 0961166e-38b6-44e3-93db-100d821b0070[\"Output\\nnumber_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig\"];\n 12 --> 0961166e-38b6-44e3-93db-100d821b0070;\n style 0961166e-38b6-44e3-93db-100d821b0070 stroke:#2c3143,stroke-width:4px;\n 13[\"Bar chart\"];\n 3 -->|output| 13;\n 548975e5-4619-49fc-9e95-4d7f4d761dfd[\"Output\\nremoved_host_percentage_fig\"];\n 13 --> 548975e5-4619-49fc-9e95-4d7f4d761dfd;\n style 548975e5-4619-49fc-9e95-4d7f4d761dfd stroke:#2c3143,stroke-width:4px;\n 14[\"Bar chart\"];\n 4 -->|output| 14;\n a71ebb67-1154-4f25-a62d-e8fa2b839e2e[\"Output\\nmapping_mean_depth_per_sample_fig\"];\n 14 --> a71ebb67-1154-4f25-a62d-e8fa2b839e2e;\n style a71ebb67-1154-4f25-a62d-e8fa2b839e2e stroke:#2c3143,stroke-width:4px;\n 15[\"Filter failed datasets\"];\n 5 -->|output| 15;\n 16[\"Bar chart\"];\n 6 -->|output| 16;\n 2567360e-d39f-4316-84f5-77aaf8e8198c[\"Output\\nmapping_coverage_percentage_per_sample_fig\"];\n 16 --> 2567360e-d39f-4316-84f5-77aaf8e8198c;\n style 2567360e-d39f-4316-84f5-77aaf8e8198c stroke:#2c3143,stroke-width:4px;\n 17[\"Bar chart\"];\n 7 -->|output| 17;\n 68c76f06-d2ea-4280-9e6f-a7b4f1568389[\"Output\\nnumber_of_Variants_and_SNPs_indentified_fig\"];\n 17 --> 68c76f06-d2ea-4280-9e6f-a7b4f1568389;\n style 68c76f06-d2ea-4280-9e6f-a7b4f1568389 stroke:#2c3143,stroke-width:4px;\n 18[\"Filter failed datasets\"];\n 8 -->|output| 18;\n 19[\"Filter failed datasets\"];\n 9 -->|output| 19;\n 20[\"Remove beginning\"];\n 10 -->|output| 20;\n 21[\"Remove beginning\"];\n 11 -->|output| 21;\n 22[\"Remove beginning\"];\n 15 -->|output| 22;\n 23[\"Collapse Collection\"];\n 18 -->|output| 23;\n 86910e39-57bf-4a76-ac4c-739340fd2387[\"Output\\nall_samples_contigs_in_one_fasta_file\"];\n 23 --> 86910e39-57bf-4a76-ac4c-739340fd2387;\n style 86910e39-57bf-4a76-ac4c-739340fd2387 stroke:#2c3143,stroke-width:4px;\n 24[\"Collapse Collection\"];\n 19 -->|output| 24;\n 02b996c6-a912-4e4e-b3ec-49601faaa452[\"Output\\nall_vfs_in_one_tabular\"];\n 24 --> 02b996c6-a912-4e4e-b3ec-49601faaa452;\n style 02b996c6-a912-4e4e-b3ec-49601faaa452 stroke:#2c3143,stroke-width:4px;\n 25[\"Remove beginning\"];\n 19 -->|output| 25;\n 26[\"Count\"];\n 20 -->|out_file1| 26;\n 27[\"Count\"];\n 21 -->|out_file1| 27;\n 28[\"Group\"];\n 21 -->|out_file1| 28;\n 29[\"Unique\"];\n 22 -->|out_file1| 29;\n 30[\"Split by group\"];\n 24 -->|output| 30;\n 59f8cb09-424b-47b1-b94b-a612c2610cab[\"Output\\nsplit_by_group_collection\"];\n 30 --> 59f8cb09-424b-47b1-b94b-a612c2610cab;\n style 59f8cb09-424b-47b1-b94b-a612c2610cab stroke:#2c3143,stroke-width:4px;\n 31[\"Unique\"];\n 25 -->|out_file1| 31;\n 32[\"Cut\"];\n 26 -->|out_file1| 32;\n 33[\"Cut\"];\n 27 -->|out_file1| 33;\n 34[\"Filter empty datasets\"];\n 28 -->|out_file1| 34;\n 35[\"Cut\"];\n 29 -->|outfile| 35;\n 36[\"Cut\"];\n 30 -->|split_output| 36;\n eeb25a51-ea21-4a19-a196-55d5bd919b10[\"Output\\nadjusted_abricate_vfs_tabular_part1\"];\n 36 --> eeb25a51-ea21-4a19-a196-55d5bd919b10;\n style eeb25a51-ea21-4a19-a196-55d5bd919b10 stroke:#2c3143,stroke-width:4px;\n 37[\"Cut\"];\n 31 -->|outfile| 37;\n 38[\"Collapse Collection\"];\n 32 -->|out_file1| 38;\n 39[\"Collapse Collection\"];\n 33 -->|out_file1| 39;\n 40[\"Column join\"];\n 34 -->|output| 40;\n 41[\"bedtools getfasta\"];\n 23 -->|output| 41;\n 35 -->|out_file1| 41;\n 42[\"Remove beginning\"];\n 36 -->|out_file1| 42;\n aaaa4446-0817-4e5c-aa1b-9ec384f2a363[\"Output\\nadjusted_abricate_vfs_tabular_part2\"];\n 42 --> aaaa4446-0817-4e5c-aa1b-9ec384f2a363;\n style aaaa4446-0817-4e5c-aa1b-9ec384f2a363 stroke:#2c3143,stroke-width:4px;\n 43[\"bedtools getfasta\"];\n 23 -->|output| 43;\n 37 -->|out_file1| 43;\n 44[\"Column Regex Find And Replace\"];\n 38 -->|output| 44;\n 4809c36b-31ef-4664-8e4e-47f0f72152de[\"Output\\namrs_count\"];\n 44 --> 4809c36b-31ef-4664-8e4e-47f0f72152de;\n style 4809c36b-31ef-4664-8e4e-47f0f72152de stroke:#2c3143,stroke-width:4px;\n 45[\"Column Regex Find And Replace\"];\n 39 -->|output| 45;\n 87efc81d-4d84-4af3-831f-dfe033c59f78[\"Output\\nvfs_count\"];\n 45 --> 87efc81d-4d84-4af3-831f-dfe033c59f78;\n style 87efc81d-4d84-4af3-831f-dfe033c59f78 stroke:#2c3143,stroke-width:4px;\n 46[\"Column Regex Find And Replace\"];\n 40 -->|tabular_output| 46;\n f5c221e3-00ef-4834-9a5f-a94c97fd6764[\"Output\\nheatmap_table\"];\n 46 --> f5c221e3-00ef-4834-9a5f-a94c97fd6764;\n style f5c221e3-00ef-4834-9a5f-a94c97fd6764 stroke:#2c3143,stroke-width:4px;\n 47[\"Regex Find And Replace\"];\n 41 -->|output| 47;\n 48[\"bedtools getfasta\"];\n 23 -->|output| 48;\n 42 -->|out_file1| 48;\n 82ce2107-89a3-438c-95bb-dc871b5258b7[\"Output\\nfiltered_sequences_with_vfs_fasta\"];\n 48 --> 82ce2107-89a3-438c-95bb-dc871b5258b7;\n style 82ce2107-89a3-438c-95bb-dc871b5258b7 stroke:#2c3143,stroke-width:4px;\n 49[\"Regex Find And Replace\"];\n 43 -->|output| 49;\n 50[\"Multi-Join\"];\n 45 -->|out_file1| 50;\n 44 -->|out_file1| 50;\n 51[\"Heatmap w ggplot\"];\n 46 -->|out_file1| 51;\n c0417c91-a513-4c6a-9a62-3aac2f1f8e85[\"Output\\nheatmap_pdf\"];\n 51 --> c0417c91-a513-4c6a-9a62-3aac2f1f8e85;\n style c0417c91-a513-4c6a-9a62-3aac2f1f8e85 stroke:#2c3143,stroke-width:4px;\n 97816bc2-fd0c-4077-a721-8dd1470879d1[\"Output\\nheatmap_png\"];\n 51 --> 97816bc2-fd0c-4077-a721-8dd1470879d1;\n style 97816bc2-fd0c-4077-a721-8dd1470879d1 stroke:#2c3143,stroke-width:4px;\n 52[\"Filter empty datasets\"];\n 47 -->|out_file1| 52;\n 53[\"ClustalW\"];\n 48 -->|output| 53;\n 9b7bd78c-f112-480b-a7df-c10711af254c[\"Output\\nclustalw_on_input_dnd\"];\n 53 --> 9b7bd78c-f112-480b-a7df-c10711af254c;\n style 9b7bd78c-f112-480b-a7df-c10711af254c stroke:#2c3143,stroke-width:4px;\n 6af20322-24da-4036-80de-37bed2d25848[\"Output\\nclustalw_on_input_clustal\"];\n 53 --> 6af20322-24da-4036-80de-37bed2d25848;\n style 6af20322-24da-4036-80de-37bed2d25848 stroke:#2c3143,stroke-width:4px;\n 54[\"Filter empty datasets\"];\n 49 -->|out_file1| 54;\n 55[\"Replace Text\"];\n 50 -->|outfile| 55;\n 91745da0-0b8d-4a7a-b927-b36107f17ec5[\"Output\\nvfs_amrs_count_table\"];\n 55 --> 91745da0-0b8d-4a7a-b927-b36107f17ec5;\n style 91745da0-0b8d-4a7a-b927-b36107f17ec5 stroke:#2c3143,stroke-width:4px;\n 56[\"FASTA-to-Tabular\"];\n 52 -->|output| 56;\n 57[\"Filter empty datasets\"];\n 53 -->|output| 57;\n 32d00c1d-68c4-4069-8d5d-023aabdfadbe[\"Output\\nfiltered_empty_datasets\"];\n 57 --> 32d00c1d-68c4-4069-8d5d-023aabdfadbe;\n style 32d00c1d-68c4-4069-8d5d-023aabdfadbe stroke:#2c3143,stroke-width:4px;\n 58[\"FASTA-to-Tabular\"];\n 54 -->|output| 58;\n 59[\"Cut\"];\n 56 -->|output| 59;\n 60[\"FASTTREE\"];\n 57 -->|output| 60;\n aacdfe45-eb0c-4f6e-a479-eeb170774757[\"Output\\nfasttree_nhx\"];\n 60 --> aacdfe45-eb0c-4f6e-a479-eeb170774757;\n style aacdfe45-eb0c-4f6e-a479-eeb170774757 stroke:#2c3143,stroke-width:4px;\n 61[\"Cut\"];\n 58 -->|output| 61;\n 62[\"Group\"];\n 59 -->|out_file1| 62;\n 63[\"Newick Display\"];\n 60 -->|output| 63;\n 0c22178c-dc85-4137-80e2-f3040b92bd20[\"Output\\nnewick_genes_tree_graphs_collection\"];\n 63 --> 0c22178c-dc85-4137-80e2-f3040b92bd20;\n style 0c22178c-dc85-4137-80e2-f3040b92bd20 stroke:#2c3143,stroke-width:4px;\n 64[\"Group\"];\n 61 -->|out_file1| 64;\n 65[\"Tabular-to-FASTA\"];\n 62 -->|out_file1| 65;\n 66[\"Tabular-to-FASTA\"];\n 64 -->|out_file1| 66;\n 67[\"FASTA Merge Files and Filter Unique Sequences\"];\n 65 -->|output| 67;\n 68[\"FASTA Merge Files and Filter Unique Sequences\"];\n 66 -->|output| 68;\n 69[\"ClustalW\"];\n 67 -->|output| 69;\n 70[\"ClustalW\"];\n 68 -->|output| 70;\n 71[\"FASTTREE\"];\n 69 -->|output| 71;\n 72[\"FASTTREE\"];\n 70 -->|output| 72;\n 73[\"Newick Display\"];\n 71 -->|output| 73;\n 1f9cb2cf-219f-48de-8058-d6d45f3b3158[\"Output\\nall_samples_phylogenetic_tree_based_amrs\"];\n 73 --> 1f9cb2cf-219f-48de-8058-d6d45f3b3158;\n style 1f9cb2cf-219f-48de-8058-d6d45f3b3158 stroke:#2c3143,stroke-width:4px;\n 74[\"Newick Display\"];\n 72 -->|output| 74;\n 6bb4b32b-7cca-4e04-8120-be9f64ccba39[\"Output\\nall_samples_phylogenetic_tree_based_vfs\"];\n 74 --> 6bb4b32b-7cca-4e04-8120-be9f64ccba39;\n style 6bb4b32b-7cca-4e04-8120-be9f64ccba39 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Pathogen Detection PathoGFAIR Samples Aggregation and Visualisation", + "outputs": [ + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2210.9833374023438, + "top": 53.05000305175781 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "number_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "number_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"2\", \"3\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"Number of Reads Before Host Removal and Number of Found Host Reads\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Number of Reads\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "444ec0b5-dde4-4ac6-b816-72344bf3bd6f", + "when": null, + "workflow_outputs": [ + { + "label": "number_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig", + "output_name": "out_file1", + "uuid": "0961166e-38b6-44e3-93db-100d821b0070" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2210.9833374023438, + "top": 255.23333740234375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "removed_host_percentage_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "removed_host_percentage_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"4\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"removed_host_percentage\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Percentage of removed hosts\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "0092751d-73a0-413f-9260-d00a7e8916c8", + "when": null, + "workflow_outputs": [ + { + "label": "removed_host_percentage_fig", + "output_name": "out_file1", + "uuid": "548975e5-4619-49fc-9e95-4d7f4d761dfd" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2208.9833374023438, + "top": 416.23333740234375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "mapping_mean_depth_per_sample_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "mapping_mean_depth_per_sample_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"2\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"mapping_mean_depth_per_sample\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Mapping Mean Depth\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "f819d1dc-8621-4eb0-bf5e-b52021a57af2", + "when": null, + "workflow_outputs": [ + { + "label": "mapping_mean_depth_per_sample_fig", + "output_name": "out_file1", + "uuid": "a71ebb67-1154-4f25-a62d-e8fa2b839e2e" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2207.9833374023438, + "top": 586 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "mapping_coverage_percentage_per_sample_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "mapping_coverage_percentage_per_sample_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"2\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"mapping_coverage_percentage_per_sample\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Mapping Coverage Percentage\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "25b26cda-14a2-44c7-8162-5d8ff9dc30f3", + "when": null, + "workflow_outputs": [ + { + "label": "mapping_coverage_percentage_per_sample_fig", + "output_name": "out_file1", + "uuid": "2567360e-d39f-4316-84f5-77aaf8e8198c" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2206.8499755859375, + "top": 779.0499877929688 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "number_of_Variants_and_SNPs_indentified_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "number_of_Variants_and_SNPs_indentified_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"2\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"number_of_Variants_and_SNPs_indentified_fig\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Number of Variants and SNPs\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "090d65eb-8299-4e39-a2b0-a5dbdbd6a67b", + "when": null, + "workflow_outputs": [ + { + "label": "number_of_Variants_and_SNPs_indentified_fig", + "output_name": "out_file1", + "uuid": "68c76f06-d2ea-4280-9e6f-a7b4f1568389" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 23, + "input_connections": { + "input_list": { + "id": 18, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1166.984848484848, + "top": 2235.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "all_samples_contigs_in_one_fasta_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": false, \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "fb9327fe-11d1-4e20-95e9-3630958f9aed", + "when": null, + "workflow_outputs": [ + { + "label": "all_samples_contigs_in_one_fasta_file", + "output_name": "output", + "uuid": "86910e39-57bf-4a76-ac4c-739340fd2387" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 24, + "input_connections": { + "input_list": { + "id": 19, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 606.984848484848, + "top": 2441.3079752861872 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "all_vfs_in_one_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": false, \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "29c0dd1a-0cc1-45c2-b9ac-4787d5c6d003", + "when": null, + "workflow_outputs": [ + { + "label": "all_vfs_in_one_tabular", + "output_name": "output", + "uuid": "02b996c6-a912-4e4e-b3ec-49601faaa452" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.6", + "errors": null, + "id": 30, + "input_connections": { + "infile": { + "id": 24, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Split by group", + "outputs": [ + { + "name": "split_output", + "type": "input" + } + ], + "position": { + "left": 886.984848484848, + "top": 2441.3079752861872 + }, + "post_job_actions": { + "RenameDatasetActionsplit_output": { + "action_arguments": { + "newname": "split_by_group_collection" + }, + "action_type": "RenameDatasetAction", + "output_name": "split_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.6", + "tool_shed_repository": { + "changeset_revision": "ff2a81aa3f08", + "name": "split_file_on_column", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column\": \"13\", \"include_header\": true, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.6", + "type": "tool", + "uuid": "eabf505c-a46f-4180-86c5-60c096f78b35", + "when": null, + "workflow_outputs": [ + { + "label": "split_by_group_collection", + "output_name": "split_output", + "uuid": "59f8cb09-424b-47b1-b94b-a612c2610cab" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 36, + "input_connections": { + "input": { + "id": 30, + "output_name": "split_output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1166.984848484848, + "top": 2451.3079752861872 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "adjusted_abricate_vfs_tabular_part1" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c2,c3,c4\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "f69bdaed-4620-4ac1-9ca5-8e5f6d1ac3f9", + "when": null, + "workflow_outputs": [ + { + "label": "adjusted_abricate_vfs_tabular_part1", + "output_name": "out_file1", + "uuid": "eeb25a51-ea21-4a19-a196-55d5bd919b10" + } + ] + }, + { + "annotation": "", + "content_id": "Remove beginning1", + "errors": null, + "id": 42, + "input_connections": { + "input": { + "id": 36, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Remove beginning", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1456.984848484848, + "top": 2385.307975286187 + }, + "post_job_actions": { + "ChangeDatatypeActionout_file1": { + "action_arguments": { + "newtype": "bed" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "out_file1" + }, + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "adjusted_abricate_vfs_tabular_part2" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Remove beginning1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"num_lines\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "3eab5012-f658-4d5b-9919-83621281470c", + "when": null, + "workflow_outputs": [ + { + "label": "adjusted_abricate_vfs_tabular_part2", + "output_name": "out_file1", + "uuid": "aaaa4446-0817-4e5c-aa1b-9ec384f2a363" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 44, + "input_connections": { + "input": { + "id": 38, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1387.63330078125, + "top": 1013.3521487012002 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "amrs_count" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^$\", \"replacement\": \"0\"}], \"field\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "a8a0cf10-6f23-436b-b7ee-28cd8f7eee61", + "when": null, + "workflow_outputs": [ + { + "label": "amrs_count", + "output_name": "out_file1", + "uuid": "4809c36b-31ef-4664-8e4e-47f0f72152de" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 45, + "input_connections": { + "input": { + "id": 39, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1500.5544233842322, + "top": 1250.695397400772 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "vfs_count" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^$\", \"replacement\": \"0\"}], \"field\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "8557f83f-3010-4d1d-976f-d0552086f06b", + "when": null, + "workflow_outputs": [ + { + "label": "vfs_count", + "output_name": "out_file1", + "uuid": "87efc81d-4d84-4af3-831f-dfe033c59f78" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 46, + "input_connections": { + "input": { + "id": 40, + "output_name": "tabular_output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1434.9848484848483, + "top": 1502.441282170953 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "heatmap_table" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"#KEY\", \"replacement\": \"key\"}], \"field\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "ea2bfbb1-3cfb-4a10-9443-d83ee964271f", + "when": null, + "workflow_outputs": [ + { + "label": "heatmap_table", + "output_name": "out_file1", + "uuid": "f5c221e3-00ef-4834-9a5f-a94c97fd6764" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed/2.30.0+galaxy1", + "errors": null, + "id": 48, + "input_connections": { + "fasta_source|fasta": { + "id": 23, + "output_name": "output" + }, + "input": { + "id": 42, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bedtools getfasta", + "name": "fasta_source" + } + ], + "label": null, + "name": "bedtools getfasta", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 1736.984848484848, + "top": 2276.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "filtered_sequences_with_vfs_fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed/2.30.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a1a923cd89e8", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fasta_source\": {\"fasta_source_selector\": \"history\", \"__current_case__\": 0, \"fasta\": {\"__class__\": \"ConnectedValue\"}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": false, \"nameOnly\": false, \"split\": false, \"strand\": false, \"tab\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.30.0+galaxy1", + "type": "tool", + "uuid": "7283594d-0455-4f60-98f5-d9c315e28ee4", + "when": null, + "workflow_outputs": [ + { + "label": "filtered_sequences_with_vfs_fasta", + "output_name": "output", + "uuid": "82ce2107-89a3-438c-95bb-dc871b5258b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap/ggplot2_heatmap/3.4.0+galaxy0", + "errors": null, + "id": 51, + "input_connections": { + "input1": { + "id": 46, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Heatmap w ggplot", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "left": 1680.9666748046875, + "top": 1471.433349609375 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "heatmap_png" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + }, + "RenameDatasetActionoutput2": { + "action_arguments": { + "newname": "heatmap_pdf" + }, + "action_type": "RenameDatasetAction", + "output_name": "output2" + }, + "TagDatasetActionoutput1": { + "action_arguments": { + "tags": "vfs_heatmap_png" + }, + "action_type": "TagDatasetAction", + "output_name": "output1" + }, + "TagDatasetActionoutput2": { + "action_arguments": { + "tags": "vfs_heatmap_pdf" + }, + "action_type": "TagDatasetAction", + "output_name": "output2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap/ggplot2_heatmap/3.4.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "10515715c940", + "name": "ggplot2_heatmap", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"transform\": \"none\", \"cluster\": true, \"colorscheme\": \"whrd\"}, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"inputdata\": {\"input_type\": \"with_header_rownames\", \"__current_case__\": 2, \"header\": \"TRUE\", \"row_names_index\": \"1\", \"sample_name_orientation\": \"FALSE\"}, \"out\": {\"unit_output_dim\": \"cm\", \"width_output_dim\": \"70.0\", \"height_output_dim\": \"70.0\", \"dpi_output_dim\": \"1000.0\", \"additional_output_format\": \"pdf\"}, \"title\": \"Pathogeneic Genes Per Samples\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.4.0+galaxy0", + "type": "tool", + "uuid": "14c05908-0f84-44a6-bc2e-1c4cd9d73fae", + "when": null, + "workflow_outputs": [ + { + "label": "heatmap_pdf", + "output_name": "output2", + "uuid": "c0417c91-a513-4c6a-9a62-3aac2f1f8e85" + }, + { + "label": "heatmap_png", + "output_name": "output1", + "uuid": "97816bc2-fd0c-4077-a721-8dd1470879d1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1", + "errors": null, + "id": 53, + "input_connections": { + "input": { + "id": 48, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "ClustalW", + "outputs": [ + { + "name": "output", + "type": "clustal" + }, + { + "name": "dnd", + "type": "nhx" + } + ], + "position": { + "left": 2016.984848484848, + "top": 2321.307975286187 + }, + "post_job_actions": { + "RenameDatasetActiondnd": { + "action_arguments": { + "newname": "clustalw_on_input_dnd" + }, + "action_type": "RenameDatasetAction", + "output_name": "dnd" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "clustalw_on_input_clustal" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "5b097fde95dd", + "name": "clustalw", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"out_order\": \"ALIGNED\", \"outcontrol\": {\"outform\": \"fasta\", \"__current_case__\": 0}, \"range\": {\"mode\": \"complete\", \"__current_case__\": 0}, \"tree_calculation\": {\"OUTPUTTREE\": \"PHYLIP\", \"KIMURA\": false, \"TOSSGAPS\": false}, \"type_conditional\": {\"dnarna\": \"DNA\", \"__current_case__\": 0, \"algorithm_conditional\": {\"selector\": \"\", \"__current_case__\": 0, \"slow_pairwise_alignments\": {\"PWDNAMATRIX\": \"IUB\", \"PWGAPOPEN\": null, \"PWGAPEXT\": null}}, \"multiple_alignments\": {\"DNAMATRIX\": \"IUB\", \"GAPOPEN\": null, \"GAPEXT\": null, \"ENDGAPS\": false, \"GAPDIST\": null, \"NOPGAP\": false, \"NOHGAP\": false, \"MAXDIV\": null, \"NEGATIVE\": false, \"TRANSWEIGHT\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1+galaxy1", + "type": "tool", + "uuid": "7904af41-77da-4959-adae-01a374d16af6", + "when": null, + "workflow_outputs": [ + { + "label": "clustalw_on_input_dnd", + "output_name": "dnd", + "uuid": "9b7bd78c-f112-480b-a7df-c10711af254c" + }, + { + "label": "clustalw_on_input_clustal", + "output_name": "output", + "uuid": "6af20322-24da-4036-80de-37bed2d25848" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "errors": null, + "id": 55, + "input_connections": { + "infile": { + "id": 50, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 1827.9212446732947, + "top": 1238.4953241585845 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "vfs_amrs_count_table" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "vfs_amrs_count_table" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fbf99087e067", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"column\": \"2\", \"find_pattern\": \".*V2\", \"replace_pattern\": \"AMRs count\"}, {\"__index__\": 1, \"column\": \"3\", \"find_pattern\": \".*V2\", \"replace_pattern\": \"VFs count\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "9.3+galaxy1", + "type": "tool", + "uuid": "9c858c45-8750-4738-8d6c-7fd8b2fcb94b", + "when": null, + "workflow_outputs": [ + { + "label": "vfs_amrs_count_table", + "output_name": "outfile", + "uuid": "91745da0-0b8d-4a7a-b927-b36107f17ec5" + } + ] + }, + { + "annotation": "", + "content_id": "__FILTER_EMPTY_DATASETS__", + "errors": null, + "id": 57, + "input_connections": { + "input": { + "id": 53, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter empty datasets", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 2296.984848484848, + "top": 2337.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "filtered_empty_datasets" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "__FILTER_EMPTY_DATASETS__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "5a0c3914-d149-4ccd-82fe-5065f9eb8995", + "when": null, + "workflow_outputs": [ + { + "label": "filtered_empty_datasets", + "output_name": "output", + "uuid": "32d00c1d-68c4-4069-8d5d-023aabdfadbe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "errors": null, + "id": 60, + "input_connections": { + "input_selector|input": { + "id": 57, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FASTTREE", + "name": "input_selector" + } + ], + "label": null, + "name": "FASTTREE", + "outputs": [ + { + "name": "output", + "type": "nhx" + } + ], + "position": { + "left": 2576.984848484848, + "top": 2357.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "fasttree_nhx" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e005e659ae21", + "name": "fasttree", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_selector\": {\"maximize\": \"min\", \"__current_case__\": 0}, \"input_selector\": {\"select_format\": \"fasta\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"quote\": false, \"intree_selector\": {\"intree_format\": \"none\", \"__current_case__\": 0}}, \"model_selector\": {\"format\": \"-nt\", \"__current_case__\": 0, \"model\": \"-gtr\"}, \"save_logfile\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.10+galaxy1", + "type": "tool", + "uuid": "4faa1735-bea7-4e71-9961-9928bbba13d3", + "when": null, + "workflow_outputs": [ + { + "label": "fasttree_nhx", + "output_name": "output", + "uuid": "aacdfe45-eb0c-4f6e-a479-eeb170774757" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "errors": null, + "id": 63, + "input_connections": { + "fileNewick": { + "id": 60, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Newick Display", + "outputs": [ + { + "name": "output", + "type": "svg" + } + ], + "position": { + "left": 2856.984848484848, + "top": 2366.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "newick_genes_tree_graphs_collection" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "vfs_newick_genes_tree_graphs_collection" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b4163d2f64ab", + "name": "newick_utils", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"condbranchlength\": {\"branchlength\": \"false\", \"__current_case__\": 1}, \"condbranchsupport\": {\"branchsupport\": \"false\", \"__current_case__\": 1}, \"fileNewick\": {\"__class__\": \"ConnectedValue\"}, \"leafFont\": \"sans-serif\", \"leafSize\": \"10px\", \"legend\": \"\", \"outformat\": \"svg\", \"radial\": false, \"scalebar\": true, \"width\": \"2000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6+galaxy1", + "type": "tool", + "uuid": "29e9c814-e0e6-4e1b-ab29-3e9aa2110eac", + "when": null, + "workflow_outputs": [ + { + "label": "newick_genes_tree_graphs_collection", + "output_name": "output", + "uuid": "0c22178c-dc85-4137-80e2-f3040b92bd20" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "errors": null, + "id": 73, + "input_connections": { + "fileNewick": { + "id": 71, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Newick Display", + "outputs": [ + { + "name": "output", + "type": "svg" + } + ], + "position": { + "left": 3976.9833374023438, + "top": 1943.2666625976562 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "all_samples_phylogenetic_tree_based_amrs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "all_samples_phylogenetic_tree_based_amrs" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b4163d2f64ab", + "name": "newick_utils", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"condbranchlength\": {\"branchlength\": \"false\", \"__current_case__\": 1}, \"condbranchsupport\": {\"branchsupport\": \"false\", \"__current_case__\": 1}, \"fileNewick\": {\"__class__\": \"ConnectedValue\"}, \"leafFont\": \"sans-serif\", \"leafSize\": \"10px\", \"legend\": \"\", \"outformat\": \"svg\", \"radial\": false, \"scalebar\": true, \"width\": \"2000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6+galaxy1", + "type": "tool", + "uuid": "da6052c7-ec6e-4105-96d6-4c3d1204eb99", + "when": null, + "workflow_outputs": [ + { + "label": "all_samples_phylogenetic_tree_based_amrs", + "output_name": "output", + "uuid": "1f9cb2cf-219f-48de-8058-d6d45f3b3158" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "errors": null, + "id": 74, + "input_connections": { + "fileNewick": { + "id": 72, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Newick Display", + "outputs": [ + { + "name": "output", + "type": "svg" + } + ], + "position": { + "left": 3972.9833374023438, + "top": 2573.2999877929688 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "all_samples_phylogenetic_tree_based_vfs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "all_samples_phylogenetic_tree_based_vfs" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b4163d2f64ab", + "name": "newick_utils", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"condbranchlength\": {\"branchlength\": \"false\", \"__current_case__\": 1}, \"condbranchsupport\": {\"branchsupport\": \"false\", \"__current_case__\": 1}, \"fileNewick\": {\"__class__\": \"ConnectedValue\"}, \"leafFont\": \"sans-serif\", \"leafSize\": \"10px\", \"legend\": \"\", \"outformat\": \"svg\", \"radial\": false, \"scalebar\": true, \"width\": \"2000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6+galaxy1", + "type": "tool", + "uuid": "8af67049-73c6-4121-a6b0-daa8db404a24", + "when": null, + "workflow_outputs": [ + { + "label": "all_samples_phylogenetic_tree_based_vfs", + "output_name": "output", + "uuid": "6bb4b32b-7cca-4e04-8120-be9f64ccba39" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.ga", + "tags": [ + "name:Collection", + "name:microGalaxy", + "name:PathoGFAIR", + "name:IWC" + ], + "test_results": null, + "tests": false, + "title": "Pathogen Detection PathoGFAIR Samples Aggregation and Visualisation", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/pathogen-detection-pathogfair-samples-aggrtion-and-visualisation", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.html", + "version": 2, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "pathogen-detection-pathogfair-samples-aggrtion-and-visualisation", + "workflow": "pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.ga", + "workflow_tools": [ + "Count1", + "Cut1", + "Grouping1", + "Remove beginning1", + "__FILTER_EMPTY_DATASETS__", + "__FILTER_FAILED_DATASETS__", + "barchart_gnuplot", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.6", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_multijoin_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap/ggplot2_heatmap/3.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1077" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Microbiome - Taxonomy Profiling", + "features": { + "comments": true, + "parameters": true, + "report": { + "markdown": "# Taxonomy Profiling and Visualisation with Krona Workflow Report\n\nIn this workflow you can identify your microbial community, but identifying all possible Taxon found in your samples, from the kingdom level down to the species level. In the application of the pathogen detection, this workflow gives an overview of the possible bacterial found in samples and what might be a possible suspect for pathogenicity.\n\nThe workflow uses Kraken2 tool and allow the user to choose any Kraken2 database or other added ones depending on the user application or the input samples. All Kraken2 tool databases are available in Galaxy. More description about these databases can be found [here](https://benlangmead.github.io/aws-indexes/k2). Other databases can be also added to the tool, just contact us anytime for that. We recommend using StandardPF database.\n\nVisualization is done using Krona Pie Chart, and you can replace it with any other tool. e.g. Phinch interactive tool, which is also available in Galaxy\n\n## Workflow Inputs:\n\nThe per-processing workflow main output (Collection of all samples reads after quality retaining and hosts filtering)\n\n## Workflow Outputs are:\n\n### Taxonomy Tabular Report\n\nThe report shows the abundance of every taxon from the kingdom level down to the species level\n\n```galaxy\nhistory_dataset_display(output=\"converted_kraken_report\")\n```\n\n### Taxonomy Profiling Visualization with Krona\nAn interactive Pie chart showing the different identified taxons along with their percentages, which is one of the ways to visualize the previous taxonomy tabular\n\n```galaxy\nhistory_dataset_as_image(output=\"krona_pie_chart\")\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nkraken_database\"]\n 2[label=\"Kraken2\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n k26f9041fd8a44f648a53404d5c7e2f61[color=lightseagreen,label=\"Output\\nkraken2_with_pluspf_database_output\"]\n 2 -> k26f9041fd8a44f648a53404d5c7e2f61\n kf2ddd05b66a04cea9da6ed107eecbe1b[color=lightseagreen,label=\"Output\\nkraken2_with_pluspf_database_output_report\"]\n 2 -> kf2ddd05b66a04cea9da6ed107eecbe1b\n 3[label=\"Krakentools: Convert kraken report file\"]\n 2 -> 3 [label=\"report_output\"]\n kc490ab8d1b1d4914aa51a62a967a4018[color=lightseagreen,label=\"Output\\nconverted_kraken_report\"]\n 3 -> kc490ab8d1b1d4914aa51a62a967a4018\n 4[label=\"Krona pie chart\"]\n 3 -> 4 [label=\"output\"]\n kdcc857c6f5794c7484ecbb6ce3794a56[color=lightseagreen,label=\"Output\\nkrona_pie_chart\"]\n 4 -> kdcc857c6f5794c7484ecbb6ce3794a56\n}", + "history": [ + { + "hash": "cdd93376adc6ce80742881c25d6810bcce85fc05", + "message": "adding tags to some of the workflow outputs, updating the training with the latest PathoGFAIR workflows updates", + "num": 2, + "short_hash": "cdd93376a", + "unix": "1717675229" + }, + { + "hash": "c63ce23c7a7a631f1256b8e733defce3ca4e009b", + "message": "updating workflows file names", + "num": 1, + "short_hash": "c63ce23c7", + "unix": "1716726587" + } + ], + "inputs": [ + { + "annotation": "Output collection from the Nanopore Preprocessing workflow", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Output collection from the Nanopore Preprocessing workflow", + "name": "collection_of_preprocessed_samples" + } + ], + "label": "collection_of_preprocessed_samples", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c4a14ff1-1f0c-4cb5-aefe-b56f0a84404e", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "kraken_database_for_user_to_choose", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "kraken_database_for_user_to_choose", + "name": "kraken_database" + } + ], + "label": "kraken_database", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 24.79997558593749, + "top": 276.7833526611328 + }, + "tool_id": null, + "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "cc59191c-1bc9-4007-b88c-8765ff2dfefd", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nkraken_database\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"Kraken2\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 26f9041f-d8a4-4f64-8a53-404d5c7e2f61[\"Output\\nkraken2_with_pluspf_database_output\"];\n 2 --> 26f9041f-d8a4-4f64-8a53-404d5c7e2f61;\n style 26f9041f-d8a4-4f64-8a53-404d5c7e2f61 stroke:#2c3143,stroke-width:4px;\n f2ddd05b-66a0-4cea-9da6-ed107eecbe1b[\"Output\\nkraken2_with_pluspf_database_output_report\"];\n 2 --> f2ddd05b-66a0-4cea-9da6-ed107eecbe1b;\n style f2ddd05b-66a0-4cea-9da6-ed107eecbe1b stroke:#2c3143,stroke-width:4px;\n 3[\"Krakentools: Convert kraken report file\"];\n 2 -->|report_output| 3;\n c490ab8d-1b1d-4914-aa51-a62a967a4018[\"Output\\nconverted_kraken_report\"];\n 3 --> c490ab8d-1b1d-4914-aa51-a62a967a4018;\n style c490ab8d-1b1d-4914-aa51-a62a967a4018 stroke:#2c3143,stroke-width:4px;\n 4[\"Krona pie chart\"];\n 3 -->|output| 4;\n dcc857c6-f579-4c74-84ec-bb6ce3794a56[\"Output\\nkrona_pie_chart\"];\n 4 --> dcc857c6-f579-4c74-84ec-bb6ce3794a56;\n style dcc857c6-f579-4c74-84ec-bb6ce3794a56 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Taxonomy Profiling and Visualization with Krona", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "kraken2_database": { + "id": 1, + "output_name": "output" + }, + "single_paired|input_sequences": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Kraken2", + "name": "single_paired" + } + ], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 231.99998779296874, + "top": 205.00002746582032 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "kraken2_with_pluspf_database_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "RenameDatasetActionreport_output": { + "action_arguments": { + "newname": "kraken2_with_pluspf_database_output_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "20e2f64aa1fe", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.1\", \"kraken2_database\": {\"__class__\": \"ConnectedValue\"}, \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"no\", \"__current_case__\": 2, \"input_sequences\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "ddb4e42b-6381-411e-9328-1c7959ecda47", + "when": null, + "workflow_outputs": [ + { + "label": "kraken2_with_pluspf_database_output", + "output_name": "output", + "uuid": "26f9041f-d8a4-4f64-8a53-404d5c7e2f61" + }, + { + "label": "kraken2_with_pluspf_database_output_report", + "output_name": "report_output", + "uuid": "f2ddd05b-66a0-4cea-9da6-ed107eecbe1b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "report": { + "id": 2, + "output_name": "report_output" + } + }, + "inputs": [], + "label": null, + "name": "Krakentools: Convert kraken report file", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 447.9999877929688, + "top": 205.31667785644532 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "converted_kraken_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "2deaada69b14", + "name": "krakentools_kreport2krona", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"intermediate_ranks\": false, \"report\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2+galaxy1", + "type": "tool", + "uuid": "7464e3a0-2253-4fe5-832f-ea155a660b08", + "when": null, + "workflow_outputs": [ + { + "label": "converted_kraken_report", + "output_name": "output", + "uuid": "c490ab8d-1b1d-4914-aa51-a62a967a4018" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "type_of_data|input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Krona pie chart", + "name": "type_of_data" + } + ], + "label": null, + "name": "Krona pie chart", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 701, + "top": 212.31666564941406 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "krona_pie_chart" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "taxonomy_profiling_visualisation_krona_pie_chart" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e9005d1f3cfd", + "name": "taxonomy_krona_chart", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"combine_inputs\": false, \"root_name\": \"Root\", \"type_of_data\": {\"type_of_data_selector\": \"text\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.7.1+galaxy0", + "type": "tool", + "uuid": "8b130a6a-6fb3-4498-ac19-0d2df97c09e1", + "when": null, + "workflow_outputs": [ + { + "label": "krona_pie_chart", + "output_name": "output", + "uuid": "dcc857c6-f579-4c74-84ec-bb6ce3794a56" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/taxonomy_profiling_and_visualisation_with_krona.ga", + "tags": [ + "name:Collection", + "name:microGalaxy", + "name:PathoGFAIR", + "name:IWC" + ], + "test_results": null, + "tests": true, + "title": "Taxonomy Profiling and Visualization with Krona", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/taxonomy-profiling-and-visualisation-with-krona", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/taxonomy_profiling_and_visualisation_with_krona.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/taxonomy_profiling_and_visualisation_with_krona.html", + "version": 2, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "taxonomy-profiling-and-visualisation-with-krona", + "workflow": "taxonomy_profiling_and_visualisation_with_krona.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy1" + ], + "workflowhub_id": "1073" + } + ], + "zenodo_link": "https://zenodo.org/record/11222469" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "1334cb4c6b68", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bracken", + "owner": "iuc", + "revisions": "79450f7fd718", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken_biom", + "owner": "iuc", + "revisions": "b582a159bb10", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_kreport2krona", + "owner": "iuc", + "revisions": "88d274322340", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan", + "owner": "iuc", + "revisions": "1a6cdf55390f", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: 1334cb4c6b68\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bracken\n owner: iuc\n revisions: 79450f7fd718\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken_biom\n owner: iuc\n revisions: b582a159bb10\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_kreport2krona\n owner: iuc\n revisions: 88d274322340\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan\n owner: iuc\n revisions: 1a6cdf55390f\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/taxonomic-profiling/tutorial.json", + "contributions": { + "authorship": [ + "sophia120199", + "bebatut", + "paulzierep" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "id": "sophia120199", + "joined": "2023-04", + "name": "Sophia Hampe", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sophia120199/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sophia120199.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/microbiome/tutorials/taxonomic-profiling", + "edam_ontology": [ + "topic_3174", + "topic_3697", + "topic_0637", + "topic_0080" + ], + "edam_operation": [ + "Statistical calculation", + "Taxonomic classification", + "Nucleic acid sequence analysis", + "Aggregation", + "Phylogenetic tree analysis", + "Visualisation" + ], + "edam_topic": [ + "Metagenomics", + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/taxonomic-profiling", + "inexact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": 4920, + "mermaid": false + }, + "key_points": [ + "There are 3 different types of taxonomic assignment (genome, gene or k-mer based)", + "Kraken or MetaPhlAn can be used in Galaxy for taxonomic assignment", + "Visualization of community profiles can be done using Krona or Pavian", + "The taxonomic classification tool to use depends on the data" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Explain what taxonomic assignment is", + "Explain how taxonomic assignment works", + "Apply Kraken and MetaPhlAn to assign taxonomic labels", + "Apply Krona and Pavian to visualize results of assignment and understand the output", + "Identify taxonomic classification tool that fits best depending on their data" + ], + "pageviews": 5371, + "pub_date": "2023-05-03", + "questions": [ + "Which species (or genera, families, ...) are present in my sample?", + "What are the different approaches and tools to get the community profile of my sample?", + "How can we visualize and compare community profiles?" + ], + "recordings": [ + { + "captioners": [ + "sophia120199" + ], + "date": "2023-05-16", + "galaxy_version": "23.01", + "length": "1H15M", + "speakers": [ + "bebatut" + ], + "youtube_id": "jszMnBKm6ig" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/taxonomic-profiling/tutorial", + "/short/microbiome/taxonomic-profiling", + "/short/T00338", + "/short/T00395" + ], + "short_id": "T00395", + "short_tools": [ + "est_abundance", + "__UNZIP_COLLECTION__", + "taxonomy_krona_chart", + "krakentools_kreport2krona", + "metaphlan", + "kraken_biom", + "interactive_tool_phinch", + "interactive_tool_pavian", + "kraken2" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metagenomics", + "taxonomic profiling", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Taxonomic Profiling and Visualization of Metagenomic Data", + "tools": [ + "__UNZIP_COLLECTION__", + "interactive_tool_pavian", + "interactive_tool_phinch", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken_biom/kraken_biom/1.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "taxonomic-profiling", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/taxonomic-profiling/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/taxonomic-profiling/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/taxonomic-profiling/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 1510, + "visit_duration": 118, + "visitors": 3938, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Taxonomic Profiling and Visualization of Metagenomic Data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nraw-reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmetadata\"]\n 2[label=\"Unzip collection\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Kraken2\"]\n 0 -> 3 [label=\"output\"]\n k66afa24f09e148f3ada02ac8170f941b[color=lightseagreen,label=\"Output\\nkraken_report\"]\n 3 -> k66afa24f09e148f3ada02ac8170f941b\n 4[label=\"MetaPhlAn\"]\n 2 -> 4 [label=\"forward\"]\n 2 -> 4 [label=\"reverse\"]\n k30aa49a8f29a4a2090d0585202b29f6a[color=lightseagreen,label=\"Output\\nmetaphlan_output\"]\n 4 -> k30aa49a8f29a4a2090d0585202b29f6a\n 5[label=\"Krakentools: Convert kraken report file\"]\n 3 -> 5 [label=\"report_output\"]\n kb30d2133042a4696aaee7d57f293fd77[color=lightseagreen,label=\"Output\\nkrakentool_report\"]\n 5 -> kb30d2133042a4696aaee7d57f293fd77\n 6[label=\"Kraken-biom\"]\n 3 -> 6 [label=\"report_output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Pavian\"]\n 3 -> 7 [label=\"report_output\"]\n 8[label=\"Estimate Abundance at Taxonomic Level\"]\n 3 -> 8 [label=\"report_output\"]\n 9[label=\"Krona pie chart\"]\n 4 -> 9 [label=\"krona_output_file\"]\n 10[label=\"Krona pie chart\"]\n 5 -> 10 [label=\"output\"]\n 11[label=\"Phinch Visualisation\"]\n 6 -> 11 [label=\"biomOutput\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw-reads" + } + ], + "label": "raw-reads", + "name": "raw-reads", + "outputs": [], + "position": { + "left": 0, + "top": 32 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw-reads\",\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8ceaae85-1ed7-4488-b839-53d36e642378", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "metadata" + } + ], + "label": "metadata", + "name": "metadata", + "outputs": [], + "position": { + "left": 35.48228574271107, + "top": 575.2289046420843 + }, + "tool_id": null, + "tool_state": "{\"name\": \"metadata\", \"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "715bbeb3-cb9a-49dd-a9c5-1f184f3eb34a", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nraw-reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nmetadata\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Unzip collection\"];\n 0 -->|output| 2;\n 3[\"Kraken2\"];\n 0 -->|output| 3;\n 66afa24f-09e1-48f3-ada0-2ac8170f941b[\"Output\\nkraken_report\"];\n 3 --> 66afa24f-09e1-48f3-ada0-2ac8170f941b;\n style 66afa24f-09e1-48f3-ada0-2ac8170f941b stroke:#2c3143,stroke-width:4px;\n 4[\"MetaPhlAn\"];\n 2 -->|forward| 4;\n 2 -->|reverse| 4;\n 30aa49a8-f29a-4a20-90d0-585202b29f6a[\"Output\\nmetaphlan_output\"];\n 4 --> 30aa49a8-f29a-4a20-90d0-585202b29f6a;\n style 30aa49a8-f29a-4a20-90d0-585202b29f6a stroke:#2c3143,stroke-width:4px;\n 5[\"Krakentools: Convert kraken report file\"];\n 3 -->|report_output| 5;\n b30d2133-042a-4696-aaee-7d57f293fd77[\"Output\\nkrakentool_report\"];\n 5 --> b30d2133-042a-4696-aaee-7d57f293fd77;\n style b30d2133-042a-4696-aaee-7d57f293fd77 stroke:#2c3143,stroke-width:4px;\n 6[\"Kraken-biom\"];\n 3 -->|report_output| 6;\n 1 -->|output| 6;\n 7[\"Pavian\"];\n 3 -->|report_output| 7;\n 8[\"Estimate Abundance at Taxonomic Level\"];\n 3 -->|report_output| 8;\n 9[\"Krona pie chart\"];\n 4 -->|krona_output_file| 9;\n 10[\"Krona pie chart\"];\n 5 -->|output| 10;\n 11[\"Phinch Visualisation\"];\n 6 -->|biomOutput| 11;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Taxonomic Profiling and Visualization of Metagenomic Data", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "single_paired|input_pair": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 279.9980390107984, + "top": 464 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e674066930b2", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.1\", \"kraken2_database\": \"2022-09-04T165121Z_standard_prebuilt_pluspf_2022-06-07\", \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"collection\", \"__current_case__\": 0, \"input_pair\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "ec3d15fe-c551-4986-b56b-6f92fe781a4e", + "when": null, + "workflow_outputs": [ + { + "label": "kraken_report", + "output_name": "report_output", + "uuid": "66afa24f-09e1-48f3-ada0-2ac8170f941b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "inputs|in|raw_in|in_f": { + "id": 2, + "output_name": "forward" + }, + "inputs|in|raw_in|in_r": { + "id": 2, + "output_name": "reverse" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MetaPhlAn", + "name": "analysis" + } + ], + "label": null, + "name": "MetaPhlAn", + "outputs": [ + { + "name": "output_file", + "type": "tabular" + }, + { + "name": "bowtie2out", + "type": "tabular" + }, + { + "name": "sam_output_file", + "type": "sam" + }, + { + "name": "biom_output_file", + "type": "biom1" + }, + { + "name": "krona_output_file", + "type": "tabular" + } + ], + "position": { + "left": 559.9960780215968, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "1a6cdf55390f", + "name": "metaphlan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis\": {\"analysis_type\": {\"t\": \"rel_ab\", \"__current_case__\": 0, \"tax_lev\": {\"tax_lev\": \"a\", \"__current_case__\": 0, \"split_levels\": false}}, \"min_cu_len\": \"2000\", \"min_alignment_len\": null, \"organism_profiling\": [\"add_viruses\"], \"stat\": \"tavg_g\", \"stat_q\": \"0.2\", \"perc_nonzero\": \"0.33\", \"ignore_markers\": {\"__class__\": \"RuntimeValue\"}, \"avoid_disqm\": true}, \"inputs\": {\"in\": {\"selector\": \"raw\", \"__current_case__\": 0, \"raw_in\": {\"selector\": \"paired\", \"__current_case__\": 2, \"in_f\": {\"__class__\": \"ConnectedValue\"}, \"in_r\": {\"__class__\": \"ConnectedValue\"}}, \"read_min_len\": \"70\", \"mapping\": {\"bt2_ps\": \"very-sensitive\", \"min_mapq_val\": \"5\"}}, \"db\": {\"db_selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": \"mpa_vOct22_CHOCOPhlAnSGB_202212-03042023\"}}, \"out\": {\"sample_id_key\": \"SampleID\", \"sample_id\": \"Metaphlan_Analysis\", \"use_group_representative\": false, \"legacy_output\": false, \"CAMI_format_output\": false, \"unknown_estimation\": false, \"krona_output\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0.6+galaxy1", + "type": "tool", + "uuid": "12d35121-341e-46da-aa4c-c48d4318bf6d", + "when": null, + "workflow_outputs": [ + { + "label": "metaphlan_output", + "output_name": "output_file", + "uuid": "30aa49a8-f29a-4a20-90d0-585202b29f6a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "report": { + "id": 3, + "output_name": "report_output" + } + }, + "inputs": [], + "label": null, + "name": "Krakentools: Convert kraken report file", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 559.9960852997306, + "top": 459 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "88d274322340", + "name": "krakentools_kreport2krona", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"intermediate_ranks\": false, \"report\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2+galaxy0", + "type": "tool", + "uuid": "5de62f93-4e3a-4ea6-92c6-c3afcc088bdc", + "when": null, + "workflow_outputs": [ + { + "label": "krakentool_report", + "output_name": "output", + "uuid": "b30d2133-042a-4696-aaee-7d57f293fd77" + } + ] + } + ], + "parent_id": "microbiome/taxonomic-profiling", + "path": "topics/microbiome/tutorials/taxonomic-profiling/workflows/main-workflow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": true, + "title": "Taxonomic Profiling and Visualization of Metagenomic Data", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-taxonomic-profiling/versions/main-workflow", + "tutorial_id": "taxonomic-profiling", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/taxonomic-profiling/workflows/main-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/taxonomic-profiling/workflows/main-workflow.html", + "version": 1, + "wfid": "microbiome-taxonomic-profiling", + "wfname": "main-workflow", + "workflow": "main-workflow.ga", + "workflow_tools": [ + "__UNZIP_COLLECTION__", + "interactive_tool_pavian", + "interactive_tool_phinch", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken_biom/kraken_biom/1.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1" + ], + "workflowhub_id": "1095" + } + ], + "zenodo_link": "https://zenodo.org/record/7871630" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "combine_metaphlan2_humann2", + "owner": "bebatut", + "revisions": "fdfb35745104", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_paired_end_interlacer", + "owner": "devteam", + "revisions": "2ccb8dcabddc", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "export2graphlan", + "owner": "iuc", + "revisions": "635c90a27692", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "graphlan", + "owner": "iuc", + "revisions": "8f62f666dcb6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "graphlan_annotate", + "owner": "iuc", + "revisions": "5d6f8f0bef7c", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann", + "owner": "iuc", + "revisions": "95bf7479d53c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_regroup_table", + "owner": "iuc", + "revisions": "79706f10d680", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_regroup_table", + "owner": "iuc", + "revisions": "31c6d107e7a5", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_rename_table", + "owner": "iuc", + "revisions": "172920f67a84", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_rename_table", + "owner": "iuc", + "revisions": "714d5a28cc5c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_renorm_table", + "owner": "iuc", + "revisions": "d7e9a3c41657", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_renorm_table", + "owner": "iuc", + "revisions": "12fb63b5f63f", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_split_stratified_table", + "owner": "iuc", + "revisions": "64bc7acc22a9", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_split_stratified_table", + "owner": "iuc", + "revisions": "6fcb8ac37a3e", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_unpack_pathways", + "owner": "iuc", + "revisions": "080ea153677c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_unpack_pathways", + "owner": "iuc", + "revisions": "5e5a999ffaa9", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan", + "owner": "iuc", + "revisions": "ec368db926f4", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "135b80fb1ac2", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sortmerna", + "owner": "rnateam", + "revisions": "eb35257d2e29", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: combine_metaphlan2_humann2\n owner: bebatut\n revisions: fdfb35745104\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_paired_end_interlacer\n owner: devteam\n revisions: 2ccb8dcabddc\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: export2graphlan\n owner: iuc\n revisions: 635c90a27692\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: graphlan\n owner: iuc\n revisions: 8f62f666dcb6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: graphlan_annotate\n owner: iuc\n revisions: 5d6f8f0bef7c\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann\n owner: iuc\n revisions: 95bf7479d53c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_regroup_table\n owner: iuc\n revisions: 79706f10d680\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_regroup_table\n owner: iuc\n revisions: 31c6d107e7a5\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_rename_table\n owner: iuc\n revisions: 172920f67a84\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_rename_table\n owner: iuc\n revisions: 714d5a28cc5c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_renorm_table\n owner: iuc\n revisions: d7e9a3c41657\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_renorm_table\n owner: iuc\n revisions: 12fb63b5f63f\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_split_stratified_table\n owner: iuc\n revisions: 64bc7acc22a9\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_split_stratified_table\n owner: iuc\n revisions: 6fcb8ac37a3e\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_unpack_pathways\n owner: iuc\n revisions: '080ea153677c'\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_unpack_pathways\n owner: iuc\n revisions: 5e5a999ffaa9\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan\n owner: iuc\n revisions: ec368db926f4\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 135b80fb1ac2\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sortmerna\n owner: rnateam\n revisions: eb35257d2e29\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics-short/tutorial.json", + "contributors": [ + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "rsajulga@umn.edu", + "id": "jraysajulga", + "joined": "2018-11", + "name": "Ray Sajulga", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jraysajulga/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jraysajulga.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "email": "leith023@umn.edu", + "id": "emmaleith", + "joined": "2019-07", + "name": "Emma Leith", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emmaleith/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emmaleith.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "engynasr94@gmail.com", + "id": "EngyNasr", + "joined": "2021-05", + "matrix": "EngyNasr:matrix.org", + "name": "Engy Nasr", + "orcid": "0000-0001-9047-4215", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/EngyNasr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/EngyNasr.json" + } + ], + "dir": "topics/microbiome/tutorials/metatranscriptomics-short", + "edam_ontology": [ + "topic_3941", + "topic_3697", + "topic_0637", + "topic_1775", + "topic_0080" + ], + "edam_operation": [ + "Statistical calculation", + "Species frequency estimation", + "Primer removal", + "Read pre-processing", + "Sequence trimming", + "Sequence similarity search", + "Taxonomic classification", + "Phylogenetic tree editing", + "Phylogenetic analysis", + "Sequence composition calculation", + "Phylogenetic tree visualisation", + "Phylogenetic tree analysis", + "Validation", + "Sequencing quality control", + "Sequence comparison", + "Conversion", + "Sequence alignment analysis", + "Nucleic acid sequence analysis", + "Phylogenetic inference", + "Visualisation" + ], + "edam_topic": [ + "Metatranscriptomics", + "Microbial ecology", + "Taxonomy", + "Function analysis", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/metatranscriptomics-short", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Metatranscriptomics data have the same QC profile that RNA-seq data", + "A lot of metatranscriptomics sequences are identified as rRNA sequences", + "With shotgun data, we can extract information about the studied community structure and also the functions realised by the community", + "Metatranscriptomics data analyses are complex and must be careful done, specially when they are done without combination to metagenomics data analyses" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Choose the best approach to analyze metatranscriptomics data", + "Understand the functional microbiome characterization using metatranscriptomic results", + "Understand where metatranscriptomics fits in 'multi-omic' analysis of microbiomes", + "Visualise a community structure" + ], + "pageviews": 319, + "pub_date": "2020-02-13", + "questions": [ + "How to analyze metatranscriptomics data?\"", + "What information can be extracted of metatranscriptomics data?", + "How to assign taxa and function to the identified sequences?" + ], + "recordings": [ + { + "captioners": [ + "paulzierep" + ], + "date": "2023-05-17", + "galaxy_version": "23.01", + "length": "1H5M", + "speakers": [ + "paulzierep" + ], + "youtube_id": "HNYop3vLpoM" + }, + { + "captioners": [ + "EngyNasr", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H30M", + "speakers": [ + "pratikdjagtap", + "timothygriffin", + "subinamehta", + "shiltemann" + ], + "youtube_id": "EMaos5u1_a8" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metatranscriptomics-short/tutorial", + "/short/microbiome/metatranscriptomics-short", + "/short/T00204", + "/short/T00389" + ], + "short_id": "T00389", + "short_tools": [ + "taxonomy_krona_chart", + "graphlan", + "Cut1", + "humann_unpack_pathways", + "humann_rename_table", + "cutadapt", + "graphlan_annotate", + "humann_renorm_table", + "Grep1", + "multiqc", + "humann_split_stratified_table", + "fastq_paired_end_interlacer", + "bg_sortmerna", + "humann_regroup_table", + "fastqc", + "combine_metaphlan2_humann2", + "metaphlan", + "export2graphlan", + "humann", + "tp_find_and_replace" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metatranscriptomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metatranscriptomics", + "microgalaxy" + ], + "time_estimation": "3H", + "title": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metatranscriptomics-short", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics-short/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics-short/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics-short/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 2, + "video_view": 1865, + "visit_duration": 92, + "visitors": 251, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nT1A_forward\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nT1A_reverse\"]\n 2[label=\"Quality control Forward\"]\n 0 -> 2 [label=\"output\"]\n k025f27660802461eafbda716e6f81ba8[color=lightseagreen,label=\"Output\\nFastQC on input dataset(s): RawData\"]\n 2 -> k025f27660802461eafbda716e6f81ba8\n ka54ee2fd7bce439a9f1ff9ec9bf00efd[color=lightseagreen,label=\"Output\\nFastQC on input dataset(s): Webpage\"]\n 2 -> ka54ee2fd7bce439a9f1ff9ec9bf00efd\n 3[label=\"Quality control Reverse\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Cutadapt\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n k4bc7c8a4b98541ddb67fa3dfecd38a67[color=lightseagreen,label=\"Output\\nCutadapt on input dataset(s): Read 1 Output\"]\n 4 -> k4bc7c8a4b98541ddb67fa3dfecd38a67\n k36ec0bbae49a47e2b916afec9b35cc3e[color=lightseagreen,label=\"Output\\nCutadapt on input dataset(s): Read 2 Output\"]\n 4 -> k36ec0bbae49a47e2b916afec9b35cc3e\n 5[label=\"MultiQC\"]\n 2 -> 5 [label=\"text_file\"]\n 3 -> 5 [label=\"text_file\"]\n kb9ca21230ee040a0b2eccfc94fa35849[color=lightseagreen,label=\"Output\\nMultiQC on input dataset(s): Stats\"]\n 5 -> kb9ca21230ee040a0b2eccfc94fa35849\n ke94ceb7a0d6b41c8b79d035b315e0a06[color=lightseagreen,label=\"Output\\nMultiQC on input dataset(s): Webpage\"]\n 5 -> ke94ceb7a0d6b41c8b79d035b315e0a06\n 6[label=\"rRNA/rDNA selection\"]\n 4 -> 6 [label=\"out1\"]\n 4 -> 6 [label=\"out2\"]\n 7[label=\"FASTQ interlacer\"]\n 6 -> 7 [label=\"unaligned_forward\"]\n 6 -> 7 [label=\"unaligned_reverse\"]\n kb060eebccd14486e806eaae983bdf52d[color=lightseagreen,label=\"Output\\nFASTQ interlacer singles from input dataset(s)\"]\n 7 -> kb060eebccd14486e806eaae983bdf52d\n k70b738db54514eaa91c0eb445be297fb[color=lightseagreen,label=\"Output\\nFASTQ interlacer pairs from input dataset(s)\"]\n 7 -> k70b738db54514eaa91c0eb445be297fb\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "T1A_forward" + } + ], + "label": "T1A_forward", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1, + "top": 474 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4ce879d0-6fe8-4196-a077-d78a86611143", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "T1A_reverse" + } + ], + "label": "T1A_reverse", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 665 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "501780ae-a039-4647-95a7-06d1a81424df", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nT1A_forward\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nT1A_reverse\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Quality control Forward\"];\n 0 -->|output| 2;\n 025f2766-0802-461e-afbd-a716e6f81ba8[\"Output\\nFastQC on input dataset(s): RawData\"];\n 2 --> 025f2766-0802-461e-afbd-a716e6f81ba8;\n style 025f2766-0802-461e-afbd-a716e6f81ba8 stroke:#2c3143,stroke-width:4px;\n a54ee2fd-7bce-439a-9f1f-f9ec9bf00efd[\"Output\\nFastQC on input dataset(s): Webpage\"];\n 2 --> a54ee2fd-7bce-439a-9f1f-f9ec9bf00efd;\n style a54ee2fd-7bce-439a-9f1f-f9ec9bf00efd stroke:#2c3143,stroke-width:4px;\n 3[\"Quality control Reverse\"];\n 1 -->|output| 3;\n 4[\"Cutadapt\"];\n 0 -->|output| 4;\n 1 -->|output| 4;\n 4bc7c8a4-b985-41dd-b67f-a3dfecd38a67[\"Output\\nCutadapt on input dataset(s): Read 1 Output\"];\n 4 --> 4bc7c8a4-b985-41dd-b67f-a3dfecd38a67;\n style 4bc7c8a4-b985-41dd-b67f-a3dfecd38a67 stroke:#2c3143,stroke-width:4px;\n 36ec0bba-e49a-47e2-b916-afec9b35cc3e[\"Output\\nCutadapt on input dataset(s): Read 2 Output\"];\n 4 --> 36ec0bba-e49a-47e2-b916-afec9b35cc3e;\n style 36ec0bba-e49a-47e2-b916-afec9b35cc3e stroke:#2c3143,stroke-width:4px;\n 5[\"MultiQC\"];\n 2 -->|text_file| 5;\n 3 -->|text_file| 5;\n b9ca2123-0ee0-40a0-b2ec-cfc94fa35849[\"Output\\nMultiQC on input dataset(s): Stats\"];\n 5 --> b9ca2123-0ee0-40a0-b2ec-cfc94fa35849;\n style b9ca2123-0ee0-40a0-b2ec-cfc94fa35849 stroke:#2c3143,stroke-width:4px;\n e94ceb7a-0d6b-41c8-b79d-035b315e0a06[\"Output\\nMultiQC on input dataset(s): Webpage\"];\n 5 --> e94ceb7a-0d6b-41c8-b79d-035b315e0a06;\n style e94ceb7a-0d6b-41c8-b79d-035b315e0a06 stroke:#2c3143,stroke-width:4px;\n 6[\"rRNA/rDNA selection\"];\n 4 -->|out1| 6;\n 4 -->|out2| 6;\n 7[\"FASTQ interlacer\"];\n 6 -->|unaligned_forward| 7;\n 6 -->|unaligned_reverse| 7;\n b060eebc-cd14-486e-806e-aae983bdf52d[\"Output\\nFASTQ interlacer singles from input dataset(s)\"];\n 7 --> b060eebc-cd14-486e-806e-aae983bdf52d;\n style b060eebc-cd14-486e-806e-aae983bdf52d stroke:#2c3143,stroke-width:4px;\n 70b738db-5451-4eaa-91c0-eb445be297fb[\"Output\\nFASTQ interlacer pairs from input dataset(s)\"];\n 7 --> 70b738db-5451-4eaa-91c0-eb445be297fb;\n style 70b738db-5451-4eaa-91c0-eb445be297fb stroke:#2c3143,stroke-width:4px;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 1: Preprocessing", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": "Quality control Forward", + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 504, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "b723af93-0025-43b3-8fa9-fc03a2c6a36b", + "when": null, + "workflow_outputs": [ + { + "label": "FastQC on input dataset(s): RawData", + "output_name": "text_file", + "uuid": "025f2766-0802-461e-afbd-a716e6f81ba8" + }, + { + "label": "FastQC on input dataset(s): Webpage", + "output_name": "html_file", + "uuid": "a54ee2fd-7bce-439a-9f1f-f9ec9bf00efd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": "Quality control Reverse", + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 501, + "top": 399 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "e74050b0-6ac5-459c-865c-c2d9fb08b48a", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "text_file", + "uuid": "f627d888-efe3-4d11-a238-62e6b338f4b3" + }, + { + "label": null, + "output_name": "html_file", + "uuid": "8b224f1f-c527-4fb7-8c0b-99e5c1c41ffa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "library|input_2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "out2", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 522, + "top": 850 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "135b80fb1ac2", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"internal\": \"\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"150\", \"maximum_length\": null, \"length_R2_options\": {\"length_R2_status\": \"False\", \"__current_case__\": 1}, \"max_n\": null, \"pair_filter\": \"any\", \"max_expected_errors\": null, \"discard_cassava\": false}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\", \"quality_cutoff2\": null}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"strip_suffix\": \"\", \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0+galaxy1", + "type": "tool", + "uuid": "5291d4e5-3926-486e-aef5-9e0979ab33a4", + "when": null, + "workflow_outputs": [ + { + "label": "Cutadapt on input dataset(s): Read 1 Output", + "output_name": "out1", + "uuid": "4bc7c8a4-b985-41dd-b67f-a3dfecd38a67" + }, + { + "label": null, + "output_name": "report", + "uuid": "f43551f2-0bf2-4692-b66a-e848095f8ec0" + }, + { + "label": "Cutadapt on input dataset(s): Read 2 Output", + "output_name": "out2", + "uuid": "36ec0bba-e49a-47e2-b916-afec9b35cc3e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "results_0|software_cond|output_0|input": [ + { + "id": 2, + "output_name": "text_file" + }, + { + "id": 3, + "output_name": "text_file" + } + ] + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 901, + "top": 88 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "f636262d-89ec-4aa2-a695-c8b092601dac", + "when": null, + "workflow_outputs": [ + { + "label": "MultiQC on input dataset(s): Stats", + "output_name": "stats", + "uuid": "b9ca2123-0ee0-40a0-b2ec-cfc94fa35849" + }, + { + "label": "MultiQC on input dataset(s): Webpage", + "output_name": "html_report", + "uuid": "e94ceb7a-0d6b-41c8-b79d-035b315e0a06" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6", + "errors": null, + "id": 6, + "input_connections": { + "sequencing_type|forward_reads": { + "id": 4, + "output_name": "out1" + }, + "sequencing_type|reverse_reads": { + "id": 4, + "output_name": "out2" + } + }, + "inputs": [], + "label": "rRNA/rDNA selection", + "name": "Filter with SortMeRNA", + "outputs": [ + { + "name": "aligned_forward", + "type": "input" + }, + { + "name": "aligned_reverse", + "type": "input" + }, + { + "name": "unaligned_forward", + "type": "input" + }, + { + "name": "unaligned_reverse", + "type": "input" + }, + { + "name": "output_bam", + "type": "bam" + }, + { + "name": "output_log", + "type": "txt" + } + ], + "position": { + "left": 808, + "top": 1057 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6", + "tool_shed_repository": { + "changeset_revision": "eb35257d2e29", + "name": "sortmerna", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"aligned_fastx\": {\"aligned_fastx_selector\": \"--fastx\", \"__current_case__\": 0, \"other\": true}, \"ambiguous_letter\": \"-3\", \"databases_type\": {\"databases_selector\": \"cached\", \"__current_case__\": 0, \"input_databases\": [\"2.1b-rfam-5s-database-id98\", \"2.1b-silva-arc-23s-id98\", \"2.1b-silva-euk-28s-id98\", \"2.1b-silva-bac-23s-id98\", \"2.1b-silva-euk-18s-id95\", \"2.1b-silva-bac-16s-id90\", \"2.1b-rfam-5.8s-database-id98\", \"2.1b-silva-arc-16s-id95\"]}, \"e_value\": \"1.0\", \"gap_ext\": \"2\", \"gap_open\": \"5\", \"log\": true, \"match\": \"2\", \"mismatch\": \"-3\", \"report\": {\"report_type\": \"best\", \"__current_case__\": 1, \"print_all_reads\": false, \"blast\": {\"blast_output\": \"False\", \"__current_case__\": 1}, \"otu\": {\"otu_map\": \"False\", \"__current_case__\": 1}, \"report_best\": {\"report_best_type\": \"1\", \"__current_case__\": 0, \"report_best_min_lis\": \"2\"}}, \"sequencing_type\": {\"sequencing_type_selector\": \"paired\", \"__current_case__\": 1, \"forward_reads\": {\"__class__\": \"ConnectedValue\"}, \"reverse_reads\": {\"__class__\": \"ConnectedValue\"}, \"paired_type\": \"--paired_out\"}, \"strand_search\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1b.6", + "type": "tool", + "uuid": "333dbf81-e89b-4d3d-8b71-fe21d77bac81", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "aligned_reverse", + "uuid": "8f821f92-e340-465c-a090-70bcd17830ae" + }, + { + "label": null, + "output_name": "output_log", + "uuid": "356cc89a-eb96-4726-8554-8771476545e7" + }, + { + "label": null, + "output_name": "aligned_forward", + "uuid": "05ee908b-9343-4265-ba80-a302e305d784" + }, + { + "label": null, + "output_name": "unaligned_reverse", + "uuid": "97a460fa-c745-4386-b1e2-69c423ebacdf" + }, + { + "label": null, + "output_name": "output_bam", + "uuid": "2da24572-b164-45d1-82bb-bce013217121" + }, + { + "label": null, + "output_name": "unaligned_forward", + "uuid": "36e17749-00e7-4362-bf41-8b1a5b1f34d1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "reads|input1_file": { + "id": 6, + "output_name": "unaligned_forward" + }, + "reads|input2_file": { + "id": 6, + "output_name": "unaligned_reverse" + } + }, + "inputs": [], + "label": null, + "name": "FASTQ interlacer", + "outputs": [ + { + "name": "outfile_pairs", + "type": "input" + }, + { + "name": "outfile_singles", + "type": "input" + } + ], + "position": { + "left": 1154, + "top": 1088 + }, + "post_job_actions": { + "RenameDatasetActionoutfile_pairs": { + "action_arguments": { + "newname": "Interlaced non rRNA reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile_pairs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2ccb8dcabddc", + "name": "fastq_paired_end_interlacer", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"reads\": {\"reads_selector\": \"paired\", \"__current_case__\": 0, \"input1_file\": {\"__class__\": \"ConnectedValue\"}, \"input2_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0.1+galaxy0", + "type": "tool", + "uuid": "bd047f16-cbae-46f7-b35a-5de5abed2557", + "when": null, + "workflow_outputs": [ + { + "label": "FASTQ interlacer singles from input dataset(s)", + "output_name": "outfile_singles", + "uuid": "b060eebc-cd14-486e-806e-aae983bdf52d" + }, + { + "label": "FASTQ interlacer pairs from input dataset(s)", + "output_name": "outfile_pairs", + "uuid": "70b738db-5451-4eaa-91c0-eb445be297fb" + } + ] + } + ], + "parent_id": "microbiome/metatranscriptomics-short", + "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow1_preprocessing.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Workflow 1: Preprocessing", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow1-preprocessing", + "tutorial_id": "metatranscriptomics-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow1_preprocessing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow1_preprocessing.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics-short", + "wfname": "workflow1-preprocessing", + "workflow": "workflow1_preprocessing.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6" + ], + "workflowhub_id": "1092" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQC controlled forward reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQC controlled reverse reads\"]\n 2[label=\"Taxonomic assignation\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n kb3e3198d394e4aebba6c9e73bfe8d049[color=lightseagreen,label=\"Output\\nMetaPhlAn on input dataset(s): SAM file\"]\n 2 -> kb3e3198d394e4aebba6c9e73bfe8d049\n ka4ecdc94d012413fa9cb6f3e9ee70d5b[color=lightseagreen,label=\"Output\\nMetaPhlAn on input dataset(s): Predicted taxon relative abundances\"]\n 2 -> ka4ecdc94d012413fa9cb6f3e9ee70d5b\n k30a9e6928d3145bd924681ddead3ba03[color=lightseagreen,label=\"Output\\nMetaPhlAn on input dataset(s): Bowtie2 output\"]\n 2 -> k30a9e6928d3145bd924681ddead3ba03\n k2465a9aba28e4c58b647b6792f77ddf2[color=lightseagreen,label=\"Output\\nMetaPhlAn on input dataset(s): BIOM file\"]\n 2 -> k2465a9aba28e4c58b647b6792f77ddf2\n 3[label=\"Cut\"]\n 2 -> 3 [label=\"output_file\"]\n 4[label=\"Krona pie chart\"]\n 2 -> 4 [label=\"krona_output_file\"]\n 5[label=\"Export to GraPhlAn\"]\n 3 -> 5 [label=\"out_file1\"]\n kf578de2e6edd4ee09bc49371d6fd957f[color=lightseagreen,label=\"Output\\nExport to GraPhlAn on input dataset(s): Annotation\"]\n 5 -> kf578de2e6edd4ee09bc49371d6fd957f\n k4e9cfae0ee7b434784db5a3e24688e50[color=lightseagreen,label=\"Output\\nExport to GraPhlAn on input dataset(s): Tree\"]\n 5 -> k4e9cfae0ee7b434784db5a3e24688e50\n 6[label=\"Generation, personalization and annotation of tree\"]\n 5 -> 6 [label=\"annotation\"]\n 5 -> 6 [label=\"tree\"]\n kedf4ecafdddd43a3ba4ad683671c1815[color=lightseagreen,label=\"Output\\nGeneration, personalization and annotation of tree on input dataset(s): Tree in PhyloXML\"]\n 6 -> kedf4ecafdddd43a3ba4ad683671c1815\n 7[label=\"Visualisation GraPhlAn\"]\n 6 -> 7 [label=\"output_tree\"]\n kb304fe87de7e48d287749c52d2395fa4[color=lightseagreen,label=\"Output\\nGraPhlAn on input dataset(s): PNG\"]\n 7 -> kb304fe87de7e48d287749c52d2395fa4\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "QC controlled forward reads" + } + ], + "label": "QC controlled forward reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 5, + "top": 63 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "407548c9-2a03-4506-9c52-d3b23ba6b387", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "QC controlled reverse reads" + } + ], + "label": "QC controlled reverse reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 211 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7e11c30c-4a90-45ac-88ce-733500df37b7", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQC controlled forward reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nQC controlled reverse reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Taxonomic assignation\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n b3e3198d-394e-4aeb-ba6c-9e73bfe8d049[\"Output\\nMetaPhlAn on input dataset(s): SAM file\"];\n 2 --> b3e3198d-394e-4aeb-ba6c-9e73bfe8d049;\n style b3e3198d-394e-4aeb-ba6c-9e73bfe8d049 stroke:#2c3143,stroke-width:4px;\n a4ecdc94-d012-413f-a9cb-6f3e9ee70d5b[\"Output\\nMetaPhlAn on input dataset(s): Predicted taxon relative abundances\"];\n 2 --> a4ecdc94-d012-413f-a9cb-6f3e9ee70d5b;\n style a4ecdc94-d012-413f-a9cb-6f3e9ee70d5b stroke:#2c3143,stroke-width:4px;\n 30a9e692-8d31-45bd-9246-81ddead3ba03[\"Output\\nMetaPhlAn on input dataset(s): Bowtie2 output\"];\n 2 --> 30a9e692-8d31-45bd-9246-81ddead3ba03;\n style 30a9e692-8d31-45bd-9246-81ddead3ba03 stroke:#2c3143,stroke-width:4px;\n 2465a9ab-a28e-4c58-b647-b6792f77ddf2[\"Output\\nMetaPhlAn on input dataset(s): BIOM file\"];\n 2 --> 2465a9ab-a28e-4c58-b647-b6792f77ddf2;\n style 2465a9ab-a28e-4c58-b647-b6792f77ddf2 stroke:#2c3143,stroke-width:4px;\n 3[\"Cut\"];\n 2 -->|output_file| 3;\n 4[\"Krona pie chart\"];\n 2 -->|krona_output_file| 4;\n 5[\"Export to GraPhlAn\"];\n 3 -->|out_file1| 5;\n f578de2e-6edd-4ee0-9bc4-9371d6fd957f[\"Output\\nExport to GraPhlAn on input dataset(s): Annotation\"];\n 5 --> f578de2e-6edd-4ee0-9bc4-9371d6fd957f;\n style f578de2e-6edd-4ee0-9bc4-9371d6fd957f stroke:#2c3143,stroke-width:4px;\n 4e9cfae0-ee7b-4347-84db-5a3e24688e50[\"Output\\nExport to GraPhlAn on input dataset(s): Tree\"];\n 5 --> 4e9cfae0-ee7b-4347-84db-5a3e24688e50;\n style 4e9cfae0-ee7b-4347-84db-5a3e24688e50 stroke:#2c3143,stroke-width:4px;\n 6[\"Generation, personalization and annotation of tree\"];\n 5 -->|annotation| 6;\n 5 -->|tree| 6;\n edf4ecaf-dddd-43a3-ba4a-d683671c1815[\"Output\\nGeneration, personalization and annotation of tree on input dataset(s): Tree in PhyloXML\"];\n 6 --> edf4ecaf-dddd-43a3-ba4a-d683671c1815;\n style edf4ecaf-dddd-43a3-ba4a-d683671c1815 stroke:#2c3143,stroke-width:4px;\n 7[\"Visualisation GraPhlAn\"];\n 6 -->|output_tree| 7;\n b304fe87-de7e-48d2-8774-9c52d2395fa4[\"Output\\nGraPhlAn on input dataset(s): PNG\"];\n 7 --> b304fe87-de7e-48d2-8774-9c52d2395fa4;\n style b304fe87-de7e-48d2-8774-9c52d2395fa4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 2: Community Profile", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "inputs|in|raw_in|in_f": { + "id": 0, + "output_name": "output" + }, + "inputs|in|raw_in|in_r": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MetaPhlAn", + "name": "analysis" + } + ], + "label": "Taxonomic assignation", + "name": "MetaPhlAn", + "outputs": [ + { + "name": "levels", + "type": "input" + }, + { + "name": "output_file", + "type": "tabular" + }, + { + "name": "bowtie2out", + "type": "tabular" + }, + { + "name": "sam_output_file", + "type": "sam" + }, + { + "name": "biom_output_file", + "type": "biom1" + }, + { + "name": "krona_output_file", + "type": "tabular" + } + ], + "position": { + "left": 387.5, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "Predicted taxon relative abundances" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ec368db926f4", + "name": "metaphlan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis\": {\"analysis_type\": {\"t\": \"rel_ab\", \"__current_case__\": 0, \"tax_lev\": {\"tax_lev\": \"a\", \"__current_case__\": 0, \"split_levels\": true}}, \"min_cu_len\": \"2000\", \"min_alignment_len\": null, \"organism_profiling\": [\"add_viruses\"], \"stat\": \"tavg_g\", \"stat_q\": \"0.1\", \"perc_nonzero\": \"0.33\", \"ignore_markers\": {\"__class__\": \"RuntimeValue\"}, \"avoid_disqm\": true}, \"inputs\": {\"in\": {\"selector\": \"raw\", \"__current_case__\": 0, \"raw_in\": {\"selector\": \"paired\", \"__current_case__\": 2, \"in_f\": {\"__class__\": \"ConnectedValue\"}, \"in_r\": {\"__class__\": \"ConnectedValue\"}}, \"read_min_len\": \"70\", \"mapping\": {\"bt2_ps\": \"very-sensitive\", \"min_mapq_val\": \"5\"}}, \"db\": {\"db_selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": \"mpa_vOct22_CHOCOPhlAnSGB_202212-03042023\"}}, \"out\": {\"sample_id_key\": \"SampleID\", \"sample_id\": \"Metaphlan_Analysis\", \"use_group_representative\": false, \"legacy_output\": false, \"CAMI_format_output\": false, \"unknown_estimation\": false, \"krona_output\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0.6+galaxy0", + "type": "tool", + "uuid": "5caa0913-1101-438f-9518-2545f65ac97c", + "when": null, + "workflow_outputs": [ + { + "label": "MetaPhlAn on input dataset(s): SAM file", + "output_name": "sam_output_file", + "uuid": "b3e3198d-394e-4aeb-ba6c-9e73bfe8d049" + }, + { + "label": null, + "output_name": "levels", + "uuid": "f3a53d7d-e490-4ccc-b2c9-5e99f64b5549" + }, + { + "label": "MetaPhlAn on input dataset(s): Predicted taxon relative abundances", + "output_name": "output_file", + "uuid": "a4ecdc94-d012-413f-a9cb-6f3e9ee70d5b" + }, + { + "label": "MetaPhlAn on input dataset(s): Bowtie2 output", + "output_name": "bowtie2out", + "uuid": "30a9e692-8d31-45bd-9246-81ddead3ba03" + }, + { + "label": "MetaPhlAn on input dataset(s): BIOM file", + "output_name": "biom_output_file", + "uuid": "2465a9ab-a28e-4c58-b647-b6792f77ddf2" + }, + { + "label": null, + "output_name": "krona_output_file", + "uuid": "d9ad878c-ead2-41ad-bf97-9c0f8af8ffa1" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "output_file" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 717.5, + "top": 87 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "b0e7430d-2fe2-478e-923c-02411da12129", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9115fd31-180f-4684-868e-79fbd13f56a2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "type_of_data|input": { + "id": 2, + "output_name": "krona_output_file" + } + }, + "inputs": [], + "label": null, + "name": "Krona pie chart", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 736.4262738025006, + "top": 452.9177942463193 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e9005d1f3cfd", + "name": "taxonomy_krona_chart", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"combine_inputs\": false, \"root_name\": \"Root\", \"type_of_data\": {\"type_of_data_selector\": \"text\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.7.1+galaxy0", + "type": "tool", + "uuid": "789fe7ce-10f9-4921-9d94-bebdb2b83534", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "44538674-09ca-409d-9742-b25cedc5f613" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "lefse_input": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Export to GraPhlAn", + "outputs": [ + { + "name": "tree", + "type": "txt" + }, + { + "name": "annotation", + "type": "txt" + } + ], + "position": { + "left": 969.5, + "top": 85 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "tool_shed_repository": { + "changeset_revision": "b16989c1e3a7", + "name": "export2graphlan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"abundance_threshold\": \"20.0\", \"annotation_legend_font_size\": \"10\", \"annotations\": \"1,2\", \"background_clades\": \"\", \"background_colors\": \"\", \"background_levels\": \"1\", \"def_clade_size\": \"10\", \"def_font_size\": \"10\", \"external_annotations\": \"3,4,5\", \"fname_row\": \"0\", \"fperc\": null, \"ftop\": null, \"input_lefse_output\": {\"input_lefse_output_test\": \"false\", \"__current_case__\": 1}, \"least_biomarkers\": null, \"lefse_input\": {\"__class__\": \"ConnectedValue\"}, \"max_clade_size\": \"200\", \"max_font_size\": \"12\", \"metadata_rows\": null, \"min_clade_size\": \"20\", \"min_font_size\": \"8\", \"most_abundant\": null, \"skip_rows\": \"\", \"sname_row\": \"0\", \"sperc\": null, \"stop\": null, \"title\": \"\", \"title_font_size\": \"15\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20+galaxy0", + "type": "tool", + "uuid": "e4d6b95a-247e-4120-95da-048861f03144", + "when": null, + "workflow_outputs": [ + { + "label": "Export to GraPhlAn on input dataset(s): Annotation", + "output_name": "annotation", + "uuid": "f578de2e-6edd-4ee0-9bc4-9371d6fd957f" + }, + { + "label": "Export to GraPhlAn on input dataset(s): Tree", + "output_name": "tree", + "uuid": "4e9cfae0-ee7b-4347-84db-5a3e24688e50" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "errors": null, + "id": 6, + "input_connections": { + "annot": { + "id": 5, + "output_name": "annotation" + }, + "input_tree": { + "id": 5, + "output_name": "tree" + } + }, + "inputs": [], + "label": null, + "name": "Generation, personalization and annotation of tree", + "outputs": [ + { + "name": "output_tree", + "type": "phyloxml" + } + ], + "position": { + "left": 1250.5, + "top": 68.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "tool_shed_repository": { + "changeset_revision": "5d6f8f0bef7c", + "name": "graphlan_annotate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annot\": {\"__class__\": \"ConnectedValue\"}, \"input_tree\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0.0", + "type": "tool", + "uuid": "ed883281-12a8-40fb-94ac-52479af3cef0", + "when": null, + "workflow_outputs": [ + { + "label": "Generation, personalization and annotation of tree on input dataset(s): Tree in PhyloXML", + "output_name": "output_tree", + "uuid": "edf4ecaf-dddd-43a3-ba4a-d683671c1815" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "errors": null, + "id": 7, + "input_connections": { + "input_tree": { + "id": 6, + "output_name": "output_tree" + } + }, + "inputs": [], + "label": "Visualisation (GraPhlAn)", + "name": "GraPhlAn", + "outputs": [ + { + "name": "png_output_image", + "type": "png" + } + ], + "position": { + "left": 1560.5, + "top": 82 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "tool_shed_repository": { + "changeset_revision": "8f62f666dcb6", + "name": "graphlan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"image_format\": {\"format\": \"png\", \"__current_case__\": 0, \"dpi\": null}, \"input_tree\": {\"__class__\": \"ConnectedValue\"}, \"pad\": null, \"size\": \"7\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0.0", + "type": "tool", + "uuid": "63b74ae1-d15b-4230-a5e2-d1a9395253d1", + "when": null, + "workflow_outputs": [ + { + "label": "GraPhlAn on input dataset(s): PNG", + "output_name": "png_output_image", + "uuid": "b304fe87-de7e-48d2-8774-9c52d2395fa4" + } + ] + } + ], + "parent_id": "microbiome/metatranscriptomics-short", + "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow2_community_profile.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Workflow 2: Community Profile", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow2-community-profile", + "tutorial_id": "metatranscriptomics-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow2_community_profile.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow2_community_profile.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics-short", + "wfname": "workflow2-community-profile", + "workflow": "workflow2_community_profile.ga", + "workflow_tools": [ + "Cut1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0" + ], + "workflowhub_id": "1088" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInterlaced non-rRNA reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPredicted taxon relative abundances\"]\n 2[label=\"Cut\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Metabolic assignation\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n k657973036f124ae895111af40f52e71d[color=lightseagreen,label=\"Output\\nHUMAnN on input dataset(s): Pathways and their abundance\"]\n 3 -> k657973036f124ae895111af40f52e71d\n k5cae6935448b4af9ad787b17490e4d4a[color=lightseagreen,label=\"Output\\nHUMAnN on input dataset(s): Pathways and their coverage\"]\n 3 -> k5cae6935448b4af9ad787b17490e4d4a\n k60492d727b3c45c9b32bb6374ab08228[color=lightseagreen,label=\"Output\\nHUMAnN on input dataset(s): Log\"]\n 3 -> k60492d727b3c45c9b32bb6374ab08228\n kba124b0fcbd54b65b87a84cfa578a927[color=lightseagreen,label=\"Output\\nHUMAnN on input dataset(s): Gene families and their abundance\"]\n 3 -> kba124b0fcbd54b65b87a84cfa578a927\n 4[label=\"Renormalize\"]\n 3 -> 4 [label=\"gene_families_tsv\"]\n 5[label=\"Renormalize\"]\n 3 -> 5 [label=\"pathabundance_tsv\"]\n 6[label=\"Regroup\"]\n 3 -> 6 [label=\"gene_families_tsv\"]\n 7[label=\"Replace\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Unpack pathway abundances\"]\n 4 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"output\"]\n 9[label=\"Rename features\"]\n 6 -> 9 [label=\"output\"]\n 10[label=\"Split a HUMAnN table\"]\n 6 -> 10 [label=\"output\"]\n k1ff60d0a4a6444c08b6fbbdfa8566a0c[color=lightseagreen,label=\"Output\\nSplit a HUMAnN table on input dataset(s): Unstratified table\"]\n 10 -> k1ff60d0a4a6444c08b6fbbdfa8566a0c\n k6a65ee933a2e4a8194ff35917396bdfa[color=lightseagreen,label=\"Output\\nSplit a HUMAnN table on input dataset(s): Stratified table\"]\n 10 -> k6a65ee933a2e4a8194ff35917396bdfa\n 11[label=\"Combination of taxonomic and metabolic assignations for gene families\"]\n 7 -> 11 [label=\"outfile\"]\n 2 -> 11 [label=\"out_file1\"]\n kb34cf972ec0c4eccab77bd0e61d8a0e2[color=lightseagreen,label=\"Output\\nCombine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances\"]\n 11 -> kb34cf972ec0c4eccab77bd0e61d8a0e2\n 12[label=\"Select\"]\n 9 -> 12 [label=\"output\"]\n 13[label=\"Select\"]\n 9 -> 13 [label=\"output\"]\n 14[label=\"Select\"]\n 9 -> 14 [label=\"output\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Interlaced non-rRNA reads" + } + ], + "label": "Interlaced non-rRNA reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 5, + "top": 301.73693839706976 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "83de522c-0d83-4c82-80ad-b5f4b3a89820", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Predicted taxon relative abundances" + } + ], + "label": "Predicted taxon relative abundances", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 486.73693839706976 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f9ea6130-3138-4ad7-a1eb-596de725849a", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInterlaced non-rRNA reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nPredicted taxon relative abundances\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Cut\"];\n 1 -->|output| 2;\n 3[\"Metabolic assignation\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 65797303-6f12-4ae8-9511-1af40f52e71d[\"Output\\nHUMAnN on input dataset(s): Pathways and their abundance\"];\n 3 --> 65797303-6f12-4ae8-9511-1af40f52e71d;\n style 65797303-6f12-4ae8-9511-1af40f52e71d stroke:#2c3143,stroke-width:4px;\n 5cae6935-448b-4af9-ad78-7b17490e4d4a[\"Output\\nHUMAnN on input dataset(s): Pathways and their coverage\"];\n 3 --> 5cae6935-448b-4af9-ad78-7b17490e4d4a;\n style 5cae6935-448b-4af9-ad78-7b17490e4d4a stroke:#2c3143,stroke-width:4px;\n 60492d72-7b3c-45c9-b32b-b6374ab08228[\"Output\\nHUMAnN on input dataset(s): Log\"];\n 3 --> 60492d72-7b3c-45c9-b32b-b6374ab08228;\n style 60492d72-7b3c-45c9-b32b-b6374ab08228 stroke:#2c3143,stroke-width:4px;\n ba124b0f-cbd5-4b65-b87a-84cfa578a927[\"Output\\nHUMAnN on input dataset(s): Gene families and their abundance\"];\n 3 --> ba124b0f-cbd5-4b65-b87a-84cfa578a927;\n style ba124b0f-cbd5-4b65-b87a-84cfa578a927 stroke:#2c3143,stroke-width:4px;\n 4[\"Renormalize\"];\n 3 -->|gene_families_tsv| 4;\n 5[\"Renormalize\"];\n 3 -->|pathabundance_tsv| 5;\n 6[\"Regroup\"];\n 3 -->|gene_families_tsv| 6;\n 7[\"Replace\"];\n 4 -->|output| 7;\n 8[\"Unpack pathway abundances\"];\n 4 -->|output| 8;\n 5 -->|output| 8;\n 9[\"Rename features\"];\n 6 -->|output| 9;\n 10[\"Split a HUMAnN table\"];\n 6 -->|output| 10;\n 1ff60d0a-4a64-44c0-8b6f-bbdfa8566a0c[\"Output\\nSplit a HUMAnN table on input dataset(s): Unstratified table\"];\n 10 --> 1ff60d0a-4a64-44c0-8b6f-bbdfa8566a0c;\n style 1ff60d0a-4a64-44c0-8b6f-bbdfa8566a0c stroke:#2c3143,stroke-width:4px;\n 6a65ee93-3a2e-4a81-94ff-35917396bdfa[\"Output\\nSplit a HUMAnN table on input dataset(s): Stratified table\"];\n 10 --> 6a65ee93-3a2e-4a81-94ff-35917396bdfa;\n style 6a65ee93-3a2e-4a81-94ff-35917396bdfa stroke:#2c3143,stroke-width:4px;\n 11[\"Combination of taxonomic and metabolic assignations for gene families\"];\n 7 -->|outfile| 11;\n 2 -->|out_file1| 11;\n b34cf972-ec0c-4ecc-ab77-bd0e61d8a0e2[\"Output\\nCombine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances\"];\n 11 --> b34cf972-ec0c-4ecc-ab77-bd0e61d8a0e2;\n style b34cf972-ec0c-4ecc-ab77-bd0e61d8a0e2 stroke:#2c3143,stroke-width:4px;\n 12[\"Select\"];\n 9 -->|output| 12;\n 13[\"Select\"];\n 9 -->|output| 13;\n 14[\"Select\"];\n 9 -->|output| 14;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 3: Functional Information", + "outputs": [ + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 358.4094564615726, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "b0e7430d-2fe2-478e-923c-02411da12129", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "d5b41863-4ccc-4bfe-9461-a2c4876de6c9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "in|input": { + "id": 0, + "output_name": "output" + }, + "wf|taxonomic_profile": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool HUMAnN", + "name": "g_p_quant" + } + ], + "label": "Metabolic assignation", + "name": "HUMAnN", + "outputs": [ + { + "name": "gene_families_tsv", + "type": "tabular" + }, + { + "name": "pathcoverage_tsv", + "type": "tabular" + }, + { + "name": "pathabundance_tsv", + "type": "tabular" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 374.5, + "top": 254.23693839706976 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "95bf7479d53c", + "name": "humann", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"g_p_quant\": {\"gap_fill\": true, \"minpath\": true, \"pathways\": \"metacyc\", \"xipe\": false, \"annotation_gene_index\": \"3\", \"id_mapping\": {\"__class__\": \"RuntimeValue\"}}, \"in\": {\"selector\": \"raw\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"out\": {\"output_basename\": \"humann\", \"output_format\": \"tsv\", \"output_max_decimals\": \"10\", \"remove_column_description_output\": false, \"remove_stratified_output\": false, \"intermediate_temp\": null}, \"wf\": {\"selector\": \"bypass_taxonomic_profiling\", \"__current_case__\": 1, \"taxonomic_profile\": {\"__class__\": \"ConnectedValue\"}, \"nucleotide_search\": {\"nucleotide_db\": {\"selector\": \"cached\", \"__current_case__\": 0, \"nucleotide_database\": \"chocophlan-full-3.6.0-29032023\"}, \"nucleotide_identity_threshold\": \"0.0\", \"nucleotide_subject_coverage_threshold\": \"50.0\", \"nucleotide_query_coverage_threshold\": \"90.0\"}, \"translated_search\": {\"protein_db\": {\"selector\": \"cached\", \"__current_case__\": 0, \"protein_database\": \"uniref-uniref90_diamond-3.0.0-13052021\"}, \"evalue\": \"1.0\", \"translated_identity_threshold\": null, \"translated_subject_coverage_threshold\": \"50.0\", \"translated_query_coverage_threshold\": \"90.0\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "55c0c343-cd17-4387-ad0c-98f7296ce4d3", + "when": null, + "workflow_outputs": [ + { + "label": "HUMAnN on input dataset(s): Pathways and their abundance", + "output_name": "pathabundance_tsv", + "uuid": "65797303-6f12-4ae8-9511-1af40f52e71d" + }, + { + "label": "HUMAnN on input dataset(s): Pathways and their coverage", + "output_name": "pathcoverage_tsv", + "uuid": "5cae6935-448b-4af9-ad78-7b17490e4d4a" + }, + { + "label": "HUMAnN on input dataset(s): Log", + "output_name": "log", + "uuid": "60492d72-7b3c-45c9-b32b-b6374ab08228" + }, + { + "label": "HUMAnN on input dataset(s): Gene families and their abundance", + "output_name": "gene_families_tsv", + "uuid": "ba124b0f-cbd5-4b65-b87a-84cfa578a927" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "gene_families_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Renormalize", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 763.955523091489, + "top": 692.8004929237138 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d7e9a3c41657", + "name": "humann_renorm_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"community\", \"special\": true, \"units\": \"relab\", \"update_snames\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "5acedbf2-ba06-46e6-a523-80f8e30daf55", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "55786a00-bad5-4220-83d7-1c968e226771" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 3, + "output_name": "pathabundance_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Renormalize", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 771.5, + "top": 888.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d7e9a3c41657", + "name": "humann_renorm_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"community\", \"special\": true, \"units\": \"relab\", \"update_snames\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "d159e4db-11a0-46f6-8768-63403832b633", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "625c63c2-beb0-4748-a48c-fdd7c4a37857" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 3, + "output_name": "gene_families_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Regroup", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1229.5, + "top": 535.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "79706f10d680", + "name": "humann_regroup_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"function\": \"sum\", \"grouping\": {\"type\": \"large\", \"__current_case__\": 1, \"grouping\": \"utility_mapping-full-map_go_uniref90-3.0.0-13052021\", \"reversed\": false}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"precision\": \"3\", \"protected\": true, \"ungrouped\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "310ec6f3-dc77-4717-83e6-114fb3076487", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e29c0333-b930-4118-beca-714040fbd306" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input_genes": { + "id": 4, + "output_name": "output" + }, + "input_pathways": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Unpack pathway abundances", + "name": "gene_mapping" + }, + { + "description": "runtime parameter for tool Unpack pathway abundances", + "name": "pathway_mapping" + } + ], + "label": null, + "name": "Unpack pathway abundances", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1123.5, + "top": 853.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "080ea153677c", + "name": "humann_unpack_pathways", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gene_mapping\": {\"__class__\": \"RuntimeValue\"}, \"input_genes\": {\"__class__\": \"ConnectedValue\"}, \"input_pathways\": {\"__class__\": \"ConnectedValue\"}, \"pathway_mapping\": {\"__class__\": \"RuntimeValue\"}, \"remove_taxonomy\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "8e8c27ba-19e7-4efb-a62e-33dc265126ad", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a0434c97-dc68-4cd2-8df5-8ab4c4b81069" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Rename features", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1498.5, + "top": 527.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "172920f67a84", + "name": "humann_rename_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"renaming\": {\"type\": \"advanced\", \"__current_case__\": 1, \"names\": \"utility_mapping-full-map_go_name-3.0.0-13052021\"}, \"simplify\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "a78010fe-9a42-40d5-bbbd-d06dc8e1ae37", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f9698996-d32a-443d-a72a-0d6538704e61" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Split a HUMAnN table", + "outputs": [ + { + "name": "stratified", + "type": "tabular" + }, + { + "name": "unstratified", + "type": "tabular" + } + ], + "position": { + "left": 1505, + "top": 724.7369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "64bc7acc22a9", + "name": "humann_split_stratified_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "4ef4b37f-4d7f-4cfa-b2d4-2e3208fe8711", + "when": null, + "workflow_outputs": [ + { + "label": "Split a HUMAnN table on input dataset(s): Unstratified table", + "output_name": "unstratified", + "uuid": "1ff60d0a-4a64-44c0-8b6f-bbdfa8566a0c" + }, + { + "label": "Split a HUMAnN table on input dataset(s): Stratified table", + "output_name": "stratified", + "uuid": "6a65ee93-3a2e-4a81-94ff-35917396bdfa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "errors": null, + "id": 11, + "input_connections": { + "humann2_file": { + "id": 7, + "output_name": "outfile" + }, + "metaphlan2_file": { + "id": 2, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Combination of taxonomic and metabolic assignations for gene families", + "name": "Combine MetaPhlAn2 and HUMAnN2 outputs", + "outputs": [ + { + "name": "gene_families_output_file", + "type": "tabular" + } + ], + "position": { + "left": 1169.296670629776, + "top": 63.92767530080023 + }, + "post_job_actions": { + "RenameDatasetActiongene_families_output_file": { + "action_arguments": { + "newname": "Combined MetaPhlAn and HUMAnN output" + }, + "action_type": "RenameDatasetAction", + "output_name": "gene_families_output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "tool_shed_repository": { + "changeset_revision": "fdfb35745104", + "name": "combine_metaphlan2_humann2", + "owner": "bebatut", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"humann2_file\": {\"__class__\": \"ConnectedValue\"}, \"metaphlan2_file\": {\"__class__\": \"ConnectedValue\"}, \"type\": \"gene_families\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.0", + "type": "tool", + "uuid": "47c1c071-024b-44cd-8dab-f710a6875b2a", + "when": null, + "workflow_outputs": [ + { + "label": "Combine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances", + "output_name": "gene_families_output_file", + "uuid": "b34cf972-ec0c-4ecc-ab77-bd0e61d8a0e2" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1834.5, + "top": 431.23693839706976 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[CC\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "10a68751-aa7a-4b4b-895e-4b9d914c59e0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "7b244bf7-95d1-4161-828b-ecc3d5bd382b" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1826.8038463164564, + "top": 569.1619915272356 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[MF\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "1125e0a9-feb5-454b-b968-113e71dee688", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "67b596c7-61fe-4022-bc3c-4abc1af13e65" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1826.5, + "top": 728.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[BP\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "f5109f6b-7afb-4b1b-ae6c-f0cfe31ead27", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "566c91af-5779-445b-98ea-b72bc36f5e17" + } + ] + } + ], + "parent_id": "microbiome/metatranscriptomics-short", + "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Workflow 3: Functional Information", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow3-functional-information", + "tutorial_id": "metatranscriptomics-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics-short", + "wfname": "workflow3-functional-information", + "workflow": "workflow3_functional_information.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0" + ], + "workflowhub_id": "1084" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPredicted taxon relative abundances\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGene Family abundance\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPathway abundance\"]\n 3[label=\"Cut\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Renormalize\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Regroup\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Renormalize\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Replace\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Rename features\"]\n 5 -> 8 [label=\"output\"]\n 9[label=\"Split a HUMAnN table\"]\n 5 -> 9 [label=\"output\"]\n k7aba96f3164841268e58ca10cbd2e46d[color=lightseagreen,label=\"Output\\nSplit a HUMAnN table on input dataset(s): Stratified table\"]\n 9 -> k7aba96f3164841268e58ca10cbd2e46d\n k2c36dc3359814b2cb615a1677002e007[color=lightseagreen,label=\"Output\\nSplit a HUMAnN table on input dataset(s): Unstratified table\"]\n 9 -> k2c36dc3359814b2cb615a1677002e007\n 10[label=\"Unpack pathway abundances\"]\n 4 -> 10 [label=\"output\"]\n 6 -> 10 [label=\"output\"]\n 11[label=\"Combination of taxonomic and metabolic assignations for gene families\"]\n 7 -> 11 [label=\"outfile\"]\n 3 -> 11 [label=\"out_file1\"]\n k46161015b2db4241846e27dd803b0fb3[color=lightseagreen,label=\"Output\\nCombine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances\"]\n 11 -> k46161015b2db4241846e27dd803b0fb3\n 12[label=\"Select\"]\n 8 -> 12 [label=\"output\"]\n 13[label=\"Select\"]\n 8 -> 13 [label=\"output\"]\n 14[label=\"Select\"]\n 8 -> 14 [label=\"output\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Predicted taxon relative abundances" + } + ], + "label": "Predicted taxon relative abundances", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 315.16828885381835 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "37e23d2f-315d-4260-ad1e-82fd98fb9ab4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Gene Family abundance" + } + ], + "label": "Gene Family abundance", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 364.53758261044254, + "top": 523.1616834301867 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f5151f5e-cf41-42c2-b919-dd255128a91a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Pathway abundance" + } + ], + "label": "Pathway abundance", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 372.53758261044254, + "top": 736.1616834301867 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "dd5c4959-60ba-42f7-830c-cb88817abee3", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPredicted taxon relative abundances\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGene Family abundance\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nPathway abundance\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Cut\"];\n 0 -->|output| 3;\n 4[\"Renormalize\"];\n 1 -->|output| 4;\n 5[\"Regroup\"];\n 1 -->|output| 5;\n 6[\"Renormalize\"];\n 2 -->|output| 6;\n 7[\"Replace\"];\n 4 -->|output| 7;\n 8[\"Rename features\"];\n 5 -->|output| 8;\n 9[\"Split a HUMAnN table\"];\n 5 -->|output| 9;\n 7aba96f3-1648-4126-8e58-ca10cbd2e46d[\"Output\\nSplit a HUMAnN table on input dataset(s): Stratified table\"];\n 9 --> 7aba96f3-1648-4126-8e58-ca10cbd2e46d;\n style 7aba96f3-1648-4126-8e58-ca10cbd2e46d stroke:#2c3143,stroke-width:4px;\n 2c36dc33-5981-4b2c-b615-a1677002e007[\"Output\\nSplit a HUMAnN table on input dataset(s): Unstratified table\"];\n 9 --> 2c36dc33-5981-4b2c-b615-a1677002e007;\n style 2c36dc33-5981-4b2c-b615-a1677002e007 stroke:#2c3143,stroke-width:4px;\n 10[\"Unpack pathway abundances\"];\n 4 -->|output| 10;\n 6 -->|output| 10;\n 11[\"Combination of taxonomic and metabolic assignations for gene families\"];\n 7 -->|outfile| 11;\n 3 -->|out_file1| 11;\n 46161015-b2db-4241-846e-27dd803b0fb3[\"Output\\nCombine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances\"];\n 11 --> 46161015-b2db-4241-846e-27dd803b0fb3;\n style 46161015-b2db-4241-846e-27dd803b0fb3 stroke:#2c3143,stroke-width:4px;\n 12[\"Select\"];\n 8 -->|output| 12;\n 13[\"Select\"];\n 8 -->|output| 13;\n 14[\"Select\"];\n 8 -->|output| 14;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 3: Functional Information (quick)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Renormalize", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 713.0375826104425, + "top": 513.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "12fb63b5f63f", + "name": "humann_renorm_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"community\", \"special\": true, \"units\": \"relab\", \"update_snames\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "5acedbf2-ba06-46e6-a523-80f8e30daf55", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "51ae4a6e-63ee-421f-af51-4d9b0bb991f6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.7+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Regroup", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 716.0375826104425, + "top": 871.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "31c6d107e7a5", + "name": "humann_regroup_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"function\": \"sum\", \"grouping\": {\"type\": \"large\", \"__current_case__\": 1, \"grouping\": \"utility_mapping-full-map_go_uniref90-3.0.0-13052021\", \"reversed\": false}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"precision\": \"3\", \"protected\": true, \"ungrouped\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "310ec6f3-dc77-4717-83e6-114fb3076487", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "03ae9297-6ca4-4f7a-a005-f746d1b3f26b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Renormalize", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 717.5297477726888, + "top": 699.1556905832321 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "12fb63b5f63f", + "name": "humann_renorm_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"community\", \"special\": true, \"units\": \"relab\", \"update_snames\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "d159e4db-11a0-46f6-8768-63403832b633", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b1e97a44-0d83-43eb-995a-94864b3a06e3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.7+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Rename features", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1038.0375826104425, + "top": 884.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "714d5a28cc5c", + "name": "humann_rename_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"renaming\": {\"type\": \"advanced\", \"__current_case__\": 1, \"names\": \"utility_mapping-full-map_go_name-3.0.0-13052021\"}, \"simplify\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "a78010fe-9a42-40d5-bbbd-d06dc8e1ae37", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d4defac8-a48e-4b36-a2ba-cb805d3e1d38" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.7+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Split a HUMAnN table", + "outputs": [ + { + "name": "stratified", + "type": "tabular" + }, + { + "name": "unstratified", + "type": "tabular" + } + ], + "position": { + "left": 1036.5375826104425, + "top": 1063.1616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6fcb8ac37a3e", + "name": "humann_split_stratified_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "331936ad-6037-4cf7-a8f3-5ac066214899", + "when": null, + "workflow_outputs": [ + { + "label": "Split a HUMAnN table on input dataset(s): Stratified table", + "output_name": "stratified", + "uuid": "7aba96f3-1648-4126-8e58-ca10cbd2e46d" + }, + { + "label": "Split a HUMAnN table on input dataset(s): Unstratified table", + "output_name": "unstratified", + "uuid": "2c36dc33-5981-4b2c-b615-a1677002e007" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.7+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "input_genes": { + "id": 4, + "output_name": "output" + }, + "input_pathways": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Unpack pathway abundances", + "name": "gene_mapping" + }, + { + "description": "runtime parameter for tool Unpack pathway abundances", + "name": "pathway_mapping" + } + ], + "label": null, + "name": "Unpack pathway abundances", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1018.0375826104425, + "top": 510.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5e5a999ffaa9", + "name": "humann_unpack_pathways", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gene_mapping\": {\"__class__\": \"RuntimeValue\"}, \"input_genes\": {\"__class__\": \"ConnectedValue\"}, \"input_pathways\": {\"__class__\": \"ConnectedValue\"}, \"pathway_mapping\": {\"__class__\": \"RuntimeValue\"}, \"remove_taxonomy\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "8e8c27ba-19e7-4efb-a62e-33dc265126ad", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9d595334-d192-4cfb-85f4-82a210ad4d6e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "errors": null, + "id": 11, + "input_connections": { + "humann2_file": { + "id": 7, + "output_name": "outfile" + }, + "metaphlan2_file": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Combination of taxonomic and metabolic assignations for gene families", + "name": "Combine MetaPhlAn2 and HUMAnN2 outputs", + "outputs": [ + { + "name": "gene_families_output_file", + "type": "tabular" + } + ], + "position": { + "left": 1287.220433609576, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActiongene_families_output_file": { + "action_arguments": { + "newname": "Combined MetaPhlAn and HUMAnN output" + }, + "action_type": "RenameDatasetAction", + "output_name": "gene_families_output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "tool_shed_repository": { + "changeset_revision": "fdfb35745104", + "name": "combine_metaphlan2_humann2", + "owner": "bebatut", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"humann2_file\": {\"__class__\": \"ConnectedValue\"}, \"metaphlan2_file\": {\"__class__\": \"ConnectedValue\"}, \"type\": \"gene_families\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.0", + "type": "tool", + "uuid": "47c1c071-024b-44cd-8dab-f710a6875b2a", + "when": null, + "workflow_outputs": [ + { + "label": "Combine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances", + "output_name": "gene_families_output_file", + "uuid": "46161015-b2db-4241-846e-27dd803b0fb3" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1338.0375826104425, + "top": 748.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[CC\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "10a68751-aa7a-4b4b-895e-4b9d914c59e0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "44a7dc34-b166-4b06-a937-dee12b2690be" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1345.0375826104425, + "top": 915.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[MF\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "1125e0a9-feb5-454b-b968-113e71dee688", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "dc867f18-b3e3-4083-9839-0cd83cdadfce" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1342.0375826104425, + "top": 1089.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[BP\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "f5109f6b-7afb-4b1b-ae6c-f0cfe31ead27", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "7eab47aa-ec05-47a0-af54-6d0b28724ee9" + } + ] + } + ], + "parent_id": "microbiome/metatranscriptomics-short", + "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information_quick.ga", + "tags": [ + "asaim", + "metagenomics" + ], + "test_results": null, + "tests": true, + "title": "Workflow 3: Functional Information (quick)", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow3-functional-information-quick", + "tutorial_id": "metatranscriptomics-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information_quick.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information_quick.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics-short", + "wfname": "workflow3-functional-information-quick", + "workflow": "workflow3_functional_information_quick.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.7+galaxy0" + ], + "workflowhub_id": "1080" + } + ], + "zenodo_link": "https://zenodo.org/record/4776250" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "checkm_lineage_wf", + "owner": "iuc", + "revisions": "f0107b9f2dc3", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "megahit", + "owner": "iuc", + "revisions": "14ddfc8ffb93", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: checkm_lineage_wf\n owner: iuc\n revisions: f0107b9f2dc3\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: megahit\n owner: iuc\n revisions: 14ddfc8ffb93\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-binning/tutorial.json", + "contributions": { + "authorship": [ + "npechl", + "fpsom" + ] + }, + "contributors": [ + { + "affiliations": [ + "inab-certh" + ], + "elixir_node": "gr", + "id": "npechl", + "joined": "2023-05", + "linkedin": "npechl", + "name": "Nikos Pechlivanis", + "orcid": "0000-0003-2502-612X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/npechl/", + "twitter": "npechl", + "url": "https://training.galaxyproject.org/training-material/api/contributors/npechl.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + } + ], + "dir": "topics/microbiome/tutorials/metagenomics-binning", + "edam_ontology": [ + "topic_3174", + "topic_0196" + ], + "edam_operation": [ + "Sequence composition calculation", + "Statistical calculation", + "Genome assembly", + "Validation", + "Sequence assembly validation", + "Sequencing quality control" + ], + "edam_topic": [ + "Metagenomics", + "Sequence assembly" + ], + "exact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "extra": { + "zenodo_link_results": "https://zenodo.org/record/7845138" + }, + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/metagenomics-binning", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Metagenomics binning is a computational approach to grouping together DNA sequences from a mixed microbial sample into metagenome-assembled genomes (MAGs)", + "The metagenomics binning workflow involves several steps, including preprocessing of raw sequencing data, assembly of sequencing reads into contigs, binning of contigs into MAGs, quality assessment of MAGs, and annotation of functional genes and metabolic pathways in MAGs", + "The quality and completeness of MAGs can be evaluated using standard metrics, such as completeness, contamination, and genome size", + "Metagenomics binning can be used to gain insights into the composition, diversity, and functional potential of microbial communities, and can be applied to a range of research areas, such as human health, environmental microbiology, and biotechnology" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "objectives": [ + "Describe what metagenomics binning is", + "Describe common problems in metagenomics binning", + "What software tools are available for metagenomics binning", + "Binning of contigs into metagenome-assembled genomes (MAGs) using MetaBAT 2 software", + "Evaluation of MAG quality and completeness using CheckM software" + ], + "pageviews": 2197, + "pub_date": "2023-12-05", + "questions": [ + "What is metagenomic binning refers to?", + "Which tools should be used for metagenomic binning?", + "How to assess the quality of metagenomic data binning?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metagenomics-binning/tutorial", + "/short/microbiome/metagenomics-binning", + "/short/T00377", + "/short/T00387" + ], + "short_id": "T00387", + "short_tools": [ + "megahit", + "checkm_lineage_wf" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "binning", + "metagenomics", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Binning of metagenomic sequencing data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/checkm_lineage_wf/checkm_lineage_wf/1.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metagenomics-binning", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-binning/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-binning/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-binning/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 88, + "visitors": 1806, + "zenodo_link": "https://zenodo.org/record/7818827" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.json", + "contributions": { + "authorship": [ + "qiime2" + ] + }, + "contributors": [ + { + "avatar": "https://avatars.githubusercontent.com/u/18176583?s=200&v=4", + "id": "qiime2", + "name": "QIIME2", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/qiime2/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/qiime2.json" + } + ], + "dir": "topics/microbiome/tutorials/qiime2-moving-pictures", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": "external", + "hands_on_url": "https://docs.qiime2.org/2024.2/tutorials/moving-pictures-usage", + "id": "microbiome/qiime2-moving-pictures", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "pageviews": 183, + "pub_date": "2024-03-14", + "short_id": "T00427", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metagenomics", + "taxonomic profiling", + "diversity", + "microgalaxy" + ], + "time_estimation": "10H", + "title": "QIIME 2 Moving Pictures", + "tools": [], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "qiime2-moving-pictures", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 210, + "visitors": 122 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.json", + "contributions": { + "authorship": [ + "qiime2" + ] + }, + "contributors": [ + { + "avatar": "https://avatars.githubusercontent.com/u/18176583?s=200&v=4", + "id": "qiime2", + "name": "QIIME2", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/qiime2/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/qiime2.json" + } + ], + "dir": "topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": "external", + "hands_on_url": "https://docs.qiime2.org/jupyterbooks/cancer-microbiome-intervention-tutorial/index.html#", + "id": "microbiome/qiime2-cancer-microbiome-intervention", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "pageviews": 245, + "pub_date": "2024-02-12", + "short_id": "T00412", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "taxonomic profiling", + "diversity", + "microgalaxy" + ], + "time_estimation": "10H", + "title": "QIIME 2 Cancer Microbiome Intervention", + "tools": [], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "qiime2-cancer-microbiome-intervention", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 156, + "visitors": 136 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "xy_plot", + "owner": "devteam", + "revisions": "ecb437f1d298", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_chimera_vsearch", + "owner": "iuc", + "revisions": "12e856482d26", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_otu", + "owner": "iuc", + "revisions": "ff1bc0299372", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_seqs", + "owner": "iuc", + "revisions": "09bf9e496c64", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster", + "owner": "iuc", + "revisions": "6366f4483b35", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster_split", + "owner": "iuc", + "revisions": "19f45bdbffd9", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_groups", + "owner": "iuc", + "revisions": "dc3826bfc1ed", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_seqs", + "owner": "iuc", + "revisions": "ffee46220ddd", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_dist_seqs", + "owner": "iuc", + "revisions": "4d76fba83f24", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_dist_shared", + "owner": "iuc", + "revisions": "418100660ba3", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_filter_seqs", + "owner": "iuc", + "revisions": "3524ca06478e", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_heatmap_sim", + "owner": "iuc", + "revisions": "7f5707dd6073", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_shared", + "owner": "iuc", + "revisions": "d0967ae326be", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_pre_cluster", + "owner": "iuc", + "revisions": "6532c3424bfe", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_rarefaction_single", + "owner": "iuc", + "revisions": "47264675a4ea", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_groups", + "owner": "iuc", + "revisions": "498dc0671d9e", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_lineage", + "owner": "iuc", + "revisions": "947faa8b3205", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_seqs", + "owner": "iuc", + "revisions": "d38f2ac5db71", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_screen_seqs", + "owner": "iuc", + "revisions": "63b74bfc8052", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_sub_sample", + "owner": "iuc", + "revisions": "67cb43432196", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_seqs", + "owner": "iuc", + "revisions": "600c14c6dcc5", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_single", + "owner": "iuc", + "revisions": "2344ed181ae6", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_tree_shared", + "owner": "iuc", + "revisions": "8bca555fbcaf", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_unique_seqs", + "owner": "iuc", + "revisions": "a033f325ad8d", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_venn", + "owner": "iuc", + "revisions": "4db54b1c1d83", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "newick_utils", + "owner": "iuc", + "revisions": "b4163d2f64ab", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: xy_plot\n owner: devteam\n revisions: ecb437f1d298\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_chimera_vsearch\n owner: iuc\n revisions: 12e856482d26\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_otu\n owner: iuc\n revisions: ff1bc0299372\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_seqs\n owner: iuc\n revisions: '09bf9e496c64'\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster\n owner: iuc\n revisions: 6366f4483b35\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster_split\n owner: iuc\n revisions: 19f45bdbffd9\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_groups\n owner: iuc\n revisions: dc3826bfc1ed\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_seqs\n owner: iuc\n revisions: ffee46220ddd\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_dist_seqs\n owner: iuc\n revisions: 4d76fba83f24\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_dist_shared\n owner: iuc\n revisions: 418100660ba3\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_filter_seqs\n owner: iuc\n revisions: 3524ca06478e\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_heatmap_sim\n owner: iuc\n revisions: 7f5707dd6073\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_shared\n owner: iuc\n revisions: d0967ae326be\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_pre_cluster\n owner: iuc\n revisions: 6532c3424bfe\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_rarefaction_single\n owner: iuc\n revisions: 47264675a4ea\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_groups\n owner: iuc\n revisions: 498dc0671d9e\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_lineage\n owner: iuc\n revisions: 947faa8b3205\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_seqs\n owner: iuc\n revisions: d38f2ac5db71\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_screen_seqs\n owner: iuc\n revisions: 63b74bfc8052\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_sub_sample\n owner: iuc\n revisions: 67cb43432196\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_seqs\n owner: iuc\n revisions: 600c14c6dcc5\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_single\n owner: iuc\n revisions: 2344ed181ae6\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_tree_shared\n owner: iuc\n revisions: 8bca555fbcaf\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_unique_seqs\n owner: iuc\n revisions: a033f325ad8d\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_venn\n owner: iuc\n revisions: 4db54b1c1d83\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: newick_utils\n owner: iuc\n revisions: b4163d2f64ab\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + } + ], + "dir": "topics/microbiome/tutorials/mothur-miseq-sop-short", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Sequencing quality control", + "Phylogenetic tree reconstruction", + "Phylogenetic tree generation", + "DNA barcoding", + "Sequence read processing", + "Taxonomic classification", + "Phylogenetic analysis", + "Sequence clustering", + "Phylogenetic tree analysis", + "Visualisation" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/mothur-miseq-sop-short", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "16S rRNA gene sequencing analysis results depend on the many algorithms used and their settings", + "Quality control and cleaning of your data is a crucial step in order to obtain optimal results", + "Adding a mock community to serve as a control sample can help you asses the error rate of your experimental setup", + "We can explore alpha and beta diversities using Krona and Phinch for dynamic visualizations" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Analyze of 16S rRNA sequencing data using the mothur toolsuite in Galaxy", + "Using a mock community to assess the error rate of your sequencing experiment", + "Visualize sample diversity using Krona and Phinch" + ], + "pageviews": 3346, + "priority": 1000, + "pub_date": "2019-05-13", + "questions": [ + "What is the effect of normal variation in the gut microbiome on host health?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2023-05-19", + "galaxy_version": "23.01", + "length": "1H37M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "CGSBeCW3rpA" + }, + { + "archive-id": "smorgasbord2023", + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "description": "This recording was created as part of the Sm\u00f6rg\u00e5sbord 2023 event.", + "galaxy_version": "21.01", + "length": "1H40M", + "speakers": [ + "shiltemann" + ], + "type": "Lecture & Tutorial", + "youtube_id": "mto4Nl-q7Kk" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/mothur-miseq-sop-short/tutorial", + "/short/microbiome/mothur-miseq-sop-short", + "/short/T00206", + "/short/T00391" + ], + "short_id": "T00391", + "short_tools": [ + "mothur_rarefaction_single", + "mothur_count_groups", + "mothur_dist_shared", + "mothur_pre_cluster", + "mothur_remove_lineage", + "mothur_filter_seqs", + "newick_display", + "mothur_heatmap_sim", + "mothur_sub_sample", + "mothur_dist_seqs", + "mothur_count_seqs", + "mothur_summary_seqs", + "mothur_remove_seqs", + "collapse_dataset", + "mothur_chimera_vsearch", + "mothur_tree_shared", + "mothur_cluster_split", + "mothur_screen_seqs", + "mothur_venn", + "mothur_unique_seqs", + "mothur_classify_otu", + "mothur_cluster", + "mothur_remove_groups", + "XY_Plot_1", + "mothur_make_shared", + "mothur_summary_single", + "mothur_classify_seqs" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "microgalaxy" + ], + "time_estimation": "2h", + "title": "16S Microbial Analysis with mothur (short)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_shared/mothur_dist_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mothur-miseq-sop-short", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 2, + "video_view": 10088, + "visit_duration": 346, + "visitors": 1833, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nContigs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGroups\"]\n 2[label=\"Summary.seqs\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Screen.seqs\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Summary.seqs\"]\n 3 -> 4 [label=\"fasta_out\"]\n 5[label=\"Unique.seqs\"]\n 3 -> 5 [label=\"fasta_out\"]\n 6[label=\"Count.seqs\"]\n 3 -> 6 [label=\"groups_out\"]\n 5 -> 6 [label=\"out_names\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Contigs" + } + ], + "label": "Contigs", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 239.8000030517578, + "height": 61.80000305175781, + "left": 313, + "right": 513, + "top": 178, + "width": 200, + "x": 313, + "y": 178 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "575ac02e-83e2-4b10-88af-6016b2ad0117", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Groups" + } + ], + "label": "Groups", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 570.8000030517578, + "height": 61.80000305175781, + "left": 323, + "right": 523, + "top": 509, + "width": 200, + "x": 323, + "y": 509 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "f6d83f4e-630a-4022-b300-e1a953c1b737", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nContigs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGroups\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Summary.seqs\"];\n 0 -->|output| 2;\n 3[\"Screen.seqs\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Summary.seqs\"];\n 3 -->|fasta_out| 4;\n 5[\"Unique.seqs\"];\n 3 -->|fasta_out| 5;\n 6[\"Count.seqs\"];\n 3 -->|groups_out| 6;\n 5 -->|out_names| 6;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 1: Quality Control [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 2, + "input_connections": { + "fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "bottom": 361.5, + "height": 266, + "left": 631, + "right": 831, + "top": 95.5, + "width": 200, + "x": 631, + "y": 95.5 + }, + "post_job_actions": { + "HideDatasetActionout_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": null, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": null, \"savelog\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "b289d19e-f8bd-4803-88a0-e41335c11d7a", + "workflow_outputs": [ + { + "label": null, + "output_name": "logfile", + "uuid": "09eb6090-e79e-44a7-bf2b-52c217a29c8f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "errors": null, + "id": 3, + "input_connections": { + "fasta": { + "id": 0, + "output_name": "output" + }, + "groups": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Screen.seqs", + "outputs": [ + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "bad_accnos", + "type": "mothur.accnos" + }, + { + "name": "groups_out", + "type": "mothur.groups" + }, + { + "name": "alignreport_out", + "type": "mothur.align.report" + }, + { + "name": "contigsreport_out", + "type": "tabular" + } + ], + "position": { + "bottom": 1128.5, + "height": 642, + "left": 632, + "right": 832, + "top": 486.5, + "width": 200, + "x": 632, + "y": 486.5 + }, + "post_job_actions": { + "HideDatasetActionalignreport_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignreport_out" + }, + "HideDatasetActioncontigsreport_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "contigsreport_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "tool_shed_repository": { + "changeset_revision": "63b74bfc8052", + "name": "mothur_screen_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"alignrep\": {\"usealign\": \"no\", \"__current_case__\": 1}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contigsrep\": {\"usecontigs\": \"no\", \"__current_case__\": 1}, \"count\": null, \"criteria\": \"-1\", \"end\": \"-1\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"groups\": {\"__class__\": \"ConnectedValue\"}, \"maxambig\": \"0\", \"maxhomop\": \"-1\", \"maxlength\": \"275\", \"minlength\": \"10\", \"names\": null, \"optimize\": null, \"qfile\": null, \"savelog\": \"false\", \"start\": \"-1\", \"summary\": null, \"taxonomy\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.1", + "type": "tool", + "uuid": "ad7d2c58-0b4d-4e3c-bb46-bfb496424b12", + "workflow_outputs": [ + { + "label": null, + "output_name": "groups_out", + "uuid": "3361a236-0e72-4844-9956-5200e2b01252" + }, + { + "label": null, + "output_name": "fasta_out", + "uuid": "c70b5192-b093-40ff-a912-bb8deff20670" + }, + { + "label": null, + "output_name": "bad_accnos", + "uuid": "71c67258-d5e3-4c63-ad49-d01e54cb56cf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "fasta": { + "id": 3, + "output_name": "fasta_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Summary.seqs", + "name": "count" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "name" + } + ], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "bottom": 393, + "height": 266, + "left": 959, + "right": 1159, + "top": 127, + "width": 200, + "x": 959, + "y": 127 + }, + "post_job_actions": { + "HideDatasetActionout_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"count\": {\"__class__\": \"RuntimeValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": {\"__class__\": \"RuntimeValue\"}, \"savelog\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "f7268117-2f00-48d7-aed0-cc3e149db198", + "workflow_outputs": [ + { + "label": null, + "output_name": "logfile", + "uuid": "b4abf87f-39ec-4d17-8e93-5a2a473dab74" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "fasta": { + "id": 3, + "output_name": "fasta_out" + } + }, + "inputs": [], + "label": null, + "name": "Unique.seqs", + "outputs": [ + { + "name": "out_fasta", + "type": "input" + }, + { + "name": "out_names", + "type": "mothur.names" + } + ], + "position": { + "bottom": 850.1000061035156, + "height": 235.60000610351562, + "left": 1009, + "right": 1209, + "top": 614.5, + "width": 200, + "x": 1009, + "y": 614.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "d466580cd706", + "name": "mothur_unique_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"format\": \"name\", \"names\": null, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "3256bd7b-b98f-4248-90ae-c5e73704f418", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_fasta", + "uuid": "10d11427-086d-47fe-aee9-ac5d1bae3191" + }, + { + "label": null, + "output_name": "out_names", + "uuid": "2bde74d8-08ef-4bd6-b54f-138c0d4d365f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "grouping|group": { + "id": 3, + "output_name": "groups_out" + }, + "name": { + "id": 5, + "output_name": "out_names" + } + }, + "inputs": [], + "label": null, + "name": "Count.seqs", + "outputs": [ + { + "name": "seq_count", + "type": "mothur.count_table" + } + ], + "position": { + "bottom": 556.6999969482422, + "height": 205.1999969482422, + "left": 1292, + "right": 1492, + "top": 351.5, + "width": 200, + "x": 1292, + "y": 351.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "7a6f9c899221", + "name": "mothur_count_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"grouping\": {\"use\": \"yes\", \"__current_case__\": 0, \"group\": {\"__class__\": \"ConnectedValue\"}, \"groups\": null}, \"name\": {\"__class__\": \"ConnectedValue\"}, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "51efceca-f05a-4f3f-af6b-693a14b26048", + "workflow_outputs": [ + { + "label": null, + "output_name": "seq_count", + "uuid": "5ffc59a1-8b3f-4b09-982d-332411f16919" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow1_quality_control.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 1: Quality Control [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow1-quality-control", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow1_quality_control.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow1_quality_control.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow1-quality-control", + "workflow": "workflow1_quality_control.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0" + ], + "workflowhub_id": "1121" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAligned Sequences\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCount Table\"]\n 2[label=\"Summary.seqs\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Screen.seqs\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Filter.seqs\"]\n 3 -> 4 [label=\"fasta_out\"]\n 5[label=\"Unique.seqs\"]\n 4 -> 5 [label=\"filteredfasta\"]\n 3 -> 5 [label=\"count_out\"]\n 6[label=\"Pre.cluster\"]\n 5 -> 6 [label=\"out_fasta\"]\n 5 -> 6 [label=\"out_count\"]\n 7[label=\"Summary.seqs\"]\n 6 -> 7 [label=\"count_out\"]\n 6 -> 7 [label=\"fasta_out\"]\n ka0bbcba140f946789c478bdb4e0b7f6d[color=lightseagreen,label=\"Output\\nSummary.seqs on input dataset(s): summary\"]\n 7 -> ka0bbcba140f946789c478bdb4e0b7f6d\n 8[label=\"Chimera.vsearch\"]\n 6 -> 8 [label=\"fasta_out\"]\n 6 -> 8 [label=\"count_out\"]\n 9[label=\"Remove.seqs\"]\n 8 -> 9 [label=\"out_accnos\"]\n 8 -> 9 [label=\"out_count\"]\n 6 -> 9 [label=\"fasta_out\"]\n 10[label=\"Summary.seqs\"]\n 9 -> 10 [label=\"count_out\"]\n 9 -> 10 [label=\"fasta_out\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Aligned Sequences" + } + ], + "label": "Aligned Sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2, + "top": 262 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f08168dd-1a9a-4a0e-b1c9-006610590496", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Count Table" + } + ], + "label": "Count Table", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 591 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4f0b07a6-cc5f-40ed-bab5-37d7a3c6c59e", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAligned Sequences\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCount Table\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Summary.seqs\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Screen.seqs\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 4[\"Filter.seqs\"];\n 3 -->|fasta_out| 4;\n 5[\"Unique.seqs\"];\n 4 -->|filteredfasta| 5;\n 3 -->|count_out| 5;\n 6[\"Pre.cluster\"];\n 5 -->|out_fasta| 6;\n 5 -->|out_count| 6;\n 7[\"Summary.seqs\"];\n 6 -->|count_out| 7;\n 6 -->|fasta_out| 7;\n a0bbcba1-40f9-4678-9c47-8bdb4e0b7f6d[\"Output\\nSummary.seqs on input dataset(s): summary\"];\n 7 --> a0bbcba1-40f9-4678-9c47-8bdb4e0b7f6d;\n style a0bbcba1-40f9-4678-9c47-8bdb4e0b7f6d stroke:#2c3143,stroke-width:4px;\n 8[\"Chimera.vsearch\"];\n 6 -->|fasta_out| 8;\n 6 -->|count_out| 8;\n 9[\"Remove.seqs\"];\n 8 -->|out_accnos| 9;\n 8 -->|out_count| 9;\n 6 -->|fasta_out| 9;\n 10[\"Summary.seqs\"];\n 9 -->|count_out| 10;\n 9 -->|fasta_out| 10;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 2: Data Cleaning And Chimera Removal [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 2, + "input_connections": { + "count": { + "id": 1, + "output_name": "output" + }, + "fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "left": 301, + "top": 96.5 + }, + "post_job_actions": { + "HideDatasetActionout_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": null, \"savelog\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "0c5f9992-1de0-45bc-959e-b8965f499294", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "logfile", + "uuid": "3fee996b-77af-4338-95b6-f2b53233ca79" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "errors": null, + "id": 3, + "input_connections": { + "count": { + "id": 1, + "output_name": "output" + }, + "fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Screen.seqs", + "outputs": [ + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "bad_accnos", + "type": "mothur.accnos" + }, + { + "name": "alignreport_out", + "type": "mothur.align.report" + }, + { + "name": "contigsreport_out", + "type": "tabular" + }, + { + "name": "count_out", + "type": "mothur.count_table" + } + ], + "position": { + "left": 315, + "top": 430.5 + }, + "post_job_actions": { + "HideDatasetActionalignreport_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignreport_out" + }, + "HideDatasetActioncontigsreport_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "contigsreport_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "tool_shed_repository": { + "changeset_revision": "63b74bfc8052", + "name": "mothur_screen_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"alignrep\": {\"usealign\": \"no\", \"__current_case__\": 1}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contigsrep\": {\"usecontigs\": \"no\", \"__current_case__\": 1}, \"count\": {\"__class__\": \"ConnectedValue\"}, \"criteria\": \"-1\", \"end\": \"11550\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"groups\": null, \"maxambig\": \"-1\", \"maxhomop\": \"8\", \"maxlength\": \"-1\", \"minlength\": \"10\", \"names\": null, \"optimize\": null, \"qfile\": null, \"savelog\": false, \"start\": \"1968\", \"summary\": null, \"taxonomy\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.1", + "type": "tool", + "uuid": "2663c361-5494-4eca-bd57-ffbd2dbfae03", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "count_out", + "uuid": "c73cdf2e-9061-4e0b-ad9c-b88730d454f2" + }, + { + "label": null, + "output_name": "fasta_out", + "uuid": "74e9d7d4-3364-4e10-bb47-9f1531657198" + }, + { + "label": null, + "output_name": "bad_accnos", + "uuid": "759c0a32-df83-415e-8a9f-eee097817a6f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "fasta": { + "id": 3, + "output_name": "fasta_out" + } + }, + "inputs": [], + "label": null, + "name": "Filter.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_filter", + "type": "mothur.filter" + }, + { + "name": "filteredfasta", + "type": "fasta" + } + ], + "position": { + "left": 603, + "top": 272.5 + }, + "post_job_actions": { + "HideDatasetActionlogfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "logfile" + }, + "HideDatasetActionout_filter": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_filter" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "3524ca06478e", + "name": "mothur_filter_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"hard\": null, \"inputs\": [], \"savelog\": true, \"soft\": \"0\", \"trump\": \".\", \"vertical\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "e326b83b-5d1e-447a-8971-508f72f7b8de", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "filteredfasta", + "uuid": "c8809f97-ed35-409e-890f-ed45f534e81d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "fasta": { + "id": 4, + "output_name": "filteredfasta" + }, + "names": { + "id": 3, + "output_name": "count_out" + } + }, + "inputs": [], + "label": null, + "name": "Unique.seqs", + "outputs": [ + { + "name": "out_fasta", + "type": "input" + }, + { + "name": "out_count", + "type": "mothur.count_table" + } + ], + "position": { + "left": 882, + "top": 621.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "d466580cd706", + "name": "mothur_unique_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"format\": \"count\", \"names\": {\"__class__\": \"ConnectedValue\"}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "225cd752-6173-4e44-9b31-a1de097d3357", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_fasta", + "uuid": "efcff963-3961-4b12-857b-9191765f5ad5" + }, + { + "label": null, + "output_name": "out_count", + "uuid": "3e744fc6-4002-409c-b580-7a080263b39c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "fasta": { + "id": 5, + "output_name": "out_fasta" + }, + "name": { + "id": 5, + "output_name": "out_count" + } + }, + "inputs": [], + "label": null, + "name": "Pre.cluster", + "outputs": [ + { + "name": "map_out", + "type": "input" + }, + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "names_out", + "type": "mothur.names" + }, + { + "name": "count_out", + "type": "mothur.count_table" + } + ], + "position": { + "left": 1179, + "top": 74.5 + }, + "post_job_actions": { + "HideDatasetActionmap_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "map_out" + }, + "HideDatasetActionnames_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "names_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "05183ee20cf8", + "name": "mothur_pre_cluster", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"diffs\": \"2\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gapextend\": \"-1\", \"gapopen\": \"-2\", \"group\": null, \"match\": \"1\", \"mismatch\": \"-1\", \"name\": {\"__class__\": \"ConnectedValue\"}, \"savelog\": false, \"topdown\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "6f90be44-8355-4639-a4e6-9d5cc0df50f0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "fasta_out", + "uuid": "e06f7f73-b9d6-4314-bcc6-9e0889d0f701" + }, + { + "label": null, + "output_name": "count_out", + "uuid": "457b654e-4a7d-4fcd-84e2-def389e29fe6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 7, + "input_connections": { + "count": { + "id": 6, + "output_name": "count_out" + }, + "fasta": { + "id": 6, + "output_name": "fasta_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Summary.seqs", + "name": "name" + } + ], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "left": 1498, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"count\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": {\"__class__\": \"RuntimeValue\"}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "0ab1410f-0567-4266-9aac-9412c907da0d", + "when": null, + "workflow_outputs": [ + { + "label": "Summary.seqs on input dataset(s): summary", + "output_name": "out_summary", + "uuid": "a0bbcba1-40f9-4678-9c47-8bdb4e0b7f6d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "errors": null, + "id": 8, + "input_connections": { + "fasta": { + "id": 6, + "output_name": "fasta_out" + }, + "template|count": { + "id": 6, + "output_name": "count_out" + } + }, + "inputs": [], + "label": null, + "name": "Chimera.vsearch", + "outputs": [ + { + "name": "vsearch.chimeras", + "type": "txt" + }, + { + "name": "out_accnos", + "type": "mothur.accnos" + }, + { + "name": "out_count", + "type": "mothur.count_table" + } + ], + "position": { + "left": 1478, + "top": 636.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "tool_shed_repository": { + "changeset_revision": "12e856482d26", + "name": "mothur_chimera_vsearch", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dereplicate\": true, \"dn\": \"1.4\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"mindiffs\": \"3\", \"mindiv\": \"0.5\", \"minh\": \"0.3\", \"savelog\": false, \"template\": {\"source\": \"self\", \"__current_case__\": 2, \"abskew\": \"1.9\", \"group\": null, \"count\": {\"__class__\": \"ConnectedValue\"}}, \"xn\": \"8.0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.1", + "type": "tool", + "uuid": "d23b7636-fbcb-4346-992d-a79e8093d489", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_accnos", + "uuid": "c975f75e-71cc-45a8-a653-df3fdd56eb9b" + }, + { + "label": null, + "output_name": "out_count", + "uuid": "1657beb8-c142-47ca-ac8d-bf92a3b74273" + }, + { + "label": null, + "output_name": "vsearch.chimeras", + "uuid": "e3cb9259-e3b1-4870-b098-eeadc7e8f4c1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.39.5.0", + "errors": null, + "id": 9, + "input_connections": { + "accnos": { + "id": 8, + "output_name": "out_accnos" + }, + "count_in": { + "id": 8, + "output_name": "out_count" + }, + "fasta_in": { + "id": 6, + "output_name": "fasta_out" + } + }, + "inputs": [], + "label": null, + "name": "Remove.seqs", + "outputs": [ + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "count_out", + "type": "input" + } + ], + "position": { + "left": 1872, + "top": 231.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "5097ac2cbfc3", + "name": "mothur_remove_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"accnos\": {\"__class__\": \"ConnectedValue\"}, \"alignreport_in\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count_in\": {\"__class__\": \"ConnectedValue\"}, \"dups\": true, \"fasta_in\": {\"__class__\": \"ConnectedValue\"}, \"fastq_in\": null, \"group_in\": null, \"list_in\": null, \"name_in\": null, \"qfile_in\": null, \"savelog\": false, \"taxonomy_in\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "b9b21e24-7318-474b-a145-a3be83c7d09c", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "count_out", + "uuid": "8480daf7-266c-48fb-a4c7-2ff68313d6b6" + }, + { + "label": null, + "output_name": "fasta_out", + "uuid": "51c086db-4a7e-4128-9010-01a3b6f2621e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 10, + "input_connections": { + "count": { + "id": 9, + "output_name": "count_out" + }, + "fasta": { + "id": 9, + "output_name": "fasta_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Summary.seqs", + "name": "count" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "fasta" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "name" + } + ], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "left": 2298, + "top": 342 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"count\": {\"__class__\": \"RuntimeValue\"}, \"fasta\": {\"__class__\": \"RuntimeValue\"}, \"name\": {\"__class__\": \"RuntimeValue\"}, \"savelog\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "9a018d5e-23f7-46a7-ac83-a57bc2ddd9ac", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_summary", + "uuid": "f097e9a4-45a5-4168-a3bc-79ae4c0eb3d4" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow2_data_cleaning.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 2: Data Cleaning And Chimera Removal [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow2-data-cleaning", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow2_data_cleaning.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow2_data_cleaning.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow2-data-cleaning", + "workflow": "workflow2_data_cleaning.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0" + ], + "workflowhub_id": "1112" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCleaned Sequences\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCount Table\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTraining set FASTA\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTraining set Taxonomy\"]\n 4[label=\"Classify.seqs\"]\n 2 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"Remove.lineage\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"taxonomy_out\"]\n 6[label=\"Summary.seqs\"]\n 5 -> 6 [label=\"count_out\"]\n 5 -> 6 [label=\"fasta_out\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cleaned Sequences" + } + ], + "label": "Cleaned Sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 27, + "top": 123.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "817445c0-3b76-4949-bbed-34c88e2a0c59", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Count Table" + } + ], + "label": "Count Table", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 304.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7b43d972-886f-4aae-ab0e-2fd188655cbd", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Training set FASTA" + } + ], + "label": "Training set FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4, + "top": 515.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f2ee2034-e7ce-43b0-82c9-905c2dd0745c", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Training set Taxonomy" + } + ], + "label": "Training set Taxonomy", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 30, + "top": 694.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f1a29c9e-a70e-4d8c-b7b4-1236da5245a1", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nCleaned Sequences\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCount Table\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTraining set FASTA\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nTraining set Taxonomy\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Classify.seqs\"];\n 2 -->|output| 4;\n 1 -->|output| 4;\n 0 -->|output| 4;\n 3 -->|output| 4;\n 5[\"Remove.lineage\"];\n 1 -->|output| 5;\n 0 -->|output| 5;\n 4 -->|taxonomy_out| 5;\n 6[\"Summary.seqs\"];\n 5 -->|count_out| 6;\n 5 -->|fasta_out| 6;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 3: Classification [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "alignment|template": { + "id": 2, + "output_name": "output" + }, + "count": { + "id": 1, + "output_name": "output" + }, + "fasta": { + "id": 0, + "output_name": "output" + }, + "tax|taxonomy": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Classify.seqs", + "outputs": [ + { + "name": "taxonomy_out", + "type": "mothur.seq.taxonomy" + }, + { + "name": "tax_summary", + "type": "mothur.tax.summary" + }, + { + "name": "tree_sum", + "type": "tabular" + } + ], + "position": { + "left": 538, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "09bf9e496c64", + "name": "mothur_classify_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"alignment\": {\"source\": \"hist\", \"__current_case__\": 1, \"template\": {\"__class__\": \"ConnectedValue\"}}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"classify\": {\"method\": \"wang\", \"__current_case__\": 0, \"ksize\": \"8\", \"iters\": \"100\", \"cutoff\": \"80\", \"probs\": true}, \"count\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": null, \"output\": \"simple\", \"printlevel\": \"-1\", \"relabund\": false, \"savelog\": false, \"tax\": {\"source2\": \"hist\", \"__current_case__\": 1, \"taxonomy\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "d57e48c7-34ce-4742-8545-31b9d5c4a53d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "taxonomy_out", + "uuid": "dd10f8f4-a93e-46be-98d9-1e4d54b22fe0" + }, + { + "label": null, + "output_name": "tree_sum", + "uuid": "964cf5ca-6cb9-477f-8754-88f3bf048da9" + }, + { + "label": null, + "output_name": "tax_summary", + "uuid": "b3b100a8-87f2-4ddd-be9e-e7259399c15a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "count": { + "id": 1, + "output_name": "output" + }, + "fasta_in": { + "id": 0, + "output_name": "output" + }, + "file|taxonomy": { + "id": 4, + "output_name": "taxonomy_out" + } + }, + "inputs": [], + "label": null, + "name": "Remove.lineage", + "outputs": [ + { + "name": "taxonomy_out", + "type": "mothur.seq.taxonomy" + }, + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "count_out", + "type": "mothur.count_table" + } + ], + "position": { + "left": 781, + "top": 593 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "947faa8b3205", + "name": "mothur_remove_lineage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"alignreport_in\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": {\"__class__\": \"ConnectedValue\"}, \"dups\": true, \"fasta_in\": {\"__class__\": \"ConnectedValue\"}, \"file\": {\"filetype\": \"usetaxonomy\", \"__current_case__\": 0, \"taxonomy\": {\"__class__\": \"ConnectedValue\"}, \"taxons\": null}, \"group_in\": null, \"list_in\": null, \"name_in\": null, \"savelog\": false, \"taxon\": \"Chloroplast-Mitochondria-unknown-Archaea-Eukaryota\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "61870655-5bd1-45bc-a8fe-81b1cf8018a2", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "taxonomy_out", + "uuid": "cdca67a9-ef60-4162-b3ba-1e502f543fde" + }, + { + "label": null, + "output_name": "fasta_out", + "uuid": "7fabef22-b375-4615-8209-9e7f4685faba" + }, + { + "label": null, + "output_name": "count_out", + "uuid": "452deac5-f985-4702-9028-083b62cd42c6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "count": { + "id": 5, + "output_name": "count_out" + }, + "fasta": { + "id": 5, + "output_name": "fasta_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Summary.seqs", + "name": "count" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "fasta" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "name" + } + ], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "left": 1128.25, + "top": 788.0624885559082 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"count\": {\"__class__\": \"RuntimeValue\"}, \"fasta\": {\"__class__\": \"RuntimeValue\"}, \"name\": {\"__class__\": \"RuntimeValue\"}, \"savelog\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "c399d175-5b43-45b1-9916-f2f11f1cad25", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "logfile", + "uuid": "2ba6776c-d197-4804-9654-039b997986ce" + }, + { + "label": null, + "output_name": "out_summary", + "uuid": "b5e93d2a-6ff7-48bb-aa4e-5a58683910c8" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow3_classification.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 3: Classification [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow3-classification", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow3_classification.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow3_classification.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow3-classification", + "workflow": "workflow3_classification.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0" + ], + "workflowhub_id": "1060" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMock Count Table\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMock Sequences\"]\n 2[label=\"Dist.seqs\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Cluster\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"out_dist\"]\n 4[label=\"Make.shared\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"otulist\"]\n 5[label=\"Rarefaction.single\"]\n 4 -> 5 [label=\"shared\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mock Count Table" + } + ], + "label": "Mock Count Table", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 11 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3c149509-370a-47f2-9f6d-a0fadcd7c1b6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mock Sequences" + } + ], + "label": "Mock Sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 7, + "top": 259 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c020d492-fb13-43c7-85e3-faa820866965", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nMock Count Table\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nMock Sequences\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Dist.seqs\"];\n 1 -->|output| 2;\n 3[\"Cluster\"];\n 0 -->|output| 3;\n 2 -->|out_dist| 3;\n 4[\"Make.shared\"];\n 0 -->|output| 4;\n 3 -->|otulist| 4;\n 5[\"Rarefaction.single\"];\n 4 -->|shared| 5;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 4: Mock OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "errors": null, + "id": 2, + "input_connections": { + "fasta": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Dist.seqs", + "outputs": [ + { + "name": "out_dist", + "type": "mothur.pair.dist" + } + ], + "position": { + "left": 276, + "top": 319 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "0554c9338ca0", + "name": "mothur_dist_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"calc\": \"\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"countends\": true, \"cutoff\": \"0.2\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"output\": \"\", \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "925be8d7-7355-4a1d-b375-b27826e4cd2e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_dist", + "uuid": "28fe4e3d-5be8-47e8-9cd3-527e8657c391" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "errors": null, + "id": 3, + "input_connections": { + "count": { + "id": 0, + "output_name": "output" + }, + "matrix|dist": { + "id": 2, + "output_name": "out_dist" + } + }, + "inputs": [], + "label": null, + "name": "Cluster", + "outputs": [ + { + "name": "rabund", + "type": "mothur.rabund" + }, + { + "name": "sabund", + "type": "mothur.sabund" + }, + { + "name": "otulist", + "type": "mothur.list" + } + ], + "position": { + "left": 570, + "top": 189 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "528f950d1044", + "name": "mothur_cluster", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": {\"__class__\": \"ConnectedValue\"}, \"cutoff\": \"0.0\", \"matrix\": {\"format\": \"column\", \"__current_case__\": 0, \"dist\": {\"__class__\": \"ConnectedValue\"}, \"name\": null}, \"precision\": \"100\", \"savelog\": false, \"select_method\": {\"method\": \"opti\", \"__current_case__\": 5, \"metric\": \"mcc\", \"initialize\": \"singleton\", \"delta\": \"0.0001\", \"iters\": \"100\"}, \"sim\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "3f508523-34c1-420a-a0b6-2524b4d85b52", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "rabund", + "uuid": "5f143144-eb84-4f88-9f57-87154dc29671" + }, + { + "label": null, + "output_name": "otulist", + "uuid": "3e79d92c-11c6-48f5-a0c2-cbf747690b2e" + }, + { + "label": null, + "output_name": "sabund", + "uuid": "a698d39c-c469-4867-9450-f9d80446d99f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "intype|group": { + "id": 0, + "output_name": "output" + }, + "intype|otu": { + "id": 3, + "output_name": "otulist" + } + }, + "inputs": [], + "label": null, + "name": "Make.shared", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "shared", + "type": "mothur.shared" + }, + { + "name": "groupout", + "type": "mothur.groups" + } + ], + "position": { + "left": 898, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "0851ae17c58e", + "name": "mothur_make_shared", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"intype\": {\"infile\": \"otulist\", \"__current_case__\": 0, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"group\": {\"__class__\": \"ConnectedValue\"}, \"label\": [\"0.03\"], \"groups\": null}, \"savelog\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "72197339-b027-4c3e-85ba-edf401b82322", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "shared", + "uuid": "1d80db8c-04f6-45a0-a523-f87c7a4b87cf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "otu": { + "id": 4, + "output_name": "shared" + } + }, + "inputs": [], + "label": null, + "name": "Rarefaction.single", + "outputs": [ + { + "name": "rarefactioncurves", + "type": "input" + } + ], + "position": { + "left": 1172, + "top": 211 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "af521db77c56", + "name": "mothur_rarefaction_single", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"abund\": \"10\", \"calc\": [\"sobs\"], \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"freq\": \"100.0\", \"iters\": \"1000\", \"label\": null, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "6982780b-f8ac-4ff8-b862-29557494d9b4", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "rarefactioncurves", + "uuid": "cbf4d013-fa83-4bd9-9f97-1e3632362b36" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow4_mock_otu_clustering.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 4: Mock OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow4-mock-otu-clustering", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow4_mock_otu_clustering.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow4_mock_otu_clustering.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow4-mock-otu-clustering", + "workflow": "workflow4_mock_otu_clustering.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0" + ], + "workflowhub_id": "1125" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSequences\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCount Table\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTaxonomy\"]\n 3[label=\"Remove.groups\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Cluster.split\"]\n 3 -> 4 [label=\"fasta_out\"]\n 3 -> 4 [label=\"count_out\"]\n 3 -> 4 [label=\"taxonomy_out\"]\n 5[label=\"Make.shared\"]\n 3 -> 5 [label=\"count_out\"]\n 4 -> 5 [label=\"otulist\"]\n 6[label=\"Classify.otu\"]\n 3 -> 6 [label=\"count_out\"]\n 4 -> 6 [label=\"otulist\"]\n 3 -> 6 [label=\"taxonomy_out\"]\n 7[label=\"Count.groups\"]\n 5 -> 7 [label=\"shared\"]\n 8[label=\"Sub.sample\"]\n 5 -> 8 [label=\"shared\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sequences" + } + ], + "label": "Sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 16.300003051757812, + "height": 61.80000305175781, + "left": 116, + "right": 316, + "top": -45.5, + "width": 200, + "x": 116, + "y": -45.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9cdb4877-1fdf-41a7-8089-5f2ffcabbdda", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Count Table" + } + ], + "label": "Count Table", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 139.3000030517578, + "height": 61.80000305175781, + "left": 118, + "right": 318, + "top": 77.5, + "width": 200, + "x": 118, + "y": 77.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "c3ebf885-3d00-4db6-828b-8c9af54f77c7", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Taxonomy" + } + ], + "label": "Taxonomy", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 294.3000030517578, + "height": 61.80000305175781, + "left": 119, + "right": 319, + "top": 232.5, + "width": 200, + "x": 119, + "y": 232.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "2d1cebdc-28da-4686-8a5b-0043b34c9aac", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSequences\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCount Table\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTaxonomy\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Remove.groups\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 2 -->|output| 3;\n 4[\"Cluster.split\"];\n 3 -->|fasta_out| 4;\n 3 -->|count_out| 4;\n 3 -->|taxonomy_out| 4;\n 5[\"Make.shared\"];\n 3 -->|count_out| 5;\n 4 -->|otulist| 5;\n 6[\"Classify.otu\"];\n 3 -->|count_out| 6;\n 4 -->|otulist| 6;\n 3 -->|taxonomy_out| 6;\n 7[\"Count.groups\"];\n 5 -->|shared| 7;\n 8[\"Sub.sample\"];\n 5 -->|shared| 8;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 5: OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "errors": null, + "id": 3, + "input_connections": { + "groupnames|fasta_in": { + "id": 0, + "output_name": "output" + }, + "groupnames|group_in": { + "id": 1, + "output_name": "output" + }, + "groupnames|taxonomy_in": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + } + ], + "label": null, + "name": "Remove.groups", + "outputs": [ + { + "name": "list_out", + "type": "input" + }, + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "group_out", + "type": "mothur.groups" + }, + { + "name": "count_out", + "type": "mothur.count_table" + }, + { + "name": "name_out", + "type": "mothur.names" + }, + { + "name": "taxonomy_out", + "type": "mothur.seq.taxonomy" + }, + { + "name": "phylip_out", + "type": "input" + }, + { + "name": "column_out", + "type": "mothur.pair.dist" + } + ], + "position": { + "bottom": 1023.2999877929688, + "height": 916.7999877929688, + "left": 383, + "right": 583, + "top": 106.5, + "width": 200, + "x": 383, + "y": 106.5 + }, + "post_job_actions": { + "HideDatasetActionfasta_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fasta_out" + }, + "HideDatasetActionlist_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "list_out" + }, + "HideDatasetActionname_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "name_out" + }, + "HideDatasetActiontaxonomy_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "taxonomy_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "498dc0671d9e", + "name": "mothur_remove_groups", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"groupnames\": {\"source\": \"other\", \"__current_case__\": 0, \"group_in\": {\"__class__\": \"RuntimeValue\"}, \"groups\": \"Mock\", \"fasta_in\": {\"__class__\": \"RuntimeValue\"}, \"name_in\": {\"__class__\": \"RuntimeValue\"}, \"list_in\": {\"__class__\": \"RuntimeValue\"}, \"taxonomy_in\": {\"__class__\": \"RuntimeValue\"}, \"phylip_in\": {\"__class__\": \"RuntimeValue\"}, \"column_in\": {\"__class__\": \"RuntimeValue\"}}, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "90df5fc1-b437-48c1-a7d3-39062fef6c0b", + "workflow_outputs": [ + { + "label": null, + "output_name": "group_out", + "uuid": "3800548f-2976-4a6d-8b29-e501373719fd" + }, + { + "label": null, + "output_name": "phylip_out", + "uuid": "20631d19-d683-47c6-8ae1-7e856e242e8d" + }, + { + "label": null, + "output_name": "count_out", + "uuid": "bcd6f559-2b50-4c77-bf9c-9b9de5c7159a" + }, + { + "label": null, + "output_name": "column_out", + "uuid": "20bf370c-7d36-4579-b94c-ac816d789717" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "splitby|fasta": { + "id": 3, + "output_name": "fasta_out" + }, + "splitby|nameOrCount": { + "id": 3, + "output_name": "count_out" + }, + "splitby|taxonomy": { + "id": 3, + "output_name": "taxonomy_out" + } + }, + "inputs": [], + "label": null, + "name": "Cluster.split", + "outputs": [ + { + "name": "rabund", + "type": "mothur.rabund" + }, + { + "name": "sabund", + "type": "mothur.sabund" + }, + { + "name": "otulist", + "type": "mothur.list" + }, + { + "name": "sensspec", + "type": "txt" + } + ], + "position": { + "bottom": 530.7000122070312, + "height": 449.20001220703125, + "left": 748, + "right": 948, + "top": 81.5, + "width": 200, + "x": 748, + "y": 81.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "1b7fd1678230", + "name": "mothur_cluster_split", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cluster\": \"true\", \"cutoff\": \"0.03\", \"large\": \"false\", \"precision\": \"100\", \"runsensspec\": \"true\", \"savelog\": \"false\", \"splitby\": {\"splitmethod\": \"fasta\", \"__current_case__\": 2, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"taxonomy\": {\"__class__\": \"ConnectedValue\"}, \"nameOrCount\": {\"__class__\": \"ConnectedValue\"}, \"taxlevel\": \"4\", \"classic\": \"false\", \"condmethod\": {\"method\": \"opti\", \"__current_case__\": 5, \"metric\": \"mcc\", \"initialize\": \"singleton\", \"delta\": \"0.0001\", \"iters\": \"100\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "7dc5dce4-98b8-4ab3-9979-7dbe43d88b7e", + "workflow_outputs": [ + { + "label": null, + "output_name": "otulist", + "uuid": "e5100715-48a0-4ceb-a5d3-7003a43a747e" + }, + { + "label": null, + "output_name": "rabund", + "uuid": "3757ba3c-d4ba-46c7-b141-23f43678e392" + }, + { + "label": null, + "output_name": "sensspec", + "uuid": "f0e63d07-0f12-4ea0-b2ad-9ae6d16cd5bd" + }, + { + "label": null, + "output_name": "sabund", + "uuid": "9aecf4a0-cffa-49fd-9b5b-97d99fa7e2d2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "intype|group": { + "id": 3, + "output_name": "count_out" + }, + "intype|otu": { + "id": 4, + "output_name": "otulist" + } + }, + "inputs": [], + "label": null, + "name": "Make.shared", + "outputs": [ + { + "name": "shared", + "type": "mothur.shared" + }, + { + "name": "groupout", + "type": "mothur.groups" + } + ], + "position": { + "bottom": 445.8999938964844, + "height": 276.3999938964844, + "left": 1077, + "right": 1277, + "top": 169.5, + "width": 200, + "x": 1077, + "y": 169.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "0851ae17c58e", + "name": "mothur_make_shared", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"intype\": {\"infile\": \"otulist\", \"__current_case__\": 0, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"group\": {\"__class__\": \"ConnectedValue\"}, \"label\": [\"0.03\"], \"groups\": null}, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "57884bfc-06d6-4a1e-86cc-eb2ba23d6fe2", + "workflow_outputs": [ + { + "label": null, + "output_name": "shared", + "uuid": "f04218ea-84e1-489e-9d92-c44ad03414db" + }, + { + "label": null, + "output_name": "groupout", + "uuid": "6166859b-cc80-475b-97ff-f082289c1b56" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "count": { + "id": 3, + "output_name": "count_out" + }, + "otu": { + "id": 4, + "output_name": "otulist" + }, + "tax|taxonomy": { + "id": 3, + "output_name": "taxonomy_out" + } + }, + "inputs": [], + "label": null, + "name": "Classify.otu", + "outputs": [ + { + "name": "taxsummaries", + "type": "input" + }, + { + "name": "taxonomies", + "type": "input" + } + ], + "position": { + "bottom": 984.2999877929688, + "height": 428.79998779296875, + "left": 1121, + "right": 1321, + "top": 555.5, + "width": 200, + "x": 1121, + "y": 555.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "02446d12c359", + "name": "mothur_classify_otu", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"basis\": \"otu\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": {\"__class__\": \"ConnectedValue\"}, \"cutoff\": \"60\", \"group\": null, \"label\": [\"0.03\"], \"name\": null, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"output\": \"simple\", \"persample\": \"false\", \"printlevel\": \"-1\", \"probs\": \"true\", \"relabund\": \"false\", \"savelog\": \"false\", \"tax\": {\"source\": \"hist\", \"__current_case__\": 1, \"taxonomy\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "6dd79704-f3b8-4190-a7bb-34e2b4190436", + "workflow_outputs": [ + { + "label": null, + "output_name": "taxonomies", + "uuid": "add9561d-239b-4236-a875-c7870d8f4aa9" + }, + { + "label": null, + "output_name": "taxsummaries", + "uuid": "07f4f3ba-ee41-4f9b-aac9-ccc3262457f8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "errors": null, + "id": 7, + "input_connections": { + "group": { + "id": 5, + "output_name": "shared" + } + }, + "inputs": [], + "label": null, + "name": "Count.groups", + "outputs": [ + { + "name": "grp_count", + "type": "tabular" + }, + { + "name": "summary", + "type": "tabular" + } + ], + "position": { + "bottom": 150.89999389648438, + "height": 266.3999938964844, + "left": 1361, + "right": 1561, + "top": -115.5, + "width": 200, + "x": 1361, + "y": -115.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "03c86648a52e", + "name": "mothur_count_groups", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"group\": {\"__class__\": \"ConnectedValue\"}, \"groupnames\": {\"source\": \"none\", \"__current_case__\": 0}, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "5615bc17-0fdb-4610-ac78-c6aea2c08872", + "workflow_outputs": [ + { + "label": null, + "output_name": "summary", + "uuid": "1132f353-dc6c-4840-b8f1-91a8367af034" + }, + { + "label": null, + "output_name": "grp_count", + "uuid": "19b8b29e-2970-4b2c-a8e4-ca712b257658" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "errors": null, + "id": 8, + "input_connections": { + "input|otu": { + "id": 5, + "output_name": "shared" + } + }, + "inputs": [], + "label": null, + "name": "Sub.sample", + "outputs": [ + { + "name": "shared_out", + "type": "input" + } + ], + "position": { + "bottom": 544.6999969482422, + "height": 215.1999969482422, + "left": 1384, + "right": 1584, + "top": 329.5, + "width": 200, + "x": 1384, + "y": 329.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "67cb43432196", + "name": "mothur_sub_sample", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": null, \"input\": {\"format\": \"shared\", \"__current_case__\": 2, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"groups\": null, \"label\": null}, \"savelog\": \"false\", \"size\": \"2389\", \"taxonomy\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "eb70e45c-1ea9-4a34-9ac0-b27a5e7018a5", + "workflow_outputs": [ + { + "label": null, + "output_name": "shared_out", + "uuid": "a7df6943-cb20-46d7-ade1-66504b7e6eeb" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow5_otu_clustering.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 5: OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow5-otu-clustering", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow5_otu_clustering.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow5_otu_clustering.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow5-otu-clustering", + "workflow": "workflow5_otu_clustering.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0" + ], + "workflowhub_id": "1133" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nShared file\"]\n 1[label=\"Rarefaction.single\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Summary.single\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Plotting tool\"]\n 1 -> 3 [label=\"rarefactioncurves\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Shared file" + } + ], + "label": "Shared file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 396.8000030517578, + "height": 61.80000305175781, + "left": 308, + "right": 508, + "top": 335, + "width": 200, + "x": 308, + "y": 335 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "58c65102-0358-4782-b4d3-1de61937b7f7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "43ede9d2-e2d2-46e0-a733-adea9336c50f" + } + ] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nShared file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Rarefaction.single\"];\n 0 -->|output| 1;\n 2[\"Summary.single\"];\n 0 -->|output| 2;\n 3[\"Plotting tool\"];\n 1 -->|rarefactioncurves| 3;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow 6: Alpha Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Shared file" + } + ], + "label": "Shared file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 396.8000030517578, + "height": 61.80000305175781, + "left": 308, + "right": 508, + "top": 335, + "width": 200, + "x": 308, + "y": 335 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "58c65102-0358-4782-b4d3-1de61937b7f7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "43ede9d2-e2d2-46e0-a733-adea9336c50f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "errors": null, + "id": 1, + "input_connections": { + "otu": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Rarefaction.single", + "outputs": [ + { + "name": "rarefactioncurves", + "type": "input" + } + ], + "position": { + "bottom": 349.8000030517578, + "height": 174.8000030517578, + "left": 618, + "right": 818, + "top": 175, + "width": 200, + "x": 618, + "y": 175 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "af521db77c56", + "name": "mothur_rarefaction_single", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"abund\": \"10\", \"calc\": [\"sobs\"], \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"freq\": \"100.0\", \"iters\": \"1000\", \"label\": null, \"otu\": null, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "57642a17-6be7-4133-b573-b0175ff8cc97", + "workflow_outputs": [ + { + "label": null, + "output_name": "rarefactioncurves", + "uuid": "955cdaca-e834-4f9b-b8d3-54d1e4e6b9cf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.2", + "errors": null, + "id": 2, + "input_connections": { + "otu": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Summary.single", + "outputs": [ + { + "name": "summaryfiles", + "type": "input" + }, + { + "name": "subsample_summary", + "type": "tabular" + }, + { + "name": "summary", + "type": "tabular" + } + ], + "position": { + "bottom": 811.2000122070312, + "height": 317.20001220703125, + "left": 619, + "right": 819, + "top": 494, + "width": 200, + "x": 619, + "y": 494 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.2", + "tool_shed_repository": { + "changeset_revision": "2344ed181ae6", + "name": "mothur_summary_single", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"abund\": \"10\", \"calc\": [\"sobs\", \"coverage\", \"invsimpson\", \"nseqs\"], \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"groupmode\": \"true\", \"label\": null, \"otu\": null, \"savelog\": \"false\", \"size\": \"2389\", \"subsample\": {\"use\": \"no\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.2", + "type": "tool", + "uuid": "43c58fe5-5ec2-41cf-bc7a-1aed1e4ea48a", + "workflow_outputs": [ + { + "label": null, + "output_name": "summaryfiles", + "uuid": "05892980-8cd2-42f6-814b-dab57c1ebe5c" + }, + { + "label": null, + "output_name": "summary", + "uuid": "8c30634d-fc8f-40d6-a5d0-93efde3874de" + }, + { + "label": null, + "output_name": "subsample_summary", + "uuid": "4e8da2ff-e4f5-4109-bfbd-9a23f978227b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "errors": null, + "id": 3, + "input_connections": { + "series_0|input": { + "id": 1, + "output_name": "rarefactioncurves" + } + }, + "inputs": [], + "label": null, + "name": "Plotting tool", + "outputs": [ + { + "name": "out_file_png", + "type": "png" + } + ], + "position": { + "bottom": 276.1999969482422, + "height": 93.19999694824219, + "left": 999, + "right": 1199, + "top": 183, + "width": 200, + "x": 999, + "y": 183 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "tool_shed_repository": { + "changeset_revision": "ecb437f1d298", + "name": "xy_plot", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"main\": \"Rarefaction\", \"outftype\": \"png\", \"series\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"header\": \"true\", \"xcol\": \"1\", \"ycol\": [\"2\", \"5\", \"8\", \"11\", \"14\", \"17\", \"20\", \"23\", \"26\", \"29\", \"32\", \"35\", \"38\", \"41\", \"44\", \"47\", \"50\", \"53\", \"56\"], \"series_type\": {\"type\": \"line\", \"__current_case__\": 0, \"lty\": \"1\", \"col\": \"1\", \"lwd\": \"1.0\"}}], \"series_0|input|__identifier__\": \"sobs\", \"xlab\": \"Number of Sequences\", \"ylab\": \"Number of OTUs\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "f9ef9628-4716-49f9-bf8a-e7ec68754881", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file_png", + "uuid": "9f66c76d-0d54-4dda-84f5-a9671fa77740" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow6_alpha_diversity.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 6: Alpha Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow6-alpha-diversity", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow6_alpha_diversity.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow6_alpha_diversity.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow6-alpha-diversity", + "workflow": "workflow6_alpha_diversity.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.2" + ], + "workflowhub_id": "1129" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nShared file from Make.shared\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nSub.sample shared\"]\n 2[label=\"Dist.shared\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Collapse Collection\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Heatmap.sim\"]\n 2 -> 4 [label=\"distfiles\"]\n 5[label=\"Tree.shared\"]\n 2 -> 5 [label=\"distfiles\"]\n 6[label=\"Venn\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Newick Display\"]\n 5 -> 7 [label=\"tre\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Shared file from Make.shared" + } + ], + "label": "Shared file from Make.shared", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 119, + "top": 28 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d0c07e4f-abd7-4af3-bda4-ab143e6859bb", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sub.sample shared" + } + ], + "label": "Sub.sample shared", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 161 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cc9198f5-b615-4317-9837-4cbc83f4b5e7", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nShared file from Make.shared\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nSub.sample shared\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Dist.shared\"];\n 0 -->|output| 2;\n 3[\"Collapse Collection\"];\n 1 -->|output| 3;\n 4[\"Heatmap.sim\"];\n 2 -->|distfiles| 4;\n 5[\"Tree.shared\"];\n 2 -->|distfiles| 5;\n 6[\"Venn\"];\n 3 -->|output| 6;\n 7[\"Newick Display\"];\n 5 -->|tre| 7;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Workflow7: Beta Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "errors": null, + "id": 3, + "input_connections": { + "input_list": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 138, + "top": 489 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "tool_shed_repository": { + "changeset_revision": "830961c48e42", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": false, \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2", + "type": "tool", + "uuid": "aa52952a-70eb-4ed6-b6b0-28225e04091a", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "01c16573-8bd5-4d62-92c0-74cd29af035a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "input|dist": { + "id": 2, + "output_name": "distfiles" + } + }, + "inputs": [], + "label": null, + "name": "Heatmap.sim", + "outputs": [ + { + "name": "heatmap", + "type": "svg" + } + ], + "position": { + "left": 805, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "7f5707dd6073", + "name": "mothur_heatmap_sim", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": null, \"dist|__identifier__\": \"thetayc.0.03.lt.std\", \"fontsize\": \"24\", \"input\": {\"source\": \"phylip\", \"__current_case__\": 2, \"dist\": {\"__class__\": \"ConnectedValue\"}}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "aa3080d1-4ec6-4c1b-8be8-532a7e12c81c", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "heatmap", + "uuid": "6b90b099-6641-43b9-a347-5ce6e05ae67e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "input|dist": { + "id": 2, + "output_name": "distfiles" + } + }, + "inputs": [], + "label": null, + "name": "Tree.shared", + "outputs": [ + { + "name": "tre", + "type": "mothur.tre" + } + ], + "position": { + "left": 763, + "top": 438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "43e2715e98c9", + "name": "mothur_tree_shared", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"calc\": [\"jclass\", \"thetayc\"], \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dist|__identifier__\": \"thetayc.0.03.lt.std\", \"input\": {\"source\": \"phylip\", \"__current_case__\": 1, \"dist\": {\"__class__\": \"ConnectedValue\"}, \"name\": null}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "e6bebcdf-bb0a-4b50-82a1-8c0ca2711b5e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "tre", + "uuid": "3a746045-e178-492c-ac40-dab92ce5189f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "input|otu": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Venn", + "outputs": [ + { + "name": "sharedotus_out", + "type": "input" + }, + { + "name": "svgs_out", + "type": "input" + }, + { + "name": "logfile", + "type": "txt" + } + ], + "position": { + "left": 419, + "top": 454 + }, + "post_job_actions": { + "HideDatasetActionsharedotus_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "sharedotus_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "4db54b1c1d83", + "name": "mothur_venn", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fontsize\": \"24\", \"input\": {\"source\": \"shared\", \"__current_case__\": 0, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"calc\": null, \"label\": null, \"groups\": [\"F3D0\", \"F3D1\", \"F3D2\", \"F3D3\"]}, \"nseqs\": false, \"permute\": \"4\", \"savelog\": true, \"sharedotus\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "932cccf7-1743-46e2-abb9-f148ca5b617b", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "svgs_out", + "uuid": "d3db2185-9a28-4bb2-abd6-6907377de73f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "fileNewick": { + "id": 5, + "output_name": "tre" + } + }, + "inputs": [], + "label": null, + "name": "Newick Display", + "outputs": [ + { + "name": "output", + "type": "svg" + } + ], + "position": { + "left": 1141, + "top": 56 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b4163d2f64ab", + "name": "newick_utils", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"mothur.tre\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"condbranchlength\": {\"branchlength\": \"false\", \"__current_case__\": 1}, \"condbranchsupport\": {\"branchsupport\": \"false\", \"__current_case__\": 1}, \"fileNewick\": {\"__class__\": \"ConnectedValue\"}, \"fileNewick|__identifier__\": \"thetayc.0.03.lt.std\", \"leafFont\": \"sans-serif\", \"leafSize\": \"10px\", \"legend\": \"\", \"outformat\": \"svg\", \"radial\": false, \"scalebar\": true, \"width\": \"800\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6+galaxy1", + "type": "tool", + "uuid": "8f4bff39-d764-4357-aae5-246c01ac2dcf", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "544ca4c5-82b3-4bf1-9ff1-c23ebce8b098" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow7_beta_diversity.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow7: Beta Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow7-beta-diversity", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow7_beta_diversity.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow7_beta_diversity.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow7-beta-diversity", + "workflow": "workflow7_beta_diversity.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_shared/mothur_dist_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "workflowhub_id": "1117" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.800651" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "c9f8fef1df74", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xy_plot", + "owner": "devteam", + "revisions": "ecb437f1d298", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_align_seqs", + "owner": "iuc", + "revisions": "abf7c15ecfef", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_chimera_vsearch", + "owner": "iuc", + "revisions": "12e856482d26", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_otu", + "owner": "iuc", + "revisions": "ff1bc0299372", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_seqs", + "owner": "iuc", + "revisions": "09bf9e496c64", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster", + "owner": "iuc", + "revisions": "6366f4483b35", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster_split", + "owner": "iuc", + "revisions": "19f45bdbffd9", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_groups", + "owner": "iuc", + "revisions": "dc3826bfc1ed", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_seqs", + "owner": "iuc", + "revisions": "ffee46220ddd", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_dist_seqs", + "owner": "iuc", + "revisions": "4d76fba83f24", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_dist_shared", + "owner": "iuc", + "revisions": "418100660ba3", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_filter_seqs", + "owner": "iuc", + "revisions": "3524ca06478e", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_get_groups", + "owner": "iuc", + "revisions": "03af14e245fb", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_heatmap_sim", + "owner": "iuc", + "revisions": "7f5707dd6073", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_biom", + "owner": "iuc", + "revisions": "0b5397a74165", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_contigs", + "owner": "iuc", + "revisions": "ab12df91b47f", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_shared", + "owner": "iuc", + "revisions": "d0967ae326be", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_pre_cluster", + "owner": "iuc", + "revisions": "6532c3424bfe", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_rarefaction_single", + "owner": "iuc", + "revisions": "47264675a4ea", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_groups", + "owner": "iuc", + "revisions": "498dc0671d9e", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_lineage", + "owner": "iuc", + "revisions": "947faa8b3205", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_seqs", + "owner": "iuc", + "revisions": "008f62670efc", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_screen_seqs", + "owner": "iuc", + "revisions": "f4d7d5755f01", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_seq_error", + "owner": "iuc", + "revisions": "5a7674ac2c59", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_sub_sample", + "owner": "iuc", + "revisions": "67cb43432196", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_seqs", + "owner": "iuc", + "revisions": "600c14c6dcc5", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_single", + "owner": "iuc", + "revisions": "72be09dfd803", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_taxonomy_to_krona", + "owner": "iuc", + "revisions": "db30eb96ea23", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_tree_shared", + "owner": "iuc", + "revisions": "8bca555fbcaf", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_unique_seqs", + "owner": "iuc", + "revisions": "a033f325ad8d", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_venn", + "owner": "iuc", + "revisions": "4db54b1c1d83", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "newick_utils", + "owner": "iuc", + "revisions": "fe4235285ee8", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: c9f8fef1df74\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xy_plot\n owner: devteam\n revisions: ecb437f1d298\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_align_seqs\n owner: iuc\n revisions: abf7c15ecfef\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_chimera_vsearch\n owner: iuc\n revisions: 12e856482d26\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_otu\n owner: iuc\n revisions: ff1bc0299372\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_seqs\n owner: iuc\n revisions: '09bf9e496c64'\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster\n owner: iuc\n revisions: 6366f4483b35\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster_split\n owner: iuc\n revisions: 19f45bdbffd9\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_groups\n owner: iuc\n revisions: dc3826bfc1ed\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_seqs\n owner: iuc\n revisions: ffee46220ddd\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_dist_seqs\n owner: iuc\n revisions: 4d76fba83f24\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_dist_shared\n owner: iuc\n revisions: 418100660ba3\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_filter_seqs\n owner: iuc\n revisions: 3524ca06478e\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_get_groups\n owner: iuc\n revisions: 03af14e245fb\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_heatmap_sim\n owner: iuc\n revisions: 7f5707dd6073\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_biom\n owner: iuc\n revisions: 0b5397a74165\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_contigs\n owner: iuc\n revisions: ab12df91b47f\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_shared\n owner: iuc\n revisions: d0967ae326be\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_pre_cluster\n owner: iuc\n revisions: 6532c3424bfe\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_rarefaction_single\n owner: iuc\n revisions: 47264675a4ea\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_groups\n owner: iuc\n revisions: 498dc0671d9e\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_lineage\n owner: iuc\n revisions: 947faa8b3205\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_seqs\n owner: iuc\n revisions: '008f62670efc'\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_screen_seqs\n owner: iuc\n revisions: f4d7d5755f01\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_seq_error\n owner: iuc\n revisions: 5a7674ac2c59\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_sub_sample\n owner: iuc\n revisions: 67cb43432196\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_seqs\n owner: iuc\n revisions: 600c14c6dcc5\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_single\n owner: iuc\n revisions: 72be09dfd803\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_taxonomy_to_krona\n owner: iuc\n revisions: db30eb96ea23\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_tree_shared\n owner: iuc\n revisions: 8bca555fbcaf\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_unique_seqs\n owner: iuc\n revisions: a033f325ad8d\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_venn\n owner: iuc\n revisions: 4db54b1c1d83\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: newick_utils\n owner: iuc\n revisions: fe4235285ee8\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + } + ], + "dir": "topics/microbiome/tutorials/mothur-miseq-sop", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Sequencing quality control", + "Phylogenetic tree reconstruction", + "Phylogenetic tree generation", + "DNA barcoding", + "Sequence read processing", + "Taxonomic classification", + "Phylogenetic analysis", + "Sequence clustering", + "Phylogenetic tree analysis", + "Visualisation" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/mothur-miseq-sop", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "16S rRNA gene sequencing analysis results depend on the many algorithms used and their settings", + "Quality control and cleaning of your data is a crucial step in order to obtain optimal results", + "Adding a mock community to serve as a control sample can help you asses the error rate of your experimental setup", + "We can explore alpha and beta diversities using Krona and Phinch for dynamic visualizations" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "objectives": [ + "Analyze of 16S rRNA sequencing data using the mothur toolsuite in Galaxy", + "Using a mock community to assess the error rate of your sequencing experiment", + "Visualize sample diversity using Krona and Phinch" + ], + "pageviews": 7659, + "priority": 1000, + "pub_date": "2017-02-12", + "questions": [ + "What is the effect of normal variation in the gut microbiome on host health?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/mothur-miseq-sop/tutorial", + "/short/microbiome/mothur-miseq-sop", + "/short/T00205", + "/short/T00390" + ], + "short_id": "T00390", + "short_tools": [ + "mothur_rarefaction_single", + "taxonomy_krona_chart", + "mothur_count_groups", + "mothur_dist_shared", + "mothur_pre_cluster", + "mothur_remove_lineage", + "mothur_filter_seqs", + "newick_display", + "mothur_heatmap_sim", + "mothur_sub_sample", + "mothur_dist_seqs", + "mothur_make_biom", + "mothur_count_seqs", + "mothur_summary_seqs", + "mothur_taxonomy_to_krona", + "mothur_remove_seqs", + "mothur_seq_error", + "mothur_chimera_vsearch", + "mothur_tree_shared", + "mothur_align_seqs", + "mothur_cluster_split", + "mothur_summary_single", + "mothur_screen_seqs", + "mothur_venn", + "mothur_unique_seqs", + "mothur_classify_otu", + "mothur_cluster", + "mothur_remove_groups", + "XY_Plot_1", + "mothur_make_contigs", + "mothur_make_shared", + "mothur_get_groups", + "mothur_classify_seqs" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "microgalaxy" + ], + "time_estimation": "6h", + "title": "16S Microbial Analysis with mothur (extended)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.6.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_shared/mothur_dist_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_get_groups/mothur_get_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_biom/mothur_make_biom/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_contigs/mothur_make_contigs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_seq_error/mothur_seq_error/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_taxonomy_to_krona/mothur_taxonomy_to_krona/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mothur-miseq-sop", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 177, + "visitors": 5005, + "workflows": [ + { + "creators": [], + "description": "16S Microbial Analysis with mothur (extended)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput FASTQ pairs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsilva.v4.fasta\"]\n 10[label=\"Count.seqs\"]\n 8 -> 10 [label=\"groups_out\"]\n 9 -> 10 [label=\"out_names\"]\n 11[label=\"Align.seqs\"]\n 1 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"out_fasta\"]\n 12[label=\"Summary.seqs\"]\n 10 -> 12 [label=\"seq_count\"]\n 11 -> 12 [label=\"out_align\"]\n 13[label=\"Screen.seqs\"]\n 10 -> 13 [label=\"seq_count\"]\n 11 -> 13 [label=\"out_align\"]\n 14[label=\"Filter.seqs\"]\n 13 -> 14 [label=\"fasta_out\"]\n 15[label=\"Unique.seqs\"]\n 14 -> 15 [label=\"filteredfasta\"]\n 13 -> 15 [label=\"count_out\"]\n 16[label=\"Pre.cluster\"]\n 15 -> 16 [label=\"out_fasta\"]\n 15 -> 16 [label=\"out_count\"]\n 17[label=\"Chimera.vsearch\"]\n 16 -> 17 [label=\"fasta_out\"]\n 16 -> 17 [label=\"count_out\"]\n 18[label=\"Remove.seqs\"]\n 17 -> 18 [label=\"out_accnos\"]\n 17 -> 18 [label=\"out_count\"]\n 16 -> 18 [label=\"fasta_out\"]\n 19[label=\"Classify.seqs\"]\n 2 -> 19 [label=\"output\"]\n 18 -> 19 [label=\"count_out\"]\n 18 -> 19 [label=\"fasta_out\"]\n 3 -> 19 [label=\"output\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrainset9_032012.pds.fasta\"]\n 20[label=\"Remove.lineage\"]\n 18 -> 20 [label=\"count_out\"]\n 18 -> 20 [label=\"fasta_out\"]\n 19 -> 20 [label=\"taxonomy_out\"]\n 21[label=\"Get.groups\"]\n 20 -> 21 [label=\"fasta_out\"]\n 20 -> 21 [label=\"count_out\"]\n 22[label=\"Remove.groups\"]\n 20 -> 22 [label=\"fasta_out\"]\n 20 -> 22 [label=\"count_out\"]\n 20 -> 22 [label=\"taxonomy_out\"]\n 23[label=\"Seq.error\"]\n 4 -> 23 [label=\"output\"]\n 21 -> 23 [label=\"count_out\"]\n 21 -> 23 [label=\"fasta_out\"]\n 24[label=\"Dist.seqs\"]\n 21 -> 24 [label=\"fasta_out\"]\n 25[label=\"Cluster.split\"]\n 22 -> 25 [label=\"fasta_out\"]\n 22 -> 25 [label=\"count_out\"]\n 22 -> 25 [label=\"taxonomy_out\"]\n 26[label=\"Cluster\"]\n 21 -> 26 [label=\"count_out\"]\n 24 -> 26 [label=\"out_dist\"]\n 27[label=\"Make.shared\"]\n 22 -> 27 [label=\"count_out\"]\n 25 -> 27 [label=\"otulist\"]\n 28[label=\"Classify.otu\"]\n 22 -> 28 [label=\"count_out\"]\n 25 -> 28 [label=\"otulist\"]\n 22 -> 28 [label=\"taxonomy_out\"]\n 29[label=\"Make.shared\"]\n 21 -> 29 [label=\"count_out\"]\n 26 -> 29 [label=\"otulist\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrainset9_032012.pds.tax\"]\n 30[label=\"Summary.single\"]\n 27 -> 30 [label=\"shared\"]\n 31[label=\"Count.groups\"]\n 27 -> 31 [label=\"shared\"]\n 32[label=\"Dist.shared\"]\n 27 -> 32 [label=\"shared\"]\n 33[label=\"Rarefaction.single\"]\n 27 -> 33 [label=\"shared\"]\n 34[label=\"Sub.sample\"]\n 27 -> 34 [label=\"shared\"]\n 35[label=\"Taxonomy-to-Krona\"]\n 28 -> 35 [label=\"taxonomies\"]\n 36[label=\"Rarefaction.single\"]\n 29 -> 36 [label=\"shared\"]\n 37[label=\"Tree.shared\"]\n 32 -> 37 [label=\"distfiles\"]\n 38[label=\"Heatmap.sim\"]\n 32 -> 38 [label=\"distfiles\"]\n 39[label=\"Plotting tool\"]\n 33 -> 39 [label=\"rarefactioncurves\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHMP_MOCK.v35.fasta\"]\n 40[label=\"Venn\"]\n 34 -> 40 [label=\"shared_out\"]\n 41[label=\"Make.biom\"]\n 28 -> 41 [label=\"taxonomies\"]\n 5 -> 41 [label=\"output\"]\n 34 -> 41 [label=\"shared_out\"]\n 42[label=\"Krona pie chart\"]\n 35 -> 42 [label=\"outputfile\"]\n 43[label=\"Newick Display\"]\n 37 -> 43 [label=\"tre\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmouse.dpw.metadata\"]\n 6[label=\"Make.contigs\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Summary.seqs\"]\n 6 -> 7 [label=\"fasta\"]\n 8[label=\"Screen.seqs\"]\n 6 -> 8 [label=\"fasta\"]\n 6 -> 8 [label=\"group\"]\n 9[label=\"Unique.seqs\"]\n 8 -> 9 [label=\"fasta_out\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Input FASTQ pairs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 200, + "top": 1211 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "a0cb222c-075e-4617-b919-5bfcf218e9b6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "silva.v4.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 211, + "top": 1316 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "074d08d3-5ea8-45ff-8ac2-f2553ccc484f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "trainset9_032012.pds.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 203, + "top": 1434 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "44b087dc-00b3-49c2-aad2-31cd468e9f2f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "trainset9_032012.pds.tax", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 207, + "top": 1581 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "986945e9-f3d2-4c0d-8eb4-8ff64517b6cd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [], + "label": "HMP_MOCK.v35.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3082, + "top": 273 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "1a21d45e-6e1a-4f0b-b5f2-5d60548c3eef", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [], + "label": "mouse.dpw.metadata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4677.5, + "top": 2893.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "56b633c1-dffb-4b67-8eee-c9cdb1fcdd5a", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput FASTQ pairs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nsilva.v4.fasta\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Count.seqs\"];\n 8 -->|groups_out| 10;\n 9 -->|out_names| 10;\n 11[\"Align.seqs\"];\n 1 -->|output| 11;\n 9 -->|out_fasta| 11;\n 12[\"Summary.seqs\"];\n 10 -->|seq_count| 12;\n 11 -->|out_align| 12;\n 13[\"Screen.seqs\"];\n 10 -->|seq_count| 13;\n 11 -->|out_align| 13;\n 14[\"Filter.seqs\"];\n 13 -->|fasta_out| 14;\n 15[\"Unique.seqs\"];\n 14 -->|filteredfasta| 15;\n 13 -->|count_out| 15;\n 16[\"Pre.cluster\"];\n 15 -->|out_fasta| 16;\n 15 -->|out_count| 16;\n 17[\"Chimera.vsearch\"];\n 16 -->|fasta_out| 17;\n 16 -->|count_out| 17;\n 18[\"Remove.seqs\"];\n 17 -->|out_accnos| 18;\n 17 -->|out_count| 18;\n 16 -->|fasta_out| 18;\n 19[\"Classify.seqs\"];\n 2 -->|output| 19;\n 18 -->|count_out| 19;\n 18 -->|fasta_out| 19;\n 3 -->|output| 19;\n 2[\"\u2139\ufe0f Input Dataset\\ntrainset9_032012.pds.fasta\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 20[\"Remove.lineage\"];\n 18 -->|count_out| 20;\n 18 -->|fasta_out| 20;\n 19 -->|taxonomy_out| 20;\n 21[\"Get.groups\"];\n 20 -->|fasta_out| 21;\n 20 -->|count_out| 21;\n 22[\"Remove.groups\"];\n 20 -->|fasta_out| 22;\n 20 -->|count_out| 22;\n 20 -->|taxonomy_out| 22;\n 23[\"Seq.error\"];\n 4 -->|output| 23;\n 21 -->|count_out| 23;\n 21 -->|fasta_out| 23;\n 24[\"Dist.seqs\"];\n 21 -->|fasta_out| 24;\n 25[\"Cluster.split\"];\n 22 -->|fasta_out| 25;\n 22 -->|count_out| 25;\n 22 -->|taxonomy_out| 25;\n 26[\"Cluster\"];\n 21 -->|count_out| 26;\n 24 -->|out_dist| 26;\n 27[\"Make.shared\"];\n 22 -->|count_out| 27;\n 25 -->|otulist| 27;\n 28[\"Classify.otu\"];\n 22 -->|count_out| 28;\n 25 -->|otulist| 28;\n 22 -->|taxonomy_out| 28;\n 29[\"Make.shared\"];\n 21 -->|count_out| 29;\n 26 -->|otulist| 29;\n 3[\"\u2139\ufe0f Input Dataset\\ntrainset9_032012.pds.tax\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 30[\"Summary.single\"];\n 27 -->|shared| 30;\n 31[\"Count.groups\"];\n 27 -->|shared| 31;\n 32[\"Dist.shared\"];\n 27 -->|shared| 32;\n 33[\"Rarefaction.single\"];\n 27 -->|shared| 33;\n 34[\"Sub.sample\"];\n 27 -->|shared| 34;\n 35[\"Taxonomy-to-Krona\"];\n 28 -->|taxonomies| 35;\n 36[\"Rarefaction.single\"];\n 29 -->|shared| 36;\n 37[\"Tree.shared\"];\n 32 -->|distfiles| 37;\n 38[\"Heatmap.sim\"];\n 32 -->|distfiles| 38;\n 39[\"Plotting tool\"];\n 33 -->|rarefactioncurves| 39;\n 4[\"\u2139\ufe0f Input Dataset\\nHMP_MOCK.v35.fasta\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 40[\"Venn\"];\n 34 -->|shared_out| 40;\n 41[\"Make.biom\"];\n 28 -->|taxonomies| 41;\n 5 -->|output| 41;\n 34 -->|shared_out| 41;\n 42[\"Krona pie chart\"];\n 35 -->|outputfile| 42;\n 43[\"Newick Display\"];\n 37 -->|tre| 43;\n 5[\"\u2139\ufe0f Input Dataset\\nmouse.dpw.metadata\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"Make.contigs\"];\n 0 -->|output| 6;\n 7[\"Summary.seqs\"];\n 6 -->|fasta| 7;\n 8[\"Screen.seqs\"];\n 6 -->|fasta| 8;\n 6 -->|group| 8;\n 9[\"Unique.seqs\"];\n 8 -->|fasta_out| 9;", + "modified": "2024-09-06 08:40:24 +0000", + "name": "Training: 16S rRNA Sequencing With Mothur: Main Tutorial", + "outputs": [], + "parent_id": "microbiome/mothur-miseq-sop", + "path": "topics/microbiome/tutorials/mothur-miseq-sop/workflows/mothur-miseq-sop.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Training: 16S rRNA Sequencing With Mothur: Main Tutorial", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop/versions/mothur-miseq-sop", + "tutorial_id": "mothur-miseq-sop", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop/workflows/mothur-miseq-sop.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop/workflows/mothur-miseq-sop.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop", + "wfname": "mothur-miseq-sop", + "workflow": "mothur-miseq-sop.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.6.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_shared/mothur_dist_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_get_groups/mothur_get_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_biom/mothur_make_biom/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_contigs/mothur_make_contigs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_seq_error/mothur_seq_error/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_taxonomy_to_krona/mothur_taxonomy_to_krona/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6" + ], + "workflowhub_id": "1101" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.800651" + } +] \ No newline at end of file diff --git a/communities/all/resources/tools.html b/communities/all/resources/tools.html new file mode 100644 index 00000000..c5289334 --- /dev/null +++ b/communities/all/resources/tools.html @@ -0,0 +1,98084 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandGalaxy wrapper idGalaxy tool idsDescriptionbio.tool idbio.tool idsbiiibio.tool namebio.tool descriptionEDAM operationEDAM topicStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper sourceGalaxy wrapper parsed folderGalaxy wrapper versionConda idConda versionEDAM operation (no superclasses)EDAM topic (no superclasses)Available on UseGalaxy.org (Main)Available on UseGalaxy.org.auAvailable on UseGalaxy.euAvailable on UseGalaxy.frTools available on UseGalaxy.org (Main)Tools available on UseGalaxy.org.auTools available on UseGalaxy.euTools available on UseGalaxy.frTools available on APOSTLTools available on BF2I-MAPTools available on BioBixTools available on CIRM-CFBPTools available on Center for Phage Technology (CPT)Tools available on ChemFlowTools available on Coloc-statsTools available on CoralSNPTools available on CropGalaxyTools available on DintorTools available on FreeBioinfoTools available on GASLINITools available on Galaxy@AuBiTools available on Galaxy@PasteurTools available on GalaxyTrakrTools available on Genomic HyperbrowserTools available on GigaGalaxyTools available on HyPhy HIV NGS ToolsTools available on IPK Galaxy Blast SuiteTools available on ImmPort GalaxyTools available on InteractoMIXTools available on MISSISSIPPITools available on Mandoiu LabTools available on MiModD NacreousMapTools available on OqtansTools available on PalfinderTools available on PepSimiliTools available on PhagePromotorTools available on UseGalaxy.beTools available on UseGalaxy.czTools available on UseGalaxy.noTools available on Viral Variant Visualizer (VVV)No. of tool users (2022-2023) (usegalaxy.eu)Total tool usage (usegalaxy.eu)
2d_auto_thresholdip_thresholdAutomatic thresholdingscikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImaging2d_auto_thresholdimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold0.18.1scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language0111011100000000000000000000000000000110396541
2d_feature_extractionip_2d_feature_extraction2D feature extractionscikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImaging2d_feature_extractionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction0.18.1scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language01100110000000000000000000000000000001101913760
2d_filter_segmentation_by_featuresip_2d_filter_segmentation_by_featuresfilter segmentation by rulesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImaging2d_filter_segmentation_by_featuresimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features0.0.1-4scikit-imageImage analysisImaging, Bioinformatics0110011000000000000000000000000000000110186834
2d_histogram_equalizationip_histogram_equalization2d histogram equalizationscikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImaging2d_histogram_equalizationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization0.18.1scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language011101110000000000000000000000000000011039656
2d_simple_filterip_filter_standard2d simple filterscipyTo updatehttps://github.com/bmcvImaging2d_simple_filterimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter1.12.0scipy0111011100000000000000000000000000000110356156
3d_tensor_feature_dimension_reductionip_3d_tensor_feature_dimension_reductionDimensionality reduction for features (channels) of 3D tensor data using UMAPTo updatehttps://github.com/BMCV/galaxy-image-analysisImaging3d_tensor_feature_dimension_reductionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction0.0.1numpy000000000000000000000000000000000000000000
Ensembl-RESTget_feature_info, get_genetree, get_sequencesA suite of Galaxy tools designed to work with Ensembl REST API.To updatehttps://rest.ensembl.orgData Sourceearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/Ensembl-RESThttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/Ensembl-REST0.1.2requests0030003000000000000000000000000000000330472889
GAFAgafaGene Align and Family AggregatorTo updatehttp://aequatus.tgac.ac.ukVisualizationgafaearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA/https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA0.3.10010001000000000000000000000000000000110045
TreeBesttreebest_bestTreeBeST besttreebesttreebestTreeBeSTTreeBeST, which stands for (gene) Tree Building guided by Species Tree, is a versatile program that builds, manipulates and displays phylogenetic trees. It is particularly designed for building gene trees with a known species tree and is highly efficient and accurate.TreeBeST is previously known as NJTREE. It has been largely used in the TreeFam database, Ensembl Compara and OPTIC database of Chris Ponting group.Phylogenetic tree visualisation, Phylogenetic analysis, Phylogenetic inference (from molecular sequences)PhylogeneticsTo updatehttp://treesoft.sourceforge.net/treebest.shtmlPhylogeneticstreebest_bestearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBesthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest1.9.2.post0treebest1.9.2.post1Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences)Phylogenetics001000100000000000000010000000000000011023984
abacasabacasOrder and Orientate ContigsTo updatehttps://github.com/phac-nml/abacasAssemblyabacasnmlhttps://github.com/phac-nml/abacashttps://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas1.1mummer3.23000100010000000000000010000000000000000000
anisotropic_diffusionip_anisotropic_diffusionAnisotropic image diffusionUp-to-datehttps://github.com/bmcvImaginganisotropic_diffusionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic-diffusion/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic_diffusion0.4.0medpy0.4.00010001000000000000000000000000000000110040
apocapocLarge-scale structural comparison of protein pocketsTo updatehttp://cssb.biology.gatech.edu/APocComputational chemistryapocearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/apoc/https://github.com/TGAC/earlham-galaxytools/tree/master/tools/apoc1.0+galaxy1apoc1b16101010100000000000000000000000000000011013
apollocreate_account, feat_from_gff3, create_or_update, delete_features, delete_organism, export, fetch_jbrowse, iframe, list_organismAccess an Apollo instance from GalaxyTo updatehttps://github.com/galaxy-genome-annotation/python-apolloWeb Servicesggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollohttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apolloapollo4.2.1300900090000080000000000000000000000009903011896
askomicsaskomics_integrateGalaxy tools allowing to interact with a remote AskOmics server.AskOmics is a visual SPARQL query builder for RDF database.https://github.com/askomics/To updatehttps://github.com/askomics/Web Servicesggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/askomicshttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/askomicsaskocli0.5000000000000000000000000000000000000000000
askoraskor_deAskoR links EdgeR and AskOmicsTo updatehttps://github.com/askomics/askoRTranscriptomicsaskor_degenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/askorhttps://github.com/genouest/galaxy-tools/tree/master/tools/askor0.2bioconductor-limma3.58.1000000000000000000000000000000000000000000
assemblystatsassemblystatsSummarise an assembly (e.g. N50 metrics)To updatehttps://github.com/phac-nml/galaxy_toolsAssemblyassemblystatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats1.1.0perl-bioperl1.7.8000000000000000000000010000000000000000000
background_removalbackground_removalBackground removal filters using scikit-imageTo updatehttps://github.com/bmcvImagingbackground_removalimgteamhttps://github.com/BMCV/galaxy-image-analysis/tools/background_removalhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/background_removal0.24.0scikit-image001000100000000000000000000000000000000000
bam2mappingstatsbam2mappingstatsGenerates mapping stats from a bam file.To updatehttps://github.com/phac-nml/galaxy_toolsAssemblybam2mappingstatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats1.1.0perl000000000000000000000000000000000000000000
bamclipperbamclipperSoft-clip gene-specific primers from BAM alignment file based on genomic coordinates of primer pairs in BEDPE format.Up-to-datehttps://github.com/tommyau/bamclipperSequence Analysisbamclippernmlhttps://github.com/tommyau/bamclipperhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/bamclipper1.0.0bamclipper1.0.0000000000000000000000010000000000000000000
baric_archivebaric_archive_rennes, baric_archive_toulouseA data source tool to fetch data from a BARIC Archive server.To updatehttps://www.cesgo.org/catibaric/Data Sourcegenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/baric_archivehttps://github.com/genouest/galaxy-tools/tree/master/tools/baric_archive1.1.0000200020000000000000000000000000000000000
batched_lastzbatched_lastzGalaxy wrapper for the batching Lastz runsUp-to-datehttps://github.com/galaxyproject/KegAlignNext Gen Mappersbatched_lastzrichard-burhanshttps://github.com/richard-burhans/galaxytools/tree/main/tools/batched_lastzhttps://github.com/richard-burhans/galaxytools/tree/main/tools/batched_lastz1.04.22lastz1.04.22100010000000000000000000000000000000000000
bfconvertip_convertimageConvert imagepython-bioformatsUp-to-datehttps://github.com/bmcvImaging, Convert Formatsbfconvertimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert6.7.0bftools6.7.00111011100000000000000000000000000000110381523
binary2labelimageip_binary_to_labelimageBinary 2 label imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingbinary2labelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage0.5scikit-imageImage analysisImaging, Bioinformatics0110011000000000000000000000000000000110341273
binaryimage2pointsip_binaryimage_to_pointsBinary Image to Pointsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingbinaryimage2pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points0.1-2numpyImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110029
bioformats2rawbf2rawConvert image to OME-ZarrTo updatehttps://github.com/Euro-BioImagingImaging, Convert Formatsbioformats2rawimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2rawhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw0.7.0001100110000000000000000000000000000000009
biohanselbiohanselHeidelberg and Enteritidis SNP ElucidationTo updatehttps://github.com/phac-nml/biohanselSequence Analysisbiohanselnmlhttps://github.com/phac-nml/biohanselhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel2.4.0bio_hansel2.6.1000000000000000000000000000000000000000000
biohansel_bionumeric_converterbionumeric_convertConvert BioHansel output data to a Bionumerics friendly formTo updatehttps://github.com/phac-nml/galaxy_toolsText Manipulationbiohansel_bionumeric_converternmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel_bionumeric_converter0.2.0pandas000000000000000000000000000000000000000000
blast_parserblast_parserConvert 12- or 24-column BLAST output into 3-column hcluster_sg inputTo updatehttps://github.com/TGAC/earlham-galaxytools/Phylogeneticsblast_parserearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parserhttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parser0.1.2001000100000000000000000000000000000011027296
brakerbrakerBRAKER is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes .To updatehttps://github.com/Gaius-Augustus/BRAKERGenome annotationbrakergenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/brakerhttps://github.com/genouest/galaxy-tools/tree/master/tools/braker2.1.6001000100000000000000000000000000000010017109
braker3braker3BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes .braker3braker3BRAKER3BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomesGenome annotation, Gene predictionRNA-Seq, Genomics, Structure prediction, Sequence analysisTo updatehttps://github.com/Gaius-Augustus/BRAKERGenome annotationbraker3genouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/brakerhttps://github.com/genouest/galaxy-tools/tree/master/tools/braker33.0.8Genome annotation, Gene predictionRNA-Seq, Genomics, Structure prediction, Sequence analysis011101110000000000000000000000000000010010567
bundle_collectionsbundle_collectionTool to bundle up list collection into a single zip to be downloadTo updateSequence Analysisbundle_collectionsnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/bundle_collections1.3.0perl-getopt-long2.58010101010000000000000010000001000000000000
cameraabims_CAMERA_annotateDiffreport, abims_CAMERA_combinexsAnnosTo updateMetabolomicscameraworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/camera1.48.0r-snow0.4_1122212220000000000000000000000000000022030623
cfmcfmidCompetitive Fragmentation Modeling (CFM)Up-to-datehttps://sourceforge.net/p/cfm-id/Metabolomicscfmidcomputational-metabolomicshttps://github.com/computational-metabolomics/cfm-galaxy/tree/master/tools/cfmhttps://github.com/computational-metabolomics/cfm-galaxy/tree/master/tools/cfm33cfm33000000000000000000000000000000000000000000
chadoanalysis_add_analysis, analysis_delete_analyses, analysis_get_analyses, export_export_fasta, export_export_gbk, export_export_gff3, expression_add_biomaterial, expression_add_expression, expression_delete_all_biomaterials, expression_delete_biomaterials, expression_get_biomaterials, feature_delete_features, feature_get_features, feature_load_fasta, feature_load_featureprops, feature_load_gff, feature_load_go, load_blast, load_interpro, organism_add_organism, organism_delete_all_organisms, organism_delete_organisms, organism_get_organisms, phylogeny_gene_families, phylogeny_gene_order, phylogeny_load_treeGalaxy tools allowing to load data into a remote Chado database.Chado is a member of the GMOD family of tools.https://github.com/galaxy-genome-annotation/python-chadoTo updatehttps://github.com/galaxy-genome-annotation/python-chadoWeb Servicesggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chadohttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chadopython-chado2.3.9000000000000000000000000000000000000000000
collapse_collectioncollapse_datasetCollection tool that collapses a list of files into a single datasset in order of appears in collectionTo updateSequence Analysiscollapse_collectionsnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/collapse_collection5.1.0gawk1111111100001000000010100100010000000110158333934
color-deconvolutionip_color_deconvolutionColor-deconvolution methodsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingcolor_deconvolutionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution0.8-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110116
colorize_labelscolorize_labelsColorize label mapTo updatehttps://github.com/bmcvImagingcolorize_labelsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labelshttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels3.2.1networkx001000100000000000000000000000000000000000
combineJSONcombine_jsonJSON collection tool that takes multiple JSON data arrays and combines them into a single JSON array.To updateSequence Analysiscombine_jsonnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/combineJSON0.1000000000000000000000000000000000000000000
combine_assembly_statscombine_statsCombine multiple Assemblystats datasets into a single tabular reportTo updatehttps://github.com/phac-nml/galaxy_toolsAssemblycombine_assemblystatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats1.0perl-getopt-long2.58000000000000000000000000000000000000000000
combine_tabular_collectioncombineCombine Tabular Collection into a single fileTo updateSequence Analysiscombine_tabular_collectionnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_tabular_collection0.1000000000000000000000000000000000000000000
concat_channelsip_concat_channelsConcatenate imagesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingconcat_channelsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels0.3-1scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110378
concat_pairedconcat_fastqsConcatenate paired datasetsTo updatehttps://github.com/phac-nml/concatText Manipulationconcat_pairednmlhttps://github.com/phac-nml/concathttps://github.com/phac-nml/galaxy_tools/tree/master/tools/concat_paired0.2000000000000000000000000000000000000000000
coordinates_of_roiip_coordinates_of_roiCoordinates of ROIgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingcoordinates_of_roiimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi0.0.4-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110816546
correlation_analysiscorrelation_analysis[Metabolomics][W4M] Metabolites Correlation AnalysisTo updatehttp://workflow4metabolomics.orgMetabolomicscorrelation_analysisworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/correlation_analysis/https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/correlation_analysis1.0.1+galaxy0r-batch1.1_4000100010000000000000000000000000000000000
count_objectsip_count_objectsCount Objectsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingcount_objectsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects0.0.5-2scikit-imageImage analysisImaging, Bioinformatics011101110000000000000000000000000000011025272
cryptogenotyperCryptoGenotyperCryptoGenotyper is a standalone tool to *in-silico* determine species and subtype based on SSU rRNA and gp60 markers.Up-to-datehttps://github.com/phac-nml/CryptoGenotyperSequence Analysiscryptogenotypernmlhttps://github.com/phac-nml/CryptoGenotyperhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/cryptogenotyper1.0cryptogenotyper1.00010001000000000000000000000000000000110168518
csvtkcsvtk_awklike_filter, csvtk_awklike_mutate, csvtk_collapse, csvtk_concat, csvtk_convert, csvtk_correlation, csvtk_cut, csvtk_filter, csvtk_freq, csvtk_gather, csvtk_join, csvtk_mutate, csvtk_plot, csvtk_replace, csvtk_sample, csvtk_separate, csvtk_sort, csvtk_split, csvtk_summary, csvtk_uniqRapid data investigation and manipulation of csv/tsv filesTo updatehttps://bioinf.shenwei.me/csvtk/Text Manipulationcsvtknmlhttps://github.com/shenwei356/csvtkhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/csvtk0.20.0csvtk0.30.00001000100000000000000200010000000000000000
curl_postcurl_postSend file via cURL POSTTo updatehttps://github.com/bmcvData Export, Web Servicescurl_postimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curl_posthttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curl_post0.0.2curl001000100000000000000000000000000000011027440
curve_fittingip_curve_fittingPolynomial curve fitting to data pointsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/BMCV/galaxy-image-analysisImagingcurve_fittingimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting0.0.3-2numpyImage analysisImaging, Bioinformatics0010001000000000000000000000000000000100112
detection_vizip_detection_vizDetection Visualizationgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingdetection_vizimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz0.3-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110246
ectyperectyperEC-Typer - in silico serotyping of Escherichia coli speciesUp-to-datehttps://github.com/phac-nml/ecoli_serotypingSequence Analysisectypernmlhttps://github.com/phac-nml/ecoli_serotypinghttps://github.com/phac-nml/galaxy_tools/tree/master/tools/ectyper1.0.0ectyper1.0.00010001000000000000000100000000000000100539907
eteete_gene_csv_finder, ete_genetree_splitter, ete_homology_classifier, ete_init_taxdb, ete_lineage_generator, ete3_mod, ete_species_tree_generatorAnalyse phylogenetic trees using the ETE ToolkiteteeteeteThe Environment for Tree Exploration (ETE) is a computational framework that simplifies the reconstruction, analysis, and visualization of phylogenetic trees and multiple sequence alignments. Here, we present ETE v3, featuring numerous improvements in the underlying library of methods, and providing a novel set of standalone tools to perform common tasks in comparative genomics and phylogenetics. The new features include (i) building gene-based and supermatrix-based phylogenies using a single command, (ii) testing and visualizing evolutionary models, (iii) calculating distances between trees of different size or including duplications, and (iv) providing seamless integration with the NCBI taxonomy database. ETE is freely available at http://etetoolkit.orgPhylogenetic analysis, Phylogenetic tree editingPhylogeneticsTo updatehttp://etetoolkit.org/Phylogeneticseteearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/etehttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete3.1.2ete33.1.1Phylogenetic tree editingPhylogenetics007700770000000000000000000000000000077045899
export_to_clusterexport_to_clusterExport datasets to clusterTo updatehttps://github.com/TGAC/earlham-galaxytools/Data Exportexport_to_clusterearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/export_to_cluster/https://github.com/TGAC/earlham-galaxytools/tree/master/tools/export_to_cluster0.0.2EXPORT_DIR_PREFIX000000000000000000000000000000000000000000
fasta2bedfasta2bedConvert multiple fasta file into tabular bed file formatTo updatehttps://github.com/phac-nml/galaxy_toolsSequence Analysisfasta2bednmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/fasta2bed1.0.0perl-bioperl1.7.8000000000100000000000000000000000000000000
fasta_extractfa-extract-sequenceextract single fasta from multiple fasta fileTo updatehttps://toolshed.g2.bx.psu.edu/view/nml/fasta_extractSequence Analysisfasta_extractnmlhttps://toolshed.g2.bx.psu.edu/view/nml/fasta_extracthttps://github.com/phac-nml/galaxy_tools/tree/master/tools/fasta_extract1.1.0perl-bioperl1.7.80000000001001000000000000000010000000000010
fastqc_statsFastQC_SummarySummary multiple FastQC into a single tabular line reportTo updatehttps://github.com/phac-nml/galaxy_toolsSequence Analysisfastqc_statsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/fastqc_stats1.2perl-bioperl1.7.8000000000000000000000000000000000000000000
feelnc2askofeelnc2askoConvert FeelNC GTF to GFF3To updatehttps://github.com/tderrien/FEELncConvert Formatsfeelnc2askogenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/feelnc2askohttps://github.com/genouest/galaxy-tools/tree/master/tools/feelnc2asko0.1perl-bioperl1.7.8000000000000000000000000000000000000000000
fehtfehtAutomatically identify makers predictive of groups.To updatehttps://github.com/phac-nml/galaxy_toolsSequence Analysisfehtnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/feht0.1.0feht1.1.0000000000000000000000000000000000000000000
filter_spades_repeatsfilter_spades_repeatRemove short and repeat contigs/scaffoldsTo updatehttps://github.com/phac-nml/galaxy_tools/Assemblyfilter_spades_repeatsnmlhttps://github.com/phac-nml/galaxy_tools/https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats1.0.1perl-bioperl1.7.8000000000000000000000010000000000000000000
gblocksgblocksGblocksUp-to-datehttp://molevol.cmima.csic.es/castresana/Gblocks.htmlSequence Analysisgblocksearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblockshttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblocks0.91bgblocks0.91b010101010000100000000100000000000000000000
gcms2isocorgcms2isocorCorrective method dedicated to Isocor for calculating carbon isotopologue distribution from GCMS runsTo updatehttps://github.com/p2m2/p2m2toolsMetabolomicsgcms2isocorworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/gcms2isocor/https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/gcms2isocor0.2.1000000000000000000000000000000000000000000
gcms2isocorgcms2isocorConversion from GCMS PostRun Analysis to IsocorTo updateMetabolomicsgcms2isocorgenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/gcms2isocor0.1.0openjdk000000000000000000000000000000000000000000
genenotebookgenenotebook_buildGalaxy tools allowing to load data into a GeneNoteBook database.https://genenotebook.github.ioUp-to-datehttps://genenotebook.github.ioWeb Servicesggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/genenotebookhttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/genenotebook0.4.16genoboo0.4.16001100110000000000000000000000000000000000
genformgenformgenform: generation of molecular formulas by high-resolution MS and MS/MS dataTo updatehttps://sourceforge.net/projects/genform/Metabolomicsgenformworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/genform/https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/genformgenformr80010001000000000000000000000000000000110068
get_pairsget_pairsSeparate paired and unpaired reads from two fastq filesTo updateFastq Manipulationget_pairsgenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/get_pairshttps://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs0.3python000000000000000000000000000000000000000000
getmlstgetmlstDownload MLST datasets by species from pubmlst.orgTo updateSequence Analysisgetmlstnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/getmlst0.1.4.1srst20.2.0000000000000000000000010000000000000000000
gnalignaliA tool to find nonessential, loss-of-function gene variantsUp-to-datehttps://github.com/phac-nml/gnali/Variant Analysisgnalinmlhttps://github.com/phac-nml/gnali/https://github.com/phac-nml/galaxy_tools/tree/master/tools/gnali1.1.0gnali1.1.0000000000000000000000000000000000000000000
gstf_preparationgstf_preparationGeneSeqToFamily preparation converts data for the workflowTo updatehttps://github.com/TGAC/earlham-galaxytools/Convert Formatsgstf_preparationearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/gstf_preparationhttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/gstf_preparation0.4.3python00100010000000000000000000000000000001104397
hcluster_sghcluster_sgHierarchically clustering on a sparse graphTo updatehttps://github.com/douglasgscofield/hclusterPhylogeneticshcluster_sgearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sghttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg0.5.1.1hcluster_sg0.5.1001000100000000000000000000000000000011013238
hcluster_sg_parserhcluster_sg_parserConverts hcluster_sg 3-column output into lists of idsTo updatehttps://github.com/TGAC/earlham-galaxytools/Phylogeneticshcluster_sg_parserearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg_parserhttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg_parser0.2.100100010000000000000000000000000000001107290
helixerhelixerGene calling with Deep Neural NetworkshelixerhelixerHelixerDeep Learning to predict gene annotationsGene prediction, Genome annotationSequence analysis, Gene transcriptsTo updatehttps://github.com/weberlab-hhu/HelixerGenome annotationhelixergenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/helixerhttps://github.com/genouest/galaxy-tools/tree/master/tools/helixer0.3.3Gene prediction, Genome annotationSequence analysis, Gene transcripts0111011100000000000000000000000000000100193
hivtracehivtraceAn application that identifies potential transmission clusters within a supplied FASTA file with an option to find potential links against the Los Alamos HIV Sequence Database.To updateSequence Analysishivtracenmlhttps://github.com/phac-nml/galaxy_tools/tree/tools/hivtracehttps://github.com/phac-nml/galaxy_tools/tree/master/tools/hivtrace1.0.1hivtrace1.5.0000000000000000000000000010000000000000000
image_infoip_imageinfoExtracts image metadatapython-bioformatsTo updatehttps://github.com/bmcvImagingimage_infoimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info5.7.1bftools6.7.0011101110000000000000000000000000000011041621
image_mathimage_mathProcess images using arithmetic expressionsTo updatehttps://github.com/bmcvImagingimage_mathimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_mathhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math1.26.4numpy001000100000000000000000000000000000000000
image_registration_affineip_image_registrationIntensity-based Image Registrationgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingimage_registration_affineimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine0.0.3-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000100212
imagecoordinates_flipaxisimagecoordinates_flipaxisFlip coordinate axesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingimagecoordinates_flipaxisimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis0.1-2pandasImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110721825
influx_data_managerinflux_data_managerHandling influx_si data inputs in Galaxy workflowsTo updatehttps://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m/Metabolomicsinflux_si_data_managerworkflow4metabolomicshttps://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m/tree/main/tools/influx_data_managerhttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/influx_data_manager1.0.2influx-si-data-manager1.0.3000100010000000000000000000000000000000000
influx_siinflux_simetabolic flux estimation based on [in]stationary labelingTo updatehttps://github.com/sgsokol/influxMetabolomicsinflux_siworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/influx_si/https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/influx_si7.0.1influx_si7.0.4000100010000000000000000000000000000000000
ipoipo4retgroup, ipo4xcmsSet[W4M][LC-MS] IPOTo updatehttps://github.com/rietho/IPOMetabolomicsipolecorguillehttps://github.com/rietho/IPOhttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/ipo1.10.0bioconductor-ipo1.28.0000000000000000000000000000000000000000000
isoplotisoplotIsoplot is a software for the visualisation of MS data from C13 labelling experimentsTo updateMetabolomics, Visualizationisoplotworkflow4metabolomicshttps://github.com/llegregam/Isoplot/tree/mainhttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/isoplot1.3.0+galaxy1isoplot1.3.1001100110000000000000000000000000000010012
jbrowsejbrowse_to_containerA tool allowing to export a JBrowse dataset into a JBrowse docker containerTo updatehttps://jbrowse.orgWeb Servicesjbrowse_to_containerggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/jbrowsehttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/jbrowsepython000000000000000000000000000000000000000000
kaptivekaptiveKaptive reports information about capsular (K) loci found in genome assemblies.To updateSequence Analysiskaptivenmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/kaptive0.3.0kaptive3.0.0b5000000000000000000000000000000000000000000
kat_filterkat_@EXECUTABLE@Filtering kmers or reads from a database of kmers hashesTo updateSequence Analysiskat_filternmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_filter2.3kat2.4.2000000000000000000000000000000000000000000
kat_sectkat_@EXECUTABLE@SEquence Coverage estimator Tool. Estimates the coverage of each sequence in a file using K-mers from another sequence file.To updatekat_sectnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_sect2.3kat2.4.2000000000000000000000000000000000000000000
kegalignkegalignA Scalable GPU System for Pairwise Whole Genome Alignments based on LASTZ's seed-filter-extend paradigm.Up-to-datehttps://github.com/galaxyproject/KegAlignNext Gen Mapperskegalignrichard-burhanshttps://github.com/richard-burhans/galaxytools/tree/main/tools/kegalignhttps://github.com/richard-burhans/galaxytools/tree/main/tools/kegalign0.1.2.7kegalign-full0.1.2.7100010000000000000000000000000000000000000
kmd_hmdb_data_plotkmd_hmdb_data_plotretrieves data from KMD HMDB API and produce plot and csv fileTo updatehttps://github.com/workflow4metabolomics/tools-metabolomicsMetabolomicskmd_hmdb_data_plotworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/kmd_hmdb_data_plot/https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/kmd_hmdb_data_plot1.0.0python000000000000000000000000000000000000000000
label_to_binarylabel_to_binaryConvert label map to binary imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImaginglabel_to_binaryimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary1.26.4numpyImage analysisImaging, Bioinformatics001000100000000000000000000000000000000000
labelimage2pointsip_labelimage_to_pointsLabel Image to Pointsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImaginglabelimage2pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points0.2-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110036
landmark_registrationip_landmark_registrationLandmark Registrationgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImaginglandmark_registrationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration0.1.0-2scikit-imageImage analysisImaging, Bioinformatics10101010000000000000000000000000000001109857
logollogol_wrapperLogol is a pattern matching grammar language and a set of tools to search a pattern in a sequenceUp-to-datehttp://logol.genouest.org/web/app.php/logolSequence Analysisgenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/logolhttps://github.com/genouest/galaxy-tools/tree/master/tools/logol1.7.8logol1.7.8000000000000000000000000000000000000000000
lotus2lotus2LotuS2 OTU processing pipelinelotus2lotus2lotus2LotuS2 is a lightweight and user-friendly pipeline that is fast, precise, and streamlined, using extensive pre- and post-ASV/OTU clustering steps to further increase data quality. High data usage rates and reliability enable high-throughput microbiome analysis in minutes.Sequence feature detection, DNA barcodingMetagenomics, Taxonomy, Microbial ecologyTo updatehttp://lotus2.earlham.ac.uk/Metagenomicslotus2earlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus22.32lotus22.34.1Sequence feature detection, DNA barcodingMetagenomics, Taxonomy, Microbial ecology0110011000000000000000000000000000000100114936
mahotas-featuresip_mahotas_featuresCompute image features using mahotas.mahotas-feature-computationTo updatehttps://github.com/luispedro/mahotasImagingmahotas_featuresimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features0.7-2mahotas0010001000000000000000000000000000000110037
mauve_contig_movermauve_contig_moverOrder a draft genome relative to a related reference genomeTo updatehttps://github.com/phac-nml/mauve_contig_moverSequence Analysismauve_contig_movernmlhttps://github.com/phac-nml/mauve_contig_moverhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/mauve_contig_mover1.0.10mauve2.4.0.r4736000000000000000000000000000000000000000000
menecomenecoMeneco computes minimal completions to your draft network with reactions from a repair networkUp-to-datehttp://bioasp.github.io/meneco/Systems Biologymenecogenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/menecohttps://github.com/genouest/galaxy-tools/tree/master/tools/meneco1.5.2meneco1.5.2000000000000000000000000000000000000000000
mergeneighboursinlabelimageip_merge_neighbours_in_labelMerge Neighbours in Label Imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingmergeneighboursinlabelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/\mergeneighboursinlabelimagehttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mergeneighboursinlabelimage0.3-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110025
metfragmetfrag[Metabolomics][LC-MS][MS/MS] MetFrag - Perform metfrag analysis (can work with the output from msPurity)To updatehttps://github.com/computational-metabolomics/metfrag-galaxyMetabolomicscomputational-metabolomicshttps://github.com/computational-metabolomics/metfrag-galaxyhttps://github.com/computational-metabolomics/metfrag-galaxy/tree/master/tools/metfrag2.4.5+galaxy3metfrag2.4.500110011000000000000000000000000000001106153
metfrag-vismetfrag_vis[Metabolomics][LC-MS][MS/MS] This tool summarises the results generated by MetFragTo updatehttps://github.com/computational-metabolomics/metfrag-galaxyMetabolomicscomputational-metabolomicshttps://github.com/computational-metabolomics/metfrag-galaxyhttps://github.com/computational-metabolomics/metfrag-galaxy/tree/master/tools/metfrag-vis2.4.5+galaxy0metfrag2.4.50010001000000000000000000000000000000100612
mirandamirandaFinds potential target sites for miRNAs in genomic sequencesTo updatehttp://www.microrna.org/RNAmirandaearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/mirandahttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/miranda3.3a+galaxy1miranda3.3a0011001100000000000000000000000000000000416076
miranda2askomiranda2askoConverts miRanda output into AskOmics formatTo updateConvert Formatsmiranda2askogenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/miranda2askohttps://github.com/genouest/galaxy-tools/tree/master/tools/miranda2asko0.2perl000000000000000000000000000000000000000000
mixmodel4repeated_measuresmixmodel4repeated_measures[Metabolomics][W4M][Statistics] Mixed models - Analysis of variance for repeated measures using mixed modelTo updatehttp://workflow4metabolomics.orgMetabolomicsmixmodel4repeated_measuresworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/mixmodel4repeated_measures3.1.0r-lme4000100010000000000000000000000000000000000
mob_suitemob_recon, mob_typerMOB-suite is a set of software tools for clustering, reconstruction and typing of plasmids from draft assembliesTo updatehttps://github.com/phac-nml/mob-suiteSequence Analysismob_suitenmlhttps://github.com/phac-nml/mob-suitehttps://github.com/phac-nml/galaxy_tools/tree/master/tools/mob_suite3.0.3mob_suite3.1.9022202220000000000000020000000000000020032289021
morphological_operationsmorphological_operationsApply morphological operations to imagesscipyTo updatehttps://github.com/bmcvImagingmorphological_operationsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operationshttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations1.12.0scipy001000100000000000000000000000000000000000
mrbayesmrbayesA program for the Bayesian estimation of phylogeny.To updateSequence Analysismrbayesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/mrbayes1.0.2mrbayes3.2.7000000000000000000000100000000000000000000
ms2snoopms2snoop[W4M][Utils] Extraction et nettoyage des spectre MS1/2 post-traitement MSPurity.To updatehttp://workflow4metabolomics.orgMetabolomicsms2snoopworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/ms2snoop2.2.1r-base000100010000000000000000000000000000000000
msPuritymspurity_averagefragspectra, mspurity_combineannotations, mspurity_createdatabase, mspurity_createmsp, mspurity_dimspredictpuritysingle, mspurity_filterfragspectra, mspurity_flagremove, mspurity_frag4feature, mspurity_puritya, mspurity_purityx, mspurity_spectralmatching[Metabolomics][LC-MS][DIMS][MS/MS] msPurity - R package for precursor ion purity assessments, data processing and spectral matching for LC-MS(/MS) and DI-MS(/MS) dataUp-to-datehttps://github.com/computational-metabolomics/mspurity-galaxyMetabolomicscomputational-metabolomicshttps://github.com/computational-metabolomics/mspurity-galaxyhttps://github.com/computational-metabolomics/mspurity-galaxy/tree/master/tools/msPurity1.28.0bioconductor-mspurity1.28.0001011001011000000000000000000000000000001010040709
msp_splitmsp_split[Metabolomics][LC-MS][DIMS][MS/MS] msPurity - R package for precursor ion purity assessments, data processing and spectral matching for LC-MS(/MS) and DI-MS(/MS) dataTo updatehttps://github.com/computational-metabolomics/mspurity-galaxyMetabolomicstomnlhttps://github.com/computational-metabolomics/mspurity-galaxyhttps://github.com/computational-metabolomics/mspurity-galaxy/tree/master/tools/utils/msp_split0.0.2000000000000000000000000000000000000000000
mykrobe_parsermykrobe_parseRRScript to parse the results of mykrobe predictor.To updatehttps://github.com/phac-nml/mykrobe-parserSequence Analysismykrobe_parsernmlhttps://github.com/phac-nml/mykrobe-parserhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/mykrobe_parser0.1.4.1r-base000000000000000000000000000000000000000000
ncbi_egapxncbi_egapxEukaryotic Genome Annotation Pipeline - External (EGAPx)To updatehttps://github.com/ncbi/egapxGenome annotationncbi_egapxrichard-burhanshttps://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapxhttps://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx0.2-alpha100010000000000000000000000000000000000000
ncbi_fcs_adaptorncbi_fcs_adaptorFCS-adaptor detects adaptor and vector contamination in genome sequences.To updatehttps://github.com/ncbi/fcsSequence Analysisncbi_fcs_adaptorrichard-burhanshttps://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_fcs_adaptorhttps://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_fcs_adaptor0.5.0100010000000000000000010000000000000000000
nmr_annotationNmrAnnotation[Metabolomics][W4M][NMR] NMR Annotation - Annotation of complex mixture NMR spectra and metabolite proportion estimationTo updatehttp://workflow4metabolomics.orgMetabolomicsnmr_annotationmarie-tremblay-metatoulhttps://github.com/workflow4metabolomics/nmr_annotationhttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_annotation3.0.0r-batch1.1_40011001100000000000000000000000000000110347
nmr_annotation2d2DNmrAnnotation[Metabolomics][W4M][NMR] NMR Annotation2D - Automatic annotation of bi-dimensional NMR spectraTo updatehttp://workflow4metabolomics.orgMetabolomics2dnmrannotationmarie-tremblay-metatoulhttps://github.com/workflow4metabolomics/tools-metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_annotation2d2.0.0r-batch1.1_4000100010000000000000000000000000000000000
nmr_preprocessingNMR_Preprocessing, NMR_Read[Metabolomics][W4M][NMR] NMR Preprocessing - Preprocessing of 1D NMR spectra from FID to baseline correctionTo updatehttp://workflow4metabolomics.orgMetabolomicsnmr_preprocessingmarie-tremblay-metatoulhttps://github.com/workflow4metabolomics/nmr_preprocessinghttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_preprocessingr-batch1.1_402220222000000000000000000000000000002204140
normalizationnormalization[Metabolomics][W4M][ALL] Normalization (operation applied on each individual spectrum) of preprocessed dataTo updatehttp://workflow4metabolomics.orgMetabolomicsnormalizationmarie-tremblay-metatoulhttps://github.com/workflow4metabolomics/normalizationhttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/normalization1.0.7r-batch1.1_4011101110000000000000000000000000000011013133
openlabcds2csvopenlabcds2csvCreates a summary of several "Internal Standard Report" OpenLabCDS results.To updateMetabolomicsopenlabcds2csvgenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/openlabcds2csv0.1.0openjdk000000000000000000000000000000000000000000
orientationpyorientationpyCompute image orientationorientationjUp-to-datehttps://github.com/bmcvImagingorientationpyimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpyhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy0.2.0.4orientationpy0.2.0.4001000100000000000000000000000000000000000
overlay_imagesip_overlay_imagesOverlay two imagesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/BMCV/galaxy-image-analysisImagingoverlay_imagesimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images0.0.4scikit-imageImage analysisImaging, Bioinformatics01110111000000000000000000000000000001002160
pangolinpangolinPhylogenetic Assignment of Named Global Outbreak LINeagesTo updatehttps://github.com/hCoV-2019/pangolinSequence Analysispangolinnmlhttps://github.com/hCoV-2019/pangolinhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/pangolin1.1.14pangolin4.311111111000000000000001001000100000001002597276
patristpatristExtract Patristic Distance From a TreeTo updatehttps://gist.github.com/ArtPoon/7330231e74201ded54b87142a1d6cd02Phylogeneticspatristnmlhttps://github.com/phac-nml/patristhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/patrist0.1.2python000000000000000000000000000000000000000000
peptimapperpeptimapper_clustqualify, peptimapper_clust_to_gff, peptimapper_pep_match, peptimapper_pep_novo_tagProteogenomics workflow for the expert annotation of eukaryotic genomesTo updatehttps://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-019-5431-9Proteomicsgenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/peptimapperhttps://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper2.1000400040000000000000000000000000000000000
permutate_axisip_permutate_axisPermutates axesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingpermutate_axisimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis0.2-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110042
physiofitphysiofitPhysioFit is a scientific tool designed to quantify cell growth parameters and uptake & production fluxesUp-to-datephysiofit.readthedocs.ioMetabolomicsphysiofitworkflow4metabolomicshttps://github.com/MetaSys-LISBP/PhysioFithttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/physiofit3.4.0physiofit3.4.0000100010000000000000000000000000000000000
physiofit_managerphysiofit_data_managerHandling of physiofit input filesUp-to-datephysiofit.readthedocs.ioMetabolomicsphysiofit_managerworkflow4metabolomicshttps://github.com/MetaboHUB-MetaToul-FluxoMet/PhysioFit_Data_Managerhttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/physiofit_manager1.0.1physiofit_data_manager1.0.1000100010000000000000000000000000000000000
plantsegplantsegTool for cell instance aware segmentation in densely packed 3D volumetric imagesplantsegplantsegPlantSegAccurate and Versatile 3D Segmentation of Plant Tissues at Cellular Resolution.PlantSeg is a tool for cell instance aware segmentation in densely packed 3D volumetric images. The pipeline uses a two stages segmentation strategy (Neural Network + Segmentation). The pipeline is tuned for plant cell tissue acquired with confocal and light sheet microscopy. Pre-trained models are provided.Network analysis, Quantification, Microscope image visualisationPlant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopyTo updatehttps://github.com/bmcvImagingplantsegimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg1.8.1plant-segNetwork analysis, Quantification, Microscope image visualisationPlant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopy001000100000000000000000000000000000000000
plasmid_profilerplasmid_profilerExplores plasmid content in WGS dataTo updateplasmid_profilernmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmid_profiler0.1.6r000000000000000000000010000000000000000000
plasmid_profiler_suitePlasmid Profiler suite defining all dependencies for Plasmid ProfilerTo updateSequence Analysissuite_plasmid_profilernmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmid_profiler_suite000000000000000000000000000000000000000000
plasmidspadesplasmidspadesGenome assembler for assemblying plasmidTo updateAssemblyplasmidspadesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades1.1spades4.0.0000000000000100000000110000000000000000000
plotheatmapplotheatmapThis tool can be used to plot heatmap of gene expression data. The genes are chosen based on p-value, FDR, log FC and log CPM from edgeR output.To updateComputational chemistryplotheatmapearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/plotheatmaphttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/plotheatmap1.0bioconductor-preprocesscore1.64.0000000000000000000000000000001000000000000
pneumocatpneumocatPneumococcal Capsular Typing of illumina fastq readsUp-to-datehttps://github.com/phe-bioinformatics/PneumoCaTVariant Analysispneumocatnmlhttps://github.com/phe-bioinformatics/PneumoCaThttps://github.com/phac-nml/galaxy_tools/tree/master/tools/pneumocat1.2.1pneumocat1.2.1000000000000000000000000000000000000000000
points2binaryimageip_points_to_binaryimagePoints to Binary Imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingpoints2binaryimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage0.2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110241
points2labelimageip_points_to_labelPoints to label imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingpoints2labelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage0.3-2numpyImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110031
points_association_nnip_points_association_nnAssociation of points in consecutive framesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/BMCV/galaxy-image-analysisImagingpoints_association_nnimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn0.0.3-2numpyImage analysisImaging, Bioinformatics0010001000000000000000000000000000000100229
projective_transformationip_projective_transformationProjective transformationgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingprojective_transformationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation0.1.2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110185
projective_transformation_pointsip_projective_transformation_pointsProjective transformation of ROIs defined by pixel (point) coordinatesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingprojective_transformation_pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points0.1.1scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110921343
promerpromer4_substitutionsAligns two sets of contigs and reports amino acid substitutions between themTo updatehttps://github.com/phac-nml/promerAssemblypromernmlhttps://github.com/phac-nml/promerhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/promer1.2python000000000000000000000000000000000000000000
pseudogenomepseudogenomeCreate a pseudogenome from a multiple fasta file either with a JCVI linker or custom length and characters.To updatehttps://github.com/phac-nml/galaxy_toolsSequence Analysispseudogenomenmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/pseudogenome1.0.0perl-bioperl1.7.8000000000000000000000000000000000000000000
quasitoolsaacoverage, aavariants, callcodonvar, callntvar, complexity_bam, complexity_fasta, consensus, distance, dnds, drmutations, hydra, qualityA collection of tools for analysing Viral QuasispeciesUp-to-datehttps://github.com/phac-nml/quasitoolsSequence Analysisquasitoolsnmlhttps://github.com/phac-nml/quasitoolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/quasitools0.7.0quasitools0.7.001201201201200000000000000120000000000000000000
rdockrdockDocking ligands to proteins and nucleic acidsTo updatehttp://rdock.sourceforge.net/Computational chemistryrdockearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/rdock/https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rdock1.0rDock2013.1000000000000000000000000000000000000000000
refseq_masherrefseq_masher_contains, refseq_masher_matchesFind what genomes match or are contained within your sequence data using Mash_ and a Mash sketch database.Up-to-datehttps://github.com/phac-nml/refseq_masherSequence Analysisrefseq_mashernmlhttps://github.com/phac-nml/refseq_masherhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/refseq_masher0.1.2refseq_masher0.1.2202220220000000000002020000000000000000000
repeat_channelsrepeat_channelsConvert single-channel to multi-channel imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingrepeat_channelsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels1.26.4numpyImage analysisImaging, Bioinformatics001000100000000000000000000000000000000000
repeatexplorer2repeatexplorer_clusteringTool for annotation of repeats from unassembled shotgun reads.To updatehttps://github.com/repeatexplorer/repex_tareanGenome annotationrepeatexplorer2ggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer22.3.80010001000000000000000000000000000000000016
replace_chromosome_namesreplace_chromosome_namesReplace chromosome namesTo updateText Manipulationreplace_chromosome_namesearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/replace_chromosome_names/https://github.com/TGAC/earlham-galaxytools/tree/master/tools/replace_chromosome_names0.1python001000100000000000000000000000000000011020537
rfoverfovePerform segmentation region-based fitting of overlapping ellipsesrfoverfoveRFOVERFOVE (Region-based Fitting of Overlapping Ellipses and its Application to Cells Segmentation) is a MATLAB script for performing image segmentation on cells.Image analysisCell biology, Biomedical science, ImagingTo updatehttps://sites.google.com/site/costaspanagiotakis/research/csImagingrfoveimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove2023.11.12Image analysisCell biology, Biomedical science, Imaging001000100000000000000000000000000000000007
rsat_filter_snpsrsat_filter_snpsFilter SNPs in RSAT Matrix Scan outputTo updatehttps://github.com/TGAC/earlham-galaxytools/ChIP-seq, Systems Biologyrsat_filter_snpsearlhamhttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/rsat_filter_snpshttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/rsat_filter_snps0.1000000000000000000000000000000000000000000
scale_imageip_scale_imageScale imagescikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImagingscale_imageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image0.18.3scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language00100010000000000000000000000000000001109512
segalignsegalignA Scalable GPU System for Pairwise Whole Genome Alignments based on LASTZ's seed-filter-extend paradigm.Up-to-datehttps://github.com/gsneha26/SegAlignNext Gen Mapperssegalignrichard-burhanshttps://github.com/richard-burhans/galaxytools/tree/main/tools/segalignhttps://github.com/richard-burhans/galaxytools/tree/main/tools/segalign0.1.2.7segalign-galaxy0.1.2.7100010000000000000000000000000000000000000
segmetricsip_segmetricsImage segmentation and object detection performance measuressegmetricssegmetricssegmetricsSegMetricsImage segmentation and object detection performance measuresImage analysisTo updatehttps://github.com/bmcvImagingsegmetricsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics1.4segmetrics1.5Image analysis001000100000000000000000000000000000010023
seqtk_nmlseqtk_nml_sampleTool to downsample fastq readsTo updatehttps://github.com/lh3/seqtkSequence Analysisseqtk_nmlnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/seqtk_nml1.0.1seqtk1.4000000000000000000000000000000000000000000
sistr_cmdsistr_cmdSISTR in silico serotyping toolTo updatehttps://github.com/phac-nml/sistr_cmdSequence Analysissistr_cmdnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/sistr_cmd1.1.1sistr_cmd1.1.201100110000000000000001000000000000001101332489
skyline2isocorskyline2isocorConverting skyline output to IsoCor inputUp-to-datehttps://github.com/MetaboHUB-MetaToul-FluxoMet/Skyline2IsoCorMetabolomicsskyline2isocorworkflow4metabolomicshttps://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4mhttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/skyline2isocor1.0.0skyline2isocor1.0.0001100110000000000000000000000000000000000
slice_imageip_slice_imageSlice imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingslice_imageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image0.3-4scikit-imageImage analysisImaging, Bioinformatics11101110000000000000000000000000000001100102
smaltsmaltSMALT aligns DNA sequencing reads with a reference genome.Up-to-datehttp://www.sanger.ac.uk/science/tools/smalt-0Sequence Analysissmaltnmlhttps://sourceforge.net/projects/smalt/https://github.com/phac-nml/galaxy_tools/tree/master/tools/smalt0.7.6smalt0.7.6000000000000000000000010000000000000000000
smart_domainssmart_domainsSMART domainsTo updatehttp://smart.embl.de/Sequence Analysissmart_domainsearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domainshttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domains0.1.0perl-bioperl1.7.8000000000000000000000000000000000000000000
sminasminasmina is a fork of Autodock Vina (http://vina.scripps.edu/) that focuses on improving scoring and minimizationTo updatehttps://sourceforge.net/projects/smina/Computational chemistrysminaearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/smina/https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smina1.0smina2017.11.910101010000000000000000000000000000001109493
spades_header_fixerspades_header_fixerFixes Spades Fasta idsTo updatehttps://github.com/phac-nml/galaxy_toolsFasta Manipulationspades_fasta_header_fixernmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/spades_header_fixer1.1.2+galaxy1sed000000000000000000000000000000000000000000
spatyperspatyperDetermines SPA type based on repeats in a submitted staphylococcal protein A fasta file.Up-to-datehttps://github.com/HCGB-IGTP/spaTyperSequence Analysisspatypernmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/spatyperhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/spatyper0.3.3spatyper0.3.3000000000000000000000000000000000000000000
split_labelmapip_split_labelmapSplit Labelmapsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingsplit_labelmapimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmaps/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmap0.2-3scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110042
spolpredspolpredA program for predicting the spoligotype from raw sequence readsTo updateSequence Analysisspolprednmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/spolpred1.0.1spolpred000000000000000000000000000000000000000000
spot_detection_2dip_spot_detection_2dSpot detection in 2D image sequencegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/BMCV/galaxy-image-analysisImagingspot_detection_2dimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d0.0.3-2imageioImage analysisImaging, Bioinformatics0010001000000000000000000000000000000100316
srst2srst2Short Read Sequence Typing for Bacterial PathogensTo updateSequence Analysissrst2nmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/srst20.3.7srst20.2.0001000100000000000000010000000000000010022205
staramrstaramr_searchScan genome contigs against the ResFinder, PlasmidFinder, and PointFinder antimicrobial resistance databases.Up-to-datehttps://github.com/phac-nml/staramrSequence Analysisstaramrnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/staramrhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr0.10.0staramr0.10.0111111110000000000001110000000000000011088912673
stringmlststringmlstRapid and accurate identification of the sequence type (ST)To updateSequence Analysisstringmlstnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/stringmlst1.1.0stringMLST0.6.3000000000000000000000010000000000000000000
suite_qiime2__alignmentqiime2__alignment__mafft, qiime2__alignment__mafft_add, qiime2__alignment__maskTo updatehttps://github.com/qiime2/q2-alignmentMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignmenthttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment2024.5.0+q2galaxy.2024.5.03333333300000000000000000000000000000300613
suite_qiime2__compositionqiime2__composition__add_pseudocount, qiime2__composition__ancom, qiime2__composition__ancombc, qiime2__composition__da_barplot, qiime2__composition__tabulateTo updatehttps://github.com/qiime2/q2-compositionMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__compositionhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition2024.5.0+q2galaxy.2024.5.0444244420000000000000000000000000000040025
suite_qiime2__cutadaptqiime2__cutadapt__demux_paired, qiime2__cutadapt__demux_single, qiime2__cutadapt__trim_paired, qiime2__cutadapt__trim_singleTo updatehttps://github.com/qiime2/q2-cutadaptMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapthttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt2024.5.0+q2galaxy.2024.5.04444444400000000000000000000000000000400567
suite_qiime2__dada2qiime2__dada2__denoise_ccs, qiime2__dada2__denoise_paired, qiime2__dada2__denoise_pyro, qiime2__dada2__denoise_singleTo updatehttp://benjjneb.github.io/dada2/Metagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada22024.5.0+q2galaxy.2024.5.0444444440000000000000000000000000000040031202
suite_qiime2__deblurqiime2__deblur__denoise_16S, qiime2__deblur__denoise_other, qiime2__deblur__visualize_statsTo updatehttps://github.com/biocore/deblurMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblurhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur2024.5.0+q2galaxy.2024.5.03333333300000000000000000000000000000300973
suite_qiime2__demuxqiime2__demux__emp_paired, qiime2__demux__emp_single, qiime2__demux__filter_samples, qiime2__demux__partition_samples_paired, qiime2__demux__partition_samples_single, qiime2__demux__subsample_paired, qiime2__demux__subsample_single, qiime2__demux__summarize, qiime2__demux__tabulate_read_countsTo updatehttps://github.com/qiime2/q2-demuxMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demuxhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux2024.5.0+q2galaxy.2024.5.0666666660000000000000000000000000000060026114
suite_qiime2__diversityqiime2__diversity__adonis, qiime2__diversity__alpha, qiime2__diversity__alpha_correlation, qiime2__diversity__alpha_group_significance, qiime2__diversity__alpha_phylogenetic, qiime2__diversity__alpha_rarefaction, qiime2__diversity__beta, qiime2__diversity__beta_correlation, qiime2__diversity__beta_group_significance, qiime2__diversity__beta_phylogenetic, qiime2__diversity__beta_rarefaction, qiime2__diversity__bioenv, qiime2__diversity__core_metrics, qiime2__diversity__core_metrics_phylogenetic, qiime2__diversity__filter_alpha_diversity, qiime2__diversity__filter_distance_matrix, qiime2__diversity__mantel, qiime2__diversity__partial_procrustes, qiime2__diversity__pcoa, qiime2__diversity__pcoa_biplot, qiime2__diversity__procrustes_analysis, qiime2__diversity__tsne, qiime2__diversity__umapTo updatehttps://github.com/qiime2/q2-diversityMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversityhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity2024.5.0+q2galaxy.2024.5.0212121212121212100000000000000000000000000000210043168
suite_qiime2__diversity_libqiime2__diversity_lib__alpha_passthrough, qiime2__diversity_lib__beta_passthrough, qiime2__diversity_lib__beta_phylogenetic_meta_passthrough, qiime2__diversity_lib__beta_phylogenetic_passthrough, qiime2__diversity_lib__bray_curtis, qiime2__diversity_lib__faith_pd, qiime2__diversity_lib__jaccard, qiime2__diversity_lib__observed_features, qiime2__diversity_lib__pielou_evenness, qiime2__diversity_lib__shannon_entropy, qiime2__diversity_lib__unweighted_unifrac, qiime2__diversity_lib__weighted_unifracTo updatehttps://github.com/qiime2/q2-diversity-libMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_libhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib2024.5.0+q2galaxy.2024.5.0121212121212121200000000000000000000000000000120044
suite_qiime2__emperorqiime2__emperor__biplot, qiime2__emperor__plot, qiime2__emperor__procrustes_plotTo updatehttp://emperor.microbio.meMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperorhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor2024.5.0+q2galaxy.2024.5.0333333330000000000000000000000000000030026
suite_qiime2__feature_classifierqiime2__feature_classifier__blast, qiime2__feature_classifier__classify_consensus_blast, qiime2__feature_classifier__classify_consensus_vsearch, qiime2__feature_classifier__classify_hybrid_vsearch_sklearn, qiime2__feature_classifier__classify_sklearn, qiime2__feature_classifier__extract_reads, qiime2__feature_classifier__find_consensus_annotation, qiime2__feature_classifier__fit_classifier_naive_bayes, qiime2__feature_classifier__fit_classifier_sklearn, qiime2__feature_classifier__makeblastdb, qiime2__feature_classifier__vsearch_globalTo updatehttps://github.com/qiime2/q2-feature-classifierMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifierhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier2024.5.0+q2galaxy.2024.5.0101010101010101000000000000000000000000000000100048263
suite_qiime2__feature_tableqiime2__feature_table__core_features, qiime2__feature_table__filter_features, qiime2__feature_table__filter_features_conditionally, qiime2__feature_table__filter_samples, qiime2__feature_table__filter_seqs, qiime2__feature_table__group, qiime2__feature_table__heatmap, qiime2__feature_table__merge, qiime2__feature_table__merge_seqs, qiime2__feature_table__merge_taxa, qiime2__feature_table__presence_absence, qiime2__feature_table__rarefy, qiime2__feature_table__relative_frequency, qiime2__feature_table__rename_ids, qiime2__feature_table__split, qiime2__feature_table__subsample_ids, qiime2__feature_table__summarize, qiime2__feature_table__summarize_plus, qiime2__feature_table__tabulate_feature_frequencies, qiime2__feature_table__tabulate_sample_frequencies, qiime2__feature_table__tabulate_seqs, qiime2__feature_table__transposeTo updatehttps://github.com/qiime2/q2-feature-tableMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_tablehttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table2024.5.0+q2galaxy.2024.5.0171717171717171700000000000000000000000000000170059213
suite_qiime2__fragment_insertionqiime2__fragment_insertion__classify_otus_experimental, qiime2__fragment_insertion__filter_features, qiime2__fragment_insertion__seppTo updatehttps://github.com/qiime2/q2-fragment-insertionMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertionhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion2024.5.0+q2galaxy.2024.5.03333333300000000000000000000000000000300620
suite_qiime2__longitudinalqiime2__longitudinal__anova, qiime2__longitudinal__feature_volatility, qiime2__longitudinal__first_differences, qiime2__longitudinal__first_distances, qiime2__longitudinal__linear_mixed_effects, qiime2__longitudinal__maturity_index, qiime2__longitudinal__nmit, qiime2__longitudinal__pairwise_differences, qiime2__longitudinal__pairwise_distances, qiime2__longitudinal__plot_feature_volatility, qiime2__longitudinal__volatilityTo updatehttps://github.com/qiime2/q2-longitudinalMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinalhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal2024.5.0+q2galaxy.2024.5.01111111111111111000000000000000000000000000001100614
suite_qiime2__metadataqiime2__metadata__distance_matrix, qiime2__metadata__merge, qiime2__metadata__shuffle_groups, qiime2__metadata__tabulateTo updatehttps://github.com/qiime2/q2-metadataMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadatahttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata2024.5.0+q2galaxy.2024.5.0333333330000000000000000000000000000030040232
suite_qiime2__phylogenyqiime2__phylogeny__align_to_tree_mafft_fasttree, qiime2__phylogeny__align_to_tree_mafft_iqtree, qiime2__phylogeny__align_to_tree_mafft_raxml, qiime2__phylogeny__fasttree, qiime2__phylogeny__filter_table, qiime2__phylogeny__filter_tree, qiime2__phylogeny__iqtree, qiime2__phylogeny__iqtree_ultrafast_bootstrap, qiime2__phylogeny__midpoint_root, qiime2__phylogeny__raxml, qiime2__phylogeny__raxml_rapid_bootstrap, qiime2__phylogeny__robinson_fouldsTo updatehttps://github.com/qiime2/q2-phylogenyMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogenyhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny2024.5.0+q2galaxy.2024.5.012121212121212120000000000000000000000000000012001237
suite_qiime2__quality_controlqiime2__quality_control__bowtie2_build, qiime2__quality_control__decontam_identify, qiime2__quality_control__decontam_identify_batches, qiime2__quality_control__decontam_remove, qiime2__quality_control__decontam_score_viz, qiime2__quality_control__evaluate_composition, qiime2__quality_control__evaluate_seqs, qiime2__quality_control__evaluate_taxonomy, qiime2__quality_control__exclude_seqs, qiime2__quality_control__filter_readsTo updatehttps://github.com/qiime2/q2-quality-controlMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_controlhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control2024.5.0+q2galaxy.2024.5.0666666660000000000000000000000000000060000
suite_qiime2__quality_filterqiime2__quality_filter__q_scoreTo updatehttps://github.com/qiime2/q2-quality-filterMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filterhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter2024.5.0+q2galaxy.2024.5.01111111100000000000000000000000000000100213
suite_qiime2__rescriptqiime2__rescript__cull_seqs, qiime2__rescript__degap_seqs, qiime2__rescript__dereplicate, qiime2__rescript__edit_taxonomy, qiime2__rescript__evaluate_classifications, qiime2__rescript__evaluate_cross_validate, qiime2__rescript__evaluate_fit_classifier, qiime2__rescript__evaluate_seqs, qiime2__rescript__evaluate_taxonomy, qiime2__rescript__extract_seq_segments, qiime2__rescript__filter_seqs_length, qiime2__rescript__filter_seqs_length_by_taxon, qiime2__rescript__filter_taxa, qiime2__rescript__get_gtdb_data, qiime2__rescript__get_ncbi_data, qiime2__rescript__get_ncbi_data_protein, qiime2__rescript__get_ncbi_genomes, qiime2__rescript__get_silva_data, qiime2__rescript__get_unite_data, qiime2__rescript__merge_taxa, qiime2__rescript__orient_seqs, qiime2__rescript__parse_silva_taxonomy, qiime2__rescript__reverse_transcribe, qiime2__rescript__subsample_fasta, qiime2__rescript__trim_alignmentTo updatehttps://github.com/nbokulich/RESCRIPtMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescripthttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript2024.5.0+q2galaxy.2024.5.0000000000000000000000000000000000000000000
suite_qiime2__sample_classifierqiime2__sample_classifier__classify_samples, qiime2__sample_classifier__classify_samples_from_dist, qiime2__sample_classifier__classify_samples_ncv, qiime2__sample_classifier__confusion_matrix, qiime2__sample_classifier__fit_classifier, qiime2__sample_classifier__fit_regressor, qiime2__sample_classifier__heatmap, qiime2__sample_classifier__metatable, qiime2__sample_classifier__predict_classification, qiime2__sample_classifier__predict_regression, qiime2__sample_classifier__regress_samples, qiime2__sample_classifier__regress_samples_ncv, qiime2__sample_classifier__scatterplot, qiime2__sample_classifier__split_table, qiime2__sample_classifier__summarizeTo updatehttps://github.com/qiime2/q2-sample-classifierMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifierhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier2024.5.0+q2galaxy.2024.5.0151515151515151500000000000000000000000000000150011
suite_qiime2__taxaqiime2__taxa__barplot, qiime2__taxa__collapse, qiime2__taxa__filter_seqs, qiime2__taxa__filter_tableTo updatehttps://github.com/qiime2/q2-taxaMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxahttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa2024.5.0+q2galaxy.2024.5.0444444440000000000000000000000000000040022172
suite_qiime2__vsearchqiime2__vsearch__cluster_features_closed_reference, qiime2__vsearch__cluster_features_de_novo, qiime2__vsearch__cluster_features_open_reference, qiime2__vsearch__dereplicate_sequences, qiime2__vsearch__fastq_stats, qiime2__vsearch__merge_pairs, qiime2__vsearch__uchime_denovo, qiime2__vsearch__uchime_refTo updatehttps://github.com/qiime2/q2-vsearchMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearchhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch2024.5.0+q2galaxy.2024.5.08887888700000000000000000000000000000800816
suite_qiime2_coreTo updateStatistics, Metagenomics, Sequence Analysisq2d2https://github.com/qiime2/galaxy-tools/tree/main/tool_collections/suite_qiime2_core000000000000000000000000000000000000000000
suite_qiime2_core__toolsqiime2_core__tools__export, qiime2_core__tools__import, qiime2_core__tools__import_fastqTo updatehttps://qiime2.orgMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__toolshttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools2024.5.0+dist.he540b0b022222222000000000000000000000000000002001247087
superdsmip_superdsmGlobally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy imagessuperdsmsuperdsmsuperdsmSuperDSMSuperDSM is a globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images and beyond.Image analysisTo updatehttps://github.com/bmcvImagingsuperdsmimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm0.2.0superdsm0.3.0Image analysis0010001000000000000000000000000000000100216
t_coffeet_coffeeT-CoffeeTo updatehttp://www.tcoffee.org/Sequence Analysist_coffeeearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffeehttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee13.45.0.4846264t-coffee13.46.0.919e8c6b0010001001000000000000000000000000000110708690
tree_relabelertree_relabelRelabels the tips of a newick formatted tree.To updateText Manipulationtree_relabelernmlhttps://github.com/phac-nml/galaxy_tools/blob/master/tools/tree_relabelerhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/tree_relabeler1.1.0perl-bioperl1.7.8000000000000000000000010000000000000000000
tripalanalysis_add_analysis, analysis_get_analyses, analysis_load_blast, analysis_load_fasta, analysis_load_gff3, analysis_load_go, analysis_load_interpro, analysis_sync, db_index, db_populate_mviews, entity_publish, expression_add_biomaterial, expression_add_expression, expression_delete_biomaterials, expression_get_biomaterials, expression_sync_biomaterials, feature_delete_orphans, feature_sync, organism_add_organism, organism_get_organisms, organism_sync, phylogeny_syncGalaxy tools allowing to load data into a remote Tripal server.Tripal is a toolkit for construction of online biological (genetics, genomics, breeding, etc), community database,and is a member of the GMOD family of tools. Tripal provides by default integration with the GMOD Chado database schema and Drupal, a popular Content Management Systems (CMS).https://github.com/galaxy-genome-annotation/python-tripalTo updatehttps://github.com/galaxy-genome-annotation/python-tripalWeb Servicesggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripalhttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripalpython-tripal3.2.1000000000000000000000000000000000000000000
unzipunzipUnzip fileTo updatehttps://github.com/bmcvConvert Formatsunzipimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/unzip/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/unzip6.0unzip01110111000000000000001000000000000001105085370
visceral-evaluatesegmentationip_visceral_evaluatesegmentationVisceral Project - Evaluate Segmentation Toolevaluatesegmentation-toolTo updatehttps://github.com/bmcvImagingvisceral_evaluatesegmentationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentationhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation0.5-2visceral-evaluatesegmentation2015.07.030010001000000000000000000000000000000110025
voronoi_tessellationvoronoi_tessellationCompute Voronoi tesselationscikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImagingvoronoi_tesselationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tesselationhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tessellation0.22.0scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language001000100000000000000000000000000000000000
w4mclassfilterw4mclassfilterFilter W4M data by values or metadataTo updatehttps://github.com/HegemanLab/w4mclassfilter_galaxy_wrapperMetabolomicsw4mclassfiltereschen42https://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper/tree/masterhttps://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper/tree/master/tools/w4mclassfilter0.98.19r-base011001100000000000000000000000000000011032834
w4mconcatenateW4Mconcatenate[W4M][Utils] concatenate two Metadata tablesTo updatehttp://workflow4metabolomics.orgMetabolomicsw4mconcatenateworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/w4mconcatenate1.0.0+galaxy0r-base000100010000000000000000000000000000000000
w4mcorcovw4mcorcovOPLS-DA Contrasts of Univariate ResultsTo updatehttps://github.com/HegemanLab/w4mcorcov_galaxy_wrapperMetabolomicsw4mcorcoveschen42https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper/tree/masterhttps://github.com/HegemanLab/w4mcorcov_galaxy_wrapper/tree/master/tools/w4mcorcov0.98.18r-base01100110000000000000000000000000000001105368
w4mjoinpnw4mjoinpnJoin positive- and negative-mode W4M datasetsTo updatehttps://github.com/HegemanLab/w4mjoinpn_galaxy_wrapperMetabolomicsw4mjoinpneschen42https://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper/tree/masterhttps://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper/tree/master/tools/w4mjoinpn0.98.2coreutils8.2501100110000000000000000000000000000001102171
wadewadeidentify regions of interestTo updatehttps://github.com/phac-nml/wadeSequence Analysiswadenmlhttps://github.com/phac-nml/wadehttps://github.com/phac-nml/galaxy_tools/tree/master/tools/wade0.2.5+galaxy1wade0.2.6000000000000000000000000000000000000000000
wsi_extract_top_viewip_wsi_extract_top_viewWSI Extract Top ViewTo updatehttps://github.com/bmcvImagingwsi_extract_top_viewimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view0.2-2scikit-image0010001000000000000000000000000000000110038
xcmsabims_xcms_fillPeaks, abims_xcms_group, abims_xcms_refine, abims_xcms_retcor, abims_xcms_summary, abims_xcms_xcmsSet, msnbase_readmsdata, xcms_export_samplemetadata, xcms_merge, xcms_plot_chromatogram, xcms_plot_eic, xcms_plot_rawXCMSXCMSxcmsFramework for processing and visualization of chromatographically separated and single-spectra mass spectral data. The packages enables imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files and preprocesses data for high-throughput, untargeted analyte profiling.Mass spectrum visualisation, Label-free quantification, Validation, Filtering, Chromatographic alignment, Peak detection, Chromatogram visualisationBiological imaging, Data visualisation, MetabolomicsUp-to-datehttps://github.com/sneumann/xcmsMetabolomicsxcmsworkflow4metabolomicshttps://github.com/workflow4metabolomics/tools-metabolomics/https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/xcms4.0.0bioconductor-xcms4.0.0Mass spectrum visualisation, Label-free quantification, Validation, Filtering, Chromatographic alignment, Peak detection, Chromatogram visualisationData visualisation, Metabolomics9111010911101000000000000000000000000000000109035629809
10x_bamtofastq10x_bamtofastqConverts 10x Genomics BAM to FASTQTo updatehttps://github.com/10XGenomics/bamtofastqConvert Formats10x_bamtofastqbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/10x_bamtofastqhttps://github.com/bgruening/galaxytools/tree/master/tools/10x_bamtofastq1.4.110x_bamtofastq111011100000000000000000000000000000010046228
AggregateAlignmentsgraphclust_aggregate_alignmentsAggregate and filter alignment metrics of individual clusters, like the output of graphclust_align_cluster.Up-to-dateRNAgraphclust_aggregate_alignmentsrnateamhttps://github.com/bgruening/galaxytools/tools/GraphClust/AggregateAlignmentshttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/AggregateAlignments0.6.0graphclust-wrappers0.6.000100010000000000000000000000000000001106116
AlignClustergraphclust_align_clusterAlign predicted clusters of glob_report_no_align step with locarna and conservation analysis and visualizations.To updateRNAgraphclust_align_clusterrnateamhttps://github.com/bgruening/galaxytools/tools/GraphClust/AlignClusterhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/AlignCluster0.1graphclust-wrappers0.6.00010001000000000000000000000000000000010103060
CMFindercmFinderDetermines consensus motives for sequences.To updateRNAgraphclust_cmfinderrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinderhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinder0.4graphclust-wrappers0.6.000100010000000000000000000000000000001101445191
CollectResultsglob_reportPost-processing. Redundant clusters are merged and instances that belong to multiple clusters are assigned unambiguously. For every pair of clusters, the relative overlap (i.e. the fraction of instances that occur in both clusters) is computed and clusters are merged if the overlap exceeds 50%. instances that occur in both clusters) is computed and clusters are merged if the overlap exceeds 50%.To updateRNAgraphclust_postprocessingrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultshttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResults0.5graphclust-wrappers0.6.00010001000000000000000000000000000000110141961
CollectResultsNoAligngraphclust_glob_report_no_alignRedundant GraphClust clusters are merged and instances that belong to multiple clusters are assigned unambiguously.To updateRNAgraphclust_postprocessing_no_alignrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultsNoAlignhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultsNoAlign0.5graphclust-wrappers0.6.000100010000000000000000000000000000001100108
GSPANgspanSecond step of GraphClustTo updateRNAgraphclust_fasta_to_gspanrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPANhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPAN0.4graphclust-wrappers0.6.000100010000000000000000000000000000001104133
LocARNAGraphClustlocarna_best_subtreeMLocARNA computes a multiple sequence-structure alignment of RNA sequences.To updateRNAgraphclust_mlocarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClusthttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClust0.4graphclust-wrappers0.6.000100010000000000000000000000000000001101345325
NSPDKNSPDK_candidateClust, nspdk_sparseProduces an explicit sparse feature encoding and copmutes global feature index and returns top dense sets.To updateRNAgraphclust_nspdkrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/NSPDKhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/NSPDK9.2.3.1graphclust-wrappers0.6.000200020000000000000000000000000000002202862388
PlottingmotifFinderPlotPlotting results for GraphClustTo updateRNAgraphclust_motif_finder_plotrnateamhttps://github.com/eteriSokhoyan/galaxytools/tree/master/tools/GraphClust/Plottinghttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Plotting0.4seaborn0010001000000000000000000000000000000110368
PrepareForMlocarnapreMlocThis tool prepares files for locarna step.To updateRNAgraphclust_prepocessing_for_mlocarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarnahttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarna0.4graphclust-wrappers0.6.00010001000000000000000000000000000000110151932
PreprocessingpreprocPreprocessing input for GraphClustTo updateRNAgraphclust_preprocessingrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClusthttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Preprocessing0.5graphclust-wrappers0.6.00010001000000000000000000000000000000110181758
Structure_GSPANstructure_to_gspanConvert RNA structure to GSPAN graphsTo updateRNAstructure_to_gspanrnateamhttps://github.com/mmiladi/galaxytools/blob/graphclust-gspan/tools/GraphClust/Structure_GSPANhttps://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Structure_GSPAN0.4graphclust-wrappers0.6.00010001000000000000000000000000000000110162925
add_line_to_fileadd_line_to_fileAdds a text line to the beginning or end of a file.To updateText Manipulationadd_line_to_filebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/add_line_to_filehttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/add_line_to_file0.1.0coreutils8.25111011100000000000000000000000000000010019314480
add_valueaddValueAdd a value as a new column.To updateText Manipulationadd_valuedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/add_valuehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/add_value1.0.1perl1111111111101011110111111000010010110111591367167
agatagatGTF/GFF analysis toolkitagatagatAGATAnother Gff Analysis Toolkit (AGAT)Suite of tools to handle gene annotations in any GTF/GFF format.Data handling, Genome annotationGenomicsUp-to-datehttps://github.com/NBISweden/AGATConvert Formats, Statistics, Fasta Manipulationagatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/agathttps://github.com/bgruening/galaxytools/tree/master/tools/agat1.4.0agat1.4.0Data handling, Genome annotationGenomics011101110000000000000000000000000000010042481
align_back_transalign_back_transThread nucleotides onto a protein alignment (back-translation)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_transFasta Manipulation, Sequence Analysisalign_back_transpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_transhttps://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans0.0.10biopython1.70001000100000000000000000000000000000011011329
annotation_profilerAnnotation_Profiler_0Profile Annotations for a set of genomic intervalsTo updateGenomic Interval Operationsannotation_profilerdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/annotation_profilerhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/annotation_profiler1.0.0bx-python0.12.0101010100000000000000000000000000000011002
antarnaantarnaantaRNA uses ant colony optimization to solve the inverse folding problem in RNA research .To updateRNAantarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/antarna/https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/antarna1.1antarna2.0.1.20010001000000000000000000000000000000110252
antismashantismashAntismash allows the genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clustersantismashantismashantiSMASHRapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. It integrates and cross-links with a large number of in silico secondary metabolite analysis tools that have been published earlier.Sequence clustering, Gene prediction, Differential gene expression analysisMolecular interactions, pathways and networks, Gene and protein familiesTo updatehttps://antismash.secondarymetabolites.orgSequence Analysisantismashbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/antismashhttps://github.com/bgruening/galaxytools/tree/master/tools/antismash6.1.1antismash7.1.0Sequence clustering, Gene prediction, Differential gene expression analysisMolecular interactions, pathways and networks, Gene and protein families111011100000000000100010000000000000011027914596
aresite2AREsite2_RESTAREsite2 REST InterfaceTo updatehttp://rna.tbi.univie.ac.at/AREsiteRNA, Data Source, Sequence Analysisaresite2rnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite2https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite20.1.2python0010001000000000000000000000000000000110465
atactk_trim_adaptersatactk_trim_adaptersTrim adapters from paired-end HTS reads.To updatehttps://github.com/ParkerLab/atactk/Fastq Manipulationatactk_trim_adaptersrnateamhttps://github.com/bgruening/galaxytools/blob/master/tools/trim_adaptershttps://github.com/bgruening/galaxytools/tree/master/tools/atactk_trim_adapters0.1.6atactk0.1.9001000100000000000000000000000000000011026257
augustusaugustusAUGUSTUS is a program that predicts genes in eukaryotic genomic sequences.To updatehttp://bioinf.uni-greifswald.de/augustus/Sequence Analysisaugustusbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/augustushttps://github.com/bgruening/galaxytools/tree/master/tools/augustus3.1.0augustus3.5.011111111000000000000011000000000000001105168864
bamhashbamhashHash BAM and FASTQ files to verify data integrityUp-to-datehttps://github.com/DecodeGenetics/BamHashSequence Analysisbamhashbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bamhashhttps://github.com/bgruening/galaxytools/tree/master/tools/bamhash1.1bamhash1.1001000100000000000000000000000000000011015169
barcode_collapsebarcode_collapsePaired End randomer aware duplicate removal algorithmTo updatehttps://github.com/YeoLab/gscriptsRNA, Sequence Analysisbarcode_collapsernateamhttps://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapsehttps://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapse0.1.0pysam0.22.1000000000000000000000000000000000000000000
basecoveragegops_basecoverage_1Base Coverage of all intervalsTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsbasecoveragedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/basecoveragehttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/basecoverage1.0.0bx-python0.12.011111111000000000000010000000100000001102308
best_regression_subsetsBestSubsetsRegression1Perform Best-subsets RegressionTo updateSequence Analysis, Variant Analysisbest_regression_subsetsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/best_regression_subsetshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/best_regression_subsets1.0.0numpy101110110000000000000000000000000000011003
bia-ftplinksbia_downloadTool to query ftp links for study from bioimage archiveTo updateImagingbia_downloadbgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/image_processing/bia-ftplinks0.1.0wget001000100000000000000000000000000000000002
bigwig_to_bedgraphbigwig_to_bedgraphConvert from bigWig to bedGraph formatTo updateConvert Formatsbigwig_to_bedgraphbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bigwig_to_bedgraphhttps://github.com/bgruening/galaxytools/tree/master/tools/bigwig_to_bedgraph0.1.0ucsc_tools00100010000000000000010000000000000001102005749
bioimagingbioimage_inferenceLoad model from BioImage.IO and make inferencespytorchpytorchpytorchPyTorchPyTorch is an optimized tensor library for deep learning using GPUs and CPUs.Machine learning, Computer scienceTo updatehttps://github.com/bgruening/galaxytoolsImagingbioimage_inferencebgrueninghttps://github.com/bgruening/galaxytools/tree/recommendation_training/tools/bioimaginghttps://github.com/bgruening/galaxytools/tree/master/tools/bioimaging2.3.1pythonMachine learning001000100000000000000000000000000000000000
biomodelsMLbiomodels_biomd0000001066, biomodels_biomd0000001076Wrappers for tools to bring BioModels AI models into Galaxy.To updatehttps://www.ebi.ac.uk/biomodels/Machine Learningbiomodelsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML1.10020002000000000000000000000000000000000013
bionanobionano_scaffoldBionano Solve is a set of tools for analyzing Bionano dataTo updatehttps://bionanogenomics.com/Assemblybionanobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bionanohttps://github.com/bgruening/galaxytools/tree/master/tools/bionano3.7.01110111000000000000000000000000000000100112531
bismarkbismark_pretty_report, bismark_bowtie2, bismark_deduplicate, bismark_methylation_extractorA tool to map bisulfite converted sequence reads and determine cytosine methylation statesTo updatehttps://www.bioinformatics.babraham.ac.uk/projects/bismark/Sequence Analysis, Next Gen Mappersbismarkbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bismarkhttps://github.com/bgruening/galaxytools/tree/master/tools/bismark0.22.1bismark0.24.2044404440400000000004000040000000000044033212876
blat_coverage_reportgenerate_coverage_reportPolymorphism of the ReadsTo updateNext Gen Mappers, Sequence Analysisblat_coverage_reportdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_coverage_reporthttps://github.com/galaxyproject/tools-devteam/tree/main/tools/blat_coverage_report1.0.0000000000000000000000000000000000000000000
blat_mappingblat2wigCoverage of the Reads in wiggle formatTo updateNext Gen Mappers, Sequence Analysisblat_mappingdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_mappinghttps://github.com/galaxyproject/tools-devteam/tree/main/tools/blat_mapping1.0.0000000000000000000000000000000000000000000
blobtoolkitblobtoolkitIdentification and isolation non-target data in draft and publicly available genome assemblies.To updatehttps://blobtoolkit.genomehubs.org/Sequence Analysis, Assemblyblobtoolkitbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkithttps://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit4.0.7111011100000000000000000000000000000010021685
blockbusterblockbusterBlockbuster detects blocks of overlapping reads using a gaussian-distribution approach.To updatehttp://hoffmann.bioinf.uni-leipzig.de/LIFE/blockbuster.htmlRNA, Sequence Analysisblockbusterrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/blockbusterhttps://github.com/bgruening/galaxytools/tree/master/tools/blockbuster0.1.2blockbuster0.0.1.11110111000000000000000000000010000000110343009
blockclustblockclustBlockClust detects transcripts with similar processing patterns.Up-to-datehttps://github.com/bgruening/galaxytools/tree/master/workflows/blockclustRNAblockclustrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/blockclusthttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/blockclust1.1.1blockclust1.1.11110111000000000000000000000010000000110151478
bowtie_wrappersbowtie_wrapperGalaxy wrappers for the Bowtie short read mapping tools.To updatehttp://bowtie-bio.sourceforge.net/Next Gen Mappersbowtie_wrappersdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie_wrappershttps://github.com/galaxyproject/tools-devteam/tree/main/tools/bowtie_wrappers1.2.0bowtie1.3.1011001100000000000000100000001000000011050622988
canonical_correlation_analysiscca1Canonical Correlation AnalysisTo updateStatisticscanonical_correlation_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/canonical_correlation_analysishttps://github.com/galaxyproject/tools-devteam/tree/main/tools/canonical_correlation_analysis1.0.0R00110011000000000000000000000000000001101074
canucanuCanu is a hierarchical assembly pipeline designed for high-noise single-molecule sequencing (such as the PacBio RS II/Sequel or Oxford Nanopore MinION).canucanuCANUDe-novo assembly tool for long read chemistry like Nanopore data and PacBio data.De-novo assemblyGenomicsUp-to-datehttps://github.com/marbl/canucanubgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/canuhttps://github.com/bgruening/galaxytools/tree/master/tools/canu2.2canu2.2De-novo assemblyGenomics011101110100000000000010000000000000011053313021
categorize_elements_satisfying_criteriacategorize_elements_satisfying_criteriaCategorize Elements satisfying criteria.To updateStatisticscategorize_elements_satisfying_criteriadevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/categorize_elements_satisfying_criteriahttps://github.com/galaxyproject/tools-devteam/tree/main/tools/categorize_elements_satisfying_criteria1.0.00110011000000000000000000000000000000110140
ccatpeakcalling_ccatControl-based ChIP-seq Analysis ToolTo updateChIP-seqccatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/ccathttps://github.com/galaxyproject/tools-devteam/tree/main/tools/ccat0.0.2ccat3.0001000100000000000000000000000000000011015173
cd_hit_dupcd_hit_dupsimple tool for removing duplicates from sequencing readsTo updateMetagenomics, Sequence Analysiscd_hit_dupdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/cd_hit_duphttps://github.com/galaxyproject/tools-devteam/tree/main/tools/cd_hit_dup0.0.1cd-hit-auxtools4.8.1100010000000000000000010000000000000000000
cellposecellposeCellpose is an anatomical segmentation algorithmTo updatehttps://github.com/MouseLand/cellposeImagingcellposebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/cellposehttps://github.com/bgruening/galaxytools/tree/master/tools/cellpose3.0.10cellpose001000100000000000000000000000000000000000
cellprofilercp_cellprofiler, cp_color_to_gray, cp_convert_objects_to_image, cp_display_data_on_image, cp_enhance_or_suppress_features, cp_export_to_spreadsheet, cp_gray_to_color, cp_identify_primary_objects, cp_image_math, cp_mask_image, cp_measure_granularity, cp_measure_image_area_occupied, cp_measure_image_intensity, cp_measure_image_quality, cp_measure_object_intensity, cp_measure_object_size_shape, cp_measure_texture, cp_overlay_outlines, cp_relate_objects, cp_save_images, cp_common, cp_tile, cp_track_objectscellProfiler wrapperCellProfilerCellProfilercellprofilerCellProfilerTool for quantifying data from biological images, particularly in high-throughput experiments.Quantification, Image analysis, ParsingImaging, Microarray experiment, Genotype and phenotypeTo updateImagingcellprofilerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/cellprofilerQuantification, Image analysis, ParsingImaging, Microarray experiment, Genotype and phenotype0232319023231900000000000000000000000000000231901784614
cellprofiler_v4cp_cellprofiler4cellProfiler4 wrapperTo updatehttps://github.com/CellProfiler/CellProfilerImagingcellprofiler4bgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v44.2.70011001100000000000000100000000000000100843
change_caseChangeCaseConvert column case.To updateText Manipulationchange_casedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/change_casehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/change_case1.0.1perl111111111110101111011111110001001011011193110965
chatgptchatgpt_openai_apiUsing the OpenAI GPT models to generate text based on user input.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/chatgptMachine Learningchatgpt_openai_apibgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/chatgpthttps://github.com/bgruening/galaxytools/tree/master/tools/chatgpt2024python001000100000000000000000000000000000000000
chipseekerchipseekerA tool for ChIP peak annotation and visualizationTo updatehttps://bioconductor.org/packages/release/bioc/html/ChIPseeker.htmlChIP-seq, Genome annotationchipseekerrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/chipseekerhttps://github.com/bgruening/galaxytools/tree/master/tools/chipseeker1.32.0bioconductor-chipseeker1.38.0111011100000000000000000000001000000011041815690
chromosome_diagramchromosome_diagramChromosome Diagrams using BiopythonTo updateGraphics, Sequence Analysis, Visualizationchromosome_diagrampeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/chromosome_diagram0.0.3biopython1.70000000000000000000000000000000000000000000
circexplorercircexplorerA combined strategy to identify circular RNAs (circRNAs and ciRNAs)To updatehttps://github.com/YangLab/CIRCexplorerSequence Analysis, RNAcircexplorerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/circexplorerhttps://github.com/bgruening/galaxytools/tree/master/tools/circexplorer1.1.9.0circexplorer1.1.1001100110000000000000000000000000000001108251
clc_assembly_cellclc_assembler, clc_mapperGalaxy wrapper for the CLC Assembly Cell suite from CLCBioTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cellAssembly, Next Gen Mappers, SAMclc_assembly_cellpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cellhttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell0.0.7samtools1.20000000000000000000000000000000000000000000
clinodclinodNoD: a Nucleolar localization sequence detector for eukaryotic and viral proteinsclinodclinodclinodThe command line NoD predictor (clinod) can be run from the command line to predict Nucleolar localization sequences (NoLSs) that are short targeting sequences responsible for the localization of proteins to the nucleolus.The predictor accepts a list of FASTA formatted sequences as an input and outputs the NOLS predictions as a result.Please note that currently, JPred secondary structure predictions are not supported by clinod. However, we are working on it.Nucleic acid sequence analysisSequence analysisTo updatehttp://www.compbio.dundee.ac.uk/www-nod/Sequence Analysisclinodpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/clinodhttps://github.com/peterjc/pico_galaxy/tree/master/tools/clinod0.1.0clinod1.3Nucleic acid sequence analysisSequence analysis100010000000000000000000000000000000000000
clustergops_cluster_1Cluster the intervals of a datasetTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsclusterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/clusterhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/cluster1.0.0bx-python0.12.011111111000000000000010000000100000001101801
cmsearch_deoverlapcmsearch_deoverlapremoves lower scoring overlaps from cmsearch results.cmsearch-deoverlapcmsearch-deoverlapcmsearch-deoverlapRemoves lower scoring overlaps from cmsearch results.Comparison, AlignmentBiology, MedicineTo updatehttps://github.com/EBI-Metagenomics/pipeline-v5/blob/master/tools/RNA_prediction/cmsearch-deoverlap/cmsearch-deoverlap.plRNAcmsearch_deoverlaprnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlaphttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap0.08+galaxy2perlComparison, AlignmentBiology, Medicine00100010000000000000000000000000000001001102
cmvcmcv, cmv, hmmcv, hmmvcmv is a collection of tools for the visualisation of Hidden Markov Models and RNA-family models.Up-to-datehttps://github.com/eggzilla/cmvRNAcmvrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmvhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmv1.0.8cmv1.0.800200020000000000000000000000000000002201108
cofoldcofoldCofold predicts RNA secondary structures that takes co-transcriptional folding into account.To updatehttp://www.e-rna.org/cofold/RNAcofoldrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cofoldhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cofold2.0.4.0cofold2.0.400100010000010000000000000000000000001108342
column_arrange_by_headerbg_column_arrange_by_headerColumn arrange by header nameTo updateText Manipulationcolumn_arrange_by_headerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/column_arrange_by_headerhttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/column_arrange_by_header0.211111111000000000000000000000000000001101793781
combine_metaphlan_humanncombine_metaphlan_humannCombine MetaPhlAn2 and HUMAnN2 outputs to relate genus/species abundances and gene families/pathways abundancescombine_metaphlan_and_humanncombine_metaphlan_and_humannCombine Metaphlan and HUMAnNThis tool combine MetaPhlAn outputs and HUMANnN outputsAggregationMetagenomics, Molecular interactions, pathways and networksTo updateMetagenomicscombine_metaphlan2_humann2bebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan2_humann2https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan_humann0.3.0pythonAggregationMetagenomics, Molecular interactions, pathways and networks10101010000000000000000000000000000001009147
compalignpcompalignpCompute fractional identity between trusted alignment and test alignmentUp-to-dateRNA, Sequence Analysiscompalignprnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp/https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp1.0compalignp1.000100010000000000000000000000000000001100220
compare_humann2_outputcompare_humann2_outputCompare outputs of HUMAnN2 for several samples and extract similar and specific informationcompare_humann2_outputscompare_humann2_outputsCompare HUMAnN2 outputsThis tool compare HUMANnN2 outputs with gene families or pathways and their relative abundances between several samplesComparisonMetagenomics, Gene and protein familiesTo updateMetagenomicscompare_humann2_outputbebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_outputhttps://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output0.2.0ComparisonMetagenomics, Gene and protein families000000000000000000000000000000000000011010332
complementgops_complement_1Complement intervals of a datasetTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationscomplementdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/complementhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/complement1.0.0bx-python0.12.011111111000000000000010000000100000001101233
compute_motif_frequencies_for_all_motifscompute_motif_frequencies_for_all_motifsCompute Motif Frequencies For All Motifs, motif by motif.To updateSequence Analysis, Statisticscompute_motif_frequencies_for_all_motifsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motif_frequencies_for_all_motifshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_motif_frequencies_for_all_motifs1.0.00110011000000000000000000000000000000110294
compute_motifs_frequencycompute_motifs_frequencyCompute Motif Frequencies in indel flanking regions.To updateSequence Analysis, Statisticscompute_motifs_frequencydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motifs_frequencyhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_motifs_frequency1.0.00110011000000000000000000000000000000110065
compute_q_valuescompute_q_valuesCompute q-values based on multiple simultaneous tests p-valuesTo updateStatisticscompute_q_valuesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_q_valueshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_q_values1.0.1R0000000000000000000000000000000000000000035
concatgops_concat_1Concatenate two bed filesTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsconcatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/concathttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/concat1.0.1bx-python0.12.01111111101000000000001100000010000000110309564900
condense_charactersCondense characters1Condense consecutive characters.To updateText Manipulationcondense_charactersdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/condense_charactershttps://github.com/galaxyproject/tools-devteam/tree/main/tools/condense_characters1.0.0110011000100000000000010000000000000000000
convert_charactersConvert characters1Convert delimiters to tab.To updateText Manipulationconvert_charactersdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_charactershttps://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_characters1.0.1python111111111110111111011111100001001011011147523829
convert_solid_color2nuccolor2nucConvert Color Space to NucleotidesTo updateFasta Manipulationconvert_solid_color2nucdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_solid_color2nuchttps://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_solid_color2nuc1.0.0000000000000000000000000000000000000000000
coprarnacoprarnaTarget prediction for prokaryotic trans-acting small RNAsTo updatehttps://github.com/PatrickRWright/CopraRNARNA, Sequence Analysiscoprarnarnateamhttps://github.com/PatrickRWright/CopraRNAhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/coprarna2.1.1coprarna2.1.4000000000000000000000000000000000000000000
correlationcor2Correlation for numeric columnsTo updateStatisticscorrelationdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/correlationhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/correlation1.0.0rpy011101110000000000000000000000000000011047837
count_gff_featurescount_gff_featuresCount GFF FeaturesTo updateSequence Analysiscount_gff_featuresdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/count_gff_featureshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/count_gff_features0.2galaxy-ops1.1.0111111110000000000000000000000000000011049271
count_roi_variantscount_roi_variantsCount sequence variants in region of interest in BAM fileTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variantsAssembly, SAMcount_roi_variantspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variantshttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants0.0.6samtools1.20000000000000000000000010000000000000000000
coveragegops_coverage_1Coverage of a set of intervals on second set of intervalsTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationscoveragedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/coveragehttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/coverage1.0.0bx-python0.12.01111111100000000000001000000010000000110171502
coverage_statscoverage_statsBAM coverage statistics using samtools idxstats and depthTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_statsAssembly, SAMcoverage_statspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_statshttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats0.1.0samtools1.20000000000000000000000010000000000000000000
cpatcpatCoding-potential assessment tool using an alignment-free logistic regression model.Up-to-datehttps://github.com/liguowang/cpatTranscriptomicscpatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/cpathttps://github.com/bgruening/galaxytools/tree/master/tools/cpat3.0.5cpat3.0.5111111110000000000000000000000000000010021134
crtcrispr_recognition_toolCRISPR Recognition ToolTo updateSequence Analysiscrispr_recognition_toolbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/crthttps://github.com/bgruening/galaxytools/tree/master/tools/crt1.2.0crisper_recognition_tool1.20010001000000000000000100000000000000110743389
ctd_batchctdBatch_1CTD analysis of chemicals, diseases, or genesTo updateSequence Analysisctd_batchdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/ctd_batchhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/ctd_batch1.0.0001000100000000000000000000000000000011013203
cummerbundcummeRbundWrapper for the Bioconductor cummeRbund libraryTo updatehttps://bioconductor.org/packages/release/bioc/html/cummeRbund.htmlRNA, Visualizationcummerbunddevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbundhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/cummerbund2.16.0fonts-conda-ecosystem1110111000000000000000000000000000000110311782
cummerbund_to_tabularcummerbund_to_cuffdiffRegenerate the tabular files generated by cuffdiff from a cummeRbund SQLite database.To updateConvert Formats, Next Gen Mapperscummerbund_to_tabulardevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund_to_tabularhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/cummerbund_to_tabular1.0.11010101000000000000000000000000000000110131204
cut_columnsCut1Select columns from a dataset.To updateText Manipulationcut_columnsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/cut_columnshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/cut_columns1.0.2111111111110101111011111110001001011011150641957541
delete_overlapping_indelsdelete_overlapping_indelsDelete Overlapping Indels from a chromosome indels fileTo updateSequence Analysisdelete_overlapping_indelsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/delete_overlapping_indelshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/delete_overlapping_indels1.0.00010001000000000000000000000000000000110239
dewseqdewseqDEWSeq is a sliding window based peak caller for eCLIP/iCLIP dataTo updatehttps://github.com/EMBL-Hentze-group/DEWSeq_analysis_helpersSequence Analysis, RNA, CLIP-seqdewseqrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dewseqhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dewseq0.1.0+galaxy0python00100010000000000000000000000000000001001172
dgidb_annotatordgidb_annotateAnnotates a tabular file with information from the Drug-Gene Interaction Database (http://dgidb.genome.wustl.edu/)To updateSystems Biology, Variant Analysisdgidb_annotatordevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dgidb_annotatorhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/dgidb_annotator0.10010001000000000000000000000000000000110765
diffdiffGNU diff tool that calculates the differences between two files.To updatehttp://www.gnu.org/software/diffutils/Text Manipulationdiffbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/diffhttps://github.com/bgruening/galaxytools/tree/master/tools/diff3.7diffutils101010100000000000000000000000000000011030235
diffbindDiffbind provides functions for processing ChIP-Seq data.To updatehttp://bioconductor.org/packages/release/bioc/html/DiffBind.htmlChIP-seqdiffbindbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/diffbindhttps://github.com/bgruening/galaxytools/tree/master/tools/diffbind000000000000000000000000000000000000000000
divide_pg_snpdividePgSnpSeparate pgSnp alleles into columnsTo updateSequence Analysisdivide_pg_snpdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/divide_pg_snphttps://github.com/galaxyproject/tools-devteam/tree/main/tools/divide_pg_snp1.0.01010101000000000000000000000000000000110032
dorinadorina_searchdata source for RNA interactions in post-transcriptional regulationTo updateRNA, Data Sourcedorinarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina/https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina1.0001000100000000000000000000000000000010011576
dot2ctrnastructure_dot2ctDot-Bracket to Connect Table (CT)To updateSequence Analysis, RNAdot2ctrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2cthttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2ct5.7.arnastructure6.4000000000000000000000000000000000000000000
dotknotdotknotDotKnot is a heuristic method for pseudoknot prediction in a given RNA sequenceTo updatehttp://dotknot.csse.uwa.edu.au/RNA, Proteomicsdotknotbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/rna/dotknothttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dotknot1.3.1vienna_rna0010001000000000000000000000000000000100183
draw_stacked_barplotsdraw_stacked_barplotsDraw Stacked Bar Plots for different categories and different criteriaTo updateGraphics, Statisticsdraw_stacked_barplotsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/draw_stacked_barplotshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/draw_stacked_barplots1.0.0R011101110000000000000010000000000000011012173
dwt_cor_ava_perclasscompute_p-values_correlation_coefficients_feature_occurrences_between_two_datasets_using_discrete_wavelet_transfomCompute P-values and Correlation Coefficients for Feature OccurrencesTo updateStatisticsdwt_cor_ava_perclassdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_cor_ava_perclasshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_cor_ava_perclass1.0.1r-waveslim1.7.5010001000000000000000000000000000000000000
dwt_cor_avb_allcompute_p-values_correlation_coefficients_featureA_featureB_occurrences_between_two_datasets_using_discrete_wavelet_transfomCompute P-values and Correlation Coefficients for Occurrences of Two Set of FeaturesTo updateStatisticsdwt_cor_avb_alldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_cor_avb_allhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_cor_avb_all1.0.1r-waveslim1.7.5010001000000000000000000000000000000000000
dwt_ivc_allcompute_p-values_second_moments_feature_occurrences_between_two_datasets_using_discrete_wavelet_transfomCompute P-values and Second Moments for Feature OccurrencesTo updateStatisticsdwt_ivc_alldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_ivc_allhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_ivc_all1.0.1r-waveslim1.7.5010001000000000000000000000000000000000000
dwt_var_perclasscompute_p-values_max_variances_feature_occurrences_in_one_dataset_using_discrete_wavelet_transfomCompute P-values and Max Variances for Feature OccurrencesTo updateStatisticsdwt_var_perclassdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_var_perclasshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_var_perclass1.0.1r-waveslim1.7.5010001000000000000000000000000000000000000
dwt_var_perfeaturedwt_var1Wavelet variance using Discrete Wavelet TransfomsTo updateStatisticsdwt_var_perfeaturedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_var_perfeaturehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_var_perfeature1.0.2r-bitops1111111100000000000000000000000000000110036
earmake_earA tool to compile assembly reports and stastics from assembly pipelineTo updatehttps://github.com/ERGA-consortium/EARs/tree/mainSequence Analysis, Assemblyerga_earbgrueninghttps://github.com/ERGA-consortium/EARs/tree/mainhttps://github.com/bgruening/galaxytools/tree/master/tools/ear24.08.26reportlab001000100000000000000000000000000000000000
edtaedtaThe EDTA package was designed to filter out false discoveries in raw TE candidates and generate a high-quality non-redundant TE library for whole-genome TE annotations.edtaedtaThe Extensive de novo TE Annotator (EDTA)The EDTA package was designed to filter out false discoveries in raw TE candidates and generate a high-quality non-redundant TE library for whole-genome TE annotations. Selection of initial search programs were based on benckmarkings on the annotation performance using a manually curated TE library in the rice genome.De-novo assembly, Deisotoping, Genome annotationWorkflows, Mobile genetic elements, Plant biology, Transcription factors and regulatory sites, Model organismsTo updatehttps://github.com/oushujun/EDTAVariant Analysisedtabgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/edtahttps://github.com/bgruening/galaxytools/tree/master/tools/edtaedta2.2.0De-novo assembly, Deisotoping, Genome annotationWorkflows, Mobile genetic elements, Plant biology, Transcription factors and regulatory sites, Model organisms001000100000000000000000000000000000010058484
effectiveT3effectiveT3Find bacterial type III effectors in protein sequenceseffectivet3effectivet3EffectiveT3Prediction of putative Type-III secreted proteins.Sequence classificationSequence analysisTo updatehttp://effectors.orgSequence Analysiseffectivet3peterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT30.0.21effectiveT31.0.1Sequence classificationSequence analysis000000000000000000000000000000000000000000
epicsegepicseg_segmentEpiCSeg is a tool for conducting chromatin segmentation.To updatehttps://github.com/lamortenera/epicsegEpigeneticsepicsegrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/epicseghttps://github.com/bgruening/galaxytools/tree/master/tools/epicseg@VERSION_STRING@epicseg1.000100010000000000000000000000000000001105245
exparnaexparnaExpaRNA is a fast, motif-based comparison and alignment tool for RNA molecules.Up-to-datehttp://rna.informatik.uni-freiburg.de/ExpaRNA/Input.jspRNAexparnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/exparnahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/exparna1.0.1exparna1.0.1000000000000000000000000000000000000000000
expressexpressQuantify the abundances of a set of target sequences from sampled subsequencesTo updateRNAexpressdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/expresshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/express1.1.1eXpress1.5.1011001100100000000000100000000000000011012325
fasta_compute_lengthfasta_compute_lengthCompute sequence lengthTo updateFasta Manipulationfasta_compute_lengthdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_lengthhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_compute_length1.0.3python11111111010010000000001000000100000001103807758
fasta_concatenate_by_speciesfasta_concatenate0Concatenate FASTA alignment by speciesTo updateFasta Manipulationfasta_concatenate_by_speciesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_specieshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_concatenate_by_species0.0.1bx-python0.12.011111111000000000000001000000000000001108835793
fasta_filter_by_idfasta_filter_by_idFilter FASTA sequences by ID (DEPRECATED)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_idFasta Manipulation, Sequence Analysis, Text Manipulationfasta_filter_by_idpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_idhttps://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id0.0.7galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
fasta_filter_by_lengthfasta_filter_by_lengthFilter sequences by lengthTo updateFasta Manipulationfasta_filter_by_lengthdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_lengthhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_filter_by_length1.2python111111110000100000000100000001000000011035048649
fasta_to_tabularfasta2tabFASTA-to-Tabular converterTo updateFasta Manipulationfasta_to_tabulardevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_to_tabularhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_to_tabular1.1.1python1111111101001000000000100000010000000110622105935
fastq_filter_by_idfastq_filter_by_idFilter FASTQ sequences by ID (DEPRECATED)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_idFastq Manipulation, Sequence Analysis, Text Manipulationfastq_filter_by_idpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_idhttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id0.0.7galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
fastq_infofastq_infoFASTQ info allows to validate single or paired fastq filesTo updatehttps://github.com/nunofonseca/fastq_utilsFastq Manipulationfastq_infobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/fastq_infohttps://github.com/bgruening/galaxytools/tree/master/tools/fastq_info0.25.1fastq_utils0.25.210101010000000000000001000000000000001006795765
fastq_pair_namesfastq_pair_namesExtract FASTQ paired read namesTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_namesSequence Analysisfastq_pair_namespeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_nameshttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names0.0.5galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
fastq_paired_unpairedfastq_paired_unpairedDivide FASTQ file into paired and unpaired readsTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpairedSequence Analysis, Text Manipulationfastq_paired_unpairedpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpairedhttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired0.1.5galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
fastq_trimmer_by_qualityfastq_quality_trimmerFASTQ Quality Trimmer by sliding windowUp-to-dateFastq Manipulationfastq_trimmer_by_qualitydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fastq_trimmer_by_qualityhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fastq_trimmer_by_quality1.1.5galaxy_sequence_utils1.1.511111111000000000000000000000000000001104595676
fastqsolexa_to_fasta_qualfastqsolexa_to_fasta_qualFASTQSOLEXA-to-FASTA-QUAL extracts sequences and quality scores from FASTQSOLEXA dataTo updateConvert Formats, Fastq Manipulationfastqsolexa_to_fasta_qualdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqsolexa_to_fasta_qualhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fastqsolexa_to_fasta_qual1.0.0000000000000000000000000000000000000000000
featurecounterfeatureCoverage1Feature coverageTo updateSequence Analysis, Variant Analysisfeaturecounterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/featurecounterhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/featurecounter2.0.0bx-python0.12.01010101000000000000000100000000000000110622385
file_manipulationbg_uniqThis tool returns all unique lines from a tab-separated file.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/file_manipulationText Manipulationuniquebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/file_manipulationhttps://github.com/bgruening/galaxytools/tree/master/tools/file_manipulation0.4python00110011000000000000001000000000000001001768496
filter_transcripts_via_trackingfilter_combined_via_trackingFilter Combined TranscriptsTo updateRNAfilter_transcripts_via_trackingdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/filter_transcripts_via_trackinghttps://github.com/galaxyproject/tools-devteam/tree/main/tools/filter_transcripts_via_tracking0.11111111100000000000000000000000000000110120
find_diag_hitsfind_diag_hitsFind diagnostic hitsTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicsfind_diag_hitsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/find_diag_hitshttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/find_diag_hits1.0.0taxonomy0010001000000000000000100000000000000110569
find_subsequencesbg_find_subsequencesTo updatefind_subsequencesbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/find_subsequences0.3biopython1.70111011100000000000000000000000000000011031763
flanking_featuresflanking_features_1Fetch closest non-overlapping feature for every intervalTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsflanking_featuresdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_featureshttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/flanking_features4.0.1bx-python0.12.0111111110000000000000100000001000000011020671
flexynesisflexynesisThis is a deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction.Up-to-datehttps://github.com/BIMSBbioinfo/flexynesis/tree/mainMachine Learning, Statistics, Systems Biologyflexynesisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesishttps://github.com/bgruening/galaxytools/tree/master/tools/flexynesis0.2.10flexynesis0.2.10001000100000000000000000000000000000000000
flyeflyeAssembly of long and error-prone reads.FlyeFlyeFlyeFlye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs.Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing, GenomicsTo updatehttps://github.com/fenderglass/Flye/Assemblyflyebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/flyehttps://github.com/bgruening/galaxytools/tree/master/tools/flye2.9.4flye2.9.5Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing1111111100000000000001100100000000000110149920904
footprintfootprintFind transcription factor footprintsTo updatehttps://ohlerlab.mdc-berlin.de/software/Reproducible_footprinting_139/Epigeneticsfootprintrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/footprinthttps://github.com/bgruening/galaxytools/tree/master/tools/footprint1.0.0footprint1.0.10010001000000000000000000000000000000110057
format_cd_hit_outputformat_cd_hit_outputFormat CD-hit output to rename representative sequences with cluster name and/or extract distribution inside clusters given a mapping fileTo updateFasta Manipulationformat_cd_hit_outputbebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output/https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output1.0.0+galaxy1001000100000100000000000000000000000011020166
format_metaphlan2_outputformat_metaphlan2_outputFormat MetaPhlAn2 output to extract abundance at different taxonomic levelsformat_metaphlan2_outputformat_metaphlan2_outputFormat metaphlan2 outputThis tool format output file of MetaPhlan2 containing community content (abundance) at all taxonomic levels (from kingdom to strains).FormattingTaxonomy, MetagenomicsTo updateMetagenomicsformat_metaphlan2_outputbebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output/https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output0.2.0FormattingTaxonomy, Metagenomics00100010000000000000001000000000000001101665588
generate_pc_lda_matrixgenerate_matrix_for_pca_and_lda1Generate a Matrix for using PC and LDATo updateSequence Analysisgenerate_pc_lda_matrixdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/generate_pc_lda_matrixhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/generate_pc_lda_matrix1.0.0111111110000000000000000000000000000011012119
get_flanksget_flanks1Get flanks returns flanking region/s for every geneTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsget_flanksdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/get_flankshttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/get_flanks1.0.0bx-python0.12.01111111101001000000001000000000000000110555324598
get_orfs_or_cdssget_orfs_or_cdssSearch nucleotide sequences for open reading frames (ORFs), or coding sequences (CDSs)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdssSequence Analysisget_orfs_or_cdsspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdsshttps://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss0.2.3biopython1.70011101110000100000000010000001000000010015186
getindelrates_3wayindelRates_3wayEstimate Indel Rates for 3-way alignmentsTo updateSequence Analysis, Variant Analysisgetindelrates_3waydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/getindelrates_3wayhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/getindelrates_3way1.0.0bx-python0.12.0100010000000000000000000000000000000000000
getindels_2waygetIndels_2wayFetch Indels from pairwise alignmentsTo updateSequence Analysis, Variant Analysisgetindels_2waydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/getindels_2wayhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/getindels_2way1.0.0numpy100010000000000000000000000000000000000000
gfastatsgfastatsTool for generating sequence statistics and simultaneous genome assembly file manipulation.gfastatsgfastatsgfastatsgfastats is a single fast and exhaustive tool for summary statistics and simultaneous genome assembly file manipulation. gfastats also allows seamless fasta/fastq/gfa conversion.Data handlingComputational biologyUp-to-datehttps://github.com/vgl-hub/gfastatsSequence Analysisgfastatsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/gfastatshttps://github.com/bgruening/galaxytools/tree/master/tools/gfastats1.3.6gfastats1.3.6Data handlingComputational biology11101110000000000000001000000000000001004188159
gi2taxonomyFetch Taxonomic RanksFetch taxonomic representationgi2taxonomygi2taxonomygi2taxonomyThe tool fetches taxonomic information for a list of sequence identifiers (i.e. GI numbers, as used by the National Center for Biotechnology Information (NCBI).Database search, ID mappingTaxonomyTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicsgi2taxonomydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/gi2taxonomyhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/gi2taxonomy1.1.1taxonomy0.10.0Database search, ID mappingTaxonomy001000100000000000000110000000000000010027660
glimmer_hmmGlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model (GHMM)To updatehttps://ccb.jhu.edu/software/glimmerhmm/Sequence Analysisglimmer_hmmbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmmhttps://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm000000000000000000000000000000000000000000
gmajgmaj_1GMAJ Multiple Alignment ViewerTo updateVisualizationgmajdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/gmajhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/gmaj2.0.11111111100000000000000000000000000000110411
gotohscanrbc_gotohscanFind subsequences in dbTo updateSequence Analysisgotohscanrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/gotohscanhttps://github.com/bgruening/galaxytools/tree/master/tools/gotohscan1.3.0gotohscan1.30010001000000000000000000000000000000110171
graph_convertergraph_converterConvert between different graph formatsTo updateConvert Formatsgraph_converterbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/graph_converterhttps://github.com/bgruening/galaxytools/tree/master/tools/graph_converter0.1.0000000000000000000000000000000000000000000
graphclustgraphclustGraphClust can be used for structural clustering of RNA sequences.To updatehttp://www.bioinf.uni-freiburg.de/Software/GraphClust/RNAgraphclustbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/graphclusthttps://github.com/bgruening/galaxytools/tree/master/tools/graphclust0.1GraphClust000000000000000000000000000000000000000006
graphicsmagickgraphicsmagick_image_compare, graphicsmagick_image_convert, graphicsmagick_image_montageContains tools based on GraphicsMagickTo updatehttp://www.graphicsmagick.orgImaginggraphicsmagickbgrueninghttps://github.com/bgruening/galaxytools/new/gm/tools/image_processing/image_processing/https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/graphicsmagick1.3.44graphicsmagick1.3.261030103000000000000000000000000000000220432605
graphmapgraphmap_align, graphmap_overlapMapper for long, error-prone reads.graphmapgraphmapgraphmapSplice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1Sequence trimming, EST assembly, Read mappingGene transcripts, RNA-Seq, RNA splicingTo updatehttps://github.com/isovic/graphmap/Assemblygraphmapbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/graphmaphttps://github.com/bgruening/galaxytools/tree/master/tools/graphmap0.5.2graphmap0.6.3Sequence trimming, EST assembly, Read mappingGene transcripts, RNA-Seq, RNA splicing00200020000000000000002000000000000002201366651
graphprotgraphprot_predict_profileGraphProt models binding preferences of RNA-binding proteins.To updatehttps://github.com/dmaticzka/GraphProtSequence Analysis, RNA, CLIP-seqgraphprotrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/graphprothttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/graphprot1.1.7+galaxy2graphprot1.1.700100010000000000000000000000000000001106474
hclust2hclust2Plots heatmapsTo updatehttps://bitbucket.org/nsegata/hclust2/Data Visualizationhclust2rnateamhttps://github.com/yuanbit/galaxytools/tree/hclust2/tools/hclust2https://github.com/bgruening/galaxytools/tree/master/tools/hclust20.99hclust21.0.0000000000000000000000000000000000000000000
hgv_fundohgv_funDoFunDO human genes associated with disease termsTo updateSequence Analysishgv_fundodevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_fundohttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/hgv_fundo1.0.0101010100000000000000000000000000000011000
hgv_hilbertvishgv_hilbertvisHVIS visualization of genomic data with the Hilbert curveTo updatehttps://www.ebi.ac.uk/huber-srv/hilbert/Graphics, Visualizationhgv_hilbertvisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_hilbertvishttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/hgv_hilbertvis1.0.0R101010100000000000000000000000000000011000
hictkhictkConvert cooler to juicebox_hicUp-to-datehttps://github.com/paulsengroup/hictkConvert Formats, Epigeneticshictkbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hictkhttps://github.com/bgruening/galaxytools/tree/master/tools/hictk1.0.0hictk1.0.0001000100000000000000000000000000000000000
hicuphicup2juicer, hicup_deduplicator, hicup_digester, hicup_filter, hicup_hicup, hicup_mapper, hicup_truncaterThe HiCUP-Pipeline from the Bioinformatics Babraham Institute.To updatehttps://www.bioinformatics.babraham.ac.uk/projects/hicup/read_the_docs/html/index.htmlEpigeneticshicupbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hicuphttps://github.com/bgruening/galaxytools/tree/master/tools/hicup0.9.2707070700000000000000000000000000000076076921
hisathisatHISAT is a fast and sensitive spliced alignment program.To updatehttp://ccb.jhu.edu/software/hisat/index.shtmlAssemblyhisatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/hisathttps://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat1.0.3hisat00000000000000000000001000000000000000000228
histogramhistogram_rpyHistogram of a numeric columnTo updateGraphics, Statisticshistogramdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/histogramhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/histogram1.0.4rpy22.7.811111111010000000000000000000000000001102424350
homerSoftware for motif discovery and next generation sequencing analysis.To updatehttp://homer.salk.edu/homer/Sequence Analysishomerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/homerhttps://github.com/bgruening/galaxytools/tree/master/tools/homer000000000000000000000000000000000000000000
htseq-cliphtseq_cliphtseq-clip is a toolset for the analysis of eCLIP/iCLIP datasetsTo updatehttps://github.com/EMBL-Hentze-group/htseq-clipSequence Analysis, RNA, CLIP-seqhtseq_cliprnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/htseq-cliphttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/htseq-clip0.1.0+galaxy0htseq-clip2.19.0b000100010000000000000000000000000000001001577
illumina_methylation_analyserillumina_methylation_analyserMethylation analyzer for Illumina 450k DNA emthylation microarraysTo updatehttps://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyserSequence Analysisillumina_methylation_analyserbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyserhttps://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser0.1Rscript000000000000000000000000000000000000000000
imagej2imagej2_adjust_threshold_binary, imagej2_analyze_particles_binary, imagej2_analyze_skeleton, imagej2_binary_to_edm, imagej2_bunwarpj_adapt_transform, imagej2_bunwarpj_align, imagej2_bunwarpj_compare_elastic, imagej2_bunwarpj_compare_elastic_raw, imagej2_bunwarpj_compare_raw, imagej2_bunwarpj_compose_elastic, imagej2_bunwarpj_compose_raw, imagej2_bunwarpj_compose_raw_elastic, imagej2_bunwarpj_convert_to_raw, imagej2_bunwarpj_elastic_transform, imagej2_bunwarpj_raw_transform, imagej2_create_image, imagej2_enhance_contrast, imagej2_find_edges, imagej2_find_maxima, imagej2_make_binary, imagej2_math, imagej2_noise, imagej2_shadows, imagej2_sharpen, imagej2_skeletonize3d, imagej2_smooth, imagej2_watershed_binaryImageJ2 is a new version of ImageJ for the next generation of multidimensionalimage data, with a focus on scientific imaging.imagejimagejimagej2ImageJ2It is a public domain Java image processing program, which was designed with an open architecture. Custom acquisition, analysis and processing plugins can be developed using ImageJ’s built-in editor and a Java compiler. User-written plugins make it possible to solve many image processing and analysis problems, from three-dimensional live-cell imaging, to radiological image processing, multiple imaging system data comparisons to automated hematology systems.Image analysis, Image annotation, VisualisationImagingTo updatehttp://fiji.scImagingimagej2imgteamhttps://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej220170530Image analysis, Image annotation, VisualisationImaging00270002700000000000000000000000000000027270261537
improviserproteomics_improviserVisualisation of PepXML filesTo updatehttp://www.improviser.uni-freiburg.de/Proteomicsproteomics_improviserbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviserhttps://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviser1.1.0.1000000000000000000000000000000000000000000
indels_3wayindels_3wayFetch Indels from 3-way alignmentsTo updateSequence Analysisindels_3waydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/indels_3wayhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/indels_3way1.0.31010101000000000000000000000000000000110022
infernalinfernal_cmalign, infernal_cmbuild, infernal_cmpress, infernal_cmscan, infernal_cmsearch, infernal_cmstatInfernal ("INFERence of RNA ALignment") is for searching DNA sequence databases for RNA structure and sequence similarities.infernalinfernalInfernalInfernal ("INFERence of RNA ALignment") is for searching DNA sequence databases for RNA structure and sequence similarities. It is an implementation of a special case of profile stochastic context-free grammars called covariance models (CMs). A CM is like a sequence profile, but it scores a combination of sequence consensus and RNA secondary structure consensus, so in many cases, it is more capable of identifying RNA homologs that conserve their secondary structure more than their primary sequence.Nucleic acid feature detectionSequence sites, features and motifs, Structural genomicsTo updatehttp://infernal.janelia.org/RNAinfernalbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/infernalhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/infernal1.1.4infernal1.1.5Nucleic acid feature detectionSequence sites, features and motifs, Structural genomics066006600000000000000000000000000000066067100294
infornaINFO-RNA is a service for the design of RNA sequences that fold into a given pseudo-knot free RNA secondary structure.To updatehttp://rna.informatik.uni-freiburg.de/INFORNA/Input.jspRNAinfornarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/infornahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/inforna000000000000000000000000000000000000000000
instagraalinstagraalLarge genome reassembly based on Hi-C datainstagraalinstagraalinstaGRAALChromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13)Genome assembly, Mapping assembly, Genetic mapping, ScaffoldingSequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sitesTo updatehttps://github.com/koszullab/instaGRAALAssemblyinstagraalbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/instagraalhttps://github.com/bgruening/galaxytools/tree/master/tools/instagraal0.1.6Genome assembly, Mapping assembly, Genetic mapping, ScaffoldingSequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites001000100000000000000000000000000000010014139
intarnaintarnaEfficient RNA-RNA interaction prediction incorporating accessibility and seeding of interaction sites.Up-to-datehttps://github.com/BackofenLab/IntaRNARNAintarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/intarnahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/intarna3.4.0intarna3.4.00010001000000000000000000000000000000110237569
intersectgops_intersect_1Intersect the intervals of two datasetsTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsintersectdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/intersecthttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/intersect1.0.0bx-python0.12.011111111010000000000000000000100000001101003348449
iprscan5Interproscan queries the interpro database and provides annotations.To updatehttp://www.ebi.ac.uk/Tools/pfa/iprscan5/Sequence Analysisiprscan5bgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/iprscan5https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5000000000000000000000000000000000000000000
itsxitsxITSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences.ITSxITSxITSxTSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences, which is commonly used as a molecular barcode for e.g. fungi. As the inclusion of parts of the neighbouring, very conserved, ribosomal genes (SSU, 5S and LSU rRNA sequences) in the sequence identification process can lead to severely misleading results, ITSx identifies and extracts only the ITS regions themselves.Sequence feature detectionFunctional, regulatory and non-coding RNA, MicrobiologyUp-to-datehttps://microbiology.se/software/itsx/Metagenomicsitsxbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/itsxhttps://github.com/bgruening/galaxytools/tree/master/tools/itsx1.1.3itsx1.1.3Sequence feature detectionFunctional, regulatory and non-coding RNA, Microbiology001000100000000000000000000000000000010038868
jbrowse2jbrowse2JBrowse2 Genome Browser integrated as a Galaxy Tooljbrowse_2jbrowse_2JBrowse 2Modular genome browser with views of synteny and structural variation.Genome visualisation, Structure visualisation, Pathway visualisationMapping, Structural variation, Genomics, Gene structure, Sequence assemblyTo updatehttps://jbrowse.orgSequence Analysisjbrowse2fubarhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse2https://github.com/bgruening/galaxytools/tree/master/tools/jbrowse22.13.1jbrowse22.14.0Genome visualisation, Structure visualisation, Pathway visualisationMapping, Structural variation, Genomics, Gene structure, Sequence assembly111011100000000000000000000000000000000000
joingops_join_1Join the intervals of two datasets side-by-sideTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsjoindevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/joinhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/join1.0.0bx-python0.12.01111111101000000000011100000010000000110284329556
join_files_on_column_fuzzyjoin_files_on_column_fuzzyJoin two files on a common column, allowing a certain difference.To updateText Manipulationjoin_files_on_column_fuzzybgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/join_files_on_column_fuzzyhttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/join_files_on_column_fuzzy1.0.1python01110111000000000000001001000000000001101172448
jupyter_jobrun_jupyter_jobRun jupyter notebook script in GalaxyTo updateMachine Learningrun_jupyter_jobbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/jupyter_jobhttps://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job0.0.10000000000000000000000000000000000000000230
kernel_canonical_correlation_analysiskcca1Kernel Canonical Correlation AnalysisTo updateStatisticskernel_canonical_correlation_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/kernel_canonical_correlation_analysishttps://github.com/galaxyproject/tools-devteam/tree/main/tools/kernel_canonical_correlation_analysis1.0.0rpy1011101100000000000000000000000000000110269
kernel_principal_component_analysiskpca1Kernel Principal Component AnalysisTo updateStatisticskernel_principal_component_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/kernel_principal_component_analysishttps://github.com/galaxyproject/tools-devteam/tree/main/tools/kernel_principal_component_analysis1.0.0rpy101110110000000000000000000000000000011013156
kinwalkerKinwalker splits the folding process into a series of events where each event can either be a folding event or a transcription event.To updatehttp://www.bioinf.uni-leipzig.de/Software/Kinwalker/RNAkinwalkerrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/kinwalkerhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/kinwalker000000000000000000000000000000000000000000
kraken2taxKraken2TaxConvert Kraken output to Galaxy taxonomy data.To updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicskraken2taxdevteamhttps://github.com/galaxyproject/tools-devteam/blob/master/tool_collections/taxonomy/kraken2tax/https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/kraken2tax1.2+galaxy0gawk111011100000000000001010010000000000011048114683
labelsbg_labelsremaps and annotates alignmentsTo updatehttps://github.com/bgruening/galaxytools/tree/master/tools/labelsSequence Analysislabelsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/labelshttps://github.com/bgruening/galaxytools/tree/master/tools/labels1.0.5.0labels000000000000000000000000000000000000000000
lastz_paired_readslastz_paired_reads_wrapperGalaxy wrapper for the Lastz alignment tool on paired readsTo updateNext Gen Mapperslastz_paired_readsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/lastz_paired_readshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/lastz_paired_reads1.1.1lastz1.04.22011001100000000000000000000000000000011019
lca_wrapperlca1Find lowest diagnostic rankTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicslca_wrapperdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/lca_wrapperhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/lca_wrapper1.0.1taxonomy0.10.000100010000000000000000000000000000001102137
lda_analysislda_analy1Perform Linear Discriminant AnalysisTo updateGraphics, Statisticslda_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/lda_analysishttps://github.com/galaxyproject/tools-devteam/tree/main/tools/lda_analysis1.0.1R101110110000000000000000000000000000011018148
lighterlighterLighter is a kmer-based error correction method for whole genome sequencing datalighterlighterLighterKmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors.k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detectionSequencing, Whole genome sequencing, DNA, GenomicsTo updatehttps://github.com/mourisl/LighterSequence Analysis, Fasta Manipulationlighterbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/lighterhttps://github.com/bgruening/galaxytools/tree/master/tools/lighter1.0lighter1.1.3k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detectionWhole genome sequencing, DNA, Genomics00100010000000000000000000000000000001109152
linear_regressionLinearRegression1Perform Linear RegressionTo updateStatisticslinear_regressiondevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/linear_regressionhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/linear_regression1.0.1R100010000000000000000000000000000000000000
locarnalocarna_exparnap, locarna_multiple, locarna_pairwise, locarna_pairwise_p, locarna_reliability_profileLocARNA - A suite for multiple alignment and folding of RNAsUp-to-datehttp://www.bioinf.uni-freiburg.de/Software/LocARNA/RNAlocarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarnahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarna2.0.1locarna2.0.1001000100000000000000000000000000000011011339
logistic_regression_vifLogisticRegressionPerform Logistic Regression with vifTo updateSequence Analysis, Variant Analysis, Statisticslogistic_regression_vifdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/logistic_regression_vifhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/logistic_regression_vif1.0.1numpy000000000000000000000000000000000000000000
maf_cpg_filtercpgFilterMask CpG/non-CpG sites from MAF fileTo updateSequence Analysis, Variant Analysismaf_cpg_filterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/maf_cpg_filterhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/maf_cpg_filter1.0.0bx-python0.12.0100010000000000000000000000000000000000000
mafftrbc_mafft_add, rbc_mafftMultiple alignment program for amino acid or nucleotide sequencesMAFFTMAFFTMAFFTMAFFT (Multiple Alignment using Fast Fourier Transform) is a high speed multiple sequence alignment program.Multiple sequence alignmentSequence analysisTo updatehttps://mafft.cbrc.jp/alignment/software/RNAmafftrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/maffthttps://github.com/bgruening/galaxytools/tree/master/tools/mafft7.526mafft7.525Multiple sequence alignmentSequence analysis2222222201002000000010200200020000000220817143045
mapping_to_ucscmapToUCSCFormat mapping data as UCSC custom trackTo updateVisualization, Convert Formats, Next Gen Mappersmapping_to_ucscdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/mapping_to_ucschttps://github.com/galaxyproject/tools-devteam/tree/main/tools/mapping_to_ucsc1.0.0000000000000000000000000000000000000000000
mavedbmavedb_importerdata source for MaveDBTo updateData Sourcemavedb_importerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mave_tools/mavedb/https://github.com/bgruening/galaxytools/tree/master/tools/mave_tools/mavedb0.9001000100000000000000000000000000000000000
meameaMaximum expected accuracy predictionTo updatehttp://www.bioinf.uni-leipzig.de/Software/meaRNAmearnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/meahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mea0.6.4.1mea0.6.40010001000000000000000000000000000000110385
megablast_xml_parsermegablast_xml_parserParse blast XML outputTo updateNext Gen Mappers, Convert Formatsmegablast_xml_parserdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/megablast_xml_parserhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/megablast_xml_parser1.0.1python101010100000000000001000000000000000011036338
mergegops_merge_1Merge the overlapping intervals of a datasetTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationsmergedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/mergehttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/merge1.0.0bx-python0.12.01111111100000000000000100000010000000110193563676
merge_colsmergeCols1Merge columns together.To updateText Manipulationmerge_colsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/merge_colshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/merge_cols1.0.3python111111111110101111011111100001001011011154228593
methtoolsmethtools_calling, r_correlation_matrix, methtools_destrand, methtools_dmr, methtools_filter, methtools_plot, smooth_running_window, methtools_tilingtools for methylation analysisTo updatehttps://github.com/bgruening/galaxytools/tree/master/tools/methtoolsSequence Analysismethtoolsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/methtoolshttps://github.com/bgruening/galaxytools/tree/master/tools/methtools0.1.1methtools000000000000000000000000000000000000000005461
methyldackelpileomethA tool for processing bisulfite sequencing alignmentsTo updatehttps://github.com/dpryan79/MethylDackelSequence Analysispileomethbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/methyldackelhttps://github.com/bgruening/galaxytools/tree/master/tools/methyldackel0.5.2methyldackel0.6.1111011100000000000000000010000000000011020016573
methylkitmethylkitA method for DNA methylation analysis and annotation from high-throughput bisulfite sequencing.To updatehttp://bioconductor.org/packages/release/bioc/html/methylKit.htmlEpigeneticsmethylkitrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/methylkithttps://github.com/bgruening/galaxytools/tree/master/tools/methylkit0.99.2bioconductor-methylkit1.28.0000100010000000000001000010000000000000000
metilenemetileneDifferential DNA methylation callingTo updateRNA, Statisticsmetilenernateamhttps://github.com/bgruening/galaxytools/tree/master/tools/metilenehttps://github.com/bgruening/galaxytools/tree/master/tools/metilene0.2.6.1metilene0.2.811111111000000000000100001000000000001101033966
mgnify_seqprepmgnify_seqprepA modifiied vesion of SeqPrep. Made for use with the MGnify pipelines.seqprepseqprepSeqPrepStrips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads.Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primersTo updatehttps://github.com/jstjohn/SeqPrepFastq Manipulation, Sequence Analysismgnify_seqprepbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprephttps://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep1.2Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primers000000000000000000000000000000000000000000
miclipmi_clipIdentification of binding sites in CLIP-Seq data.To updatehttps://cran.r-project.org/src/contrib/Archive/MiClip/Sequence Analysismiclipbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/micliphttps://github.com/bgruening/galaxytools/tree/master/tools/miclip1.2.0Rscript000000000000000000000000000000000000000000
microsatellite_birthdeathmicrosatellite_birthdeathIdentify microsatellite births and deathsTo updateSequence Analysismicrosatellite_birthdeathdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/microsatellite_birthdeathhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/microsatellite_birthdeath1.0.0000000000000000000000000000000000000000000
microsats_alignment_levelmicrosats_align1Extract Orthologous Microsatellites from pair-wise alignmentsTo updateSequence Analysis, Variant Analysismicrosats_alignment_leveldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_alignment_levelhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/microsats_alignment_level1.0.0sputnik100010000000000000000000000000000000000000
microsats_mutabilitymicrosats_mutability1Estimate microsatellite mutability by specified attributesTo updateSequence Analysis, Variant Analysismicrosats_mutabilitydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_mutabilityhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/microsats_mutability1.1.0bx-python0.12.0100010000000000000000000000000000000000000
mincedmincedMinCED - Mining CRISPRs in Environmental DatasetsTo updatehttp://bioweb2.pasteur.fr/docs/modules/minced/0.1.5/_READMESequence Analysismincedbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mincedhttps://github.com/bgruening/galaxytools/tree/master/tools/minced0.2.0minced0.4.2001000100000000000000000000000000000011053895
minemaximal_information_based_nonparametric_explorationMaximal Information-based Nonparametric ExplorationTo updateVariant Analysisminedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/minehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/mine0.0.1MINE1011101100000000000000000000000000000110211
minipolishminipolishPolishing miniasm assembliesminipolishminipolishminipolishA tool that bridges the output of miniasm (long-read assembly) and racon (assembly polishing) together to polish a draft assembly. It also provides read depth information in contigs.Localised reassembly, Read depth analysisSequence assembly, SequencingUp-to-datehttps://github.com/rrwick/MinipolishSequence Analysisminipolishbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/minipolishhttps://github.com/bgruening/galaxytools/tree/master/tools/minipolish0.1.3minipolish0.1.3Localised reassembly, Read depth analysisSequence assembly, Sequencing001000100000000000000010000000000000010021185
mitohifimitohifiAssembly mitogenomes from Pacbio HiFi read.To updatehttps://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2Assemblymitohifibgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mitohifihttps://github.com/bgruening/galaxytools/tree/master/tools/mitohifi3111011100000000000000010000000000000010056613
molecule2gspanbg_mol2gspanconverterTo updatehttps://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspanConvert Formatsmolecule_to_gspanbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspanhttps://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspan0.2openbabel2.3.90dev7d621d9000000000000000000000000000000000000000000
mqcmqcRibosome profiling mapping quality control toolTo updatehttps://github.com/Biobix/mQCSequence Analysismqcrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc/https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc1.9mqc1.100010001000000000000000000000000000000110576
multispecies_orthologous_microsatsmultispecies_orthologous_microsatsExtract orthologous microsatellitesTo updateSequence Analysis, Variant Analysismultispecies_orthologous_microsatsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/multispecies_orthologous_microsatshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/multispecies_orthologous_microsats1.0.0bx-sputnik000000000000000000000000000000000000000000
mummermummerplot_wrapperDraw dotplots using mummer, mucmer, or promer with mummerplotTo updatehttp://mummer.sourceforge.net/Graphics, Sequence Analysis, Visualizationmummerpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/mummerhttps://github.com/peterjc/pico_galaxy/tree/master/tools/mummer0.0.8ghostscript9.18101010100000000000000000000000000000011083652
music_deconvolutionmusic_construct_eset, music_inspect_eset, music_manipulate_eset, music_compare, music_deconvolutionMulti-subject Single Cell deconvolution (MuSiC)Up-to-datehttps://github.com/xuranw/MuSiCTranscriptomicsmusicbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/music/https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution0.1.1music-deconvolution0.1.155405540000000000000000000000000000005002401872
mutate_snp_codonmutate_snp_codon_1Mutate Codons with SNPsTo updateVariant Analysismutate_snp_codondevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/mutate_snp_codonhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/mutate_snp_codon1.0.01010101000000000000000000000000000000110047
nanopolishnanopolish_eventalign, nanopolish_methylation, nanopolish_polya, nanopolish_variantsNanopolish software package for signal-level analysis of Oxford Nanopore sequencing data.Up-to-datehttps://github.com/jts/nanopolishnanopolishbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nanopolishhttps://github.com/bgruening/galaxytools/tree/master/tools/nanopolish0.14.0nanopolish0.14.00444044400003000000000200000000000000440788366
nastiseqnastiseqA method to identify cis-NATs using ssRNA-seqUp-to-datehttps://ohlerlab.mdc-berlin.de/software/NASTIseq_104/RNAnastiseqrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/nastiseqhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/nastiseq1.0r-nastiseq1.00010001000000000000000000000000000000110040
netboxrnetboxrnetboxr enables automated discovery of biological process modules by network analysisTo updateSystems Biologynetboxrbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/netboxr1.6.0bioconductor-netboxr1.9.00010001000000000000000000000000000000100511
nextdenovonextdenovoString graph-based de novo assembler for long readsnextdenovonextdenovoNextDenovoNextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a "correct-then-assemble" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages.De-novo assembly, Genome assemblySequencing, Sequence assemblyTo updatehttps://github.com/Nextomics/NextDenovoAssemblynextdenovobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovohttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo2.5.0nextdenovo2.5.2De-novo assembly, Genome assemblySequencing, Sequence assembly001000100000000000000000000000000000010084268
nlstradamusnlstradamusFind nuclear localization signals (NLSs) in protein sequencesTo updatehttp://www.moseslab.csb.utoronto.ca/NLStradamusFasta Manipulation, Sequence Analysisnlstradamuspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamushttps://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus0.0.11NLStradamus1.8000000000000000000000000000000000000000000
nucleosome_predictionNucleosomePrediction of Nucleosomes Positions on the Genomenucleosome_predictionnucleosome_predictionnucleosome_predictionPrediction of Nucleosomes Positions on the GenomePrediction and recognition, Nucleosome position prediction, Sequence analysisStructural genomics, Nucleic acid sites, features and motifsUp-to-datehttps://genie.weizmann.ac.il/software/nucleo_exe.htmlSequence Analysisnucleosome_predictionbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_predictionhttps://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction3.0nucleosome_prediction3.0Prediction and recognition, Nucleosome position prediction, Sequence analysisStructural genomics, Nucleic acid sites, features and motifs00100010000000000000000000000000000001102861
numeric_clusteringnumeric_clusteringClustering tool for numberic valuesTo updatehttp://scikit-learn.org/stable/index.htmlStatisticsnumeric_clusteringbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/numeric_clusteringhttps://github.com/bgruening/galaxytools/tree/master/tools/numeric_clustering0.9anaconda00010001000000000000000000000100000000000486
openmsAccurateMassSearch, AdditiveSeries, BaselineFilter, CVInspector, CompNovo, CompNovoCID, ConsensusID, ConsensusMapNormalizer, ConvertTSVToTraML, ConvertTraMLToTSV, DTAExtractor, DeMeanderize, Decharger, DecoyDatabase, Digestor, DigestorMotif, EICExtractor, ERPairFinder, ExternalCalibration, FFEval, FalseDiscoveryRate, FeatureFinderCentroided, FeatureFinderIdentification, FeatureFinderIsotopeWavelet, FeatureFinderMRM, FeatureFinderMetabo, FeatureFinderMultiplex, FeatureFinderSuperHirn, FeatureLinkerLabeled, FeatureLinkerUnlabeled, FeatureLinkerUnlabeledQT, FidoAdapter, FileConverter, FileFilter, FileInfo, FileMerger, FuzzyDiff, HighResPrecursorMassCorrector, IDConflictResolver, IDDecoyProbability, IDExtractor, IDFileConverter, IDFilter, IDMapper, IDMassAccuracy, IDMerger, IDPosteriorErrorProbability, IDRTCalibration, IDRipper, IDScoreSwitcher, IDSplitter, ITRAQAnalyzer, InclusionExclusionListCreator, InspectAdapter, InternalCalibration, IsobaricAnalyzer, LabeledEval, LowMemPeakPickerHiRes, LowMemPeakPickerHiRes_RandomAccess, LuciphorAdapter, MRMMapper, MRMPairFinder, MRMTransitionGroupPicker, MSGFPlusAdapter, MSSimulator, MapAlignmentEvaluation, MapNormalizer, MapRTTransformer, MapStatistics, MascotAdapter, MascotAdapterOnline, MassCalculator, MassTraceExtractor, MetaProSIP, MetaboliteSpectralMatcher, MultiplexResolver, MzMLSplitter, MzTabExporter, NoiseFilterGaussian, NoiseFilterSGolay, OpenSwathAnalyzer, OpenSwathAssayGenerator, OpenSwathChromatogramExtractor, OpenSwathConfidenceScoring, OpenSwathDIAPreScoring, OpenSwathDecoyGenerator, OpenSwathFeatureXMLToTSV, OpenSwathFileSplitter, OpenSwathMzMLFileCacher, OpenSwathRTNormalizer, OpenSwathRewriteToFeatureXML, OpenSwathWorkflow, PTModel, PTPredict, PeakPickerHiRes, PeakPickerIterative, PeakPickerWavelet, PepNovoAdapter, PeptideIndexer, PhosphoScoring, PrecursorIonSelector, PrecursorMassCorrector, ProteinInference, ProteinQuantifier, ProteinResolver, QCCalculator, QCEmbedder, QCExporter, QCExtractor, QCImporter, QCMerger, QCShrinker, RNPxl, RNPxlXICFilter, RTEvaluation, RTModel, RTPredict, SemanticValidator, SequenceCoverageCalculator, SimpleSearchEngine, SpecLibCreator, SpectraFilterBernNorm, SpectraFilterMarkerMower, SpectraFilterNLargest, SpectraFilterNormalizer, SpectraFilterParentPeakMower, SpectraFilterScaler, SpectraFilterSqrtMower, SpectraFilterThresholdMower, SpectraFilterWindowMower, SpectraMerger, SvmTheoreticalSpectrumGeneratorTrainer, TICCalculator, TMTAnalyzer, TOFCalibration, TextExporter, TopPerc, TransformationEvaluation, XMLValidator, XTandemAdapterOpenMS in version 2.1.To updateProteomicsopenmsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/openmshttps://github.com/bgruening/galaxytools/tree/master/tools/openms2.1.0openms3.1.073413507341350000000000000000000000000000001351340916105743
pandas_rolling_windowpandas_rolling_windowRolling window calculationsTo updatehttps://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.rolling.htmlStatisticspandas_rolling_windowbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/pandas_rolling_windowhttps://github.com/bgruening/galaxytools/tree/master/tools/pandas_rolling_window0.1numpy10101010000000000000000000000000000001107269
paralyzerparalyzerA method to generate a high resolution map of interaction sites between RNA-binding proteins and their targets.Up-to-datehttps://ohlerlab.mdc-berlin.de/software/PARalyzer_85/RNAparalyzerrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/paralyzerhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/paralyzer1.5paralyzer1.500100010000000000000000000000000000001107299
partialr_squarepartialRsqCompute partial R squareTo updateStatisticspartialr_squaredevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/partialr_squarehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/partialr_square1.0.0R100010000000000000000000000000000000000000
peakachupeakachuPEAKachu is a peak-caller for CLIP- and RIP-Seq dataTo updateSequence Analysis, RNApeakachurnateamhttps://github.com/tbischler/PEAKachuhttps://github.com/bgruening/galaxytools/tree/master/tools/peakachu0.2.0+galaxy1peakachu0.2.00010001000000000000000000000000000000110783109
pearson_correlationPearson_and_apos_Correlation1Pearson and apos Correlation between any two numeric columnsTo updateStatisticspearson_correlationdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/pearson_correlationhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/pearson_correlation1.0.0000000000000000000000000000000000000000000
perfstats_perf_toolsuitable for boolean classification problemsTo updatehttp://osmot.cs.cornell.edu/kddcup/software.htmlstats_perf_toolbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/perfhttps://github.com/bgruening/galaxytools/tree/master/tools/perf5.11.0perf000000000000000000000000000000000000000000
pfamscanpfamscanSearch a FASTA sequence against a library of Pfam HMM.pfamscanpfamscanPfamScanThis tool is used to search a FASTA sequence against a library of Pfam HMM.Protein sequence analysisSequence analysisUp-to-datehttp://ftp.ebi.ac.uk/pub/databases/Pfam/Tools/Sequence Analysispfamscanbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/pfamscanhttps://github.com/bgruening/galaxytools/tree/master/tools/pfamscan1.6pfam_scan1.6Protein sequence analysisSequence analysis111111110000000000000000000000000000010019165
pg_toolspg_dump, pg_import, pg_querytool suite for dealing with Postgresql databases from Galaxy's historyTo updatehttps://www.postgresql.orgData Export, Data Sourcepgtoolsbgrueninghttps://github.com/bgruening/galaxytools/tools/pgtoolshttps://github.com/bgruening/galaxytools/tree/master/tools/pg_toolspostgresql000000000000000000000000000000000000000000
pgsnp2gd_snppgSnp2gd_snpConvert from pgSnp to gd_snpTo updateVariant Analysispgsnp2gd_snpdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/pgsnp2gd_snphttps://github.com/galaxyproject/tools-devteam/tree/main/tools/pgsnp2gd_snp1.0.0000000000000000000000000000000000000000000
pharmcatpharmcatPharmacogenomics Clinical Annotation ToolTo updatehttps://pharmcat.org/Variant Analysispharmcatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/pharmcathttps://github.com/bgruening/galaxytools/tree/master/tools/pharmcat10101010000000000000000000000000000001001482
pileup_intervalpileup_intervalPileup-to-Interval condenses pileup format into ranges of basesTo updateSAMpileup_intervaldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/pileup_intervalhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/pileup_interval1.0.3bx-python0.12.0111111110000100000000010000001000000011015632
pileup_parserpileup_parserFilter pileup on coverage and SNPsTo updatehttps://github.com/galaxyproject/tools-devteam/SAMpileup_parserdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/pileup_parserhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/pileup_parser1.0.2perl11111111010000000000001000000100000001101693158
pipmirpipmirA method to identify novel plant miRNA.To updatehttps://ohlerlab.mdc-berlin.de/software/Pipeline_for_the_Identification_of_Plant_miRNAs_84/RNApipmirrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/pipmirhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/pipmir0.1.0pipmir1.1001000100000000000000000000000000000011021275
piranhapiranhaPiranha is a peak-caller for CLIP- and RIP-Seq dataTo updateSequence Analysis, RNApiranharnateamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/piranhahttps://github.com/bgruening/galaxytools/tree/master/tools/piranha1.2.1.0piranha1.2.10010001000000000000000000000000000000110391809
platypusbg_platypusefficient and accurate variant-detection in high-throughput sequencing dataTo updatehttp://www.well.ox.ac.uk/platypusSequence Analysisplatypusbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/platypushttps://github.com/bgruening/galaxytools/tree/master/tools/platypus0.0.11platypus000000000000000000000000000000000000000000
plot_from_ldaplot_for_lda_output1Draw ROC plot on "Perform LDA" outputTo updateGraphics, Statisticsplot_from_ldadevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/plot_from_ldahttps://github.com/galaxyproject/tools-devteam/tree/main/tools/plot_from_lda1.0.1R1011101100000000000000000000000000000110973
plotly_ml_performance_plotsplotly_ml_performance_plotsperformance plots for machine learning problemsTo updatehttp://scikit-learn.org/stable/modules/classes.html#module-sklearn.metricsVisualizationplotly_ml_performance_plotsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/plotly_ml_performance_plotshttps://github.com/bgruening/galaxytools/tree/master/tools/plotly_ml_performance_plots0.4galaxy-ml0.10.01110111000000000000000000000000000000110711323
plotly_parallel_coordinates_plotplotly_parallel_coordinates_plotparallel coordinates plot produced with plotlyTo updatehttps://plot.ly/python/parallel-coordinates-plot/Visualizationplotly_parallel_coordinates_plotbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/plotly_parallel_coordinates_plothttps://github.com/bgruening/galaxytools/tree/master/tools/plotly_parallel_coordinates_plot0.2python111011100000000000000000000000000000011037652
plotly_regression_performance_plotsplotly_regression_performance_plotsperformance plots for regression problemsTo updatehttp://scikit-learn.org/stable/supervised_learning.html#supervised-learningVisualizationplotly_regression_performance_plotsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/plotly_regression_performance_plotshttps://github.com/bgruening/galaxytools/tree/master/tools/plotly_regression_performance_plots0.1python111011100000000000000000000000000000011079843
poisson2testpoisson2testPoisson two-sample testTo updatehttps://bitbucket.org/natefoo/taxonomyStatistics, Metagenomicspoisson2testdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/poisson2testhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/poisson2test1.0.0taxonomy0.10.001100110000000000000000000000000000001106116
predictnlspredictnlsPython reimplementation of predictNLS for GalaxyTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/predictnlsSequence Analysispredictnlspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/predictnlshttps://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls0.0.10000000000000000000000000000000000000000000
principal_component_analysispca1Principal Component AnalysisTo updateStatisticsprincipal_component_analysisdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/principal_component_analysishttps://github.com/galaxyproject/tools-devteam/tree/main/tools/principal_component_analysis1.0.2rpy1011101100000000000000000000000000000110889989
protease_predictioneden_protease_predictionThis tool can learn the cleavage specificity of a given class of proteases.To updatehttps://github.com/fabriziocosta/edenSequence Analysis, Proteomicsprotease_predictionbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/protease_predictionhttps://github.com/bgruening/galaxytools/tree/master/tools/protease_prediction0.9eden2.000100010000000000000000000000000000001107154
protein_analysispromoter2, Psortb, rxlr_motifs, signalp3, tmhmm2, wolf_psortTMHMM, SignalP, Promoter, RXLR motifs, WoLF PSORT and PSORTbTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysisSequence Analysistmhmm_and_signalppeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysishttps://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis0.0.13promoter00600060000000000000000000000000000006604516428
protein_propertiesbg_protein_propertiesCalculation of various properties from given protein sequencesTo updateSequence Analysisprotein_propertiesbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/protein_propertieshttps://github.com/bgruening/galaxytools/tree/master/tools/protein_properties0.2.0biopython1.70001000100000000000000000000000000000011030604
quality_filterqualityFilterFilter nucleotides based on quality scoresTo updateSequence Analysis, Variant Analysisquality_filterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/quality_filterhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/quality_filter1.0.1bx-python0.12.0000000000000000000000000000000000000000000
rRNAmeta_rnaIdentification of ribosomal RNA genes in metagenomic fragments.To updatehttp://weizhong-lab.ucsd.edu/meta_rna/RNArrnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rRNAhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rRNA0.1hmmsearch3.0000000000000000000000000000000000000000000
raconraconConsensus module for raw de novo DNA assembly of long uncorrected reads.RaconRaconRaconConsensus module for raw de novo DNA assembly of long uncorrected readsRacon is intended as a standalone consensus module to correct raw contigs generated by rapid assembly methods which do not include a consensus step. The goal of Racon is to generate genomic consensus which is of similar or better quality compared to the output generated by assembly methods which employ both error correction and consensus steps, while providing a speedup of several times compared to those methods. It supports data produced by both Pacific Biosciences and Oxford Nanopore Technologies.Genome assembly, Mapping assemblyWhole genome sequencing, Sequence assemblyUp-to-datehttps://github.com/isovic/raconSequence Analysisraconbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/raconhttps://github.com/bgruening/galaxytools/tree/master/tools/racon1.5.0racon1.5.0Genome assembly, Mapping assemblyWhole genome sequencing, Sequence assembly111111110000000000000010000000000000011030921353
rbpbenchrbpbenchEvaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifsrbpbenchrbpbenchRBPBenchEvaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifsRNA, Protein interactions, RNA immunoprecipitation, Bioinformatics, Sequence analysisTo updatehttps://github.com/michauhl/RBPBenchSequence Analysis, RNA, CLIP-seqrbpbenchrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbenchhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbench0.8.1rbpbench0.9RNA, Protein interactions, RNA immunoprecipitation, Bioinformatics, Sequence analysis0010001000000000000000000000000000000000036
rcasrcasRCAS (RNA Centric Annotation System) for functional analysis of transcriptome-wide regions detected by high-throughput experimentsTo updatehttps://github.com/BIMSBbioinfo/RCASRNArcasrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rcas/https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rcas1.5.4bioconductor-rcas1.28.20010001000000000000000000000000000000110381226
rcvercve1Compute RCVETo updateSequence Analysis, Variant Analysisrcvedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/rcvehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/rcve1.0.0R100010000000000000000000000000000000000000
reagoreagoReago is tool to assembly 16S ribosomal RNA recovery from metagenomic data.reagoreagoREAGOThis is an assembly tool for 16S ribosomal RNA recovery from metagenomic data.Sequence assemblySequence assembly, RNA, Metagenomics, MicrobiologyUp-to-datehttps://github.com/chengyuan/reago-1.1Metagenomics, RNAreagornateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reagohttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago1.1reago1.1Sequence assemblySequence assembly, RNA, Metagenomics, Microbiology001000100000000000000000000000000000000000
remove_beginningRemove beginning1Remove lines from the beginning of a file.To updateText Manipulationremove_beginningdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/remove_beginninghttps://github.com/galaxyproject/tools-devteam/tree/main/tools/remove_beginning1.0.011111111111010111101111110000100101101111409137310
remurnaremurnaremuRNA - Measurement of Single Nucleotide Polymorphism induced Changes of RNA ConformationTo updatehttps://www.ncbi.nlm.nih.gov/CBBresearch/Przytycka/index.cgi#remurnaRNAremurnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/remurnahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/remurna1.0.0remurna1.00010001000000000000000000000000000000110242
repeat_maskerrepeatmasker_wrapperRepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences.To updatehttp://www.repeatmasker.org/Sequence Analysisrepeat_maskerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/repeat_maskerhttps://github.com/bgruening/galaxytools/tree/master/tools/repeat_masker0.1.2RepeatMasker4.1.511111111000000000000000000000000000001102483750
replaceColumnreplace_column_with_key_value_fileA tool to replace all column entries of a file given by values of a key-value file.To updateText Manipulationreplace_column_by_key_value_filebgrueninghttps://github.com/bgruening/galaxytools/tree/replaceColumn/tools/replaceColumnhttps://github.com/bgruening/galaxytools/tree/master/tools/replaceColumn0.21111111100000000000000100100010000000110189576111
rest_toolpubchem_rest_toolThis tool fetches data from pubchem via the PubChem REST API.To updatehttps://pubchem.ncbi.nlm.nih.gov/pug_rest/PUG_REST.htmlData Sourcepubchem_rest_toolbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/rest_toolhttps://github.com/bgruening/galaxytools/tree/master/tools/rest_tool0.1.0000000000000000000000000000000000000000000
ribotaperribotaper_create_annotation, ribotaper_create_metaplots, ribotaper_ribosome_profilingA method for defining traslated ORFs using Ribosome Profiling data.ribotaperribotaperRiboTaperNew analysis pipeline for Ribosome Profiling (Ribo-seq) experiments, which exploits the triplet periodicity of ribosomal footprints to call translated regions.Gene expression profilingFunctional genomicsTo updatehttps://ohlerlab.mdc-berlin.de/software/RiboTaper_126/RNAribotaperrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper/https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper1.3.1aribotaper1.3.1Gene expression profilingFunctional genomics003000300000000000000000000000000000033044628
rmaprmap_wrapperRMAP for Solexa Short Reads AlignmentTo updateNext Gen Mappersrmapdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/rmaphttps://github.com/galaxyproject/tools-devteam/tree/main/tools/rmap1.0.0rmap2.1000000000000000000000000000000000000000000
rmapqrmapq_wrapperRMAPQ for Solexa Short Reads Alignment with Quality ScoresTo updateNext Gen Mappersrmapqdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/rmapqhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/rmapq1.0.0rmap2.1000000000000000000000000000000000000000000
rna_shapesRNAshapesCompute secondary structures of RNATo updateRNArnashapesrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapeshttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapes3.3.0@EXECUTABLE@001000100000000000000000000000000000011011129
rnabobrbc_rnabobFast pattern searching for RNA structural motifsTo updatehttp://eddylab.org/software.htmlRNArnabobrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabobhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabob2.2.1.0rnabob2.2.100100010000000000000000000000000000001103164
rnacoderbc_rnacodeAnalyze the protein coding potential in MSATo updateRNArnacodernateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacodehttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacode0.3.2rnacode0.3001000100000000000000000000000000000011051358
rnacommenderrbc_rnacommenderRNAcommender is a tool for genome-wide recommendation of RNA-protein interactions.To updatehttps://github.com/gianlucacorrado/RNAcommenderRNArnacommenderrnateamhttps://github.com/bgruening/galaxytools/tree/rna_commander/tools/rna_tools/rna_commenderhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacommender0.1.1sam3.5001000100000000000000000000000000000011061074
rnaformerinfer_rnaformerRNAformer: RNA secondary structure predictionTo updatehttps://github.com/automl/RNAformerRNArnaformerrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaformerhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaformer1.0.0rnaformer001000100000000000000000000000000000000000
rnalienRNAlienRNAlien unsupervized RNA family model constructionTo updatehttp://rna.tbi.univie.ac.at/rnalien/RNA, Sequence Analysisrnalienrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalienhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalien1.3.6rnalien1.8.00010001000000000000000000000000000000110433
rnasnprnasnpRNAsnp Efficient detection of local RNA secondary structure changes induced by SNPsTo updatehttp://rth.dk/resources/rnasnp/RNArnasnprnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rnasnphttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnasnp1.2.0rnasnp1.20010001000000000000000000000000000000110586
rnazrnaz, rnaz_annotate, rnaz_cluster, rnaz_randomize_aln, rnaz_select_seqs, rnaz_windowRNAz is a program for predicting structurally conserved and thermodynamically stable RNA secondary structures in multiple sequence alignments.Up-to-datehttps://www.tbi.univie.ac.at/~wash/RNAz/RNArnazbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/rna_team/rnazhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaz2.1.1rnaz2.1.100600060000000000000000000000000000006602843279
sailfishsailfishSailfish is a tool for transcript quantification from RNA-seq dataTo updatehttp://www.cs.cmu.edu/~ckingsf/software/sailfish/Sequence Analysis, RNAsailfishbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/sailfishhttps://github.com/bgruening/galaxytools/tree/master/tools/sailfish0.10.1.1bzip21111111100000000000000000100000000000110554024
salmonalevin, salmon, salmonquantmergeSalmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data.salmonsalmonSalmonA tool for transcript expression quantification from RNA-seq dataSequence composition calculation, RNA-Seq quantification, Gene expression analysisRNA-Seq, Gene expression, TranscriptomicsTo updatehttps://github.com/COMBINE-lab/salmonSequence Analysis, RNA, Transcriptomicsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/salmonhttps://github.com/bgruening/galaxytools/tree/master/tools/salmon1.10.1salmon1.10.3Sequence composition calculation, RNA-Seq quantification, Gene expression analysisRNA-Seq, Transcriptomics223122310000000000000210010002000000033096961937
sam2intervalsam2intervalConvert SAM to interval.To updateSAMsam2intervaldevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/sam2intervalhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/sam2interval1.0.2python1111111100000000000000000000000000000110201189
sam_bitwise_flag_filtersam_bw_filterFilter SAM on bitwise flag valuesTo updateSAMsam_bitwise_flag_filterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/sam_bitwise_flag_filterhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/sam_bitwise_flag_filter1.0.1python11011101000000000000000000000000000001101278
sambambasambamba_flagstat, sambamba_markdup, sambamba_merge, sambamba_sortSambamba: process your BAM data faster!Up-to-datehttps://github.com/biod/sambambaSAMsambambabgrueninghttps://github.com/biod/sambambahttps://github.com/bgruening/galaxytools/tree/master/tools/sambamba1.0.1sambamba1.0.1004000400000000000000000000000000000000000
sample_seqssample_seqsSub-sample sequences files (e.g. to reduce coverage)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqsAssembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysissample_seqspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqshttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs0.2.6biopython1.7011111111000000000000001000000000000001101493765
samtools_depadsamtools_depadRe-align a SAM/BAM file with a padded reference (using samtools depad)To updatehttp://www.htslib.org/Assembly, SAM, Sequence Analysissamtools_depadpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depadhttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad0.0.5samtools1.20000000000000000000000000000000000000000000
samtools_depthsamtools_depthCoverage depth via samtoolsTo updatehttp://www.htslib.org/Assembly, Sequence Analysis, SAMsamtools_depthpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depthhttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth0.0.3samtools1.2011111111000000000000111001000000000001112964948
samtools_idxstatssamtools_idxstatsBAM mapping statistics (using samtools idxstats)To updatehttp://www.htslib.org/Assembly, Next Gen Mappers, SAMsamtools_idxstatspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstatshttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats0.0.6samtools1.201111111101000000000011100100010000000110145048426
scatterplotscatterplot_rpyScatterplot of two numeric columnsTo updateGraphics, Statisticsscatterplotdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/scatterplothttps://github.com/galaxyproject/tools-devteam/tree/main/tools/scatterplot1.0.3numpy1011101100000000000010000000000000000110611677
sedsed_stream_editorManipulate your data with the sed command line tool.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/sedText Manipulationsed_wrapperbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/sedhttps://github.com/bgruening/galaxytools/tree/master/tools/sed0.0.1sed000000000000000000000000000000000000000022276
segemehlsegemehlsegemehl - short read mapping with gapsTo updatehttp://www.bioinf.uni-leipzig.de/Software/segemehl/Next Gen Mapperssegemehlrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/segemehlhttps://github.com/bgruening/galaxytools/tree/master/tools/segemehl0.2.0.4segemehl0.3.40010001000000000000000000000000000000110301276
selectsequencesfrommsaselectsequencesfrommsaSelectSequences - selects representative entries from a multiple sequence alignment in clustal formatUp-to-datehttps://github.com/eggzilla/SelectSequencesRNA, Sequence Analysisselectsequencesfrommsarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/selectsequencesfrommsahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/selectsequencesfrommsa1.0.5selectsequencesfrommsa1.0.5001000100000000000000010000000000000011027457
seq_compositionseq_compositionSequence compositionTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_compositionSequence Analysisseq_compositionpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_compositionhttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition0.0.5biopython1.70101110110000000000000000000000000000011071874
seq_filter_by_idseq_filter_by_idFilter sequences by IDTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_idFasta Manipulation, Sequence Analysis, Text Manipulationseq_filter_by_idpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_idhttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id0.2.9biopython1.70111111110000000000000010000000000000011030625302
seq_filter_by_mappingseq_filter_by_mappingFilter sequencing reads using SAM/BAM mapping filesTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mappingAssembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysisseq_filter_by_mappingpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mappinghttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping0.0.8biopython1.700010001000000000000000100000000000000110823784
seq_lengthseq_lengthCompute sequence length (from FASTA, QUAL, FASTQ, SFF, etc)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_lengthFasta Manipulation, Fastq Manipulation, Sequence Analysisseq_lengthpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_lengthhttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length0.0.5biopython1.70000000000000000000000010000000000000000000
seq_primer_clipseq_primer_clipTrim off 5' or 3' primersTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clipAssembly, Fasta Manipulation, Text Manipulationseq_primer_clippeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_cliphttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip0.0.18galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
seq_renameseq_renameRename sequences with ID mapping from a tabular fileTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_renameFasta Manipulation, Sequence Analysis, Text Manipulationseq_renamepeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_renamehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename0.0.10galaxy_sequence_utils1.1.5000000000000000000000010000000000000001000
seq_select_by_idseq_select_by_idSelect sequences by IDTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_idFasta Manipulation, Sequence Analysis, Text Manipulationseq_select_by_idpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_idhttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id0.0.15biopython1.70010001000000000000000010000000000000000000
short_reads_figure_high_quality_lengthhist_high_quality_scoreHistogram of high quality score readsTo updateSequence Analysis, Graphicsshort_reads_figure_high_quality_lengthdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_high_quality_lengthhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_figure_high_quality_length1.0.0rpy000000000000000000000000000000000000000000
short_reads_figure_scorequality_score_distributionBuild base quality distributionTo updateSequence Analysis, Graphicsshort_reads_figure_scoredevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_scorehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_figure_score1.0.2fontconfig001000100000000000000000000000000000011013163
short_reads_trim_seqtrim_readsSelect high quality segmentsTo updateFastq Manipulationshort_reads_trim_seqdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_trim_seqhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_trim_seq1.0.0101010100000000000000000000000000000011021220
show_beginningShow beginning1Select lines from the beginning of a file.To updateText Manipulationshow_beginningdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/show_beginninghttps://github.com/galaxyproject/tools-devteam/tree/main/tools/show_beginning1.0.0111111111110101111011101100001001011011170432112
show_tailShow tail1Select lines from the end of a file.To updateText Manipulationshow_taildevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/show_tailhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/show_tail1.0.011111111101010111101110110000100101101111282513
sicerpeakcalling_sicerStatistical approach for the Identification of ChIP-Enriched RegionsUp-to-datehttps://home.gwu.edu/~wpeng/Software.htmChIP-seqsicerdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/sicerhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/sicer1.1SICER1.111111111000000000000100000000100000001105374
sklearnsklearn_mlxtend_association_rules, sklearn_clf_metrics, sklearn_discriminant_classifier, sklearn_ensemble, sklearn_estimator_attributes, sklearn_feature_selection, sklearn_fitted_model_eval, sklearn_generalized_linear, keras_batch_models, keras_model_builder, keras_model_config, keras_train_and_eval, sklearn_label_encoder, sklearn_lightgbm, ml_visualization_ex, model_prediction, sklearn_model_validation, sklearn_nn_classifier, sklearn_numeric_clustering, sklearn_pairwise_metrics, sklearn_pca, sklearn_build_pipeline, sklearn_data_preprocess, sklearn_regression_metrics, sklearn_sample_generator, sklearn_searchcv, sklearn_model_fit, scipy_sparse, stacking_ensemble_models, sklearn_svm_classifier, sklearn_to_categorical, sklearn_train_test_eval, sklearn_train_test_splitMachine Learning tool suite from Scikit-learnTo updatehttp://scikit-learn.orgMachine Learning, Statisticssklearnbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/sklearnhttps://github.com/bgruening/galaxytools/tree/master/tools/sklearn1.0.11.030143116301431160000000000000000000000000000031270958113932
snpfreqhgv_snpFreqsnpFreq significant SNPs in case-control dataTo updateVariant Analysis, Statisticssnpfreqdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/snpfreqhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/snpfreq1.0.1R1110111000000000000000000000000000000110737
sortmernabg_sortmernaSortMeRNA is a software designed to rapidly filter ribosomal RNA fragments from metatransriptomic data produced by next-generation sequencers.sortmernasortmernaSortMeRNASequence analysis tool for filtering, mapping and OTU-picking NGS reads.Sequence similarity search, Sequence comparison, Sequence alignment analysisMetatranscriptomics, MetagenomicsTo updatehttp://bioinfo.lifl.fr/RNA/sortmerna/RNAsortmernarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmernahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna4.3.6sortmerna4.3.7Sequence similarity search, Sequence alignment analysisMetatranscriptomics, Metagenomics111111110100000000001010000000000000011037618183
split_file_on_columntp_split_on_columnSplit a file on a specific column.To updateText Manipulationsplit_file_on_columnbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_on_columnhttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_on_column0.6gawk11111111000000000000001000000000000001101595507
split_file_to_collectionsplit_file_to_collectionSplit tabular, MGF, FASTA, or FASTQ files to a dataset collection.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collectionText Manipulationsplit_file_to_collectionbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collectionhttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collection0.5.2python111111110000000000000010010001000000011041215358
split_paired_readssplit_paired_readsSplit paired end readsTo updateFastq Manipulationsplit_paired_readsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/split_paired_readshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/split_paired_reads1.0.0000000000000000000000010000000000000000000
splitfastarbc_splitfastaSplit a multi-sequence fasta file into files containing single sequencesTo updateText Manipulationsplitfastarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/splitfastahttps://github.com/bgruening/galaxytools/tree/master/tools/splitfasta0.4.0biopython1.701010101000001000000000100000000000000110961295
sshmmsshmmssHMM is an RNA sequence-structure motif finder for RNA-binding protein data, such as CLIP-Seq dataUp-to-datehttps://github.molgen.mpg.de/heller/ssHMMSequence Analysis, RNAsshmmrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sshmm/https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sshmm1.0.7sshmm1.0.700100010000000000000000000000000000001105223
statisticsbg_statistical_hypothesis_testingTool for computing statistical tests.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/statisticsStatisticsbg_statistical_hypothesis_testingbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/statisticshttps://github.com/bgruening/galaxytools/tree/master/tools/statistics0.3numpy001000100000000000000000000000000000010021304
stress_ngstress_ngstress test a computer system in various selectable waysTo updateWeb Servicesstress_ngbgruening-utilhttps://github.com/ColinIanKing/stress-nghttps://github.com/bgruening/galaxytools/tree/master/tools/stress_ng0.12.04stress-ng0000000000000000000000000000000000000000047
substitution_ratessubRate1Estimate substitution rates for non-coding regionsTo updateSequence Analysis, Variant Analysissubstitution_ratesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/substitution_rateshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/substitution_rates1.0.0000000000000000000000000000000000000000000
substitutionssubstitutions1Fetch substitutions from pairwise alignmentsTo updateSequence Analysis, Variant Analysissubstitutionsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/substitutionshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/substitutions1.0.1bx-python0.12.0100010000000000000000000000000000000000000
subtractgops_subtract_1Subtract the intervals of two datasetsTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationssubtractdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/subtracthttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/subtract1.0.0bx-python0.12.01111111100000000000001000000010000000110182564229
subtract_querysubtract_query1Subtract Whole Dataset from another datasetTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationssubtract_querydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/subtract_queryhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/subtract_query0.1bx-python0.12.01111111100000000000000000000000000000110551019
t2psDraw_phylogramDraw phylogenyt2pst2psDraw phylogeny"Given taxonomy representation (produced by *Fetch taxonomic representation* tool) this utility produces a graphical representations of phylogenetic tree in PDF format." - Galaxy tool wrapperPhylogenetic tree visualisationPhylogenomicsTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicst2psdevteamhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2pshttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps1.0.0taxonomy0.10.0Phylogenetic tree visualisationPhylogenomics001000100000000000000010000000000000011031457
t2t_reportt2t_reportSummarize taxonomyTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicst2t_reportdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/t2t_reporthttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2t_report1.0.0taxonomy0.10.0001000100000000000000010000000000000011026947
t_test_two_samplest_test_two_samplesT Test for Two SamplesTo updateStatisticst_test_two_samplesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/t_test_two_sampleshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/t_test_two_samples1.0.1R11111111000000000000000000000000000001106210
table_annovartable_annovarAnnotate a VCF file using ANNOVAR annotations to produce a tabular file that can be filteredTo updateVariant Analysistable_annovardevteamNonehttps://github.com/galaxyproject/tools-devteam/tree/master/tools/table_annovarhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/table_annovar0.2annovar000000000000000000000000000000000000000000
tables_arithmetic_operationstables_arithmetic_operationsArithmetic Operations on tablesTo updatehttps://github.com/galaxyproject/gopsGenomic Interval Operationstables_arithmetic_operationsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/tables_arithmetic_operationshttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/tables_arithmetic_operations1.0.0perl0011001100000000000000000000010000000110142207
tabular_to_fastatab2fastaTabular-to-FASTATo updateConvert Formatstabular_to_fastadevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tabular_to_fastahttps://github.com/galaxyproject/tools-devteam/tree/main/tools/tabular_to_fasta1.1.1python1111111101001000000010100000010000000110601319334
tapscantapscan_classifySearch for transcription associated proteins (TAPs)To updatehttps://plantcode.cup.uni-freiburg.de/tapscan/Proteomicstapscanbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/tapscanhttps://github.com/bgruening/galaxytools/tree/master/tools/tapscan4.76+galaxy0hmmer3.4001000100000000000000000000000000000000000
targetfindertargetfinderPlant small RNA target prediction toolUp-to-datehttps://github.com/carringtonlab/TargetFinder.gitRNAtargetfinderrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder/https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder1.7targetfinder1.7111011100000000000000000000000000000011037713
text_processingtp_awk_tool, tp_cat, tp_cut_tool, tp_easyjoin_tool, tp_find_and_replace, tp_grep_tool, tp_head_tool, tp_multijoin_tool, nl, tp_text_file_with_recurring_lines, tp_replace_in_column, tp_replace_in_line, tp_sed_tool, tp_sort_header_tool, tp_sort_rows, tp_uniq_tool, tp_tac, tp_tail_tool, tp_unfold_column_tool, tp_sorted_uniqHigh performance text processing tools using the GNU coreutils, sed, awk and friends.To updatehttps://www.gnu.org/software/Text Manipulationtext_processingbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processinghttps://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing9.3coreutils8.25202020202020202000000000000019119001900020000000019190150483864895
tgsgapclosertgsgapcloserTGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly.TGS-GapCloserTGS-GapCloserTGS-GapCloserTGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads.Genome assembly, Read mapping, Scaffolding, Localised reassemblySequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, MappingTo updatehttps://github.com/BGI-Qingdao/TGS-GapCloserAssemblytgsgapcloserbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloserhttps://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser1.0.3tgsgapcloser1.2.1Genome assembly, Read mapping, Scaffolding, Localised reassemblySequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping001000100000000000000000000000000000010036460
tiaratiaraTool for identification of eukaryotic sequences in the metagenomic datasets.TiaraTiaraTIARATotal Integrated Archive of Short-Read and Array (TIARA) database, contains personal genomic information obtained from next generation sequencing (NGS) techniques and ultra-high-resolution comparative genomic hybridization (CGH) arrays. This database improves the accuracy of detecting personal genomic variations, such as SNPs, short indels and structural variants (SVs).Genome comparison, Data retrieval, Variant calling, Genome visualisation, Structural variation detectionSequencing, Genomics, DNA polymorphism, DNA structural variationTo updatehttps://github.com/ibe-uw/tiaraMetagenomics, Sequence Analysistiarabgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/tiarahttps://github.com/bgruening/galaxytools/tree/master/tools/tiara1.0.3tiaraGenome comparison, Data retrieval, Variant calling, Genome visualisation, Structural variation detectionSequencing, Genomics, DNA polymorphism001000100000000000000000000000000000000000
tool_recommendation_modelcreate_tool_recommendation_modelCreate model to recommend toolsTo updatehttps://github.com/bgruening/galaxytoolsMachine Learningcreate_tool_recommendation_modelbgrueninghttps://github.com/bgruening/galaxytools/tree/recommendation_training/tools/tool_recommendation_modelhttps://github.com/bgruening/galaxytools/tree/master/tools/tool_recommendation_model0.0.5python101010100000000000000000000000000000011015445
tophattophatTophat for IlluminaTo updateRNA, Next Gen Mapperstophatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tophathttps://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat1.5.0samtools1.20000000000000000000000000000000001000000001
tophat2tophat2Tophat - fast splice junction mapper for RNA-Seq readsTo updatehttp://ccb.jhu.edu/software/tophat/index.shtmlRNA, Next Gen Mapperstophat2devteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat2https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat22.1.1bowtie22.5.4111011100100000000001110000000001000011031224167
tophat_fusion_posttophat_fusion_postWrapper for Tophat-Fusion post stepTo updateTranscriptomicstophat_fusion_postdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_posthttps://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post0.1blast+011001100000000000000000000000000000011015216
trim_galoretrim_galoreTrim Galore adaptive quality and adapter trimmertrim_galoretrim_galoreTrim GaloreA wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries.Sequence trimming, Primer removal, Read pre-processingSequence analysisTo updatehttp://www.bioinformatics.babraham.ac.uk/projects/trim_galore/Sequence Analysis, Fastq Manipulationtrim_galorebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/trim_galorehttps://github.com/bgruening/galaxytools/tree/master/tools/trim_galore0.6.7trim-galore0.6.10Sequence trimming, Primer removal, Read pre-processingSequence analysis11111111010000000000101001000000000001102334238699
trimmertrimmerTrim leading or trailing characters.To updateText Manipulationtrimmerdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/trimmerhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/trimmer0.0.111111111111010111101111110000100101101111886058
trna_predictionaragorn_trna, trnascanAragorn predicts tRNA and tmRNA in nucleotide sequences.To updatehttp://mbioserv2.mbioekol.lu.se/ARAGORN/RNAtrna_predictionbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/trna_predictionhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/trna_prediction0.6aragorn1.2.4102200220000020000000002000000200000002202362935
ucsc_custom_trackbuild_ucsc_custom_track_1Build custom track for UCSC genome browserTo updateSequence Analysisucsc_custom_trackdevteamhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_trackhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_track1.0.1python101010100100000000000000000000000000011045394
uniprot_rest_interfaceuniprotUniProt ID mapping and sequence retrievalTo updatehttps://github.com/jdrudolph/uniprotProteomics, Sequence Analysisuniprot_rest_interfacebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interfacehttps://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interface0.6requests11101110000000000000000000000000000001101322406
varscan_version_2varscanVarScan wrapperTo updatehttps://dkoboldt.github.io/varscan/Variant Analysisvarscan_version_2devteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2https://github.com/galaxyproject/tools-devteam/tree/main/tools/varscan_version_22.4.2varscan2.4.611111111010010000000000000000000000001102465191
vcf2pgsnpvcf2pgSnpVCF to pgSnpTo updateVariant Analysisvcf2pgsnpdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf2pgsnphttps://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf2pgsnp1.0.0101010100000000000000000000000000000011015206
vcf_annotatevcf_annotateAnnotate a VCF file (dbSNP, hapmap)To updateVariant Analysisvcf_annotatedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_annotatehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_annotate1.0.0000000000000000000000000000000000000000001
vcf_extractvcf_extractExtract reads from a specified regionTo updateVariant Analysisvcf_extractdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_extracthttps://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_extract1.0.0000000000000000000000010000000000000000000
vcf_filtervcf_filterFilter a VCF fileTo updateVariant Analysisvcf_filterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_filterhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_filter1.0.0001000100000000000000000000000000000011063388
vcf_intersectvcf_intersectGenerate the intersection of two VCF filesTo updateVariant Analysisvcf_intersectdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_intersecthttps://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_intersect1.0.00000000000000000100001000000000000000000019
vcftools_annotatevcftools_annotateAnnotate VCF using custom/user-defined annotationsTo updatehttps://vcftools.github.io/Variant Analysisvcftools_annotatedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_annotatehttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_annotate0.1echo101110110000100000000000000000000000011024171
vcftools_comparevcftools_compareCompare VCF files to get overlap and uniqueness statisticsTo updatehttps://vcftools.github.io/Variant Analysisvcftools_comparedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_comparehttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_compare0.1tabix1.11001000100000100000000000000000000000011034531
vcftools_consensusvcftools_consensusApply VCF variants to a fasta file to create consensus sequenceTo updatehttps://vcftools.github.io/Variant Analysisvcftools_consensusdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_consensushttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_consensus0.1.11samtools1.20000000000000000000000010000000000000000000
vcftools_isecvcftools_isecIntersect multiple VCF datasetsTo updatehttps://vcftools.github.io/Variant Analysisvcftools_isecdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_isechttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_isec0.1.1tabix1.11011001100000100000000010000000000000011035498
vcftools_mergevcftools_mergeMerge multiple VCF datasets into a single datasetTo updatehttps://vcftools.github.io/Variant Analysisvcftools_mergedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_mergehttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_merge0.1.11tabix1.11011001100000100000000000000000000000011068953
vcftools_slicevcftools_sliceSubset VCF dataset by genomic regionsTo updatehttps://vcftools.github.io/Variant Analysisvcftools_slicedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_slicehttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_slice0.1echo101110110000100000000000000000000000011024411
vcftools_subsetvcftools_subsetSelect samples from a VCF datasetTo updatehttps://vcftools.github.io/Variant Analysisvcftools_subsetdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_subsethttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_subset0.1tabix1.11001000100000100000000000000000000000011017137
venn_listvenn_listDraw Venn Diagram (PDF) from lists, FASTA files, etcTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/venn_listGraphics, Sequence Analysis, Visualizationvenn_listpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/venn_listhttps://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list0.1.2galaxy_sequence_utils1.1.510111011000000000000001000000100000001102485067
vienna_rnaviennarna_kinfold, viennarna_kinwalker, viennarna_rna2dfold, viennarna_rnaaliduplex, viennarna_rnaalifold, viennarna_rnacofold, viennarna_rnadistance, viennarna_rnaduplex, viennarna_rnaeval, viennarna_rnafold, viennarna_rnaheat, viennarna_rnainverse, viennarna_rnalalifold, viennarna_rnalfold, viennarna_rnapaln, viennarna_rnadpdist, viennarna_rnapkplex, viennarna_rnaplex, viennarna_rnaplfold, viennarna_rnaplot, viennarna_rnasnoop, viennarna_rnasubopt, viennarna_rnaupViennaRNA - Prediction and comparison of RNA secondary structuresTo updatehttp://www.tbi.univie.ac.at/RNA/RNAviennarnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rnahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna2.2.10viennarna2.6.4002100021000000000000000000000000000000212101237864
vtvt_@BINARY@, vt_@BINARY@A tool set for short variant discovery in genetic sequence data.To updateSequence Analysis, Variant Analysisvtbgrueninghttps://github.com/atks/vthttps://github.com/bgruening/galaxytools/tree/master/tools/vt0.2vt2015.11.10000000000000000000000000000000000000000000
weightedaveragewtavgAssign weighted-average of the values of features overlapping an intervalTo updateSequence Analysis, Variant Analysisweightedaveragedevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/weightedaveragehttps://github.com/galaxyproject/tools-devteam/tree/main/tools/weightedaverage1.0.1galaxy-ops1.1.0100010000000000000000000000000000000000000
whisperwhisperTranscribe audio or video files to text using the OpenAI Whisper.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/whisperMachine Learningwhisperbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/whisperhttps://github.com/bgruening/galaxytools/tree/master/tools/whisper20231117001000100000000000000000000000000000000000
windowsplitterwinSplitterMake windowsTo updateSequence Analysis, Variant Analysiswindowsplitterdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/windowsplitterhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/windowsplitter1.0.1bx-python0.12.01000100000000000000000000000000000000000011
woundhealingwoundhealing_scratch_assayTool to automate quantification of wound healing in high-throughput microscopy scratch assaysUp-to-datehttps://git.embl.de/grp-cba/wound-healing-htm-screenImagingWound healing scratch assay image analysisbgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/image_processing/woundhealing1.6.1fiji-morpholibj1.6.1001000100000000000000000000000000000000000
wtdbgwtdbgWTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly.wtdbg2wtdbg2wtdbg2Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy.Genome assembly, De-novo assemblySequence assembly, SequencingUp-to-datehttps://github.com/ruanjue/wtdbg2Assemblywtdbgbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbg2.5wtdbg2.5Genome assembly, De-novo assemblySequence assembly, Sequencing00110011000000000000001000000000000001101161660
xy_plotXY_Plot_1Plotting tool for multiple series and graph typesTo updateGraphics, Statisticsxy_plotdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plothttps://github.com/galaxyproject/tools-devteam/tree/main/tools/xy_plot1.0.2r-base11111111000000000100001000000000000001103445892
TrimNstrimnsTrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipelineTo updatehttps://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNsAssemblytrimnsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trimNhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs0.1.0trimns_vgp1.00010001000000000000000000000000000000100842
abricateabricate, abricate_list, abricate_summaryMass screening of contigs for antiobiotic resistance genesABRicateABRicateABRicateMass screening of contigs for antimicrobial resistance or virulence genes.Antimicrobial resistance predictionGenomics, MicrobiologyUp-to-datehttps://github.com/tseemann/abricateSequence Analysisabricateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abricate/https://github.com/galaxyproject/tools-iuc/tree/main/tools/abricate1.0.1abricate1.0.1Antimicrobial resistance predictionGenomics, Microbiology33333333000000000000303000000000000003301764496717
abritamrabritamrA pipeline for running AMRfinderPlus and collating results into functional classesabritamrabritamrabriTAMRan AMR gene detection pipeline that runs AMRFinderPlus on a single (or list ) of given isolates and collates the results into a table, separating genes identified into functionally relevant groups.Antimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious diseaseTo updatehttps://zenodo.org/record/7370628Sequence Analysisabritamriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamrhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/abritamr1.0.14abritamr1.0.19Antimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious disease001000100000000000000000000000000000000000
abyssabyss-peAssembly By Short Sequences - a de novo, parallel, paired-end sequence assemblerabyssabyssABySSDe novo genome sequence assembler using short reads.Genome assembly, De-novo assembly, ScaffoldingSequence assemblyTo updatehttp://www.bcgsc.ca/platform/bioinfo/software/abyssAssemblyabyssiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abysshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss2.3.7abyss2.3.8Genome assembly, De-novo assembly, ScaffoldingSequence assembly01100110000000000000001000000100000001103914278
adapter_removaladapter_removalRemoves residual adapter sequences from single-end (SE) or paired-end (PE) FASTQ reads.adapterremovaladapterremovalAdapterRemovalAdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. AdapterRemoval can analyze both single end and paired end data, and can be used to merge overlapping paired-ended reads into (longer) consensus sequences. Additionally, AdapterRemoval can construct a consensus adapter sequence for paired-ended reads, if which this information is not available.Sequence trimming, Sequence merging, Primer removalUp-to-datehttps://github.com/MikkelSchubert/adapterremovalFasta Manipulation, Sequence Analysisadapter_removaliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/https://github.com/galaxyproject/tools-iuc/tree/main/tools/adapter_removal2.3.4adapterremoval2.3.4Sequence trimming, Sequence merging, Primer removal001000100000000000000000000000000000010037217
add_input_name_as_columnaddNameAdd input name as column on an existing tabular fileTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/add_input_name_as_columnText Manipulationadd_input_name_as_columnmvdbeekhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/add_input_name_as_columnhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/add_input_name_as_column0.2.0python11101110000000000000001000000100000001109183150
aegeanaegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parsevalAEGeAn toolkit wrappersgaevalgaevalGAEVALGene Annotation EVAluation.Sequence annotationSequence analysis, Gene structureUp-to-datehttps://github.com/BrendelGroup/AEGeAnTranscriptomics, Sequence Analysisaegeaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/aegeanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean0.16.0aegean0.16.0Sequence annotationSequence analysis, Gene structure144414440000000000000000000000000000040047168
aldex2aldex2Performs analysis Of differential abundance taking sample variation into accountaldex2aldex2ALDEx2A differential abundance analysis for the comparison of two or more conditions. It uses a Dirichlet-multinomial model to infer abundance from counts, that has been optimized for three or more experimental replicates. Infers sampling variation and calculates the expected FDR given the biological and sampling variation using the Wilcox rank test and Welches t-test, or the glm and Kruskal Wallis tests. Reports both P and fdr values calculated by the Benjamini Hochberg correction.Statistical inferenceGene expression, Statistics and probabilityTo updatehttps://github.com/ggloor/ALDEx_biocMetagenomicsaldex2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2https://github.com/galaxyproject/tools-iuc/tree/main/tools/aldex21.26.0bioconductor-aldex21.34.0Statistical inferenceGene expression, Statistics and probability001000100000000000000000000000000000010013129
allegroallegroLinkage and haplotype analysis from deCODEallegroallegroAllegroIt does simultaneous discovery of cis-regulatory motifs and their associated expression profiles. Its input are DNA sequences (typically, promoters or 3′ UTRs) and genome-wide expression profiles. Its output is the set of motifs found, and for each motif the set of genes it regulates (its transcriptional module). It is highly efficient and can analyze expression profiles of thousands of genes, measured across dozens of experimental conditions, along with all regulatory sequences in the genome.Sequence motif discoverySequence analysis, Transcription factors and regulatory sites, DNATo updatehttp://www.decode.com/software/Variant Analysisallegroiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/allegro/https://github.com/galaxyproject/tools-iuc/tree/main/tools/allegro@VER@.0allegro3Sequence motif discoverySequence analysis, Transcription factors and regulatory sites, DNA000000000000000000000010000000000000000000
amplicanamplicanAmpliCan is an analysis tool for genome editing.amplicanamplicanamplicanIt performs alignment of the amplicon reads, normalizes gathered data, calculates multiple statistics (e.g. cut rates, frameshifts) and presents results in form of aggregated reports. Data and statistics can be broken down by experiments, barcodes, user defined groups, guides and amplicons allowing for quick identification of potential problems.Alignment, Standardisation and normalisationPCR experiment, Statistics and probabilityTo updatehttps://github.com/valenlab/amplicanSequence Analysisamplicaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/amplicanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/amplican1.14.0bioconductor-amplican1.24.0Alignment, Standardisation and normalisationPCR experiment, Statistics and probability00100010000000000000000000000000000001001253
ampvis2ampvis2_alpha_diversity, ampvis2_boxplot, ampvis2_core, ampvis2_export_fasta, ampvis2_frequency, ampvis2_heatmap, ampvis2_load, ampvis2_merge_ampvis2, ampvis2_mergereplicates, ampvis2_octave, ampvis2_ordinate, ampvis2_otu_network, ampvis2_rankabundance, ampvis2_rarecurve, ampvis2_setmetadata, ampvis2_subset_samples, ampvis2_subset_taxa, ampvis2_timeseries, ampvis2_vennampvis2ampvisampvisampvisampvis2 is an R-package to conveniently visualise and analyse 16S rRNA amplicon data in different ways.Analysis, VisualisationBiodiversityTo updatehttps://github.com/MadsAlbertsen/ampvis2/Metagenomicsampvis2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ampvis2https://github.com/galaxyproject/tools-iuc/tree/main/tools/ampvis22.8.9Analysis, VisualisationBiodiversity001900019000000000000000000000000000000190042267
amrfinderplusamrfinderplus"AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search "plus", stress, heat, and biocide resistance and virulence factors for some organisms.amrfinderplusamrfinderplusAMRFinderPlusAMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search "plus", stress, heat, and biocide resistance and virulence factors for some organismsAntimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious diseaseUp-to-datehttps://github.com/ncbi/amrSequence AnalysisAMRFinderPlusiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/amrfinderplushttps://github.com/galaxyproject/tools-iuc/tree/main/tools/amrfinderplus3.12.8ncbi-amrfinderplus3.12.8Antimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious disease10111011000000000000000000000000000000000591
ancombcancombcPerforms analysis of compositions of microbiomes with bias correction.ancombcancombcANCOMBCDetermine taxa whose absolute abundances, per unit volume, of the ecosystem (e.g. gut) are significantly different with changes in the covariate of interest (e.g. group). The current version of ancombc function implements Analysis of Compositions of Microbiomes with Bias Correction (ANCOM-BC) in cross-sectional data while allowing for covariate adjustment.DNA barcodingMicrobial ecology, Metagenomics, TaxonomyTo updatehttps://github.com/FrederickHuangLin/ANCOMBCMetagenomicsancombciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ancombchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ancombc1.4.0bioconductor-ancombc2.4.0DNA barcodingMicrobial ecology, Metagenomics, Taxonomy001000100000000000000000000000000000010047
anndataanndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loomImport, Export, Inspect and Manipulate Anndata and Loom objectsTo updatehttps://anndata.readthedocs.ioTranscriptomics, Sequence Analysisanndataiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata0.10.3anndata0.6.22.post1555055500000000000000000000000000000055062535620
annotatemyidsannotatemyidsannotateMyIDs: get annotation for a set of IDs using the Bioconductor annotation packagesannotatemyidsannotatemyidsannotatemyidsThis tool can get annotation for a generic set of IDs, using the Bioconductor annotation data packages. Supported organisms are human, mouse, rat, fruit fly and zebrafish. The org.db packages that are used here are primarily based on mapping using Entrez Gene identifiers. More information on the annotation packages can be found at the Bioconductor website, for example, information on the human annotation package (org.Hs.eg.db) can be found here.AnnotationUp-to-datehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyidsGenome annotationannotatemyidsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyidshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/annotatemyids3.18.0bioconductor-org.hs.eg.db3.18.0Annotation1111111100000000000000100000010000000110117525975
argnormargnormargNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD databaseargnormargnormargNormargNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database.argNorm also enhances antibiotic resistance gene annotations by providing drug categorization of the drugs that antibiotic resistance genes confer resistance to.Gene functional annotationUp-to-datehttps://github.com/BigDataBiology/argNormGenome annotationargnormiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/argnormhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm0.6.0argnorm0.6.0Gene functional annotation000100010000000000000000000000000000000000
arribaarriba, arriba_draw_fusions, arriba_get_filtersArriba detects fusion genes in RNA-Seq data after running RNA-STARUp-to-datehttps://github.com/suhrig/arribaSequence Analysis, Transcriptomicsarribaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/arribahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba2.4.0arriba2.4.03330333000000000000000000000000000000300383528
artart_454, art_illumina, art_solidSimulator for Illumina, 454, and SOLiD sequencing dataartartARTART is a set of simulation tools to generate synthetic next-generation sequencing reads. ART simulates sequencing reads by mimicking real sequencing process with empirical error models or quality profiles summarized from large recalibrated sequencing data. ART can also simulate reads using user own read error model or quality profiles. ART supports simulation of single-end, paired-end/mate-pair reads of three major commercial next-generation sequencing platforms. Illuminas Solexa, Roches 454 and Applied Biosystems SOLiDConversionBioinformaticsTo updatehttp://www.niehs.nih.gov/research/resources/software/biostatistics/art/Sequence Analysis, Data Sourceartiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/arthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/art2014.11.03.0art2016.06.05ConversionBioinformatics003000300000300000000030000000000000000000
articartic_guppyplex, artic_minionThe artic pipeline is designed to help run the artic bioinformatics protocols;for example the nCoV-2019 novel coronavirus protocol.Features include: read filtering, primer trimming, amplicon coverage normalisation,variant calling and consensus buildingarticarticARTICA bioinformatics pipeline for working with virus sequencing data sequenced with nanoporeSequence alignmentGenomicsTo updatehttps://github.com/artic-network/fieldbioinformaticsSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/artichttps://github.com/galaxyproject/tools-iuc/tree/main/tools/articartic1.2.4Sequence alignmentGenomics00200020000000000000001000000000000002101238175
assembly-statsassembly_statsAssembly metric visualisations to facilitate rapid assessment and comparison of assembly quality.Up-to-datehttps://github.com/rjchallis/assembly-statsAssemblyassembly_statsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-statshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats17.02rjchallis-assembly-stats17.02000100010000000000000000000000000000000000
astralastralTool for estimating an unrooted species tree given a set of unrooted gene treesUp-to-datehttps://github.com/smirarab/ASTRALPhylogeneticsastraliuchttps://github.com/usegalaxy-be/galaxytools/tree/main/astralhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/astral5.7.8astral-tree5.7.8000000000000000000000000010000000000000000
augustusaugustus, augustus_trainingAUGUSTUS is a program that predicts genes in eukaryotic genomic sequences.augustusaugustusAUGUSTUSAUGUSTUS is a eukaryotic gene prediction tool. It can integrate evidence, e.g. from RNA-Seq, ESTs, proteomics, but can also predict genes ab initio. The PPX extension to AUGUSTUS can take a protein sequence multiple sequence alignment as input to find new members of the family in a genome. It can be run through a web interface (see https://bio.tools/webaugustus), or downloaded and run locally.Gene prediction, Ab-initio gene prediction, Homology-based gene prediction, Homology-based gene prediction, OperationGene transcripts, Gene and protein familiesTo updatehttp://bioinf.uni-greifswald.de/augustus/Sequence Analysisaugustusbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/augustushttps://github.com/galaxyproject/tools-iuc/tree/main/tools/augustus3.4.0augustus3.5.0Ab-initio gene prediction, Homology-based gene prediction, Homology-based gene prediction, OperationGene transcripts, Gene and protein families222222220000000000000120000000000000022068511245
b2btoolsb2btools_single_sequenceThis software suite provides structural predictions for protein sequences made by Bio2Byte group.About Bio2Byte: We investigate how the dynamics, conformational states, and available experimental data of proteins relate to their amino acid sequence.Underlying physical and chemical principles are computationally unraveled through data integration, analysis, and machine learning, so connecting themto biological events and improving our understanding of the way proteins work.b2btoolsb2btoolsb2bToolsThe bio2byte tools server (b2btools) offers the following single protein sequence based predictions:- Backbone and sidechain dynamics (DynaMine)- Helix, sheet, coil and polyproline-II propensity- Early folding propensity (EFoldMine)- Disorder (DisoMine)- Beta-sheet aggregation (Agmata)In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'biophysical limits' of a protein family as defined in the MSAProtein disorder prediction, Protein secondary structure prediction, Protein feature detectionTo updatehttps://bio2byte.beComputational chemistry, Molecular Dynamics, Proteomics, Sequence Analysis, Synthetic Biologyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/b2toolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/b2btools3.0.5+galaxy0b2btools3.0.7Protein disorder prediction, Protein secondary structure prediction001000100000000000000000000000000000010012345
baktabakta"Bakta is a tool for the rapid & standardized annotation of bacterial genomes and plasmids from both isolates and MAGs.It provides dbxref-rich and sORF-including annotations in machine-readable JSON & bioinformatics standard file formats for automatic downstream analysis."baktabaktaBaktaRapid & standardized annotation of bacterial genomes, MAGs & plasmidsGenome annotationGenomics, Data submission, annotation and curation, Sequence analysisTo updatehttps://github.com/oschwengers/baktaSequence Analysisbaktaiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/baktahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bakta1.9.3bakta1.9.4Genome annotationGenomics, Data submission, annotation and curation, Sequence analysis01110111000000000000101000000000000001101512982
bam_to_scidxbam_to_scidxContains a tool that converts a BAM file to an ScIdx file.To updatehttps://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/bamtoscidxConvert Formatsbam_to_scidxiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bam_to_scidxhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bam_to_scidx1.0.1openjdk10101010000000000000000000000000000001104128
bamtoolsbamtoolsOperate on and transform BAM datasets in various ways using bamtoolsbamtoolsbamtoolsBamToolsBamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files.Data handling, Sequence alignment analysisSequencing, Data management, Sequence analysisUp-to-datehttps://github.com/pezmaster31/bamtoolsSequence Analysis, SAMbamtoolsdevteamhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools2.5.2bamtools2.5.2Data handling, Sequence alignment analysisSequencing, Sequence analysis111111110000000000001000000001000000011020814021
bamtools_filterbamFilterFilter BAM datasets on various attributes using bamtools filterbamtoolsbamtoolsBamToolsBamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files.Data handling, Sequence alignment analysisSequencing, Data management, Sequence analysisUp-to-datehttps://github.com/pezmaster31/bamtoolsSequence Analysis, SAMbamtools_filterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filter2.5.2bamtools2.5.2Data handling, Sequence alignment analysisSequencing, Sequence analysis11111111000000000000101000000000000001101195114863
bamtools_splitbamtools_split_mapped, bamtools_split_paired, bamtools_split_ref, bamtools_split_tagUtility for filtering BAM files. It is based on the BAMtools suiteof tools by Derek Barnett.bamtoolsbamtoolsBamToolsBamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files.Data handling, Sequence alignment analysisSequencing, Data management, Sequence analysisUp-to-datehttps://github.com/pezmaster31/bamtoolsSequence Analysis, SAMiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_splithttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_split2.5.2bamtools2.5.2Data handling, Sequence alignment analysisSequencing, Sequence analysis43404340000000000000001000000000000004001974328
bamutilbamutil_clip_overlap, bamutil_diffbamUtil is a repository that contains several programs that perform operations on SAM/BAM files.To updatehttps://github.com/statgen/bamUtilSequence Analysisbamutiliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bamutilhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bamutilbamutil1.0.151110111000000000000000000000000000000100839
bandagebandage_image, bandage_infoBandage - A Bioinformatics Application for Navigating De novo Assembly Graphs EasilybandagebandageBandageGUI program that allows users to interact with the assembly graphs made by de novo assemblers such as Velvet, SPAdes, MEGAHIT and others. It visualises assembly graphs, with connections, using graph layout algorithms.Sequence assembly visualisationGenomics, Sequence assemblyUp-to-datehttps://github.com/rrwick/BandageVisualizationbandageiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bandagehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bandage2022.09bandage_ng2022.09Sequence assembly visualisationGenomics, Sequence assembly2222222200002000000022200000020000000220201644390
barcode_splitterbarcode_splitterA utility to split sequence files using multiple sets of barcodesTo updatehttps://bitbucket.org/princeton_genomics/barcode_splitter/Fastq Manipulationbarcode_splitteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/barcode_splitterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/barcode_splitter0.18.4.0barcode_splitter0.18.6000000000000000000000000000000000000000000
baredscbaredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2dbaredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data.baredscbaredscbaredSCThe baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data.Data retrieval, Expression correlation analysis, Differential gene expression profilingRNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probabilityUp-to-datehttps://github.com/lldelisle/baredSCTranscriptomics, Visualizationbaredsciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/baredschttps://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc1.1.3baredsc1.1.3Data retrieval, Expression correlation analysis, Differential gene expression profilingRNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability4440444000000000000000000000000000000400071
barrnapbarrnapContains the Barrnap tool for finding ribosomal RNAs in FASTA sequences.barrnapbarrnapBarrnapPredict the location of ribosomal RNA genes in genomes. It supports bacteria (5S,23S,16S), archaea (5S,5.8S,23S,16S), mitochondria (12S,16S) and eukaryotes (5S,5.8S,28S,18S).Gene predictionGenomics, Model organisms, Model organismsTo updatehttps://github.com/tseemann/barrnapSequence Analysisbarrnapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/barrnaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/barrnap1.2.2barrnap0.9Gene predictionGenomics, Model organisms, Model organisms01110111010000000000001000000000000001001603938
basilbasilBreakpoint detection, including large insertionsUp-to-datehttps://github.com/seqan/anise_basilVariant Analysisbasiliuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/basil1.2.0anise_basil1.2.0101010100000000000000010000000000000011035266
bax2bambax2bamBAX to BAM converterUp-to-datehttps://github.com/pacificbiosciences/bax2bam/Convert Formats, Sequence Analysisbax2bamiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pax2bamhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bax2bam0.0.11bax2bam0.0.1110101010000000000000000000000000000001108200
bayescanBayeScanDetecting natural selection from population-based genetic databayescanbayescanBayeScanBAYEsian genome SCAN for outliers, aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. It is based on the multinomial-Dirichlet model.Statistical inferenceGenetics, Evolutionary biology, Statistics and probability, DNA polymorphismTo updatehttp://cmpg.unibe.ch/software/BayeScan/index.htmlSequence Analysisbayescaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bayescan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/bayescan2.1bayescan2.0.1Statistical inferenceGenetics, Evolutionary biology, Statistics and probability, DNA polymorphism0010001000000000000000000000000000000110864
bbgbigwigbbgtobigwigMake a coverage bigwig from bam, bed or gff, optionally with a chromosome length file.UCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttps://www.encodeproject.org/software/bedgraphtobigwig/Convert Formatsbbgbigwigiuchttps://www.encodeproject.org/software/bedgraphtobigwig/https://github.com/galaxyproject/tools-iuc/tree/main/tools/bbgbigwig0.1ucsc-bedgraphtobigwig469Sequence analysis101010100000000000000000000000000000000000
bbtoolsbbtools_bbduk, bbtools_bbmap, bbtools_bbmerge, bbtools_bbnorm, bbtools_callvariants, bbtools_tadpoleBBTools is a suite of fast, multithreaded bioinformatics tools designed for analysis of DNA and RNA sequence data.BBTools can handle common sequencing file formats such as fastq, fasta, sam, scarf, fasta+qual, compressed or raw,with autodetection of quality encoding and interleaving. It is written in Java and works on any platform supportingJava, including Linux, MacOS, and Microsoft Windows and Linux; there are no dependencies other than Java (version7 or higher). Program descriptions and options are shown when running the shell scripts with no parameters.bbmapbbtools, bbmapBBMapBBMap is a fast splice-aware aligner for RNA and DNA. It is faster than almost all short-read aligners, yet retains unrivaled sensitivity and specificity, particularly for reads with many errors and indels.RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignmentSequencing, RNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-SeqUp-to-datehttps://jgi.doe.gov/data-and-tools/bbtools/Sequence Analysisbbtoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bbtools39.08bbmap39.08RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignmentRNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq61506150000000000000003001000000000004004206381
bcftoolsbcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@_from_vcf, bcftools_@EXECUTABLE@_to_vcf, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@_list_samples, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@BCFtools toolkit wrappersbcftoolsbcftoolsBCFtoolsBCFtools is a set of utilities that manipulate variant calls in the Variant Call Format (VCF) and its binary counterpart BCF. All commands work transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed.Data handling, Variant callingGenetic variation, DNA polymorphism, GWAS study, Genotyping experimentTo updatehttps://samtools.github.io/bcftools/Variant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bcftoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bcftools1.15.1bcftools1.20Data handling, Variant callingDNA polymorphism, GWAS study, Genotyping experiment000000000000000000000000000000000000000000
bctoolsbctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_eventsbctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0Up-to-datehttps://github.com/dmaticzka/bctoolsSequence Analysis, Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools0.2.2bctools0.2.20070007000000000000000000000000000000770872895
beacon2beacon2_csv2xlsx, beacon2_pxf2bff, beacon2_vcf2bffbeacon2-ri-tools are part of the ELIXIR-CRG Beacon v2 Reference Implementation (B2RI).ga4gh_beaconga4gh_beaconGA4GH BeaconA global search engine for genetic mutations.Service discovery, Database search, Genetic variation analysisGenetic variation, Population genetics, Data security, Rare diseasesUp-to-datehttps://github.com/EGA-archive/beacon2-ri-tools/tree/mainVariant Analysisbeacon2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/beacon2https://github.com/galaxyproject/tools-iuc/tree/main/tools/beacon22.0.0beacon2-ri-tools2.0.0Service discovery, Database search, Genetic variation analysisGenetic variation, Population genetics, Data security, Rare diseases0030003000000000000000000000000000000300028
beacon2-importbeacon2_analyses, beacon2_biosamples, beacon2_bracket, beacon2_cnv, beacon2_cohorts, beacon2_datasets, beacon2_gene, beacon2_import, beacon2_individuals, beacon2_range, beacon2_runs, beacon2_sequenceBeacon Import uploads local genetic data to the server, while Beacon Query searches for genetic information such as genes, sequences, and variants.ga4gh_beaconga4gh_beaconGA4GH BeaconA global search engine for genetic mutations.Service discovery, Database search, Genetic variation analysisGenetic variation, Population genetics, Data security, Rare diseasesUp-to-datehttps://pypi.org/project/beacon2-import/Variant AnalysisBeacon2_Importiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/beacon2-importhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/beacon2-import2.2.3beacon2-import2.2.3Service discovery, Database search, Genetic variation analysisGenetic variation, Population genetics, Data security, Rare diseases00120001200000000000000000000000000000000000
beaglebeagleBeagle is a program for phasing and imputing missing genotypes.To updatehttps://faculty.washington.edu/browning/beagle/beagle.htmlVariant Analysisbeagleiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/beaglehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/beagle5.2_21Apr21.304beagle5.4_22Jul22.46e00100010000000000000001000000000000001001054
bedopsbedops-sort-bedBEDOPS: high-performance genomic feature operationsUp-to-datehttps://bedops.readthedocs.io/en/latest/Genomic Interval Operationsbedops_sortbediuchttps://bedops.readthedocs.io/https://github.com/galaxyproject/tools-iuc/tree/main/tools/bedops2.4.41bedops2.4.4110101010000000000000000000000000000001001028
bedtoolsbedtools_annotatebed, bedtools_bamtobed, bedtools_bed12tobed6, bedtools_bedtobam, bedtools_bedtoigv, bedtools_bedpetobam, bedtools_closestbed, bedtools_clusterbed, bedtools_complementbed, bedtools_coveragebed, bedtools_expandbed, bedtools_fisher, bedtools_flankbed, bedtools_genomecoveragebed, bedtools_getfastabed, bedtools_groupbybed, bedtools_intersectbed, bedtools_jaccard, bedtools_links, bedtools_makewindowsbed, bedtools_map, bedtools_maskfastabed, bedtools_mergebed, bedtools_multicovtbed, bedtools_multiintersectbed, bedtools_nucbed, bedtools_overlapbed, bedtools_randombed, bedtools_reldistbed, bedtools_shufflebed, bedtools_slopbed, bedtools_sortbed, bedtools_spacingbed, bedtools_subtractbed, bedtools_tagbed, bedtools_unionbedgraph, bedtools_windowbedbedtools is a powerful toolset for genome arithmeticbedtoolsbedtoolsBEDToolsBEDTools is an extensive suite of utilities for comparing genomic features in BED format.MappingGenomicsUp-to-datehttps://github.com/arq5x/bedtools2Genomic Interval Operations, Text Manipulationbedtoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bedtools2.31.1bedtools2.31.1MappingGenomics373737373737373703700370000000376370037000370000000373705844901750
bellerophonbellerophonFilter mapped reads where the mapping spans a junction, retaining the 5-prime read.Up-to-datehttps://github.com/davebx/bellerophonSequence Analysisbellerophoniuchttps://github.com/davebx/bellerophonhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bellerophon1.0bellerophon1.011101110000000000000000000000000000001001231194
berokkaberokkaBerokka is used to trim, circularise, orient & filter long read bacterial genome assemblies.Up-to-datehttps://github.com/tseemann/berokkaFasta Manipulationberokkaiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/berokkahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/berokka0.2.3berokka0.2.3010001000000000000000000000000000000000000
bigscapebigscapeConstruct sequence similarity networks of BGCs and groups them into GCFBiG-SCAPEBiG-SCAPEBiG-SCAPEA computational framework to explore large-scale biosynthetic diversity.BiG-SCAPE (Biosynthetic Gene Similarity Clustering and Prospecting Engine) is a software package, written in Python, that constructs sequence similarity networks of Biosynthetic Gene Clusters (BGCs) and groups them into Gene Cluster Families (GCFs). BiG-SCAPE does this by rapidly calculating a distance matrix between gene clusters based on a comparison of their protein domain content, order, copy number and sequence identity.It defines a distance metric between Gene Clusters using a combination of three indices (Jaccard Index of domain types, Domain Sequence Similarity the Adjacency...BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynthetic gene clusters (BGCs) across large numbers of genomes, by constructing BGC sequence similarity networks, grouping BGCs into gene cluster families, and exploring gene cluster diversity linked to enzyme phylogenies.Clustering, Global alignment, Fold recognitionPhylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein familiesUp-to-datehttps://github.com/medema-group/BiG-SCAPEMetagenomicsbigscapeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bigscape/https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigscape1.1.9bigscape1.1.9Clustering, Global alignment, Fold recognitionPhylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein families001000100000000000000000000000000000000000
bigwig_outlier_bedbigwig_outlier_bedpybigtools and numpy code to find continuous runs above a high or below a low quantile cutpoint in bigwig filesbigtoolsbigtoolsbigtoolsBigtools is a library and associated tools for reading and writing bigwig and bigbed files. Rust.To updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bigwig_outlier_bedSequence Analysisbigwig_outlier_bediuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bigwig_outlier_bedhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bigwig_outlier_bed0.2.0python001000100000000000000000000000000000000000
binning_refinerbin_refinerReconciles the outputs of different binning programs with the aim to improve the quality of genome bins,especially with respect to contamination levels.binning_refinerbinning_refinerBinning_refinerImproving genome bins through the combination of different binning programsRead binning, Sequence clusteringMetagenomics, Sequence assembly, Microbial ecologyUp-to-datehttps://github.com/songweizhi/Binning_refinerMetagenomicsbinning_refineriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/binning_refiner/https://github.com/galaxyproject/tools-iuc/tree/main/tools/binning_refiner1.4.3binning_refiner1.4.3Read binning, Sequence clusteringMetagenomics, Sequence assembly, Microbial ecology00100010000000000000001000000000000001002181
bioextbioext_bam2msa, bioext_bealignA suite of Galaxy tools designed around the BioExt extension to BioPython. Align sequences, merge duplicate sequences into one, and more!To updatehttps://pypi.python.org/pypi/biopython-extensions/Next Gen Mappersiuchttps://github.com/davebx/bioext-gx/https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioext0.21.7python-bioext0.21.9202020200000000000000010020000000000020036315228
bioinformatics_cafefasta_regex_finderMiscellanea of scripts for bioinformaticsTo updatehttps://github.com/dariober/bioinformatics-cafe/Sequence Analysisbioinformatics_cafembernthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics-cafehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics_cafe0.1.0python101010100000000000000000000000000000010071978
biom_formatbiom_add_metadata, biom_convert, biom_from_uc, biom_normalize_table, biom_subset_table, biom_summarize_tableThe biom-format package provides a command line interface and Python API for working with BIOM files.biomformatbiomformatbiomformatThis package includes basic tools for reading biom-format files, accessing and subsetting data tables from a biom object, as well as limited support for writing a biom-object back to a biom-format file. The design of this API is intended to match the python API and other tools included with the biom-format project, but with a decidedly "R flavor" that should be familiar to R users. This includes S4 classes and methods, as well as extensions of common core functions/methods.FormattingLaboratory information management, Sequence analysisTo updatehttps://github.com/biocore/biom-formatMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_formathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/biom_format2.1.15biom-format2.1.7FormattingLaboratory information management, Sequence analysis2260226000000000000001000000000000000110983906
bioperlbp_genbank2gff3Converts GenBank format files to GFF3bioperlbioperlBioPerlA collection of Perl modules that facilitate the development of Perl scripts for bioinformatics applications. It provides software modules for many of the typical tasks of bioinformatics programming.Data handling, Service invocationGenomics, Software engineering, Data managementTo updatehttps://bioperl.org/Sequence Analysisbp_genbank2gff3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bioperlhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bioperl1.1perl-bioperl1.7.8Data handling, Service invocationGenomics, Software engineering11111111000010000000001001000000000001102406736
biotradisbacteria_tradis, tradis_essentiality, tradis_gene_insert_sitesBio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data.biotradisbiotradisbiotradisThe Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format.Sequence analysisMobile genetic elements, WorkflowsUp-to-datehttps://www.sanger.ac.uk/science/tools/bio-tradisGenome annotationbiotradisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradishttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis1.4.5biotradis1.4.5Sequence analysisMobile genetic elements, Workflows300030000000000000000000000000000000000000
biscotbiscotBionano scaffolding correction toolUp-to-datehttps://github.com/institut-de-genomique/biscotAssemblybiscotiuchttps://github.com/bgruening/iuc/tree/master/tools/biscothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot2.3.3biscot2.3.3001000100000000000000000000000000000010013
blastmagicblastMaps large next-generation RNA or DNA sequencing runs against a whole genome or transcriptomeUp-to-datehttps://ncbi.github.io/magicblast/Next Gen Mappersmagicblastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/blasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/blast1.7.0magicblast1.7.0001000100000000000000000000000000000010078511
blastxml_to_gapped_gff3blastxml_to_gapped_gff3BlastXML to gapped GFF3To updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3Convert Formats, Sequence Analysisblastxml_to_gapped_gff3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3https://github.com/galaxyproject/tools-iuc/tree/main/tools/blastxml_to_gapped_gff31.1bcbiogff0.6.6111011100000100000000000000000000000011024185
bowtie2bowtie2Bowtie2: Fast and sensitive read alignmentbowtie2bowtie2Bowtie 2Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.Read mappingMapping, Genomics, MappingTo updatehttp://bowtie-bio.sourceforge.net/bowtie2Next Gen Mappersbowtie2devteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bowtie2https://github.com/galaxyproject/tools-iuc/tree/main/tools/bowtie22.5.3bowtie22.5.4Read mappingMapping, Genomics, Mapping11111111010010000000111001000100100001105136380252
brackenest_abundanceBayesian Reestimation of Abundance with KrakENbrackenbrackenBrackenStatistical method that computes the abundance of species in DNA sequences from a metagenomics sample.Statistical calculationMetagenomics, Microbial ecologyUp-to-datehttps://ccb.jhu.edu/software/bracken/Sequence Analysis, Metagenomicsbrackeniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/brackenhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bracken3.0bracken3.0Statistical calculationMetagenomics, Microbial ecology111111110000000000001010000000000000011032618351
breseqbreseqPredicts mutations in microbial genomesbreseqbreseqbreseqRuns Breseq software on a set of fastq files.Polymorphism detectionSequencing, Sequence analysis, DNA mutationTo updatehttps://github.com/barricklab/breseqVariant Analysisbreseqiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/breseq0.35.5breseq0.39.0Polymorphism detectionSequencing, Sequence analysis, DNA mutation0110011000000000000001100000010000000110501871
brew3r_rbrew3r_rExtend 3' end of a GTF using another GTF as a templatebrew3r.rbrew3r.rBREW3R.rThis R package provide functions that are used in the BREW3R workflow. This mainly contains a function that extend a gtf as GRanges using information from another gtf (also as GRanges). The process allows to extend gene annotation without increasing the overlap between gene ids.Genome annotationTranscriptomics, GenomicsTo updatehttps://bioconductor.org/packages/release/bioc/html/BREW3R.r.htmlTranscriptomics, RNAbrew3r_riuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_rhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r1.0.2Genome annotationTranscriptomics101010100000000000000000000000000000000000
buscobuscoBUSCO assess genome and annotation completenessbuscobuscoBUSCOProvides measures for quantitative assessment of genome assembly, gene set, and transcriptome completeness based on evolutionarily informed expectations of gene content from near-universal single-copy orthologs.Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assemblySequence assembly, Genomics, Transcriptomics, Sequence analysisUp-to-datehttps://gitlab.com/ezlab/busco/-/releasesSequence Analysisbuscoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/busco/https://github.com/galaxyproject/tools-iuc/tree/main/tools/busco5.7.1busco5.7.1Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assemblySequence assembly, Transcriptomics, Sequence analysis1111111100000000000000100100000000000110180486180
bwabwa_mem, bwaWrapper for bwa mem, aln, sampe, and samsebwabwaBWAFast, accurate, memory-efficient aligner for short and long sequencing readsGenome indexing, Sequence alignment, Read mapping, Sequence alignment, Generation, Sequence alignment, Generation, Sequence alignment, Sequence alignmentMappingUp-to-datehttp://bio-bwa.sourceforge.net/Next Gen Mappersbwadevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bwahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bwa0.7.18bwa0.7.18Genome indexing, Sequence alignment, Read mapping, Sequence alignment, Generation, Sequence alignment, Generation, Sequence alignment, Sequence alignmentMapping22222222010020000000212002000200000002225295981251
bwa_mem2bwa_mem2Bwa-mem2 is the next version of the bwa-mem algorithm in bwa.bwa-mem2bwa-mem2Bwa-mem2Bwa-mem2 is the next version of the bwa-mem algorithm in bwa. It produces alignment identical to bwa and is ~1.3-3.1x faster depending on the use-case, dataset and the running machine.Sequence alignmentMappingUp-to-datehttps://github.com/bwa-mem2/bwa-mem2Next Gen Mappersbwa_mem2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa_mem2https://github.com/galaxyproject/tools-iuc/tree/main/tools/bwa_mem22.2.1bwa-mem22.2.1Sequence alignmentMapping1111111100000000000000100100010000000100122044386
bwamethbwamethFast and accurate alignment of BS-seq readsUp-to-datehttps://github.com/brentp/bwa-methSequence Analysis, Next Gen Mappersbwamethiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bwamethhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bwameth0.2.7bwameth0.2.7111011100000000000000000010000000000011020110619
cactuscactus_cactus, cactus_exportCactus is a reference-free whole-genome multiple alignment programcactuscactusCactusCactus is a reference-free whole-genome multiple alignment program.Multiple sequence alignment, Genome alignmentGenomics, Sequence analysis, Phylogeny, Sequence assembly, Mapping, PhylogeneticsTo updatehttps://github.com/ComparativeGenomicsToolkit/cactusSequence Analysiscactusgalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cactushttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cactus2.7.1Multiple sequence alignment, Genome alignmentGenomics, Sequence assembly, Mapping, Phylogenetics022102210000000000000000000000000000022026234
calculate_contrast_thresholdcalculate_contrast_thresholdCalculates a contrast threshold from the CDT file generated by ``tag_pileup_frequency``. The calculated values are then used to set a uniform contrast for all the heatmaps generated downstream.To updatehttps://github.com/CEGRcode/ChIP-QC-tools/tree/master/calculate_contrast_thresholdVisualization, Genomic Interval Operations, SAMcalculate_contrast_thresholdiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/calculate_contrast_thresholdhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/calculate_contrast_threshold1.0.0numpy000000000000000000000000000000000000000000
calculate_numeric_paramcalculate_numeric_paramCalculate a numeric parameter value using integer and float values.To updateText Manipulationcalculate_numeric_paramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/calculate_numeric_paramhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/calculate_numeric_param0.1.0001000100000000000000000000000000000000081393
cami_amberbiobox_add_taxid, cami_amber, cami_amber_add, cami_amber_convertEvaluation package for the comparative assessment of genome reconstructions and taxonomic assignmentsUp-to-datehttps://github.com/CAMI-challenge/AMBERMetagenomicscami_amberiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/amber/https://github.com/galaxyproject/tools-iuc/tree/main/tools/cami_amber2.0.6cami-amber2.0.6003000300000000000000000000000000000000000
catcat_add_names, cat_bins, cat_contigs, cat_prepare, cat_summariseContig Annotation Tool (CAT)cat_binscat_binsCAT and BATContig Annotation Tool (CAT) and Bin Annotation Tool (BAT) are pipelines for the taxonomic classification of long DNA sequences and metagenome assembled genomes (MAGs/bins) of both known and (highly) unknown microorganisms, as generated by contemporary metagenomics studies. The core algorithm of both programs involves gene calling, mapping of predicted ORFs against the nr protein database, and voting-based classification of the entire contig / MAG based on classification of the individual ORFs.Taxonomic classification, Sequence assembly, Coding region predictionMetagenomics, Metagenomic sequencing, Taxonomy, Sequence assemblyTo updatehttps://github.com/dutilh/CATMetagenomicscontig_annotation_tooliuchttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cat5.2.3cat5.3Taxonomic classification, Sequence assembly, Coding region predictionMetagenomics, Metagenomic sequencing, Taxonomy, Sequence assembly52505250000000000000005000000000000005502682878
cdhitcd_hitCluster or compare biological sequence datasetscd-hitcd-hitcd-hitCluster a nucleotide dataset into representative sequences.Sequence clusteringSequencingUp-to-datehttp://weizhongli-lab.org/cd-hit/Sequence Analysis, Fasta Manipulationcd_hitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit4.8.1cd-hit4.8.1Sequence clusteringSequencing00110011000000000000100000000000000001102804474
cemitoolcemitoolGene co-expression network analysis toolcemitoolcemitoolCEMiToolIt unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network.Enrichment analysis, Pathway or network analysisGene expression, Transcriptomics, Microarray experimentUp-to-datehttps://www.bioconductor.org/packages/release/bioc/html/CEMiTool.htmlTranscriptomics, RNA, Statisticscemitooliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitoolhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool1.26.0bioconductor-cemitool1.26.0Enrichment analysis, Pathway or network analysisTranscriptomics, Microarray experiment1010101000000000000000000000000000000100998
chartschartsEnables advanced visualization options in Galaxy ChartsTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/Visualizationchartsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/https://github.com/galaxyproject/tools-iuc/tree/main/tools/charts1.0.1r-getopt00000000000000000000000000000000000000002873589
checkmcheckm_analyze, checkm_lineage_set, checkm_lineage_wf, checkm_plot, checkm_qa, checkm_taxon_set, checkm_taxonomy_wf, checkm_tetra, checkm_tree, checkm_tree_qaAssess the quality of microbial genomes recovered from isolates, single cells, and metagenomescheckmcheckmCheckMCheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes.Sequence assembly validation, Validation, Sequence composition calculation, Sequencing quality control, Statistical calculationGenomics, Phylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality managementTo updatehttps://github.com/Ecogenomics/CheckMMetagenomicscheckmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/checkmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/checkm1.2.0checkm-genome1.2.3Sequence assembly validation, Sequence composition calculation, Statistical calculationPhylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management00101000101000000000000000100000000000000010003905165
cherricherri_eval, cherri_trainComputational Help Evaluating RNA-RNA interactionscherricherricherriCheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions.Molecular interactions, pathways and networks, Structure analysis, Machine learningTo updatehttps://github.com/BackofenLab/CherriTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cherrihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri0.7cherri0.8Molecular interactions, pathways and networks, Structure analysis, Machine learning00200020000000000000000000000000000002001207
chewbbacachewbbaca_allelecall, chewbbaca_allelecallevaluator, chewbbaca_createschema, chewbbaca_downloadschema, chewbbaca_extractcgmlst, chewbbaca_joinprofiles, chewbbaca_nsstats, chewbbaca_prepexternalschemaBSR-Based Allele Calling AlgorithmTo updatehttps://github.com/B-UMMI/chewBBACA/tree/masterVariant Analysischewbbacaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chewbbacahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/chewbbacachewbbaca3.3.10008000800000000000000000000000000000000000
chirachira_collapse, chira_extract, chira_map, chira_merge, chira_quantifyChimeric Read Annotator for RNA-RNA interactome datachirachiraChiRAChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc.RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNAUp-to-datehttps://github.com/pavanvidem/chiraRNA, Transcriptomics, Sequence Analysischiraiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chirahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/chira1.4.3chira1.4.3Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA5550555000000000000000000000000000000550976418
chopin2chopin2Domain-Agnostic Supervised Learning with Hyperdimensional ComputingTo updatehttps://github.com/cumbof/chopin2Machine Learningchopin2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chopin2https://github.com/galaxyproject/tools-iuc/tree/main/tools/chopin21.0.9.post1chopin2100010000000000000000000000000000000000000
chromeisterchromeisterultra-fast pairwise genome comparisonsUp-to-datehttps://github.com/estebanpw/chromeisterSequence Analysischromeisteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chromeisterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/chromeister1.5.achromeister1.5.a01110111000000000000001000000000000001001822130
circexplorer2circexplorer2Comprehensive and integrative circular RNA analysis toolset.circexplorer2circexplorer2CIRCexplorer2Genome-wide annotation of circRNAs and their alternative back-splicing/splicing.RNA splicing, Gene transcripts, Literature and languageUp-to-datehttps://github.com/YangLab/CIRCexplorer2RNA, Assemblycircexplorer2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer22.3.8circexplorer22.3.8RNA splicing, Gene transcripts, Literature and language001000100000000000000000000000000000010016269
circoscircos_aln_to_links, circos_binlinks, circos_bundlelinks, circos, circos_gc_skew, circos_resample, circos_wiggle_to_scatter, circos_wiggle_to_stacked, circos_tableviewer, circos_interval_to_text, circos_interval_to_tileBuild Circos Plots in Galaxygalactic_circosgalactic_circosGalactic CircosGalactic Circos is a Galaxy wrapper providing a GUI for the Circos tool. Circos allows visualizing data in a circular format.Sequence visualisationTo updatehttp://circos.ca/Graphicscircosiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/circoshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/circos0.69.8circos0.69.9Sequence visualisation11111111111111110000000000000111100000011000000011110101821305
cite_seq_countcite_seq_countCount CMO/HTOCITE-seq-CountCITE-seq-CountCITE-seq-CountTool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment.RNA-Seq quantificationTranscriptomics, Immunoproteins and antigensTo updatehttps://github.com/Hoohm/CITE-seq-CountTranscriptomicscite_seq_countiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_counthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count1.4.4cite-seq-count1.4.5RNA-Seq quantificationTranscriptomics, Immunoproteins and antigens1110111000000000000000000000000000000100118
clair3clair3Symphonizing pileup and full-alignment for high-performance long-read variant callingclair3clair3Clair3Clair3 is a germline small variant caller for long-reads. Clair3 makes the best of two major method categories: pileup calling handles most variant candidates with speed, and full-alignment tackles complicated candidates to maximize precision and recall. Clair3 runs fast and has superior performance, especially at lower coverage. Clair3 is simple and modular for easy deployment and integration.Variant callingMolecular geneticsTo updatehttps://github.com/HKU-BAL/Clair3Sequence Analysis, Variant Analysisclair3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/clair3https://github.com/galaxyproject/tools-iuc/tree/main/tools/clair31.0.8clair31.0.10Variant callingMolecular genetics0010001000000000000000100000000000000100681856
clustalwclustalwClustalW multiple sequence alignment program for DNA or proteinsclustal2clustal2Clustal 2 (Clustal W, Clustal X)Multiple sequence alignment program with a command-line interface (Clustal W) and a graphical user interface (Clustal X). The display colours allow conserved features to be highlighted for easy viewing in the alignment. It is available for several platforms, including Windows, Macintosh PowerMac, Linux and Solaris.Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, Clustal2.Multiple sequence alignmentPhylogeny, Sequence analysisUp-to-datehttp://www.clustal.org/clustal2/Phylogenetics, Sequence Analysisclustalwdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/clustalwhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/clustalw2.1clustalw2.1Multiple sequence alignmentPhylogeny, Sequence analysis111111110100100000001110000000000000011065146793
clustering_from_distmatclustering_from_distmatDistance matrix-based hierarchical clustering using SciPyTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/clustering_from_distmat/Statisticsclustering_from_distmatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/clustering_from_distmat/https://github.com/galaxyproject/tools-iuc/tree/main/tools/clustering_from_distmat1.1python001000100000000000000000000000000000000000
cnv-phenopacketcnv_phenopacketcnv-phenopacket Converts TSV metadata file to JSON.To updatehttps://pypi.org/project/cnv-phenopacket/Variant Analysiscnv_phenopacketiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopackethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cnv-phenopacket1.0.2cnv-phenopacket001000100000000000000000000000000000000000
cnv-vcf2jsoncnv_vcf2jsoncnv-vcf2json Converts structural variants VCF file to JSON.To updatehttps://pypi.org/project/cnv-phenopacket/Variant Analysiscnv-vcf2jsoniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-vcf2jsonhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cnv-vcf2json1.1.0cnv-vcf2json001000100000000000000000000000000000000000
cnvkitcnvkit_access, cnvkit_antitarget, cnvkit_autobin, cnvkit_batch, cnvkit_breaks, cnvkit_call, cnvkit_coverage, cnvkit_diagram, cnvkit_fix, cnvkit_genemetrics, cnvkit_heatmap, cnvkit_reference, cnvkit_scatter, cnvkit_segment, cnvkit_segmetrics, cnvkit_sex, cnvkit_targetdetecting copy number variants and alterations genome-wide from high-throughput sequencingcnvkitcnvkitCNVkitCNVkit is a software toolkit to infer and visualize copy number from targeted DNA sequencing data.Variant callingDNA structural variationUp-to-datehttps://github.com/etal/cnvkitVariant Analysiscnvkitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cnvkithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cnvkit0.9.11cnvkit0.9.11Variant calling001700017000000000000000000000000000000170045370
codemlcodemlDetects positive selectionpamlpamlPAMLPackage of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood.Probabilistic sequence generation, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Phylogenetic tree analysisPhylogenetics, Sequence analysisTo updatehttp://abacus.gene.ucl.ac.uk/software/paml.htmlPhylogeneticscodemliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/codemlhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/codeml4.9paml4.10.7Probabilistic sequence generationPhylogenetics00100010000000000000000000000000000001102960901
cojaccooc_mutbamscan, cooc_pubmut, cooc_tabmutco-occurrence of mutations on ampliconscojaccojacCOJACCoOccurrence adJusted Analysis and Calling - The cojac package comprises a set of command-line tools to analyse co-occurrence of mutations on amplicons. It is useful, for example, for early detection of viral variants of concern (e.g. Alpha, Delta, Omicron) in environmental samples, and has been designed to scan for multiple SARS-CoV-2 variants in wastewater samples, as analyzed jointly by ETH Zurich, EPFL and Eawag.Genetic variationUp-to-datehttps://github.com/cbg-ethz/cojacMetagenomics, Sequence Analysiscojaciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cojachttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cojac0.9.2cojac0.9.2Genetic variation2030203000000000000000000000000000000300202757
colabfoldcolabfold_alphafold, colabfold_msaProtein prediction based on AlphaFold2ColabfoldColabfoldColabFoldColabFold databases are MMseqs2 expandable profile databases to generate diverse multiple sequence alignments to predict protein structures.Database search, Protein structure prediction, Fold recognitionProtein folds and structural domains, Protein folding, stability and design, Structure prediction, Sequence sites, features and motifs, MetagenomicsTo updatehttps://github.com/sokrypton/ColabFoldProteomics, Graphicscolabfoldiuchttps://github.com/sokrypton/ColabFoldhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/colabfold1.5.5Database search, Protein structure prediction, Fold recognitionProtein folds and structural domains, Protein folding, stability and design, Structure prediction, Sequence sites, features and motifs, Metagenomics200020000000000000000000000000000000000000
colibreadcommet, discosnp_rad, discosnp_pp, kissplice, lordec, mapsembler2, takeabreakColib'read tools are all dedicated to the analysis of NGS datasets without the need of any reference genomeTo updatehttps://colibread.inria.fr/Sequence Analysis, Variant Analysiscolibreadiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/colibreadhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/colibread24.7.14+galaxy0commet24.7.14001100110000000000000000000000000000011018251
collection_column_joincollection_column_joinColumn Join on CollectionsTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_column_joinText Manipulationcollection_column_joiniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_column_joinhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/collection_column_join0.0.3coreutils8.251111111100000000000000100000010000000110148320857
collection_element_identifierscollection_element_identifiersExtract element identifiers of a collectionTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_element_identifiersText Manipulationcollection_element_identifiersiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_element_identifiershttps://github.com/galaxyproject/tools-iuc/tree/main/tools/collection_element_identifiers0.0.211111111000000000000101001000100000001109125059
column_makerAdd_a_column1Compute an expression on every rowTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_makerText Manipulationcolumn_makerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_makerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/column_maker2.1python111111110100000000001011010001000000011023793883271
column_order_header_sortcolumn_order_header_sortSort Column Order by headingTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_order_header_sortText Manipulationcolumn_order_header_sortiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_order_header_sorthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/column_order_header_sort0.0.1python1011101100000000000000000000000000000110803258
column_remove_by_headercolumn_remove_by_headerRemove columns by headerTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_remove_by_headerText Manipulationcolumn_remove_by_headeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/column_remove_by_headerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/column_remove_by_header1.0python11111111000000000000000000000000000001101998424
compleasmcompleasmCompleasm: a faster and more accurate reimplementation of BUSCOcompleasmcompleasmcompleasm"Compleasm: a faster and more accurate reimplementation of BUSCO"Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assemblySequence assembly, Genomics, Transcriptomics, Sequence analysisUp-to-datehttps://github.com/huangnengCSU/compleasmSequence Analysiscompleasmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/compleasm/https://github.com/galaxyproject/tools-iuc/tree/main/tools/compleasm0.2.6compleasm0.2.6Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assemblySequence assembly, Transcriptomics, Sequence analysis101110110000000000000010000000000000000000
compose_text_paramcompose_text_paramCompose a text parameter value using text, integer and float valuesTo updateText Manipulationcompose_text_paramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/compose_text_paramhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/compose_text_param0.1.1111111110000000000000000010001000000000037535084
compress_filecompress_fileCompress files.To updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/compress_fileText Manipulationcompress_fileiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/compress_filehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/compress_file0.1.0gzip11101110000000000000000000000000000001001643674
concoctconcoct, concoct_coverage_table, concoct_cut_up_fasta, concoct_extract_fasta_bins, concoct_merge_cut_up_clusteringCONCOCT (Clustering cONtigs with COverage and ComposiTion) does unsupervised binning of metagenomic contigs byusing nucleotide composition - kmer frequencies - and coverage data for multiple samples. CONCOCT can accurately(up to species level) bin metagenomic contigs.concoctconcoctCONCOCTA program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads.Sequence clustering, Read binningMetagenomicsUp-to-datehttps://github.com/BinPro/CONCOCTMetagenomicsconcoctiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/concocthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/concoct1.1.0concoct1.1.0Sequence clustering, Read binningMetagenomics005500550000000000000000000000000000050092786
cosgcosgMarker gene identification for single-cell sequencing data using COSG.Up-to-datehttps://github.com/genecell/COSGTranscriptomics, Sequence Analysiscosgiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg1.0.1cosg1.0.1000000000000000000000000000000000000000000
coverage_reportCoverageReport2Generate Detailed Coverage Report from BAM fileTo updatehttps://github.com/galaxyproject/tools-iucSequence Analysiscoverage_reportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/coverage_reporthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/coverage_report0.0.4perl-number-format1.76000000000000000000000010000000000000000000
covermcoverm_contig, coverm_genomeCoverM genome and contig wrapperscovermcovermCoverMRead coverage calculator for metagenomicsLocal alignmentBioinformaticsUp-to-datehttps://github.com/wwood/CoverMSequence Analysiscovermiuchttps://github.com/galaxyproject/tools-iuc/tools/covermhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/coverm0.7.0coverm0.7.0Local alignmentBioinformatics002200220000000000000020000000000000020072529
crispr_studiocrispr_studioCRISPR Studio is a program developed to facilitate and accelerate CRISPR array visualization.crisprstudiocrisprstudioCRISPRStudioCRISPRStudio is a program developed to facilitate and accelerate CRISPR array visualization. It works by first comparing spacers sequence homology in a dataset, then assigning a two-color-code to each cluster of spacers and finally writing an svg file, which can be opened in graphics vector editor.VisualisationSequence analysis, Genomics, Data visualisationTo updatehttps://github.com/moineaulab/CRISPRStudioSequence Analysiscrispr_studioiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/crispr_studio/https://github.com/galaxyproject/tools-iuc/tree/main/tools/crispr_studio1+galaxy0crispr_studio1VisualisationSequence analysis, Genomics, Data visualisation001000100000000000000000000000000000011030636
crosscontamination_barcode_filtercrosscontamination_barcode_filterBarcode contamination discovery toolTo updateTranscriptomics, Visualizationcrosscontamination_barcode_filteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter0.3r-ggplot22.2.1101010100000000000000000000000000000011017347
crossmapcrossmap_bam, crossmap_bed, crossmap_bw, crossmap_gff, crossmap_region, crossmap_vcf, crossmap_wigCrossMap converts genome coordinates or annotation files between genome assembliesTo updatehttp://crossmap.sourceforge.net/Convert Formats, Genomic Interval Operationscrossmapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/crossmap0.6.1crossmap0.7.050605060040000000000000000000500000006501161968
cuffcomparecuffcompareGalaxy wrappers for the Cuffcompare tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffcomparedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcomparehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare2.2.1cufflinks2.2.11111111100001000000001000000010010000110651130
cuffdiffcuffdiffGalaxy wrappers for the Cuffdiff tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffdiffdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiffhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff2.2.1cufflinks2.2.110101010010010000000010000000000100001102285831
cufflinkscufflinksGalaxy wrappers for the Cufflinks tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscufflinksdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinkshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks2.2.1cufflinks2.2.1111111110000100000000110010001001000011031932218
cuffmergecuffmergeGalaxy wrappers for the Cuffmerge tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffmergedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmergehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge2.2.1cufflinks2.2.111111111000010000000000000000100100001101223292
cuffnormcuffnormThe Cuffnorm toolUp-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffnormdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnormhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm2.2.1cufflinks2.2.1111011100000000000000000000001000000011027660
cuffquantcuffquantThe Cuffquant toolUp-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffquantdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquanthttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant2.2.1cufflinks2.2.1111011100000000000000000000001000000011018688
cutadaptcutadaptFlexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq).cutadaptcutadaptCutadaptFind and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads.Sequence trimming, Primer removal, Read pre-processingGenomics, Probes and primers, SequencingUp-to-datehttps://cutadapt.readthedocs.org/en/stable/Fasta Manipulation, Fastq Manipulation, Sequence Analysiscutadaptlparsonshttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt4.9cutadapt4.9Sequence trimming, Primer removal, Read pre-processingGenomics, Probes and primers, Sequencing11111111010010000000111001000100000001105090232004
cutesvcutesvLong-read sequencing enables the comprehensive discovery of structural variations (SVs). However, it is still non-trivial to achieve high sensitivity and performance simultaneously due to the complex SV characteristics implied by noisy long reads. Therefore, we propose cuteSV, a sensitive, fast and scalable long-read-based SV detection approach. cuteSV uses tailored methods to collect the signatures of various types of SVs and employs a clustering-and-refinement method to analyze the signatures to implement sensitive SV detection. Benchmarks on real Pacific Biosciences (PacBio) and Oxford Nanopore Technology (ONT) datasets demonstrate that cuteSV has better yields and scalability than state-of-the-art tools.cuteSVcuteSVcuteSVLong Read based Human Genomic Structural Variation Detection with cuteSV | Long-read sequencing technologies enable to comprehensively discover structural variations (SVs). However, it is still non-trivial for state-of-the-art approaches to detect SVs with high sensitivity or high performance or both. Herein, we propose cuteSV, a sensitive, fast and lightweight SV detection approach. cuteSV uses tailored methods to comprehensively collect various types of SV signatures, and a clustering-and-refinement method to implement a stepwise SV detection, which enables to achieve high sensitivity without loss of accuracy. Benchmark results demonstrate that cuteSV has better yields on real datasets. Further, its speed and scalability are outstanding and promising to large-scale data analysisSplit read mapping, Genotyping, Structural variation detectionDNA structural variation, Sequencing, Computer scienceTo updatehttps://github.com/tjiangHIT/cuteSVVariant Analysiscutesviuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cutesvhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cutesv1.0.8cutesv2.1.1Split read mapping, Genotyping, Structural variation detectionSequencing, Computer science011001100000000000000000000000000000010017235
cwpair2cwpair2Contains a tool that takes a list of called peaks on both strands and produces a list of matched pairsand a list of unmatched orphans.To updateChIP-seqcwpair2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cwpair2https://github.com/galaxyproject/tools-iuc/tree/main/tools/cwpair21.1.1matplotlib100010000000000000000000000000000000000000
dada2dada2_assignTaxonomyAddspecies, dada2_dada, dada2_filterAndTrim, dada2_learnErrors, dada2_makeSequenceTable, dada2_mergePairs, dada2_plotComplexity, dada2_plotQualityProfile, dada2_removeBimeraDenovo, dada2_seqCountsDADA2 wrappersdada2dada2dada2This package infers exact sequence variants (SVs) from amplicon data, replacing the commonly used and coarser OTU clustering approach. This pipeline inputs demultiplexed fastq files, and outputs the sequence variants and their sample-wise abundances after removing substitution and chimera errors. Taxonomic classification is available via a native implementation of the RDP naive Bayesian classifier.Variant calling, DNA barcodingSequencing, Genetic variation, Microbial ecology, MetagenomicsTo updatehttps://benjjneb.github.io/dada2/index.htmlMetagenomicsdada2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dada2https://github.com/galaxyproject/tools-iuc/tree/main/tools/dada2bioconductor-dada21.30.0Variant calling, DNA barcodingSequencing, Genetic variation, Microbial ecology, Metagenomics1010101010101010000000000000100100010000000000010100126366609
das_toolFasta_to_Contig2Bin, das_toolDAS Tool for genome resolved metagenomicsdastooldastooldastoolDAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly.Read binningMetagenomicsUp-to-datehttps://github.com/cmks/DAS_ToolMetagenomicsdas_tooliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/das_toolhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/das_tool1.1.7das_tool1.1.7Read binningMetagenomics002200220000000000000000000000000000020024706
data_source_iris_tcgadata_source_iris_tcgaIRIS-TCGA Data source toolTo updateData Sourcedata_source_iris_tcgaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/data_source_iris_tcgahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/data_source_iris_tcga1.0.0python000000000000000000000000000000000000000000
datamashdatamash_ops, datamash_reverse, datamash_transposeGNU Datamash is a command-line program which performs basicnumeric,textual and statistical operations on input textual data files.It is designed to be portable and reliable, and aid researchersto easily automate analysis pipelines, without writing code or even short scripts.License: GPL Version 3 (or later).These tool wrappers were originally writen by Assaf Gordon.To updatehttps://www.gnu.org/software/datamash/Text Manipulationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/datamashhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/datamash1.8datamash1.1.033333333000000000000133001000100000003303066739298
decontaminatordecontaminatorDeep Learning method for novel virus detection in sequencing datadecontaminatordecontaminatordecontaminatorDecontaminator is a deep learning helping tool that filters out phage or fungi contigs from plant virome RNAseq assemblies.FilteringMetagenomicsTo updatehttps://github.com/cbib/decontaminatorMachine Learningdecontaminatoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/decontaminatorhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/decontaminator1.0.0numpyFilteringMetagenomics00100010000000000000000000000000000001001599
deepmicrodeepmicroRepresentation learning and classification frameworkDeepMicroDeepMicroDeepMicroDeep representation learning for disease prediction based on microbiome data.DeepMicro is a deep representation learning framework exploiting various autoencoders to learn robust low-dimensional representations from high-dimensional data and training classification models based on the learned representation.Essential dynamics, Splitting, Community profilingMicrobial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeuticsUp-to-datehttps://github.com/paulzierep/DeepMicroMachine Learningdeepmicroiuchttps://github.com/paulzierep/DeepMicrohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/deepmicro1.4deepmicro1.4Essential dynamics, SplittingMicrobial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeutics00100010000000000000000000000000000001003501
deepsigdeepsigPredictor of signal peptides in proteins based on deep learningUp-to-datehttps://github.com/BolognaBiocomp/deepsigGenome annotationdeepsigiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deepsighttps://github.com/galaxyproject/tools-iuc/tree/main/tools/deepsig1.2.5deepsig1.2.5001100110000000000000000000000000000000005
deepvariantdeepvariantDeepVariant is a deep learning-based variant callerTo updatehttps://github.com/google/deepvariantVariant Analysisdeepvariantiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deepvarianthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/deepvariant1.5.010101010000000000000000000000000000001001821889
deg_annotatedeg_annotateAnnotate DESeq2/DEXSeq output tablesTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotateTranscriptomicsdeg_annotateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate1.1.0bedtools2.31.11111111100000000000010100100000000000110177419910
dellydelly_call, delly_classify, delly_cnv, delly_filter, delly_lr, delly_mergeDelly is an integrated structural variant (SV) prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. It uses paired-ends, split-reads and read-depth to sensitively and accurately delineate genomic rearrangements throughout the genome.delly2delly2Delly2Integrated structural variant prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. It uses paired-ends and split-reads to sensitively and accurately delineate genomic rearrangements throughout the genome. Structural variants can be visualized using Delly-maze and Delly-suave.Indel detection, Structural variation detection, Variant calling, Genotyping, Genetic variation analysisDNA structural variation, Sequencing, Pathology, Genomics, Genetic variation, Bioinformatics, Population genomics, Rare diseasesTo updatehttps://github.com/dellytools/dellyVariant Analysisdellyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dellyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/delly0.9.1delly1.2.6Indel detection, Structural variation detection, GenotypingSequencing, Genetic variation, Bioinformatics, Population genomics, Rare diseases00600060000000000000030000000600000006001241135
deseq2deseq2Differential gene expression analysis based on the negative binomial distributionDESeq2DESeq2DESeq2R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution.Differential gene expression analysis, RNA-Seq analysisRNA-SeqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsdeseq2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq22.11.40.8bioconductor-deseq21.42.0Differential gene expression analysis, RNA-Seq analysisRNA-Seq1111111101001000000011100100010000000110499095752
dexseqdexseq, dexseq_count, plotdexseqInference of differential exon usage in RNA-SeqdexseqdexseqDEXSeqThe package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results.Enrichment analysis, Exonic splicing enhancer predictionRNA-SeqUp-to-datehttps://www.bioconductor.org/packages/release/bioc/html/DEXSeq.htmlTranscriptomics, RNA, Statisticsdexseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq1.48.0bioconductor-dexseq1.48.0Enrichment analysis, Exonic splicing enhancer predictionRNA-Seq333333330000000000000000000000000000033021816064
diamondbg_diamond, bg_diamond_makedb, bg_diamond_viewDIAMOND is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR.diamonddiamondDiamondSequence aligner for protein and translated DNA searches and functions as a drop-in replacement for the NCBI BLAST software tools. It is suitable for protein-protein search as well as DNA-protein search on short reads and longer sequences including contigs and assemblies, providing a speedup of BLAST ranging up to x20,000.Sequence alignment analysisSequence analysis, ProteinsTo updatehttps://github.com/bbuchfink/diamondSequence Analysisdiamondbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/diamondhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/diamond2.0.15diamond2.1.9Sequence alignment analysisSequence analysis, Proteins333333330000300000003330001000000000033096349711
diffbinddiffbindDiffbind provides functions for processing ChIP-Seq data.diffbinddiffbindDiffBindCompute differentially bound sites from multiple ChIP-seq experiments using affinity (quantitative) data. Also enables occupancy (overlap) analysis and plotting functions.Differential binding analysisChIP-seqUp-to-datehttp://bioconductor.org/packages/release/bioc/html/DiffBind.htmlChIP-seqdiffbindbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/diffbindhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/diffbind3.12.0bioconductor-diffbind3.12.0Differential binding analysisChIP-seq11111111000000000000000000000000000001102506264
dimetdimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@DIMet is a bioinformatics pipeline for differential analysis of isotopic targeted labeling data.Up-to-datehttps://github.com/cbib/DIMetMetabolomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/DIMethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dimet0.2.4dimet0.2.4000000000000000000000000000000000000000000
discodiscoDISCO is a overlap-layout-consensus (OLC) metagenome assemblerdiscodiscoDISCODISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer.Protein sequence analysisStructure determinationTo updatehttp://disco.omicsbio.org/Metagenomics, Assemblydiscoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/https://github.com/galaxyproject/tools-iuc/tree/main/tools/discodisco1.2Protein sequence analysisStructure determination101010100000000000000010000000000000011042369
dnabotdnabotDNA assembly using BASIC on OpenTronsTo updatehttps://github.com/BASIC-DNA-ASSEMBLY/DNA-BOTSynthetic Biologydnabotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dnabothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dnabot3.1.0dnabot000000000000000000000000000000000000000000
dnaweaverdnaweaverGiven a SBOL input, calculate assembly parts for Gibson or Golden Gate.Up-to-datehttps://github.com/Edinburgh-Genome-Foundry/DnaWeaverSynthetic Biologydnaweaveriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dnaweaverhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dnaweaver1.0.2dnaweaver_synbiocad1.0.2000000000000000000000000000000000000000000
dramdram_annotate, dram_distill, dram_merge_annotations, dram_neighborhoods, dram_strainerDRAM for distilling microbial metabolism to automate the curation of microbiome functiondramdramDRAMDistilled and Refined Annotation of Metabolism: A tool for the annotation and curation of function for microbial and viral genomesGene functional annotationMetagenomics, Biological databases, Molecular geneticsUp-to-datehttps://github.com/WrightonLabCSU/DRAMMetagenomicsdramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dramhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dram1.5.0dram1.5.0Gene functional annotationMetagenomics, Biological databases, Molecular genetics0050005000000000000000000000000000000500396886
drepdrep_compare, drep_dereplicatedRep compares and dereplicates genome setsdrepdrepdRepFast and accurate genomic comparisons that enables improved genome recovery from metagenomes through de-replication.Genome comparisonMetagenomics, Genomics, Sequence analysisUp-to-datehttps://github.com/MrOlm/drepMetagenomicsdrepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/drephttps://github.com/galaxyproject/tools-iuc/tree/main/tools/drep3.5.0drep3.5.0Genome comparisonMetagenomics, Sequence analysis002200220000000000000020000000000000022046646
dropletutilsdropletutilsDropletUtils - Utilities for handling droplet-based single-cell RNA-seq datadropletutilsdropletutilsDropletUtilsProvides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix.Loading, Community profilingGene expression, RNA-seq, Sequencing, TranscriptomicsTo updatehttps://bioconductor.org/packages/devel/bioc/html/DropletUtils.htmlTranscriptomics, Sequence Analysisdropletutilsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils1.10.0bioconductor-dropletutils1.22.0Sequencing, Transcriptomics11111111000000000000000001000000000001101263934
ebi_toolsebi_search_rest_resultsTools to query and download data from several EMBL-EBI databasesTo updatehttp://www.ebi.ac.uk/services/allWeb Services, Data Sourceebi_toolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ebi_toolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ebi_tools0.1.1six101010100000000000000000000000000000011052382
edgeredgerPerform RNA-Seq differential expression analysis using edgeR pipelineedgeredgeredgeRDifferential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE.Differential gene expression analysisGenetics, RNA-Seq, ChIP-seqTo updatehttp://bioconductor.org/packages/release/bioc/html/edgeR.htmlTranscriptomics, RNA, Statisticsedgeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/edgerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/edger3.36.0bioconductor-edger4.0.16Differential gene expression analysisGenetics, RNA-Seq, ChIP-seq111111110000100000001010010001000000011094518117
egseaegseaThis tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testingegseaegseaEGSEAThis package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing.Gene set testingSystems biologyTo updatehttps://bioconductor.org/packages/release/bioc/html/EGSEA.htmlTranscriptomics, RNA, Statisticsegseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/egseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea1.20.0bioconductor-egsea1.28.0Gene set testingSystems biology11101110000000000000000000000000000001101772524
emboss_5EMBOSS: antigenic1, EMBOSS: backtranseq2, EMBOSS: banana3, EMBOSS: biosed4, EMBOSS: btwisted5, EMBOSS: cai6, EMBOSS: cai_custom6, EMBOSS: chaos7, EMBOSS: charge8, EMBOSS: checktrans9, EMBOSS: chips10, EMBOSS: cirdna11, EMBOSS: codcmp12, EMBOSS: coderet13, EMBOSS: compseq14, EMBOSS: cpgplot15, EMBOSS: cpgreport16, EMBOSS: cusp17, EMBOSS: cutseq18, EMBOSS: dan19, EMBOSS: degapseq20, EMBOSS: descseq21, EMBOSS: diffseq22, EMBOSS: digest23, EMBOSS: dotmatcher24, EMBOSS: dotpath25, EMBOSS: dottup26, EMBOSS: dreg27, EMBOSS: einverted28, EMBOSS: epestfind29, EMBOSS: equicktandem31, EMBOSS: est2genome32, EMBOSS: etandem33, EMBOSS: extractfeat34, EMBOSS: extractseq35, EMBOSS: freak36, EMBOSS: fuzznuc37, EMBOSS: fuzzpro38, EMBOSS: fuzztran39, EMBOSS: garnier40, EMBOSS: geecee41, EMBOSS: getorf42, EMBOSS: helixturnhelix43, EMBOSS: hmoment44, EMBOSS: iep45, EMBOSS: infoseq46, EMBOSS: isochore47, EMBOSS: lindna48, EMBOSS: marscan49, EMBOSS: maskfeat50, EMBOSS: maskseq51, EMBOSS: matcher52, EMBOSS: megamerger53, EMBOSS: merger54, EMBOSS: msbar55, EMBOSS: needle56, EMBOSS: newcpgreport57, EMBOSS: newcpgseek58, EMBOSS: newseq59, EMBOSS: noreturn60, EMBOSS: notseq61, EMBOSS: nthseq62, EMBOSS: octanol63, EMBOSS: oddcomp64, EMBOSS: palindrome65, EMBOSS: pasteseq66, EMBOSS: patmatdb67, EMBOSS: pepcoil68, EMBOSS: pepinfo69, EMBOSS: pepnet70, EMBOSS: pepstats71, EMBOSS: pepwheel72, EMBOSS: pepwindow73, EMBOSS: pepwindowall74, EMBOSS: plotcon75, EMBOSS: plotorf76, EMBOSS: polydot77, EMBOSS: preg78, EMBOSS: prettyplot79, EMBOSS: prettyseq80, EMBOSS: primersearch81, EMBOSS: revseq82, EMBOSS: seqmatchall83, EMBOSS: seqret84, EMBOSS: showfeat85, EMBOSS: shuffleseq87, EMBOSS: sigcleave88, EMBOSS: sirna89, EMBOSS: sixpack90, EMBOSS: skipseq91, EMBOSS: splitter92, EMBOSS: supermatcher95, EMBOSS: syco96, EMBOSS: tcode97, EMBOSS: textsearch98, EMBOSS: tmap99, EMBOSS: tranalign100, EMBOSS: transeq101, EMBOSS: trimest102, EMBOSS: trimseq103, EMBOSS: twofeat104, EMBOSS: union105, EMBOSS: vectorstrip106, EMBOSS: water107, EMBOSS: wobble108, EMBOSS: wordcount109, EMBOSS: wordmatch110Galaxy wrappers for EMBOSS version 5.0.0 toolsembossembossEMBOSSDiverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool.Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignmentMolecular biology, Sequence analysis, BiologyTo updatehttp://emboss.open-bio.org/Sequence Analysis, Fasta Manipulationemboss_5devteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_55.0.0emboss6.6.0Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignmentMolecular biology, Sequence analysis10710710710710710710710700001070000000001070010700010700000001071070181689530
ena_uploadena_uploadSubmits experimental data and respective metadata to the European Nucleotide Archive (ENA).Up-to-datehttps://github.com/usegalaxy-eu/ena-upload-cliData Exportena_uploadiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ena_uploadhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ena_upload0.7.3ena-upload-cli0.7.3011101110000000000000000000001000000010014208
enasearchenasearch_retrieve_analysis_report, enasearch_retrieve_data, enasearch_retrieve_run_report, enasearch_retrieve_taxons, enasearch_search_dataA Python library for interacting with ENA's APITo updatehttps://github.com/bebatut/enasearchData Sourceenasearchiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/enasearchhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/enasearchenasearch0.2.200500050000000000000014000000000000005501262257
ensembl_vepensembl_vepEnsembl VEP: Annotate VCFs with variant effect predictionsTo updatehttps://github.com/Ensembl/ensembl-vepVariant Analysisensembl_vepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ensembl_vephttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ensembl_vep110.1ensembl-vep112.000100010000000000000000000000000000001001192653
episcanpyepiscanpy_build_matrix, episcanpy_cluster_embed, episcanpy_preprocessEpiScanpy – Epigenomics single cell analysis in pythonepiscanpyepiscanpyepiScanpyEpigenomics Single Cell Analysis in Python.Enrichment analysis, ImputationEpigenomics, Cell biology, DNATo updatehttps://github.com/colomemaria/epiScanpyEpigeneticsepiscanpyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/episcanpy0.3.2episcanpy0.4.0Enrichment analysis, ImputationEpigenomics, Cell biology, DNA333033300000000000000000000000000000030020736
exomedepthexomedepthExomeDepth: Calls copy number variants (CNVs) from targeted sequence dataexomedepthexomedepthExomeDepthCopy number variant (CNV) calling algorithm designed to control technical variability between samples. It calls CNVs from targeted sequence data, typically exome sequencing experiments designed to identify the genetic basis of Mendelian disorders.Sequence analysis, Variant calling, Genotyping, Copy number estimationExome sequencing, Gene transcripts, Mapping, Sequencing, Genetic variation, Rare diseasesTo updatehttps://cran.r-project.org/package=ExomeDepthSequence Analysis, Variant Analysisexomedepthcrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/exomedepthhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/exomedepth1.1.0r-exomedepth1.1.16Sequence analysis, Variant calling, Genotyping, Copy number estimationExome sequencing, Gene transcripts, Mapping, Genetic variation, Rare diseases101010100000000000000000000000000000011029410
exonerateexonerateExonerate is a generic tool for pairwise sequence comparison.exonerateexonerateExonerateA tool for pairwise sequence alignment. It enables alignment for DNA-DNA and DNA-protein pairs and also gapped and ungapped alignment.Pairwise sequence alignment, Protein threading, Genome alignmentSequence analysis, Sequence sites, features and motifs, Molecular interactions, pathways and networksUp-to-datehttps://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerateSequence Analysisexonerateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/exoneratehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/exonerate2.4.0exonerate2.4.0Pairwise sequence alignment, Protein threading, Genome alignmentSequence analysis, Sequence sites, features and motifs, Molecular interactions, pathways and networks111111110000000000000010000000000000011059988
export2graphlanexport2graphlanexport2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAnexport2graphlanexport2graphlanexport2graphlanexport2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn. In particular, the annotation file tries to highlight specific sub-trees deriving automatically from input file what nodes are important.ConversionTaxonomy, Metabolomics, BiomarkersTo updatehttps://bitbucket.org/CibioCM/export2graphlan/overviewMetagenomicsexport2graphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/export2graphlan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/export2graphlan0.20export2graphlan0.22ConversionTaxonomy, Metabolomics, Biomarkers11111111000000000000001000000000000001102005265
extract_genomic_dnaExtract genomic DNA 1Contains a tool that extracts genomic DNA using coordinates from ASSEMBLED genomes and UNassembled genomes.To updateGenomic Interval Operationsextract_genomic_dnaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/extract_genomic_dnahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/extract_genomic_dna3.0.3+galaxy2bx-python0.12.0101010100100100100001111000001000000011028511846
falcofalcoA high throughput sequence QC analysis toolfalcofalcoFalcoA high-speed FastQC emulation for quality control of sequencing data.Sequencing quality control, Visualisation, Read mappingWorkflows, Mapping, ImagingTo updatehttps://github.com/smithlabcode/falco/Sequence Analysisfalcoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/falcohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/falco1.2.2+galaxy1falco1.2.3Sequencing quality control, Visualisation, Read mappingWorkflows, Mapping, Imaging001000100000000000000000000000000000000000
fargenefargenefARGene (Fragmented Antibiotic Resistance Gene iENntifiEr )fargenefargenefARGenefARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) is a tool that takes either fragmented metagenomic data or longer sequences as input and predicts and delivers full-length antiobiotic resistance genes as output.Antimicrobial resistance predictionMetagenomics, Microbiology, Public health and epidemiologyUp-to-datehttps://github.com/fannyhb/fargeneSequence Analysisfargeneiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fargenehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fargene0.1fargene0.1Antimicrobial resistance predictionMetagenomics, Microbiology, Public health and epidemiology101010100000000000000010000000000000011052459
fasplitfasplitfaSplit is a tool to split a single FASTA file into several filesUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttp://hgdownload.cse.ucsc.edu/admin/exe/Fasta Manipulationucsc_fasplitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fasplithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fasplit377ucsc-fasplit469Sequence analysis11111111000000000000001001000000000001102422644
fasta_clipping_histogramcshl_fasta_clipping_histogramLength Distribution chartUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Graphics, Statisticsfasta_clipping_histogramdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_clipping_histogramhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_clipping_histogram0.0.14fastx_toolkit0.0.14010001000000000000000010000001000000000000
fasta_formattercshl_fasta_formatterFASTA Width formatterUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulationfasta_formatterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_formatterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_formatter0.0.14fastx_toolkit0.0.141111111101001000000001100000010000000111682912
fasta_nucleotide_changercshl_fasta_nucleotides_changerRNA/DNA converter.Up-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulationfasta_nucleotide_changerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_nucleotide_changerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_nucleotide_changer0.0.14fastx_toolkit0.0.14111111110000000000000010000001000000011029774
fasta_nucleotide_color_plotfasta_nucleotide_color_plotContains a tool that produces a graphical representation of FASTA data with each nucleotide represented by a selected color.To updatehttps://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/fourcolorplotVisualizationfasta_nucleotide_color_plotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_nucleotide_color_plothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_nucleotide_color_plot1.0.1openjdk101010100000000000000000000000000000011015160
fasta_statsfasta-statsDisplay summary statistics for a fasta file.To updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_stats/Sequence Analysisfasta_statsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_stats/https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_stats2.0numpy1111111101000000000011100000000000000110108035336
fastanifastaniFast alignment-free computation of whole-genome Average Nucleotide IdentityfastanifastaniFastANIFastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies.Genome alignment, Sequence similarity searchMicrobiology, Genetic variationTo updatehttps://github.com/ParBLiSS/FastANISequence Analysisfastaniiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastanihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastani1.3fastani1.34Genome alignment, Sequence similarity searchMicrobiology, Genetic variation00110011000000000000001000000000000001102503498
fastkfastk_fastkFastK: A K-mer counter (for HQ assembly data sets)To updatehttps://github.com/thegenemyers/FASTKAssemblyfastkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk1.0.0fastk1.0001000100000000000000000000000000000000000
fastpfastpFast all-in-one preprocessing for FASTQ filesfastpfastpfastpA tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance.Sequencing quality control, Sequence contamination filteringSequence analysis, Probes and primersUp-to-datehttps://github.com/OpenGene/fastpSequence Analysisfastpiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastp0.23.4fastp0.23.4Sequence contamination filteringProbes and primers111111110000000000001110010001000000011128031055760
fastq_combinerfastq_combinerCombine FASTA and QUAL into FASTQUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulation, Fasta Manipulationfastq_combinerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_combinerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_combiner1.1.5galaxy_sequence_utils1.1.51111111100001000000000100000000000000110668676
fastq_filterfastq_filterFilter FASTQ reads by quality score and lengthUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_filterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_filter1.1.5galaxy_sequence_utils1.1.5111111110000000000000010000000000000011026614222
fastq_groomerfastq_groomerConvert between various FASTQ quality formats.Up-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_groomerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_groomerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_groomer1.1.5galaxy_sequence_utils1.1.51111111101001000000000100000010000000110102894802
fastq_manipulationfastq_manipulationManipulate FASTQ reads on various attributes.Up-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_manipulationdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_manipulationhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_manipulation1.1.5galaxy_sequence_utils1.1.51111111100000000000000000000000000000110692503
fastq_masker_by_qualityfastq_masker_by_qualityFASTQ Masker by quality scoreUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_masker_by_qualitydevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_masker_by_qualityhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality1.1.5galaxy_sequence_utils1.1.5111111110000000000000000000000000000011016170
fastq_paired_end_deinterlacerfastq_paired_end_deinterlacerFASTQ de-interlacer on paired end reads.Up-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_paired_end_deinterlacerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer1.1.5galaxy_sequence_utils1.1.511111111000000000000000000000100000001101228410
fastq_paired_end_interlacerfastq_paired_end_interlacerFASTQ interlacer on paired end readsUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_paired_end_interlacerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer1.1.5galaxy_sequence_utils1.1.51111111100000000000011100000000000000110108717024
fastq_paired_end_joinerfastq_paired_end_joinerFASTQ joiner on paired end readsUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_paired_end_joinerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joinerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner1.1.5galaxy_sequence_utils1.1.5111111110000000000000010000000000000011024516635
fastq_paired_end_splitterfastq_paired_end_splitterFASTQ splitter on joined paired end readsUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_paired_end_splitterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter1.1.5galaxy_sequence_utils1.1.511111111000000000000000000000000000001101963092
fastq_quality_boxplotcshl_fastq_quality_boxplotDraw quality score boxplotUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulation, Graphics, Statisticsfastq_quality_boxplotdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_boxplothttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_boxplot0.0.14fastx_toolkit0.0.141111111100000000000000100000010000000110511178
fastq_quality_convertercshl_fastq_quality_converterQuality format converter (ASCII-Numeric)Up-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulationfastq_quality_converterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_converter0.0.14fastx_toolkit0.0.14111111110000000000000010000001000000011011220
fastq_quality_filtercshl_fastq_quality_filterFilter by qualityUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulationfastq_quality_filterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_filter0.0.14fastx_toolkit0.0.141111111100000000000001100000010000000110150915172
fastq_statsfastq_statsFASTQ Summary Statistics by columnUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_statsdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_statshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_stats1.1.5galaxy_sequence_utils1.1.511111111000000000000000001000000000001102214246
fastq_to_fastacshl_fastq_to_fastaFASTQ to FASTA converterUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Convert Formatsfastq_to_fastadevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fastahttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_to_fasta0.0.14fastx_toolkit0.0.14111111110100000000000110000001000000011041913599
fastq_to_tabularfastq_to_tabularFASTQ to Tabular converterUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_to_tabulardevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_to_tabularhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_to_tabular1.1.5galaxy_sequence_utils1.1.511111111010000000000000000000100000001109312593
fastq_trimmerfastq_trimmerFASTQ Trimmer by qualityUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_trimmerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_trimmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_trimmer1.1.5galaxy_sequence_utils1.1.511111111000000000000000000000100000001102109757
fastqcfastqcRead QC reports using FastQCfastqcfastqcFastQCThis tool aims to provide a QC report which can spot problems or biases which originate either in the sequencer or in the starting library material. It can be run in one of two modes. It can either run as a stand alone interactive application for the immediate analysis of small numbers of FastQ files, or it can be run in a non-interactive mode where it would be suitable for integrating into a larger analysis pipeline for the systematic processing of large numbers of files.Sequence composition calculation, Sequencing quality control, Statistical calculationSequencing, Data quality management, Sequence analysisTo updatehttp://www.bioinformatics.babraham.ac.uk/projects/fastqc/Fastq Manipulationfastqcdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqc0.74+galaxy1fastqc0.12.1Sequence composition calculation, Sequencing quality control, Statistical calculationSequencing, Data quality management, Sequence analysis1111111101101000000011100100010001100110174471556625
fastqefastqeFASTQEfastqefastqeFASTQECompute quality stats for FASTQ files and print those stats as emoji... for some reason.Sequencing quality controlSequence analysis, SequencingTo updatehttps://fastqe.com/Sequence Analysisfastqeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqe0.3.1+galaxy0fastqe0.3.1Sequencing quality controlSequence analysis, Sequencing111111110000000000001000000000000000011012664333
fastqtofastafastq_to_fasta_pythonFASTQ to FASTA converterUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastqtofastadevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastqtofastahttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastqtofasta1.1.5galaxy_sequence_utils1.1.511101110000010000000001000000000000001101371178178
fasttreefasttreeFastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences - GVLfasttreefasttreeFastTreeInfers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences.Phylogenetic tree generation (from molecular sequences), Phylogenetic tree generation (maximum likelihood and Bayesian methods)Phylogenetics, Sequence analysisTo updatehttp://www.microbesonline.org/fasttree/Phylogeneticsfasttreeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fasttreehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fasttree2.1.10fasttree2.1.11Phylogenetics111111110100000000001110000001000000011037955434
fastx_artifacts_filtercshl_fastx_artifacts_filterRemove sequencing artifactsUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_artifacts_filterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_artifacts_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_artifacts_filter0.0.14fastx_toolkit0.0.141111111101001000000011100000010000000110271810
fastx_barcode_splittercshl_fastx_barcode_splitterBarcode SplitterUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_barcode_splitterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_barcode_splitterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_barcode_splitter0.0.14fastx_toolkit0.0.14111111110000100000000010000001000000011012816591
fastx_clippercshl_fastx_clipperClip adapter sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_clipperdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_clipperhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_clipper0.0.14fastx_toolkit0.0.141111111101001000000011100000010000000110963333
fastx_collapsercshl_fastx_collapserCollapse sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulationfastx_collapserdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_collapserhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_collapser0.0.14fastx_toolkit0.0.14111111110000100000001110010001000000011011461218
fastx_nucleotides_distributioncshl_fastx_nucleotides_distributionDraw nucleotides distribution chartUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulation, Graphicsfastx_nucleotides_distributiondevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_nucleotides_distributionhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_nucleotides_distribution0.0.14fastx_toolkit0.0.14111111110000100000001110000001000000011025249
fastx_quality_statisticscshl_fastx_quality_statisticsCompute quality statisticsUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulation, Statisticsfastx_quality_statisticsdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_quality_statisticshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_quality_statistics0.0.14fastx_toolkit0.0.141111111100001000000011100100010000000110632176
fastx_renamercshl_fastx_renamerRename sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_renamerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_renamerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_renamer0.0.14fastx_toolkit0.0.141111111100001000000011100000010000000110682280
fastx_reverse_complementcshl_fastx_reverse_complementReverse-ComplementUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulation, Fasta Manipulationfastx_reverse_complementdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_reverse_complementhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_reverse_complement0.0.14fastx_toolkit0.0.14111111110000100000001110000001000000011015610832
fastx_trimmercshl_fastx_trimmerTrim sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_trimmerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_trimmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_trimmer0.0.14fastx_toolkit0.0.14111111110000100000001110000001000000011020513149
fatovcffatovcfConvert a FASTA alignment file to Variant Call Format (VCF) single-nucleotide diffsUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisUp-to-datehttp://hgdownload.cse.ucsc.edu/admin/exe/Convert Formatsucsc_fatovcfiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fatovcfhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fatovcf448ucsc-fatovcf448Sequence analysis111011100000000000000000000000000000010022285
featurecountsfeaturecountsfeatureCounts counts the number of reads aligned to defined masked regions in a reference genomefeaturecountsfeaturecountsFeatureCountsfeatureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package.Read summarisation, RNA-Seq quantificationRNA-SeqTo updatehttp://bioinf.wehi.edu.au/featureCountsRNA, Transcriptomics, Sequence Analysisfeaturecountsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecountshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts2.0.3subread2.0.6Read summarisation, RNA-Seq quantificationRNA-Seq11111111000010000000111001000100000001104679696399
feelncfeelncGalaxy wrapper for FEELncfeelncfeelncFEELncA tool to annotate long non-coding RNAs from RNA-seq assembled transcripts.Annotation, ClassificationRNA-seq, Functional, regulatory and non-coding RNATo updatehttps://github.com/tderrien/FEELncSequence Analysisfeelnciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/feelnchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/feelnc0.2.1feelnc0.2Annotation, ClassificationFunctional, regulatory and non-coding RNA1111111100000000000000000000000000000110461191
fermikitfermi2, fermikit_variantsFermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data.Up-to-datehttps://github.com/lh3/fermikitAssembly, Variant Analysisfermikitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikitr193fermi2r193000000000000000000000000000000000000000000
fgseafgseaPerform gene set testing using fgseafgseafgseafgseaThe package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction.Gene-set enrichment analysisGeneticsTo updatehttps://bioconductor.org/packages/release/bioc/html/fgsea.htmlVisualization, Transcriptomics, Statisticsfgseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fgseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea1.8.0+galaxy1bioconductor-fgsea1.28.0Gene-set enrichment analysisGenetics11111111000000000000000000000000000001103075240
filtlongfiltlongFiltlong - Filtering long reads by qualityfiltlongfiltlongFiltlongFiltlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter.Filtering, Sequencing quality controlUp-to-datehttps://github.com/rrwick/FiltlongFastq Manipulation, Sequence Analysisfiltlongiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlonghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong0.2.1filtlong0.2.1Filtering, Sequencing quality control111111110000000000000110000000000000011061730483
flairflair_collapse, flair_correctFLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads.To updatehttps://github.com/BrooksLabUCSC/flairNanoporeflairiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/flairhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/flair1.5flair2.0.0002000200000000000000000000000000000020014331
flashflashFast Length Adjustment of SHort readsflashflashFLASHIdentifies paired-end reads which overlap in the middle, converting them to single long readsRead pre-processing, Sequence merging, Sequence assemblySequencing, Sequence assemblyUp-to-datehttps://ccb.jhu.edu/software/FLASH/Assembly, Fastq Manipulationflashiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/flashhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/flash1.2.11flash1.2.11Read pre-processing, Sequence merging, Sequence assemblySequencing, Sequence assembly10101010000000000000001000000000000001107413759
fraggenescanfraggenescanTool for finding (fragmented) genes in short readfraggenescanfraggenescanFragGeneScanApplication for finding (fragmented) genes in short readsGene predictionGenetics, Sequence analysisTo updatehttps://sourceforge.net/projects/fraggenescan/Sequence Analysisfraggenescaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fraggenescan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/fraggenescanfraggenescan1.31Gene predictionGenetics, Sequence analysis0111011100000000000000100000000000000110681102
freebayesfreebayes, bamleftalignGalaxy Freebayes Bayesian genetic variant detector toolfreebayesfreebayesFreeBayesBayesian genetic variant detector designed to find small polymorphisms, specifically SNPs, indels, multi-nucleotide polymorphisms, and complex events (composite insertion and substitution events) smaller than the length of a short-read sequencing alignment.Variant calling, Statistical calculationGenomics, Genetic variation, Rare diseasesTo updatehttps://github.com/ekg/freebayesVariant Analysisfreebayesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayeshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/freebayes1.3.6freebayes1.3.7Variant calling, Statistical calculationGenomics, Genetic variation, Rare diseases22222222020020000000022000000200000002203059155087
freeccontrol_freecControl-FREEC is a tool for detection of copy-number changes and allelic imbalances (including LOH) using deep-sequencing data originally developed by the Bioinformatics Laboratory of Institut Curie (Paris). It automatically computes, normalizes, segments copy number and beta allele frequency (BAF) profiles, then calls copy number alterations and LOH.freecfreecFREECA tool for control-free copy number alteration (CNA) and allelic imbalances (LOH) detection using deep-sequencing data, particularly useful for cancer studies.Copy number estimation, Variant calling, Genome alignmentDNA structural variation, Oncology, Human genetics, Data miningTo updatehttp://boevalab.inf.ethz.ch/FREEC/Variant Analysiscontrol_freeciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/freechttps://github.com/galaxyproject/tools-iuc/tree/main/tools/freec11.6gawkCopy number estimation, Variant calling, Genome alignmentOncology, Human genetics, Data mining011001100000000000000000000000000000011044665
freyjafreyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variantslineage abundances estimationfreyjafreyjaFreyjaRecover relative lineage abundances from mixed SARS-CoV-2 samples from a sequencing datasetRNA-Seq quantificationMetagenomicsTo updatehttps://github.com/andersen-lab/FreyjaMetagenomics, Sequence Analysisfreyjaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/freyjahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/freyja1.4.4freyja1.5.1RNA-Seq quantificationMetagenomics20402040000000000000004000000000000004005520021
fsdfsd, fsd_beforevsafter, fsd_regions, tdTool that plots a histogram of sizes of read familiesTo updateGraphicsduplex_family_size_distributioniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fsdhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fsd1.0.2matplotlib400040000000000000000000000000000000000000
funannotatefunannotate_annotate, funannotate_clean, funannotate_compare, funannotate_predict, funannotate_sortFunannotate is a genome prediction, annotation, and comparison software package.funannotatefunannotatefunannotatefunannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes).Genome annotationGenomicsTo updatehttps://funannotate.readthedocs.ioGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate1.8.15Genome annotationGenomics35553555000000000000000000000000000005009005906
gatk4gatk4_mutect2A Galaxy wrapper for Mutect2 from GATKTo updatehttps://software.broadinstitute.org/gatk/gatk4Variant Analysisgatk4_mutect2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gatk4https://github.com/galaxyproject/tools-iuc/tree/main/tools/gatk44.1.7.0gatk44.5.0.010101010000000000000010001000100000001101812483
gdcwebappdata_source_gdcwebappGDCWebApp automatically filter, extract, and convert genomic data from the Genomic Data Commons portal to BED formatTo updatehttp://bioinf.iasi.cnr.it/gdcwebapp/Data Source, Convert Formatsgdcwebappiuchttps://github.com/fabio-cumbo/GDCWebApp4Galaxyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gdcwebapp1.0.0python101010100000000000000010000000000000000000
geckogeckoUngapped genome comparisonUp-to-datehttps://github.com/otorreno/geckoSequence Analysisgeckoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/geckohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gecko1.2gecko1.20110011000000000000000100000000000000100112519
geminigemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_db_info, gemini_@BINARY@, gemini_@BINARY@, gemini_inheritance, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@GEMINI: a flexible framework for exploring genome variationgeminigeminiGEMINIGEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics.Sequence analysis, Genetic variation analysisSequence analysisTo updatehttps://github.com/arq5x/geminiSequence Analysis, Next Gen Mappersgeminiiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/geminihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gemini0.20.1gemini0.30.2Sequence analysis, Genetic variation analysisSequence analysis12221222000000000000000000000000000002206624916
genebed_maf_to_fastaGeneBed_Maf_Fasta2Stitch gene blocks given a set of coding exon intervalsTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genebed_maf_to_fasta/Genomic Interval Operationsgenebed_maf_to_fastaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genebed_maf_to_fasta/https://github.com/galaxyproject/tools-iuc/tree/main/tools/genebed_maf_to_fasta1.0.1+galaxy0111111110110100100011101000001000010011014
genehunter_modscoregenehunter_modscoreMaximised LOD score pedigree analysis utilityTo updatehttps://www.unimedizin-mainz.de/imbei/biometricsgenomic-statistics-and-bioinformatics/software/genehunter-modscore-40.html?L=1Variant Analysisgenehunter_modscoreiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genehunter_modscore/https://github.com/galaxyproject/tools-iuc/tree/main/tools/genehunter_modscore3.0.0ghm3.1000000000000000000000000000000000000000000
geneiobiogene_iobio_display_generation_iframeGene.iobio is an interactive tool for variant and trio analysis.To updatehttps://github.com/iobio/gene.iobioSequence Analysisgeneiobioiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/geneiobiohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/geneiobio4.7.1+galaxy10110011000000000000000000000000000000100567
genetrackgenetrackContains a tool that separately identifies peaks on the forward "+” (W) and reverse “-” (C) strand.To updateChIP-seqgenetrackiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genetrackhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/genetracknumpy100010000000000000000000000000000000000000
genomescopegenomescopeAnalyze unassembled short readsUp-to-datehttps://github.com/tbenavi1/genomescope2.0Statisticsgenomescopeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genomescopehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/genomescope2.0.1genomescope22.0.111111111000000000000001000000000000001103292118
genomic_super_signaturegenomic_super_signatureInterpretation of RNAseq experiments through robust, efficient comparison to public databasesgenomicsupersignaturegenomicsupersignatureGenomicSuperSignatureGenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases.Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reductionRNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experimentTo updatehttps://github.com/shbrief/GenomicSuperSignatureSequence Analysis, RNA, Transcriptomicsgenomic_super_signatureiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signaturehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature1.2.0bioconductor-genomicsupersignature1.10.0Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reductionRNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment00100010000000000000000000000000000001001146
genrichgenrichGenrich is a peak-caller for genomic enrichment assays (e.g. ChIP-seq, ATAC-seq).To updatehttps://github.com/jsh58/GenrichChIP-seqgenrichiuchttps://github.com/jsh58/Genrichhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/genrich0.5+galaxy2genrich0.6.11110111000000000000000000000000000000110793515
get_hrunget_hrunAnnotate indel variants with homopolymer contextTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/get_hrunVariant Analysisget_hruniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/get_hrunhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/get_hrun0.5.9.2pyfaidx0.8.1.2001000100000000000000000000000000000010014
getorganelleget_annotated_regions_from_gb, get_organelle_from_readsGetOrganelle - This toolkit assembles organelle genomes from genomic skimming data.getorganellegetorganelleGetOrganelleA fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data.De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimmingCell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organismsUp-to-datehttps://github.com/Kinggerm/GetOrganelleAssemblygetorganelleiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganellehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle1.7.7.1getorganelle1.7.7.1De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimmingCell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms022002200000000000000000000000000000020018495
gfa_to_fagfa_to_fagfa_to_fa - Converting GFA format to Fasta formatTo updatehttp://gfa-spec.github.io/GFA-spec/Convert Formatsgfa_to_faiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gfa_to_fahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gfa_to_fa0.1.211111111000000000000000000000000000001103328274
gff3_rebasegff3.rebaseRebase a GFF against a parent GFF (e.g. an original genome)To updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gff3_rebaseSequence Analysisgff3_rebaseiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gff3_rebasehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gff3_rebase1.2bcbiogff0.6.6111111110000100000000000000000000000011012135
gffcomparegffcompareGalaxy wrappers for Geo Pertea's GffCompare package.gffcomparegffcomparegffcompareProgram for comparing, annotating, merging and tracking transcripts in GFF files.Sequence annotationNucleic acids, Sequence analysisUp-to-datehttps://github.com/gpertea/gffcompare/Transcriptomicsgffcompareiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcomparehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare0.12.6gffcompare0.12.6Sequence annotationNucleic acids, Sequence analysis11111111000000000000100000000000000001103813477
gffreadgffreadgffread filters and/or converts GFF3/GTF2 recordsgffreadgffreadgffreadprogram for filtering, converting and manipulating GFF filesSequence annotationNucleic acids, Sequence analysisUp-to-datehttp://ccb.jhu.edu/software/stringtie/gff.shtml#gffread/Sequence Analysisgffreaddevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gffreadhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gffread0.12.7gffread0.12.7Sequence annotationNucleic acids, Sequence analysis111111110100000000001000000000000000011068010995
ggplot2ggplot2_heatmap, ggplot2_pca, ggplot2_histogram, ggplot2_point, ggplot2_violinggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics.You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to use,and it takes care of the details.ggplot2ggplot2ggplot2Plotting system for R, based on the grammar of graphics.VisualisationData visualisationTo updatehttps://github.com/tidyverse/ggplot2Visualizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2https://github.com/galaxyproject/tools-iuc/tree/main/tools/ggplot23.4.0r-baseVisualisationData visualisation5555555500000000000010500000030000000550138822148
ggupsetemc-ggupsetCreate Upset Plots with ggupsetTo updatehttps://github.com/const-ae/ggupsetGraphicsggupsetiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ggupsethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ggupset1.0r-ggupset000000000000000000000000000000000000000000
glimmerglimmer_acgt_content, glimmer_build_icm, glimmer_extract, glimmer_gbk_to_orf, glimmer_glimmer_to_gff, glimmer_long_orfs, glimmer_knowledge_based, glimmer_not_knowledge_basedGlimmer makes gene predictions.geminigeminiGEMINIGEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics.Sequence analysis, Genetic variation analysisSequence analysisTo updatehttps://ccb.jhu.edu/software/glimmer/Sequence Analysisbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/glimmerglimmer3.02Sequence analysis, Genetic variation analysisSequence analysis00400040000000000000000000000000000004001873965
goenrichmentgoenrichment, goslimmerPerforms GO Enrichment analysis.goenrichmentgoenrichmentGOEnrichmentGOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência.Gene-set enrichment analysisTranscriptomicsUp-to-datehttps://github.com/DanFaria/GOEnrichmentGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichmenthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment2.0.1goenrichment2.0.1Gene-set enrichment analysisTranscriptomics22222222000000000000002000000000000002204085484
goseqgoseqgoseq does selection-unbiased testing for category enrichment amongst differentially expressed (DE) genes for RNA-seq datagoseqgoseqGOseqDetect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data.Gene functional annotationRNA-SeqTo updatehttps://bioconductor.org/packages/release/bioc/html/goseq.htmlStatistics, RNA, Micro-array Analysisgoseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/goseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/goseq1.50.0bioconductor-goseq1.54.0Gene functional annotationRNA-Seq1111111100000000000010000100010000000110121019167
gprofilergprofiler_convert, gprofiler_gost, gprofiler_orth, gprofiler_random, gprofiler_snpensefunctional enrichment analysis of gene lists, convertion between various types of namespaces, translation gene identifiers between organisms and moreTo updatehttps://biit.cs.ut.ee/gprofilerStatistics, Web Servicesgprofileriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/https://github.com/galaxyproject/tools-iuc/tree/main/tools/gprofiler@TOOL_VERSION@+galaxy11r-gprofiler250505050000000000000000000000000000005501963443
graphembedgraphembedCompute a 2D embedding of a data matrix given supervised class informationUp-to-datehttps://github.com/fabriziocosta/GraphEmbedStatistics, Graphicsgraphembediuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/graphembed/https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphembed2.4graph_embed2.41010101000000000000000000000000000000110263
graphlangraphlan, graphlan_annotateGraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic treesgraphlangraphlanGraPhlAnGraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees. GraPhlAn focuses on concise, integrative, informative, and publication-ready representations of phylogenetically- and taxonomically-driven investigation.Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classificationMetagenomics, Phylogenetics, Phylogenomics, CladisticsTo updatehttps://github.com/biobakery/graphlanMetagenomics, Graphics, Phylogeneticsgraphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2/https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphlangraphlan1.1.3Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classificationMetagenomics, Phylogenetics, Phylogenomics, Cladistics22222222000000000000002000000000000002204329277
gtdb_to_taxdumpgtdb_to_taxdumpConvert GTDB taxonomy to NCBI taxdump formatgtdb_to_taxdumpgtdb_to_taxdumpgtdb_to_taxdumpTool with multiple functions. Main functions are to create a DIAMOND database from the GTDB taxonomy data or create a NCBI taxdump format out of this data. This tool can also create a mapping between the taxonomy classification between GTDB and NCBI.Data handling, Mapping, GenerationComputational biologyUp-to-datehttps://github.com/nick-youngblut/gtdb_to_taxdumpMetagenomicsgtdb_to_taxdumpiuchttps://github.com/nick-youngblut/gtdb_to_taxdumphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdb_to_taxdump0.1.9gtdb_to_taxdump0.1.9Data handling, Mapping, GenerationComputational biology000000000000000000000000000000000000000000
gtdbtkgtdbtk_classify_wfGTDB-Tk is a software tool kit for assigning objective taxonomic classifications to bacterial and archaeal genomesbased on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds orthousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can alsobe applied to isolate and single-cell genomes.GTDB-TkGTDB-TkGTDB-Tka toolkit to classify genomes with the Genome Taxonomy Database.GTDB-Tk: a toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes.GTDB-Tk is a software toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes based on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds or thousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can also be applied to isolate and single-cell genomes. The GTDB-Tk is open source and released under the GNU General Public License (Version 3).Genome alignment, Taxonomic classification, Sequence assembly, Query and retrievalMetagenomics, Taxonomy, Phylogenetics, Database management, ProteinsTo updatehttps://github.com/Ecogenomics/GTDBTkMetagenomicsgtdbtkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gtdbtkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdbtk2.3.2gtdbtk2.4.0Genome alignment, Taxonomic classification, Sequence assembly, Query and retrievalMetagenomics, Taxonomy, Phylogenetics, Database management, Proteins011101110000000000000010000000000000000000
gtfToBed12gtftobed12Convert GTF files to BED12 formatUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttp://genome-source.cse.ucsc.edu/gitweb/?p=kent.git;a=blob;f=src/userApps/READMEConvert Formatsgtftobed12iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gtfToBed12https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtfToBed12357ucsc-gtftogenepred469Sequence analysis111111110000000000001000010001000000011012008107
gubbinsgubbinsGubbins - bacterial recombination detectiongubbinsgubbinsGubbinsGubbins is a tool for rapid phylogenetic analysis of large samples of recombinant bacterial whole genome sequences.Genotyping, Phylogenetic inference, Ancestral reconstructionPhylogeny, Genotype and phenotype, Whole genome sequencingTo updateSequence Analysisgubbinsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gubbinshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gubbins3.2.1gubbins3.3.5Genotyping, Phylogenetic inference, Ancestral reconstructionPhylogeny, Genotype and phenotype, Whole genome sequencing11101110000000000000001000000000000001101453340
gvcftoolsgvcftools_extract_variantsgvcftools is a set of utilities to help create and analyze Genome VCF (gVCF) files.gVCF are VCF 4.1 files which follow a set of conventions for representing all sitesin the genome, further described at https://sites.google.com/site/gvcftools/home/about-gvcf.To updatehttps://github.com/sequencing/gvcftoolsVariant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gvcftoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gvcftools0.1gvcftools0.17.0000000000000000000000000000000000000000000
gwastoolsgwastools_manhattan_plotgwastoolsgwastoolsGWASToolsClasses for storing very large GWAS data sets and annotation, and functions for GWAS data cleaning and analysis.Deposition, Analysis, AnnotationGWAS studyTo updatehttps://bioconductor.org/packages/release/bioc/html/GWASTools.htmlVisualization, Variant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gwastools0.1.0bioconductor-gwastools1.48.0Deposition, Analysis, AnnotationGWAS study000000000000000010000000000000000000001000
hamronizationhamronize_summarize, hamronize_toolConvert AMR gene detection tool output to hAMRonization specification format.hamronizationhamronizationhAMRonizationParse multiple Antimicrobial Resistance Analysis Reports into a common data structureData handling, Antimicrobial resistance prediction, ParsingPublic health and epidemiology, Microbiology, BioinformaticsUp-to-datehttps://github.com/pha4ge/hAMRonizationSequence Analysishamronizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hamronizationhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hamronization1.1.4hamronization1.1.4Antimicrobial resistance prediction, ParsingPublic health and epidemiology, Microbiology, Bioinformatics00220022000000000000002000000000000002001174459
hanselbio_hanselHeidelberg and Enteritidis SNP ElucidationBiohanselBiohanselBioHanselBioHansel is a tool for performing high-resolution genotyping of bacterial isolates by identifying phylogenetically informative single nucleotide polymorphisms (SNPs), also known as canonical SNPs, in whole genome sequencing (WGS) data. The application uses a fast k-mer matching algorithm to map pathogen WGS data to canonical SNPs contained in hierarchically structured schemas and assigns genotypes based on the detected SNP profile.Genotyping, SNP detection, Genome assemblyWhole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural scienceUp-to-datehttps://github.com/phac-nml/bio_hanselSequence Analysisbio_hanseliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hanselhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hansel2.6.1bio_hansel2.6.1Genotyping, SNP detection, Genome assemblyWhole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural science101010100000000000000000000000000000011018339
hapcut2hapcut2Robust and accurate haplotype assembly for diverse sequencing technologieshapcut2hapcut2HapCUT2HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to "just work" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.mdHaplotype mapping, Variant classificationUp-to-datehttps://github.com/vibansal/HapCUT2Assemblyhapcut2galaxy-australiahttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut21.3.4hapcut21.3.4Haplotype mapping, Variant classification010001000000000000000000000000000000000000
hapoghapogHapo-G - Haplotype-Aware Polishing of GenomeshapoghapogHapo-GHapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes.Genome assembly, Optimisation and refinementSequence assembly, GenomicsUp-to-datehttps://github.com/institut-de-genomique/HAPO-GAssemblyhapogiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hapoghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog1.3.8hapog1.3.8Genome assembly, Optimisation and refinementSequence assembly, Genomics001100110000000000000000000000000000010036295
happysom.pyA tool to perform comparisons only based on chromosome, position, and allele identity for comparison of somatic callsets.hap.pyhap.pyhap.pyThis is a set of programs based on htslib to benchmark variant calls against gold standard truth datasets.To compare a VCF against a gold standard dataset, use the following commmand line to perform genotype-level haplotype comparison.Variant calling, Sequence analysis, GenotypingGenomics, DNA polymorphismTo updatehttps://github.com/Illumina/hap.pyVariant Analysishappyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/happyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/happy0.3.14hap.py0.3.15Variant calling, Sequence analysis, GenotypingGenomics, DNA polymorphism000000000000000000000000000000000000000000
heatmap2ggplot2_heatmap2heatmap.2 function from the R gplots packageTo updatehttps://github.com/cran/gplotsVisualizationggplot2_heatmap2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/heatmap2https://github.com/galaxyproject/tools-iuc/tree/main/tools/heatmap23.1.3.1r-gplots2.17.01111111100000000000010100100000000000110195344240
heinzheinz_bum, heinz, heinz_scoring, heinz_visualizationAn algorithm for identification of the optimal scoring subnetwork.heinzbionet, heinzHeinzTool for single-species active module discovery.Pathway or network analysisGenetics, Gene expression, Molecular interactions, pathways and networksTo updatehttps://github.com/ls-cwi/heinzTranscriptomics, Visualization, Statisticsheinziuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/heinzhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz1.0bioconductor-bionet1.62.0Pathway or network analysisGenetics, Gene expression, Molecular interactions, pathways and networks44404440000000000000000000000000000004402421186
hgvsparserhgvsparserParsing and building variant descriptor strings compliant with the HGVS standardTo updatehttps://github.com/VariantEffect/hgvsParseR/tree/masterVariant Analysishgvsparseriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hgvsparser/https://github.com/galaxyproject/tools-iuc/tree/main/tools/hgvsparser0.1.0r-base001000100000000000000000000000000000000000
hicexplorerhicexplorer_chicaggregatestatistic, hicexplorer_chicdifferentialtest, hicexplorer_chicexportdata, hicexplorer_chicplotviewpoint, hicexplorer_chicqualitycontrol, hicexplorer_chicsignificantinteractions, hicexplorer_chicviewpoint, hicexplorer_chicviewpointbackgroundmodel, hicexplorer_hicadjustmatrix, hicexplorer_hicaggregatecontacts, hicexplorer_hicaverageregions, hicexplorer_hicbuildmatrix, hicexplorer_hiccomparematrices, hicexplorer_hiccompartmentspolarization, hicexplorer_hicconvertformat, hicexplorer_hiccorrectmatrix, hicexplorer_hiccorrelate, hicexplorer_hicdetectloops, hicexplorer_hicdifferentialtad, hicexplorer_hicfindrestrictionsites, hicexplorer_hicfindtads, hicexplorer_hichyperoptDetectLoops, hicexplorer_hicinfo, hicexplorer_hicinterintratad, hicexplorer_hicmergedomains, hicexplorer_hicmergeloops, hicexplorer_hicmergematrixbins, hicexplorer_hicnormalize, hicexplorer_hicpca, hicexplorer_hicplotaverageregions, hicexplorer_hicplotdistvscounts, hicexplorer_hicplotmatrix, hicexplorer_hicplotsvl, hicexplorer_hicplotviewpoint, hicexplorer_hicquickqc, hicexplorer_hicsummatrices, hicexplorer_hictransform, hicexplorer_hicvalidatelocationsHiCExplorer: Set of programs to process, analyze and visualize Hi-C data.Up-to-datehttps://github.com/deeptools/HiCExplorerSequence Analysis, Visualizationhicexplorerbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hicexplorer3.7.5hicexplorer3.7.53838384383838400000000000000000000013000000036330108566003
hicstuffhicstuff_pipelineA toolkit to generate and manipulate Hi-C matricesTo updatehttps://github.com/koszullab/hicstuffSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hicstuffhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hicstuff3.1.5hicstuff3.2.3000000000000000000000000000000000000000000
hifiasmhifiasmA fast haplotype-resolved de novo assemblerUp-to-datehttps://github.com/chhylp123/hifiasmAssemblyhifiasmbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hifiasmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm0.19.9hifiasm0.19.911111111000000000000001000000000000001002971410
hifiasm_metahifiasm_metaA hifiasm fork for metagenome assembly using Hifi reads.hifiasm-metahifiasm-metaHifiasm-metaHifiasm_meta - de novo metagenome assembler, based on hifiasm, a haplotype-resolved de novo assembler for PacBio Hifi reads.Sequence assemblySequence assembly, MetagenomicsTo updatehttps://github.com/xfengnefx/hifiasm-metaMetagenomicshifiasm_metagalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hifiasm_metahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm_meta0.3.1hifiasm_metahamtv0.3.1Sequence assemblySequence assembly, Metagenomics011001100000000000000000000000000000010012137
hisat2hisat2HISAT2 is a fast and sensitive spliced alignment program.hisat2hisat2HISAT2Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome).Sequence alignmentRNA-seqUp-to-datehttp://ccb.jhu.edu/software/hisat2/Assemblyhisat2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat22.2.1hisat22.2.1Sequence alignment11111111000000000000101000000100000001104183299104
hivclusteringhivclusteringInfers transmission networks from pairwise distances inferred by tn93To updatehttps://pypi.org/project/hivclustering/Next Gen Mappershivclusteringiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hivclustering/https://github.com/galaxyproject/tools-iuc/tree/main/tools/hivclustering1.3.1python-hivclustering1.6.8000000000000000000000000000000000000000000
hmmer3hmmer_alimask, hmmer_hmmalign, hmmer_hmmbuild, hmmer_hmmconvert, hmmer_hmmemit, hmmer_hmmfetch, hmmer_hmmscan, hmmer_hmmsearch, hmmer_jackhmmer, hmmer_nhmmer, hmmer_nhmmscan, hmmer_phmmerHMMER is used for searching sequence databases for homologs of proteinsequences, and for making protein sequence alignments. It implementsmethods using probabilistic models called profile hidden Markov models(profile HMMs).hmmer3hmmer3HMMER3This tool is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models. The new HMMER3 project, HMMER is now as fast as BLAST for protein search.Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Sequence generation, Data retrieval, Statistical calculation, Database search, Formatting, Database search, Database search, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Database search, Sequence database searchSequence analysis, Sequence sites, features and motifs, Gene and protein familiesUp-to-datehttp://hmmer.org/Sequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3https://github.com/galaxyproject/tools-iuc/tree/main/tools/hmmer33.4hmmer3.4Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Data retrieval, Statistical calculation, Formatting, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Sequence database searchSequence analysis, Sequence sites, features and motifs, Gene and protein families0121212012121200001200000000012000000000000001212043933702
homerhomer_annotatePeaks, homer_findMotifs, homer_findMotifsGenome, homer_gtf_to_annotations, homer_scanMotifGenomeWideHOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and next-gen sequencing analysis.homerhomerhomerHOMER contains a novel motif discovery algorithm that was designed for regulatory element analysis in genomics applications (DNA only, no protein). It is a differential motif discovery algorithm, which means that it takes two sets of sequences and tries to identify the regulatory elements that are specifically enriched in on set relative to the other. It uses ZOOPS scoring (zero or one occurrence per sequence) coupled with the hypergeometric enrichment calculations (or binomial) to determine motif enrichment. HOMER also tries its best to account for sequenced bias in the dataset. It was designed with ChIP-Seq and promoter analysis in mind, but can be applied to pretty much any nucleic acids motif finding problem.Sequence motif discoveryUp-to-datehttp://homer.ucsd.edu/homer/index.htmlSequence Analysisdata_manager_homer_preparseiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/homerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/homer4.11homer4.11Sequence motif discovery00540054000000000000000002000000000005003946937
htseq_counthtseq_countCount aligned reads (SAM/BAM) that overlap genomic features (GFF)htseqhtseqHTSeqPython framework to process and analyse high-throughput sequencing (HTS) dataNucleic acid sequence analysisSequence analysisUp-to-datehttps://readthedocs.org/projects/htseq/Genomic Interval Operations, SAM, Sequence Analysis, RNAhtseq_countlparsonshttps://github.com/galaxyproject/tools-iuc/tree/master/tools/htseq_counthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/htseq_count2.0.5htseq2.0.5Nucleic acid sequence analysisSequence analysis11111111010000000000101001000100000001101419154533
humannhumann, humann_associate, humann_barplot, humann_join_tables, humann_reduce_table, humann_regroup_table, humann_rename_table, humann_renorm_table, humann_rna_dna_norm, humann_split_stratified_table, humann_split_table, humann_strain_profiler, humann_unpack_pathwaysHUMAnN for functionally profiling metagenomes and metatranscriptomes at species-level resolutionhumannhumannhumannHUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data (typically millions of short DNA/RNA reads). This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question “What are the microbes in my community-of-interest doing (or are capable of doing)?”Species frequency estimation, Taxonomic classification, Phylogenetic analysisMetagenomics, PhylogenomicsTo updatehttp://huttenhower.sph.harvard.edu/humannMetagenomicshumanniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/humannhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/humann3.8humann3.9Species frequency estimation, Taxonomic classification, Phylogenetic analysisMetagenomics, Phylogenomics6131313613131300000000000000130000000000000013130104519521
hybpiperhybpiperAnalyse targeted sequence capture dataHybPiperHybPiperHybPiperParalogs and off-target sequences improve phylogenetic resolution in a densely-sampled study of the breadfruit genus (Artocarpus, Moraceae).Recovering genes from targeted sequence capture data.Current version: 1.3.1 (August 2018).-- Read our article in Applications in Plant Sciences (Open Access).HybPiper was designed for targeted sequence capture, in which DNA sequencing libraries are enriched for gene regions of interest, especially for phylogenetics. HybPiper is a suite of Python scripts that wrap and connect bioinformatics tools in order to extract target sequences from high-throughput DNA sequencing reads.Sequence trimming, Sequence assembly, Read mappingPhylogenetics, Plant biology, Gene transcripts, Sequence assembly, PhylogenomicsTo updatehttps://github.com/mossmatters/HybPiperSequence Analysis, Phylogeneticshybpiperiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hybpiperhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hybpiper2.1.6hybpiper2.2.0Sequence trimming, Sequence assembly, Read mappingPhylogenetics, Plant biology, Gene transcripts, Sequence assembly, Phylogenomics011001100000000000000000000000000000000000
hyphyhyphy_absrel, hyphy_annotate, hyphy_bgm, hyphy_busted, hyphy_cfel, hyphy_conv, hyphy_fade, hyphy_fel, hyphy_fubar, hyphy_gard, hyphy_meme, hyphy_prime, hyphy_relax, hyphy_slac, hyphy_sm19, hyphy_strike_ambigs, hyphy_summaryHypothesis Testing using PhylogeniesHyPhyHyPhyHyPhySoftware package for the analysis of genetic sequences using techniques in phylogenetics, molecular evolution, and machine learning.Statistical calculationPhylogeny, Small molecules, Molecular interactions, pathways and networksTo updatehttp://www.hyphy.orgPhylogeneticsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/hyphy2.5.47hyphy2.5.62Statistical calculationPhylogeny, Small molecules, Molecular interactions, pathways and networks172172172172000000000000000000000200000001712016110370
hypohypoSuper Fast & Accurate Polisher for Long Read Genome AssembliesHyPoHyPoHyPoHyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes.Optimisation and refinement, Genome assemblySequence assembly, GenomicsUp-to-datehttps://github.com/kensung-lab/hypoAssemblyhypoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hypohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo1.0.3hypo1.0.3Optimisation and refinement, Genome assemblySequence assembly, Genomics001000100000000000000000000000000000010039354
icescreenicescreenICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes.icescreenicescreenICEscreenA tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures.Database search, Protein feature detectionMobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variationTo updatehttps://icescreen.migale.inrae.fr/Genome annotationicescreeniuchttps://forgemia.inra.fr/ices_imes_analysis/icescreenhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen1.3.1icescreen1.3.2Database search, Protein feature detectionMobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation000000000000000000000010000000000000000000
idba_udidba_hybrid, idba_tran, idba_udWrappers for the idba assembler variants.idbaidbaIDBAA short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system.Sequence assemblySequence assemblyTo updatehttps://i.cs.hku.hk/~alse/hkubrg/projects/index.htmlAssemblyidbaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_udhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_udidba1.1.3Sequence assemblySequence assembly3033303300000000000000000000000000000330691127
idridrGalaxy wrappers for the IDR package from Nathan BoleuTo updatehttps://github.com/nboley/idrSequence Analysisidriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idr/https://github.com/galaxyproject/tools-iuc/tree/main/tools/idr2.0.3idr2.0.4.21010101000000000000000000000010000000110302873
idr_downloadidr_download_by_idsImage Data Resource downloading toolTo updatehttps://idr.openmicroscopy.orgData Sourceidr_download_by_idsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idr_downloadhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/idr_download0.44.1omero-py5.11.1011101110000000000000000000000000000011010361
iedb_apiiedb_apiGet epitope binding predictions from IEDB-APITo updatehttp://tools.immuneepitope.org/main/tools-api/Data Source, Sequence Analysisiedb_apiiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/iedb_apihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/iedb_api2.15.2python0010001000000000000000000000000000000110121506
infercnvinfercnvInfer Copy Number Variation from Single-Cell RNA-Seq DataUp-to-datehttps://github.com/broadinstitute/infercnvTranscriptomics, Variant Analysisinfercnviuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/infercnvhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/infercnv1.20.0bioconductor-infercnv1.20.0001000100000000000000000000000000000000000
instraininstrain_compare, instrain_profileInStrain is a tool for analysis of co-occurring genome populations from metagenomesinstraininstrainInStrainInStrain is a tool for analysis of co-occurring genome populations from metagenomes that allows highly accurate genome comparisons, analysis of coverage, microdiversity, and linkage, and sensitive SNP detection with gene localization and synonymous non-synonymous identificationSNP detection, Genome comparisonMapping, MetagenomicsTo updatehttps://instrain.readthedocs.io/en/latest/#Metagenomicsinstrainiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/instrainhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/instrain1.5.3instrain1.9.0SNP detection, Genome comparisonMapping, Metagenomics0020002000000000000000000000000000000200594
integron_finderintegron_finder"IntegronFinder identify integrons with high accuracy and sensitivity.It searches for attC sites using covariance models, for integron-integrases using HMM profiles, and for other features (promoters, attI site) using pattern matching"integron_finderintegron_finderIntegron FinderA tool to detect Integron in DNA sequences.Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotationFunctional genomics, Mobile genetic elements, Molecular biology, Sequence analysisUp-to-datehttps://github.com/gem-pasteur/Integron_FinderSequence Analysisintegronfinderiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/integron_finderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/integron_finder2.0.5integron_finder2.0.5Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotationFunctional genomics, Mobile genetic elements, Molecular biology, Sequence analysis01110111000000000000111000000000000001005852965
intermine_galaxy_exchangegalaxy_intermine_exchangeInterMine ExporterTo updatehttps://github.com/intermineConvert Formatsintermine_galaxy_exchangeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/intermine_galaxy_exchangehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/intermine_galaxy_exchange0.0.1coreutils8.251110111000000000000000000000000000000110144
interproscaninterproscanInterproscan queries the interpro database and provides annotations.interproscan_ebiinterproscan_ebiInterProScan (EBI)Scan sequences against the InterPro protein signature databases.Sequence motif recognition, Protein feature detectionGene and protein families, Sequence analysisTo updatehttp://www.ebi.ac.uk/Tools/pfa/iprscan5/Sequence Analysisinterproscanbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interproscanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/interproscan5.59-91.0interproscan5.59_91.0Sequence motif recognition, Protein feature detectionGene and protein families, Sequence analysis111111110100100000000000000000000000011067735243
interval2mafInterval2Maf1Extract MAF blocks given a set of intervalsbx-pythonbx-pythonbx-pythonTools for manipulating biological data, particularly multiple sequence alignments.Sequence analysisTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/Genomic Interval Operationsinterval2mafiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/https://github.com/galaxyproject/tools-iuc/tree/main/tools/interval2maf1.0.1+galaxy1bx-python0.12.0Sequence analysis11111111010010000001110100000000000001105105
interveneintervene_pairwise, intervene_upsetCreate pairwise and upset plotsinterveneinterveneInterveneTool for intersection and visualization of multiple gene or genomic region sets. Intervene contains three modules: venn to generate Venn diagrams of up to six sets, upset to generate UpSet plots of multiple sets, and pairwise to compute and visualize intersections of multiple sets as clustered heat maps.Sequence comparison, Sequence visualisationComputational biologyUp-to-datehttps://intervene.readthedocs.ioStatisticsinterveneiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/intervenehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/intervene0.6.5intervene0.6.5Sequence comparison, Sequence visualisationComputational biology20202020000000000000000000000000000002201361497
iqtreeiqtreeEfficient phylogenomic software by maximum likelihoodiqtreeiqtreeiqtreeA fast and effective stochastic algorithm to infer phylogenetic trees by maximum likelihood. IQ-TREE compares favorably to RAxML and PhyML in terms of likelihoods with similar computing timePhylogenetic analysis, Sequence analysisPhylogeneticsUp-to-datehttp://www.iqtree.org/Phylogeneticsiqtreeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/iqtree/https://github.com/galaxyproject/tools-iuc/tree/main/tools/iqtree2.3.6iqtree2.3.6Phylogenetic analysis, Sequence analysisPhylogenetics111011100000000000001010010000000000011068121598
irissvirissvRefine insertion sequencesTo updatehttps://github.com/mkirsche/IrisVariant Analysisirissviuchttps://github.com/galaxyproject/tools-iuc/tools/irissv/https://github.com/galaxyproject/tools-iuc/tree/main/tools/irissv1.0.5samtools1.200010001000000000000000000000000000000110429
isescanisescan"ISEScan is a pipeline to identify IS (Insertion Sequence) elements in genome and metagenomebased on profile hidden Markov models constructed from manually curated IS elements."ISEScanISEScanISEScanAutomated identification of insertion sequence elements in prokaryotic genomes.Structural variation detectionGenomics, DNA structural variation, Sequence analysis, Genetic variationTo updatehttps://github.com/xiezhq/ISEScanSequence AnalysisISEScaniuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/isescanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/isescan1.7.2.3isescan1.7.2.1Structural variation detectionGenomics, Sequence analysis, Genetic variation01110111000000000000101000000000000001005057581
isoformswitchanalyzerisoformswitchanalyzerStatistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms.IsoformSwitchAnalyzeRIsoformSwitchAnalyzeRIsoformSwitchAnalyzeREnables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well.Sequence comparison, Sequence analysisComputational biology, Gene transcriptsTo updatehttps://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.htmlTranscriptomics, RNA, Statisticsisoformswitchanalyzeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer1.20.0bioconductor-isoformswitchanalyzer2.2.0Sequence comparison, Sequence analysisComputational biology, Gene transcripts111111110000000000000000000000000000010029822
ivarivar_consensus, ivar_filtervariants, ivar_removereads, ivar_trim, ivar_variantsiVar is a computational package that contains functions broadly useful for viral amplicon-based sequencingUp-to-datehttps://github.com/andersen-lab/ivarSequence Analysisivariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ivar/https://github.com/galaxyproject/tools-iuc/tree/main/tools/ivar1.4.3ivar1.4.3555555550000000000000050040004000000055011711224275
iwtomicsiwtomics_loadandplot, iwtomics_plotwithscale, iwtomics_testandplotInterval-Wise Testing for Omics DataiwtomicsiwtomicsIWTomicsImplementation of the Interval-Wise Testing (IWT) for omics data. This inferential procedure tests for differences in "Omics" data between two groups of genomic regions (or between a group of genomic regions and a reference center of symmetry), and does not require fixing location and scale at the outset.Differential gene expression analysis, Differentially-methylated region identification, Peak calling, Genome annotation, ComparisonStatistics and probabilityTo updatehttps://bioconductor.org/packages/release/bioc/html/IWTomics.htmlStatisticsiwtomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/iwtomicshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/iwtomics1.0.0bioconductor-iwtomics1.26.0Differential gene expression analysis, Peak calling, Genome annotation, ComparisonStatistics and probability33303330000000000000000000000000000003303542
jasminesvjasminesvMerge structural variants across samplesTo updatehttps://github.com/mkirsche/Jasmine/Variant Analysisjasminesviuchttps://github.com/galaxyproject/tools-iuc/jasminesv/https://github.com/galaxyproject/tools-iuc/tree/main/tools/jasminesv1.0.11jasminesv1.1.51010101000000000000000000000000000000110330
jbrowsejbrowse_to_standalone, jbrowseJBrowse Genome Browser integrated as a Galaxy TooljbrowsejbrowseJBrowseSlick, speedy genome browser with a responsive and dynamic AJAX interface for visualization of genome data. Being developed by the GMOD project as a successor to GBrowse.Genome visualisationGenomicsUp-to-datehttps://jbrowse.orgSequence Analysisjbrowseiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowsehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jbrowse1.16.11jbrowse1.16.11Genome visualisationGenomics2222222200000000000020200000020000000220234618229
jcvi_gff_statsjcvi_gff_statsCompute statistics from a genome annotation in GFF3 format (using JCVI Python utilities)To updatehttps://github.com/tanghaibao/jcviSequence Analysisjcvi_gff_statsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jcvi_gff_statshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jcvi_gff_stats0.8.4jcvi1.4.1611111111000000000000000000000000000001102552469
jellyfishjellyfishJellyfish is a tool for fast, memory-efficient counting of k-mers in DNAJellyfishJellyfishJellyfishA command-line algorithm for counting k-mers in DNA sequence.k-mer countingSequence analysis, GenomicsTo updatehttps://github.com/gmarcais/JellyfishAssemblyjellyfishiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfishhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfishkmer-jellyfish2.3.1k-mer countingSequence analysis, Genomics0111011100000000000000100000000000000110911138
join_files_by_idjoin_files_by_idThis tool will join datasets according to a column with identifierTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_idText Manipulationjoin_files_by_idiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_idhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/join_files_by_id1.0r-data.table1.11.6000000000000000000000010000000000000000000
jqjqJQ is a lightweight and flexible command-line JSON processorTo updatehttps://stedolan.github.io/jq/Text Manipulationjqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jq1.0jq1.51111111100000000000000000100000000000110212312
jvarkitjvarkit_wgscoverageplotterJvarkit : Java utilities for BioinformaticsUp-to-datehttps://lindenb.github.io/jvarkit/SAMjvarkitiuchttps://github.com/galaxyproject/iuc/tree/master/tools/jvarkithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jvarkit20201223jvarkit-wgscoverageplotter2020122310101010000000000000001000000000000001002496285
kallistokallisto_pseudo, kallisto_quantkallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment.kallistokallistokallistoA program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment.Gene expression profilingTranscriptomics, RNA-seq, Gene expressionTo updatehttps://pachterlab.github.io/kallisto/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto0.48.0kallisto0.51.0Gene expression profilingTranscriptomics222222220000000000000220000000000000022029924155
kc-alignkc-alignKc-Align custom toolkc-alignkc-alignkc-alignA fast and accurate tool for performing codon-aware multiple sequence alignmentsMultiple sequence alignmentMappingUp-to-datehttps://github.com/davebx/kc-alignSequence Analysiskc_aligniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kc-alignhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kc-align1.0.2kcalign1.0.2Multiple sequence alignmentMapping101010100000000000000000000000000000011019363
khmerkhmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_medianIn-memory nucleotide sequence k-mer counting, filtering, graph traversal and morekhmerkhmerkhmerkhmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data.Standardisation and normalisation, De-novo assemblySequence assemblyUp-to-datehttps://khmer.readthedocs.org/Assembly, Next Gen Mapperskhmeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/khmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer3.0.0a3khmer3.0.0a3Standardisation and normalisation, De-novo assemblySequence assembly8880888000000000000001100000010000000880632022
kingkingKinship-based INference for GwasUp-to-datehttp://people.virginia.edu/~wc9c/KING/Variant Analysiskingiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/king/https://github.com/galaxyproject/tools-iuc/tree/main/tools/king2.2.7king2.2.7001000100000000000000000000000000000010035
kleboratekleborateScreen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC)kleboratekleborateKleborateGenomic surveillance framework and global population structure for Klebsiella pneumoniae.Kleborate is a tool to screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) for:.A manuscript describing the Kleborate software in full is currently in preparation. In the meantime, if you use Kleborate, please cite the preprint: Lam, MMC. et al. Genomic surveillance framework and global population structure for Klebsiella pneumoniae. bioRxiv (2020).Multilocus sequence typing, Genome assembly, Virulence predictionPublic health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencingTo updatehttps://github.com/katholt/Kleborate/wikiMetagenomicskleborateiuchttps://github.com/katholt/Kleboratehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kleborate2.3.2kleborate3.0.6Multilocus sequence typing, Genome assembly, Virulence predictionPublic health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing001000100000000000000010000000000000010038319
kmakma_mapMap with KMATo updatehttps://bitbucket.org/genomicepidemiology/kmaNext Gen Mapperskmaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kmahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kma1.4.14kma1.4.15001000100000000000000000000000000000011000
kofamscankofamscanGene function annotation tool based on KEGG Orthology and hidden Markov modelkofamscankofamscankofamscanKofamScan is a gene function annotation tool based on KEGG Orthology and hidden Markov model. You need KOfam database to use this tool.Sequence analysis, Gene functional annotationGenomicsUp-to-datehttps://github.com/takaram/kofam_scanSequence Analysiskofamscaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kofamscanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kofamscan1.3.0kofamscan1.3.0Sequence analysis, Gene functional annotationGenomics001100110000000000000000000000000000010033594
krakenkraken-filter, kraken-mpa-report, kraken-report, kraken-translate, krakenKraken is a system for assigning taxonomic labels to short DNAsequences, usually obtained through metagenomic studies. Previous attempts by otherbioinformatics software to accomplish this task have often used sequence alignmentor machine learning techniques that were quite slow, leading to the developmentof less sensitive but much faster abundance estimation programs. Kraken aims toachieve high sensitivity and high speed by utilizing exact alignments of k-mersand a novel classification algorithm.krakenkrakenKrakenSystem for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. It aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm.Taxonomic classificationTaxonomy, MetagenomicsTo updatehttp://ccb.jhu.edu/software/kraken/Metagenomicskrakendevteamhttps://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken/https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/krakenkraken1.1.1Taxonomic classificationTaxonomy, Metagenomics5555555500000000001010000000000000200550120933778
kraken2kraken2Kraken2 for taxonomic designation.kraken2kraken2kraken2Kraken 2 is the newest version of Kraken, a taxonomic classification system using exact k-mer matches to achieve high accuracy and fast classification speeds. This classifier matches each k-mer within a query sequence to the lowest common ancestor (LCA) of all genomes containing the given k-mer. The k-mer assignments inform the classification algorithm.Taxonomic classificationTaxonomy, MetagenomicsUp-to-datehttp://ccb.jhu.edu/software/kraken/Metagenomicskraken2iuchttps://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken2/kraken2/https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken2/kraken22.1.3kraken22.1.3Taxonomic classificationTaxonomy, Metagenomics11111111000000000000111001000000001001102367185308
kraken_biomkraken_biomCreate BIOM-format tables (http://biom-format.org) from Kraken output (http://ccb.jhu.edu/software/kraken/)Up-to-datehttps://github.com/smdabdoub/kraken-biomMetagenomicskraken_biomiuchttps://github.com/smdabdoub/kraken-biomhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_biom1.2.0kraken-biom1.2.001110111000000000000100000000000000001101821444
kraken_taxonomy_reportkraken_taxonomy_reportKraken taxonomy reportKraken-Taxonomy-ReportKraken-Taxonomy-ReportKraken-Taxonomy-Reportview report of classification for multiple samplesVisualisation, ClassificationMetagenomics, TaxonomyTo updatehttps://github.com/blankenberg/Kraken-Taxonomy-ReportMetagenomicskraken_taxonomy_reportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kraken_taxonomy_reporthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_taxonomy_report0.0.3biopython1.70Visualisation, ClassificationMetagenomics, Taxonomy11101110000000000000000000000000000001103542527
krakentoolskrakentools_alpha_diversity, krakentools_beta_diversity, krakentools_combine_kreports, krakentools_extract_kraken_reads, krakentools_kreport2krona, krakentools_kreport2mpaKrakenTools is a suite of scripts to be used alongside the KrakenkrakentoolskrakentoolsKrakenToolsKrakenTools provides individual scripts to analyze Kraken/Kraken2/Bracken/KrakenUniq output filesVisualisation, AggregationTaxonomy, MetagenomicsUp-to-datehttps://github.com/jenniferlu717/KrakenToolsMetagenomicskrakentoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/krakentoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/krakentools1.2krakentools1.2Visualisation, AggregationTaxonomy, Metagenomics666666660000000000001460000000000000060070316525
krocuskrocusPredict MLST directly from uncorrected long readskrocuskrocuskrocusPredict MLST directly from uncorrected long readsMultilocus sequence typing, k-mer countingPublic health and epidemiologyTo updatehttps://github.com/quadram-institute-bioscience/krocusSequence Analysiskrocusiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/krocushttps://github.com/galaxyproject/tools-iuc/tree/main/tools/krocus1.0.1krocus1.0.3Multilocus sequence typing, k-mer countingPublic health and epidemiology001000100000000000000010000000000000000000
lastlast_al, last_db, last_split, last_train, last_maf_convertLAST finds similar regions between sequences.lastlastLASTShort read alignment program incorporating quality scoresSequence alignmentGenomics, Comparative genomicsTo updatehttp://last.cbrc.jp/Sequence Analysislastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/last1205last1574Sequence alignmentComparative genomics005500550000000000000000000000000000055041227
lastzlastz_wrapper_2, lastz_d_wrapperGalaxy wrappers for the Lastz and Lastz_dlastzlastzLASTZA tool for (1) aligning two DNA sequences, and (2) inferring appropriate scoring parameters automatically.Sequence alignment, Read mappingGenomicsUp-to-datehttps://github.com/lastz/lastzNext Gen Mapperslastzdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lastzhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/lastz1.04.22lastz1.04.22Sequence alignment, Read mappingGenomics222222220000000000002020020000000000022018883331
lcrgenielcrgenieLigase Chain Reaction GenieTo updatehttps://github.com/neilswainston/LCRGenieSynthetic Biologylcrgenieiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lcrgeniehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/lcrgenie1.0.2lcr_genie000000000000000000000000000000000000000000
legstalegstaPerforms in silico Legionella pneumophila sequence based typing.legstalegstalegstaPerforms in silico Legionella pneumophila sequence based typingSequence analysisPublic health and epidemiologyUp-to-datehttps://github.com/tseemann/legstaSequence Analysislegstaiuchttps://github.com/tseemann/legstahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/legsta0.5.1legsta0.5.1Sequence analysisPublic health and epidemiology0010001000000000000000000000000000000100755
length_and_gc_contentlength_and_gc_contentGets gene length and gc content from a fasta and a GTF fileTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_contentFasta Manipulation, Statistics, RNA, Micro-array Analysislength_and_gc_contentiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_contenthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/length_and_gc_content0.1.2r-optparse1.3.211111111000000000000100001000100000001103224090
limma_voomlimma_voomPerform RNA-Seq differential expression analysis using limma voom pipelinelimmalimmalimmaData analysis, linear models and differential expression for microarray data.RNA-Seq analysisMolecular biology, GeneticsUp-to-datehttp://bioconductor.org/packages/release/bioc/html/limma.htmlTranscriptomics, RNA, Statisticslimma_voomiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voomhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom3.58.1bioconductor-limma3.58.1RNA-Seq analysisMolecular biology, Genetics1111111100000000000000000000000000000110101220344
lineagespotlineagespotIdentification of SARS-CoV-2 related metagenomic mutations based on a single (or a list of) variant(s) file(s)lineagespotlineagespotlineagespotLineagespot is a framework written in R, and aims to identify and assign different SARS-CoV-2 lineages based on a single variant file (i.e., variant calling format).Variant callingMetagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variationTo updatehttps://www.bioconductor.org/packages/release/bioc/html/lineagespot.htmlMetagenomics, Sequence Analysislineagespotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lineagespothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/lineagespot1.6.0r-baseVariant callingMetagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variation0010001000000000000000000000000000000100237
linkslinksScaffold genome assemblies with long reads.linkslinksLINKSLINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS.Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimmingSequence assembly, Mapping, SequencingUp-to-datehttps://github.com/bcgsc/LINKSAssemblylinksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/linkshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/links2.0.1links2.0.1Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimmingSequence assembly, Mapping, Sequencing011001100000000000000010000000000000010077405
lofreqlofreq_alnqual, lofreq_call, lofreq_filter, lofreq_indelqual, lofreq_viterbiLoFreq is a fast and sensitive variant-caller for inferring SNVs and indelsfrom next-generation sequencing data. It makes full use of base-call qualitiesand other sources of errors inherent in sequencing (e.g. mapping or base/indelalignment uncertainty), which are usually ignored by other methods or onlyused for filtering.Up-to-datehttps://csb5.github.io/lofreq/Variant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lofreqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/lofreq2.1.5lofreq2.1.5555455540000000000000010040004000000055017914150903
lorikeetlorikeet_spoligotypeTools for M. tuberculosis DNA fingerprinting (spoligotyping)lorikeetlorikeetlorikeetTools for M. tuberculosis DNA fingerprinting (spoligotyping)Sequence analysis, GenotypingGenotype and phenotypeUp-to-datehttps://github.com/AbeelLab/lorikeetSequence Analysislorikeet_spoligotypeiuchttps://github.com/AbeelLab/lorikeethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/lorikeet20lorikeet20Sequence analysis, GenotypingGenotype and phenotype00100010000000000000000000000000000001009647
lumpy_svlumpy_prep, lumpy_svLUMPY - a general probabilistic framework for structural variant discoveryUp-to-datehttp://layerlab.org/software/Variant Analysislumpy_sviuchttps://github.com/arq5x/lumpy-svhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/lumpy_sv0.3.1lumpy-sv0.3.100200020000000000000000000000000000002001051164
m6anetm6anetm6anet to detect m6A RNA modifications from nanopore datam6Anetm6Anetm6AnetDetection of m6A from direct RNA sequencing using a Multiple Instance Learning framework.Quantification, Imputation, Gene expression profilingRNA-Seq, Transcriptomics, RNA, Machine learningUp-to-datehttps://m6anet.readthedocs.io/en/latestSequence Analysism6anetiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/m6anethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/m6anet2.1.0m6anet2.1.0Quantification, Imputation, Gene expression profilingRNA-Seq, Transcriptomics, RNA, Machine learning001000100000000000000000000000000000000003
maaslin2maaslin2MaAsLin2 is comprehensive R package for efficiently determining multivariable association between microbial meta'omic features and clinical metadata.maaslin2maaslin2MaAsLin2MaAsLin2 is comprehensive R package for efficiently determining multivariable association between phenotypes, environments, exposures, covariates and microbial meta’omic features. MaAsLin2 relies on general linear models to accommodate most modern epidemiological study designs, including cross-sectional and longitudinal, and offers a variety of data exploration, normalization, and transformation methods.Filtering, Statistical calculation, Standardisation and normalisation, VisualisationMetagenomics, Statistics and probabilityTo updatehttp://huttenhower.sph.harvard.edu/maaslinMetagenomicsmaaslin2iuchttps://github.com/biobakery/Maaslin2https://github.com/galaxyproject/tools-iuc/tree/main/tools/maaslin21.16.0bioconductor-maaslin21.18.0Filtering, Standardisation and normalisation, VisualisationMetagenomics, Statistics and probability001000100000000000000000000000000000010029188
macs2macs2_bdgbroadcall, macs2_bdgcmp, macs2_bdgdiff, macs2_bdgpeakcall, macs2_callpeak, macs2_filterdup, macs2_predictd, macs2_randsample, macs2_refinepeakMACS - Model-based Analysis of ChIP-SeqmacsmacsMACSModel-based Analysis of ChIP-seq data.Peak calling, Enrichment analysis, Gene regulatory network analysisChIP-seq, Molecular interactions, pathways and networks, Transcription factors and regulatory sitesUp-to-datehttps://github.com/taoliu/MACSSequence Analysis, Statisticsmacs2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2https://github.com/galaxyproject/tools-iuc/tree/main/tools/macs22.2.9.1macs22.2.9.1Peak calling, Enrichment analysis, Gene regulatory network analysisChIP-seq, Molecular interactions, pathways and networks, Transcription factors and regulatory sites9999999909000000000099000000090000000990196984521
maf_statsmaf_stats1MAF Coverage statisticsTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/Genomic Interval Operationsmaf_statsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/https://github.com/galaxyproject/tools-iuc/tree/main/tools/maf_stats1.0.2+galaxy01111111101101001000111010000010000100110321
maftoaxtmaftoaxtConvert dataset from MAF to axt formatUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttp://hgdownload.cse.ucsc.edu/admin/exe/Convert Formatsucsc_maftoaxtiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/maftoaxthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/maftoaxt377ucsc-maftoaxt469Sequence analysis101010100000000000000000000000000000000000
mageckmageck_count, mageck_gsea, mageck_mle, mageck_pathway, mageck_testModel-based Analysis of Genome-wide CRISPR-Cas9 Knockout (MAGeCK) is a computational tool to identifyimportant genes from the recent genome-scale CRISPR-Cas9 knockout screens technology.mageckmageckMAGeCKComputational tool to identify important genes from the recent genome-scale CRISPR-Cas9 knockout screens technology.Genetic variation analysisGenetics, Genetic variation, GenomicsTo updatehttps://sourceforge.net/projects/mageck/Genome editingiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mageckhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mageck0.5.9.2mageck0.5.9.5Genetic variation analysisGenetics, Genetic variation, Genomics355535550000000000000500000000000000055058710503
makermaker, maker_map_idsMAKER is a portable and easily configurable genome annotation pipeline.Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases.makermakerMAKERPortable and easily configurable genome annotation pipeline. It’s purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases.Genome annotationGenomics, DNA, Sequence analysisTo updatehttp://www.yandell-lab.org/software/maker.htmlSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/makerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/maker2.31.11maker3.01.03Genome annotationGenomics, DNA, Sequence analysis22222222000000000000001000000000000002205545591
maltmalt_runAligns an input sequence (DNA or proteins) against an index representing a collection of reference DNA or protein sequences.To updatehttps://github.com/husonlab/maltNext Gen Mappersmalt_runiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/malthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/malt0.5.3malt0.620010001000000000000000000000000000000100622
map_param_valuemap_param_valueMap a parameter value to another valueTo updateText Manipulationmap_param_valueiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/map_param_valuehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/map_param_value0.2.0111011100000000000000000000000000000000091528
mapseqmapseqfast and accurate sequence read classification tool designed to assign taxonomy and OTU classifications to ribosomal RNA sequences.mapseqmapseqMAPseqHighly efficient k-mer search with confidence estimates, for rRNA sequence analysis .k-mer countingFunctional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifsTo updatehttps://github.com/jfmrod/MAPseqMetagenomicsmapseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mapseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mapseq2.1.1perlk-mer countingFunctional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifs00100010000000000000001000000000000001002167
mashmash_screen, mash_sketchFast genome and metagenome distance estimation using MinHashmashmashMashFast genome and metagenome distance estimation using MinHash.Sequence distance matrix generationGenomics, Metagenomics, Statistics and probability, Sequence analysis, DNA mutationUp-to-datehttps://github.com/marbl/MashMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mashhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mash2.3mash2.3Sequence distance matrix generationMetagenomics, Statistics and probability, Sequence analysis, DNA mutation2222222200000000000000200000000000000220279763
mashmapmashmapFast local alignment boundariesUp-to-datehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmapSequence Analysismashmapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mashmap3.1.3mashmap3.1.3101010100000000000000000000000000000000000
masigpromasigproIdentify significantly differential expression profiles in time-course microarray experimentsmasigpromasigpromaSigProRegression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments.Regression analysisGene expression, Molecular genetics, Microarray experiment, RNA-SeqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/maSigPro.htmlTranscriptomics, RNA, Statisticsmasigproiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/masigprohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro1.49.3coreutils8.25Regression analysisGene expression, Microarray experiment, RNA-Seq101010100000000000000000000000000000011013576
maxbin2maxbin2clusters metagenomic contigs into binsmaxbinmaxbinMaxBinSoftware for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm.Sequence assemblyMetagenomics, Sequence assembly, MicrobiologyTo updatehttps://downloads.jbei.org/data/microbial_communities/MaxBin/MaxBin.htmlMetagenomicsmaxbin2mbernthttps://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/https://github.com/galaxyproject/tools-iuc/tree/main/tools/maxbin2maxbin22.2.7Sequence assemblyMetagenomics, Sequence assembly, Microbiology11111111000000000000001000000000001001101182059
mclmclThe Markov Cluster Algorithm, a cluster algorithm for graphsmclmclMCLMCL is a clustering algorithm widely used in bioinformatics and gaining traction in other fields.Clustering, Network analysis, Gene regulatory network analysisMolecular interactions, pathways and networksUp-to-datehttps://micans.org/mcl/man/mcl.htmlSequence Analysismcliuchttps://github.com/galaxyproject/tools-iuc/tree/master/mclhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mcl22.282mcl22.282Clustering, Gene regulatory network analysisMolecular interactions, pathways and networks00100010000000000000000000000000000001101029
medakamedaka_consensus, medaka_consensus_pipeline, medaka_snp, medaka_variantSequence correction provided by ONT ResearchmedakamedakaMedakamedaka is a tool to create consensus sequences and variant calls from nanopore sequencing data. This task is performed using neural networks applied a pileup of individual sequencing reads against a draft assembly.Base-calling, Variant calling, Sequence assemblySequence assembly, Machine learningTo updatehttps://github.com/nanoporetech/medakaSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/medakahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/medaka1.7.2medaka1.11.3Base-calling, Variant calling, Sequence assemblySequence assembly, Machine learning333333330000000000000030000002000000033076899863
megahitmegahitAn ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph.megahitmegahitMEGAHITSingle node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.Genome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyUp-to-datehttps://github.com/voutcn/megahitSequence Analysis, Assembly, Metagenomicsmegahitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit1.2.9megahit1.2.9Genome assemblyMetagenomics, Sequencing, Sequence assembly11111111000000000000111001000100001001105489530
megahit_contig2fastgmegahit_contig2fastgA subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg)megahitmegahitMEGAHITSingle node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.Genome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyTo updatehttps://github.com/voutcn/megahit/blob/master/tools/toolkit.cppSequence Analysis, Assembly, Metagenomicsmegahit_contig2fastgiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg1.1.3megahit1.2.9Genome assemblyMetagenomics, Sequencing, Sequence assembly111111110000000000000010000001000000011054475
meganmegan_blast2lca, megan_blast2rma, megan_daa2info, megan_daa2rma, megan_daa_meganizer, megan_read_extractor, megan_sam2rmaMEGAN Community Edition - Interactive exploration and analysis of large-scale microbiome sequencing data. MEGAN is a tool for studying the taxonomic content of a set of DNA reads, typically collected in a metagenomics project.In a preprocessing step, a sequence alignment of all reads against a suitable database of reference DNA or proteinsequences must be performed to produce an input file for the program. MEGAN is suitable for DNA reads (metagenomedata), RNA reads (metatranscriptome data), peptide sequences (metaproteomics data) and, using a suitable synonymsfile that maps SILVA ids to taxon ids, for 16S rRNA data (amplicon sequencing).meganmeganMEGANMetagenome Analysis Software - MEGAN (MEtaGenome ANalyzer) is a new computer program that allows laptop analysis of large metagenomic datasets. In a preprocessing step, the set of DNA reads (or contigs) is compared against databases of known sequences using BLAST or another comparison tool. MEGAN can then be used to compute and interactively explore the taxonomical content of the dataset, employing the NCBI taxonomy to summarize and order the results.Sequence analysis, Taxonomic classificationSequence analysisTo updatehttps://github.com/husonlab/megan-ceSequence Analysismeganiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/meganhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megan6.21.7megan6.25.9Sequence analysis, Taxonomic classificationSequence analysis00700070000000000000000000000000000007002613610
memememe_dreme, meme_fimo, meme_meme, meme_psp_genThe MEME Suite allows the biologist to discover novel motifs in collections of unaligned nucleotideor protein sequences, and to perform a wide variety of other motif-based analyses.meme_memememe_meme, meme_fimomeme_memeAn algorithm that discovers one or more motifs in a collection of DNA or protein sequences by using the technique of expectation maximization to fit a two-component finite mixture model to the set of sequences.Nucleic acid feature detection, Protein feature detection, Statistical calculationData mining, Sequence analysis, Genetic variation, Statistics and probabilityTo updatehttp://meme-suite.org/ChIP-seqmemeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/memehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/meme5.5.6meme5.5.7Nucleic acid feature detection, Protein feature detection, Statistical calculationData mining, Sequence analysis, Genetic variation, Statistics and probability304030400200200000004200000000000000044023522352
meme_chipmeme_chipPerforms motif discovery, motif enrichment analysis and clustering on large nucleotide datasets.To updatehttp://meme-suite.org/ChIP-seqmeme_chipiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/meme_chiphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/meme_chip4.11.2graphicsmagick1.3.2610101010000000000000100000000000000001102876584
meningotypemeningotypeAssign sequence type to N. meningitidis genome assembliesmeningotypemeningotypemeningotypeIn silico typing of Neisseria meningitidis contigs.Genotyping, Multilocus sequence typingMicrobiology, Genotype and phenotypeUp-to-datehttps://github.com/MDU-PHL/meningotypeSequence Analysismeningotypeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotypehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/meningotype0.8.5meningotype0.8.5Multilocus sequence typingMicrobiology, Genotype and phenotype000000000000000000000000000000000000000000
merlinmerlinPedigree Analysis packagemerlinmerlinMerlinCan be used for parametric and non-parametric linkage analysis, regression-based linkage analysis or association analysis for quantitative traits, ibd and kinship estimation, haplotyping, error detection and simulationHaplotype mapping, Genetic mappingGWAS study, MappingUp-to-datehttp://csg.sph.umich.edu/abecasis/Merlin/Variant Analysismerliniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merlin/https://github.com/galaxyproject/tools-iuc/tree/main/tools/merlin1.1.2merlin1.1.2Haplotype mappingGWAS study, Mapping000000000000000000000000000000000000000000
merqurymerqury, merquryplotMerqury is a tool for evaluating genomes assemblies based of k-mer operations.merqurymerquryMerquryReference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose.Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biologyUp-to-datehttps://github.com/marbl/merquryAssemblymerquryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merquryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury1.3merqury1.3Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biology22222222000000000000000000000000000001002442483
merylmeryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_modeMeryl a k-mer counter.merylmerylMerylMeryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu.k-mer countingWhole genome sequencing, Genomics, Sequence analysis, SequencingUp-to-datehttps://github.com/marbl/merylAssemblymeryliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merylhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl1.3merqury1.3k-mer countingWhole genome sequencing, Genomics, Sequence analysis000000000000000000000000000000000000000000
metabat2metabat2_jgi_summarize_bam_contig_depths, metabat2MetaBAT2 (Metagenome Binning based on Abundance and Tetranucleotide frequency) is an automated metagenome binningsoftware that integrates empirical probabilistic distances of genome abundance and tetranucleotide frequency.MetaBAT_2MetaBAT_2MetaBAT 2an adaptive binning algorithm for robust and efficient genome reconstruction from metagenome assemblies | MetaBAT2 clusters metagenomic contigs into different "bins", each of which should correspond to a putative genome | MetaBAT2 uses nucleotide composition information and source strain abundance (measured by depth-of-coverage by aligning the reads to the contigs) to perform binningRead binning, Sequence assembly, Genome annotationMetagenomics, Sequence assembly, Metagenomic sequencingTo updatehttps://bitbucket.org/berkeleylab/metabat/src/master/Metagenomicsmetabat2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metabat2/https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabat22.15metabat22.17Read binning, Sequence assembly, Genome annotationMetagenomics, Sequence assembly, Metagenomic sequencing21222122000000000000001000000000001002001924329
metabulimetabuli_classifyClassifying metagenomes by jointly analysing both DNA and amino acid (AA) sequencesmetabulimetabulimetabuliMetabuli: specific and sensitive metagenomic classification via joint analysis of DNA and amino acidTaxonomic classificationTaxonomyUp-to-datehttps://github.com/steineggerlab/MetabuliSequence Analysis, Metagenomicsmetabuliiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metabulihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/metabuli1.0.5metabuli1.0.5Taxonomic classificationTaxonomy000000000000000000000000000000000000000000
metaeukmetaeuk_easy_predictMetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand.MetaEukMetaEukMetaEukMetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomicsHomology-based gene predictionMetagenomics, Gene and protein familiesTo updatehttps://github.com/soedinglab/metaeukSequence Analysis, Genome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeukhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk5.34c21f2metaeuk6.a5d39d9Homology-based gene predictionMetagenomics, Gene and protein families001000100000000000000000000000000000011016184
metagenomeseqmetagenomeseq_normalizatonmetagenomeSeq NormalizationmetagenomeseqmetagenomeseqmetagenomeSeqDesigned to determine features (be it Operational Taxanomic Unit (OTU), species, etc.) that are differentially abundant between two or more groups of multiple samples. It is designed to address the effects of both normalization and under-sampling of microbial communities on disease association detection and the testing of feature correlations.Sequence visualisation, Statistical calculationMetagenomics, SequencingTo updatehttps://bioconductor.org/packages/3.18/bioc/html/metagenomeSeq.htmlMetagenomicsmetagenomeseq_normalizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metagenomeseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/metagenomeseq1.16.0-0.0.1bioconductor-metagenomeseq1.43.0Sequence visualisation, Statistical calculationMetagenomics, Sequencing10111011000000000000001000000000000001106753
metaphlancustomize_metaphlan_database, extract_metaphlan_database, merge_metaphlan_tables, metaphlanMetaPhlAn for Metagenomic Phylogenetic AnalysismetaphlanmetaphlanMetaPhlAnComputational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data.Nucleic acid sequence analysis, Phylogenetic tree analysisMetagenomics, PhylogenomicsUp-to-datehttps://github.com/biobakery/MetaPhlAnMetagenomicsmetaphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaphlan4.1.1metaphlan4.1.1Nucleic acid sequence analysisMetagenomics, Phylogenomics124412440000000000001040000000000000044049911069
metawrapmgmetawrapmg_binningA flexible pipeline for genome-resolved metagenomic data analysismetawrapmetawrapMetaWRAPMetaWRAP aims to be an easy-to-use metagenomic wrapper suite that accomplishes the core tasks of metagenomic analysis from start to finish: read quality control, assembly, visualization, taxonomic profiling, extracting draft genomes (binning), and functional annotation.Read binning, Sequence assembly, Genome annotation, Sequence trimming, DemultiplexingWhole genome sequencing, Metagenomic sequencing, MetagenomicsUp-to-datehttps://github.com/bxlab/metaWRAPMetagenomicsmetawrapmg_binninggalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metawrapmghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/metawrapmg1.3.0metawrap-mg1.3.0Read binning, Sequence assembly, Genome annotation, Sequence trimming, DemultiplexingWhole genome sequencing, Metagenomic sequencing, Metagenomics011001100000000000000000000000000000000000
mg_toolkitmg_toolkit_bulk_download, mg_toolkit_original_metadataMetagenomics toolkit enables scientists to download all of the sample metadata for a given study or sequence to a single csv file.mg-toolkitmg-toolkitmg-toolkitMetagenomics toolkit enables scientists to download all of the sample metadata for a given study or sequence to a single csv file.Data retrievalMetagenomicsUp-to-datehttps://github.com/EBI-Metagenomics/emg-toolkitMetagenomicsmg_toolkitiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mg_toolkithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mg_toolkit0.10.4mg-toolkit0.10.4Data retrievalMetagenomics002000200000000000000000000000000000000000
microsatbedmicrosatbedSelect microsatellites for a bed fileTo updatehttps://github.com/lmdu/pytrfSequence Analysismicrosatbediuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/microsatbedhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/microsatbed1.3.2python101010100000000000000000000000000000000000
migmapmigmapmapper for full-length T- and B-cell repertoire sequencingMiGMAPMiGMAPMiGMAPMapper for full-length T- and B-cell repertoire sequencing.Sequence analysis, Read mappingImmunoproteins, genes and antigens, Sequence analysisUp-to-datehttps://github.com/mikessh/migmapRNA, Sequence Analysismigmapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/migmaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/migmap1.0.3migmap1.0.3Sequence analysis, Read mappingSequence analysis101010100000000000000010000000000000011071226
miniaminiaShort-read assembler based on a de Bruijn graphminiaminiaMiniaShort-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day.Genome assemblySequence assemblyUp-to-datehttps://gatb.inria.fr/software/minia/Assemblyminiaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/minia3.2.6minia3.2.6Genome assemblySequence assembly01100110000000000000001000000000000001101092206
miniasmminiasmMiniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step)miniasmminiasmminiasmMiniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format.De-novo assemblyGenomics, Sequence assemblyTo updatehttps://github.com/lh3/miniasmAssemblyminiasmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm0.3_r179miniasm0.3De-novo assemblyGenomics, Sequence assembly111111110000000000000010000000000000011017811938
minimap2minimap2A fast pairwise aligner for genomic and spliced nucleotide sequencesminimap2minimap2Minimap2Pairwise aligner for genomic and spliced nucleotide sequencesPairwise sequence alignmentMappingUp-to-datehttps://github.com/lh3/minimap2Next Gen Mappersminimap2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/minimap2https://github.com/galaxyproject/tools-iuc/tree/main/tools/minimap22.28minimap22.28Pairwise sequence alignmentMapping11111111010000000000101001000100000001101588260442
miniprotminiprot, miniprot_indexAlign a protein sequence against a genome with affine gap penalty, splicing and frameshift.miniprotminiprotminiprotMiniprot aligns a protein sequence against a genome with affine gap penalty, splicing and frameshift. It is primarily intended for annotating protein-coding genes in a new species using known genes from other species.Sequence alignment, Protein sequence analysisSequence sites, features and motifs, Sequence analysisUp-to-datehttps://github.com/lh3/miniprotSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniprothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/miniprot0.13miniprot0.13Sequence alignment, Protein sequence analysisSequence sites, features and motifs, Sequence analysis202220220000000000000000000000000000020030842
mirmachinemirmachineTool to detect miRNA in genome sequencesUp-to-datehttps://github.com/sinanugur/MirMachineSequence Analysismirmachineiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachinehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mirmachine0.2.13mirmachine0.2.13001000100000000000000000000000000000000000
mirnaturemirnatureComputational detection of canonical microRNAsUp-to-datehttps://github.com/Bierinformatik/miRNAtureRNA, Sequence Analysismirnatureiuchttps://github.com/Bierinformatik/miRNAturehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mirnature1.1mirnature1.10010001000000000000000000000000000000100410
mitobimmitobimassemble mitochondrial genomesUp-to-datehttps://github.com/chrishah/MITObimAssemblymitobimiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobimhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim1.9.1mitobim1.9.1011001100000000000000010000000000000010066881
mitosmitos, mitos2de-novo annotation of metazoan mitochondrial genomesmitosmitosMITOSDe novo metazoan mitochondrial genome annotation.Genome annotationZoology, Whole genome sequencingTo updatehttp://mitos.bioinf.uni-leipzig.de/Sequence Analysismitosiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mitoshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mitos1.1.7mitos2.1.9Genome annotationZoology, Whole genome sequencing1120112000000000000000100000000000000210236100920
mlstmlst, mlst_listScan contig files against PubMLST typing schemesmlstmlstMLSTMulti Locus Sequence Typing from an assembled genome or from a set of reads.Multilocus sequence typingImmunoproteins and antigensTo updatehttps://github.com/tseemann/mlstSequence Analysismlstiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mlsthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mlst2.22.0mlst2.23.0Multilocus sequence typingImmunoproteins and antigens22222222000000000000002000000000000002206359304
moabsmoabsMOABS for differential methylation analysis on Bisulfite sequencing data.To updatehttps://github.com/sunnyisgalaxy/moabsEpigeneticsmoabsiuchttps://github.com/sunnyisgalaxy/moabshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/moabs1.3.4.6moabs1.3.9.0001000100000000000000000000000000000011019317
mosdepthmosdepthfast and flexible BAM/CRAM depth calculationUp-to-datehttps://github.com/brentp/mosdepthSAMmosdepthiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mosdepthhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mosdepth0.3.8mosdepth0.3.8111011100000000000000010000000000000010021262
mothurmothur_align_check, mothur_align_seqs, mothur_amova, mothur_anosim, mothur_bin_seqs, mothur_biom_info, mothur_chimera_bellerophon, mothur_chimera_ccode, mothur_chimera_check, mothur_chimera_perseus, mothur_chimera_pintail, mothur_chimera_slayer, mothur_chimera_uchime, mothur_chimera_vsearch, mothur_chop_seqs, mothur_classify_otu, mothur_classify_seqs, mothur_classify_tree, mothur_clearcut, mothur_cluster_classic, mothur_cluster_fragments, mothur_cluster_split, mothur_cluster, mothur_collect_shared, mothur_collect_single, mothur_consensus_seqs, mothur_cooccurrence, mothur_corr_axes, mothur_count_groups, mothur_count_seqs, mothur_create_database, mothur_degap_seqs, mothur_deunique_seqs, mothur_deunique_tree, mothur_dist_seqs, mothur_dist_shared, mothur_fastq_info, mothur_filter_seqs, mothur_filter_shared, mothur_get_communitytype, mothur_get_coremicrobiome, mothur_get_dists, mothur_get_group, mothur_get_groups, mothur_get_label, mothur_get_lineage, mothur_get_mimarkspackage, mothur_get_otulabels, mothur_get_otulist, mothur_get_oturep, mothur_get_otus, mothur_get_rabund, mothur_get_relabund, mothur_get_sabund, mothur_get_seqs, mothur_get_sharedseqs, mothur_heatmap_bin, mothur_heatmap_sim, mothur_homova, mothur_indicator, mothur_lefse, mothur_libshuff, mothur_list_otulabels, mothur_list_seqs, mothur_make_biom, mothur_make_contigs, mothur_make_design, mothur_make_fastq, mothur_make_group, mothur_make_lefse, mothur_make_lookup, mothur_make_shared, mothur_make_sra, mothur_mantel, mothur_merge_count, mothur_merge_files, mothur_merge_groups, mothur_merge_sfffiles, mothur_merge_taxsummary, mothur_metastats, mothur_mimarks_attributes, mothur_nmds, mothur_normalize_shared, mothur_otu_association, mothur_otu_hierarchy, mothur_pairwise_seqs, mothur_parse_list, mothur_parsimony, mothur_pca, mothur_pcoa, mothur_pcr_seqs, mothur_phylo_diversity, mothur_phylotype, mothur_pre_cluster, mothur_primer_design, mothur_rarefaction_shared, mothur_rarefaction_single, mothur_remove_dists, mothur_remove_groups, mothur_remove_lineage, mothur_remove_otulabels, mothur_remove_otus, mothur_remove_rare, mothur_remove_seqs, mothur_rename_seqs, mothur_reverse_seqs, mothur_screen_seqs, mothur_sens_spec, mothur_seq_error, mothur_sffinfo, mothur_shhh_flows, mothur_shhh_seqs, mothur_sort_seqs, mothur_split_abund, mothur_split_groups, mothur_sub_sample, mothur_summary_qual, mothur_summary_seqs, mothur_summary_shared, mothur_summary_single, mothur_summary_tax, mothur_taxonomy_to_krona, mothur_tree_shared, mothur_trim_flows, mothur_trim_seqs, mothur_unifrac_unweighted, mothur_unifrac_weighted, mothur_unique_seqs, mothur_vennMothur wrappersmothurmothurmothurOpen-source, platform-independent, community-supported software for describing and comparing microbial communitiesDNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysisMicrobial ecology, Taxonomy, Sequence analysis, PhylogenyTo updatehttps://www.mothur.orgMetagenomicsmothuriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mothurhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mothur1.0mothur1.48.0DNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysisMicrobial ecology, Taxonomy, Sequence analysis, Phylogeny1291291291291291291291290300000000001280300000000000000129129014353302916
msabootmsabootA multiple sequences alignment bootstrapping tool.Up-to-datehttps://github.com/phac-nml/msabootFasta Manipulationmsabootiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/msaboothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/msaboot0.1.2msaboot0.1.2101010100000000000000000000000000000011034803
multigpsmultigpsAnalyzes collections of multi-condition ChIP-seq data.To updatehttp://mahonylab.org/software/multigps/ChIP-seqmultigpsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multigpshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/multigps0.74.0fonts-conda-ecosystem100010000000000000000000000000000000000000
multigseamultigseaGSEA-based pathway enrichment analysis for multi-omics datamultiGSEAmultiGSEAmultiGSEAA GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration.Gene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small moleculesUp-to-datehttps://bioconductor.org/packages/devel/bioc/html/multiGSEA.htmlTranscriptomics, Proteomics, Statisticsmultigseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multigseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea1.12.0bioconductor-multigsea1.12.0Gene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules0010001000000000000000000000000000000100253
multiqcmultiqcMultiQC aggregates results from bioinformatics analyses across many samples into a single reportmultiqcmultiqcMultiQCMultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools.Validation, Sequencing quality controlSequencing, Bioinformatics, Sequence analysis, GenomicsTo updatehttp://multiqc.info/Fastq Manipulation, Statistics, Visualizationmultiqciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc1.11multiqc1.24.1Sequencing quality controlSequencing, Bioinformatics, Sequence analysis, Genomics11111111000010000000111001000100000001108320162790
mummer4mummer_delta_filter, mummer_dnadiff, mummer_mummer, mummer_mummerplot, mummer_nucmer, mummer_show_coordsMummer4 Toolsmummer4mummer4Up-to-datehttps://github.com/mummer4/mummerSequence Analysismummer4iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mummer4https://github.com/galaxyproject/tools-iuc/tree/main/tools/mummer44.0.0rc1mummer44.0.0rc1666666660000000000000630000000000000066066918347
mykrobemykrobe_predictAntibiotic resistance predictionsMykrobeMykrobeMykrobeAntibiotic resistance prediction for Mycobacterium tuberculosis from genome sequence data with Mykrobe.Antibiotic resistance prediction in minutes.Table of Contents generated with DocToc.AMR prediction (Mykrobe predictor).Before attempting to install with bioconda, please ensure you have your channels set up as specified in the documentation. If you don't, you may run into issues with an older version of mykrobe being installedAntimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimmingWhole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, MetagenomicsTo updatehttps://github.com/Mykrobe-tools/mykrobeSequence Analysismykrobeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mykrobehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mykrobe0.10.0mykrobe0.13.0Antimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimmingWhole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, Metagenomics000000000000000000000000000000000000000000
mzminemzmine_batchmass-spectrometry data processing, with the main focus on LC-MS datamzminemzmineMZmineToolbox for visualization and analysis of LC-MS data in netCDF or mzXML.Natural product identification, Standardisation and normalisation, Peptide database search, Deisotoping, Clustering, Filtering, Chromatographic alignment, Peak detection, Peptide identification, Chromatogram visualisation, Mass spectrum visualisation, Structure visualisation, Plotting, Heat map generationProteomics, Metabolomics, Proteomics experiment, Small moleculesUp-to-datehttp://mzmine.github.io/Metabolomicsmzmine_batchiuchttps://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/mzmine/https://github.com/galaxyproject/tools-iuc/tree/main/tools/mzmine3.9.0mzmine3.9.0Natural product identification, Standardisation and normalisation, Peptide database search, Deisotoping, Clustering, Filtering, Chromatographic alignment, Peak detection, Peptide identification, Chromatogram visualisation, Mass spectrum visualisation, Structure visualisation, Plotting, Heat map generationProteomics, Metabolomics, Proteomics experiment, Small molecules001000100000000000000000000000000000000003
naltorfsbicodon_counts_from_fasta, codon_freq_from_bicodons, find_nested_alt_orfsnAlt-ORFs: Nested Alternate Open Reading Frames (nAltORFs)Up-to-datehttps://github.com/BlankenbergLab/nAltORFsSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/naltorfs/https://github.com/galaxyproject/tools-iuc/tree/main/tools/naltorfs0.1.2naltorfs0.1.2300030000000000000000000000000000000000000
nanocomporenanocompore_db, nanocompore_sampcompNanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro.NanocomporeNanocomporeNanocomporeRNA modifications detection by comparative Nanopore direct RNA sequencing.RNA modifications detection from Nanopore dRNA-Seq data.Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples.Analyses performed for the nanocompore paper.Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitroPost-translation modification site prediction, PolyA signal detection, Genotyping, k-mer countingFunctional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sitesTo updatehttps://nanocompore.rna.rocks/Sequence Analysisnanocomporeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanocomporehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nanocompore1.0.0rc3.post2nanocompore1.0.4PolyA signal detection, Genotyping, k-mer countingFunctional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sites01200120000000000000001000000000000002203836
nanoplotnanoplotPlotting tool for long read sequencing data and alignmentsnanoplotnanoplotNanoPlotNanoPlot is a tool with various visualizations of sequencing data in bam, cram, fastq, fasta or platform-specific TSV summaries, mainly intended for long-read sequencing from Oxford Nanopore Technologies and Pacific BiosciencesScatter plot plotting, Box-Whisker plot plottingGenomicsUp-to-datehttps://github.com/wdecoster/NanoPlotVisualizationnanoplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanoplot/https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanoplot1.43.0nanoplot1.43.0Scatter plot plotting, Box-Whisker plot plottingGenomics1111111100000000000011100000010000000110219563235
nanopolishcompnanopolishcomp_eventaligncollapse, nanopolishcomp_freqmethcalculateNanopolishComp contains 2 modules. Eventalign_collapse collapses the raw file generated by nanopolish eventalign by kmers rather than by event. Freq_meth_calculate methylation frequency at genomic CpG sites from the output of nanopolish call-methylation.nanopolishcompnanopolishcompNanopolishCompNanopolishComp is a Python3 package for downstream analyses of Nanopolish output files.It is a companion package for Nanopolish.Methylation analysis, Collapsing methodsSequence analysis, Sequencing, Genetic variationTo updatehttps://a-slide.github.io/NanopolishCompSequence Analysisnanopolishcompiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanopolishcomphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nanopolishcomp0.6.11nanopolishcomp0.6.12Methylation analysis, Collapsing methodsSequence analysis, Sequencing, Genetic variation0022002200000000000000000000000000000220151074
ncbi_acc_downloadncbi_acc_downloadDownload sequences from GenBank/RefSeq by accession through the NCBI ENTREZ APIUp-to-datehttps://github.com/kblin/ncbi-acc-downloadData Sourcencbi_acc_downloadiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_acc_downloadhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_acc_download0.2.8ncbi-acc-download0.2.811111111000000000000001001000100000001106885487
ncbi_datasetsdatasets_download_gene, datasets_download_genomeNCBI datasets downloads biological sequence data across all domains of life from NCBI.ncbi_datasetsncbi_datasetsNCBI DatasetsNCBI Datasets is a new resource that lets you easily gather data from across NCBI databases. Find and download sequence, annotation, and metadata for genes and genomes using our command-line tools or web interface.Data handling, Sequence database search, Data retrievalBiological databasesTo updatehttps://github.com/ncbi/datasetsData Sourcencbi_datasetsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_datasetshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_datasets16.20.0ncbi-datasets-cliData handling, Sequence database search, Data retrievalBiological databases20222022000000000000001002000000000002206673177
ncbi_entrez_directncbi_entrez_direct_efetch, ncbi_entrez_direct_einfo, ncbi_entrez_direct_esearchNCBI Entrez Direct allow fetching data from NCBI DatabasesUp-to-datehttp://www.ncbi.nlm.nih.gov/books/NBK179288/Data Sourcencbi_entrez_directiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_directhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_entrez_direct22.4entrez-direct22.4000000000000000000000030010000000000000000
ncbi_entrez_eutilsncbi_eutils_ecitmatch, ncbi_eutils_efetch, ncbi_eutils_egquery, ncbi_eutils_einfo, ncbi_eutils_elink, ncbi_eutils_epost, ncbi_eutils_esearch, ncbi_eutils_esummaryNCBI Entrez E-Utilties allow fetching data from NCBI DatabasesTo updatehttps://www.ncbi.nlm.nih.gov/books/NBK25501/Data Sourcencbi_entrez_eutilsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutilshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_entrez_eutils1.70python00800080000080000000004004000200000008801693193
ncbi_fcs_gxncbi_fcs_gxFCS-GX detects contamination from foreign organisms in genome sequences using the genome cross-species aligner (GX).ncbi_fcsncbi_fcsNCBI fcsThe NCBI Foreign Contamination Screen (FCS) is a tool suite for identifying and removing contaminant sequences in genome assemblies. Contaminants are defined as sequences in a dataset that do not originate from the biological source organism and can arise from a variety of environmental and laboratory sources. FCS will help you remove contaminants from genomes before submission to GenBank.Sequence assembly validation, Sequence trimming, Sequence contamination filteringSequence analysis, Sequence assemblyUp-to-datehttps://github.com/ncbi/fcs-gxSequence Analysisncbi_fcs_gxiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gxhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx0.5.4ncbi-fcs-gx0.5.4Sequence assembly validation, Sequence trimming, Sequence contamination filteringSequence analysis, Sequence assembly101010100000000000000010000000000000000000
necatnecatError correction and de-novo assembly for ONT Nanopore readsnecatnecatNECATNECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads.De-novo assemblySequence assemblyUp-to-datehttps://github.com/xiaochuanle/NECATAssemblynecatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/necathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/necat0.0.1_update20200803necat0.0.1_update20200803De-novo assemblySequence assembly001000100000000000000000000000000000010095667
newick_utilsnewick_displayPerform operations on Newick treesnewick_utilitiesnewick_utilitiesNewick UtilitiesThe Newick Utilities are a set of command-line tools for processing phylogenetic trees. They can process arbitrarily large amounts of data and do not require user interaction, which makes them suitable for automating phylogeny processing tasks.Phylogenetic tree generation, Phylogenetic tree analysis, Phylogenetic tree reconstructionPhylogeny, Genomics, Computer scienceTo updatehttp://cegg.unige.ch/newick_utilsVisualization, Metagenomicsnewick_utilsiuchttps://github.com/tjunier/newick_utilshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/newick_utils1.6+galaxy1newick_utils1.6Phylogeny, Genomics, Computer science111111110000000000000010000000000000011044825505
nextcladenextalign, nextcladeIdentify differences between your sequences and a reference sequence used by NextstrainnextcladenextcladeNextcladeNextclade is an open-source project for viral genome alignment, mutation calling, clade assignment, quality checks and phylogenetic placement.Methylation analysis, Variant callingGenomics, Sequence analysis, CladisticsTo updatehttps://github.com/nextstrain/nextcladeSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nextcladehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nextclade2.7.0nextalign2.14.0Methylation analysis, Variant callingGenomics, Cladistics11221122000000000000002001000100000002002104080
ngmlrngmlrCoNvex Gap-cost alignMents for Long ReadsngmlrngmlrNGMLRAn algorithm to map third generation long-read sequencing data (PacBio and Oxford Nanopore) to a reference genome with a focus on reads that span structural variation.DNA mapping, Sequence alignment, Genetic variation analysisSequencing, Mapping, DNA structural variationUp-to-datehttps://github.com/philres/ngmlrNext Gen Mappersngmlriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ngmlrhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ngmlr0.2.7ngmlr0.2.7DNA mapping, Sequence alignment, Genetic variation analysisSequencing, Mapping0010001000000000000000000000000000000100211266
ngsutilsngsutils_bam_filterNGSUtils is a suite of software tools for working with next-generation sequencing datasets.Starting in 2009, we (Liu Lab @ Indiana University School of Medicine) starting working withnext-generation sequencing data. We initially started doing custom coding for each project in a one-off manner.It quickly became apparent that this was an inefficient manner to work, so we started assembling smallerutilities that could be adapted into larger, more complicated, workflows. We have used them for Illumia,SOLiD, 454, Ion Torrent, and Pac Bio sequencing data. We have used them for DNA and RNA resequcing,ChIP-Seq, CLIP-Seq, and targeted resequencing (Agilent exome capture and PCR targeting).These tools are also used heavily in our in-house DNA and RNA mapping pipelines.NGSUtils is made up of 50+ programs, mainly written in Python.These are separated into modules based on the type of file that is to be analyzed.ngsutilsngsutilsNGSUtilsNGSUtils is a suite of software tools for working with next-generation sequencing datasetsRead pre-processing, Sequencing quality control, Variant calling, Formatting, Sequence contamination filteringGenomics, TranscriptomicsTo updatehttps://github.com/ngsutils/ngsutilsSAMiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ngsutilshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsutilsngsutils0.5.9Read pre-processing, Variant calling, Formatting, Sequence contamination filteringTranscriptomics111111110000000000000000000000000000011022424740
nonpareilnonpareilEstimate average coverage in metagenomic datasetsnonpareilnonpareilnonpareilEstimate metagenomic coverage and sequence diversityOperationTo updatehttp://nonpareil.readthedocs.ioMetagenomicsnonpareiliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nonpareilhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nonpareil3.1.1nonpareil3.5.5Operation10111011000000000000001000000000000001105142
novoplastynovoplastyNOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes.To updatehttps://github.com/ndierckx/NOVOPlastyAssemblynovoplastyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplastyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty4.3.1novoplasty4.3.501110111000000000000001000000000000001001626384
nugen_nudupnugen_nudupMarks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products.nudupnudupNuDupMarks/removes duplicate molecules based on the molecular tagging technology used in Tecan products.Duplication detectionSequencingUp-to-datehttps://github.com/tecangenomics/nudupSAM, Metagenomics, Sequence Analysis, Transcriptomicsnugen_nudupiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nuduphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup2.3.3nudup2.3.3Duplication detectionSequencing000000000000000000000000000000000000000000
obitoolsobi_illumina_pairend, obi_ngsfilter, obi_annotate, obi_clean, obi_convert, obi_grep, obi_sort, obi_stat, obi_tab, obi_uniqOBITools is a set of programs developed to simplify the manipulation of sequence filesobitoolsobitoolsOBIToolsSet of python programs developed to simplify the manipulation of sequence files. They were mainly designed to help us for analyzing Next Generation Sequencer outputs (454 or Illumina) in the context of DNA Metabarcoding.Sequence analysis, Sequence analysisSequence analysis, DNA, SequencingUp-to-datehttp://metabarcoding.org/obitoolsSequence Analysisobitoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/obitoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/obitools1.2.13obitools1.2.13Sequence analysis, Sequence analysisSequence analysis, DNA, Sequencing01010100101010000000000000000000000000000001010050326251
ococoococoVariant detection of SNVsTo updatehttps://github.com/karel-brinda/ococoVariant Analysisococoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ococohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ococo0.1.2.6ococo0.1.2.71010101000000000000000100000000000000110321877
odgiodgi_build, odgi_vizRepresenting large genomic variation graphs with minimal memory overhead requires a careful encoding of the graph entities. odgi follows the dynamic GBWT in developing a byte-packed version of the graph and paths through it.To updatehttps://github.com/vgteam/odgiSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/https://github.com/galaxyproject/tools-iuc/tree/main/tools/odgi0.3odgi0.8.60022002200000000000000000000000000000220225
omarkomarkProteome quality assessment softwareomarkomarkOMArkProteome quality assessment softwareSequence assembly validation, Differential protein expression profilingProteomics, Sequence analysis, Statistics and probabilityTo updatehttps://github.com/DessimozLab/OMArkSequence Analysisomarkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/omark/https://github.com/galaxyproject/tools-iuc/tree/main/tools/omark0.3.0Sequence assembly validation, Differential protein expression profilingProteomics, Sequence analysis, Statistics and probability001100110000000000000000000000000000000000
ont_fast5_apiont_fast5_api_compress_fast5, ont_fast5_api_fast5_subset, ont_fast5_api_multi_to_single_fast5, ont_fast5_api_single_to_multi_fast5ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore FAST5 file format.To updatehttps://github.com/nanoporetech/ont_fast5_api/Nanoporeont_fast5_apiiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ont_fast5_apihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ont_fast5_api3.1.3ont-fast5-api4.1.30040004000000000000000100000000000000440392654
onto_toolkitonto_tk_get_ancestor_terms, onto_tk_get_child_terms, onto_tk_get_descendent_terms, onto_tk_get_parent_terms, onto_tk_get_parent_terms_by_relationship_type, onto_tk_get_relationship_id_vs_relationship_def, onto_tk_get_relationship_id_vs_relationship_name, onto_tk_get_relationship_id_vs_relationship_namespace, onto_tk_get_relationship_types, onto_tk_get_root_terms, onto_tk_get_subontology_from, onto_tk_term_id_vs_term_def, onto_tk_term_id_vs_term_name, onto_tk_get_term_synonyms, onto_tk_get_terms, onto_tk_get_terms_by_relationship_type, onto_tk_obo2owl, onto_tk_obo2rdf, onto_tk_term_id_vs_term_defONTO-Toolkit is a collection of tools for managing ontologies.Up-to-datehttp://search.cpan.org/~easr/ONTO-PERL-1.45/Ontology Manipulationonto_toolkitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/onto-toolkithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/onto_toolkit1.45perl-onto-perl1.450017000170000000000000000000000000000001717022655
optdoeoptdoeOptimal Design Of ExperimentTo updatehttps://github.com/pablocarb/doebaseSynthetic Biologyoptdoeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/optdoehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/optdoev2.0.2doebase000000000000000000000000000000000000000000
optitypeoptitypePrecision HLA typing from NGS dataUp-to-datehttps://github.com/FRED-2/OptiTypeSequence Analysisoptitypeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/optitype1https://github.com/galaxyproject/tools-iuc/tree/main/tools/optitype1.3.5optitype1.3.5001000100000000000000000000000000000010024321
orfipyorfipyGalaxy wrapper for ORFIPYorfipyorfipyorfipyA fast and flexible tool for extracting ORFs.orfipy is a tool written in python/cython to extract ORFs in extremely an fast and flexible manner. Other popular ORF searching tools are OrfM and getorf. Compared to OrfM and getorf, orfipy provides the most options to fine tune ORF searches. orfipy uses multiple CPU cores and is particularly faster for data containing multiple smaller fasta sequences such as de-novo transcriptome assemblies. Please read the preprint here.Coding region prediction, Database search, Transcriptome assembly, De-novo assemblyComputer science, RNA-Seq, Transcriptomics, Small moleculesUp-to-datehttps://github.com/urmi-21/orfipySequence Analysisorfipyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/orfipyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/orfipy0.0.4orfipy0.0.4Coding region prediction, Database search, Transcriptome assembly, De-novo assemblyComputer science, RNA-Seq, Transcriptomics, Small molecules101010100000000000000000000000000000010053774
orthofinderorthofinder_onlygroupsAccurate inference of orthologous gene groups made easyOrthoFinderOrthoFinderOrthoFinderOrthoFinder is a fast, accurate and comprehensive platform for comparative genomics. It finds orthogroups and orthologs, infers rooted gene trees for all orthogroups and identifies all of the gene duplcation events in those gene trees. It also infers a rooted species tree for the species being analysed and maps the gene duplication events from the gene trees to branches in the species tree. OrthoFinder also provides comprehensive statistics for comparative genomic analyses.Genome comparison, Phylogenetic tree generation (from molecular sequences), Phylogenetic tree analysis, Genome alignmentPhylogenetics, Phylogenomics, Bioinformatics, Comparative genomics, Sequence analysisUp-to-datehttps://github.com/davidemms/OrthoFinderPhylogenetics, Sequence Analysisorthofinderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/orthofinderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/orthofinder2.5.5orthofinder2.5.5Genome comparison, Genome alignmentPhylogenetics, Phylogenomics, Bioinformatics, Comparative genomics01110111010000000000000000000000000001002391333
packaged_annotation_loaderpackaged_annotation_loaderTool to make cached genome annotation data available as a list of datasets collectionTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/packaged_annotation_loaderData Sourcepackaged_annotation_loaderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/packaged_annotation_loaderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/packaged_annotation_loader0.1python000000000000000000000000000000000000000000
pacupacu_map, pacu_snpPACU is a workflow for whole genome sequencing based phylogeny of Illumina and ONT R9/R10 data.pacupacuPACUPACU is a workflow for whole genome sequencing based phylogeny of Illumina and ONT R9/R10 data.PACU stands for the Prokaryotic Awesome variant Calling Utility and is named after an omnivorous fish (that eats both Illumina and ONT reads).ClusteringPhylogenetics, Sequence analysisUp-to-datehttps://github.com/BioinformaticsPlatformWIV-ISP/PACUSequence Analysis, Phylogeneticspacuiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pacuhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pacu0.0.5pacu_snp0.0.5ClusteringPhylogenetics002000200000000000000000000000000000000000
pairtoolspairtools_dedup, pairtools_parse, pairtools_sort, pairtools_split, pairtools_statsFlexible tools for Hi-C data processingUp-to-datehttps://pairtools.readthedocs.ioSequence Analysispairtoolsiuchttps://github.com/open2c/pairtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pairtools1.1.0pairtools1.1.0505050500000000000000000000000000000000000
pangolinpangolinPangolin assigns SARS-CoV-2 genome sequences their most likely lineages under the Pango nomenclature system.pangolin_cov-lineagespangolin_cov-lineagespangolinPhylogenetic Assignment of Named Global Outbreak LINeages - software package for assigning SARS-CoV-2 genome sequences to global lineagesTree-based sequence alignment, Variant classificationVirologyUp-to-datehttps://github.com/cov-lineages/pangolinSequence Analysispangoliniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pangolinhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pangolin4.3pangolin4.3Tree-based sequence alignment, Variant classificationVirology11111111000000000000001001000100000001002597276
parse_mito_blastparse_mito_blastFiltering blast out from querying assembly against mitochondrial database.Up-to-datehttps://raw.githubusercontent.com/VGP/vgp-assembly/master/galaxy_tools/parse_mito_blast/parse_mito_blast.pySequence Analysisparse_mito_blastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/parse_mito_blasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/parse_mito_blast1.0.2parse_mito_blast1.0.211101110000000000000000000000000000001003190
pathviewpathviewPathview is a tool set for pathway based data integration and visualization.pathviewpathviewpathviewTool set for pathway based data integration and visualization that maps and renders a wide variety of biological data on relevant pathway graphs. It downloads the pathway graph data, parses the data file, maps user data to the pathway, and render pathway graph with the mapped data. In addition, it integrates with pathway and gene set (enrichment) analysis tools for large-scale and fully automated analysis.Pathway or network analysis, Pathway or network visualisationMolecular interactions, pathways and networks, Systems biology, Data visualisationTo updatehttps://bioconductor.org/packages/release/bioc/html/pathview.htmlStatistics, RNA, Micro-array Analysispathviewiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pathviewhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pathview1.34.0bioconductor-pathview1.42.0Pathway or network analysis, Pathway or network visualisationMolecular interactions, pathways and networks, Systems biology, Data visualisation11111111000000000000101001000000000001105655260
pbgcpppbgcppCompute genomic consensus and call variants using PacBio reads mapped to a referencegenomicconsensusgenomicconsensusGenomicConsensusThe GenomicConsensus package provides the variantCaller tool, which allows you to apply the Quiver or Arrow algorithm to mapped PacBio reads to get consensus and variant calls.Variant callingMappingUp-to-datehttps://github.com/PacificBiosciences/gcppVariant Analysispbgcppiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pbgcpphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pbgcpp2.0.2pbgcpp2.0.2Variant callingMapping000000000000000000000000000000000000000000
pbmm2pbmm2A minimap2 SMRT wrapper for PacBio data.pbmm2pbmm2pbmm2pbmm2 is a SMRT C++ wrapper for minimap2's C API. Its purpose is to support native PacBio in- and output, provide sets of recommended parameters, generate sorted output on-the-fly, and postprocess alignments. Sorted output can be used directly for polishing using GenomicConsensus, if BAM has been used as input to pbmm2. Benchmarks show that pbmm2 outperforms BLASR in sequence identity, number of mapped bases, and especially runtime. pbmm2 is the official replacement for BLASR.Pairwise sequence alignment, SortingMappingUp-to-datehttps://github.com/PacificBiosciences/pbmm2Next Gen Mapperspbmm2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pbmm2https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbmm21.14.99pbmm21.14.99Pairwise sequence alignment, SortingMapping001000100000000000000000000000000000000000
pbtkbam2fastxConvert PacBio Bam File to fasta or fastq fileUp-to-datehttps://github.com/PacificBiosciences/pbtkConvert Formats, Fasta Manipulation, Fastq Manipulationbam2fastxiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pbtkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pbtk3.1.1pbtk3.1.1101010100000000000000000000000000000000000
pe_histogrampe_histogramContains a tool that produces an insert size histogram for a paired-end BAM file.To updatehttps://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/pehistogramGraphicspe_histogramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pe_histogramhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pe_histogram1.0.1openjdk11111111000000000000000001000000000001003124180
peakzillapeakzillaPeakzilla identifies sites of enrichment and transcription factor binding sites from ChIP-seq and ChIP-exo experiments.To updatehttps://github.com/steinmann/peakzillaChIP-seqpeakzillaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/peakzillahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/peakzilla1.0python001000100000000000000000000000000000000000
peariuc_pearPEAR evaluates all possible paired-end read overlapspearpearPEARPaired-end read merger. PEAR evaluates all possible paired-end read overlaps without requiring the target fragment size as input. In addition, it implements a statistical test for minimizing false-positive results.Sequence mergingSequence assemblyUp-to-datehttps://cme.h-its.org/exelixis/web/software/pear/Fastq Manipulationpeariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pearhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pear0.9.6pear0.9.6Sequence mergingSequence assembly11101110000000000000011000000000001001001504305
pharokkapharokkarapid standardised annotation tool for bacteriophage genomes and metagenomespharokkapharokkaPharokkaPharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes.Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assemblyMetagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNATo updatehttps://github.com/gbouras13/pharokkaGenome annotationpharokkaiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokkahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka1.3.2\n pharokka\nGenome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assemblyMetagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA0110011000000000000000100000000000100100742565
phyloseqphyloseq_from_biom, phyloseq_from_dada2, phyloseq_plot_ordination, phyloseq_plot_richnessHandling and analysis of high-throughput microbiome census dataphyloseqphyloseqphyloseqProvides a set of classes and tools to facilitate the import, storage, analysis, and graphical display of microbiome census data.Deposition, Analysis, VisualisationMicrobiology, Sequence analysis, MetagenomicsUp-to-datehttps://www.bioconductor.org/packages/release/bioc/html/phyloseq.htmlMetagenomicsphyloseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/phyloseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/phyloseq1.46.0bioconductor-phyloseq1.46.0Deposition, Analysis, VisualisationMicrobiology, Sequence analysis, Metagenomics014401440000000000004000000000000000033082812
phymlphymlPhyML is a phylogeny software based on the maximum-likelihood principle.phymlphymlPhyMLPhylogenetic estimation software using Maximum LikelihoodPhylogenetic tree generation (maximum likelihood and Bayesian methods)Phylogenetics, Bioinformatics, PhylogeneticsUp-to-datehttp://www.atgc-montpellier.fr/phyml/Phylogeneticsphymliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/phymlhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/phyml3.3.20220408phyml3.3.20220408Phylogenetics, Bioinformatics, Phylogenetics01110111010000000000011000000000000001101041770
picardpicard_AddCommentsToBam, picard_AddOrReplaceReadGroups, picard_BedToIntervalList, picard_CleanSam, picard_CASM, picard_CollectBaseDistributionByCycle, picard_CollectGcBiasMetrics, picard_CollectHsMetrics, picard_CollectInsertSizeMetrics, picard_CollectRnaSeqMetrics, picard_artifact_metrics, picard_CollectWgsMetrics, picard_DownsampleSam, picard_EstimateLibraryComplexity, picard_FastqToSam, picard_FilterSamReads, picard_FixMateInformation, picard_MarkDuplicates, picard_MarkDuplicatesWithMateCigar, picard_MeanQualityByCycle, picard_MergeBamAlignment, picard_MergeSamFiles, picard_NormalizeFasta, picard_QualityScoreDistribution, picard_ReorderSam, picard_ReplaceSamHeader, picard_RevertOriginalBaseQualitiesAndAddMateCigar, picard_RevertSam, picard_SamToFastq, picard_SortSam, picard_ValidateSamFilePicard SAM/BAM manipulation tools.picard_samtofastqpicard_reordersam, picard_replacesamheader, picard_fastqtosam, picard_samtofastqpicard_samtofastqCreate a FASTQ file.FormattingSequencingTo updatehttp://broadinstitute.github.io/picard/SAMpicarddevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/picardhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/picard3.1.1picard3.2.0FormattingSequencing313131313131313102900310000000314310031000310000000313103735374458
pick_valuepick_valueCompose a text parameter value using text, integer and float valuesTo updateText Manipulationpick_valueiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pick_valuehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pick_value0.2.011101110000000000000000000000000000001002116
picrustpicrust_categorize, picrust_compare_biom, picrust_format_tree_and_trait_table, picrust_metagenome_contributions, picrust_normalize_by_copy_number, picrust_predict_metagenomesPICRUSt wrapperspicrustpicrustPICRUStPICRUSt (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a bioinformatics software package designed to predict metagenome functional content from marker gene (e.g., 16S rRNA) surveys and full genomes.Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcodingMetagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencingTo updatehttps://picrust.github.io/picrust/Metagenomicspicrustiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/picrusthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust1.1.1picrust1.1.4Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcodingMetagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencing0656065600000000000000600000000000000550451095
picrust2picrust2_add_descriptions, picrust2_hsp, picrust2_metagenome_pipeline, picrust2_pathway_pipeline, picrust2_pipeline, picrust2_place_seqs, picrust2_shuffle_predictionsPICRUSt2: Phylogenetic Investigation of Communities by Reconstruction of Unobserved Statespicrust2picrust2PICRUSt2PICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences.Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysisMetagenomics, Microbiology, Phylogenetics, Metagenomic sequencingUp-to-datehttps://github.com/picrust/picrust2/wikiMetagenomicspicrust2iuchttps://github.com/picrust/picrust2https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust22.5.3picrust22.5.3Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysisMetagenomics, Microbiology, Phylogenetics, Metagenomic sequencing0770077000000000000000000000000000000700881000
pilonpilonpilon is a tool for assembly improvement and variant analysis in bacteriapilonpilonpilonRead alignment analysis to diagnose, report, and automatically improve de novo genome assemblies.Sequence assembly, Analysis, Read alignmentAssemblyTo updatehttps://github.com/broadinstitute/pilon/wikiVariant Analysispiloniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pilonhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pilon1.20.1pilon1.24Sequence assembly, AnalysisAssembly11111111000000000000001001000000000001104677942
pipelignpipelignMultipe sequence alignmentUp-to-datehttps://github.com/asmmhossain/pipelign/Next Gen Mapperspipeligniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pipelignhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pipelign0.2pipelign0.2101010100000000000000010000000000000011083983
pizzlypizzlyPizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples.To updatehttps://github.com/pmelsted/pizzly/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly0.37.3.1pizzly0.37.3101010100000000000000000000000000000011016208
plasflowPlasFlowPlasFlow - Prediction of plasmid sequences in metagenomic contigs.plasflowplasflowPlasFlowPlasFlow is a set of scripts used for prediction of plasmid sequences in metagenomic contigs.Sequence analysisMetagenomicsUp-to-datehttps://github.com/smaegol/PlasFlowSequence Analysisplasflowiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflowhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/plasflow1.1.0plasflow1.1.0Sequence analysisMetagenomics111011100000000000001000000000000000011027822589
plasmidfinderplasmidfinder"PlasmidFinder provides the detection of replicons in the WGSand assigns the plasmids under study to lineages that trace backthe information to the existing knowledge on Inc groups and suggestspossible reference plasmids for each lineage"PlasmidFinderPlasmidFinderPlasmidFinderPlasmidFinder is a tool for the identification and typing of Plasmid Replicons in Whole-Genome Sequencing (WGS).Genome assembly, Scaffolding, Multilocus sequence typingWhole genome sequencing, Sequence assembly, Mapping, Probes and primersUp-to-datehttps://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/Sequence Analysisplasmidfinderiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/plasmidfinder2.1.6plasmidfinder2.1.6Genome assembly, Scaffolding, Multilocus sequence typingWhole genome sequencing, Sequence assembly, Mapping, Probes and primers0111011100000000000010000000000000000100822
plinkplinkWhole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner.plinkplinkPLINKFree, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner.Genetic variation analysisGWAS studyUp-to-datehttps://www.cog-genomics.org/plinkGenome-Wide Association Studyplinkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/plinkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/plink1.90b6.21plink1.90b6.21Genetic variation analysisGWAS study101110110000000000000000000000000000011046669
polypolishpolypolish"Polypolish is a tool for polishing genome assemblies with short reads.Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location).This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix."PolypolishPolypolishPolypolishPolypolish is a tool for polishing genome assemblies with short reads. Unlike other tools in this category, Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location). This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix.Genome assembly, Read mapping, Mapping assembly, Sequencing error detectionSequence assembly, Sequence composition, complexity and repeats, MappingTo updatehttps://github.com/rrwick/PolypolishSequence Analysispolypolishiuchttps://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolishhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/polypolish0.5.0polypolish0.6.0Genome assembly, Read mapping, Mapping assembly, Sequencing error detectionSequence assembly, Sequence composition, complexity and repeats, Mapping011101110000000000000010000000000000010024239
porechopporechopPorechop - Finding and removing adapters from Oxford Nanopore readsTo updatehttps://github.com/rrwick/PorechopFasta Manipulation, Fastq Manipulationporechopiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/porechophttps://github.com/galaxyproject/tools-iuc/tree/main/tools/porechopporechop0.2.411101110000000000000001000000000000001101046185468
poretoolsporetools_events, poretools_extract, poretools_hist, poretools_nucdist, poretools_occupancy, poretools_qualdist, poretools_qualpos, poretools_squiggle, poretools_stats, poretools_tabular, poretools_times, poretools_winner, poretools_yield_plotA flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis.poretoolsporetoolsPoretoolsFlexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis.Nucleic acid sequence analysisDNA, SequencingUp-to-datehttps://poretools.readthedocs.io/en/latest/Fasta Manipulation, Fastq Manipulationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/poretoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/poretools0.6.1a1poretools0.6.1a1Nucleic acid sequence analysisDNA, Sequencing1313130131313000001300000000013000000000000001313040918773
prestopresto_alignsets, presto_assemblepairs, presto_buildconsensus, presto_collapseseq, presto_filterseq, presto_maskprimers, presto_pairseq, presto_parseheaders, presto_parselog, presto_partition, prestor_abseq3pRESTO toolkit for immune repertoire analysis.prestoprestopRESTOIntegrated collection of platform-independent Python modules for processing raw reads from high-throughput (next-generation) sequencing of lymphocyte repertoires.Nucleic acid sequence analysisSequencing, DNA, ImmunologyTo updatehttps://presto.readthedocs.io/Sequence Analysisprestoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/prestohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/presto0.6.2presto0.7.2Nucleic acid sequence analysisSequencing, DNA, Immunology11000110000000000000000000000000000000000000
pretextpretext_graph, pretext_map, pretext_snapshotProcess genome contacts maps processing images.Up-to-datehttps://github.com/wtsi-hpag/PretextSnapshotSequence Analysissuite_pretextiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pretexthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pretext0.0.6pretextgraph0.0.632303230000000000000000000000000000002002542350
prinseqprinseqPRINSEQ is a tool for easy and rapid quality control and data processing of metagenomic and metatranscriptomic datasetsprinseqprinseqPRINSEQPRINSEQ is a sequence processing tool that can be used to filter, reformat and trim genomic and metagenomic sequence data. It generates summary statistics of the input in graphical and tabular formats that can be used for quality control steps. PRINSEQ is available as both standalone and web-based versions.Read pre-processing, Sequence trimming, Sequence contamination filteringTranscriptomics, Metagenomics, GenomicsTo updatehttp://prinseq.sourceforge.net/manual.htmlFastq Manipulation, Metagenomicsprinseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/prinseq/https://github.com/galaxyproject/tools-iuc/tree/main/tools/prinseq@TOOL_VERSION+galaxy2prinseq0.20.4Read pre-processing, Sequence trimming, Sequence contamination filteringTranscriptomics, Metagenomics1011101100000000000000100000000000000110707881
prodigalprodigalA protein-coding gene prediction software tool for bacterial and archaeal genomesprodigalprodigalProdigalFast, reliable protein-coding gene prediction for prokaryotic genomes.Genome annotationGenomics, Sequence analysisUp-to-datehttps://github.com/hyattpd/ProdigalGenome annotationprodigaliuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigalhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal2.6.3prodigal2.6.3Genome annotationGenomics, Sequence analysis001100110000000000100010000000000000000000
progressivemauveprogressivemauve, xmfa2gff3Mauve/ProgressiveMauve Multiple Sequence AlignerTo updatehttp://darlinglab.org/mauve/user-guide/progressivemauve.htmlSequence Analysisprogressivemauveiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/progressivemauvehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/progressivemauveprogressivemauvesnapshot_2015_02_1320202020000020000000002000000000000002202861734
prokkaprokkaRapid annotation of prokaryotic genomesprokkaprokkaProkkaSoftware tool to annotate bacterial, archaeal and viral genomes quickly and produce standards-compliant output files.Gene prediction, Coding region prediction, Genome annotationGenomics, Model organisms, VirologyUp-to-datehttp://github.com/tseemann/prokkaSequence Analysisprokkacrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/prokka/https://github.com/galaxyproject/tools-iuc/tree/main/tools/prokka1.14.6prokka1.14.6Coding region prediction, Genome annotationGenomics, Model organisms, Virology11111111000000000000111001000100001001103233371445
prot-scriberprot_scriberProtein annotation of short human readable descriptionsUp-to-datehttps://github.com/usadellab/prot-scriberProteomicsprot_scriberiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/prot-scriberhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/prot-scriber0.1.6prot-scriber0.1.6001000100000000000000000000000000000010055
proteinorthoproteinortho, proteinortho_grab_proteins, proteinortho_summaryProteinortho is a tool to detect orthologous proteins/genes within different species.proteinorthoproteinorthoProteinorthoProteinortho is a tool to detect orthologous genes within different speciesSequence clustering, Sequence analysisComparative genomicsTo updatehttps://gitlab.com/paulklemm_PHD/proteinorthoProteomicsproteinorthoiuchttps://gitlab.com/paulklemm_PHD/proteinorthohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/proteinortho6.3.1proteinortho6.3.2Sequence clustering, Sequence analysisComparative genomics00300030000000000000001000000000000003302003320
psiclasspsiclassPsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples.psiclasspsiclassPsiCLASSReference-based transcriptome assembler for single or multiple RNA-seq samplesTranscriptome assemblySequence assemblyUp-to-datehttps://github.com/splicebox/PsiCLASSTranscriptomicspsiclassiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclasshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass1.0.3psiclass1.0.3Transcriptome assemblySequence assembly0010001000000000000000000000000000000100115
pureclippureclipPureCLIP is an HMM based peak caller specifically designed for eCLIP/iCLIP dataTo updatehttps://github.com/skrakau/PureCLIPSequence Analysis, RNA, CLIP-seqpureclipiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/purecliphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pureclip1.0.4pureclip1.3.10010001000000000000000000000000000000110361423
purge_dupspurge_dupsPurge haplotigs and overlaps in an assembly based on read depthpurge_dupspurge_dupspurge_dupsIdentifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuencesGenome assembly, Read binning, ScaffoldingSequence assemblyUp-to-datehttps://github.com/dfguan/purge_dupsAssemblypurge_dupsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dupshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups1.2.6purge_dups1.2.6Genome assembly, Read binning, ScaffoldingSequence assembly111011100000000000000000000000000000010016716800
pycoqcpycoqcQC metrics for ONT BasecallingpycoqcpycoqcpycoQCPycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data.Sequencing quality control, Statistical calculationSequence analysis, Data quality management, SequencingUp-to-datehttps://github.com/tleonardi/pycoQCNanoporepycoqciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc2.5.2pycoqc2.5.2Sequencing quality control, Statistical calculationSequence analysis, Data quality management, Sequencing111111110000000000001010000000000000010035021123
pyega3pyega3EGA python client uses the EGA REST API to download authorized datasets and files.To updatehttps://github.com/EGA-archive/ega-download-clientData Sourceega_download_clientiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pyega3https://github.com/galaxyproject/tools-iuc/tree/main/tools/pyega35.0.2pyega35.2.01110111000000000000000000000000000000110382424
pygenometrackspygenomeTrackspyGenomeTracks: Standalone program and library to plot beautiful genome browser tracks.pygenometrackspygenometrackspyGenomeTracksreproducible plots for multivariate genomic data sets.Standalone program and library to plot beautiful genome browser tracks.pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. Currently, it is possible to plot:.Visualisation, FormattingModel organisms, Imaging, WorkflowsTo updatehttps://github.com/deeptools/pyGenomeTracksVisualizationpygenometracksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pygenometrackshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pygenometracks3.8pygenometracks3.9Visualisation, FormattingModel organisms, Imaging, Workflows111111110000000000001000000000000000011037711332
pysradbpysradb_searchpysradb allows to retrieve metadata, such as run accession numbers, from SRA and ENA based on multiple criteria.pysradbpysradbpysradbPython package to query next-generation sequencing metadata and data from NCBI Sequence Read Archive.Deposition, Data retrievalSequencing, Gene transcripts, BioinformaticsTo updatehttps://github.com/saketkc/pysradbSequence Analysispysradb_searchiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pysradbhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pysradb1.4.2pysradb2.2.1Deposition, Data retrievalSequencing, Gene transcripts, Bioinformatics001000100000000000000010010000000000010026144
qfiltqfiltFilter sequencing dataTo updatehttps://github.com/veg/qfiltFastq Manipulationqfiltiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qfilthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/qfilt1.0.0+galaxy1qfilt0.0.1000000000000000000000000000000000000000000
qiime_add_onqiime_collapse_samples, qiime_make_otu_tableQIIME to perform microbial community analysisqiime_add_onqiime_add_on, qiime_coreqiime_add_onQIIME 2 is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed.Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality controlMicrobial ecology, Phylogeny, Metagenomics, MetatranscriptomicsTo updatehttp://www.qiime.orgMetagenomicsqiimeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_add_onqiime1.9.1Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality controlMicrobial ecology, Phylogeny, Metagenomics, Metatranscriptomics0022002200000000000000000000000000000220681909
qiime_coreqiime_align_seqs, qiime_alpha_diversity, qiime_alpha_rarefaction, qiime_assign_taxonomy, qiime_beta_diversity, qiime_beta_diversity_through_plots, qiime_compare_categories, qiime_core_diversity, qiime_count_seqs, qiime_extract_barcodes, qiime_filter_alignment, qiime_filter_fasta, qiime_filter_otus_from_otu_table, qiime_filter_samples_from_otu_table, qiime_filter_taxa_from_otu_table, qiime_jackknifed_beta_diversity, qiime_make_emperor, qiime_make_otu_heatmap, qiime_make_phylogeny, qiime_multiple_join_paired_ends, qiime_multiple_split_libraries_fastq, qiime_pick_closed_reference_otus, qiime_pick_open_reference_otus, qiime_pick_otus, qiime_pick_rep_set, qiime_plot_taxa_summary, qiime_split_libraries, qiime_split_libraries_fastq, qiime_summarize_taxa, qiime_summarize_taxa_through_plots, qiime_upgma_cluster, qiime_validate_mapping_fileQIIME to perform microbial community analysisqiime_coreqiime_coreqiime_coreQIIME 2™ is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed.Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality controlMicrobial ecology, Phylogeny, Metagenomics, MetatranscriptomicsTo updatehttp://www.qiime.orgMetagenomicsqiimeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_coreqiime1.9.1Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality controlMicrobial ecology, Phylogeny, Metagenomics, Metatranscriptomics00323200323200000000000031010000000000000031310115528681
qiime_extract_vizqiime_extract_vizExtract vizualization from QIIME artifactsTo updatehttp://www.qiime.orgMetagenomicsqiime_extract_viziuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qiimme_extract_vizhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime_extract_viz0.1.0unzip001000100000000000000000000000000000000000
qq_toolsqq_manhattanTo updatehttps://CRAN.R-project.org/package=qqmanVisualization, Variant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/qq_tools0.1.0r-qqman0.1.4000000000000000000000000000000000000000000
qualimapqualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseqQualimap 2 is a platform-independent application written in Java andR that facilitates the quality control of alignment sequencing data and itsderivatives like feature counts.qualimapqualimapQualiMapPlatform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data.Sequencing quality controlData quality managementUp-to-datehttp://qualimap.bioinfo.cipf.es/Sequence Analysis, Transcriptomics, SAMqualimapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap2.3qualimap2.3Sequencing quality controlData quality management44414441000000000000004001000100000004401328664470
quastquastQuast (Quality ASsessment Tool) evaluates genome assemblies.quastquastQUASTQUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports.Visualisation, Sequence assembly validationSequence assemblyUp-to-datehttp://quast.bioinf.spbau.ru/Assemblyquastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/quast5.2.0quast5.2.0Visualisation, Sequence assembly validationSequence assembly1111111100001000000011100100010000000110356751567
query_impcquery_impcContains a tool to query the IMPC database.To updatehttps://github.com/INFRAFRONTIERDIB/tools-iuc/tree/query_impc/tools/query_impcConvert Formats, Web Servicesquery_impciuchttps://github.com/INFRAFRONTIERDIB/tools-iuc/tree/query_impc/tools/query_impchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/query_impc0.9.0requests001000100000000000000000000000000000000001
query_tabularfilter_tabular, query_tabular, sqlite_to_tabularLoads tabular files into a SQLite DB to perform a SQL query producing a tabular outputTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabularText Manipulationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabularhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/query_tabular3.3.1python3331333100000000000003200000010000000330561124536
quickmergequickmergeMerge long-read and hybrid assemblies to increase contiguityquickmergequickmergequickmergeQuickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads.Genome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotypeUp-to-datehttps://github.com/mahulchak/quickmergeAssemblyquickmergegalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmergehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge0.3quickmerge0.3Genome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype000000000000000000000000000000000000001000
raceidraceid_clustering, raceid_filtnormconf, raceid_inspectclusters, raceid_inspecttrajectory, raceid_trajectoryRaceID3, StemID2, FateID - scRNA analysisTo updatehttps://github.com/dgrun/RaceID3_StemID2_package/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid0.2.3r-raceid0.1.35551555100000000000000000000000000000550824569
ragtagragtagReference-guided scaffolding of draft genomes tool.ragtagragtagragtagRagTag is a collection of software tools for scaffolding and improving modern genome assemblies.Genome assemblySequence assemblyUp-to-datehttps://github.com/malonge/RagTagAssemblyragtagiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtaghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag2.1.0ragtag2.1.0Genome assemblySequence assembly01110111000000000000001000000000000001102372833
rapidnjrapidnjGalaxy wrapper for the RapidNJ toolrapidnjrapidnjRapidNJA tool for fast canonical neighbor-joining tree construction.Phylogenetic tree generationPhylogenyUp-to-datehttps://birc.au.dk/software/rapidnj/Phylogeneticsrapidnjiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rapidnjhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rapidnj2.3.2rapidnj2.3.2Phylogeny111111110000000000000010000000000000010014176
rasusarasusaRandomly subsample sequencing reads to a specified coveragerasusarasusarasusaProduces an unbiased subsample of your readsTo updatehttps://github.com/mbhall88/rasusaSequence Analysisrasusaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rasusahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rasusa2.0.0rasusa2.1.0001000100000000000000000000000000000000000
ravenravenRaven is a de novo genome assembler for long uncorrected reads.Up-to-datehttps://github.com/lbcb-sci/ravenAssemblyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ravenhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/raven1.8.3raven-assembler1.8.301110111000000000000001000000000000001002626902
raxmlraxmlRAxML - A Maximum Likelihood based phylogenetic inferenceraxmlraxmlRAxMLA tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies.Sequence analysis, Phylogenetic tree analysisPhylogenetics, Sequence analysisTo updatehttp://www.exelixis-lab.org/web/software/raxml/Phylogeneticsraxmliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/raxmlhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/raxml8.2.12raxml8.2.13Sequence analysisPhylogenetics11111111000010000000001000000000000001103836808
rcorrectorrcorrectorRcorrector (RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data.rcorrectorrcorrectorRcorrectorThis is a kmer-based error correction method for RNA-seq data. It can also be applied to other types of sequencing data where the read coverage is non-uniform, such as single-cell sequencing.Sequencing error detectionRNA, RNA-Seq, SequencingTo updatehttps://github.com/mourisl/RcorrectorFastq Manipulationrcorrectoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rcorrectorhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rcorrector1.0.3+galaxy1rcorrector1.0.7Sequencing error detectionRNA, RNA-Seq001000100000000000000000000000000000011030569
read_it_and_keepread_it_and_keepRapid decontamination of SARS-CoV-2 sequencing readsread_it_and_keepread_it_and_keepread_it_and_keepRead contamination removalFiltering, Genome alignmentPathology, GenomicsTo updatehttps://github.com/GenomePathogenAnalysisService/read-it-and-keepSequence Analysisread_it_and_keepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/read-it-and-keephttps://github.com/galaxyproject/tools-iuc/tree/main/tools/read_it_and_keep0.2.2read-it-and-keep0.3.0Filtering, Genome alignmentPathology, Genomics1010101000000000000000100000000000000100713370
recentrifugerecentrifuge"With Recentrifuge, researchers can analyze results from taxonomic classifiers using interactive charts with emphasis on the confidence level of the classifications.In addition to contamination-subtracted samples.Recentrifuge provides shared and exclusive taxa per sample,thus enabling robust contamination removal and comparative analysis in environmental and clinical metagenomics."RecentrifugeRecentrifugeRecentrifugeRobust comparative analysis and contamination removal for metagenomics.Taxonomic classification, Expression analysis, Cross-assemblyMetagenomics, Microbial ecology, Metagenomic sequencingUp-to-datehttps://github.com/khyox/recentrifugeMetagenomicsrecentrifugeiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/recentrifugehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/recentrifuge1.14.1recentrifuge1.14.1Taxonomic classification, Expression analysis, Cross-assemblyMetagenomics, Microbial ecology, Metagenomic sequencing111111110000000000001010000000000000010048331
redredRed (REpeat Detector)redredREDThis is a program to detect and visualize RNA editing events at genomic scale using next-generation sequencing data.RNA-Seq analysis, EditingRNA, Sequencing, Data visualisationUp-to-datehttps://github.com/BioinformaticsToolsmith/RedSequence Analysisrediuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/redhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/red2018.09.10red2018.09.10RNA-Seq analysis, EditingRNA, Sequencing, Data visualisation111111110000000000000010000000000000010088578
repeatmaskerrepeatmasker_wrapperRepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences.repeatmaskerrepeatmaskerRepeatMaskerA program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. The output of the program is a detailed annotation of the repeats that are present in the query sequence as well as a modified version of the query sequence in which all the annotated repeats have been masked (default: replaced by Ns).Genome annotationSequence analysis, Sequence composition, complexity and repeatsUp-to-datehttp://www.repeatmasker.org/Sequence Analysisrepeat_maskerbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmaskerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmasker4.1.5repeatmasker4.1.5Genome annotationSequence composition, complexity and repeats11111111000000000000000000000000000001102483750
repeatmodelerrepeatmodelerRepeatModeler - Model repetitive DNArepeatmodelerrepeatmodelerRepeatModelerDe-novo repeat family identification and modeling package. At the heart of RepeatModeler are two de-novo repeat finding programs ( RECON and RepeatScout ) which employ complementary computational methods for identifying repeat element boundaries and family relationships from sequence data. RepeatModeler assists in automating the runs of RECON and RepeatScout given a genomic database and uses the output to build, refine and classify consensus models of putative interspersed repeats.Repeat sequence detectionSequence composition, complexity and repeats, Sequence composition, complexity and repeatsTo updatehttps://www.repeatmasker.org/RepeatModeler/Genome annotationrepeatmodelercsblhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmodelerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmodeler2.0.5Repeat sequence detectionSequence composition, complexity and repeats, Sequence composition, complexity and repeats11111111000000000000001000000000000001002171177
repmatch_gff3repmatch_gff3Contains a tool that matches corresponding peak-pair midpoints from separate datasets based onuser-defined criteria.To updateChIP-seqrepmatch_gff3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/repmatch_gff3https://github.com/galaxyproject/tools-iuc/tree/main/tools/repmatch_gff3matplotlib100010000000000000000000000000000000000000
reshape2cast, meltFlexibly restructure and aggregate data using just the two functions melt and dcastTo updatehttps://cran.r-project.org/web/packages/reshape2/index.htmlText Manipulationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2https://github.com/galaxyproject/tools-iuc/tree/main/tools/reshape21.4.2r-reshape22022202200000000000000200000000000000220333456
resize_coordinate_windowresize_coordinate_windowContains a tool that modifies the start and stop coordinates of GFF data, expanding the coordinate windowby a specified size.To updateGenomic Interval Operationsresize_coordinate_windowiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/resize_coordinate_windowhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/resize_coordinate_window1.0.2python1010101000000000000000000000000000000110585
revoluzerrevoluzer_crex, revoluzer_distmatrevoluzer wrappersrevoluzerrevoluzerrevoluzerVarious tools for genome rearrangement analysis. CREx, TreeREx, etcStructural variation detectionMolecular evolution, PhylogenyUp-to-datehttps://gitlab.com/Bernt/revoluzer/Phylogeneticsrevoluzeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/revoluzerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/revoluzer0.1.6revoluzer0.1.6Structural variation detectionMolecular evolution, Phylogeny002000200000000000000000000000000000000000
rgccargccamulti-block analysisTo updatehttps://github.com/rgcca-factory/RGCCAStatisticsrgccaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rgccahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rgcca3.0.2rgccacmd3.0.31010101000000000000000000000000000000100344
rgrnastarrna_star, rna_starsoloRNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapperstarstarSTARUltrafast universal RNA-seq data alignerSequence alignmentRNA-Seq, TranscriptomicsTo updatehttps://github.com/alexdobin/STARNext Gen Mappers, Transcriptomicsrgrnastariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastarhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar2.7.11astar2.7.11bSequence alignmentRNA-Seq, Transcriptomics22222222010000000000111002000200000002204015425658
ribowaltzribowaltz_process, ribowaltz_plotCalculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling datariboWaltzriboWaltzriboWaltzriboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data.Computational biologyTo updatehttps://github.com/LabTranslationalArchitectomics/riboWaltzTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltzhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz1.2.0ribowaltz2.0Computational biology002000200000000000000000000000000000020014161
rnaquastrna_quastrnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies.rnaQUASTrnaQUASTrnaQUASTQuality assessment tool for de novo transcriptome assemblies.De-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics, RNA-seqUp-to-datehttps://github.com/ablab/rnaquastAssembly, RNArnaquastiuchttps://git.ufz.de/lehmanju/rnaquasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast2.3.0rnaquast2.3.0De-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics11111111000000000000000000000000000001001091110
roaryroaryRoary the pangenome pipelineroaryroaryRoaryA high speed stand alone pan genome pipeline, which takes annotated assemblies in GFF3 format (produced by Prokka (Seemann, 2014)) and calculates the pan genome.Genome assemblyDNA, Genomics, MappingUp-to-datehttps://sanger-pathogens.github.io/Roary/Sequence Analysisroaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/roaryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/roary3.13.0roary3.13.0Genome assemblyDNA, Genomics, Mapping111111110000000000000010000000000000011065612225
rp2biosensorrp2biosensorBuild Sensing-Enabling Metabolic Pathways from RetroPath2.0 outputTo updatehttps://github.com/brsynth/rp2biosensorSynthetic Biologyrp2biosensoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2biosensorhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rp2biosensor3.2.1rp2biosensor000000000000000000000000000000000000000000
rp2pathsrp2pathsEnumerate and seperate the different pathways generated by RetroPath2.0To updatehttps://github.com/brsynth/rp2pathsSynthetic Biologyrp2pathsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2pathshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rp2paths1.5.1rp2paths000000000000000000000000000000000000000000
rpbasicdesignrpbasicdesignExtracting enzyme IDs from rpSBML filesTo updatehttps://github.com/brsynth/rpbasicdesignSynthetic Biologyrpbasicdesigniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rpbasicdesignhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rpbasicdesign1.2.2rpbasicdesign000000000000000000000000000000000000000000
rpfbarpfbaPerform FBA for the RetroPath2.0 heterologous pathwaysTo updatehttps://github.com/brsynth/rptools/releasesSynthetic Biologyrpfbaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rpfbahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rpfba5.12.3rptools000000000000000000000000000000000000000000
rptoolsrptools_rpextractsink, rptools_rpfba, rptools_rpranker, rptools_rpreport, rptools_rpvizSuite of tools that work on rpSBML formatTo updatehttps://github.com/brsynth/rptoolsSynthetic Biologyrptoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rptoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rptools5.13.1rptools000000000000000000000000000000000000000000
rrparserrrparserReaction Rules ParserTo updatehttps://github.com/brsynth/RRParserSynthetic Biologyrrparseriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparserhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rrparser2.5.2rrparser000000000000000000000000000000000000000000
rseqcrseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tinan RNA-seq quality control packagerseqcrseqcRSeQCProvides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc.Data handlingSequencingUp-to-datehttps://code.google.com/p/rseqc/Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualizationrseqcnileshhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc5.0.3rseqc5.0.3Data handlingSequencing222222222222222200000000000022000022000220000000222203206133498
ruvseqruvseqRemove Unwanted Variation from RNA-Seq DataruvseqruvseqRUVSeqThis package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples.Differential gene expression analysisGene expression, RNA-seqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsruvseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq1.26.0bioconductor-ruvseq1.36.0Differential gene expression analysisGene expression1010101000000000000000000000010000000110761236
salsa2salsaA tool to scaffold long read assemblies with Hi-CSALSASALSASALSA> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branchGenome assembly, De-novo assembly, ScaffoldingSequence assembly, DNA binding sites, MappingUp-to-datehttps://github.com/marbl/SALSAAssemblysalsaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa22.3salsa22.3Genome assembly, De-novo assembly, ScaffoldingSequence assembly, DNA binding sites, Mapping101010100000000000000010000000000000010084454
samblastersamblastersamblaster marks duplicates and can output split and discordant alignments from SAM/BAM filessamblastersamblasterSAMBLASTERA tool to mark duplicates and extract discordant and split reads from SAM files.Split read mappingDNA, Sequencing, MappingTo updatehttps://github.com/GregoryFaust/samblasterSAM, Fastq Manipulation, Variant Analysissamblasteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/samblasterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/samblaster0.1.24samblaster0.1.26Split read mappingDNA, Sequencing, Mapping000000000000000000000000000000000000000000
samtoolsTo updatehttps://github.com/samtools/samtoolsSAMiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/samtools1.15.1samtools1.20000000000000000000000000000000000000000000
sansasansa_annotateSansa is a tool for structural variant annotation.Up-to-datehttps://github.com/dellytools/sansaVariant Analysissansaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sansahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sansa0.2.1sansa0.2.1001000100000000000000000000000000000010018123
sarscov2formattersarscov2formattersarscov2formatter custom scriptUp-to-datehttps://github.com/nickeener/sarscov2formatterSequence Analysissarscov2formatteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2formatterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2formatter1.0sarscov2formatter1.010101010000000000000000000000000000001107173
sarscov2summarysarscov2summarysarscov2summary custom scriptTo updatehttps://github.com/nickeener/sarscov2summarySequence Analysissarscov2summaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2summaryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2summary0.1sarscov2summary0.510101010000000000000000000000000000001101140
sbml2sbolsbml2sbolConvert SBML to SBOL formatTo updatehttps://github.com/neilswainston/SbmlToSbolSynthetic Biologysbml2sboliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sbml2sbolhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sbml2sbol0.1.13sbml2sbol000000000000000000000000000000000000000000
scanpyscanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confoundersScanpy – Single-Cell Analysis in PythonscanpyscanpySCANPYScalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells.Differential gene expression analysisGene expression, Cell biology, GeneticsTo updatehttps://scanpy.readthedocs.ioTranscriptomics, Sequence Analysisscanpyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy1.9.6scanpy1.7.2Differential gene expression analysisGene expression, Cell biology, Genetics666066600000000000000000000000000000066076651978
scaterscater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsneScater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization.scaterscaterscaterPre-processing, quality control, normalization and visualization of single-cell RNA-seq data.Read pre-processing, Sequencing quality control, Sequence visualisationRNA-seq, Quality affairs, Molecular geneticsTo updatehttp://bioconductor.org/packages/scater/Transcriptomics, RNA, Visualizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scaterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scater1.22.0bioconductor-scater1.30.1Read pre-processing, Sequence visualisationQuality affairs, Molecular genetics0550055000000000000000000000000000000550771365
sceasysceasy_convertConverter between difference single-cell formatsUp-to-datehttps://github.com/cellgeni/sceasy/Transcriptomicssceasy_convertiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy0.0.7r-sceasy0.0.7111011100000000000000000000001000000000090721
schicexplorerschicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrolscHiCExplorer: Set of programs to process, analyze and visualize scHi-C data.To updatehttps://github.com/joachimwolff/schicexplorerSequence Analysis, Transcriptomics, Visualizationschicexploreriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer4schicexplorer716161601616160000000000000000000000000000001616023779
scikit-bioscikit_bio_diversity_beta_diversityscikit-bio: an open-source, BSD-licensed, python package providing data structures, algorithms, and educational resources for bioinformaticsUp-to-datehttp://scikit-bio.org/Sequence Analysisscikit_bioiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scikit_biohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scikit-bio0.4.2scikit-bio0.4.2100010000000000000000000000000000000000001
scoaryscoaryScoary calculates the assocations between all genes in the accessory genome and the traits.scoaryscoaryScoaryPan-genome wide association studies and is designed to take the gene_presence_absence.csv file from Roary as well as a traits file created by the user and calculate the assocations between all genes in the accessory genome (all genes that are present in i genomes where 1 < i < N) and the traits. It reports a list of genes sorted by strength of association per trait.AnalysisGenotype and phenotype, Model organisms, GWAS study, Functional genomicsUp-to-datehttps://github.com/AdmiralenOla/ScoaryMetagenomicsscoaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scoaryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scoary1.6.16scoary1.6.16AnalysisGenotype and phenotype, Model organisms, GWAS study, Functional genomics001000100000000000000010000000000000010061676
scpipescpipeA flexible preprocessing pipeline for single-cell RNA-sequencing datascpipescpipescPipeA preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols.Genome annotation, Validation, Alignment, VisualisationGene expression, RNA-Seq, SequencingTo updatehttp://bioconductor.org/packages/release/bioc/html/scPipe.htmlTranscriptomics, RNA, Statisticsscpipeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe1.0.0+galaxy2bioconductor-scpipe2.2.0Genome annotation, Validation, Alignment, VisualisationGene expression, RNA-Seq101010100000000000000000000000000000011011628
seacrseacrSEACR is intended to call peaks and enriched regions from sparse CUT&RUN or chromatin profiling data in which background is dominated by zeroes.Up-to-datehttps://github.com/FredHutch/SEACREpigenetics, ChIP-seqseacriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seacrhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seacr1.3seacr1.31010101000000000000000000000000000000110503647
selenzy_wrapperselenzy_wrapperPerforms enzyme selection from a reaction query.Up-to-datehttps://github.com/brsynth/selenzy-wrapperSynthetic Biologyselenzy_wrapperiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/selenzy_wrapperhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/selenzy_wrapper0.3.0selenzy_wrapper0.3.0000000000000000000000000000000000000000000
semibinsemibin_bin, semibin_concatenate_fasta, semibin_generate_cannot_links, semibin_generate_sequence_features, semibin, semibin_trainSemiBin: Semi-supervised Metagenomic Binning Using Siamese Neural NetworkssemibinsemibinSemiBinCommand tool for metagenomic binning with semi-supervised deep learning using information from reference genomes.Sequence assembly, Read binningMetagenomics, Machine learning, Microbial ecology, Sequence assemblyTo updatehttps://semibin.readthedocs.io/en/latest/Metagenomicssemibiniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/semibinhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/semibin2.0.2semibin2.1.0Sequence assembly, Read binningMetagenomics, Machine learning, Microbial ecology, Sequence assembly006100610000000000000000000000000000060039542
seq2hlaseq2hlaPrecision HLA typing and expression from RNAseq dataseq2hlaseq2hlaSeq2HLAseq2HLA is a computational tool to determine Human Leukocyte Antigen (HLA) directly from existing and future short RNA-Seq reads. It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie index comprising known HLA alleles and outputs the most likely HLA class I and class II types, a p-value for each call, and the expression of each class.Read mapping, Genetic variation analysisTranscriptomics, MappingUp-to-datehttps://github.com/TRON-Bioinformatics/seq2HLASequence Analysisseq2hlaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hlahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seq2hla2.3seq2hla2.3Read mapping, Genetic variation analysisTranscriptomics, Mapping001000100000000000000000000000000000011016288
seqcomplexityseqcomplexitySequence complexity for raw readsUp-to-datehttps://github.com/stevenweaver/seqcomplexitySequence Analysisiuchttps://github.com/stephenshank/tools-iuc/tree/seqcomplexity/tools/seqcomplexity/https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqcomplexity0.1.2seqcomplexity0.1.210101010000000000000000001000000000001001668
seqkitseqkit_fx2tab, seqkit_locate, seqkit_sort, seqkit_stats, seqkit_translateA cross-platform and ultrafast toolkit for FASTA/Q file manipulationseqkitseqkitseqkitFASTA and FASTQ are basic and ubiquitous formats for storing nucleotide and protein sequences. Common manipulations of FASTA/Q file include converting, searching, filtering, deduplication, splitting, shuffling, and sampling. Existing tools only implement some of these manipulations, and not particularly efficiently, and some are only available for certain operating systems. Furthermore, the complicated installation process of required packages and running environments can render these programs less user friendly. SeqKit demonstrates competitive performance in execution time and memory usage compared to similar tools. The efficiency and usability of SeqKit enable researchers to rapidly accomplish common FASTA/Q file manipulations.DNA transcription, Sequence trimming, DNA translation, Sequence conversionDatabase management, Sequence analysisUp-to-datehttps://bioinf.shenwei.me/seqkit/Sequence Analysisseqkitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seqkit2.8.2seqkit2.8.2DNA transcription, Sequence trimming, DNA translationDatabase management, Sequence analysis02520252000000000000005000000000000003001291964
seqprepseqprepTool for merging paired-end Illumina reads and trimming adapters.seqprepseqprepSeqPrepStrips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads.Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primersUp-to-datehttps://github.com/jstjohn/SeqPrepFastq Manipulation, Sequence Analysisseqprepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprephttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep1.3.2seqprep1.3.2Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primers001000100000000000000000000000000000000000
seqsero2seqsero2Salmonella serotype prediction from genome sequencing dataseqsero2seqsero2SeqSero2rapid and improved Salmonella serotype determination using whole genome sequencing data | SeqSero-Salmonella Serotyping by Whole Genome Sequencing | Salmonella Serotyping by Whole Genome Sequencing | Online version: http://www.denglab.info/SeqSero2 | Salmonella serotype prediction from genome sequencing data | Citation: SeqSero, Zhang et al. 2015; SeqSero2, Zhang et al. 2019 | Salmonella serotype derterminants databases | Upon executing the command, a directory named 'SeqSero_result_Time_your_run' will be created. Your result will be stored in 'SeqSero_result.txt' in that directory. And the assembled alleles can also be found in the directory if using "-m a" (allele mode)Genome indexing, Antimicrobial resistance prediction, Genome alignmentWhole genome sequencing, Sequence assembly, GenomicsUp-to-datehttps://github.com/denglab/SeqSero2Sequence Analysisseqsero2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqsero2https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqsero21.3.1seqsero21.3.1Genome indexing, Antimicrobial resistance prediction, Genome alignmentWhole genome sequencing, Sequence assembly, Genomics0010001000000000000000000000000000000000012
seqtkseqtk_comp, seqtk_cutN, seqtk_dropse, seqtk_fqchk, seqtk_hety, seqtk_listhet, seqtk_mergefa, seqtk_mergepe, seqtk_mutfa, seqtk_randbase, seqtk_sample, seqtk_seq, seqtk_subseq, seqtk_telo, seqtk_trimfqToolkit for processing sequences in FASTA/Q formatsseqtkseqtkseqtkA tool for processing sequences in the FASTA or FASTQ format. It parses both FASTA and FASTQ files which can also be optionally compressed by gzip.Data handling, Sequence file editingData managementUp-to-datehttps://github.com/lh3/seqtkSequence Analysisseqtkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seqtk1.4seqtk1.4Data handling, Sequence file editing1515151515151515000014000000014014001400015000000014141475359668
seqwishseqwishAlignment to variation graph inducerTo updatehttps://github.com/ekg/seqwishSequence Analysis, Variant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqwish/https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqwish0.7.5seqwish0.7.1000100010000000000000000000000000000001100271
seuratseuratA toolkit for quality control, analysis, and exploration of single cell RNA sequencing dataTo updatehttps://github.com/satijalab/seuratTranscriptomics, RNA, Statisticsseuratiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seurathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat4.3.0.1r-seurat3.0.21111111100000000000000000000010000000110661543
shastashastaFast de novo assembly of long read sequencing dataTo updatehttps://github.com/chanzuckerberg/shastaAssembly, Nanoporeshastaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shastahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta0.6.0shasta0.12.00110011000000000000000100000000000000100154763
shorahshorah_ampliconReconstruct haplotypes using ShoRAH in amplicon modeshorahshorahShoRAHInference of a population from a set of short reads. The package contains programs that support mapping of reads to a reference genome, correcting sequencing errors by locally clustering reads in small windows of the alignment, reconstructing a minimal set of global haplotypes that explain the reads, and estimating the frequencies of the inferred haplotypes.Haplotype mapping, Variant callingMetagenomics, Sequencing, GeneticsTo updatehttps://github.com/cbg-ethz/shorah/blob/master/README.mdSequence Analysisshorah_ampliconiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shorahhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shorah1.1.3shorah1.99.2Haplotype mapping, Variant callingMetagenomics, Sequencing, Genetics000000000000000000000010000000000000000000
shovillshovillFaster de novo assembly pipeline based around SpadesshovillshovillshovillShovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too.Genome assemblyGenomics, Microbiology, Sequence assemblyUp-to-datehttps://github.com/tseemann/shovillAssemblyshovilliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shovillhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill1.1.0shovill1.1.0Genome assemblyGenomics, Microbiology, Sequence assembly1111111100000000000010100000000000000110100841600
sicklesickleA windowed adaptive trimming tool for FASTQ files using qualitysicklesicklesickleA tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads.Sequence trimmingData quality managementTo updatehttps://github.com/najoshi/sickleFastq Manipulation, Sequence Analysissickleiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sicklehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sickle1.33.2sickle-trim1.33Sequence trimmingData quality management101110110000000000000000000001000000011026914982
simtextabstracts_by_pmids, pmids_to_pubtator_matrix, pubmed_by_queries, text_to_wordmatrixA text mining framework for interactive analysis and visualization of similarities among biomedical entities.To updatehttps://github.com/dlal-group/simtextText Manipulationsimtextiuchttps://github.com/galaxyproject/tools-iuc/tools/simtexthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/simtext0.0.2r-argparse1.0.1024002400000000000000000000000000000040034142
sinasinaSINA reference based multiple sequence alignmentsinasinaSINAAligns and optionally taxonomically classifies your rRNA gene sequences.Reference based multiple sequence alignmentSequence alignment analysis, Multiple sequence alignment, Taxonomic classification, Structure-based sequence alignmentSequencing, RNA, Nucleic acid structure analysis, Taxonomy, Sequence analysis, TaxonomyUp-to-datehttps://sina.readthedocs.io/en/latest/Sequence Analysissinaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sinahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sina1.7.2sina1.7.2Sequence alignment analysis, Multiple sequence alignment, Taxonomic classification, Structure-based sequence alignmentSequencing, RNA, Nucleic acid structure analysis, Taxonomy, Sequence analysis, Taxonomy1010101001000000000000100000000000000110421128
sintosinto_barcode, sinto_fragmentsSinto single-cell analysis toolsTo updatehttps://github.com/timoast/sintoSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sintohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sinto0.9.0sinto0.10.122202220000000000000000000000000000002001791
slamdunkalleyoop, slamdunkSlamdunk maps and quantifies SLAMseq readsUp-to-datehttp://t-neumann.github.io/slamdunkRNA, Transcriptomics, Sequence Analysis, Next Gen Mappersslamdunkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk0.4.3slamdunk0.4.320202020000000000000000000000000000002202361
sleuthsleuthSleuth is a program for differential analysis of RNA-Seq data.sleuthsleuthsleuthA statistical model and software application for RNA-seq differential expression analysis.Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculationRNA-seq, Gene expression, Statistics and probabilityUp-to-datehttps://github.com/pachterlab/sleuthTranscriptomics, RNA, Statisticssleuthiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuthhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth0.30.1r-sleuth0.30.1Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculationGene expression, Statistics and probability0010001000000000000000000000000000000100864
smallgenomeutilitiessmgu_frameshift_deletions_checksSet of utilities for manipulating small viral genome data.v-pipev-pipeV-pipeBioinformatics pipeline for the analysis of next-generation sequencing data derived from intra-host viral populations.Read pre-processing, Sequence alignment, Genetic variation analysisGenomics, Population genetics, Workflows, Virology, SequencingUp-to-datehttps://github.com/cbg-ethz/smallgenomeutilitiesSequence Analysissmallgenomeutilitiesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/smallgenomeutilitieshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/smallgenomeutilities0.4.1smallgenomeutilities0.4.1Read pre-processing, Sequence alignment, Genetic variation analysisGenomics, Population genetics, Workflows, Virology, Sequencing00100010000000000000000000000000000001006121
smudgeplotsmudgeplotInference of ploidy and heterozygosity structure using whole genome sequencingsmudgeplotssmudgeplotsSmudgeplotsReference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568Sequence trimming, Genotyping, k-mer countingSequence assembly, Genetic variation, MathematicsUp-to-datehttps://github.com/KamilSJaron/smudgeplotAssemblysmudgeplotgalaxy-australiahttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot0.2.5smudgeplot0.2.5Sequence trimming, Genotyping, k-mer countingSequence assembly, Genetic variation, Mathematics111011100000000000000000000000000000011022203
snapsnap, snap_trainingSNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes.snapsnapSNAPThe Semi-HMM-based Nucleic Acid Parser is a gene prediction tool.Gene predictionDNA, DNA polymorphism, GeneticsUp-to-datehttps://github.com/KorfLab/SNAPSequence Analysissnapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snap2013_11_29snap2013_11_29Gene predictionDNA polymorphism, Genetics11101110000000000000000000000000000001101331349
snapatac2snapatac2_clustering, snapatac2_peaks_and_motif, snapatac2_plotting, snapatac2_preprocessingSnapATAC2 – A Python/Rust package for single-cell epigenomics analysisTo updatehttps://kzhang.org/SnapATAC2/Epigenetics, Sequence Analysissnapatac2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snapatac2https://github.com/galaxyproject/tools-iuc/tree/main/tools/snapatac22.6.4444044400000000000000000000000000000000000
snifflessnifflesGalaxy wrapper for snifflessnifflessnifflesSnifflesAn algorithm for structural variation detection from third generation sequencing alignment.Sequence analysis, Structural variation detectionDNA structural variation, SequencingTo updatehttps://github.com/fritzsedlazeck/SnifflesSequence Analysissnifflesiuchttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sniffles1.0.12sniffles2.4Sequence analysis, Structural variation detectionSequencing111111110000000000000010000000000000011058919
snipitsnipitSummarise snps relative to a reference sequencesnipitsnipitsnipitSummarise snps relative to a reference sequenceBase position variability plottingVirologyUp-to-datehttps://github.com/aineniamh/snipitVariant Analysis, Sequence Analysissnipitiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snipithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snipit1.2snipit1.2Base position variability plottingVirology001000100000000000000010010000000000010022669
snippysnippy_core, snippy, snippy_clean_full_alnContains the snippy tool for characterising microbial snpssnippysnippysnippyRapid haploid variant calling and core SNP phylogeny generation.Phylogenetic tree visualisation, Phylogenetic tree generation, Variant callingGenomics, Model organisms, DNA polymorphism, PhylogeneticsTo updatehttps://github.com/tseemann/snippySequence Analysissnippyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snippyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snippysnippy4.6.0Phylogenetic tree visualisation, Variant callingGenomics, Model organisms, DNA polymorphism, Phylogenetics33333333000020000000003000000000000003201372105708
snp-distssnp_distsCompute pairwise SNP distance matrix from a FASTA sequence alignmentUp-to-datehttps://github.com/tseemann/snp-distsVariant Analysissnp_distsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snp-distshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snp-dists0.8.2snp-dists0.8.211101110000000000000001000000000000001103674558
snp-sitessnp_sitesFinds SNP sites from a multi-FASTA alignment fileUp-to-datehttps://github.com/sanger-pathogens/snp-sitesVariant Analysissnp_sitesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snp-siteshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snp-sites2.5.1snp-sites2.5.111101110000000000000001000000000000001102845107
snpeffsnpEff, snpEff_build_gb, snpEff_databases, snpEff_download, snpEff_get_chr_namesSnpEff is a genetic variant annotation and effect prediction toolboxTo updatehttp://snpeff.sourceforge.net/Genome-Wide Association Study, Variant Analysissnpeffiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeffhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpeffbiopython1.705555555500000000100005500500050000000550267695592
snpeff-covid19snpeff_sars_cov_2SnpEff, the COVID-19 version, is a genetic variant annotation and effect prediction toolboxsnpeffsnpeffsnpEffVariant annotation and effect prediction tool. It annotates and predicts the effects of variants on genes and proteins (such as amino acid changes).SNP detectionDNA polymorphism, Genetic variation, Nucleic acid sites, features and motifsTo updatehttp://snpeff.sourceforge.net/Genome-Wide Association Study, Variant Analysissnpeff_sars_cov_2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeffhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snpeff-covid19SNP detectionDNA polymorphism, Nucleic acid sites, features and motifs1111111100000000000000100100010000000110533760352
snpfreqplotsnpfreqplotA plotting app to visualise the SNPs across a regionTo updatehttps://github.com/BrownfieldPlantLab/SNPFreqPlotVariant Analysissnpfreqplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snpfreqplot/https://github.com/galaxyproject/tools-iuc/tree/main/tools/snpfreqplot1.0r-base11111111000000000000001001000100000001001563530
snpsiftsnpSift_annotate, snpSift_caseControl, snpSift_extractFields, snpSift_filter, snpSift_int, snpSift_rmInfo, snpsift_vartype, snpSift_vcfChecksnpEff SnpSift tools from Pablo CingolaniTo updatehttp://snpeff.sourceforge.net/SnpSift.htmlVariant Analysissnpsiftiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsifthttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsiftsnpsift5.2888888880000000080000080080008000000088013525114712
snpsift_dbnsfpsnpSift_dbnsfpsnpEff SnpSift dbnsfp tool from Pablo CingolaniTo updatehttp://snpeff.sourceforge.net/SnpSift.html#dbNSFPVariant Analysissnpsift_dbnsfpiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift_dbnsfphttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsift_dbnsfpsnpsift5.210101010000000000000000000000000000001101146
snpsift_genesetssnpSift_geneSetsAnnotate SnpEff vcf with genesets such as Gene Ontology (GO), KEGG, ReactomeTo updatehttp://snpeff.sourceforge.net/SnpSift.html#geneSetsVariant Analysissnpsift_genesetsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift_genesets/https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsift_genesetssnpsift5.2101010100000000000000000000000000000011031528
socrusocruOrder and orientation of complete bacterial genomesTo updatehttps://github.com/quadram-institute-bioscience/socruSequence Analysissocruiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/socruhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/socru2.1.7socru2.2.4101010100000000000000010000000000000011013621
sonneitypingsonneitypingScripts for parsing Mykrobe predict results for Shigella sonnei.sonneitypingsonneitypingsonneitypingScripts for parsing Mykrobe predict results for Shigella sonnei.Antimicrobial resistance prediction, Variant calling, GenotypingWhole genome sequencing, Genotype and phenotype, Genetic variation, MetagenomicsUp-to-datehttps://github.com/katholt/sonneitypingSequence Analysissonneitypingiuchttps://github.com/katholt/sonneitypinghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sonneityping20210201sonneityping20210201Antimicrobial resistance prediction, Variant calling, GenotypingWhole genome sequencing, Genotype and phenotype, Genetic variation, Metagenomics001000100000000000000010000000000000010011
spadesspades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spadesSPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction.spadescoronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spadesSPAdesSt. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads.Genome assemblySequence assemblyTo updatehttps://github.com/ablab/spadesAssembly, RNA, Metagenomicsspadesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/spadeshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spades3.15.5spades4.0.0Genome assemblySequence assembly9999999900001000000013800200030000000930354772953
spalnlist_spaln_tables, spalnSpaln (space-efficient spliced alignment) maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence.To updatehttp://www.genome.ist.i.kyoto-u.ac.jp/~aln_user/spaln/Sequence Analysis, Genome annotationspalniuchttps://github.com/ogotoh/spalnhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spaln2.4.9python202020200000000000000020000000000000022034446
spaprosspapros, spaprosSelect and evaluate probe sets for targeted spatial transcriptomics.Up-to-datehttps://github.com/theislab/spaprosTranscriptomics, Sequence Analysisspaprosiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/spapros/https://github.com/galaxyproject/tools-iuc/tree/main/tools/spapros0.1.5spapros0.1.5000000000000000000000000000000000000000000
spotypingspotypingSpoTyping allows fast and accurate in silico Mycobacterium spoligotyping from sequence readsspotypingspotypingSpoTypingFast and accurate in silico Mycobacterium spoligotyping from sequence reads.Variant pattern analysisMicrobiology, Sequencing, Sequence composition, complexity and repeats, Genetic variationUp-to-datehttps://github.com/xiaeryu/SpoTyping-v2.0Sequence Analysisspotypingiuchttps://github.com/xiaeryu/SpoTyping-v2.0/tree/master/SpoTyping-v2.0-commandLinehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spotyping2.1spotyping2.1Variant pattern analysisMicrobiology, Sequencing, Sequence composition, complexity and repeats, Genetic variation0010001000000000000000000000000000000100121278
spyboatspyboatWavelet analysis for 3d-image stacksTo updatehttp://github.com/tensionhead/spyboatImaging, Graphicsspyboatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/packages/spyboathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spyboat0.1.2spyboat0010001000000000000000000000000000000100167
sra-toolsfasterq_dump, fastq_dump, sam_dumpNCBI Sequence Read Archive toolkit utilitiessra-toolssra-toolsSRA Software ToolkitThe SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives.Data handlingDNA, Genomics, SequencingUp-to-datehttps://github.com/ncbi/sra-toolsData Source, Fastq Manipulationsra_toolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sra-toolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sra-tools3.1.1sra-tools3.1.1Data handlingDNA, Genomics, Sequencing33333333000000000000203003000300000003306247350032
srst2srst2SRST2 Short Read Sequence Typing for Bacterial Pathogenssrst2srst2srst2Short Read Sequence Typing for Bacterial PathogensMultilocus sequence typingWhole genome sequencing, Public health and epidemiologyTo updatehttp://katholt.github.io/srst2/Metagenomicssrst2iuchttps://github.com/katholt/srst2https://github.com/galaxyproject/tools-iuc/tree/main/tools/srst20.2.0samtools1.20Multilocus sequence typingWhole genome sequencing, Public health and epidemiology001000100000000000000010000000000000010022205
stacksstacks_assembleperead, stacks_clonefilter, stacks_cstacks, stacks_denovomap, stacks_genotypes, stacks_populations, stacks_procrad, stacks_pstacks, stacks_refmap, stacks_rxstacks, stacks_sstacks, stacks_stats, stacks_ustacksStacks is a software pipeline for building loci from short-read sequences, such as RAD-seqstacksstacksStacksDeveloped to work with restriction enzyme based sequence data, such as RADseq, for building genetic maps and conducting population genomics and phylogeography analysis.Data handlingMapping, Population geneticsTo updatehttp://catchenlab.life.illinois.edu/stacks/Sequence Analysisstacksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/stackshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/stacksstacks2.65Data handlingMapping, Population genetics01313120131312000000000000000000000000000001313015211635
stacks2stacks2_clonefilter, stacks2_cstacks, stacks2_denovomap, stacks2_gstacks, stacks2_kmerfilter, stacks2_populations, stacks2_procrad, stacks2_refmap, stacks2_shortreads, stacks2_sstacks, stacks2_tsv2bam, stacks2_ustacksStacks is a software pipeline for building loci from short-read sequences, such as RAD-seqTo updatehttp://catchenlab.life.illinois.edu/stacks/Sequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks2https://github.com/galaxyproject/tools-iuc/tree/main/tools/stacks22.55stacks2.650121212012121200000000000000000000000000000121202387292
star_fusionstar_fusionSTAR Fusion detects fusion genes in RNA-Seq data after running RNA-STARTo updatehttps://github.com/STAR-Fusion/STAR-FusionSequence Analysis, Transcriptomicsstar_fusioniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusionhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion0.5.4-3+galaxy1star-fusion1.13.01110111000000000000010000000000000000110351212
straindesignstraindesign_analyzing_model, straindesign_reduce_model, straindesign_simulate_deletionToolbox to optimize biological modelTo updatehttps://github.com/brsynth/straindesignSystems Biology, Synthetic Biologystraindesigniuchttps://github.com/brsynth/straindesignhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/straindesign3.2.2straindesign3.2.3000000000000000000000000000000000000000000
strelkastrelka_germline, strelka_somaticStrelka2 is a fast and accurate small variant caller optimizedfor analysis of germline variation in small cohorts and somaticvariation in tumor/normal sample pairs. The germline caller employs anefficient tiered haplotype model to improve accuracy and provide read-backedphasing, adaptively selecting between assembly and a faster alignment-basedhaplotyping approach at each variant locus. The germline caller also analyzesinput sequencing data using a mixture-model indel error estimation method toimprove robustness to indel noise. The somatic calling model improves on theoriginal Strelka method for liquid and late-stage tumor analysis by accountingfor possible tumor cell contamination in the normal sample. A final empiricalvariant re-scoring step using random forest models trained on various callquality features has been added to both callers to further improve precision.Up-to-datehttps://github.com/Illumina/strelka/Variant Analysisstrelkaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/strelkahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/strelka2.9.10strelka2.9.10202020200000000000000020000000000000020053549
stringtiestringtie, stringtie_mergeStringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts.stringtiestringtieStringTieFast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus.Transcriptome assembly, RNA-Seq analysisTranscriptomics, RNA-seqUp-to-datehttp://ccb.jhu.edu/software/stringtie/Transcriptomicsstringtieiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtiehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie2.2.3stringtie2.2.3Transcriptome assembly, RNA-Seq analysisTranscriptomics22222222000000000000200000000000000002202165167659
structurestructurefor using multi-locus genotype data to investigate population structure.structurestructureStructureThe program structureis a free software package for using multi-locus genotype data to investigate population structure. Its uses include inferring the presence of distinct populations, assigning individuals to populations, studying hybrid zones, identifying migrants and admixed individuals, and estimating population allele frequencies in situations where many individuals are migrants or admixed.Genetic variation analysisPopulation geneticsUp-to-datehttps://web.stanford.edu/group/pritchardlab/structure.htmlPhylogenetics, Variant Analysisstructureiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/structurehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/structure2.3.4structure2.3.4Genetic variation analysisPopulation genetics0011001100000000000000000000000000000110592623
structureharvesterstructureharvesterfor parsing STRUCTURE outputs and for performing the Evanno methodUp-to-datehttp://alumni.soe.ucsc.edu/~dearl/software/structureHarvester/Phylogenetics, Variant Analysisstructureharvesteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/structureharvesterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/structureharvester0.6.94structureharvester0.6.94000000000000000000000000000000000000000000
swiftswiftlinkParallel MCMC Linkage AnalysisUp-to-datehttps://github.com/ajm/swiftlinkVariant Analysisswiftlinkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/swiftlink/https://github.com/galaxyproject/tools-iuc/tree/main/tools/swift1.0swiftlink1.0000000000000000000000000000000000000000000
syndivasyndivaSynDivA was developed to analyze the diversity of synthetic libraries of a Fibronectin domain.To updateProteomicssyndivaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/SynDivAhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/syndiva1.0clustalo1.2.40010001000000000000000000000000000000100230
table_computetable_computePerform general-purpose table operationsTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/table_computeText Manipulationtable_computeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/table_computehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/table_compute1.2.4pandas1111111100000000000010100100000000000110741208652
tabular_to_fastqtabular_to_fastqTabular to FASTQ converterUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationtabular_to_fastqdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastqhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/tabular_to_fastq1.1.5galaxy_sequence_utils1.1.511111111010000000000000000000000000001102007388
tag_pileup_frequencytag_pileup_frequencyContains a tool that generates a frequency pileup of the 5' ends of aligned reads in a BAM filerelative to reference points in a BED file.To updatehttps://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/tagpileupStatistics, SAM, Genomic Interval Operationstag_pileup_frequencyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tag_pileup_frequencyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tag_pileup_frequency1.0.2openjdk10101010000000000000001000000000000001107164
tasmanian_mismatchtasmanian_mismatchAnalysis of positional mismatchesUp-to-datehttps://github.com/nebiolabs/tasmanian-mismatchSequence Analysistasmanian_mismatchiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tasmanian_mismatchhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tasmanian_mismatch1.0.7tasmanian-mismatch1.0.7101010100000000000000000000000000000000000
taxonkitname2taxid, profile2camiTaxonKit - A Practical and Efficient NCBI Taxonomy ToolkittaxonkittaxonkitTaxonKitTaxonKit is a practical and efficient NCBI taxonomy toolkit.Formatting, Data retrievalTaxonomy, Biotechnology, EcologyUp-to-datehttps://bioinf.shenwei.me/taxonkit/Metagenomicstaxonkitiuchttps://github.com/shenwei356/taxonkithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonkit0.17.0taxonkit0.17.0Formatting, Data retrievalTaxonomy, Biotechnology, Ecology000000000000000000000000000000000000000000
taxonomy_filter_refseqtaxonomy_filter_refseqFilter RefSeq by taxonomyTo updatehttps://github.com/pvanheus/ncbitaxonomySequence Analysis, Genome annotationtaxonomy_filter_refseqiuchttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_filter_refseq0.3.0rust-ncbitaxonomy1.0.7000000000000000000000010000000000000000000
taxonomy_krona_charttaxonomy_krona_chartKrona pie chart from taxonomic profilekronakronaKronaKrona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome).VisualisationMetagenomicsTo updatehttp://sourceforge.net/projects/krona/Assemblytaxonomy_krona_chartcrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_charthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart2.7.1+galaxy0krona2.8.1VisualisationMetagenomics1111111100000000000011100100000000100110180127426
taxpastataxpastastandardise taxonomic profilestaxpastataxpastataxpastaTAXonomic Profile Aggregation and STAndardisationThe main purpose of taxpasta is to standardise taxonomic profiles created by a range of bioinformatics tools. We call those tools taxonomic profilers. They each come with their own particular tabular output format. Across the profilers, relative abundances can be reported in read counts, fractions, or percentages, as well as any number of additional columns with extra information. We therefore decided to take the lessons learnt to heart and provide our own solution to deal with this pasticcio. With taxpasta you can ingest all of those formats and, at a minimum, output taxonomy identifiers and their integer counts. Taxpasta can not only standardise profiles but also merge them across samples for the same profiler into a single table.Standardisation and normalisation, Aggregation, Formatting, ConversionTaxonomy, MetagenomicsUp-to-datehttps://taxpasta.readthedocs.io/en/latest/Sequence Analysistaxpastaiuchttps://github.com/taxprofiler/taxpastahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/taxpasta0.7.0taxpasta0.7.0Standardisation and normalisation, Aggregation, Formatting, ConversionTaxonomy, Metagenomics001100110000000000000000000000000000000000
tb-profilertb_profiler_profileProcesses M. tuberculosis sequence data to infer strain type and identify known drug resistance markers.tb-profilertb-profilertb-profilerA tool for drug resistance prediction from _M. tuberculosis_ genomic data (sequencing reads, alignments or variants).Antimicrobial resistance predictionTo updatehttps://github.com/jodyphelan/TBProfilerSequence Analysistbprofileriuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/tb-profilerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tb-profiler6.2.1tb-profiler6.3.0Antimicrobial resistance prediction11101110000000000000000000000000000001101985161
tb_variant_filtertb_variant_filterM. tuberculosis H37Rv VCF filterUp-to-datehttps://github.com/COMBAT-TB/tb_variant_filterVariant Analysistb_variant_filteriuchttps://github.com/COMBAT-TB/tb_variant_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tb_variant_filter0.4.0tb_variant_filter0.4.0111011100000000000000000000000000000011020919252
tbl2gff3tbl2gff3Table to GFF3To updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3Convert Formats, Sequence Analysistbl2gff3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3https://github.com/galaxyproject/tools-iuc/tree/main/tools/tbl2gff31.2bcbiogff0.6.601110111000000000000100000000000000001002291584
tbvcfreporttbvcfreportGenerate HTML report from SnpEff M.tuberculosis VCF(s)Up-to-datehttps://github.com/COMBAT-TB/tbvcfreportVariant Analysistbvcfreportiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/tbvcfreporthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tbvcfreport1.0.1tbvcfreport1.0.111101110000000000000000000000000000001101672290
te_finderte_finderTransposable element insertions findertefindertefinderTEfinderA Bioinformatics Pipeline for Detecting New Transposable Element Insertion Events in Next-Generation Sequencing Data.A bioinformatics tool for detecting novel transposable element insertions.TEfinder uses discordant reads to detect novel transposable element insertion events in paired-end sample sequencing data.Genome indexing, Variant calling, PCR primer designSequencing, Mobile genetic elements, Workflows, Evolutionary biology, Genetic variationTo updatehttps://github.com/VistaSohrab/TEfinderSequence Analysiste_finderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/te_finder/https://github.com/galaxyproject/tools-iuc/tree/main/tools/te_finder1.0.1samtools1.20Genome indexing, Variant calling, PCR primer designSequencing, Mobile genetic elements, Workflows, Evolutionary biology, Genetic variation0010001000000000000000000000000000000100781
telescopetelescope_assignSingle locus resolution of Transposable ELEment expression.Telescope-expressionTelescope-expressionTelescopeTelescope is a tool for the characterization of the retrotranscriptome by accurate estimation of transposable element expression and the quantification of transposable element expression using RNA-seq.It can be used for Statistical Performance of TE Quantification Methods.All scripts needed to examine the sensitivity and biases of computational approaches for quantifying TE expression: 1) unique counts, 2) best counts, 3) RepEnrich, 4) TEtranscripts, 5) RSEM, 6) SalmonTE, and 7) Telescope.Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mappingRNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assemblyUp-to-datehttps://github.com/mlbendall/telescope/Genome annotationtelescope_assigniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/telescopehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/telescope1.0.3telescope1.0.3Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mappingRNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly000000000000000000000000000000000000000000
tetoolkittetoolkit_tetranscriptsThe TEToolkit suite improves the bioinformatic analysis of repetitive sequences, particularly transposable elements, in order to elucidate novel (and previously ignored) biological insights of their functions in development and diseases.Up-to-datehttp://hammelllab.labsites.cshl.edu/software/Sequence Analysistetoolkitiuchttps://github.com/mhammell-laboratory/TEtranscriptshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tetoolkit2.2.3tetranscripts2.2.3011001100000000000000000000000000000011033871
tetypertetyperType a specific transposable element (TE) of interest from paired-end sequencing data.Up-to-datehttps://github.com/aesheppard/TETyperSequence Analysistetyperiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tetyperhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tetyper1.1tetyper1.11010101000000000000000100000000000000110869
tn93tn93_readreduce, tn93, tn93_cluster, tn93_filterCompute distances between sequencesTo updatehttps://github.com/veg/tn93/Sequence Analysistn93iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tn93/https://github.com/galaxyproject/tools-iuc/tree/main/tools/tn931.0.6tn931.0.144040404000000000000000000200000000000400171881
tooldistillatortooldistillator, tooldistillator_summarizeToolDistillator extract and aggregate information from different tool outputs to JSON parsable filestooldistillatortooldistillatorToolDistillatorToolDistillator is a tool to extract information from output files of specific tools, expose it as JSON files, and aggregate over several tools.It can produce both a single file to each tool or a summarized file from a set of reports.Data handling, ParsingMicrobiology, Bioinformatics, Sequence analysisUp-to-datehttps://gitlab.com/ifb-elixirfr/abromics/tooldistillatorSequence Analysistooldistillatoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tooldistillatorhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tooldistillator0.9tooldistillator0.9ParsingMicrobiology, Bioinformatics, Sequence analysis202220220000000000000000000000000000000000
tracegroomertracegroomerTraceGroomer is a solution for formatting and normalising Tracer metabolomics given file(s), to produce the .csv files which are ready for DIMet tool.Up-to-datehttps://github.com/cbib/TraceGroomerMetabolomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/Tracegroomerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tracegroomer0.1.4tracegroomer0.1.4001100110000000000000000000000000000000000
tracytracy_align, tracy_assemble, tracy_basecall, tracy_decomposeTo updateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tracyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tracy0.6.1tracy0.7.60040004000000000000000000000000000000400582439
transdecodertransdecoderTransDecoder finds coding regions within transcriptsTransDecoderTransDecoderTransDecoderTransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks.Coding region prediction, de Novo sequencing, De-novo assemblyGenomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencingTo updatehttps://transdecoder.github.io/Transcriptomics, RNAtransdecoderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder5.5.0transdecoder5.7.1Coding region prediction, de Novo sequencing, De-novo assemblyGenomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing11111111000000000010001000000000000001103485468
transitgff_to_prot, transit_gumbel, transit_hmm, transit_resampling, transit_tn5gapsTRANSITtransittransitTRANSITA tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions.Transposon predictionDNA, Sequencing, Mobile genetic elementsTo updatehttps://github.com/mad-lab/transit/Genome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit3.0.2transit3.2.3Transposon predictionDNA, Sequencing, Mobile genetic elements555055500000000000000000000000000000055084907
transtermhptranstermhpFinds rho-independent transcription terminators in bacterial genomestranstermhptranstermhpTransTermHPTransTermHP finds rho-independent transcription terminators in bacterial genomes. Each terminator found by the program is assigned a confidence value that estimates its probability of being a true terminatorTranscriptional regulatory element predictionTranscription factors and regulatory sitesTo updatehttps://transterm.cbcb.umd.eduSequence Analysistranstermhpiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transtermhphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/transtermhptranstermhp2.09Transcriptional regulatory element predictionTranscription factors and regulatory sites10101010000000000000000000000000000001105229
trimmomatictrimmomaticA flexible read trimming tool for Illumina NGS dataUp-to-datehttp://www.usadellab.org/cms/?page=trimmomaticFastq Manipulationtrimmomaticpjbriggshttps://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatichttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trimmomatic0.39trimmomatic0.3911111111010010000000111000000100011001105862305866
trinitytrinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_statsTrinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseqtrinitytrinityTrinityTrinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads.Transcriptome assemblyTranscriptomics, Gene expression, Gene transcriptsTo updatehttps://github.com/trinityrnaseq/trinityrnaseqTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trinityhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity2.15.1trinity2.15.2Transcriptome assemblyTranscriptomics, Gene transcripts9131313913131300000000000012100000011001000013120176231951
trinotatetrinotateTrinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes.trinotatetrinotateTrinotateComprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms.Gene functional annotationGene expression, TranscriptomicsTo updatehttps://trinotate.github.io/Transcriptomics, RNAtrinotateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate3.2.2trinotate4.0.2Gene functional annotationTranscriptomics11101110000000000000001000000000000001101511796
trycyclertrycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsampleTrycycler toolkit wrappersUp-to-datehttps://github.com/rrwick/TrycyclerAssemblytrycycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trycyclerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler0.5.5trycycler0.5.505550555000000000000005000000000000005001478942
tsebratsebraThis tool has been developed to combine BRAKER predictions.tsebratsebraTSEBRATSEBRA is a combiner tool that selects transcripts from gene predictions based on the support by extrisic evidence in form of introns and start/stop codons. It was developed to combine BRAKER1 and BRAKER2 predicitons to increase their accuracies.Homology-based gene prediction, Alternative splicing predictionGene expression, RNA-Seq, Gene transcripts, Model organismsTo updatehttps://github.com/Gaius-Augustus/TSEBRAGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tsebrahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tsebra1.1.2.4tsebra1.1.2.5Homology-based gene prediction, Alternative splicing predictionGene expression, RNA-Seq, Gene transcripts, Model organisms001100110000000000000000000000000000000005
tsnetsneT-Distributed Stochastic Neighbor Embedding using a Barnes-Hut ImplementationTo updatehttps://cran.r-project.org/web/packages/Rtsne/Text Manipulationtsneiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tsnehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tsne0.0.2r-rtsne0.13101110110000000000000000000000000000011010368
twobittofaucsc-twobittofatwoBitToFa is a tool to convert all or part of .2bit file to FASTAUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttps://genome.ucsc.edu/goldenpath/help/twoBit.htmlConvert Formatsucsc_twobittofaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/twobittofahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/twobittofa377ucsc-twobittofa469Sequence analysis111011100000000000000000000001000000011048502
tximporttximportWrapper for the Bioconductor package tximporttximporttximporttximportAn R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages.Pathway or network analysis, Formatting, RNA-Seq analysisTranscriptomics, Gene transcripts, WorkflowsTo updatehttp://bioconductor.org/packages/tximport/Transcriptomicstximportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tximporthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport1.22.0bioconductor-tximport1.30.0Pathway or network analysis, Formatting, RNA-Seq analysisTranscriptomics, Gene transcripts, Workflows1010101000000000000000000000000000000110881408
ucsc_axtchainucsc_axtchainChain together genome alignmentsUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttp://hgdownload.cse.ucsc.edu/admin/exe/Sequence Analysisucsc_axtchainiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axtchainhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_axtchain455ucsc-axtchain469Sequence analysis100010000000000000000000000000000000000000
ucsc_axttomafucsc_axtomafConvert dataset from axt to MAF format.UCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttp://hgdownload.cse.ucsc.edu/admin/exe/Convert Formatsucsc_axttomafiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axttomafhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_axttomaf377ucsc-axttomaf469Sequence analysis100010000000000000000000000000000000000000
ucsc_blatucsc_blatStandalone blat sequence search command line toolblatblatBLATFast, accurate spliced alignment of DNA sequences.Sequence alignmentSequence analysisTo updatehttp://genome.ucsc.edu/goldenPath/help/blatSpec.htmlSequence Analysisucsc_blatyating-lhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc_blat/https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_blat377ucsc-blat469Sequence alignmentSequence analysis000000000000000000000000000001000000000000
ucsc_chainnetucsc_chainnetMake alignment nets out of chainsUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisUp-to-datehttp://hgdownload.cse.ucsc.edu/admin/exe/Sequence Analysisucsc_chainnetiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/ucsc_chainnethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainnet469ucsc-chainnet469Sequence analysis000000000000000000000000000000000000000000
ucsc_chainprenetucsc_chainprenetRemove chains that don't have a chance of being nettedUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttp://hgdownload.cse.ucsc.edu/admin/exe/Sequence Analysisucsc_chainprenetiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainprenethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainprenet377ucsc-chainprenet469Sequence analysis100010000000000000000000000000000000000000
ucsc_chainsortucsc_chainsortSort chains. By default sorts by score.UCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttp://hgdownload.cse.ucsc.edu/admin/exe/Sequence Analysisucsc_chainsortiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainsorthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainsort455ucsc-chainsort469Sequence analysis100010000000000000000000000000000000000000
umi_toolsumi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelistUMI-tools extract - Extract UMIs from fastqumi-toolsumi-toolsUMI-toolsTools for handling Unique Molecular Identifiers in NGS data sets.Sequencing quality controlNGS, Sequence sites, features and motifs, Quality affairsTo updatehttps://github.com/CGATOxford/UMI-toolsSequence Analysis, Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_toolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools1.1.2umi_tools1.1.5Sequencing quality controlSequence sites, features and motifs, Quality affairs555555550000000000000010000005000000055037961618
unicyclerunicyclerUnicycler is a hybrid assembly pipeline for bacterial genomes.unicyclerunicyclerUnicyclerA tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads.Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assemblyUp-to-datehttps://github.com/rrwick/UnicyclerAssemblyunicycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/unicyclerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler0.5.1unicycler0.5.1Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assembly1111111100000000000001100100010000000110155865732
usherusher_matutils, usherUShER toolkit wrappersusherusherusherThe UShER toolkit includes a set of tools for for rapid, accurate placement of samples to existing phylogenies. While not restricted to SARS-CoV-2 phylogenetic analyses, it has enabled real-time phylogenetic analyses and genomic contact tracing in that its placement is orders of magnitude faster and more memory-efficient than previous methods.Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences)Phylogeny, Evolutionary biology, Cladistics, Genotype and phenotype, PhylogenomicsTo updatehttps://github.com/yatisht/usherPhylogeneticsusheriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/usherhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/usher0.2.1usher0.6.3Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences)Cladistics, Genotype and phenotype, Phylogenomics002000200000000000000000000000000000020051060
valetvaletA pipeline for detecting mis-assemblies in metagenomic assemblies.valetvaletVALETVALET is a pipeline for detecting mis-assemblies in metagenomic assemblies.Sequence assembly, Sequence assembly visualisationMetagenomics, Sequence assemblyTo updatehttps://github.com/marbl/VALETMetagenomicsvaletiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/valethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/valetvalet1.0Sequence assembly, Sequence assembly visualisationMetagenomics, Sequence assembly101110110000000000000010000000000000011020637
vaporvaporClassify Influenza samples from raw short read sequence datavaporvaporVAPORVAPOR is a tool for classification of Influenza samples from raw short read sequence data for downstream bioinformatics analysis. VAPOR is provided with a fasta file of full-length sequences (> 20,000) for a given segment, a set of reads, and attempts to retrieve a reference that is closest to the sample strain.Data retrieval, De-novo assembly, Read mappingWhole genome sequencing, Mapping, Sequence assemblyUp-to-datehttps://github.com/connor-lab/vaporSequence Analysisvaporiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vaporhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/vapor1.0.2vapor1.0.2Data retrieval, De-novo assembly, Read mappingWhole genome sequencing, Mapping, Sequence assembly1010101000000000000000000100000000000100943164
vardictvardict_javaVarDict - calls SNVs and indels for tumour-normal pairsTo updatehttps://github.com/AstraZeneca-NGS/VarDictJavaVariant Analysisvardict_javaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vardicthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/vardict1.8.3python001000100000000000000000000000000000011116273
variant_analyzermut2read, mut2sscs, read2mutCollection of tools for analyzing variants in duplex consensus sequencing (DCS) dataTo updateVariant Analysisvariant_analyzeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/variant_analyzerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/variant_analyzer2.0.0matplotlib3030303000000000000000000000000000000330388
varscanvarscan_copynumber, varscan_mpileup, varscan_somaticVarScan is a variant caller for high-throughput sequencing dataTo updatehttps://dkoboldt.github.io/varscan/Variant Analysisvarscaniuchttps://github.com/galaxyproject/iuc/tree/master/tools/varscanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/varscan2.4.3varscan2.4.633333333000000000000001000000000000003304929779
varvampvarvampVariable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse virusesvarvampvarvampvarVAMPvariable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses. The input is an alignment of your viral (full-genome) sequences.PCR primer designVirology, Probes and primersUp-to-datehttps://github.com/jonas-fuchs/varVAMP/Sequence Analysisvarvampiuchttps://github.com/jonas-fuchs/varVAMPhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/varvamp1.2.0varvamp1.2.0PCR primer designVirology, Probes and primers001000100000000000000000000000000000000000
vcf2mafvcf2mafvcf2maf: Convert VCF into MAFTo updatehttps://github.com/mskcc/vcf2mafConvert Formatsvcf2mafiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vcf2mafhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/vcf2maf1.6.21vcf2maf1.6.22011001100000000000000100000000000000010029751
vcf2tsvvcf2tsvConverts VCF files into tab-delimited formatTo updatehttps://github.com/ekg/vcflibVariant Analysis, Convert Formatsvcf2tsvdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcf2tsvhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcf2tsvvcflib1.0.91111111100000000000000100100000000000110352167913
vcfaddinfovcfaddinfoAdds info fields from the second dataset which are not present in the first dataset.To updatehttps://github.com/ekg/vcflibVariant Analysisvcfaddinfodevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfaddinfohttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfaddinfovcflib1.0.911111111000000000000001000000000000001108357
vcfallelicprimitivesvcfallelicprimitivesSplits alleleic primitives (gaps or mismatches) into multiple VCF linesTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfallelicprimitivesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfallelicprimitiveshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfallelicprimitivesvcflib1.0.9111111110000000000000010000001000000011028615803
vcfannovcfannoAnnotate VCF filesvcfannovcfannovcfannoFast, flexible annotation of genetic variants.SNP annotationGenetic variation, Data submission, annotation and curationUp-to-datehttps://github.com/brentp/vcfannoVariant Analysisvcfannoiuchttps://github.com/galaxyproject/tools-iuc/vcfanno/https://github.com/galaxyproject/tools-iuc/tree/main/tools/vcfanno0.3.5vcfanno0.3.5SNP annotationGenetic variation, Data submission, annotation and curation001000100000000000000000000000000000010087872
vcfannotatevcfannotateIntersect VCF records with BED annotationsTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfannotatedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfannotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfannotatevcflib1.0.91111111100000000000000100000000000000110772181
vcfannotategenotypesvcfannotategenotypesAnnotate genotypes in a VCF dataset using genotypes from another VCF dataset.To updatehttps://github.com/ekg/vcflibVariant Analysisvcfannotategenotypesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfannotategenotypeshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfannotategenotypesvcflib1.0.9111111110000000000000010000000000000011028192
vcfbedintersectvcfbedintersectIntersect VCF and BED datasetsTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfbedintersectdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfbedintersecthttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfbedintersectvcflib1.0.91111111100000000000000100000000000000110803217
vcfbreakcreatemultivcfbreakcreatemultiBreak multiple alleles into multiple records, or combine overallpoing alleles into a single recordTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfbreakcreatemultidevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfbreakcreatemultihttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfbreakcreatemultivcflib1.0.9111111110000000000000010000000000000011013471
vcfcheckvcfcheckVerify that the reference allele matches the reference genomeTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfcheckdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcheckhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcheckvcflib1.0.9111111110000000000000010000000000000011039675
vcfcombinevcfcombineCombine multiple VCF datasetsTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfcombinedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcombinehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcombinevcflib1.0.91111111100000000000000100000010000000110991695
vcfcommonsamplesvcfcommonsamplesOutput records belonging to samples commong between two datasets.To updatehttps://github.com/ekg/vcflibVariant Analysisvcfcommonsamplesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcommonsampleshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcommonsamplesvcflib1.0.9111111110000000000000010000000000000011014244
vcfdistancevcfdistanceCalculate distance to the nearest variant.To updatehttps://github.com/ekg/vcflibVariant Analysisvcfdistancedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfdistancehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfdistancevcflib1.0.9111111110000000000000010000000000000011040564
vcffiltervcffilter2Tool for filtering VCF filesTo updatehttps://github.com/ekg/vcflibVariant Analysisvcffilterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcffilterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcffiltervcflib1.0.9111111110000000000000010000000000000011088244437
vcffixupvcffixupCount the allele frequencies across alleles present in each record in the VCF file.To updatehttps://github.com/ekg/vcflibVariant Analysisvcffixupdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcffixuphttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcffixupvcflib1.0.9111111110000000000000010000000000000011071917
vcfflattenvcfflatten2Removes multi-allelic sites by picking the most common alternateTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfflattendevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfflattenhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfflattenvcflib1.0.911111111000000000000001000000000000001106177
vcfgeno2haplovcfgeno2haploConvert genotype-based phased alleles into haplotype allelesTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfgeno2haplodevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfgeno2haplohttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfgeno2haplovcflib1.0.9111111110000000000000010000000000000011036718
vcfgenotypesvcfgenotypesConvert numerical representation of genotypes to allelic.To updatehttps://github.com/ekg/vcflibVariant Analysisvcfgenotypesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfgenotypeshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfgenotypesvcflib1.0.9111111110000000000000010000000000000011048451
vcfhethomvcfhethomCount the number of heterozygotes and alleles, compute het/hom ratio.To updatehttps://github.com/ekg/vcflibVariant Analysisvcfhethomdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfhethomhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfhethomvcflib1.0.91111111100000000000000100000000000000110901370
vcfleftalignvcfleftalignLeft-align indels and complex variants in VCF datasetTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfleftaligndevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfleftalignhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfleftalignvcflib1.0.9111111110000000000000010000000000000011010279
vcfprimersvcfprimersExtract flanking sequences for each VCF recordTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfprimersdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfprimershttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfprimersvcflib1.0.9111111110000000000000010000000000000011012708
vcfrandomsamplevcfrandomsampleRandomly sample sites from VCF datasetTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfrandomsampledevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfrandomsamplehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfrandomsamplevcflib1.0.911111111000000000000001000000000000001105159
vcfselectsamplesvcfselectsamplesSelect samples from a VCF fileTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfselectsamplesdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfselectsampleshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfselectsamplesvcflib1.0.9111111110000000000000010000000000000011029854
vcfsortvcfsortSort VCF dataset by coordinateTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfsortdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfsorthttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfsortvcflib1.0.91111111101000000000000100000000000000110631852
vcfvcfintersectvcfvcfintersectIntersect two VCF datasetsTo updatehttps://github.com/ekg/vcflibVariant Analysisvcfvcfintersectdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfvcfintersecthttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfvcfintersectvcflib1.0.91111111100000000000000100100010000000110265972774
veganvegan_diversity, vegan_fisher_alpha, vegan_rarefactionan R package fo community ecologistveganveganveganOrdination methods, diversity analysis and other functions for community and vegetation ecologistsStandardisation and normalisation, AnalysisEcology, Phylogenetics, Environmental scienceTo updatehttps://cran.r-project.org/package=veganMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vegan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/vegan2.4-3r-vegan2.3_4Standardisation and normalisation, AnalysisEcology, Phylogenetics, Environmental science3030303000000000000000300000000000000330742020
velocytovelocyto_cliVelocyto is a library for the analysis of RNA velocity.Up-to-datehttp://velocyto.org/Transcriptomicsvelocytoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velocytohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto0.17.17velocyto.py0.17.17111011100000000000000000000000000000010002
velvetvelvetg, velvethde novo genomic assembler specially designed for short read sequencing technologiesvelvetvelvetVelvetA de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD.Formatting, De-novo assemblySequence assemblyTo updatehttps://www.ebi.ac.uk/~zerbino/velvet/Assemblyvelvetdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velvetvelvet1.2.10Formatting, De-novo assemblySequence assembly2222222200000000000022000000000000000200208325420
velvet_optimiservelvetoptimiserAutomatically optimize Velvet assembliesvelvetoptimiservelvetoptimiserVelvetOptimiserThis tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly.Optimisation and refinement, Sequence assemblyGenomics, Sequence assemblyTo updateAssemblyvelvetoptimisersimon-gladmanhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiserhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser2.2.6+galaxy2velvet1.2.10Optimisation and refinement, Sequence assemblyGenomics, Sequence assembly11101110010000000000110000000000000001102554741
verkkoverkkoTelomere-to-telomere assembly pipelineTo updatehttps://github.com/marbl/verkkoAssemblyverkkoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/verkkohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko1.3.1verkko2.10010001000000000000000000000000000000100922
vgvg_convert, vg_deconstruct, vg_viewVariation graph data structures, interchange formats, alignment, genotyping, and variant calling methodsTo updatehttps://github.com/vgteam/vgSequence Analysis, Variant Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/vg1.23.0vg1.56.000330033000000000000000000000000000003303477
virAnnotvirannot_blast2tsv, virannot_otu, virAnnot_rps2tsvvirAnnot wrappersvirannotvirannotvirAnnotVirAnnot was build to ease the assembly, blast search, taxonomic annotation and OTUs assignation of viral metagenomic HTS data. It is used in Virologie team of UMR1332 BFP laboratory at INRAE. VirAnnot also takes part of the Euphresco project "Plant Health Bioinformatics Network". See more.It is designed to identify viruses in plant metagenomic data but it can be used to assemble and annotate any sequences with the NCBI taxonomy.Sequence annotation, Sequence clustering, Sequence cluster visualisationMetagenomics, Virology, Microbial ecologyTo updatehttps://github.com/marieBvr/virAnnotMetagenomicsvirannotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/virAnnothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/virAnnot1.0.1+galaxy0biopython1.70Sequence annotation, Sequence clustering, Sequence cluster visualisationMetagenomics, Virology, Microbial ecology003300330000000000000000000000000000000000
virheatvirheatgenerates a heatmap of allele frequencies from vcf filesvirheatvirheatvirHEATVirHEAT tool generates multi-sample variant-frequency plots from SnpEff-annotated viral variant lists. The tool provides a condensed look at variant frequencies after mapping raw reads to a viral/bacterial reference genome and compares multiple vcf files at the same time.Up-to-datehttps://github.com/jonas-fuchs/virHEATVisualization, Variant Analysisvirheatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/virheathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/virheat0.7.1virheat0.7.1001000100000000000000000000000000000000000
virhuntervirhunterDeep Learning method for novel virus detection in sequencing datavirhuntervirhunterVirHunterVirHunter is a deep learning method that uses Convolutional Neural Networks (CNNs) and a Random Forest Classifier to identify viruses in sequencing datasets. More precisely, VirHunter classifies previously assembled contigs as viral, host, and bacterial (contamination).Sequence classificationVirologyTo updatehttps://github.com/cbib/virhunterMachine Learningvirhunteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/VirHunterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/virhunter1.0.0numpySequence classificationVirology001000100000000000000000000000000000010040234
volcanoplotvolcanoplotTool to create a Volcano PlotTo updatehttps://ggplot2.tidyverse.org/Visualization, Transcriptomics, Statisticsvolcanoplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot0.0.6r-ggplot22.2.11111111100000000000010100000010000000110174930946
vsearchvsearch_alignment, vsearch_chimera_detection, vsearch_clustering, vsearch_dereplication, vsearch_masking, vsearch_search, vsearch_shuffling, vsearch_sortingVSEARCH including searching, clustering, chimera detection, dereplication, sorting, masking and shuffling of sequences.vsearchvsearchVSEARCHHigh-throughput search and clustering sequence analysis tool. It supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering and conversion.DNA mapping, Chimera detectionMetagenomics, Sequence analysisTo updatehttps://github.com/torognes/vsearchSequence Analysisvsearchiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearchhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/vsearch2.8.3vsearch2.28.1DNA mapping, Chimera detectionMetagenomics, Sequence analysis88888888000000000000088000000800000008801828507
vsnpvsnp_add_zero_coverage, vsnp_build_tables, vsnp_determine_ref_from_data, vsnp_get_snps, vsnp_statisticsThe vSNP tools are critical components of several workflows that validate SNPs and produce annotatedSNP tables and corresponding phylogenetic trees.To updatehttps://github.com/USDA-VS/vSNPSequence Analysisvsnpiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vsnphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/vsnp3.0.6pysam0.22.1000000000000000000000000000000000000000000
weather_appsimple_weatherprovides simple weather in text formatTo updatehttp://wttr.in/Visualization, Web Servicessimpleweatheriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/weather_apphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/weather_app0.1.2curl000000000000000000000000000000000000000000
weblogo3rgweblogo3Sequence Logo generator for fastaweblogoweblogoWebLogoWeb-based application designed to make generate sequence logos.Sequence cluster visualisation, Sequence visualisation, Sequence motif recognitionNucleic acid sites, features and motifs, Sequence analysisTo updateGraphicsweblogo3devteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/weblogo3https://github.com/galaxyproject/tools-iuc/tree/main/tools/weblogo33.5.0weblogo3.7.9Sequence cluster visualisation, Sequence visualisation, Sequence motif recognitionNucleic acid sites, features and motifs, Sequence analysis1111111101001000000010000000010000000110742379
wigtobigwigucsc_wigtobigwigconverts bedGraph (wig) files into binary bigwigUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttps://genome.ucsc.edu/goldenPath/help/bigWig.htmlConvert Formatsucsc_wigtobigwigiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/wigtobigwighttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/wigtobigwig447ucsc-wigtobigwig469Sequence analysis111011100000000000000000000000000000000000
windowmaskerwindowmasker_mkcounts, windowmasker_ustatIdentify repetitive regions using WindowMaskerTo updatehttps://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/lxr/source/src/app/winmasker/Sequence Analysiswindowmaskeriuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/windowmasker/https://github.com/galaxyproject/tools-iuc/tree/main/tools/windowmasker1.0blast2.16.02220222000000000000000000000000000000000085
winnowmapwinnowmapA long-read mapping tool optimized for mapping ONT and PacBio reads to repetitive reference sequences.Up-to-datehttps://github.com/marbl/WinnowmapNext Gen Mapperswinnowmapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/winnowmaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/winnowmap2.03winnowmap2.03101010100000000000000000000000000000010027248
xpathxpathXPath XML querying toolTo updatehttp://search.cpan.org/dist/XML-XPath/Text Manipulationxpathiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/xpathhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/xpathperl-xml-xpath1.4700100010000010000000000000000000000001103234
yahsyahsYet Another Hi-C scaffolding toolUp-to-datehttps://github.com/c-zhou/yahsAssemblyyahsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/yahshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs1.2a.2yahs1.2a.2111011100000000000000000000000000000010064344
zeronezeroneChIP-seq discretization and quality controlUp-to-datehttps://github.com/nanakiksc/zeroneChIP-seqzeroneiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/zeronehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/zerone1.0zerone1.00010001000000000000000000000000000000110290
EMLassemblylineeal_table_template, eal_templates, eml2eal, entities_template, geo_cov_template, makeeml, raster_template, taxo_cov_template, vector_templateTools using EML Assembly Line R package to generate EML metadata from template metadata files and vice versaTo updatehttps://github.com/EDIorg/EMLassemblylineEcologyemlassemblylineecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblylinehttps://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline0.1.1+galaxy0r-emlassemblyline00990099000000000000000000000000000002005102
Ecoregionalization_workflowecoregion_brt_analysis, ecoregion_GeoNearestNeighbor, ecoregion_cluster_estimate, ecoregion_clara_cluster, ecoregion_eco_map, ecoregion_taxa_seekerTools to compute ecoregionalization with BRT model predictions and clustering.To updatehttps://github.com/PaulineSGN/Workflow_GalaxyEcologyecoregionalizationecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflowhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow0.1.0+galaxy0r-base0065006500000000000000000000000000000500082
Geom_mean_workflowMap_shp, Mean_geom, bar_plotTools to compute The evolution of the total volume of very large trees, standing dead wood and dead wood on the ground on an area and the rate of devolution of the volume of wood favorable to biodiversity by large ecological regions (France).To updatehttps://github.com/PaulineSGN/Galaxy_tool_moyenne_geomEcologyGeometric means (Dead wood)ecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflowhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow0.1.0+galaxy0r-base003300330000000000000000000000000000000000
PAMPApampa_communitymetrics, pampa_presabs, pampa_glmcomm, pampa_glmsp, pampa_plotglmTools to compute and analyse biodiversity metricsTo updateEcologypampaecologyhttps://github.com/ColineRoyaux/PAMPA-Galaxyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA0.0.20555055500000000000000000000000000000540731004
ThermoRawFileParserthermo_raw_file_converterThermo RAW file converterTo updatehttps://github.com/compomics/ThermoRawFileParserProteomicsthermo_raw_file_convertergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParserhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser1.3.4thermorawfileparser1.4.40110011000000000000000000000000000000110342689
ab1_fastqab1_fastq_converterTool to convert ab1 files into FASTQ filesTo updateConvert Formatsab1fastqecologyhttps://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/ab1_fastqhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ab1_fastq1.20.0bioconductor-sangerseqr1.38.0001100110000000000000000000000000000010017540271
ambertoolsambertools_acpype, acpype_Amber2Gromacs, ambertools_antechamber, mmpbsa_mmgbsa, ambertools_parmchk2, parmconv, tleapAmbertools is a set of packages for preparing systems for molecular dynamics (MD) simulations and analyzing trajectories.To updatehttp://ambermd.org/AmberTools.phpMolecular Dynamics, Computational chemistryambertoolschemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/ambertools21.10ambertools727072700000000000002000000000000000075024340666
appendfdrappend_fdrTo updateappendfdrgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/appendfdr0.2.0000000000000000000000000000000000000000000
aquainfra_importeraquainfra_importerA data source tool for downloading datasets via the AquaINFRA Interaction Platform.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/AquaINFRA/tools-ecology/tree/aquainfra_importerhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/aquainfra_importer1.0001000100000000000000000000000000000000000
artbio_bam_cleaningartbio_bam_cleaningfilter bam files before somatic-varscan or lumpy-smoove analysisTo updatehttp://artbio.frSAM, Variant Analysisartbio_bam_cleaningartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/artbio_bam_cleaninghttps://github.com/ARTbio/tools-artbio/tree/main/tools/artbio_bam_cleaning1.10+galaxy0samtools1.20000000000000000000000000000001000000000000
astropytoolsastropy_fits2bitmap, astropy_fits2csv, astropy_fitsinfoAstropyTools library contains Galaxy tools for elementary Astrophysical operationsTo updatehttps://github.com/astropy/astropyAstronomyastropytoolsvolodymyrsshttps://github.com/esg-epfl-apc/tools-astro/tree/main/tools/astropytoolshttps://github.com/esg-epfl-apc/tools-astro/tree/main/tools/astropytools0.1.0+galaxy0astropy0030003000000000000000000000000000000300311
bamparsebamparseGenerates hit count lists from bam alignments.To updatehttp://artbio.frRNA, Transcriptomicsbamparseartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/bamparsehttps://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse4.1.1pysam0.22.1000000000000000000000000000001000000000000
baseline_calculatortt_baselineToxicity prediction using QSAR modelsTo updatehttps://github.com/bernt-matthias/mb-galaxy-toolsEcology, Text Manipulationbaseline_toxicity_calculatormbernthttps://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculatorhttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/baseline_calculator0.1.0+galaxy0pandas000000000000000000000000000000000000000000
bed_to_protein_mapbed_to_protein_mapConverts a BED file to a tabular list of exon locationsTo updateProteomicsbed_to_protein_mapgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bed_to_protein_maphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bed_to_protein_map0.2.0python111011100000000000000000000000000000011049385
bigwig_to_bedgraphbigwig_to_bedgraphConverts a bigWig file to bedGraph formatTo updatehttp://artbio.frConvert Formatsbigwig_to_bedgraphartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_bedgraphhttps://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_bedgraph377+galaxy1ucsc-bigwigtobedgraph46900100010000000000000010000000000000001102005749
bigwig_to_wigbigwig_to_wigConverts a bigWig file to Wiggle (WIG) formatTo updatehttps://artbio.frConvert Formatsbigwig_to_wigartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_wighttps://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_wig3+galaxy0ucsc-bigwiginfo469000000000000000000000000000001000000000000
bio3dbio3d_dccm, bio3d_pca, bio3d_rmsd, bio3d_rmsf, bio3d_pca_visualizeBio3d is a program that can be used to analyse molecular dynamics trajectories.To updatehttp://thegrantlab.org/bio3d/index.phpComputational chemistrybio3dchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/bio3dhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/bio3d2.4_1r-bio3d2.3_354505450000000000000500000000000000005505108913
biomoldynbiomd_neqgamma, fastpca, biomd_extract_clusters, biomd_rmsd_clusteringTools for MD analysisTo updatehttps://github.com/moldyn/Molecular Dynamics, Computational chemistrybiomoldynchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biomoldyn1.5.2scipy404040400000000000000000000000000000043053459
biotransformerbiotransformerBioTransformer is a tool for prediction of small molecule metabolism in mammals.biotransformerbiotransformerBioTransformerBioTransformer is a freely available web server that supports accurate, rapid and comprehensive in silico metabolism prediction.Metabolic pathway prediction, PTM site prediction, Natural product identificationSmall molecules, Endocrinology and metabolism, Metabolomics, Carbohydrates, NMRUp-to-datehttps://bitbucket.org/djoumbou/biotransformerjar/src/master/Metabolomicsbiotransformerrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/biotransformerhttps://github.com/RECETOX/galaxytools/tree/master/tools/biotransformer3.0.20230403biotransformer3.0.20230403Metabolic pathway prediction, PTM site prediction, Natural product identificationSmall molecules, Endocrinology and metabolism, Metabolomics, Carbohydrates, NMR011101110000000000000000000000000000010000
blast2goblast2goMaps BLAST results to GO annotation termsTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast2goOntology Manipulation, Sequence Analysisblast2gopeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast2gohttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go0.0.11b2g4pipe00000000010000000000000000000000000001101011232
blast_plus_remote_blastpblast_plus_remote_blastpNCBI BLAST+ with -remote optionTo updatehttps://blast.ncbi.nlm.nih.gov/Sequence Analysisblast_plus_remote_blastpgalaxyphttps://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plushttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/blast_plus_remote_blastp2.6.0blast2.16.0000000000000000000000010000000000000000000
blast_rbhblast_reciprocal_best_hitsBLAST Reciprocal Best Hits (RBH) from two FASTA filesTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbhFasta Manipulation, Sequence Analysisblast_rbhpeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbhhttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh0.3.0biopython1.70001000100000000000000010000000000000011012122499
blast_to_scaffoldblast2scaffoldGenerate DNA scaffold from blastn or tblastx alignments of ContigsTo updatehttp://artbio.frRNA, Sequence Analysis, Assemblyblast_to_scaffoldartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffoldhttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold1.1.0python000000000000000000000110000001000000000000
blast_unmatchedblast_unmatchedExtract unmatched query sequences from blastTo updatehttp://artbio.frFasta Manipulationblast_unmatchedartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatchedhttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched1.0.1python000000000000000000000010000000000000000000
blastparser_and_hitsBlastParser_and_hitsParse blast outputs and compile hitsTo updatehttp://artbio.frAssembly, RNAblastparser_and_hitsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hitshttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits2.7.1python000000000000000000000110000001000000000000
blastx_to_scaffoldblastx2scaffoldGenerate DNA scaffold from blastx alignment of ContigsTo updatehttp://artbio.frRNA, Sequence Analysis, Assemblyblastx_to_scaffoldartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffoldhttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold1.1.1python000000000000000000000010000000000000000000
blastxml_to_top_descrblastxml_to_top_descrMake table of top BLAST match descriptionsTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descrConvert Formats, Sequence Analysis, Text Manipulationblastxml_to_top_descrpeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descrhttps://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr0.1.2python0010001000000000000000000000000000000110159264558
bumbershootidpqonvertEmbedder, idpassemble, idpqonvert, idpquery, myrimatchTo updatehttp://proteowizard.sourceforge.net/Proteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoothttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bumbershoot3.0.21142bumbershoot3_0_21142_0e4f4a4005000500000000000000000000000000000055031348
c3sc3sCopernicus Climate Change Service (C3S)To updatehttps://cds.climate.copernicus.eu/cdsapp#!/search?type=datasetClimate Analysisc3sclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3shttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s0.2.0python11101110000000000000000000000000000001005198
cadscadsCopernicus Atmosphere Data Store (ADS)To updatehttps://ads.atmosphere.copernicus.eu/#!/homeClimate Analysiscadsclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cadshttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cads0.1.0python0010001000000000000000000000000000000100152
calispcalispCalgary approach to isotopes in proteomicsUp-to-datehttps://github.com/kinestetika/Calisp/Proteomicscalispgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/calisphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/calisp3.0.13calisp3.0.13001000100000000000000000000000000000010000
cap3cap3cap3 wrapperTo updatehttp://artbio.frAssemblycap3artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cap3https://github.com/ARTbio/tools-artbio/tree/main/tools/cap32.0.1cap310.201101100110000000000000011000000100000001001017766
cardinalcardinal_classification, cardinal_colocalization, cardinal_combine, cardinal_data_exporter, cardinal_filtering, cardinal_mz_images, cardinal_preprocessing, cardinal_quality_report, cardinal_segmentations, cardinal_single_ion_segmentation, cardinal_spectra_plotsStatistical and computational tools for analyzing mass spectrometry imaging datasetsUp-to-datehttp://cardinalmsi.orgProteomics, Metabolomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinalhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinal3.4.3bioconductor-cardinal3.4.309111109111100000000000000000900000000000119027748705
cdocdo_info, cdo_operationsCDO (Climate Data Operators) is a collection of command line Operators to manipulate and analyse Climate and NWP model Data.Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG. There are more than 600 operators available.To updatehttps://code.mpimet.mpg.de/projects/cdo/Climate Analysisclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cdohttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cdo2.0.0002000200000000000000000000000000000020016217
cell-types-analysisct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvalsTools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysisTo updateTranscriptomics, RNA, Statisticssuite_cell_types_analysisebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis1.1.1cell-types-analysis0.1.11006000600000000000000000000000000000000026
cesmcesmCommunity Earth System Model (CESM)Up-to-datehttps://www.cesm.ucar.edu/Climate Analysiscesmclimatehttps://github.com/ESCOMP/CESMhttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cesm2.1.3cesm2.1.30010001000000000000000000000000000000100113
champ_blocscb_dissim, cb_ivr, cb_divCompute indicators for turnover boulders fieldsTo updateEcologyecologyhttps://github.com/Marie59/champ_blocshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/champ_blocs0.0.0r-base003300330000000000000000000000000000030019174
cherry_pick_fastacherry_pick_fastaPick fasta sequence with specific header contentTo updatehttp://artbio.frFasta Manipulationcherry_pick_fastaartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fastahttps://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta4.1python000000000000000000000110001001000000000000
climate-stripesclimate_stripesCreate climate stripes from a tabular input fileTo updatehttps://www.climate-lab-book.ac.uk/2018/warming-stripes/Climate Analysis, Visualizationclimate_stripesclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripeshttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes1.0.2python111011100000000000000000000000000000011023237
concat_multi_datasetscat_multi_datasetsConcatenate multiple datasets tail-to-head, including collection datasets.To updatehttp://artbio.frText Manipulationconcatenate_multiple_datasetsartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/concat_multi_datasetshttps://github.com/ARTbio/tools-artbio/tree/main/tools/concat_multi_datasets1.4.311101110000010000000001000000100000001003523612
consensus_from_alignmentsaligned_to_consensusTool to compute a consensus sequence from several aligned fasta sequencesTo updateSequence Analysisconsalignecologyhttps://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/consensus_from_alignmentshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/consensus_from_alignments1.0.0r-bioseq001100110000000000000010000000000000010055585
consolidate_vcfsconsolidate_vcfsCombines freebayes and mpileup files for use by vcf2snvalignmentUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisconsolidate_vcfsnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/consolidate_vcfs1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
coolercooler_balance, cooler_cload_tabix, cooler_csort_tabix, cooler_makebins, cooler_zoomifycooler different tools to process Hi-C from mirnylabTo updatehttps://github.com/open2c/coolerEpigeneticscoolerlldelislehttps://github.com/lldelisle/tools-lldelisle/blob/master/tools/cooler/.shed.ymlhttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/cooler0.9.3htslib1.2040504050000000000000000000000000000004001181
cpm_tpm_rpkcpm_tpm_rpkGenerate CPM,TPM or RPK from raw countsTo updatehttp://artbio.frTranscriptomicscpm_tpm_rpkartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpkhttps://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk0.6.0r-optparse1.3.2000000000000000000000010000001000000000000
ctacta_astro_toolBasic simulation of CTA telescope observations using gammapy packageTo updateAstronomycta_astro_toolastroteamhttps://github.com/esg-epfl-apc/tools-astro/tree/main/toolshttps://github.com/esg-epfl-apc/tools-astro/tree/main/tools/cta0.0.1+galaxy0unzip001000100000000000000000000000000000000000
custom_pro_dbcustom_pro_dbCustomProDBTo updatehttps://bioconductor.org/packages/release/bioc/html/customProDB.htmlProteomicscustom_pro_dbgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_dbhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/custom_pro_db1.22.0bioconductor-rgalaxy1.37.11111111100000000000000000000000000000110571652
custom_pro_db_annotation_data_managerCustomProDB AnnotationTo updatehttps://bioconductor.org/packages/release/bioc/html/customProDB.htmlProteomicscustom_pro_db_annotation_data_managergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_dbhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/custom_pro_db_annotation_data_manager000000000000000000000000000000000000000000
data-hcahca_matrix_downloaderTools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projectsTo updateTranscriptomics, Sequence Analysissuite_human_cell_atlas_toolsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hcav0.0.4+galaxy0hca-matrix-downloader0.0.4001000100000000000000000000000000000011034439
data-scxaretrieve_scxaTools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/homeTo updateTranscriptomics, Sequence Analysissuite_ebi_expression_atlasebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxav0.0.2+galaxy2wget111111110000000000000000000000000000011099799
data_explorationtool_anonymization, ecology_homogeneity_normality, ecology_beta_diversity, ecology_link_between_var, ecology_presence_abs_abund, ecology_stat_presence_absExplore data through multiple statistical toolsTo updateEcologyecologyhttps://github.com/Marie59/Data_explo_toolshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/data_exploration0.0.0r-tangles0066006600000000000000000000000000000600146658
data_manager_eggnog_mapperdownloads eggnog data for eggnog-mapperTo updateProteomicsdata_manager_eggnog_mappergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper_data_managerhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper000000000000000000000000000000000000000000
data_manager_eggnog_mapper_abspathdownload eggnog data for eggnog-mapperTo updateProteomicsdata_manager_eggnog_mapper_abspathgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspathhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspath000000000000000000000000000000000000000000
dbbuilderdbbuilderProtein Database DownloaderTo updatehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilderProteomicsdbbuildergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilderhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder0.3.4wget01110111000000000000000000000000000001101614758
decouplerscore_genes_aucell, decoupler_pathway_inference, decoupler_pseudobulkdecoupler - Ensemble of methods to infer biological activitiesTo updatehttps://decoupler-py.readthedocs.io/en/latest/Transcriptomicssuite_decouplerebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler1.4.0+galaxy3decoupler1.5.0001000100000000000000000000000000000000006
decoyfastaGalaxy tool wrapper for the transproteomic pipeline decoyFASTA tool.To updateProteomicsdecoyfastagalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfastahttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfasta000000000000000000000000000000000000000000
deseq2_normalizationdeseq2_normalizationNormalizes gene hitlistsTo updatehttp://artbio.frRNA, Transcriptomics, Sequence Analysis, Statisticsdeseq2_normalizationartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalizationhttps://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization1.40.2+galaxy0bioconductor-deseq21.42.0000000000000000000000000010001000000000000
dia_umpiredia_umpire_seDIA-Umpire analysis for data independent acquisition (DIA) mass spectrometry-based proteomicsTo updatehttp://diaumpire.sourceforge.net/Proteomicsdia_umpiregalaxyphttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dia_umpirehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dia_umpire2.1.3dia_umpire2.1.60110011000000000000000000000000000000110233
dialignrdialignrDIAlignR is an R package for retention time alignment of targeted mass spectrometric data, including DIA and SWATH-MS data. This tool works with MS2 chromatograms directly and uses dynamic programming for alignment of raw chromatographic traces. DIAlignR uses a hybrid approach of global (feature-based) and local (raw data-based) alignment to establish correspondence between peaks.To updatehttps://github.com/shubham1637/DIAlignRProteomicsdialignrgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignrhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr1.2.0bioconductor-dialignr2.10.00010001000000000000000000000000000000100140
dianndiannDiaNN (DIA-based Neural Networks) is a software for DIA/SWATH data processing.To updatehttps://github.com/vdemichev/DiaNNProteomicsdianngalaxyphttps://github.com/vdemichev/DiaNNhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diann1.8.10110011000000000000000000000000000000100315
diapysefdiapysefdiapysef is a convenience package for working with DIA-PASEF dataTo updatehttps://pypi.org/project/diapysef/Proteomicsdiapysefgalaxyphttps://github.com/galaxyproject/tools-iuc/tree/master/tools/diapysefhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diapysef0.3.5.0diapysef1.0.10011001100000000000000000000000000000011011245
diffactodiffactoDiffacto comparative protein abundance estimationTo updatehttps://github.com/statisticalbiotechnology/diffactoProteomicsdiffactogalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffactohttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffacto1.0.6diffacto1.0.7001000100000000000000000000000000000010057
digestdbdigestdbTo updatedigestdbgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/digestdb0.1.0trans_proteomic_pipeline000000000000000000000000000000000000000000
directag_and_tagreconTo updatedirectag_and_tagrecongalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/directag_and_tagrecon000000000000000000000000000000000000000000
dose_responsesdr_curveA tool for analyzing and visualizing the relationship between various doses and their corresponding biological responsesUp-to-datehttps://github.com/bernt-matthias/mb-galaxy-toolsEcologydose_response_analysis_toolufzhttps://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculatorhttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/dose_responses3.0_1r-drc3.0_1000000000000000000000000000000000000000000
droplet-barcode-plot_dropletBarcodePlotMake a cell barcode plot for droplet single-cell RNA-seq QCTo updatehttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiarySequence Analysisdroplet_barcode_plotebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/droplet-rank-plot/.shed.ymlhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/droplet-barcode-plot1.6.1+galaxy2scxa-plots0.0.1111011100000000000000000000000000000000095973
dropletutilsdropletutils_empty_drops, dropletutils_read_10xDe-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_dropletutilsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils1.0.4dropletutils-scripts0.0.522202220000000000000000000000000000002002011599
eggnog_mappereggnog_mapper, eggnog_mapper_annotate, eggnog_mapper_searcheggnog-mapper fast functional annotation of novel sequenceseggnog-mapper-v2eggnog-mapper-v2eggNOG-mapper v2EggNOG-mapper is a tool for fast functional annotation of novel sequences. It uses precomputed orthologous groups and phylogenies from the eggNOG database (http://eggnog5.embl.de) to transfer functional information from fine-grained orthologs only.Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrievalMetagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysisTo updateProteomicseggnog_mappergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapperhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper2.1.8eggnog-mapper2.1.12Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrievalMetagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysis333333330000000000000000000000000030031051030565
embl2faembl2faConverts EMBL flat format to fasta formatTo updatehttp://artbio.frText Manipulationembl2faartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/embl2fahttps://github.com/ARTbio/tools-artbio/tree/main/tools/embl2fa0.2000000000000000000000000000000000000000000
encyclopediaencyclopedia_encyclopedia, encyclopedia_fasta_to_prosit_csv, encyclopedia_library_to_blib, encyclopedia_prosit_csv_to_library, encyclopedia_quantify, encyclopedia_searchtolib, encyclopedia_walnutMass Spec Data-Independent Acquisition (DIA) MS/MS analysisTo updatehttps://bitbucket.org/searleb/encyclopedia/wiki/HomeProteomicsencyclopediagalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopediahttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/encyclopedia1.12.34encyclopedia2.12.30247024700000000000000000000000000000070048706
eodieeodieEarth Observation Data Information ExtractorTo updatehttps://eodie.readthedocs.io/Climate Analysiseodieclimatehttps://gitlab.com/eetun-tiimi/EODIEhttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/eodie1.0.2eodie0010001000000000000000000000000000000100445
essential_climate_variablescds_essential_variabilityGet Copernicus Essential Climate Variables for assessing climate variabilityTo updatehttps://cds.climate.copernicus.eu/cdsapp#!/dataset/ecv-for-climate-change?tab=overviewClimate Analysis, Data Sourcecds_essential_variabilityclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/essential_climate_variableshttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/essential_climate_variables0.2.0python001000100000000000000000000000000000011015331
ez_histogramsez_histogramsggplot2 histograms and density plotsTo updatehttps://github.com/tidyverse/ggplot2Visualization, Statisticsez_histogramsartbiohttps://github.com/artbio/tools-artbio/tree/main/tools/ez_histogramshttps://github.com/ARTbio/tools-artbio/tree/main/tools/ez_histograms3.4.4r-ggplot22.2.1000000000000000000000000000001000000000000
fasta_merge_files_and_filter_unique_sequencesfasta_merge_files_and_filter_unique_sequencesConcatenate FASTA database files togetherTo updatehttps://github.com/galaxyproteomics/tools-galaxyp/Fasta Manipulationfasta_merge_files_and_filter_unique_sequencesgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequenceshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences1.2.0python111111110000000000000010000001000000011046129886
fastg2protlibfastg2protlib-peptides, fastg2protlib-validateGenerate FASTA from FASTGTo updatehttps://github.com/galaxyproteomics/fastg2protlib.gitProteomicsfastg2protlibgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlibhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlib1.0.20020002000000000000000000000000000000200128
fastq_pairfastq_pairPaired-end fastq pairerTo updatehttps://github.com/linsalrob/fastq-pairFastq Manipulationfastq_pairebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_pairhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_pair1.0+galaxy0fastq-pair1.0000000000000000000000000000000000000000000
fastq_providerfastq_providerRetrieval and download of FASTQ files from ENA and other repositories such as HCA.To updatehttps://github.com/ebi-gene-expression-group/atlas-fastq-providerData Source, RNA, Transcriptomicsatlas_fastq_providerebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_providerhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider0.4.4atlas-fastq-provider0.4.7000000000000000000000000000000000000000000
fastq_quality_trimmercshl_fastq_quality_trimmerFASTQ trimmer based on qualityTo updatehttps://github.com/agordon/fastx_toolkitFastq Manipulationfastq_quality_trimmerebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_quality_trimmerhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_quality_trimmer0.0.14+galaxy0fastx_toolkit0.0.14000000000000000000000000000000000000000000
fastq_utilsfastq_filter_n, fastq_trim_poly_atSet of tools for handling fastq filesTo updatehttps://github.com/nunofonseca/fastq_utilsTranscriptomics, RNAfastq_utilsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utilshttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils0.25.1+galaxy0fastq_utils0.25.2000000000000000000000000000000000000000000
fates-emeraldctsm_fatesEMERALD version of the Functionally Assembled Terrestrial Ecosystem Simulator (FATES) with Community Terrestrial Systems Model as host modelTo updatehttps://github.com/NordicESMhub/ctsm/blob/fates_emerald_api/README_fates_emerald_apiClimate Analysisctsm_fatesclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/fates-emeraldhttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/fates-emerald2.0fates-emerald111011100000000000000000000000000000010012261
feature_alignmentfeature_alignmentTRIC integrates information from all available runs via a graph-based alignment strategyUp-to-dateProteomicsfeature_alignmentgalaxyphttps://github.com/msproteomicstools/msproteomicstools/blob/master/TRIC-README.mdhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment0.11.0msproteomicstools0.11.00010001000000000000000000000000000000100118
fetch_fasta_from_ncbiretrieve_fasta_from_NCBIFetch fasta sequences from NCBI using eutils wrappersTo updatehttp://artbio.frFasta Manipulation, Data Sourcefetch_fasta_from_ncbiartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbihttps://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi3.1.0urllib31.12000000000000000000000110000001000000000000
filter_by_fasta_idsfilter_by_fasta_idsFilter FASTA on the headers and/or the sequencesTo updateFasta Manipulation, Proteomicsfilter_by_fasta_idsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_idshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids2.3python111111110000000000000000000001000000011042626274
filter_compoundsfilter_orgmet_anorgTool for filtering organometallics/anorganic compounds from a list of compounds.To updatehttps://github.com/RECETOX/galaxytools/Metabolomicsfilter_compoundsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/filter_compoundshttps://github.com/RECETOX/galaxytools/tree/master/tools/filter_compounds3.1.1openbabel2.3.90dev7d621d9000000000000000000000000000000000000000000
filter_densityfilterdensityFilter out position based on distance between SNVsUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisfilter_densitynmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_density1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
filter_statsfilterstatSNVPhyl filter_statsUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisfilter_statsnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_stats1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
filter_vcffiltervcfSNVPhyl filter_vcfUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisfilter_vcfnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_vcf1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
find_repeatsfindrepeatFind repetitive regions on a reference genome using MUMMerUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisfind_repeatsnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/find_repeats1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
fisher_testfishertestFisher's exact test on two-column hit lists.To updatehttp://artbio.frRNA, Statisticsfishertestartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_testhttps://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_test2.32.0+galaxy0bioconductor-qvalue2.34.0000000000000000000000000000000000000000000
flashlfqflashlfqFlashLFQ mass-spectrometry proteomics label-free quantificationflashlfqflashlfqFlashLFQFlashLFQ is an ultrafast label-free quantification algorithm for mass-spectrometry proteomics.Label-free quantificationProteomics experiment, ProteomicsTo updatehttps://github.com/smith-chem-wisc/FlashLFQProteomicsflashlfqgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfqhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq1.0.3.1flashlfq1.2.6Label-free quantificationProteomics experiment, Proteomics011001100000000000000000000000000000011017645
fragpipefragpipeData analysis for mass spectrometry-based proteomics.Up-to-datehttps://fragpipe.nesvilab.org/Proteomicsfragpipegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fragpipehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fragpipe20.0fragpipe20.0001000100000000000000000000000000000000000
free_energyFree energy tools of BRIDGE.To updateMolecular Dynamics, Computational chemistryfreeenergychemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/free_energyhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/free_energy000000000000000000000000000000000000000000
frogsFROGS_affiliation_filters, FROGS_affiliation_postprocess, FROGS_affiliation_stats, FROGS_biom_to_stdBiom, FROGS_biom_to_tsv, FROGS_cluster_filters, FROGS_cluster_stats, FROGS_clustering, FROGS_demultiplex, FROGSSTAT_DESeq2_Preprocess, FROGSSTAT_DESeq2_Visualisation, FROGSFUNC_step2_functions, FROGSFUNC_step3_pathways, FROGSFUNC_step1_placeseqs, FROGS_itsx, FROGS_normalisation, FROGSSTAT_Phyloseq_Alpha_Diversity, FROGSSTAT_Phyloseq_Beta_Diversity, FROGSSTAT_Phyloseq_Sample_Clustering, FROGSSTAT_Phyloseq_Composition_Visualisation, FROGSSTAT_Phyloseq_Import_Data, FROGSSTAT_Phyloseq_Multivariate_Analysis_Of_Variance, FROGSSTAT_Phyloseq_Structure_Visualisation, FROGS_preprocess, FROGS_remove_chimera, FROGS_taxonomic_affiliation, FROGS_Tree, FROGS_tsv_to_biomSuite for metabarcoding analysisfrogsfrogsFROGSThe user-friendly and Galaxy-supported pipeline FROGS analyses large sets of DNA amplicons sequences accurately and rapidly, essential for microbe community studies.Taxonomic classificationMetagenomics, Microbial ecology, Taxonomy, Evolutionary biology, SequencingTo updatehttp://frogs.toulouse.inrae.fr/Metagenomicsfrogsfrogshttps://github.com/geraldinepascal/FROGS-wrappers/https://github.com/geraldinepascal/FROGS-wrappers/tree/master/tools/frogs4.1.0frogs5.0.0Taxonomic classificationMetagenomics, Microbial ecology, Taxonomy, Evolutionary biology, Sequencing0002800028000000000000018180000000000000000000
fromHicupToJuiceboxfromHicupToJuiceboxConvert the output of hicup (as sam or bam) to the input of juicebox.To updateEpigeneticsfrom_hicup_to_juiceboxlldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromHicupToJuicebox0.0.2pysam0.22.1000000000000000000000000000000000000000000
fromgtfTobed12fromgtfTobed12Convert GTF files to BED12 formatTo updatehttps://pythonhosted.org/gffutils/contents.htmlConvert Formatsfromgtftobed12lldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromgtfTobed12https://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromgtfTobed120.11.1+galaxy1gffutils0.13000000000000000000000000000000000000000000
garnettgarnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_fileDe-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_garnettebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett0.2.8garnett-cli0.0.50070007000000000000000000000000000000000327
gatk4filtermutectcalls, mergemutectstats, mutect2Find somatic variationsTo updatehttp://artbio.frVariant Analysisgatk4artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gatk4https://github.com/ARTbio/tools-artbio/tree/main/tools/gatk44.1.7.0gatk44.5.0.0000000000000000000000000000000000000000000
gc_derivatizationgc_derivatizationIn silico derivatization for GC.Up-to-datehttps://github.com/RECETOX/gc-meox-tmsMetabolomicsgc_derivatizationrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/gc_derivatizationhttps://github.com/RECETOX/galaxytools/tree/master/tools/gc_derivatization1.0.1gc-meox-tms1.0.1011001100000000000000000000000000000000000
gdalgdal_gdal_merge, gdal_gdal_translate, gdal_gdaladdo, gdal_gdalbuildvrt, gdal_gdalinfo, gdal_gdalwarp, gdal_ogr2ogr, gdal_ogrinfoGeospatial Data Abstraction Library tools are all dedicated to manipulate raster and vector geospatial data formats.To updatehttps://www.gdal.orgEcologygdalecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/gdalhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal3.0.00088008800000000000000000000000000000880101475
genomadgenomad_end_to_endIdentify virus and plasmid genomes from nucleotide sequencesgenomadgenomadgeNomadgeNomad is a tool that identifies virus and plasmid genomes from nucleotide sequences. It provides state-of-the-art classification performance and can be used to quickly find mobile genetic elements from genomes, metagenomes, or metatranscriptomes.Sequence annotation, Taxonomic classificationSequence analysisUp-to-datehttps://github.com/apcamargo/genomad/Metagenomicsgenomadufzhttps://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/longorf/https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/genomad1.8.0genomad1.8.0Sequence annotation, Taxonomic classificationSequence analysis001000100000000000000000000000000000000000
getTn5ExtendedCoveragegetTn5ExtendedCoverageTake an input bam from ATAC-seq and generate a bedgraph using the center of the Tn5 insertion with an extensionTo updateEpigeneticsgettn5extendedcoveragelldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/getTn5ExtendedCoverage0.0.2pysam0.22.1000000000000000000000000000000000000000000
get_reference_fastaget_fasta_referenceObtain reference genome sequence.To updatehttp://artbio.frData Source, Fasta Manipulationget_reference_fastaartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fastahttps://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta0.3.2000000000000000000000010000001000000000000
gffcompare_to_bedgffcompare_to_bedFilter and convert a gffCompare GTF to BEDTo updatehttps://github.com/gpertea/gffcompare/Convert Formatsgffcompare_to_bedgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/gffcompare_to_bedhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/gffcompare_to_bed0.2.1python11101110000000000000000000000000000001101312115
gromacsgmx_check, gmx_editconf, gmx_energy, gmx_get_builtin_file, gmx_rg, gmx_makendx, gmx_merge_topology_files, gmx_em, gmx_restraints, gmx_rmsd, gmx_rmsf, gmx_setup, gmx_sim, gmx_solvate, gmx_trjGROMACS is a package for performing molecular dynamics, primarily designed for biochemical molecules such as proteins, lipids and nucleic acids.To updatehttps://github.com/gromacsMolecular Dynamics, Computational chemistrygromacschemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacshttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs2022gromacs2021.314815014815000000000000013000000000000000015901442177844
gsc_center_scalecenter_scaleCenter or scale (standardize) dataTo updatehttp://artbio.frStatisticsgsc_center_scaleartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_center_scalehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_center_scale4.3.1+galaxy0r-optparse1.3.2000000000000000000000000000000000000000000
gsc_filter_cellsfilter_cellsFilter single cell RNAseq data on libray depth and number of detected genesTo updatehttp://artbio.frTranscriptomicsgsc_filter_cellsartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cellshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells4.3.1+galaxy0r-optparse1.3.2000000000000000000000000000000000000000000
gsc_filter_genesfilter_genesFilter genes that are detected in less than a fraction of libraries in single cell RNAseq dataTo updatehttp://artbio.frTranscriptomicsgsc_filter_genesartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_geneshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes4.3.1+galaxy0r-optparse1.3.2000000000000000000000000000000000000000000
gsc_gene_expression_correlationssingle_cell_gene_expression_correlationsCompute single-cell paire-wise gene expressions correlationsTo updatehttp://artbio.frTranscriptomicsgsc_gene_expression_correlationsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlationshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations4.3.1+galaxy0r-optparse1.3.2000000000000000000000000000000000000000000
gsc_high_dimensions_visualisationhigh_dimensions_visualisationGenerates PCA, t-SNE and HCPC visualisationTo updatehttp://artbio.frTranscriptomics, Visualizationgsc_high_dimensions_visualisationartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualizationhttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation4.3+galaxy0r-optparse1.3.2000000000000000000000000000000000000000000
gsc_mannwhitney_demannwhitney_dePerform a mann-whitney differential testing between two sets of gene expression dataTo updatehttp://artbio.frTranscriptomicsgsc_mannwhitney_deartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_dehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de4.1.3+galaxy0r-optparse1.3.2000000000000000000000000000000000000000000
gsc_scran_normalizescran_normalizeNormalize raw counts using scranTo updatehttp://artbio.frTranscriptomicsgsc_scran_normalizeartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalizehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize1.28.1+galaxy0bioconductor-scran1.30.011101110000000000000000000000000000001001478
gsc_signature_scoresignature_scoreCompute signature scores from single cell RNAseq dataTo updatehttp://artbio.frTranscriptomicsgsc_signature_scoreartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_scorehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score2.3.9+galaxy0r-optparse1.3.2000000000000000000000000000000000000000000
gtf-2-gene-list_ensembl_gtf2gene_listUtility to extract annotations from Ensembl GTF files.To updatehttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiarySequence Analysisgtf2gene_listebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/gtf-2-gene-list/.shed.ymlhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/gtf-2-gene-list1.52.0+galaxy0atlas-gene-annotation-manipulation1.1.111101110000000000000000000000000000001101551678
guppyguppy-basecallerA wrapper for the guppy basecaller tool from Oxford Nanopore TechnologiesTo updatehttp://artbio.frNanoporeguppy_basecallerartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/guppyhttps://github.com/ARTbio/tools-artbio/tree/main/tools/guppy6.5.7+galaxy0000000000000000000000010000000000000000000
hardklorhardklor, kronikHardklörTo updateProteomicshardklorgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/hardklorhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/hardklor2.30.1+galaxy1hardklor2.3.200200020000000000000000000000000000002202111
hesshess_astro_toolBasic analysis of Data Level 3 public data sample of HESS gamma-ray telescopeTo updateAstronomyhess_astro_toolastroteamhttps://github.com/esg-epfl-apc/tools-astro/tree/main/toolshttps://github.com/esg-epfl-apc/tools-astro/tree/main/tools/hess0.0.2+galaxy0ipython001000100000000000000000000000000000000000
high_dim_heatmaphigh_dim_heatmapgplot heatmap.2 function adapted for plotting large heatmapsTo updatehttps://github.com/cran/gplotsVisualizationhigh_dim_heatmapartbiohttps://github.com/artbio/tools-artbio/tree/main/tools/high_dim_heatmaphttps://github.com/ARTbio/tools-artbio/tree/main/tools/high_dim_heatmap3.1.3+galaxy0r-gplots2.17.0000000000000000000000010000001000000000000
hirondelle_crim_ogc_api_processeshirondelle_crimThis tool is a wrapper for OGC API Processes coming from https://osf.io/gfbws/.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapperhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/hirondelle_crim_ogc_api_processes0.1.0r-base001000100000000000000000000000000000000000
hyperstack_to_bleach_corrected_moviehyperstack_to_bleach_corrected_movieGenerate blach corrected movie from hyperstackTo updateImaginghyperstack_to_bleach_corrected_movielldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_moviehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie20230328Fiji20231211000000000000000000000000000000000000000000
idconvertidconvertConvert mass spectrometry identification files on linux or MacOSXTo updateProteomicsidconvertgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconverthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/idconvertproteowizard3_0_999200100010000000000000000000000000000001104275
incucyte_stack_and_upload_omeroincucyte_stack_and_upload_omeroCombine images to stack and upload to the omero serverTo updateImagingincucyte_stack_and_upload_omerolldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omerohttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero20231221Fiji20231211000000000000000000000000000000000000000000
interpolationinterpolation_run_idw_interpolationRun IDW interpolation based on a .csv and .geojson fileTo updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolationhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation1.0r-getopt001000100000000000000000000000000000000000
isolibisolibCreate an isotopic pattern library for given compounds and adducts.To updatehttps://github.com/RECETOX/galaxytools/Metabolomicsisolibrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/isolibhttps://github.com/RECETOX/galaxytools/tree/master/tools/isolib1.0.1+galaxy0bioconductor-metabocoreutils1.10.0011001100000000000000000000000000000000000
justdiffjustdiffUnix diffTo updatehttp://artbio.frText Manipulationjustdiffartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/justdiffhttps://github.com/ARTbio/tools-artbio/tree/main/tools/justdiff3.10+galaxy0diffutils000000000000000000000000000001000000000000
justgzipjustgzipCompress fastq sequence filesTo updatehttp://artbio.frConvert Formatsjustgzipartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/justgziphttps://github.com/ARTbio/tools-artbio/tree/main/tools/justgzip2.8+galaxy0pigz000000000000000000000010000001000000000000
lfq_protein_quantlfq_protein_quantEnable protein summarisation and quantitationTo updatehttps://github.com/compomics/LFQ_galaxy_pProteomicslfq_protein_quantgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quanthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quant1.0bioconductor-msnbase2.28.100100010000000000000000000000000000001103111
longorflongORFobtain longest ORF in six-frame translationsTo updateSequence Analysislongorfmbernthttps://github.com/bernt-matthias/mb-galaxy-tools/blob/master/tools/longorf/https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/longorf0.3.0000000000000000000000000000000000000000000
ltq_iquant_cliTo updateltq_iquant_cligalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ltq_iquant_cli000000000000000000000000000000000000000000
lumpy_smoovelumpy_smoove, vcf2hrdetectGalaxy wrapper of the lumpy-using smoove workflowTo updatehttp://artbio.frVariant Analysislumpy_smooveartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_smoovehttps://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_smoove0.2.8+galaxy1svtyper0.7.1000000000000000000000000000002000000000000
lumpy_svlumpyFind structural variationsTo updatehttp://artbio.frVariant Analysislumpy_svartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy_svhttps://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_sv1.3lumpy-sv0.3.1000000000000000000000100000001000000000000
make_nrmake_nrMake a FASTA file non-redundantTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nrFasta Manipulation, Sequence Analysismake_nrpeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nrhttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr0.0.3biopython1.70000000000000000000000000000000000000000000
maldiquantmaldi_quant_peak_detection, maldi_quant_preprocessingMALDIquant provides a complete analysis pipeline for MALDI-TOF and other 2D mass spectrometry data.To updatehttp://strimmerlab.org/software/maldiquant/ProteomicsMALDIquantgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/MALDIquanthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maldiquant1.22.0r-base0222022200000000000000000200000000000220253797
mantamantaStructural variant and indel caller for mapped sequencing dataTo updatehttp://artbio.frVariant Analysismantaartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/mantahttps://github.com/ARTbio/tools-artbio/tree/main/tools/manta1.6manta1.6.00010001000000000000000000000010000000100893
map_peptides_to_bedmap_peptides_to_bedMap peptides to a reference genome for display by a genome browserTo updateProteomicsmap_peptides_to_bedgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/map_peptides_to_bedhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/map_peptides_to_bed0.2biopython1.700010001000000000000000000000000000000110141
mapping_quality_statsmapqstatisticsCollects and shows the distribution of MAPQ values in a BAM alignment fileTo updatehttp://artbio.frSequence Analysis, Statisticsmapping_quality_statsartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/mapping_quality_statshttps://github.com/ARTbio/tools-artbio/tree/main/tools/mapping_quality_stats0.22.0r-optparse1.3.2000000000000000000000000000000000000000000
marine_omicssanntis_marineThe Sanntis tool identify biosynthetic gene clusters (BGCs) in genomic & metagenomic dataUp-to-datehttps://github.com/Finn-Lab/SanntiSEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omicshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics0.9.3.5sanntis0.9.3.5001000100000000000000000000000000000000000
matchmsmatchms_add_key, matchms_convert, matchms_filtering, matchms_fingerprint_similarity, matchms_formatter, matchms_metadata_export, matchms_metadata_match, matchms_metadata_merge, matchms_networking, matchms_remove_key, matchms_remove_spectra, matchms_spectral_similarity, matchms_split, matchms_subsettingSearching, filtering and converting mass spectral libraries.matchmsmatchmsMatchmsTool to import, process, clean, and compare mass spectrometry data.Spectral library search, Format validation, FilteringMetabolomicsUp-to-datehttps://github.com/matchms/matchmsMetabolomicsmatchmsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/matchmshttps://github.com/RECETOX/galaxytools/tree/master/tools/matchms0.27.0matchms0.27.0Spectral library search, Format validation, FilteringMetabolomics214141121414110000000000000000000000000000090010187
maxquantmaxquant, maxquant_mqparwrapper for MaxQuantmaxquantmaxquantMaxQuantQuantitative proteomics software package designed for analyzing large mass-spectrometric data sets. It is specifically aimed at high-resolution MS data.Imputation, Visualisation, Protein quantification, Statistical calculation, Standardisation and normalisation, Heat map generation, Clustering, Principal component plottingProteomics experiment, Proteomics, Statistics and probabilityUp-to-datehttps://www.maxquant.org/Proteomicsmaxquantgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquanthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant2.0.3.0maxquant2.0.3.0Imputation, Visualisation, Protein quantification, Standardisation and normalisation, Heat map generation, ClusteringProteomics experiment, Proteomics, Statistics and probability22202220000000000000020000000000000002204156078
mdanalysismdanalysis_angle, mdanalysis_dihedral, mdanalysis_distance, mdanalysis_endtoend, mdanalysis_extract_rmsd, mdanalysis_hbonds, mdanalysis_cosine_analysis, mdanalysis_ramachandran_protein, mdanalysis_ramachandran_plot, mdanalysis_rdfMDAnalysis is a package for analyzing trajectories from molecular dynamics (MD) simulationsTo updatehttps://github.com/MDAnalysis/mdanalysisComputational chemistrymdanalysischemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdanalysis1.0.0mdanalysis105100105100000000000000100000000000000000101001393115
mdfileconvertermd_converterA tool for interconverting between different MD structure and trajectory file formats.To updateMolecular Dynamics, Computational chemistrymd_converterchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdfileconverterhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdfileconverter1.9.7mdtraj11101110000000000000000000000000000001109826427
mdslicermd_slicerA tool for slicing trajectory files using MDTraj.To updateMolecular Dynamics, Computational chemistrymd_converterchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicerhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdslicer1.9.9mdtraj11101110000000000000100000000000000001109158
mdtrajtraj_selections_and_mergeMDTraj is a python library that allows users to manipulate molecular dynamics (MD) trajectoriesTo updatehttps://github.com/mdtraj/mdtrajComputational chemistrymdtrajchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdtraj1.9.7mdtraj1010101000000000000000000000000000000100336
mean-per-zonemean_per_zoneCreates a png image showing statistic over areas as defined in the vector fileTo updatehttps://github.com/NordicESMhub/galaxy-tools/blob/master/tools/mean-per-zone/Visualization, GIS, Climate Analysismean_per_zoneclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zonehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone0.2.0python0010001000000000000000000000000000000110024
measure_gastruloidsmeasureGastruloidsGet the ROI coordinates around the gastruloids as well as measurements like Area, elongation indexTo updateImagingmeasure_gastruloidslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloidshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids20221216fiji20231211000000000000000000000000000000000000000000
medenviabiodiv_smartbiodiv_med_environRetrieve environmental data from etopo, cmems and woaTo updatehttps://github.com/jeremyfix/medenvEcology, Data Sourceecologyhttps://github.com/jeremyfix/medenvhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/medenv0.1.0pandas001000100000000000000000000000000000000000
meta_proteome_analyzermeta_proteome_analyzerMetaProteomeAnalyzerUp-to-datehttps://github.com/compomics/meta-proteome-analyzer/Proteomicsmeta_proteome_analyzergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzerhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzer2.0.0mpa-portable2.0.0001000100000000000000010000000000000010010123
metagene_annotatormetagene_annotatorMetaGeneAnnotator gene-finding program for prokaryote and phagemetageneannotatormetageneannotatorMetaGeneAnnotatorProkaryotic gene finding program from environmental genome shotgun sequences or metagenomic sequences.Sequence annotationGenomics, Model organisms, Data submission, annotation and curationUp-to-datehttp://metagene.nig.ac.jp/Sequence Analysismetagene_annotatorgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/metagene_annotatorhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metagene_annotator1.0metagene_annotator1.0Sequence annotationGenomics, Model organisms, Data submission, annotation and curation0010001000000000000010100000000000000110115636
metanovometanovoProduce targeted databases for mass spectrometry analysis.metanovometanovoMetaNovoAn open-source pipeline for probabilistic peptide discovery in complex metaproteomic datasets.Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysisProteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small moleculesUp-to-datehttps://github.com/uct-cbio/proteomics-pipelinesProteomicsmetanovogalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovohttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo1.9.4metanovo1.9.4Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysisProteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small molecules0010001000000000000000000000000000000100154181
metaquantomemetaquantome_db, metaquantome_expand, metaquantome_filter, metaquantome_sample, metaquantome_stat, metaquantome_vizquantitative analysis of microbiome taxonomy and functionmetaQuantomemetaQuantomemetaQuantomemetaQuantome software suite analyzes the state of a microbiome by leveraging complex taxonomic and functional hierarchies to summarize peptide-level quantitative information. metaQuantome offers differential abundance analysis, principal components analysis, and clustered heat map visualizations, as well as exploratory analysis for a single sample or experimental condition.Principal component visualisation, Visualisation, Functional clustering, Query and retrieval, Differential protein expression analysis, Heat map generation, Quantification, Indexing, Filtering, Statistical inferenceProteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, MetagenomicsUp-to-datehttps://github.com/galaxyproteomics/metaquantome/Proteomicsmetaquantomegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantomehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome2.0.2metaquantome2.0.2Principal component visualisation, Functional clustering, Query and retrieval, Heat map generation, Quantification, Indexing, Filtering, Statistical inferenceProteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, Metagenomics06600660000000000000000000000000000006601042522
mfassignrmfassignr_histnoise, mfassignr_isofiltr, mfassignr_kmdnoise, mfassignr_mfassign, mfassignr_mfassignCHO, mfassignr_recal, mfassignr_recallist, mfassignr_snplotThe MFAssignR package was designed for multi-element molecular formula (MF) assignment of ultrahigh resolution mass spectrometry measurementsmfassignrmfassignrMFAssignRMolecular formula assignment software for ultrahigh resolution mass spectrometry analysis of environmental complex mixtures.Ultrahigh resolution mass spectrometry is widely used for nontargeted analysis of complex environmental and biological mixtures, such as dissolved organic matter, due to its unparalleled ability to provide accurate mass measurements.VisualisationProteomics experiment, Molecular interactions, pathways and networks, WorkflowsUp-to-datehttps://github.com/RECETOX/MFAssignRMetabolomicsMFAssignRrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/mfassignrhttps://github.com/RECETOX/galaxytools/tree/master/tools/mfassignr1.0.3r-mfassignr1.0.3VisualisationProteomics experiment, Molecular interactions, pathways and networks, Workflows008000800000000000000000000000000000000000
mgf_formattermgf_formatterUp-to-datemgf_formattergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mgf_formatter1.0.0mgf-formatter1.0.0000000000000000000000000000000000000000000
mircountsmircountsGenerates miRNA count lists from read alignments to mirBase.To updatehttp://artbio.frRNA, Transcriptomicsmircountsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/mircountshttps://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts1.6tar010001000000000000000000000001000000000000
miscuse_theoretical_mz_annotationsTo updatehttps://github.com/RECETOX/galaxytoolsMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/mischttps://github.com/RECETOX/galaxytools/tree/master/tools/misc1.0.0011001100000000000000000000000000000000000
moFFproteomics_moffmoFF (a modest Feature Finder) extracts MS1 intensities from RAW and mzML spectrum files.Up-to-datehttps://github.com/compomics/moFFProteomicsproteomics_moffgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/moFFhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/moFF2.0.3moff2.0.301100110000000000000000000000000000001103759
monocle3monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkersDe-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_monocle3ebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle30.1.4monocle3-cli0.0.990909090000000000000000000000000000000002643266
morpheusmorpheusMorpheus MS Search ApplicationmorpheusmorpheusMorpheusA proteomics search algorithm specifically designed for high-resolution tandem mass spectra.Peptide database searchProteomicsTo updatehttps://cwenger.github.io/MorpheusProteomicsmorpheusgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheushttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus288morpheus290Peptide database searchProteomics01100110000000000000000000000000000001104140
mqppepmqppep_anova, mqppep_preprocMaxQuant Phosphoproteomic Enrichment Pipeline - Preprocessing and ANOVATo updatehttps://github.com/galaxyproteomics/tools-galaxyp/Proteomicsmqppepgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppephttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppep0.1.19bioconductor-preprocesscore1.64.0002000200000000000000000000000000000020002
msconvertmsconvertmsconvert Convert and/or filter mass spectrometry files (including vendor formats) using the official Docker containermsconvertmsconvertmsConvertmsConvert is a command-line utility for converting between various mass spectrometry data formats, including from raw data from several commercial companies (with vendor libraries, Windows-only). For Windows users, there is also a GUI, msConvertGUI.Filtering, FormattingProteomics, Proteomics experimentTo updatehttp://proteowizard.sourceforge.net/tools.shtmlProteomicsmsconvertgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconverthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert3.0.20287Filtering, FormattingProteomics, Proteomics experiment111111110000000000000000000000000000011018919958
msgfplusmsgfplusMSGF+To updateProteomicsmsgfplusgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplushttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplus0.5msgf_plus2024.03.2600100010000000000000000000000000000001105507
msmetaenhancermsmetaenhancermsmetaenhancermsmetaenhancerMSMetaEnhancerTool for mass spectra metadata annotation.Annotation, Standardisation and normalisationMetabolomics, Compound libraries and screening, Data submission, annotation and curationUp-to-datehttps://github.com/RECETOX/MSMetaEnhancerMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancerhttps://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancer0.4.0msmetaenhancer0.4.0Annotation, Standardisation and normalisationMetabolomics, Compound libraries and screening, Data submission, annotation and curation01110111000000000000000000000000000001001103
msms_extractormsms_extractorExtract MS/MS scans from the mzML file(s) based on PSM report.To updateProteomicsmsms_extractorgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msms_extractor1.0.0proteowizard3_0_999200110011000000000000100000000000000001101110
msp_mergemsp_mergeTo updatehttps://github.com/RECETOX/galaxytoolsMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/msp_mergehttps://github.com/RECETOX/galaxytools/tree/master/tools/msp_merge0.1.0matchms0.27.0000000000000000000000000000000000000000000
msstatsmsstatsMSstats tool for analyzing mass spectrometry proteomic datasetsmsstatstmtmsstatstmtMSstatsTMTTools for detecting differentially abundant peptides and proteins in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labelingSpectrum calculation, Tag-based peptide identification, Differential protein expression profilingProteomics, Proteomics experiment, Protein expressionTo updatehttps://github.com/MeenaChoi/MSstatsProteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats4.0.0bioconductor-msstats4.10.0Spectrum calculation, Tag-based peptide identification, Differential protein expression profilingProteomics, Proteomics experiment, Protein expression11101110000000000000100000000000000001101442036
msstatstmtmsstatstmtMSstatsTMT protein significance analysis in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labelingTo updatehttp://msstats.org/msstatstmt/Proteomicsmsstatstmtgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt2.0.0bioconductor-msstatstmt2.10.0011001100000000000000000000000000000010071726
mt2mqmt2mqTool to prepare metatranscriptomic outputs from ASaiM for MetaquantomeTo updateProteomicsmt2mqgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mt2mq1.1.0r-tidyverse001000100000000000000000000000000000011019270
mutational_patternsmutational_patternsMutational patterns and signatures in base substitution catalogsUp-to-datehttp://artbio.frVariant Analysismutational_patternsartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/mutational_patternshttps://github.com/ARTbio/tools-artbio/tree/main/tools/mutational_patterns3.12.0bioconductor-mutationalpatterns3.12.0000000000000000000000000000000000000000000
mz_to_sqlitemz_to_sqliteCreates a SQLite database for proteomics datamztosqlitemztosqlitemzToSQLiteConvert proteomics data files into a SQLite databaseConversion, Peptide database searchProteomics, Biological databasesTo updatehttps://github.com/galaxyproteomics/mzToSQLiteProteomicsmz_to_sqlitegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlitehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite2.1.1+galaxy0mztosqlite2.1.1Conversion, Peptide database searchProteomics, Biological databases111011100000000000000000000000000000011033844
mzml_validatormzml_validatormzML Validator checks if mzML file validates against XML Schema Definition of HUPO Proteomics Standard Initiative.To updatehttps://github.com/RECETOX/galaxytoolsMetabolomics, Proteomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/mzml_validatorhttps://github.com/RECETOX/galaxytools/tree/master/tools/mzml_validator0.1.0+galaxy2lxml000000000000000000000000000000000000000000
ncbi_blast_plusblastxml_to_tabular, get_species_taxids, ncbi_blastdbcmd_info, ncbi_blastdbcmd_wrapper, ncbi_blastn_wrapper, ncbi_blastp_wrapper, ncbi_blastx_wrapper, ncbi_convert2blastmask_wrapper, ncbi_deltablast_wrapper, ncbi_dustmasker_wrapper, ncbi_makeblastdb, ncbi_makeprofiledb, ncbi_psiblast_wrapper, ncbi_rpsblast_wrapper, ncbi_rpstblastn_wrapper, ncbi_segmasker_wrapper, ncbi_tblastn_wrapper, ncbi_tblastx_wrapperNCBI BLAST+To updatehttps://blast.ncbi.nlm.nih.gov/Sequence Analysisncbi_blast_plusdevteamhttps://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plushttps://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus2.14.1python1616161616161616015001500000001615160000001600001600161504066365597
oasesoasesoptimiservShort read assemblerTo updatehttp://artbio.frAssembly, RNAoasesartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/oaseshttps://github.com/ARTbio/tools-artbio/tree/main/tools/oases1.4.0oases0.2.09000000000000000000000110000001000000000000
obisindicatorsobisindicators, obis_dataCompute biodiveristy indicators for marine data from obisTo updatehttps://github.com/Marie59/obisindicatorsEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicatorshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators0.0.2r-base1021102100000000000000000000000000000100445
oceanargo_getdata, divand_full_analysisAccess, process, visualise oceanographic data for the Earth SystemTo updatehttps://github.com/Marie59/FE-ft-ESG/tree/main/argoEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/oceanhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean0.1.15julia002000200000000000000000000000000000000006
ogcProcess_otb_bandmathotb_band_mathOutputs a monoband image which is the result of a mathematical operation on several multi-band images.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/OtbBandMathhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_bandmath1.0r-base001000100000000000000000000000000000000000
ogcProcess_otb_meanShiftSmoothingotb_mean_shift_smoothingThis application smooths an image using the MeanShift algorithm.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolationhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_meanShiftSmoothing1.0r-base001000100000000000000000000000000000000000
omeroomero_import, omero_metadata_importImport images and metadata into an OMERO.server using omero-pyomeroomeroOMEROClient-server Java software for visualisation, management and analysis of biological microscope images.Image analysisImaging, Data visualisationTo updatehttps://github.com/ome/omero-py/Imagingomero_uploadufzhttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omerohttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero5.18.0omero-py5.11.1Image analysisImaging, Data visualisation000000000000000000000000000000000000000000
omero_clean_rois_tablesomero_clean_rois_tablesRemove all ROIs and all tables on OMERO associated to an omero object and recursively up and downTo updateImagingomero_clean_rois_tableslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tableshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables20230623fiji20231211000000000000000000000000000000000000000000
omero_get_children_idsomero_get_children_idsGet omero id of children of an omero object idTo updateImagingomero_get_children_idslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_idshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids0.2.0omero-py5.11.1000000000000000000000000000000000000000000
omero_get_full_imagesomero_get_full_imagesGet full images from omeroTo updateImagingomero_get_full_imageslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_imageshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images20240521fiji20231211000000000000000000000000000000000000000000
omero_hyperstack_to_fluo_measurements_on_gastruloidomero_hyperstack_to_fluo_measurements_on_gastruloidAnalyse Hyperstack on OMERO server to measure fluorescence levelsTo updateImagingomero_hyperstack_to_fluo_measurements_on_gastruloidlldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloidhttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid20230809fiji20231211000000000000000000000000000000000000000000
omero_hyperstack_to_gastruloid_measurementsomero_hyperstack_to_gastruloid_measurementsAnalyse Hyperstack on OMERO server to segment gastruloid and compute measurementsTo updateImagingomero_hyperstack_to_gastruloid_measurementslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurementshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements20240214fiji20231211000000000000000000000000000000000000000000
openmmpdbfixerOpenMM is a toolkit for molecular simulation using high performance GPU code.To updatehttps://github.com/openmmMolecular Dynamics, Computational chemistryopenmmchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/openmmhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/openmm1.8.1pdbfixer001000100000000000000000000000000000010025347
openmsAccurateMassSearch, AssayGeneratorMetabo, BaselineFilter, CVInspector, ClusterMassTraces, ClusterMassTracesByPrecursor, CometAdapter, ConsensusID, ConsensusMapNormalizer, DTAExtractor, DatabaseFilter, DatabaseSuitability, DeMeanderize, DecoyDatabase, Digestor, DigestorMotif, EICExtractor, ERPairFinder, Epifany, ExternalCalibration, FalseDiscoveryRate, FeatureFinderCentroided, FeatureFinderIdentification, FeatureFinderIsotopeWavelet, FeatureFinderMRM, FeatureFinderMetabo, FeatureFinderMetaboIdent, FeatureFinderMultiplex, FeatureLinkerLabeled, FeatureLinkerUnlabeled, FeatureLinkerUnlabeledKD, FeatureLinkerUnlabeledQT, FileConverter, FileFilter, FileInfo, FileMerger, FuzzyDiff, GNPSExport, HighResPrecursorMassCorrector, IDConflictResolver, IDExtractor, IDFileConverter, IDFilter, IDMapper, IDMassAccuracy, IDMerger, IDPosteriorErrorProbability, IDRTCalibration, IDRipper, IDScoreSwitcher, IDSplitter, InternalCalibration, IsobaricAnalyzer, JSONExporter, LuciphorAdapter, MRMMapper, MRMPairFinder, MRMTransitionGroupPicker, MSFraggerAdapter, MSGFPlusAdapter, MSstatsConverter, MapAlignerIdentification, MapAlignerPoseClustering, MapAlignerSpectrum, MapAlignerTreeGuided, MapNormalizer, MapRTTransformer, MapStatistics, MascotAdapter, MascotAdapterOnline, MassCalculator, MassTraceExtractor, MetaProSIP, MetaboliteSpectralMatcher, MultiplexResolver, MzMLSplitter, MzTabExporter, NoiseFilterGaussian, NoiseFilterSGolay, NovorAdapter, NucleicAcidSearchEngine, OpenMSDatabasesInfo, OpenMSInfo, OpenPepXL, OpenPepXLLF, OpenSwathAnalyzer, OpenSwathAssayGenerator, OpenSwathChromatogramExtractor, OpenSwathConfidenceScoring, OpenSwathDIAPreScoring, OpenSwathDecoyGenerator, OpenSwathFeatureXMLToTSV, OpenSwathFileSplitter, OpenSwathMzMLFileCacher, OpenSwathRTNormalizer, OpenSwathRewriteToFeatureXML, OpenSwathWorkflow, PSMFeatureExtractor, PeakPickerHiRes, PeakPickerIterative, PeakPickerWavelet, PeptideIndexer, PercolatorAdapter, PhosphoScoring, PrecursorMassCorrector, ProteinInference, ProteinQuantifier, ProteinResolver, QCCalculator, QCEmbedder, QCExporter, QCExtractor, QCImporter, QCMerger, QCShrinker, QualityControl, RNADigestor, RNAMassCalculator, RNPxlSearch, RNPxlXICFilter, SageAdapter, SeedListGenerator, SemanticValidator, SequenceCoverageCalculator, SimpleSearchEngine, SiriusAdapter, SpecLibCreator, SpecLibSearcher, SpectraFilterBernNorm, SpectraFilterMarkerMower, SpectraFilterNLargest, SpectraFilterNormalizer, SpectraFilterParentPeakMower, SpectraFilterScaler, SpectraFilterSqrtMower, SpectraFilterThresholdMower, SpectraFilterWindowMower, SpectraMerger, SpectraSTSearchAdapter, StaticModification, TICCalculator, TOFCalibration, TargetedFileConverter, TextExporter, TriqlerConverter, XFDR, XMLValidator, XTandemAdapterOpenMS Suite for LC/MS data management and analysesTo updatehttps://www.openms.de/Proteomicsopenmsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openmshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms3.1openms3.1.083414408341440000000000000000000000000000001411240886105432
packmolpackmolPACKMOL is a package for creating starting structures for Molecular Dynamics simulationsTo updatehttp://m3g.iqm.unicamp.br/packmol/home.shtmlMolecular Dynamics, Computational chemistrypackmolchemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchemhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/packmol18.169.1packmol101010100000000000000000000000000000011015288
pathifierpathifierpathifierUp-to-datehttps://Transcriptomics, Statisticspathifierartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/pathifierhttps://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier1.40.0bioconductor-pathifier1.40.0001000100000000000000000000000000000010010228
pathwaymatcherreactome_pathwaymatcherReactome Pathway MatcherTo updatehttps://github.com/LuisFranciscoHS/PathwayMatcherProteomicsreactome_pathwaymatchergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcherhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcherpathwaymatcher1.9.1001000100000000000000000000000000000011020238
pep_pointerpep_pointerPepPointer categorizes peptides by their genomic coordinates.To updateGenomic Interval Operations, Proteomicspep_pointergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointerhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointer0.1.3+galaxy1python11101110000000000000000000000000000001109498
pepquerypepqueryA peptide-centric MS search engine for novel peptide identification and validation.To updatehttps://pepquery.orgProteomicspepquerygalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepqueryhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery1.6.2pepquery2.0.20010001000000000000000000000000000000110234862
pepquery2pepquery2, pepquery2_index, pepquery2_show_setsPepQuery2 peptide-centric MS search for peptide identification and validationUp-to-datehttps://pepquery.orgProteomicspepquery2galaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery2https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery22.0.2pepquery2.0.2003000300000000000000000000000000000030013717
peptide_genomic_coordinatepeptide_genomic_coordinateGets genomic coordinate of peptides based on the information in mzsqlite and genomic mapping sqlite filesTo updateProteomicspeptide_genomic_coordinategalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptide_genomic_coordinate1.0.0python11101110000000000000000000000000000001109468
peptideshakerfasta_cli, ident_params, peptide_shaker, search_guiPeptideShaker and SearchGUITo updatehttp://compomics.github.ioProteomicspeptideshakergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshakerhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshakersearchgui4.3.9444444440000000000000000000000000000042048517477
pepxml_to_xlsConvert PepXML to TabularTo updateProteomicspepxml_to_xlsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xlshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xls000000000000000000000000000000000000000000
percolatorbatched_set_list_creator, percolator, percolator_input_converters, pout2mzidPercolatorTo updateProteomicspercolatorgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/percolatorhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/percolator3.5percolator3.6.504400440000000000000000000000000000004405368
pi_db_toolscalc_delta_pi, pi_db_split, pi_dbspec_alignHiRIEF toolsTo updateProteomicshirieftoolsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/pi_db_toolshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pi_db_tools1.3python000000000000000000000000000000000000000000
pindelpindelPindel detects genome-wide structural variation.Up-to-datehttp://artbio.frVariant Analysispindelartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/pindelhttps://github.com/ARTbio/tools-artbio/tree/main/tools/pindel0.2.5b9pindel0.2.5b9000000000000100000000100000001000000000000
pmd_fdrpmd_fdrCalculate Precursor Mass Discrepancy (PMD) for MS/MSTo updatehttps://github.com/slhubler/PMD-FDR-for-Galaxy-PProteomicspmd_fdrgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pmd_fdrhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pmd_fdr1.4.0r-base000000000000000000000000000000000000000000
positions2snv_alignmentpositions2snv_alignmentGenerate alignment of SNVs from SNVPhyl variant table.Up-to-datehttps://snvphyl.readthedocs.io/en/latest/Variant Analysispositions2snv_alignmentnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/positions2snv_alignment1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
positions2snv_invariant_alignmentpositions2snv_invariant_alignmentGenerate alignment of SNVs and non-variant positions from SNVPhyl variant table.Up-to-datehttps://snvphyl.readthedocs.io/en/latest/Variant Analysispositions2snv_invariant_alignmentnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/positions2snv_invariant_alignment1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
probecoverageprobecoveragecomputes and plots read coverage of genomic regions by sequencing datasetsTo updatehttp://artbio.frSequence Analysis, Genomic Interval Operations, Graphics, Statisticsprobecoverageartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/probecoveragehttps://github.com/ARTbio/tools-artbio/tree/main/tools/probecoverage0.22.0pysam0.22.1000000000000000000000000000001000000000000
proteinpilotconvert_windows_newlines, proteinpilot, proteinpilot_group_extractor, proteinpilot_tabular, proteinpilot_xmlTo updateproteinpilotgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteinpilot0.1000000000000000000000000000000000000000000
proteomiqon_joinquantpepionswithproteinsproteomiqon_joinquantpepionswithproteinsThe tool JoinQuantPepIonsWithProteins combines results from ProteinInference and PSMBasedQuantification.To updatehttps://csbiology.github.io/ProteomIQon/tools/JoinQuantPepIonsWithProteins.htmlProteomicsproteomiqon_joinquantpepionswithproteinsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteinshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteins0.0.1proteomiqon-joinquantpepionswithproteins0.0.200100010000000000000000000000000000001004366
proteomiqon_labeledproteinquantificationproteomiqon_labeledproteinquantificationThe tool LabeledProteinQuantification estimates protein abundances using quantified peptide ions.To updatehttps://csbiology.github.io/ProteomIQon/tools/LabeledProteinQuantification.htmlProteomicsproteomiqon_labeledproteinquantificationgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labeledproteinquantificationhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labeledproteinquantification0.0.1proteomiqon-labeledproteinquantification0.0.30010001000000000000000000000000000000100514
proteomiqon_labelfreeproteinquantificationproteomiqon_labelfreeproteinquantificationThe tool LabelFreeProteinQuantification estimates protein abundances using quantified peptide ions.To updatehttps://csbiology.github.io/ProteomIQon/tools/LabelfreeProteinQuantification.htmlProteomicsproteomiqon_labelfreeproteinquantificationgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labelfreeproteinquantificationhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labelfreeproteinquantification0.0.1proteomiqon-labelfreeproteinquantification0.0.3001000100000000000000000000000000000010036
proteomiqon_mzmltomzliteproteomiqon_mzmltomzliteThe tool MzMLToMzLite allows to convert mzML files to mzLite files.Up-to-datehttps://csbiology.github.io/ProteomIQon/tools/MzMLToMzLite.htmlProteomicsproteomiqon_mzmltomzlitegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomIQon_MzMLToMzLitehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_mzmltomzlite0.0.8proteomiqon-mzmltomzlite0.0.800100010000000000000000000000000000001005721
proteomiqon_peptidedbproteomiqon_peptidedbThe tool ProteomIQon PeptideDB creates a peptide database in the SQLite format.Up-to-datehttps://csbiology.github.io/ProteomIQon/tools/PeptideDB.htmlProteomicsproteomiqon_peptidedbgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidedbhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidedb0.0.7proteomiqon-peptidedb0.0.70010001000000000000000000000000000000100696
proteomiqon_peptidespectrummatchingproteomiqon_peptidespectrummatchingGiven raw an MS run in the mzLite format, this tool iterates across all MS/MS scans, determines precursor charge states and possible peptide spectrum matches using reimplementations of SEQUEST,Andromeda and XTandem.Up-to-datehttps://csbiology.github.io/ProteomIQon/tools/PeptideSpectrumMatching.htmlProteomicsproteomiqon_peptidespectrummatchinggalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidespectrummatchinghttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidespectrummatching0.0.7proteomiqon-peptidespectrummatching0.0.700100010000000000000000000000000000001004686
proteomiqon_proteininferenceproteomiqon_proteininferenceMS-based shotgun proteomics estimates protein abundances using a proxy: peptides. The process of 'Protein Inference' is concerned with the mapping of identified peptides to the proteins they putatively originated from.Up-to-datehttps://csbiology.github.io/ProteomIQon/tools/ProteinInference.htmlProteomicsproteomiqon_proteininferencegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_proteininferencehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_proteininference0.0.7proteomiqon-proteininference0.0.70010001000000000000000000000000000000100489
proteomiqon_psmbasedquantificationproteomiqon_psmbasedquantificationThe PSMBasedQuantification tool was designed to allow label-free quantification as well as quantification of full metabolic labeled samples.To updatehttps://csbiology.github.io/ProteomIQon/tools/PSMBasedQuantification.htmlProteomicsproteomiqon_psmbasedquantificationgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmbasedquantificationhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmbasedquantification0.0.8proteomiqon-psmbasedquantification0.0.900100010000000000000000000000000000001004604
proteomiqon_psmstatisticsproteomiqon_psmstatisticsThe PSMStatistics tool utilizes semi supervised machine learning techniques to integrate search engine scores as well as the mentioned quality scores into one single consensus score.Up-to-datehttps://csbiology.github.io/ProteomIQon/tools/PSMStatistics.htmlProteomicsproteomiqon_psmstatisticsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmstatisticshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmstatistics0.0.8proteomiqon-psmstatistics0.0.800100010000000000000000000000000000001004694
proteore_venn_diagramproteore_venn_diagramProteoRE JVenn DiagramTo updateProteomicsproteore_venn_diagramgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteore_venn_diagram2021.06.08python0000000000000000000000000000000000000000015
protxml_to_xlsprotxml_to_xlsTo updateprotxml_to_xlsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/protxml_to_xls0.1.0trans_proteomic_pipeline000000000000000000000000000000000000000000
psm2samPSMtoSAMPSM to SAMTo updatehttps://bioconductor.org/packages/release/bioc/html/proBAMr.htmlProteomicspsm_to_samgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/psm2samhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/psm2sam1.3.2.1r-base000100010000000000000000000000000000000000
psm_evalpsm_evalTo updatepsm_evalgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_eval0.1.0binaries_for_psm_eval000000000000000000000000000000000000000000
psm_validationpsmvalidatorValidate PSM from Ion FragmentationTo updatehttps://github.com/galaxyproteomics/psm_fragments.gitProteomicspsm_validationgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validationhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validation1.0.30010001000000000000000000000000000000100020
psy-mapspsy_mapsVisualization of regular geographical data on a map with psyplotTo updatehttps://github.com/Chilipp/psy-mapsVisualization, Climate Analysispsy_mapsclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/psy-mapshttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/psy-maps1.2.1python001000100000000000000000000000000000011046469
pyprophetpyprophet_export, pyprophet_merge, pyprophet_peptide, pyprophet_protein, pyprophet_score, pyprophet_subsampleSemi-supervised learning and scoring of OpenSWATH results.To updatehttps://github.com/PyProphet/pyprophetProteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophethttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet2.1.4pyprophet2.2.50560056000000000000000000000000000000660332509
pyscenicpyscenic_aucell, pyscenic_ctx, pyscenic_grnPySCENIC scripts based on usage at https://pyscenic.readthedocs.io/To updateTranscriptomics, RNA, Sequence Analysissuite_pyscenicebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/pyscenic0.12.1000000000000000000000000000000000000000000
pyteomicsmztab2tsvTools using the pyteomics librarypyteomicspyteomicsPyteomicsFramework for proteomics data analysis, supporting mzML, MGF, pepXML and more.Protein identificationProteomics, Proteomics experimentTo updatehttps://pyteomics.readthedocs.io/en/latest/Proteomics, Metabolomicspyteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomicshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomics4.4.1pyteomics4.7.3Protein identificationProteomics, Proteomics experiment0010001000000000000000000000000000000100281
pyvo_integrationastronomical_archivesAstronomical archives tools contains tools for querying and fetching resources from astronomical archives into GalaxyTo updateData Sourceastronomicalarchivestoolastroteamhttps://github.com/esg-epfl-apc/tools-astro/tree/main/tools/https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/archives/pyvo_integration0.10.0astropy0010001000000000000000000000000000000100436
qcxmsqcxms_getres, qcxms_neutral_run, qcxms_production_runQCxMS is a quantum chemical (QC) based program that enables users to calculate mass spectra (MS) using Born-Oppenheimer Molecular Dynamics (MD).To updatehttps://github.com/grimme-lab/QCxMSComputational chemistry, Molecular DynamicsQCxMSrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/qcxmshttps://github.com/RECETOX/galaxytools/tree/master/tools/qcxms5.2.1033003300000000000000000000000000000000000
quantpquantpCorrelation between protein and transcript abundanceTo updateProteomicsquantpgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantp1.1.2r-data.table1.11.600110011000000000000000000000000000001106230
quantwiz_iqquantwiz_iqIsobaric Quantitation using QuantWiz-IQUp-to-datehttps://sourceforge.net/projects/quantwiz/Proteomicsquantwiz_iqgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iqhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iq2.0quantwiz-iq2.00010001000000000000000000000000000000110132
queryqueryExecute an SQL statement on a set of tablesTo updateText Manipulationqueryrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/queryhttps://github.com/RECETOX/galaxytools/tree/master/tools/query0.2click000000000000000000000000000000000000000000
qupath_roi_splitterqupath_roi_splitterSplit ROI coordinates of QuPath TMA annotation by cell typeTo updatehttps://github.com/npinter/ROIsplitterImagingqupath_roi_splittergalaxyphhttps://github.com/npinter/ROIsplitterhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/qupath_roi_splitter0.3.1geojson0010001000000000000000000000000000000100559
ramclustrramclustr, ramclustr_define_experimentramclustrramclustrRAMClustRA feature clustering algorithm for non-targeted mass spectrometric metabolomics data.Imputation, Standardisation and normalisation, Clustering, CorrelationMetabolomicsTo updatehttps://rdrr.io/cran/RAMClustR/Metabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/ramclustrhttps://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr1.3.0r-ramclustr1.3.1Imputation, Standardisation and normalisation, Clustering, CorrelationMetabolomics2222222200000000000000000000000000000200216
rawtoolsrawtoolsRaw ToolsTo updatehttps://github.com/kevinkovalchik/RawToolsProteomicsrawtoolsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtoolshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtoolsrawtools2.0.4011001100000000000000000000000000000011014175
rcx-tkrcx-tkTools to process metadata or alkane files.To updatehttps://github.com/RECETOX/rcx-tkMetabolomicsrcx_tkrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/rcx-tk/https://github.com/RECETOX/galaxytools/tree/master/tools/rcx-tk0.1.0+galaxy0rcx-tk0.1.0001000100000000000000000000000000000000000
recetox_aplcmsrecetox_aplcms_align_features, recetox_aplcms_compute_clusters, recetox_aplcms_compute_template, recetox_aplcms_correct_time, recetox_aplcms_generate_feature_table, recetox_aplcms_merge_known_table, recetox_aplcms_recover_weaker_signals, recetox_aplcms_remove_noisePeak detection tool for HRMS profile data.recetox-aplcmsrecetox-aplcmsrecetox-aplcmsrecetox-aplcms is a tool for peak detection in mass spectrometry data. The tool performs (1) noise removal, (2) peak detection, (3) retention time drift correction, (4) peak alignment and (5) weaker signal recovery as well as (6) suspect screening.Chromatographic alignment, Quantification, Peak detection, Feature extraction, AlignmentMetabolomicsUp-to-datehttps://github.com/RECETOX/recetox-aplcmsMetabolomicsrecetox-aplcmsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcmshttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms0.13.2r-recetox-aplcms0.13.2Chromatographic alignment, Quantification, Peak detection, Feature extraction, AlignmentMetabolomics08880888000000000000000000000000000008007296
recetox_msfinderrecetox_msfinderrecetox-msfinderrecetox-msfinderrecetox-msfinderThis is a modified copy of MS-FINDER with source code modifications to make the tool accessible in Galaxy.MS-FINDER - software for structure elucidation of unknown spectra with hydrogen rearrangement (HR) rulesThe program supports molecular formula prediction, metabolie class prediction, and structure elucidation for EI-MS and MS/MS spectra, and the assembly is licensed under the CC-BY 4.0.AnnotationMetabolomicsTo updatehttps://github.com/RECETOX/recetox-msfinderMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox_msfinderhttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox_msfinderv3.5.2AnnotationMetabolomics011101110000000000000000000000000000000000
recetox_xmsannotatorrecetox_xmsannotator_advancedrecetox-xmsannotatorrecetox-xmsannotatorrecetox-xMSannotatorAnnotation tool for untargeted LCMS1 data. Uses a database and adduct list for compound annotation and intensity networks, isotopic patterns and pathways for annotation scoring.Expression profile pathway mapping, Structure comparison, Isotopic distributions calculation, AnnotationUp-to-datehttps://github.com/RECETOX/recetox-xMSannotatorMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotatorhttps://github.com/RECETOX/galaxytools/tree/master/tools/recetox_xmsannotator0.10.0r-recetox-xmsannotator0.10.0Expression profile pathway mapping, Structure comparison, Isotopic distributions calculation, Annotation011101110000000000000000000000000000010000
regex_find_replaceregex1, regexColumn1Use python regular expressions to find and replace textTo updateText Manipulationregex_find_replacegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/regex_find_replacehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/regex_find_replace1.0.3python222222220200200000000220000002000000022049560307
regionalgamregionalgam_ab_index, regionalgam_autocor_acf, regionalgam_flight_curve, regionalgam_glmmpql, regionalgam_gls_adjusted, regionalgam_gls, regionalgam_plot_trendTo updatehttps://github.com/RetoSchmucki/regionalGAMEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgamhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam1.5r-mgcv007700770000000000000000000000000000077022526
rem_complexrem_complexRemoves molecular coordination complexes.To updatehttps://github.com/RECETOX/galaxytoolsMetabolomicsrem_complexrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/rem_complexhttps://github.com/RECETOX/galaxytools/tree/master/tools/rem_complex1.0.0pandas011001100000000000000000000000000000000000
rename_annotated_featurerename_annotated_featureUpdate column names in an abundance table using a annotation table with spectral matching resultsTo updatehttps://github.com/RECETOX/galaxytools/Metabolomicsrename_annotated_featurerecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/rename_annotated_featurehttps://github.com/RECETOX/galaxytools/tree/master/tools/rename_annotated_feature1.0.0pandas011001100000000000000000000000000000000000
repenrichedger-repenrich, repenrichRepeat element profilingTo updatehttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrichTranscriptomicsrepenrichartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrichhttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2.31.1020002000000000000000000000002000000000000
repenrich2edger-repenrich2, repenrich2Repeat element profiling using bowtie2 alignerTo updatehttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2Transcriptomicsrepenrich2artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich22.31.1000000000000000000000000000000000000000000
retipretip_apply, retip_descriptors, retip_filter_rt, retip_trainretipretipRetipRetention Time Prediction for Compound Annotation in Untargeted Metabolomics.Retip is an R package for predicting Retention Time (RT) for small molecules in a high pressure liquid chromatography (HPLC) Mass Spectrometry analysis.Retip - Retention Time prediction for Metabolomics.Retip: Retention Time Prediction for Compound Annotation in Untargeted Metabolomics Paolo Bonini, Tobias Kind, Hiroshi Tsugawa, Dinesh Kumar Barupal, and Oliver Fiehn Analytical Chemistry 2020 92 (11), 7515-7522 DOI: 10.1021/acs.analchem.9b05765.Retention time prediction, Spectrum calculation, Deisotoping, Formatting, DepositionMetabolomics, Proteomics experiment, Machine learning, Cheminformatics, ChemistryTo updatehttps://github.com/PaoloBnn/RetipMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/retiphttps://github.com/RECETOX/galaxytools/tree/master/tools/retip0.5.4Retention time prediction, Spectrum calculation, Deisotoping, Formatting, DepositionMetabolomics, Proteomics experiment, Machine learning, Cheminformatics, Chemistry000000000000000000000000000000000000000000
retrieve_boldretrieve_boldSearch a list of sequences in BOLD (Barcode of Life Data System) from specified taxa list and markersTo updatehttps://anaconda.org/conda-forge/r-boldEcologyretrieve_boldecologyhttps://github.com/wpearman1996/MARES_database_pipeline/tree/masterhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/retrieve_bold1.3.0r-base001000100000000000000000000000000000000000
retrieve_ensembl_bedretrieve_ensembl_bedRetrieve cDNA features from Ensembl REST API in BED formatTo updatehttp://rest.ensembl.org/Data Sourceretrieve_ensembl_bedgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/retrieve_ensembl_bedhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/retrieve_ensembl_bed0.1.0000000000000000000000000000000000000000000
revertR2orientationInBamrevertR2orientationInBamRevert the mapped orientation of R2 mates in a bam.To updateSAMrevertr2orientationinbamlldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/revertR2orientationInBamhttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/revertR2orientationInBam0.0.2samtools1.201010101000000000000000000000000000000100939
riassignerriassigner, riassigner_from_commentriassignerriassignerRIAssignerRIAssigner is a python tool for retention index (RI) computation for GC-MS data.Standardisation and normalisationMetabolomics, Compound libraries and screening, Data submission, annotation and curationUp-to-datehttps://github.com/RECETOX/RIAssignerMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/riassignerhttps://github.com/RECETOX/galaxytools/tree/master/tools/riassigner0.4.1riassigner0.4.1Standardisation and normalisationMetabolomics, Compound libraries and screening, Data submission, annotation and curation1221122100000000000000000000000000000100315
rmassbankrmassbankRMassBank is an R package for processing tandem MS files and building of MassBank records.To updatehttps://github.com/MassBank/RMassBankMetabolomicsrmassbankrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/rmassbankhttps://github.com/RECETOX/galaxytools/tree/master/tools/rmassbank3.0.0python011101110000000000000000000000000000010000
rsemextract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtietranscript quantification from RNA-Seq dataTo updatehttps://github.com/deweylab/RSEMTranscriptomics, RNArsemartbiohttps://github.com/artbio/tools-artbio/tree/master/tools/rsemhttps://github.com/ARTbio/tools-artbio/tree/main/tools/rsemrsem1.3.3001000100000000000000000000004000000011067377
salmon-kallisto-mtx-to-10x_salmon_kallisto_mtx_to_10xTransforms .mtx matrix and associated labels into a format compatible with tools expecting old-style 10X dataTo updatehttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiarySequence Analysissalmon_kallisto_mtx_to_10xebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/salmon-kallisto-mtx-to-10x/.shed.ymlhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/salmon-kallisto-mtx-to-10x0.0.1+galaxy6scipy111011100000000000000000000000000000000086561
sambambasambamba_sample_or_filterfilter BAM/SAM on flags, fields, tags, and region, or down-sample, or slice BAM/SAMTo updatehttp://artbio.frSAMsambambaartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sambambahttps://github.com/ARTbio/tools-artbio/tree/main/tools/sambamba0.7.1+galaxy1sambamba1.0.1010001000000000000000000000001000000000000
sashimi_plotsashimi_plotGenerates a sashimi plot from bam files.To updatehttp://artbio.frRNA, Transcriptomics, Graphics, Visualizationsashimi_plotartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plothttps://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot0.1.1python000000000000000000000010000000000000000000
sc3sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepareDe-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_sc3ebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc31.8.0sc3-scripts0.0.6007000700000000000000000000000000000000019
scaffoldscaffold, scaffold_exportTo updatescaffoldgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/scaffold0.1.0scaffold000000000000000000000000000000000000000000
scanpyanndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_datascanpy-scripts, command-line wrapper scripts around Scanpy.To updatehttps://scanpy.readthedocs.ioTranscriptomics, Sequence Analysis, RNAscanpy_scriptsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpyhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy1.9.3scanpy-scripts1.9.301272727027272700000000000000000000000000000014130218539356
scaterscater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_resultsDe-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scaterebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater1.10.0scater-scripts0.0.5126012600000000000000000000000000000022016387
sccafrun_sccaf, sccaf_asses, sccaf_asses_merger, sccaf_regress_outSCCAF: Single Cell Clustering Assessment Framework.To updatehttps://github.com/sccaf/sccafTranscriptomicsSCCAFebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccafhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf0.0.9sccaf0.0.1043404340000000000000000000000000000000002110
sceasysceasy_convertConvert scRNA data object between popular formatsTo updateTranscriptomicssceasyebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy0.0.5r-sceasy0.0.7111011100000000000000000000001000000000090721
scmapscmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_featuresDe-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scmapebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap1.6.4scmap-cli0.1.000700070000000000000000000000000000001001383
scpredscpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_modelDe-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scpredebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred1.0.2scpred-cli0.1.00040004000000000000000000000000000000000425
scriptingsingularity_scriptrunnersuite_scriptingTo updatehttps://github.com/bernt-matthias/mb-galaxy-tools/tree/master/tools/scripting/Text Manipulationscripting toolsmbernthttps://github.com/bernt-matthias/mb-galaxy-tools/tree/master/tools/scripting/https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/scripting0.1000000000000000000000000000000000000000000
sdmpredictorssdmpredictors_list_layersTerrestrial and marine predictors for species distribution modelling.To updatehttps://cran.r-project.org/web/packages/sdmpredictors/index.htmlEcologysdmpredictorsecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictorshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors0.2.15r-base001000100000000000000000000000000000000000
sequence_format_convertersequence_format_convertervarious fasta to tabular conversionsTo updatehttp://artbio.frConvert Formats, Fasta Manipulationsequence_format_converterartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sequence_format_converterhttps://github.com/ARTbio/tools-artbio/tree/main/tools/sequence_format_converter2.2.0python000000000000000000000010000001000000000000
seuratseurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_featuresDe-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1Up-to-datehttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/Transcriptomics, RNA, Statistics, Sequence Analysissuite_seuratebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat4.0.0seurat-scripts4.0.014141411141414110000000000000000000001900000000001811966
sgwbsgwb_astro_toolSGWBTo updateAstronomysgwb_astro_toolastroteamhttps://github.com/esg-epfl-apc/tools-astro/tree/main/toolshttps://github.com/esg-epfl-apc/tools-astro/tree/main/tools/sgwb0.0.1+galaxy0ipython001000100000000000000000000000000000000000
shift-longitudesshyft_longitudesShift longitudes ranging from 0. and 360 degrees to -180. and 180. degreesTo updatehttps://github.com/NordicESMhub/galaxy-tools/blob/master/tools/shift-longitudes/Climate Analysisshift_longitudesclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/shift-longitudeshttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/shift-longitudes0.1.0python0010001000000000000000000000000000000110263
sixgillsixgill_build, sixgill_filter, sixgill_makefasta, sixgill_mergeSix-frame Genome-Inferred Libraries for LC-MS/MSUp-to-dateProteomics, MetaProteomicssixgillgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgillhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgill0.2.4sixgill0.2.4004000400000000000000040000000000000044024293
small_rna_clusterssmall_rna_clustersclusters small rna reads in alignment BAM filesTo updatehttp://artbio.frRNA, SAM, Graphics, Next Gen Mapperssmall_rna_clustersartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_clustershttps://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_clusters1.3.0pysam0.22.1000000000000000000000000000001000000000000
small_rna_mapssmall_rna_mapsGenerates small read maps from alignment BAM filesTo updatehttp://artbio.frRNA, SAM, Graphics, Next Gen Mapperssmall_rna_mapsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_mapshttps://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_maps3.1.1numpy000000000000000000000110000001000000000000
small_rna_signaturesoverlapping_reads, signatureComputes the tendency of small RNAs to overlap with each other.To updatehttp://artbio.frRNAsmall_rna_signaturesartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_signatureshttps://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_signatures3.4.2pysam0.22.1000000000000000000000100000002000000000000
smithsonian-volcanoessmithsonian_volcanoesRetrieve data from Volcanoes of the World (VOTW) DatabaseTo updatehttps://volcano.si.edu/gvp_votw.cfmRetrieve Datasmithsonian_volcanoesclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/smithsonian-volcanoeshttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/smithsonian-volcanoes0.1.0python000000000000000000000000000000000000000000
snv_matrixsnvmatrixGenerate matrix of SNV distancesUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysissnv_matrixnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/snv_matrix1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
snvtocnvsequenzaindex, snvtocnvinfer copy number variations from a vcf file with SNVs using R sequenzaTo updatehttp://artbio.frVariant Analysissnvtocnvartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/snvtocnvhttps://github.com/ARTbio/tools-artbio/tree/main/tools/snvtocnv3.0.0+galaxy1sequenza-utils3.0.0000000000000000000000020000000000000000000
spec2vecspec2vec_similarity, spec2vec_trainingMass spectra similarity scoring using a trained Spec2Vec model.spec2vecspec2vecSpec2VecImproved mass spectral similarity scoring through learning of structural relationships.Spec2vec is a novel spectral similarity score inspired by a natural language processing algorithm -- Word2Vec. Where Word2Vec learns relationships between words in sentences, spec2vec does so for mass fragments and neutral losses in MS/MS spectra. The spectral similarity score is based on spectral embeddings learnt from the fragmental relationships within a large set of spectral data.Analysis and benchmarking of mass spectra similarity measures using gnps data set.Spectrum calculation, Spectral library search, Database search, Natural product identificationProteomics experiment, Metabolomics, Natural language processing, ProteomicsUp-to-datehttps://github.com/iomega/spec2vecMetabolomicsspec2vecrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/spec2vechttps://github.com/RECETOX/galaxytools/tree/master/tools/spec2vec0.8.0spec2vec0.8.0Spectrum calculation, Spectral library search, Database search, Natural product identificationProteomics experiment, Metabolomics, Natural language processing, Proteomics022002200000000000000000000000000000000000
spectrast2spectrast_irtgp_spectrast2spectrast_irtFilter from spectraST files to swath input filesTo updateProteomicsspectrast2spectrast_irtgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irt0.1.0msproteomicstools0.11.0000000000000000000000000000000000000000000
spectrast2tsvgp_spectrast2tsvFilter from spectraST files to swath input filesTo updateProteomicsspectrast2tsvgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsvhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsv0.1.0msproteomicstools0.11.0000000000000000000000000000000000000000000
spoccspocc_occGet species occurences dataTo updatehttps://cran.r-project.org/web/packages/spocc/index.htmlEcologyspocc_occecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/spocchttps://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc1.2.2001100110000000000000000000000000000011056769
sr_bowtiebowtieForSmallRNAbowtie wrapper tool to align small RNA sequencing readsTo updatehttp://artbio.frRNA, Next Gen Mapperssr_bowtieartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtiehttps://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie2.3.0bowtie1.3.1000000000000000000000110000001000000000000
sr_bowtie_dataset_annotationsr_bowtie_dataset_annotationMaps iteratively small RNA sequencing datasets to reference sequences.To updatehttp://artbio.frRNAsr_bowtie_dataset_annotationartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie_dataset_annotationhttps://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie_dataset_annotation2.8bowtie1.3.1000000000000000000000100000001000000000000
srs_toolssrs_diversity_maps, srs_global_indices, srs_process_data, srs_spectral_indices, srs_pca, srs_preprocess_s2, srs_metadataCompute biodiversity indicators for remote sensing data from Sentinel 2To updateEcologyecologyhttps://github.com/Marie59/Sentinel_2A/srs_toolshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/srs_tools0.0.1r-base407740770000000000000000000000000000070021225
stocstoceps_filteringsp, stoceps_glm, stoceps_glm_group, stoceps_maketablecarrer, stoceps_trend_indicTools to analyse STOC data.To updateEcologystocepsecologyhttps://github.com/Alanamosse/Galaxy-E/tree/stoctool/tools/stochttps://github.com/galaxyecology/tools-ecology/tree/master/tools/stoc0.0.2005500550000000000000000000000000000055010325
suite_snvphylSNVPhyl suite defining all dependencies for SNVPhylTo updateSequence Analysissuite_snvphyl_1_2_3nmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/suite_snvphyl000000000000000000000000000000000000000000
tarfast5tarfast5produces a tar.gz archive of fast5 sequence filesTo updatehttp://artbio.frNanoporetarfast5artbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/tarfast5https://github.com/ARTbio/tools-artbio/tree/main/tools/tarfast50.6.1pigz000000000000000000000000000000000000000000
topologyeditorsgromacs_modify_topology, gromacs_extract_topologySet of python scripts and associated tool files that can be used to modify topology files.To updatehttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditorsMolecular Dynamics, Computational chemistrytopologyeditorschemteamhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditorshttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditors0python2020202000000000000020000000000000000200850
translate_bedtranslate_bedTranslate BED transcript CDS or cDNA in 3 framesTo updatehttp://rest.ensembl.org/Proteomicstranslate_bedgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bedhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bed0.1.0111011100000000000000000000000000000011049643
translate_bed_sequencestranslate_bed_sequencesPerform 3 frame translation of BED file augmented with a sequence columnTo updateProteomicstranslate_bed_sequencesgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequenceshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequences0.2.0biopython1.700010001000000000000000000000000000000110657
ucsc-cell-browserucsc_cell_browserPython pipeline and Javascript scatter plot library for single-cell datasetsTo updatehttps://cells.ucsc.edu/Transcriptomicsucsc_cell_browserebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.ymlhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser1.0.0+galaxy1ucsc-cell-browser1.2.8001000100000000000000000000000000000011078941
unipeptunipeptUnipept retrieves metaproteomics informationunipeptunipeptUnipeptMetaproteomics data analysis with a focus on interactive data visualizations.Prediction and recognition, VisualisationProteomics, Proteogenomics, Biodiversity, WorkflowsTo updatehttps://github.com/galaxyproteomics/tools-galaxypProteomicsunipeptgalaxyphttps://unipept.ugent.be/apidocshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/unipept4.5.1pythonPrediction and recognition, VisualisationProteomics, Proteogenomics, Biodiversity, Workflows11101110000000000000101000000000000001101155005
uniprotxml_downloaderuniprotxml_downloaderDownload UniProt proteome in XML or fasta formatTo updateProteomicsuniprotxml_downloadergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloaderhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader2.4.0requests0110011000000000000000000000000000000110791360
upload_roi_and_measures_to_omerouploadROIandMeasuresToOMEROUpload the ROI coordinates and the measurements to the omero serverTo updateImagingupload_roi_and_measures_to_omerolldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omerohttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero0.0.5omero-py5.11.1000000000000000000000000000000000000000000
validate_fasta_databasevalidate_fasta_databaseruns Compomics database identification tool on any FASTA database, and separates valid and invalid entries based on a series of checks.To updateFasta Manipulation, Proteomicsvalidate_fasta_databasegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/validate_fasta_database0.1.5validate-fasta-database1.000100010000000000000000000000000000001002586
varscan_vafvarscan_vafCompute variant allele frequency in vcf files generated by varscan.To updatehttp://artbio.frVariant Analysisvarscan_vafartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/varscan_vafhttps://github.com/ARTbio/tools-artbio/tree/main/tools/varscan_vaf0.1python000000000000000000000000000000000000000000
vcf2snvalignmentvcf2snvalignmentGenerates multiple alignment of variant callsUp-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisvcf2snvalignmentnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/vcf2snvalignment1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
verify_mapverify_mapChecks the mapping quality of all BAM(s)Up-to-datehttps://snvphyl.readthedocs.io/en/latest/Sequence Analysisverify_mapnmlhttps://github.com/phac-nml/snvphyl-galaxyhttps://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/verify_map1.8.2snvphyl-tools1.8.2000000000000000000000000000000000000000000
vigiechirovigiechiro_bilanenrichipf, vigiechiro_bilanenrichirp, vigiechiro_idcorrect_2ndlayer, vigiechiro_idvalidTools created by the vigiechiro team to analyses and identify chiro sounds files.To updatehttps://www.vigienature-ecole.fr/les-observatoires/le-protocole-vigie-chiroEcologyvigiechiroecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechirohttps://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro0.1.1004400440000000000000000000000000000044035112203
virsortervirsorterVirSorter2 applies a multi-classifier, expert-guided approach to detect diverse DNA and RNA virus genomes.virsortervirsortervirsorterIdentify DNA and RNA virus sequences.Taxonomic classificationMetagenomicsUp-to-datehttps://github.com/jiarong/VirSorter2/Metagenomicsvirsorterufzhttps://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/virsorterhttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/virsorter2.2.4virsorter2.2.4Taxonomic classificationMetagenomics000000000000000000000000000000000000000000
vmdvmd is a package for visualizing and analyzing trajectories from molecular dynamics (MD) simulationsTo updatehttps://www.ks.uiuc.edu/Research/vmd/Computational chemistryvmdchemteamhttps://github.com/thatchristoph/vmd-cvs-github/tree/master/vmdhttps://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/vmd000000000000000000000000000000000000000000
waveicawaveicaRemoval of batch effects for large-scale untargeted metabolomics data based on wavelet analysis.waveicawaveicaWaveICARemoval of batch effects for large-scale untargeted metabolomics data based on wavelet transform.Standardisation and normalisationMetabolomicsUp-to-datehttps://github.com/RECETOX/WaveICAMetabolomicsrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/waveicahttps://github.com/RECETOX/galaxytools/tree/master/tools/waveica0.2.0r-recetox-waveica0.2.0Standardisation and normalisationMetabolomics111111110000000000000000000000000000010006
xarraytimeseries_extraction, xarray_coords_info, xarray_mapplot, xarray_metadata_info, xarray_netcdf2netcdf, xarray_selectxarray (formerly xray) is an open source project and Python package that makes working withlabelled multi-dimensional arrays simple, efficient, and fun!xarray integrates with Dask to support parallel computations and streaming computation on datasetsthat don’t fit into memory.To updatehttp://xarray.pydata.orgEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray/https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray2022.3.0xarray52655265000000000000000000000000000006201755876
xmlstarletxmlstarletTool to convert a xml file from one metadata standard to anotherTo updateConvert Formatsxmlstarletecologyhttps://github.com/galaxyecology/tools-ecology/tree/main/tools-ecology/tools/xmlstarlethttps://github.com/galaxyecology/tools-ecology/tree/master/tools/xmlstarlet1.6.1xmlstarlet0011001100000000000000000000000000000100414
xporexpore_dataprep, xpore_diffmodIdentification and quantification of differential RNA modifications from direct RNA sequencingTo updatehttps://github.com/GoekeLab/xporeNanoporexporeartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/xporehttps://github.com/ARTbio/tools-artbio/tree/main/tools/xpore2.1+galaxy0xpore2.1000000000000000000000000000000000000000000
xtbxtb_molecular_optimizationPerforms semiempirical molecular optimization.To updatehttps://github.com/grimme-lab/xtbMetabolomicsxtb_molecular_optimizationrecetoxhttps://github.com/RECETOX/galaxytools/tree/master/tools/xtbhttps://github.com/RECETOX/galaxytools/tree/master/tools/xtb6.6.1xtb011101110000000000000000000000000000000000
yac_clipperyacClips 3' adapters for small RNA sequencing reads.To updatehttp://artbio.frRNA, Fastq Manipulationyac_clipperartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/yac_clipperhttps://github.com/ARTbio/tools-artbio/tree/main/tools/yac_clipper2.5.1python000000000000000000000110000001000000000000
zeiss_lmd_converterZeissLMDconverterConverts coordinates from a tabular file into a formatted text file readable by Zeiss laser-capture microdissection systemsTo updatehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converterProteomicsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converterhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter2.0.4shapely001000100000000000000000000000000000000000
zoo_project_ogc_api_processeszoo_project_ogc_api_processesThis tool is a wrapper for OGC API Processes (OTB) coming from the Zoo Project (https://zoo-project.github.io/docs/intro.html) and was created using the OGC-API-Process2Galaxy tool (https://github.com/AquaINFRA/OGC-API-Process2Galaxy). Check the README in the repository for more information.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapperhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/zoo_project_ogc_api_processes0.1.0r-base001000100000000000000000000000000000000000
+ +
\ No newline at end of file diff --git a/communities/all/resources/tools.json b/communities/all/resources/tools.json new file mode 100644 index 00000000..733dcf0f --- /dev/null +++ b/communities/all/resources/tools.json @@ -0,0 +1,111394 @@ +[ + { + "Galaxy wrapper id": "askor", + "Galaxy tool ids": [ + "askor_de" + ], + "Description": "AskoR links EdgeR and AskOmics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/askomics/askoR", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "askor_de", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/askor", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/askor", + "Galaxy wrapper version": "0.2", + "Conda id": "bioconductor-limma", + "Conda version": "3.58.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "baric_archive", + "Galaxy tool ids": [ + "baric_archive_rennes", + "baric_archive_toulouse" + ], + "Description": "A data source tool to fetch data from a BARIC Archive server.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.cesgo.org/catibaric/", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/baric_archive", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/baric_archive", + "Galaxy wrapper version": "1.1.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "braker", + "Galaxy tool ids": [ + "braker" + ], + "Description": "BRAKER is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes .", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/Gaius-Augustus/BRAKER", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "braker", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/braker", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/braker", + "Galaxy wrapper version": "2.1.6", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17, + "Total tool usage (usegalaxy.eu)": 109 + }, + { + "Galaxy wrapper id": "braker3", + "Galaxy tool ids": [ + "braker3" + ], + "Description": "BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes .", + "bio.tool id": "braker3", + "bio.tool ids": [ + "braker3" + ], + "biii": null, + "bio.tool name": "BRAKER3", + "bio.tool description": "BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes", + "EDAM operation": [ + "Genome annotation", + "Gene prediction" + ], + "EDAM topic": [ + "RNA-Seq", + "Genomics", + "Structure prediction", + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://github.com/Gaius-Augustus/BRAKER", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "braker3", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/braker", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/braker3", + "Galaxy wrapper version": "3.0.8", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Genome annotation", + "Gene prediction" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq", + "Genomics", + "Structure prediction", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 567 + }, + { + "Galaxy wrapper id": "feelnc2asko", + "Galaxy tool ids": [ + "feelnc2asko" + ], + "Description": "Convert FeelNC GTF to GFF3", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/tderrien/FEELnc", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "feelnc2asko", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/feelnc2asko", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/feelnc2asko", + "Galaxy wrapper version": "0.1", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gcms2isocor", + "Galaxy tool ids": [ + "gcms2isocor" + ], + "Description": "Conversion from GCMS PostRun Analysis to Isocor", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "gcms2isocor", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/gcms2isocor", + "Galaxy wrapper version": "0.1.0", + "Conda id": "openjdk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "get_pairs", + "Galaxy tool ids": [ + "get_pairs" + ], + "Description": "Separate paired and unpaired reads from two fastq files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "get_pairs", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs", + "Galaxy wrapper version": "0.3", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "helixer", + "Galaxy tool ids": [ + "helixer" + ], + "Description": "Gene calling with Deep Neural Networks", + "bio.tool id": "helixer", + "bio.tool ids": [ + "helixer" + ], + "biii": null, + "bio.tool name": "Helixer", + "bio.tool description": "Deep Learning to predict gene annotations", + "EDAM operation": [ + "Gene prediction", + "Genome annotation" + ], + "EDAM topic": [ + "Sequence analysis", + "Gene transcripts" + ], + "Status": "To update", + "Source": "https://github.com/weberlab-hhu/Helixer", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "helixer", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/helixer", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/helixer", + "Galaxy wrapper version": "0.3.3", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Gene prediction", + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Gene transcripts" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 93 + }, + { + "Galaxy wrapper id": "logol", + "Galaxy tool ids": [ + "logol_wrapper" + ], + "Description": "Logol is a pattern matching grammar language and a set of tools to search a pattern in a sequence", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://logol.genouest.org/web/app.php/logol", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/logol", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/logol", + "Galaxy wrapper version": "1.7.8", + "Conda id": "logol", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "meneco", + "Galaxy tool ids": [ + "meneco" + ], + "Description": "Meneco computes minimal completions to your draft network with reactions from a repair network", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://bioasp.github.io/meneco/", + "ToolShed categories": [ + "Systems Biology" + ], + "ToolShed id": "meneco", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/meneco", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/meneco", + "Galaxy wrapper version": "1.5.2", + "Conda id": "meneco", + "Conda version": "1.5.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "miranda2asko", + "Galaxy tool ids": [ + "miranda2asko" + ], + "Description": "Converts miRanda output into AskOmics format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "miranda2asko", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/miranda2asko", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/miranda2asko", + "Galaxy wrapper version": "0.2", + "Conda id": "perl", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "openlabcds2csv", + "Galaxy tool ids": [ + "openlabcds2csv" + ], + "Description": "Creates a summary of several \"Internal Standard Report\" OpenLabCDS results.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "openlabcds2csv", + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/openlabcds2csv", + "Galaxy wrapper version": "0.1.0", + "Conda id": "openjdk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "peptimapper", + "Galaxy tool ids": [ + "peptimapper_clustqualify", + "peptimapper_clust_to_gff", + "peptimapper_pep_match", + "peptimapper_pep_novo_tag" + ], + "Description": "Proteogenomics workflow for the expert annotation of eukaryotic genomes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-019-5431-9", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "genouest", + "Galaxy wrapper source": "https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper", + "Galaxy wrapper parsed folder": "https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper", + "Galaxy wrapper version": "2.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "Ensembl-REST", + "Galaxy tool ids": [ + "get_feature_info", + "get_genetree", + "get_sequences" + ], + "Description": "A suite of Galaxy tools designed to work with Ensembl REST API.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://rest.ensembl.org", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/Ensembl-REST", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/Ensembl-REST", + "Galaxy wrapper version": "0.1.2", + "Conda id": "requests", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 47, + "Total tool usage (usegalaxy.eu)": 2889 + }, + { + "Galaxy wrapper id": "GAFA", + "Galaxy tool ids": [ + "gafa" + ], + "Description": "Gene Align and Family Aggregator", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://aequatus.tgac.ac.uk", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "gafa", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA/", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA", + "Galaxy wrapper version": "0.3.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 45 + }, + { + "Galaxy wrapper id": "TreeBest", + "Galaxy tool ids": [ + "treebest_best" + ], + "Description": "TreeBeST best", + "bio.tool id": "treebest", + "bio.tool ids": [ + "treebest" + ], + "biii": null, + "bio.tool name": "TreeBeST", + "bio.tool description": "TreeBeST, which stands for (gene) Tree Building guided by Species Tree, is a versatile program that builds, manipulates and displays phylogenetic trees. It is particularly designed for building gene trees with a known species tree and is highly efficient and accurate.TreeBeST is previously known as NJTREE. It has been largely used in the TreeFam database, Ensembl Compara and OPTIC database of Chris Ponting group.", + "EDAM operation": [ + "Phylogenetic tree visualisation", + "Phylogenetic analysis", + "Phylogenetic inference (from molecular sequences)" + ], + "EDAM topic": [ + "Phylogenetics" + ], + "Status": "To update", + "Source": "http://treesoft.sourceforge.net/treebest.shtml", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "treebest_best", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest", + "Galaxy wrapper version": "1.9.2.post0", + "Conda id": "treebest", + "Conda version": "1.9.2.post1", + "EDAM operation (no superclasses)": [ + "Phylogenetic tree visualisation", + "Phylogenetic inference (from molecular sequences)" + ], + "EDAM topic (no superclasses)": [ + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 23, + "Total tool usage (usegalaxy.eu)": 984 + }, + { + "Galaxy wrapper id": "apoc", + "Galaxy tool ids": [ + "apoc" + ], + "Description": "Large-scale structural comparison of protein pockets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://cssb.biology.gatech.edu/APoc", + "ToolShed categories": [ + "Computational chemistry" + ], + "ToolShed id": "apoc", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/apoc/", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/apoc", + "Galaxy wrapper version": "1.0+galaxy1", + "Conda id": "apoc", + "Conda version": "1b16", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 3 + }, + { + "Galaxy wrapper id": "blast_parser", + "Galaxy tool ids": [ + "blast_parser" + ], + "Description": "Convert 12- or 24-column BLAST output into 3-column hcluster_sg input", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/TGAC/earlham-galaxytools/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "blast_parser", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parser", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parser", + "Galaxy wrapper version": "0.1.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 27, + "Total tool usage (usegalaxy.eu)": 296 + }, + { + "Galaxy wrapper id": "ete", + "Galaxy tool ids": [ + "ete_gene_csv_finder", + "ete_genetree_splitter", + "ete_homology_classifier", + "ete_init_taxdb", + "ete_lineage_generator", + "ete3_mod", + "ete_species_tree_generator" + ], + "Description": "Analyse phylogenetic trees using the ETE Toolkit", + "bio.tool id": "ete", + "bio.tool ids": [ + "ete" + ], + "biii": null, + "bio.tool name": "ete", + "bio.tool description": "The Environment for Tree Exploration (ETE) is a computational framework that simplifies the reconstruction, analysis, and visualization of phylogenetic trees and multiple sequence alignments. Here, we present ETE v3, featuring numerous improvements in the underlying library of methods, and providing a novel set of standalone tools to perform common tasks in comparative genomics and phylogenetics. The new features include (i) building gene-based and supermatrix-based phylogenies using a single command, (ii) testing and visualizing evolutionary models, (iii) calculating distances between trees of different size or including duplications, and (iv) providing seamless integration with the NCBI taxonomy database. ETE is freely available at http://etetoolkit.org", + "EDAM operation": [ + "Phylogenetic analysis", + "Phylogenetic tree editing" + ], + "EDAM topic": [ + "Phylogenetics" + ], + "Status": "To update", + "Source": "http://etetoolkit.org/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "ete", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete", + "Galaxy wrapper version": "3.1.2", + "Conda id": "ete3", + "Conda version": "3.1.1", + "EDAM operation (no superclasses)": [ + "Phylogenetic tree editing" + ], + "EDAM topic (no superclasses)": [ + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 7, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 7, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 7, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 45, + "Total tool usage (usegalaxy.eu)": 899 + }, + { + "Galaxy wrapper id": "export_to_cluster", + "Galaxy tool ids": [ + "export_to_cluster" + ], + "Description": "Export datasets to cluster", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/TGAC/earlham-galaxytools/", + "ToolShed categories": [ + "Data Export" + ], + "ToolShed id": "export_to_cluster", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/export_to_cluster/", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/export_to_cluster", + "Galaxy wrapper version": "0.0.2", + "Conda id": "EXPORT_DIR_PREFIX", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gblocks", + "Galaxy tool ids": [ + "gblocks" + ], + "Description": "Gblocks", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://molevol.cmima.csic.es/castresana/Gblocks.html", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "gblocks", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblocks", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblocks", + "Galaxy wrapper version": "0.91b", + "Conda id": "gblocks", + "Conda version": "0.91b", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gstf_preparation", + "Galaxy tool ids": [ + "gstf_preparation" + ], + "Description": "GeneSeqToFamily preparation converts data for the workflow", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/TGAC/earlham-galaxytools/", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "gstf_preparation", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gstf_preparation", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gstf_preparation", + "Galaxy wrapper version": "0.4.3", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 397 + }, + { + "Galaxy wrapper id": "hcluster_sg", + "Galaxy tool ids": [ + "hcluster_sg" + ], + "Description": "Hierarchically clustering on a sparse graph", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/douglasgscofield/hcluster", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "hcluster_sg", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg", + "Galaxy wrapper version": "0.5.1.1", + "Conda id": "hcluster_sg", + "Conda version": "0.5.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 238 + }, + { + "Galaxy wrapper id": "hcluster_sg_parser", + "Galaxy tool ids": [ + "hcluster_sg_parser" + ], + "Description": "Converts hcluster_sg 3-column output into lists of ids", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/TGAC/earlham-galaxytools/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "hcluster_sg_parser", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg_parser", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg_parser", + "Galaxy wrapper version": "0.2.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 290 + }, + { + "Galaxy wrapper id": "lotus2", + "Galaxy tool ids": [ + "lotus2" + ], + "Description": "LotuS2 OTU processing pipeline", + "bio.tool id": "lotus2", + "bio.tool ids": [ + "lotus2" + ], + "biii": null, + "bio.tool name": "lotus2", + "bio.tool description": "LotuS2 is a lightweight and user-friendly pipeline that is fast, precise, and streamlined, using extensive pre- and post-ASV/OTU clustering steps to further increase data quality. High data usage rates and reliability enable high-throughput microbiome analysis in minutes.", + "EDAM operation": [ + "Sequence feature detection", + "DNA barcoding" + ], + "EDAM topic": [ + "Metagenomics", + "Taxonomy", + "Microbial ecology" + ], + "Status": "To update", + "Source": "http://lotus2.earlham.ac.uk/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "lotus2", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2", + "Galaxy wrapper version": "2.32", + "Conda id": "lotus2", + "Conda version": "2.34.1", + "EDAM operation (no superclasses)": [ + "Sequence feature detection", + "DNA barcoding" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Taxonomy", + "Microbial ecology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 114, + "Total tool usage (usegalaxy.eu)": 936 + }, + { + "Galaxy wrapper id": "miranda", + "Galaxy tool ids": [ + "miranda" + ], + "Description": "Finds potential target sites for miRNAs in genomic sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.microrna.org/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "miranda", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/miranda", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/miranda", + "Galaxy wrapper version": "3.3a+galaxy1", + "Conda id": "miranda", + "Conda version": "3.3a", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 41, + "Total tool usage (usegalaxy.eu)": 6076 + }, + { + "Galaxy wrapper id": "plotheatmap", + "Galaxy tool ids": [ + "plotheatmap" + ], + "Description": "This tool can be used to plot heatmap of gene expression data. The genes are chosen based on p-value, FDR, log FC and log CPM from edgeR output.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Computational chemistry" + ], + "ToolShed id": "plotheatmap", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/plotheatmap", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/plotheatmap", + "Galaxy wrapper version": "1.0", + "Conda id": "bioconductor-preprocesscore", + "Conda version": "1.64.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rdock", + "Galaxy tool ids": [ + "rdock" + ], + "Description": "Docking ligands to proteins and nucleic acids", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://rdock.sourceforge.net/", + "ToolShed categories": [ + "Computational chemistry" + ], + "ToolShed id": "rdock", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rdock/", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rdock", + "Galaxy wrapper version": "1.0", + "Conda id": "rDock", + "Conda version": "2013.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "replace_chromosome_names", + "Galaxy tool ids": [ + "replace_chromosome_names" + ], + "Description": "Replace chromosome names", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "replace_chromosome_names", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/replace_chromosome_names/", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/replace_chromosome_names", + "Galaxy wrapper version": "0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 20, + "Total tool usage (usegalaxy.eu)": 537 + }, + { + "Galaxy wrapper id": "rsat_filter_snps", + "Galaxy tool ids": [ + "rsat_filter_snps" + ], + "Description": "Filter SNPs in RSAT Matrix Scan output", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/TGAC/earlham-galaxytools/", + "ToolShed categories": [ + "ChIP-seq", + "Systems Biology" + ], + "ToolShed id": "rsat_filter_snps", + "Galaxy wrapper owner": "earlham", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rsat_filter_snps", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rsat_filter_snps", + "Galaxy wrapper version": "0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "smart_domains", + "Galaxy tool ids": [ + "smart_domains" + ], + "Description": "SMART domains", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://smart.embl.de/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "smart_domains", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domains", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domains", + "Galaxy wrapper version": "0.1.0", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "smina", + "Galaxy tool ids": [ + "smina" + ], + "Description": "smina is a fork of Autodock Vina (http://vina.scripps.edu/) that focuses on improving scoring and minimization", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://sourceforge.net/projects/smina/", + "ToolShed categories": [ + "Computational chemistry" + ], + "ToolShed id": "smina", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smina/", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smina", + "Galaxy wrapper version": "1.0", + "Conda id": "smina", + "Conda version": "2017.11.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 493 + }, + { + "Galaxy wrapper id": "t_coffee", + "Galaxy tool ids": [ + "t_coffee" + ], + "Description": "T-Coffee", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.tcoffee.org/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "t_coffee", + "Galaxy wrapper owner": "earlhaminst", + "Galaxy wrapper source": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee", + "Galaxy wrapper parsed folder": "https://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee", + "Galaxy wrapper version": "13.45.0.4846264", + "Conda id": "t-coffee", + "Conda version": "13.46.0.919e8c6b", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 70, + "Total tool usage (usegalaxy.eu)": 8690 + }, + { + "Galaxy wrapper id": "abacas", + "Galaxy tool ids": [ + "abacas" + ], + "Description": "Order and Orientate Contigs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/abacas", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "abacas", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/abacas", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas", + "Galaxy wrapper version": "1.1", + "Conda id": "mummer", + "Conda version": "3.23", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "assemblystats", + "Galaxy tool ids": [ + "assemblystats" + ], + "Description": "Summarise an assembly (e.g. N50 metrics)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "assemblystats", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats", + "Galaxy wrapper version": "1.1.0", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bam2mappingstats", + "Galaxy tool ids": [ + "bam2mappingstats" + ], + "Description": "Generates mapping stats from a bam file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "bam2mappingstats", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats", + "Galaxy wrapper version": "1.1.0", + "Conda id": "perl", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bamclipper", + "Galaxy tool ids": [ + "bamclipper" + ], + "Description": "Soft-clip gene-specific primers from BAM alignment file based on genomic coordinates of primer pairs in BEDPE format.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/tommyau/bamclipper", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bamclipper", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/tommyau/bamclipper", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/bamclipper", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bamclipper", + "Conda version": "1.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "biohansel", + "Galaxy tool ids": [ + "biohansel" + ], + "Description": "Heidelberg and Enteritidis SNP Elucidation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/biohansel", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "biohansel", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/biohansel", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel", + "Galaxy wrapper version": "2.4.0", + "Conda id": "bio_hansel", + "Conda version": "2.6.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "biohansel_bionumeric_converter", + "Galaxy tool ids": [ + "bionumeric_convert" + ], + "Description": "Convert BioHansel output data to a Bionumerics friendly form", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "biohansel_bionumeric_converter", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel_bionumeric_converter", + "Galaxy wrapper version": "0.2.0", + "Conda id": "pandas", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bundle_collections", + "Galaxy tool ids": [ + "bundle_collection" + ], + "Description": "Tool to bundle up list collection into a single zip to be download", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bundle_collections", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/bundle_collections", + "Galaxy wrapper version": "1.3.0", + "Conda id": "perl-getopt-long", + "Conda version": "2.58", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "collapse_collection", + "Galaxy tool ids": [ + "collapse_dataset" + ], + "Description": "Collection tool that collapses a list of files into a single datasset in order of appears in collection", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "collapse_collections", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/collapse_collection", + "Galaxy wrapper version": "5.1.0", + "Conda id": "gawk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1583, + "Total tool usage (usegalaxy.eu)": 33934 + }, + { + "Galaxy wrapper id": "combineJSON", + "Galaxy tool ids": [ + "combine_json" + ], + "Description": "JSON collection tool that takes multiple JSON data arrays and combines them into a single JSON array.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "combine_json", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/combineJSON", + "Galaxy wrapper version": "0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "combine_assembly_stats", + "Galaxy tool ids": [ + "combine_stats" + ], + "Description": "Combine multiple Assemblystats datasets into a single tabular report", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "combine_assemblystats", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats", + "Galaxy wrapper version": "1.0", + "Conda id": "perl-getopt-long", + "Conda version": "2.58", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "combine_tabular_collection", + "Galaxy tool ids": [ + "combine" + ], + "Description": "Combine Tabular Collection into a single file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "combine_tabular_collection", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_tabular_collection", + "Galaxy wrapper version": "0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "concat_paired", + "Galaxy tool ids": [ + "concat_fastqs" + ], + "Description": "Concatenate paired datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/concat", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "concat_paired", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/concat", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/concat_paired", + "Galaxy wrapper version": "0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cryptogenotyper", + "Galaxy tool ids": [ + "CryptoGenotyper" + ], + "Description": "CryptoGenotyper is a standalone tool to *in-silico* determine species and subtype based on SSU rRNA and gp60 markers.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/phac-nml/CryptoGenotyper", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "cryptogenotyper", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/CryptoGenotyper", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/cryptogenotyper", + "Galaxy wrapper version": "1.0", + "Conda id": "cryptogenotyper", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 8518 + }, + { + "Galaxy wrapper id": "csvtk", + "Galaxy tool ids": [ + "csvtk_awklike_filter", + "csvtk_awklike_mutate", + "csvtk_collapse", + "csvtk_concat", + "csvtk_convert", + "csvtk_correlation", + "csvtk_cut", + "csvtk_filter", + "csvtk_freq", + "csvtk_gather", + "csvtk_join", + "csvtk_mutate", + "csvtk_plot", + "csvtk_replace", + "csvtk_sample", + "csvtk_separate", + "csvtk_sort", + "csvtk_split", + "csvtk_summary", + "csvtk_uniq" + ], + "Description": "Rapid data investigation and manipulation of csv/tsv files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bioinf.shenwei.me/csvtk/", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "csvtk", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/shenwei356/csvtk", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/csvtk", + "Galaxy wrapper version": "0.20.0", + "Conda id": "csvtk", + "Conda version": "0.30.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 20, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ectyper", + "Galaxy tool ids": [ + "ectyper" + ], + "Description": "EC-Typer - in silico serotyping of Escherichia coli species", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/phac-nml/ecoli_serotyping", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ectyper", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/ecoli_serotyping", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/ectyper", + "Galaxy wrapper version": "1.0.0", + "Conda id": "ectyper", + "Conda version": "1.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 53, + "Total tool usage (usegalaxy.eu)": 9907 + }, + { + "Galaxy wrapper id": "fasta2bed", + "Galaxy tool ids": [ + "fasta2bed" + ], + "Description": "Convert multiple fasta file into tabular bed file format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fasta2bed", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/fasta2bed", + "Galaxy wrapper version": "1.0.0", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fasta_extract", + "Galaxy tool ids": [ + "fa-extract-sequence" + ], + "Description": "extract single fasta from multiple fasta file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://toolshed.g2.bx.psu.edu/view/nml/fasta_extract", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fasta_extract", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://toolshed.g2.bx.psu.edu/view/nml/fasta_extract", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/fasta_extract", + "Galaxy wrapper version": "1.1.0", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 10 + }, + { + "Galaxy wrapper id": "fastqc_stats", + "Galaxy tool ids": [ + "FastQC_Summary" + ], + "Description": "Summary multiple FastQC into a single tabular line report", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fastqc_stats", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/fastqc_stats", + "Galaxy wrapper version": "1.2", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "feht", + "Galaxy tool ids": [ + "feht" + ], + "Description": "Automatically identify makers predictive of groups.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "feht", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/feht", + "Galaxy wrapper version": "0.1.0", + "Conda id": "feht", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "filter_spades_repeats", + "Galaxy tool ids": [ + "filter_spades_repeat" + ], + "Description": "Remove short and repeat contigs/scaffolds", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "filter_spades_repeats", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools/", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats", + "Galaxy wrapper version": "1.0.1", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "getmlst", + "Galaxy tool ids": [ + "getmlst" + ], + "Description": "Download MLST datasets by species from pubmlst.org", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "getmlst", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/getmlst", + "Galaxy wrapper version": "0.1.4.1", + "Conda id": "srst2", + "Conda version": "0.2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gnali", + "Galaxy tool ids": [ + "gnali" + ], + "Description": "A tool to find nonessential, loss-of-function gene variants", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/phac-nml/gnali/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "gnali", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/gnali/", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/gnali", + "Galaxy wrapper version": "1.1.0", + "Conda id": "gnali", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hivtrace", + "Galaxy tool ids": [ + "hivtrace" + ], + "Description": "An application that identifies potential transmission clusters within a supplied FASTA file with an option to find potential links against the Los Alamos HIV Sequence Database.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "hivtrace", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools/tree/tools/hivtrace", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/hivtrace", + "Galaxy wrapper version": "1.0.1", + "Conda id": "hivtrace", + "Conda version": "1.5.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "kaptive", + "Galaxy tool ids": [ + "kaptive" + ], + "Description": "Kaptive reports information about capsular (K) loci found in genome assemblies.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "kaptive", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/kaptive", + "Galaxy wrapper version": "0.3.0", + "Conda id": "kaptive", + "Conda version": "3.0.0b5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "kat_filter", + "Galaxy tool ids": [ + "kat_@EXECUTABLE@" + ], + "Description": "Filtering kmers or reads from a database of kmers hashes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "kat_filter", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_filter", + "Galaxy wrapper version": "2.3", + "Conda id": "kat", + "Conda version": "2.4.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "kat_sect", + "Galaxy tool ids": [ + "kat_@EXECUTABLE@" + ], + "Description": "SEquence Coverage estimator Tool. Estimates the coverage of each sequence in a file using K-mers from another sequence file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "kat_sect", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_sect", + "Galaxy wrapper version": "2.3", + "Conda id": "kat", + "Conda version": "2.4.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mauve_contig_mover", + "Galaxy tool ids": [ + "mauve_contig_mover" + ], + "Description": "Order a draft genome relative to a related reference genome", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/mauve_contig_mover", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mauve_contig_mover", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/mauve_contig_mover", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/mauve_contig_mover", + "Galaxy wrapper version": "1.0.10", + "Conda id": "mauve", + "Conda version": "2.4.0.r4736", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mob_suite", + "Galaxy tool ids": [ + "mob_recon", + "mob_typer" + ], + "Description": "MOB-suite is a set of software tools for clustering, reconstruction and typing of plasmids from draft assemblies", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/mob-suite", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mob_suite", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/mob-suite", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob_suite", + "Galaxy wrapper version": "3.0.3", + "Conda id": "mob_suite", + "Conda version": "3.1.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 322, + "Total tool usage (usegalaxy.eu)": 89021 + }, + { + "Galaxy wrapper id": "mrbayes", + "Galaxy tool ids": [ + "mrbayes" + ], + "Description": "A program for the Bayesian estimation of phylogeny.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mrbayes", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/mrbayes", + "Galaxy wrapper version": "1.0.2", + "Conda id": "mrbayes", + "Conda version": "3.2.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mykrobe_parser", + "Galaxy tool ids": [ + "mykrobe_parseR" + ], + "Description": "RScript to parse the results of mykrobe predictor.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/mykrobe-parser", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mykrobe_parser", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/mykrobe-parser", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/mykrobe_parser", + "Galaxy wrapper version": "0.1.4.1", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pangolin", + "Galaxy tool ids": [ + "pangolin" + ], + "Description": "Phylogenetic Assignment of Named Global Outbreak LINeages", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/hCoV-2019/pangolin", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "pangolin", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/hCoV-2019/pangolin", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/pangolin", + "Galaxy wrapper version": "1.1.14", + "Conda id": "pangolin", + "Conda version": "4.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 259, + "Total tool usage (usegalaxy.eu)": 7276 + }, + { + "Galaxy wrapper id": "patrist", + "Galaxy tool ids": [ + "patrist" + ], + "Description": "Extract Patristic Distance From a Tree", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://gist.github.com/ArtPoon/7330231e74201ded54b87142a1d6cd02", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "patrist", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/patrist", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/patrist", + "Galaxy wrapper version": "0.1.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "plasmid_profiler", + "Galaxy tool ids": [ + "plasmid_profiler" + ], + "Description": "Explores plasmid content in WGS data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "plasmid_profiler", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmid_profiler", + "Galaxy wrapper version": "0.1.6", + "Conda id": "r", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "plasmid_profiler_suite", + "Galaxy tool ids": [], + "Description": "Plasmid Profiler suite defining all dependencies for Plasmid Profiler", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "suite_plasmid_profiler", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmid_profiler_suite", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "plasmidspades", + "Galaxy tool ids": [ + "plasmidspades" + ], + "Description": "Genome assembler for assemblying plasmid", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "plasmidspades", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades", + "Galaxy wrapper version": "1.1", + "Conda id": "spades", + "Conda version": "4.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pneumocat", + "Galaxy tool ids": [ + "pneumocat" + ], + "Description": "Pneumococcal Capsular Typing of illumina fastq reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/phe-bioinformatics/PneumoCaT", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "pneumocat", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phe-bioinformatics/PneumoCaT", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/pneumocat", + "Galaxy wrapper version": "1.2.1", + "Conda id": "pneumocat", + "Conda version": "1.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "promer", + "Galaxy tool ids": [ + "promer4_substitutions" + ], + "Description": "Aligns two sets of contigs and reports amino acid substitutions between them", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/promer", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "promer", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/promer", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/promer", + "Galaxy wrapper version": "1.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pseudogenome", + "Galaxy tool ids": [ + "pseudogenome" + ], + "Description": "Create a pseudogenome from a multiple fasta file either with a JCVI linker or custom length and characters.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "pseudogenome", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/pseudogenome", + "Galaxy wrapper version": "1.0.0", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "quasitools", + "Galaxy tool ids": [ + "aacoverage", + "aavariants", + "callcodonvar", + "callntvar", + "complexity_bam", + "complexity_fasta", + "consensus", + "distance", + "dnds", + "drmutations", + "hydra", + "quality" + ], + "Description": "A collection of tools for analysing Viral Quasispecies", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/phac-nml/quasitools", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "quasitools", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/quasitools", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/quasitools", + "Galaxy wrapper version": "0.7.0", + "Conda id": "quasitools", + "Conda version": "0.7.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 12, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 12, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 12, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 12, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 12, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "refseq_masher", + "Galaxy tool ids": [ + "refseq_masher_contains", + "refseq_masher_matches" + ], + "Description": "Find what genomes match or are contained within your sequence data using Mash_ and a Mash sketch database.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/phac-nml/refseq_masher", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "refseq_masher", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/refseq_masher", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/refseq_masher", + "Galaxy wrapper version": "0.1.2", + "Conda id": "refseq_masher", + "Conda version": "0.1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "seqtk_nml", + "Galaxy tool ids": [ + "seqtk_nml_sample" + ], + "Description": "Tool to downsample fastq reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/lh3/seqtk", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "seqtk_nml", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/seqtk_nml", + "Galaxy wrapper version": "1.0.1", + "Conda id": "seqtk", + "Conda version": "1.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sistr_cmd", + "Galaxy tool ids": [ + "sistr_cmd" + ], + "Description": "SISTR in silico serotyping tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/sistr_cmd", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "sistr_cmd", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/sistr_cmd", + "Galaxy wrapper version": "1.1.1", + "Conda id": "sistr_cmd", + "Conda version": "1.1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 133, + "Total tool usage (usegalaxy.eu)": 2489 + }, + { + "Galaxy wrapper id": "smalt", + "Galaxy tool ids": [ + "smalt" + ], + "Description": "SMALT aligns DNA sequencing reads with a reference genome.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://www.sanger.ac.uk/science/tools/smalt-0", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "smalt", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://sourceforge.net/projects/smalt/", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/smalt", + "Galaxy wrapper version": "0.7.6", + "Conda id": "smalt", + "Conda version": "0.7.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "spades_header_fixer", + "Galaxy tool ids": [ + "spades_header_fixer" + ], + "Description": "Fixes Spades Fasta ids", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/galaxy_tools", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "spades_fasta_header_fixer", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/spades_header_fixer", + "Galaxy wrapper version": "1.1.2+galaxy1", + "Conda id": "sed", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "spatyper", + "Galaxy tool ids": [ + "spatyper" + ], + "Description": "Determines SPA type based on repeats in a submitted staphylococcal protein A fasta file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/HCGB-IGTP/spaTyper", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "spatyper", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/spatyper", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/spatyper", + "Galaxy wrapper version": "0.3.3", + "Conda id": "spatyper", + "Conda version": "0.3.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "spolpred", + "Galaxy tool ids": [ + "spolpred" + ], + "Description": "A program for predicting the spoligotype from raw sequence reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "spolpred", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/spolpred", + "Galaxy wrapper version": "1.0.1", + "Conda id": "spolpred", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "srst2", + "Galaxy tool ids": [ + "srst2" + ], + "Description": "Short Read Sequence Typing for Bacterial Pathogens", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "srst2", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/srst2", + "Galaxy wrapper version": "0.3.7", + "Conda id": "srst2", + "Conda version": "0.2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 22, + "Total tool usage (usegalaxy.eu)": 205 + }, + { + "Galaxy wrapper id": "staramr", + "Galaxy tool ids": [ + "staramr_search" + ], + "Description": "Scan genome contigs against the ResFinder, PlasmidFinder, and PointFinder antimicrobial resistance databases.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/phac-nml/staramr", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "staramr", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr", + "Galaxy wrapper version": "0.10.0", + "Conda id": "staramr", + "Conda version": "0.10.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 889, + "Total tool usage (usegalaxy.eu)": 12673 + }, + { + "Galaxy wrapper id": "stringmlst", + "Galaxy tool ids": [ + "stringmlst" + ], + "Description": "Rapid and accurate identification of the sequence type (ST)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "stringmlst", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/stringmlst", + "Galaxy wrapper version": "1.1.0", + "Conda id": "stringMLST", + "Conda version": "0.6.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "tree_relabeler", + "Galaxy tool ids": [ + "tree_relabel" + ], + "Description": "Relabels the tips of a newick formatted tree.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "tree_relabeler", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/galaxy_tools/blob/master/tools/tree_relabeler", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/tree_relabeler", + "Galaxy wrapper version": "1.1.0", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "wade", + "Galaxy tool ids": [ + "wade" + ], + "Description": "identify regions of interest", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/phac-nml/wade", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "wade", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/wade", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/galaxy_tools/tree/master/tools/wade", + "Galaxy wrapper version": "0.2.5+galaxy1", + "Conda id": "wade", + "Conda version": "0.2.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "camera", + "Galaxy tool ids": [ + "abims_CAMERA_annotateDiffreport", + "abims_CAMERA_combinexsAnnos" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "camera", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/camera", + "Galaxy wrapper version": "1.48.0", + "Conda id": "r-snow", + "Conda version": "0.4_1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 30, + "Total tool usage (usegalaxy.eu)": 623 + }, + { + "Galaxy wrapper id": "correlation_analysis", + "Galaxy tool ids": [ + "correlation_analysis" + ], + "Description": "[Metabolomics][W4M] Metabolites Correlation Analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://workflow4metabolomics.org", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "correlation_analysis", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/correlation_analysis/", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/correlation_analysis", + "Galaxy wrapper version": "1.0.1+galaxy0", + "Conda id": "r-batch", + "Conda version": "1.1_4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gcms2isocor", + "Galaxy tool ids": [ + "gcms2isocor" + ], + "Description": "Corrective method dedicated to Isocor for calculating carbon isotopologue distribution from GCMS runs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/p2m2/p2m2tools", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "gcms2isocor", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/gcms2isocor/", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/gcms2isocor", + "Galaxy wrapper version": "0.2.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "genform", + "Galaxy tool ids": [ + "genform" + ], + "Description": "genform: generation of molecular formulas by high-resolution MS and MS/MS data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://sourceforge.net/projects/genform/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "genform", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/genform/", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/genform", + "Galaxy wrapper version": null, + "Conda id": "genform", + "Conda version": "r8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 68 + }, + { + "Galaxy wrapper id": "influx_data_manager", + "Galaxy tool ids": [ + "influx_data_manager" + ], + "Description": "Handling influx_si data inputs in Galaxy workflows", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "influx_si_data_manager", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m/tree/main/tools/influx_data_manager", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/influx_data_manager", + "Galaxy wrapper version": "1.0.2", + "Conda id": "influx-si-data-manager", + "Conda version": "1.0.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "influx_si", + "Galaxy tool ids": [ + "influx_si" + ], + "Description": "metabolic flux estimation based on [in]stationary labeling", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/sgsokol/influx", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "influx_si", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/influx_si/", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/influx_si", + "Galaxy wrapper version": "7.0.1", + "Conda id": "influx_si", + "Conda version": "7.0.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ipo", + "Galaxy tool ids": [ + "ipo4retgroup", + "ipo4xcmsSet" + ], + "Description": "[W4M][LC-MS] IPO", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/rietho/IPO", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "ipo", + "Galaxy wrapper owner": "lecorguille", + "Galaxy wrapper source": "https://github.com/rietho/IPO", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/ipo", + "Galaxy wrapper version": "1.10.0", + "Conda id": "bioconductor-ipo", + "Conda version": "1.28.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "isoplot", + "Galaxy tool ids": [ + "isoplot" + ], + "Description": "Isoplot is a software for the visualisation of MS data from C13 labelling experiments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Metabolomics", + "Visualization" + ], + "ToolShed id": "isoplot", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/llegregam/Isoplot/tree/main", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/isoplot", + "Galaxy wrapper version": "1.3.0+galaxy1", + "Conda id": "isoplot", + "Conda version": "1.3.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 2 + }, + { + "Galaxy wrapper id": "kmd_hmdb_data_plot", + "Galaxy tool ids": [ + "kmd_hmdb_data_plot" + ], + "Description": "retrieves data from KMD HMDB API and produce plot and csv file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/workflow4metabolomics/tools-metabolomics", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "kmd_hmdb_data_plot", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/kmd_hmdb_data_plot/", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/kmd_hmdb_data_plot", + "Galaxy wrapper version": "1.0.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mixmodel4repeated_measures", + "Galaxy tool ids": [ + "mixmodel4repeated_measures" + ], + "Description": "[Metabolomics][W4M][Statistics] Mixed models - Analysis of variance for repeated measures using mixed model", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://workflow4metabolomics.org", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "mixmodel4repeated_measures", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/mixmodel4repeated_measures", + "Galaxy wrapper version": "3.1.0", + "Conda id": "r-lme4", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ms2snoop", + "Galaxy tool ids": [ + "ms2snoop" + ], + "Description": "[W4M][Utils] Extraction et nettoyage des spectre MS1/2 post-traitement MSPurity.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://workflow4metabolomics.org", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "ms2snoop", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/ms2snoop", + "Galaxy wrapper version": "2.2.1", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "nmr_annotation", + "Galaxy tool ids": [ + "NmrAnnotation" + ], + "Description": "[Metabolomics][W4M][NMR] NMR Annotation - Annotation of complex mixture NMR spectra and metabolite proportion estimation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://workflow4metabolomics.org", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "nmr_annotation", + "Galaxy wrapper owner": "marie-tremblay-metatoul", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/nmr_annotation", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_annotation", + "Galaxy wrapper version": "3.0.0", + "Conda id": "r-batch", + "Conda version": "1.1_4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 47 + }, + { + "Galaxy wrapper id": "nmr_annotation2d", + "Galaxy tool ids": [ + "2DNmrAnnotation" + ], + "Description": "[Metabolomics][W4M][NMR] NMR Annotation2D - Automatic annotation of bi-dimensional NMR spectra", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://workflow4metabolomics.org", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "2dnmrannotation", + "Galaxy wrapper owner": "marie-tremblay-metatoul", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_annotation2d", + "Galaxy wrapper version": "2.0.0", + "Conda id": "r-batch", + "Conda version": "1.1_4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "nmr_preprocessing", + "Galaxy tool ids": [ + "NMR_Preprocessing", + "NMR_Read" + ], + "Description": "[Metabolomics][W4M][NMR] NMR Preprocessing - Preprocessing of 1D NMR spectra from FID to baseline correction", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://workflow4metabolomics.org", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "nmr_preprocessing", + "Galaxy wrapper owner": "marie-tremblay-metatoul", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/nmr_preprocessing", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_preprocessing", + "Galaxy wrapper version": null, + "Conda id": "r-batch", + "Conda version": "1.1_4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 140 + }, + { + "Galaxy wrapper id": "normalization", + "Galaxy tool ids": [ + "normalization" + ], + "Description": "[Metabolomics][W4M][ALL] Normalization (operation applied on each individual spectrum) of preprocessed data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://workflow4metabolomics.org", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "normalization", + "Galaxy wrapper owner": "marie-tremblay-metatoul", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/normalization", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/normalization", + "Galaxy wrapper version": "1.0.7", + "Conda id": "r-batch", + "Conda version": "1.1_4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 133 + }, + { + "Galaxy wrapper id": "physiofit", + "Galaxy tool ids": [ + "physiofit" + ], + "Description": "PhysioFit is a scientific tool designed to quantify cell growth parameters and uptake & production fluxes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "physiofit.readthedocs.io", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "physiofit", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/MetaSys-LISBP/PhysioFit", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/physiofit", + "Galaxy wrapper version": "3.4.0", + "Conda id": "physiofit", + "Conda version": "3.4.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "physiofit_manager", + "Galaxy tool ids": [ + "physiofit_data_manager" + ], + "Description": "Handling of physiofit input files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "physiofit.readthedocs.io", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "physiofit_manager", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/MetaboHUB-MetaToul-FluxoMet/PhysioFit_Data_Manager", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/physiofit_manager", + "Galaxy wrapper version": "1.0.1", + "Conda id": "physiofit_data_manager", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "skyline2isocor", + "Galaxy tool ids": [ + "skyline2isocor" + ], + "Description": "Converting skyline output to IsoCor input", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/MetaboHUB-MetaToul-FluxoMet/Skyline2IsoCor", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "skyline2isocor", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/skyline2isocor", + "Galaxy wrapper version": "1.0.0", + "Conda id": "skyline2isocor", + "Conda version": "1.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "w4mconcatenate", + "Galaxy tool ids": [ + "W4Mconcatenate" + ], + "Description": "[W4M][Utils] concatenate two Metadata tables", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://workflow4metabolomics.org", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "w4mconcatenate", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/w4mconcatenate", + "Galaxy wrapper version": "1.0.0+galaxy0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "xcms", + "Galaxy tool ids": [ + "abims_xcms_fillPeaks", + "abims_xcms_group", + "abims_xcms_refine", + "abims_xcms_retcor", + "abims_xcms_summary", + "abims_xcms_xcmsSet", + "msnbase_readmsdata", + "xcms_export_samplemetadata", + "xcms_merge", + "xcms_plot_chromatogram", + "xcms_plot_eic", + "xcms_plot_raw" + ], + "Description": null, + "bio.tool id": "XCMS", + "bio.tool ids": [ + "XCMS" + ], + "biii": null, + "bio.tool name": "xcms", + "bio.tool description": "Framework for processing and visualization of chromatographically separated and single-spectra mass spectral data. The packages enables imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files and preprocesses data for high-throughput, untargeted analyte profiling.", + "EDAM operation": [ + "Mass spectrum visualisation", + "Label-free quantification", + "Validation", + "Filtering", + "Chromatographic alignment", + "Peak detection", + "Chromatogram visualisation" + ], + "EDAM topic": [ + "Biological imaging", + "Data visualisation", + "Metabolomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/sneumann/xcms", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "xcms", + "Galaxy wrapper owner": "workflow4metabolomics", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics/", + "Galaxy wrapper parsed folder": "https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/xcms", + "Galaxy wrapper version": "4.0.0", + "Conda id": "bioconductor-xcms", + "Conda version": "4.0.0", + "EDAM operation (no superclasses)": [ + "Mass spectrum visualisation", + "Label-free quantification", + "Validation", + "Filtering", + "Chromatographic alignment", + "Peak detection", + "Chromatogram visualisation" + ], + "EDAM topic (no superclasses)": [ + "Data visualisation", + "Metabolomics" + ], + "Available on UseGalaxy.org (Main)": 9, + "Available on UseGalaxy.org.au": 11, + "Available on UseGalaxy.eu": 10, + "Available on UseGalaxy.fr": 10, + "Tools available on UseGalaxy.org (Main)": 9, + "Tools available on UseGalaxy.org.au": 11, + "Tools available on UseGalaxy.eu": 10, + "Tools available on UseGalaxy.fr": 10, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 10, + "Tools available on UseGalaxy.no": 9, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 356, + "Total tool usage (usegalaxy.eu)": 29809 + }, + { + "Galaxy wrapper id": "cfm", + "Galaxy tool ids": [ + "cfmid" + ], + "Description": "Competitive Fragmentation Modeling (CFM)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://sourceforge.net/p/cfm-id/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "cfmid", + "Galaxy wrapper owner": "computational-metabolomics", + "Galaxy wrapper source": "https://github.com/computational-metabolomics/cfm-galaxy/tree/master/tools/cfm", + "Galaxy wrapper parsed folder": "https://github.com/computational-metabolomics/cfm-galaxy/tree/master/tools/cfm", + "Galaxy wrapper version": "33", + "Conda id": "cfm", + "Conda version": "33", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "metfrag-vis", + "Galaxy tool ids": [ + "metfrag_vis" + ], + "Description": "[Metabolomics][LC-MS][MS/MS] This tool summarises the results generated by MetFrag", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/computational-metabolomics/metfrag-galaxy", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "computational-metabolomics", + "Galaxy wrapper source": "https://github.com/computational-metabolomics/metfrag-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/computational-metabolomics/metfrag-galaxy/tree/master/tools/metfrag-vis", + "Galaxy wrapper version": "2.4.5+galaxy0", + "Conda id": "metfrag", + "Conda version": "2.4.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 12 + }, + { + "Galaxy wrapper id": "metfrag", + "Galaxy tool ids": [ + "metfrag" + ], + "Description": "[Metabolomics][LC-MS][MS/MS] MetFrag - Perform metfrag analysis (can work with the output from msPurity)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/computational-metabolomics/metfrag-galaxy", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "computational-metabolomics", + "Galaxy wrapper source": "https://github.com/computational-metabolomics/metfrag-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/computational-metabolomics/metfrag-galaxy/tree/master/tools/metfrag", + "Galaxy wrapper version": "2.4.5+galaxy3", + "Conda id": "metfrag", + "Conda version": "2.4.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 153 + }, + { + "Galaxy wrapper id": "msPurity", + "Galaxy tool ids": [ + "mspurity_averagefragspectra", + "mspurity_combineannotations", + "mspurity_createdatabase", + "mspurity_createmsp", + "mspurity_dimspredictpuritysingle", + "mspurity_filterfragspectra", + "mspurity_flagremove", + "mspurity_frag4feature", + "mspurity_puritya", + "mspurity_purityx", + "mspurity_spectralmatching" + ], + "Description": "[Metabolomics][LC-MS][DIMS][MS/MS] msPurity - R package for precursor ion purity assessments, data processing and spectral matching for LC-MS(/MS) and DI-MS(/MS) data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/computational-metabolomics/mspurity-galaxy", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "computational-metabolomics", + "Galaxy wrapper source": "https://github.com/computational-metabolomics/mspurity-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/computational-metabolomics/mspurity-galaxy/tree/master/tools/msPurity", + "Galaxy wrapper version": "1.28.0", + "Conda id": "bioconductor-mspurity", + "Conda version": "1.28.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 10, + "Available on UseGalaxy.fr": 11, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 10, + "Tools available on UseGalaxy.fr": 11, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 10, + "Tools available on UseGalaxy.no": 10, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 40, + "Total tool usage (usegalaxy.eu)": 709 + }, + { + "Galaxy wrapper id": "msp_split", + "Galaxy tool ids": [ + "msp_split" + ], + "Description": "[Metabolomics][LC-MS][DIMS][MS/MS] msPurity - R package for precursor ion purity assessments, data processing and spectral matching for LC-MS(/MS) and DI-MS(/MS) data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/computational-metabolomics/mspurity-galaxy", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "tomnl", + "Galaxy wrapper source": "https://github.com/computational-metabolomics/mspurity-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/computational-metabolomics/mspurity-galaxy/tree/master/tools/utils/msp_split", + "Galaxy wrapper version": "0.0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "apollo", + "Galaxy tool ids": [ + "create_account", + "feat_from_gff3", + "create_or_update", + "delete_features", + "delete_organism", + "export", + "fetch_jbrowse", + "iframe", + "list_organism" + ], + "Description": "Access an Apollo instance from Galaxy", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxy-genome-annotation/python-apollo", + "ToolShed categories": [ + "Web Services" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "gga", + "Galaxy wrapper source": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo", + "Galaxy wrapper parsed folder": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo", + "Galaxy wrapper version": null, + "Conda id": "apollo", + "Conda version": "4.2.13", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 9, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 9, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 8, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 9, + "Tools available on UseGalaxy.no": 9, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 301, + "Total tool usage (usegalaxy.eu)": 1896 + }, + { + "Galaxy wrapper id": "askomics", + "Galaxy tool ids": [ + "askomics_integrate" + ], + "Description": "Galaxy tools allowing to interact with a remote AskOmics server.AskOmics is a visual SPARQL query builder for RDF database.https://github.com/askomics/", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/askomics/", + "ToolShed categories": [ + "Web Services" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "gga", + "Galaxy wrapper source": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/askomics", + "Galaxy wrapper parsed folder": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/askomics", + "Galaxy wrapper version": null, + "Conda id": "askocli", + "Conda version": "0.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "chado", + "Galaxy tool ids": [ + "analysis_add_analysis", + "analysis_delete_analyses", + "analysis_get_analyses", + "export_export_fasta", + "export_export_gbk", + "export_export_gff3", + "expression_add_biomaterial", + "expression_add_expression", + "expression_delete_all_biomaterials", + "expression_delete_biomaterials", + "expression_get_biomaterials", + "feature_delete_features", + "feature_get_features", + "feature_load_fasta", + "feature_load_featureprops", + "feature_load_gff", + "feature_load_go", + "load_blast", + "load_interpro", + "organism_add_organism", + "organism_delete_all_organisms", + "organism_delete_organisms", + "organism_get_organisms", + "phylogeny_gene_families", + "phylogeny_gene_order", + "phylogeny_load_tree" + ], + "Description": "Galaxy tools allowing to load data into a remote Chado database.Chado is a member of the GMOD family of tools.https://github.com/galaxy-genome-annotation/python-chado", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxy-genome-annotation/python-chado", + "ToolShed categories": [ + "Web Services" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "gga", + "Galaxy wrapper source": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado", + "Galaxy wrapper parsed folder": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado", + "Galaxy wrapper version": null, + "Conda id": "python-chado", + "Conda version": "2.3.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "genenotebook", + "Galaxy tool ids": [ + "genenotebook_build" + ], + "Description": "Galaxy tools allowing to load data into a GeneNoteBook database.https://genenotebook.github.io", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://genenotebook.github.io", + "ToolShed categories": [ + "Web Services" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "gga", + "Galaxy wrapper source": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/genenotebook", + "Galaxy wrapper parsed folder": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/genenotebook", + "Galaxy wrapper version": "0.4.16", + "Conda id": "genoboo", + "Conda version": "0.4.16", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "jbrowse", + "Galaxy tool ids": [ + "jbrowse_to_container" + ], + "Description": "A tool allowing to export a JBrowse dataset into a JBrowse docker container", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://jbrowse.org", + "ToolShed categories": [ + "Web Services" + ], + "ToolShed id": "jbrowse_to_container", + "Galaxy wrapper owner": "gga", + "Galaxy wrapper source": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/jbrowse", + "Galaxy wrapper parsed folder": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/jbrowse", + "Galaxy wrapper version": null, + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "repeatexplorer2", + "Galaxy tool ids": [ + "repeatexplorer_clustering" + ], + "Description": "Tool for annotation of repeats from unassembled shotgun reads.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/repeatexplorer/repex_tarean", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "repeatexplorer2", + "Galaxy wrapper owner": "gga", + "Galaxy wrapper source": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2", + "Galaxy wrapper parsed folder": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2", + "Galaxy wrapper version": "2.3.8", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 16 + }, + { + "Galaxy wrapper id": "tripal", + "Galaxy tool ids": [ + "analysis_add_analysis", + "analysis_get_analyses", + "analysis_load_blast", + "analysis_load_fasta", + "analysis_load_gff3", + "analysis_load_go", + "analysis_load_interpro", + "analysis_sync", + "db_index", + "db_populate_mviews", + "entity_publish", + "expression_add_biomaterial", + "expression_add_expression", + "expression_delete_biomaterials", + "expression_get_biomaterials", + "expression_sync_biomaterials", + "feature_delete_orphans", + "feature_sync", + "organism_add_organism", + "organism_get_organisms", + "organism_sync", + "phylogeny_sync" + ], + "Description": "Galaxy tools allowing to load data into a remote Tripal server.Tripal is a toolkit for construction of online biological (genetics, genomics, breeding, etc), community database,and is a member of the GMOD family of tools. Tripal provides by default integration with the GMOD Chado database schema and Drupal, a popular Content Management Systems (CMS).https://github.com/galaxy-genome-annotation/python-tripal", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxy-genome-annotation/python-tripal", + "ToolShed categories": [ + "Web Services" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "gga", + "Galaxy wrapper source": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal", + "Galaxy wrapper parsed folder": "https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal", + "Galaxy wrapper version": null, + "Conda id": "python-tripal", + "Conda version": "3.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "w4mcorcov", + "Galaxy tool ids": [ + "w4mcorcov" + ], + "Description": "OPLS-DA Contrasts of Univariate Results", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "w4mcorcov", + "Galaxy wrapper owner": "eschen42", + "Galaxy wrapper source": "https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper/tree/master", + "Galaxy wrapper parsed folder": "https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper/tree/master/tools/w4mcorcov", + "Galaxy wrapper version": "0.98.18", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 368 + }, + { + "Galaxy wrapper id": "w4mclassfilter", + "Galaxy tool ids": [ + "w4mclassfilter" + ], + "Description": "Filter W4M data by values or metadata", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "w4mclassfilter", + "Galaxy wrapper owner": "eschen42", + "Galaxy wrapper source": "https://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper/tree/master", + "Galaxy wrapper parsed folder": "https://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper/tree/master/tools/w4mclassfilter", + "Galaxy wrapper version": "0.98.19", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 2834 + }, + { + "Galaxy wrapper id": "w4mjoinpn", + "Galaxy tool ids": [ + "w4mjoinpn" + ], + "Description": "Join positive- and negative-mode W4M datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "w4mjoinpn", + "Galaxy wrapper owner": "eschen42", + "Galaxy wrapper source": "https://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper/tree/master", + "Galaxy wrapper parsed folder": "https://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper/tree/master/tools/w4mjoinpn", + "Galaxy wrapper version": "0.98.2", + "Conda id": "coreutils", + "Conda version": "8.25", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 171 + }, + { + "Galaxy wrapper id": "2d_auto_threshold", + "Galaxy tool ids": [ + "ip_threshold" + ], + "Description": "Automatic thresholding", + "bio.tool id": "scikit-image", + "bio.tool ids": [ + "scikit-image" + ], + "biii": "scikit-image", + "bio.tool name": "scikit-image", + "bio.tool description": "Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.", + "EDAM operation": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "2d_auto_threshold", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold", + "Galaxy wrapper version": "0.18.1", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 6541 + }, + { + "Galaxy wrapper id": "2d_feature_extraction", + "Galaxy tool ids": [ + "ip_2d_feature_extraction" + ], + "Description": "2D feature extraction", + "bio.tool id": "scikit-image", + "bio.tool ids": [ + "scikit-image" + ], + "biii": "scikit-image", + "bio.tool name": "scikit-image", + "bio.tool description": "Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.", + "EDAM operation": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "2d_feature_extraction", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction", + "Galaxy wrapper version": "0.18.1", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 19, + "Total tool usage (usegalaxy.eu)": 13760 + }, + { + "Galaxy wrapper id": "2d_filter_segmentation_by_features", + "Galaxy tool ids": [ + "ip_2d_filter_segmentation_by_features" + ], + "Description": "filter segmentation by rules", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "2d_filter_segmentation_by_features", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features", + "Galaxy wrapper version": "0.0.1-4", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 18, + "Total tool usage (usegalaxy.eu)": 6834 + }, + { + "Galaxy wrapper id": "2d_histogram_equalization", + "Galaxy tool ids": [ + "ip_histogram_equalization" + ], + "Description": "2d histogram equalization", + "bio.tool id": "scikit-image", + "bio.tool ids": [ + "scikit-image" + ], + "biii": "scikit-image", + "bio.tool name": "scikit-image", + "bio.tool description": "Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.", + "EDAM operation": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "2d_histogram_equalization", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization", + "Galaxy wrapper version": "0.18.1", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 656 + }, + { + "Galaxy wrapper id": "2d_simple_filter", + "Galaxy tool ids": [ + "ip_filter_standard" + ], + "Description": "2d simple filter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": "scipy", + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "2d_simple_filter", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter", + "Galaxy wrapper version": "1.12.0", + "Conda id": "scipy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 35, + "Total tool usage (usegalaxy.eu)": 6156 + }, + { + "Galaxy wrapper id": "3d_tensor_feature_dimension_reduction", + "Galaxy tool ids": [ + "ip_3d_tensor_feature_dimension_reduction" + ], + "Description": "Dimensionality reduction for features (channels) of 3D tensor data using UMAP", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/BMCV/galaxy-image-analysis", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "3d_tensor_feature_dimension_reduction", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction", + "Galaxy wrapper version": "0.0.1", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "anisotropic_diffusion", + "Galaxy tool ids": [ + "ip_anisotropic_diffusion" + ], + "Description": "Anisotropic image diffusion", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "anisotropic_diffusion", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic-diffusion/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic_diffusion", + "Galaxy wrapper version": "0.4.0", + "Conda id": "medpy", + "Conda version": "0.4.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 40 + }, + { + "Galaxy wrapper id": "background_removal", + "Galaxy tool ids": [ + "background_removal" + ], + "Description": "Background removal filters using scikit-image", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "background_removal", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tools/background_removal", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/background_removal", + "Galaxy wrapper version": "0.24.0", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bfconvert", + "Galaxy tool ids": [ + "ip_convertimage" + ], + "Description": "Convert image", + "bio.tool id": null, + "bio.tool ids": [], + "biii": "python-bioformats", + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging", + "Convert Formats" + ], + "ToolShed id": "bfconvert", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert", + "Galaxy wrapper version": "6.7.0", + "Conda id": "bftools", + "Conda version": "6.7.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 38, + "Total tool usage (usegalaxy.eu)": 1523 + }, + { + "Galaxy wrapper id": "binary2labelimage", + "Galaxy tool ids": [ + "ip_binary_to_labelimage" + ], + "Description": "Binary 2 label image", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "binary2labelimage", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage", + "Galaxy wrapper version": "0.5", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 34, + "Total tool usage (usegalaxy.eu)": 1273 + }, + { + "Galaxy wrapper id": "binaryimage2points", + "Galaxy tool ids": [ + "ip_binaryimage_to_points" + ], + "Description": "Binary Image to Points", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "binaryimage2points", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points", + "Galaxy wrapper version": "0.1-2", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 29 + }, + { + "Galaxy wrapper id": "bioformats2raw", + "Galaxy tool ids": [ + "bf2raw" + ], + "Description": "Convert image to OME-Zarr", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/Euro-BioImaging", + "ToolShed categories": [ + "Imaging", + "Convert Formats" + ], + "ToolShed id": "bioformats2raw", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw", + "Galaxy wrapper version": "0.7.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 9 + }, + { + "Galaxy wrapper id": "color-deconvolution", + "Galaxy tool ids": [ + "ip_color_deconvolution" + ], + "Description": "Color-deconvolution methods", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "color_deconvolution", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution", + "Galaxy wrapper version": "0.8-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 16 + }, + { + "Galaxy wrapper id": "colorize_labels", + "Galaxy tool ids": [ + "colorize_labels" + ], + "Description": "Colorize label map", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "colorize_labels", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels", + "Galaxy wrapper version": "3.2.1", + "Conda id": "networkx", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "concat_channels", + "Galaxy tool ids": [ + "ip_concat_channels" + ], + "Description": "Concatenate images", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "concat_channels", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels", + "Galaxy wrapper version": "0.3-1", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 78 + }, + { + "Galaxy wrapper id": "coordinates_of_roi", + "Galaxy tool ids": [ + "ip_coordinates_of_roi" + ], + "Description": "Coordinates of ROI", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "coordinates_of_roi", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi", + "Galaxy wrapper version": "0.0.4-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 16546 + }, + { + "Galaxy wrapper id": "count_objects", + "Galaxy tool ids": [ + "ip_count_objects" + ], + "Description": "Count Objects", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "count_objects", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects", + "Galaxy wrapper version": "0.0.5-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 25, + "Total tool usage (usegalaxy.eu)": 272 + }, + { + "Galaxy wrapper id": "curl_post", + "Galaxy tool ids": [ + "curl_post" + ], + "Description": "Send file via cURL POST", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Data Export", + "Web Services" + ], + "ToolShed id": "curl_post", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curl_post", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curl_post", + "Galaxy wrapper version": "0.0.2", + "Conda id": "curl", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 27, + "Total tool usage (usegalaxy.eu)": 440 + }, + { + "Galaxy wrapper id": "curve_fitting", + "Galaxy tool ids": [ + "ip_curve_fitting" + ], + "Description": "Polynomial curve fitting to data points", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/BMCV/galaxy-image-analysis", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "curve_fitting", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting", + "Galaxy wrapper version": "0.0.3-2", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 12 + }, + { + "Galaxy wrapper id": "detection_viz", + "Galaxy tool ids": [ + "ip_detection_viz" + ], + "Description": "Detection Visualization", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "detection_viz", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz", + "Galaxy wrapper version": "0.3-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 46 + }, + { + "Galaxy wrapper id": "image_info", + "Galaxy tool ids": [ + "ip_imageinfo" + ], + "Description": "Extracts image metadata", + "bio.tool id": null, + "bio.tool ids": [], + "biii": "python-bioformats", + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "image_info", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info", + "Galaxy wrapper version": "5.7.1", + "Conda id": "bftools", + "Conda version": "6.7.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 41, + "Total tool usage (usegalaxy.eu)": 621 + }, + { + "Galaxy wrapper id": "image_math", + "Galaxy tool ids": [ + "image_math" + ], + "Description": "Process images using arithmetic expressions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "image_math", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math", + "Galaxy wrapper version": "1.26.4", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "image_registration_affine", + "Galaxy tool ids": [ + "ip_image_registration" + ], + "Description": "Intensity-based Image Registration", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "image_registration_affine", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine", + "Galaxy wrapper version": "0.0.3-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 12 + }, + { + "Galaxy wrapper id": "imagecoordinates_flipaxis", + "Galaxy tool ids": [ + "imagecoordinates_flipaxis" + ], + "Description": "Flip coordinate axes", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "imagecoordinates_flipaxis", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis", + "Galaxy wrapper version": "0.1-2", + "Conda id": "pandas", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 21825 + }, + { + "Galaxy wrapper id": "label_to_binary", + "Galaxy tool ids": [ + "label_to_binary" + ], + "Description": "Convert label map to binary image", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "label_to_binary", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary", + "Galaxy wrapper version": "1.26.4", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "labelimage2points", + "Galaxy tool ids": [ + "ip_labelimage_to_points" + ], + "Description": "Label Image to Points", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "labelimage2points", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points", + "Galaxy wrapper version": "0.2-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 36 + }, + { + "Galaxy wrapper id": "landmark_registration", + "Galaxy tool ids": [ + "ip_landmark_registration" + ], + "Description": "Landmark Registration", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "landmark_registration", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration", + "Galaxy wrapper version": "0.1.0-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 857 + }, + { + "Galaxy wrapper id": "mahotas-features", + "Galaxy tool ids": [ + "ip_mahotas_features" + ], + "Description": "Compute image features using mahotas.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": "mahotas-feature-computation", + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/luispedro/mahotas", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "mahotas_features", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features", + "Galaxy wrapper version": "0.7-2", + "Conda id": "mahotas", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 37 + }, + { + "Galaxy wrapper id": "mergeneighboursinlabelimage", + "Galaxy tool ids": [ + "ip_merge_neighbours_in_label" + ], + "Description": "Merge Neighbours in Label Image", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "mergeneighboursinlabelimage", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/\\mergeneighboursinlabelimage", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mergeneighboursinlabelimage", + "Galaxy wrapper version": "0.3-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 25 + }, + { + "Galaxy wrapper id": "morphological_operations", + "Galaxy tool ids": [ + "morphological_operations" + ], + "Description": "Apply morphological operations to images", + "bio.tool id": null, + "bio.tool ids": [], + "biii": "scipy", + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "morphological_operations", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations", + "Galaxy wrapper version": "1.12.0", + "Conda id": "scipy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "orientationpy", + "Galaxy tool ids": [ + "orientationpy" + ], + "Description": "Compute image orientation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": "orientationj", + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "orientationpy", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy", + "Galaxy wrapper version": "0.2.0.4", + "Conda id": "orientationpy", + "Conda version": "0.2.0.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "overlay_images", + "Galaxy tool ids": [ + "ip_overlay_images" + ], + "Description": "Overlay two images", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/BMCV/galaxy-image-analysis", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "overlay_images", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images", + "Galaxy wrapper version": "0.0.4", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 60 + }, + { + "Galaxy wrapper id": "permutate_axis", + "Galaxy tool ids": [ + "ip_permutate_axis" + ], + "Description": "Permutates axes", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "permutate_axis", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis", + "Galaxy wrapper version": "0.2-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 42 + }, + { + "Galaxy wrapper id": "plantseg", + "Galaxy tool ids": [ + "plantseg" + ], + "Description": "Tool for cell instance aware segmentation in densely packed 3D volumetric images", + "bio.tool id": "plantseg", + "bio.tool ids": [ + "plantseg" + ], + "biii": null, + "bio.tool name": "PlantSeg", + "bio.tool description": "Accurate and Versatile 3D Segmentation of Plant Tissues at Cellular Resolution.PlantSeg is a tool for cell instance aware segmentation in densely packed 3D volumetric images. The pipeline uses a two stages segmentation strategy (Neural Network + Segmentation). The pipeline is tuned for plant cell tissue acquired with confocal and light sheet microscopy. Pre-trained models are provided.", + "EDAM operation": [ + "Network analysis", + "Quantification", + "Microscope image visualisation" + ], + "EDAM topic": [ + "Plant biology", + "Bioimaging", + "Light microscopy", + "Machine learning", + "Electron microscopy" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "plantseg", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg", + "Galaxy wrapper version": "1.8.1", + "Conda id": "plant-seg", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Network analysis", + "Quantification", + "Microscope image visualisation" + ], + "EDAM topic (no superclasses)": [ + "Plant biology", + "Bioimaging", + "Light microscopy", + "Machine learning", + "Electron microscopy" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "points2binaryimage", + "Galaxy tool ids": [ + "ip_points_to_binaryimage" + ], + "Description": "Points to Binary Image", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "points2binaryimage", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage", + "Galaxy wrapper version": "0.2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 41 + }, + { + "Galaxy wrapper id": "points2labelimage", + "Galaxy tool ids": [ + "ip_points_to_label" + ], + "Description": "Points to label image", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "points2labelimage", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage", + "Galaxy wrapper version": "0.3-2", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 31 + }, + { + "Galaxy wrapper id": "points_association_nn", + "Galaxy tool ids": [ + "ip_points_association_nn" + ], + "Description": "Association of points in consecutive frames", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/BMCV/galaxy-image-analysis", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "points_association_nn", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn", + "Galaxy wrapper version": "0.0.3-2", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 29 + }, + { + "Galaxy wrapper id": "projective_transformation", + "Galaxy tool ids": [ + "ip_projective_transformation" + ], + "Description": "Projective transformation", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "projective_transformation", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation", + "Galaxy wrapper version": "0.1.2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 85 + }, + { + "Galaxy wrapper id": "projective_transformation_points", + "Galaxy tool ids": [ + "ip_projective_transformation_points" + ], + "Description": "Projective transformation of ROIs defined by pixel (point) coordinates", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "projective_transformation_points", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points", + "Galaxy wrapper version": "0.1.1", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 21343 + }, + { + "Galaxy wrapper id": "repeat_channels", + "Galaxy tool ids": [ + "repeat_channels" + ], + "Description": "Convert single-channel to multi-channel image", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "repeat_channels", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels", + "Galaxy wrapper version": "1.26.4", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rfove", + "Galaxy tool ids": [ + "rfove" + ], + "Description": "Perform segmentation region-based fitting of overlapping ellipses", + "bio.tool id": "rfove", + "bio.tool ids": [ + "rfove" + ], + "biii": null, + "bio.tool name": "RFOVE", + "bio.tool description": "RFOVE (Region-based Fitting of Overlapping Ellipses and its Application to Cells Segmentation) is a MATLAB script for performing image segmentation on cells.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Cell biology", + "Biomedical science", + "Imaging" + ], + "Status": "To update", + "Source": "https://sites.google.com/site/costaspanagiotakis/research/cs", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "rfove", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove", + "Galaxy wrapper version": "2023.11.12", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Cell biology", + "Biomedical science", + "Imaging" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 7 + }, + { + "Galaxy wrapper id": "scale_image", + "Galaxy tool ids": [ + "ip_scale_image" + ], + "Description": "Scale image", + "bio.tool id": "scikit-image", + "bio.tool ids": [ + "scikit-image" + ], + "biii": "scikit-image", + "bio.tool name": "scikit-image", + "bio.tool description": "Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.", + "EDAM operation": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "scale_image", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image", + "Galaxy wrapper version": "0.18.3", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 512 + }, + { + "Galaxy wrapper id": "segmetrics", + "Galaxy tool ids": [ + "ip_segmetrics" + ], + "Description": "Image segmentation and object detection performance measures", + "bio.tool id": "segmetrics", + "bio.tool ids": [ + "segmetrics" + ], + "biii": "segmetrics", + "bio.tool name": "SegMetrics", + "bio.tool description": "Image segmentation and object detection performance measures", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "segmetrics", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics", + "Galaxy wrapper version": "1.4", + "Conda id": "segmetrics", + "Conda version": "1.5", + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 3 + }, + { + "Galaxy wrapper id": "slice_image", + "Galaxy tool ids": [ + "ip_slice_image" + ], + "Description": "Slice image", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "slice_image", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image", + "Galaxy wrapper version": "0.3-4", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 102 + }, + { + "Galaxy wrapper id": "split_labelmap", + "Galaxy tool ids": [ + "ip_split_labelmap" + ], + "Description": "Split Labelmaps", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "split_labelmap", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmaps/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmap", + "Galaxy wrapper version": "0.2-3", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 42 + }, + { + "Galaxy wrapper id": "spot_detection_2d", + "Galaxy tool ids": [ + "ip_spot_detection_2d" + ], + "Description": "Spot detection in 2D image sequence", + "bio.tool id": "galaxy_image_analysis", + "bio.tool ids": [ + "galaxy_image_analysis" + ], + "biii": null, + "bio.tool name": "Galaxy Image Analysis", + "bio.tool description": "Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/BMCV/galaxy-image-analysis", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "spot_detection_2d", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d", + "Galaxy wrapper version": "0.0.3-2", + "Conda id": "imageio", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 16 + }, + { + "Galaxy wrapper id": "superdsm", + "Galaxy tool ids": [ + "ip_superdsm" + ], + "Description": "Globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images", + "bio.tool id": "superdsm", + "bio.tool ids": [ + "superdsm" + ], + "biii": "superdsm", + "bio.tool name": "SuperDSM", + "bio.tool description": "SuperDSM is a globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images and beyond.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "superdsm", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm", + "Galaxy wrapper version": "0.2.0", + "Conda id": "superdsm", + "Conda version": "0.3.0", + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 16 + }, + { + "Galaxy wrapper id": "unzip", + "Galaxy tool ids": [ + "unzip" + ], + "Description": "Unzip file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "unzip", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/unzip/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/unzip", + "Galaxy wrapper version": "6.0", + "Conda id": "unzip", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 508, + "Total tool usage (usegalaxy.eu)": 5370 + }, + { + "Galaxy wrapper id": "visceral-evaluatesegmentation", + "Galaxy tool ids": [ + "ip_visceral_evaluatesegmentation" + ], + "Description": "Visceral Project - Evaluate Segmentation Tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": "evaluatesegmentation-tool", + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "visceral_evaluatesegmentation", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation", + "Galaxy wrapper version": "0.5-2", + "Conda id": "visceral-evaluatesegmentation", + "Conda version": "2015.07.03", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 25 + }, + { + "Galaxy wrapper id": "voronoi_tessellation", + "Galaxy tool ids": [ + "voronoi_tessellation" + ], + "Description": "Compute Voronoi tesselation", + "bio.tool id": "scikit-image", + "bio.tool ids": [ + "scikit-image" + ], + "biii": "scikit-image", + "bio.tool name": "scikit-image", + "bio.tool description": "Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.", + "EDAM operation": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "voronoi_tesselation", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tesselation", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tessellation", + "Galaxy wrapper version": "0.22.0", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis", + "Image annotation", + "Visualisation", + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Software engineering", + "Literature and language" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "wsi_extract_top_view", + "Galaxy tool ids": [ + "ip_wsi_extract_top_view" + ], + "Description": "WSI Extract Top View", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bmcv", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "wsi_extract_top_view", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view/", + "Galaxy wrapper parsed folder": "https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view", + "Galaxy wrapper version": "0.2-2", + "Conda id": "scikit-image", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 38 + }, + { + "Galaxy wrapper id": "batched_lastz", + "Galaxy tool ids": [ + "batched_lastz" + ], + "Description": "Galaxy wrapper for the batching Lastz runs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/KegAlign", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "batched_lastz", + "Galaxy wrapper owner": "richard-burhans", + "Galaxy wrapper source": "https://github.com/richard-burhans/galaxytools/tree/main/tools/batched_lastz", + "Galaxy wrapper parsed folder": "https://github.com/richard-burhans/galaxytools/tree/main/tools/batched_lastz", + "Galaxy wrapper version": "1.04.22", + "Conda id": "lastz", + "Conda version": "1.04.22", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "kegalign", + "Galaxy tool ids": [ + "kegalign" + ], + "Description": "A Scalable GPU System for Pairwise Whole Genome Alignments based on LASTZ's seed-filter-extend paradigm.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/KegAlign", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "kegalign", + "Galaxy wrapper owner": "richard-burhans", + "Galaxy wrapper source": "https://github.com/richard-burhans/galaxytools/tree/main/tools/kegalign", + "Galaxy wrapper parsed folder": "https://github.com/richard-burhans/galaxytools/tree/main/tools/kegalign", + "Galaxy wrapper version": "0.1.2.7", + "Conda id": "kegalign-full", + "Conda version": "0.1.2.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ncbi_egapx", + "Galaxy tool ids": [ + "ncbi_egapx" + ], + "Description": "Eukaryotic Genome Annotation Pipeline - External (EGAPx)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ncbi/egapx", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "ncbi_egapx", + "Galaxy wrapper owner": "richard-burhans", + "Galaxy wrapper source": "https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx", + "Galaxy wrapper parsed folder": "https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx", + "Galaxy wrapper version": "0.2-alpha", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ncbi_fcs_adaptor", + "Galaxy tool ids": [ + "ncbi_fcs_adaptor" + ], + "Description": "FCS-adaptor detects adaptor and vector contamination in genome sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ncbi/fcs", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ncbi_fcs_adaptor", + "Galaxy wrapper owner": "richard-burhans", + "Galaxy wrapper source": "https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_fcs_adaptor", + "Galaxy wrapper parsed folder": "https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_fcs_adaptor", + "Galaxy wrapper version": "0.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "segalign", + "Galaxy tool ids": [ + "segalign" + ], + "Description": "A Scalable GPU System for Pairwise Whole Genome Alignments based on LASTZ's seed-filter-extend paradigm.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/gsneha26/SegAlign", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "segalign", + "Galaxy wrapper owner": "richard-burhans", + "Galaxy wrapper source": "https://github.com/richard-burhans/galaxytools/tree/main/tools/segalign", + "Galaxy wrapper parsed folder": "https://github.com/richard-burhans/galaxytools/tree/main/tools/segalign", + "Galaxy wrapper version": "0.1.2.7", + "Conda id": "segalign-galaxy", + "Conda version": "0.1.2.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "suite_qiime2__alignment", + "Galaxy tool ids": [ + "qiime2__alignment__mafft", + "qiime2__alignment__mafft_add", + "qiime2__alignment__mask" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-alignment", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 13 + }, + { + "Galaxy wrapper id": "suite_qiime2__composition", + "Galaxy tool ids": [ + "qiime2__composition__add_pseudocount", + "qiime2__composition__ancom", + "qiime2__composition__ancombc", + "qiime2__composition__da_barplot", + "qiime2__composition__tabulate" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-composition", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 5 + }, + { + "Galaxy wrapper id": "suite_qiime2__cutadapt", + "Galaxy tool ids": [ + "qiime2__cutadapt__demux_paired", + "qiime2__cutadapt__demux_single", + "qiime2__cutadapt__trim_paired", + "qiime2__cutadapt__trim_single" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-cutadapt", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 67 + }, + { + "Galaxy wrapper id": "suite_qiime2__dada2", + "Galaxy tool ids": [ + "qiime2__dada2__denoise_ccs", + "qiime2__dada2__denoise_paired", + "qiime2__dada2__denoise_pyro", + "qiime2__dada2__denoise_single" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://benjjneb.github.io/dada2/", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 31, + "Total tool usage (usegalaxy.eu)": 202 + }, + { + "Galaxy wrapper id": "suite_qiime2__deblur", + "Galaxy tool ids": [ + "qiime2__deblur__denoise_16S", + "qiime2__deblur__denoise_other", + "qiime2__deblur__visualize_stats" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/biocore/deblur", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 73 + }, + { + "Galaxy wrapper id": "suite_qiime2__demux", + "Galaxy tool ids": [ + "qiime2__demux__emp_paired", + "qiime2__demux__emp_single", + "qiime2__demux__filter_samples", + "qiime2__demux__partition_samples_paired", + "qiime2__demux__partition_samples_single", + "qiime2__demux__subsample_paired", + "qiime2__demux__subsample_single", + "qiime2__demux__summarize", + "qiime2__demux__tabulate_read_counts" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-demux", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 6, + "Available on UseGalaxy.org.au": 6, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 6, + "Tools available on UseGalaxy.org (Main)": 6, + "Tools available on UseGalaxy.org.au": 6, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 6, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 26, + "Total tool usage (usegalaxy.eu)": 114 + }, + { + "Galaxy wrapper id": "suite_qiime2__diversity", + "Galaxy tool ids": [ + "qiime2__diversity__adonis", + "qiime2__diversity__alpha", + "qiime2__diversity__alpha_correlation", + "qiime2__diversity__alpha_group_significance", + "qiime2__diversity__alpha_phylogenetic", + "qiime2__diversity__alpha_rarefaction", + "qiime2__diversity__beta", + "qiime2__diversity__beta_correlation", + "qiime2__diversity__beta_group_significance", + "qiime2__diversity__beta_phylogenetic", + "qiime2__diversity__beta_rarefaction", + "qiime2__diversity__bioenv", + "qiime2__diversity__core_metrics", + "qiime2__diversity__core_metrics_phylogenetic", + "qiime2__diversity__filter_alpha_diversity", + "qiime2__diversity__filter_distance_matrix", + "qiime2__diversity__mantel", + "qiime2__diversity__partial_procrustes", + "qiime2__diversity__pcoa", + "qiime2__diversity__pcoa_biplot", + "qiime2__diversity__procrustes_analysis", + "qiime2__diversity__tsne", + "qiime2__diversity__umap" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-diversity", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 21, + "Available on UseGalaxy.org.au": 21, + "Available on UseGalaxy.eu": 21, + "Available on UseGalaxy.fr": 21, + "Tools available on UseGalaxy.org (Main)": 21, + "Tools available on UseGalaxy.org.au": 21, + "Tools available on UseGalaxy.eu": 21, + "Tools available on UseGalaxy.fr": 21, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 21, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 43, + "Total tool usage (usegalaxy.eu)": 168 + }, + { + "Galaxy wrapper id": "suite_qiime2__diversity_lib", + "Galaxy tool ids": [ + "qiime2__diversity_lib__alpha_passthrough", + "qiime2__diversity_lib__beta_passthrough", + "qiime2__diversity_lib__beta_phylogenetic_meta_passthrough", + "qiime2__diversity_lib__beta_phylogenetic_passthrough", + "qiime2__diversity_lib__bray_curtis", + "qiime2__diversity_lib__faith_pd", + "qiime2__diversity_lib__jaccard", + "qiime2__diversity_lib__observed_features", + "qiime2__diversity_lib__pielou_evenness", + "qiime2__diversity_lib__shannon_entropy", + "qiime2__diversity_lib__unweighted_unifrac", + "qiime2__diversity_lib__weighted_unifrac" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-diversity-lib", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 12, + "Available on UseGalaxy.org.au": 12, + "Available on UseGalaxy.eu": 12, + "Available on UseGalaxy.fr": 12, + "Tools available on UseGalaxy.org (Main)": 12, + "Tools available on UseGalaxy.org.au": 12, + "Tools available on UseGalaxy.eu": 12, + "Tools available on UseGalaxy.fr": 12, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 12, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 4 + }, + { + "Galaxy wrapper id": "suite_qiime2__emperor", + "Galaxy tool ids": [ + "qiime2__emperor__biplot", + "qiime2__emperor__plot", + "qiime2__emperor__procrustes_plot" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://emperor.microbio.me", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 6 + }, + { + "Galaxy wrapper id": "suite_qiime2__feature_classifier", + "Galaxy tool ids": [ + "qiime2__feature_classifier__blast", + "qiime2__feature_classifier__classify_consensus_blast", + "qiime2__feature_classifier__classify_consensus_vsearch", + "qiime2__feature_classifier__classify_hybrid_vsearch_sklearn", + "qiime2__feature_classifier__classify_sklearn", + "qiime2__feature_classifier__extract_reads", + "qiime2__feature_classifier__find_consensus_annotation", + "qiime2__feature_classifier__fit_classifier_naive_bayes", + "qiime2__feature_classifier__fit_classifier_sklearn", + "qiime2__feature_classifier__makeblastdb", + "qiime2__feature_classifier__vsearch_global" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-feature-classifier", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 10, + "Available on UseGalaxy.org.au": 10, + "Available on UseGalaxy.eu": 10, + "Available on UseGalaxy.fr": 10, + "Tools available on UseGalaxy.org (Main)": 10, + "Tools available on UseGalaxy.org.au": 10, + "Tools available on UseGalaxy.eu": 10, + "Tools available on UseGalaxy.fr": 10, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 10, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 48, + "Total tool usage (usegalaxy.eu)": 263 + }, + { + "Galaxy wrapper id": "suite_qiime2__feature_table", + "Galaxy tool ids": [ + "qiime2__feature_table__core_features", + "qiime2__feature_table__filter_features", + "qiime2__feature_table__filter_features_conditionally", + "qiime2__feature_table__filter_samples", + "qiime2__feature_table__filter_seqs", + "qiime2__feature_table__group", + "qiime2__feature_table__heatmap", + "qiime2__feature_table__merge", + "qiime2__feature_table__merge_seqs", + "qiime2__feature_table__merge_taxa", + "qiime2__feature_table__presence_absence", + "qiime2__feature_table__rarefy", + "qiime2__feature_table__relative_frequency", + "qiime2__feature_table__rename_ids", + "qiime2__feature_table__split", + "qiime2__feature_table__subsample_ids", + "qiime2__feature_table__summarize", + "qiime2__feature_table__summarize_plus", + "qiime2__feature_table__tabulate_feature_frequencies", + "qiime2__feature_table__tabulate_sample_frequencies", + "qiime2__feature_table__tabulate_seqs", + "qiime2__feature_table__transpose" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-feature-table", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 17, + "Available on UseGalaxy.org.au": 17, + "Available on UseGalaxy.eu": 17, + "Available on UseGalaxy.fr": 17, + "Tools available on UseGalaxy.org (Main)": 17, + "Tools available on UseGalaxy.org.au": 17, + "Tools available on UseGalaxy.eu": 17, + "Tools available on UseGalaxy.fr": 17, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 17, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 59, + "Total tool usage (usegalaxy.eu)": 213 + }, + { + "Galaxy wrapper id": "suite_qiime2__fragment_insertion", + "Galaxy tool ids": [ + "qiime2__fragment_insertion__classify_otus_experimental", + "qiime2__fragment_insertion__filter_features", + "qiime2__fragment_insertion__sepp" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-fragment-insertion", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 20 + }, + { + "Galaxy wrapper id": "suite_qiime2__longitudinal", + "Galaxy tool ids": [ + "qiime2__longitudinal__anova", + "qiime2__longitudinal__feature_volatility", + "qiime2__longitudinal__first_differences", + "qiime2__longitudinal__first_distances", + "qiime2__longitudinal__linear_mixed_effects", + "qiime2__longitudinal__maturity_index", + "qiime2__longitudinal__nmit", + "qiime2__longitudinal__pairwise_differences", + "qiime2__longitudinal__pairwise_distances", + "qiime2__longitudinal__plot_feature_volatility", + "qiime2__longitudinal__volatility" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-longitudinal", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 11, + "Available on UseGalaxy.org.au": 11, + "Available on UseGalaxy.eu": 11, + "Available on UseGalaxy.fr": 11, + "Tools available on UseGalaxy.org (Main)": 11, + "Tools available on UseGalaxy.org.au": 11, + "Tools available on UseGalaxy.eu": 11, + "Tools available on UseGalaxy.fr": 11, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 11, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 14 + }, + { + "Galaxy wrapper id": "suite_qiime2__metadata", + "Galaxy tool ids": [ + "qiime2__metadata__distance_matrix", + "qiime2__metadata__merge", + "qiime2__metadata__shuffle_groups", + "qiime2__metadata__tabulate" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-metadata", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 40, + "Total tool usage (usegalaxy.eu)": 232 + }, + { + "Galaxy wrapper id": "suite_qiime2__phylogeny", + "Galaxy tool ids": [ + "qiime2__phylogeny__align_to_tree_mafft_fasttree", + "qiime2__phylogeny__align_to_tree_mafft_iqtree", + "qiime2__phylogeny__align_to_tree_mafft_raxml", + "qiime2__phylogeny__fasttree", + "qiime2__phylogeny__filter_table", + "qiime2__phylogeny__filter_tree", + "qiime2__phylogeny__iqtree", + "qiime2__phylogeny__iqtree_ultrafast_bootstrap", + "qiime2__phylogeny__midpoint_root", + "qiime2__phylogeny__raxml", + "qiime2__phylogeny__raxml_rapid_bootstrap", + "qiime2__phylogeny__robinson_foulds" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-phylogeny", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 12, + "Available on UseGalaxy.org.au": 12, + "Available on UseGalaxy.eu": 12, + "Available on UseGalaxy.fr": 12, + "Tools available on UseGalaxy.org (Main)": 12, + "Tools available on UseGalaxy.org.au": 12, + "Tools available on UseGalaxy.eu": 12, + "Tools available on UseGalaxy.fr": 12, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 12, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 37 + }, + { + "Galaxy wrapper id": "suite_qiime2__quality_control", + "Galaxy tool ids": [ + "qiime2__quality_control__bowtie2_build", + "qiime2__quality_control__decontam_identify", + "qiime2__quality_control__decontam_identify_batches", + "qiime2__quality_control__decontam_remove", + "qiime2__quality_control__decontam_score_viz", + "qiime2__quality_control__evaluate_composition", + "qiime2__quality_control__evaluate_seqs", + "qiime2__quality_control__evaluate_taxonomy", + "qiime2__quality_control__exclude_seqs", + "qiime2__quality_control__filter_reads" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-quality-control", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 6, + "Available on UseGalaxy.org.au": 6, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 6, + "Tools available on UseGalaxy.org (Main)": 6, + "Tools available on UseGalaxy.org.au": 6, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 6, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "suite_qiime2__quality_filter", + "Galaxy tool ids": [ + "qiime2__quality_filter__q_score" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-quality-filter", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 13 + }, + { + "Galaxy wrapper id": "suite_qiime2__rescript", + "Galaxy tool ids": [ + "qiime2__rescript__cull_seqs", + "qiime2__rescript__degap_seqs", + "qiime2__rescript__dereplicate", + "qiime2__rescript__edit_taxonomy", + "qiime2__rescript__evaluate_classifications", + "qiime2__rescript__evaluate_cross_validate", + "qiime2__rescript__evaluate_fit_classifier", + "qiime2__rescript__evaluate_seqs", + "qiime2__rescript__evaluate_taxonomy", + "qiime2__rescript__extract_seq_segments", + "qiime2__rescript__filter_seqs_length", + "qiime2__rescript__filter_seqs_length_by_taxon", + "qiime2__rescript__filter_taxa", + "qiime2__rescript__get_gtdb_data", + "qiime2__rescript__get_ncbi_data", + "qiime2__rescript__get_ncbi_data_protein", + "qiime2__rescript__get_ncbi_genomes", + "qiime2__rescript__get_silva_data", + "qiime2__rescript__get_unite_data", + "qiime2__rescript__merge_taxa", + "qiime2__rescript__orient_seqs", + "qiime2__rescript__parse_silva_taxonomy", + "qiime2__rescript__reverse_transcribe", + "qiime2__rescript__subsample_fasta", + "qiime2__rescript__trim_alignment" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/nbokulich/RESCRIPt", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "suite_qiime2__sample_classifier", + "Galaxy tool ids": [ + "qiime2__sample_classifier__classify_samples", + "qiime2__sample_classifier__classify_samples_from_dist", + "qiime2__sample_classifier__classify_samples_ncv", + "qiime2__sample_classifier__confusion_matrix", + "qiime2__sample_classifier__fit_classifier", + "qiime2__sample_classifier__fit_regressor", + "qiime2__sample_classifier__heatmap", + "qiime2__sample_classifier__metatable", + "qiime2__sample_classifier__predict_classification", + "qiime2__sample_classifier__predict_regression", + "qiime2__sample_classifier__regress_samples", + "qiime2__sample_classifier__regress_samples_ncv", + "qiime2__sample_classifier__scatterplot", + "qiime2__sample_classifier__split_table", + "qiime2__sample_classifier__summarize" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-sample-classifier", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 15, + "Available on UseGalaxy.org.au": 15, + "Available on UseGalaxy.eu": 15, + "Available on UseGalaxy.fr": 15, + "Tools available on UseGalaxy.org (Main)": 15, + "Tools available on UseGalaxy.org.au": 15, + "Tools available on UseGalaxy.eu": 15, + "Tools available on UseGalaxy.fr": 15, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 15, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 1 + }, + { + "Galaxy wrapper id": "suite_qiime2__taxa", + "Galaxy tool ids": [ + "qiime2__taxa__barplot", + "qiime2__taxa__collapse", + "qiime2__taxa__filter_seqs", + "qiime2__taxa__filter_table" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-taxa", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 22, + "Total tool usage (usegalaxy.eu)": 172 + }, + { + "Galaxy wrapper id": "suite_qiime2__vsearch", + "Galaxy tool ids": [ + "qiime2__vsearch__cluster_features_closed_reference", + "qiime2__vsearch__cluster_features_de_novo", + "qiime2__vsearch__cluster_features_open_reference", + "qiime2__vsearch__dereplicate_sequences", + "qiime2__vsearch__fastq_stats", + "qiime2__vsearch__merge_pairs", + "qiime2__vsearch__uchime_denovo", + "qiime2__vsearch__uchime_ref" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/qiime2/q2-vsearch", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch", + "Galaxy wrapper version": "2024.5.0+q2galaxy.2024.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 8, + "Available on UseGalaxy.org.au": 8, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 7, + "Tools available on UseGalaxy.org (Main)": 8, + "Tools available on UseGalaxy.org.au": 8, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 7, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 8, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 16 + }, + { + "Galaxy wrapper id": "suite_qiime2_core__tools", + "Galaxy tool ids": [ + "qiime2_core__tools__export", + "qiime2_core__tools__import", + "qiime2_core__tools__import_fastq" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://qiime2.org", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools", + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools", + "Galaxy wrapper version": "2024.5.0+dist.he540b0b0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 124, + "Total tool usage (usegalaxy.eu)": 7087 + }, + { + "Galaxy wrapper id": "suite_qiime2_core", + "Galaxy tool ids": [], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics", + "Metagenomics", + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "q2d2", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/qiime2/galaxy-tools/tree/main/tool_collections/suite_qiime2_core", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "add_value", + "Galaxy tool ids": [ + "addValue" + ], + "Description": "Add a value as a new column.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "add_value", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/add_value", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/add_value", + "Galaxy wrapper version": "1.0.1", + "Conda id": "perl", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 591, + "Total tool usage (usegalaxy.eu)": 367167 + }, + { + "Galaxy wrapper id": "annotation_profiler", + "Galaxy tool ids": [ + "Annotation_Profiler_0" + ], + "Description": "Profile Annotations for a set of genomic intervals", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "annotation_profiler", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/annotation_profiler", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/annotation_profiler", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 2 + }, + { + "Galaxy wrapper id": "best_regression_subsets", + "Galaxy tool ids": [ + "BestSubsetsRegression1" + ], + "Description": "Perform Best-subsets Regression", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "best_regression_subsets", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/best_regression_subsets", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/best_regression_subsets", + "Galaxy wrapper version": "1.0.0", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 3 + }, + { + "Galaxy wrapper id": "blat_coverage_report", + "Galaxy tool ids": [ + "generate_coverage_report" + ], + "Description": "Polymorphism of the Reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Next Gen Mappers", + "Sequence Analysis" + ], + "ToolShed id": "blat_coverage_report", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_coverage_report", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/blat_coverage_report", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "blat_mapping", + "Galaxy tool ids": [ + "blat2wig" + ], + "Description": "Coverage of the Reads in wiggle format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Next Gen Mappers", + "Sequence Analysis" + ], + "ToolShed id": "blat_mapping", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_mapping", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/blat_mapping", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bowtie_wrappers", + "Galaxy tool ids": [ + "bowtie_wrapper" + ], + "Description": "Galaxy wrappers for the Bowtie short read mapping tools.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://bowtie-bio.sourceforge.net/", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "bowtie_wrappers", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie_wrappers", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/bowtie_wrappers", + "Galaxy wrapper version": "1.2.0", + "Conda id": "bowtie", + "Conda version": "1.3.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 506, + "Total tool usage (usegalaxy.eu)": 22988 + }, + { + "Galaxy wrapper id": "canonical_correlation_analysis", + "Galaxy tool ids": [ + "cca1" + ], + "Description": "Canonical Correlation Analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "canonical_correlation_analysis", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/canonical_correlation_analysis", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/canonical_correlation_analysis", + "Galaxy wrapper version": "1.0.0", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 74 + }, + { + "Galaxy wrapper id": "categorize_elements_satisfying_criteria", + "Galaxy tool ids": [ + "categorize_elements_satisfying_criteria" + ], + "Description": "Categorize Elements satisfying criteria.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "categorize_elements_satisfying_criteria", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/categorize_elements_satisfying_criteria", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/categorize_elements_satisfying_criteria", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 40 + }, + { + "Galaxy wrapper id": "ccat", + "Galaxy tool ids": [ + "peakcalling_ccat" + ], + "Description": "Control-based ChIP-seq Analysis Tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "ccat", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/ccat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/ccat", + "Galaxy wrapper version": "0.0.2", + "Conda id": "ccat", + "Conda version": "3.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 173 + }, + { + "Galaxy wrapper id": "cd_hit_dup", + "Galaxy tool ids": [ + "cd_hit_dup" + ], + "Description": "simple tool for removing duplicates from sequencing reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis" + ], + "ToolShed id": "cd_hit_dup", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/cd_hit_dup", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/cd_hit_dup", + "Galaxy wrapper version": "0.0.1", + "Conda id": "cd-hit-auxtools", + "Conda version": "4.8.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "change_case", + "Galaxy tool ids": [ + "ChangeCase" + ], + "Description": "Convert column case.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "change_case", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/change_case", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/change_case", + "Galaxy wrapper version": "1.0.1", + "Conda id": "perl", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 931, + "Total tool usage (usegalaxy.eu)": 10965 + }, + { + "Galaxy wrapper id": "compute_motif_frequencies_for_all_motifs", + "Galaxy tool ids": [ + "compute_motif_frequencies_for_all_motifs" + ], + "Description": "Compute Motif Frequencies For All Motifs, motif by motif.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": "compute_motif_frequencies_for_all_motifs", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motif_frequencies_for_all_motifs", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_motif_frequencies_for_all_motifs", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 94 + }, + { + "Galaxy wrapper id": "compute_motifs_frequency", + "Galaxy tool ids": [ + "compute_motifs_frequency" + ], + "Description": "Compute Motif Frequencies in indel flanking regions.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": "compute_motifs_frequency", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motifs_frequency", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_motifs_frequency", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 65 + }, + { + "Galaxy wrapper id": "compute_q_values", + "Galaxy tool ids": [ + "compute_q_values" + ], + "Description": "Compute q-values based on multiple simultaneous tests p-values", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "compute_q_values", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_q_values", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_q_values", + "Galaxy wrapper version": "1.0.1", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 35 + }, + { + "Galaxy wrapper id": "condense_characters", + "Galaxy tool ids": [ + "Condense characters1" + ], + "Description": "Condense consecutive characters.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "condense_characters", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/condense_characters", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/condense_characters", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "convert_characters", + "Galaxy tool ids": [ + "Convert characters1" + ], + "Description": "Convert delimiters to tab.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "convert_characters", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_characters", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_characters", + "Galaxy wrapper version": "1.0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 1, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 475, + "Total tool usage (usegalaxy.eu)": 23829 + }, + { + "Galaxy wrapper id": "convert_solid_color2nuc", + "Galaxy tool ids": [ + "color2nuc" + ], + "Description": "Convert Color Space to Nucleotides", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "convert_solid_color2nuc", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_solid_color2nuc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_solid_color2nuc", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "correlation", + "Galaxy tool ids": [ + "cor2" + ], + "Description": "Correlation for numeric columns", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "correlation", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/correlation", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/correlation", + "Galaxy wrapper version": "1.0.0", + "Conda id": "rpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 47, + "Total tool usage (usegalaxy.eu)": 837 + }, + { + "Galaxy wrapper id": "count_gff_features", + "Galaxy tool ids": [ + "count_gff_features" + ], + "Description": "Count GFF Features", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "count_gff_features", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/count_gff_features", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/count_gff_features", + "Galaxy wrapper version": "0.2", + "Conda id": "galaxy-ops", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 49, + "Total tool usage (usegalaxy.eu)": 271 + }, + { + "Galaxy wrapper id": "ctd_batch", + "Galaxy tool ids": [ + "ctdBatch_1" + ], + "Description": "CTD analysis of chemicals, diseases, or genes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ctd_batch", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/ctd_batch", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/ctd_batch", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 203 + }, + { + "Galaxy wrapper id": "cummerbund", + "Galaxy tool ids": [ + "cummeRbund" + ], + "Description": "Wrapper for the Bioconductor cummeRbund library", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/cummeRbund.html", + "ToolShed categories": [ + "RNA", + "Visualization" + ], + "ToolShed id": "cummerbund", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/cummerbund", + "Galaxy wrapper version": "2.16.0", + "Conda id": "fonts-conda-ecosystem", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 31, + "Total tool usage (usegalaxy.eu)": 1782 + }, + { + "Galaxy wrapper id": "cummerbund_to_tabular", + "Galaxy tool ids": [ + "cummerbund_to_cuffdiff" + ], + "Description": "Regenerate the tabular files generated by cuffdiff from a cummeRbund SQLite database.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Convert Formats", + "Next Gen Mappers" + ], + "ToolShed id": "cummerbund_to_tabular", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund_to_tabular", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/cummerbund_to_tabular", + "Galaxy wrapper version": "1.0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 1204 + }, + { + "Galaxy wrapper id": "cut_columns", + "Galaxy tool ids": [ + "Cut1" + ], + "Description": "Select columns from a dataset.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "cut_columns", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/cut_columns", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/cut_columns", + "Galaxy wrapper version": "1.0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5064, + "Total tool usage (usegalaxy.eu)": 1957541 + }, + { + "Galaxy wrapper id": "delete_overlapping_indels", + "Galaxy tool ids": [ + "delete_overlapping_indels" + ], + "Description": "Delete Overlapping Indels from a chromosome indels file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "delete_overlapping_indels", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/delete_overlapping_indels", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/delete_overlapping_indels", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 39 + }, + { + "Galaxy wrapper id": "dgidb_annotator", + "Galaxy tool ids": [ + "dgidb_annotate" + ], + "Description": "Annotates a tabular file with information from the Drug-Gene Interaction Database (http://dgidb.genome.wustl.edu/)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Systems Biology", + "Variant Analysis" + ], + "ToolShed id": "dgidb_annotator", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/dgidb_annotator", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/dgidb_annotator", + "Galaxy wrapper version": "0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 65 + }, + { + "Galaxy wrapper id": "divide_pg_snp", + "Galaxy tool ids": [ + "dividePgSnp" + ], + "Description": "Separate pgSnp alleles into columns", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "divide_pg_snp", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/divide_pg_snp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/divide_pg_snp", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 32 + }, + { + "Galaxy wrapper id": "draw_stacked_barplots", + "Galaxy tool ids": [ + "draw_stacked_barplots" + ], + "Description": "Draw Stacked Bar Plots for different categories and different criteria", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics", + "Statistics" + ], + "ToolShed id": "draw_stacked_barplots", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/draw_stacked_barplots", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/draw_stacked_barplots", + "Galaxy wrapper version": "1.0.0", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 173 + }, + { + "Galaxy wrapper id": "dwt_cor_ava_perclass", + "Galaxy tool ids": [ + "compute_p-values_correlation_coefficients_feature_occurrences_between_two_datasets_using_discrete_wavelet_transfom" + ], + "Description": "Compute P-values and Correlation Coefficients for Feature Occurrences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "dwt_cor_ava_perclass", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_cor_ava_perclass", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_cor_ava_perclass", + "Galaxy wrapper version": "1.0.1", + "Conda id": "r-waveslim", + "Conda version": "1.7.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dwt_cor_avb_all", + "Galaxy tool ids": [ + "compute_p-values_correlation_coefficients_featureA_featureB_occurrences_between_two_datasets_using_discrete_wavelet_transfom" + ], + "Description": "Compute P-values and Correlation Coefficients for Occurrences of Two Set of Features", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "dwt_cor_avb_all", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_cor_avb_all", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_cor_avb_all", + "Galaxy wrapper version": "1.0.1", + "Conda id": "r-waveslim", + "Conda version": "1.7.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dwt_ivc_all", + "Galaxy tool ids": [ + "compute_p-values_second_moments_feature_occurrences_between_two_datasets_using_discrete_wavelet_transfom" + ], + "Description": "Compute P-values and Second Moments for Feature Occurrences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "dwt_ivc_all", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_ivc_all", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_ivc_all", + "Galaxy wrapper version": "1.0.1", + "Conda id": "r-waveslim", + "Conda version": "1.7.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dwt_var_perclass", + "Galaxy tool ids": [ + "compute_p-values_max_variances_feature_occurrences_in_one_dataset_using_discrete_wavelet_transfom" + ], + "Description": "Compute P-values and Max Variances for Feature Occurrences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "dwt_var_perclass", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_var_perclass", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_var_perclass", + "Galaxy wrapper version": "1.0.1", + "Conda id": "r-waveslim", + "Conda version": "1.7.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dwt_var_perfeature", + "Galaxy tool ids": [ + "dwt_var1" + ], + "Description": "Wavelet variance using Discrete Wavelet Transfoms", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "dwt_var_perfeature", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_var_perfeature", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_var_perfeature", + "Galaxy wrapper version": "1.0.2", + "Conda id": "r-bitops", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 36 + }, + { + "Galaxy wrapper id": "express", + "Galaxy tool ids": [ + "express" + ], + "Description": "Quantify the abundances of a set of target sequences from sampled subsequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "express", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/express", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/express", + "Galaxy wrapper version": "1.1.1", + "Conda id": "eXpress", + "Conda version": "1.5.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 325 + }, + { + "Galaxy wrapper id": "fasta_compute_length", + "Galaxy tool ids": [ + "fasta_compute_length" + ], + "Description": "Compute sequence length", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "fasta_compute_length", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_length", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_compute_length", + "Galaxy wrapper version": "1.0.3", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 380, + "Total tool usage (usegalaxy.eu)": 7758 + }, + { + "Galaxy wrapper id": "fasta_concatenate_by_species", + "Galaxy tool ids": [ + "fasta_concatenate0" + ], + "Description": "Concatenate FASTA alignment by species", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "fasta_concatenate_by_species", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_concatenate_by_species", + "Galaxy wrapper version": "0.0.1", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 88, + "Total tool usage (usegalaxy.eu)": 35793 + }, + { + "Galaxy wrapper id": "fasta_filter_by_length", + "Galaxy tool ids": [ + "fasta_filter_by_length" + ], + "Description": "Filter sequences by length", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "fasta_filter_by_length", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_length", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_filter_by_length", + "Galaxy wrapper version": "1.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 350, + "Total tool usage (usegalaxy.eu)": 48649 + }, + { + "Galaxy wrapper id": "fasta_to_tabular", + "Galaxy tool ids": [ + "fasta2tab" + ], + "Description": "FASTA-to-Tabular converter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "fasta_to_tabular", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_to_tabular", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_to_tabular", + "Galaxy wrapper version": "1.1.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 622, + "Total tool usage (usegalaxy.eu)": 105935 + }, + { + "Galaxy wrapper id": "fastq_trimmer_by_quality", + "Galaxy tool ids": [ + "fastq_quality_trimmer" + ], + "Description": "FASTQ Quality Trimmer by sliding window", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": null, + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_trimmer_by_quality", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastq_trimmer_by_quality", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/fastq_trimmer_by_quality", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 459, + "Total tool usage (usegalaxy.eu)": 5676 + }, + { + "Galaxy wrapper id": "fastqsolexa_to_fasta_qual", + "Galaxy tool ids": [ + "fastqsolexa_to_fasta_qual" + ], + "Description": "FASTQSOLEXA-to-FASTA-QUAL extracts sequences and quality scores from FASTQSOLEXA data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Convert Formats", + "Fastq Manipulation" + ], + "ToolShed id": "fastqsolexa_to_fasta_qual", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqsolexa_to_fasta_qual", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/fastqsolexa_to_fasta_qual", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "featurecounter", + "Galaxy tool ids": [ + "featureCoverage1" + ], + "Description": "Feature coverage", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "featurecounter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/featurecounter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/featurecounter", + "Galaxy wrapper version": "2.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 22385 + }, + { + "Galaxy wrapper id": "filter_transcripts_via_tracking", + "Galaxy tool ids": [ + "filter_combined_via_tracking" + ], + "Description": "Filter Combined Transcripts", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "filter_transcripts_via_tracking", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/filter_transcripts_via_tracking", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/filter_transcripts_via_tracking", + "Galaxy wrapper version": "0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 20 + }, + { + "Galaxy wrapper id": "generate_pc_lda_matrix", + "Galaxy tool ids": [ + "generate_matrix_for_pca_and_lda1" + ], + "Description": "Generate a Matrix for using PC and LDA", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "generate_pc_lda_matrix", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/generate_pc_lda_matrix", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/generate_pc_lda_matrix", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 119 + }, + { + "Galaxy wrapper id": "getindelrates_3way", + "Galaxy tool ids": [ + "indelRates_3way" + ], + "Description": "Estimate Indel Rates for 3-way alignments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "getindelrates_3way", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/getindelrates_3way", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/getindelrates_3way", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "getindels_2way", + "Galaxy tool ids": [ + "getIndels_2way" + ], + "Description": "Fetch Indels from pairwise alignments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "getindels_2way", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/getindels_2way", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/getindels_2way", + "Galaxy wrapper version": "1.0.0", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gmaj", + "Galaxy tool ids": [ + "gmaj_1" + ], + "Description": "GMAJ Multiple Alignment Viewer", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "gmaj", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/gmaj", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/gmaj", + "Galaxy wrapper version": "2.0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 11 + }, + { + "Galaxy wrapper id": "hisat", + "Galaxy tool ids": [ + "hisat" + ], + "Description": "HISAT is a fast and sensitive spliced alignment program.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://ccb.jhu.edu/software/hisat/index.shtml", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "hisat", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/hisat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat", + "Galaxy wrapper version": "1.0.3", + "Conda id": "hisat", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 228 + }, + { + "Galaxy wrapper id": "histogram", + "Galaxy tool ids": [ + "histogram_rpy" + ], + "Description": "Histogram of a numeric column", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics", + "Statistics" + ], + "ToolShed id": "histogram", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/histogram", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/histogram", + "Galaxy wrapper version": "1.0.4", + "Conda id": "rpy2", + "Conda version": "2.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 242, + "Total tool usage (usegalaxy.eu)": 4350 + }, + { + "Galaxy wrapper id": "indels_3way", + "Galaxy tool ids": [ + "indels_3way" + ], + "Description": "Fetch Indels from 3-way alignments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "indels_3way", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/indels_3way", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/indels_3way", + "Galaxy wrapper version": "1.0.3", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 22 + }, + { + "Galaxy wrapper id": "kernel_canonical_correlation_analysis", + "Galaxy tool ids": [ + "kcca1" + ], + "Description": "Kernel Canonical Correlation Analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "kernel_canonical_correlation_analysis", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/kernel_canonical_correlation_analysis", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/kernel_canonical_correlation_analysis", + "Galaxy wrapper version": "1.0.0", + "Conda id": "rpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 69 + }, + { + "Galaxy wrapper id": "kernel_principal_component_analysis", + "Galaxy tool ids": [ + "kpca1" + ], + "Description": "Kernel Principal Component Analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "kernel_principal_component_analysis", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/kernel_principal_component_analysis", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/kernel_principal_component_analysis", + "Galaxy wrapper version": "1.0.0", + "Conda id": "rpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 156 + }, + { + "Galaxy wrapper id": "lastz_paired_reads", + "Galaxy tool ids": [ + "lastz_paired_reads_wrapper" + ], + "Description": "Galaxy wrapper for the Lastz alignment tool on paired reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "lastz_paired_reads", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/lastz_paired_reads", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/lastz_paired_reads", + "Galaxy wrapper version": "1.1.1", + "Conda id": "lastz", + "Conda version": "1.04.22", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 9 + }, + { + "Galaxy wrapper id": "lda_analysis", + "Galaxy tool ids": [ + "lda_analy1" + ], + "Description": "Perform Linear Discriminant Analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics", + "Statistics" + ], + "ToolShed id": "lda_analysis", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/lda_analysis", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/lda_analysis", + "Galaxy wrapper version": "1.0.1", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 18, + "Total tool usage (usegalaxy.eu)": 148 + }, + { + "Galaxy wrapper id": "linear_regression", + "Galaxy tool ids": [ + "LinearRegression1" + ], + "Description": "Perform Linear Regression", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "linear_regression", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/linear_regression", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/linear_regression", + "Galaxy wrapper version": "1.0.1", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "logistic_regression_vif", + "Galaxy tool ids": [ + "LogisticRegression" + ], + "Description": "Perform Logistic Regression with vif", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis", + "Statistics" + ], + "ToolShed id": "logistic_regression_vif", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/logistic_regression_vif", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/logistic_regression_vif", + "Galaxy wrapper version": "1.0.1", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "maf_cpg_filter", + "Galaxy tool ids": [ + "cpgFilter" + ], + "Description": "Mask CpG/non-CpG sites from MAF file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "maf_cpg_filter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/maf_cpg_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/maf_cpg_filter", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mapping_to_ucsc", + "Galaxy tool ids": [ + "mapToUCSC" + ], + "Description": "Format mapping data as UCSC custom track", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Visualization", + "Convert Formats", + "Next Gen Mappers" + ], + "ToolShed id": "mapping_to_ucsc", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/mapping_to_ucsc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/mapping_to_ucsc", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "megablast_xml_parser", + "Galaxy tool ids": [ + "megablast_xml_parser" + ], + "Description": "Parse blast XML output", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Next Gen Mappers", + "Convert Formats" + ], + "ToolShed id": "megablast_xml_parser", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/megablast_xml_parser", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/megablast_xml_parser", + "Galaxy wrapper version": "1.0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 36, + "Total tool usage (usegalaxy.eu)": 338 + }, + { + "Galaxy wrapper id": "merge_cols", + "Galaxy tool ids": [ + "mergeCols1" + ], + "Description": "Merge columns together.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "merge_cols", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/merge_cols", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/merge_cols", + "Galaxy wrapper version": "1.0.3", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 542, + "Total tool usage (usegalaxy.eu)": 28593 + }, + { + "Galaxy wrapper id": "microsatellite_birthdeath", + "Galaxy tool ids": [ + "microsatellite_birthdeath" + ], + "Description": "Identify microsatellite births and deaths", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "microsatellite_birthdeath", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsatellite_birthdeath", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsatellite_birthdeath", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "microsats_alignment_level", + "Galaxy tool ids": [ + "microsats_align1" + ], + "Description": "Extract Orthologous Microsatellites from pair-wise alignments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "microsats_alignment_level", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_alignment_level", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsats_alignment_level", + "Galaxy wrapper version": "1.0.0", + "Conda id": "sputnik", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "microsats_mutability", + "Galaxy tool ids": [ + "microsats_mutability1" + ], + "Description": "Estimate microsatellite mutability by specified attributes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "microsats_mutability", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_mutability", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsats_mutability", + "Galaxy wrapper version": "1.1.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mine", + "Galaxy tool ids": [ + "maximal_information_based_nonparametric_exploration" + ], + "Description": "Maximal Information-based Nonparametric Exploration", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "mine", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/mine", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/mine", + "Galaxy wrapper version": "0.0.1", + "Conda id": "MINE", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 11 + }, + { + "Galaxy wrapper id": "multispecies_orthologous_microsats", + "Galaxy tool ids": [ + "multispecies_orthologous_microsats" + ], + "Description": "Extract orthologous microsatellites", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "multispecies_orthologous_microsats", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/multispecies_orthologous_microsats", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/multispecies_orthologous_microsats", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-sputnik", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mutate_snp_codon", + "Galaxy tool ids": [ + "mutate_snp_codon_1" + ], + "Description": "Mutate Codons with SNPs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "mutate_snp_codon", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/mutate_snp_codon", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/mutate_snp_codon", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 47 + }, + { + "Galaxy wrapper id": "partialr_square", + "Galaxy tool ids": [ + "partialRsq" + ], + "Description": "Compute partial R square", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "partialr_square", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/partialr_square", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/partialr_square", + "Galaxy wrapper version": "1.0.0", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pearson_correlation", + "Galaxy tool ids": [ + "Pearson_and_apos_Correlation1" + ], + "Description": "Pearson and apos Correlation between any two numeric columns", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "pearson_correlation", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/pearson_correlation", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/pearson_correlation", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pgsnp2gd_snp", + "Galaxy tool ids": [ + "pgSnp2gd_snp" + ], + "Description": "Convert from pgSnp to gd_snp", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "pgsnp2gd_snp", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/pgsnp2gd_snp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/pgsnp2gd_snp", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pileup_interval", + "Galaxy tool ids": [ + "pileup_interval" + ], + "Description": "Pileup-to-Interval condenses pileup format into ranges of bases", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "pileup_interval", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/pileup_interval", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/pileup_interval", + "Galaxy wrapper version": "1.0.3", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 632 + }, + { + "Galaxy wrapper id": "pileup_parser", + "Galaxy tool ids": [ + "pileup_parser" + ], + "Description": "Filter pileup on coverage and SNPs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-devteam/", + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "pileup_parser", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/pileup_parser", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/pileup_parser", + "Galaxy wrapper version": "1.0.2", + "Conda id": "perl", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 169, + "Total tool usage (usegalaxy.eu)": 3158 + }, + { + "Galaxy wrapper id": "plot_from_lda", + "Galaxy tool ids": [ + "plot_for_lda_output1" + ], + "Description": "Draw ROC plot on \"Perform LDA\" output", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics", + "Statistics" + ], + "ToolShed id": "plot_from_lda", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/plot_from_lda", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/plot_from_lda", + "Galaxy wrapper version": "1.0.1", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 73 + }, + { + "Galaxy wrapper id": "principal_component_analysis", + "Galaxy tool ids": [ + "pca1" + ], + "Description": "Principal Component Analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "principal_component_analysis", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/principal_component_analysis", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/principal_component_analysis", + "Galaxy wrapper version": "1.0.2", + "Conda id": "rpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 88, + "Total tool usage (usegalaxy.eu)": 9989 + }, + { + "Galaxy wrapper id": "quality_filter", + "Galaxy tool ids": [ + "qualityFilter" + ], + "Description": "Filter nucleotides based on quality scores", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "quality_filter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/quality_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/quality_filter", + "Galaxy wrapper version": "1.0.1", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rcve", + "Galaxy tool ids": [ + "rcve1" + ], + "Description": "Compute RCVE", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "rcve", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/rcve", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/rcve", + "Galaxy wrapper version": "1.0.0", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "remove_beginning", + "Galaxy tool ids": [ + "Remove beginning1" + ], + "Description": "Remove lines from the beginning of a file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "remove_beginning", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/remove_beginning", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/remove_beginning", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1409, + "Total tool usage (usegalaxy.eu)": 137310 + }, + { + "Galaxy wrapper id": "rmap", + "Galaxy tool ids": [ + "rmap_wrapper" + ], + "Description": "RMAP for Solexa Short Reads Alignment", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "rmap", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/rmap", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/rmap", + "Galaxy wrapper version": "1.0.0", + "Conda id": "rmap", + "Conda version": "2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rmapq", + "Galaxy tool ids": [ + "rmapq_wrapper" + ], + "Description": "RMAPQ for Solexa Short Reads Alignment with Quality Scores", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "rmapq", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/rmapq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/rmapq", + "Galaxy wrapper version": "1.0.0", + "Conda id": "rmap", + "Conda version": "2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sam2interval", + "Galaxy tool ids": [ + "sam2interval" + ], + "Description": "Convert SAM to interval.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "sam2interval", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/sam2interval", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/sam2interval", + "Galaxy wrapper version": "1.0.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 20, + "Total tool usage (usegalaxy.eu)": 1189 + }, + { + "Galaxy wrapper id": "sam_bitwise_flag_filter", + "Galaxy tool ids": [ + "sam_bw_filter" + ], + "Description": "Filter SAM on bitwise flag values", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "sam_bitwise_flag_filter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/sam_bitwise_flag_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/sam_bitwise_flag_filter", + "Galaxy wrapper version": "1.0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 278 + }, + { + "Galaxy wrapper id": "scatterplot", + "Galaxy tool ids": [ + "scatterplot_rpy" + ], + "Description": "Scatterplot of two numeric columns", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics", + "Statistics" + ], + "ToolShed id": "scatterplot", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/scatterplot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/scatterplot", + "Galaxy wrapper version": "1.0.3", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 61, + "Total tool usage (usegalaxy.eu)": 1677 + }, + { + "Galaxy wrapper id": "short_reads_figure_high_quality_length", + "Galaxy tool ids": [ + "hist_high_quality_score" + ], + "Description": "Histogram of high quality score reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Graphics" + ], + "ToolShed id": "short_reads_figure_high_quality_length", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_high_quality_length", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_figure_high_quality_length", + "Galaxy wrapper version": "1.0.0", + "Conda id": "rpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "short_reads_figure_score", + "Galaxy tool ids": [ + "quality_score_distribution" + ], + "Description": "Build base quality distribution", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Graphics" + ], + "ToolShed id": "short_reads_figure_score", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_score", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_figure_score", + "Galaxy wrapper version": "1.0.2", + "Conda id": "fontconfig", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 163 + }, + { + "Galaxy wrapper id": "short_reads_trim_seq", + "Galaxy tool ids": [ + "trim_reads" + ], + "Description": "Select high quality segments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "short_reads_trim_seq", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_trim_seq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_trim_seq", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 220 + }, + { + "Galaxy wrapper id": "show_beginning", + "Galaxy tool ids": [ + "Show beginning1" + ], + "Description": "Select lines from the beginning of a file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "show_beginning", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/show_beginning", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/show_beginning", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 704, + "Total tool usage (usegalaxy.eu)": 32112 + }, + { + "Galaxy wrapper id": "show_tail", + "Galaxy tool ids": [ + "Show tail1" + ], + "Description": "Select lines from the end of a file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "show_tail", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/show_tail", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/show_tail", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 128, + "Total tool usage (usegalaxy.eu)": 2513 + }, + { + "Galaxy wrapper id": "sicer", + "Galaxy tool ids": [ + "peakcalling_sicer" + ], + "Description": "Statistical approach for the Identification of ChIP-Enriched Regions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://home.gwu.edu/~wpeng/Software.htm", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "sicer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/sicer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/sicer", + "Galaxy wrapper version": "1.1", + "Conda id": "SICER", + "Conda version": "1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 374 + }, + { + "Galaxy wrapper id": "split_paired_reads", + "Galaxy tool ids": [ + "split_paired_reads" + ], + "Description": "Split paired end reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "split_paired_reads", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/split_paired_reads", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/split_paired_reads", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "substitution_rates", + "Galaxy tool ids": [ + "subRate1" + ], + "Description": "Estimate substitution rates for non-coding regions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "substitution_rates", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/substitution_rates", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/substitution_rates", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "substitutions", + "Galaxy tool ids": [ + "substitutions1" + ], + "Description": "Fetch substitutions from pairwise alignments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "substitutions", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/substitutions", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/substitutions", + "Galaxy wrapper version": "1.0.1", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "t_test_two_samples", + "Galaxy tool ids": [ + "t_test_two_samples" + ], + "Description": "T Test for Two Samples", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "t_test_two_samples", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/t_test_two_samples", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/t_test_two_samples", + "Galaxy wrapper version": "1.0.1", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 210 + }, + { + "Galaxy wrapper id": "table_annovar", + "Galaxy tool ids": [ + "table_annovar" + ], + "Description": "Annotate a VCF file using ANNOVAR annotations to produce a tabular file that can be filtered", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "table_annovar", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "Nonehttps://github.com/galaxyproject/tools-devteam/tree/master/tools/table_annovar", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/table_annovar", + "Galaxy wrapper version": "0.2", + "Conda id": "annovar", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "tabular_to_fasta", + "Galaxy tool ids": [ + "tab2fasta" + ], + "Description": "Tabular-to-FASTA", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "tabular_to_fasta", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/tabular_to_fasta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/tabular_to_fasta", + "Galaxy wrapper version": "1.1.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 601, + "Total tool usage (usegalaxy.eu)": 319334 + }, + { + "Galaxy wrapper id": "tophat", + "Galaxy tool ids": [ + "tophat" + ], + "Description": "Tophat for Illumina", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA", + "Next Gen Mappers" + ], + "ToolShed id": "tophat", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat", + "Galaxy wrapper version": "1.5.0", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 1 + }, + { + "Galaxy wrapper id": "tophat2", + "Galaxy tool ids": [ + "tophat2" + ], + "Description": "Tophat - fast splice junction mapper for RNA-Seq reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://ccb.jhu.edu/software/tophat/index.shtml", + "ToolShed categories": [ + "RNA", + "Next Gen Mappers" + ], + "ToolShed id": "tophat2", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat2", + "Galaxy wrapper version": "2.1.1", + "Conda id": "bowtie2", + "Conda version": "2.5.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 312, + "Total tool usage (usegalaxy.eu)": 24167 + }, + { + "Galaxy wrapper id": "tophat_fusion_post", + "Galaxy tool ids": [ + "tophat_fusion_post" + ], + "Description": "Wrapper for Tophat-Fusion post step", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "tophat_fusion_post", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_post", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post", + "Galaxy wrapper version": "0.1", + "Conda id": "blast+", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 216 + }, + { + "Galaxy wrapper id": "trimmer", + "Galaxy tool ids": [ + "trimmer" + ], + "Description": "Trim leading or trailing characters.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "trimmer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/trimmer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/trimmer", + "Galaxy wrapper version": "0.0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 1, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 1, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 1, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 1, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 188, + "Total tool usage (usegalaxy.eu)": 6058 + }, + { + "Galaxy wrapper id": "ucsc_custom_track", + "Galaxy tool ids": [ + "build_ucsc_custom_track_1" + ], + "Description": "Build custom track for UCSC genome browser", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ucsc_custom_track", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_track", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_track", + "Galaxy wrapper version": "1.0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 45, + "Total tool usage (usegalaxy.eu)": 394 + }, + { + "Galaxy wrapper id": "varscan_version_2", + "Galaxy tool ids": [ + "varscan" + ], + "Description": "VarScan wrapper", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://dkoboldt.github.io/varscan/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "varscan_version_2", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/varscan_version_2", + "Galaxy wrapper version": "2.4.2", + "Conda id": "varscan", + "Conda version": "2.4.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 246, + "Total tool usage (usegalaxy.eu)": 5191 + }, + { + "Galaxy wrapper id": "vcf2pgsnp", + "Galaxy tool ids": [ + "vcf2pgSnp" + ], + "Description": "VCF to pgSnp", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcf2pgsnp", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf2pgsnp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf2pgsnp", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 206 + }, + { + "Galaxy wrapper id": "vcf_annotate", + "Galaxy tool ids": [ + "vcf_annotate" + ], + "Description": "Annotate a VCF file (dbSNP, hapmap)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcf_annotate", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_annotate", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_annotate", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 1 + }, + { + "Galaxy wrapper id": "vcf_extract", + "Galaxy tool ids": [ + "vcf_extract" + ], + "Description": "Extract reads from a specified region", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcf_extract", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_extract", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_extract", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "vcf_filter", + "Galaxy tool ids": [ + "vcf_filter" + ], + "Description": "Filter a VCF file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcf_filter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_filter", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 63, + "Total tool usage (usegalaxy.eu)": 388 + }, + { + "Galaxy wrapper id": "vcf_intersect", + "Galaxy tool ids": [ + "vcf_intersect" + ], + "Description": "Generate the intersection of two VCF files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcf_intersect", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_intersect", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_intersect", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 19 + }, + { + "Galaxy wrapper id": "weightedaverage", + "Galaxy tool ids": [ + "wtavg" + ], + "Description": "Assign weighted-average of the values of features overlapping an interval", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "weightedaverage", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/weightedaverage", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/weightedaverage", + "Galaxy wrapper version": "1.0.1", + "Conda id": "galaxy-ops", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "windowsplitter", + "Galaxy tool ids": [ + "winSplitter" + ], + "Description": "Make windows", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "windowsplitter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/windowsplitter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/windowsplitter", + "Galaxy wrapper version": "1.0.1", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 11 + }, + { + "Galaxy wrapper id": "xy_plot", + "Galaxy tool ids": [ + "XY_Plot_1" + ], + "Description": "Plotting tool for multiple series and graph types", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics", + "Statistics" + ], + "ToolShed id": "xy_plot", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tools/xy_plot", + "Galaxy wrapper version": "1.0.2", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 1, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 344, + "Total tool usage (usegalaxy.eu)": 5892 + }, + { + "Galaxy wrapper id": "basecoverage", + "Galaxy tool ids": [ + "gops_basecoverage_1" + ], + "Description": "Base Coverage of all intervals", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "basecoverage", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/basecoverage", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/basecoverage", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 308 + }, + { + "Galaxy wrapper id": "cluster", + "Galaxy tool ids": [ + "gops_cluster_1" + ], + "Description": "Cluster the intervals of a dataset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "cluster", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/cluster", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 801 + }, + { + "Galaxy wrapper id": "complement", + "Galaxy tool ids": [ + "gops_complement_1" + ], + "Description": "Complement intervals of a dataset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "complement", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/complement", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/complement", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 233 + }, + { + "Galaxy wrapper id": "concat", + "Galaxy tool ids": [ + "gops_concat_1" + ], + "Description": "Concatenate two bed files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "concat", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/concat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/concat", + "Galaxy wrapper version": "1.0.1", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 309, + "Total tool usage (usegalaxy.eu)": 564900 + }, + { + "Galaxy wrapper id": "coverage", + "Galaxy tool ids": [ + "gops_coverage_1" + ], + "Description": "Coverage of a set of intervals on second set of intervals", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "coverage", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/coverage", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/coverage", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17, + "Total tool usage (usegalaxy.eu)": 1502 + }, + { + "Galaxy wrapper id": "flanking_features", + "Galaxy tool ids": [ + "flanking_features_1" + ], + "Description": "Fetch closest non-overlapping feature for every interval", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "flanking_features", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/flanking_features", + "Galaxy wrapper version": "4.0.1", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 20, + "Total tool usage (usegalaxy.eu)": 671 + }, + { + "Galaxy wrapper id": "get_flanks", + "Galaxy tool ids": [ + "get_flanks1" + ], + "Description": "Get flanks returns flanking region/s for every gene", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "get_flanks", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/get_flanks", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/get_flanks", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 555, + "Total tool usage (usegalaxy.eu)": 324598 + }, + { + "Galaxy wrapper id": "intersect", + "Galaxy tool ids": [ + "gops_intersect_1" + ], + "Description": "Intersect the intervals of two datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "intersect", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/intersect", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/intersect", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1003, + "Total tool usage (usegalaxy.eu)": 348449 + }, + { + "Galaxy wrapper id": "join", + "Galaxy tool ids": [ + "gops_join_1" + ], + "Description": "Join the intervals of two datasets side-by-side", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "join", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/join", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 284, + "Total tool usage (usegalaxy.eu)": 329556 + }, + { + "Galaxy wrapper id": "merge", + "Galaxy tool ids": [ + "gops_merge_1" + ], + "Description": "Merge the overlapping intervals of a dataset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "merge", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/merge", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/merge", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 193, + "Total tool usage (usegalaxy.eu)": 563676 + }, + { + "Galaxy wrapper id": "subtract", + "Galaxy tool ids": [ + "gops_subtract_1" + ], + "Description": "Subtract the intervals of two datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "subtract", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/subtract", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/subtract", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 182, + "Total tool usage (usegalaxy.eu)": 564229 + }, + { + "Galaxy wrapper id": "subtract_query", + "Galaxy tool ids": [ + "subtract_query1" + ], + "Description": "Subtract Whole Dataset from another dataset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "subtract_query", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/subtract_query", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/subtract_query", + "Galaxy wrapper version": "0.1", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 55, + "Total tool usage (usegalaxy.eu)": 1019 + }, + { + "Galaxy wrapper id": "tables_arithmetic_operations", + "Galaxy tool ids": [ + "tables_arithmetic_operations" + ], + "Description": "Arithmetic Operations on tables", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/gops", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "tables_arithmetic_operations", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/tables_arithmetic_operations", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/tables_arithmetic_operations", + "Galaxy wrapper version": "1.0.0", + "Conda id": "perl", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 2207 + }, + { + "Galaxy wrapper id": "hgv_fundo", + "Galaxy tool ids": [ + "hgv_funDo" + ], + "Description": "FunDO human genes associated with disease terms", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "hgv_fundo", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_fundo", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/hgv_fundo", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hgv_hilbertvis", + "Galaxy tool ids": [ + "hgv_hilbertvis" + ], + "Description": "HVIS visualization of genomic data with the Hilbert curve", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.ebi.ac.uk/huber-srv/hilbert/", + "ToolShed categories": [ + "Graphics", + "Visualization" + ], + "ToolShed id": "hgv_hilbertvis", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_hilbertvis", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/hgv_hilbertvis", + "Galaxy wrapper version": "1.0.0", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "snpfreq", + "Galaxy tool ids": [ + "hgv_snpFreq" + ], + "Description": "snpFreq significant SNPs in case-control data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis", + "Statistics" + ], + "ToolShed id": "snpfreq", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/snpfreq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/snpfreq", + "Galaxy wrapper version": "1.0.1", + "Conda id": "R", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 37 + }, + { + "Galaxy wrapper id": "find_diag_hits", + "Galaxy tool ids": [ + "find_diag_hits" + ], + "Description": "Find diagnostic hits", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/natefoo/taxonomy", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "find_diag_hits", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/find_diag_hits", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/find_diag_hits", + "Galaxy wrapper version": "1.0.0", + "Conda id": "taxonomy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 69 + }, + { + "Galaxy wrapper id": "gi2taxonomy", + "Galaxy tool ids": [ + "Fetch Taxonomic Ranks" + ], + "Description": "Fetch taxonomic representation", + "bio.tool id": "gi2taxonomy", + "bio.tool ids": [ + "gi2taxonomy" + ], + "biii": null, + "bio.tool name": "gi2taxonomy", + "bio.tool description": "The tool fetches taxonomic information for a list of sequence identifiers (i.e. GI numbers, as used by the National Center for Biotechnology Information (NCBI).", + "EDAM operation": [ + "Database search", + "ID mapping" + ], + "EDAM topic": [ + "Taxonomy" + ], + "Status": "To update", + "Source": "https://bitbucket.org/natefoo/taxonomy", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "gi2taxonomy", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/gi2taxonomy", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/gi2taxonomy", + "Galaxy wrapper version": "1.1.1", + "Conda id": "taxonomy", + "Conda version": "0.10.0", + "EDAM operation (no superclasses)": [ + "Database search", + "ID mapping" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 27, + "Total tool usage (usegalaxy.eu)": 660 + }, + { + "Galaxy wrapper id": "kraken2tax", + "Galaxy tool ids": [ + "Kraken2Tax" + ], + "Description": "Convert Kraken output to Galaxy taxonomy data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/natefoo/taxonomy", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "kraken2tax", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/blob/master/tool_collections/taxonomy/kraken2tax/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/kraken2tax", + "Galaxy wrapper version": "1.2+galaxy0", + "Conda id": "gawk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 481, + "Total tool usage (usegalaxy.eu)": 14683 + }, + { + "Galaxy wrapper id": "lca_wrapper", + "Galaxy tool ids": [ + "lca1" + ], + "Description": "Find lowest diagnostic rank", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/natefoo/taxonomy", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "lca_wrapper", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/lca_wrapper", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/lca_wrapper", + "Galaxy wrapper version": "1.0.1", + "Conda id": "taxonomy", + "Conda version": "0.10.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 137 + }, + { + "Galaxy wrapper id": "poisson2test", + "Galaxy tool ids": [ + "poisson2test" + ], + "Description": "Poisson two-sample test", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/natefoo/taxonomy", + "ToolShed categories": [ + "Statistics", + "Metagenomics" + ], + "ToolShed id": "poisson2test", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/poisson2test", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/poisson2test", + "Galaxy wrapper version": "1.0.0", + "Conda id": "taxonomy", + "Conda version": "0.10.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 116 + }, + { + "Galaxy wrapper id": "t2ps", + "Galaxy tool ids": [ + "Draw_phylogram" + ], + "Description": "Draw phylogeny", + "bio.tool id": "t2ps", + "bio.tool ids": [ + "t2ps" + ], + "biii": null, + "bio.tool name": "Draw phylogeny", + "bio.tool description": "\"Given taxonomy representation (produced by *Fetch taxonomic representation* tool) this utility produces a graphical representations of phylogenetic tree in PDF format.\" - Galaxy tool wrapper", + "EDAM operation": [ + "Phylogenetic tree visualisation" + ], + "EDAM topic": [ + "Phylogenomics" + ], + "Status": "To update", + "Source": "https://bitbucket.org/natefoo/taxonomy", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "t2ps", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps", + "Galaxy wrapper version": "1.0.0", + "Conda id": "taxonomy", + "Conda version": "0.10.0", + "EDAM operation (no superclasses)": [ + "Phylogenetic tree visualisation" + ], + "EDAM topic (no superclasses)": [ + "Phylogenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 31, + "Total tool usage (usegalaxy.eu)": 457 + }, + { + "Galaxy wrapper id": "t2t_report", + "Galaxy tool ids": [ + "t2t_report" + ], + "Description": "Summarize taxonomy", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/natefoo/taxonomy", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "t2t_report", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/t2t_report", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2t_report", + "Galaxy wrapper version": "1.0.0", + "Conda id": "taxonomy", + "Conda version": "0.10.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 26, + "Total tool usage (usegalaxy.eu)": 947 + }, + { + "Galaxy wrapper id": "vcftools_annotate", + "Galaxy tool ids": [ + "vcftools_annotate" + ], + "Description": "Annotate VCF using custom/user-defined annotations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://vcftools.github.io/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcftools_annotate", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_annotate", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_annotate", + "Galaxy wrapper version": "0.1", + "Conda id": "echo", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 24, + "Total tool usage (usegalaxy.eu)": 171 + }, + { + "Galaxy wrapper id": "vcftools_compare", + "Galaxy tool ids": [ + "vcftools_compare" + ], + "Description": "Compare VCF files to get overlap and uniqueness statistics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://vcftools.github.io/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcftools_compare", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_compare", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_compare", + "Galaxy wrapper version": "0.1", + "Conda id": "tabix", + "Conda version": "1.11", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 34, + "Total tool usage (usegalaxy.eu)": 531 + }, + { + "Galaxy wrapper id": "vcftools_consensus", + "Galaxy tool ids": [ + "vcftools_consensus" + ], + "Description": "Apply VCF variants to a fasta file to create consensus sequence", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://vcftools.github.io/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcftools_consensus", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_consensus", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_consensus", + "Galaxy wrapper version": "0.1.11", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "vcftools_isec", + "Galaxy tool ids": [ + "vcftools_isec" + ], + "Description": "Intersect multiple VCF datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://vcftools.github.io/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcftools_isec", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_isec", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_isec", + "Galaxy wrapper version": "0.1.1", + "Conda id": "tabix", + "Conda version": "1.11", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 35, + "Total tool usage (usegalaxy.eu)": 498 + }, + { + "Galaxy wrapper id": "vcftools_merge", + "Galaxy tool ids": [ + "vcftools_merge" + ], + "Description": "Merge multiple VCF datasets into a single dataset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://vcftools.github.io/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcftools_merge", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_merge", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_merge", + "Galaxy wrapper version": "0.1.11", + "Conda id": "tabix", + "Conda version": "1.11", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 68, + "Total tool usage (usegalaxy.eu)": 953 + }, + { + "Galaxy wrapper id": "vcftools_slice", + "Galaxy tool ids": [ + "vcftools_slice" + ], + "Description": "Subset VCF dataset by genomic regions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://vcftools.github.io/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcftools_slice", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_slice", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_slice", + "Galaxy wrapper version": "0.1", + "Conda id": "echo", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 24, + "Total tool usage (usegalaxy.eu)": 411 + }, + { + "Galaxy wrapper id": "vcftools_subset", + "Galaxy tool ids": [ + "vcftools_subset" + ], + "Description": "Select samples from a VCF dataset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://vcftools.github.io/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcftools_subset", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_subset", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_subset", + "Galaxy wrapper version": "0.1", + "Conda id": "tabix", + "Conda version": "1.11", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17, + "Total tool usage (usegalaxy.eu)": 137 + }, + { + "Galaxy wrapper id": "10x_bamtofastq", + "Galaxy tool ids": [ + "10x_bamtofastq" + ], + "Description": "Converts 10x Genomics BAM to FASTQ", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/10XGenomics/bamtofastq", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "10x_bamtofastq", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/10x_bamtofastq", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/10x_bamtofastq", + "Galaxy wrapper version": "1.4.1", + "Conda id": "10x_bamtofastq", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 46, + "Total tool usage (usegalaxy.eu)": 228 + }, + { + "Galaxy wrapper id": "AggregateAlignments", + "Galaxy tool ids": [ + "graphclust_aggregate_alignments" + ], + "Description": "Aggregate and filter alignment metrics of individual clusters, like the output of graphclust_align_cluster.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_aggregate_alignments", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tools/GraphClust/AggregateAlignments", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/AggregateAlignments", + "Galaxy wrapper version": "0.6.0", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 116 + }, + { + "Galaxy wrapper id": "AlignCluster", + "Galaxy tool ids": [ + "graphclust_align_cluster" + ], + "Description": "Align predicted clusters of glob_report_no_align step with locarna and conservation analysis and visualizations.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_align_cluster", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tools/GraphClust/AlignCluster", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/AlignCluster", + "Galaxy wrapper version": "0.1", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 3060 + }, + { + "Galaxy wrapper id": "CMFinder", + "Galaxy tool ids": [ + "cmFinder" + ], + "Description": "Determines consensus motives for sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_cmfinder", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinder", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinder", + "Galaxy wrapper version": "0.4", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 45191 + }, + { + "Galaxy wrapper id": "CollectResults", + "Galaxy tool ids": [ + "glob_report" + ], + "Description": "Post-processing. Redundant clusters are merged and instances that belong to multiple clusters are assigned unambiguously. For every pair of clusters, the relative overlap (i.e. the fraction of instances that occur in both clusters) is computed and clusters are merged if the overlap exceeds 50%. instances that occur in both clusters) is computed and clusters are merged if the overlap exceeds 50%.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_postprocessing", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResults", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResults", + "Galaxy wrapper version": "0.5", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 1961 + }, + { + "Galaxy wrapper id": "CollectResultsNoAlign", + "Galaxy tool ids": [ + "graphclust_glob_report_no_align" + ], + "Description": "Redundant GraphClust clusters are merged and instances that belong to multiple clusters are assigned unambiguously.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_postprocessing_no_align", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultsNoAlign", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultsNoAlign", + "Galaxy wrapper version": "0.5", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 108 + }, + { + "Galaxy wrapper id": "GSPAN", + "Galaxy tool ids": [ + "gspan" + ], + "Description": "Second step of GraphClust", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_fasta_to_gspan", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPAN", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPAN", + "Galaxy wrapper version": "0.4", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 133 + }, + { + "Galaxy wrapper id": "LocARNAGraphClust", + "Galaxy tool ids": [ + "locarna_best_subtree" + ], + "Description": "MLocARNA computes a multiple sequence-structure alignment of RNA sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_mlocarna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClust", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClust", + "Galaxy wrapper version": "0.4", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 45325 + }, + { + "Galaxy wrapper id": "NSPDK", + "Galaxy tool ids": [ + "NSPDK_candidateClust", + "nspdk_sparse" + ], + "Description": "Produces an explicit sparse feature encoding and copmutes global feature index and returns top dense sets.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_nspdk", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/NSPDK", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/NSPDK", + "Galaxy wrapper version": "9.2.3.1", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 28, + "Total tool usage (usegalaxy.eu)": 62388 + }, + { + "Galaxy wrapper id": "Plotting", + "Galaxy tool ids": [ + "motifFinderPlot" + ], + "Description": "Plotting results for GraphClust", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_motif_finder_plot", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/eteriSokhoyan/galaxytools/tree/master/tools/GraphClust/Plotting", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Plotting", + "Galaxy wrapper version": "0.4", + "Conda id": "seaborn", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 68 + }, + { + "Galaxy wrapper id": "PrepareForMlocarna", + "Galaxy tool ids": [ + "preMloc" + ], + "Description": "This tool prepares files for locarna step.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_prepocessing_for_mlocarna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarna", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarna", + "Galaxy wrapper version": "0.4", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 1932 + }, + { + "Galaxy wrapper id": "Preprocessing", + "Galaxy tool ids": [ + "preproc" + ], + "Description": "Preprocessing input for GraphClust", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust_preprocessing", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Preprocessing", + "Galaxy wrapper version": "0.5", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 18, + "Total tool usage (usegalaxy.eu)": 1758 + }, + { + "Galaxy wrapper id": "Structure_GSPAN", + "Galaxy tool ids": [ + "structure_to_gspan" + ], + "Description": "Convert RNA structure to GSPAN graphs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "structure_to_gspan", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/mmiladi/galaxytools/blob/graphclust-gspan/tools/GraphClust/Structure_GSPAN", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Structure_GSPAN", + "Galaxy wrapper version": "0.4", + "Conda id": "graphclust-wrappers", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 2925 + }, + { + "Galaxy wrapper id": "agat", + "Galaxy tool ids": [ + "agat" + ], + "Description": "GTF/GFF analysis toolkit", + "bio.tool id": "agat", + "bio.tool ids": [ + "agat" + ], + "biii": null, + "bio.tool name": "AGAT", + "bio.tool description": "Another Gff Analysis Toolkit (AGAT)Suite of tools to handle gene annotations in any GTF/GFF format.", + "EDAM operation": [ + "Data handling", + "Genome annotation" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/NBISweden/AGAT", + "ToolShed categories": [ + "Convert Formats", + "Statistics", + "Fasta Manipulation" + ], + "ToolShed id": "agat", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/agat", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/agat", + "Galaxy wrapper version": "1.4.0", + "Conda id": "agat", + "Conda version": "1.4.0", + "EDAM operation (no superclasses)": [ + "Data handling", + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 42, + "Total tool usage (usegalaxy.eu)": 481 + }, + { + "Galaxy wrapper id": "antismash", + "Galaxy tool ids": [ + "antismash" + ], + "Description": "Antismash allows the genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters", + "bio.tool id": "antismash", + "bio.tool ids": [ + "antismash" + ], + "biii": null, + "bio.tool name": "antiSMASH", + "bio.tool description": "Rapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. It integrates and cross-links with a large number of in silico secondary metabolite analysis tools that have been published earlier.", + "EDAM operation": [ + "Sequence clustering", + "Gene prediction", + "Differential gene expression analysis" + ], + "EDAM topic": [ + "Molecular interactions, pathways and networks", + "Gene and protein families" + ], + "Status": "To update", + "Source": "https://antismash.secondarymetabolites.org", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "antismash", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/antismash", + "Galaxy wrapper version": "6.1.1", + "Conda id": "antismash", + "Conda version": "7.1.0", + "EDAM operation (no superclasses)": [ + "Sequence clustering", + "Gene prediction", + "Differential gene expression analysis" + ], + "EDAM topic (no superclasses)": [ + "Molecular interactions, pathways and networks", + "Gene and protein families" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 1, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 279, + "Total tool usage (usegalaxy.eu)": 14596 + }, + { + "Galaxy wrapper id": "atactk_trim_adapters", + "Galaxy tool ids": [ + "atactk_trim_adapters" + ], + "Description": "Trim adapters from paired-end HTS reads.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ParkerLab/atactk/", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "atactk_trim_adapters", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/blob/master/tools/trim_adapters", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/atactk_trim_adapters", + "Galaxy wrapper version": "0.1.6", + "Conda id": "atactk", + "Conda version": "0.1.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 26, + "Total tool usage (usegalaxy.eu)": 257 + }, + { + "Galaxy wrapper id": "augustus", + "Galaxy tool ids": [ + "augustus" + ], + "Description": "AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://bioinf.uni-greifswald.de/augustus/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "augustus", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/augustus", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/augustus", + "Galaxy wrapper version": "3.1.0", + "Conda id": "augustus", + "Conda version": "3.5.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 516, + "Total tool usage (usegalaxy.eu)": 8864 + }, + { + "Galaxy wrapper id": "bamhash", + "Galaxy tool ids": [ + "bamhash" + ], + "Description": "Hash BAM and FASTQ files to verify data integrity", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/DecodeGenetics/BamHash", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bamhash", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/bamhash", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/bamhash", + "Galaxy wrapper version": "1.1", + "Conda id": "bamhash", + "Conda version": "1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 169 + }, + { + "Galaxy wrapper id": "barcode_collapse", + "Galaxy tool ids": [ + "barcode_collapse" + ], + "Description": "Paired End randomer aware duplicate removal algorithm", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/YeoLab/gscripts", + "ToolShed categories": [ + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "barcode_collapse", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapse", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapse", + "Galaxy wrapper version": "0.1.0", + "Conda id": "pysam", + "Conda version": "0.22.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bigwig_to_bedgraph", + "Galaxy tool ids": [ + "bigwig_to_bedgraph" + ], + "Description": "Convert from bigWig to bedGraph format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "bigwig_to_bedgraph", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/bigwig_to_bedgraph", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/bigwig_to_bedgraph", + "Galaxy wrapper version": "0.1.0", + "Conda id": "ucsc_tools", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 200, + "Total tool usage (usegalaxy.eu)": 5749 + }, + { + "Galaxy wrapper id": "bioimaging", + "Galaxy tool ids": [ + "bioimage_inference" + ], + "Description": "Load model from BioImage.IO and make inferences", + "bio.tool id": "pytorch", + "bio.tool ids": [ + "pytorch" + ], + "biii": "pytorch", + "bio.tool name": "PyTorch", + "bio.tool description": "PyTorch is an optimized tensor library for deep learning using GPUs and CPUs.", + "EDAM operation": [], + "EDAM topic": [ + "Machine learning", + "Computer science" + ], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "bioimage_inference", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/recommendation_training/tools/bioimaging", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/bioimaging", + "Galaxy wrapper version": "2.3.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Machine learning" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "biomodelsML", + "Galaxy tool ids": [ + "biomodels_biomd0000001066", + "biomodels_biomd0000001076" + ], + "Description": "Wrappers for tools to bring BioModels AI models into Galaxy.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.ebi.ac.uk/biomodels/", + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "biomodels", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML", + "Galaxy wrapper version": "1.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 13 + }, + { + "Galaxy wrapper id": "bionano", + "Galaxy tool ids": [ + "bionano_scaffold" + ], + "Description": "Bionano Solve is a set of tools for analyzing Bionano data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bionanogenomics.com/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "bionano", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/bionano", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/bionano", + "Galaxy wrapper version": "3.7.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 112, + "Total tool usage (usegalaxy.eu)": 531 + }, + { + "Galaxy wrapper id": "bismark", + "Galaxy tool ids": [ + "bismark_pretty_report", + "bismark_bowtie2", + "bismark_deduplicate", + "bismark_methylation_extractor" + ], + "Description": "A tool to map bisulfite converted sequence reads and determine cytosine methylation states", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.bioinformatics.babraham.ac.uk/projects/bismark/", + "ToolShed categories": [ + "Sequence Analysis", + "Next Gen Mappers" + ], + "ToolShed id": "bismark", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/bismark", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/bismark", + "Galaxy wrapper version": "0.22.1", + "Conda id": "bismark", + "Conda version": "0.24.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 4, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 4, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 4, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 332, + "Total tool usage (usegalaxy.eu)": 12876 + }, + { + "Galaxy wrapper id": "blobtoolkit", + "Galaxy tool ids": [ + "blobtoolkit" + ], + "Description": "Identification and isolation non-target data in draft and publicly available genome assemblies.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://blobtoolkit.genomehubs.org/", + "ToolShed categories": [ + "Sequence Analysis", + "Assembly" + ], + "ToolShed id": "blobtoolkit", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit", + "Galaxy wrapper version": "4.0.7", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 685 + }, + { + "Galaxy wrapper id": "blockbuster", + "Galaxy tool ids": [ + "blockbuster" + ], + "Description": "Blockbuster detects blocks of overlapping reads using a gaussian-distribution approach.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://hoffmann.bioinf.uni-leipzig.de/LIFE/blockbuster.html", + "ToolShed categories": [ + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "blockbuster", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/blockbuster", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/blockbuster", + "Galaxy wrapper version": "0.1.2", + "Conda id": "blockbuster", + "Conda version": "0.0.1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 34, + "Total tool usage (usegalaxy.eu)": 3009 + }, + { + "Galaxy wrapper id": "canu", + "Galaxy tool ids": [ + "canu" + ], + "Description": "Canu is a hierarchical assembly pipeline designed for high-noise single-molecule sequencing (such as the PacBio RS II/Sequel or Oxford Nanopore MinION).", + "bio.tool id": "canu", + "bio.tool ids": [ + "canu" + ], + "biii": null, + "bio.tool name": "CANU", + "bio.tool description": "De-novo assembly tool for long read chemistry like Nanopore data and PacBio data.", + "EDAM operation": [ + "De-novo assembly" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/marbl/canu", + "ToolShed categories": [], + "ToolShed id": "canu", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/canu", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/canu", + "Galaxy wrapper version": "2.2", + "Conda id": "canu", + "Conda version": "2.2", + "EDAM operation (no superclasses)": [ + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 533, + "Total tool usage (usegalaxy.eu)": 13021 + }, + { + "Galaxy wrapper id": "cellpose", + "Galaxy tool ids": [ + "cellpose" + ], + "Description": "Cellpose is an anatomical segmentation algorithm", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/MouseLand/cellpose", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "cellpose", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/cellpose", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/cellpose", + "Galaxy wrapper version": "3.0.10", + "Conda id": "cellpose", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cellprofiler", + "Galaxy tool ids": [ + "cp_cellprofiler", + "cp_color_to_gray", + "cp_convert_objects_to_image", + "cp_display_data_on_image", + "cp_enhance_or_suppress_features", + "cp_export_to_spreadsheet", + "cp_gray_to_color", + "cp_identify_primary_objects", + "cp_image_math", + "cp_mask_image", + "cp_measure_granularity", + "cp_measure_image_area_occupied", + "cp_measure_image_intensity", + "cp_measure_image_quality", + "cp_measure_object_intensity", + "cp_measure_object_size_shape", + "cp_measure_texture", + "cp_overlay_outlines", + "cp_relate_objects", + "cp_save_images", + "cp_common", + "cp_tile", + "cp_track_objects" + ], + "Description": "cellProfiler wrapper", + "bio.tool id": "CellProfiler", + "bio.tool ids": [ + "CellProfiler" + ], + "biii": "cellprofiler", + "bio.tool name": "CellProfiler", + "bio.tool description": "Tool for quantifying data from biological images, particularly in high-throughput experiments.", + "EDAM operation": [ + "Quantification", + "Image analysis", + "Parsing" + ], + "EDAM topic": [ + "Imaging", + "Microarray experiment", + "Genotype and phenotype" + ], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "cellprofiler", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Quantification", + "Image analysis", + "Parsing" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Microarray experiment", + "Genotype and phenotype" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 23, + "Available on UseGalaxy.eu": 23, + "Available on UseGalaxy.fr": 19, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 23, + "Tools available on UseGalaxy.eu": 23, + "Tools available on UseGalaxy.fr": 19, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 23, + "Tools available on UseGalaxy.no": 19, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 178, + "Total tool usage (usegalaxy.eu)": 4614 + }, + { + "Galaxy wrapper id": "cellprofiler_v4", + "Galaxy tool ids": [ + "cp_cellprofiler4" + ], + "Description": "cellProfiler4 wrapper", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/CellProfiler/CellProfiler", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "cellprofiler4", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v4", + "Galaxy wrapper version": "4.2.7", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 43 + }, + { + "Galaxy wrapper id": "chatgpt", + "Galaxy tool ids": [ + "chatgpt_openai_api" + ], + "Description": "Using the OpenAI GPT models to generate text based on user input.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt", + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "chatgpt_openai_api", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt", + "Galaxy wrapper version": "2024", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "chipseeker", + "Galaxy tool ids": [ + "chipseeker" + ], + "Description": "A tool for ChIP peak annotation and visualization", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/ChIPseeker.html", + "ToolShed categories": [ + "ChIP-seq", + "Genome annotation" + ], + "ToolShed id": "chipseeker", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker", + "Galaxy wrapper version": "1.32.0", + "Conda id": "bioconductor-chipseeker", + "Conda version": "1.38.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 418, + "Total tool usage (usegalaxy.eu)": 15690 + }, + { + "Galaxy wrapper id": "circexplorer", + "Galaxy tool ids": [ + "circexplorer" + ], + "Description": "A combined strategy to identify circular RNAs (circRNAs and ciRNAs)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/YangLab/CIRCexplorer", + "ToolShed categories": [ + "Sequence Analysis", + "RNA" + ], + "ToolShed id": "circexplorer", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/circexplorer", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/circexplorer", + "Galaxy wrapper version": "1.1.9.0", + "Conda id": "circexplorer", + "Conda version": "1.1.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 251 + }, + { + "Galaxy wrapper id": "combine_metaphlan_humann", + "Galaxy tool ids": [ + "combine_metaphlan_humann" + ], + "Description": "Combine MetaPhlAn2 and HUMAnN2 outputs to relate genus/species abundances and gene families/pathways abundances", + "bio.tool id": "combine_metaphlan_and_humann", + "bio.tool ids": [ + "combine_metaphlan_and_humann" + ], + "biii": null, + "bio.tool name": "Combine Metaphlan and HUMAnN", + "bio.tool description": "This tool combine MetaPhlAn outputs and HUMANnN outputs", + "EDAM operation": [ + "Aggregation" + ], + "EDAM topic": [ + "Metagenomics", + "Molecular interactions, pathways and networks" + ], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "combine_metaphlan2_humann2", + "Galaxy wrapper owner": "bebatut", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan2_humann2", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan_humann", + "Galaxy wrapper version": "0.3.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Aggregation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Molecular interactions, pathways and networks" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 147 + }, + { + "Galaxy wrapper id": "compare_humann2_output", + "Galaxy tool ids": [ + "compare_humann2_output" + ], + "Description": "Compare outputs of HUMAnN2 for several samples and extract similar and specific information", + "bio.tool id": "compare_humann2_outputs", + "bio.tool ids": [ + "compare_humann2_outputs" + ], + "biii": null, + "bio.tool name": "Compare HUMAnN2 outputs", + "bio.tool description": "This tool compare HUMANnN2 outputs with gene families or pathways and their relative abundances between several samples", + "EDAM operation": [ + "Comparison" + ], + "EDAM topic": [ + "Metagenomics", + "Gene and protein families" + ], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "compare_humann2_output", + "Galaxy wrapper owner": "bebatut", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output", + "Galaxy wrapper version": "0.2.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Comparison" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Gene and protein families" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 332 + }, + { + "Galaxy wrapper id": "cpat", + "Galaxy tool ids": [ + "cpat" + ], + "Description": "Coding-potential assessment tool using an alignment-free logistic regression model.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/liguowang/cpat", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cpat", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/cpat", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/cpat", + "Galaxy wrapper version": "3.0.5", + "Conda id": "cpat", + "Conda version": "3.0.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 134 + }, + { + "Galaxy wrapper id": "crt", + "Galaxy tool ids": [ + "crispr_recognition_tool" + ], + "Description": "CRISPR Recognition Tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "crispr_recognition_tool", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/crt", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/crt", + "Galaxy wrapper version": "1.2.0", + "Conda id": "crisper_recognition_tool", + "Conda version": "1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 74, + "Total tool usage (usegalaxy.eu)": 3389 + }, + { + "Galaxy wrapper id": "diff", + "Galaxy tool ids": [ + "diff" + ], + "Description": "GNU diff tool that calculates the differences between two files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.gnu.org/software/diffutils/", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "diff", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/diff", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/diff", + "Galaxy wrapper version": "3.7", + "Conda id": "diffutils", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 30, + "Total tool usage (usegalaxy.eu)": 235 + }, + { + "Galaxy wrapper id": "diffbind", + "Galaxy tool ids": [], + "Description": "Diffbind provides functions for processing ChIP-Seq data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://bioconductor.org/packages/release/bioc/html/DiffBind.html", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "diffbind", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/diffbind", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/diffbind", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ear", + "Galaxy tool ids": [ + "make_ear" + ], + "Description": "A tool to compile assembly reports and stastics from assembly pipeline", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ERGA-consortium/EARs/tree/main", + "ToolShed categories": [ + "Sequence Analysis", + "Assembly" + ], + "ToolShed id": "erga_ear", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/ERGA-consortium/EARs/tree/main", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/ear", + "Galaxy wrapper version": "24.08.26", + "Conda id": "reportlab", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "edta", + "Galaxy tool ids": [ + "edta" + ], + "Description": "The EDTA package was designed to filter out false discoveries in raw TE candidates and generate a high-quality non-redundant TE library for whole-genome TE annotations. ", + "bio.tool id": "edta", + "bio.tool ids": [ + "edta" + ], + "biii": null, + "bio.tool name": "The Extensive de novo TE Annotator (EDTA)", + "bio.tool description": "The EDTA package was designed to filter out false discoveries in raw TE candidates and generate a high-quality non-redundant TE library for whole-genome TE annotations. Selection of initial search programs were based on benckmarkings on the annotation performance using a manually curated TE library in the rice genome.", + "EDAM operation": [ + "De-novo assembly", + "Deisotoping", + "Genome annotation" + ], + "EDAM topic": [ + "Workflows", + "Mobile genetic elements", + "Plant biology", + "Transcription factors and regulatory sites", + "Model organisms" + ], + "Status": "To update", + "Source": "https://github.com/oushujun/EDTA", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "edta", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/edta", + "Galaxy wrapper version": null, + "Conda id": "edta", + "Conda version": "2.2.0", + "EDAM operation (no superclasses)": [ + "De-novo assembly", + "Deisotoping", + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Workflows", + "Mobile genetic elements", + "Plant biology", + "Transcription factors and regulatory sites", + "Model organisms" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 58, + "Total tool usage (usegalaxy.eu)": 484 + }, + { + "Galaxy wrapper id": "epicseg", + "Galaxy tool ids": [ + "epicseg_segment" + ], + "Description": "EpiCSeg is a tool for conducting chromatin segmentation.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/lamortenera/epicseg", + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "epicseg", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/epicseg", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/epicseg", + "Galaxy wrapper version": "@VERSION_STRING@", + "Conda id": "epicseg", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 245 + }, + { + "Galaxy wrapper id": "fastq_info", + "Galaxy tool ids": [ + "fastq_info" + ], + "Description": "FASTQ info allows to validate single or paired fastq files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/nunofonseca/fastq_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_info", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/fastq_info", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/fastq_info", + "Galaxy wrapper version": "0.25.1", + "Conda id": "fastq_utils", + "Conda version": "0.25.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 679, + "Total tool usage (usegalaxy.eu)": 5765 + }, + { + "Galaxy wrapper id": "file_manipulation", + "Galaxy tool ids": [ + "bg_uniq" + ], + "Description": "This tool returns all unique lines from a tab-separated file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/file_manipulation", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "unique", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/file_manipulation", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/file_manipulation", + "Galaxy wrapper version": "0.4", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 176, + "Total tool usage (usegalaxy.eu)": 8496 + }, + { + "Galaxy wrapper id": "find_subsequences", + "Galaxy tool ids": [ + "bg_find_subsequences" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "find_subsequences", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/find_subsequences", + "Galaxy wrapper version": "0.3", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 31, + "Total tool usage (usegalaxy.eu)": 763 + }, + { + "Galaxy wrapper id": "flexynesis", + "Galaxy tool ids": [ + "flexynesis" + ], + "Description": "This is a deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/BIMSBbioinfo/flexynesis/tree/main", + "ToolShed categories": [ + "Machine Learning", + "Statistics", + "Systems Biology" + ], + "ToolShed id": "flexynesis", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/flexynesis", + "Galaxy wrapper version": "0.2.10", + "Conda id": "flexynesis", + "Conda version": "0.2.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "flye", + "Galaxy tool ids": [ + "flye" + ], + "Description": "Assembly of long and error-prone reads.", + "bio.tool id": "Flye", + "bio.tool ids": [ + "Flye" + ], + "biii": null, + "bio.tool name": "Flye", + "bio.tool description": "Flye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs.", + "EDAM operation": [ + "Genome assembly", + "De-novo assembly", + "Mapping assembly", + "Cross-assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "Metagenomics", + "Whole genome sequencing", + "Genomics" + ], + "Status": "To update", + "Source": "https://github.com/fenderglass/Flye/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "flye", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/flye", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/flye", + "Galaxy wrapper version": "2.9.4", + "Conda id": "flye", + "Conda version": "2.9.5", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "De-novo assembly", + "Mapping assembly", + "Cross-assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Metagenomics", + "Whole genome sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1499, + "Total tool usage (usegalaxy.eu)": 20904 + }, + { + "Galaxy wrapper id": "footprint", + "Galaxy tool ids": [ + "footprint" + ], + "Description": "Find transcription factor footprints", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://ohlerlab.mdc-berlin.de/software/Reproducible_footprinting_139/", + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "footprint", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/footprint", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/footprint", + "Galaxy wrapper version": "1.0.0", + "Conda id": "footprint", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 57 + }, + { + "Galaxy wrapper id": "format_cd_hit_output", + "Galaxy tool ids": [ + "format_cd_hit_output" + ], + "Description": "Format CD-hit output to rename representative sequences with cluster name and/or extract distribution inside clusters given a mapping file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "format_cd_hit_output", + "Galaxy wrapper owner": "bebatut", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output", + "Galaxy wrapper version": "1.0.0+galaxy1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 20, + "Total tool usage (usegalaxy.eu)": 166 + }, + { + "Galaxy wrapper id": "format_metaphlan2_output", + "Galaxy tool ids": [ + "format_metaphlan2_output" + ], + "Description": "Format MetaPhlAn2 output to extract abundance at different taxonomic levels", + "bio.tool id": "format_metaphlan2_output", + "bio.tool ids": [ + "format_metaphlan2_output" + ], + "biii": null, + "bio.tool name": "Format metaphlan2 output", + "bio.tool description": "This tool format output file of MetaPhlan2 containing community content (abundance) at all taxonomic levels (from kingdom to strains).", + "EDAM operation": [ + "Formatting" + ], + "EDAM topic": [ + "Taxonomy", + "Metagenomics" + ], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "format_metaphlan2_output", + "Galaxy wrapper owner": "bebatut", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output", + "Galaxy wrapper version": "0.2.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Formatting" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 166, + "Total tool usage (usegalaxy.eu)": 5588 + }, + { + "Galaxy wrapper id": "gfastats", + "Galaxy tool ids": [ + "gfastats" + ], + "Description": "Tool for generating sequence statistics and simultaneous genome assembly file manipulation.", + "bio.tool id": "gfastats", + "bio.tool ids": [ + "gfastats" + ], + "biii": null, + "bio.tool name": "gfastats", + "bio.tool description": "gfastats is a single fast and exhaustive tool for summary statistics and simultaneous genome assembly file manipulation. gfastats also allows seamless fasta/fastq/gfa conversion.", + "EDAM operation": [ + "Data handling" + ], + "EDAM topic": [ + "Computational biology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/vgl-hub/gfastats", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "gfastats", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/gfastats", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/gfastats", + "Galaxy wrapper version": "1.3.6", + "Conda id": "gfastats", + "Conda version": "1.3.6", + "EDAM operation (no superclasses)": [ + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Computational biology" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 418, + "Total tool usage (usegalaxy.eu)": 8159 + }, + { + "Galaxy wrapper id": "glimmer_hmm", + "Galaxy tool ids": [], + "Description": "GlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model (GHMM)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://ccb.jhu.edu/software/glimmerhmm/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "glimmer_hmm", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gotohscan", + "Galaxy tool ids": [ + "rbc_gotohscan" + ], + "Description": "Find subsequences in db", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "gotohscan", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/gotohscan", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/gotohscan", + "Galaxy wrapper version": "1.3.0", + "Conda id": "gotohscan", + "Conda version": "1.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 71 + }, + { + "Galaxy wrapper id": "graph_converter", + "Galaxy tool ids": [ + "graph_converter" + ], + "Description": "Convert between different graph formats", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "graph_converter", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/graph_converter", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/graph_converter", + "Galaxy wrapper version": "0.1.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "graphclust", + "Galaxy tool ids": [ + "graphclust" + ], + "Description": "GraphClust can be used for structural clustering of RNA sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.bioinf.uni-freiburg.de/Software/GraphClust/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "graphclust", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/graphclust", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/graphclust", + "Galaxy wrapper version": "0.1", + "Conda id": "GraphClust", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 6 + }, + { + "Galaxy wrapper id": "graphmap", + "Galaxy tool ids": [ + "graphmap_align", + "graphmap_overlap" + ], + "Description": "Mapper for long, error-prone reads.", + "bio.tool id": "graphmap", + "bio.tool ids": [ + "graphmap" + ], + "biii": null, + "bio.tool name": "graphmap", + "bio.tool description": "Splice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1", + "EDAM operation": [ + "Sequence trimming", + "EST assembly", + "Read mapping" + ], + "EDAM topic": [ + "Gene transcripts", + "RNA-Seq", + "RNA splicing" + ], + "Status": "To update", + "Source": "https://github.com/isovic/graphmap/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "graphmap", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/graphmap", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/graphmap", + "Galaxy wrapper version": "0.5.2", + "Conda id": "graphmap", + "Conda version": "0.6.3", + "EDAM operation (no superclasses)": [ + "Sequence trimming", + "EST assembly", + "Read mapping" + ], + "EDAM topic (no superclasses)": [ + "Gene transcripts", + "RNA-Seq", + "RNA splicing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 136, + "Total tool usage (usegalaxy.eu)": 6651 + }, + { + "Galaxy wrapper id": "hclust2", + "Galaxy tool ids": [ + "hclust2" + ], + "Description": "Plots heatmaps", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/nsegata/hclust2/", + "ToolShed categories": [ + "Data Visualization" + ], + "ToolShed id": "hclust2", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/yuanbit/galaxytools/tree/hclust2/tools/hclust2", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/hclust2", + "Galaxy wrapper version": "0.99", + "Conda id": "hclust2", + "Conda version": "1.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hictk", + "Galaxy tool ids": [ + "hictk" + ], + "Description": "Convert cooler to juicebox_hic", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/paulsengroup/hictk", + "ToolShed categories": [ + "Convert Formats", + "Epigenetics" + ], + "ToolShed id": "hictk", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/hictk", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/hictk", + "Galaxy wrapper version": "1.0.0", + "Conda id": "hictk", + "Conda version": "1.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hicup", + "Galaxy tool ids": [ + "hicup2juicer", + "hicup_deduplicator", + "hicup_digester", + "hicup_filter", + "hicup_hicup", + "hicup_mapper", + "hicup_truncater" + ], + "Description": "The HiCUP-Pipeline from the Bioinformatics Babraham Institute.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.bioinformatics.babraham.ac.uk/projects/hicup/read_the_docs/html/index.html", + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "hicup", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/hicup", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/hicup", + "Galaxy wrapper version": "0.9.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 7, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 7, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 6, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 76, + "Total tool usage (usegalaxy.eu)": 921 + }, + { + "Galaxy wrapper id": "homer", + "Galaxy tool ids": [], + "Description": "Software for motif discovery and next generation sequencing analysis.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://homer.salk.edu/homer/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "homer", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/homer", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/homer", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "illumina_methylation_analyser", + "Galaxy tool ids": [ + "illumina_methylation_analyser" + ], + "Description": "Methylation analyzer for Illumina 450k DNA emthylation microarrays", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "illumina_methylation_analyser", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser", + "Galaxy wrapper version": "0.1", + "Conda id": "Rscript", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bia-ftplinks", + "Galaxy tool ids": [ + "bia_download" + ], + "Description": "Tool to query ftp links for study from bioimage archive", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "bia_download", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/bia-ftplinks", + "Galaxy wrapper version": "0.1.0", + "Conda id": "wget", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 2 + }, + { + "Galaxy wrapper id": "graphicsmagick", + "Galaxy tool ids": [ + "graphicsmagick_image_compare", + "graphicsmagick_image_convert", + "graphicsmagick_image_montage" + ], + "Description": "Contains tools based on GraphicsMagick", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.graphicsmagick.org", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "graphicsmagick", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/new/gm/tools/image_processing/image_processing/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/graphicsmagick", + "Galaxy wrapper version": "1.3.44", + "Conda id": "graphicsmagick", + "Conda version": "1.3.26", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 43, + "Total tool usage (usegalaxy.eu)": 2605 + }, + { + "Galaxy wrapper id": "imagej2", + "Galaxy tool ids": [ + "imagej2_adjust_threshold_binary", + "imagej2_analyze_particles_binary", + "imagej2_analyze_skeleton", + "imagej2_binary_to_edm", + "imagej2_bunwarpj_adapt_transform", + "imagej2_bunwarpj_align", + "imagej2_bunwarpj_compare_elastic", + "imagej2_bunwarpj_compare_elastic_raw", + "imagej2_bunwarpj_compare_raw", + "imagej2_bunwarpj_compose_elastic", + "imagej2_bunwarpj_compose_raw", + "imagej2_bunwarpj_compose_raw_elastic", + "imagej2_bunwarpj_convert_to_raw", + "imagej2_bunwarpj_elastic_transform", + "imagej2_bunwarpj_raw_transform", + "imagej2_create_image", + "imagej2_enhance_contrast", + "imagej2_find_edges", + "imagej2_find_maxima", + "imagej2_make_binary", + "imagej2_math", + "imagej2_noise", + "imagej2_shadows", + "imagej2_sharpen", + "imagej2_skeletonize3d", + "imagej2_smooth", + "imagej2_watershed_binary" + ], + "Description": "ImageJ2 is a new version of ImageJ for the next generation of multidimensionalimage data, with a focus on scientific imaging.", + "bio.tool id": "imagej", + "bio.tool ids": [ + "imagej" + ], + "biii": "imagej2", + "bio.tool name": "ImageJ2", + "bio.tool description": "It is a public domain Java image processing program, which was designed with an open architecture. Custom acquisition, analysis and processing plugins can be developed using ImageJ’s built-in editor and a Java compiler. User-written plugins make it possible to solve many image processing and analysis problems, from three-dimensional live-cell imaging, to radiological image processing, multiple imaging system data comparisons to automated hematology systems.", + "EDAM operation": [ + "Image analysis", + "Image annotation", + "Visualisation" + ], + "EDAM topic": [ + "Imaging" + ], + "Status": "To update", + "Source": "http://fiji.sc", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "imagej2", + "Galaxy wrapper owner": "imgteam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2", + "Galaxy wrapper version": "20170530", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Image analysis", + "Image annotation", + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Imaging" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 27, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 27, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 27, + "Tools available on UseGalaxy.no": 27, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 26, + "Total tool usage (usegalaxy.eu)": 1537 + }, + { + "Galaxy wrapper id": "woundhealing", + "Galaxy tool ids": [ + "woundhealing_scratch_assay" + ], + "Description": "Tool to automate quantification of wound healing in high-throughput microscopy scratch assays", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://git.embl.de/grp-cba/wound-healing-htm-screen", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "Wound healing scratch assay image analysis", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/woundhealing", + "Galaxy wrapper version": "1.6.1", + "Conda id": "fiji-morpholibj", + "Conda version": "1.6.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "instagraal", + "Galaxy tool ids": [ + "instagraal" + ], + "Description": "Large genome reassembly based on Hi-C data", + "bio.tool id": "instagraal", + "bio.tool ids": [ + "instagraal" + ], + "biii": null, + "bio.tool name": "instaGRAAL", + "bio.tool description": "Chromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13)", + "EDAM operation": [ + "Genome assembly", + "Mapping assembly", + "Genetic mapping", + "Scaffolding" + ], + "EDAM topic": [ + "Sequence assembly", + "Mapping", + "Metagenomics", + "Statistics and probability", + "DNA binding sites" + ], + "Status": "To update", + "Source": "https://github.com/koszullab/instaGRAAL", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "instagraal", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/instagraal", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/instagraal", + "Galaxy wrapper version": "0.1.6", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Mapping assembly", + "Genetic mapping", + "Scaffolding" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Mapping", + "Metagenomics", + "Statistics and probability", + "DNA binding sites" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 139 + }, + { + "Galaxy wrapper id": "iprscan5", + "Galaxy tool ids": [], + "Description": "Interproscan queries the interpro database and provides annotations.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.ebi.ac.uk/Tools/pfa/iprscan5/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "iprscan5", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "itsx", + "Galaxy tool ids": [ + "itsx" + ], + "Description": "ITSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences.", + "bio.tool id": "ITSx", + "bio.tool ids": [ + "ITSx" + ], + "biii": null, + "bio.tool name": "ITSx", + "bio.tool description": "TSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences, which is commonly used as a molecular barcode for e.g. fungi. As the inclusion of parts of the neighbouring, very conserved, ribosomal genes (SSU, 5S and LSU rRNA sequences) in the sequence identification process can lead to severely misleading results, ITSx identifies and extracts only the ITS regions themselves.", + "EDAM operation": [ + "Sequence feature detection" + ], + "EDAM topic": [ + "Functional, regulatory and non-coding RNA", + "Microbiology" + ], + "Status": "Up-to-date", + "Source": "https://microbiology.se/software/itsx/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "itsx", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/itsx", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/itsx", + "Galaxy wrapper version": "1.1.3", + "Conda id": "itsx", + "Conda version": "1.1.3", + "EDAM operation (no superclasses)": [ + "Sequence feature detection" + ], + "EDAM topic (no superclasses)": [ + "Functional, regulatory and non-coding RNA", + "Microbiology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 38, + "Total tool usage (usegalaxy.eu)": 868 + }, + { + "Galaxy wrapper id": "jbrowse2", + "Galaxy tool ids": [ + "jbrowse2" + ], + "Description": "JBrowse2 Genome Browser integrated as a Galaxy Tool", + "bio.tool id": "jbrowse_2", + "bio.tool ids": [ + "jbrowse_2" + ], + "biii": null, + "bio.tool name": "JBrowse 2", + "bio.tool description": "Modular genome browser with views of synteny and structural variation.", + "EDAM operation": [ + "Genome visualisation", + "Structure visualisation", + "Pathway visualisation" + ], + "EDAM topic": [ + "Mapping", + "Structural variation", + "Genomics", + "Gene structure", + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://jbrowse.org", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "jbrowse2", + "Galaxy wrapper owner": "fubar", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse2", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/jbrowse2", + "Galaxy wrapper version": "2.13.1", + "Conda id": "jbrowse2", + "Conda version": "2.14.0", + "EDAM operation (no superclasses)": [ + "Genome visualisation", + "Structure visualisation", + "Pathway visualisation" + ], + "EDAM topic (no superclasses)": [ + "Mapping", + "Structural variation", + "Genomics", + "Gene structure", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "jupyter_job", + "Galaxy tool ids": [ + "run_jupyter_job" + ], + "Description": "Run jupyter notebook script in Galaxy", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "run_jupyter_job", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job", + "Galaxy wrapper version": "0.0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 30 + }, + { + "Galaxy wrapper id": "labels", + "Galaxy tool ids": [ + "bg_labels" + ], + "Description": "remaps and annotates alignments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/labels", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "labels", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/labels", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/labels", + "Galaxy wrapper version": "1.0.5.0", + "Conda id": "labels", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "lighter", + "Galaxy tool ids": [ + "lighter" + ], + "Description": "Lighter is a kmer-based error correction method for whole genome sequencing data", + "bio.tool id": "lighter", + "bio.tool ids": [ + "lighter" + ], + "biii": null, + "bio.tool name": "Lighter", + "bio.tool description": "Kmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors.", + "EDAM operation": [ + "k-mer counting", + "Sequence read processing", + "Sequencing quality control", + "Sequencing error detection" + ], + "EDAM topic": [ + "Sequencing", + "Whole genome sequencing", + "DNA", + "Genomics" + ], + "Status": "To update", + "Source": "https://github.com/mourisl/Lighter", + "ToolShed categories": [ + "Sequence Analysis", + "Fasta Manipulation" + ], + "ToolShed id": "lighter", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/lighter", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/lighter", + "Galaxy wrapper version": "1.0", + "Conda id": "lighter", + "Conda version": "1.1.3", + "EDAM operation (no superclasses)": [ + "k-mer counting", + "Sequence read processing", + "Sequencing quality control", + "Sequencing error detection" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "DNA", + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 152 + }, + { + "Galaxy wrapper id": "mafft", + "Galaxy tool ids": [ + "rbc_mafft_add", + "rbc_mafft" + ], + "Description": "Multiple alignment program for amino acid or nucleotide sequences", + "bio.tool id": "MAFFT", + "bio.tool ids": [ + "MAFFT" + ], + "biii": null, + "bio.tool name": "MAFFT", + "bio.tool description": "MAFFT (Multiple Alignment using Fast Fourier Transform) is a high speed multiple sequence alignment program.", + "EDAM operation": [ + "Multiple sequence alignment" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://mafft.cbrc.jp/alignment/software/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "mafft", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/mafft", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/mafft", + "Galaxy wrapper version": "7.526", + "Conda id": "mafft", + "Conda version": "7.525", + "EDAM operation (no superclasses)": [ + "Multiple sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 817, + "Total tool usage (usegalaxy.eu)": 143045 + }, + { + "Galaxy wrapper id": "mavedb", + "Galaxy tool ids": [ + "mavedb_importer" + ], + "Description": "data source for MaveDB", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "mavedb_importer", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/mave_tools/mavedb/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/mave_tools/mavedb", + "Galaxy wrapper version": "0.9", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "methtools", + "Galaxy tool ids": [ + "methtools_calling", + "r_correlation_matrix", + "methtools_destrand", + "methtools_dmr", + "methtools_filter", + "methtools_plot", + "smooth_running_window", + "methtools_tiling" + ], + "Description": "tools for methylation analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/methtools", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "methtools", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/methtools", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/methtools", + "Galaxy wrapper version": "0.1.1", + "Conda id": "methtools", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 5461 + }, + { + "Galaxy wrapper id": "methyldackel", + "Galaxy tool ids": [ + "pileometh" + ], + "Description": "A tool for processing bisulfite sequencing alignments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/dpryan79/MethylDackel", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "pileometh", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/methyldackel", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/methyldackel", + "Galaxy wrapper version": "0.5.2", + "Conda id": "methyldackel", + "Conda version": "0.6.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 200, + "Total tool usage (usegalaxy.eu)": 16573 + }, + { + "Galaxy wrapper id": "methylkit", + "Galaxy tool ids": [ + "methylkit" + ], + "Description": "A method for DNA methylation analysis and annotation from high-throughput bisulfite sequencing.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://bioconductor.org/packages/release/bioc/html/methylKit.html", + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "methylkit", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/methylkit", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/methylkit", + "Galaxy wrapper version": "0.99.2", + "Conda id": "bioconductor-methylkit", + "Conda version": "1.28.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "metilene", + "Galaxy tool ids": [ + "metilene" + ], + "Description": "Differential DNA methylation calling", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA", + "Statistics" + ], + "ToolShed id": "metilene", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/metilene", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/metilene", + "Galaxy wrapper version": "0.2.6.1", + "Conda id": "metilene", + "Conda version": "0.2.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 103, + "Total tool usage (usegalaxy.eu)": 3966 + }, + { + "Galaxy wrapper id": "mgnify_seqprep", + "Galaxy tool ids": [ + "mgnify_seqprep" + ], + "Description": "A modifiied vesion of SeqPrep. Made for use with the MGnify pipelines.", + "bio.tool id": "seqprep", + "bio.tool ids": [ + "seqprep" + ], + "biii": null, + "bio.tool name": "SeqPrep", + "bio.tool description": "Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads.", + "EDAM operation": [ + "Nucleic acid design" + ], + "EDAM topic": [ + "Genomics", + "Sequence assembly", + "Sequencing", + "Probes and primers" + ], + "Status": "To update", + "Source": "https://github.com/jstjohn/SeqPrep", + "ToolShed categories": [ + "Fastq Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "mgnify_seqprep", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep", + "Galaxy wrapper version": "1.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Nucleic acid design" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Sequence assembly", + "Sequencing", + "Probes and primers" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "miclip", + "Galaxy tool ids": [ + "mi_clip" + ], + "Description": "Identification of binding sites in CLIP-Seq data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://cran.r-project.org/src/contrib/Archive/MiClip/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "miclip", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/miclip", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/miclip", + "Galaxy wrapper version": "1.2.0", + "Conda id": "Rscript", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "minced", + "Galaxy tool ids": [ + "minced" + ], + "Description": "MinCED - Mining CRISPRs in Environmental Datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://bioweb2.pasteur.fr/docs/modules/minced/0.1.5/_README", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "minced", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/minced", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/minced", + "Galaxy wrapper version": "0.2.0", + "Conda id": "minced", + "Conda version": "0.4.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 53, + "Total tool usage (usegalaxy.eu)": 895 + }, + { + "Galaxy wrapper id": "minipolish", + "Galaxy tool ids": [ + "minipolish" + ], + "Description": "Polishing miniasm assemblies", + "bio.tool id": "minipolish", + "bio.tool ids": [ + "minipolish" + ], + "biii": null, + "bio.tool name": "minipolish", + "bio.tool description": "A tool that bridges the output of miniasm (long-read assembly) and racon (assembly polishing) together to polish a draft assembly. It also provides read depth information in contigs.", + "EDAM operation": [ + "Localised reassembly", + "Read depth analysis" + ], + "EDAM topic": [ + "Sequence assembly", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/rrwick/Minipolish", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "minipolish", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/minipolish", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/minipolish", + "Galaxy wrapper version": "0.1.3", + "Conda id": "minipolish", + "Conda version": "0.1.3", + "EDAM operation (no superclasses)": [ + "Localised reassembly", + "Read depth analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 185 + }, + { + "Galaxy wrapper id": "mitohifi", + "Galaxy tool ids": [ + "mitohifi" + ], + "Description": "Assembly mitogenomes from Pacbio HiFi read.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "mitohifi", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi", + "Galaxy wrapper version": "3", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 56, + "Total tool usage (usegalaxy.eu)": 613 + }, + { + "Galaxy wrapper id": "molecule2gspan", + "Galaxy tool ids": [ + "bg_mol2gspan" + ], + "Description": "converter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspan", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "molecule_to_gspan", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspan", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspan", + "Galaxy wrapper version": "0.2", + "Conda id": "openbabel", + "Conda version": "2.3.90dev7d621d9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "music_deconvolution", + "Galaxy tool ids": [ + "music_construct_eset", + "music_inspect_eset", + "music_manipulate_eset", + "music_compare", + "music_deconvolution" + ], + "Description": "Multi-subject Single Cell deconvolution (MuSiC)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/xuranw/MuSiC", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "music", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/music/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution", + "Galaxy wrapper version": "0.1.1", + "Conda id": "music-deconvolution", + "Conda version": "0.1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 240, + "Total tool usage (usegalaxy.eu)": 1872 + }, + { + "Galaxy wrapper id": "nanopolish", + "Galaxy tool ids": [ + "nanopolish_eventalign", + "nanopolish_methylation", + "nanopolish_polya", + "nanopolish_variants" + ], + "Description": "Nanopolish software package for signal-level analysis of Oxford Nanopore sequencing data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/jts/nanopolish", + "ToolShed categories": [], + "ToolShed id": "nanopolish", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/nanopolish", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/nanopolish", + "Galaxy wrapper version": "0.14.0", + "Conda id": "nanopolish", + "Conda version": "0.14.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 3, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 78, + "Total tool usage (usegalaxy.eu)": 8366 + }, + { + "Galaxy wrapper id": "netboxr", + "Galaxy tool ids": [ + "netboxr" + ], + "Description": "netboxr enables automated discovery of biological process modules by network analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Systems Biology" + ], + "ToolShed id": "netboxr", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/netboxr", + "Galaxy wrapper version": "1.6.0", + "Conda id": "bioconductor-netboxr", + "Conda version": "1.9.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 11 + }, + { + "Galaxy wrapper id": "nextdenovo", + "Galaxy tool ids": [ + "nextdenovo" + ], + "Description": "String graph-based de novo assembler for long reads", + "bio.tool id": "nextdenovo", + "bio.tool ids": [ + "nextdenovo" + ], + "biii": null, + "bio.tool name": "NextDenovo", + "bio.tool description": "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a \"correct-then-assemble\" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages.", + "EDAM operation": [ + "De-novo assembly", + "Genome assembly" + ], + "EDAM topic": [ + "Sequencing", + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://github.com/Nextomics/NextDenovo", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "nextdenovo", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo", + "Galaxy wrapper version": "2.5.0", + "Conda id": "nextdenovo", + "Conda version": "2.5.2", + "EDAM operation (no superclasses)": [ + "De-novo assembly", + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 84, + "Total tool usage (usegalaxy.eu)": 268 + }, + { + "Galaxy wrapper id": "nucleosome_prediction", + "Galaxy tool ids": [ + "Nucleosome" + ], + "Description": "Prediction of Nucleosomes Positions on the Genome", + "bio.tool id": "nucleosome_prediction", + "bio.tool ids": [ + "nucleosome_prediction" + ], + "biii": null, + "bio.tool name": "nucleosome_prediction", + "bio.tool description": "Prediction of Nucleosomes Positions on the Genome", + "EDAM operation": [ + "Prediction and recognition", + "Nucleosome position prediction", + "Sequence analysis" + ], + "EDAM topic": [ + "Structural genomics", + "Nucleic acid sites, features and motifs" + ], + "Status": "Up-to-date", + "Source": "https://genie.weizmann.ac.il/software/nucleo_exe.html", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "nucleosome_prediction", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction", + "Galaxy wrapper version": "3.0", + "Conda id": "nucleosome_prediction", + "Conda version": "3.0", + "EDAM operation (no superclasses)": [ + "Prediction and recognition", + "Nucleosome position prediction", + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Structural genomics", + "Nucleic acid sites, features and motifs" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 861 + }, + { + "Galaxy wrapper id": "numeric_clustering", + "Galaxy tool ids": [ + "numeric_clustering" + ], + "Description": "Clustering tool for numberic values", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://scikit-learn.org/stable/index.html", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "numeric_clustering", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/numeric_clustering", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/numeric_clustering", + "Galaxy wrapper version": "0.9", + "Conda id": "anaconda", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 486 + }, + { + "Galaxy wrapper id": "openms", + "Galaxy tool ids": [ + "AccurateMassSearch", + "AdditiveSeries", + "BaselineFilter", + "CVInspector", + "CompNovo", + "CompNovoCID", + "ConsensusID", + "ConsensusMapNormalizer", + "ConvertTSVToTraML", + "ConvertTraMLToTSV", + "DTAExtractor", + "DeMeanderize", + "Decharger", + "DecoyDatabase", + "Digestor", + "DigestorMotif", + "EICExtractor", + "ERPairFinder", + "ExternalCalibration", + "FFEval", + "FalseDiscoveryRate", + "FeatureFinderCentroided", + "FeatureFinderIdentification", + "FeatureFinderIsotopeWavelet", + "FeatureFinderMRM", + "FeatureFinderMetabo", + "FeatureFinderMultiplex", + "FeatureFinderSuperHirn", + "FeatureLinkerLabeled", + "FeatureLinkerUnlabeled", + "FeatureLinkerUnlabeledQT", + "FidoAdapter", + "FileConverter", + "FileFilter", + "FileInfo", + "FileMerger", + "FuzzyDiff", + "HighResPrecursorMassCorrector", + "IDConflictResolver", + "IDDecoyProbability", + "IDExtractor", + "IDFileConverter", + "IDFilter", + "IDMapper", + "IDMassAccuracy", + "IDMerger", + "IDPosteriorErrorProbability", + "IDRTCalibration", + "IDRipper", + "IDScoreSwitcher", + "IDSplitter", + "ITRAQAnalyzer", + "InclusionExclusionListCreator", + "InspectAdapter", + "InternalCalibration", + "IsobaricAnalyzer", + "LabeledEval", + "LowMemPeakPickerHiRes", + "LowMemPeakPickerHiRes_RandomAccess", + "LuciphorAdapter", + "MRMMapper", + "MRMPairFinder", + "MRMTransitionGroupPicker", + "MSGFPlusAdapter", + "MSSimulator", + "MapAlignmentEvaluation", + "MapNormalizer", + "MapRTTransformer", + "MapStatistics", + "MascotAdapter", + "MascotAdapterOnline", + "MassCalculator", + "MassTraceExtractor", + "MetaProSIP", + "MetaboliteSpectralMatcher", + "MultiplexResolver", + "MzMLSplitter", + "MzTabExporter", + "NoiseFilterGaussian", + "NoiseFilterSGolay", + "OpenSwathAnalyzer", + "OpenSwathAssayGenerator", + "OpenSwathChromatogramExtractor", + "OpenSwathConfidenceScoring", + "OpenSwathDIAPreScoring", + "OpenSwathDecoyGenerator", + "OpenSwathFeatureXMLToTSV", + "OpenSwathFileSplitter", + "OpenSwathMzMLFileCacher", + "OpenSwathRTNormalizer", + "OpenSwathRewriteToFeatureXML", + "OpenSwathWorkflow", + "PTModel", + "PTPredict", + "PeakPickerHiRes", + "PeakPickerIterative", + "PeakPickerWavelet", + "PepNovoAdapter", + "PeptideIndexer", + "PhosphoScoring", + "PrecursorIonSelector", + "PrecursorMassCorrector", + "ProteinInference", + "ProteinQuantifier", + "ProteinResolver", + "QCCalculator", + "QCEmbedder", + "QCExporter", + "QCExtractor", + "QCImporter", + "QCMerger", + "QCShrinker", + "RNPxl", + "RNPxlXICFilter", + "RTEvaluation", + "RTModel", + "RTPredict", + "SemanticValidator", + "SequenceCoverageCalculator", + "SimpleSearchEngine", + "SpecLibCreator", + "SpectraFilterBernNorm", + "SpectraFilterMarkerMower", + "SpectraFilterNLargest", + "SpectraFilterNormalizer", + "SpectraFilterParentPeakMower", + "SpectraFilterScaler", + "SpectraFilterSqrtMower", + "SpectraFilterThresholdMower", + "SpectraFilterWindowMower", + "SpectraMerger", + "SvmTheoreticalSpectrumGeneratorTrainer", + "TICCalculator", + "TMTAnalyzer", + "TOFCalibration", + "TextExporter", + "TopPerc", + "TransformationEvaluation", + "XMLValidator", + "XTandemAdapter" + ], + "Description": "OpenMS in version 2.1.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "openms", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/openms", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/openms", + "Galaxy wrapper version": "2.1.0", + "Conda id": "openms", + "Conda version": "3.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 7, + "Available on UseGalaxy.org.au": 34, + "Available on UseGalaxy.eu": 135, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 7, + "Tools available on UseGalaxy.org.au": 34, + "Tools available on UseGalaxy.eu": 135, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 135, + "Tools available on UseGalaxy.no": 134, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 916, + "Total tool usage (usegalaxy.eu)": 105743 + }, + { + "Galaxy wrapper id": "pandas_rolling_window", + "Galaxy tool ids": [ + "pandas_rolling_window" + ], + "Description": "Rolling window calculations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.rolling.html", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "pandas_rolling_window", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/pandas_rolling_window", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/pandas_rolling_window", + "Galaxy wrapper version": "0.1", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 269 + }, + { + "Galaxy wrapper id": "peakachu", + "Galaxy tool ids": [ + "peakachu" + ], + "Description": "PEAKachu is a peak-caller for CLIP- and RIP-Seq data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "RNA" + ], + "ToolShed id": "peakachu", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/tbischler/PEAKachu", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/peakachu", + "Galaxy wrapper version": "0.2.0+galaxy1", + "Conda id": "peakachu", + "Conda version": "0.2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 78, + "Total tool usage (usegalaxy.eu)": 3109 + }, + { + "Galaxy wrapper id": "perf", + "Galaxy tool ids": [ + "stats_perf_tool" + ], + "Description": "suitable for boolean classification problems", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://osmot.cs.cornell.edu/kddcup/software.html", + "ToolShed categories": [], + "ToolShed id": "stats_perf_tool", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/perf", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/perf", + "Galaxy wrapper version": "5.11.0", + "Conda id": "perf", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pfamscan", + "Galaxy tool ids": [ + "pfamscan" + ], + "Description": "Search a FASTA sequence against a library of Pfam HMM.", + "bio.tool id": "pfamscan", + "bio.tool ids": [ + "pfamscan" + ], + "biii": null, + "bio.tool name": "PfamScan", + "bio.tool description": "This tool is used to search a FASTA sequence against a library of Pfam HMM.", + "EDAM operation": [ + "Protein sequence analysis" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "http://ftp.ebi.ac.uk/pub/databases/Pfam/Tools/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "pfamscan", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan", + "Galaxy wrapper version": "1.6", + "Conda id": "pfam_scan", + "Conda version": "1.6", + "EDAM operation (no superclasses)": [ + "Protein sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 19, + "Total tool usage (usegalaxy.eu)": 165 + }, + { + "Galaxy wrapper id": "pg_tools", + "Galaxy tool ids": [ + "pg_dump", + "pg_import", + "pg_query" + ], + "Description": "tool suite for dealing with Postgresql databases from Galaxy's history", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.postgresql.org", + "ToolShed categories": [ + "Data Export", + "Data Source" + ], + "ToolShed id": "pgtools", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tools/pgtools", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/pg_tools", + "Galaxy wrapper version": null, + "Conda id": "postgresql", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pharmcat", + "Galaxy tool ids": [ + "pharmcat" + ], + "Description": "Pharmacogenomics Clinical Annotation Tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pharmcat.org/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "pharmcat", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/pharmcat", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/pharmcat", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 82 + }, + { + "Galaxy wrapper id": "piranha", + "Galaxy tool ids": [ + "piranha" + ], + "Description": "Piranha is a peak-caller for CLIP- and RIP-Seq data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "RNA" + ], + "ToolShed id": "piranha", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/piranha", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/piranha", + "Galaxy wrapper version": "1.2.1.0", + "Conda id": "piranha", + "Conda version": "1.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 1809 + }, + { + "Galaxy wrapper id": "platypus", + "Galaxy tool ids": [ + "bg_platypus" + ], + "Description": "efficient and accurate variant-detection in high-throughput sequencing data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.well.ox.ac.uk/platypus", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "platypus", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/platypus", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/platypus", + "Galaxy wrapper version": "0.0.11", + "Conda id": "platypus", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "plotly_ml_performance_plots", + "Galaxy tool ids": [ + "plotly_ml_performance_plots" + ], + "Description": "performance plots for machine learning problems", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://scikit-learn.org/stable/modules/classes.html#module-sklearn.metrics", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "plotly_ml_performance_plots", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/plotly_ml_performance_plots", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/plotly_ml_performance_plots", + "Galaxy wrapper version": "0.4", + "Conda id": "galaxy-ml", + "Conda version": "0.10.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 71, + "Total tool usage (usegalaxy.eu)": 1323 + }, + { + "Galaxy wrapper id": "plotly_parallel_coordinates_plot", + "Galaxy tool ids": [ + "plotly_parallel_coordinates_plot" + ], + "Description": "parallel coordinates plot produced with plotly", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://plot.ly/python/parallel-coordinates-plot/", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "plotly_parallel_coordinates_plot", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/plotly_parallel_coordinates_plot", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/plotly_parallel_coordinates_plot", + "Galaxy wrapper version": "0.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 37, + "Total tool usage (usegalaxy.eu)": 652 + }, + { + "Galaxy wrapper id": "plotly_regression_performance_plots", + "Galaxy tool ids": [ + "plotly_regression_performance_plots" + ], + "Description": "performance plots for regression problems", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://scikit-learn.org/stable/supervised_learning.html#supervised-learning", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "plotly_regression_performance_plots", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/plotly_regression_performance_plots", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/plotly_regression_performance_plots", + "Galaxy wrapper version": "0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 79, + "Total tool usage (usegalaxy.eu)": 843 + }, + { + "Galaxy wrapper id": "protease_prediction", + "Galaxy tool ids": [ + "eden_protease_prediction" + ], + "Description": "This tool can learn the cleavage specificity of a given class of proteases.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/fabriziocosta/eden", + "ToolShed categories": [ + "Sequence Analysis", + "Proteomics" + ], + "ToolShed id": "protease_prediction", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/protease_prediction", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/protease_prediction", + "Galaxy wrapper version": "0.9", + "Conda id": "eden", + "Conda version": "2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 154 + }, + { + "Galaxy wrapper id": "protein_properties", + "Galaxy tool ids": [ + "bg_protein_properties" + ], + "Description": "Calculation of various properties from given protein sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "protein_properties", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/protein_properties", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/protein_properties", + "Galaxy wrapper version": "0.2.0", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 30, + "Total tool usage (usegalaxy.eu)": 604 + }, + { + "Galaxy wrapper id": "improviser", + "Galaxy tool ids": [ + "proteomics_improviser" + ], + "Description": "Visualisation of PepXML files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.improviser.uni-freiburg.de/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomics_improviser", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviser", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviser", + "Galaxy wrapper version": "1.1.0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "racon", + "Galaxy tool ids": [ + "racon" + ], + "Description": "Consensus module for raw de novo DNA assembly of long uncorrected reads.", + "bio.tool id": "Racon", + "bio.tool ids": [ + "Racon" + ], + "biii": null, + "bio.tool name": "Racon", + "bio.tool description": "Consensus module for raw de novo DNA assembly of long uncorrected readsRacon is intended as a standalone consensus module to correct raw contigs generated by rapid assembly methods which do not include a consensus step. The goal of Racon is to generate genomic consensus which is of similar or better quality compared to the output generated by assembly methods which employ both error correction and consensus steps, while providing a speedup of several times compared to those methods. It supports data produced by both Pacific Biosciences and Oxford Nanopore Technologies.", + "EDAM operation": [ + "Genome assembly", + "Mapping assembly" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/isovic/racon", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "racon", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/racon", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/racon", + "Galaxy wrapper version": "1.5.0", + "Conda id": "racon", + "Conda version": "1.5.0", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Mapping assembly" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 309, + "Total tool usage (usegalaxy.eu)": 21353 + }, + { + "Galaxy wrapper id": "repeat_masker", + "Galaxy tool ids": [ + "repeatmasker_wrapper" + ], + "Description": "RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.repeatmasker.org/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "repeat_masker", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/repeat_masker", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/repeat_masker", + "Galaxy wrapper version": "0.1.2", + "Conda id": "RepeatMasker", + "Conda version": "4.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 248, + "Total tool usage (usegalaxy.eu)": 3750 + }, + { + "Galaxy wrapper id": "replaceColumn", + "Galaxy tool ids": [ + "replace_column_with_key_value_file" + ], + "Description": "A tool to replace all column entries of a file given by values of a key-value file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "replace_column_by_key_value_file", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/replaceColumn/tools/replaceColumn", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/replaceColumn", + "Galaxy wrapper version": "0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 189, + "Total tool usage (usegalaxy.eu)": 576111 + }, + { + "Galaxy wrapper id": "rest_tool", + "Galaxy tool ids": [ + "pubchem_rest_tool" + ], + "Description": "This tool fetches data from pubchem via the PubChem REST API.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pubchem.ncbi.nlm.nih.gov/pug_rest/PUG_REST.html", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "pubchem_rest_tool", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rest_tool", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rest_tool", + "Galaxy wrapper version": "0.1.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "antarna", + "Galaxy tool ids": [ + "antarna" + ], + "Description": "antaRNA uses ant colony optimization to solve the inverse folding problem in RNA research .", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "antarna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/antarna/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/antarna", + "Galaxy wrapper version": "1.1", + "Conda id": "antarna", + "Conda version": "2.0.1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 52 + }, + { + "Galaxy wrapper id": "aresite2", + "Galaxy tool ids": [ + "AREsite2_REST" + ], + "Description": "AREsite2 REST Interface", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://rna.tbi.univie.ac.at/AREsite", + "ToolShed categories": [ + "RNA", + "Data Source", + "Sequence Analysis" + ], + "ToolShed id": "aresite2", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite2", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite2", + "Galaxy wrapper version": "0.1.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 65 + }, + { + "Galaxy wrapper id": "blockclust", + "Galaxy tool ids": [ + "blockclust" + ], + "Description": "BlockClust detects transcripts with similar processing patterns.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/bgruening/galaxytools/tree/master/workflows/blockclust", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "blockclust", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/blockclust", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/blockclust", + "Galaxy wrapper version": "1.1.1", + "Conda id": "blockclust", + "Conda version": "1.1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 1478 + }, + { + "Galaxy wrapper id": "cmsearch_deoverlap", + "Galaxy tool ids": [ + "cmsearch_deoverlap" + ], + "Description": "removes lower scoring overlaps from cmsearch results.", + "bio.tool id": "cmsearch-deoverlap", + "bio.tool ids": [ + "cmsearch-deoverlap" + ], + "biii": null, + "bio.tool name": "cmsearch-deoverlap", + "bio.tool description": "Removes lower scoring overlaps from cmsearch results.", + "EDAM operation": [ + "Comparison", + "Alignment" + ], + "EDAM topic": [ + "Biology", + "Medicine" + ], + "Status": "To update", + "Source": "https://github.com/EBI-Metagenomics/pipeline-v5/blob/master/tools/RNA_prediction/cmsearch-deoverlap/cmsearch-deoverlap.pl", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "cmsearch_deoverlap", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap", + "Galaxy wrapper version": "0.08+galaxy2", + "Conda id": "perl", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Comparison", + "Alignment" + ], + "EDAM topic (no superclasses)": [ + "Biology", + "Medicine" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 102 + }, + { + "Galaxy wrapper id": "cmv", + "Galaxy tool ids": [ + "cmcv", + "cmv", + "hmmcv", + "hmmv" + ], + "Description": "cmv is a collection of tools for the visualisation of Hidden Markov Models and RNA-family models.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/eggzilla/cmv", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "cmv", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmv", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmv", + "Galaxy wrapper version": "1.0.8", + "Conda id": "cmv", + "Conda version": "1.0.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 108 + }, + { + "Galaxy wrapper id": "cofold", + "Galaxy tool ids": [ + "cofold" + ], + "Description": "Cofold predicts RNA secondary structures that takes co-transcriptional folding into account.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.e-rna.org/cofold/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "cofold", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cofold", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cofold", + "Galaxy wrapper version": "2.0.4.0", + "Conda id": "cofold", + "Conda version": "2.0.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 342 + }, + { + "Galaxy wrapper id": "compalignp", + "Galaxy tool ids": [ + "compalignp" + ], + "Description": "Compute fractional identity between trusted alignment and test alignment", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": null, + "ToolShed categories": [ + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "compalignp", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp", + "Galaxy wrapper version": "1.0", + "Conda id": "compalignp", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 220 + }, + { + "Galaxy wrapper id": "coprarna", + "Galaxy tool ids": [ + "coprarna" + ], + "Description": "Target prediction for prokaryotic trans-acting small RNAs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/PatrickRWright/CopraRNA", + "ToolShed categories": [ + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "coprarna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/PatrickRWright/CopraRNA", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/coprarna", + "Galaxy wrapper version": "2.1.1", + "Conda id": "coprarna", + "Conda version": "2.1.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dewseq", + "Galaxy tool ids": [ + "dewseq" + ], + "Description": "DEWSeq is a sliding window based peak caller for eCLIP/iCLIP data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/EMBL-Hentze-group/DEWSeq_analysis_helpers", + "ToolShed categories": [ + "Sequence Analysis", + "RNA", + "CLIP-seq" + ], + "ToolShed id": "dewseq", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dewseq", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dewseq", + "Galaxy wrapper version": "0.1.0+galaxy0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 72 + }, + { + "Galaxy wrapper id": "dorina", + "Galaxy tool ids": [ + "dorina_search" + ], + "Description": "data source for RNA interactions in post-transcriptional regulation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA", + "Data Source" + ], + "ToolShed id": "dorina", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina", + "Galaxy wrapper version": "1.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 1576 + }, + { + "Galaxy wrapper id": "dot2ct", + "Galaxy tool ids": [ + "rnastructure_dot2ct" + ], + "Description": "Dot-Bracket to Connect Table (CT)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "RNA" + ], + "ToolShed id": "dot2ct", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2ct", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2ct", + "Galaxy wrapper version": "5.7.a", + "Conda id": "rnastructure", + "Conda version": "6.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dotknot", + "Galaxy tool ids": [ + "dotknot" + ], + "Description": "DotKnot is a heuristic method for pseudoknot prediction in a given RNA sequence", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://dotknot.csse.uwa.edu.au/", + "ToolShed categories": [ + "RNA", + "Proteomics" + ], + "ToolShed id": "dotknot", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna/dotknot", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dotknot", + "Galaxy wrapper version": "1.3.1", + "Conda id": "vienna_rna", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 83 + }, + { + "Galaxy wrapper id": "exparna", + "Galaxy tool ids": [ + "exparna" + ], + "Description": "ExpaRNA is a fast, motif-based comparison and alignment tool for RNA molecules.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://rna.informatik.uni-freiburg.de/ExpaRNA/Input.jsp", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "exparna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/exparna", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/exparna", + "Galaxy wrapper version": "1.0.1", + "Conda id": "exparna", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "graphprot", + "Galaxy tool ids": [ + "graphprot_predict_profile" + ], + "Description": "GraphProt models binding preferences of RNA-binding proteins.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/dmaticzka/GraphProt", + "ToolShed categories": [ + "Sequence Analysis", + "RNA", + "CLIP-seq" + ], + "ToolShed id": "graphprot", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/graphprot", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/graphprot", + "Galaxy wrapper version": "1.1.7+galaxy2", + "Conda id": "graphprot", + "Conda version": "1.1.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 474 + }, + { + "Galaxy wrapper id": "htseq-clip", + "Galaxy tool ids": [ + "htseq_clip" + ], + "Description": "htseq-clip is a toolset for the analysis of eCLIP/iCLIP datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/EMBL-Hentze-group/htseq-clip", + "ToolShed categories": [ + "Sequence Analysis", + "RNA", + "CLIP-seq" + ], + "ToolShed id": "htseq_clip", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/htseq-clip", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/htseq-clip", + "Galaxy wrapper version": "0.1.0+galaxy0", + "Conda id": "htseq-clip", + "Conda version": "2.19.0b0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 77 + }, + { + "Galaxy wrapper id": "infernal", + "Galaxy tool ids": [ + "infernal_cmalign", + "infernal_cmbuild", + "infernal_cmpress", + "infernal_cmscan", + "infernal_cmsearch", + "infernal_cmstat" + ], + "Description": "Infernal (\"INFERence of RNA ALignment\") is for searching DNA sequence databases for RNA structure and sequence similarities.", + "bio.tool id": "infernal", + "bio.tool ids": [ + "infernal" + ], + "biii": null, + "bio.tool name": "Infernal", + "bio.tool description": "Infernal (\"INFERence of RNA ALignment\") is for searching DNA sequence databases for RNA structure and sequence similarities. It is an implementation of a special case of profile stochastic context-free grammars called covariance models (CMs). A CM is like a sequence profile, but it scores a combination of sequence consensus and RNA secondary structure consensus, so in many cases, it is more capable of identifying RNA homologs that conserve their secondary structure more than their primary sequence.", + "EDAM operation": [ + "Nucleic acid feature detection" + ], + "EDAM topic": [ + "Sequence sites, features and motifs", + "Structural genomics" + ], + "Status": "To update", + "Source": "http://infernal.janelia.org/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "infernal", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/infernal", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/infernal", + "Galaxy wrapper version": "1.1.4", + "Conda id": "infernal", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [ + "Nucleic acid feature detection" + ], + "EDAM topic (no superclasses)": [ + "Sequence sites, features and motifs", + "Structural genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 6, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 6, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 6, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 67, + "Total tool usage (usegalaxy.eu)": 100294 + }, + { + "Galaxy wrapper id": "inforna", + "Galaxy tool ids": [], + "Description": "INFO-RNA is a service for the design of RNA sequences that fold into a given pseudo-knot free RNA secondary structure.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://rna.informatik.uni-freiburg.de/INFORNA/Input.jsp", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "inforna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/inforna", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/inforna", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "intarna", + "Galaxy tool ids": [ + "intarna" + ], + "Description": "Efficient RNA-RNA interaction prediction incorporating accessibility and seeding of interaction sites.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/BackofenLab/IntaRNA", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "intarna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/intarna", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/intarna", + "Galaxy wrapper version": "3.4.0", + "Conda id": "intarna", + "Conda version": "3.4.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 23, + "Total tool usage (usegalaxy.eu)": 7569 + }, + { + "Galaxy wrapper id": "kinwalker", + "Galaxy tool ids": [], + "Description": "Kinwalker splits the folding process into a series of events where each event can either be a folding event or a transcription event.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.bioinf.uni-leipzig.de/Software/Kinwalker/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "kinwalker", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/kinwalker", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/kinwalker", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "locarna", + "Galaxy tool ids": [ + "locarna_exparnap", + "locarna_multiple", + "locarna_pairwise", + "locarna_pairwise_p", + "locarna_reliability_profile" + ], + "Description": "LocARNA - A suite for multiple alignment and folding of RNAs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://www.bioinf.uni-freiburg.de/Software/LocARNA/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "locarna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarna", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarna", + "Galaxy wrapper version": "2.0.1", + "Conda id": "locarna", + "Conda version": "2.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 339 + }, + { + "Galaxy wrapper id": "mea", + "Galaxy tool ids": [ + "mea" + ], + "Description": "Maximum expected accuracy prediction", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.bioinf.uni-leipzig.de/Software/mea", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "mea", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mea", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mea", + "Galaxy wrapper version": "0.6.4.1", + "Conda id": "mea", + "Conda version": "0.6.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 85 + }, + { + "Galaxy wrapper id": "mqc", + "Galaxy tool ids": [ + "mqc" + ], + "Description": "Ribosome profiling mapping quality control tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/Biobix/mQC", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mqc", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc", + "Galaxy wrapper version": "1.9", + "Conda id": "mqc", + "Conda version": "1.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 76 + }, + { + "Galaxy wrapper id": "nastiseq", + "Galaxy tool ids": [ + "nastiseq" + ], + "Description": "A method to identify cis-NATs using ssRNA-seq", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://ohlerlab.mdc-berlin.de/software/NASTIseq_104/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "nastiseq", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/nastiseq", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/nastiseq", + "Galaxy wrapper version": "1.0", + "Conda id": "r-nastiseq", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 40 + }, + { + "Galaxy wrapper id": "paralyzer", + "Galaxy tool ids": [ + "paralyzer" + ], + "Description": "A method to generate a high resolution map of interaction sites between RNA-binding proteins and their targets.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://ohlerlab.mdc-berlin.de/software/PARalyzer_85/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "paralyzer", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/paralyzer", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/paralyzer", + "Galaxy wrapper version": "1.5", + "Conda id": "paralyzer", + "Conda version": "1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 299 + }, + { + "Galaxy wrapper id": "pipmir", + "Galaxy tool ids": [ + "pipmir" + ], + "Description": "A method to identify novel plant miRNA.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://ohlerlab.mdc-berlin.de/software/Pipeline_for_the_Identification_of_Plant_miRNAs_84/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "pipmir", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/pipmir", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/pipmir", + "Galaxy wrapper version": "0.1.0", + "Conda id": "pipmir", + "Conda version": "1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 275 + }, + { + "Galaxy wrapper id": "rRNA", + "Galaxy tool ids": [ + "meta_rna" + ], + "Description": "Identification of ribosomal RNA genes in metagenomic fragments.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://weizhong-lab.ucsd.edu/meta_rna/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rrna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rRNA", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rRNA", + "Galaxy wrapper version": "0.1", + "Conda id": "hmmsearch3.0", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rbpbench", + "Galaxy tool ids": [ + "rbpbench" + ], + "Description": "Evaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifs", + "bio.tool id": "rbpbench", + "bio.tool ids": [ + "rbpbench" + ], + "biii": null, + "bio.tool name": "RBPBench", + "bio.tool description": "Evaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifs", + "EDAM operation": [], + "EDAM topic": [ + "RNA", + "Protein interactions", + "RNA immunoprecipitation", + "Bioinformatics", + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://github.com/michauhl/RBPBench", + "ToolShed categories": [ + "Sequence Analysis", + "RNA", + "CLIP-seq" + ], + "ToolShed id": "rbpbench", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbench", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbench", + "Galaxy wrapper version": "0.8.1", + "Conda id": "rbpbench", + "Conda version": "0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "RNA", + "Protein interactions", + "RNA immunoprecipitation", + "Bioinformatics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 36 + }, + { + "Galaxy wrapper id": "rcas", + "Galaxy tool ids": [ + "rcas" + ], + "Description": "RCAS (RNA Centric Annotation System) for functional analysis of transcriptome-wide regions detected by high-throughput experiments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/BIMSBbioinfo/RCAS", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rcas", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rcas/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rcas", + "Galaxy wrapper version": "1.5.4", + "Conda id": "bioconductor-rcas", + "Conda version": "1.28.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 38, + "Total tool usage (usegalaxy.eu)": 1226 + }, + { + "Galaxy wrapper id": "reago", + "Galaxy tool ids": [ + "reago" + ], + "Description": "Reago is tool to assembly 16S ribosomal RNA recovery from metagenomic data.", + "bio.tool id": "reago", + "bio.tool ids": [ + "reago" + ], + "biii": null, + "bio.tool name": "REAGO", + "bio.tool description": "This is an assembly tool for 16S ribosomal RNA recovery from metagenomic data.", + "EDAM operation": [ + "Sequence assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "RNA", + "Metagenomics", + "Microbiology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/chengyuan/reago-1.1", + "ToolShed categories": [ + "Metagenomics", + "RNA" + ], + "ToolShed id": "reago", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago", + "Galaxy wrapper version": "1.1", + "Conda id": "reago", + "Conda version": "1.1", + "EDAM operation (no superclasses)": [ + "Sequence assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "RNA", + "Metagenomics", + "Microbiology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "remurna", + "Galaxy tool ids": [ + "remurna" + ], + "Description": "remuRNA - Measurement of Single Nucleotide Polymorphism induced Changes of RNA Conformation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.ncbi.nlm.nih.gov/CBBresearch/Przytycka/index.cgi#remurna", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "remurna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/remurna", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/remurna", + "Galaxy wrapper version": "1.0.0", + "Conda id": "remurna", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 42 + }, + { + "Galaxy wrapper id": "ribotaper", + "Galaxy tool ids": [ + "ribotaper_create_annotation", + "ribotaper_create_metaplots", + "ribotaper_ribosome_profiling" + ], + "Description": "A method for defining traslated ORFs using Ribosome Profiling data.", + "bio.tool id": "ribotaper", + "bio.tool ids": [ + "ribotaper" + ], + "biii": null, + "bio.tool name": "RiboTaper", + "bio.tool description": "New analysis pipeline for Ribosome Profiling (Ribo-seq) experiments, which exploits the triplet periodicity of ribosomal footprints to call translated regions.", + "EDAM operation": [ + "Gene expression profiling" + ], + "EDAM topic": [ + "Functional genomics" + ], + "Status": "To update", + "Source": "https://ohlerlab.mdc-berlin.de/software/RiboTaper_126/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "ribotaper", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper", + "Galaxy wrapper version": "1.3.1a", + "Conda id": "ribotaper", + "Conda version": "1.3.1", + "EDAM operation (no superclasses)": [ + "Gene expression profiling" + ], + "EDAM topic (no superclasses)": [ + "Functional genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 44, + "Total tool usage (usegalaxy.eu)": 628 + }, + { + "Galaxy wrapper id": "rna_shapes", + "Galaxy tool ids": [ + "RNAshapes" + ], + "Description": "Compute secondary structures of RNA", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rnashapes", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapes", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapes", + "Galaxy wrapper version": "3.3.0", + "Conda id": "@EXECUTABLE@", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 129 + }, + { + "Galaxy wrapper id": "rnabob", + "Galaxy tool ids": [ + "rbc_rnabob" + ], + "Description": "Fast pattern searching for RNA structural motifs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://eddylab.org/software.html", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rnabob", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabob", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabob", + "Galaxy wrapper version": "2.2.1.0", + "Conda id": "rnabob", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 164 + }, + { + "Galaxy wrapper id": "rnacode", + "Galaxy tool ids": [ + "rbc_rnacode" + ], + "Description": "Analyze the protein coding potential in MSA", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rnacode", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacode", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacode", + "Galaxy wrapper version": "0.3.2", + "Conda id": "rnacode", + "Conda version": "0.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 1358 + }, + { + "Galaxy wrapper id": "rnacommender", + "Galaxy tool ids": [ + "rbc_rnacommender" + ], + "Description": "RNAcommender is a tool for genome-wide recommendation of RNA-protein interactions.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/gianlucacorrado/RNAcommender", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rnacommender", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/rna_commander/tools/rna_tools/rna_commender", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacommender", + "Galaxy wrapper version": "0.1.1", + "Conda id": "sam", + "Conda version": "3.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 1074 + }, + { + "Galaxy wrapper id": "rnaformer", + "Galaxy tool ids": [ + "infer_rnaformer" + ], + "Description": "RNAformer: RNA secondary structure prediction", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/automl/RNAformer", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rnaformer", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaformer", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaformer", + "Galaxy wrapper version": "1.0.0", + "Conda id": "rnaformer", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rnalien", + "Galaxy tool ids": [ + "RNAlien" + ], + "Description": "RNAlien unsupervized RNA family model construction", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://rna.tbi.univie.ac.at/rnalien/", + "ToolShed categories": [ + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "rnalien", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalien", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalien", + "Galaxy wrapper version": "1.3.6", + "Conda id": "rnalien", + "Conda version": "1.8.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 33 + }, + { + "Galaxy wrapper id": "rnasnp", + "Galaxy tool ids": [ + "rnasnp" + ], + "Description": "RNAsnp Efficient detection of local RNA secondary structure changes induced by SNPs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://rth.dk/resources/rnasnp/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rnasnp", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rnasnp", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnasnp", + "Galaxy wrapper version": "1.2.0", + "Conda id": "rnasnp", + "Conda version": "1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 86 + }, + { + "Galaxy wrapper id": "rnaz", + "Galaxy tool ids": [ + "rnaz", + "rnaz_annotate", + "rnaz_cluster", + "rnaz_randomize_aln", + "rnaz_select_seqs", + "rnaz_window" + ], + "Description": "RNAz is a program for predicting structurally conserved and thermodynamically stable RNA secondary structures in multiple sequence alignments.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://www.tbi.univie.ac.at/~wash/RNAz/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "rnaz", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_team/rnaz", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaz", + "Galaxy wrapper version": "2.1.1", + "Conda id": "rnaz", + "Conda version": "2.1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 6, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 28, + "Total tool usage (usegalaxy.eu)": 43279 + }, + { + "Galaxy wrapper id": "selectsequencesfrommsa", + "Galaxy tool ids": [ + "selectsequencesfrommsa" + ], + "Description": "SelectSequences - selects representative entries from a multiple sequence alignment in clustal format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/eggzilla/SelectSequences", + "ToolShed categories": [ + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "selectsequencesfrommsa", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/selectsequencesfrommsa", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/selectsequencesfrommsa", + "Galaxy wrapper version": "1.0.5", + "Conda id": "selectsequencesfrommsa", + "Conda version": "1.0.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 27, + "Total tool usage (usegalaxy.eu)": 457 + }, + { + "Galaxy wrapper id": "sortmerna", + "Galaxy tool ids": [ + "bg_sortmerna" + ], + "Description": "SortMeRNA is a software designed to rapidly filter ribosomal RNA fragments from metatransriptomic data produced by next-generation sequencers.", + "bio.tool id": "sortmerna", + "bio.tool ids": [ + "sortmerna" + ], + "biii": null, + "bio.tool name": "SortMeRNA", + "bio.tool description": "Sequence analysis tool for filtering, mapping and OTU-picking NGS reads.", + "EDAM operation": [ + "Sequence similarity search", + "Sequence comparison", + "Sequence alignment analysis" + ], + "EDAM topic": [ + "Metatranscriptomics", + "Metagenomics" + ], + "Status": "To update", + "Source": "http://bioinfo.lifl.fr/RNA/sortmerna/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "sortmerna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna", + "Galaxy wrapper version": "4.3.6", + "Conda id": "sortmerna", + "Conda version": "4.3.7", + "EDAM operation (no superclasses)": [ + "Sequence similarity search", + "Sequence alignment analysis" + ], + "EDAM topic (no superclasses)": [ + "Metatranscriptomics", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 376, + "Total tool usage (usegalaxy.eu)": 18183 + }, + { + "Galaxy wrapper id": "sshmm", + "Galaxy tool ids": [ + "sshmm" + ], + "Description": "ssHMM is an RNA sequence-structure motif finder for RNA-binding protein data, such as CLIP-Seq data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.molgen.mpg.de/heller/ssHMM", + "ToolShed categories": [ + "Sequence Analysis", + "RNA" + ], + "ToolShed id": "sshmm", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sshmm/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sshmm", + "Galaxy wrapper version": "1.0.7", + "Conda id": "sshmm", + "Conda version": "1.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 223 + }, + { + "Galaxy wrapper id": "targetfinder", + "Galaxy tool ids": [ + "targetfinder" + ], + "Description": "Plant small RNA target prediction tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/carringtonlab/TargetFinder.git", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "targetfinder", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder/", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder", + "Galaxy wrapper version": "1.7", + "Conda id": "targetfinder", + "Conda version": "1.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 37, + "Total tool usage (usegalaxy.eu)": 713 + }, + { + "Galaxy wrapper id": "trna_prediction", + "Galaxy tool ids": [ + "aragorn_trna", + "trnascan" + ], + "Description": "Aragorn predicts tRNA and tmRNA in nucleotide sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://mbioserv2.mbioekol.lu.se/ARAGORN/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "trna_prediction", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/trna_prediction", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/trna_prediction", + "Galaxy wrapper version": "0.6", + "Conda id": "aragorn", + "Conda version": "1.2.41", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 236, + "Total tool usage (usegalaxy.eu)": 2935 + }, + { + "Galaxy wrapper id": "vienna_rna", + "Galaxy tool ids": [ + "viennarna_kinfold", + "viennarna_kinwalker", + "viennarna_rna2dfold", + "viennarna_rnaaliduplex", + "viennarna_rnaalifold", + "viennarna_rnacofold", + "viennarna_rnadistance", + "viennarna_rnaduplex", + "viennarna_rnaeval", + "viennarna_rnafold", + "viennarna_rnaheat", + "viennarna_rnainverse", + "viennarna_rnalalifold", + "viennarna_rnalfold", + "viennarna_rnapaln", + "viennarna_rnadpdist", + "viennarna_rnapkplex", + "viennarna_rnaplex", + "viennarna_rnaplfold", + "viennarna_rnaplot", + "viennarna_rnasnoop", + "viennarna_rnasubopt", + "viennarna_rnaup" + ], + "Description": "ViennaRNA - Prediction and comparison of RNA secondary structures", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.tbi.univie.ac.at/RNA/", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "viennarna", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna", + "Galaxy wrapper version": "2.2.10", + "Conda id": "viennarna", + "Conda version": "2.6.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 21, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 21, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 21, + "Tools available on UseGalaxy.no": 21, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 123, + "Total tool usage (usegalaxy.eu)": 7864 + }, + { + "Galaxy wrapper id": "sailfish", + "Galaxy tool ids": [ + "sailfish" + ], + "Description": "Sailfish is a tool for transcript quantification from RNA-seq data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.cs.cmu.edu/~ckingsf/software/sailfish/", + "ToolShed categories": [ + "Sequence Analysis", + "RNA" + ], + "ToolShed id": "sailfish", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/sailfish", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/sailfish", + "Galaxy wrapper version": "0.10.1.1", + "Conda id": "bzip2", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 55, + "Total tool usage (usegalaxy.eu)": 4024 + }, + { + "Galaxy wrapper id": "salmon", + "Galaxy tool ids": [ + "alevin", + "salmon", + "salmonquantmerge" + ], + "Description": "Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data.", + "bio.tool id": "salmon", + "bio.tool ids": [ + "salmon" + ], + "biii": null, + "bio.tool name": "Salmon", + "bio.tool description": "A tool for transcript expression quantification from RNA-seq data", + "EDAM operation": [ + "Sequence composition calculation", + "RNA-Seq quantification", + "Gene expression analysis" + ], + "EDAM topic": [ + "RNA-Seq", + "Gene expression", + "Transcriptomics" + ], + "Status": "To update", + "Source": "https://github.com/COMBINE-lab/salmon", + "ToolShed categories": [ + "Sequence Analysis", + "RNA", + "Transcriptomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/salmon", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/salmon", + "Galaxy wrapper version": "1.10.1", + "Conda id": "salmon", + "Conda version": "1.10.3", + "EDAM operation (no superclasses)": [ + "Sequence composition calculation", + "RNA-Seq quantification", + "Gene expression analysis" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq", + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 969, + "Total tool usage (usegalaxy.eu)": 61937 + }, + { + "Galaxy wrapper id": "sambamba", + "Galaxy tool ids": [ + "sambamba_flagstat", + "sambamba_markdup", + "sambamba_merge", + "sambamba_sort" + ], + "Description": "Sambamba: process your BAM data faster!", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/biod/sambamba", + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "sambamba", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/biod/sambamba", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/sambamba", + "Galaxy wrapper version": "1.0.1", + "Conda id": "sambamba", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sed", + "Galaxy tool ids": [ + "sed_stream_editor" + ], + "Description": "Manipulate your data with the sed command line tool.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/sed", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "sed_wrapper", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/sed", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/sed", + "Galaxy wrapper version": "0.0.1", + "Conda id": "sed", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 2276 + }, + { + "Galaxy wrapper id": "segemehl", + "Galaxy tool ids": [ + "segemehl" + ], + "Description": "segemehl - short read mapping with gaps", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.bioinf.uni-leipzig.de/Software/segemehl/", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "segemehl", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/segemehl", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/segemehl", + "Galaxy wrapper version": "0.2.0.4", + "Conda id": "segemehl", + "Conda version": "0.3.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 30, + "Total tool usage (usegalaxy.eu)": 1276 + }, + { + "Galaxy wrapper id": "sklearn", + "Galaxy tool ids": [ + "sklearn_mlxtend_association_rules", + "sklearn_clf_metrics", + "sklearn_discriminant_classifier", + "sklearn_ensemble", + "sklearn_estimator_attributes", + "sklearn_feature_selection", + "sklearn_fitted_model_eval", + "sklearn_generalized_linear", + "keras_batch_models", + "keras_model_builder", + "keras_model_config", + "keras_train_and_eval", + "sklearn_label_encoder", + "sklearn_lightgbm", + "ml_visualization_ex", + "model_prediction", + "sklearn_model_validation", + "sklearn_nn_classifier", + "sklearn_numeric_clustering", + "sklearn_pairwise_metrics", + "sklearn_pca", + "sklearn_build_pipeline", + "sklearn_data_preprocess", + "sklearn_regression_metrics", + "sklearn_sample_generator", + "sklearn_searchcv", + "sklearn_model_fit", + "scipy_sparse", + "stacking_ensemble_models", + "sklearn_svm_classifier", + "sklearn_to_categorical", + "sklearn_train_test_eval", + "sklearn_train_test_split" + ], + "Description": "Machine Learning tool suite from Scikit-learn", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://scikit-learn.org", + "ToolShed categories": [ + "Machine Learning", + "Statistics" + ], + "ToolShed id": "sklearn", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/sklearn", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/sklearn", + "Galaxy wrapper version": "1.0.11.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 30, + "Available on UseGalaxy.org.au": 14, + "Available on UseGalaxy.eu": 31, + "Available on UseGalaxy.fr": 16, + "Tools available on UseGalaxy.org (Main)": 30, + "Tools available on UseGalaxy.org.au": 14, + "Tools available on UseGalaxy.eu": 31, + "Tools available on UseGalaxy.fr": 16, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 31, + "Tools available on UseGalaxy.no": 27, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 958, + "Total tool usage (usegalaxy.eu)": 113932 + }, + { + "Galaxy wrapper id": "splitfasta", + "Galaxy tool ids": [ + "rbc_splitfasta" + ], + "Description": "Split a multi-sequence fasta file into files containing single sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "splitfasta", + "Galaxy wrapper owner": "rnateam", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/splitfasta", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/splitfasta", + "Galaxy wrapper version": "0.4.0", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 96, + "Total tool usage (usegalaxy.eu)": 1295 + }, + { + "Galaxy wrapper id": "statistics", + "Galaxy tool ids": [ + "bg_statistical_hypothesis_testing" + ], + "Description": "Tool for computing statistical tests.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/statistics", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "bg_statistical_hypothesis_testing", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/statistics", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/statistics", + "Galaxy wrapper version": "0.3", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 304 + }, + { + "Galaxy wrapper id": "stress_ng", + "Galaxy tool ids": [ + "stress_ng" + ], + "Description": "stress test a computer system in various selectable ways", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Web Services" + ], + "ToolShed id": "stress_ng", + "Galaxy wrapper owner": "bgruening-util", + "Galaxy wrapper source": "https://github.com/ColinIanKing/stress-ng", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/stress_ng", + "Galaxy wrapper version": "0.12.04", + "Conda id": "stress-ng", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 47 + }, + { + "Galaxy wrapper id": "tapscan", + "Galaxy tool ids": [ + "tapscan_classify" + ], + "Description": "Search for transcription associated proteins (TAPs)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://plantcode.cup.uni-freiburg.de/tapscan/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "tapscan", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/tapscan", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/tapscan", + "Galaxy wrapper version": "4.76+galaxy0", + "Conda id": "hmmer", + "Conda version": "3.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "add_line_to_file", + "Galaxy tool ids": [ + "add_line_to_file" + ], + "Description": "Adds a text line to the beginning or end of a file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "add_line_to_file", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/add_line_to_file", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/add_line_to_file", + "Galaxy wrapper version": "0.1.0", + "Conda id": "coreutils", + "Conda version": "8.25", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 193, + "Total tool usage (usegalaxy.eu)": 14480 + }, + { + "Galaxy wrapper id": "column_arrange_by_header", + "Galaxy tool ids": [ + "bg_column_arrange_by_header" + ], + "Description": "Column arrange by header name", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "column_arrange_by_header", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/column_arrange_by_header", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/column_arrange_by_header", + "Galaxy wrapper version": "0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 179, + "Total tool usage (usegalaxy.eu)": 3781 + }, + { + "Galaxy wrapper id": "join_files_on_column_fuzzy", + "Galaxy tool ids": [ + "join_files_on_column_fuzzy" + ], + "Description": "Join two files on a common column, allowing a certain difference.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "join_files_on_column_fuzzy", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/join_files_on_column_fuzzy", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/join_files_on_column_fuzzy", + "Galaxy wrapper version": "1.0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 117, + "Total tool usage (usegalaxy.eu)": 2448 + }, + { + "Galaxy wrapper id": "split_file_on_column", + "Galaxy tool ids": [ + "tp_split_on_column" + ], + "Description": "Split a file on a specific column.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "split_file_on_column", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_on_column", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_on_column", + "Galaxy wrapper version": "0.6", + "Conda id": "gawk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 159, + "Total tool usage (usegalaxy.eu)": 5507 + }, + { + "Galaxy wrapper id": "split_file_to_collection", + "Galaxy tool ids": [ + "split_file_to_collection" + ], + "Description": "Split tabular, MGF, FASTA, or FASTQ files to a dataset collection.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collection", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "split_file_to_collection", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collection", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collection", + "Galaxy wrapper version": "0.5.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 412, + "Total tool usage (usegalaxy.eu)": 15358 + }, + { + "Galaxy wrapper id": "text_processing", + "Galaxy tool ids": [ + "tp_awk_tool", + "tp_cat", + "tp_cut_tool", + "tp_easyjoin_tool", + "tp_find_and_replace", + "tp_grep_tool", + "tp_head_tool", + "tp_multijoin_tool", + "nl", + "tp_text_file_with_recurring_lines", + "tp_replace_in_column", + "tp_replace_in_line", + "tp_sed_tool", + "tp_sort_header_tool", + "tp_sort_rows", + "tp_uniq_tool", + "tp_tac", + "tp_tail_tool", + "tp_unfold_column_tool", + "tp_sorted_uniq" + ], + "Description": "High performance text processing tools using the GNU coreutils, sed, awk and friends.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.gnu.org/software/", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "text_processing", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing", + "Galaxy wrapper version": "9.3", + "Conda id": "coreutils", + "Conda version": "8.25", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 20, + "Available on UseGalaxy.org.au": 20, + "Available on UseGalaxy.eu": 20, + "Available on UseGalaxy.fr": 20, + "Tools available on UseGalaxy.org (Main)": 20, + "Tools available on UseGalaxy.org.au": 20, + "Tools available on UseGalaxy.eu": 20, + "Tools available on UseGalaxy.fr": 20, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 19, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 19, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 19, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 20, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 19, + "Tools available on UseGalaxy.no": 19, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15048, + "Total tool usage (usegalaxy.eu)": 3864895 + }, + { + "Galaxy wrapper id": "tgsgapcloser", + "Galaxy tool ids": [ + "tgsgapcloser" + ], + "Description": "TGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly.", + "bio.tool id": "TGS-GapCloser", + "bio.tool ids": [ + "TGS-GapCloser" + ], + "biii": null, + "bio.tool name": "TGS-GapCloser", + "bio.tool description": "TGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads.", + "EDAM operation": [ + "Genome assembly", + "Read mapping", + "Scaffolding", + "Localised reassembly" + ], + "EDAM topic": [ + "Sequencing", + "Sequence assembly", + "Phylogeny", + "Transcription factors and regulatory sites", + "Mapping" + ], + "Status": "To update", + "Source": "https://github.com/BGI-Qingdao/TGS-GapCloser", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "tgsgapcloser", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser", + "Galaxy wrapper version": "1.0.3", + "Conda id": "tgsgapcloser", + "Conda version": "1.2.1", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Read mapping", + "Scaffolding", + "Localised reassembly" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Sequence assembly", + "Phylogeny", + "Transcription factors and regulatory sites", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 36, + "Total tool usage (usegalaxy.eu)": 460 + }, + { + "Galaxy wrapper id": "tiara", + "Galaxy tool ids": [ + "tiara" + ], + "Description": "Tool for identification of eukaryotic sequences in the metagenomic datasets.", + "bio.tool id": "Tiara", + "bio.tool ids": [ + "Tiara" + ], + "biii": null, + "bio.tool name": "TIARA", + "bio.tool description": "Total Integrated Archive of Short-Read and Array (TIARA) database, contains personal genomic information obtained from next generation sequencing (NGS) techniques and ultra-high-resolution comparative genomic hybridization (CGH) arrays. This database improves the accuracy of detecting personal genomic variations, such as SNPs, short indels and structural variants (SVs).", + "EDAM operation": [ + "Genome comparison", + "Data retrieval", + "Variant calling", + "Genome visualisation", + "Structural variation detection" + ], + "EDAM topic": [ + "Sequencing", + "Genomics", + "DNA polymorphism", + "DNA structural variation" + ], + "Status": "To update", + "Source": "https://github.com/ibe-uw/tiara", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis" + ], + "ToolShed id": "tiara", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/tiara", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/tiara", + "Galaxy wrapper version": "1.0.3", + "Conda id": "tiara", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Genome comparison", + "Data retrieval", + "Variant calling", + "Genome visualisation", + "Structural variation detection" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Genomics", + "DNA polymorphism" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "tool_recommendation_model", + "Galaxy tool ids": [ + "create_tool_recommendation_model" + ], + "Description": "Create model to recommend tools", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools", + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "create_tool_recommendation_model", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/recommendation_training/tools/tool_recommendation_model", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/tool_recommendation_model", + "Galaxy wrapper version": "0.0.5", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 445 + }, + { + "Galaxy wrapper id": "trim_galore", + "Galaxy tool ids": [ + "trim_galore" + ], + "Description": "Trim Galore adaptive quality and adapter trimmer", + "bio.tool id": "trim_galore", + "bio.tool ids": [ + "trim_galore" + ], + "biii": null, + "bio.tool name": "Trim Galore", + "bio.tool description": "A wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries.", + "EDAM operation": [ + "Sequence trimming", + "Primer removal", + "Read pre-processing" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/", + "ToolShed categories": [ + "Sequence Analysis", + "Fastq Manipulation" + ], + "ToolShed id": "trim_galore", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore", + "Galaxy wrapper version": "0.6.7", + "Conda id": "trim-galore", + "Conda version": "0.6.10", + "EDAM operation (no superclasses)": [ + "Sequence trimming", + "Primer removal", + "Read pre-processing" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2334, + "Total tool usage (usegalaxy.eu)": 238699 + }, + { + "Galaxy wrapper id": "uniprot_rest_interface", + "Galaxy tool ids": [ + "uniprot" + ], + "Description": "UniProt ID mapping and sequence retrieval", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/jdrudolph/uniprot", + "ToolShed categories": [ + "Proteomics", + "Sequence Analysis" + ], + "ToolShed id": "uniprot_rest_interface", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interface", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interface", + "Galaxy wrapper version": "0.6", + "Conda id": "requests", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 132, + "Total tool usage (usegalaxy.eu)": 2406 + }, + { + "Galaxy wrapper id": "vt", + "Galaxy tool ids": [ + "vt_@BINARY@", + "vt_@BINARY@" + ], + "Description": "A tool set for short variant discovery in genetic sequence data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "vt", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/atks/vt", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/vt", + "Galaxy wrapper version": "0.2", + "Conda id": "vt", + "Conda version": "2015.11.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "whisper", + "Galaxy tool ids": [ + "whisper" + ], + "Description": "Transcribe audio or video files to text using the OpenAI Whisper.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bgruening/galaxytools/tree/master/tools/whisper", + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "whisper", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/whisper", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/whisper", + "Galaxy wrapper version": "20231117", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "wtdbg", + "Galaxy tool ids": [ + "wtdbg" + ], + "Description": "WTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly.", + "bio.tool id": "wtdbg2", + "bio.tool ids": [ + "wtdbg2" + ], + "biii": null, + "bio.tool name": "wtdbg2", + "bio.tool description": "Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy.", + "EDAM operation": [ + "Genome assembly", + "De-novo assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/ruanjue/wtdbg2", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "wtdbg", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg", + "Galaxy wrapper parsed folder": "https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg", + "Galaxy wrapper version": "2.5", + "Conda id": "wtdbg", + "Conda version": "2.5", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 116, + "Total tool usage (usegalaxy.eu)": 1660 + }, + { + "Galaxy wrapper id": "align_back_trans", + "Galaxy tool ids": [ + "align_back_trans" + ], + "Description": "Thread nucleotides onto a protein alignment (back-translation)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "align_back_trans", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans", + "Galaxy wrapper version": "0.0.10", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 329 + }, + { + "Galaxy wrapper id": "chromosome_diagram", + "Galaxy tool ids": [ + "chromosome_diagram" + ], + "Description": "Chromosome Diagrams using Biopython", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics", + "Sequence Analysis", + "Visualization" + ], + "ToolShed id": "chromosome_diagram", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/chromosome_diagram", + "Galaxy wrapper version": "0.0.3", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "clc_assembly_cell", + "Galaxy tool ids": [ + "clc_assembler", + "clc_mapper" + ], + "Description": "Galaxy wrapper for the CLC Assembly Cell suite from CLCBio", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell", + "ToolShed categories": [ + "Assembly", + "Next Gen Mappers", + "SAM" + ], + "ToolShed id": "clc_assembly_cell", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell", + "Galaxy wrapper version": "0.0.7", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "clinod", + "Galaxy tool ids": [ + "clinod" + ], + "Description": "NoD: a Nucleolar localization sequence detector for eukaryotic and viral proteins", + "bio.tool id": "clinod", + "bio.tool ids": [ + "clinod" + ], + "biii": null, + "bio.tool name": "clinod", + "bio.tool description": "The command line NoD predictor (clinod) can be run from the command line to predict Nucleolar localization sequences (NoLSs) that are short targeting sequences responsible for the localization of proteins to the nucleolus.The predictor accepts a list of FASTA formatted sequences as an input and outputs the NOLS predictions as a result.Please note that currently, JPred secondary structure predictions are not supported by clinod. However, we are working on it.", + "EDAM operation": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://www.compbio.dundee.ac.uk/www-nod/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "clinod", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/clinod", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/clinod", + "Galaxy wrapper version": "0.1.0", + "Conda id": "clinod", + "Conda version": "1.3", + "EDAM operation (no superclasses)": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "count_roi_variants", + "Galaxy tool ids": [ + "count_roi_variants" + ], + "Description": "Count sequence variants in region of interest in BAM file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants", + "ToolShed categories": [ + "Assembly", + "SAM" + ], + "ToolShed id": "count_roi_variants", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants", + "Galaxy wrapper version": "0.0.6", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "coverage_stats", + "Galaxy tool ids": [ + "coverage_stats" + ], + "Description": "BAM coverage statistics using samtools idxstats and depth", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats", + "ToolShed categories": [ + "Assembly", + "SAM" + ], + "ToolShed id": "coverage_stats", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats", + "Galaxy wrapper version": "0.1.0", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "effectiveT3", + "Galaxy tool ids": [ + "effectiveT3" + ], + "Description": "Find bacterial type III effectors in protein sequences", + "bio.tool id": "effectivet3", + "bio.tool ids": [ + "effectivet3" + ], + "biii": null, + "bio.tool name": "EffectiveT3", + "bio.tool description": "Prediction of putative Type-III secreted proteins.", + "EDAM operation": [ + "Sequence classification" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://effectors.org", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "effectivet3", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3", + "Galaxy wrapper version": "0.0.21", + "Conda id": "effectiveT3", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [ + "Sequence classification" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fasta_filter_by_id", + "Galaxy tool ids": [ + "fasta_filter_by_id" + ], + "Description": "Filter FASTA sequences by ID (DEPRECATED)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis", + "Text Manipulation" + ], + "ToolShed id": "fasta_filter_by_id", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id", + "Galaxy wrapper version": "0.0.7", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fastq_filter_by_id", + "Galaxy tool ids": [ + "fastq_filter_by_id" + ], + "Description": "Filter FASTQ sequences by ID (DEPRECATED)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id", + "ToolShed categories": [ + "Fastq Manipulation", + "Sequence Analysis", + "Text Manipulation" + ], + "ToolShed id": "fastq_filter_by_id", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id", + "Galaxy wrapper version": "0.0.7", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fastq_pair_names", + "Galaxy tool ids": [ + "fastq_pair_names" + ], + "Description": "Extract FASTQ paired read names", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fastq_pair_names", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names", + "Galaxy wrapper version": "0.0.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fastq_paired_unpaired", + "Galaxy tool ids": [ + "fastq_paired_unpaired" + ], + "Description": "Divide FASTQ file into paired and unpaired reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired", + "ToolShed categories": [ + "Sequence Analysis", + "Text Manipulation" + ], + "ToolShed id": "fastq_paired_unpaired", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired", + "Galaxy wrapper version": "0.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "get_orfs_or_cdss", + "Galaxy tool ids": [ + "get_orfs_or_cdss" + ], + "Description": "Search nucleotide sequences for open reading frames (ORFs), or coding sequences (CDSs)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "get_orfs_or_cdss", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss", + "Galaxy wrapper version": "0.2.3", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 186 + }, + { + "Galaxy wrapper id": "mummer", + "Galaxy tool ids": [ + "mummerplot_wrapper" + ], + "Description": "Draw dotplots using mummer, mucmer, or promer with mummerplot", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://mummer.sourceforge.net/", + "ToolShed categories": [ + "Graphics", + "Sequence Analysis", + "Visualization" + ], + "ToolShed id": "mummer", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/mummer", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/mummer", + "Galaxy wrapper version": "0.0.8", + "Conda id": "ghostscript", + "Conda version": "9.18", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 83, + "Total tool usage (usegalaxy.eu)": 652 + }, + { + "Galaxy wrapper id": "nlstradamus", + "Galaxy tool ids": [ + "nlstradamus" + ], + "Description": "Find nuclear localization signals (NLSs) in protein sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.moseslab.csb.utoronto.ca/NLStradamus", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "nlstradamus", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus", + "Galaxy wrapper version": "0.0.11", + "Conda id": "NLStradamus", + "Conda version": "1.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "predictnls", + "Galaxy tool ids": [ + "predictnls" + ], + "Description": "Python reimplementation of predictNLS for Galaxy", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "predictnls", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls", + "Galaxy wrapper version": "0.0.10", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "protein_analysis", + "Galaxy tool ids": [ + "promoter2", + "Psortb", + "rxlr_motifs", + "signalp3", + "tmhmm2", + "wolf_psort" + ], + "Description": "TMHMM, SignalP, Promoter, RXLR motifs, WoLF PSORT and PSORTb", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "tmhmm_and_signalp", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis", + "Galaxy wrapper version": "0.0.13", + "Conda id": "promoter", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 6, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 451, + "Total tool usage (usegalaxy.eu)": 6428 + }, + { + "Galaxy wrapper id": "sample_seqs", + "Galaxy tool ids": [ + "sample_seqs" + ], + "Description": "Sub-sample sequences files (e.g. to reduce coverage)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs", + "ToolShed categories": [ + "Assembly", + "Fasta Manipulation", + "Fastq Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "sample_seqs", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs", + "Galaxy wrapper version": "0.2.6", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 149, + "Total tool usage (usegalaxy.eu)": 3765 + }, + { + "Galaxy wrapper id": "samtools_depad", + "Galaxy tool ids": [ + "samtools_depad" + ], + "Description": "Re-align a SAM/BAM file with a padded reference (using samtools depad)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.htslib.org/", + "ToolShed categories": [ + "Assembly", + "SAM", + "Sequence Analysis" + ], + "ToolShed id": "samtools_depad", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad", + "Galaxy wrapper version": "0.0.5", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "samtools_depth", + "Galaxy tool ids": [ + "samtools_depth" + ], + "Description": "Coverage depth via samtools", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.htslib.org/", + "ToolShed categories": [ + "Assembly", + "Sequence Analysis", + "SAM" + ], + "ToolShed id": "samtools_depth", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth", + "Galaxy wrapper version": "0.0.3", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 296, + "Total tool usage (usegalaxy.eu)": 4948 + }, + { + "Galaxy wrapper id": "samtools_idxstats", + "Galaxy tool ids": [ + "samtools_idxstats" + ], + "Description": "BAM mapping statistics (using samtools idxstats)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.htslib.org/", + "ToolShed categories": [ + "Assembly", + "Next Gen Mappers", + "SAM" + ], + "ToolShed id": "samtools_idxstats", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats", + "Galaxy wrapper version": "0.0.6", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1450, + "Total tool usage (usegalaxy.eu)": 48426 + }, + { + "Galaxy wrapper id": "seq_composition", + "Galaxy tool ids": [ + "seq_composition" + ], + "Description": "Sequence composition", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "seq_composition", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition", + "Galaxy wrapper version": "0.0.5", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 71, + "Total tool usage (usegalaxy.eu)": 874 + }, + { + "Galaxy wrapper id": "seq_filter_by_id", + "Galaxy tool ids": [ + "seq_filter_by_id" + ], + "Description": "Filter sequences by ID", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis", + "Text Manipulation" + ], + "ToolShed id": "seq_filter_by_id", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id", + "Galaxy wrapper version": "0.2.9", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 306, + "Total tool usage (usegalaxy.eu)": 25302 + }, + { + "Galaxy wrapper id": "seq_filter_by_mapping", + "Galaxy tool ids": [ + "seq_filter_by_mapping" + ], + "Description": "Filter sequencing reads using SAM/BAM mapping files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping", + "ToolShed categories": [ + "Assembly", + "Fasta Manipulation", + "Fastq Manipulation", + "SAM", + "Sequence Analysis" + ], + "ToolShed id": "seq_filter_by_mapping", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping", + "Galaxy wrapper version": "0.0.8", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 82, + "Total tool usage (usegalaxy.eu)": 3784 + }, + { + "Galaxy wrapper id": "seq_length", + "Galaxy tool ids": [ + "seq_length" + ], + "Description": "Compute sequence length (from FASTA, QUAL, FASTQ, SFF, etc)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "seq_length", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length", + "Galaxy wrapper version": "0.0.5", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "seq_primer_clip", + "Galaxy tool ids": [ + "seq_primer_clip" + ], + "Description": "Trim off 5' or 3' primers", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip", + "ToolShed categories": [ + "Assembly", + "Fasta Manipulation", + "Text Manipulation" + ], + "ToolShed id": "seq_primer_clip", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip", + "Galaxy wrapper version": "0.0.18", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "seq_rename", + "Galaxy tool ids": [ + "seq_rename" + ], + "Description": "Rename sequences with ID mapping from a tabular file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis", + "Text Manipulation" + ], + "ToolShed id": "seq_rename", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename", + "Galaxy wrapper version": "0.0.10", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "seq_select_by_id", + "Galaxy tool ids": [ + "seq_select_by_id" + ], + "Description": "Select sequences by ID", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis", + "Text Manipulation" + ], + "ToolShed id": "seq_select_by_id", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id", + "Galaxy wrapper version": "0.0.15", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "venn_list", + "Galaxy tool ids": [ + "venn_list" + ], + "Description": "Draw Venn Diagram (PDF) from lists, FASTA files, etc", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list", + "ToolShed categories": [ + "Graphics", + "Sequence Analysis", + "Visualization" + ], + "ToolShed id": "venn_list", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list", + "Galaxy wrapper version": "0.1.2", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 248, + "Total tool usage (usegalaxy.eu)": 5067 + }, + { + "Galaxy wrapper id": "TrimNs", + "Galaxy tool ids": [ + "trimns" + ], + "Description": "TrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipeline", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNs", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "trimns", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/trimN", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs", + "Galaxy wrapper version": "0.1.0", + "Conda id": "trimns_vgp", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 42 + }, + { + "Galaxy wrapper id": "abricate", + "Galaxy tool ids": [ + "abricate", + "abricate_list", + "abricate_summary" + ], + "Description": "Mass screening of contigs for antiobiotic resistance genes", + "bio.tool id": "ABRicate", + "bio.tool ids": [ + "ABRicate" + ], + "biii": null, + "bio.tool name": "ABRicate", + "bio.tool description": "Mass screening of contigs for antimicrobial resistance or virulence genes.", + "EDAM operation": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic": [ + "Genomics", + "Microbiology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/tseemann/abricate", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "abricate", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/abricate/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/abricate", + "Galaxy wrapper version": "1.0.1", + "Conda id": "abricate", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Microbiology" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 3, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1764, + "Total tool usage (usegalaxy.eu)": 496717 + }, + { + "Galaxy wrapper id": "abritamr", + "Galaxy tool ids": [ + "abritamr" + ], + "Description": "A pipeline for running AMRfinderPlus and collating results into functional classes", + "bio.tool id": "abritamr", + "bio.tool ids": [ + "abritamr" + ], + "biii": null, + "bio.tool name": "abriTAMR", + "bio.tool description": "an AMR gene detection pipeline that runs AMRFinderPlus on a single (or list ) of given isolates and collates the results into a table, separating genes identified into functionally relevant groups.", + "EDAM operation": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic": [ + "Microbiology", + "Public health and epidemiology", + "Infectious disease" + ], + "Status": "To update", + "Source": "https://zenodo.org/record/7370628", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "abritamr", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamr", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/abritamr", + "Galaxy wrapper version": "1.0.14", + "Conda id": "abritamr", + "Conda version": "1.0.19", + "EDAM operation (no superclasses)": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic (no superclasses)": [ + "Microbiology", + "Public health and epidemiology", + "Infectious disease" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "abyss", + "Galaxy tool ids": [ + "abyss-pe" + ], + "Description": "Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler", + "bio.tool id": "abyss", + "bio.tool ids": [ + "abyss" + ], + "biii": null, + "bio.tool name": "ABySS", + "bio.tool description": "De novo genome sequence assembler using short reads.", + "EDAM operation": [ + "Genome assembly", + "De-novo assembly", + "Scaffolding" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "To update", + "Source": "http://www.bcgsc.ca/platform/bioinfo/software/abyss", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "abyss", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss", + "Galaxy wrapper version": "2.3.7", + "Conda id": "abyss", + "Conda version": "2.3.8", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "De-novo assembly", + "Scaffolding" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 391, + "Total tool usage (usegalaxy.eu)": 4278 + }, + { + "Galaxy wrapper id": "adapter_removal", + "Galaxy tool ids": [ + "adapter_removal" + ], + "Description": "Removes residual adapter sequences from single-end (SE) or paired-end (PE) FASTQ reads.", + "bio.tool id": "adapterremoval", + "bio.tool ids": [ + "adapterremoval" + ], + "biii": null, + "bio.tool name": "AdapterRemoval", + "bio.tool description": "AdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. AdapterRemoval can analyze both single end and paired end data, and can be used to merge overlapping paired-ended reads into (longer) consensus sequences. Additionally, AdapterRemoval can construct a consensus adapter sequence for paired-ended reads, if which this information is not available.", + "EDAM operation": [ + "Sequence trimming", + "Sequence merging", + "Primer removal" + ], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/MikkelSchubert/adapterremoval", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "adapter_removal", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/adapter_removal", + "Galaxy wrapper version": "2.3.4", + "Conda id": "adapterremoval", + "Conda version": "2.3.4", + "EDAM operation (no superclasses)": [ + "Sequence trimming", + "Sequence merging", + "Primer removal" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 37, + "Total tool usage (usegalaxy.eu)": 217 + }, + { + "Galaxy wrapper id": "add_input_name_as_column", + "Galaxy tool ids": [ + "addName" + ], + "Description": "Add input name as column on an existing tabular file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/add_input_name_as_column", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "add_input_name_as_column", + "Galaxy wrapper owner": "mvdbeek", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/add_input_name_as_column", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/add_input_name_as_column", + "Galaxy wrapper version": "0.2.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 91, + "Total tool usage (usegalaxy.eu)": 83150 + }, + { + "Galaxy wrapper id": "aegean", + "Galaxy tool ids": [ + "aegean_canongff3", + "aegean_gaeval", + "aegean_locuspocus", + "aegean_parseval" + ], + "Description": "AEGeAn toolkit wrappers", + "bio.tool id": "gaeval", + "bio.tool ids": [ + "gaeval" + ], + "biii": null, + "bio.tool name": "GAEVAL", + "bio.tool description": "Gene Annotation EVAluation.", + "EDAM operation": [ + "Sequence annotation" + ], + "EDAM topic": [ + "Sequence analysis", + "Gene structure" + ], + "Status": "Up-to-date", + "Source": "https://github.com/BrendelGroup/AEGeAn", + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "aegean", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/aegean", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean", + "Galaxy wrapper version": "0.16.0", + "Conda id": "aegean", + "Conda version": "0.16.0", + "EDAM operation (no superclasses)": [ + "Sequence annotation" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Gene structure" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 47, + "Total tool usage (usegalaxy.eu)": 168 + }, + { + "Galaxy wrapper id": "aldex2", + "Galaxy tool ids": [ + "aldex2" + ], + "Description": "Performs analysis Of differential abundance taking sample variation into account", + "bio.tool id": "aldex2", + "bio.tool ids": [ + "aldex2" + ], + "biii": null, + "bio.tool name": "ALDEx2", + "bio.tool description": "A differential abundance analysis for the comparison of two or more conditions. It uses a Dirichlet-multinomial model to infer abundance from counts, that has been optimized for three or more experimental replicates. Infers sampling variation and calculates the expected FDR given the biological and sampling variation using the Wilcox rank test and Welches t-test, or the glm and Kruskal Wallis tests. Reports both P and fdr values calculated by the Benjamini Hochberg correction.", + "EDAM operation": [ + "Statistical inference" + ], + "EDAM topic": [ + "Gene expression", + "Statistics and probability" + ], + "Status": "To update", + "Source": "https://github.com/ggloor/ALDEx_bioc", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "aldex2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/aldex2", + "Galaxy wrapper version": "1.26.0", + "Conda id": "bioconductor-aldex2", + "Conda version": "1.34.0", + "EDAM operation (no superclasses)": [ + "Statistical inference" + ], + "EDAM topic (no superclasses)": [ + "Gene expression", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 129 + }, + { + "Galaxy wrapper id": "allegro", + "Galaxy tool ids": [ + "allegro" + ], + "Description": "Linkage and haplotype analysis from deCODE", + "bio.tool id": "allegro", + "bio.tool ids": [ + "allegro" + ], + "biii": null, + "bio.tool name": "Allegro", + "bio.tool description": "It does simultaneous discovery of cis-regulatory motifs and their associated expression profiles. Its input are DNA sequences (typically, promoters or 3′ UTRs) and genome-wide expression profiles. Its output is the set of motifs found, and for each motif the set of genes it regulates (its transcriptional module). It is highly efficient and can analyze expression profiles of thousands of genes, measured across dozens of experimental conditions, along with all regulatory sequences in the genome.", + "EDAM operation": [ + "Sequence motif discovery" + ], + "EDAM topic": [ + "Sequence analysis", + "Transcription factors and regulatory sites", + "DNA" + ], + "Status": "To update", + "Source": "http://www.decode.com/software/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "allegro", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/allegro/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/allegro", + "Galaxy wrapper version": "@VER@.0", + "Conda id": "allegro", + "Conda version": "3", + "EDAM operation (no superclasses)": [ + "Sequence motif discovery" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Transcription factors and regulatory sites", + "DNA" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "amplican", + "Galaxy tool ids": [ + "amplican" + ], + "Description": "AmpliCan is an analysis tool for genome editing.", + "bio.tool id": "amplican", + "bio.tool ids": [ + "amplican" + ], + "biii": null, + "bio.tool name": "amplican", + "bio.tool description": "It performs alignment of the amplicon reads, normalizes gathered data, calculates multiple statistics (e.g. cut rates, frameshifts) and presents results in form of aggregated reports. Data and statistics can be broken down by experiments, barcodes, user defined groups, guides and amplicons allowing for quick identification of potential problems.", + "EDAM operation": [ + "Alignment", + "Standardisation and normalisation" + ], + "EDAM topic": [ + "PCR experiment", + "Statistics and probability" + ], + "Status": "To update", + "Source": "https://github.com/valenlab/amplican", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "amplican", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/amplican", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/amplican", + "Galaxy wrapper version": "1.14.0", + "Conda id": "bioconductor-amplican", + "Conda version": "1.24.0", + "EDAM operation (no superclasses)": [ + "Alignment", + "Standardisation and normalisation" + ], + "EDAM topic (no superclasses)": [ + "PCR experiment", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 53 + }, + { + "Galaxy wrapper id": "ampvis2", + "Galaxy tool ids": [ + "ampvis2_alpha_diversity", + "ampvis2_boxplot", + "ampvis2_core", + "ampvis2_export_fasta", + "ampvis2_frequency", + "ampvis2_heatmap", + "ampvis2_load", + "ampvis2_merge_ampvis2", + "ampvis2_mergereplicates", + "ampvis2_octave", + "ampvis2_ordinate", + "ampvis2_otu_network", + "ampvis2_rankabundance", + "ampvis2_rarecurve", + "ampvis2_setmetadata", + "ampvis2_subset_samples", + "ampvis2_subset_taxa", + "ampvis2_timeseries", + "ampvis2_venn" + ], + "Description": "ampvis2", + "bio.tool id": "ampvis", + "bio.tool ids": [ + "ampvis" + ], + "biii": null, + "bio.tool name": "ampvis", + "bio.tool description": "ampvis2 is an R-package to conveniently visualise and analyse 16S rRNA amplicon data in different ways.", + "EDAM operation": [ + "Analysis", + "Visualisation" + ], + "EDAM topic": [ + "Biodiversity" + ], + "Status": "To update", + "Source": "https://github.com/MadsAlbertsen/ampvis2/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "ampvis2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ampvis2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ampvis2", + "Galaxy wrapper version": "2.8.9", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Analysis", + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Biodiversity" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 19, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 19, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 19, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 42, + "Total tool usage (usegalaxy.eu)": 267 + }, + { + "Galaxy wrapper id": "amrfinderplus", + "Galaxy tool ids": [ + "amrfinderplus" + ], + "Description": "\"AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search \"plus\", stress, heat, and biocide resistance and virulence factors for some organisms.", + "bio.tool id": "amrfinderplus", + "bio.tool ids": [ + "amrfinderplus" + ], + "biii": null, + "bio.tool name": "AMRFinderPlus", + "bio.tool description": "AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search \"plus\", stress, heat, and biocide resistance and virulence factors for some organisms", + "EDAM operation": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic": [ + "Microbiology", + "Public health and epidemiology", + "Infectious disease" + ], + "Status": "Up-to-date", + "Source": "https://github.com/ncbi/amr", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "AMRFinderPlus", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/amrfinderplus", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/amrfinderplus", + "Galaxy wrapper version": "3.12.8", + "Conda id": "ncbi-amrfinderplus", + "Conda version": "3.12.8", + "EDAM operation (no superclasses)": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic (no superclasses)": [ + "Microbiology", + "Public health and epidemiology", + "Infectious disease" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 591 + }, + { + "Galaxy wrapper id": "ancombc", + "Galaxy tool ids": [ + "ancombc" + ], + "Description": "Performs analysis of compositions of microbiomes with bias correction.", + "bio.tool id": "ancombc", + "bio.tool ids": [ + "ancombc" + ], + "biii": null, + "bio.tool name": "ANCOMBC", + "bio.tool description": "Determine taxa whose absolute abundances, per unit volume, of the ecosystem (e.g. gut) are significantly different with changes in the covariate of interest (e.g. group). The current version of ancombc function implements Analysis of Compositions of Microbiomes with Bias Correction (ANCOM-BC) in cross-sectional data while allowing for covariate adjustment.", + "EDAM operation": [ + "DNA barcoding" + ], + "EDAM topic": [ + "Microbial ecology", + "Metagenomics", + "Taxonomy" + ], + "Status": "To update", + "Source": "https://github.com/FrederickHuangLin/ANCOMBC", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "ancombc", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ancombc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ancombc", + "Galaxy wrapper version": "1.4.0", + "Conda id": "bioconductor-ancombc", + "Conda version": "2.4.0", + "EDAM operation (no superclasses)": [ + "DNA barcoding" + ], + "EDAM topic (no superclasses)": [ + "Microbial ecology", + "Metagenomics", + "Taxonomy" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 7 + }, + { + "Galaxy wrapper id": "anndata", + "Galaxy tool ids": [ + "anndata_export", + "anndata_import", + "anndata_inspect", + "anndata_manipulate", + "modify_loom" + ], + "Description": "Import, Export, Inspect and Manipulate Anndata and Loom objects", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://anndata.readthedocs.io", + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "anndata", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata", + "Galaxy wrapper version": "0.10.3", + "Conda id": "anndata", + "Conda version": "0.6.22.post1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 625, + "Total tool usage (usegalaxy.eu)": 35620 + }, + { + "Galaxy wrapper id": "annotatemyids", + "Galaxy tool ids": [ + "annotatemyids" + ], + "Description": "annotateMyIDs: get annotation for a set of IDs using the Bioconductor annotation packages", + "bio.tool id": "annotatemyids", + "bio.tool ids": [ + "annotatemyids" + ], + "biii": null, + "bio.tool name": "annotatemyids", + "bio.tool description": "This tool can get annotation for a generic set of IDs, using the Bioconductor annotation data packages. Supported organisms are human, mouse, rat, fruit fly and zebrafish. The org.db packages that are used here are primarily based on mapping using Entrez Gene identifiers. More information on the annotation packages can be found at the Bioconductor website, for example, information on the human annotation package (org.Hs.eg.db) can be found here.", + "EDAM operation": [ + "Annotation" + ], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "annotatemyids", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/annotatemyids", + "Galaxy wrapper version": "3.18.0", + "Conda id": "bioconductor-org.hs.eg.db", + "Conda version": "3.18.0", + "EDAM operation (no superclasses)": [ + "Annotation" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1175, + "Total tool usage (usegalaxy.eu)": 25975 + }, + { + "Galaxy wrapper id": "argnorm", + "Galaxy tool ids": [ + "argnorm" + ], + "Description": "argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database", + "bio.tool id": "argnorm", + "bio.tool ids": [ + "argnorm" + ], + "biii": null, + "bio.tool name": "argNorm", + "bio.tool description": "argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database.argNorm also enhances antibiotic resistance gene annotations by providing drug categorization of the drugs that antibiotic resistance genes confer resistance to.", + "EDAM operation": [ + "Gene functional annotation" + ], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/BigDataBiology/argNorm", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "argnorm", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm", + "Galaxy wrapper version": "0.6.0", + "Conda id": "argnorm", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [ + "Gene functional annotation" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "arriba", + "Galaxy tool ids": [ + "arriba", + "arriba_draw_fusions", + "arriba_get_filters" + ], + "Description": "Arriba detects fusion genes in RNA-Seq data after running RNA-STAR", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/suhrig/arriba", + "ToolShed categories": [ + "Sequence Analysis", + "Transcriptomics" + ], + "ToolShed id": "arriba", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba", + "Galaxy wrapper version": "2.4.0", + "Conda id": "arriba", + "Conda version": "2.4.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 38, + "Total tool usage (usegalaxy.eu)": 3528 + }, + { + "Galaxy wrapper id": "art", + "Galaxy tool ids": [ + "art_454", + "art_illumina", + "art_solid" + ], + "Description": "Simulator for Illumina, 454, and SOLiD sequencing data", + "bio.tool id": "art", + "bio.tool ids": [ + "art" + ], + "biii": null, + "bio.tool name": "ART", + "bio.tool description": "ART is a set of simulation tools to generate synthetic next-generation sequencing reads. ART simulates sequencing reads by mimicking real sequencing process with empirical error models or quality profiles summarized from large recalibrated sequencing data. ART can also simulate reads using user own read error model or quality profiles. ART supports simulation of single-end, paired-end/mate-pair reads of three major commercial next-generation sequencing platforms. Illuminas Solexa, Roches 454 and Applied Biosystems SOLiD", + "EDAM operation": [ + "Conversion" + ], + "EDAM topic": [ + "Bioinformatics" + ], + "Status": "To update", + "Source": "http://www.niehs.nih.gov/research/resources/software/biostatistics/art/", + "ToolShed categories": [ + "Sequence Analysis", + "Data Source" + ], + "ToolShed id": "art", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/art", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/art", + "Galaxy wrapper version": "2014.11.03.0", + "Conda id": "art", + "Conda version": "2016.06.05", + "EDAM operation (no superclasses)": [ + "Conversion" + ], + "EDAM topic (no superclasses)": [ + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 3, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "artic", + "Galaxy tool ids": [ + "artic_guppyplex", + "artic_minion" + ], + "Description": "The artic pipeline is designed to help run the artic bioinformatics protocols;for example the nCoV-2019 novel coronavirus protocol.Features include: read filtering, primer trimming, amplicon coverage normalisation,variant calling and consensus building", + "bio.tool id": "artic", + "bio.tool ids": [ + "artic" + ], + "biii": null, + "bio.tool name": "ARTIC", + "bio.tool description": "A bioinformatics pipeline for working with virus sequencing data sequenced with nanopore", + "EDAM operation": [ + "Sequence alignment" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "To update", + "Source": "https://github.com/artic-network/fieldbioinformatics", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/artic", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/artic", + "Galaxy wrapper version": null, + "Conda id": "artic", + "Conda version": "1.2.4", + "EDAM operation (no superclasses)": [ + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 123, + "Total tool usage (usegalaxy.eu)": 8175 + }, + { + "Galaxy wrapper id": "assembly-stats", + "Galaxy tool ids": [ + "assembly_stats" + ], + "Description": "Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/rjchallis/assembly-stats", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "assembly_stats", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-stats", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats", + "Galaxy wrapper version": "17.02", + "Conda id": "rjchallis-assembly-stats", + "Conda version": "17.02", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "astral", + "Galaxy tool ids": [ + "astral" + ], + "Description": "Tool for estimating an unrooted species tree given a set of unrooted gene trees", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/smirarab/ASTRAL", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "astral", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/usegalaxy-be/galaxytools/tree/main/astral", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/astral", + "Galaxy wrapper version": "5.7.8", + "Conda id": "astral-tree", + "Conda version": "5.7.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "augustus", + "Galaxy tool ids": [ + "augustus", + "augustus_training" + ], + "Description": "AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences.", + "bio.tool id": "augustus", + "bio.tool ids": [ + "augustus" + ], + "biii": null, + "bio.tool name": "AUGUSTUS", + "bio.tool description": "AUGUSTUS is a eukaryotic gene prediction tool. It can integrate evidence, e.g. from RNA-Seq, ESTs, proteomics, but can also predict genes ab initio. The PPX extension to AUGUSTUS can take a protein sequence multiple sequence alignment as input to find new members of the family in a genome. It can be run through a web interface (see https://bio.tools/webaugustus), or downloaded and run locally.", + "EDAM operation": [ + "Gene prediction", + "Ab-initio gene prediction", + "Homology-based gene prediction", + "Homology-based gene prediction", + "Operation" + ], + "EDAM topic": [ + "Gene transcripts", + "Gene and protein families" + ], + "Status": "To update", + "Source": "http://bioinf.uni-greifswald.de/augustus/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "augustus", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/augustus", + "Galaxy wrapper version": "3.4.0", + "Conda id": "augustus", + "Conda version": "3.5.0", + "EDAM operation (no superclasses)": [ + "Ab-initio gene prediction", + "Homology-based gene prediction", + "Homology-based gene prediction", + "Operation" + ], + "EDAM topic (no superclasses)": [ + "Gene transcripts", + "Gene and protein families" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 685, + "Total tool usage (usegalaxy.eu)": 11245 + }, + { + "Galaxy wrapper id": "b2btools", + "Galaxy tool ids": [ + "b2btools_single_sequence" + ], + "Description": "This software suite provides structural predictions for protein sequences made by Bio2Byte group.About Bio2Byte: We investigate how the dynamics, conformational states, and available experimental data of proteins relate to their amino acid sequence.Underlying physical and chemical principles are computationally unraveled through data integration, analysis, and machine learning, so connecting themto biological events and improving our understanding of the way proteins work.", + "bio.tool id": "b2btools", + "bio.tool ids": [ + "b2btools" + ], + "biii": null, + "bio.tool name": "b2bTools", + "bio.tool description": "The bio2byte tools server (b2btools) offers the following single protein sequence based predictions:- Backbone and sidechain dynamics (DynaMine)- Helix, sheet, coil and polyproline-II propensity- Early folding propensity (EFoldMine)- Disorder (DisoMine)- Beta-sheet aggregation (Agmata)In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'biophysical limits' of a protein family as defined in the MSA", + "EDAM operation": [ + "Protein disorder prediction", + "Protein secondary structure prediction", + "Protein feature detection" + ], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bio2byte.be", + "ToolShed categories": [ + "Computational chemistry", + "Molecular Dynamics", + "Proteomics", + "Sequence Analysis", + "Synthetic Biology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/b2tools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/b2btools", + "Galaxy wrapper version": "3.0.5+galaxy0", + "Conda id": "b2btools", + "Conda version": "3.0.7", + "EDAM operation (no superclasses)": [ + "Protein disorder prediction", + "Protein secondary structure prediction" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 345 + }, + { + "Galaxy wrapper id": "bakta", + "Galaxy tool ids": [ + "bakta" + ], + "Description": "\"Bakta is a tool for the rapid & standardized annotation of bacterial genomes and plasmids from both isolates and MAGs.It provides dbxref-rich and sORF-including annotations in machine-readable JSON & bioinformatics standard file formats for automatic downstream analysis.\"", + "bio.tool id": "bakta", + "bio.tool ids": [ + "bakta" + ], + "biii": null, + "bio.tool name": "Bakta", + "bio.tool description": "Rapid & standardized annotation of bacterial genomes, MAGs & plasmids", + "EDAM operation": [ + "Genome annotation" + ], + "EDAM topic": [ + "Genomics", + "Data submission, annotation and curation", + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://github.com/oschwengers/bakta", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bakta", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/bakta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bakta", + "Galaxy wrapper version": "1.9.3", + "Conda id": "bakta", + "Conda version": "1.9.4", + "EDAM operation (no superclasses)": [ + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Data submission, annotation and curation", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 151, + "Total tool usage (usegalaxy.eu)": 2982 + }, + { + "Galaxy wrapper id": "bam_to_scidx", + "Galaxy tool ids": [ + "bam_to_scidx" + ], + "Description": "Contains a tool that converts a BAM file to an ScIdx file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/bamtoscidx", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "bam_to_scidx", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bam_to_scidx", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bam_to_scidx", + "Galaxy wrapper version": "1.0.1", + "Conda id": "openjdk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 128 + }, + { + "Galaxy wrapper id": "bamutil", + "Galaxy tool ids": [ + "bamutil_clip_overlap", + "bamutil_diff" + ], + "Description": "bamUtil is a repository that contains several programs that perform operations on SAM/BAM files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/statgen/bamUtil", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bamutil", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bamutil", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bamutil", + "Galaxy wrapper version": null, + "Conda id": "bamutil", + "Conda version": "1.0.15", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 39 + }, + { + "Galaxy wrapper id": "bandage", + "Galaxy tool ids": [ + "bandage_image", + "bandage_info" + ], + "Description": "Bandage - A Bioinformatics Application for Navigating De novo Assembly Graphs Easily", + "bio.tool id": "bandage", + "bio.tool ids": [ + "bandage" + ], + "biii": null, + "bio.tool name": "Bandage", + "bio.tool description": "GUI program that allows users to interact with the assembly graphs made by de novo assemblers such as Velvet, SPAdes, MEGAHIT and others. It visualises assembly graphs, with connections, using graph layout algorithms.", + "EDAM operation": [ + "Sequence assembly visualisation" + ], + "EDAM topic": [ + "Genomics", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/rrwick/Bandage", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "bandage", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bandage", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bandage", + "Galaxy wrapper version": "2022.09", + "Conda id": "bandage_ng", + "Conda version": "2022.09", + "EDAM operation (no superclasses)": [ + "Sequence assembly visualisation" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2016, + "Total tool usage (usegalaxy.eu)": 44390 + }, + { + "Galaxy wrapper id": "barcode_splitter", + "Galaxy tool ids": [ + "barcode_splitter" + ], + "Description": "A utility to split sequence files using multiple sets of barcodes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/princeton_genomics/barcode_splitter/", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "barcode_splitter", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/barcode_splitter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/barcode_splitter", + "Galaxy wrapper version": "0.18.4.0", + "Conda id": "barcode_splitter", + "Conda version": "0.18.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "baredsc", + "Galaxy tool ids": [ + "baredsc_1d", + "baredsc_2d", + "baredsc_combine_1d", + "baredsc_combine_2d" + ], + "Description": "baredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data.", + "bio.tool id": "baredsc", + "bio.tool ids": [ + "baredsc" + ], + "biii": null, + "bio.tool name": "baredSC", + "bio.tool description": "The baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data.", + "EDAM operation": [ + "Data retrieval", + "Expression correlation analysis", + "Differential gene expression profiling" + ], + "EDAM topic": [ + "RNA-Seq", + "Cytometry", + "Transcriptomics", + "Gene transcripts", + "Statistics and probability" + ], + "Status": "Up-to-date", + "Source": "https://github.com/lldelisle/baredSC", + "ToolShed categories": [ + "Transcriptomics", + "Visualization" + ], + "ToolShed id": "baredsc", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/baredsc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc", + "Galaxy wrapper version": "1.1.3", + "Conda id": "baredsc", + "Conda version": "1.1.3", + "EDAM operation (no superclasses)": [ + "Data retrieval", + "Expression correlation analysis", + "Differential gene expression profiling" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq", + "Cytometry", + "Transcriptomics", + "Gene transcripts", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 71 + }, + { + "Galaxy wrapper id": "barrnap", + "Galaxy tool ids": [ + "barrnap" + ], + "Description": "Contains the Barrnap tool for finding ribosomal RNAs in FASTA sequences.", + "bio.tool id": "barrnap", + "bio.tool ids": [ + "barrnap" + ], + "biii": null, + "bio.tool name": "Barrnap", + "bio.tool description": "Predict the location of ribosomal RNA genes in genomes. It supports bacteria (5S,23S,16S), archaea (5S,5.8S,23S,16S), mitochondria (12S,16S) and eukaryotes (5S,5.8S,28S,18S).", + "EDAM operation": [ + "Gene prediction" + ], + "EDAM topic": [ + "Genomics", + "Model organisms", + "Model organisms" + ], + "Status": "To update", + "Source": "https://github.com/tseemann/barrnap", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "barrnap", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/barrnap", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/barrnap", + "Galaxy wrapper version": "1.2.2", + "Conda id": "barrnap", + "Conda version": "0.9", + "EDAM operation (no superclasses)": [ + "Gene prediction" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Model organisms", + "Model organisms" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 160, + "Total tool usage (usegalaxy.eu)": 3938 + }, + { + "Galaxy wrapper id": "basil", + "Galaxy tool ids": [ + "basil" + ], + "Description": "Breakpoint detection, including large insertions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/seqan/anise_basil", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "basil", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/basil", + "Galaxy wrapper version": "1.2.0", + "Conda id": "anise_basil", + "Conda version": "1.2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 35, + "Total tool usage (usegalaxy.eu)": 266 + }, + { + "Galaxy wrapper id": "bax2bam", + "Galaxy tool ids": [ + "bax2bam" + ], + "Description": "BAX to BAM converter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/pacificbiosciences/bax2bam/", + "ToolShed categories": [ + "Convert Formats", + "Sequence Analysis" + ], + "ToolShed id": "bax2bam", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pax2bam", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bax2bam", + "Galaxy wrapper version": "0.0.11", + "Conda id": "bax2bam", + "Conda version": "0.0.11", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 200 + }, + { + "Galaxy wrapper id": "bayescan", + "Galaxy tool ids": [ + "BayeScan" + ], + "Description": "Detecting natural selection from population-based genetic data", + "bio.tool id": "bayescan", + "bio.tool ids": [ + "bayescan" + ], + "biii": null, + "bio.tool name": "BayeScan", + "bio.tool description": "BAYEsian genome SCAN for outliers, aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. It is based on the multinomial-Dirichlet model.", + "EDAM operation": [ + "Statistical inference" + ], + "EDAM topic": [ + "Genetics", + "Evolutionary biology", + "Statistics and probability", + "DNA polymorphism" + ], + "Status": "To update", + "Source": "http://cmpg.unibe.ch/software/BayeScan/index.html", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bayescan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bayescan/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bayescan", + "Galaxy wrapper version": "2.1", + "Conda id": "bayescan", + "Conda version": "2.0.1", + "EDAM operation (no superclasses)": [ + "Statistical inference" + ], + "EDAM topic (no superclasses)": [ + "Genetics", + "Evolutionary biology", + "Statistics and probability", + "DNA polymorphism" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 64 + }, + { + "Galaxy wrapper id": "bbgbigwig", + "Galaxy tool ids": [ + "bbgtobigwig" + ], + "Description": "Make a coverage bigwig from bam, bed or gff, optionally with a chromosome length file.", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://www.encodeproject.org/software/bedgraphtobigwig/", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "bbgbigwig", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://www.encodeproject.org/software/bedgraphtobigwig/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bbgbigwig", + "Galaxy wrapper version": "0.1", + "Conda id": "ucsc-bedgraphtobigwig", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bbtools", + "Galaxy tool ids": [ + "bbtools_bbduk", + "bbtools_bbmap", + "bbtools_bbmerge", + "bbtools_bbnorm", + "bbtools_callvariants", + "bbtools_tadpole" + ], + "Description": "BBTools is a suite of fast, multithreaded bioinformatics tools designed for analysis of DNA and RNA sequence data.BBTools can handle common sequencing file formats such as fastq, fasta, sam, scarf, fasta+qual, compressed or raw,with autodetection of quality encoding and interleaving. It is written in Java and works on any platform supportingJava, including Linux, MacOS, and Microsoft Windows and Linux; there are no dependencies other than Java (version7 or higher). Program descriptions and options are shown when running the shell scripts with no parameters.", + "bio.tool id": "bbmap", + "bio.tool ids": [ + "bbtools", + "bbmap" + ], + "biii": null, + "bio.tool name": "BBMap", + "bio.tool description": "BBMap is a fast splice-aware aligner for RNA and DNA. It is faster than almost all short-read aligners, yet retains unrivaled sensitivity and specificity, particularly for reads with many errors and indels.", + "EDAM operation": [ + "RNA-Seq analysis", + "Sequence trimming", + "Read mapping", + "Sequence contamination filtering", + "Read binning", + "Sequence alignment" + ], + "EDAM topic": [ + "Sequencing", + "RNA splicing", + "Whole genome sequencing", + "Phylogenetics", + "Metagenomics", + "RNA-Seq" + ], + "Status": "Up-to-date", + "Source": "https://jgi.doe.gov/data-and-tools/bbtools/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bbtools", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bbtools", + "Galaxy wrapper version": "39.08", + "Conda id": "bbmap", + "Conda version": "39.08", + "EDAM operation (no superclasses)": [ + "RNA-Seq analysis", + "Sequence trimming", + "Read mapping", + "Sequence contamination filtering", + "Read binning", + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "RNA splicing", + "Whole genome sequencing", + "Phylogenetics", + "Metagenomics", + "RNA-Seq" + ], + "Available on UseGalaxy.org (Main)": 6, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 6, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 420, + "Total tool usage (usegalaxy.eu)": 6381 + }, + { + "Galaxy wrapper id": "bcftools", + "Galaxy tool ids": [ + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@_from_vcf", + "bcftools_@EXECUTABLE@_to_vcf", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_plugin_@PLUGIN_ID@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@_list_samples", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@", + "bcftools_@EXECUTABLE@" + ], + "Description": "BCFtools toolkit wrappers", + "bio.tool id": "bcftools", + "bio.tool ids": [ + "bcftools" + ], + "biii": null, + "bio.tool name": "BCFtools", + "bio.tool description": "BCFtools is a set of utilities that manipulate variant calls in the Variant Call Format (VCF) and its binary counterpart BCF. All commands work transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed.", + "EDAM operation": [ + "Data handling", + "Variant calling" + ], + "EDAM topic": [ + "Genetic variation", + "DNA polymorphism", + "GWAS study", + "Genotyping experiment" + ], + "Status": "To update", + "Source": "https://samtools.github.io/bcftools/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bcftools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bcftools", + "Galaxy wrapper version": "1.15.1", + "Conda id": "bcftools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [ + "Data handling", + "Variant calling" + ], + "EDAM topic (no superclasses)": [ + "DNA polymorphism", + "GWAS study", + "Genotyping experiment" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bctools", + "Galaxy tool ids": [ + "bctools_convert_to_binary_barcode", + "bctools_extract_crosslinked_nucleotides", + "bctools_extract_alignment_ends", + "bctools_extract_barcodes", + "bctools_merge_pcr_duplicates", + "bctools_remove_tail", + "bctools_remove_spurious_events" + ], + "Description": "bctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/dmaticzka/bctools", + "ToolShed categories": [ + "Sequence Analysis", + "Transcriptomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools", + "Galaxy wrapper version": "0.2.2", + "Conda id": "bctools", + "Conda version": "0.2.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 7, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 87, + "Total tool usage (usegalaxy.eu)": 2895 + }, + { + "Galaxy wrapper id": "beacon2-import", + "Galaxy tool ids": [ + "beacon2_analyses", + "beacon2_biosamples", + "beacon2_bracket", + "beacon2_cnv", + "beacon2_cohorts", + "beacon2_datasets", + "beacon2_gene", + "beacon2_import", + "beacon2_individuals", + "beacon2_range", + "beacon2_runs", + "beacon2_sequence" + ], + "Description": "Beacon Import uploads local genetic data to the server, while Beacon Query searches for genetic information such as genes, sequences, and variants.", + "bio.tool id": "ga4gh_beacon", + "bio.tool ids": [ + "ga4gh_beacon" + ], + "biii": null, + "bio.tool name": "GA4GH Beacon", + "bio.tool description": "A global search engine for genetic mutations.", + "EDAM operation": [ + "Service discovery", + "Database search", + "Genetic variation analysis" + ], + "EDAM topic": [ + "Genetic variation", + "Population genetics", + "Data security", + "Rare diseases" + ], + "Status": "Up-to-date", + "Source": "https://pypi.org/project/beacon2-import/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "Beacon2_Import", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/beacon2-import", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/beacon2-import", + "Galaxy wrapper version": "2.2.3", + "Conda id": "beacon2-import", + "Conda version": "2.2.3", + "EDAM operation (no superclasses)": [ + "Service discovery", + "Database search", + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Genetic variation", + "Population genetics", + "Data security", + "Rare diseases" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 12, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 12, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "beacon2", + "Galaxy tool ids": [ + "beacon2_csv2xlsx", + "beacon2_pxf2bff", + "beacon2_vcf2bff" + ], + "Description": "beacon2-ri-tools are part of the ELIXIR-CRG Beacon v2 Reference Implementation (B2RI).", + "bio.tool id": "ga4gh_beacon", + "bio.tool ids": [ + "ga4gh_beacon" + ], + "biii": null, + "bio.tool name": "GA4GH Beacon", + "bio.tool description": "A global search engine for genetic mutations.", + "EDAM operation": [ + "Service discovery", + "Database search", + "Genetic variation analysis" + ], + "EDAM topic": [ + "Genetic variation", + "Population genetics", + "Data security", + "Rare diseases" + ], + "Status": "Up-to-date", + "Source": "https://github.com/EGA-archive/beacon2-ri-tools/tree/main", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "beacon2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/beacon2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/beacon2", + "Galaxy wrapper version": "2.0.0", + "Conda id": "beacon2-ri-tools", + "Conda version": "2.0.0", + "EDAM operation (no superclasses)": [ + "Service discovery", + "Database search", + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Genetic variation", + "Population genetics", + "Data security", + "Rare diseases" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 28 + }, + { + "Galaxy wrapper id": "beagle", + "Galaxy tool ids": [ + "beagle" + ], + "Description": "Beagle is a program for phasing and imputing missing genotypes.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://faculty.washington.edu/browning/beagle/beagle.html", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "beagle", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/beagle", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/beagle", + "Galaxy wrapper version": "5.2_21Apr21.304", + "Conda id": "beagle", + "Conda version": "5.4_22Jul22.46e", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 54 + }, + { + "Galaxy wrapper id": "bedops", + "Galaxy tool ids": [ + "bedops-sort-bed" + ], + "Description": "BEDOPS: high-performance genomic feature operations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://bedops.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "bedops_sortbed", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://bedops.readthedocs.io/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bedops", + "Galaxy wrapper version": "2.4.41", + "Conda id": "bedops", + "Conda version": "2.4.41", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 28 + }, + { + "Galaxy wrapper id": "bedtools", + "Galaxy tool ids": [ + "bedtools_annotatebed", + "bedtools_bamtobed", + "bedtools_bed12tobed6", + "bedtools_bedtobam", + "bedtools_bedtoigv", + "bedtools_bedpetobam", + "bedtools_closestbed", + "bedtools_clusterbed", + "bedtools_complementbed", + "bedtools_coveragebed", + "bedtools_expandbed", + "bedtools_fisher", + "bedtools_flankbed", + "bedtools_genomecoveragebed", + "bedtools_getfastabed", + "bedtools_groupbybed", + "bedtools_intersectbed", + "bedtools_jaccard", + "bedtools_links", + "bedtools_makewindowsbed", + "bedtools_map", + "bedtools_maskfastabed", + "bedtools_mergebed", + "bedtools_multicovtbed", + "bedtools_multiintersectbed", + "bedtools_nucbed", + "bedtools_overlapbed", + "bedtools_randombed", + "bedtools_reldistbed", + "bedtools_shufflebed", + "bedtools_slopbed", + "bedtools_sortbed", + "bedtools_spacingbed", + "bedtools_subtractbed", + "bedtools_tagbed", + "bedtools_unionbedgraph", + "bedtools_windowbed" + ], + "Description": "bedtools is a powerful toolset for genome arithmetic", + "bio.tool id": "bedtools", + "bio.tool ids": [ + "bedtools" + ], + "biii": null, + "bio.tool name": "BEDTools", + "bio.tool description": "BEDTools is an extensive suite of utilities for comparing genomic features in BED format.", + "EDAM operation": [ + "Mapping" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/arq5x/bedtools2", + "ToolShed categories": [ + "Genomic Interval Operations", + "Text Manipulation" + ], + "ToolShed id": "bedtools", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bedtools", + "Galaxy wrapper version": "2.31.1", + "Conda id": "bedtools", + "Conda version": "2.31.1", + "EDAM operation (no superclasses)": [ + "Mapping" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 37, + "Available on UseGalaxy.org.au": 37, + "Available on UseGalaxy.eu": 37, + "Available on UseGalaxy.fr": 37, + "Tools available on UseGalaxy.org (Main)": 37, + "Tools available on UseGalaxy.org.au": 37, + "Tools available on UseGalaxy.eu": 37, + "Tools available on UseGalaxy.fr": 37, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 37, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 37, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 37, + "Tools available on Galaxy@Pasteur": 6, + "Tools available on GalaxyTrakr": 37, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 37, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 37, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 37, + "Tools available on UseGalaxy.no": 37, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5844, + "Total tool usage (usegalaxy.eu)": 901750 + }, + { + "Galaxy wrapper id": "bellerophon", + "Galaxy tool ids": [ + "bellerophon" + ], + "Description": "Filter mapped reads where the mapping spans a junction, retaining the 5-prime read.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/davebx/bellerophon", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bellerophon", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/davebx/bellerophon", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bellerophon", + "Galaxy wrapper version": "1.0", + "Conda id": "bellerophon", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 123, + "Total tool usage (usegalaxy.eu)": 1194 + }, + { + "Galaxy wrapper id": "berokka", + "Galaxy tool ids": [ + "berokka" + ], + "Description": "Berokka is used to trim, circularise, orient & filter long read bacterial genome assemblies.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/tseemann/berokka", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "berokka", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/berokka", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/berokka", + "Galaxy wrapper version": "0.2.3", + "Conda id": "berokka", + "Conda version": "0.2.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bigscape", + "Galaxy tool ids": [ + "bigscape" + ], + "Description": "Construct sequence similarity networks of BGCs and groups them into GCF", + "bio.tool id": "BiG-SCAPE", + "bio.tool ids": [ + "BiG-SCAPE" + ], + "biii": null, + "bio.tool name": "BiG-SCAPE", + "bio.tool description": "A computational framework to explore large-scale biosynthetic diversity.BiG-SCAPE (Biosynthetic Gene Similarity Clustering and Prospecting Engine) is a software package, written in Python, that constructs sequence similarity networks of Biosynthetic Gene Clusters (BGCs) and groups them into Gene Cluster Families (GCFs). BiG-SCAPE does this by rapidly calculating a distance matrix between gene clusters based on a comparison of their protein domain content, order, copy number and sequence identity.It defines a distance metric between Gene Clusters using a combination of three indices (Jaccard Index of domain types, Domain Sequence Similarity the Adjacency...BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynthetic gene clusters (BGCs) across large numbers of genomes, by constructing BGC sequence similarity networks, grouping BGCs into gene cluster families, and exploring gene cluster diversity linked to enzyme phylogenies.", + "EDAM operation": [ + "Clustering", + "Global alignment", + "Fold recognition" + ], + "EDAM topic": [ + "Phylogeny", + "Microbial ecology", + "Mapping", + "Metabolomics", + "Bioinformatics", + "Gene and protein families" + ], + "Status": "Up-to-date", + "Source": "https://github.com/medema-group/BiG-SCAPE", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "bigscape", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigscape/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigscape", + "Galaxy wrapper version": "1.1.9", + "Conda id": "bigscape", + "Conda version": "1.1.9", + "EDAM operation (no superclasses)": [ + "Clustering", + "Global alignment", + "Fold recognition" + ], + "EDAM topic (no superclasses)": [ + "Phylogeny", + "Microbial ecology", + "Mapping", + "Metabolomics", + "Bioinformatics", + "Gene and protein families" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bigwig_outlier_bed", + "Galaxy tool ids": [ + "bigwig_outlier_bed" + ], + "Description": "pybigtools and numpy code to find continuous runs above a high or below a low quantile cutpoint in bigwig files", + "bio.tool id": "bigtools", + "bio.tool ids": [ + "bigtools" + ], + "biii": null, + "bio.tool name": "bigtools", + "bio.tool description": "Bigtools is a library and associated tools for reading and writing bigwig and bigbed files. Rust.", + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigwig_outlier_bed", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bigwig_outlier_bed", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigwig_outlier_bed", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigwig_outlier_bed", + "Galaxy wrapper version": "0.2.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "binning_refiner", + "Galaxy tool ids": [ + "bin_refiner" + ], + "Description": "Reconciles the outputs of different binning programs with the aim to improve the quality of genome bins,especially with respect to contamination levels.", + "bio.tool id": "binning_refiner", + "bio.tool ids": [ + "binning_refiner" + ], + "biii": null, + "bio.tool name": "Binning_refiner", + "bio.tool description": "Improving genome bins through the combination of different binning programs", + "EDAM operation": [ + "Read binning", + "Sequence clustering" + ], + "EDAM topic": [ + "Metagenomics", + "Sequence assembly", + "Microbial ecology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/songweizhi/Binning_refiner", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "binning_refiner", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/binning_refiner/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/binning_refiner", + "Galaxy wrapper version": "1.4.3", + "Conda id": "binning_refiner", + "Conda version": "1.4.3", + "EDAM operation (no superclasses)": [ + "Read binning", + "Sequence clustering" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequence assembly", + "Microbial ecology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 81 + }, + { + "Galaxy wrapper id": "bioext", + "Galaxy tool ids": [ + "bioext_bam2msa", + "bioext_bealign" + ], + "Description": "A suite of Galaxy tools designed around the BioExt extension to BioPython. Align sequences, merge duplicate sequences into one, and more!", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pypi.python.org/pypi/biopython-extensions/", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/davebx/bioext-gx/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioext", + "Galaxy wrapper version": "0.21.7", + "Conda id": "python-bioext", + "Conda version": "0.21.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 363, + "Total tool usage (usegalaxy.eu)": 15228 + }, + { + "Galaxy wrapper id": "bioinformatics_cafe", + "Galaxy tool ids": [ + "fasta_regex_finder" + ], + "Description": "Miscellanea of scripts for bioinformatics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/dariober/bioinformatics-cafe/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bioinformatics_cafe", + "Galaxy wrapper owner": "mbernt", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics-cafe", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics_cafe", + "Galaxy wrapper version": "0.1.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 71, + "Total tool usage (usegalaxy.eu)": 978 + }, + { + "Galaxy wrapper id": "biom_format", + "Galaxy tool ids": [ + "biom_add_metadata", + "biom_convert", + "biom_from_uc", + "biom_normalize_table", + "biom_subset_table", + "biom_summarize_table" + ], + "Description": "The biom-format package provides a command line interface and Python API for working with BIOM files.", + "bio.tool id": "biomformat", + "bio.tool ids": [ + "biomformat" + ], + "biii": null, + "bio.tool name": "biomformat", + "bio.tool description": "This package includes basic tools for reading biom-format files, accessing and subsetting data tables from a biom object, as well as limited support for writing a biom-object back to a biom-format file. The design of this API is intended to match the python API and other tools included with the biom-format project, but with a decidedly \"R flavor\" that should be familiar to R users. This includes S4 classes and methods, as well as extensions of common core functions/methods.", + "EDAM operation": [ + "Formatting" + ], + "EDAM topic": [ + "Laboratory information management", + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://github.com/biocore/biom-format", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_format", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/biom_format", + "Galaxy wrapper version": "2.1.15", + "Conda id": "biom-format", + "Conda version": "2.1.7", + "EDAM operation (no superclasses)": [ + "Formatting" + ], + "EDAM topic (no superclasses)": [ + "Laboratory information management", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 98, + "Total tool usage (usegalaxy.eu)": 3906 + }, + { + "Galaxy wrapper id": "bioperl", + "Galaxy tool ids": [ + "bp_genbank2gff3" + ], + "Description": "Converts GenBank format files to GFF3", + "bio.tool id": "bioperl", + "bio.tool ids": [ + "bioperl" + ], + "biii": null, + "bio.tool name": "BioPerl", + "bio.tool description": "A collection of Perl modules that facilitate the development of Perl scripts for bioinformatics applications. It provides software modules for many of the typical tasks of bioinformatics programming.", + "EDAM operation": [ + "Data handling", + "Service invocation" + ], + "EDAM topic": [ + "Genomics", + "Software engineering", + "Data management" + ], + "Status": "To update", + "Source": "https://bioperl.org/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bp_genbank2gff3", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bioperl", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioperl", + "Galaxy wrapper version": "1.1", + "Conda id": "perl-bioperl", + "Conda version": "1.7.8", + "EDAM operation (no superclasses)": [ + "Data handling", + "Service invocation" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Software engineering" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 240, + "Total tool usage (usegalaxy.eu)": 6736 + }, + { + "Galaxy wrapper id": "biscot", + "Galaxy tool ids": [ + "biscot" + ], + "Description": "Bionano scaffolding correction tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/institut-de-genomique/biscot", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "biscot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/bgruening/iuc/tree/master/tools/biscot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot", + "Galaxy wrapper version": "2.3.3", + "Conda id": "biscot", + "Conda version": "2.3.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 3 + }, + { + "Galaxy wrapper id": "blast", + "Galaxy tool ids": [ + "magicblast" + ], + "Description": "Maps large next-generation RNA or DNA sequencing runs against a whole genome or transcriptome", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://ncbi.github.io/magicblast/", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "magicblast", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/blast", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/blast", + "Galaxy wrapper version": "1.7.0", + "Conda id": "magicblast", + "Conda version": "1.7.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 78, + "Total tool usage (usegalaxy.eu)": 511 + }, + { + "Galaxy wrapper id": "blastxml_to_gapped_gff3", + "Galaxy tool ids": [ + "blastxml_to_gapped_gff3" + ], + "Description": "BlastXML to gapped GFF3", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3", + "ToolShed categories": [ + "Convert Formats", + "Sequence Analysis" + ], + "ToolShed id": "blastxml_to_gapped_gff3", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/blastxml_to_gapped_gff3", + "Galaxy wrapper version": "1.1", + "Conda id": "bcbiogff", + "Conda version": "0.6.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 24, + "Total tool usage (usegalaxy.eu)": 185 + }, + { + "Galaxy wrapper id": "bowtie2", + "Galaxy tool ids": [ + "bowtie2" + ], + "Description": "Bowtie2: Fast and sensitive read alignment", + "bio.tool id": "bowtie2", + "bio.tool ids": [ + "bowtie2" + ], + "biii": null, + "bio.tool name": "Bowtie 2", + "bio.tool description": "Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.", + "EDAM operation": [ + "Read mapping" + ], + "EDAM topic": [ + "Mapping", + "Genomics", + "Mapping" + ], + "Status": "To update", + "Source": "http://bowtie-bio.sourceforge.net/bowtie2", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "bowtie2", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bowtie2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bowtie2", + "Galaxy wrapper version": "2.5.3", + "Conda id": "bowtie2", + "Conda version": "2.5.4", + "EDAM operation (no superclasses)": [ + "Read mapping" + ], + "EDAM topic (no superclasses)": [ + "Mapping", + "Genomics", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5136, + "Total tool usage (usegalaxy.eu)": 380252 + }, + { + "Galaxy wrapper id": "bracken", + "Galaxy tool ids": [ + "est_abundance" + ], + "Description": "Bayesian Reestimation of Abundance with KrakEN", + "bio.tool id": "bracken", + "bio.tool ids": [ + "bracken" + ], + "biii": null, + "bio.tool name": "Bracken", + "bio.tool description": "Statistical method that computes the abundance of species in DNA sequences from a metagenomics sample.", + "EDAM operation": [ + "Statistical calculation" + ], + "EDAM topic": [ + "Metagenomics", + "Microbial ecology" + ], + "Status": "Up-to-date", + "Source": "https://ccb.jhu.edu/software/bracken/", + "ToolShed categories": [ + "Sequence Analysis", + "Metagenomics" + ], + "ToolShed id": "bracken", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bracken", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bracken", + "Galaxy wrapper version": "3.0", + "Conda id": "bracken", + "Conda version": "3.0", + "EDAM operation (no superclasses)": [ + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Microbial ecology" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 326, + "Total tool usage (usegalaxy.eu)": 18351 + }, + { + "Galaxy wrapper id": "breseq", + "Galaxy tool ids": [ + "breseq" + ], + "Description": "Predicts mutations in microbial genomes", + "bio.tool id": "breseq", + "bio.tool ids": [ + "breseq" + ], + "biii": null, + "bio.tool name": "breseq", + "bio.tool description": "Runs Breseq software on a set of fastq files.", + "EDAM operation": [ + "Polymorphism detection" + ], + "EDAM topic": [ + "Sequencing", + "Sequence analysis", + "DNA mutation" + ], + "Status": "To update", + "Source": "https://github.com/barricklab/breseq", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "breseq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/breseq", + "Galaxy wrapper version": "0.35.5", + "Conda id": "breseq", + "Conda version": "0.39.0", + "EDAM operation (no superclasses)": [ + "Polymorphism detection" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Sequence analysis", + "DNA mutation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 50, + "Total tool usage (usegalaxy.eu)": 1871 + }, + { + "Galaxy wrapper id": "brew3r_r", + "Galaxy tool ids": [ + "brew3r_r" + ], + "Description": "Extend 3' end of a GTF using another GTF as a template", + "bio.tool id": "brew3r.r", + "bio.tool ids": [ + "brew3r.r" + ], + "biii": null, + "bio.tool name": "BREW3R.r", + "bio.tool description": "This R package provide functions that are used in the BREW3R workflow. This mainly contains a function that extend a gtf as GRanges using information from another gtf (also as GRanges). The process allows to extend gene annotation without increasing the overlap between gene ids.", + "EDAM operation": [ + "Genome annotation" + ], + "EDAM topic": [ + "Transcriptomics", + "Genomics" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/BREW3R.r.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA" + ], + "ToolShed id": "brew3r_r", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_r", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r", + "Galaxy wrapper version": "1.0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "busco", + "Galaxy tool ids": [ + "busco" + ], + "Description": "BUSCO assess genome and annotation completeness", + "bio.tool id": "busco", + "bio.tool ids": [ + "busco" + ], + "biii": null, + "bio.tool name": "BUSCO", + "bio.tool description": "Provides measures for quantitative assessment of genome assembly, gene set, and transcriptome completeness based on evolutionarily informed expectations of gene content from near-universal single-copy orthologs.", + "EDAM operation": [ + "Sequence assembly validation", + "Scaffolding", + "Genome assembly", + "Transcriptome assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "Genomics", + "Transcriptomics", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://gitlab.com/ezlab/busco/-/releases", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "busco", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/busco/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/busco", + "Galaxy wrapper version": "5.7.1", + "Conda id": "busco", + "Conda version": "5.7.1", + "EDAM operation (no superclasses)": [ + "Sequence assembly validation", + "Scaffolding", + "Genome assembly", + "Transcriptome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Transcriptomics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1804, + "Total tool usage (usegalaxy.eu)": 86180 + }, + { + "Galaxy wrapper id": "bwa", + "Galaxy tool ids": [ + "bwa_mem", + "bwa" + ], + "Description": "Wrapper for bwa mem, aln, sampe, and samse", + "bio.tool id": "bwa", + "bio.tool ids": [ + "bwa" + ], + "biii": null, + "bio.tool name": "BWA", + "bio.tool description": "Fast, accurate, memory-efficient aligner for short and long sequencing reads", + "EDAM operation": [ + "Genome indexing", + "Sequence alignment", + "Read mapping", + "Sequence alignment", + "Generation", + "Sequence alignment", + "Generation", + "Sequence alignment", + "Sequence alignment" + ], + "EDAM topic": [ + "Mapping" + ], + "Status": "Up-to-date", + "Source": "http://bio-bwa.sourceforge.net/", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "bwa", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bwa", + "Galaxy wrapper version": "0.7.18", + "Conda id": "bwa", + "Conda version": "0.7.18", + "EDAM operation (no superclasses)": [ + "Genome indexing", + "Sequence alignment", + "Read mapping", + "Sequence alignment", + "Generation", + "Sequence alignment", + "Generation", + "Sequence alignment", + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 2, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5295, + "Total tool usage (usegalaxy.eu)": 981251 + }, + { + "Galaxy wrapper id": "bwa_mem2", + "Galaxy tool ids": [ + "bwa_mem2" + ], + "Description": "Bwa-mem2 is the next version of the bwa-mem algorithm in bwa.", + "bio.tool id": "bwa-mem2", + "bio.tool ids": [ + "bwa-mem2" + ], + "biii": null, + "bio.tool name": "Bwa-mem2", + "bio.tool description": "Bwa-mem2 is the next version of the bwa-mem algorithm in bwa. It produces alignment identical to bwa and is ~1.3-3.1x faster depending on the use-case, dataset and the running machine.", + "EDAM operation": [ + "Sequence alignment" + ], + "EDAM topic": [ + "Mapping" + ], + "Status": "Up-to-date", + "Source": "https://github.com/bwa-mem2/bwa-mem2", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "bwa_mem2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa_mem2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bwa_mem2", + "Galaxy wrapper version": "2.2.1", + "Conda id": "bwa-mem2", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [ + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1220, + "Total tool usage (usegalaxy.eu)": 44386 + }, + { + "Galaxy wrapper id": "bwameth", + "Galaxy tool ids": [ + "bwameth" + ], + "Description": "Fast and accurate alignment of BS-seq reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/brentp/bwa-meth", + "ToolShed categories": [ + "Sequence Analysis", + "Next Gen Mappers" + ], + "ToolShed id": "bwameth", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwameth", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/bwameth", + "Galaxy wrapper version": "0.2.7", + "Conda id": "bwameth", + "Conda version": "0.2.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 201, + "Total tool usage (usegalaxy.eu)": 10619 + }, + { + "Galaxy wrapper id": "cactus", + "Galaxy tool ids": [ + "cactus_cactus", + "cactus_export" + ], + "Description": "Cactus is a reference-free whole-genome multiple alignment program", + "bio.tool id": "cactus", + "bio.tool ids": [ + "cactus" + ], + "biii": null, + "bio.tool name": "Cactus", + "bio.tool description": "Cactus is a reference-free whole-genome multiple alignment program.", + "EDAM operation": [ + "Multiple sequence alignment", + "Genome alignment" + ], + "EDAM topic": [ + "Genomics", + "Sequence analysis", + "Phylogeny", + "Sequence assembly", + "Mapping", + "Phylogenetics" + ], + "Status": "To update", + "Source": "https://github.com/ComparativeGenomicsToolkit/cactus", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "cactus", + "Galaxy wrapper owner": "galaxy-australia", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cactus", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cactus", + "Galaxy wrapper version": "2.7.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Multiple sequence alignment", + "Genome alignment" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Sequence assembly", + "Mapping", + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 26, + "Total tool usage (usegalaxy.eu)": 234 + }, + { + "Galaxy wrapper id": "calculate_contrast_threshold", + "Galaxy tool ids": [ + "calculate_contrast_threshold" + ], + "Description": "Calculates a contrast threshold from the CDT file generated by ``tag_pileup_frequency``. The calculated values are then used to set a uniform contrast for all the heatmaps generated downstream.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/CEGRcode/ChIP-QC-tools/tree/master/calculate_contrast_threshold", + "ToolShed categories": [ + "Visualization", + "Genomic Interval Operations", + "SAM" + ], + "ToolShed id": "calculate_contrast_threshold", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/calculate_contrast_threshold", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/calculate_contrast_threshold", + "Galaxy wrapper version": "1.0.0", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "calculate_numeric_param", + "Galaxy tool ids": [ + "calculate_numeric_param" + ], + "Description": "Calculate a numeric parameter value using integer and float values.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "calculate_numeric_param", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/calculate_numeric_param", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/calculate_numeric_param", + "Galaxy wrapper version": "0.1.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 1393 + }, + { + "Galaxy wrapper id": "cami_amber", + "Galaxy tool ids": [ + "biobox_add_taxid", + "cami_amber", + "cami_amber_add", + "cami_amber_convert" + ], + "Description": "Evaluation package for the comparative assessment of genome reconstructions and taxonomic assignments", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/CAMI-challenge/AMBER", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "cami_amber", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/amber/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cami_amber", + "Galaxy wrapper version": "2.0.6", + "Conda id": "cami-amber", + "Conda version": "2.0.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cat", + "Galaxy tool ids": [ + "cat_add_names", + "cat_bins", + "cat_contigs", + "cat_prepare", + "cat_summarise" + ], + "Description": "Contig Annotation Tool (CAT)", + "bio.tool id": "cat_bins", + "bio.tool ids": [ + "cat_bins" + ], + "biii": null, + "bio.tool name": "CAT and BAT", + "bio.tool description": "Contig Annotation Tool (CAT) and Bin Annotation Tool (BAT) are pipelines for the taxonomic classification of long DNA sequences and metagenome assembled genomes (MAGs/bins) of both known and (highly) unknown microorganisms, as generated by contemporary metagenomics studies. The core algorithm of both programs involves gene calling, mapping of predicted ORFs against the nr protein database, and voting-based classification of the entire contig / MAG based on classification of the individual ORFs.", + "EDAM operation": [ + "Taxonomic classification", + "Sequence assembly", + "Coding region prediction" + ], + "EDAM topic": [ + "Metagenomics", + "Metagenomic sequencing", + "Taxonomy", + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://github.com/dutilh/CAT", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "contig_annotation_tool", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cat", + "Galaxy wrapper version": "5.2.3", + "Conda id": "cat", + "Conda version": "5.3", + "EDAM operation (no superclasses)": [ + "Taxonomic classification", + "Sequence assembly", + "Coding region prediction" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Metagenomic sequencing", + "Taxonomy", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 5, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 268, + "Total tool usage (usegalaxy.eu)": 2878 + }, + { + "Galaxy wrapper id": "cdhit", + "Galaxy tool ids": [ + "cd_hit" + ], + "Description": "Cluster or compare biological sequence datasets", + "bio.tool id": "cd-hit", + "bio.tool ids": [ + "cd-hit" + ], + "biii": null, + "bio.tool name": "cd-hit", + "bio.tool description": "Cluster a nucleotide dataset into representative sequences.", + "EDAM operation": [ + "Sequence clustering" + ], + "EDAM topic": [ + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "http://weizhongli-lab.org/cd-hit/", + "ToolShed categories": [ + "Sequence Analysis", + "Fasta Manipulation" + ], + "ToolShed id": "cd_hit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit", + "Galaxy wrapper version": "4.8.1", + "Conda id": "cd-hit", + "Conda version": "4.8.1", + "EDAM operation (no superclasses)": [ + "Sequence clustering" + ], + "EDAM topic (no superclasses)": [ + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 280, + "Total tool usage (usegalaxy.eu)": 4474 + }, + { + "Galaxy wrapper id": "cemitool", + "Galaxy tool ids": [ + "cemitool" + ], + "Description": "Gene co-expression network analysis tool", + "bio.tool id": "cemitool", + "bio.tool ids": [ + "cemitool" + ], + "biii": null, + "bio.tool name": "CEMiTool", + "bio.tool description": "It unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network.", + "EDAM operation": [ + "Enrichment analysis", + "Pathway or network analysis" + ], + "EDAM topic": [ + "Gene expression", + "Transcriptomics", + "Microarray experiment" + ], + "Status": "Up-to-date", + "Source": "https://www.bioconductor.org/packages/release/bioc/html/CEMiTool.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "cemitool", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool", + "Galaxy wrapper version": "1.26.0", + "Conda id": "bioconductor-cemitool", + "Conda version": "1.26.0", + "EDAM operation (no superclasses)": [ + "Enrichment analysis", + "Pathway or network analysis" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics", + "Microarray experiment" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 98 + }, + { + "Galaxy wrapper id": "charts", + "Galaxy tool ids": [ + "charts" + ], + "Description": "Enables advanced visualization options in Galaxy Charts", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "charts", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/charts", + "Galaxy wrapper version": "1.0.1", + "Conda id": "r-getopt", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 287, + "Total tool usage (usegalaxy.eu)": 3589 + }, + { + "Galaxy wrapper id": "checkm", + "Galaxy tool ids": [ + "checkm_analyze", + "checkm_lineage_set", + "checkm_lineage_wf", + "checkm_plot", + "checkm_qa", + "checkm_taxon_set", + "checkm_taxonomy_wf", + "checkm_tetra", + "checkm_tree", + "checkm_tree_qa" + ], + "Description": "Assess the quality of microbial genomes recovered from isolates, single cells, and metagenomes", + "bio.tool id": "checkm", + "bio.tool ids": [ + "checkm" + ], + "biii": null, + "bio.tool name": "CheckM", + "bio.tool description": "CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes.", + "EDAM operation": [ + "Sequence assembly validation", + "Validation", + "Sequence composition calculation", + "Sequencing quality control", + "Statistical calculation" + ], + "EDAM topic": [ + "Genomics", + "Phylogenomics", + "Phylogenetics", + "Taxonomy", + "Metagenomics", + "Data quality management" + ], + "Status": "To update", + "Source": "https://github.com/Ecogenomics/CheckM", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "checkm", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/checkm", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/checkm", + "Galaxy wrapper version": "1.2.0", + "Conda id": "checkm-genome", + "Conda version": "1.2.3", + "EDAM operation (no superclasses)": [ + "Sequence assembly validation", + "Sequence composition calculation", + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Phylogenomics", + "Phylogenetics", + "Taxonomy", + "Metagenomics", + "Data quality management" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 10, + "Available on UseGalaxy.fr": 10, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 10, + "Tools available on UseGalaxy.fr": 10, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 10, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 10, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 390, + "Total tool usage (usegalaxy.eu)": 5165 + }, + { + "Galaxy wrapper id": "cherri", + "Galaxy tool ids": [ + "cherri_eval", + "cherri_train" + ], + "Description": "Computational Help Evaluating RNA-RNA interactions", + "bio.tool id": "cherri", + "bio.tool ids": [ + "cherri" + ], + "biii": null, + "bio.tool name": "cherri", + "bio.tool description": "CheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions.", + "EDAM operation": [], + "EDAM topic": [ + "Molecular interactions, pathways and networks", + "Structure analysis", + "Machine learning" + ], + "Status": "To update", + "Source": "https://github.com/BackofenLab/Cherri", + "ToolShed categories": [ + "Transcriptomics", + "RNA" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cherri", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri", + "Galaxy wrapper version": "0.7", + "Conda id": "cherri", + "Conda version": "0.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Molecular interactions, pathways and networks", + "Structure analysis", + "Machine learning" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 207 + }, + { + "Galaxy wrapper id": "chewbbaca", + "Galaxy tool ids": [ + "chewbbaca_allelecall", + "chewbbaca_allelecallevaluator", + "chewbbaca_createschema", + "chewbbaca_downloadschema", + "chewbbaca_extractcgmlst", + "chewbbaca_joinprofiles", + "chewbbaca_nsstats", + "chewbbaca_prepexternalschema" + ], + "Description": "BSR-Based Allele Calling Algorithm", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/B-UMMI/chewBBACA/tree/master", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "chewbbaca", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/chewbbaca", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/chewbbaca", + "Galaxy wrapper version": null, + "Conda id": "chewbbaca", + "Conda version": "3.3.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "chira", + "Galaxy tool ids": [ + "chira_collapse", + "chira_extract", + "chira_map", + "chira_merge", + "chira_quantify" + ], + "Description": "Chimeric Read Annotator for RNA-RNA interactome data", + "bio.tool id": "chira", + "bio.tool ids": [ + "chira" + ], + "biii": null, + "bio.tool name": "ChiRA", + "bio.tool description": "ChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc.", + "EDAM operation": [], + "EDAM topic": [ + "RNA", + "Molecular interactions, pathways and networks", + "Functional, regulatory and non-coding RNA" + ], + "Status": "Up-to-date", + "Source": "https://github.com/pavanvidem/chira", + "ToolShed categories": [ + "RNA", + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "chira", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/chira", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/chira", + "Galaxy wrapper version": "1.4.3", + "Conda id": "chira", + "Conda version": "1.4.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Molecular interactions, pathways and networks", + "Functional, regulatory and non-coding RNA" + ], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 97, + "Total tool usage (usegalaxy.eu)": 6418 + }, + { + "Galaxy wrapper id": "chopin2", + "Galaxy tool ids": [ + "chopin2" + ], + "Description": "Domain-Agnostic Supervised Learning with Hyperdimensional Computing", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/cumbof/chopin2", + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "chopin2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/chopin2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/chopin2", + "Galaxy wrapper version": "1.0.9.post1", + "Conda id": "chopin2", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "chromeister", + "Galaxy tool ids": [ + "chromeister" + ], + "Description": "ultra-fast pairwise genome comparisons", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/estebanpw/chromeister", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "chromeister", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/chromeister", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/chromeister", + "Galaxy wrapper version": "1.5.a", + "Conda id": "chromeister", + "Conda version": "1.5.a", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 182, + "Total tool usage (usegalaxy.eu)": 2130 + }, + { + "Galaxy wrapper id": "circexplorer2", + "Galaxy tool ids": [ + "circexplorer2" + ], + "Description": "Comprehensive and integrative circular RNA analysis toolset.", + "bio.tool id": "circexplorer2", + "bio.tool ids": [ + "circexplorer2" + ], + "biii": null, + "bio.tool name": "CIRCexplorer2", + "bio.tool description": "Genome-wide annotation of circRNAs and their alternative back-splicing/splicing.", + "EDAM operation": [], + "EDAM topic": [ + "RNA splicing", + "Gene transcripts", + "Literature and language" + ], + "Status": "Up-to-date", + "Source": "https://github.com/YangLab/CIRCexplorer2", + "ToolShed categories": [ + "RNA", + "Assembly" + ], + "ToolShed id": "circexplorer2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer2", + "Galaxy wrapper version": "2.3.8", + "Conda id": "circexplorer2", + "Conda version": "2.3.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "RNA splicing", + "Gene transcripts", + "Literature and language" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 269 + }, + { + "Galaxy wrapper id": "circos", + "Galaxy tool ids": [ + "circos_aln_to_links", + "circos_binlinks", + "circos_bundlelinks", + "circos", + "circos_gc_skew", + "circos_resample", + "circos_wiggle_to_scatter", + "circos_wiggle_to_stacked", + "circos_tableviewer", + "circos_interval_to_text", + "circos_interval_to_tile" + ], + "Description": "Build Circos Plots in Galaxy", + "bio.tool id": "galactic_circos", + "bio.tool ids": [ + "galactic_circos" + ], + "biii": null, + "bio.tool name": "Galactic Circos", + "bio.tool description": "Galactic Circos is a Galaxy wrapper providing a GUI for the Circos tool. Circos allows visualizing data in a circular format.", + "EDAM operation": [ + "Sequence visualisation" + ], + "EDAM topic": [], + "Status": "To update", + "Source": "http://circos.ca/", + "ToolShed categories": [ + "Graphics" + ], + "ToolShed id": "circos", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/circos", + "Galaxy wrapper version": "0.69.8", + "Conda id": "circos", + "Conda version": "0.69.9", + "EDAM operation (no superclasses)": [ + "Sequence visualisation" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 11, + "Available on UseGalaxy.org.au": 11, + "Available on UseGalaxy.eu": 11, + "Available on UseGalaxy.fr": 11, + "Tools available on UseGalaxy.org (Main)": 11, + "Tools available on UseGalaxy.org.au": 11, + "Tools available on UseGalaxy.eu": 11, + "Tools available on UseGalaxy.fr": 11, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 11, + "Tools available on GalaxyTrakr": 11, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 11, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 11, + "Tools available on UseGalaxy.no": 11, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1018, + "Total tool usage (usegalaxy.eu)": 21305 + }, + { + "Galaxy wrapper id": "cite_seq_count", + "Galaxy tool ids": [ + "cite_seq_count" + ], + "Description": "Count CMO/HTO", + "bio.tool id": "CITE-seq-Count", + "bio.tool ids": [ + "CITE-seq-Count" + ], + "biii": null, + "bio.tool name": "CITE-seq-Count", + "bio.tool description": "Tool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment.", + "EDAM operation": [ + "RNA-Seq quantification" + ], + "EDAM topic": [ + "Transcriptomics", + "Immunoproteins and antigens" + ], + "Status": "To update", + "Source": "https://github.com/Hoohm/CITE-seq-Count", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cite_seq_count", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count", + "Galaxy wrapper version": "1.4.4", + "Conda id": "cite-seq-count", + "Conda version": "1.4.5", + "EDAM operation (no superclasses)": [ + "RNA-Seq quantification" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics", + "Immunoproteins and antigens" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 18 + }, + { + "Galaxy wrapper id": "clair3", + "Galaxy tool ids": [ + "clair3" + ], + "Description": "Symphonizing pileup and full-alignment for high-performance long-read variant calling", + "bio.tool id": "clair3", + "bio.tool ids": [ + "clair3" + ], + "biii": null, + "bio.tool name": "Clair3", + "bio.tool description": "Clair3 is a germline small variant caller for long-reads. Clair3 makes the best of two major method categories: pileup calling handles most variant candidates with speed, and full-alignment tackles complicated candidates to maximize precision and recall. Clair3 runs fast and has superior performance, especially at lower coverage. Clair3 is simple and modular for easy deployment and integration.", + "EDAM operation": [ + "Variant calling" + ], + "EDAM topic": [ + "Molecular genetics" + ], + "Status": "To update", + "Source": "https://github.com/HKU-BAL/Clair3", + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "clair3", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/clair3", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/clair3", + "Galaxy wrapper version": "1.0.8", + "Conda id": "clair3", + "Conda version": "1.0.10", + "EDAM operation (no superclasses)": [ + "Variant calling" + ], + "EDAM topic (no superclasses)": [ + "Molecular genetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 68, + "Total tool usage (usegalaxy.eu)": 1856 + }, + { + "Galaxy wrapper id": "clustalw", + "Galaxy tool ids": [ + "clustalw" + ], + "Description": "ClustalW multiple sequence alignment program for DNA or proteins", + "bio.tool id": "clustal2", + "bio.tool ids": [ + "clustal2" + ], + "biii": null, + "bio.tool name": "Clustal 2 (Clustal W, Clustal X)", + "bio.tool description": "Multiple sequence alignment program with a command-line interface (Clustal W) and a graphical user interface (Clustal X). The display colours allow conserved features to be highlighted for easy viewing in the alignment. It is available for several platforms, including Windows, Macintosh PowerMac, Linux and Solaris.Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, Clustal2.", + "EDAM operation": [ + "Multiple sequence alignment" + ], + "EDAM topic": [ + "Phylogeny", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "http://www.clustal.org/clustal2/", + "ToolShed categories": [ + "Phylogenetics", + "Sequence Analysis" + ], + "ToolShed id": "clustalw", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/clustalw", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/clustalw", + "Galaxy wrapper version": "2.1", + "Conda id": "clustalw", + "Conda version": "2.1", + "EDAM operation (no superclasses)": [ + "Multiple sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Phylogeny", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 651, + "Total tool usage (usegalaxy.eu)": 46793 + }, + { + "Galaxy wrapper id": "clustering_from_distmat", + "Galaxy tool ids": [ + "clustering_from_distmat" + ], + "Description": "Distance matrix-based hierarchical clustering using SciPy", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/clustering_from_distmat/", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "clustering_from_distmat", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/clustering_from_distmat/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/clustering_from_distmat", + "Galaxy wrapper version": "1.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cnv-phenopacket", + "Galaxy tool ids": [ + "cnv_phenopacket" + ], + "Description": "cnv-phenopacket Converts TSV metadata file to JSON.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pypi.org/project/cnv-phenopacket/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "cnv_phenopacket", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cnv-phenopacket", + "Galaxy wrapper version": "1.0.2", + "Conda id": "cnv-phenopacket", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cnv-vcf2json", + "Galaxy tool ids": [ + "cnv_vcf2json" + ], + "Description": "cnv-vcf2json Converts structural variants VCF file to JSON.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pypi.org/project/cnv-phenopacket/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "cnv-vcf2json", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-vcf2json", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cnv-vcf2json", + "Galaxy wrapper version": "1.1.0", + "Conda id": "cnv-vcf2json", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cnvkit", + "Galaxy tool ids": [ + "cnvkit_access", + "cnvkit_antitarget", + "cnvkit_autobin", + "cnvkit_batch", + "cnvkit_breaks", + "cnvkit_call", + "cnvkit_coverage", + "cnvkit_diagram", + "cnvkit_fix", + "cnvkit_genemetrics", + "cnvkit_heatmap", + "cnvkit_reference", + "cnvkit_scatter", + "cnvkit_segment", + "cnvkit_segmetrics", + "cnvkit_sex", + "cnvkit_target" + ], + "Description": "detecting copy number variants and alterations genome-wide from high-throughput sequencing", + "bio.tool id": "cnvkit", + "bio.tool ids": [ + "cnvkit" + ], + "biii": null, + "bio.tool name": "CNVkit", + "bio.tool description": "CNVkit is a software toolkit to infer and visualize copy number from targeted DNA sequencing data.", + "EDAM operation": [ + "Variant calling" + ], + "EDAM topic": [ + "DNA structural variation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/etal/cnvkit", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "cnvkit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnvkit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cnvkit", + "Galaxy wrapper version": "0.9.11", + "Conda id": "cnvkit", + "Conda version": "0.9.11", + "EDAM operation (no superclasses)": [ + "Variant calling" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 17, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 17, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 17, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 45, + "Total tool usage (usegalaxy.eu)": 370 + }, + { + "Galaxy wrapper id": "codeml", + "Galaxy tool ids": [ + "codeml" + ], + "Description": "Detects positive selection", + "bio.tool id": "paml", + "bio.tool ids": [ + "paml" + ], + "biii": null, + "bio.tool name": "PAML", + "bio.tool description": "Package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood.", + "EDAM operation": [ + "Probabilistic sequence generation", + "Phylogenetic tree generation (maximum likelihood and Bayesian methods)", + "Phylogenetic tree analysis" + ], + "EDAM topic": [ + "Phylogenetics", + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://abacus.gene.ucl.ac.uk/software/paml.html", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "codeml", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/codeml", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/codeml", + "Galaxy wrapper version": "4.9", + "Conda id": "paml", + "Conda version": "4.10.7", + "EDAM operation (no superclasses)": [ + "Probabilistic sequence generation" + ], + "EDAM topic (no superclasses)": [ + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 29, + "Total tool usage (usegalaxy.eu)": 60901 + }, + { + "Galaxy wrapper id": "cojac", + "Galaxy tool ids": [ + "cooc_mutbamscan", + "cooc_pubmut", + "cooc_tabmut" + ], + "Description": "co-occurrence of mutations on amplicons", + "bio.tool id": "cojac", + "bio.tool ids": [ + "cojac" + ], + "biii": null, + "bio.tool name": "COJAC", + "bio.tool description": "CoOccurrence adJusted Analysis and Calling - The cojac package comprises a set of command-line tools to analyse co-occurrence of mutations on amplicons. It is useful, for example, for early detection of viral variants of concern (e.g. Alpha, Delta, Omicron) in environmental samples, and has been designed to scan for multiple SARS-CoV-2 variants in wastewater samples, as analyzed jointly by ETH Zurich, EPFL and Eawag.", + "EDAM operation": [], + "EDAM topic": [ + "Genetic variation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/cbg-ethz/cojac", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis" + ], + "ToolShed id": "cojac", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cojac", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cojac", + "Galaxy wrapper version": "0.9.2", + "Conda id": "cojac", + "Conda version": "0.9.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Genetic variation" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 20, + "Total tool usage (usegalaxy.eu)": 2757 + }, + { + "Galaxy wrapper id": "colabfold", + "Galaxy tool ids": [ + "colabfold_alphafold", + "colabfold_msa" + ], + "Description": "Protein prediction based on AlphaFold2", + "bio.tool id": "Colabfold", + "bio.tool ids": [ + "Colabfold" + ], + "biii": null, + "bio.tool name": "ColabFold", + "bio.tool description": "ColabFold databases are MMseqs2 expandable profile databases to generate diverse multiple sequence alignments to predict protein structures.", + "EDAM operation": [ + "Database search", + "Protein structure prediction", + "Fold recognition" + ], + "EDAM topic": [ + "Protein folds and structural domains", + "Protein folding, stability and design", + "Structure prediction", + "Sequence sites, features and motifs", + "Metagenomics" + ], + "Status": "To update", + "Source": "https://github.com/sokrypton/ColabFold", + "ToolShed categories": [ + "Proteomics", + "Graphics" + ], + "ToolShed id": "colabfold", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/sokrypton/ColabFold", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/colabfold", + "Galaxy wrapper version": "1.5.5", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Database search", + "Protein structure prediction", + "Fold recognition" + ], + "EDAM topic (no superclasses)": [ + "Protein folds and structural domains", + "Protein folding, stability and design", + "Structure prediction", + "Sequence sites, features and motifs", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "colibread", + "Galaxy tool ids": [ + "commet", + "discosnp_rad", + "discosnp_pp", + "kissplice", + "lordec", + "mapsembler2", + "takeabreak" + ], + "Description": "Colib'read tools are all dedicated to the analysis of NGS datasets without the need of any reference genome", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://colibread.inria.fr/", + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "colibread", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/colibread", + "Galaxy wrapper version": "24.7.14+galaxy0", + "Conda id": "commet", + "Conda version": "24.7.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 18, + "Total tool usage (usegalaxy.eu)": 251 + }, + { + "Galaxy wrapper id": "collection_column_join", + "Galaxy tool ids": [ + "collection_column_join" + ], + "Description": "Column Join on Collections", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_column_join", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "collection_column_join", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_column_join", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/collection_column_join", + "Galaxy wrapper version": "0.0.3", + "Conda id": "coreutils", + "Conda version": "8.25", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1483, + "Total tool usage (usegalaxy.eu)": 20857 + }, + { + "Galaxy wrapper id": "collection_element_identifiers", + "Galaxy tool ids": [ + "collection_element_identifiers" + ], + "Description": "Extract element identifiers of a collection", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_element_identifiers", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "collection_element_identifiers", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_element_identifiers", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/collection_element_identifiers", + "Galaxy wrapper version": "0.0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 912, + "Total tool usage (usegalaxy.eu)": 5059 + }, + { + "Galaxy wrapper id": "column_maker", + "Galaxy tool ids": [ + "Add_a_column1" + ], + "Description": "Compute an expression on every row", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_maker", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "column_maker", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_maker", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/column_maker", + "Galaxy wrapper version": "2.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2379, + "Total tool usage (usegalaxy.eu)": 3883271 + }, + { + "Galaxy wrapper id": "column_order_header_sort", + "Galaxy tool ids": [ + "column_order_header_sort" + ], + "Description": "Sort Column Order by heading", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_order_header_sort", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "column_order_header_sort", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_order_header_sort", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/column_order_header_sort", + "Galaxy wrapper version": "0.0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 80, + "Total tool usage (usegalaxy.eu)": 3258 + }, + { + "Galaxy wrapper id": "column_remove_by_header", + "Galaxy tool ids": [ + "column_remove_by_header" + ], + "Description": "Remove columns by header", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_remove_by_header", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "column_remove_by_header", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_remove_by_header", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/column_remove_by_header", + "Galaxy wrapper version": "1.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 199, + "Total tool usage (usegalaxy.eu)": 8424 + }, + { + "Galaxy wrapper id": "compleasm", + "Galaxy tool ids": [ + "compleasm" + ], + "Description": "Compleasm: a faster and more accurate reimplementation of BUSCO", + "bio.tool id": "compleasm", + "bio.tool ids": [ + "compleasm" + ], + "biii": null, + "bio.tool name": "compleasm", + "bio.tool description": "\"Compleasm: a faster and more accurate reimplementation of BUSCO\"", + "EDAM operation": [ + "Sequence assembly validation", + "Sequence analysis", + "Scaffolding", + "Transcriptome assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "Genomics", + "Transcriptomics", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/huangnengCSU/compleasm", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "compleasm", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/compleasm/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/compleasm", + "Galaxy wrapper version": "0.2.6", + "Conda id": "compleasm", + "Conda version": "0.2.6", + "EDAM operation (no superclasses)": [ + "Sequence assembly validation", + "Sequence analysis", + "Scaffolding", + "Transcriptome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Transcriptomics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "compose_text_param", + "Galaxy tool ids": [ + "compose_text_param" + ], + "Description": "Compose a text parameter value using text, integer and float values", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "compose_text_param", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/compose_text_param", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/compose_text_param", + "Galaxy wrapper version": "0.1.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 375, + "Total tool usage (usegalaxy.eu)": 35084 + }, + { + "Galaxy wrapper id": "compress_file", + "Galaxy tool ids": [ + "compress_file" + ], + "Description": "Compress files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/compress_file", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "compress_file", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/compress_file", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/compress_file", + "Galaxy wrapper version": "0.1.0", + "Conda id": "gzip", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 164, + "Total tool usage (usegalaxy.eu)": 3674 + }, + { + "Galaxy wrapper id": "concoct", + "Galaxy tool ids": [ + "concoct", + "concoct_coverage_table", + "concoct_cut_up_fasta", + "concoct_extract_fasta_bins", + "concoct_merge_cut_up_clustering" + ], + "Description": "CONCOCT (Clustering cONtigs with COverage and ComposiTion) does unsupervised binning of metagenomic contigs byusing nucleotide composition - kmer frequencies - and coverage data for multiple samples. CONCOCT can accurately(up to species level) bin metagenomic contigs.", + "bio.tool id": "concoct", + "bio.tool ids": [ + "concoct" + ], + "biii": null, + "bio.tool name": "CONCOCT", + "bio.tool description": "A program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads.", + "EDAM operation": [ + "Sequence clustering", + "Read binning" + ], + "EDAM topic": [ + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/BinPro/CONCOCT", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "concoct", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/concoct", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/concoct", + "Galaxy wrapper version": "1.1.0", + "Conda id": "concoct", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [ + "Sequence clustering", + "Read binning" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 92, + "Total tool usage (usegalaxy.eu)": 786 + }, + { + "Galaxy wrapper id": "cosg", + "Galaxy tool ids": [ + "cosg" + ], + "Description": "Marker gene identification for single-cell sequencing data using COSG.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/genecell/COSG", + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "cosg", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg", + "Galaxy wrapper version": "1.0.1", + "Conda id": "cosg", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "coverage_report", + "Galaxy tool ids": [ + "CoverageReport2" + ], + "Description": "Generate Detailed Coverage Report from BAM file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "coverage_report", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/coverage_report", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/coverage_report", + "Galaxy wrapper version": "0.0.4", + "Conda id": "perl-number-format", + "Conda version": "1.76", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "coverm", + "Galaxy tool ids": [ + "coverm_contig", + "coverm_genome" + ], + "Description": "CoverM genome and contig wrappers", + "bio.tool id": "coverm", + "bio.tool ids": [ + "coverm" + ], + "biii": null, + "bio.tool name": "CoverM", + "bio.tool description": "Read coverage calculator for metagenomics", + "EDAM operation": [ + "Local alignment" + ], + "EDAM topic": [ + "Bioinformatics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/wwood/CoverM", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "coverm", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tools/coverm", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/coverm", + "Galaxy wrapper version": "0.7.0", + "Conda id": "coverm", + "Conda version": "0.7.0", + "EDAM operation (no superclasses)": [ + "Local alignment" + ], + "EDAM topic (no superclasses)": [ + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 72, + "Total tool usage (usegalaxy.eu)": 529 + }, + { + "Galaxy wrapper id": "crispr_studio", + "Galaxy tool ids": [ + "crispr_studio" + ], + "Description": "CRISPR Studio is a program developed to facilitate and accelerate CRISPR array visualization.", + "bio.tool id": "crisprstudio", + "bio.tool ids": [ + "crisprstudio" + ], + "biii": null, + "bio.tool name": "CRISPRStudio", + "bio.tool description": "CRISPRStudio is a program developed to facilitate and accelerate CRISPR array visualization. It works by first comparing spacers sequence homology in a dataset, then assigning a two-color-code to each cluster of spacers and finally writing an svg file, which can be opened in graphics vector editor.", + "EDAM operation": [ + "Visualisation" + ], + "EDAM topic": [ + "Sequence analysis", + "Genomics", + "Data visualisation" + ], + "Status": "To update", + "Source": "https://github.com/moineaulab/CRISPRStudio", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "crispr_studio", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/crispr_studio/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/crispr_studio", + "Galaxy wrapper version": "1+galaxy0", + "Conda id": "crispr_studio", + "Conda version": "1", + "EDAM operation (no superclasses)": [ + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Genomics", + "Data visualisation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 30, + "Total tool usage (usegalaxy.eu)": 636 + }, + { + "Galaxy wrapper id": "crosscontamination_barcode_filter", + "Galaxy tool ids": [ + "crosscontamination_barcode_filter" + ], + "Description": "Barcode contamination discovery tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "Visualization" + ], + "ToolShed id": "crosscontamination_barcode_filter", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter", + "Galaxy wrapper version": "0.3", + "Conda id": "r-ggplot2", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17, + "Total tool usage (usegalaxy.eu)": 347 + }, + { + "Galaxy wrapper id": "crossmap", + "Galaxy tool ids": [ + "crossmap_bam", + "crossmap_bed", + "crossmap_bw", + "crossmap_gff", + "crossmap_region", + "crossmap_vcf", + "crossmap_wig" + ], + "Description": "CrossMap converts genome coordinates or annotation files between genome assemblies", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://crossmap.sourceforge.net/", + "ToolShed categories": [ + "Convert Formats", + "Genomic Interval Operations" + ], + "ToolShed id": "crossmap", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/crossmap", + "Galaxy wrapper version": "0.6.1", + "Conda id": "crossmap", + "Conda version": "0.7.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 4, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 5, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 116, + "Total tool usage (usegalaxy.eu)": 1968 + }, + { + "Galaxy wrapper id": "cutadapt", + "Galaxy tool ids": [ + "cutadapt" + ], + "Description": "Flexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq).", + "bio.tool id": "cutadapt", + "bio.tool ids": [ + "cutadapt" + ], + "biii": null, + "bio.tool name": "Cutadapt", + "bio.tool description": "Find and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads.", + "EDAM operation": [ + "Sequence trimming", + "Primer removal", + "Read pre-processing" + ], + "EDAM topic": [ + "Genomics", + "Probes and primers", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://cutadapt.readthedocs.org/en/stable/", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "cutadapt", + "Galaxy wrapper owner": "lparsons", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapt", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt", + "Galaxy wrapper version": "4.9", + "Conda id": "cutadapt", + "Conda version": "4.9", + "EDAM operation (no superclasses)": [ + "Sequence trimming", + "Primer removal", + "Read pre-processing" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Probes and primers", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5090, + "Total tool usage (usegalaxy.eu)": 232004 + }, + { + "Galaxy wrapper id": "cutesv", + "Galaxy tool ids": [ + "cutesv" + ], + "Description": "Long-read sequencing enables the comprehensive discovery of structural variations (SVs). However, it is still non-trivial to achieve high sensitivity and performance simultaneously due to the complex SV characteristics implied by noisy long reads. Therefore, we propose cuteSV, a sensitive, fast and scalable long-read-based SV detection approach. cuteSV uses tailored methods to collect the signatures of various types of SVs and employs a clustering-and-refinement method to analyze the signatures to implement sensitive SV detection. Benchmarks on real Pacific Biosciences (PacBio) and Oxford Nanopore Technology (ONT) datasets demonstrate that cuteSV has better yields and scalability than state-of-the-art tools.", + "bio.tool id": "cuteSV", + "bio.tool ids": [ + "cuteSV" + ], + "biii": null, + "bio.tool name": "cuteSV", + "bio.tool description": "Long Read based Human Genomic Structural Variation Detection with cuteSV | Long-read sequencing technologies enable to comprehensively discover structural variations (SVs). However, it is still non-trivial for state-of-the-art approaches to detect SVs with high sensitivity or high performance or both. Herein, we propose cuteSV, a sensitive, fast and lightweight SV detection approach. cuteSV uses tailored methods to comprehensively collect various types of SV signatures, and a clustering-and-refinement method to implement a stepwise SV detection, which enables to achieve high sensitivity without loss of accuracy. Benchmark results demonstrate that cuteSV has better yields on real datasets. Further, its speed and scalability are outstanding and promising to large-scale data analysis", + "EDAM operation": [ + "Split read mapping", + "Genotyping", + "Structural variation detection" + ], + "EDAM topic": [ + "DNA structural variation", + "Sequencing", + "Computer science" + ], + "Status": "To update", + "Source": "https://github.com/tjiangHIT/cuteSV", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "cutesv", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutesv", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cutesv", + "Galaxy wrapper version": "1.0.8", + "Conda id": "cutesv", + "Conda version": "2.1.1", + "EDAM operation (no superclasses)": [ + "Split read mapping", + "Genotyping", + "Structural variation detection" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Computer science" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17, + "Total tool usage (usegalaxy.eu)": 235 + }, + { + "Galaxy wrapper id": "cwpair2", + "Galaxy tool ids": [ + "cwpair2" + ], + "Description": "Contains a tool that takes a list of called peaks on both strands and produces a list of matched pairsand a list of unmatched orphans.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "cwpair2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/cwpair2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/cwpair2", + "Galaxy wrapper version": "1.1.1", + "Conda id": "matplotlib", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dada2", + "Galaxy tool ids": [ + "dada2_assignTaxonomyAddspecies", + "dada2_dada", + "dada2_filterAndTrim", + "dada2_learnErrors", + "dada2_makeSequenceTable", + "dada2_mergePairs", + "dada2_plotComplexity", + "dada2_plotQualityProfile", + "dada2_removeBimeraDenovo", + "dada2_seqCounts" + ], + "Description": "DADA2 wrappers", + "bio.tool id": "dada2", + "bio.tool ids": [ + "dada2" + ], + "biii": null, + "bio.tool name": "dada2", + "bio.tool description": "This package infers exact sequence variants (SVs) from amplicon data, replacing the commonly used and coarser OTU clustering approach. This pipeline inputs demultiplexed fastq files, and outputs the sequence variants and their sample-wise abundances after removing substitution and chimera errors. Taxonomic classification is available via a native implementation of the RDP naive Bayesian classifier.", + "EDAM operation": [ + "Variant calling", + "DNA barcoding" + ], + "EDAM topic": [ + "Sequencing", + "Genetic variation", + "Microbial ecology", + "Metagenomics" + ], + "Status": "To update", + "Source": "https://benjjneb.github.io/dada2/index.html", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "dada2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/dada2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/dada2", + "Galaxy wrapper version": null, + "Conda id": "bioconductor-dada2", + "Conda version": "1.30.0", + "EDAM operation (no superclasses)": [ + "Variant calling", + "DNA barcoding" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Genetic variation", + "Microbial ecology", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 10, + "Available on UseGalaxy.org.au": 10, + "Available on UseGalaxy.eu": 10, + "Available on UseGalaxy.fr": 10, + "Tools available on UseGalaxy.org (Main)": 10, + "Tools available on UseGalaxy.org.au": 10, + "Tools available on UseGalaxy.eu": 10, + "Tools available on UseGalaxy.fr": 10, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 10, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 10, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 10, + "Tools available on UseGalaxy.no": 10, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1263, + "Total tool usage (usegalaxy.eu)": 66609 + }, + { + "Galaxy wrapper id": "das_tool", + "Galaxy tool ids": [ + "Fasta_to_Contig2Bin", + "das_tool" + ], + "Description": "DAS Tool for genome resolved metagenomics", + "bio.tool id": "dastool", + "bio.tool ids": [ + "dastool" + ], + "biii": null, + "bio.tool name": "dastool", + "bio.tool description": "DAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly.", + "EDAM operation": [ + "Read binning" + ], + "EDAM topic": [ + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/cmks/DAS_Tool", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "das_tool", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/das_tool", + "Galaxy wrapper version": "1.1.7", + "Conda id": "das_tool", + "Conda version": "1.1.7", + "EDAM operation (no superclasses)": [ + "Read binning" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 24, + "Total tool usage (usegalaxy.eu)": 706 + }, + { + "Galaxy wrapper id": "data_source_iris_tcga", + "Galaxy tool ids": [ + "data_source_iris_tcga" + ], + "Description": "IRIS-TCGA Data source tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "data_source_iris_tcga", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/data_source_iris_tcga", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/data_source_iris_tcga", + "Galaxy wrapper version": "1.0.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "datamash", + "Galaxy tool ids": [ + "datamash_ops", + "datamash_reverse", + "datamash_transpose" + ], + "Description": "GNU Datamash is a command-line program which performs basicnumeric,textual and statistical operations on input textual data files.It is designed to be portable and reliable, and aid researchersto easily automate analysis pipelines, without writing code or even short scripts.License: GPL Version 3 (or later).These tool wrappers were originally writen by Assaf Gordon.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.gnu.org/software/datamash/", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/datamash", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/datamash", + "Galaxy wrapper version": "1.8", + "Conda id": "datamash", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 3, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3066, + "Total tool usage (usegalaxy.eu)": 739298 + }, + { + "Galaxy wrapper id": "decontaminator", + "Galaxy tool ids": [ + "decontaminator" + ], + "Description": "Deep Learning method for novel virus detection in sequencing data", + "bio.tool id": "decontaminator", + "bio.tool ids": [ + "decontaminator" + ], + "biii": null, + "bio.tool name": "decontaminator", + "bio.tool description": "Decontaminator is a deep learning helping tool that filters out phage or fungi contigs from plant virome RNAseq assemblies.", + "EDAM operation": [ + "Filtering" + ], + "EDAM topic": [ + "Metagenomics" + ], + "Status": "To update", + "Source": "https://github.com/cbib/decontaminator", + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "decontaminator", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/decontaminator", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/decontaminator", + "Galaxy wrapper version": "1.0.0", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Filtering" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 99 + }, + { + "Galaxy wrapper id": "deepmicro", + "Galaxy tool ids": [ + "deepmicro" + ], + "Description": "Representation learning and classification framework", + "bio.tool id": "DeepMicro", + "bio.tool ids": [ + "DeepMicro" + ], + "biii": null, + "bio.tool name": "DeepMicro", + "bio.tool description": "Deep representation learning for disease prediction based on microbiome data.DeepMicro is a deep representation learning framework exploiting various autoencoders to learn robust low-dimensional representations from high-dimensional data and training classification models based on the learned representation.", + "EDAM operation": [ + "Essential dynamics", + "Splitting", + "Community profiling" + ], + "EDAM topic": [ + "Microbial ecology", + "Machine learning", + "Pathology", + "Public health and epidemiology", + "Allergy, clinical immunology and immunotherapeutics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/paulzierep/DeepMicro", + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "deepmicro", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/paulzierep/DeepMicro", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepmicro", + "Galaxy wrapper version": "1.4", + "Conda id": "deepmicro", + "Conda version": "1.4", + "EDAM operation (no superclasses)": [ + "Essential dynamics", + "Splitting" + ], + "EDAM topic (no superclasses)": [ + "Microbial ecology", + "Machine learning", + "Pathology", + "Public health and epidemiology", + "Allergy, clinical immunology and immunotherapeutics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 501 + }, + { + "Galaxy wrapper id": "deepsig", + "Galaxy tool ids": [ + "deepsig" + ], + "Description": "Predictor of signal peptides in proteins based on deep learning", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/BolognaBiocomp/deepsig", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "deepsig", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/deepsig", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepsig", + "Galaxy wrapper version": "1.2.5", + "Conda id": "deepsig", + "Conda version": "1.2.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 5 + }, + { + "Galaxy wrapper id": "deepvariant", + "Galaxy tool ids": [ + "deepvariant" + ], + "Description": "DeepVariant is a deep learning-based variant caller", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/google/deepvariant", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "deepvariant", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/deepvariant", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepvariant", + "Galaxy wrapper version": "1.5.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 182, + "Total tool usage (usegalaxy.eu)": 1889 + }, + { + "Galaxy wrapper id": "deg_annotate", + "Galaxy tool ids": [ + "deg_annotate" + ], + "Description": "Annotate DESeq2/DEXSeq output tables", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "deg_annotate", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate", + "Galaxy wrapper version": "1.1.0", + "Conda id": "bedtools", + "Conda version": "2.31.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1774, + "Total tool usage (usegalaxy.eu)": 19910 + }, + { + "Galaxy wrapper id": "delly", + "Galaxy tool ids": [ + "delly_call", + "delly_classify", + "delly_cnv", + "delly_filter", + "delly_lr", + "delly_merge" + ], + "Description": "Delly is an integrated structural variant (SV) prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. It uses paired-ends, split-reads and read-depth to sensitively and accurately delineate genomic rearrangements throughout the genome.", + "bio.tool id": "delly2", + "bio.tool ids": [ + "delly2" + ], + "biii": null, + "bio.tool name": "Delly2", + "bio.tool description": "Integrated structural variant prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. It uses paired-ends and split-reads to sensitively and accurately delineate genomic rearrangements throughout the genome. Structural variants can be visualized using Delly-maze and Delly-suave.", + "EDAM operation": [ + "Indel detection", + "Structural variation detection", + "Variant calling", + "Genotyping", + "Genetic variation analysis" + ], + "EDAM topic": [ + "DNA structural variation", + "Sequencing", + "Pathology", + "Genomics", + "Genetic variation", + "Bioinformatics", + "Population genomics", + "Rare diseases" + ], + "Status": "To update", + "Source": "https://github.com/dellytools/delly", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "delly", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/delly", + "Galaxy wrapper version": "0.9.1", + "Conda id": "delly", + "Conda version": "1.2.6", + "EDAM operation (no superclasses)": [ + "Indel detection", + "Structural variation detection", + "Genotyping" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Genetic variation", + "Bioinformatics", + "Population genomics", + "Rare diseases" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 3, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 6, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 124, + "Total tool usage (usegalaxy.eu)": 1135 + }, + { + "Galaxy wrapper id": "deseq2", + "Galaxy tool ids": [ + "deseq2" + ], + "Description": "Differential gene expression analysis based on the negative binomial distribution", + "bio.tool id": "DESeq2", + "bio.tool ids": [ + "DESeq2" + ], + "biii": null, + "bio.tool name": "DESeq2", + "bio.tool description": "R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution.", + "EDAM operation": [ + "Differential gene expression analysis", + "RNA-Seq analysis" + ], + "EDAM topic": [ + "RNA-Seq" + ], + "Status": "To update", + "Source": "https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "deseq2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq2", + "Galaxy wrapper version": "2.11.40.8", + "Conda id": "bioconductor-deseq2", + "Conda version": "1.42.0", + "EDAM operation (no superclasses)": [ + "Differential gene expression analysis", + "RNA-Seq analysis" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4990, + "Total tool usage (usegalaxy.eu)": 95752 + }, + { + "Galaxy wrapper id": "dexseq", + "Galaxy tool ids": [ + "dexseq", + "dexseq_count", + "plotdexseq" + ], + "Description": "Inference of differential exon usage in RNA-Seq", + "bio.tool id": "dexseq", + "bio.tool ids": [ + "dexseq" + ], + "biii": null, + "bio.tool name": "DEXSeq", + "bio.tool description": "The package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results.", + "EDAM operation": [ + "Enrichment analysis", + "Exonic splicing enhancer prediction" + ], + "EDAM topic": [ + "RNA-Seq" + ], + "Status": "Up-to-date", + "Source": "https://www.bioconductor.org/packages/release/bioc/html/DEXSeq.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "dexseq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq", + "Galaxy wrapper version": "1.48.0", + "Conda id": "bioconductor-dexseq", + "Conda version": "1.48.0", + "EDAM operation (no superclasses)": [ + "Enrichment analysis", + "Exonic splicing enhancer prediction" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 218, + "Total tool usage (usegalaxy.eu)": 16064 + }, + { + "Galaxy wrapper id": "diamond", + "Galaxy tool ids": [ + "bg_diamond", + "bg_diamond_makedb", + "bg_diamond_view" + ], + "Description": "DIAMOND is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR.", + "bio.tool id": "diamond", + "bio.tool ids": [ + "diamond" + ], + "biii": null, + "bio.tool name": "Diamond", + "bio.tool description": "Sequence aligner for protein and translated DNA searches and functions as a drop-in replacement for the NCBI BLAST software tools. It is suitable for protein-protein search as well as DNA-protein search on short reads and longer sequences including contigs and assemblies, providing a speedup of BLAST ranging up to x20,000.", + "EDAM operation": [ + "Sequence alignment analysis" + ], + "EDAM topic": [ + "Sequence analysis", + "Proteins" + ], + "Status": "To update", + "Source": "https://github.com/bbuchfink/diamond", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "diamond", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/diamond", + "Galaxy wrapper version": "2.0.15", + "Conda id": "diamond", + "Conda version": "2.1.9", + "EDAM operation (no superclasses)": [ + "Sequence alignment analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Proteins" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 3, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 3, + "Tools available on Galaxy@Pasteur": 3, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 1, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 963, + "Total tool usage (usegalaxy.eu)": 49711 + }, + { + "Galaxy wrapper id": "diffbind", + "Galaxy tool ids": [ + "diffbind" + ], + "Description": "Diffbind provides functions for processing ChIP-Seq data.", + "bio.tool id": "diffbind", + "bio.tool ids": [ + "diffbind" + ], + "biii": null, + "bio.tool name": "DiffBind", + "bio.tool description": "Compute differentially bound sites from multiple ChIP-seq experiments using affinity (quantitative) data. Also enables occupancy (overlap) analysis and plotting functions.", + "EDAM operation": [ + "Differential binding analysis" + ], + "EDAM topic": [ + "ChIP-seq" + ], + "Status": "Up-to-date", + "Source": "http://bioconductor.org/packages/release/bioc/html/DiffBind.html", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "diffbind", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/diffbind", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/diffbind", + "Galaxy wrapper version": "3.12.0", + "Conda id": "bioconductor-diffbind", + "Conda version": "3.12.0", + "EDAM operation (no superclasses)": [ + "Differential binding analysis" + ], + "EDAM topic (no superclasses)": [ + "ChIP-seq" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 250, + "Total tool usage (usegalaxy.eu)": 6264 + }, + { + "Galaxy wrapper id": "dimet", + "Galaxy tool ids": [ + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@", + "dimet_@EXECUTABLE@" + ], + "Description": "DIMet is a bioinformatics pipeline for differential analysis of isotopic targeted labeling data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/cbib/DIMet", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/DIMet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/dimet", + "Galaxy wrapper version": "0.2.4", + "Conda id": "dimet", + "Conda version": "0.2.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "disco", + "Galaxy tool ids": [ + "disco" + ], + "Description": "DISCO is a overlap-layout-consensus (OLC) metagenome assembler", + "bio.tool id": "disco", + "bio.tool ids": [ + "disco" + ], + "biii": null, + "bio.tool name": "DISCO", + "bio.tool description": "DISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer.", + "EDAM operation": [ + "Protein sequence analysis" + ], + "EDAM topic": [ + "Structure determination" + ], + "Status": "To update", + "Source": "http://disco.omicsbio.org/", + "ToolShed categories": [ + "Metagenomics", + "Assembly" + ], + "ToolShed id": "disco", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/disco", + "Galaxy wrapper version": null, + "Conda id": "disco", + "Conda version": "1.2", + "EDAM operation (no superclasses)": [ + "Protein sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Structure determination" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 42, + "Total tool usage (usegalaxy.eu)": 369 + }, + { + "Galaxy wrapper id": "dnabot", + "Galaxy tool ids": [ + "dnabot" + ], + "Description": "DNA assembly using BASIC on OpenTrons", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/BASIC-DNA-ASSEMBLY/DNA-BOT", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "dnabot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/dnabot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/dnabot", + "Galaxy wrapper version": "3.1.0", + "Conda id": "dnabot", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dnaweaver", + "Galaxy tool ids": [ + "dnaweaver" + ], + "Description": "Given a SBOL input, calculate assembly parts for Gibson or Golden Gate.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/Edinburgh-Genome-Foundry/DnaWeaver", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "dnaweaver", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/dnaweaver", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/dnaweaver", + "Galaxy wrapper version": "1.0.2", + "Conda id": "dnaweaver_synbiocad", + "Conda version": "1.0.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dram", + "Galaxy tool ids": [ + "dram_annotate", + "dram_distill", + "dram_merge_annotations", + "dram_neighborhoods", + "dram_strainer" + ], + "Description": "DRAM for distilling microbial metabolism to automate the curation of microbiome function", + "bio.tool id": "dram", + "bio.tool ids": [ + "dram" + ], + "biii": null, + "bio.tool name": "DRAM", + "bio.tool description": "Distilled and Refined Annotation of Metabolism: A tool for the annotation and curation of function for microbial and viral genomes", + "EDAM operation": [ + "Gene functional annotation" + ], + "EDAM topic": [ + "Metagenomics", + "Biological databases", + "Molecular genetics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/WrightonLabCSU/DRAM", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "dram", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/dram", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/dram", + "Galaxy wrapper version": "1.5.0", + "Conda id": "dram", + "Conda version": "1.5.0", + "EDAM operation (no superclasses)": [ + "Gene functional annotation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Biological databases", + "Molecular genetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 6886 + }, + { + "Galaxy wrapper id": "drep", + "Galaxy tool ids": [ + "drep_compare", + "drep_dereplicate" + ], + "Description": "dRep compares and dereplicates genome sets", + "bio.tool id": "drep", + "bio.tool ids": [ + "drep" + ], + "biii": null, + "bio.tool name": "dRep", + "bio.tool description": "Fast and accurate genomic comparisons that enables improved genome recovery from metagenomes through de-replication.", + "EDAM operation": [ + "Genome comparison" + ], + "EDAM topic": [ + "Metagenomics", + "Genomics", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/MrOlm/drep", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "drep", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/drep", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/drep", + "Galaxy wrapper version": "3.5.0", + "Conda id": "drep", + "Conda version": "3.5.0", + "EDAM operation (no superclasses)": [ + "Genome comparison" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 46, + "Total tool usage (usegalaxy.eu)": 646 + }, + { + "Galaxy wrapper id": "dropletutils", + "Galaxy tool ids": [ + "dropletutils" + ], + "Description": "DropletUtils - Utilities for handling droplet-based single-cell RNA-seq data", + "bio.tool id": "dropletutils", + "bio.tool ids": [ + "dropletutils" + ], + "biii": null, + "bio.tool name": "DropletUtils", + "bio.tool description": "Provides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix.", + "EDAM operation": [ + "Loading", + "Community profiling" + ], + "EDAM topic": [ + "Gene expression", + "RNA-seq", + "Sequencing", + "Transcriptomics" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/devel/bioc/html/DropletUtils.html", + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "dropletutils", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils", + "Galaxy wrapper version": "1.10.0", + "Conda id": "bioconductor-dropletutils", + "Conda version": "1.22.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 126, + "Total tool usage (usegalaxy.eu)": 3934 + }, + { + "Galaxy wrapper id": "ebi_tools", + "Galaxy tool ids": [ + "ebi_search_rest_results" + ], + "Description": "Tools to query and download data from several EMBL-EBI databases", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.ebi.ac.uk/services/all", + "ToolShed categories": [ + "Web Services", + "Data Source" + ], + "ToolShed id": "ebi_tools", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ebi_tools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ebi_tools", + "Galaxy wrapper version": "0.1.1", + "Conda id": "six", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 52, + "Total tool usage (usegalaxy.eu)": 382 + }, + { + "Galaxy wrapper id": "edger", + "Galaxy tool ids": [ + "edger" + ], + "Description": "Perform RNA-Seq differential expression analysis using edgeR pipeline", + "bio.tool id": "edger", + "bio.tool ids": [ + "edger" + ], + "biii": null, + "bio.tool name": "edgeR", + "bio.tool description": "Differential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE.", + "EDAM operation": [ + "Differential gene expression analysis" + ], + "EDAM topic": [ + "Genetics", + "RNA-Seq", + "ChIP-seq" + ], + "Status": "To update", + "Source": "http://bioconductor.org/packages/release/bioc/html/edgeR.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "edger", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/edger", + "Galaxy wrapper version": "3.36.0", + "Conda id": "bioconductor-edger", + "Conda version": "4.0.16", + "EDAM operation (no superclasses)": [ + "Differential gene expression analysis" + ], + "EDAM topic (no superclasses)": [ + "Genetics", + "RNA-Seq", + "ChIP-seq" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 945, + "Total tool usage (usegalaxy.eu)": 18117 + }, + { + "Galaxy wrapper id": "egsea", + "Galaxy tool ids": [ + "egsea" + ], + "Description": "This tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testing", + "bio.tool id": "egsea", + "bio.tool ids": [ + "egsea" + ], + "biii": null, + "bio.tool name": "EGSEA", + "bio.tool description": "This package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing.", + "EDAM operation": [ + "Gene set testing" + ], + "EDAM topic": [ + "Systems biology" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/EGSEA.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "egsea", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea", + "Galaxy wrapper version": "1.20.0", + "Conda id": "bioconductor-egsea", + "Conda version": "1.28.0", + "EDAM operation (no superclasses)": [ + "Gene set testing" + ], + "EDAM topic (no superclasses)": [ + "Systems biology" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 177, + "Total tool usage (usegalaxy.eu)": 2524 + }, + { + "Galaxy wrapper id": "emboss_5", + "Galaxy tool ids": [ + "EMBOSS: antigenic1", + "EMBOSS: backtranseq2", + "EMBOSS: banana3", + "EMBOSS: biosed4", + "EMBOSS: btwisted5", + "EMBOSS: cai6", + "EMBOSS: cai_custom6", + "EMBOSS: chaos7", + "EMBOSS: charge8", + "EMBOSS: checktrans9", + "EMBOSS: chips10", + "EMBOSS: cirdna11", + "EMBOSS: codcmp12", + "EMBOSS: coderet13", + "EMBOSS: compseq14", + "EMBOSS: cpgplot15", + "EMBOSS: cpgreport16", + "EMBOSS: cusp17", + "EMBOSS: cutseq18", + "EMBOSS: dan19", + "EMBOSS: degapseq20", + "EMBOSS: descseq21", + "EMBOSS: diffseq22", + "EMBOSS: digest23", + "EMBOSS: dotmatcher24", + "EMBOSS: dotpath25", + "EMBOSS: dottup26", + "EMBOSS: dreg27", + "EMBOSS: einverted28", + "EMBOSS: epestfind29", + "EMBOSS: equicktandem31", + "EMBOSS: est2genome32", + "EMBOSS: etandem33", + "EMBOSS: extractfeat34", + "EMBOSS: extractseq35", + "EMBOSS: freak36", + "EMBOSS: fuzznuc37", + "EMBOSS: fuzzpro38", + "EMBOSS: fuzztran39", + "EMBOSS: garnier40", + "EMBOSS: geecee41", + "EMBOSS: getorf42", + "EMBOSS: helixturnhelix43", + "EMBOSS: hmoment44", + "EMBOSS: iep45", + "EMBOSS: infoseq46", + "EMBOSS: isochore47", + "EMBOSS: lindna48", + "EMBOSS: marscan49", + "EMBOSS: maskfeat50", + "EMBOSS: maskseq51", + "EMBOSS: matcher52", + "EMBOSS: megamerger53", + "EMBOSS: merger54", + "EMBOSS: msbar55", + "EMBOSS: needle56", + "EMBOSS: newcpgreport57", + "EMBOSS: newcpgseek58", + "EMBOSS: newseq59", + "EMBOSS: noreturn60", + "EMBOSS: notseq61", + "EMBOSS: nthseq62", + "EMBOSS: octanol63", + "EMBOSS: oddcomp64", + "EMBOSS: palindrome65", + "EMBOSS: pasteseq66", + "EMBOSS: patmatdb67", + "EMBOSS: pepcoil68", + "EMBOSS: pepinfo69", + "EMBOSS: pepnet70", + "EMBOSS: pepstats71", + "EMBOSS: pepwheel72", + "EMBOSS: pepwindow73", + "EMBOSS: pepwindowall74", + "EMBOSS: plotcon75", + "EMBOSS: plotorf76", + "EMBOSS: polydot77", + "EMBOSS: preg78", + "EMBOSS: prettyplot79", + "EMBOSS: prettyseq80", + "EMBOSS: primersearch81", + "EMBOSS: revseq82", + "EMBOSS: seqmatchall83", + "EMBOSS: seqret84", + "EMBOSS: showfeat85", + "EMBOSS: shuffleseq87", + "EMBOSS: sigcleave88", + "EMBOSS: sirna89", + "EMBOSS: sixpack90", + "EMBOSS: skipseq91", + "EMBOSS: splitter92", + "EMBOSS: supermatcher95", + "EMBOSS: syco96", + "EMBOSS: tcode97", + "EMBOSS: textsearch98", + "EMBOSS: tmap99", + "EMBOSS: tranalign100", + "EMBOSS: transeq101", + "EMBOSS: trimest102", + "EMBOSS: trimseq103", + "EMBOSS: twofeat104", + "EMBOSS: union105", + "EMBOSS: vectorstrip106", + "EMBOSS: water107", + "EMBOSS: wobble108", + "EMBOSS: wordcount109", + "EMBOSS: wordmatch110" + ], + "Description": "Galaxy wrappers for EMBOSS version 5.0.0 tools", + "bio.tool id": "emboss", + "bio.tool ids": [ + "emboss" + ], + "biii": null, + "bio.tool name": "EMBOSS", + "bio.tool description": "Diverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool.", + "EDAM operation": [ + "Sequence analysis", + "Local alignment", + "Sequence alignment analysis", + "Global alignment", + "Sequence alignment" + ], + "EDAM topic": [ + "Molecular biology", + "Sequence analysis", + "Biology" + ], + "Status": "To update", + "Source": "http://emboss.open-bio.org/", + "ToolShed categories": [ + "Sequence Analysis", + "Fasta Manipulation" + ], + "ToolShed id": "emboss_5", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_5", + "Galaxy wrapper version": "5.0.0", + "Conda id": "emboss", + "Conda version": "6.6.0", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Local alignment", + "Sequence alignment analysis", + "Global alignment", + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Molecular biology", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 107, + "Available on UseGalaxy.org.au": 107, + "Available on UseGalaxy.eu": 107, + "Available on UseGalaxy.fr": 107, + "Tools available on UseGalaxy.org (Main)": 107, + "Tools available on UseGalaxy.org.au": 107, + "Tools available on UseGalaxy.eu": 107, + "Tools available on UseGalaxy.fr": 107, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 107, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 107, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 107, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 107, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 107, + "Tools available on UseGalaxy.no": 107, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1816, + "Total tool usage (usegalaxy.eu)": 89530 + }, + { + "Galaxy wrapper id": "ena_upload", + "Galaxy tool ids": [ + "ena_upload" + ], + "Description": "Submits experimental data and respective metadata to the European Nucleotide Archive (ENA). ", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/usegalaxy-eu/ena-upload-cli", + "ToolShed categories": [ + "Data Export" + ], + "ToolShed id": "ena_upload", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ena_upload", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ena_upload", + "Galaxy wrapper version": "0.7.3", + "Conda id": "ena-upload-cli", + "Conda version": "0.7.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 208 + }, + { + "Galaxy wrapper id": "enasearch", + "Galaxy tool ids": [ + "enasearch_retrieve_analysis_report", + "enasearch_retrieve_data", + "enasearch_retrieve_run_report", + "enasearch_retrieve_taxons", + "enasearch_search_data" + ], + "Description": "A Python library for interacting with ENA's API", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bebatut/enasearch", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "enasearch", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/enasearch", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/enasearch", + "Galaxy wrapper version": null, + "Conda id": "enasearch", + "Conda version": "0.2.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 4, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 126, + "Total tool usage (usegalaxy.eu)": 2257 + }, + { + "Galaxy wrapper id": "ensembl_vep", + "Galaxy tool ids": [ + "ensembl_vep" + ], + "Description": "Ensembl VEP: Annotate VCFs with variant effect predictions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/Ensembl/ensembl-vep", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "ensembl_vep", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ensembl_vep", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ensembl_vep", + "Galaxy wrapper version": "110.1", + "Conda id": "ensembl-vep", + "Conda version": "112.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 119, + "Total tool usage (usegalaxy.eu)": 2653 + }, + { + "Galaxy wrapper id": "episcanpy", + "Galaxy tool ids": [ + "episcanpy_build_matrix", + "episcanpy_cluster_embed", + "episcanpy_preprocess" + ], + "Description": "EpiScanpy – Epigenomics single cell analysis in python", + "bio.tool id": "episcanpy", + "bio.tool ids": [ + "episcanpy" + ], + "biii": null, + "bio.tool name": "epiScanpy", + "bio.tool description": "Epigenomics Single Cell Analysis in Python.", + "EDAM operation": [ + "Enrichment analysis", + "Imputation" + ], + "EDAM topic": [ + "Epigenomics", + "Cell biology", + "DNA" + ], + "Status": "To update", + "Source": "https://github.com/colomemaria/epiScanpy", + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "episcanpy", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/episcanpy", + "Galaxy wrapper version": "0.3.2", + "Conda id": "episcanpy", + "Conda version": "0.4.0", + "EDAM operation (no superclasses)": [ + "Enrichment analysis", + "Imputation" + ], + "EDAM topic (no superclasses)": [ + "Epigenomics", + "Cell biology", + "DNA" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 20, + "Total tool usage (usegalaxy.eu)": 736 + }, + { + "Galaxy wrapper id": "exomedepth", + "Galaxy tool ids": [ + "exomedepth" + ], + "Description": "ExomeDepth: Calls copy number variants (CNVs) from targeted sequence data", + "bio.tool id": "exomedepth", + "bio.tool ids": [ + "exomedepth" + ], + "biii": null, + "bio.tool name": "ExomeDepth", + "bio.tool description": "Copy number variant (CNV) calling algorithm designed to control technical variability between samples. It calls CNVs from targeted sequence data, typically exome sequencing experiments designed to identify the genetic basis of Mendelian disorders.", + "EDAM operation": [ + "Sequence analysis", + "Variant calling", + "Genotyping", + "Copy number estimation" + ], + "EDAM topic": [ + "Exome sequencing", + "Gene transcripts", + "Mapping", + "Sequencing", + "Genetic variation", + "Rare diseases" + ], + "Status": "To update", + "Source": "https://cran.r-project.org/package=ExomeDepth", + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": "exomedepth", + "Galaxy wrapper owner": "crs4", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/exomedepth", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/exomedepth", + "Galaxy wrapper version": "1.1.0", + "Conda id": "r-exomedepth", + "Conda version": "1.1.16", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Variant calling", + "Genotyping", + "Copy number estimation" + ], + "EDAM topic (no superclasses)": [ + "Exome sequencing", + "Gene transcripts", + "Mapping", + "Genetic variation", + "Rare diseases" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 29, + "Total tool usage (usegalaxy.eu)": 410 + }, + { + "Galaxy wrapper id": "exonerate", + "Galaxy tool ids": [ + "exonerate" + ], + "Description": "Exonerate is a generic tool for pairwise sequence comparison.", + "bio.tool id": "exonerate", + "bio.tool ids": [ + "exonerate" + ], + "biii": null, + "bio.tool name": "Exonerate", + "bio.tool description": "A tool for pairwise sequence alignment. It enables alignment for DNA-DNA and DNA-protein pairs and also gapped and ungapped alignment.", + "EDAM operation": [ + "Pairwise sequence alignment", + "Protein threading", + "Genome alignment" + ], + "EDAM topic": [ + "Sequence analysis", + "Sequence sites, features and motifs", + "Molecular interactions, pathways and networks" + ], + "Status": "Up-to-date", + "Source": "https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "exonerate", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/exonerate", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/exonerate", + "Galaxy wrapper version": "2.4.0", + "Conda id": "exonerate", + "Conda version": "2.4.0", + "EDAM operation (no superclasses)": [ + "Pairwise sequence alignment", + "Protein threading", + "Genome alignment" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Sequence sites, features and motifs", + "Molecular interactions, pathways and networks" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 59, + "Total tool usage (usegalaxy.eu)": 988 + }, + { + "Galaxy wrapper id": "export2graphlan", + "Galaxy tool ids": [ + "export2graphlan" + ], + "Description": "export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn", + "bio.tool id": "export2graphlan", + "bio.tool ids": [ + "export2graphlan" + ], + "biii": null, + "bio.tool name": "export2graphlan", + "bio.tool description": "export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn. In particular, the annotation file tries to highlight specific sub-trees deriving automatically from input file what nodes are important.", + "EDAM operation": [ + "Conversion" + ], + "EDAM topic": [ + "Taxonomy", + "Metabolomics", + "Biomarkers" + ], + "Status": "To update", + "Source": "https://bitbucket.org/CibioCM/export2graphlan/overview", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "export2graphlan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/export2graphlan/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/export2graphlan", + "Galaxy wrapper version": "0.20", + "Conda id": "export2graphlan", + "Conda version": "0.22", + "EDAM operation (no superclasses)": [ + "Conversion" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy", + "Metabolomics", + "Biomarkers" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 200, + "Total tool usage (usegalaxy.eu)": 5265 + }, + { + "Galaxy wrapper id": "extract_genomic_dna", + "Galaxy tool ids": [ + "Extract genomic DNA 1" + ], + "Description": "Contains a tool that extracts genomic DNA using coordinates from ASSEMBLED genomes and UNassembled genomes.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "extract_genomic_dna", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/extract_genomic_dna", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/extract_genomic_dna", + "Galaxy wrapper version": "3.0.3+galaxy2", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 285, + "Total tool usage (usegalaxy.eu)": 11846 + }, + { + "Galaxy wrapper id": "falco", + "Galaxy tool ids": [ + "falco" + ], + "Description": "A high throughput sequence QC analysis tool", + "bio.tool id": "falco", + "bio.tool ids": [ + "falco" + ], + "biii": null, + "bio.tool name": "Falco", + "bio.tool description": "A high-speed FastQC emulation for quality control of sequencing data.", + "EDAM operation": [ + "Sequencing quality control", + "Visualisation", + "Read mapping" + ], + "EDAM topic": [ + "Workflows", + "Mapping", + "Imaging" + ], + "Status": "To update", + "Source": "https://github.com/smithlabcode/falco/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "falco", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/falco", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/falco", + "Galaxy wrapper version": "1.2.2+galaxy1", + "Conda id": "falco", + "Conda version": "1.2.3", + "EDAM operation (no superclasses)": [ + "Sequencing quality control", + "Visualisation", + "Read mapping" + ], + "EDAM topic (no superclasses)": [ + "Workflows", + "Mapping", + "Imaging" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fargene", + "Galaxy tool ids": [ + "fargene" + ], + "Description": "fARGene (Fragmented Antibiotic Resistance Gene iENntifiEr )", + "bio.tool id": "fargene", + "bio.tool ids": [ + "fargene" + ], + "biii": null, + "bio.tool name": "fARGene", + "bio.tool description": "fARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) is a tool that takes either fragmented metagenomic data or longer sequences as input and predicts and delivers full-length antiobiotic resistance genes as output.", + "EDAM operation": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic": [ + "Metagenomics", + "Microbiology", + "Public health and epidemiology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/fannyhb/fargene", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fargene", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fargene", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fargene", + "Galaxy wrapper version": "0.1", + "Conda id": "fargene", + "Conda version": "0.1", + "EDAM operation (no superclasses)": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Microbiology", + "Public health and epidemiology" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 52, + "Total tool usage (usegalaxy.eu)": 459 + }, + { + "Galaxy wrapper id": "fasta_nucleotide_color_plot", + "Galaxy tool ids": [ + "fasta_nucleotide_color_plot" + ], + "Description": "Contains a tool that produces a graphical representation of FASTA data with each nucleotide represented by a selected color.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/fourcolorplot", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "fasta_nucleotide_color_plot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_nucleotide_color_plot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_nucleotide_color_plot", + "Galaxy wrapper version": "1.0.1", + "Conda id": "openjdk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 160 + }, + { + "Galaxy wrapper id": "fasta_stats", + "Galaxy tool ids": [ + "fasta-stats" + ], + "Description": "Display summary statistics for a fasta file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_stats/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fasta_stats", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_stats/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_stats", + "Galaxy wrapper version": "2.0", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1080, + "Total tool usage (usegalaxy.eu)": 35336 + }, + { + "Galaxy wrapper id": "fastani", + "Galaxy tool ids": [ + "fastani" + ], + "Description": "Fast alignment-free computation of whole-genome Average Nucleotide Identity", + "bio.tool id": "fastani", + "bio.tool ids": [ + "fastani" + ], + "biii": null, + "bio.tool name": "FastANI", + "bio.tool description": "FastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies.", + "EDAM operation": [ + "Genome alignment", + "Sequence similarity search" + ], + "EDAM topic": [ + "Microbiology", + "Genetic variation" + ], + "Status": "To update", + "Source": "https://github.com/ParBLiSS/FastANI", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fastani", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastani", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastani", + "Galaxy wrapper version": "1.3", + "Conda id": "fastani", + "Conda version": "1.34", + "EDAM operation (no superclasses)": [ + "Genome alignment", + "Sequence similarity search" + ], + "EDAM topic (no superclasses)": [ + "Microbiology", + "Genetic variation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 250, + "Total tool usage (usegalaxy.eu)": 3498 + }, + { + "Galaxy wrapper id": "fastk", + "Galaxy tool ids": [ + "fastk_fastk" + ], + "Description": "FastK: A K-mer counter (for HQ assembly data sets)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/thegenemyers/FASTK", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "fastk", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk", + "Galaxy wrapper version": "1.0.0", + "Conda id": "fastk", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fastp", + "Galaxy tool ids": [ + "fastp" + ], + "Description": "Fast all-in-one preprocessing for FASTQ files", + "bio.tool id": "fastp", + "bio.tool ids": [ + "fastp" + ], + "biii": null, + "bio.tool name": "fastp", + "bio.tool description": "A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance.", + "EDAM operation": [ + "Sequencing quality control", + "Sequence contamination filtering" + ], + "EDAM topic": [ + "Sequence analysis", + "Probes and primers" + ], + "Status": "Up-to-date", + "Source": "https://github.com/OpenGene/fastp", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fastp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastp", + "Galaxy wrapper version": "0.23.4", + "Conda id": "fastp", + "Conda version": "0.23.4", + "EDAM operation (no superclasses)": [ + "Sequence contamination filtering" + ], + "EDAM topic (no superclasses)": [ + "Probes and primers" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2803, + "Total tool usage (usegalaxy.eu)": 1055760 + }, + { + "Galaxy wrapper id": "fastqc", + "Galaxy tool ids": [ + "fastqc" + ], + "Description": "Read QC reports using FastQC", + "bio.tool id": "fastqc", + "bio.tool ids": [ + "fastqc" + ], + "biii": null, + "bio.tool name": "FastQC", + "bio.tool description": "This tool aims to provide a QC report which can spot problems or biases which originate either in the sequencer or in the starting library material. It can be run in one of two modes. It can either run as a stand alone interactive application for the immediate analysis of small numbers of FastQ files, or it can be run in a non-interactive mode where it would be suitable for integrating into a larger analysis pipeline for the systematic processing of large numbers of files.", + "EDAM operation": [ + "Sequence composition calculation", + "Sequencing quality control", + "Statistical calculation" + ], + "EDAM topic": [ + "Sequencing", + "Data quality management", + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastqc", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqc", + "Galaxy wrapper version": "0.74+galaxy1", + "Conda id": "fastqc", + "Conda version": "0.12.1", + "EDAM operation (no superclasses)": [ + "Sequence composition calculation", + "Sequencing quality control", + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Data quality management", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 1, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17447, + "Total tool usage (usegalaxy.eu)": 1556625 + }, + { + "Galaxy wrapper id": "fastqe", + "Galaxy tool ids": [ + "fastqe" + ], + "Description": "FASTQE", + "bio.tool id": "fastqe", + "bio.tool ids": [ + "fastqe" + ], + "biii": null, + "bio.tool name": "FASTQE", + "bio.tool description": "Compute quality stats for FASTQ files and print those stats as emoji... for some reason.", + "EDAM operation": [ + "Sequencing quality control" + ], + "EDAM topic": [ + "Sequence analysis", + "Sequencing" + ], + "Status": "To update", + "Source": "https://fastqe.com/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fastqe", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqe", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqe", + "Galaxy wrapper version": "0.3.1+galaxy0", + "Conda id": "fastqe", + "Conda version": "0.3.1", + "EDAM operation (no superclasses)": [ + "Sequencing quality control" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1266, + "Total tool usage (usegalaxy.eu)": 4333 + }, + { + "Galaxy wrapper id": "fasttree", + "Galaxy tool ids": [ + "fasttree" + ], + "Description": "FastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences - GVL", + "bio.tool id": "fasttree", + "bio.tool ids": [ + "fasttree" + ], + "biii": null, + "bio.tool name": "FastTree", + "bio.tool description": "Infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences.", + "EDAM operation": [ + "Phylogenetic tree generation (from molecular sequences)", + "Phylogenetic tree generation (maximum likelihood and Bayesian methods)" + ], + "EDAM topic": [ + "Phylogenetics", + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://www.microbesonline.org/fasttree/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "fasttree", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasttree", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasttree", + "Galaxy wrapper version": "2.1.10", + "Conda id": "fasttree", + "Conda version": "2.1.11", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 379, + "Total tool usage (usegalaxy.eu)": 55434 + }, + { + "Galaxy wrapper id": "featurecounts", + "Galaxy tool ids": [ + "featurecounts" + ], + "Description": "featureCounts counts the number of reads aligned to defined masked regions in a reference genome", + "bio.tool id": "featurecounts", + "bio.tool ids": [ + "featurecounts" + ], + "biii": null, + "bio.tool name": "FeatureCounts", + "bio.tool description": "featureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package.", + "EDAM operation": [ + "Read summarisation", + "RNA-Seq quantification" + ], + "EDAM topic": [ + "RNA-Seq" + ], + "Status": "To update", + "Source": "http://bioinf.wehi.edu.au/featureCounts", + "ToolShed categories": [ + "RNA", + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "featurecounts", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts", + "Galaxy wrapper version": "2.0.3", + "Conda id": "subread", + "Conda version": "2.0.6", + "EDAM operation (no superclasses)": [ + "Read summarisation", + "RNA-Seq quantification" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4679, + "Total tool usage (usegalaxy.eu)": 696399 + }, + { + "Galaxy wrapper id": "feelnc", + "Galaxy tool ids": [ + "feelnc" + ], + "Description": "Galaxy wrapper for FEELnc", + "bio.tool id": "feelnc", + "bio.tool ids": [ + "feelnc" + ], + "biii": null, + "bio.tool name": "FEELnc", + "bio.tool description": "A tool to annotate long non-coding RNAs from RNA-seq assembled transcripts.", + "EDAM operation": [ + "Annotation", + "Classification" + ], + "EDAM topic": [ + "RNA-seq", + "Functional, regulatory and non-coding RNA" + ], + "Status": "To update", + "Source": "https://github.com/tderrien/FEELnc", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "feelnc", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/feelnc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/feelnc", + "Galaxy wrapper version": "0.2.1", + "Conda id": "feelnc", + "Conda version": "0.2", + "EDAM operation (no superclasses)": [ + "Annotation", + "Classification" + ], + "EDAM topic (no superclasses)": [ + "Functional, regulatory and non-coding RNA" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 46, + "Total tool usage (usegalaxy.eu)": 1191 + }, + { + "Galaxy wrapper id": "fermikit", + "Galaxy tool ids": [ + "fermi2", + "fermikit_variants" + ], + "Description": "FermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/lh3/fermikit", + "ToolShed categories": [ + "Assembly", + "Variant Analysis" + ], + "ToolShed id": "fermikit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikit", + "Galaxy wrapper version": "r193", + "Conda id": "fermi2", + "Conda version": "r193", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fgsea", + "Galaxy tool ids": [ + "fgsea" + ], + "Description": "Perform gene set testing using fgsea", + "bio.tool id": "fgsea", + "bio.tool ids": [ + "fgsea" + ], + "biii": null, + "bio.tool name": "fgsea", + "bio.tool description": "The package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction.", + "EDAM operation": [ + "Gene-set enrichment analysis" + ], + "EDAM topic": [ + "Genetics" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/fgsea.html", + "ToolShed categories": [ + "Visualization", + "Transcriptomics", + "Statistics" + ], + "ToolShed id": "fgsea", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fgsea", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea", + "Galaxy wrapper version": "1.8.0+galaxy1", + "Conda id": "bioconductor-fgsea", + "Conda version": "1.28.0", + "EDAM operation (no superclasses)": [ + "Gene-set enrichment analysis" + ], + "EDAM topic (no superclasses)": [ + "Genetics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 307, + "Total tool usage (usegalaxy.eu)": 5240 + }, + { + "Galaxy wrapper id": "filtlong", + "Galaxy tool ids": [ + "filtlong" + ], + "Description": "Filtlong - Filtering long reads by quality", + "bio.tool id": "filtlong", + "bio.tool ids": [ + "filtlong" + ], + "biii": null, + "bio.tool name": "Filtlong", + "bio.tool description": "Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter.", + "EDAM operation": [ + "Filtering", + "Sequencing quality control" + ], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/rrwick/Filtlong", + "ToolShed categories": [ + "Fastq Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "filtlong", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlong", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong", + "Galaxy wrapper version": "0.2.1", + "Conda id": "filtlong", + "Conda version": "0.2.1", + "EDAM operation (no superclasses)": [ + "Filtering", + "Sequencing quality control" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 617, + "Total tool usage (usegalaxy.eu)": 30483 + }, + { + "Galaxy wrapper id": "flair", + "Galaxy tool ids": [ + "flair_collapse", + "flair_correct" + ], + "Description": "FLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/BrooksLabUCSC/flair", + "ToolShed categories": [ + "Nanopore" + ], + "ToolShed id": "flair", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/flair", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/flair", + "Galaxy wrapper version": "1.5", + "Conda id": "flair", + "Conda version": "2.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 331 + }, + { + "Galaxy wrapper id": "flash", + "Galaxy tool ids": [ + "flash" + ], + "Description": "Fast Length Adjustment of SHort reads", + "bio.tool id": "flash", + "bio.tool ids": [ + "flash" + ], + "biii": null, + "bio.tool name": "FLASH", + "bio.tool description": "Identifies paired-end reads which overlap in the middle, converting them to single long reads", + "EDAM operation": [ + "Read pre-processing", + "Sequence merging", + "Sequence assembly" + ], + "EDAM topic": [ + "Sequencing", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://ccb.jhu.edu/software/FLASH/", + "ToolShed categories": [ + "Assembly", + "Fastq Manipulation" + ], + "ToolShed id": "flash", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/flash", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/flash", + "Galaxy wrapper version": "1.2.11", + "Conda id": "flash", + "Conda version": "1.2.11", + "EDAM operation (no superclasses)": [ + "Read pre-processing", + "Sequence merging", + "Sequence assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 74, + "Total tool usage (usegalaxy.eu)": 13759 + }, + { + "Galaxy wrapper id": "fraggenescan", + "Galaxy tool ids": [ + "fraggenescan" + ], + "Description": "Tool for finding (fragmented) genes in short read", + "bio.tool id": "fraggenescan", + "bio.tool ids": [ + "fraggenescan" + ], + "biii": null, + "bio.tool name": "FragGeneScan", + "bio.tool description": "Application for finding (fragmented) genes in short reads", + "EDAM operation": [ + "Gene prediction" + ], + "EDAM topic": [ + "Genetics", + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://sourceforge.net/projects/fraggenescan/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "fraggenescan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fraggenescan/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fraggenescan", + "Galaxy wrapper version": null, + "Conda id": "fraggenescan", + "Conda version": "1.31", + "EDAM operation (no superclasses)": [ + "Gene prediction" + ], + "EDAM topic (no superclasses)": [ + "Genetics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 68, + "Total tool usage (usegalaxy.eu)": 1102 + }, + { + "Galaxy wrapper id": "freebayes", + "Galaxy tool ids": [ + "freebayes", + "bamleftalign" + ], + "Description": "Galaxy Freebayes Bayesian genetic variant detector tool", + "bio.tool id": "freebayes", + "bio.tool ids": [ + "freebayes" + ], + "biii": null, + "bio.tool name": "FreeBayes", + "bio.tool description": "Bayesian genetic variant detector designed to find small polymorphisms, specifically SNPs, indels, multi-nucleotide polymorphisms, and complex events (composite insertion and substitution events) smaller than the length of a short-read sequencing alignment.", + "EDAM operation": [ + "Variant calling", + "Statistical calculation" + ], + "EDAM topic": [ + "Genomics", + "Genetic variation", + "Rare diseases" + ], + "Status": "To update", + "Source": "https://github.com/ekg/freebayes", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "freebayes", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/freebayes", + "Galaxy wrapper version": "1.3.6", + "Conda id": "freebayes", + "Conda version": "1.3.7", + "EDAM operation (no superclasses)": [ + "Variant calling", + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Genetic variation", + "Rare diseases" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 2, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3059, + "Total tool usage (usegalaxy.eu)": 155087 + }, + { + "Galaxy wrapper id": "freec", + "Galaxy tool ids": [ + "control_freec" + ], + "Description": "Control-FREEC is a tool for detection of copy-number changes and allelic imbalances (including LOH) using deep-sequencing data originally developed by the Bioinformatics Laboratory of Institut Curie (Paris). It automatically computes, normalizes, segments copy number and beta allele frequency (BAF) profiles, then calls copy number alterations and LOH.", + "bio.tool id": "freec", + "bio.tool ids": [ + "freec" + ], + "biii": null, + "bio.tool name": "FREEC", + "bio.tool description": "A tool for control-free copy number alteration (CNA) and allelic imbalances (LOH) detection using deep-sequencing data, particularly useful for cancer studies.", + "EDAM operation": [ + "Copy number estimation", + "Variant calling", + "Genome alignment" + ], + "EDAM topic": [ + "DNA structural variation", + "Oncology", + "Human genetics", + "Data mining" + ], + "Status": "To update", + "Source": "http://boevalab.inf.ethz.ch/FREEC/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "control_freec", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/freec", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/freec", + "Galaxy wrapper version": "11.6", + "Conda id": "gawk", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Copy number estimation", + "Variant calling", + "Genome alignment" + ], + "EDAM topic (no superclasses)": [ + "Oncology", + "Human genetics", + "Data mining" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 44, + "Total tool usage (usegalaxy.eu)": 665 + }, + { + "Galaxy wrapper id": "freyja", + "Galaxy tool ids": [ + "freyja_aggregate_plot", + "freyja_boot", + "freyja_demix", + "freyja_variants" + ], + "Description": "lineage abundances estimation", + "bio.tool id": "freyja", + "bio.tool ids": [ + "freyja" + ], + "biii": null, + "bio.tool name": "Freyja", + "bio.tool description": "Recover relative lineage abundances from mixed SARS-CoV-2 samples from a sequencing dataset", + "EDAM operation": [ + "RNA-Seq quantification" + ], + "EDAM topic": [ + "Metagenomics" + ], + "Status": "To update", + "Source": "https://github.com/andersen-lab/Freyja", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis" + ], + "ToolShed id": "freyja", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/freyja", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/freyja", + "Galaxy wrapper version": "1.4.4", + "Conda id": "freyja", + "Conda version": "1.5.1", + "EDAM operation (no superclasses)": [ + "RNA-Seq quantification" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 4, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 55, + "Total tool usage (usegalaxy.eu)": 20021 + }, + { + "Galaxy wrapper id": "fsd", + "Galaxy tool ids": [ + "fsd", + "fsd_beforevsafter", + "fsd_regions", + "td" + ], + "Description": "Tool that plots a histogram of sizes of read families", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics" + ], + "ToolShed id": "duplex_family_size_distribution", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/fsd", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/fsd", + "Galaxy wrapper version": "1.0.2", + "Conda id": "matplotlib", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "funannotate", + "Galaxy tool ids": [ + "funannotate_annotate", + "funannotate_clean", + "funannotate_compare", + "funannotate_predict", + "funannotate_sort" + ], + "Description": "Funannotate is a genome prediction, annotation, and comparison software package.", + "bio.tool id": "funannotate", + "bio.tool ids": [ + "funannotate" + ], + "biii": null, + "bio.tool name": "funannotate", + "bio.tool description": "funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes).", + "EDAM operation": [ + "Genome annotation" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "To update", + "Source": "https://funannotate.readthedocs.io", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate", + "Galaxy wrapper version": "1.8.15", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 900, + "Total tool usage (usegalaxy.eu)": 5906 + }, + { + "Galaxy wrapper id": "gatk4", + "Galaxy tool ids": [ + "gatk4_mutect2" + ], + "Description": "A Galaxy wrapper for Mutect2 from GATK", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://software.broadinstitute.org/gatk/gatk4", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "gatk4_mutect2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gatk4", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gatk4", + "Galaxy wrapper version": "4.1.7.0", + "Conda id": "gatk4", + "Conda version": "4.5.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 181, + "Total tool usage (usegalaxy.eu)": 2483 + }, + { + "Galaxy wrapper id": "gdcwebapp", + "Galaxy tool ids": [ + "data_source_gdcwebapp" + ], + "Description": "GDCWebApp automatically filter, extract, and convert genomic data from the Genomic Data Commons portal to BED format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://bioinf.iasi.cnr.it/gdcwebapp/", + "ToolShed categories": [ + "Data Source", + "Convert Formats" + ], + "ToolShed id": "gdcwebapp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/fabio-cumbo/GDCWebApp4Galaxy", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gdcwebapp", + "Galaxy wrapper version": "1.0.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gecko", + "Galaxy tool ids": [ + "gecko" + ], + "Description": "Ungapped genome comparison", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/otorreno/gecko", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "gecko", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gecko", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gecko", + "Galaxy wrapper version": "1.2", + "Conda id": "gecko", + "Conda version": "1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 112, + "Total tool usage (usegalaxy.eu)": 519 + }, + { + "Galaxy wrapper id": "gemini", + "Galaxy tool ids": [ + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_db_info", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_inheritance", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@", + "gemini_@BINARY@" + ], + "Description": "GEMINI: a flexible framework for exploring genome variation", + "bio.tool id": "gemini", + "bio.tool ids": [ + "gemini" + ], + "biii": null, + "bio.tool name": "GEMINI", + "bio.tool description": "GEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics.", + "EDAM operation": [ + "Sequence analysis", + "Genetic variation analysis" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://github.com/arq5x/gemini", + "ToolShed categories": [ + "Sequence Analysis", + "Next Gen Mappers" + ], + "ToolShed id": "gemini", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gemini", + "Galaxy wrapper version": "0.20.1", + "Conda id": "gemini", + "Conda version": "0.30.2", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 662, + "Total tool usage (usegalaxy.eu)": 4916 + }, + { + "Galaxy wrapper id": "genebed_maf_to_fasta", + "Galaxy tool ids": [ + "GeneBed_Maf_Fasta2" + ], + "Description": "Stitch gene blocks given a set of coding exon intervals", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/genebed_maf_to_fasta/", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "genebed_maf_to_fasta", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/genebed_maf_to_fasta/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/genebed_maf_to_fasta", + "Galaxy wrapper version": "1.0.1+galaxy0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 4 + }, + { + "Galaxy wrapper id": "genehunter_modscore", + "Galaxy tool ids": [ + "genehunter_modscore" + ], + "Description": "Maximised LOD score pedigree analysis utility", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.unimedizin-mainz.de/imbei/biometricsgenomic-statistics-and-bioinformatics/software/genehunter-modscore-40.html?L=1", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "genehunter_modscore", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/genehunter_modscore/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/genehunter_modscore", + "Galaxy wrapper version": "3.0.0", + "Conda id": "ghm", + "Conda version": "3.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "geneiobio", + "Galaxy tool ids": [ + "gene_iobio_display_generation_iframe" + ], + "Description": "Gene.iobio is an interactive tool for variant and trio analysis.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/iobio/gene.iobio", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "geneiobio", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/geneiobio", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/geneiobio", + "Galaxy wrapper version": "4.7.1+galaxy1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 67 + }, + { + "Galaxy wrapper id": "genetrack", + "Galaxy tool ids": [ + "genetrack" + ], + "Description": "Contains a tool that separately identifies peaks on the forward \"+” (W) and reverse “-” (C) strand.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "genetrack", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/genetrack", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/genetrack", + "Galaxy wrapper version": null, + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "genomescope", + "Galaxy tool ids": [ + "genomescope" + ], + "Description": "Analyze unassembled short reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/tbenavi1/genomescope2.0", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "genomescope", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomescope", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomescope", + "Galaxy wrapper version": "2.0.1", + "Conda id": "genomescope2", + "Conda version": "2.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 329, + "Total tool usage (usegalaxy.eu)": 2118 + }, + { + "Galaxy wrapper id": "genomic_super_signature", + "Galaxy tool ids": [ + "genomic_super_signature" + ], + "Description": "Interpretation of RNAseq experiments through robust, efficient comparison to public databases", + "bio.tool id": "genomicsupersignature", + "bio.tool ids": [ + "genomicsupersignature" + ], + "biii": null, + "bio.tool name": "GenomicSuperSignature", + "bio.tool description": "GenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases.", + "EDAM operation": [ + "Gene-set enrichment analysis", + "Essential dynamics", + "Deposition", + "Principal component visualisation", + "Dimensionality reduction" + ], + "EDAM topic": [ + "RNA-Seq", + "Transcriptomics", + "Microbial ecology", + "Genotype and phenotype", + "Microarray experiment" + ], + "Status": "To update", + "Source": "https://github.com/shbrief/GenomicSuperSignature", + "ToolShed categories": [ + "Sequence Analysis", + "RNA", + "Transcriptomics" + ], + "ToolShed id": "genomic_super_signature", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signature", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature", + "Galaxy wrapper version": "1.2.0", + "Conda id": "bioconductor-genomicsupersignature", + "Conda version": "1.10.0", + "EDAM operation (no superclasses)": [ + "Gene-set enrichment analysis", + "Essential dynamics", + "Deposition", + "Principal component visualisation", + "Dimensionality reduction" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq", + "Transcriptomics", + "Microbial ecology", + "Genotype and phenotype", + "Microarray experiment" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 46 + }, + { + "Galaxy wrapper id": "genrich", + "Galaxy tool ids": [ + "genrich" + ], + "Description": "Genrich is a peak-caller for genomic enrichment assays (e.g. ChIP-seq, ATAC-seq).", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/jsh58/Genrich", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "genrich", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/jsh58/Genrich", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/genrich", + "Galaxy wrapper version": "0.5+galaxy2", + "Conda id": "genrich", + "Conda version": "0.6.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 79, + "Total tool usage (usegalaxy.eu)": 3515 + }, + { + "Galaxy wrapper id": "get_hrun", + "Galaxy tool ids": [ + "get_hrun" + ], + "Description": "Annotate indel variants with homopolymer context", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/get_hrun", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "get_hrun", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/get_hrun", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/get_hrun", + "Galaxy wrapper version": "0.5.9.2", + "Conda id": "pyfaidx", + "Conda version": "0.8.1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 4 + }, + { + "Galaxy wrapper id": "getorganelle", + "Galaxy tool ids": [ + "get_annotated_regions_from_gb", + "get_organelle_from_reads" + ], + "Description": "GetOrganelle - This toolkit assembles organelle genomes from genomic skimming data.", + "bio.tool id": "getorganelle", + "bio.tool ids": [ + "getorganelle" + ], + "biii": null, + "bio.tool name": "GetOrganelle", + "bio.tool description": "A fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data.", + "EDAM operation": [ + "De-novo assembly", + "Genome assembly", + "Mapping assembly", + "Mapping", + "Sequence trimming" + ], + "EDAM topic": [ + "Cell biology", + "Sequence assembly", + "Whole genome sequencing", + "Plant biology", + "Model organisms" + ], + "Status": "Up-to-date", + "Source": "https://github.com/Kinggerm/GetOrganelle", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "getorganelle", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganelle", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle", + "Galaxy wrapper version": "1.7.7.1", + "Conda id": "getorganelle", + "Conda version": "1.7.7.1", + "EDAM operation (no superclasses)": [ + "De-novo assembly", + "Genome assembly", + "Mapping assembly", + "Mapping", + "Sequence trimming" + ], + "EDAM topic (no superclasses)": [ + "Cell biology", + "Sequence assembly", + "Whole genome sequencing", + "Plant biology", + "Model organisms" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 18, + "Total tool usage (usegalaxy.eu)": 495 + }, + { + "Galaxy wrapper id": "gfa_to_fa", + "Galaxy tool ids": [ + "gfa_to_fa" + ], + "Description": "gfa_to_fa - Converting GFA format to Fasta format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://gfa-spec.github.io/GFA-spec/", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "gfa_to_fa", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gfa_to_fa", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gfa_to_fa", + "Galaxy wrapper version": "0.1.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 332, + "Total tool usage (usegalaxy.eu)": 8274 + }, + { + "Galaxy wrapper id": "gff3_rebase", + "Galaxy tool ids": [ + "gff3.rebase" + ], + "Description": "Rebase a GFF against a parent GFF (e.g. an original genome)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gff3_rebase", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "gff3_rebase", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gff3_rebase", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gff3_rebase", + "Galaxy wrapper version": "1.2", + "Conda id": "bcbiogff", + "Conda version": "0.6.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 135 + }, + { + "Galaxy wrapper id": "gffcompare", + "Galaxy tool ids": [ + "gffcompare" + ], + "Description": "Galaxy wrappers for Geo Pertea's GffCompare package.", + "bio.tool id": "gffcompare", + "bio.tool ids": [ + "gffcompare" + ], + "biii": null, + "bio.tool name": "gffcompare", + "bio.tool description": "Program for comparing, annotating, merging and tracking transcripts in GFF files.", + "EDAM operation": [ + "Sequence annotation" + ], + "EDAM topic": [ + "Nucleic acids", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/gpertea/gffcompare/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "gffcompare", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcompare", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare", + "Galaxy wrapper version": "0.12.6", + "Conda id": "gffcompare", + "Conda version": "0.12.6", + "EDAM operation (no superclasses)": [ + "Sequence annotation" + ], + "EDAM topic (no superclasses)": [ + "Nucleic acids", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 381, + "Total tool usage (usegalaxy.eu)": 3477 + }, + { + "Galaxy wrapper id": "gffread", + "Galaxy tool ids": [ + "gffread" + ], + "Description": "gffread filters and/or converts GFF3/GTF2 records", + "bio.tool id": "gffread", + "bio.tool ids": [ + "gffread" + ], + "biii": null, + "bio.tool name": "gffread", + "bio.tool description": "program for filtering, converting and manipulating GFF files", + "EDAM operation": [ + "Sequence annotation" + ], + "EDAM topic": [ + "Nucleic acids", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "http://ccb.jhu.edu/software/stringtie/gff.shtml#gffread/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "gffread", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffread", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffread", + "Galaxy wrapper version": "0.12.7", + "Conda id": "gffread", + "Conda version": "0.12.7", + "EDAM operation (no superclasses)": [ + "Sequence annotation" + ], + "EDAM topic (no superclasses)": [ + "Nucleic acids", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 680, + "Total tool usage (usegalaxy.eu)": 10995 + }, + { + "Galaxy wrapper id": "ggplot2", + "Galaxy tool ids": [ + "ggplot2_heatmap", + "ggplot2_pca", + "ggplot2_histogram", + "ggplot2_point", + "ggplot2_violin" + ], + "Description": "ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics.You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to use,and it takes care of the details.", + "bio.tool id": "ggplot2", + "bio.tool ids": [ + "ggplot2" + ], + "biii": null, + "bio.tool name": "ggplot2", + "bio.tool description": "Plotting system for R, based on the grammar of graphics.", + "EDAM operation": [ + "Visualisation" + ], + "EDAM topic": [ + "Data visualisation" + ], + "Status": "To update", + "Source": "https://github.com/tidyverse/ggplot2", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ggplot2", + "Galaxy wrapper version": "3.4.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Data visualisation" + ], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 5, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 3, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1388, + "Total tool usage (usegalaxy.eu)": 22148 + }, + { + "Galaxy wrapper id": "ggupset", + "Galaxy tool ids": [ + "emc-ggupset" + ], + "Description": "Create Upset Plots with ggupset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/const-ae/ggupset", + "ToolShed categories": [ + "Graphics" + ], + "ToolShed id": "ggupset", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggupset", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ggupset", + "Galaxy wrapper version": "1.0", + "Conda id": "r-ggupset", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "glimmer", + "Galaxy tool ids": [ + "glimmer_acgt_content", + "glimmer_build_icm", + "glimmer_extract", + "glimmer_gbk_to_orf", + "glimmer_glimmer_to_gff", + "glimmer_long_orfs", + "glimmer_knowledge_based", + "glimmer_not_knowledge_based" + ], + "Description": "Glimmer makes gene predictions.", + "bio.tool id": "gemini", + "bio.tool ids": [ + "gemini" + ], + "biii": null, + "bio.tool name": "GEMINI", + "bio.tool description": "GEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics.", + "EDAM operation": [ + "Sequence analysis", + "Genetic variation analysis" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://ccb.jhu.edu/software/glimmer/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/glimmer", + "Galaxy wrapper version": null, + "Conda id": "glimmer", + "Conda version": "3.02", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 187, + "Total tool usage (usegalaxy.eu)": 3965 + }, + { + "Galaxy wrapper id": "goenrichment", + "Galaxy tool ids": [ + "goenrichment", + "goslimmer" + ], + "Description": "Performs GO Enrichment analysis.", + "bio.tool id": "goenrichment", + "bio.tool ids": [ + "goenrichment" + ], + "biii": null, + "bio.tool name": "GOEnrichment", + "bio.tool description": "GOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência.", + "EDAM operation": [ + "Gene-set enrichment analysis" + ], + "EDAM topic": [ + "Transcriptomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/DanFaria/GOEnrichment", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment", + "Galaxy wrapper version": "2.0.1", + "Conda id": "goenrichment", + "Conda version": "2.0.1", + "EDAM operation (no superclasses)": [ + "Gene-set enrichment analysis" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 408, + "Total tool usage (usegalaxy.eu)": 5484 + }, + { + "Galaxy wrapper id": "goseq", + "Galaxy tool ids": [ + "goseq" + ], + "Description": "goseq does selection-unbiased testing for category enrichment amongst differentially expressed (DE) genes for RNA-seq data", + "bio.tool id": "goseq", + "bio.tool ids": [ + "goseq" + ], + "biii": null, + "bio.tool name": "GOseq", + "bio.tool description": "Detect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data.", + "EDAM operation": [ + "Gene functional annotation" + ], + "EDAM topic": [ + "RNA-Seq" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/goseq.html", + "ToolShed categories": [ + "Statistics", + "RNA", + "Micro-array Analysis" + ], + "ToolShed id": "goseq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/goseq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/goseq", + "Galaxy wrapper version": "1.50.0", + "Conda id": "bioconductor-goseq", + "Conda version": "1.54.0", + "EDAM operation (no superclasses)": [ + "Gene functional annotation" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1210, + "Total tool usage (usegalaxy.eu)": 19167 + }, + { + "Galaxy wrapper id": "gprofiler", + "Galaxy tool ids": [ + "gprofiler_convert", + "gprofiler_gost", + "gprofiler_orth", + "gprofiler_random", + "gprofiler_snpense" + ], + "Description": "functional enrichment analysis of gene lists, convertion between various types of namespaces, translation gene identifiers between organisms and more", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://biit.cs.ut.ee/gprofiler", + "ToolShed categories": [ + "Statistics", + "Web Services" + ], + "ToolShed id": "gprofiler", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gprofiler", + "Galaxy wrapper version": "@TOOL_VERSION@+galaxy11", + "Conda id": "r-gprofiler2", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 196, + "Total tool usage (usegalaxy.eu)": 3443 + }, + { + "Galaxy wrapper id": "graphembed", + "Galaxy tool ids": [ + "graphembed" + ], + "Description": "Compute a 2D embedding of a data matrix given supervised class information", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/fabriziocosta/GraphEmbed", + "ToolShed categories": [ + "Statistics", + "Graphics" + ], + "ToolShed id": "graphembed", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/graphembed/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphembed", + "Galaxy wrapper version": "2.4", + "Conda id": "graph_embed", + "Conda version": "2.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 63 + }, + { + "Galaxy wrapper id": "graphlan", + "Galaxy tool ids": [ + "graphlan", + "graphlan_annotate" + ], + "Description": "GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees", + "bio.tool id": "graphlan", + "bio.tool ids": [ + "graphlan" + ], + "biii": null, + "bio.tool name": "GraPhlAn", + "bio.tool description": "GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees. GraPhlAn focuses on concise, integrative, informative, and publication-ready representations of phylogenetically- and taxonomically-driven investigation.", + "EDAM operation": [ + "Phylogenetic inference", + "Phylogenetic tree visualisation", + "Phylogenetic tree editing", + "Taxonomic classification" + ], + "EDAM topic": [ + "Metagenomics", + "Phylogenetics", + "Phylogenomics", + "Cladistics" + ], + "Status": "To update", + "Source": "https://github.com/biobakery/graphlan", + "ToolShed categories": [ + "Metagenomics", + "Graphics", + "Phylogenetics" + ], + "ToolShed id": "graphlan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphlan", + "Galaxy wrapper version": null, + "Conda id": "graphlan", + "Conda version": "1.1.3", + "EDAM operation (no superclasses)": [ + "Phylogenetic inference", + "Phylogenetic tree visualisation", + "Phylogenetic tree editing", + "Taxonomic classification" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Phylogenetics", + "Phylogenomics", + "Cladistics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 432, + "Total tool usage (usegalaxy.eu)": 9277 + }, + { + "Galaxy wrapper id": "gtdb_to_taxdump", + "Galaxy tool ids": [ + "gtdb_to_taxdump" + ], + "Description": "Convert GTDB taxonomy to NCBI taxdump format", + "bio.tool id": "gtdb_to_taxdump", + "bio.tool ids": [ + "gtdb_to_taxdump" + ], + "biii": null, + "bio.tool name": "gtdb_to_taxdump", + "bio.tool description": "Tool with multiple functions. Main functions are to create a DIAMOND database from the GTDB taxonomy data or create a NCBI taxdump format out of this data. This tool can also create a mapping between the taxonomy classification between GTDB and NCBI.", + "EDAM operation": [ + "Data handling", + "Mapping", + "Generation" + ], + "EDAM topic": [ + "Computational biology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/nick-youngblut/gtdb_to_taxdump", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "gtdb_to_taxdump", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/nick-youngblut/gtdb_to_taxdump", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdb_to_taxdump", + "Galaxy wrapper version": "0.1.9", + "Conda id": "gtdb_to_taxdump", + "Conda version": "0.1.9", + "EDAM operation (no superclasses)": [ + "Data handling", + "Mapping", + "Generation" + ], + "EDAM topic (no superclasses)": [ + "Computational biology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gtdbtk", + "Galaxy tool ids": [ + "gtdbtk_classify_wf" + ], + "Description": "GTDB-Tk is a software tool kit for assigning objective taxonomic classifications to bacterial and archaeal genomesbased on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds orthousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can alsobe applied to isolate and single-cell genomes. ", + "bio.tool id": "GTDB-Tk", + "bio.tool ids": [ + "GTDB-Tk" + ], + "biii": null, + "bio.tool name": "GTDB-Tk", + "bio.tool description": "a toolkit to classify genomes with the Genome Taxonomy Database.GTDB-Tk: a toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes.GTDB-Tk is a software toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes based on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds or thousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can also be applied to isolate and single-cell genomes. The GTDB-Tk is open source and released under the GNU General Public License (Version 3).", + "EDAM operation": [ + "Genome alignment", + "Taxonomic classification", + "Sequence assembly", + "Query and retrieval" + ], + "EDAM topic": [ + "Metagenomics", + "Taxonomy", + "Phylogenetics", + "Database management", + "Proteins" + ], + "Status": "To update", + "Source": "https://github.com/Ecogenomics/GTDBTk", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "gtdbtk", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gtdbtk", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdbtk", + "Galaxy wrapper version": "2.3.2", + "Conda id": "gtdbtk", + "Conda version": "2.4.0", + "EDAM operation (no superclasses)": [ + "Genome alignment", + "Taxonomic classification", + "Sequence assembly", + "Query and retrieval" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Taxonomy", + "Phylogenetics", + "Database management", + "Proteins" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gtfToBed12", + "Galaxy tool ids": [ + "gtftobed12" + ], + "Description": "Convert GTF files to BED12 format", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://genome-source.cse.ucsc.edu/gitweb/?p=kent.git;a=blob;f=src/userApps/README", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "gtftobed12", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gtfToBed12", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtfToBed12", + "Galaxy wrapper version": "357", + "Conda id": "ucsc-gtftogenepred", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1200, + "Total tool usage (usegalaxy.eu)": 8107 + }, + { + "Galaxy wrapper id": "gubbins", + "Galaxy tool ids": [ + "gubbins" + ], + "Description": "Gubbins - bacterial recombination detection", + "bio.tool id": "gubbins", + "bio.tool ids": [ + "gubbins" + ], + "biii": null, + "bio.tool name": "Gubbins", + "bio.tool description": "Gubbins is a tool for rapid phylogenetic analysis of large samples of recombinant bacterial whole genome sequences.", + "EDAM operation": [ + "Genotyping", + "Phylogenetic inference", + "Ancestral reconstruction" + ], + "EDAM topic": [ + "Phylogeny", + "Genotype and phenotype", + "Whole genome sequencing" + ], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "gubbins", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gubbins", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gubbins", + "Galaxy wrapper version": "3.2.1", + "Conda id": "gubbins", + "Conda version": "3.3.5", + "EDAM operation (no superclasses)": [ + "Genotyping", + "Phylogenetic inference", + "Ancestral reconstruction" + ], + "EDAM topic (no superclasses)": [ + "Phylogeny", + "Genotype and phenotype", + "Whole genome sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 145, + "Total tool usage (usegalaxy.eu)": 3340 + }, + { + "Galaxy wrapper id": "gvcftools", + "Galaxy tool ids": [ + "gvcftools_extract_variants" + ], + "Description": "gvcftools is a set of utilities to help create and analyze Genome VCF (gVCF) files.gVCF are VCF 4.1 files which follow a set of conventions for representing all sitesin the genome, further described at https://sites.google.com/site/gvcftools/home/about-gvcf.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/sequencing/gvcftools", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/gvcftools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gvcftools", + "Galaxy wrapper version": "0.1", + "Conda id": "gvcftools", + "Conda version": "0.17.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gwastools", + "Galaxy tool ids": [ + "gwastools_manhattan_plot" + ], + "Description": null, + "bio.tool id": "gwastools", + "bio.tool ids": [ + "gwastools" + ], + "biii": null, + "bio.tool name": "GWASTools", + "bio.tool description": "Classes for storing very large GWAS data sets and annotation, and functions for GWAS data cleaning and analysis.", + "EDAM operation": [ + "Deposition", + "Analysis", + "Annotation" + ], + "EDAM topic": [ + "GWAS study" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/GWASTools.html", + "ToolShed categories": [ + "Visualization", + "Variant Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/gwastools", + "Galaxy wrapper version": "0.1.0", + "Conda id": "bioconductor-gwastools", + "Conda version": "1.48.0", + "EDAM operation (no superclasses)": [ + "Deposition", + "Analysis", + "Annotation" + ], + "EDAM topic (no superclasses)": [ + "GWAS study" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hamronization", + "Galaxy tool ids": [ + "hamronize_summarize", + "hamronize_tool" + ], + "Description": "Convert AMR gene detection tool output to hAMRonization specification format.", + "bio.tool id": "hamronization", + "bio.tool ids": [ + "hamronization" + ], + "biii": null, + "bio.tool name": "hAMRonization", + "bio.tool description": "Parse multiple Antimicrobial Resistance Analysis Reports into a common data structure", + "EDAM operation": [ + "Data handling", + "Antimicrobial resistance prediction", + "Parsing" + ], + "EDAM topic": [ + "Public health and epidemiology", + "Microbiology", + "Bioinformatics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/pha4ge/hAMRonization", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "hamronization", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hamronization", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hamronization", + "Galaxy wrapper version": "1.1.4", + "Conda id": "hamronization", + "Conda version": "1.1.4", + "EDAM operation (no superclasses)": [ + "Antimicrobial resistance prediction", + "Parsing" + ], + "EDAM topic (no superclasses)": [ + "Public health and epidemiology", + "Microbiology", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 117, + "Total tool usage (usegalaxy.eu)": 4459 + }, + { + "Galaxy wrapper id": "hansel", + "Galaxy tool ids": [ + "bio_hansel" + ], + "Description": "Heidelberg and Enteritidis SNP Elucidation", + "bio.tool id": "Biohansel", + "bio.tool ids": [ + "Biohansel" + ], + "biii": null, + "bio.tool name": "BioHansel", + "bio.tool description": "BioHansel is a tool for performing high-resolution genotyping of bacterial isolates by identifying phylogenetically informative single nucleotide polymorphisms (SNPs), also known as canonical SNPs, in whole genome sequencing (WGS) data. The application uses a fast k-mer matching algorithm to map pathogen WGS data to canonical SNPs contained in hierarchically structured schemas and assigns genotypes based on the detected SNP profile.", + "EDAM operation": [ + "Genotyping", + "SNP detection", + "Genome assembly" + ], + "EDAM topic": [ + "Whole genome sequencing", + "DNA polymorphism", + "Genotype and phenotype", + "Infectious disease", + "Agricultural science" + ], + "Status": "Up-to-date", + "Source": "https://github.com/phac-nml/bio_hansel", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "bio_hansel", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hansel", + "Galaxy wrapper version": "2.6.1", + "Conda id": "bio_hansel", + "Conda version": "2.6.1", + "EDAM operation (no superclasses)": [ + "Genotyping", + "SNP detection", + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "DNA polymorphism", + "Genotype and phenotype", + "Infectious disease", + "Agricultural science" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 18, + "Total tool usage (usegalaxy.eu)": 339 + }, + { + "Galaxy wrapper id": "hapcut2", + "Galaxy tool ids": [ + "hapcut2" + ], + "Description": "Robust and accurate haplotype assembly for diverse sequencing technologies", + "bio.tool id": "hapcut2", + "bio.tool ids": [ + "hapcut2" + ], + "biii": null, + "bio.tool name": "HapCUT2", + "bio.tool description": "HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to \"just work\" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.md", + "EDAM operation": [ + "Haplotype mapping", + "Variant classification" + ], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/vibansal/HapCUT2", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "hapcut2", + "Galaxy wrapper owner": "galaxy-australia", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut2", + "Galaxy wrapper version": "1.3.4", + "Conda id": "hapcut2", + "Conda version": "1.3.4", + "EDAM operation (no superclasses)": [ + "Haplotype mapping", + "Variant classification" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hapog", + "Galaxy tool ids": [ + "hapog" + ], + "Description": "Hapo-G - Haplotype-Aware Polishing of Genomes", + "bio.tool id": "hapog", + "bio.tool ids": [ + "hapog" + ], + "biii": null, + "bio.tool name": "Hapo-G", + "bio.tool description": "Hapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes.", + "EDAM operation": [ + "Genome assembly", + "Optimisation and refinement" + ], + "EDAM topic": [ + "Sequence assembly", + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/institut-de-genomique/HAPO-G", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "hapog", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog", + "Galaxy wrapper version": "1.3.8", + "Conda id": "hapog", + "Conda version": "1.3.8", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Optimisation and refinement" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 36, + "Total tool usage (usegalaxy.eu)": 295 + }, + { + "Galaxy wrapper id": "happy", + "Galaxy tool ids": [ + "som.py" + ], + "Description": "A tool to perform comparisons only based on chromosome, position, and allele identity for comparison of somatic callsets.", + "bio.tool id": "hap.py", + "bio.tool ids": [ + "hap.py" + ], + "biii": null, + "bio.tool name": "hap.py", + "bio.tool description": "This is a set of programs based on htslib to benchmark variant calls against gold standard truth datasets.To compare a VCF against a gold standard dataset, use the following commmand line to perform genotype-level haplotype comparison.", + "EDAM operation": [ + "Variant calling", + "Sequence analysis", + "Genotyping" + ], + "EDAM topic": [ + "Genomics", + "DNA polymorphism" + ], + "Status": "To update", + "Source": "https://github.com/Illumina/hap.py", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "happy", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/happy", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/happy", + "Galaxy wrapper version": "0.3.14", + "Conda id": "hap.py", + "Conda version": "0.3.15", + "EDAM operation (no superclasses)": [ + "Variant calling", + "Sequence analysis", + "Genotyping" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "DNA polymorphism" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "heatmap2", + "Galaxy tool ids": [ + "ggplot2_heatmap2" + ], + "Description": "heatmap.2 function from the R gplots package", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/cran/gplots", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "ggplot2_heatmap2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/heatmap2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/heatmap2", + "Galaxy wrapper version": "3.1.3.1", + "Conda id": "r-gplots", + "Conda version": "2.17.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1953, + "Total tool usage (usegalaxy.eu)": 44240 + }, + { + "Galaxy wrapper id": "heinz", + "Galaxy tool ids": [ + "heinz_bum", + "heinz", + "heinz_scoring", + "heinz_visualization" + ], + "Description": "An algorithm for identification of the optimal scoring subnetwork.", + "bio.tool id": "heinz", + "bio.tool ids": [ + "bionet", + "heinz" + ], + "biii": null, + "bio.tool name": "Heinz", + "bio.tool description": "Tool for single-species active module discovery.", + "EDAM operation": [ + "Pathway or network analysis" + ], + "EDAM topic": [ + "Genetics", + "Gene expression", + "Molecular interactions, pathways and networks" + ], + "Status": "To update", + "Source": "https://github.com/ls-cwi/heinz", + "ToolShed categories": [ + "Transcriptomics", + "Visualization", + "Statistics" + ], + "ToolShed id": "heinz", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz", + "Galaxy wrapper version": "1.0", + "Conda id": "bioconductor-bionet", + "Conda version": "1.62.0", + "EDAM operation (no superclasses)": [ + "Pathway or network analysis" + ], + "EDAM topic (no superclasses)": [ + "Genetics", + "Gene expression", + "Molecular interactions, pathways and networks" + ], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 242, + "Total tool usage (usegalaxy.eu)": 1186 + }, + { + "Galaxy wrapper id": "hgvsparser", + "Galaxy tool ids": [ + "hgvsparser" + ], + "Description": "Parsing and building variant descriptor strings compliant with the HGVS standard", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/VariantEffect/hgvsParseR/tree/master", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "hgvsparser", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hgvsparser/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hgvsparser", + "Galaxy wrapper version": "0.1.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hicexplorer", + "Galaxy tool ids": [ + "hicexplorer_chicaggregatestatistic", + "hicexplorer_chicdifferentialtest", + "hicexplorer_chicexportdata", + "hicexplorer_chicplotviewpoint", + "hicexplorer_chicqualitycontrol", + "hicexplorer_chicsignificantinteractions", + "hicexplorer_chicviewpoint", + "hicexplorer_chicviewpointbackgroundmodel", + "hicexplorer_hicadjustmatrix", + "hicexplorer_hicaggregatecontacts", + "hicexplorer_hicaverageregions", + "hicexplorer_hicbuildmatrix", + "hicexplorer_hiccomparematrices", + "hicexplorer_hiccompartmentspolarization", + "hicexplorer_hicconvertformat", + "hicexplorer_hiccorrectmatrix", + "hicexplorer_hiccorrelate", + "hicexplorer_hicdetectloops", + "hicexplorer_hicdifferentialtad", + "hicexplorer_hicfindrestrictionsites", + "hicexplorer_hicfindtads", + "hicexplorer_hichyperoptDetectLoops", + "hicexplorer_hicinfo", + "hicexplorer_hicinterintratad", + "hicexplorer_hicmergedomains", + "hicexplorer_hicmergeloops", + "hicexplorer_hicmergematrixbins", + "hicexplorer_hicnormalize", + "hicexplorer_hicpca", + "hicexplorer_hicplotaverageregions", + "hicexplorer_hicplotdistvscounts", + "hicexplorer_hicplotmatrix", + "hicexplorer_hicplotsvl", + "hicexplorer_hicplotviewpoint", + "hicexplorer_hicquickqc", + "hicexplorer_hicsummatrices", + "hicexplorer_hictransform", + "hicexplorer_hicvalidatelocations" + ], + "Description": "HiCExplorer: Set of programs to process, analyze and visualize Hi-C data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/deeptools/HiCExplorer", + "ToolShed categories": [ + "Sequence Analysis", + "Visualization" + ], + "ToolShed id": "hicexplorer", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hicexplorer", + "Galaxy wrapper version": "3.7.5", + "Conda id": "hicexplorer", + "Conda version": "3.7.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 38, + "Available on UseGalaxy.org.au": 38, + "Available on UseGalaxy.eu": 38, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 38, + "Tools available on UseGalaxy.org.au": 38, + "Tools available on UseGalaxy.eu": 38, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 13, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 36, + "Tools available on UseGalaxy.no": 33, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1085, + "Total tool usage (usegalaxy.eu)": 66003 + }, + { + "Galaxy wrapper id": "hicstuff", + "Galaxy tool ids": [ + "hicstuff_pipeline" + ], + "Description": "A toolkit to generate and manipulate Hi-C matrices", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/koszullab/hicstuff", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicstuff", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hicstuff", + "Galaxy wrapper version": "3.1.5", + "Conda id": "hicstuff", + "Conda version": "3.2.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hifiasm", + "Galaxy tool ids": [ + "hifiasm" + ], + "Description": "A fast haplotype-resolved de novo assembler", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/chhylp123/hifiasm", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "hifiasm", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm", + "Galaxy wrapper version": "0.19.9", + "Conda id": "hifiasm", + "Conda version": "0.19.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 297, + "Total tool usage (usegalaxy.eu)": 1410 + }, + { + "Galaxy wrapper id": "hifiasm_meta", + "Galaxy tool ids": [ + "hifiasm_meta" + ], + "Description": "A hifiasm fork for metagenome assembly using Hifi reads.", + "bio.tool id": "hifiasm-meta", + "bio.tool ids": [ + "hifiasm-meta" + ], + "biii": null, + "bio.tool name": "Hifiasm-meta", + "bio.tool description": "Hifiasm_meta - de novo metagenome assembler, based on hifiasm, a haplotype-resolved de novo assembler for PacBio Hifi reads.", + "EDAM operation": [ + "Sequence assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "Metagenomics" + ], + "Status": "To update", + "Source": "https://github.com/xfengnefx/hifiasm-meta", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "hifiasm_meta", + "Galaxy wrapper owner": "galaxy-australia", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hifiasm_meta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm_meta", + "Galaxy wrapper version": "0.3.1", + "Conda id": "hifiasm_meta", + "Conda version": "hamtv0.3.1", + "EDAM operation (no superclasses)": [ + "Sequence assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 137 + }, + { + "Galaxy wrapper id": "hisat2", + "Galaxy tool ids": [ + "hisat2" + ], + "Description": "HISAT2 is a fast and sensitive spliced alignment program.", + "bio.tool id": "hisat2", + "bio.tool ids": [ + "hisat2" + ], + "biii": null, + "bio.tool name": "HISAT2", + "bio.tool description": "Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome).", + "EDAM operation": [ + "Sequence alignment" + ], + "EDAM topic": [ + "RNA-seq" + ], + "Status": "Up-to-date", + "Source": "http://ccb.jhu.edu/software/hisat2/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "hisat2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat2", + "Galaxy wrapper version": "2.2.1", + "Conda id": "hisat2", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [ + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4183, + "Total tool usage (usegalaxy.eu)": 299104 + }, + { + "Galaxy wrapper id": "hivclustering", + "Galaxy tool ids": [ + "hivclustering" + ], + "Description": "Infers transmission networks from pairwise distances inferred by tn93", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pypi.org/project/hivclustering/", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "hivclustering", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hivclustering/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hivclustering", + "Galaxy wrapper version": "1.3.1", + "Conda id": "python-hivclustering", + "Conda version": "1.6.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hmmer3", + "Galaxy tool ids": [ + "hmmer_alimask", + "hmmer_hmmalign", + "hmmer_hmmbuild", + "hmmer_hmmconvert", + "hmmer_hmmemit", + "hmmer_hmmfetch", + "hmmer_hmmscan", + "hmmer_hmmsearch", + "hmmer_jackhmmer", + "hmmer_nhmmer", + "hmmer_nhmmscan", + "hmmer_phmmer" + ], + "Description": "HMMER is used for searching sequence databases for homologs of proteinsequences, and for making protein sequence alignments. It implementsmethods using probabilistic models called profile hidden Markov models(profile HMMs).", + "bio.tool id": "hmmer3", + "bio.tool ids": [ + "hmmer3" + ], + "biii": null, + "bio.tool name": "HMMER3", + "bio.tool description": "This tool is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models. The new HMMER3 project, HMMER is now as fast as BLAST for protein search.", + "EDAM operation": [ + "Formatting", + "Multiple sequence alignment", + "Sequence profile generation", + "Format validation", + "Conversion", + "Sequence generation", + "Data retrieval", + "Statistical calculation", + "Database search", + "Formatting", + "Database search", + "Database search", + "Probabilistic sequence generation", + "Statistical calculation", + "Statistical calculation", + "Sequence database search", + "Formatting", + "Sequence database search", + "Database search", + "Sequence database search" + ], + "EDAM topic": [ + "Sequence analysis", + "Sequence sites, features and motifs", + "Gene and protein families" + ], + "Status": "Up-to-date", + "Source": "http://hmmer.org/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hmmer3", + "Galaxy wrapper version": "3.4", + "Conda id": "hmmer", + "Conda version": "3.4", + "EDAM operation (no superclasses)": [ + "Formatting", + "Multiple sequence alignment", + "Sequence profile generation", + "Format validation", + "Conversion", + "Data retrieval", + "Statistical calculation", + "Formatting", + "Probabilistic sequence generation", + "Statistical calculation", + "Statistical calculation", + "Sequence database search", + "Formatting", + "Sequence database search", + "Sequence database search" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Sequence sites, features and motifs", + "Gene and protein families" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 12, + "Available on UseGalaxy.eu": 12, + "Available on UseGalaxy.fr": 12, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 12, + "Tools available on UseGalaxy.eu": 12, + "Tools available on UseGalaxy.fr": 12, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 12, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 12, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 12, + "Tools available on UseGalaxy.no": 12, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 439, + "Total tool usage (usegalaxy.eu)": 33702 + }, + { + "Galaxy wrapper id": "homer", + "Galaxy tool ids": [ + "homer_annotatePeaks", + "homer_findMotifs", + "homer_findMotifsGenome", + "homer_gtf_to_annotations", + "homer_scanMotifGenomeWide" + ], + "Description": "HOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and next-gen sequencing analysis.", + "bio.tool id": "homer", + "bio.tool ids": [ + "homer" + ], + "biii": null, + "bio.tool name": "homer", + "bio.tool description": "HOMER contains a novel motif discovery algorithm that was designed for regulatory element analysis in genomics applications (DNA only, no protein). It is a differential motif discovery algorithm, which means that it takes two sets of sequences and tries to identify the regulatory elements that are specifically enriched in on set relative to the other. It uses ZOOPS scoring (zero or one occurrence per sequence) coupled with the hypergeometric enrichment calculations (or binomial) to determine motif enrichment. HOMER also tries its best to account for sequenced bias in the dataset. It was designed with ChIP-Seq and promoter analysis in mind, but can be applied to pretty much any nucleic acids motif finding problem.", + "EDAM operation": [ + "Sequence motif discovery" + ], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://homer.ucsd.edu/homer/index.html", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "data_manager_homer_preparse", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/homer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/homer", + "Galaxy wrapper version": "4.11", + "Conda id": "homer", + "Conda version": "4.11", + "EDAM operation (no superclasses)": [ + "Sequence motif discovery" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 394, + "Total tool usage (usegalaxy.eu)": 6937 + }, + { + "Galaxy wrapper id": "htseq_count", + "Galaxy tool ids": [ + "htseq_count" + ], + "Description": "Count aligned reads (SAM/BAM) that overlap genomic features (GFF)", + "bio.tool id": "htseq", + "bio.tool ids": [ + "htseq" + ], + "biii": null, + "bio.tool name": "HTSeq", + "bio.tool description": "Python framework to process and analyse high-throughput sequencing (HTS) data", + "EDAM operation": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://readthedocs.org/projects/htseq/", + "ToolShed categories": [ + "Genomic Interval Operations", + "SAM", + "Sequence Analysis", + "RNA" + ], + "ToolShed id": "htseq_count", + "Galaxy wrapper owner": "lparsons", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/htseq_count", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/htseq_count", + "Galaxy wrapper version": "2.0.5", + "Conda id": "htseq", + "Conda version": "2.0.5", + "EDAM operation (no superclasses)": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1419, + "Total tool usage (usegalaxy.eu)": 154533 + }, + { + "Galaxy wrapper id": "humann", + "Galaxy tool ids": [ + "humann", + "humann_associate", + "humann_barplot", + "humann_join_tables", + "humann_reduce_table", + "humann_regroup_table", + "humann_rename_table", + "humann_renorm_table", + "humann_rna_dna_norm", + "humann_split_stratified_table", + "humann_split_table", + "humann_strain_profiler", + "humann_unpack_pathways" + ], + "Description": "HUMAnN for functionally profiling metagenomes and metatranscriptomes at species-level resolution", + "bio.tool id": "humann", + "bio.tool ids": [ + "humann" + ], + "biii": null, + "bio.tool name": "humann", + "bio.tool description": "HUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data (typically millions of short DNA/RNA reads). This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question “What are the microbes in my community-of-interest doing (or are capable of doing)?”", + "EDAM operation": [ + "Species frequency estimation", + "Taxonomic classification", + "Phylogenetic analysis" + ], + "EDAM topic": [ + "Metagenomics", + "Phylogenomics" + ], + "Status": "To update", + "Source": "http://huttenhower.sph.harvard.edu/humann", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "humann", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/humann", + "Galaxy wrapper version": "3.8", + "Conda id": "humann", + "Conda version": "3.9", + "EDAM operation (no superclasses)": [ + "Species frequency estimation", + "Taxonomic classification", + "Phylogenetic analysis" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Phylogenomics" + ], + "Available on UseGalaxy.org (Main)": 6, + "Available on UseGalaxy.org.au": 13, + "Available on UseGalaxy.eu": 13, + "Available on UseGalaxy.fr": 13, + "Tools available on UseGalaxy.org (Main)": 6, + "Tools available on UseGalaxy.org.au": 13, + "Tools available on UseGalaxy.eu": 13, + "Tools available on UseGalaxy.fr": 13, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 13, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 13, + "Tools available on UseGalaxy.no": 13, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1045, + "Total tool usage (usegalaxy.eu)": 19521 + }, + { + "Galaxy wrapper id": "hybpiper", + "Galaxy tool ids": [ + "hybpiper" + ], + "Description": "Analyse targeted sequence capture data", + "bio.tool id": "HybPiper", + "bio.tool ids": [ + "HybPiper" + ], + "biii": null, + "bio.tool name": "HybPiper", + "bio.tool description": "Paralogs and off-target sequences improve phylogenetic resolution in a densely-sampled study of the breadfruit genus (Artocarpus, Moraceae).Recovering genes from targeted sequence capture data.Current version: 1.3.1 (August 2018).-- Read our article in Applications in Plant Sciences (Open Access).HybPiper was designed for targeted sequence capture, in which DNA sequencing libraries are enriched for gene regions of interest, especially for phylogenetics. HybPiper is a suite of Python scripts that wrap and connect bioinformatics tools in order to extract target sequences from high-throughput DNA sequencing reads.", + "EDAM operation": [ + "Sequence trimming", + "Sequence assembly", + "Read mapping" + ], + "EDAM topic": [ + "Phylogenetics", + "Plant biology", + "Gene transcripts", + "Sequence assembly", + "Phylogenomics" + ], + "Status": "To update", + "Source": "https://github.com/mossmatters/HybPiper", + "ToolShed categories": [ + "Sequence Analysis", + "Phylogenetics" + ], + "ToolShed id": "hybpiper", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hybpiper", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hybpiper", + "Galaxy wrapper version": "2.1.6", + "Conda id": "hybpiper", + "Conda version": "2.2.0", + "EDAM operation (no superclasses)": [ + "Sequence trimming", + "Sequence assembly", + "Read mapping" + ], + "EDAM topic (no superclasses)": [ + "Phylogenetics", + "Plant biology", + "Gene transcripts", + "Sequence assembly", + "Phylogenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hyphy", + "Galaxy tool ids": [ + "hyphy_absrel", + "hyphy_annotate", + "hyphy_bgm", + "hyphy_busted", + "hyphy_cfel", + "hyphy_conv", + "hyphy_fade", + "hyphy_fel", + "hyphy_fubar", + "hyphy_gard", + "hyphy_meme", + "hyphy_prime", + "hyphy_relax", + "hyphy_slac", + "hyphy_sm19", + "hyphy_strike_ambigs", + "hyphy_summary" + ], + "Description": "Hypothesis Testing using Phylogenies", + "bio.tool id": "HyPhy", + "bio.tool ids": [ + "HyPhy" + ], + "biii": null, + "bio.tool name": "HyPhy", + "bio.tool description": "Software package for the analysis of genetic sequences using techniques in phylogenetics, molecular evolution, and machine learning.", + "EDAM operation": [ + "Statistical calculation" + ], + "EDAM topic": [ + "Phylogeny", + "Small molecules", + "Molecular interactions, pathways and networks" + ], + "Status": "To update", + "Source": "http://www.hyphy.org", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hyphy", + "Galaxy wrapper version": "2.5.47", + "Conda id": "hyphy", + "Conda version": "2.5.62", + "EDAM operation (no superclasses)": [ + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Phylogeny", + "Small molecules", + "Molecular interactions, pathways and networks" + ], + "Available on UseGalaxy.org (Main)": 17, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 17, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 17, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 17, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 17, + "Tools available on UseGalaxy.no": 12, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 161, + "Total tool usage (usegalaxy.eu)": 10370 + }, + { + "Galaxy wrapper id": "hypo", + "Galaxy tool ids": [ + "hypo" + ], + "Description": "Super Fast & Accurate Polisher for Long Read Genome Assemblies", + "bio.tool id": "HyPo", + "bio.tool ids": [ + "HyPo" + ], + "biii": null, + "bio.tool name": "HyPo", + "bio.tool description": "HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes.", + "EDAM operation": [ + "Optimisation and refinement", + "Genome assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/kensung-lab/hypo", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "hypo", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo", + "Galaxy wrapper version": "1.0.3", + "Conda id": "hypo", + "Conda version": "1.0.3", + "EDAM operation (no superclasses)": [ + "Optimisation and refinement", + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 354 + }, + { + "Galaxy wrapper id": "icescreen", + "Galaxy tool ids": [ + "icescreen" + ], + "Description": "ICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes.", + "bio.tool id": "icescreen", + "bio.tool ids": [ + "icescreen" + ], + "biii": null, + "bio.tool name": "ICEscreen", + "bio.tool description": "A tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures.", + "EDAM operation": [ + "Database search", + "Protein feature detection" + ], + "EDAM topic": [ + "Mobile genetic elements", + "Sequence sites, features and motifs", + "Genomics", + "Molecular interactions, pathways and networks", + "Structural variation" + ], + "Status": "To update", + "Source": "https://icescreen.migale.inrae.fr/", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "icescreen", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://forgemia.inra.fr/ices_imes_analysis/icescreen", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen", + "Galaxy wrapper version": "1.3.1", + "Conda id": "icescreen", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [ + "Database search", + "Protein feature detection" + ], + "EDAM topic (no superclasses)": [ + "Mobile genetic elements", + "Sequence sites, features and motifs", + "Genomics", + "Molecular interactions, pathways and networks", + "Structural variation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "idba_ud", + "Galaxy tool ids": [ + "idba_hybrid", + "idba_tran", + "idba_ud" + ], + "Description": "Wrappers for the idba assembler variants.", + "bio.tool id": "idba", + "bio.tool ids": [ + "idba" + ], + "biii": null, + "bio.tool name": "IDBA", + "bio.tool description": "A short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system.", + "EDAM operation": [ + "Sequence assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://i.cs.hku.hk/~alse/hkubrg/projects/index.html", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "idba", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_ud", + "Galaxy wrapper version": null, + "Conda id": "idba", + "Conda version": "1.1.3", + "EDAM operation (no superclasses)": [ + "Sequence assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 69, + "Total tool usage (usegalaxy.eu)": 1127 + }, + { + "Galaxy wrapper id": "idr", + "Galaxy tool ids": [ + "idr" + ], + "Description": "Galaxy wrappers for the IDR package from Nathan Boleu", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/nboley/idr", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "idr", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/idr/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/idr", + "Galaxy wrapper version": "2.0.3", + "Conda id": "idr", + "Conda version": "2.0.4.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 30, + "Total tool usage (usegalaxy.eu)": 2873 + }, + { + "Galaxy wrapper id": "idr_download", + "Galaxy tool ids": [ + "idr_download_by_ids" + ], + "Description": "Image Data Resource downloading tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://idr.openmicroscopy.org", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "idr_download_by_ids", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/idr_download", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/idr_download", + "Galaxy wrapper version": "0.44.1", + "Conda id": "omero-py", + "Conda version": "5.11.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 361 + }, + { + "Galaxy wrapper id": "iedb_api", + "Galaxy tool ids": [ + "iedb_api" + ], + "Description": "Get epitope binding predictions from IEDB-API", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://tools.immuneepitope.org/main/tools-api/", + "ToolShed categories": [ + "Data Source", + "Sequence Analysis" + ], + "ToolShed id": "iedb_api", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/iedb_api", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/iedb_api", + "Galaxy wrapper version": "2.15.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 1506 + }, + { + "Galaxy wrapper id": "infercnv", + "Galaxy tool ids": [ + "infercnv" + ], + "Description": "Infer Copy Number Variation from Single-Cell RNA-Seq Data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/broadinstitute/infercnv", + "ToolShed categories": [ + "Transcriptomics", + "Variant Analysis" + ], + "ToolShed id": "infercnv", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/infercnv", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/infercnv", + "Galaxy wrapper version": "1.20.0", + "Conda id": "bioconductor-infercnv", + "Conda version": "1.20.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "instrain", + "Galaxy tool ids": [ + "instrain_compare", + "instrain_profile" + ], + "Description": "InStrain is a tool for analysis of co-occurring genome populations from metagenomes", + "bio.tool id": "instrain", + "bio.tool ids": [ + "instrain" + ], + "biii": null, + "bio.tool name": "InStrain", + "bio.tool description": "InStrain is a tool for analysis of co-occurring genome populations from metagenomes that allows highly accurate genome comparisons, analysis of coverage, microdiversity, and linkage, and sensitive SNP detection with gene localization and synonymous non-synonymous identification", + "EDAM operation": [ + "SNP detection", + "Genome comparison" + ], + "EDAM topic": [ + "Mapping", + "Metagenomics" + ], + "Status": "To update", + "Source": "https://instrain.readthedocs.io/en/latest/#", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "instrain", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/instrain", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/instrain", + "Galaxy wrapper version": "1.5.3", + "Conda id": "instrain", + "Conda version": "1.9.0", + "EDAM operation (no superclasses)": [ + "SNP detection", + "Genome comparison" + ], + "EDAM topic (no superclasses)": [ + "Mapping", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 94 + }, + { + "Galaxy wrapper id": "integron_finder", + "Galaxy tool ids": [ + "integron_finder" + ], + "Description": "\"IntegronFinder identify integrons with high accuracy and sensitivity.It searches for attC sites using covariance models, for integron-integrases using HMM profiles, and for other features (promoters, attI site) using pattern matching\"", + "bio.tool id": "integron_finder", + "bio.tool ids": [ + "integron_finder" + ], + "biii": null, + "bio.tool name": "Integron Finder", + "bio.tool description": "A tool to detect Integron in DNA sequences.", + "EDAM operation": [ + "Nucleic acid feature detection", + "Sequence motif recognition", + "Protein feature detection", + "Genome annotation" + ], + "EDAM topic": [ + "Functional genomics", + "Mobile genetic elements", + "Molecular biology", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/gem-pasteur/Integron_Finder", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "integronfinder", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/integron_finder", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/integron_finder", + "Galaxy wrapper version": "2.0.5", + "Conda id": "integron_finder", + "Conda version": "2.0.5", + "EDAM operation (no superclasses)": [ + "Nucleic acid feature detection", + "Sequence motif recognition", + "Protein feature detection", + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Functional genomics", + "Mobile genetic elements", + "Molecular biology", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 58, + "Total tool usage (usegalaxy.eu)": 52965 + }, + { + "Galaxy wrapper id": "intermine_galaxy_exchange", + "Galaxy tool ids": [ + "galaxy_intermine_exchange" + ], + "Description": "InterMine Exporter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/intermine", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "intermine_galaxy_exchange", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/intermine_galaxy_exchange", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/intermine_galaxy_exchange", + "Galaxy wrapper version": "0.0.1", + "Conda id": "coreutils", + "Conda version": "8.25", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 44 + }, + { + "Galaxy wrapper id": "interproscan", + "Galaxy tool ids": [ + "interproscan" + ], + "Description": "Interproscan queries the interpro database and provides annotations.", + "bio.tool id": "interproscan_ebi", + "bio.tool ids": [ + "interproscan_ebi" + ], + "biii": null, + "bio.tool name": "InterProScan (EBI)", + "bio.tool description": "Scan sequences against the InterPro protein signature databases.", + "EDAM operation": [ + "Sequence motif recognition", + "Protein feature detection" + ], + "EDAM topic": [ + "Gene and protein families", + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://www.ebi.ac.uk/Tools/pfa/iprscan5/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "interproscan", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/interproscan", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/interproscan", + "Galaxy wrapper version": "5.59-91.0", + "Conda id": "interproscan", + "Conda version": "5.59_91.0", + "EDAM operation (no superclasses)": [ + "Sequence motif recognition", + "Protein feature detection" + ], + "EDAM topic (no superclasses)": [ + "Gene and protein families", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 677, + "Total tool usage (usegalaxy.eu)": 35243 + }, + { + "Galaxy wrapper id": "interval2maf", + "Galaxy tool ids": [ + "Interval2Maf1" + ], + "Description": "Extract MAF blocks given a set of intervals", + "bio.tool id": "bx-python", + "bio.tool ids": [ + "bx-python" + ], + "biii": null, + "bio.tool name": "bx-python", + "bio.tool description": "Tools for manipulating biological data, particularly multiple sequence alignments.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "interval2maf", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/interval2maf", + "Galaxy wrapper version": "1.0.1+galaxy1", + "Conda id": "bx-python", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 105 + }, + { + "Galaxy wrapper id": "intervene", + "Galaxy tool ids": [ + "intervene_pairwise", + "intervene_upset" + ], + "Description": "Create pairwise and upset plots", + "bio.tool id": "intervene", + "bio.tool ids": [ + "intervene" + ], + "biii": null, + "bio.tool name": "Intervene", + "bio.tool description": "Tool for intersection and visualization of multiple gene or genomic region sets. Intervene contains three modules: venn to generate Venn diagrams of up to six sets, upset to generate UpSet plots of multiple sets, and pairwise to compute and visualize intersections of multiple sets as clustered heat maps.", + "EDAM operation": [ + "Sequence comparison", + "Sequence visualisation" + ], + "EDAM topic": [ + "Computational biology" + ], + "Status": "Up-to-date", + "Source": "https://intervene.readthedocs.io", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "intervene", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/intervene", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/intervene", + "Galaxy wrapper version": "0.6.5", + "Conda id": "intervene", + "Conda version": "0.6.5", + "EDAM operation (no superclasses)": [ + "Sequence comparison", + "Sequence visualisation" + ], + "EDAM topic (no superclasses)": [ + "Computational biology" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 136, + "Total tool usage (usegalaxy.eu)": 1497 + }, + { + "Galaxy wrapper id": "iqtree", + "Galaxy tool ids": [ + "iqtree" + ], + "Description": "Efficient phylogenomic software by maximum likelihood", + "bio.tool id": "iqtree", + "bio.tool ids": [ + "iqtree" + ], + "biii": null, + "bio.tool name": "iqtree", + "bio.tool description": "A fast and effective stochastic algorithm to infer phylogenetic trees by maximum likelihood. IQ-TREE compares favorably to RAxML and PhyML in terms of likelihoods with similar computing time", + "EDAM operation": [ + "Phylogenetic analysis", + "Sequence analysis" + ], + "EDAM topic": [ + "Phylogenetics" + ], + "Status": "Up-to-date", + "Source": "http://www.iqtree.org/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "iqtree", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/iqtree/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/iqtree", + "Galaxy wrapper version": "2.3.6", + "Conda id": "iqtree", + "Conda version": "2.3.6", + "EDAM operation (no superclasses)": [ + "Phylogenetic analysis", + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 681, + "Total tool usage (usegalaxy.eu)": 21598 + }, + { + "Galaxy wrapper id": "irissv", + "Galaxy tool ids": [ + "irissv" + ], + "Description": "Refine insertion sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/mkirsche/Iris", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "irissv", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tools/irissv/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/irissv", + "Galaxy wrapper version": "1.0.5", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 29 + }, + { + "Galaxy wrapper id": "isescan", + "Galaxy tool ids": [ + "isescan" + ], + "Description": "\"ISEScan is a pipeline to identify IS (Insertion Sequence) elements in genome and metagenomebased on profile hidden Markov models constructed from manually curated IS elements.\"", + "bio.tool id": "ISEScan", + "bio.tool ids": [ + "ISEScan" + ], + "biii": null, + "bio.tool name": "ISEScan", + "bio.tool description": "Automated identification of insertion sequence elements in prokaryotic genomes.", + "EDAM operation": [ + "Structural variation detection" + ], + "EDAM topic": [ + "Genomics", + "DNA structural variation", + "Sequence analysis", + "Genetic variation" + ], + "Status": "To update", + "Source": "https://github.com/xiezhq/ISEScan", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ISEScan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/isescan", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/isescan", + "Galaxy wrapper version": "1.7.2.3", + "Conda id": "isescan", + "Conda version": "1.7.2.1", + "EDAM operation (no superclasses)": [ + "Structural variation detection" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Sequence analysis", + "Genetic variation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 50, + "Total tool usage (usegalaxy.eu)": 57581 + }, + { + "Galaxy wrapper id": "isoformswitchanalyzer", + "Galaxy tool ids": [ + "isoformswitchanalyzer" + ], + "Description": "Statistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms.", + "bio.tool id": "IsoformSwitchAnalyzeR", + "bio.tool ids": [ + "IsoformSwitchAnalyzeR" + ], + "biii": null, + "bio.tool name": "IsoformSwitchAnalyzeR", + "bio.tool description": "Enables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well.", + "EDAM operation": [ + "Sequence comparison", + "Sequence analysis" + ], + "EDAM topic": [ + "Computational biology", + "Gene transcripts" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "isoformswitchanalyzer", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer", + "Galaxy wrapper version": "1.20.0", + "Conda id": "bioconductor-isoformswitchanalyzer", + "Conda version": "2.2.0", + "EDAM operation (no superclasses)": [ + "Sequence comparison", + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Computational biology", + "Gene transcripts" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 29, + "Total tool usage (usegalaxy.eu)": 822 + }, + { + "Galaxy wrapper id": "ivar", + "Galaxy tool ids": [ + "ivar_consensus", + "ivar_filtervariants", + "ivar_removereads", + "ivar_trim", + "ivar_variants" + ], + "Description": "iVar is a computational package that contains functions broadly useful for viral amplicon-based sequencing", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/andersen-lab/ivar", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ivar", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ivar/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ivar", + "Galaxy wrapper version": "1.4.3", + "Conda id": "ivar", + "Conda version": "1.4.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 5, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 4, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 4, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1171, + "Total tool usage (usegalaxy.eu)": 1224275 + }, + { + "Galaxy wrapper id": "iwtomics", + "Galaxy tool ids": [ + "iwtomics_loadandplot", + "iwtomics_plotwithscale", + "iwtomics_testandplot" + ], + "Description": "Interval-Wise Testing for Omics Data", + "bio.tool id": "iwtomics", + "bio.tool ids": [ + "iwtomics" + ], + "biii": null, + "bio.tool name": "IWTomics", + "bio.tool description": "Implementation of the Interval-Wise Testing (IWT) for omics data. This inferential procedure tests for differences in \"Omics\" data between two groups of genomic regions (or between a group of genomic regions and a reference center of symmetry), and does not require fixing location and scale at the outset.", + "EDAM operation": [ + "Differential gene expression analysis", + "Differentially-methylated region identification", + "Peak calling", + "Genome annotation", + "Comparison" + ], + "EDAM topic": [ + "Statistics and probability" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/IWTomics.html", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "iwtomics", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/iwtomics", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/iwtomics", + "Galaxy wrapper version": "1.0.0", + "Conda id": "bioconductor-iwtomics", + "Conda version": "1.26.0", + "EDAM operation (no superclasses)": [ + "Differential gene expression analysis", + "Peak calling", + "Genome annotation", + "Comparison" + ], + "EDAM topic (no superclasses)": [ + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 542 + }, + { + "Galaxy wrapper id": "jasminesv", + "Galaxy tool ids": [ + "jasminesv" + ], + "Description": "Merge structural variants across samples", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/mkirsche/Jasmine/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "jasminesv", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/jasminesv/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/jasminesv", + "Galaxy wrapper version": "1.0.11", + "Conda id": "jasminesv", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 30 + }, + { + "Galaxy wrapper id": "jbrowse", + "Galaxy tool ids": [ + "jbrowse_to_standalone", + "jbrowse" + ], + "Description": "JBrowse Genome Browser integrated as a Galaxy Tool", + "bio.tool id": "jbrowse", + "bio.tool ids": [ + "jbrowse" + ], + "biii": null, + "bio.tool name": "JBrowse", + "bio.tool description": "Slick, speedy genome browser with a responsive and dynamic AJAX interface for visualization of genome data. Being developed by the GMOD project as a successor to GBrowse.", + "EDAM operation": [ + "Genome visualisation" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://jbrowse.org", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "jbrowse", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/jbrowse", + "Galaxy wrapper version": "1.16.11", + "Conda id": "jbrowse", + "Conda version": "1.16.11", + "EDAM operation (no superclasses)": [ + "Genome visualisation" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2346, + "Total tool usage (usegalaxy.eu)": 18229 + }, + { + "Galaxy wrapper id": "jcvi_gff_stats", + "Galaxy tool ids": [ + "jcvi_gff_stats" + ], + "Description": "Compute statistics from a genome annotation in GFF3 format (using JCVI Python utilities)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/tanghaibao/jcvi", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "jcvi_gff_stats", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/jcvi_gff_stats", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/jcvi_gff_stats", + "Galaxy wrapper version": "0.8.4", + "Conda id": "jcvi", + "Conda version": "1.4.16", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 255, + "Total tool usage (usegalaxy.eu)": 2469 + }, + { + "Galaxy wrapper id": "jellyfish", + "Galaxy tool ids": [ + "jellyfish" + ], + "Description": "Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA", + "bio.tool id": "Jellyfish", + "bio.tool ids": [ + "Jellyfish" + ], + "biii": null, + "bio.tool name": "Jellyfish", + "bio.tool description": "A command-line algorithm for counting k-mers in DNA sequence.", + "EDAM operation": [ + "k-mer counting" + ], + "EDAM topic": [ + "Sequence analysis", + "Genomics" + ], + "Status": "To update", + "Source": "https://github.com/gmarcais/Jellyfish", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "jellyfish", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfish", + "Galaxy wrapper version": null, + "Conda id": "kmer-jellyfish", + "Conda version": "2.3.1", + "EDAM operation (no superclasses)": [ + "k-mer counting" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 91, + "Total tool usage (usegalaxy.eu)": 1138 + }, + { + "Galaxy wrapper id": "join_files_by_id", + "Galaxy tool ids": [ + "join_files_by_id" + ], + "Description": "This tool will join datasets according to a column with identifier", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "join_files_by_id", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/join_files_by_id", + "Galaxy wrapper version": "1.0", + "Conda id": "r-data.table", + "Conda version": "1.11.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "jq", + "Galaxy tool ids": [ + "jq" + ], + "Description": "JQ is a lightweight and flexible command-line JSON processor", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://stedolan.github.io/jq/", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "jq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/jq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/jq", + "Galaxy wrapper version": "1.0", + "Conda id": "jq", + "Conda version": "1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 2312 + }, + { + "Galaxy wrapper id": "jvarkit", + "Galaxy tool ids": [ + "jvarkit_wgscoverageplotter" + ], + "Description": "Jvarkit : Java utilities for Bioinformatics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://lindenb.github.io/jvarkit/", + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "jvarkit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/iuc/tree/master/tools/jvarkit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/jvarkit", + "Galaxy wrapper version": "20201223", + "Conda id": "jvarkit-wgscoverageplotter", + "Conda version": "20201223", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 249, + "Total tool usage (usegalaxy.eu)": 6285 + }, + { + "Galaxy wrapper id": "kallisto", + "Galaxy tool ids": [ + "kallisto_pseudo", + "kallisto_quant" + ], + "Description": "kallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment.", + "bio.tool id": "kallisto", + "bio.tool ids": [ + "kallisto" + ], + "biii": null, + "bio.tool name": "kallisto", + "bio.tool description": "A program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment.", + "EDAM operation": [ + "Gene expression profiling" + ], + "EDAM topic": [ + "Transcriptomics", + "RNA-seq", + "Gene expression" + ], + "Status": "To update", + "Source": "https://pachterlab.github.io/kallisto/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto", + "Galaxy wrapper version": "0.48.0", + "Conda id": "kallisto", + "Conda version": "0.51.0", + "EDAM operation (no superclasses)": [ + "Gene expression profiling" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 299, + "Total tool usage (usegalaxy.eu)": 24155 + }, + { + "Galaxy wrapper id": "kc-align", + "Galaxy tool ids": [ + "kc-align" + ], + "Description": "Kc-Align custom tool", + "bio.tool id": "kc-align", + "bio.tool ids": [ + "kc-align" + ], + "biii": null, + "bio.tool name": "kc-align", + "bio.tool description": "A fast and accurate tool for performing codon-aware multiple sequence alignments", + "EDAM operation": [ + "Multiple sequence alignment" + ], + "EDAM topic": [ + "Mapping" + ], + "Status": "Up-to-date", + "Source": "https://github.com/davebx/kc-align", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "kc_align", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/kc-align", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/kc-align", + "Galaxy wrapper version": "1.0.2", + "Conda id": "kcalign", + "Conda version": "1.0.2", + "EDAM operation (no superclasses)": [ + "Multiple sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 19, + "Total tool usage (usegalaxy.eu)": 363 + }, + { + "Galaxy wrapper id": "khmer", + "Galaxy tool ids": [ + "khmer_abundance_distribution_single", + "khmer_abundance_distribution", + "khmer_count_median", + "khmer_partition", + "khmer_extract_partitions", + "khmer_filter_abundance", + "khmer_filter_below_abundance_cutoff", + "khmer_normalize_by_median" + ], + "Description": "In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more", + "bio.tool id": "khmer", + "bio.tool ids": [ + "khmer" + ], + "biii": null, + "bio.tool name": "khmer", + "bio.tool description": "khmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data.", + "EDAM operation": [ + "Standardisation and normalisation", + "De-novo assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://khmer.readthedocs.org/", + "ToolShed categories": [ + "Assembly", + "Next Gen Mappers" + ], + "ToolShed id": "khmer", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer", + "Galaxy wrapper version": "3.0.0a3", + "Conda id": "khmer", + "Conda version": "3.0.0a3", + "EDAM operation (no superclasses)": [ + "Standardisation and normalisation", + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 8, + "Available on UseGalaxy.org.au": 8, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 8, + "Tools available on UseGalaxy.org.au": 8, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 8, + "Tools available on UseGalaxy.no": 8, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 63, + "Total tool usage (usegalaxy.eu)": 2022 + }, + { + "Galaxy wrapper id": "king", + "Galaxy tool ids": [ + "king" + ], + "Description": "Kinship-based INference for Gwas", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://people.virginia.edu/~wc9c/KING/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "king", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/king/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/king", + "Galaxy wrapper version": "2.2.7", + "Conda id": "king", + "Conda version": "2.2.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 5 + }, + { + "Galaxy wrapper id": "kleborate", + "Galaxy tool ids": [ + "kleborate" + ], + "Description": "Screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC)", + "bio.tool id": "kleborate", + "bio.tool ids": [ + "kleborate" + ], + "biii": null, + "bio.tool name": "Kleborate", + "bio.tool description": "Genomic surveillance framework and global population structure for Klebsiella pneumoniae.Kleborate is a tool to screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) for:.A manuscript describing the Kleborate software in full is currently in preparation. In the meantime, if you use Kleborate, please cite the preprint: Lam, MMC. et al. Genomic surveillance framework and global population structure for Klebsiella pneumoniae. bioRxiv (2020).", + "EDAM operation": [ + "Multilocus sequence typing", + "Genome assembly", + "Virulence prediction" + ], + "EDAM topic": [ + "Public health and epidemiology", + "Metagenomics", + "Population genomics", + "Sequence assembly", + "Whole genome sequencing" + ], + "Status": "To update", + "Source": "https://github.com/katholt/Kleborate/wiki", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "kleborate", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/katholt/Kleborate", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/kleborate", + "Galaxy wrapper version": "2.3.2", + "Conda id": "kleborate", + "Conda version": "3.0.6", + "EDAM operation (no superclasses)": [ + "Multilocus sequence typing", + "Genome assembly", + "Virulence prediction" + ], + "EDAM topic (no superclasses)": [ + "Public health and epidemiology", + "Metagenomics", + "Population genomics", + "Sequence assembly", + "Whole genome sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 38, + "Total tool usage (usegalaxy.eu)": 319 + }, + { + "Galaxy wrapper id": "kma", + "Galaxy tool ids": [ + "kma_map" + ], + "Description": "Map with KMA", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/genomicepidemiology/kma", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "kma", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/kma", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/kma", + "Galaxy wrapper version": "1.4.14", + "Conda id": "kma", + "Conda version": "1.4.15", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "kofamscan", + "Galaxy tool ids": [ + "kofamscan" + ], + "Description": "Gene function annotation tool based on KEGG Orthology and hidden Markov model", + "bio.tool id": "kofamscan", + "bio.tool ids": [ + "kofamscan" + ], + "biii": null, + "bio.tool name": "kofamscan", + "bio.tool description": "KofamScan is a gene function annotation tool based on KEGG Orthology and hidden Markov model. You need KOfam database to use this tool.", + "EDAM operation": [ + "Sequence analysis", + "Gene functional annotation" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/takaram/kofam_scan", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "kofamscan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/kofamscan", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/kofamscan", + "Galaxy wrapper version": "1.3.0", + "Conda id": "kofamscan", + "Conda version": "1.3.0", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Gene functional annotation" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 33, + "Total tool usage (usegalaxy.eu)": 594 + }, + { + "Galaxy wrapper id": "kraken_biom", + "Galaxy tool ids": [ + "kraken_biom" + ], + "Description": "Create BIOM-format tables (http://biom-format.org) from Kraken output (http://ccb.jhu.edu/software/kraken/)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/smdabdoub/kraken-biom", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "kraken_biom", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/smdabdoub/kraken-biom", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_biom", + "Galaxy wrapper version": "1.2.0", + "Conda id": "kraken-biom", + "Conda version": "1.2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 182, + "Total tool usage (usegalaxy.eu)": 1444 + }, + { + "Galaxy wrapper id": "kraken_taxonomy_report", + "Galaxy tool ids": [ + "kraken_taxonomy_report" + ], + "Description": "Kraken taxonomy report", + "bio.tool id": "Kraken-Taxonomy-Report", + "bio.tool ids": [ + "Kraken-Taxonomy-Report" + ], + "biii": null, + "bio.tool name": "Kraken-Taxonomy-Report", + "bio.tool description": "view report of classification for multiple samples", + "EDAM operation": [ + "Visualisation", + "Classification" + ], + "EDAM topic": [ + "Metagenomics", + "Taxonomy" + ], + "Status": "To update", + "Source": "https://github.com/blankenberg/Kraken-Taxonomy-Report", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "kraken_taxonomy_report", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/kraken_taxonomy_report", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_taxonomy_report", + "Galaxy wrapper version": "0.0.3", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [ + "Visualisation", + "Classification" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Taxonomy" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 354, + "Total tool usage (usegalaxy.eu)": 2527 + }, + { + "Galaxy wrapper id": "krakentools", + "Galaxy tool ids": [ + "krakentools_alpha_diversity", + "krakentools_beta_diversity", + "krakentools_combine_kreports", + "krakentools_extract_kraken_reads", + "krakentools_kreport2krona", + "krakentools_kreport2mpa" + ], + "Description": "KrakenTools is a suite of scripts to be used alongside the Kraken", + "bio.tool id": "krakentools", + "bio.tool ids": [ + "krakentools" + ], + "biii": null, + "bio.tool name": "KrakenTools", + "bio.tool description": "KrakenTools provides individual scripts to analyze Kraken/Kraken2/Bracken/KrakenUniq output files", + "EDAM operation": [ + "Visualisation", + "Aggregation" + ], + "EDAM topic": [ + "Taxonomy", + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/jenniferlu717/KrakenTools", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "krakentools", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/krakentools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/krakentools", + "Galaxy wrapper version": "1.2", + "Conda id": "krakentools", + "Conda version": "1.2", + "EDAM operation (no superclasses)": [ + "Visualisation", + "Aggregation" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 6, + "Available on UseGalaxy.org.au": 6, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 6, + "Tools available on UseGalaxy.org (Main)": 6, + "Tools available on UseGalaxy.org.au": 6, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 6, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 4, + "Tools available on GalaxyTrakr": 6, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 703, + "Total tool usage (usegalaxy.eu)": 16525 + }, + { + "Galaxy wrapper id": "krocus", + "Galaxy tool ids": [ + "krocus" + ], + "Description": "Predict MLST directly from uncorrected long reads", + "bio.tool id": "krocus", + "bio.tool ids": [ + "krocus" + ], + "biii": null, + "bio.tool name": "krocus", + "bio.tool description": "Predict MLST directly from uncorrected long reads", + "EDAM operation": [ + "Multilocus sequence typing", + "k-mer counting" + ], + "EDAM topic": [ + "Public health and epidemiology" + ], + "Status": "To update", + "Source": "https://github.com/quadram-institute-bioscience/krocus", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "krocus", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/krocus", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/krocus", + "Galaxy wrapper version": "1.0.1", + "Conda id": "krocus", + "Conda version": "1.0.3", + "EDAM operation (no superclasses)": [ + "Multilocus sequence typing", + "k-mer counting" + ], + "EDAM topic (no superclasses)": [ + "Public health and epidemiology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "last", + "Galaxy tool ids": [ + "last_al", + "last_db", + "last_split", + "last_train", + "last_maf_convert" + ], + "Description": "LAST finds similar regions between sequences.", + "bio.tool id": "last", + "bio.tool ids": [ + "last" + ], + "biii": null, + "bio.tool name": "LAST", + "bio.tool description": "Short read alignment program incorporating quality scores", + "EDAM operation": [ + "Sequence alignment" + ], + "EDAM topic": [ + "Genomics", + "Comparative genomics" + ], + "Status": "To update", + "Source": "http://last.cbrc.jp/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "last", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/last", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/last", + "Galaxy wrapper version": "1205", + "Conda id": "last", + "Conda version": "1574", + "EDAM operation (no superclasses)": [ + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Comparative genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 41, + "Total tool usage (usegalaxy.eu)": 227 + }, + { + "Galaxy wrapper id": "lastz", + "Galaxy tool ids": [ + "lastz_wrapper_2", + "lastz_d_wrapper" + ], + "Description": "Galaxy wrappers for the Lastz and Lastz_d", + "bio.tool id": "lastz", + "bio.tool ids": [ + "lastz" + ], + "biii": null, + "bio.tool name": "LASTZ", + "bio.tool description": "A tool for (1) aligning two DNA sequences, and (2) inferring appropriate scoring parameters automatically.", + "EDAM operation": [ + "Sequence alignment", + "Read mapping" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/lastz/lastz", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "lastz", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/lastz", + "Galaxy wrapper version": "1.04.22", + "Conda id": "lastz", + "Conda version": "1.04.22", + "EDAM operation (no superclasses)": [ + "Sequence alignment", + "Read mapping" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 188, + "Total tool usage (usegalaxy.eu)": 83331 + }, + { + "Galaxy wrapper id": "lcrgenie", + "Galaxy tool ids": [ + "lcrgenie" + ], + "Description": "Ligase Chain Reaction Genie", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/neilswainston/LCRGenie", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "lcrgenie", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/lcrgenie", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/lcrgenie", + "Galaxy wrapper version": "1.0.2", + "Conda id": "lcr_genie", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "legsta", + "Galaxy tool ids": [ + "legsta" + ], + "Description": "Performs in silico Legionella pneumophila sequence based typing.", + "bio.tool id": "legsta", + "bio.tool ids": [ + "legsta" + ], + "biii": null, + "bio.tool name": "legsta", + "bio.tool description": "Performs in silico Legionella pneumophila sequence based typing", + "EDAM operation": [ + "Sequence analysis" + ], + "EDAM topic": [ + "Public health and epidemiology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/tseemann/legsta", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "legsta", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/tseemann/legsta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/legsta", + "Galaxy wrapper version": "0.5.1", + "Conda id": "legsta", + "Conda version": "0.5.1", + "EDAM operation (no superclasses)": [ + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Public health and epidemiology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 55 + }, + { + "Galaxy wrapper id": "length_and_gc_content", + "Galaxy tool ids": [ + "length_and_gc_content" + ], + "Description": "Gets gene length and gc content from a fasta and a GTF file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content", + "ToolShed categories": [ + "Fasta Manipulation", + "Statistics", + "RNA", + "Micro-array Analysis" + ], + "ToolShed id": "length_and_gc_content", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/length_and_gc_content", + "Galaxy wrapper version": "0.1.2", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 322, + "Total tool usage (usegalaxy.eu)": 4090 + }, + { + "Galaxy wrapper id": "limma_voom", + "Galaxy tool ids": [ + "limma_voom" + ], + "Description": "Perform RNA-Seq differential expression analysis using limma voom pipeline", + "bio.tool id": "limma", + "bio.tool ids": [ + "limma" + ], + "biii": null, + "bio.tool name": "limma", + "bio.tool description": "Data analysis, linear models and differential expression for microarray data.", + "EDAM operation": [ + "RNA-Seq analysis" + ], + "EDAM topic": [ + "Molecular biology", + "Genetics" + ], + "Status": "Up-to-date", + "Source": "http://bioconductor.org/packages/release/bioc/html/limma.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "limma_voom", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom", + "Galaxy wrapper version": "3.58.1", + "Conda id": "bioconductor-limma", + "Conda version": "3.58.1", + "EDAM operation (no superclasses)": [ + "RNA-Seq analysis" + ], + "EDAM topic (no superclasses)": [ + "Molecular biology", + "Genetics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1012, + "Total tool usage (usegalaxy.eu)": 20344 + }, + { + "Galaxy wrapper id": "lineagespot", + "Galaxy tool ids": [ + "lineagespot" + ], + "Description": "Identification of SARS-CoV-2 related metagenomic mutations based on a single (or a list of) variant(s) file(s)", + "bio.tool id": "lineagespot", + "bio.tool ids": [ + "lineagespot" + ], + "biii": null, + "bio.tool name": "lineagespot", + "bio.tool description": "Lineagespot is a framework written in R, and aims to identify and assign different SARS-CoV-2 lineages based on a single variant file (i.e., variant calling format).", + "EDAM operation": [ + "Variant calling" + ], + "EDAM topic": [ + "Metagenomics", + "Gene transcripts", + "Evolutionary biology", + "Sequencing", + "Genetic variation" + ], + "Status": "To update", + "Source": "https://www.bioconductor.org/packages/release/bioc/html/lineagespot.html", + "ToolShed categories": [ + "Metagenomics", + "Sequence Analysis" + ], + "ToolShed id": "lineagespot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/lineagespot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/lineagespot", + "Galaxy wrapper version": "1.6.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Variant calling" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Gene transcripts", + "Evolutionary biology", + "Sequencing", + "Genetic variation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 37 + }, + { + "Galaxy wrapper id": "links", + "Galaxy tool ids": [ + "links" + ], + "Description": "Scaffold genome assemblies with long reads.", + "bio.tool id": "links", + "bio.tool ids": [ + "links" + ], + "biii": null, + "bio.tool name": "LINKS", + "bio.tool description": "LINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS.", + "EDAM operation": [ + "Scaffolding", + "Genome assembly", + "Read mapping", + "Read pre-processing", + "Sequence trimming" + ], + "EDAM topic": [ + "Sequence assembly", + "Mapping", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/bcgsc/LINKS", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "links", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/links", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/links", + "Galaxy wrapper version": "2.0.1", + "Conda id": "links", + "Conda version": "2.0.1", + "EDAM operation (no superclasses)": [ + "Scaffolding", + "Genome assembly", + "Read mapping", + "Read pre-processing", + "Sequence trimming" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Mapping", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 77, + "Total tool usage (usegalaxy.eu)": 405 + }, + { + "Galaxy wrapper id": "lofreq", + "Galaxy tool ids": [ + "lofreq_alnqual", + "lofreq_call", + "lofreq_filter", + "lofreq_indelqual", + "lofreq_viterbi" + ], + "Description": "LoFreq is a fast and sensitive variant-caller for inferring SNVs and indelsfrom next-generation sequencing data. It makes full use of base-call qualitiesand other sources of errors inherent in sequencing (e.g. mapping or base/indelalignment uncertainty), which are usually ignored by other methods or onlyused for filtering.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://csb5.github.io/lofreq/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/lofreq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/lofreq", + "Galaxy wrapper version": "2.1.5", + "Conda id": "lofreq", + "Conda version": "2.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 4, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 4, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1791, + "Total tool usage (usegalaxy.eu)": 4150903 + }, + { + "Galaxy wrapper id": "lorikeet", + "Galaxy tool ids": [ + "lorikeet_spoligotype" + ], + "Description": "Tools for M. tuberculosis DNA fingerprinting (spoligotyping)", + "bio.tool id": "lorikeet", + "bio.tool ids": [ + "lorikeet" + ], + "biii": null, + "bio.tool name": "lorikeet", + "bio.tool description": "Tools for M. tuberculosis DNA fingerprinting (spoligotyping)", + "EDAM operation": [ + "Sequence analysis", + "Genotyping" + ], + "EDAM topic": [ + "Genotype and phenotype" + ], + "Status": "Up-to-date", + "Source": "https://github.com/AbeelLab/lorikeet", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "lorikeet_spoligotype", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/AbeelLab/lorikeet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/lorikeet", + "Galaxy wrapper version": "20", + "Conda id": "lorikeet", + "Conda version": "20", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Genotyping" + ], + "EDAM topic (no superclasses)": [ + "Genotype and phenotype" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 647 + }, + { + "Galaxy wrapper id": "lumpy_sv", + "Galaxy tool ids": [ + "lumpy_prep", + "lumpy_sv" + ], + "Description": "LUMPY - a general probabilistic framework for structural variant discovery", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://layerlab.org/software/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "lumpy_sv", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/arq5x/lumpy-sv", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/lumpy_sv", + "Galaxy wrapper version": "0.3.1", + "Conda id": "lumpy-sv", + "Conda version": "0.3.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 105, + "Total tool usage (usegalaxy.eu)": 1164 + }, + { + "Galaxy wrapper id": "m6anet", + "Galaxy tool ids": [ + "m6anet" + ], + "Description": "m6anet to detect m6A RNA modifications from nanopore data", + "bio.tool id": "m6Anet", + "bio.tool ids": [ + "m6Anet" + ], + "biii": null, + "bio.tool name": "m6Anet", + "bio.tool description": "Detection of m6A from direct RNA sequencing using a Multiple Instance Learning framework.", + "EDAM operation": [ + "Quantification", + "Imputation", + "Gene expression profiling" + ], + "EDAM topic": [ + "RNA-Seq", + "Transcriptomics", + "RNA", + "Machine learning" + ], + "Status": "Up-to-date", + "Source": "https://m6anet.readthedocs.io/en/latest", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "m6anet", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/m6anet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/m6anet", + "Galaxy wrapper version": "2.1.0", + "Conda id": "m6anet", + "Conda version": "2.1.0", + "EDAM operation (no superclasses)": [ + "Quantification", + "Imputation", + "Gene expression profiling" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq", + "Transcriptomics", + "RNA", + "Machine learning" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 3 + }, + { + "Galaxy wrapper id": "maaslin2", + "Galaxy tool ids": [ + "maaslin2" + ], + "Description": "MaAsLin2 is comprehensive R package for efficiently determining multivariable association between microbial meta'omic features and clinical metadata.", + "bio.tool id": "maaslin2", + "bio.tool ids": [ + "maaslin2" + ], + "biii": null, + "bio.tool name": "MaAsLin2", + "bio.tool description": "MaAsLin2 is comprehensive R package for efficiently determining multivariable association between phenotypes, environments, exposures, covariates and microbial meta’omic features. MaAsLin2 relies on general linear models to accommodate most modern epidemiological study designs, including cross-sectional and longitudinal, and offers a variety of data exploration, normalization, and transformation methods.", + "EDAM operation": [ + "Filtering", + "Statistical calculation", + "Standardisation and normalisation", + "Visualisation" + ], + "EDAM topic": [ + "Metagenomics", + "Statistics and probability" + ], + "Status": "To update", + "Source": "http://huttenhower.sph.harvard.edu/maaslin", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "maaslin2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/biobakery/Maaslin2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/maaslin2", + "Galaxy wrapper version": "1.16.0", + "Conda id": "bioconductor-maaslin2", + "Conda version": "1.18.0", + "EDAM operation (no superclasses)": [ + "Filtering", + "Standardisation and normalisation", + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 29, + "Total tool usage (usegalaxy.eu)": 188 + }, + { + "Galaxy wrapper id": "macs2", + "Galaxy tool ids": [ + "macs2_bdgbroadcall", + "macs2_bdgcmp", + "macs2_bdgdiff", + "macs2_bdgpeakcall", + "macs2_callpeak", + "macs2_filterdup", + "macs2_predictd", + "macs2_randsample", + "macs2_refinepeak" + ], + "Description": "MACS - Model-based Analysis of ChIP-Seq", + "bio.tool id": "macs", + "bio.tool ids": [ + "macs" + ], + "biii": null, + "bio.tool name": "MACS", + "bio.tool description": "Model-based Analysis of ChIP-seq data.", + "EDAM operation": [ + "Peak calling", + "Enrichment analysis", + "Gene regulatory network analysis" + ], + "EDAM topic": [ + "ChIP-seq", + "Molecular interactions, pathways and networks", + "Transcription factors and regulatory sites" + ], + "Status": "Up-to-date", + "Source": "https://github.com/taoliu/MACS", + "ToolShed categories": [ + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": "macs2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/macs2", + "Galaxy wrapper version": "2.2.9.1", + "Conda id": "macs2", + "Conda version": "2.2.9.1", + "EDAM operation (no superclasses)": [ + "Peak calling", + "Enrichment analysis", + "Gene regulatory network analysis" + ], + "EDAM topic (no superclasses)": [ + "ChIP-seq", + "Molecular interactions, pathways and networks", + "Transcription factors and regulatory sites" + ], + "Available on UseGalaxy.org (Main)": 9, + "Available on UseGalaxy.org.au": 9, + "Available on UseGalaxy.eu": 9, + "Available on UseGalaxy.fr": 9, + "Tools available on UseGalaxy.org (Main)": 9, + "Tools available on UseGalaxy.org.au": 9, + "Tools available on UseGalaxy.eu": 9, + "Tools available on UseGalaxy.fr": 9, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 9, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 9, + "Tools available on Galaxy@Pasteur": 9, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 9, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 9, + "Tools available on UseGalaxy.no": 9, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1969, + "Total tool usage (usegalaxy.eu)": 84521 + }, + { + "Galaxy wrapper id": "maf_stats", + "Galaxy tool ids": [ + "maf_stats1" + ], + "Description": "MAF Coverage statistics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/", + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "maf_stats", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/maf_stats", + "Galaxy wrapper version": "1.0.2+galaxy0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 1, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 1, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 1, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 1, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 21 + }, + { + "Galaxy wrapper id": "mageck", + "Galaxy tool ids": [ + "mageck_count", + "mageck_gsea", + "mageck_mle", + "mageck_pathway", + "mageck_test" + ], + "Description": "Model-based Analysis of Genome-wide CRISPR-Cas9 Knockout (MAGeCK) is a computational tool to identifyimportant genes from the recent genome-scale CRISPR-Cas9 knockout screens technology.", + "bio.tool id": "mageck", + "bio.tool ids": [ + "mageck" + ], + "biii": null, + "bio.tool name": "MAGeCK", + "bio.tool description": "Computational tool to identify important genes from the recent genome-scale CRISPR-Cas9 knockout screens technology.", + "EDAM operation": [ + "Genetic variation analysis" + ], + "EDAM topic": [ + "Genetics", + "Genetic variation", + "Genomics" + ], + "Status": "To update", + "Source": "https://sourceforge.net/projects/mageck/", + "ToolShed categories": [ + "Genome editing" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mageck", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mageck", + "Galaxy wrapper version": "0.5.9.2", + "Conda id": "mageck", + "Conda version": "0.5.9.5", + "EDAM operation (no superclasses)": [ + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Genetics", + "Genetic variation", + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 5, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 587, + "Total tool usage (usegalaxy.eu)": 10503 + }, + { + "Galaxy wrapper id": "maker", + "Galaxy tool ids": [ + "maker", + "maker_map_ids" + ], + "Description": "MAKER is a portable and easily configurable genome annotation pipeline.Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases.", + "bio.tool id": "maker", + "bio.tool ids": [ + "maker" + ], + "biii": null, + "bio.tool name": "MAKER", + "bio.tool description": "Portable and easily configurable genome annotation pipeline. It’s purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases.", + "EDAM operation": [ + "Genome annotation" + ], + "EDAM topic": [ + "Genomics", + "DNA", + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://www.yandell-lab.org/software/maker.html", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/maker", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/maker", + "Galaxy wrapper version": "2.31.11", + "Conda id": "maker", + "Conda version": "3.01.03", + "EDAM operation (no superclasses)": [ + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "DNA", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 554, + "Total tool usage (usegalaxy.eu)": 5591 + }, + { + "Galaxy wrapper id": "malt", + "Galaxy tool ids": [ + "malt_run" + ], + "Description": "Aligns an input sequence (DNA or proteins) against an index representing a collection of reference DNA or protein sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/husonlab/malt", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "malt_run", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/malt", + "Galaxy wrapper version": "0.5.3", + "Conda id": "malt", + "Conda version": "0.62", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 22 + }, + { + "Galaxy wrapper id": "map_param_value", + "Galaxy tool ids": [ + "map_param_value" + ], + "Description": "Map a parameter value to another value", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "map_param_value", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/map_param_value", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/map_param_value", + "Galaxy wrapper version": "0.2.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 1528 + }, + { + "Galaxy wrapper id": "mapseq", + "Galaxy tool ids": [ + "mapseq" + ], + "Description": "fast and accurate sequence read classification tool designed to assign taxonomy and OTU classifications to ribosomal RNA sequences.", + "bio.tool id": "mapseq", + "bio.tool ids": [ + "mapseq" + ], + "biii": null, + "bio.tool name": "MAPseq", + "bio.tool description": "Highly efficient k-mer search with confidence estimates, for rRNA sequence analysis .", + "EDAM operation": [ + "k-mer counting" + ], + "EDAM topic": [ + "Functional, regulatory and non-coding RNA", + "Sequence analysis", + "Sequence sites, features and motifs" + ], + "Status": "To update", + "Source": "https://github.com/jfmrod/MAPseq", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "mapseq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mapseq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mapseq", + "Galaxy wrapper version": "2.1.1", + "Conda id": "perl", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "k-mer counting" + ], + "EDAM topic (no superclasses)": [ + "Functional, regulatory and non-coding RNA", + "Sequence analysis", + "Sequence sites, features and motifs" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 167 + }, + { + "Galaxy wrapper id": "mash", + "Galaxy tool ids": [ + "mash_screen", + "mash_sketch" + ], + "Description": "Fast genome and metagenome distance estimation using MinHash", + "bio.tool id": "mash", + "bio.tool ids": [ + "mash" + ], + "biii": null, + "bio.tool name": "Mash", + "bio.tool description": "Fast genome and metagenome distance estimation using MinHash.", + "EDAM operation": [ + "Sequence distance matrix generation" + ], + "EDAM topic": [ + "Genomics", + "Metagenomics", + "Statistics and probability", + "Sequence analysis", + "DNA mutation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/marbl/Mash", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mash", + "Galaxy wrapper version": "2.3", + "Conda id": "mash", + "Conda version": "2.3", + "EDAM operation (no superclasses)": [ + "Sequence distance matrix generation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Statistics and probability", + "Sequence analysis", + "DNA mutation" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 27, + "Total tool usage (usegalaxy.eu)": 9763 + }, + { + "Galaxy wrapper id": "mashmap", + "Galaxy tool ids": [ + "mashmap" + ], + "Description": "Fast local alignment boundaries", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmap", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mashmap", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmap", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mashmap", + "Galaxy wrapper version": "3.1.3", + "Conda id": "mashmap", + "Conda version": "3.1.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "masigpro", + "Galaxy tool ids": [ + "masigpro" + ], + "Description": "Identify significantly differential expression profiles in time-course microarray experiments", + "bio.tool id": "masigpro", + "bio.tool ids": [ + "masigpro" + ], + "biii": null, + "bio.tool name": "maSigPro", + "bio.tool description": "Regression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments.", + "EDAM operation": [ + "Regression analysis" + ], + "EDAM topic": [ + "Gene expression", + "Molecular genetics", + "Microarray experiment", + "RNA-Seq" + ], + "Status": "To update", + "Source": "https://www.bioconductor.org/packages/release/bioc/html/maSigPro.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "masigpro", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/masigpro", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro", + "Galaxy wrapper version": "1.49.3", + "Conda id": "coreutils", + "Conda version": "8.25", + "EDAM operation (no superclasses)": [ + "Regression analysis" + ], + "EDAM topic (no superclasses)": [ + "Gene expression", + "Microarray experiment", + "RNA-Seq" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 576 + }, + { + "Galaxy wrapper id": "maxbin2", + "Galaxy tool ids": [ + "maxbin2" + ], + "Description": "clusters metagenomic contigs into bins", + "bio.tool id": "maxbin", + "bio.tool ids": [ + "maxbin" + ], + "biii": null, + "bio.tool name": "MaxBin", + "bio.tool description": "Software for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm.", + "EDAM operation": [ + "Sequence assembly" + ], + "EDAM topic": [ + "Metagenomics", + "Sequence assembly", + "Microbiology" + ], + "Status": "To update", + "Source": "https://downloads.jbei.org/data/microbial_communities/MaxBin/MaxBin.html", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "maxbin2", + "Galaxy wrapper owner": "mbernt", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/maxbin2", + "Galaxy wrapper version": null, + "Conda id": "maxbin2", + "Conda version": "2.2.7", + "EDAM operation (no superclasses)": [ + "Sequence assembly" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequence assembly", + "Microbiology" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 118, + "Total tool usage (usegalaxy.eu)": 2059 + }, + { + "Galaxy wrapper id": "mcl", + "Galaxy tool ids": [ + "mcl" + ], + "Description": "The Markov Cluster Algorithm, a cluster algorithm for graphs", + "bio.tool id": "mcl", + "bio.tool ids": [ + "mcl" + ], + "biii": null, + "bio.tool name": "MCL", + "bio.tool description": "MCL is a clustering algorithm widely used in bioinformatics and gaining traction in other fields.", + "EDAM operation": [ + "Clustering", + "Network analysis", + "Gene regulatory network analysis" + ], + "EDAM topic": [ + "Molecular interactions, pathways and networks" + ], + "Status": "Up-to-date", + "Source": "https://micans.org/mcl/man/mcl.html", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mcl", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/mcl", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mcl", + "Galaxy wrapper version": "22.282", + "Conda id": "mcl", + "Conda version": "22.282", + "EDAM operation (no superclasses)": [ + "Clustering", + "Gene regulatory network analysis" + ], + "EDAM topic (no superclasses)": [ + "Molecular interactions, pathways and networks" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 29 + }, + { + "Galaxy wrapper id": "medaka", + "Galaxy tool ids": [ + "medaka_consensus", + "medaka_consensus_pipeline", + "medaka_snp", + "medaka_variant" + ], + "Description": "Sequence correction provided by ONT Research", + "bio.tool id": "medaka", + "bio.tool ids": [ + "medaka" + ], + "biii": null, + "bio.tool name": "Medaka", + "bio.tool description": "medaka is a tool to create consensus sequences and variant calls from nanopore sequencing data. This task is performed using neural networks applied a pileup of individual sequencing reads against a draft assembly.", + "EDAM operation": [ + "Base-calling", + "Variant calling", + "Sequence assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "Machine learning" + ], + "Status": "To update", + "Source": "https://github.com/nanoporetech/medaka", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/medaka", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/medaka", + "Galaxy wrapper version": "1.7.2", + "Conda id": "medaka", + "Conda version": "1.11.3", + "EDAM operation (no superclasses)": [ + "Base-calling", + "Variant calling", + "Sequence assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Machine learning" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 768, + "Total tool usage (usegalaxy.eu)": 99863 + }, + { + "Galaxy wrapper id": "megahit", + "Galaxy tool ids": [ + "megahit" + ], + "Description": "An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph.", + "bio.tool id": "megahit", + "bio.tool ids": [ + "megahit" + ], + "biii": null, + "bio.tool name": "MEGAHIT", + "bio.tool description": "Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.", + "EDAM operation": [ + "Genome assembly" + ], + "EDAM topic": [ + "Metagenomics", + "Sequencing", + "Ecology", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/voutcn/megahit", + "ToolShed categories": [ + "Sequence Analysis", + "Assembly", + "Metagenomics" + ], + "ToolShed id": "megahit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit", + "Galaxy wrapper version": "1.2.9", + "Conda id": "megahit", + "Conda version": "1.2.9", + "EDAM operation (no superclasses)": [ + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequencing", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 548, + "Total tool usage (usegalaxy.eu)": 9530 + }, + { + "Galaxy wrapper id": "megahit_contig2fastg", + "Galaxy tool ids": [ + "megahit_contig2fastg" + ], + "Description": "A subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg)", + "bio.tool id": "megahit", + "bio.tool ids": [ + "megahit" + ], + "biii": null, + "bio.tool name": "MEGAHIT", + "bio.tool description": "Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.", + "EDAM operation": [ + "Genome assembly" + ], + "EDAM topic": [ + "Metagenomics", + "Sequencing", + "Ecology", + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://github.com/voutcn/megahit/blob/master/tools/toolkit.cpp", + "ToolShed categories": [ + "Sequence Analysis", + "Assembly", + "Metagenomics" + ], + "ToolShed id": "megahit_contig2fastg", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg", + "Galaxy wrapper version": "1.1.3", + "Conda id": "megahit", + "Conda version": "1.2.9", + "EDAM operation (no superclasses)": [ + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequencing", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 54, + "Total tool usage (usegalaxy.eu)": 475 + }, + { + "Galaxy wrapper id": "megan", + "Galaxy tool ids": [ + "megan_blast2lca", + "megan_blast2rma", + "megan_daa2info", + "megan_daa2rma", + "megan_daa_meganizer", + "megan_read_extractor", + "megan_sam2rma" + ], + "Description": "MEGAN Community Edition - Interactive exploration and analysis of large-scale microbiome sequencing data. MEGAN is a tool for studying the taxonomic content of a set of DNA reads, typically collected in a metagenomics project.In a preprocessing step, a sequence alignment of all reads against a suitable database of reference DNA or proteinsequences must be performed to produce an input file for the program. MEGAN is suitable for DNA reads (metagenomedata), RNA reads (metatranscriptome data), peptide sequences (metaproteomics data) and, using a suitable synonymsfile that maps SILVA ids to taxon ids, for 16S rRNA data (amplicon sequencing).", + "bio.tool id": "megan", + "bio.tool ids": [ + "megan" + ], + "biii": null, + "bio.tool name": "MEGAN", + "bio.tool description": "Metagenome Analysis Software - MEGAN (MEtaGenome ANalyzer) is a new computer program that allows laptop analysis of large metagenomic datasets. In a preprocessing step, the set of DNA reads (or contigs) is compared against databases of known sequences using BLAST or another comparison tool. MEGAN can then be used to compute and interactively explore the taxonomical content of the dataset, employing the NCBI taxonomy to summarize and order the results.", + "EDAM operation": [ + "Sequence analysis", + "Taxonomic classification" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://github.com/husonlab/megan-ce", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "megan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/megan", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/megan", + "Galaxy wrapper version": "6.21.7", + "Conda id": "megan", + "Conda version": "6.25.9", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Taxonomic classification" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 261, + "Total tool usage (usegalaxy.eu)": 3610 + }, + { + "Galaxy wrapper id": "meme", + "Galaxy tool ids": [ + "meme_dreme", + "meme_fimo", + "meme_meme", + "meme_psp_gen" + ], + "Description": "The MEME Suite allows the biologist to discover novel motifs in collections of unaligned nucleotideor protein sequences, and to perform a wide variety of other motif-based analyses.", + "bio.tool id": "meme_meme", + "bio.tool ids": [ + "meme_meme", + "meme_fimo" + ], + "biii": null, + "bio.tool name": "meme_meme", + "bio.tool description": "An algorithm that discovers one or more motifs in a collection of DNA or protein sequences by using the technique of expectation maximization to fit a two-component finite mixture model to the set of sequences.", + "EDAM operation": [ + "Nucleic acid feature detection", + "Protein feature detection", + "Statistical calculation" + ], + "EDAM topic": [ + "Data mining", + "Sequence analysis", + "Genetic variation", + "Statistics and probability" + ], + "Status": "To update", + "Source": "http://meme-suite.org/", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "meme", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/meme", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/meme", + "Galaxy wrapper version": "5.5.6", + "Conda id": "meme", + "Conda version": "5.5.7", + "EDAM operation (no superclasses)": [ + "Nucleic acid feature detection", + "Protein feature detection", + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Data mining", + "Sequence analysis", + "Genetic variation", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 2, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 4, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 235, + "Total tool usage (usegalaxy.eu)": 22352 + }, + { + "Galaxy wrapper id": "meme_chip", + "Galaxy tool ids": [ + "meme_chip" + ], + "Description": "Performs motif discovery, motif enrichment analysis and clustering on large nucleotide datasets.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://meme-suite.org/", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "meme_chip", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/meme_chip", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/meme_chip", + "Galaxy wrapper version": "4.11.2", + "Conda id": "graphicsmagick", + "Conda version": "1.3.26", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 287, + "Total tool usage (usegalaxy.eu)": 6584 + }, + { + "Galaxy wrapper id": "meningotype", + "Galaxy tool ids": [ + "meningotype" + ], + "Description": "Assign sequence type to N. meningitidis genome assemblies", + "bio.tool id": "meningotype", + "bio.tool ids": [ + "meningotype" + ], + "biii": null, + "bio.tool name": "meningotype", + "bio.tool description": "In silico typing of Neisseria meningitidis contigs.", + "EDAM operation": [ + "Genotyping", + "Multilocus sequence typing" + ], + "EDAM topic": [ + "Microbiology", + "Genotype and phenotype" + ], + "Status": "Up-to-date", + "Source": "https://github.com/MDU-PHL/meningotype", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "meningotype", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/meningotype", + "Galaxy wrapper version": "0.8.5", + "Conda id": "meningotype", + "Conda version": "0.8.5", + "EDAM operation (no superclasses)": [ + "Multilocus sequence typing" + ], + "EDAM topic (no superclasses)": [ + "Microbiology", + "Genotype and phenotype" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "merlin", + "Galaxy tool ids": [ + "merlin" + ], + "Description": "Pedigree Analysis package", + "bio.tool id": "merlin", + "bio.tool ids": [ + "merlin" + ], + "biii": null, + "bio.tool name": "Merlin", + "bio.tool description": "Can be used for parametric and non-parametric linkage analysis, regression-based linkage analysis or association analysis for quantitative traits, ibd and kinship estimation, haplotyping, error detection and simulation", + "EDAM operation": [ + "Haplotype mapping", + "Genetic mapping" + ], + "EDAM topic": [ + "GWAS study", + "Mapping" + ], + "Status": "Up-to-date", + "Source": "http://csg.sph.umich.edu/abecasis/Merlin/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "merlin", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/merlin/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/merlin", + "Galaxy wrapper version": "1.1.2", + "Conda id": "merlin", + "Conda version": "1.1.2", + "EDAM operation (no superclasses)": [ + "Haplotype mapping" + ], + "EDAM topic (no superclasses)": [ + "GWAS study", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "merqury", + "Galaxy tool ids": [ + "merqury", + "merquryplot" + ], + "Description": "Merqury is a tool for evaluating genomes assemblies based of k-mer operations.", + "bio.tool id": "merqury", + "bio.tool ids": [ + "merqury" + ], + "biii": null, + "bio.tool name": "Merqury", + "bio.tool description": "Reference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose.", + "EDAM operation": [ + "Genome assembly", + "k-mer counting", + "Scaffolding", + "Phasing", + "De-novo assembly" + ], + "EDAM topic": [ + "Sequence assembly", + "Whole genome sequencing", + "Plant biology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/marbl/merqury", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "merqury", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury", + "Galaxy wrapper version": "1.3", + "Conda id": "merqury", + "Conda version": "1.3", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "k-mer counting", + "Scaffolding", + "Phasing", + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Whole genome sequencing", + "Plant biology" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 244, + "Total tool usage (usegalaxy.eu)": 2483 + }, + { + "Galaxy wrapper id": "meryl", + "Galaxy tool ids": [ + "meryl_arithmetic_kmers", + "meryl_count_kmers", + "meryl_filter_kmers", + "meryl_groups_kmers", + "meryl_histogram_kmers", + "meryl_print", + "meryl_trio_mode" + ], + "Description": "Meryl a k-mer counter.", + "bio.tool id": "meryl", + "bio.tool ids": [ + "meryl" + ], + "biii": null, + "bio.tool name": "Meryl", + "bio.tool description": "Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu.", + "EDAM operation": [ + "k-mer counting" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Genomics", + "Sequence analysis", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/marbl/meryl", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "meryl", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl", + "Galaxy wrapper version": "1.3", + "Conda id": "merqury", + "Conda version": "1.3", + "EDAM operation (no superclasses)": [ + "k-mer counting" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Genomics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "metabat2", + "Galaxy tool ids": [ + "metabat2_jgi_summarize_bam_contig_depths", + "metabat2" + ], + "Description": "MetaBAT2 (Metagenome Binning based on Abundance and Tetranucleotide frequency) is an automated metagenome binningsoftware that integrates empirical probabilistic distances of genome abundance and tetranucleotide frequency.", + "bio.tool id": "MetaBAT_2", + "bio.tool ids": [ + "MetaBAT_2" + ], + "biii": null, + "bio.tool name": "MetaBAT 2", + "bio.tool description": "an adaptive binning algorithm for robust and efficient genome reconstruction from metagenome assemblies | MetaBAT2 clusters metagenomic contigs into different \"bins\", each of which should correspond to a putative genome | MetaBAT2 uses nucleotide composition information and source strain abundance (measured by depth-of-coverage by aligning the reads to the contigs) to perform binning", + "EDAM operation": [ + "Read binning", + "Sequence assembly", + "Genome annotation" + ], + "EDAM topic": [ + "Metagenomics", + "Sequence assembly", + "Metagenomic sequencing" + ], + "Status": "To update", + "Source": "https://bitbucket.org/berkeleylab/metabat/src/master/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "metabat2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/metabat2/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabat2", + "Galaxy wrapper version": "2.15", + "Conda id": "metabat2", + "Conda version": "2.17", + "EDAM operation (no superclasses)": [ + "Read binning", + "Sequence assembly", + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequence assembly", + "Metagenomic sequencing" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 192, + "Total tool usage (usegalaxy.eu)": 4329 + }, + { + "Galaxy wrapper id": "metabuli", + "Galaxy tool ids": [ + "metabuli_classify" + ], + "Description": "Classifying metagenomes by jointly analysing both DNA and amino acid (AA) sequences", + "bio.tool id": "metabuli", + "bio.tool ids": [ + "metabuli" + ], + "biii": null, + "bio.tool name": "metabuli", + "bio.tool description": "Metabuli: specific and sensitive metagenomic classification via joint analysis of DNA and amino acid", + "EDAM operation": [ + "Taxonomic classification" + ], + "EDAM topic": [ + "Taxonomy" + ], + "Status": "Up-to-date", + "Source": "https://github.com/steineggerlab/Metabuli", + "ToolShed categories": [ + "Sequence Analysis", + "Metagenomics" + ], + "ToolShed id": "metabuli", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/metabuli", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabuli", + "Galaxy wrapper version": "1.0.5", + "Conda id": "metabuli", + "Conda version": "1.0.5", + "EDAM operation (no superclasses)": [ + "Taxonomic classification" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "metaeuk", + "Galaxy tool ids": [ + "metaeuk_easy_predict" + ], + "Description": "MetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand. ", + "bio.tool id": "MetaEuk", + "bio.tool ids": [ + "MetaEuk" + ], + "biii": null, + "bio.tool name": "MetaEuk", + "bio.tool description": "MetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomics", + "EDAM operation": [ + "Homology-based gene prediction" + ], + "EDAM topic": [ + "Metagenomics", + "Gene and protein families" + ], + "Status": "To update", + "Source": "https://github.com/soedinglab/metaeuk", + "ToolShed categories": [ + "Sequence Analysis", + "Genome annotation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeuk", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk", + "Galaxy wrapper version": "5.34c21f2", + "Conda id": "metaeuk", + "Conda version": "6.a5d39d9", + "EDAM operation (no superclasses)": [ + "Homology-based gene prediction" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Gene and protein families" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 184 + }, + { + "Galaxy wrapper id": "metagenomeseq", + "Galaxy tool ids": [ + "metagenomeseq_normalizaton" + ], + "Description": "metagenomeSeq Normalization", + "bio.tool id": "metagenomeseq", + "bio.tool ids": [ + "metagenomeseq" + ], + "biii": null, + "bio.tool name": "metagenomeSeq", + "bio.tool description": "Designed to determine features (be it Operational Taxanomic Unit (OTU), species, etc.) that are differentially abundant between two or more groups of multiple samples. It is designed to address the effects of both normalization and under-sampling of microbial communities on disease association detection and the testing of feature correlations.", + "EDAM operation": [ + "Sequence visualisation", + "Statistical calculation" + ], + "EDAM topic": [ + "Metagenomics", + "Sequencing" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/3.18/bioc/html/metagenomeSeq.html", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "metagenomeseq_normalization", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/metagenomeseq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/metagenomeseq", + "Galaxy wrapper version": "1.16.0-0.0.1", + "Conda id": "bioconductor-metagenomeseq", + "Conda version": "1.43.0", + "EDAM operation (no superclasses)": [ + "Sequence visualisation", + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 753 + }, + { + "Galaxy wrapper id": "metaphlan", + "Galaxy tool ids": [ + "customize_metaphlan_database", + "extract_metaphlan_database", + "merge_metaphlan_tables", + "metaphlan" + ], + "Description": "MetaPhlAn for Metagenomic Phylogenetic Analysis", + "bio.tool id": "metaphlan", + "bio.tool ids": [ + "metaphlan" + ], + "biii": null, + "bio.tool name": "MetaPhlAn", + "bio.tool description": "Computational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data.", + "EDAM operation": [ + "Nucleic acid sequence analysis", + "Phylogenetic tree analysis" + ], + "EDAM topic": [ + "Metagenomics", + "Phylogenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/biobakery/MetaPhlAn", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "metaphlan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaphlan", + "Galaxy wrapper version": "4.1.1", + "Conda id": "metaphlan", + "Conda version": "4.1.1", + "EDAM operation (no superclasses)": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Phylogenomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 4, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 499, + "Total tool usage (usegalaxy.eu)": 11069 + }, + { + "Galaxy wrapper id": "metawrapmg", + "Galaxy tool ids": [ + "metawrapmg_binning" + ], + "Description": "A flexible pipeline for genome-resolved metagenomic data analysis", + "bio.tool id": "metawrap", + "bio.tool ids": [ + "metawrap" + ], + "biii": null, + "bio.tool name": "MetaWRAP", + "bio.tool description": "MetaWRAP aims to be an easy-to-use metagenomic wrapper suite that accomplishes the core tasks of metagenomic analysis from start to finish: read quality control, assembly, visualization, taxonomic profiling, extracting draft genomes (binning), and functional annotation.", + "EDAM operation": [ + "Read binning", + "Sequence assembly", + "Genome annotation", + "Sequence trimming", + "Demultiplexing" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Metagenomic sequencing", + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/bxlab/metaWRAP", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "metawrapmg_binning", + "Galaxy wrapper owner": "galaxy-australia", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/metawrapmg", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/metawrapmg", + "Galaxy wrapper version": "1.3.0", + "Conda id": "metawrap-mg", + "Conda version": "1.3.0", + "EDAM operation (no superclasses)": [ + "Read binning", + "Sequence assembly", + "Genome annotation", + "Sequence trimming", + "Demultiplexing" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Metagenomic sequencing", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mg_toolkit", + "Galaxy tool ids": [ + "mg_toolkit_bulk_download", + "mg_toolkit_original_metadata" + ], + "Description": "Metagenomics toolkit enables scientists to download all of the sample metadata for a given study or sequence to a single csv file.", + "bio.tool id": "mg-toolkit", + "bio.tool ids": [ + "mg-toolkit" + ], + "biii": null, + "bio.tool name": "mg-toolkit", + "bio.tool description": "Metagenomics toolkit enables scientists to download all of the sample metadata for a given study or sequence to a single csv file.", + "EDAM operation": [ + "Data retrieval" + ], + "EDAM topic": [ + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/EBI-Metagenomics/emg-toolkit", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "mg_toolkit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mg_toolkit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mg_toolkit", + "Galaxy wrapper version": "0.10.4", + "Conda id": "mg-toolkit", + "Conda version": "0.10.4", + "EDAM operation (no superclasses)": [ + "Data retrieval" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "microsatbed", + "Galaxy tool ids": [ + "microsatbed" + ], + "Description": "Select microsatellites for a bed file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/lmdu/pytrf", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "microsatbed", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/microsatbed", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/microsatbed", + "Galaxy wrapper version": "1.3.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "migmap", + "Galaxy tool ids": [ + "migmap" + ], + "Description": "mapper for full-length T- and B-cell repertoire sequencing", + "bio.tool id": "MiGMAP", + "bio.tool ids": [ + "MiGMAP" + ], + "biii": null, + "bio.tool name": "MiGMAP", + "bio.tool description": "Mapper for full-length T- and B-cell repertoire sequencing.", + "EDAM operation": [ + "Sequence analysis", + "Read mapping" + ], + "EDAM topic": [ + "Immunoproteins, genes and antigens", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/mikessh/migmap", + "ToolShed categories": [ + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "migmap", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/migmap", + "Galaxy wrapper version": "1.0.3", + "Conda id": "migmap", + "Conda version": "1.0.3", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Read mapping" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 1226 + }, + { + "Galaxy wrapper id": "minia", + "Galaxy tool ids": [ + "minia" + ], + "Description": "Short-read assembler based on a de Bruijn graph", + "bio.tool id": "minia", + "bio.tool ids": [ + "minia" + ], + "biii": null, + "bio.tool name": "Minia", + "bio.tool description": "Short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day.", + "EDAM operation": [ + "Genome assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://gatb.inria.fr/software/minia/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "minia", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/minia", + "Galaxy wrapper version": "3.2.6", + "Conda id": "minia", + "Conda version": "3.2.6", + "EDAM operation (no superclasses)": [ + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 109, + "Total tool usage (usegalaxy.eu)": 2206 + }, + { + "Galaxy wrapper id": "miniasm", + "Galaxy tool ids": [ + "miniasm" + ], + "Description": "Miniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step)", + "bio.tool id": "miniasm", + "bio.tool ids": [ + "miniasm" + ], + "biii": null, + "bio.tool name": "miniasm", + "bio.tool description": "Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format.", + "EDAM operation": [ + "De-novo assembly" + ], + "EDAM topic": [ + "Genomics", + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://github.com/lh3/miniasm", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "miniasm", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm", + "Galaxy wrapper version": "0.3_r179", + "Conda id": "miniasm", + "Conda version": "0.3", + "EDAM operation (no superclasses)": [ + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 178, + "Total tool usage (usegalaxy.eu)": 11938 + }, + { + "Galaxy wrapper id": "minimap2", + "Galaxy tool ids": [ + "minimap2" + ], + "Description": "A fast pairwise aligner for genomic and spliced nucleotide sequences", + "bio.tool id": "minimap2", + "bio.tool ids": [ + "minimap2" + ], + "biii": null, + "bio.tool name": "Minimap2", + "bio.tool description": "Pairwise aligner for genomic and spliced nucleotide sequences", + "EDAM operation": [ + "Pairwise sequence alignment" + ], + "EDAM topic": [ + "Mapping" + ], + "Status": "Up-to-date", + "Source": "https://github.com/lh3/minimap2", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "minimap2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/minimap2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/minimap2", + "Galaxy wrapper version": "2.28", + "Conda id": "minimap2", + "Conda version": "2.28", + "EDAM operation (no superclasses)": [ + "Pairwise sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1588, + "Total tool usage (usegalaxy.eu)": 260442 + }, + { + "Galaxy wrapper id": "miniprot", + "Galaxy tool ids": [ + "miniprot", + "miniprot_index" + ], + "Description": "Align a protein sequence against a genome with affine gap penalty, splicing and frameshift.", + "bio.tool id": "miniprot", + "bio.tool ids": [ + "miniprot" + ], + "biii": null, + "bio.tool name": "miniprot", + "bio.tool description": "Miniprot aligns a protein sequence against a genome with affine gap penalty, splicing and frameshift. It is primarily intended for annotating protein-coding genes in a new species using known genes from other species.", + "EDAM operation": [ + "Sequence alignment", + "Protein sequence analysis" + ], + "EDAM topic": [ + "Sequence sites, features and motifs", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/lh3/miniprot", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniprot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniprot", + "Galaxy wrapper version": "0.13", + "Conda id": "miniprot", + "Conda version": "0.13", + "EDAM operation (no superclasses)": [ + "Sequence alignment", + "Protein sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence sites, features and motifs", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 30, + "Total tool usage (usegalaxy.eu)": 842 + }, + { + "Galaxy wrapper id": "mirmachine", + "Galaxy tool ids": [ + "mirmachine" + ], + "Description": "Tool to detect miRNA in genome sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/sinanugur/MirMachine", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mirmachine", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mirmachine", + "Galaxy wrapper version": "0.2.13", + "Conda id": "mirmachine", + "Conda version": "0.2.13", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mirnature", + "Galaxy tool ids": [ + "mirnature" + ], + "Description": "Computational detection of canonical microRNAs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/Bierinformatik/miRNAture", + "ToolShed categories": [ + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "mirnature", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/Bierinformatik/miRNAture", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mirnature", + "Galaxy wrapper version": "1.1", + "Conda id": "mirnature", + "Conda version": "1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 10 + }, + { + "Galaxy wrapper id": "mitobim", + "Galaxy tool ids": [ + "mitobim" + ], + "Description": "assemble mitochondrial genomes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/chrishah/MITObim", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "mitobim", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobim", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim", + "Galaxy wrapper version": "1.9.1", + "Conda id": "mitobim", + "Conda version": "1.9.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 66, + "Total tool usage (usegalaxy.eu)": 881 + }, + { + "Galaxy wrapper id": "mitos", + "Galaxy tool ids": [ + "mitos", + "mitos2" + ], + "Description": "de-novo annotation of metazoan mitochondrial genomes", + "bio.tool id": "mitos", + "bio.tool ids": [ + "mitos" + ], + "biii": null, + "bio.tool name": "MITOS", + "bio.tool description": "De novo metazoan mitochondrial genome annotation.", + "EDAM operation": [ + "Genome annotation" + ], + "EDAM topic": [ + "Zoology", + "Whole genome sequencing" + ], + "Status": "To update", + "Source": "http://mitos.bioinf.uni-leipzig.de/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mitos", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitos", + "Galaxy wrapper version": "1.1.7", + "Conda id": "mitos", + "Conda version": "2.1.9", + "EDAM operation (no superclasses)": [ + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Zoology", + "Whole genome sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 236, + "Total tool usage (usegalaxy.eu)": 100920 + }, + { + "Galaxy wrapper id": "mlst", + "Galaxy tool ids": [ + "mlst", + "mlst_list" + ], + "Description": "Scan contig files against PubMLST typing schemes", + "bio.tool id": "mlst", + "bio.tool ids": [ + "mlst" + ], + "biii": null, + "bio.tool name": "MLST", + "bio.tool description": "Multi Locus Sequence Typing from an assembled genome or from a set of reads.", + "EDAM operation": [ + "Multilocus sequence typing" + ], + "EDAM topic": [ + "Immunoproteins and antigens" + ], + "Status": "To update", + "Source": "https://github.com/tseemann/mlst", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mlst", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mlst", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mlst", + "Galaxy wrapper version": "2.22.0", + "Conda id": "mlst", + "Conda version": "2.23.0", + "EDAM operation (no superclasses)": [ + "Multilocus sequence typing" + ], + "EDAM topic (no superclasses)": [ + "Immunoproteins and antigens" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 635, + "Total tool usage (usegalaxy.eu)": 9304 + }, + { + "Galaxy wrapper id": "moabs", + "Galaxy tool ids": [ + "moabs" + ], + "Description": "MOABS for differential methylation analysis on Bisulfite sequencing data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/sunnyisgalaxy/moabs", + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "moabs", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/sunnyisgalaxy/moabs", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/moabs", + "Galaxy wrapper version": "1.3.4.6", + "Conda id": "moabs", + "Conda version": "1.3.9.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 19, + "Total tool usage (usegalaxy.eu)": 317 + }, + { + "Galaxy wrapper id": "mosdepth", + "Galaxy tool ids": [ + "mosdepth" + ], + "Description": "fast and flexible BAM/CRAM depth calculation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/brentp/mosdepth", + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "mosdepth", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mosdepth", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mosdepth", + "Galaxy wrapper version": "0.3.8", + "Conda id": "mosdepth", + "Conda version": "0.3.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 262 + }, + { + "Galaxy wrapper id": "mothur", + "Galaxy tool ids": [ + "mothur_align_check", + "mothur_align_seqs", + "mothur_amova", + "mothur_anosim", + "mothur_bin_seqs", + "mothur_biom_info", + "mothur_chimera_bellerophon", + "mothur_chimera_ccode", + "mothur_chimera_check", + "mothur_chimera_perseus", + "mothur_chimera_pintail", + "mothur_chimera_slayer", + "mothur_chimera_uchime", + "mothur_chimera_vsearch", + "mothur_chop_seqs", + "mothur_classify_otu", + "mothur_classify_seqs", + "mothur_classify_tree", + "mothur_clearcut", + "mothur_cluster_classic", + "mothur_cluster_fragments", + "mothur_cluster_split", + "mothur_cluster", + "mothur_collect_shared", + "mothur_collect_single", + "mothur_consensus_seqs", + "mothur_cooccurrence", + "mothur_corr_axes", + "mothur_count_groups", + "mothur_count_seqs", + "mothur_create_database", + "mothur_degap_seqs", + "mothur_deunique_seqs", + "mothur_deunique_tree", + "mothur_dist_seqs", + "mothur_dist_shared", + "mothur_fastq_info", + "mothur_filter_seqs", + "mothur_filter_shared", + "mothur_get_communitytype", + "mothur_get_coremicrobiome", + "mothur_get_dists", + "mothur_get_group", + "mothur_get_groups", + "mothur_get_label", + "mothur_get_lineage", + "mothur_get_mimarkspackage", + "mothur_get_otulabels", + "mothur_get_otulist", + "mothur_get_oturep", + "mothur_get_otus", + "mothur_get_rabund", + "mothur_get_relabund", + "mothur_get_sabund", + "mothur_get_seqs", + "mothur_get_sharedseqs", + "mothur_heatmap_bin", + "mothur_heatmap_sim", + "mothur_homova", + "mothur_indicator", + "mothur_lefse", + "mothur_libshuff", + "mothur_list_otulabels", + "mothur_list_seqs", + "mothur_make_biom", + "mothur_make_contigs", + "mothur_make_design", + "mothur_make_fastq", + "mothur_make_group", + "mothur_make_lefse", + "mothur_make_lookup", + "mothur_make_shared", + "mothur_make_sra", + "mothur_mantel", + "mothur_merge_count", + "mothur_merge_files", + "mothur_merge_groups", + "mothur_merge_sfffiles", + "mothur_merge_taxsummary", + "mothur_metastats", + "mothur_mimarks_attributes", + "mothur_nmds", + "mothur_normalize_shared", + "mothur_otu_association", + "mothur_otu_hierarchy", + "mothur_pairwise_seqs", + "mothur_parse_list", + "mothur_parsimony", + "mothur_pca", + "mothur_pcoa", + "mothur_pcr_seqs", + "mothur_phylo_diversity", + "mothur_phylotype", + "mothur_pre_cluster", + "mothur_primer_design", + "mothur_rarefaction_shared", + "mothur_rarefaction_single", + "mothur_remove_dists", + "mothur_remove_groups", + "mothur_remove_lineage", + "mothur_remove_otulabels", + "mothur_remove_otus", + "mothur_remove_rare", + "mothur_remove_seqs", + "mothur_rename_seqs", + "mothur_reverse_seqs", + "mothur_screen_seqs", + "mothur_sens_spec", + "mothur_seq_error", + "mothur_sffinfo", + "mothur_shhh_flows", + "mothur_shhh_seqs", + "mothur_sort_seqs", + "mothur_split_abund", + "mothur_split_groups", + "mothur_sub_sample", + "mothur_summary_qual", + "mothur_summary_seqs", + "mothur_summary_shared", + "mothur_summary_single", + "mothur_summary_tax", + "mothur_taxonomy_to_krona", + "mothur_tree_shared", + "mothur_trim_flows", + "mothur_trim_seqs", + "mothur_unifrac_unweighted", + "mothur_unifrac_weighted", + "mothur_unique_seqs", + "mothur_venn" + ], + "Description": "Mothur wrappers", + "bio.tool id": "mothur", + "bio.tool ids": [ + "mothur" + ], + "biii": null, + "bio.tool name": "mothur", + "bio.tool description": "Open-source, platform-independent, community-supported software for describing and comparing microbial communities", + "EDAM operation": [ + "DNA barcoding", + "Sequencing quality control", + "Sequence clustering", + "Taxonomic classification", + "Visualisation", + "Sequence read processing", + "Phylogenetic analysis" + ], + "EDAM topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis", + "Phylogeny" + ], + "Status": "To update", + "Source": "https://www.mothur.org", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "mothur", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mothur", + "Galaxy wrapper version": "1.0", + "Conda id": "mothur", + "Conda version": "1.48.0", + "EDAM operation (no superclasses)": [ + "DNA barcoding", + "Sequencing quality control", + "Sequence clustering", + "Taxonomic classification", + "Visualisation", + "Sequence read processing", + "Phylogenetic analysis" + ], + "EDAM topic (no superclasses)": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis", + "Phylogeny" + ], + "Available on UseGalaxy.org (Main)": 129, + "Available on UseGalaxy.org.au": 129, + "Available on UseGalaxy.eu": 129, + "Available on UseGalaxy.fr": 129, + "Tools available on UseGalaxy.org (Main)": 129, + "Tools available on UseGalaxy.org.au": 129, + "Tools available on UseGalaxy.eu": 129, + "Tools available on UseGalaxy.fr": 129, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 3, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 128, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 129, + "Tools available on UseGalaxy.no": 129, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14353, + "Total tool usage (usegalaxy.eu)": 302916 + }, + { + "Galaxy wrapper id": "msaboot", + "Galaxy tool ids": [ + "msaboot" + ], + "Description": "A multiple sequences alignment bootstrapping tool.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/phac-nml/msaboot", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "msaboot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/msaboot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/msaboot", + "Galaxy wrapper version": "0.1.2", + "Conda id": "msaboot", + "Conda version": "0.1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 34, + "Total tool usage (usegalaxy.eu)": 803 + }, + { + "Galaxy wrapper id": "multigps", + "Galaxy tool ids": [ + "multigps" + ], + "Description": "Analyzes collections of multi-condition ChIP-seq data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://mahonylab.org/software/multigps/", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "multigps", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigps", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigps", + "Galaxy wrapper version": "0.74.0", + "Conda id": "fonts-conda-ecosystem", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "multigsea", + "Galaxy tool ids": [ + "multigsea" + ], + "Description": "GSEA-based pathway enrichment analysis for multi-omics data", + "bio.tool id": "multiGSEA", + "bio.tool ids": [ + "multiGSEA" + ], + "biii": null, + "bio.tool name": "multiGSEA", + "bio.tool description": "A GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration.", + "EDAM operation": [ + "Gene-set enrichment analysis", + "Aggregation", + "Pathway analysis" + ], + "EDAM topic": [ + "Metabolomics", + "Molecular interactions, pathways and networks", + "Proteomics", + "Transcriptomics", + "Small molecules" + ], + "Status": "Up-to-date", + "Source": "https://bioconductor.org/packages/devel/bioc/html/multiGSEA.html", + "ToolShed categories": [ + "Transcriptomics", + "Proteomics", + "Statistics" + ], + "ToolShed id": "multigsea", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea", + "Galaxy wrapper version": "1.12.0", + "Conda id": "bioconductor-multigsea", + "Conda version": "1.12.0", + "EDAM operation (no superclasses)": [ + "Gene-set enrichment analysis", + "Aggregation", + "Pathway analysis" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics", + "Molecular interactions, pathways and networks", + "Proteomics", + "Transcriptomics", + "Small molecules" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 53 + }, + { + "Galaxy wrapper id": "multiqc", + "Galaxy tool ids": [ + "multiqc" + ], + "Description": "MultiQC aggregates results from bioinformatics analyses across many samples into a single report", + "bio.tool id": "multiqc", + "bio.tool ids": [ + "multiqc" + ], + "biii": null, + "bio.tool name": "MultiQC", + "bio.tool description": "MultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools.", + "EDAM operation": [ + "Validation", + "Sequencing quality control" + ], + "EDAM topic": [ + "Sequencing", + "Bioinformatics", + "Sequence analysis", + "Genomics" + ], + "Status": "To update", + "Source": "http://multiqc.info/", + "ToolShed categories": [ + "Fastq Manipulation", + "Statistics", + "Visualization" + ], + "ToolShed id": "multiqc", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc", + "Galaxy wrapper version": "1.11", + "Conda id": "multiqc", + "Conda version": "1.24.1", + "EDAM operation (no superclasses)": [ + "Sequencing quality control" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Bioinformatics", + "Sequence analysis", + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8320, + "Total tool usage (usegalaxy.eu)": 162790 + }, + { + "Galaxy wrapper id": "mummer4", + "Galaxy tool ids": [ + "mummer_delta_filter", + "mummer_dnadiff", + "mummer_mummer", + "mummer_mummerplot", + "mummer_nucmer", + "mummer_show_coords" + ], + "Description": "Mummer4 Tools", + "bio.tool id": "mummer4", + "bio.tool ids": [ + "mummer4" + ], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/mummer4/mummer", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mummer4", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mummer4", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mummer4", + "Galaxy wrapper version": "4.0.0rc1", + "Conda id": "mummer4", + "Conda version": "4.0.0rc1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 6, + "Available on UseGalaxy.org.au": 6, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 6, + "Tools available on UseGalaxy.org (Main)": 6, + "Tools available on UseGalaxy.org.au": 6, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 6, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 6, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 6, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 669, + "Total tool usage (usegalaxy.eu)": 18347 + }, + { + "Galaxy wrapper id": "mykrobe", + "Galaxy tool ids": [ + "mykrobe_predict" + ], + "Description": "Antibiotic resistance predictions", + "bio.tool id": "Mykrobe", + "bio.tool ids": [ + "Mykrobe" + ], + "biii": null, + "bio.tool name": "Mykrobe", + "bio.tool description": "Antibiotic resistance prediction for Mycobacterium tuberculosis from genome sequence data with Mykrobe.Antibiotic resistance prediction in minutes.Table of Contents generated with DocToc.AMR prediction (Mykrobe predictor).Before attempting to install with bioconda, please ensure you have your channels set up as specified in the documentation. If you don't, you may run into issues with an older version of mykrobe being installed", + "EDAM operation": [ + "Antimicrobial resistance prediction", + "Variant calling", + "Genotyping", + "Sequence trimming" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Genotype and phenotype", + "Probes and primers", + "Genetic variation", + "Metagenomics" + ], + "Status": "To update", + "Source": "https://github.com/Mykrobe-tools/mykrobe", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "mykrobe", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/mykrobe", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mykrobe", + "Galaxy wrapper version": "0.10.0", + "Conda id": "mykrobe", + "Conda version": "0.13.0", + "EDAM operation (no superclasses)": [ + "Antimicrobial resistance prediction", + "Variant calling", + "Genotyping", + "Sequence trimming" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Genotype and phenotype", + "Probes and primers", + "Genetic variation", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mzmine", + "Galaxy tool ids": [ + "mzmine_batch" + ], + "Description": "mass-spectrometry data processing, with the main focus on LC-MS data", + "bio.tool id": "mzmine", + "bio.tool ids": [ + "mzmine" + ], + "biii": null, + "bio.tool name": "MZmine", + "bio.tool description": "Toolbox for visualization and analysis of LC-MS data in netCDF or mzXML.", + "EDAM operation": [ + "Natural product identification", + "Standardisation and normalisation", + "Peptide database search", + "Deisotoping", + "Clustering", + "Filtering", + "Chromatographic alignment", + "Peak detection", + "Peptide identification", + "Chromatogram visualisation", + "Mass spectrum visualisation", + "Structure visualisation", + "Plotting", + "Heat map generation" + ], + "EDAM topic": [ + "Proteomics", + "Metabolomics", + "Proteomics experiment", + "Small molecules" + ], + "Status": "Up-to-date", + "Source": "http://mzmine.github.io/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "mzmine_batch", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/mzmine/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/mzmine", + "Galaxy wrapper version": "3.9.0", + "Conda id": "mzmine", + "Conda version": "3.9.0", + "EDAM operation (no superclasses)": [ + "Natural product identification", + "Standardisation and normalisation", + "Peptide database search", + "Deisotoping", + "Clustering", + "Filtering", + "Chromatographic alignment", + "Peak detection", + "Peptide identification", + "Chromatogram visualisation", + "Mass spectrum visualisation", + "Structure visualisation", + "Plotting", + "Heat map generation" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Metabolomics", + "Proteomics experiment", + "Small molecules" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 3 + }, + { + "Galaxy wrapper id": "naltorfs", + "Galaxy tool ids": [ + "bicodon_counts_from_fasta", + "codon_freq_from_bicodons", + "find_nested_alt_orfs" + ], + "Description": "nAlt-ORFs: Nested Alternate Open Reading Frames (nAltORFs)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/BlankenbergLab/nAltORFs", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/naltorfs/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/naltorfs", + "Galaxy wrapper version": "0.1.2", + "Conda id": "naltorfs", + "Conda version": "0.1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "nanocompore", + "Galaxy tool ids": [ + "nanocompore_db", + "nanocompore_sampcomp" + ], + "Description": "Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro.", + "bio.tool id": "Nanocompore", + "bio.tool ids": [ + "Nanocompore" + ], + "biii": null, + "bio.tool name": "Nanocompore", + "bio.tool description": "RNA modifications detection by comparative Nanopore direct RNA sequencing.RNA modifications detection from Nanopore dRNA-Seq data.Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples.Analyses performed for the nanocompore paper.Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro", + "EDAM operation": [ + "Post-translation modification site prediction", + "PolyA signal detection", + "Genotyping", + "k-mer counting" + ], + "EDAM topic": [ + "Functional, regulatory and non-coding RNA", + "RNA-Seq", + "Gene transcripts", + "Transcriptomics", + "Transcription factors and regulatory sites" + ], + "Status": "To update", + "Source": "https://nanocompore.rna.rocks/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "nanocompore", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanocompore", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanocompore", + "Galaxy wrapper version": "1.0.0rc3.post2", + "Conda id": "nanocompore", + "Conda version": "1.0.4", + "EDAM operation (no superclasses)": [ + "PolyA signal detection", + "Genotyping", + "k-mer counting" + ], + "EDAM topic (no superclasses)": [ + "Functional, regulatory and non-coding RNA", + "RNA-Seq", + "Gene transcripts", + "Transcriptomics", + "Transcription factors and regulatory sites" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 836 + }, + { + "Galaxy wrapper id": "nanoplot", + "Galaxy tool ids": [ + "nanoplot" + ], + "Description": "Plotting tool for long read sequencing data and alignments", + "bio.tool id": "nanoplot", + "bio.tool ids": [ + "nanoplot" + ], + "biii": null, + "bio.tool name": "NanoPlot", + "bio.tool description": "NanoPlot is a tool with various visualizations of sequencing data in bam, cram, fastq, fasta or platform-specific TSV summaries, mainly intended for long-read sequencing from Oxford Nanopore Technologies and Pacific Biosciences", + "EDAM operation": [ + "Scatter plot plotting", + "Box-Whisker plot plotting" + ], + "EDAM topic": [ + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/wdecoster/NanoPlot", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "nanoplot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanoplot/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanoplot", + "Galaxy wrapper version": "1.43.0", + "Conda id": "nanoplot", + "Conda version": "1.43.0", + "EDAM operation (no superclasses)": [ + "Scatter plot plotting", + "Box-Whisker plot plotting" + ], + "EDAM topic (no superclasses)": [ + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2195, + "Total tool usage (usegalaxy.eu)": 63235 + }, + { + "Galaxy wrapper id": "nanopolishcomp", + "Galaxy tool ids": [ + "nanopolishcomp_eventaligncollapse", + "nanopolishcomp_freqmethcalculate" + ], + "Description": "NanopolishComp contains 2 modules. Eventalign_collapse collapses the raw file generated by nanopolish eventalign by kmers rather than by event. Freq_meth_calculate methylation frequency at genomic CpG sites from the output of nanopolish call-methylation.", + "bio.tool id": "nanopolishcomp", + "bio.tool ids": [ + "nanopolishcomp" + ], + "biii": null, + "bio.tool name": "NanopolishComp", + "bio.tool description": "NanopolishComp is a Python3 package for downstream analyses of Nanopolish output files.It is a companion package for Nanopolish.", + "EDAM operation": [ + "Methylation analysis", + "Collapsing methods" + ], + "EDAM topic": [ + "Sequence analysis", + "Sequencing", + "Genetic variation" + ], + "Status": "To update", + "Source": "https://a-slide.github.io/NanopolishComp", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "nanopolishcomp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanopolishcomp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanopolishcomp", + "Galaxy wrapper version": "0.6.11", + "Conda id": "nanopolishcomp", + "Conda version": "0.6.12", + "EDAM operation (no superclasses)": [ + "Methylation analysis", + "Collapsing methods" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Sequencing", + "Genetic variation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 1074 + }, + { + "Galaxy wrapper id": "ncbi_acc_download", + "Galaxy tool ids": [ + "ncbi_acc_download" + ], + "Description": "Download sequences from GenBank/RefSeq by accession through the NCBI ENTREZ API", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/kblin/ncbi-acc-download", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "ncbi_acc_download", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_acc_download", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_acc_download", + "Galaxy wrapper version": "0.2.8", + "Conda id": "ncbi-acc-download", + "Conda version": "0.2.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 688, + "Total tool usage (usegalaxy.eu)": 5487 + }, + { + "Galaxy wrapper id": "ncbi_datasets", + "Galaxy tool ids": [ + "datasets_download_gene", + "datasets_download_genome" + ], + "Description": "NCBI datasets downloads biological sequence data across all domains of life from NCBI.", + "bio.tool id": "ncbi_datasets", + "bio.tool ids": [ + "ncbi_datasets" + ], + "biii": null, + "bio.tool name": "NCBI Datasets", + "bio.tool description": "NCBI Datasets is a new resource that lets you easily gather data from across NCBI databases. Find and download sequence, annotation, and metadata for genes and genomes using our command-line tools or web interface.", + "EDAM operation": [ + "Data handling", + "Sequence database search", + "Data retrieval" + ], + "EDAM topic": [ + "Biological databases" + ], + "Status": "To update", + "Source": "https://github.com/ncbi/datasets", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "ncbi_datasets", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_datasets", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_datasets", + "Galaxy wrapper version": "16.20.0", + "Conda id": "ncbi-datasets-cli", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Data handling", + "Sequence database search", + "Data retrieval" + ], + "EDAM topic (no superclasses)": [ + "Biological databases" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 667, + "Total tool usage (usegalaxy.eu)": 3177 + }, + { + "Galaxy wrapper id": "ncbi_entrez_direct", + "Galaxy tool ids": [ + "ncbi_entrez_direct_efetch", + "ncbi_entrez_direct_einfo", + "ncbi_entrez_direct_esearch" + ], + "Description": "NCBI Entrez Direct allow fetching data from NCBI Databases", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://www.ncbi.nlm.nih.gov/books/NBK179288/", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "ncbi_entrez_direct", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_direct", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_entrez_direct", + "Galaxy wrapper version": "22.4", + "Conda id": "entrez-direct", + "Conda version": "22.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ncbi_entrez_eutils", + "Galaxy tool ids": [ + "ncbi_eutils_ecitmatch", + "ncbi_eutils_efetch", + "ncbi_eutils_egquery", + "ncbi_eutils_einfo", + "ncbi_eutils_elink", + "ncbi_eutils_epost", + "ncbi_eutils_esearch", + "ncbi_eutils_esummary" + ], + "Description": "NCBI Entrez E-Utilties allow fetching data from NCBI Databases", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.ncbi.nlm.nih.gov/books/NBK25501/", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "ncbi_entrez_eutils", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_entrez_eutils", + "Galaxy wrapper version": "1.70", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 8, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 4, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 4, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 8, + "Tools available on UseGalaxy.no": 8, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 169, + "Total tool usage (usegalaxy.eu)": 3193 + }, + { + "Galaxy wrapper id": "ncbi_fcs_gx", + "Galaxy tool ids": [ + "ncbi_fcs_gx" + ], + "Description": "FCS-GX detects contamination from foreign organisms in genome sequences using the genome cross-species aligner (GX).", + "bio.tool id": "ncbi_fcs", + "bio.tool ids": [ + "ncbi_fcs" + ], + "biii": null, + "bio.tool name": "NCBI fcs", + "bio.tool description": "The NCBI Foreign Contamination Screen (FCS) is a tool suite for identifying and removing contaminant sequences in genome assemblies. Contaminants are defined as sequences in a dataset that do not originate from the biological source organism and can arise from a variety of environmental and laboratory sources. FCS will help you remove contaminants from genomes before submission to GenBank.", + "EDAM operation": [ + "Sequence assembly validation", + "Sequence trimming", + "Sequence contamination filtering" + ], + "EDAM topic": [ + "Sequence analysis", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/ncbi/fcs-gx", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ncbi_fcs_gx", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx", + "Galaxy wrapper version": "0.5.4", + "Conda id": "ncbi-fcs-gx", + "Conda version": "0.5.4", + "EDAM operation (no superclasses)": [ + "Sequence assembly validation", + "Sequence trimming", + "Sequence contamination filtering" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "necat", + "Galaxy tool ids": [ + "necat" + ], + "Description": "Error correction and de-novo assembly for ONT Nanopore reads", + "bio.tool id": "necat", + "bio.tool ids": [ + "necat" + ], + "biii": null, + "bio.tool name": "NECAT", + "bio.tool description": "NECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads.", + "EDAM operation": [ + "De-novo assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/xiaochuanle/NECAT", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "necat", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/necat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/necat", + "Galaxy wrapper version": "0.0.1_update20200803", + "Conda id": "necat", + "Conda version": "0.0.1_update20200803", + "EDAM operation (no superclasses)": [ + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 95, + "Total tool usage (usegalaxy.eu)": 667 + }, + { + "Galaxy wrapper id": "newick_utils", + "Galaxy tool ids": [ + "newick_display" + ], + "Description": "Perform operations on Newick trees", + "bio.tool id": "newick_utilities", + "bio.tool ids": [ + "newick_utilities" + ], + "biii": null, + "bio.tool name": "Newick Utilities", + "bio.tool description": "The Newick Utilities are a set of command-line tools for processing phylogenetic trees. They can process arbitrarily large amounts of data and do not require user interaction, which makes them suitable for automating phylogeny processing tasks.", + "EDAM operation": [ + "Phylogenetic tree generation", + "Phylogenetic tree analysis", + "Phylogenetic tree reconstruction" + ], + "EDAM topic": [ + "Phylogeny", + "Genomics", + "Computer science" + ], + "Status": "To update", + "Source": "http://cegg.unige.ch/newick_utils", + "ToolShed categories": [ + "Visualization", + "Metagenomics" + ], + "ToolShed id": "newick_utils", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/tjunier/newick_utils", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/newick_utils", + "Galaxy wrapper version": "1.6+galaxy1", + "Conda id": "newick_utils", + "Conda version": "1.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Phylogeny", + "Genomics", + "Computer science" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 448, + "Total tool usage (usegalaxy.eu)": 25505 + }, + { + "Galaxy wrapper id": "nextclade", + "Galaxy tool ids": [ + "nextalign", + "nextclade" + ], + "Description": "Identify differences between your sequences and a reference sequence used by Nextstrain", + "bio.tool id": "nextclade", + "bio.tool ids": [ + "nextclade" + ], + "biii": null, + "bio.tool name": "Nextclade", + "bio.tool description": "Nextclade is an open-source project for viral genome alignment, mutation calling, clade assignment, quality checks and phylogenetic placement.", + "EDAM operation": [ + "Methylation analysis", + "Variant calling" + ], + "EDAM topic": [ + "Genomics", + "Sequence analysis", + "Cladistics" + ], + "Status": "To update", + "Source": "https://github.com/nextstrain/nextclade", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/nextclade", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/nextclade", + "Galaxy wrapper version": "2.7.0", + "Conda id": "nextalign", + "Conda version": "2.14.0", + "EDAM operation (no superclasses)": [ + "Methylation analysis", + "Variant calling" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Cladistics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 210, + "Total tool usage (usegalaxy.eu)": 4080 + }, + { + "Galaxy wrapper id": "ngmlr", + "Galaxy tool ids": [ + "ngmlr" + ], + "Description": "CoNvex Gap-cost alignMents for Long Reads", + "bio.tool id": "ngmlr", + "bio.tool ids": [ + "ngmlr" + ], + "biii": null, + "bio.tool name": "NGMLR", + "bio.tool description": "An algorithm to map third generation long-read sequencing data (PacBio and Oxford Nanopore) to a reference genome with a focus on reads that span structural variation.", + "EDAM operation": [ + "DNA mapping", + "Sequence alignment", + "Genetic variation analysis" + ], + "EDAM topic": [ + "Sequencing", + "Mapping", + "DNA structural variation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/philres/ngmlr", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "ngmlr", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ngmlr", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngmlr", + "Galaxy wrapper version": "0.2.7", + "Conda id": "ngmlr", + "Conda version": "0.2.7", + "EDAM operation (no superclasses)": [ + "DNA mapping", + "Sequence alignment", + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 1266 + }, + { + "Galaxy wrapper id": "ngsutils", + "Galaxy tool ids": [ + "ngsutils_bam_filter" + ], + "Description": "NGSUtils is a suite of software tools for working with next-generation sequencing datasets.Starting in 2009, we (Liu Lab @ Indiana University School of Medicine) starting working withnext-generation sequencing data. We initially started doing custom coding for each project in a one-off manner.It quickly became apparent that this was an inefficient manner to work, so we started assembling smallerutilities that could be adapted into larger, more complicated, workflows. We have used them for Illumia,SOLiD, 454, Ion Torrent, and Pac Bio sequencing data. We have used them for DNA and RNA resequcing,ChIP-Seq, CLIP-Seq, and targeted resequencing (Agilent exome capture and PCR targeting).These tools are also used heavily in our in-house DNA and RNA mapping pipelines.NGSUtils is made up of 50+ programs, mainly written in Python.These are separated into modules based on the type of file that is to be analyzed.", + "bio.tool id": "ngsutils", + "bio.tool ids": [ + "ngsutils" + ], + "biii": null, + "bio.tool name": "NGSUtils", + "bio.tool description": "NGSUtils is a suite of software tools for working with next-generation sequencing datasets", + "EDAM operation": [ + "Read pre-processing", + "Sequencing quality control", + "Variant calling", + "Formatting", + "Sequence contamination filtering" + ], + "EDAM topic": [ + "Genomics", + "Transcriptomics" + ], + "Status": "To update", + "Source": "https://github.com/ngsutils/ngsutils", + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ngsutils", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsutils", + "Galaxy wrapper version": null, + "Conda id": "ngsutils", + "Conda version": "0.5.9", + "EDAM operation (no superclasses)": [ + "Read pre-processing", + "Variant calling", + "Formatting", + "Sequence contamination filtering" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 224, + "Total tool usage (usegalaxy.eu)": 24740 + }, + { + "Galaxy wrapper id": "nonpareil", + "Galaxy tool ids": [ + "nonpareil" + ], + "Description": "Estimate average coverage in metagenomic datasets", + "bio.tool id": "nonpareil", + "bio.tool ids": [ + "nonpareil" + ], + "biii": null, + "bio.tool name": "nonpareil", + "bio.tool description": "Estimate metagenomic coverage and sequence diversity", + "EDAM operation": [ + "Operation" + ], + "EDAM topic": [], + "Status": "To update", + "Source": "http://nonpareil.readthedocs.io", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "nonpareil", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/nonpareil", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/nonpareil", + "Galaxy wrapper version": "3.1.1", + "Conda id": "nonpareil", + "Conda version": "3.5.5", + "EDAM operation (no superclasses)": [ + "Operation" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 142 + }, + { + "Galaxy wrapper id": "novoplasty", + "Galaxy tool ids": [ + "novoplasty" + ], + "Description": "NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ndierckx/NOVOPlasty", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "novoplasty", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplasty", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty", + "Galaxy wrapper version": "4.3.1", + "Conda id": "novoplasty", + "Conda version": "4.3.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 162, + "Total tool usage (usegalaxy.eu)": 6384 + }, + { + "Galaxy wrapper id": "nugen_nudup", + "Galaxy tool ids": [ + "nugen_nudup" + ], + "Description": "Marks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products.", + "bio.tool id": "nudup", + "bio.tool ids": [ + "nudup" + ], + "biii": null, + "bio.tool name": "NuDup", + "bio.tool description": "Marks/removes duplicate molecules based on the molecular tagging technology used in Tecan products.", + "EDAM operation": [ + "Duplication detection" + ], + "EDAM topic": [ + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/tecangenomics/nudup", + "ToolShed categories": [ + "SAM", + "Metagenomics", + "Sequence Analysis", + "Transcriptomics" + ], + "ToolShed id": "nugen_nudup", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup", + "Galaxy wrapper version": "2.3.3", + "Conda id": "nudup", + "Conda version": "2.3.3", + "EDAM operation (no superclasses)": [ + "Duplication detection" + ], + "EDAM topic (no superclasses)": [ + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "obitools", + "Galaxy tool ids": [ + "obi_illumina_pairend", + "obi_ngsfilter", + "obi_annotate", + "obi_clean", + "obi_convert", + "obi_grep", + "obi_sort", + "obi_stat", + "obi_tab", + "obi_uniq" + ], + "Description": "OBITools is a set of programs developed to simplify the manipulation of sequence files", + "bio.tool id": "obitools", + "bio.tool ids": [ + "obitools" + ], + "biii": null, + "bio.tool name": "OBITools", + "bio.tool description": "Set of python programs developed to simplify the manipulation of sequence files. They were mainly designed to help us for analyzing Next Generation Sequencer outputs (454 or Illumina) in the context of DNA Metabarcoding.", + "EDAM operation": [ + "Sequence analysis", + "Sequence analysis" + ], + "EDAM topic": [ + "Sequence analysis", + "DNA", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "http://metabarcoding.org/obitools", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "obitools", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/obitools", + "Galaxy wrapper version": "1.2.13", + "Conda id": "obitools", + "Conda version": "1.2.13", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "DNA", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 10, + "Available on UseGalaxy.eu": 10, + "Available on UseGalaxy.fr": 10, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 10, + "Tools available on UseGalaxy.eu": 10, + "Tools available on UseGalaxy.fr": 10, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 10, + "Tools available on UseGalaxy.no": 10, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 503, + "Total tool usage (usegalaxy.eu)": 26251 + }, + { + "Galaxy wrapper id": "ococo", + "Galaxy tool ids": [ + "ococo" + ], + "Description": "Variant detection of SNVs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/karel-brinda/ococo", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "ococo", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ococo", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ococo", + "Galaxy wrapper version": "0.1.2.6", + "Conda id": "ococo", + "Conda version": "0.1.2.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 32, + "Total tool usage (usegalaxy.eu)": 1877 + }, + { + "Galaxy wrapper id": "odgi", + "Galaxy tool ids": [ + "odgi_build", + "odgi_viz" + ], + "Description": "Representing large genomic variation graphs with minimal memory overhead requires a careful encoding of the graph entities. odgi follows the dynamic GBWT in developing a byte-packed version of the graph and paths through it.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/vgteam/odgi", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/odgi", + "Galaxy wrapper version": "0.3", + "Conda id": "odgi", + "Conda version": "0.8.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 25 + }, + { + "Galaxy wrapper id": "omark", + "Galaxy tool ids": [ + "omark" + ], + "Description": "Proteome quality assessment software", + "bio.tool id": "omark", + "bio.tool ids": [ + "omark" + ], + "biii": null, + "bio.tool name": "OMArk", + "bio.tool description": "Proteome quality assessment software", + "EDAM operation": [ + "Sequence assembly validation", + "Differential protein expression profiling" + ], + "EDAM topic": [ + "Proteomics", + "Sequence analysis", + "Statistics and probability" + ], + "Status": "To update", + "Source": "https://github.com/DessimozLab/OMArk", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "omark", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/omark/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/omark", + "Galaxy wrapper version": "0.3.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Sequence assembly validation", + "Differential protein expression profiling" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Sequence analysis", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ont_fast5_api", + "Galaxy tool ids": [ + "ont_fast5_api_compress_fast5", + "ont_fast5_api_fast5_subset", + "ont_fast5_api_multi_to_single_fast5", + "ont_fast5_api_single_to_multi_fast5" + ], + "Description": "ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore FAST5 file format.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/nanoporetech/ont_fast5_api/", + "ToolShed categories": [ + "Nanopore" + ], + "ToolShed id": "ont_fast5_api", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ont_fast5_api", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ont_fast5_api", + "Galaxy wrapper version": "3.1.3", + "Conda id": "ont-fast5-api", + "Conda version": "4.1.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 2654 + }, + { + "Galaxy wrapper id": "onto_toolkit", + "Galaxy tool ids": [ + "onto_tk_get_ancestor_terms", + "onto_tk_get_child_terms", + "onto_tk_get_descendent_terms", + "onto_tk_get_parent_terms", + "onto_tk_get_parent_terms_by_relationship_type", + "onto_tk_get_relationship_id_vs_relationship_def", + "onto_tk_get_relationship_id_vs_relationship_name", + "onto_tk_get_relationship_id_vs_relationship_namespace", + "onto_tk_get_relationship_types", + "onto_tk_get_root_terms", + "onto_tk_get_subontology_from", + "onto_tk_term_id_vs_term_def", + "onto_tk_term_id_vs_term_name", + "onto_tk_get_term_synonyms", + "onto_tk_get_terms", + "onto_tk_get_terms_by_relationship_type", + "onto_tk_obo2owl", + "onto_tk_obo2rdf", + "onto_tk_term_id_vs_term_def" + ], + "Description": "ONTO-Toolkit is a collection of tools for managing ontologies.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://search.cpan.org/~easr/ONTO-PERL-1.45/", + "ToolShed categories": [ + "Ontology Manipulation" + ], + "ToolShed id": "onto_toolkit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/onto-toolkit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/onto_toolkit", + "Galaxy wrapper version": "1.45", + "Conda id": "perl-onto-perl", + "Conda version": "1.45", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 17, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 17, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 17, + "Tools available on UseGalaxy.no": 17, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 22, + "Total tool usage (usegalaxy.eu)": 655 + }, + { + "Galaxy wrapper id": "optdoe", + "Galaxy tool ids": [ + "optdoe" + ], + "Description": "Optimal Design Of Experiment", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/pablocarb/doebase", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "optdoe", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/optdoe", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/optdoe", + "Galaxy wrapper version": "v2.0.2", + "Conda id": "doebase", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "optitype", + "Galaxy tool ids": [ + "optitype" + ], + "Description": "Precision HLA typing from NGS data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/FRED-2/OptiType", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "optitype", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/optitype1", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/optitype", + "Galaxy wrapper version": "1.3.5", + "Conda id": "optitype", + "Conda version": "1.3.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 24, + "Total tool usage (usegalaxy.eu)": 321 + }, + { + "Galaxy wrapper id": "orfipy", + "Galaxy tool ids": [ + "orfipy" + ], + "Description": "Galaxy wrapper for ORFIPY", + "bio.tool id": "orfipy", + "bio.tool ids": [ + "orfipy" + ], + "biii": null, + "bio.tool name": "orfipy", + "bio.tool description": "A fast and flexible tool for extracting ORFs.orfipy is a tool written in python/cython to extract ORFs in extremely an fast and flexible manner. Other popular ORF searching tools are OrfM and getorf. Compared to OrfM and getorf, orfipy provides the most options to fine tune ORF searches. orfipy uses multiple CPU cores and is particularly faster for data containing multiple smaller fasta sequences such as de-novo transcriptome assemblies. Please read the preprint here.", + "EDAM operation": [ + "Coding region prediction", + "Database search", + "Transcriptome assembly", + "De-novo assembly" + ], + "EDAM topic": [ + "Computer science", + "RNA-Seq", + "Transcriptomics", + "Small molecules" + ], + "Status": "Up-to-date", + "Source": "https://github.com/urmi-21/orfipy", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "orfipy", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/orfipy", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/orfipy", + "Galaxy wrapper version": "0.0.4", + "Conda id": "orfipy", + "Conda version": "0.0.4", + "EDAM operation (no superclasses)": [ + "Coding region prediction", + "Database search", + "Transcriptome assembly", + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Computer science", + "RNA-Seq", + "Transcriptomics", + "Small molecules" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 53, + "Total tool usage (usegalaxy.eu)": 774 + }, + { + "Galaxy wrapper id": "orthofinder", + "Galaxy tool ids": [ + "orthofinder_onlygroups" + ], + "Description": "Accurate inference of orthologous gene groups made easy", + "bio.tool id": "OrthoFinder", + "bio.tool ids": [ + "OrthoFinder" + ], + "biii": null, + "bio.tool name": "OrthoFinder", + "bio.tool description": "OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics. It finds orthogroups and orthologs, infers rooted gene trees for all orthogroups and identifies all of the gene duplcation events in those gene trees. It also infers a rooted species tree for the species being analysed and maps the gene duplication events from the gene trees to branches in the species tree. OrthoFinder also provides comprehensive statistics for comparative genomic analyses.", + "EDAM operation": [ + "Genome comparison", + "Phylogenetic tree generation (from molecular sequences)", + "Phylogenetic tree analysis", + "Genome alignment" + ], + "EDAM topic": [ + "Phylogenetics", + "Phylogenomics", + "Bioinformatics", + "Comparative genomics", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/davidemms/OrthoFinder", + "ToolShed categories": [ + "Phylogenetics", + "Sequence Analysis" + ], + "ToolShed id": "orthofinder", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/orthofinder", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/orthofinder", + "Galaxy wrapper version": "2.5.5", + "Conda id": "orthofinder", + "Conda version": "2.5.5", + "EDAM operation (no superclasses)": [ + "Genome comparison", + "Genome alignment" + ], + "EDAM topic (no superclasses)": [ + "Phylogenetics", + "Phylogenomics", + "Bioinformatics", + "Comparative genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 239, + "Total tool usage (usegalaxy.eu)": 1333 + }, + { + "Galaxy wrapper id": "packaged_annotation_loader", + "Galaxy tool ids": [ + "packaged_annotation_loader" + ], + "Description": "Tool to make cached genome annotation data available as a list of datasets collection", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/packaged_annotation_loader", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "packaged_annotation_loader", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/packaged_annotation_loader", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/packaged_annotation_loader", + "Galaxy wrapper version": "0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pacu", + "Galaxy tool ids": [ + "pacu_map", + "pacu_snp" + ], + "Description": "PACU is a workflow for whole genome sequencing based phylogeny of Illumina and ONT R9/R10 data.", + "bio.tool id": "pacu", + "bio.tool ids": [ + "pacu" + ], + "biii": null, + "bio.tool name": "PACU", + "bio.tool description": "PACU is a workflow for whole genome sequencing based phylogeny of Illumina and ONT R9/R10 data.PACU stands for the Prokaryotic Awesome variant Calling Utility and is named after an omnivorous fish (that eats both Illumina and ONT reads).", + "EDAM operation": [ + "Clustering" + ], + "EDAM topic": [ + "Phylogenetics", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/BioinformaticsPlatformWIV-ISP/PACU", + "ToolShed categories": [ + "Sequence Analysis", + "Phylogenetics" + ], + "ToolShed id": "pacu", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pacu", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pacu", + "Galaxy wrapper version": "0.0.5", + "Conda id": "pacu_snp", + "Conda version": "0.0.5", + "EDAM operation (no superclasses)": [ + "Clustering" + ], + "EDAM topic (no superclasses)": [ + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pairtools", + "Galaxy tool ids": [ + "pairtools_dedup", + "pairtools_parse", + "pairtools_sort", + "pairtools_split", + "pairtools_stats" + ], + "Description": "Flexible tools for Hi-C data processing", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://pairtools.readthedocs.io", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "pairtools", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/open2c/pairtools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pairtools", + "Galaxy wrapper version": "1.1.0", + "Conda id": "pairtools", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pangolin", + "Galaxy tool ids": [ + "pangolin" + ], + "Description": "Pangolin assigns SARS-CoV-2 genome sequences their most likely lineages under the Pango nomenclature system.", + "bio.tool id": "pangolin_cov-lineages", + "bio.tool ids": [ + "pangolin_cov-lineages" + ], + "biii": null, + "bio.tool name": "pangolin", + "bio.tool description": "Phylogenetic Assignment of Named Global Outbreak LINeages - software package for assigning SARS-CoV-2 genome sequences to global lineages", + "EDAM operation": [ + "Tree-based sequence alignment", + "Variant classification" + ], + "EDAM topic": [ + "Virology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/cov-lineages/pangolin", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "pangolin", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pangolin", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pangolin", + "Galaxy wrapper version": "4.3", + "Conda id": "pangolin", + "Conda version": "4.3", + "EDAM operation (no superclasses)": [ + "Tree-based sequence alignment", + "Variant classification" + ], + "EDAM topic (no superclasses)": [ + "Virology" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 259, + "Total tool usage (usegalaxy.eu)": 7276 + }, + { + "Galaxy wrapper id": "parse_mito_blast", + "Galaxy tool ids": [ + "parse_mito_blast" + ], + "Description": "Filtering blast out from querying assembly against mitochondrial database.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://raw.githubusercontent.com/VGP/vgp-assembly/master/galaxy_tools/parse_mito_blast/parse_mito_blast.py", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "parse_mito_blast", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/parse_mito_blast", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/parse_mito_blast", + "Galaxy wrapper version": "1.0.2", + "Conda id": "parse_mito_blast", + "Conda version": "1.0.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 31, + "Total tool usage (usegalaxy.eu)": 90 + }, + { + "Galaxy wrapper id": "pathview", + "Galaxy tool ids": [ + "pathview" + ], + "Description": "Pathview is a tool set for pathway based data integration and visualization.", + "bio.tool id": "pathview", + "bio.tool ids": [ + "pathview" + ], + "biii": null, + "bio.tool name": "pathview", + "bio.tool description": "Tool set for pathway based data integration and visualization that maps and renders a wide variety of biological data on relevant pathway graphs. It downloads the pathway graph data, parses the data file, maps user data to the pathway, and render pathway graph with the mapped data. In addition, it integrates with pathway and gene set (enrichment) analysis tools for large-scale and fully automated analysis.", + "EDAM operation": [ + "Pathway or network analysis", + "Pathway or network visualisation" + ], + "EDAM topic": [ + "Molecular interactions, pathways and networks", + "Systems biology", + "Data visualisation" + ], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/pathview.html", + "ToolShed categories": [ + "Statistics", + "RNA", + "Micro-array Analysis" + ], + "ToolShed id": "pathview", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pathview", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pathview", + "Galaxy wrapper version": "1.34.0", + "Conda id": "bioconductor-pathview", + "Conda version": "1.42.0", + "EDAM operation (no superclasses)": [ + "Pathway or network analysis", + "Pathway or network visualisation" + ], + "EDAM topic (no superclasses)": [ + "Molecular interactions, pathways and networks", + "Systems biology", + "Data visualisation" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 565, + "Total tool usage (usegalaxy.eu)": 5260 + }, + { + "Galaxy wrapper id": "pbgcpp", + "Galaxy tool ids": [ + "pbgcpp" + ], + "Description": "Compute genomic consensus and call variants using PacBio reads mapped to a reference", + "bio.tool id": "genomicconsensus", + "bio.tool ids": [ + "genomicconsensus" + ], + "biii": null, + "bio.tool name": "GenomicConsensus", + "bio.tool description": "The GenomicConsensus package provides the variantCaller tool, which allows you to apply the Quiver or Arrow algorithm to mapped PacBio reads to get consensus and variant calls.", + "EDAM operation": [ + "Variant calling" + ], + "EDAM topic": [ + "Mapping" + ], + "Status": "Up-to-date", + "Source": "https://github.com/PacificBiosciences/gcpp", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "pbgcpp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pbgcpp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbgcpp", + "Galaxy wrapper version": "2.0.2", + "Conda id": "pbgcpp", + "Conda version": "2.0.2", + "EDAM operation (no superclasses)": [ + "Variant calling" + ], + "EDAM topic (no superclasses)": [ + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pbmm2", + "Galaxy tool ids": [ + "pbmm2" + ], + "Description": "A minimap2 SMRT wrapper for PacBio data.", + "bio.tool id": "pbmm2", + "bio.tool ids": [ + "pbmm2" + ], + "biii": null, + "bio.tool name": "pbmm2", + "bio.tool description": "pbmm2 is a SMRT C++ wrapper for minimap2's C API. Its purpose is to support native PacBio in- and output, provide sets of recommended parameters, generate sorted output on-the-fly, and postprocess alignments. Sorted output can be used directly for polishing using GenomicConsensus, if BAM has been used as input to pbmm2. Benchmarks show that pbmm2 outperforms BLASR in sequence identity, number of mapped bases, and especially runtime. pbmm2 is the official replacement for BLASR.", + "EDAM operation": [ + "Pairwise sequence alignment", + "Sorting" + ], + "EDAM topic": [ + "Mapping" + ], + "Status": "Up-to-date", + "Source": "https://github.com/PacificBiosciences/pbmm2", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "pbmm2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pbmm2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbmm2", + "Galaxy wrapper version": "1.14.99", + "Conda id": "pbmm2", + "Conda version": "1.14.99", + "EDAM operation (no superclasses)": [ + "Pairwise sequence alignment", + "Sorting" + ], + "EDAM topic (no superclasses)": [ + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pbtk", + "Galaxy tool ids": [ + "bam2fastx" + ], + "Description": "Convert PacBio Bam File to fasta or fastq file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/PacificBiosciences/pbtk", + "ToolShed categories": [ + "Convert Formats", + "Fasta Manipulation", + "Fastq Manipulation" + ], + "ToolShed id": "bam2fastx", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pbtk", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbtk", + "Galaxy wrapper version": "3.1.1", + "Conda id": "pbtk", + "Conda version": "3.1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pe_histogram", + "Galaxy tool ids": [ + "pe_histogram" + ], + "Description": "Contains a tool that produces an insert size histogram for a paired-end BAM file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/pehistogram", + "ToolShed categories": [ + "Graphics" + ], + "ToolShed id": "pe_histogram", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pe_histogram", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pe_histogram", + "Galaxy wrapper version": "1.0.1", + "Conda id": "openjdk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 312, + "Total tool usage (usegalaxy.eu)": 4180 + }, + { + "Galaxy wrapper id": "peakzilla", + "Galaxy tool ids": [ + "peakzilla" + ], + "Description": "Peakzilla identifies sites of enrichment and transcription factor binding sites from ChIP-seq and ChIP-exo experiments.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/steinmann/peakzilla", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "peakzilla", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/peakzilla", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/peakzilla", + "Galaxy wrapper version": "1.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pear", + "Galaxy tool ids": [ + "iuc_pear" + ], + "Description": "PEAR evaluates all possible paired-end read overlaps", + "bio.tool id": "pear", + "bio.tool ids": [ + "pear" + ], + "biii": null, + "bio.tool name": "PEAR", + "bio.tool description": "Paired-end read merger. PEAR evaluates all possible paired-end read overlaps without requiring the target fragment size as input. In addition, it implements a statistical test for minimizing false-positive results.", + "EDAM operation": [ + "Sequence merging" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://cme.h-its.org/exelixis/web/software/pear/", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "pear", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pear", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pear", + "Galaxy wrapper version": "0.9.6", + "Conda id": "pear", + "Conda version": "0.9.6", + "EDAM operation (no superclasses)": [ + "Sequence merging" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 150, + "Total tool usage (usegalaxy.eu)": 4305 + }, + { + "Galaxy wrapper id": "pharokka", + "Galaxy tool ids": [ + "pharokka" + ], + "Description": "rapid standardised annotation tool for bacteriophage genomes and metagenomes", + "bio.tool id": "pharokka", + "bio.tool ids": [ + "pharokka" + ], + "biii": null, + "bio.tool name": "Pharokka", + "bio.tool description": "Pharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes.", + "EDAM operation": [ + "Genome annotation", + "Antimicrobial resistance prediction", + "tRNA gene prediction", + "Formatting", + "Sequence assembly" + ], + "EDAM topic": [ + "Metagenomics", + "Sequence sites, features and motifs", + "Workflows", + "Functional, regulatory and non-coding RNA" + ], + "Status": "To update", + "Source": "https://github.com/gbouras13/pharokka", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "pharokka", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka", + "Galaxy wrapper version": "1.3.2", + "Conda id": "\n pharokka\n ", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Genome annotation", + "Antimicrobial resistance prediction", + "tRNA gene prediction", + "Formatting", + "Sequence assembly" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequence sites, features and motifs", + "Workflows", + "Functional, regulatory and non-coding RNA" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 74, + "Total tool usage (usegalaxy.eu)": 2565 + }, + { + "Galaxy wrapper id": "phyloseq", + "Galaxy tool ids": [ + "phyloseq_from_biom", + "phyloseq_from_dada2", + "phyloseq_plot_ordination", + "phyloseq_plot_richness" + ], + "Description": "Handling and analysis of high-throughput microbiome census data", + "bio.tool id": "phyloseq", + "bio.tool ids": [ + "phyloseq" + ], + "biii": null, + "bio.tool name": "phyloseq", + "bio.tool description": "Provides a set of classes and tools to facilitate the import, storage, analysis, and graphical display of microbiome census data.", + "EDAM operation": [ + "Deposition", + "Analysis", + "Visualisation" + ], + "EDAM topic": [ + "Microbiology", + "Sequence analysis", + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://www.bioconductor.org/packages/release/bioc/html/phyloseq.html", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "phyloseq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyloseq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/phyloseq", + "Galaxy wrapper version": "1.46.0", + "Conda id": "bioconductor-phyloseq", + "Conda version": "1.46.0", + "EDAM operation (no superclasses)": [ + "Deposition", + "Analysis", + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Microbiology", + "Sequence analysis", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 4, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 82, + "Total tool usage (usegalaxy.eu)": 812 + }, + { + "Galaxy wrapper id": "phyml", + "Galaxy tool ids": [ + "phyml" + ], + "Description": "PhyML is a phylogeny software based on the maximum-likelihood principle.", + "bio.tool id": "phyml", + "bio.tool ids": [ + "phyml" + ], + "biii": null, + "bio.tool name": "PhyML", + "bio.tool description": "Phylogenetic estimation software using Maximum Likelihood", + "EDAM operation": [ + "Phylogenetic tree generation (maximum likelihood and Bayesian methods)" + ], + "EDAM topic": [ + "Phylogenetics", + "Bioinformatics", + "Phylogenetics" + ], + "Status": "Up-to-date", + "Source": "http://www.atgc-montpellier.fr/phyml/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "phyml", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/phyml", + "Galaxy wrapper version": "3.3.20220408", + "Conda id": "phyml", + "Conda version": "3.3.20220408", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Phylogenetics", + "Bioinformatics", + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 104, + "Total tool usage (usegalaxy.eu)": 1770 + }, + { + "Galaxy wrapper id": "picard", + "Galaxy tool ids": [ + "picard_AddCommentsToBam", + "picard_AddOrReplaceReadGroups", + "picard_BedToIntervalList", + "picard_CleanSam", + "picard_CASM", + "picard_CollectBaseDistributionByCycle", + "picard_CollectGcBiasMetrics", + "picard_CollectHsMetrics", + "picard_CollectInsertSizeMetrics", + "picard_CollectRnaSeqMetrics", + "picard_artifact_metrics", + "picard_CollectWgsMetrics", + "picard_DownsampleSam", + "picard_EstimateLibraryComplexity", + "picard_FastqToSam", + "picard_FilterSamReads", + "picard_FixMateInformation", + "picard_MarkDuplicates", + "picard_MarkDuplicatesWithMateCigar", + "picard_MeanQualityByCycle", + "picard_MergeBamAlignment", + "picard_MergeSamFiles", + "picard_NormalizeFasta", + "picard_QualityScoreDistribution", + "picard_ReorderSam", + "picard_ReplaceSamHeader", + "picard_RevertOriginalBaseQualitiesAndAddMateCigar", + "picard_RevertSam", + "picard_SamToFastq", + "picard_SortSam", + "picard_ValidateSamFile" + ], + "Description": "Picard SAM/BAM manipulation tools.", + "bio.tool id": "picard_samtofastq", + "bio.tool ids": [ + "picard_reordersam", + "picard_replacesamheader", + "picard_fastqtosam", + "picard_samtofastq" + ], + "biii": null, + "bio.tool name": "picard_samtofastq", + "bio.tool description": "Create a FASTQ file.", + "EDAM operation": [ + "Formatting" + ], + "EDAM topic": [ + "Sequencing" + ], + "Status": "To update", + "Source": "http://broadinstitute.github.io/picard/", + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "picard", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/picard", + "Galaxy wrapper version": "3.1.1", + "Conda id": "picard", + "Conda version": "3.2.0", + "EDAM operation (no superclasses)": [ + "Formatting" + ], + "EDAM topic (no superclasses)": [ + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 31, + "Available on UseGalaxy.org.au": 31, + "Available on UseGalaxy.eu": 31, + "Available on UseGalaxy.fr": 31, + "Tools available on UseGalaxy.org (Main)": 31, + "Tools available on UseGalaxy.org.au": 31, + "Tools available on UseGalaxy.eu": 31, + "Tools available on UseGalaxy.fr": 31, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 29, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 31, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 31, + "Tools available on Galaxy@Pasteur": 4, + "Tools available on GalaxyTrakr": 31, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 31, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 31, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 31, + "Tools available on UseGalaxy.no": 31, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3735, + "Total tool usage (usegalaxy.eu)": 374458 + }, + { + "Galaxy wrapper id": "pick_value", + "Galaxy tool ids": [ + "pick_value" + ], + "Description": "Compose a text parameter value using text, integer and float values", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "pick_value", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pick_value", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pick_value", + "Galaxy wrapper version": "0.2.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 116 + }, + { + "Galaxy wrapper id": "picrust", + "Galaxy tool ids": [ + "picrust_categorize", + "picrust_compare_biom", + "picrust_format_tree_and_trait_table", + "picrust_metagenome_contributions", + "picrust_normalize_by_copy_number", + "picrust_predict_metagenomes" + ], + "Description": "PICRUSt wrappers", + "bio.tool id": "picrust", + "bio.tool ids": [ + "picrust" + ], + "biii": null, + "bio.tool name": "PICRUSt", + "bio.tool description": "PICRUSt (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a bioinformatics software package designed to predict metagenome functional content from marker gene (e.g., 16S rRNA) surveys and full genomes.", + "EDAM operation": [ + "Phylogenetic reconstruction", + "Expression analysis", + "Genome annotation", + "DNA barcoding" + ], + "EDAM topic": [ + "Metagenomics", + "Microbial ecology", + "Functional, regulatory and non-coding RNA", + "Metagenomic sequencing" + ], + "Status": "To update", + "Source": "https://picrust.github.io/picrust/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "picrust", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/picrust", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust", + "Galaxy wrapper version": "1.1.1", + "Conda id": "picrust", + "Conda version": "1.1.4", + "EDAM operation (no superclasses)": [ + "Phylogenetic reconstruction", + "Expression analysis", + "Genome annotation", + "DNA barcoding" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Microbial ecology", + "Functional, regulatory and non-coding RNA", + "Metagenomic sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 6, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 6, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 6, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 6, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 6, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 45, + "Total tool usage (usegalaxy.eu)": 1095 + }, + { + "Galaxy wrapper id": "picrust2", + "Galaxy tool ids": [ + "picrust2_add_descriptions", + "picrust2_hsp", + "picrust2_metagenome_pipeline", + "picrust2_pathway_pipeline", + "picrust2_pipeline", + "picrust2_place_seqs", + "picrust2_shuffle_predictions" + ], + "Description": "PICRUSt2: Phylogenetic Investigation of Communities by Reconstruction of Unobserved States", + "bio.tool id": "picrust2", + "bio.tool ids": [ + "picrust2" + ], + "biii": null, + "bio.tool name": "PICRUSt2", + "bio.tool description": "PICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences.", + "EDAM operation": [ + "Phylogenetic reconstruction", + "Expression analysis", + "Rarefaction", + "Pathway analysis" + ], + "EDAM topic": [ + "Metagenomics", + "Microbiology", + "Phylogenetics", + "Metagenomic sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/picrust/picrust2/wiki", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "picrust2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/picrust/picrust2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust2", + "Galaxy wrapper version": "2.5.3", + "Conda id": "picrust2", + "Conda version": "2.5.3", + "EDAM operation (no superclasses)": [ + "Phylogenetic reconstruction", + "Expression analysis", + "Rarefaction", + "Pathway analysis" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Microbiology", + "Phylogenetics", + "Metagenomic sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 7, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 7, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 88, + "Total tool usage (usegalaxy.eu)": 1000 + }, + { + "Galaxy wrapper id": "pilon", + "Galaxy tool ids": [ + "pilon" + ], + "Description": "pilon is a tool for assembly improvement and variant analysis in bacteria", + "bio.tool id": "pilon", + "bio.tool ids": [ + "pilon" + ], + "biii": null, + "bio.tool name": "pilon", + "bio.tool description": "Read alignment analysis to diagnose, report, and automatically improve de novo genome assemblies.", + "EDAM operation": [ + "Sequence assembly", + "Analysis", + "Read alignment" + ], + "EDAM topic": [ + "Assembly" + ], + "Status": "To update", + "Source": "https://github.com/broadinstitute/pilon/wiki", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "pilon", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pilon", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pilon", + "Galaxy wrapper version": "1.20.1", + "Conda id": "pilon", + "Conda version": "1.24", + "EDAM operation (no superclasses)": [ + "Sequence assembly", + "Analysis" + ], + "EDAM topic (no superclasses)": [ + "Assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 467, + "Total tool usage (usegalaxy.eu)": 7942 + }, + { + "Galaxy wrapper id": "pipelign", + "Galaxy tool ids": [ + "pipelign" + ], + "Description": "Multipe sequence alignment", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/asmmhossain/pipelign/", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "pipelign", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pipelign", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pipelign", + "Galaxy wrapper version": "0.2", + "Conda id": "pipelign", + "Conda version": "0.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 83, + "Total tool usage (usegalaxy.eu)": 983 + }, + { + "Galaxy wrapper id": "pizzly", + "Galaxy tool ids": [ + "pizzly" + ], + "Description": "Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/pmelsted/pizzly/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly", + "Galaxy wrapper version": "0.37.3.1", + "Conda id": "pizzly", + "Conda version": "0.37.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 208 + }, + { + "Galaxy wrapper id": "plasflow", + "Galaxy tool ids": [ + "PlasFlow" + ], + "Description": "PlasFlow - Prediction of plasmid sequences in metagenomic contigs.", + "bio.tool id": "plasflow", + "bio.tool ids": [ + "plasflow" + ], + "biii": null, + "bio.tool name": "PlasFlow", + "bio.tool description": "PlasFlow is a set of scripts used for prediction of plasmid sequences in metagenomic contigs.", + "EDAM operation": [ + "Sequence analysis" + ], + "EDAM topic": [ + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/smaegol/PlasFlow", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "plasflow", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/plasflow", + "Galaxy wrapper version": "1.1.0", + "Conda id": "plasflow", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [ + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 278, + "Total tool usage (usegalaxy.eu)": 22589 + }, + { + "Galaxy wrapper id": "plasmidfinder", + "Galaxy tool ids": [ + "plasmidfinder" + ], + "Description": "\"PlasmidFinder provides the detection of replicons in the WGSand assigns the plasmids under study to lineages that trace backthe information to the existing knowledge on Inc groups and suggestspossible reference plasmids for each lineage\"", + "bio.tool id": "PlasmidFinder", + "bio.tool ids": [ + "PlasmidFinder" + ], + "biii": null, + "bio.tool name": "PlasmidFinder", + "bio.tool description": "PlasmidFinder is a tool for the identification and typing of Plasmid Replicons in Whole-Genome Sequencing (WGS).", + "EDAM operation": [ + "Genome assembly", + "Scaffolding", + "Multilocus sequence typing" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Sequence assembly", + "Mapping", + "Probes and primers" + ], + "Status": "Up-to-date", + "Source": "https://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "plasmidfinder", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/plasmidfinder", + "Galaxy wrapper version": "2.1.6", + "Conda id": "plasmidfinder", + "Conda version": "2.1.6", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Scaffolding", + "Multilocus sequence typing" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Sequence assembly", + "Mapping", + "Probes and primers" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 22 + }, + { + "Galaxy wrapper id": "plink", + "Galaxy tool ids": [ + "plink" + ], + "Description": "Whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner.", + "bio.tool id": "plink", + "bio.tool ids": [ + "plink" + ], + "biii": null, + "bio.tool name": "PLINK", + "bio.tool description": "Free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner.", + "EDAM operation": [ + "Genetic variation analysis" + ], + "EDAM topic": [ + "GWAS study" + ], + "Status": "Up-to-date", + "Source": "https://www.cog-genomics.org/plink", + "ToolShed categories": [ + "Genome-Wide Association Study" + ], + "ToolShed id": "plink", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/plink", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/plink", + "Galaxy wrapper version": "1.90b6.21", + "Conda id": "plink", + "Conda version": "1.90b6.21", + "EDAM operation (no superclasses)": [ + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "GWAS study" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 46, + "Total tool usage (usegalaxy.eu)": 669 + }, + { + "Galaxy wrapper id": "polypolish", + "Galaxy tool ids": [ + "polypolish" + ], + "Description": "\"Polypolish is a tool for polishing genome assemblies with short reads.Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location).This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix.\"", + "bio.tool id": "Polypolish", + "bio.tool ids": [ + "Polypolish" + ], + "biii": null, + "bio.tool name": "Polypolish", + "bio.tool description": "Polypolish is a tool for polishing genome assemblies with short reads. Unlike other tools in this category, Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location). This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix.", + "EDAM operation": [ + "Genome assembly", + "Read mapping", + "Mapping assembly", + "Sequencing error detection" + ], + "EDAM topic": [ + "Sequence assembly", + "Sequence composition, complexity and repeats", + "Mapping" + ], + "Status": "To update", + "Source": "https://github.com/rrwick/Polypolish", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "polypolish", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/polypolish", + "Galaxy wrapper version": "0.5.0", + "Conda id": "polypolish", + "Conda version": "0.6.0", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Read mapping", + "Mapping assembly", + "Sequencing error detection" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Sequence composition, complexity and repeats", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 24, + "Total tool usage (usegalaxy.eu)": 239 + }, + { + "Galaxy wrapper id": "porechop", + "Galaxy tool ids": [ + "porechop" + ], + "Description": "Porechop - Finding and removing adapters from Oxford Nanopore reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/rrwick/Porechop", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation" + ], + "ToolShed id": "porechop", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/porechop", + "Galaxy wrapper version": null, + "Conda id": "porechop", + "Conda version": "0.2.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1046, + "Total tool usage (usegalaxy.eu)": 185468 + }, + { + "Galaxy wrapper id": "poretools", + "Galaxy tool ids": [ + "poretools_events", + "poretools_extract", + "poretools_hist", + "poretools_nucdist", + "poretools_occupancy", + "poretools_qualdist", + "poretools_qualpos", + "poretools_squiggle", + "poretools_stats", + "poretools_tabular", + "poretools_times", + "poretools_winner", + "poretools_yield_plot" + ], + "Description": "A flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis.", + "bio.tool id": "poretools", + "bio.tool ids": [ + "poretools" + ], + "biii": null, + "bio.tool name": "Poretools", + "bio.tool description": "Flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis.", + "EDAM operation": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic": [ + "DNA", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://poretools.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/poretools", + "Galaxy wrapper version": "0.6.1a1", + "Conda id": "poretools", + "Conda version": "0.6.1a1", + "EDAM operation (no superclasses)": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "DNA", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 13, + "Available on UseGalaxy.org.au": 13, + "Available on UseGalaxy.eu": 13, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 13, + "Tools available on UseGalaxy.org.au": 13, + "Tools available on UseGalaxy.eu": 13, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 13, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 13, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 13, + "Tools available on UseGalaxy.no": 13, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 409, + "Total tool usage (usegalaxy.eu)": 18773 + }, + { + "Galaxy wrapper id": "presto", + "Galaxy tool ids": [ + "presto_alignsets", + "presto_assemblepairs", + "presto_buildconsensus", + "presto_collapseseq", + "presto_filterseq", + "presto_maskprimers", + "presto_pairseq", + "presto_parseheaders", + "presto_parselog", + "presto_partition", + "prestor_abseq3" + ], + "Description": "pRESTO toolkit for immune repertoire analysis.", + "bio.tool id": "presto", + "bio.tool ids": [ + "presto" + ], + "biii": null, + "bio.tool name": "pRESTO", + "bio.tool description": "Integrated collection of platform-independent Python modules for processing raw reads from high-throughput (next-generation) sequencing of lymphocyte repertoires.", + "EDAM operation": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic": [ + "Sequencing", + "DNA", + "Immunology" + ], + "Status": "To update", + "Source": "https://presto.readthedocs.io/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "presto", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/presto", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/presto", + "Galaxy wrapper version": "0.6.2", + "Conda id": "presto", + "Conda version": "0.7.2", + "EDAM operation (no superclasses)": [ + "Nucleic acid sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "DNA", + "Immunology" + ], + "Available on UseGalaxy.org (Main)": 11, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 11, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pretext", + "Galaxy tool ids": [ + "pretext_graph", + "pretext_map", + "pretext_snapshot" + ], + "Description": "Process genome contacts maps processing images.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/wtsi-hpag/PretextSnapshot", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "suite_pretext", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pretext", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pretext", + "Galaxy wrapper version": "0.0.6", + "Conda id": "pretextgraph", + "Conda version": "0.0.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 254, + "Total tool usage (usegalaxy.eu)": 2350 + }, + { + "Galaxy wrapper id": "prinseq", + "Galaxy tool ids": [ + "prinseq" + ], + "Description": "PRINSEQ is a tool for easy and rapid quality control and data processing of metagenomic and metatranscriptomic datasets", + "bio.tool id": "prinseq", + "bio.tool ids": [ + "prinseq" + ], + "biii": null, + "bio.tool name": "PRINSEQ", + "bio.tool description": "PRINSEQ is a sequence processing tool that can be used to filter, reformat and trim genomic and metagenomic sequence data. It generates summary statistics of the input in graphical and tabular formats that can be used for quality control steps. PRINSEQ is available as both standalone and web-based versions.", + "EDAM operation": [ + "Read pre-processing", + "Sequence trimming", + "Sequence contamination filtering" + ], + "EDAM topic": [ + "Transcriptomics", + "Metagenomics", + "Genomics" + ], + "Status": "To update", + "Source": "http://prinseq.sourceforge.net/manual.html", + "ToolShed categories": [ + "Fastq Manipulation", + "Metagenomics" + ], + "ToolShed id": "prinseq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/prinseq/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/prinseq", + "Galaxy wrapper version": "@TOOL_VERSION+galaxy2", + "Conda id": "prinseq", + "Conda version": "0.20.4", + "EDAM operation (no superclasses)": [ + "Read pre-processing", + "Sequence trimming", + "Sequence contamination filtering" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 70, + "Total tool usage (usegalaxy.eu)": 7881 + }, + { + "Galaxy wrapper id": "prodigal", + "Galaxy tool ids": [ + "prodigal" + ], + "Description": "A protein-coding gene prediction software tool for bacterial and archaeal genomes", + "bio.tool id": "prodigal", + "bio.tool ids": [ + "prodigal" + ], + "biii": null, + "bio.tool name": "Prodigal", + "bio.tool description": "Fast, reliable protein-coding gene prediction for prokaryotic genomes.", + "EDAM operation": [ + "Genome annotation" + ], + "EDAM topic": [ + "Genomics", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/hyattpd/Prodigal", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "prodigal", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal", + "Galaxy wrapper version": "2.6.3", + "Conda id": "prodigal", + "Conda version": "2.6.3", + "EDAM operation (no superclasses)": [ + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 1, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "progressivemauve", + "Galaxy tool ids": [ + "progressivemauve", + "xmfa2gff3" + ], + "Description": "Mauve/ProgressiveMauve Multiple Sequence Aligner", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://darlinglab.org/mauve/user-guide/progressivemauve.html", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "progressivemauve", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/progressivemauve", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/progressivemauve", + "Galaxy wrapper version": null, + "Conda id": "progressivemauve", + "Conda version": "snapshot_2015_02_13", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 286, + "Total tool usage (usegalaxy.eu)": 1734 + }, + { + "Galaxy wrapper id": "prokka", + "Galaxy tool ids": [ + "prokka" + ], + "Description": "Rapid annotation of prokaryotic genomes", + "bio.tool id": "prokka", + "bio.tool ids": [ + "prokka" + ], + "biii": null, + "bio.tool name": "Prokka", + "bio.tool description": "Software tool to annotate bacterial, archaeal and viral genomes quickly and produce standards-compliant output files.", + "EDAM operation": [ + "Gene prediction", + "Coding region prediction", + "Genome annotation" + ], + "EDAM topic": [ + "Genomics", + "Model organisms", + "Virology" + ], + "Status": "Up-to-date", + "Source": "http://github.com/tseemann/prokka", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "prokka", + "Galaxy wrapper owner": "crs4", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/prokka/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/prokka", + "Galaxy wrapper version": "1.14.6", + "Conda id": "prokka", + "Conda version": "1.14.6", + "EDAM operation (no superclasses)": [ + "Coding region prediction", + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Model organisms", + "Virology" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3233, + "Total tool usage (usegalaxy.eu)": 371445 + }, + { + "Galaxy wrapper id": "prot-scriber", + "Galaxy tool ids": [ + "prot_scriber" + ], + "Description": "Protein annotation of short human readable descriptions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/usadellab/prot-scriber", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "prot_scriber", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/prot-scriber", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/prot-scriber", + "Galaxy wrapper version": "0.1.6", + "Conda id": "prot-scriber", + "Conda version": "0.1.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 5 + }, + { + "Galaxy wrapper id": "proteinortho", + "Galaxy tool ids": [ + "proteinortho", + "proteinortho_grab_proteins", + "proteinortho_summary" + ], + "Description": "Proteinortho is a tool to detect orthologous proteins/genes within different species.", + "bio.tool id": "proteinortho", + "bio.tool ids": [ + "proteinortho" + ], + "biii": null, + "bio.tool name": "Proteinortho", + "bio.tool description": "Proteinortho is a tool to detect orthologous genes within different species", + "EDAM operation": [ + "Sequence clustering", + "Sequence analysis" + ], + "EDAM topic": [ + "Comparative genomics" + ], + "Status": "To update", + "Source": "https://gitlab.com/paulklemm_PHD/proteinortho", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteinortho", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://gitlab.com/paulklemm_PHD/proteinortho", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/proteinortho", + "Galaxy wrapper version": "6.3.1", + "Conda id": "proteinortho", + "Conda version": "6.3.2", + "EDAM operation (no superclasses)": [ + "Sequence clustering", + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Comparative genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 200, + "Total tool usage (usegalaxy.eu)": 3320 + }, + { + "Galaxy wrapper id": "psiclass", + "Galaxy tool ids": [ + "psiclass" + ], + "Description": "PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples.", + "bio.tool id": "psiclass", + "bio.tool ids": [ + "psiclass" + ], + "biii": null, + "bio.tool name": "PsiCLASS", + "bio.tool description": "Reference-based transcriptome assembler for single or multiple RNA-seq samples", + "EDAM operation": [ + "Transcriptome assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/splicebox/PsiCLASS", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "psiclass", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclass", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass", + "Galaxy wrapper version": "1.0.3", + "Conda id": "psiclass", + "Conda version": "1.0.3", + "EDAM operation (no superclasses)": [ + "Transcriptome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 15 + }, + { + "Galaxy wrapper id": "pureclip", + "Galaxy tool ids": [ + "pureclip" + ], + "Description": "PureCLIP is an HMM based peak caller specifically designed for eCLIP/iCLIP data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/skrakau/PureCLIP", + "ToolShed categories": [ + "Sequence Analysis", + "RNA", + "CLIP-seq" + ], + "ToolShed id": "pureclip", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pureclip", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pureclip", + "Galaxy wrapper version": "1.0.4", + "Conda id": "pureclip", + "Conda version": "1.3.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 36, + "Total tool usage (usegalaxy.eu)": 1423 + }, + { + "Galaxy wrapper id": "purge_dups", + "Galaxy tool ids": [ + "purge_dups" + ], + "Description": "Purge haplotigs and overlaps in an assembly based on read depth", + "bio.tool id": "purge_dups", + "bio.tool ids": [ + "purge_dups" + ], + "biii": null, + "bio.tool name": "purge_dups", + "bio.tool description": "Identifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuences", + "EDAM operation": [ + "Genome assembly", + "Read binning", + "Scaffolding" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/dfguan/purge_dups", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "purge_dups", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dups", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups", + "Galaxy wrapper version": "1.2.6", + "Conda id": "purge_dups", + "Conda version": "1.2.6", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Read binning", + "Scaffolding" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 167, + "Total tool usage (usegalaxy.eu)": 16800 + }, + { + "Galaxy wrapper id": "pycoqc", + "Galaxy tool ids": [ + "pycoqc" + ], + "Description": "QC metrics for ONT Basecalling", + "bio.tool id": "pycoqc", + "bio.tool ids": [ + "pycoqc" + ], + "biii": null, + "bio.tool name": "pycoQC", + "bio.tool description": "PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data.", + "EDAM operation": [ + "Sequencing quality control", + "Statistical calculation" + ], + "EDAM topic": [ + "Sequence analysis", + "Data quality management", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/tleonardi/pycoQC", + "ToolShed categories": [ + "Nanopore" + ], + "ToolShed id": "pycoqc", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc", + "Galaxy wrapper version": "2.5.2", + "Conda id": "pycoqc", + "Conda version": "2.5.2", + "EDAM operation (no superclasses)": [ + "Sequencing quality control", + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis", + "Data quality management", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 350, + "Total tool usage (usegalaxy.eu)": 21123 + }, + { + "Galaxy wrapper id": "pyega3", + "Galaxy tool ids": [ + "pyega3" + ], + "Description": "EGA python client uses the EGA REST API to download authorized datasets and files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/EGA-archive/ega-download-client", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "ega_download_client", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pyega3", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pyega3", + "Galaxy wrapper version": "5.0.2", + "Conda id": "pyega3", + "Conda version": "5.2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 38, + "Total tool usage (usegalaxy.eu)": 2424 + }, + { + "Galaxy wrapper id": "pygenometracks", + "Galaxy tool ids": [ + "pygenomeTracks" + ], + "Description": "pyGenomeTracks: Standalone program and library to plot beautiful genome browser tracks.", + "bio.tool id": "pygenometracks", + "bio.tool ids": [ + "pygenometracks" + ], + "biii": null, + "bio.tool name": "pyGenomeTracks", + "bio.tool description": "reproducible plots for multivariate genomic data sets.Standalone program and library to plot beautiful genome browser tracks.pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. Currently, it is possible to plot:.", + "EDAM operation": [ + "Visualisation", + "Formatting" + ], + "EDAM topic": [ + "Model organisms", + "Imaging", + "Workflows" + ], + "Status": "To update", + "Source": "https://github.com/deeptools/pyGenomeTracks", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "pygenometracks", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pygenometracks", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pygenometracks", + "Galaxy wrapper version": "3.8", + "Conda id": "pygenometracks", + "Conda version": "3.9", + "EDAM operation (no superclasses)": [ + "Visualisation", + "Formatting" + ], + "EDAM topic (no superclasses)": [ + "Model organisms", + "Imaging", + "Workflows" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 377, + "Total tool usage (usegalaxy.eu)": 11332 + }, + { + "Galaxy wrapper id": "pysradb", + "Galaxy tool ids": [ + "pysradb_search" + ], + "Description": "pysradb allows to retrieve metadata, such as run accession numbers, from SRA and ENA based on multiple criteria.", + "bio.tool id": "pysradb", + "bio.tool ids": [ + "pysradb" + ], + "biii": null, + "bio.tool name": "pysradb", + "bio.tool description": "Python package to query next-generation sequencing metadata and data from NCBI Sequence Read Archive.", + "EDAM operation": [ + "Deposition", + "Data retrieval" + ], + "EDAM topic": [ + "Sequencing", + "Gene transcripts", + "Bioinformatics" + ], + "Status": "To update", + "Source": "https://github.com/saketkc/pysradb", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "pysradb_search", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/pysradb", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/pysradb", + "Galaxy wrapper version": "1.4.2", + "Conda id": "pysradb", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [ + "Deposition", + "Data retrieval" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Gene transcripts", + "Bioinformatics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 26, + "Total tool usage (usegalaxy.eu)": 144 + }, + { + "Galaxy wrapper id": "qfilt", + "Galaxy tool ids": [ + "qfilt" + ], + "Description": "Filter sequencing data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/veg/qfilt", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "qfilt", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/qfilt", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/qfilt", + "Galaxy wrapper version": "1.0.0+galaxy1", + "Conda id": "qfilt", + "Conda version": "0.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "qiime_add_on", + "Galaxy tool ids": [ + "qiime_collapse_samples", + "qiime_make_otu_table" + ], + "Description": "QIIME to perform microbial community analysis", + "bio.tool id": "qiime_add_on", + "bio.tool ids": [ + "qiime_add_on", + "qiime_core" + ], + "biii": null, + "bio.tool name": "qiime_add_on", + "bio.tool description": "QIIME 2 is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed.", + "EDAM operation": [ + "Demultiplexing", + "Visualisation", + "Taxonomic classification", + "Phylogenetic analysis", + "Sequencing quality control" + ], + "EDAM topic": [ + "Microbial ecology", + "Phylogeny", + "Metagenomics", + "Metatranscriptomics" + ], + "Status": "To update", + "Source": "http://www.qiime.org", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "qiime", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_add_on", + "Galaxy wrapper version": null, + "Conda id": "qiime", + "Conda version": "1.9.1", + "EDAM operation (no superclasses)": [ + "Demultiplexing", + "Visualisation", + "Taxonomic classification", + "Phylogenetic analysis", + "Sequencing quality control" + ], + "EDAM topic (no superclasses)": [ + "Microbial ecology", + "Phylogeny", + "Metagenomics", + "Metatranscriptomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 68, + "Total tool usage (usegalaxy.eu)": 1909 + }, + { + "Galaxy wrapper id": "qiime_core", + "Galaxy tool ids": [ + "qiime_align_seqs", + "qiime_alpha_diversity", + "qiime_alpha_rarefaction", + "qiime_assign_taxonomy", + "qiime_beta_diversity", + "qiime_beta_diversity_through_plots", + "qiime_compare_categories", + "qiime_core_diversity", + "qiime_count_seqs", + "qiime_extract_barcodes", + "qiime_filter_alignment", + "qiime_filter_fasta", + "qiime_filter_otus_from_otu_table", + "qiime_filter_samples_from_otu_table", + "qiime_filter_taxa_from_otu_table", + "qiime_jackknifed_beta_diversity", + "qiime_make_emperor", + "qiime_make_otu_heatmap", + "qiime_make_phylogeny", + "qiime_multiple_join_paired_ends", + "qiime_multiple_split_libraries_fastq", + "qiime_pick_closed_reference_otus", + "qiime_pick_open_reference_otus", + "qiime_pick_otus", + "qiime_pick_rep_set", + "qiime_plot_taxa_summary", + "qiime_split_libraries", + "qiime_split_libraries_fastq", + "qiime_summarize_taxa", + "qiime_summarize_taxa_through_plots", + "qiime_upgma_cluster", + "qiime_validate_mapping_file" + ], + "Description": "QIIME to perform microbial community analysis", + "bio.tool id": "qiime_core", + "bio.tool ids": [ + "qiime_core" + ], + "biii": null, + "bio.tool name": "qiime_core", + "bio.tool description": "QIIME 2™ is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed.", + "EDAM operation": [ + "Demultiplexing", + "Visualisation", + "Taxonomic classification", + "Phylogenetic analysis", + "Sequencing quality control" + ], + "EDAM topic": [ + "Microbial ecology", + "Phylogeny", + "Metagenomics", + "Metatranscriptomics" + ], + "Status": "To update", + "Source": "http://www.qiime.org", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "qiime", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_core", + "Galaxy wrapper version": null, + "Conda id": "qiime", + "Conda version": "1.9.1", + "EDAM operation (no superclasses)": [ + "Demultiplexing", + "Visualisation", + "Taxonomic classification", + "Phylogenetic analysis", + "Sequencing quality control" + ], + "EDAM topic (no superclasses)": [ + "Microbial ecology", + "Phylogeny", + "Metagenomics", + "Metatranscriptomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 32, + "Available on UseGalaxy.fr": 32, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 32, + "Tools available on UseGalaxy.fr": 32, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 31, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 31, + "Tools available on UseGalaxy.no": 31, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1155, + "Total tool usage (usegalaxy.eu)": 28681 + }, + { + "Galaxy wrapper id": "qiime_extract_viz", + "Galaxy tool ids": [ + "qiime_extract_viz" + ], + "Description": "Extract vizualization from QIIME artifacts", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.qiime.org", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "qiime_extract_viz", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiimme_extract_viz", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime_extract_viz", + "Galaxy wrapper version": "0.1.0", + "Conda id": "unzip", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "qq_tools", + "Galaxy tool ids": [ + "qq_manhattan" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://CRAN.R-project.org/package=qqman", + "ToolShed categories": [ + "Visualization", + "Variant Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/qq_tools", + "Galaxy wrapper version": "0.1.0", + "Conda id": "r-qqman", + "Conda version": "0.1.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "qualimap", + "Galaxy tool ids": [ + "qualimap_bamqc", + "qualimap_counts", + "qualimap_multi_bamqc", + "qualimap_rnaseq" + ], + "Description": "Qualimap 2 is a platform-independent application written in Java andR that facilitates the quality control of alignment sequencing data and itsderivatives like feature counts.", + "bio.tool id": "qualimap", + "bio.tool ids": [ + "qualimap" + ], + "biii": null, + "bio.tool name": "QualiMap", + "bio.tool description": "Platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data.", + "EDAM operation": [ + "Sequencing quality control" + ], + "EDAM topic": [ + "Data quality management" + ], + "Status": "Up-to-date", + "Source": "http://qualimap.bioinfo.cipf.es/", + "ToolShed categories": [ + "Sequence Analysis", + "Transcriptomics", + "SAM" + ], + "ToolShed id": "qualimap", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap", + "Galaxy wrapper version": "2.3", + "Conda id": "qualimap", + "Conda version": "2.3", + "EDAM operation (no superclasses)": [ + "Sequencing quality control" + ], + "EDAM topic (no superclasses)": [ + "Data quality management" + ], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 4, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1328, + "Total tool usage (usegalaxy.eu)": 664470 + }, + { + "Galaxy wrapper id": "quast", + "Galaxy tool ids": [ + "quast" + ], + "Description": "Quast (Quality ASsessment Tool) evaluates genome assemblies.", + "bio.tool id": "quast", + "bio.tool ids": [ + "quast" + ], + "biii": null, + "bio.tool name": "QUAST", + "bio.tool description": "QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports.", + "EDAM operation": [ + "Visualisation", + "Sequence assembly validation" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "http://quast.bioinf.spbau.ru/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "quast", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/quast", + "Galaxy wrapper version": "5.2.0", + "Conda id": "quast", + "Conda version": "5.2.0", + "EDAM operation (no superclasses)": [ + "Visualisation", + "Sequence assembly validation" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3567, + "Total tool usage (usegalaxy.eu)": 51567 + }, + { + "Galaxy wrapper id": "query_impc", + "Galaxy tool ids": [ + "query_impc" + ], + "Description": "Contains a tool to query the IMPC database.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/INFRAFRONTIERDIB/tools-iuc/tree/query_impc/tools/query_impc", + "ToolShed categories": [ + "Convert Formats", + "Web Services" + ], + "ToolShed id": "query_impc", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/INFRAFRONTIERDIB/tools-iuc/tree/query_impc/tools/query_impc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/query_impc", + "Galaxy wrapper version": "0.9.0", + "Conda id": "requests", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 1 + }, + { + "Galaxy wrapper id": "query_tabular", + "Galaxy tool ids": [ + "filter_tabular", + "query_tabular", + "sqlite_to_tabular" + ], + "Description": "Loads tabular files into a SQLite DB to perform a SQL query producing a tabular output", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabular", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabular", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/query_tabular", + "Galaxy wrapper version": "3.3.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 3, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 561, + "Total tool usage (usegalaxy.eu)": 124536 + }, + { + "Galaxy wrapper id": "quickmerge", + "Galaxy tool ids": [ + "quickmerge" + ], + "Description": "Merge long-read and hybrid assemblies to increase contiguity", + "bio.tool id": "quickmerge", + "bio.tool ids": [ + "quickmerge" + ], + "biii": null, + "bio.tool name": "quickmerge", + "bio.tool description": "Quickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads.", + "EDAM operation": [ + "Genome assembly", + "Scaffolding", + "De-novo assembly", + "Genotyping" + ], + "EDAM topic": [ + "Structural variation", + "Sequence assembly", + "DNA polymorphism", + "Whole genome sequencing", + "Genotype and phenotype" + ], + "Status": "Up-to-date", + "Source": "https://github.com/mahulchak/quickmerge", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "quickmerge", + "Galaxy wrapper owner": "galaxy-australia", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge", + "Galaxy wrapper version": "0.3", + "Conda id": "quickmerge", + "Conda version": "0.3", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Scaffolding", + "De-novo assembly", + "Genotyping" + ], + "EDAM topic (no superclasses)": [ + "Structural variation", + "Sequence assembly", + "DNA polymorphism", + "Whole genome sequencing", + "Genotype and phenotype" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "raceid", + "Galaxy tool ids": [ + "raceid_clustering", + "raceid_filtnormconf", + "raceid_inspectclusters", + "raceid_inspecttrajectory", + "raceid_trajectory" + ], + "Description": "RaceID3, StemID2, FateID - scRNA analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/dgrun/RaceID3_StemID2_package/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid", + "Galaxy wrapper version": "0.2.3", + "Conda id": "r-raceid", + "Conda version": "0.1.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 82, + "Total tool usage (usegalaxy.eu)": 4569 + }, + { + "Galaxy wrapper id": "ragtag", + "Galaxy tool ids": [ + "ragtag" + ], + "Description": "Reference-guided scaffolding of draft genomes tool.", + "bio.tool id": "ragtag", + "bio.tool ids": [ + "ragtag" + ], + "biii": null, + "bio.tool name": "ragtag", + "bio.tool description": "RagTag is a collection of software tools for scaffolding and improving modern genome assemblies.", + "EDAM operation": [ + "Genome assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/malonge/RagTag", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "ragtag", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtag", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag", + "Galaxy wrapper version": "2.1.0", + "Conda id": "ragtag", + "Conda version": "2.1.0", + "EDAM operation (no superclasses)": [ + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 237, + "Total tool usage (usegalaxy.eu)": 2833 + }, + { + "Galaxy wrapper id": "rapidnj", + "Galaxy tool ids": [ + "rapidnj" + ], + "Description": "Galaxy wrapper for the RapidNJ tool", + "bio.tool id": "rapidnj", + "bio.tool ids": [ + "rapidnj" + ], + "biii": null, + "bio.tool name": "RapidNJ", + "bio.tool description": "A tool for fast canonical neighbor-joining tree construction.", + "EDAM operation": [ + "Phylogenetic tree generation" + ], + "EDAM topic": [ + "Phylogeny" + ], + "Status": "Up-to-date", + "Source": "https://birc.au.dk/software/rapidnj/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "rapidnj", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rapidnj", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rapidnj", + "Galaxy wrapper version": "2.3.2", + "Conda id": "rapidnj", + "Conda version": "2.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Phylogeny" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 176 + }, + { + "Galaxy wrapper id": "rasusa", + "Galaxy tool ids": [ + "rasusa" + ], + "Description": "Randomly subsample sequencing reads to a specified coverage", + "bio.tool id": "rasusa", + "bio.tool ids": [ + "rasusa" + ], + "biii": null, + "bio.tool name": "rasusa", + "bio.tool description": "Produces an unbiased subsample of your reads", + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/mbhall88/rasusa", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "rasusa", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rasusa", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rasusa", + "Galaxy wrapper version": "2.0.0", + "Conda id": "rasusa", + "Conda version": "2.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "raven", + "Galaxy tool ids": [ + "raven" + ], + "Description": "Raven is a de novo genome assembler for long uncorrected reads.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/lbcb-sci/raven", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/raven", + "Galaxy wrapper version": "1.8.3", + "Conda id": "raven-assembler", + "Conda version": "1.8.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 262, + "Total tool usage (usegalaxy.eu)": 6902 + }, + { + "Galaxy wrapper id": "raxml", + "Galaxy tool ids": [ + "raxml" + ], + "Description": "RAxML - A Maximum Likelihood based phylogenetic inference", + "bio.tool id": "raxml", + "bio.tool ids": [ + "raxml" + ], + "biii": null, + "bio.tool name": "RAxML", + "bio.tool description": "A tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies.", + "EDAM operation": [ + "Sequence analysis", + "Phylogenetic tree analysis" + ], + "EDAM topic": [ + "Phylogenetics", + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://www.exelixis-lab.org/web/software/raxml/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "raxml", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/raxml", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/raxml", + "Galaxy wrapper version": "8.2.12", + "Conda id": "raxml", + "Conda version": "8.2.13", + "EDAM operation (no superclasses)": [ + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 383, + "Total tool usage (usegalaxy.eu)": 6808 + }, + { + "Galaxy wrapper id": "rcorrector", + "Galaxy tool ids": [ + "rcorrector" + ], + "Description": "Rcorrector (RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data.", + "bio.tool id": "rcorrector", + "bio.tool ids": [ + "rcorrector" + ], + "biii": null, + "bio.tool name": "Rcorrector", + "bio.tool description": "This is a kmer-based error correction method for RNA-seq data. It can also be applied to other types of sequencing data where the read coverage is non-uniform, such as single-cell sequencing.", + "EDAM operation": [ + "Sequencing error detection" + ], + "EDAM topic": [ + "RNA", + "RNA-Seq", + "Sequencing" + ], + "Status": "To update", + "Source": "https://github.com/mourisl/Rcorrector", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "rcorrector", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rcorrector", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rcorrector", + "Galaxy wrapper version": "1.0.3+galaxy1", + "Conda id": "rcorrector", + "Conda version": "1.0.7", + "EDAM operation (no superclasses)": [ + "Sequencing error detection" + ], + "EDAM topic (no superclasses)": [ + "RNA", + "RNA-Seq" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 30, + "Total tool usage (usegalaxy.eu)": 569 + }, + { + "Galaxy wrapper id": "read_it_and_keep", + "Galaxy tool ids": [ + "read_it_and_keep" + ], + "Description": "Rapid decontamination of SARS-CoV-2 sequencing reads", + "bio.tool id": "read_it_and_keep", + "bio.tool ids": [ + "read_it_and_keep" + ], + "biii": null, + "bio.tool name": "read_it_and_keep", + "bio.tool description": "Read contamination removal", + "EDAM operation": [ + "Filtering", + "Genome alignment" + ], + "EDAM topic": [ + "Pathology", + "Genomics" + ], + "Status": "To update", + "Source": "https://github.com/GenomePathogenAnalysisService/read-it-and-keep", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "read_it_and_keep", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/read-it-and-keep", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/read_it_and_keep", + "Galaxy wrapper version": "0.2.2", + "Conda id": "read-it-and-keep", + "Conda version": "0.3.0", + "EDAM operation (no superclasses)": [ + "Filtering", + "Genome alignment" + ], + "EDAM topic (no superclasses)": [ + "Pathology", + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 71, + "Total tool usage (usegalaxy.eu)": 3370 + }, + { + "Galaxy wrapper id": "recentrifuge", + "Galaxy tool ids": [ + "recentrifuge" + ], + "Description": "\"With Recentrifuge, researchers can analyze results from taxonomic classifiers using interactive charts with emphasis on the confidence level of the classifications.In addition to contamination-subtracted samples.Recentrifuge provides shared and exclusive taxa per sample,thus enabling robust contamination removal and comparative analysis in environmental and clinical metagenomics.\"", + "bio.tool id": "Recentrifuge", + "bio.tool ids": [ + "Recentrifuge" + ], + "biii": null, + "bio.tool name": "Recentrifuge", + "bio.tool description": "Robust comparative analysis and contamination removal for metagenomics.", + "EDAM operation": [ + "Taxonomic classification", + "Expression analysis", + "Cross-assembly" + ], + "EDAM topic": [ + "Metagenomics", + "Microbial ecology", + "Metagenomic sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/khyox/recentrifuge", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "recentrifuge", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/recentrifuge", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/recentrifuge", + "Galaxy wrapper version": "1.14.1", + "Conda id": "recentrifuge", + "Conda version": "1.14.1", + "EDAM operation (no superclasses)": [ + "Taxonomic classification", + "Expression analysis", + "Cross-assembly" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Microbial ecology", + "Metagenomic sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 48, + "Total tool usage (usegalaxy.eu)": 331 + }, + { + "Galaxy wrapper id": "red", + "Galaxy tool ids": [ + "red" + ], + "Description": "Red (REpeat Detector)", + "bio.tool id": "red", + "bio.tool ids": [ + "red" + ], + "biii": null, + "bio.tool name": "RED", + "bio.tool description": "This is a program to detect and visualize RNA editing events at genomic scale using next-generation sequencing data.", + "EDAM operation": [ + "RNA-Seq analysis", + "Editing" + ], + "EDAM topic": [ + "RNA", + "Sequencing", + "Data visualisation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/BioinformaticsToolsmith/Red", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "red", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/red", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/red", + "Galaxy wrapper version": "2018.09.10", + "Conda id": "red", + "Conda version": "2018.09.10", + "EDAM operation (no superclasses)": [ + "RNA-Seq analysis", + "Editing" + ], + "EDAM topic (no superclasses)": [ + "RNA", + "Sequencing", + "Data visualisation" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 88, + "Total tool usage (usegalaxy.eu)": 578 + }, + { + "Galaxy wrapper id": "repeatmasker", + "Galaxy tool ids": [ + "repeatmasker_wrapper" + ], + "Description": "RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences.", + "bio.tool id": "repeatmasker", + "bio.tool ids": [ + "repeatmasker" + ], + "biii": null, + "bio.tool name": "RepeatMasker", + "bio.tool description": "A program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. The output of the program is a detailed annotation of the repeats that are present in the query sequence as well as a modified version of the query sequence in which all the annotated repeats have been masked (default: replaced by Ns).", + "EDAM operation": [ + "Genome annotation" + ], + "EDAM topic": [ + "Sequence analysis", + "Sequence composition, complexity and repeats" + ], + "Status": "Up-to-date", + "Source": "http://www.repeatmasker.org/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "repeat_masker", + "Galaxy wrapper owner": "bgruening", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmasker", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmasker", + "Galaxy wrapper version": "4.1.5", + "Conda id": "repeatmasker", + "Conda version": "4.1.5", + "EDAM operation (no superclasses)": [ + "Genome annotation" + ], + "EDAM topic (no superclasses)": [ + "Sequence composition, complexity and repeats" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 248, + "Total tool usage (usegalaxy.eu)": 3750 + }, + { + "Galaxy wrapper id": "repeatmodeler", + "Galaxy tool ids": [ + "repeatmodeler" + ], + "Description": "RepeatModeler - Model repetitive DNA", + "bio.tool id": "repeatmodeler", + "bio.tool ids": [ + "repeatmodeler" + ], + "biii": null, + "bio.tool name": "RepeatModeler", + "bio.tool description": "De-novo repeat family identification and modeling package. At the heart of RepeatModeler are two de-novo repeat finding programs ( RECON and RepeatScout ) which employ complementary computational methods for identifying repeat element boundaries and family relationships from sequence data. RepeatModeler assists in automating the runs of RECON and RepeatScout given a genomic database and uses the output to build, refine and classify consensus models of putative interspersed repeats.", + "EDAM operation": [ + "Repeat sequence detection" + ], + "EDAM topic": [ + "Sequence composition, complexity and repeats", + "Sequence composition, complexity and repeats" + ], + "Status": "To update", + "Source": "https://www.repeatmasker.org/RepeatModeler/", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "repeatmodeler", + "Galaxy wrapper owner": "csbl", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmodeler", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmodeler", + "Galaxy wrapper version": "2.0.5", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Repeat sequence detection" + ], + "EDAM topic (no superclasses)": [ + "Sequence composition, complexity and repeats", + "Sequence composition, complexity and repeats" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 217, + "Total tool usage (usegalaxy.eu)": 1177 + }, + { + "Galaxy wrapper id": "repmatch_gff3", + "Galaxy tool ids": [ + "repmatch_gff3" + ], + "Description": "Contains a tool that matches corresponding peak-pair midpoints from separate datasets based onuser-defined criteria.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "repmatch_gff3", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/repmatch_gff3", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/repmatch_gff3", + "Galaxy wrapper version": null, + "Conda id": "matplotlib", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "reshape2", + "Galaxy tool ids": [ + "cast", + "melt" + ], + "Description": "Flexibly restructure and aggregate data using just the two functions melt and dcast", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://cran.r-project.org/web/packages/reshape2/index.html", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/reshape2", + "Galaxy wrapper version": "1.4.2", + "Conda id": "r-reshape2", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 33, + "Total tool usage (usegalaxy.eu)": 3456 + }, + { + "Galaxy wrapper id": "resize_coordinate_window", + "Galaxy tool ids": [ + "resize_coordinate_window" + ], + "Description": "Contains a tool that modifies the start and stop coordinates of GFF data, expanding the coordinate windowby a specified size.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Genomic Interval Operations" + ], + "ToolShed id": "resize_coordinate_window", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/resize_coordinate_window", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/resize_coordinate_window", + "Galaxy wrapper version": "1.0.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 85 + }, + { + "Galaxy wrapper id": "revoluzer", + "Galaxy tool ids": [ + "revoluzer_crex", + "revoluzer_distmat" + ], + "Description": "revoluzer wrappers", + "bio.tool id": "revoluzer", + "bio.tool ids": [ + "revoluzer" + ], + "biii": null, + "bio.tool name": "revoluzer", + "bio.tool description": "Various tools for genome rearrangement analysis. CREx, TreeREx, etc", + "EDAM operation": [ + "Structural variation detection" + ], + "EDAM topic": [ + "Molecular evolution", + "Phylogeny" + ], + "Status": "Up-to-date", + "Source": "https://gitlab.com/Bernt/revoluzer/", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "revoluzer", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/revoluzer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/revoluzer", + "Galaxy wrapper version": "0.1.6", + "Conda id": "revoluzer", + "Conda version": "0.1.6", + "EDAM operation (no superclasses)": [ + "Structural variation detection" + ], + "EDAM topic (no superclasses)": [ + "Molecular evolution", + "Phylogeny" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rgcca", + "Galaxy tool ids": [ + "rgcca" + ], + "Description": "multi-block analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/rgcca-factory/RGCCA", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "rgcca", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgcca", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rgcca", + "Galaxy wrapper version": "3.0.2", + "Conda id": "rgccacmd", + "Conda version": "3.0.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 44 + }, + { + "Galaxy wrapper id": "rgrnastar", + "Galaxy tool ids": [ + "rna_star", + "rna_starsolo" + ], + "Description": "RNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapper", + "bio.tool id": "star", + "bio.tool ids": [ + "star" + ], + "biii": null, + "bio.tool name": "STAR", + "bio.tool description": "Ultrafast universal RNA-seq data aligner", + "EDAM operation": [ + "Sequence alignment" + ], + "EDAM topic": [ + "RNA-Seq", + "Transcriptomics" + ], + "Status": "To update", + "Source": "https://github.com/alexdobin/STAR", + "ToolShed categories": [ + "Next Gen Mappers", + "Transcriptomics" + ], + "ToolShed id": "rgrnastar", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar", + "Galaxy wrapper version": "2.7.11a", + "Conda id": "star", + "Conda version": "2.7.11b", + "EDAM operation (no superclasses)": [ + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq", + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4015, + "Total tool usage (usegalaxy.eu)": 425658 + }, + { + "Galaxy wrapper id": "ribowaltz", + "Galaxy tool ids": [ + "ribowaltz_process", + "ribowaltz_plot" + ], + "Description": "Calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data", + "bio.tool id": "riboWaltz", + "bio.tool ids": [ + "riboWaltz" + ], + "biii": null, + "bio.tool name": "riboWaltz", + "bio.tool description": "riboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data.", + "EDAM operation": [], + "EDAM topic": [ + "Computational biology" + ], + "Status": "To update", + "Source": "https://github.com/LabTranslationalArchitectomics/riboWaltz", + "ToolShed categories": [ + "Transcriptomics", + "RNA" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltz", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz", + "Galaxy wrapper version": "1.2.0", + "Conda id": "ribowaltz", + "Conda version": "2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Computational biology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 161 + }, + { + "Galaxy wrapper id": "rnaquast", + "Galaxy tool ids": [ + "rna_quast" + ], + "Description": "rnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies.", + "bio.tool id": "rnaQUAST", + "bio.tool ids": [ + "rnaQUAST" + ], + "biii": null, + "bio.tool name": "rnaQUAST", + "bio.tool description": "Quality assessment tool for de novo transcriptome assemblies.", + "EDAM operation": [ + "De-novo assembly", + "Transcriptome assembly", + "Sequence assembly validation" + ], + "EDAM topic": [ + "Sequence assembly", + "Transcriptomics", + "RNA-seq" + ], + "Status": "Up-to-date", + "Source": "https://github.com/ablab/rnaquast", + "ToolShed categories": [ + "Assembly", + "RNA" + ], + "ToolShed id": "rnaquast", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://git.ufz.de/lehmanju/rnaquast", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast", + "Galaxy wrapper version": "2.3.0", + "Conda id": "rnaquast", + "Conda version": "2.3.0", + "EDAM operation (no superclasses)": [ + "De-novo assembly", + "Transcriptome assembly", + "Sequence assembly validation" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 109, + "Total tool usage (usegalaxy.eu)": 1110 + }, + { + "Galaxy wrapper id": "roary", + "Galaxy tool ids": [ + "roary" + ], + "Description": "Roary the pangenome pipeline", + "bio.tool id": "roary", + "bio.tool ids": [ + "roary" + ], + "biii": null, + "bio.tool name": "Roary", + "bio.tool description": "A high speed stand alone pan genome pipeline, which takes annotated assemblies in GFF3 format (produced by Prokka (Seemann, 2014)) and calculates the pan genome.", + "EDAM operation": [ + "Genome assembly" + ], + "EDAM topic": [ + "DNA", + "Genomics", + "Mapping" + ], + "Status": "Up-to-date", + "Source": "https://sanger-pathogens.github.io/Roary/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "roary", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/roary", + "Galaxy wrapper version": "3.13.0", + "Conda id": "roary", + "Conda version": "3.13.0", + "EDAM operation (no superclasses)": [ + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "DNA", + "Genomics", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 656, + "Total tool usage (usegalaxy.eu)": 12225 + }, + { + "Galaxy wrapper id": "rp2biosensor", + "Galaxy tool ids": [ + "rp2biosensor" + ], + "Description": "Build Sensing-Enabling Metabolic Pathways from RetroPath2.0 output", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/brsynth/rp2biosensor", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "rp2biosensor", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2biosensor", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rp2biosensor", + "Galaxy wrapper version": "3.2.1", + "Conda id": "rp2biosensor", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rp2paths", + "Galaxy tool ids": [ + "rp2paths" + ], + "Description": "Enumerate and seperate the different pathways generated by RetroPath2.0", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/brsynth/rp2paths", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "rp2paths", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rp2paths", + "Galaxy wrapper version": "1.5.1", + "Conda id": "rp2paths", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rpbasicdesign", + "Galaxy tool ids": [ + "rpbasicdesign" + ], + "Description": "Extracting enzyme IDs from rpSBML files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/brsynth/rpbasicdesign", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "rpbasicdesign", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rpbasicdesign", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rpbasicdesign", + "Galaxy wrapper version": "1.2.2", + "Conda id": "rpbasicdesign", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rpfba", + "Galaxy tool ids": [ + "rpfba" + ], + "Description": "Perform FBA for the RetroPath2.0 heterologous pathways", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/brsynth/rptools/releases", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "rpfba", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rpfba", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rpfba", + "Galaxy wrapper version": "5.12.3", + "Conda id": "rptools", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rptools", + "Galaxy tool ids": [ + "rptools_rpextractsink", + "rptools_rpfba", + "rptools_rpranker", + "rptools_rpreport", + "rptools_rpviz" + ], + "Description": "Suite of tools that work on rpSBML format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/brsynth/rptools", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "rptools", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rptools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rptools", + "Galaxy wrapper version": "5.13.1", + "Conda id": "rptools", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rrparser", + "Galaxy tool ids": [ + "rrparser" + ], + "Description": "Reaction Rules Parser", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/brsynth/RRParser", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "rrparser", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rrparser", + "Galaxy wrapper version": "2.5.2", + "Conda id": "rrparser", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rseqc", + "Galaxy tool ids": [ + "rseqc_FPKM_count", + "rseqc_RNA_fragment_size", + "rseqc_RPKM_saturation", + "rseqc_bam2wig", + "rseqc_bam_stat", + "rseqc_clipping_profile", + "rseqc_deletion_profile", + "rseqc_geneBody_coverage", + "rseqc_geneBody_coverage2", + "rseqc_infer_experiment", + "rseqc_inner_distance", + "rseqc_insertion_profile", + "rseqc_junction_annotation", + "rseqc_junction_saturation", + "rseqc_mismatch_profile", + "rseqc_read_GC", + "rseqc_read_NVC", + "rseqc_read_distribution", + "rseqc_read_duplication", + "rseqc_read_hexamer", + "rseqc_read_quality", + "rseqc_tin" + ], + "Description": "an RNA-seq quality control package", + "bio.tool id": "rseqc", + "bio.tool ids": [ + "rseqc" + ], + "biii": null, + "bio.tool name": "RSeQC", + "bio.tool description": "Provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc.", + "EDAM operation": [ + "Data handling" + ], + "EDAM topic": [ + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://code.google.com/p/rseqc/", + "ToolShed categories": [ + "Convert Formats", + "Sequence Analysis", + "RNA", + "Transcriptomics", + "Visualization" + ], + "ToolShed id": "rseqc", + "Galaxy wrapper owner": "nilesh", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc", + "Galaxy wrapper version": "5.0.3", + "Conda id": "rseqc", + "Conda version": "5.0.3", + "EDAM operation (no superclasses)": [ + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 22, + "Available on UseGalaxy.org.au": 22, + "Available on UseGalaxy.eu": 22, + "Available on UseGalaxy.fr": 22, + "Tools available on UseGalaxy.org (Main)": 22, + "Tools available on UseGalaxy.org.au": 22, + "Tools available on UseGalaxy.eu": 22, + "Tools available on UseGalaxy.fr": 22, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 22, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 22, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 22, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 22, + "Tools available on UseGalaxy.no": 22, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3206, + "Total tool usage (usegalaxy.eu)": 133498 + }, + { + "Galaxy wrapper id": "ruvseq", + "Galaxy tool ids": [ + "ruvseq" + ], + "Description": "Remove Unwanted Variation from RNA-Seq Data", + "bio.tool id": "ruvseq", + "bio.tool ids": [ + "ruvseq" + ], + "biii": null, + "bio.tool name": "RUVSeq", + "bio.tool description": "This package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples.", + "EDAM operation": [ + "Differential gene expression analysis" + ], + "EDAM topic": [ + "Gene expression", + "RNA-seq" + ], + "Status": "To update", + "Source": "https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "ruvseq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq", + "Galaxy wrapper version": "1.26.0", + "Conda id": "bioconductor-ruvseq", + "Conda version": "1.36.0", + "EDAM operation (no superclasses)": [ + "Differential gene expression analysis" + ], + "EDAM topic (no superclasses)": [ + "Gene expression" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 76, + "Total tool usage (usegalaxy.eu)": 1236 + }, + { + "Galaxy wrapper id": "salsa2", + "Galaxy tool ids": [ + "salsa" + ], + "Description": "A tool to scaffold long read assemblies with Hi-C", + "bio.tool id": "SALSA", + "bio.tool ids": [ + "SALSA" + ], + "biii": null, + "bio.tool name": "SALSA", + "bio.tool description": "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branch", + "EDAM operation": [ + "Genome assembly", + "De-novo assembly", + "Scaffolding" + ], + "EDAM topic": [ + "Sequence assembly", + "DNA binding sites", + "Mapping" + ], + "Status": "Up-to-date", + "Source": "https://github.com/marbl/SALSA", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "salsa", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa2", + "Galaxy wrapper version": "2.3", + "Conda id": "salsa2", + "Conda version": "2.3", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "De-novo assembly", + "Scaffolding" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "DNA binding sites", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 84, + "Total tool usage (usegalaxy.eu)": 454 + }, + { + "Galaxy wrapper id": "samblaster", + "Galaxy tool ids": [ + "samblaster" + ], + "Description": "samblaster marks duplicates and can output split and discordant alignments from SAM/BAM files", + "bio.tool id": "samblaster", + "bio.tool ids": [ + "samblaster" + ], + "biii": null, + "bio.tool name": "SAMBLASTER", + "bio.tool description": "A tool to mark duplicates and extract discordant and split reads from SAM files.", + "EDAM operation": [ + "Split read mapping" + ], + "EDAM topic": [ + "DNA", + "Sequencing", + "Mapping" + ], + "Status": "To update", + "Source": "https://github.com/GregoryFaust/samblaster", + "ToolShed categories": [ + "SAM", + "Fastq Manipulation", + "Variant Analysis" + ], + "ToolShed id": "samblaster", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/samblaster", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/samblaster", + "Galaxy wrapper version": "0.1.24", + "Conda id": "samblaster", + "Conda version": "0.1.26", + "EDAM operation (no superclasses)": [ + "Split read mapping" + ], + "EDAM topic (no superclasses)": [ + "DNA", + "Sequencing", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sansa", + "Galaxy tool ids": [ + "sansa_annotate" + ], + "Description": "Sansa is a tool for structural variant annotation.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/dellytools/sansa", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "sansa", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sansa", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sansa", + "Galaxy wrapper version": "0.2.1", + "Conda id": "sansa", + "Conda version": "0.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 18, + "Total tool usage (usegalaxy.eu)": 123 + }, + { + "Galaxy wrapper id": "sarscov2formatter", + "Galaxy tool ids": [ + "sarscov2formatter" + ], + "Description": "sarscov2formatter custom script", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/nickeener/sarscov2formatter", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "sarscov2formatter", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2formatter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2formatter", + "Galaxy wrapper version": "1.0", + "Conda id": "sarscov2formatter", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 173 + }, + { + "Galaxy wrapper id": "sarscov2summary", + "Galaxy tool ids": [ + "sarscov2summary" + ], + "Description": "sarscov2summary custom script", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/nickeener/sarscov2summary", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "sarscov2summary", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2summary", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2summary", + "Galaxy wrapper version": "0.1", + "Conda id": "sarscov2summary", + "Conda version": "0.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 140 + }, + { + "Galaxy wrapper id": "sbml2sbol", + "Galaxy tool ids": [ + "sbml2sbol" + ], + "Description": "Convert SBML to SBOL format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/neilswainston/SbmlToSbol", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "sbml2sbol", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sbml2sbol", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sbml2sbol", + "Galaxy wrapper version": "0.1.13", + "Conda id": "sbml2sbol", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "scanpy", + "Galaxy tool ids": [ + "scanpy_cluster_reduce_dimension", + "scanpy_filter", + "scanpy_inspect", + "scanpy_normalize", + "scanpy_plot", + "scanpy_remove_confounders" + ], + "Description": "Scanpy – Single-Cell Analysis in Python", + "bio.tool id": "scanpy", + "bio.tool ids": [ + "scanpy" + ], + "biii": null, + "bio.tool name": "SCANPY", + "bio.tool description": "Scalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells.", + "EDAM operation": [ + "Differential gene expression analysis" + ], + "EDAM topic": [ + "Gene expression", + "Cell biology", + "Genetics" + ], + "Status": "To update", + "Source": "https://scanpy.readthedocs.io", + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "scanpy", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy", + "Galaxy wrapper version": "1.9.6", + "Conda id": "scanpy", + "Conda version": "1.7.2", + "EDAM operation (no superclasses)": [ + "Differential gene expression analysis" + ], + "EDAM topic (no superclasses)": [ + "Gene expression", + "Cell biology", + "Genetics" + ], + "Available on UseGalaxy.org (Main)": 6, + "Available on UseGalaxy.org.au": 6, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 6, + "Tools available on UseGalaxy.org.au": 6, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 6, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 766, + "Total tool usage (usegalaxy.eu)": 51978 + }, + { + "Galaxy wrapper id": "scater", + "Galaxy tool ids": [ + "scater_create_qcmetric_ready_sce", + "scater_filter", + "scater_plot_dist_scatter", + "scater_plot_pca", + "scater_plot_tsne" + ], + "Description": "Scater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization.", + "bio.tool id": "scater", + "bio.tool ids": [ + "scater" + ], + "biii": null, + "bio.tool name": "scater", + "bio.tool description": "Pre-processing, quality control, normalization and visualization of single-cell RNA-seq data.", + "EDAM operation": [ + "Read pre-processing", + "Sequencing quality control", + "Sequence visualisation" + ], + "EDAM topic": [ + "RNA-seq", + "Quality affairs", + "Molecular genetics" + ], + "Status": "To update", + "Source": "http://bioconductor.org/packages/scater/", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Visualization" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/scater", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/scater", + "Galaxy wrapper version": "1.22.0", + "Conda id": "bioconductor-scater", + "Conda version": "1.30.1", + "EDAM operation (no superclasses)": [ + "Read pre-processing", + "Sequence visualisation" + ], + "EDAM topic (no superclasses)": [ + "Quality affairs", + "Molecular genetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 77, + "Total tool usage (usegalaxy.eu)": 1365 + }, + { + "Galaxy wrapper id": "sceasy", + "Galaxy tool ids": [ + "sceasy_convert" + ], + "Description": "Converter between difference single-cell formats", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/cellgeni/sceasy/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "sceasy_convert", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy", + "Galaxy wrapper version": "0.0.7", + "Conda id": "r-sceasy", + "Conda version": "0.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 90, + "Total tool usage (usegalaxy.eu)": 721 + }, + { + "Galaxy wrapper id": "schicexplorer", + "Galaxy tool ids": [ + "schicexplorer_schicadjustmatrix", + "schicexplorer_schiccluster", + "schicexplorer_schicclustercompartments", + "schicexplorer_schicclusterminhash", + "schicexplorer_schicclustersvl", + "schicexplorer_schicconsensusmatrices", + "schicexplorer_schiccorrectmatrices", + "schicexplorer_schiccreatebulkmatrix", + "schicexplorer_schicdemultiplex", + "schicexplorer_schicinfo", + "schicexplorer_schicmergematrixbins", + "schicexplorer_schicmergetoscool", + "schicexplorer_schicnormalize", + "schicexplorer_schicplotclusterprofiles", + "schicexplorer_schicplotconsensusmatrices", + "schicexplorer_schicqualitycontrol" + ], + "Description": "scHiCExplorer: Set of programs to process, analyze and visualize scHi-C data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/joachimwolff/schicexplorer", + "ToolShed categories": [ + "Sequence Analysis", + "Transcriptomics", + "Visualization" + ], + "ToolShed id": "schicexplorer", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer", + "Galaxy wrapper version": "4", + "Conda id": "schicexplorer", + "Conda version": "7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 16, + "Available on UseGalaxy.org.au": 16, + "Available on UseGalaxy.eu": 16, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 16, + "Tools available on UseGalaxy.org.au": 16, + "Tools available on UseGalaxy.eu": 16, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 16, + "Tools available on UseGalaxy.no": 16, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 23, + "Total tool usage (usegalaxy.eu)": 779 + }, + { + "Galaxy wrapper id": "scikit-bio", + "Galaxy tool ids": [ + "scikit_bio_diversity_beta_diversity" + ], + "Description": "scikit-bio: an open-source, BSD-licensed, python package providing data structures, algorithms, and educational resources for bioinformatics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://scikit-bio.org/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "scikit_bio", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/scikit_bio", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/scikit-bio", + "Galaxy wrapper version": "0.4.2", + "Conda id": "scikit-bio", + "Conda version": "0.4.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 1 + }, + { + "Galaxy wrapper id": "scoary", + "Galaxy tool ids": [ + "scoary" + ], + "Description": "Scoary calculates the assocations between all genes in the accessory genome and the traits.", + "bio.tool id": "scoary", + "bio.tool ids": [ + "scoary" + ], + "biii": null, + "bio.tool name": "Scoary", + "bio.tool description": "Pan-genome wide association studies and is designed to take the gene_presence_absence.csv file from Roary as well as a traits file created by the user and calculate the assocations between all genes in the accessory genome (all genes that are present in i genomes where 1 < i < N) and the traits. It reports a list of genes sorted by strength of association per trait.", + "EDAM operation": [ + "Analysis" + ], + "EDAM topic": [ + "Genotype and phenotype", + "Model organisms", + "GWAS study", + "Functional genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/AdmiralenOla/Scoary", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "scoary", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/scoary", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/scoary", + "Galaxy wrapper version": "1.6.16", + "Conda id": "scoary", + "Conda version": "1.6.16", + "EDAM operation (no superclasses)": [ + "Analysis" + ], + "EDAM topic (no superclasses)": [ + "Genotype and phenotype", + "Model organisms", + "GWAS study", + "Functional genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 61, + "Total tool usage (usegalaxy.eu)": 676 + }, + { + "Galaxy wrapper id": "scpipe", + "Galaxy tool ids": [ + "scpipe" + ], + "Description": "A flexible preprocessing pipeline for single-cell RNA-sequencing data", + "bio.tool id": "scpipe", + "bio.tool ids": [ + "scpipe" + ], + "biii": null, + "bio.tool name": "scPipe", + "bio.tool description": "A preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols.", + "EDAM operation": [ + "Genome annotation", + "Validation", + "Alignment", + "Visualisation" + ], + "EDAM topic": [ + "Gene expression", + "RNA-Seq", + "Sequencing" + ], + "Status": "To update", + "Source": "http://bioconductor.org/packages/release/bioc/html/scPipe.html", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "scpipe", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipe", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe", + "Galaxy wrapper version": "1.0.0+galaxy2", + "Conda id": "bioconductor-scpipe", + "Conda version": "2.2.0", + "EDAM operation (no superclasses)": [ + "Genome annotation", + "Validation", + "Alignment", + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Gene expression", + "RNA-Seq" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 628 + }, + { + "Galaxy wrapper id": "seacr", + "Galaxy tool ids": [ + "seacr" + ], + "Description": "SEACR is intended to call peaks and enriched regions from sparse CUT&RUN or chromatin profiling data in which background is dominated by zeroes.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/FredHutch/SEACR", + "ToolShed categories": [ + "Epigenetics", + "ChIP-seq" + ], + "ToolShed id": "seacr", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/seacr", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seacr", + "Galaxy wrapper version": "1.3", + "Conda id": "seacr", + "Conda version": "1.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 50, + "Total tool usage (usegalaxy.eu)": 3647 + }, + { + "Galaxy wrapper id": "selenzy_wrapper", + "Galaxy tool ids": [ + "selenzy_wrapper" + ], + "Description": "Performs enzyme selection from a reaction query.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/brsynth/selenzy-wrapper", + "ToolShed categories": [ + "Synthetic Biology" + ], + "ToolShed id": "selenzy_wrapper", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/selenzy_wrapper", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/selenzy_wrapper", + "Galaxy wrapper version": "0.3.0", + "Conda id": "selenzy_wrapper", + "Conda version": "0.3.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "semibin", + "Galaxy tool ids": [ + "semibin_bin", + "semibin_concatenate_fasta", + "semibin_generate_cannot_links", + "semibin_generate_sequence_features", + "semibin", + "semibin_train" + ], + "Description": "SemiBin: Semi-supervised Metagenomic Binning Using Siamese Neural Networks", + "bio.tool id": "semibin", + "bio.tool ids": [ + "semibin" + ], + "biii": null, + "bio.tool name": "SemiBin", + "bio.tool description": "Command tool for metagenomic binning with semi-supervised deep learning using information from reference genomes.", + "EDAM operation": [ + "Sequence assembly", + "Read binning" + ], + "EDAM topic": [ + "Metagenomics", + "Machine learning", + "Microbial ecology", + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://semibin.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "semibin", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/semibin", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/semibin", + "Galaxy wrapper version": "2.0.2", + "Conda id": "semibin", + "Conda version": "2.1.0", + "EDAM operation (no superclasses)": [ + "Sequence assembly", + "Read binning" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Machine learning", + "Microbial ecology", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 542 + }, + { + "Galaxy wrapper id": "seq2hla", + "Galaxy tool ids": [ + "seq2hla" + ], + "Description": "Precision HLA typing and expression from RNAseq data", + "bio.tool id": "seq2hla", + "bio.tool ids": [ + "seq2hla" + ], + "biii": null, + "bio.tool name": "Seq2HLA", + "bio.tool description": "seq2HLA is a computational tool to determine Human Leukocyte Antigen (HLA) directly from existing and future short RNA-Seq reads. It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie index comprising known HLA alleles and outputs the most likely HLA class I and class II types, a p-value for each call, and the expression of each class.", + "EDAM operation": [ + "Read mapping", + "Genetic variation analysis" + ], + "EDAM topic": [ + "Transcriptomics", + "Mapping" + ], + "Status": "Up-to-date", + "Source": "https://github.com/TRON-Bioinformatics/seq2HLA", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "seq2hla", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seq2hla", + "Galaxy wrapper version": "2.3", + "Conda id": "seq2hla", + "Conda version": "2.3", + "EDAM operation (no superclasses)": [ + "Read mapping", + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics", + "Mapping" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 288 + }, + { + "Galaxy wrapper id": "seqcomplexity", + "Galaxy tool ids": [ + "seqcomplexity" + ], + "Description": "Sequence complexity for raw reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/stevenweaver/seqcomplexity", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/stephenshank/tools-iuc/tree/seqcomplexity/tools/seqcomplexity/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqcomplexity", + "Galaxy wrapper version": "0.1.2", + "Conda id": "seqcomplexity", + "Conda version": "0.1.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 68 + }, + { + "Galaxy wrapper id": "seqkit", + "Galaxy tool ids": [ + "seqkit_fx2tab", + "seqkit_locate", + "seqkit_sort", + "seqkit_stats", + "seqkit_translate" + ], + "Description": "A cross-platform and ultrafast toolkit for FASTA/Q file manipulation", + "bio.tool id": "seqkit", + "bio.tool ids": [ + "seqkit" + ], + "biii": null, + "bio.tool name": "seqkit", + "bio.tool description": "FASTA and FASTQ are basic and ubiquitous formats for storing nucleotide and protein sequences. Common manipulations of FASTA/Q file include converting, searching, filtering, deduplication, splitting, shuffling, and sampling. Existing tools only implement some of these manipulations, and not particularly efficiently, and some are only available for certain operating systems. Furthermore, the complicated installation process of required packages and running environments can render these programs less user friendly. SeqKit demonstrates competitive performance in execution time and memory usage compared to similar tools. The efficiency and usability of SeqKit enable researchers to rapidly accomplish common FASTA/Q file manipulations.", + "EDAM operation": [ + "DNA transcription", + "Sequence trimming", + "DNA translation", + "Sequence conversion" + ], + "EDAM topic": [ + "Database management", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://bioinf.shenwei.me/seqkit/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "seqkit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqkit", + "Galaxy wrapper version": "2.8.2", + "Conda id": "seqkit", + "Conda version": "2.8.2", + "EDAM operation (no superclasses)": [ + "DNA transcription", + "Sequence trimming", + "DNA translation" + ], + "EDAM topic (no superclasses)": [ + "Database management", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 5, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 129, + "Total tool usage (usegalaxy.eu)": 1964 + }, + { + "Galaxy wrapper id": "seqprep", + "Galaxy tool ids": [ + "seqprep" + ], + "Description": "Tool for merging paired-end Illumina reads and trimming adapters.", + "bio.tool id": "seqprep", + "bio.tool ids": [ + "seqprep" + ], + "biii": null, + "bio.tool name": "SeqPrep", + "bio.tool description": "Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads.", + "EDAM operation": [ + "Nucleic acid design" + ], + "EDAM topic": [ + "Genomics", + "Sequence assembly", + "Sequencing", + "Probes and primers" + ], + "Status": "Up-to-date", + "Source": "https://github.com/jstjohn/SeqPrep", + "ToolShed categories": [ + "Fastq Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "seqprep", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprep", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep", + "Galaxy wrapper version": "1.3.2", + "Conda id": "seqprep", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [ + "Nucleic acid design" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Sequence assembly", + "Sequencing", + "Probes and primers" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "seqsero2", + "Galaxy tool ids": [ + "seqsero2" + ], + "Description": "Salmonella serotype prediction from genome sequencing data", + "bio.tool id": "seqsero2", + "bio.tool ids": [ + "seqsero2" + ], + "biii": null, + "bio.tool name": "SeqSero2", + "bio.tool description": "rapid and improved Salmonella serotype determination using whole genome sequencing data | SeqSero-Salmonella Serotyping by Whole Genome Sequencing | Salmonella Serotyping by Whole Genome Sequencing | Online version: http://www.denglab.info/SeqSero2 | Salmonella serotype prediction from genome sequencing data | Citation: SeqSero, Zhang et al. 2015; SeqSero2, Zhang et al. 2019 | Salmonella serotype derterminants databases | Upon executing the command, a directory named 'SeqSero_result_Time_your_run' will be created. Your result will be stored in 'SeqSero_result.txt' in that directory. And the assembled alleles can also be found in the directory if using \"-m a\" (allele mode)", + "EDAM operation": [ + "Genome indexing", + "Antimicrobial resistance prediction", + "Genome alignment" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Sequence assembly", + "Genomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/denglab/SeqSero2", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "seqsero2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqsero2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqsero2", + "Galaxy wrapper version": "1.3.1", + "Conda id": "seqsero2", + "Conda version": "1.3.1", + "EDAM operation (no superclasses)": [ + "Genome indexing", + "Antimicrobial resistance prediction", + "Genome alignment" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Sequence assembly", + "Genomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 12 + }, + { + "Galaxy wrapper id": "seqtk", + "Galaxy tool ids": [ + "seqtk_comp", + "seqtk_cutN", + "seqtk_dropse", + "seqtk_fqchk", + "seqtk_hety", + "seqtk_listhet", + "seqtk_mergefa", + "seqtk_mergepe", + "seqtk_mutfa", + "seqtk_randbase", + "seqtk_sample", + "seqtk_seq", + "seqtk_subseq", + "seqtk_telo", + "seqtk_trimfq" + ], + "Description": "Toolkit for processing sequences in FASTA/Q formats", + "bio.tool id": "seqtk", + "bio.tool ids": [ + "seqtk" + ], + "biii": null, + "bio.tool name": "seqtk", + "bio.tool description": "A tool for processing sequences in the FASTA or FASTQ format. It parses both FASTA and FASTQ files which can also be optionally compressed by gzip.", + "EDAM operation": [ + "Data handling", + "Sequence file editing" + ], + "EDAM topic": [ + "Data management" + ], + "Status": "Up-to-date", + "Source": "https://github.com/lh3/seqtk", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "seqtk", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqtk", + "Galaxy wrapper version": "1.4", + "Conda id": "seqtk", + "Conda version": "1.4", + "EDAM operation (no superclasses)": [ + "Data handling", + "Sequence file editing" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 15, + "Available on UseGalaxy.org.au": 15, + "Available on UseGalaxy.eu": 15, + "Available on UseGalaxy.fr": 15, + "Tools available on UseGalaxy.org (Main)": 15, + "Tools available on UseGalaxy.org.au": 15, + "Tools available on UseGalaxy.eu": 15, + "Tools available on UseGalaxy.fr": 15, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 14, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 14, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 14, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 14, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 15, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 14, + "Tools available on UseGalaxy.no": 14, + "Tools available on Viral Variant Visualizer (VVV)": 14, + "No. of tool users (2022-2023) (usegalaxy.eu)": 753, + "Total tool usage (usegalaxy.eu)": 59668 + }, + { + "Galaxy wrapper id": "seqwish", + "Galaxy tool ids": [ + "seqwish" + ], + "Description": "Alignment to variation graph inducer", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/seqwish", + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqwish/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqwish", + "Galaxy wrapper version": "0.7.5", + "Conda id": "seqwish", + "Conda version": "0.7.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 271 + }, + { + "Galaxy wrapper id": "seurat", + "Galaxy tool ids": [ + "seurat" + ], + "Description": "A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/satijalab/seurat", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "seurat", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat", + "Galaxy wrapper version": "4.3.0.1", + "Conda id": "r-seurat", + "Conda version": "3.0.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 66, + "Total tool usage (usegalaxy.eu)": 1543 + }, + { + "Galaxy wrapper id": "shasta", + "Galaxy tool ids": [ + "shasta" + ], + "Description": "Fast de novo assembly of long read sequencing data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/chanzuckerberg/shasta", + "ToolShed categories": [ + "Assembly", + "Nanopore" + ], + "ToolShed id": "shasta", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta", + "Galaxy wrapper version": "0.6.0", + "Conda id": "shasta", + "Conda version": "0.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 154, + "Total tool usage (usegalaxy.eu)": 763 + }, + { + "Galaxy wrapper id": "shorah", + "Galaxy tool ids": [ + "shorah_amplicon" + ], + "Description": "Reconstruct haplotypes using ShoRAH in amplicon mode", + "bio.tool id": "shorah", + "bio.tool ids": [ + "shorah" + ], + "biii": null, + "bio.tool name": "ShoRAH", + "bio.tool description": "Inference of a population from a set of short reads. The package contains programs that support mapping of reads to a reference genome, correcting sequencing errors by locally clustering reads in small windows of the alignment, reconstructing a minimal set of global haplotypes that explain the reads, and estimating the frequencies of the inferred haplotypes.", + "EDAM operation": [ + "Haplotype mapping", + "Variant calling" + ], + "EDAM topic": [ + "Metagenomics", + "Sequencing", + "Genetics" + ], + "Status": "To update", + "Source": "https://github.com/cbg-ethz/shorah/blob/master/README.md", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "shorah_amplicon", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/shorah", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/shorah", + "Galaxy wrapper version": "1.1.3", + "Conda id": "shorah", + "Conda version": "1.99.2", + "EDAM operation (no superclasses)": [ + "Haplotype mapping", + "Variant calling" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequencing", + "Genetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "shovill", + "Galaxy tool ids": [ + "shovill" + ], + "Description": "Faster de novo assembly pipeline based around Spades", + "bio.tool id": "shovill", + "bio.tool ids": [ + "shovill" + ], + "biii": null, + "bio.tool name": "shovill", + "bio.tool description": "Shovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too.", + "EDAM operation": [ + "Genome assembly" + ], + "EDAM topic": [ + "Genomics", + "Microbiology", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/tseemann/shovill", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "shovill", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill", + "Galaxy wrapper version": "1.1.0", + "Conda id": "shovill", + "Conda version": "1.1.0", + "EDAM operation (no superclasses)": [ + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Microbiology", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1008, + "Total tool usage (usegalaxy.eu)": 41600 + }, + { + "Galaxy wrapper id": "sickle", + "Galaxy tool ids": [ + "sickle" + ], + "Description": "A windowed adaptive trimming tool for FASTQ files using quality", + "bio.tool id": "sickle", + "bio.tool ids": [ + "sickle" + ], + "biii": null, + "bio.tool name": "sickle", + "bio.tool description": "A tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads.", + "EDAM operation": [ + "Sequence trimming" + ], + "EDAM topic": [ + "Data quality management" + ], + "Status": "To update", + "Source": "https://github.com/najoshi/sickle", + "ToolShed categories": [ + "Fastq Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "sickle", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sickle", + "Galaxy wrapper version": "1.33.2", + "Conda id": "sickle-trim", + "Conda version": "1.33", + "EDAM operation (no superclasses)": [ + "Sequence trimming" + ], + "EDAM topic (no superclasses)": [ + "Data quality management" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 269, + "Total tool usage (usegalaxy.eu)": 14982 + }, + { + "Galaxy wrapper id": "simtext", + "Galaxy tool ids": [ + "abstracts_by_pmids", + "pmids_to_pubtator_matrix", + "pubmed_by_queries", + "text_to_wordmatrix" + ], + "Description": "A text mining framework for interactive analysis and visualization of similarities among biomedical entities.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/dlal-group/simtext", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "simtext", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tools/simtext", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/simtext", + "Galaxy wrapper version": "0.0.2", + "Conda id": "r-argparse", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 34, + "Total tool usage (usegalaxy.eu)": 142 + }, + { + "Galaxy wrapper id": "sina", + "Galaxy tool ids": [ + "sina" + ], + "Description": "SINA reference based multiple sequence alignment", + "bio.tool id": "sina", + "bio.tool ids": [ + "sina" + ], + "biii": null, + "bio.tool name": "SINA", + "bio.tool description": "Aligns and optionally taxonomically classifies your rRNA gene sequences.Reference based multiple sequence alignment", + "EDAM operation": [ + "Sequence alignment analysis", + "Multiple sequence alignment", + "Taxonomic classification", + "Structure-based sequence alignment" + ], + "EDAM topic": [ + "Sequencing", + "RNA", + "Nucleic acid structure analysis", + "Taxonomy", + "Sequence analysis", + "Taxonomy" + ], + "Status": "Up-to-date", + "Source": "https://sina.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "sina", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sina", + "Galaxy wrapper version": "1.7.2", + "Conda id": "sina", + "Conda version": "1.7.2", + "EDAM operation (no superclasses)": [ + "Sequence alignment analysis", + "Multiple sequence alignment", + "Taxonomic classification", + "Structure-based sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "RNA", + "Nucleic acid structure analysis", + "Taxonomy", + "Sequence analysis", + "Taxonomy" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 42, + "Total tool usage (usegalaxy.eu)": 1128 + }, + { + "Galaxy wrapper id": "sinto", + "Galaxy tool ids": [ + "sinto_barcode", + "sinto_fragments" + ], + "Description": "Sinto single-cell analysis tools", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/timoast/sinto", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sinto", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sinto", + "Galaxy wrapper version": "0.9.0", + "Conda id": "sinto", + "Conda version": "0.10.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17, + "Total tool usage (usegalaxy.eu)": 91 + }, + { + "Galaxy wrapper id": "slamdunk", + "Galaxy tool ids": [ + "alleyoop", + "slamdunk" + ], + "Description": "Slamdunk maps and quantifies SLAMseq reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://t-neumann.github.io/slamdunk", + "ToolShed categories": [ + "RNA", + "Transcriptomics", + "Sequence Analysis", + "Next Gen Mappers" + ], + "ToolShed id": "slamdunk", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunk", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk", + "Galaxy wrapper version": "0.4.3", + "Conda id": "slamdunk", + "Conda version": "0.4.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 361 + }, + { + "Galaxy wrapper id": "sleuth", + "Galaxy tool ids": [ + "sleuth" + ], + "Description": "Sleuth is a program for differential analysis of RNA-Seq data.", + "bio.tool id": "sleuth", + "bio.tool ids": [ + "sleuth" + ], + "biii": null, + "bio.tool name": "sleuth", + "bio.tool description": "A statistical model and software application for RNA-seq differential expression analysis.", + "EDAM operation": [ + "Expression data visualisation", + "Differential gene expression analysis", + "Gene expression profiling", + "Statistical calculation" + ], + "EDAM topic": [ + "RNA-seq", + "Gene expression", + "Statistics and probability" + ], + "Status": "Up-to-date", + "Source": "https://github.com/pachterlab/sleuth", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "sleuth", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuth", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth", + "Galaxy wrapper version": "0.30.1", + "Conda id": "r-sleuth", + "Conda version": "0.30.1", + "EDAM operation (no superclasses)": [ + "Expression data visualisation", + "Differential gene expression analysis", + "Gene expression profiling", + "Statistical calculation" + ], + "EDAM topic (no superclasses)": [ + "Gene expression", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 64 + }, + { + "Galaxy wrapper id": "smallgenomeutilities", + "Galaxy tool ids": [ + "smgu_frameshift_deletions_checks" + ], + "Description": "Set of utilities for manipulating small viral genome data.", + "bio.tool id": "v-pipe", + "bio.tool ids": [ + "v-pipe" + ], + "biii": null, + "bio.tool name": "V-pipe", + "bio.tool description": "Bioinformatics pipeline for the analysis of next-generation sequencing data derived from intra-host viral populations.", + "EDAM operation": [ + "Read pre-processing", + "Sequence alignment", + "Genetic variation analysis" + ], + "EDAM topic": [ + "Genomics", + "Population genetics", + "Workflows", + "Virology", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/cbg-ethz/smallgenomeutilities", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "smallgenomeutilities", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/smallgenomeutilities", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/smallgenomeutilities", + "Galaxy wrapper version": "0.4.1", + "Conda id": "smallgenomeutilities", + "Conda version": "0.4.1", + "EDAM operation (no superclasses)": [ + "Read pre-processing", + "Sequence alignment", + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Population genetics", + "Workflows", + "Virology", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 121 + }, + { + "Galaxy wrapper id": "smudgeplot", + "Galaxy tool ids": [ + "smudgeplot" + ], + "Description": "Inference of ploidy and heterozygosity structure using whole genome sequencing", + "bio.tool id": "smudgeplots", + "bio.tool ids": [ + "smudgeplots" + ], + "biii": null, + "bio.tool name": "Smudgeplots", + "bio.tool description": "Reference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568", + "EDAM operation": [ + "Sequence trimming", + "Genotyping", + "k-mer counting" + ], + "EDAM topic": [ + "Sequence assembly", + "Genetic variation", + "Mathematics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/KamilSJaron/smudgeplot", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "smudgeplot", + "Galaxy wrapper owner": "galaxy-australia", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot", + "Galaxy wrapper version": "0.2.5", + "Conda id": "smudgeplot", + "Conda version": "0.2.5", + "EDAM operation (no superclasses)": [ + "Sequence trimming", + "Genotyping", + "k-mer counting" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly", + "Genetic variation", + "Mathematics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 22, + "Total tool usage (usegalaxy.eu)": 203 + }, + { + "Galaxy wrapper id": "snap", + "Galaxy tool ids": [ + "snap", + "snap_training" + ], + "Description": "SNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes.", + "bio.tool id": "snap", + "bio.tool ids": [ + "snap" + ], + "biii": null, + "bio.tool name": "SNAP", + "bio.tool description": "The Semi-HMM-based Nucleic Acid Parser is a gene prediction tool.", + "EDAM operation": [ + "Gene prediction" + ], + "EDAM topic": [ + "DNA", + "DNA polymorphism", + "Genetics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/KorfLab/SNAP", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "snap", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/snap", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snap", + "Galaxy wrapper version": "2013_11_29", + "Conda id": "snap", + "Conda version": "2013_11_29", + "EDAM operation (no superclasses)": [ + "Gene prediction" + ], + "EDAM topic (no superclasses)": [ + "DNA polymorphism", + "Genetics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 133, + "Total tool usage (usegalaxy.eu)": 1349 + }, + { + "Galaxy wrapper id": "snapatac2", + "Galaxy tool ids": [ + "snapatac2_clustering", + "snapatac2_peaks_and_motif", + "snapatac2_plotting", + "snapatac2_preprocessing" + ], + "Description": "SnapATAC2 – A Python/Rust package for single-cell epigenomics analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://kzhang.org/SnapATAC2/", + "ToolShed categories": [ + "Epigenetics", + "Sequence Analysis" + ], + "ToolShed id": "snapatac2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/snapatac2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snapatac2", + "Galaxy wrapper version": "2.6.4", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sniffles", + "Galaxy tool ids": [ + "sniffles" + ], + "Description": "Galaxy wrapper for sniffles", + "bio.tool id": "sniffles", + "bio.tool ids": [ + "sniffles" + ], + "biii": null, + "bio.tool name": "Sniffles", + "bio.tool description": "An algorithm for structural variation detection from third generation sequencing alignment.", + "EDAM operation": [ + "Sequence analysis", + "Structural variation detection" + ], + "EDAM topic": [ + "DNA structural variation", + "Sequencing" + ], + "Status": "To update", + "Source": "https://github.com/fritzsedlazeck/Sniffles", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "sniffles", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sniffles", + "Galaxy wrapper version": "1.0.12", + "Conda id": "sniffles", + "Conda version": "2.4", + "EDAM operation (no superclasses)": [ + "Sequence analysis", + "Structural variation detection" + ], + "EDAM topic (no superclasses)": [ + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 58, + "Total tool usage (usegalaxy.eu)": 919 + }, + { + "Galaxy wrapper id": "snipit", + "Galaxy tool ids": [ + "snipit" + ], + "Description": "Summarise snps relative to a reference sequence", + "bio.tool id": "snipit", + "bio.tool ids": [ + "snipit" + ], + "biii": null, + "bio.tool name": "snipit", + "bio.tool description": "Summarise snps relative to a reference sequence", + "EDAM operation": [ + "Base position variability plotting" + ], + "EDAM topic": [ + "Virology" + ], + "Status": "Up-to-date", + "Source": "https://github.com/aineniamh/snipit", + "ToolShed categories": [ + "Variant Analysis", + "Sequence Analysis" + ], + "ToolShed id": "snipit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snipit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snipit", + "Galaxy wrapper version": "1.2", + "Conda id": "snipit", + "Conda version": "1.2", + "EDAM operation (no superclasses)": [ + "Base position variability plotting" + ], + "EDAM topic (no superclasses)": [ + "Virology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 22, + "Total tool usage (usegalaxy.eu)": 669 + }, + { + "Galaxy wrapper id": "snippy", + "Galaxy tool ids": [ + "snippy_core", + "snippy", + "snippy_clean_full_aln" + ], + "Description": "Contains the snippy tool for characterising microbial snps", + "bio.tool id": "snippy", + "bio.tool ids": [ + "snippy" + ], + "biii": null, + "bio.tool name": "snippy", + "bio.tool description": "Rapid haploid variant calling and core SNP phylogeny generation.", + "EDAM operation": [ + "Phylogenetic tree visualisation", + "Phylogenetic tree generation", + "Variant calling" + ], + "EDAM topic": [ + "Genomics", + "Model organisms", + "DNA polymorphism", + "Phylogenetics" + ], + "Status": "To update", + "Source": "https://github.com/tseemann/snippy", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "snippy", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/snippy", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snippy", + "Galaxy wrapper version": null, + "Conda id": "snippy", + "Conda version": "4.6.0", + "EDAM operation (no superclasses)": [ + "Phylogenetic tree visualisation", + "Variant calling" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Model organisms", + "DNA polymorphism", + "Phylogenetics" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1372, + "Total tool usage (usegalaxy.eu)": 105708 + }, + { + "Galaxy wrapper id": "snp-dists", + "Galaxy tool ids": [ + "snp_dists" + ], + "Description": "Compute pairwise SNP distance matrix from a FASTA sequence alignment", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/tseemann/snp-dists", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "snp_dists", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/snp-dists", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snp-dists", + "Galaxy wrapper version": "0.8.2", + "Conda id": "snp-dists", + "Conda version": "0.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 367, + "Total tool usage (usegalaxy.eu)": 4558 + }, + { + "Galaxy wrapper id": "snp-sites", + "Galaxy tool ids": [ + "snp_sites" + ], + "Description": "Finds SNP sites from a multi-FASTA alignment file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/sanger-pathogens/snp-sites", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "snp_sites", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/snp-sites", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snp-sites", + "Galaxy wrapper version": "2.5.1", + "Conda id": "snp-sites", + "Conda version": "2.5.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 284, + "Total tool usage (usegalaxy.eu)": 5107 + }, + { + "Galaxy wrapper id": "snpeff-covid19", + "Galaxy tool ids": [ + "snpeff_sars_cov_2" + ], + "Description": "SnpEff, the COVID-19 version, is a genetic variant annotation and effect prediction toolbox", + "bio.tool id": "snpeff", + "bio.tool ids": [ + "snpeff" + ], + "biii": null, + "bio.tool name": "snpEff", + "bio.tool description": "Variant annotation and effect prediction tool. It annotates and predicts the effects of variants on genes and proteins (such as amino acid changes).", + "EDAM operation": [ + "SNP detection" + ], + "EDAM topic": [ + "DNA polymorphism", + "Genetic variation", + "Nucleic acid sites, features and motifs" + ], + "Status": "To update", + "Source": "http://snpeff.sourceforge.net/", + "ToolShed categories": [ + "Genome-Wide Association Study", + "Variant Analysis" + ], + "ToolShed id": "snpeff_sars_cov_2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snpeff-covid19", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "SNP detection" + ], + "EDAM topic (no superclasses)": [ + "DNA polymorphism", + "Nucleic acid sites, features and motifs" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 533, + "Total tool usage (usegalaxy.eu)": 760352 + }, + { + "Galaxy wrapper id": "snpfreqplot", + "Galaxy tool ids": [ + "snpfreqplot" + ], + "Description": "A plotting app to visualise the SNPs across a region", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/BrownfieldPlantLab/SNPFreqPlot", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "snpfreqplot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/snpfreqplot/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/snpfreqplot", + "Galaxy wrapper version": "1.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 156, + "Total tool usage (usegalaxy.eu)": 3530 + }, + { + "Galaxy wrapper id": "socru", + "Galaxy tool ids": [ + "socru" + ], + "Description": "Order and orientation of complete bacterial genomes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/quadram-institute-bioscience/socru", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "socru", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/socru", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/socru", + "Galaxy wrapper version": "2.1.7", + "Conda id": "socru", + "Conda version": "2.2.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 621 + }, + { + "Galaxy wrapper id": "sonneityping", + "Galaxy tool ids": [ + "sonneityping" + ], + "Description": "Scripts for parsing Mykrobe predict results for Shigella sonnei.", + "bio.tool id": "sonneityping", + "bio.tool ids": [ + "sonneityping" + ], + "biii": null, + "bio.tool name": "sonneityping", + "bio.tool description": "Scripts for parsing Mykrobe predict results for Shigella sonnei.", + "EDAM operation": [ + "Antimicrobial resistance prediction", + "Variant calling", + "Genotyping" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Genotype and phenotype", + "Genetic variation", + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/katholt/sonneityping", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "sonneityping", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/katholt/sonneityping", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sonneityping", + "Galaxy wrapper version": "20210201", + "Conda id": "sonneityping", + "Conda version": "20210201", + "EDAM operation (no superclasses)": [ + "Antimicrobial resistance prediction", + "Variant calling", + "Genotyping" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Genotype and phenotype", + "Genetic variation", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 1 + }, + { + "Galaxy wrapper id": "spades", + "Galaxy tool ids": [ + "spades_biosyntheticspades", + "spades_coronaspades", + "spades_metaplasmidspades", + "metaspades", + "spades_metaviralspades", + "spades_plasmidspades", + "rnaspades", + "spades_rnaviralspades", + "spades" + ], + "Description": "SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction.", + "bio.tool id": "spades", + "bio.tool ids": [ + "coronaspades", + "biosyntheticspades", + "metaplasmidspades", + "plasmidspades", + "metaspades", + "rnaspades", + "metaviralspades", + "rnaviralspades", + "spades" + ], + "biii": null, + "bio.tool name": "SPAdes", + "bio.tool description": "St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads.", + "EDAM operation": [ + "Genome assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://github.com/ablab/spades", + "ToolShed categories": [ + "Assembly", + "RNA", + "Metagenomics" + ], + "ToolShed id": "spades", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/spades", + "Galaxy wrapper version": "3.15.5", + "Conda id": "spades", + "Conda version": "4.0.0", + "EDAM operation (no superclasses)": [ + "Genome assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 9, + "Available on UseGalaxy.org.au": 9, + "Available on UseGalaxy.eu": 9, + "Available on UseGalaxy.fr": 9, + "Tools available on UseGalaxy.org (Main)": 9, + "Tools available on UseGalaxy.org.au": 9, + "Tools available on UseGalaxy.eu": 9, + "Tools available on UseGalaxy.fr": 9, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 3, + "Tools available on GalaxyTrakr": 8, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 3, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 9, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3547, + "Total tool usage (usegalaxy.eu)": 72953 + }, + { + "Galaxy wrapper id": "spaln", + "Galaxy tool ids": [ + "list_spaln_tables", + "spaln" + ], + "Description": "Spaln (space-efficient spliced alignment) maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://www.genome.ist.i.kyoto-u.ac.jp/~aln_user/spaln/", + "ToolShed categories": [ + "Sequence Analysis", + "Genome annotation" + ], + "ToolShed id": "spaln", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/ogotoh/spaln", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/spaln", + "Galaxy wrapper version": "2.4.9", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 34, + "Total tool usage (usegalaxy.eu)": 446 + }, + { + "Galaxy wrapper id": "spapros", + "Galaxy tool ids": [ + "spapros", + "spapros" + ], + "Description": "Select and evaluate probe sets for targeted spatial transcriptomics.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/theislab/spapros", + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "spapros", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/spapros/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/spapros", + "Galaxy wrapper version": "0.1.5", + "Conda id": "spapros", + "Conda version": "0.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "spotyping", + "Galaxy tool ids": [ + "spotyping" + ], + "Description": "SpoTyping allows fast and accurate in silico Mycobacterium spoligotyping from sequence reads", + "bio.tool id": "spotyping", + "bio.tool ids": [ + "spotyping" + ], + "biii": null, + "bio.tool name": "SpoTyping", + "bio.tool description": "Fast and accurate in silico Mycobacterium spoligotyping from sequence reads.", + "EDAM operation": [ + "Variant pattern analysis" + ], + "EDAM topic": [ + "Microbiology", + "Sequencing", + "Sequence composition, complexity and repeats", + "Genetic variation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/xiaeryu/SpoTyping-v2.0", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "spotyping", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/xiaeryu/SpoTyping-v2.0/tree/master/SpoTyping-v2.0-commandLine", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/spotyping", + "Galaxy wrapper version": "2.1", + "Conda id": "spotyping", + "Conda version": "2.1", + "EDAM operation (no superclasses)": [ + "Variant pattern analysis" + ], + "EDAM topic (no superclasses)": [ + "Microbiology", + "Sequencing", + "Sequence composition, complexity and repeats", + "Genetic variation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 1278 + }, + { + "Galaxy wrapper id": "spyboat", + "Galaxy tool ids": [ + "spyboat" + ], + "Description": "Wavelet analysis for 3d-image stacks", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://github.com/tensionhead/spyboat", + "ToolShed categories": [ + "Imaging", + "Graphics" + ], + "ToolShed id": "spyboat", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/packages/spyboat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/spyboat", + "Galaxy wrapper version": "0.1.2", + "Conda id": "spyboat", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 67 + }, + { + "Galaxy wrapper id": "sra-tools", + "Galaxy tool ids": [ + "fasterq_dump", + "fastq_dump", + "sam_dump" + ], + "Description": "NCBI Sequence Read Archive toolkit utilities", + "bio.tool id": "sra-tools", + "bio.tool ids": [ + "sra-tools" + ], + "biii": null, + "bio.tool name": "SRA Software Toolkit", + "bio.tool description": "The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives.", + "EDAM operation": [ + "Data handling" + ], + "EDAM topic": [ + "DNA", + "Genomics", + "Sequencing" + ], + "Status": "Up-to-date", + "Source": "https://github.com/ncbi/sra-tools", + "ToolShed categories": [ + "Data Source", + "Fastq Manipulation" + ], + "ToolShed id": "sra_tools", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/sra-tools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/sra-tools", + "Galaxy wrapper version": "3.1.1", + "Conda id": "sra-tools", + "Conda version": "3.1.1", + "EDAM operation (no superclasses)": [ + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "DNA", + "Genomics", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 3, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 3, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6247, + "Total tool usage (usegalaxy.eu)": 350032 + }, + { + "Galaxy wrapper id": "srst2", + "Galaxy tool ids": [ + "srst2" + ], + "Description": "SRST2 Short Read Sequence Typing for Bacterial Pathogens", + "bio.tool id": "srst2", + "bio.tool ids": [ + "srst2" + ], + "biii": null, + "bio.tool name": "srst2", + "bio.tool description": "Short Read Sequence Typing for Bacterial Pathogens", + "EDAM operation": [ + "Multilocus sequence typing" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Public health and epidemiology" + ], + "Status": "To update", + "Source": "http://katholt.github.io/srst2/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "srst2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/katholt/srst2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/srst2", + "Galaxy wrapper version": "0.2.0", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [ + "Multilocus sequence typing" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Public health and epidemiology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 22, + "Total tool usage (usegalaxy.eu)": 205 + }, + { + "Galaxy wrapper id": "stacks", + "Galaxy tool ids": [ + "stacks_assembleperead", + "stacks_clonefilter", + "stacks_cstacks", + "stacks_denovomap", + "stacks_genotypes", + "stacks_populations", + "stacks_procrad", + "stacks_pstacks", + "stacks_refmap", + "stacks_rxstacks", + "stacks_sstacks", + "stacks_stats", + "stacks_ustacks" + ], + "Description": "Stacks is a software pipeline for building loci from short-read sequences, such as RAD-seq", + "bio.tool id": "stacks", + "bio.tool ids": [ + "stacks" + ], + "biii": null, + "bio.tool name": "Stacks", + "bio.tool description": "Developed to work with restriction enzyme based sequence data, such as RADseq, for building genetic maps and conducting population genomics and phylogeography analysis.", + "EDAM operation": [ + "Data handling" + ], + "EDAM topic": [ + "Mapping", + "Population genetics" + ], + "Status": "To update", + "Source": "http://catchenlab.life.illinois.edu/stacks/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "stacks", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/stacks", + "Galaxy wrapper version": null, + "Conda id": "stacks", + "Conda version": "2.65", + "EDAM operation (no superclasses)": [ + "Data handling" + ], + "EDAM topic (no superclasses)": [ + "Mapping", + "Population genetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 13, + "Available on UseGalaxy.eu": 13, + "Available on UseGalaxy.fr": 12, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 13, + "Tools available on UseGalaxy.eu": 13, + "Tools available on UseGalaxy.fr": 12, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 13, + "Tools available on UseGalaxy.no": 13, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 152, + "Total tool usage (usegalaxy.eu)": 11635 + }, + { + "Galaxy wrapper id": "stacks2", + "Galaxy tool ids": [ + "stacks2_clonefilter", + "stacks2_cstacks", + "stacks2_denovomap", + "stacks2_gstacks", + "stacks2_kmerfilter", + "stacks2_populations", + "stacks2_procrad", + "stacks2_refmap", + "stacks2_shortreads", + "stacks2_sstacks", + "stacks2_tsv2bam", + "stacks2_ustacks" + ], + "Description": "Stacks is a software pipeline for building loci from short-read sequences, such as RAD-seq", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://catchenlab.life.illinois.edu/stacks/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/stacks2", + "Galaxy wrapper version": "2.55", + "Conda id": "stacks", + "Conda version": "2.65", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 12, + "Available on UseGalaxy.eu": 12, + "Available on UseGalaxy.fr": 12, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 12, + "Tools available on UseGalaxy.eu": 12, + "Tools available on UseGalaxy.fr": 12, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 12, + "Tools available on UseGalaxy.no": 12, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 238, + "Total tool usage (usegalaxy.eu)": 7292 + }, + { + "Galaxy wrapper id": "star_fusion", + "Galaxy tool ids": [ + "star_fusion" + ], + "Description": "STAR Fusion detects fusion genes in RNA-Seq data after running RNA-STAR", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/STAR-Fusion/STAR-Fusion", + "ToolShed categories": [ + "Sequence Analysis", + "Transcriptomics" + ], + "ToolShed id": "star_fusion", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusion", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion", + "Galaxy wrapper version": "0.5.4-3+galaxy1", + "Conda id": "star-fusion", + "Conda version": "1.13.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 35, + "Total tool usage (usegalaxy.eu)": 1212 + }, + { + "Galaxy wrapper id": "straindesign", + "Galaxy tool ids": [ + "straindesign_analyzing_model", + "straindesign_reduce_model", + "straindesign_simulate_deletion" + ], + "Description": "Toolbox to optimize biological model", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/brsynth/straindesign", + "ToolShed categories": [ + "Systems Biology", + "Synthetic Biology" + ], + "ToolShed id": "straindesign", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/brsynth/straindesign", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/straindesign", + "Galaxy wrapper version": "3.2.2", + "Conda id": "straindesign", + "Conda version": "3.2.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "strelka", + "Galaxy tool ids": [ + "strelka_germline", + "strelka_somatic" + ], + "Description": "Strelka2 is a fast and accurate small variant caller optimizedfor analysis of germline variation in small cohorts and somaticvariation in tumor/normal sample pairs. The germline caller employs anefficient tiered haplotype model to improve accuracy and provide read-backedphasing, adaptively selecting between assembly and a faster alignment-basedhaplotyping approach at each variant locus. The germline caller also analyzesinput sequencing data using a mixture-model indel error estimation method toimprove robustness to indel noise. The somatic calling model improves on theoriginal Strelka method for liquid and late-stage tumor analysis by accountingfor possible tumor cell contamination in the normal sample. A final empiricalvariant re-scoring step using random forest models trained on various callquality features has been added to both callers to further improve precision.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/Illumina/strelka/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "strelka", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/strelka", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/strelka", + "Galaxy wrapper version": "2.9.10", + "Conda id": "strelka", + "Conda version": "2.9.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 53, + "Total tool usage (usegalaxy.eu)": 549 + }, + { + "Galaxy wrapper id": "stringtie", + "Galaxy tool ids": [ + "stringtie", + "stringtie_merge" + ], + "Description": "StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts.", + "bio.tool id": "stringtie", + "bio.tool ids": [ + "stringtie" + ], + "biii": null, + "bio.tool name": "StringTie", + "bio.tool description": "Fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus.", + "EDAM operation": [ + "Transcriptome assembly", + "RNA-Seq analysis" + ], + "EDAM topic": [ + "Transcriptomics", + "RNA-seq" + ], + "Status": "Up-to-date", + "Source": "http://ccb.jhu.edu/software/stringtie/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "stringtie", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie", + "Galaxy wrapper version": "2.2.3", + "Conda id": "stringtie", + "Conda version": "2.2.3", + "EDAM operation (no superclasses)": [ + "Transcriptome assembly", + "RNA-Seq analysis" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2165, + "Total tool usage (usegalaxy.eu)": 167659 + }, + { + "Galaxy wrapper id": "structure", + "Galaxy tool ids": [ + "structure" + ], + "Description": "for using multi-locus genotype data to investigate population structure.", + "bio.tool id": "structure", + "bio.tool ids": [ + "structure" + ], + "biii": null, + "bio.tool name": "Structure", + "bio.tool description": "The program structureis a free software package for using multi-locus genotype data to investigate population structure. Its uses include inferring the presence of distinct populations, assigning individuals to populations, studying hybrid zones, identifying migrants and admixed individuals, and estimating population allele frequencies in situations where many individuals are migrants or admixed.", + "EDAM operation": [ + "Genetic variation analysis" + ], + "EDAM topic": [ + "Population genetics" + ], + "Status": "Up-to-date", + "Source": "https://web.stanford.edu/group/pritchardlab/structure.html", + "ToolShed categories": [ + "Phylogenetics", + "Variant Analysis" + ], + "ToolShed id": "structure", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/structure", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/structure", + "Galaxy wrapper version": "2.3.4", + "Conda id": "structure", + "Conda version": "2.3.4", + "EDAM operation (no superclasses)": [ + "Genetic variation analysis" + ], + "EDAM topic (no superclasses)": [ + "Population genetics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 59, + "Total tool usage (usegalaxy.eu)": 2623 + }, + { + "Galaxy wrapper id": "structureharvester", + "Galaxy tool ids": [ + "structureharvester" + ], + "Description": "for parsing STRUCTURE outputs and for performing the Evanno method", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://alumni.soe.ucsc.edu/~dearl/software/structureHarvester/", + "ToolShed categories": [ + "Phylogenetics", + "Variant Analysis" + ], + "ToolShed id": "structureharvester", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/structureharvester", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/structureharvester", + "Galaxy wrapper version": "0.6.94", + "Conda id": "structureharvester", + "Conda version": "0.6.94", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "swift", + "Galaxy tool ids": [ + "swiftlink" + ], + "Description": "Parallel MCMC Linkage Analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/ajm/swiftlink", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "swiftlink", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/swiftlink/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/swift", + "Galaxy wrapper version": "1.0", + "Conda id": "swiftlink", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "syndiva", + "Galaxy tool ids": [ + "syndiva" + ], + "Description": "SynDivA was developed to analyze the diversity of synthetic libraries of a Fibronectin domain.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "syndiva", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/SynDivA", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/syndiva", + "Galaxy wrapper version": "1.0", + "Conda id": "clustalo", + "Conda version": "1.2.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 30 + }, + { + "Galaxy wrapper id": "table_compute", + "Galaxy tool ids": [ + "table_compute" + ], + "Description": "Perform general-purpose table operations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/table_compute", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "table_compute", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/table_compute", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/table_compute", + "Galaxy wrapper version": "1.2.4", + "Conda id": "pandas", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 741, + "Total tool usage (usegalaxy.eu)": 208652 + }, + { + "Galaxy wrapper id": "tag_pileup_frequency", + "Galaxy tool ids": [ + "tag_pileup_frequency" + ], + "Description": "Contains a tool that generates a frequency pileup of the 5' ends of aligned reads in a BAM filerelative to reference points in a BED file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/tagpileup", + "ToolShed categories": [ + "Statistics", + "SAM", + "Genomic Interval Operations" + ], + "ToolShed id": "tag_pileup_frequency", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tag_pileup_frequency", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tag_pileup_frequency", + "Galaxy wrapper version": "1.0.2", + "Conda id": "openjdk", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 164 + }, + { + "Galaxy wrapper id": "tasmanian_mismatch", + "Galaxy tool ids": [ + "tasmanian_mismatch" + ], + "Description": "Analysis of positional mismatches", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/nebiolabs/tasmanian-mismatch", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "tasmanian_mismatch", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tasmanian_mismatch", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tasmanian_mismatch", + "Galaxy wrapper version": "1.0.7", + "Conda id": "tasmanian-mismatch", + "Conda version": "1.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "taxonkit", + "Galaxy tool ids": [ + "name2taxid", + "profile2cami" + ], + "Description": "TaxonKit - A Practical and Efficient NCBI Taxonomy Toolkit", + "bio.tool id": "taxonkit", + "bio.tool ids": [ + "taxonkit" + ], + "biii": null, + "bio.tool name": "TaxonKit", + "bio.tool description": "TaxonKit is a practical and efficient NCBI taxonomy toolkit.", + "EDAM operation": [ + "Formatting", + "Data retrieval" + ], + "EDAM topic": [ + "Taxonomy", + "Biotechnology", + "Ecology" + ], + "Status": "Up-to-date", + "Source": "https://bioinf.shenwei.me/taxonkit/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "taxonkit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/shenwei356/taxonkit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonkit", + "Galaxy wrapper version": "0.17.0", + "Conda id": "taxonkit", + "Conda version": "0.17.0", + "EDAM operation (no superclasses)": [ + "Formatting", + "Data retrieval" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy", + "Biotechnology", + "Ecology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "taxonomy_filter_refseq", + "Galaxy tool ids": [ + "taxonomy_filter_refseq" + ], + "Description": "Filter RefSeq by taxonomy", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/pvanheus/ncbitaxonomy", + "ToolShed categories": [ + "Sequence Analysis", + "Genome annotation" + ], + "ToolShed id": "taxonomy_filter_refseq", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_filter_refseq", + "Galaxy wrapper version": "0.3.0", + "Conda id": "rust-ncbitaxonomy", + "Conda version": "1.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "taxonomy_krona_chart", + "Galaxy tool ids": [ + "taxonomy_krona_chart" + ], + "Description": "Krona pie chart from taxonomic profile", + "bio.tool id": "krona", + "bio.tool ids": [ + "krona" + ], + "biii": null, + "bio.tool name": "Krona", + "bio.tool description": "Krona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome).", + "EDAM operation": [ + "Visualisation" + ], + "EDAM topic": [ + "Metagenomics" + ], + "Status": "To update", + "Source": "http://sourceforge.net/projects/krona/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "taxonomy_krona_chart", + "Galaxy wrapper owner": "crs4", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart", + "Galaxy wrapper version": "2.7.1+galaxy0", + "Conda id": "krona", + "Conda version": "2.8.1", + "EDAM operation (no superclasses)": [ + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1801, + "Total tool usage (usegalaxy.eu)": 27426 + }, + { + "Galaxy wrapper id": "taxpasta", + "Galaxy tool ids": [ + "taxpasta" + ], + "Description": "standardise taxonomic profiles", + "bio.tool id": "taxpasta", + "bio.tool ids": [ + "taxpasta" + ], + "biii": null, + "bio.tool name": "taxpasta", + "bio.tool description": "TAXonomic Profile Aggregation and STAndardisationThe main purpose of taxpasta is to standardise taxonomic profiles created by a range of bioinformatics tools. We call those tools taxonomic profilers. They each come with their own particular tabular output format. Across the profilers, relative abundances can be reported in read counts, fractions, or percentages, as well as any number of additional columns with extra information. We therefore decided to take the lessons learnt to heart and provide our own solution to deal with this pasticcio. With taxpasta you can ingest all of those formats and, at a minimum, output taxonomy identifiers and their integer counts. Taxpasta can not only standardise profiles but also merge them across samples for the same profiler into a single table.", + "EDAM operation": [ + "Standardisation and normalisation", + "Aggregation", + "Formatting", + "Conversion" + ], + "EDAM topic": [ + "Taxonomy", + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://taxpasta.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "taxpasta", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/taxprofiler/taxpasta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxpasta", + "Galaxy wrapper version": "0.7.0", + "Conda id": "taxpasta", + "Conda version": "0.7.0", + "EDAM operation (no superclasses)": [ + "Standardisation and normalisation", + "Aggregation", + "Formatting", + "Conversion" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "tb-profiler", + "Galaxy tool ids": [ + "tb_profiler_profile" + ], + "Description": "Processes M. tuberculosis sequence data to infer strain type and identify known drug resistance markers.", + "bio.tool id": "tb-profiler", + "bio.tool ids": [ + "tb-profiler" + ], + "biii": null, + "bio.tool name": "tb-profiler", + "bio.tool description": "A tool for drug resistance prediction from _M. tuberculosis_ genomic data (sequencing reads, alignments or variants).", + "EDAM operation": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/jodyphelan/TBProfiler", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "tbprofiler", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/tb-profiler", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tb-profiler", + "Galaxy wrapper version": "6.2.1", + "Conda id": "tb-profiler", + "Conda version": "6.3.0", + "EDAM operation (no superclasses)": [ + "Antimicrobial resistance prediction" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 198, + "Total tool usage (usegalaxy.eu)": 5161 + }, + { + "Galaxy wrapper id": "tb_variant_filter", + "Galaxy tool ids": [ + "tb_variant_filter" + ], + "Description": "M. tuberculosis H37Rv VCF filter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/COMBAT-TB/tb_variant_filter", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "tb_variant_filter", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/COMBAT-TB/tb_variant_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tb_variant_filter", + "Galaxy wrapper version": "0.4.0", + "Conda id": "tb_variant_filter", + "Conda version": "0.4.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 209, + "Total tool usage (usegalaxy.eu)": 19252 + }, + { + "Galaxy wrapper id": "tbl2gff3", + "Galaxy tool ids": [ + "tbl2gff3" + ], + "Description": "Table to GFF3", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3", + "ToolShed categories": [ + "Convert Formats", + "Sequence Analysis" + ], + "ToolShed id": "tbl2gff3", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tbl2gff3", + "Galaxy wrapper version": "1.2", + "Conda id": "bcbiogff", + "Conda version": "0.6.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 229, + "Total tool usage (usegalaxy.eu)": 1584 + }, + { + "Galaxy wrapper id": "tbvcfreport", + "Galaxy tool ids": [ + "tbvcfreport" + ], + "Description": "Generate HTML report from SnpEff M.tuberculosis VCF(s)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/COMBAT-TB/tbvcfreport", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "tbvcfreport", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tools/tbvcfreport", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tbvcfreport", + "Galaxy wrapper version": "1.0.1", + "Conda id": "tbvcfreport", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 167, + "Total tool usage (usegalaxy.eu)": 2290 + }, + { + "Galaxy wrapper id": "te_finder", + "Galaxy tool ids": [ + "te_finder" + ], + "Description": "Transposable element insertions finder", + "bio.tool id": "tefinder", + "bio.tool ids": [ + "tefinder" + ], + "biii": null, + "bio.tool name": "TEfinder", + "bio.tool description": "A Bioinformatics Pipeline for Detecting New Transposable Element Insertion Events in Next-Generation Sequencing Data.A bioinformatics tool for detecting novel transposable element insertions.TEfinder uses discordant reads to detect novel transposable element insertion events in paired-end sample sequencing data.", + "EDAM operation": [ + "Genome indexing", + "Variant calling", + "PCR primer design" + ], + "EDAM topic": [ + "Sequencing", + "Mobile genetic elements", + "Workflows", + "Evolutionary biology", + "Genetic variation" + ], + "Status": "To update", + "Source": "https://github.com/VistaSohrab/TEfinder", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "te_finder", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/te_finder/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/te_finder", + "Galaxy wrapper version": "1.0.1", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [ + "Genome indexing", + "Variant calling", + "PCR primer design" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Mobile genetic elements", + "Workflows", + "Evolutionary biology", + "Genetic variation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 81 + }, + { + "Galaxy wrapper id": "telescope", + "Galaxy tool ids": [ + "telescope_assign" + ], + "Description": "Single locus resolution of Transposable ELEment expression.", + "bio.tool id": "Telescope-expression", + "bio.tool ids": [ + "Telescope-expression" + ], + "biii": null, + "bio.tool name": "Telescope", + "bio.tool description": "Telescope is a tool for the characterization of the retrotranscriptome by accurate estimation of transposable element expression and the quantification of transposable element expression using RNA-seq.It can be used for Statistical Performance of TE Quantification Methods.All scripts needed to examine the sensitivity and biases of computational approaches for quantifying TE expression: 1) unique counts, 2) best counts, 3) RepEnrich, 4) TEtranscripts, 5) RSEM, 6) SalmonTE, and 7) Telescope.", + "EDAM operation": [ + "Essential dynamics", + "Sequence trimming", + "RNA-Seq quantification", + "Expression analysis", + "Read mapping" + ], + "EDAM topic": [ + "RNA-Seq", + "Transcriptomics", + "Mapping", + "Gene transcripts", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/mlbendall/telescope/", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "telescope_assign", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/telescope", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/telescope", + "Galaxy wrapper version": "1.0.3", + "Conda id": "telescope", + "Conda version": "1.0.3", + "EDAM operation (no superclasses)": [ + "Essential dynamics", + "Sequence trimming", + "RNA-Seq quantification", + "Expression analysis", + "Read mapping" + ], + "EDAM topic (no superclasses)": [ + "RNA-Seq", + "Transcriptomics", + "Mapping", + "Gene transcripts", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "tetoolkit", + "Galaxy tool ids": [ + "tetoolkit_tetranscripts" + ], + "Description": "The TEToolkit suite improves the bioinformatic analysis of repetitive sequences, particularly transposable elements, in order to elucidate novel (and previously ignored) biological insights of their functions in development and diseases.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hammelllab.labsites.cshl.edu/software/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "tetoolkit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/mhammell-laboratory/TEtranscripts", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tetoolkit", + "Galaxy wrapper version": "2.2.3", + "Conda id": "tetranscripts", + "Conda version": "2.2.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 33, + "Total tool usage (usegalaxy.eu)": 871 + }, + { + "Galaxy wrapper id": "tetyper", + "Galaxy tool ids": [ + "tetyper" + ], + "Description": "Type a specific transposable element (TE) of interest from paired-end sequencing data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/aesheppard/TETyper", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "tetyper", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tetyper", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tetyper", + "Galaxy wrapper version": "1.1", + "Conda id": "tetyper", + "Conda version": "1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 69 + }, + { + "Galaxy wrapper id": "tn93", + "Galaxy tool ids": [ + "tn93_readreduce", + "tn93", + "tn93_cluster", + "tn93_filter" + ], + "Description": "Compute distances between sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/veg/tn93/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "tn93", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tn93/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tn93", + "Galaxy wrapper version": "1.0.6", + "Conda id": "tn93", + "Conda version": "1.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17, + "Total tool usage (usegalaxy.eu)": 1881 + }, + { + "Galaxy wrapper id": "tooldistillator", + "Galaxy tool ids": [ + "tooldistillator", + "tooldistillator_summarize" + ], + "Description": "ToolDistillator extract and aggregate information from different tool outputs to JSON parsable files", + "bio.tool id": "tooldistillator", + "bio.tool ids": [ + "tooldistillator" + ], + "biii": null, + "bio.tool name": "ToolDistillator", + "bio.tool description": "ToolDistillator is a tool to extract information from output files of specific tools, expose it as JSON files, and aggregate over several tools.It can produce both a single file to each tool or a summarized file from a set of reports.", + "EDAM operation": [ + "Data handling", + "Parsing" + ], + "EDAM topic": [ + "Microbiology", + "Bioinformatics", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://gitlab.com/ifb-elixirfr/abromics/tooldistillator", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "tooldistillator", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tooldistillator", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tooldistillator", + "Galaxy wrapper version": "0.9", + "Conda id": "tooldistillator", + "Conda version": "0.9", + "EDAM operation (no superclasses)": [ + "Parsing" + ], + "EDAM topic (no superclasses)": [ + "Microbiology", + "Bioinformatics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "tracegroomer", + "Galaxy tool ids": [ + "tracegroomer" + ], + "Description": "TraceGroomer is a solution for formatting and normalising Tracer metabolomics given file(s), to produce the .csv files which are ready for DIMet tool.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/cbib/TraceGroomer", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/Tracegroomer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tracegroomer", + "Galaxy wrapper version": "0.1.4", + "Conda id": "tracegroomer", + "Conda version": "0.1.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "tracy", + "Galaxy tool ids": [ + "tracy_align", + "tracy_assemble", + "tracy_basecall", + "tracy_decompose" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tracy", + "Galaxy wrapper version": "0.6.1", + "Conda id": "tracy", + "Conda version": "0.7.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 58, + "Total tool usage (usegalaxy.eu)": 2439 + }, + { + "Galaxy wrapper id": "transdecoder", + "Galaxy tool ids": [ + "transdecoder" + ], + "Description": "TransDecoder finds coding regions within transcripts", + "bio.tool id": "TransDecoder", + "bio.tool ids": [ + "TransDecoder" + ], + "biii": null, + "bio.tool name": "TransDecoder", + "bio.tool description": "TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks.", + "EDAM operation": [ + "Coding region prediction", + "de Novo sequencing", + "De-novo assembly" + ], + "EDAM topic": [ + "Genomics", + "Gene transcripts", + "RNA-Seq", + "Gene expression", + "Sequence assembly", + "Whole genome sequencing" + ], + "Status": "To update", + "Source": "https://transdecoder.github.io/", + "ToolShed categories": [ + "Transcriptomics", + "RNA" + ], + "ToolShed id": "transdecoder", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoder", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder", + "Galaxy wrapper version": "5.5.0", + "Conda id": "transdecoder", + "Conda version": "5.7.1", + "EDAM operation (no superclasses)": [ + "Coding region prediction", + "de Novo sequencing", + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Gene transcripts", + "RNA-Seq", + "Gene expression", + "Sequence assembly", + "Whole genome sequencing" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 1, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 348, + "Total tool usage (usegalaxy.eu)": 5468 + }, + { + "Galaxy wrapper id": "transit", + "Galaxy tool ids": [ + "gff_to_prot", + "transit_gumbel", + "transit_hmm", + "transit_resampling", + "transit_tn5gaps" + ], + "Description": "TRANSIT", + "bio.tool id": "transit", + "bio.tool ids": [ + "transit" + ], + "biii": null, + "bio.tool name": "TRANSIT", + "bio.tool description": "A tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions.", + "EDAM operation": [ + "Transposon prediction" + ], + "EDAM topic": [ + "DNA", + "Sequencing", + "Mobile genetic elements" + ], + "Status": "To update", + "Source": "https://github.com/mad-lab/transit/", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit", + "Galaxy wrapper version": "3.0.2", + "Conda id": "transit", + "Conda version": "3.2.3", + "EDAM operation (no superclasses)": [ + "Transposon prediction" + ], + "EDAM topic (no superclasses)": [ + "DNA", + "Sequencing", + "Mobile genetic elements" + ], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 84, + "Total tool usage (usegalaxy.eu)": 907 + }, + { + "Galaxy wrapper id": "transtermhp", + "Galaxy tool ids": [ + "transtermhp" + ], + "Description": "Finds rho-independent transcription terminators in bacterial genomes", + "bio.tool id": "transtermhp", + "bio.tool ids": [ + "transtermhp" + ], + "biii": null, + "bio.tool name": "TransTermHP", + "bio.tool description": "TransTermHP finds rho-independent transcription terminators in bacterial genomes. Each terminator found by the program is assigned a confidence value that estimates its probability of being a true terminator", + "EDAM operation": [ + "Transcriptional regulatory element prediction" + ], + "EDAM topic": [ + "Transcription factors and regulatory sites" + ], + "Status": "To update", + "Source": "https://transterm.cbcb.umd.edu", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "transtermhp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/transtermhp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/transtermhp", + "Galaxy wrapper version": null, + "Conda id": "transtermhp", + "Conda version": "2.09", + "EDAM operation (no superclasses)": [ + "Transcriptional regulatory element prediction" + ], + "EDAM topic (no superclasses)": [ + "Transcription factors and regulatory sites" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 229 + }, + { + "Galaxy wrapper id": "trimmomatic", + "Galaxy tool ids": [ + "trimmomatic" + ], + "Description": "A flexible read trimming tool for Illumina NGS data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://www.usadellab.org/cms/?page=trimmomatic", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "trimmomatic", + "Galaxy wrapper owner": "pjbriggs", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/trimmomatic", + "Galaxy wrapper version": "0.39", + "Conda id": "trimmomatic", + "Conda version": "0.39", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 1, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5862, + "Total tool usage (usegalaxy.eu)": 305866 + }, + { + "Galaxy wrapper id": "trinity", + "Galaxy tool ids": [ + "trinity_abundance_estimates_to_matrix", + "trinity_align_and_estimate_abundance", + "trinity_analyze_diff_expr", + "trinity_contig_exn50_statistic", + "trinity_define_clusters_by_cutting_tree", + "describe_samples", + "trinity_filter_low_expr_transcripts", + "trinity_gene_to_trans_map", + "trinity_run_de_analysis", + "trinity_samples_qccheck", + "trinity_super_transcripts", + "trinity", + "trinity_stats" + ], + "Description": "Trinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseq", + "bio.tool id": "trinity", + "bio.tool ids": [ + "trinity" + ], + "biii": null, + "bio.tool name": "Trinity", + "bio.tool description": "Trinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads.", + "EDAM operation": [ + "Transcriptome assembly" + ], + "EDAM topic": [ + "Transcriptomics", + "Gene expression", + "Gene transcripts" + ], + "Status": "To update", + "Source": "https://github.com/trinityrnaseq/trinityrnaseq", + "ToolShed categories": [ + "Transcriptomics", + "RNA" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity", + "Galaxy wrapper version": "2.15.1", + "Conda id": "trinity", + "Conda version": "2.15.2", + "EDAM operation (no superclasses)": [ + "Transcriptome assembly" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics", + "Gene transcripts" + ], + "Available on UseGalaxy.org (Main)": 9, + "Available on UseGalaxy.org.au": 13, + "Available on UseGalaxy.eu": 13, + "Available on UseGalaxy.fr": 13, + "Tools available on UseGalaxy.org (Main)": 9, + "Tools available on UseGalaxy.org.au": 13, + "Tools available on UseGalaxy.eu": 13, + "Tools available on UseGalaxy.fr": 13, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 11, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 13, + "Tools available on UseGalaxy.no": 12, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1762, + "Total tool usage (usegalaxy.eu)": 31951 + }, + { + "Galaxy wrapper id": "trinotate", + "Galaxy tool ids": [ + "trinotate" + ], + "Description": "Trinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes.", + "bio.tool id": "trinotate", + "bio.tool ids": [ + "trinotate" + ], + "biii": null, + "bio.tool name": "Trinotate", + "bio.tool description": "Comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms.", + "EDAM operation": [ + "Gene functional annotation" + ], + "EDAM topic": [ + "Gene expression", + "Transcriptomics" + ], + "Status": "To update", + "Source": "https://trinotate.github.io/", + "ToolShed categories": [ + "Transcriptomics", + "RNA" + ], + "ToolShed id": "trinotate", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotate", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate", + "Galaxy wrapper version": "3.2.2", + "Conda id": "trinotate", + "Conda version": "4.0.2", + "EDAM operation (no superclasses)": [ + "Gene functional annotation" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 151, + "Total tool usage (usegalaxy.eu)": 1796 + }, + { + "Galaxy wrapper id": "trycycler", + "Galaxy tool ids": [ + "trycycler_cluster", + "trycycler_consensus", + "trycycler_partition", + "trycycler_reconcile_msa", + "trycycler_subsample" + ], + "Description": "Trycycler toolkit wrappers", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/rrwick/Trycycler", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "trycycler", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler", + "Galaxy wrapper version": "0.5.5", + "Conda id": "trycycler", + "Conda version": "0.5.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 5, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 147, + "Total tool usage (usegalaxy.eu)": 8942 + }, + { + "Galaxy wrapper id": "tsebra", + "Galaxy tool ids": [ + "tsebra" + ], + "Description": "This tool has been developed to combine BRAKER predictions.", + "bio.tool id": "tsebra", + "bio.tool ids": [ + "tsebra" + ], + "biii": null, + "bio.tool name": "TSEBRA", + "bio.tool description": "TSEBRA is a combiner tool that selects transcripts from gene predictions based on the support by extrisic evidence in form of introns and start/stop codons. It was developed to combine BRAKER1 and BRAKER2 predicitons to increase their accuracies.", + "EDAM operation": [ + "Homology-based gene prediction", + "Alternative splicing prediction" + ], + "EDAM topic": [ + "Gene expression", + "RNA-Seq", + "Gene transcripts", + "Model organisms" + ], + "Status": "To update", + "Source": "https://github.com/Gaius-Augustus/TSEBRA", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tsebra", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tsebra", + "Galaxy wrapper version": "1.1.2.4", + "Conda id": "tsebra", + "Conda version": "1.1.2.5", + "EDAM operation (no superclasses)": [ + "Homology-based gene prediction", + "Alternative splicing prediction" + ], + "EDAM topic (no superclasses)": [ + "Gene expression", + "RNA-Seq", + "Gene transcripts", + "Model organisms" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 5 + }, + { + "Galaxy wrapper id": "tsne", + "Galaxy tool ids": [ + "tsne" + ], + "Description": "T-Distributed Stochastic Neighbor Embedding using a Barnes-Hut Implementation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://cran.r-project.org/web/packages/Rtsne/", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "tsne", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tsne", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tsne", + "Galaxy wrapper version": "0.0.2", + "Conda id": "r-rtsne", + "Conda version": "0.13", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 368 + }, + { + "Galaxy wrapper id": "tximport", + "Galaxy tool ids": [ + "tximport" + ], + "Description": "Wrapper for the Bioconductor package tximport", + "bio.tool id": "tximport", + "bio.tool ids": [ + "tximport" + ], + "biii": null, + "bio.tool name": "tximport", + "bio.tool description": "An R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages.", + "EDAM operation": [ + "Pathway or network analysis", + "Formatting", + "RNA-Seq analysis" + ], + "EDAM topic": [ + "Transcriptomics", + "Gene transcripts", + "Workflows" + ], + "Status": "To update", + "Source": "http://bioconductor.org/packages/tximport/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "tximport", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/tximport", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport", + "Galaxy wrapper version": "1.22.0", + "Conda id": "bioconductor-tximport", + "Conda version": "1.30.0", + "EDAM operation (no superclasses)": [ + "Pathway or network analysis", + "Formatting", + "RNA-Seq analysis" + ], + "EDAM topic (no superclasses)": [ + "Transcriptomics", + "Gene transcripts", + "Workflows" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 88, + "Total tool usage (usegalaxy.eu)": 1408 + }, + { + "Galaxy wrapper id": "ucsc_blat", + "Galaxy tool ids": [ + "ucsc_blat" + ], + "Description": "Standalone blat sequence search command line tool", + "bio.tool id": "blat", + "bio.tool ids": [ + "blat" + ], + "biii": null, + "bio.tool name": "BLAT", + "bio.tool description": "Fast, accurate spliced alignment of DNA sequences.", + "EDAM operation": [ + "Sequence alignment" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://genome.ucsc.edu/goldenPath/help/blatSpec.html", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ucsc_blat", + "Galaxy wrapper owner": "yating-l", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc_blat/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_blat", + "Galaxy wrapper version": "377", + "Conda id": "ucsc-blat", + "Conda version": "469", + "EDAM operation (no superclasses)": [ + "Sequence alignment" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fasplit", + "Galaxy tool ids": [ + "fasplit" + ], + "Description": "faSplit is a tool to split a single FASTA file into several files", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://hgdownload.cse.ucsc.edu/admin/exe/", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "ucsc_fasplit", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fasplit", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fasplit", + "Galaxy wrapper version": "377", + "Conda id": "ucsc-fasplit", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 242, + "Total tool usage (usegalaxy.eu)": 2644 + }, + { + "Galaxy wrapper id": "fatovcf", + "Galaxy tool ids": [ + "fatovcf" + ], + "Description": "Convert a FASTA alignment file to Variant Call Format (VCF) single-nucleotide diffs", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "http://hgdownload.cse.ucsc.edu/admin/exe/", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "ucsc_fatovcf", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fatovcf", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fatovcf", + "Galaxy wrapper version": "448", + "Conda id": "ucsc-fatovcf", + "Conda version": "448", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 22, + "Total tool usage (usegalaxy.eu)": 285 + }, + { + "Galaxy wrapper id": "maftoaxt", + "Galaxy tool ids": [ + "maftoaxt" + ], + "Description": "Convert dataset from MAF to axt format", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://hgdownload.cse.ucsc.edu/admin/exe/", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "ucsc_maftoaxt", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/maftoaxt", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/maftoaxt", + "Galaxy wrapper version": "377", + "Conda id": "ucsc-maftoaxt", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "twobittofa", + "Galaxy tool ids": [ + "ucsc-twobittofa" + ], + "Description": "twoBitToFa is a tool to convert all or part of .2bit file to FASTA", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://genome.ucsc.edu/goldenpath/help/twoBit.html", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "ucsc_twobittofa", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/twobittofa", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/twobittofa", + "Galaxy wrapper version": "377", + "Conda id": "ucsc-twobittofa", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 48, + "Total tool usage (usegalaxy.eu)": 502 + }, + { + "Galaxy wrapper id": "ucsc_axtchain", + "Galaxy tool ids": [ + "ucsc_axtchain" + ], + "Description": "Chain together genome alignments", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://hgdownload.cse.ucsc.edu/admin/exe/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ucsc_axtchain", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axtchain", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_axtchain", + "Galaxy wrapper version": "455", + "Conda id": "ucsc-axtchain", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ucsc_axttomaf", + "Galaxy tool ids": [ + "ucsc_axtomaf" + ], + "Description": "Convert dataset from axt to MAF format.", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://hgdownload.cse.ucsc.edu/admin/exe/", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "ucsc_axttomaf", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axttomaf", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_axttomaf", + "Galaxy wrapper version": "377", + "Conda id": "ucsc-axttomaf", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ucsc_chainnet", + "Galaxy tool ids": [ + "ucsc_chainnet" + ], + "Description": "Make alignment nets out of chains", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "http://hgdownload.cse.ucsc.edu/admin/exe/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ucsc_chainnet", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/ucsc_chainnet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainnet", + "Galaxy wrapper version": "469", + "Conda id": "ucsc-chainnet", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ucsc_chainprenet", + "Galaxy tool ids": [ + "ucsc_chainprenet" + ], + "Description": "Remove chains that don't have a chance of being netted", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://hgdownload.cse.ucsc.edu/admin/exe/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ucsc_chainprenet", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainprenet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainprenet", + "Galaxy wrapper version": "377", + "Conda id": "ucsc-chainprenet", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ucsc_chainsort", + "Galaxy tool ids": [ + "ucsc_chainsort" + ], + "Description": "Sort chains. By default sorts by score.", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "http://hgdownload.cse.ucsc.edu/admin/exe/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ucsc_chainsort", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainsort", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainsort", + "Galaxy wrapper version": "455", + "Conda id": "ucsc-chainsort", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "wigtobigwig", + "Galaxy tool ids": [ + "ucsc_wigtobigwig" + ], + "Description": "converts bedGraph (wig) files into binary bigwig", + "bio.tool id": "UCSC_Genome_Browser_Utilities", + "bio.tool ids": [ + "UCSC_Genome_Browser_Utilities" + ], + "biii": null, + "bio.tool name": "UCSC Genome Browser Utilities", + "bio.tool description": "Utilities for handling sequences and assemblies from the UCSC Genome Browser project.", + "EDAM operation": [], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://genome.ucsc.edu/goldenPath/help/bigWig.html", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "ucsc_wigtobigwig", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/wigtobigwig", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/wigtobigwig", + "Galaxy wrapper version": "447", + "Conda id": "ucsc-wigtobigwig", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "umi_tools", + "Galaxy tool ids": [ + "umi_tools_count", + "umi_tools_dedup", + "umi_tools_extract", + "umi_tools_group", + "umi_tools_whitelist" + ], + "Description": "UMI-tools extract - Extract UMIs from fastq", + "bio.tool id": "umi-tools", + "bio.tool ids": [ + "umi-tools" + ], + "biii": null, + "bio.tool name": "UMI-tools", + "bio.tool description": "Tools for handling Unique Molecular Identifiers in NGS data sets.", + "EDAM operation": [ + "Sequencing quality control" + ], + "EDAM topic": [ + "NGS", + "Sequence sites, features and motifs", + "Quality affairs" + ], + "Status": "To update", + "Source": "https://github.com/CGATOxford/UMI-tools", + "ToolShed categories": [ + "Sequence Analysis", + "Transcriptomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools", + "Galaxy wrapper version": "1.1.2", + "Conda id": "umi_tools", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [ + "Sequencing quality control" + ], + "EDAM topic (no superclasses)": [ + "Sequence sites, features and motifs", + "Quality affairs" + ], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 5, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 379, + "Total tool usage (usegalaxy.eu)": 61618 + }, + { + "Galaxy wrapper id": "unicycler", + "Galaxy tool ids": [ + "unicycler" + ], + "Description": "Unicycler is a hybrid assembly pipeline for bacterial genomes.", + "bio.tool id": "unicycler", + "bio.tool ids": [ + "unicycler" + ], + "biii": null, + "bio.tool name": "Unicycler", + "bio.tool description": "A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads.", + "EDAM operation": [ + "Genome assembly", + "Aggregation" + ], + "EDAM topic": [ + "Microbiology", + "Genomics", + "Sequencing", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/rrwick/Unicycler", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "unicycler", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler", + "Galaxy wrapper version": "0.5.1", + "Conda id": "unicycler", + "Conda version": "0.5.1", + "EDAM operation (no superclasses)": [ + "Genome assembly", + "Aggregation" + ], + "EDAM topic (no superclasses)": [ + "Microbiology", + "Genomics", + "Sequencing", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1558, + "Total tool usage (usegalaxy.eu)": 65732 + }, + { + "Galaxy wrapper id": "usher", + "Galaxy tool ids": [ + "usher_matutils", + "usher" + ], + "Description": "UShER toolkit wrappers", + "bio.tool id": "usher", + "bio.tool ids": [ + "usher" + ], + "biii": null, + "bio.tool name": "usher", + "bio.tool description": "The UShER toolkit includes a set of tools for for rapid, accurate placement of samples to existing phylogenies. While not restricted to SARS-CoV-2 phylogenetic analyses, it has enabled real-time phylogenetic analyses and genomic contact tracing in that its placement is orders of magnitude faster and more memory-efficient than previous methods.", + "EDAM operation": [ + "Classification", + "Phylogenetic tree visualisation", + "Phylogenetic inference (from molecular sequences)" + ], + "EDAM topic": [ + "Phylogeny", + "Evolutionary biology", + "Cladistics", + "Genotype and phenotype", + "Phylogenomics" + ], + "Status": "To update", + "Source": "https://github.com/yatisht/usher", + "ToolShed categories": [ + "Phylogenetics" + ], + "ToolShed id": "usher", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/usher", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/usher", + "Galaxy wrapper version": "0.2.1", + "Conda id": "usher", + "Conda version": "0.6.3", + "EDAM operation (no superclasses)": [ + "Classification", + "Phylogenetic tree visualisation", + "Phylogenetic inference (from molecular sequences)" + ], + "EDAM topic (no superclasses)": [ + "Cladistics", + "Genotype and phenotype", + "Phylogenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 1060 + }, + { + "Galaxy wrapper id": "valet", + "Galaxy tool ids": [ + "valet" + ], + "Description": "A pipeline for detecting mis-assemblies in metagenomic assemblies.", + "bio.tool id": "valet", + "bio.tool ids": [ + "valet" + ], + "biii": null, + "bio.tool name": "VALET", + "bio.tool description": "VALET is a pipeline for detecting mis-assemblies in metagenomic assemblies.", + "EDAM operation": [ + "Sequence assembly", + "Sequence assembly visualisation" + ], + "EDAM topic": [ + "Metagenomics", + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://github.com/marbl/VALET", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "valet", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/valet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/valet", + "Galaxy wrapper version": null, + "Conda id": "valet", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [ + "Sequence assembly", + "Sequence assembly visualisation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 20, + "Total tool usage (usegalaxy.eu)": 637 + }, + { + "Galaxy wrapper id": "vapor", + "Galaxy tool ids": [ + "vapor" + ], + "Description": "Classify Influenza samples from raw short read sequence data", + "bio.tool id": "vapor", + "bio.tool ids": [ + "vapor" + ], + "biii": null, + "bio.tool name": "VAPOR", + "bio.tool description": "VAPOR is a tool for classification of Influenza samples from raw short read sequence data for downstream bioinformatics analysis. VAPOR is provided with a fasta file of full-length sequences (> 20,000) for a given segment, a set of reads, and attempts to retrieve a reference that is closest to the sample strain.", + "EDAM operation": [ + "Data retrieval", + "De-novo assembly", + "Read mapping" + ], + "EDAM topic": [ + "Whole genome sequencing", + "Mapping", + "Sequence assembly" + ], + "Status": "Up-to-date", + "Source": "https://github.com/connor-lab/vapor", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "vapor", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/vapor", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/vapor", + "Galaxy wrapper version": "1.0.2", + "Conda id": "vapor", + "Conda version": "1.0.2", + "EDAM operation (no superclasses)": [ + "Data retrieval", + "De-novo assembly", + "Read mapping" + ], + "EDAM topic (no superclasses)": [ + "Whole genome sequencing", + "Mapping", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 94, + "Total tool usage (usegalaxy.eu)": 3164 + }, + { + "Galaxy wrapper id": "vardict", + "Galaxy tool ids": [ + "vardict_java" + ], + "Description": "VarDict - calls SNVs and indels for tumour-normal pairs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/AstraZeneca-NGS/VarDictJava", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vardict_java", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/vardict", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/vardict", + "Galaxy wrapper version": "1.8.3", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 273 + }, + { + "Galaxy wrapper id": "variant_analyzer", + "Galaxy tool ids": [ + "mut2read", + "mut2sscs", + "read2mut" + ], + "Description": "Collection of tools for analyzing variants in duplex consensus sequencing (DCS) data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "variant_analyzer", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/variant_analyzer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/variant_analyzer", + "Galaxy wrapper version": "2.0.0", + "Conda id": "matplotlib", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 88 + }, + { + "Galaxy wrapper id": "varscan", + "Galaxy tool ids": [ + "varscan_copynumber", + "varscan_mpileup", + "varscan_somatic" + ], + "Description": "VarScan is a variant caller for high-throughput sequencing data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://dkoboldt.github.io/varscan/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "varscan", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/iuc/tree/master/tools/varscan", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/varscan", + "Galaxy wrapper version": "2.4.3", + "Conda id": "varscan", + "Conda version": "2.4.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 492, + "Total tool usage (usegalaxy.eu)": 9779 + }, + { + "Galaxy wrapper id": "varvamp", + "Galaxy tool ids": [ + "varvamp" + ], + "Description": "Variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses", + "bio.tool id": "varvamp", + "bio.tool ids": [ + "varvamp" + ], + "biii": null, + "bio.tool name": "varVAMP", + "bio.tool description": "variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses. The input is an alignment of your viral (full-genome) sequences.", + "EDAM operation": [ + "PCR primer design" + ], + "EDAM topic": [ + "Virology", + "Probes and primers" + ], + "Status": "Up-to-date", + "Source": "https://github.com/jonas-fuchs/varVAMP/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "varvamp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/jonas-fuchs/varVAMP", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/varvamp", + "Galaxy wrapper version": "1.2.0", + "Conda id": "varvamp", + "Conda version": "1.2.0", + "EDAM operation (no superclasses)": [ + "PCR primer design" + ], + "EDAM topic (no superclasses)": [ + "Virology", + "Probes and primers" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "vcf2maf", + "Galaxy tool ids": [ + "vcf2maf" + ], + "Description": "vcf2maf: Convert VCF into MAF", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/mskcc/vcf2maf", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "vcf2maf", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/vcf2maf", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/vcf2maf", + "Galaxy wrapper version": "1.6.21", + "Conda id": "vcf2maf", + "Conda version": "1.6.22", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 29, + "Total tool usage (usegalaxy.eu)": 751 + }, + { + "Galaxy wrapper id": "vcfanno", + "Galaxy tool ids": [ + "vcfanno" + ], + "Description": "Annotate VCF files", + "bio.tool id": "vcfanno", + "bio.tool ids": [ + "vcfanno" + ], + "biii": null, + "bio.tool name": "vcfanno", + "bio.tool description": "Fast, flexible annotation of genetic variants.", + "EDAM operation": [ + "SNP annotation" + ], + "EDAM topic": [ + "Genetic variation", + "Data submission, annotation and curation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/brentp/vcfanno", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfanno", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/vcfanno/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/vcfanno", + "Galaxy wrapper version": "0.3.5", + "Conda id": "vcfanno", + "Conda version": "0.3.5", + "EDAM operation (no superclasses)": [ + "SNP annotation" + ], + "EDAM topic (no superclasses)": [ + "Genetic variation", + "Data submission, annotation and curation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 87, + "Total tool usage (usegalaxy.eu)": 872 + }, + { + "Galaxy wrapper id": "vegan", + "Galaxy tool ids": [ + "vegan_diversity", + "vegan_fisher_alpha", + "vegan_rarefaction" + ], + "Description": "an R package fo community ecologist", + "bio.tool id": "vegan", + "bio.tool ids": [ + "vegan" + ], + "biii": null, + "bio.tool name": "vegan", + "bio.tool description": "Ordination methods, diversity analysis and other functions for community and vegetation ecologists", + "EDAM operation": [ + "Standardisation and normalisation", + "Analysis" + ], + "EDAM topic": [ + "Ecology", + "Phylogenetics", + "Environmental science" + ], + "Status": "To update", + "Source": "https://cran.r-project.org/package=vegan", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/vegan/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/vegan", + "Galaxy wrapper version": "2.4-3", + "Conda id": "r-vegan", + "Conda version": "2.3_4", + "EDAM operation (no superclasses)": [ + "Standardisation and normalisation", + "Analysis" + ], + "EDAM topic (no superclasses)": [ + "Ecology", + "Phylogenetics", + "Environmental science" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 3, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 74, + "Total tool usage (usegalaxy.eu)": 2020 + }, + { + "Galaxy wrapper id": "velocyto", + "Galaxy tool ids": [ + "velocyto_cli" + ], + "Description": "Velocyto is a library for the analysis of RNA velocity.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://velocyto.org/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "velocyto", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/velocyto", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto", + "Galaxy wrapper version": "0.17.17", + "Conda id": "velocyto.py", + "Conda version": "0.17.17", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 2 + }, + { + "Galaxy wrapper id": "velvet", + "Galaxy tool ids": [ + "velvetg", + "velveth" + ], + "Description": "de novo genomic assembler specially designed for short read sequencing technologies", + "bio.tool id": "velvet", + "bio.tool ids": [ + "velvet" + ], + "biii": null, + "bio.tool name": "Velvet", + "bio.tool description": "A de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD.", + "EDAM operation": [ + "Formatting", + "De-novo assembly" + ], + "EDAM topic": [ + "Sequence assembly" + ], + "Status": "To update", + "Source": "https://www.ebi.ac.uk/~zerbino/velvet/", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "velvet", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet", + "Galaxy wrapper version": null, + "Conda id": "velvet", + "Conda version": "1.2.10", + "EDAM operation (no superclasses)": [ + "Formatting", + "De-novo assembly" + ], + "EDAM topic (no superclasses)": [ + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2083, + "Total tool usage (usegalaxy.eu)": 25420 + }, + { + "Galaxy wrapper id": "velvet_optimiser", + "Galaxy tool ids": [ + "velvetoptimiser" + ], + "Description": "Automatically optimize Velvet assemblies", + "bio.tool id": "velvetoptimiser", + "bio.tool ids": [ + "velvetoptimiser" + ], + "biii": null, + "bio.tool name": "VelvetOptimiser", + "bio.tool description": "This tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly.", + "EDAM operation": [ + "Optimisation and refinement", + "Sequence assembly" + ], + "EDAM topic": [ + "Genomics", + "Sequence assembly" + ], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "velvetoptimiser", + "Galaxy wrapper owner": "simon-gladman", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser", + "Galaxy wrapper version": "2.2.6+galaxy2", + "Conda id": "velvet", + "Conda version": "1.2.10", + "EDAM operation (no superclasses)": [ + "Optimisation and refinement", + "Sequence assembly" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Sequence assembly" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 255, + "Total tool usage (usegalaxy.eu)": 4741 + }, + { + "Galaxy wrapper id": "verkko", + "Galaxy tool ids": [ + "verkko" + ], + "Description": "Telomere-to-telomere assembly pipeline", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/marbl/verkko", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "verkko", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/verkko", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko", + "Galaxy wrapper version": "1.3.1", + "Conda id": "verkko", + "Conda version": "2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 22 + }, + { + "Galaxy wrapper id": "vg", + "Galaxy tool ids": [ + "vg_convert", + "vg_deconstruct", + "vg_view" + ], + "Description": "Variation graph data structures, interchange formats, alignment, genotyping, and variant calling methods", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/vgteam/vg", + "ToolShed categories": [ + "Sequence Analysis", + "Variant Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/vg", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/vg", + "Galaxy wrapper version": "1.23.0", + "Conda id": "vg", + "Conda version": "1.56.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 477 + }, + { + "Galaxy wrapper id": "virAnnot", + "Galaxy tool ids": [ + "virannot_blast2tsv", + "virannot_otu", + "virAnnot_rps2tsv" + ], + "Description": "virAnnot wrappers", + "bio.tool id": "virannot", + "bio.tool ids": [ + "virannot" + ], + "biii": null, + "bio.tool name": "virAnnot", + "bio.tool description": "VirAnnot was build to ease the assembly, blast search, taxonomic annotation and OTUs assignation of viral metagenomic HTS data. It is used in Virologie team of UMR1332 BFP laboratory at INRAE. VirAnnot also takes part of the Euphresco project \"Plant Health Bioinformatics Network\". See more.It is designed to identify viruses in plant metagenomic data but it can be used to assemble and annotate any sequences with the NCBI taxonomy.", + "EDAM operation": [ + "Sequence annotation", + "Sequence clustering", + "Sequence cluster visualisation" + ], + "EDAM topic": [ + "Metagenomics", + "Virology", + "Microbial ecology" + ], + "Status": "To update", + "Source": "https://github.com/marieBvr/virAnnot", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "virannot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/virAnnot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/virAnnot", + "Galaxy wrapper version": "1.0.1+galaxy0", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [ + "Sequence annotation", + "Sequence clustering", + "Sequence cluster visualisation" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Virology", + "Microbial ecology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "virheat", + "Galaxy tool ids": [ + "virheat" + ], + "Description": "generates a heatmap of allele frequencies from vcf files", + "bio.tool id": "virheat", + "bio.tool ids": [ + "virheat" + ], + "biii": null, + "bio.tool name": "virHEAT", + "bio.tool description": "VirHEAT tool generates multi-sample variant-frequency plots from SnpEff-annotated viral variant lists. The tool provides a condensed look at variant frequencies after mapping raw reads to a viral/bacterial reference genome and compares multiple vcf files at the same time.", + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/jonas-fuchs/virHEAT", + "ToolShed categories": [ + "Visualization", + "Variant Analysis" + ], + "ToolShed id": "virheat", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/virheat", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/virheat", + "Galaxy wrapper version": "0.7.1", + "Conda id": "virheat", + "Conda version": "0.7.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "virhunter", + "Galaxy tool ids": [ + "virhunter" + ], + "Description": "Deep Learning method for novel virus detection in sequencing data", + "bio.tool id": "virhunter", + "bio.tool ids": [ + "virhunter" + ], + "biii": null, + "bio.tool name": "VirHunter", + "bio.tool description": "VirHunter is a deep learning method that uses Convolutional Neural Networks (CNNs) and a Random Forest Classifier to identify viruses in sequencing datasets. More precisely, VirHunter classifies previously assembled contigs as viral, host, and bacterial (contamination).", + "EDAM operation": [ + "Sequence classification" + ], + "EDAM topic": [ + "Virology" + ], + "Status": "To update", + "Source": "https://github.com/cbib/virhunter", + "ToolShed categories": [ + "Machine Learning" + ], + "ToolShed id": "virhunter", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/VirHunter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/virhunter", + "Galaxy wrapper version": "1.0.0", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Sequence classification" + ], + "EDAM topic (no superclasses)": [ + "Virology" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 40, + "Total tool usage (usegalaxy.eu)": 234 + }, + { + "Galaxy wrapper id": "volcanoplot", + "Galaxy tool ids": [ + "volcanoplot" + ], + "Description": "Tool to create a Volcano Plot", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://ggplot2.tidyverse.org/", + "ToolShed categories": [ + "Visualization", + "Transcriptomics", + "Statistics" + ], + "ToolShed id": "volcanoplot", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot", + "Galaxy wrapper version": "0.0.6", + "Conda id": "r-ggplot2", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1749, + "Total tool usage (usegalaxy.eu)": 30946 + }, + { + "Galaxy wrapper id": "vsearch", + "Galaxy tool ids": [ + "vsearch_alignment", + "vsearch_chimera_detection", + "vsearch_clustering", + "vsearch_dereplication", + "vsearch_masking", + "vsearch_search", + "vsearch_shuffling", + "vsearch_sorting" + ], + "Description": "VSEARCH including searching, clustering, chimera detection, dereplication, sorting, masking and shuffling of sequences.", + "bio.tool id": "vsearch", + "bio.tool ids": [ + "vsearch" + ], + "biii": null, + "bio.tool name": "VSEARCH", + "bio.tool description": "High-throughput search and clustering sequence analysis tool. It supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering and conversion.", + "EDAM operation": [ + "DNA mapping", + "Chimera detection" + ], + "EDAM topic": [ + "Metagenomics", + "Sequence analysis" + ], + "Status": "To update", + "Source": "https://github.com/torognes/vsearch", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "vsearch", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/vsearch", + "Galaxy wrapper version": "2.8.3", + "Conda id": "vsearch", + "Conda version": "2.28.1", + "EDAM operation (no superclasses)": [ + "DNA mapping", + "Chimera detection" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 8, + "Available on UseGalaxy.org.au": 8, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 8, + "Tools available on UseGalaxy.org (Main)": 8, + "Tools available on UseGalaxy.org.au": 8, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 8, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 8, + "Tools available on GalaxyTrakr": 8, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 8, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 8, + "Tools available on UseGalaxy.no": 8, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 182, + "Total tool usage (usegalaxy.eu)": 8507 + }, + { + "Galaxy wrapper id": "vsnp", + "Galaxy tool ids": [ + "vsnp_add_zero_coverage", + "vsnp_build_tables", + "vsnp_determine_ref_from_data", + "vsnp_get_snps", + "vsnp_statistics" + ], + "Description": "The vSNP tools are critical components of several workflows that validate SNPs and produce annotatedSNP tables and corresponding phylogenetic trees.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/USDA-VS/vSNP", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "vsnp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsnp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/vsnp", + "Galaxy wrapper version": "3.0.6", + "Conda id": "pysam", + "Conda version": "0.22.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "weather_app", + "Galaxy tool ids": [ + "simple_weather" + ], + "Description": "provides simple weather in text format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://wttr.in/", + "ToolShed categories": [ + "Visualization", + "Web Services" + ], + "ToolShed id": "simpleweather", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/weather_app", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/weather_app", + "Galaxy wrapper version": "0.1.2", + "Conda id": "curl", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "weblogo3", + "Galaxy tool ids": [ + "rgweblogo3" + ], + "Description": "Sequence Logo generator for fasta", + "bio.tool id": "weblogo", + "bio.tool ids": [ + "weblogo" + ], + "biii": null, + "bio.tool name": "WebLogo", + "bio.tool description": "Web-based application designed to make generate sequence logos.", + "EDAM operation": [ + "Sequence cluster visualisation", + "Sequence visualisation", + "Sequence motif recognition" + ], + "EDAM topic": [ + "Nucleic acid sites, features and motifs", + "Sequence analysis" + ], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Graphics" + ], + "ToolShed id": "weblogo3", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/weblogo3", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/weblogo3", + "Galaxy wrapper version": "3.5.0", + "Conda id": "weblogo", + "Conda version": "3.7.9", + "EDAM operation (no superclasses)": [ + "Sequence cluster visualisation", + "Sequence visualisation", + "Sequence motif recognition" + ], + "EDAM topic (no superclasses)": [ + "Nucleic acid sites, features and motifs", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 74, + "Total tool usage (usegalaxy.eu)": 2379 + }, + { + "Galaxy wrapper id": "windowmasker", + "Galaxy tool ids": [ + "windowmasker_mkcounts", + "windowmasker_ustat" + ], + "Description": "Identify repetitive regions using WindowMasker", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/lxr/source/src/app/winmasker/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "windowmasker", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/windowmasker/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/windowmasker", + "Galaxy wrapper version": "1.0", + "Conda id": "blast", + "Conda version": "2.16.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 85 + }, + { + "Galaxy wrapper id": "winnowmap", + "Galaxy tool ids": [ + "winnowmap" + ], + "Description": "A long-read mapping tool optimized for mapping ONT and PacBio reads to repetitive reference sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/marbl/Winnowmap", + "ToolShed categories": [ + "Next Gen Mappers" + ], + "ToolShed id": "winnowmap", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/winnowmap", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/winnowmap", + "Galaxy wrapper version": "2.03", + "Conda id": "winnowmap", + "Conda version": "2.03", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 27, + "Total tool usage (usegalaxy.eu)": 248 + }, + { + "Galaxy wrapper id": "xpath", + "Galaxy tool ids": [ + "xpath" + ], + "Description": "XPath XML querying tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://search.cpan.org/dist/XML-XPath/", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "xpath", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/xpath", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/xpath", + "Galaxy wrapper version": null, + "Conda id": "perl-xml-xpath", + "Conda version": "1.47", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 234 + }, + { + "Galaxy wrapper id": "yahs", + "Galaxy tool ids": [ + "yahs" + ], + "Description": "Yet Another Hi-C scaffolding tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/c-zhou/yahs", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "yahs", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs", + "Galaxy wrapper version": "1.2a.2", + "Conda id": "yahs", + "Conda version": "1.2a.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 64, + "Total tool usage (usegalaxy.eu)": 344 + }, + { + "Galaxy wrapper id": "zerone", + "Galaxy tool ids": [ + "zerone" + ], + "Description": "ChIP-seq discretization and quality control", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/nanakiksc/zerone", + "ToolShed categories": [ + "ChIP-seq" + ], + "ToolShed id": "zerone", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/zerone", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tools/zerone", + "Galaxy wrapper version": "1.0", + "Conda id": "zerone", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 90 + }, + { + "Galaxy wrapper id": "bamtools", + "Galaxy tool ids": [ + "bamtools" + ], + "Description": "Operate on and transform BAM datasets in various ways using bamtools", + "bio.tool id": "bamtools", + "bio.tool ids": [ + "bamtools" + ], + "biii": null, + "bio.tool name": "BamTools", + "bio.tool description": "BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files.", + "EDAM operation": [ + "Data handling", + "Sequence alignment analysis" + ], + "EDAM topic": [ + "Sequencing", + "Data management", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/pezmaster31/bamtools", + "ToolShed categories": [ + "Sequence Analysis", + "SAM" + ], + "ToolShed id": "bamtools", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools", + "Galaxy wrapper version": "2.5.2", + "Conda id": "bamtools", + "Conda version": "2.5.2", + "EDAM operation (no superclasses)": [ + "Data handling", + "Sequence alignment analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 208, + "Total tool usage (usegalaxy.eu)": 14021 + }, + { + "Galaxy wrapper id": "bamtools_filter", + "Galaxy tool ids": [ + "bamFilter" + ], + "Description": "Filter BAM datasets on various attributes using bamtools filter", + "bio.tool id": "bamtools", + "bio.tool ids": [ + "bamtools" + ], + "biii": null, + "bio.tool name": "BamTools", + "bio.tool description": "BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files.", + "EDAM operation": [ + "Data handling", + "Sequence alignment analysis" + ], + "EDAM topic": [ + "Sequencing", + "Data management", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/pezmaster31/bamtools", + "ToolShed categories": [ + "Sequence Analysis", + "SAM" + ], + "ToolShed id": "bamtools_filter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filter", + "Galaxy wrapper version": "2.5.2", + "Conda id": "bamtools", + "Conda version": "2.5.2", + "EDAM operation (no superclasses)": [ + "Data handling", + "Sequence alignment analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1195, + "Total tool usage (usegalaxy.eu)": 114863 + }, + { + "Galaxy wrapper id": "bamtools_split", + "Galaxy tool ids": [ + "bamtools_split_mapped", + "bamtools_split_paired", + "bamtools_split_ref", + "bamtools_split_tag" + ], + "Description": "Utility for filtering BAM files. It is based on the BAMtools suiteof tools by Derek Barnett.", + "bio.tool id": "bamtools", + "bio.tool ids": [ + "bamtools" + ], + "biii": null, + "bio.tool name": "BamTools", + "bio.tool description": "BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files.", + "EDAM operation": [ + "Data handling", + "Sequence alignment analysis" + ], + "EDAM topic": [ + "Sequencing", + "Data management", + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/pezmaster31/bamtools", + "ToolShed categories": [ + "Sequence Analysis", + "SAM" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_split", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_split", + "Galaxy wrapper version": "2.5.2", + "Conda id": "bamtools", + "Conda version": "2.5.2", + "EDAM operation (no superclasses)": [ + "Data handling", + "Sequence alignment analysis" + ], + "EDAM topic (no superclasses)": [ + "Sequencing", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 197, + "Total tool usage (usegalaxy.eu)": 4328 + }, + { + "Galaxy wrapper id": "biotradis", + "Galaxy tool ids": [ + "bacteria_tradis", + "tradis_essentiality", + "tradis_gene_insert_sites" + ], + "Description": "Bio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data.", + "bio.tool id": "biotradis", + "bio.tool ids": [ + "biotradis" + ], + "biii": null, + "bio.tool name": "biotradis", + "bio.tool description": "The Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format.", + "EDAM operation": [ + "Sequence analysis" + ], + "EDAM topic": [ + "Mobile genetic elements", + "Workflows" + ], + "Status": "Up-to-date", + "Source": "https://www.sanger.ac.uk/science/tools/bio-tradis", + "ToolShed categories": [ + "Genome annotation" + ], + "ToolShed id": "biotradis", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradis", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis", + "Galaxy wrapper version": "1.4.5", + "Conda id": "biotradis", + "Conda version": "1.4.5", + "EDAM operation (no superclasses)": [ + "Sequence analysis" + ], + "EDAM topic (no superclasses)": [ + "Mobile genetic elements", + "Workflows" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cuffcompare", + "Galaxy tool ids": [ + "cuffcompare" + ], + "Description": "Galaxy wrappers for the Cuffcompare tool.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://cole-trapnell-lab.github.io/cufflinks/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cuffcompare", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcompare", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare", + "Galaxy wrapper version": "2.2.1", + "Conda id": "cufflinks", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 65, + "Total tool usage (usegalaxy.eu)": 1130 + }, + { + "Galaxy wrapper id": "cuffdiff", + "Galaxy tool ids": [ + "cuffdiff" + ], + "Description": "Galaxy wrappers for the Cuffdiff tool.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://cole-trapnell-lab.github.io/cufflinks/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cuffdiff", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiff", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff", + "Galaxy wrapper version": "2.2.1", + "Conda id": "cufflinks", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 228, + "Total tool usage (usegalaxy.eu)": 5831 + }, + { + "Galaxy wrapper id": "cufflinks", + "Galaxy tool ids": [ + "cufflinks" + ], + "Description": "Galaxy wrappers for the Cufflinks tool.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://cole-trapnell-lab.github.io/cufflinks/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cufflinks", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinks", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks", + "Galaxy wrapper version": "2.2.1", + "Conda id": "cufflinks", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 319, + "Total tool usage (usegalaxy.eu)": 32218 + }, + { + "Galaxy wrapper id": "cuffmerge", + "Galaxy tool ids": [ + "cuffmerge" + ], + "Description": "Galaxy wrappers for the Cuffmerge tool.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://cole-trapnell-lab.github.io/cufflinks/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cuffmerge", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmerge", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge", + "Galaxy wrapper version": "2.2.1", + "Conda id": "cufflinks", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 1, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 122, + "Total tool usage (usegalaxy.eu)": 3292 + }, + { + "Galaxy wrapper id": "cuffnorm", + "Galaxy tool ids": [ + "cuffnorm" + ], + "Description": "The Cuffnorm tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://cole-trapnell-lab.github.io/cufflinks/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cuffnorm", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnorm", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm", + "Galaxy wrapper version": "2.2.1", + "Conda id": "cufflinks", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 27, + "Total tool usage (usegalaxy.eu)": 660 + }, + { + "Galaxy wrapper id": "cuffquant", + "Galaxy tool ids": [ + "cuffquant" + ], + "Description": "The Cuffquant tool", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://cole-trapnell-lab.github.io/cufflinks/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cuffquant", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquant", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant", + "Galaxy wrapper version": "2.2.1", + "Conda id": "cufflinks", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 18, + "Total tool usage (usegalaxy.eu)": 688 + }, + { + "Galaxy wrapper id": "fasta_clipping_histogram", + "Galaxy tool ids": [ + "cshl_fasta_clipping_histogram" + ], + "Description": "Length Distribution chart", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation", + "Graphics", + "Statistics" + ], + "ToolShed id": "fasta_clipping_histogram", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_clipping_histogram", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_clipping_histogram", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fasta_formatter", + "Galaxy tool ids": [ + "cshl_fasta_formatter" + ], + "Description": "FASTA Width formatter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "fasta_formatter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_formatter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_formatter", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 1, + "No. of tool users (2022-2023) (usegalaxy.eu)": 68, + "Total tool usage (usegalaxy.eu)": 2912 + }, + { + "Galaxy wrapper id": "fasta_nucleotide_changer", + "Galaxy tool ids": [ + "cshl_fasta_nucleotides_changer" + ], + "Description": "RNA/DNA converter.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "fasta_nucleotide_changer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_nucleotide_changer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_nucleotide_changer", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 29, + "Total tool usage (usegalaxy.eu)": 774 + }, + { + "Galaxy wrapper id": "fastq_quality_boxplot", + "Galaxy tool ids": [ + "cshl_fastq_quality_boxplot" + ], + "Description": "Draw quality score boxplot", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fastq Manipulation", + "Graphics", + "Statistics" + ], + "ToolShed id": "fastq_quality_boxplot", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_boxplot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_boxplot", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 51, + "Total tool usage (usegalaxy.eu)": 1178 + }, + { + "Galaxy wrapper id": "fastq_quality_converter", + "Galaxy tool ids": [ + "cshl_fastq_quality_converter" + ], + "Description": "Quality format converter (ASCII-Numeric)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_quality_converter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_converter", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 220 + }, + { + "Galaxy wrapper id": "fastq_quality_filter", + "Galaxy tool ids": [ + "cshl_fastq_quality_filter" + ], + "Description": "Filter by quality", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_quality_filter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_filter", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1509, + "Total tool usage (usegalaxy.eu)": 15172 + }, + { + "Galaxy wrapper id": "fastq_to_fasta", + "Galaxy tool ids": [ + "cshl_fastq_to_fasta" + ], + "Description": "FASTQ to FASTA converter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation", + "Convert Formats" + ], + "ToolShed id": "fastq_to_fasta", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fasta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_to_fasta", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 419, + "Total tool usage (usegalaxy.eu)": 13599 + }, + { + "Galaxy wrapper id": "fastx_artifacts_filter", + "Galaxy tool ids": [ + "cshl_fastx_artifacts_filter" + ], + "Description": "Remove sequencing artifacts", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation" + ], + "ToolShed id": "fastx_artifacts_filter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_artifacts_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_artifacts_filter", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 27, + "Total tool usage (usegalaxy.eu)": 1810 + }, + { + "Galaxy wrapper id": "fastx_barcode_splitter", + "Galaxy tool ids": [ + "cshl_fastx_barcode_splitter" + ], + "Description": "Barcode Splitter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation" + ], + "ToolShed id": "fastx_barcode_splitter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_barcode_splitter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_barcode_splitter", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 128, + "Total tool usage (usegalaxy.eu)": 16591 + }, + { + "Galaxy wrapper id": "fastx_clipper", + "Galaxy tool ids": [ + "cshl_fastx_clipper" + ], + "Description": "Clip adapter sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation" + ], + "ToolShed id": "fastx_clipper", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_clipper", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_clipper", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 96, + "Total tool usage (usegalaxy.eu)": 3333 + }, + { + "Galaxy wrapper id": "fastx_collapser", + "Galaxy tool ids": [ + "cshl_fastx_collapser" + ], + "Description": "Collapse sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "fastx_collapser", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_collapser", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_collapser", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 114, + "Total tool usage (usegalaxy.eu)": 61218 + }, + { + "Galaxy wrapper id": "fastx_nucleotides_distribution", + "Galaxy tool ids": [ + "cshl_fastx_nucleotides_distribution" + ], + "Description": "Draw nucleotides distribution chart", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fastq Manipulation", + "Graphics" + ], + "ToolShed id": "fastx_nucleotides_distribution", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_nucleotides_distribution", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_nucleotides_distribution", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 25, + "Total tool usage (usegalaxy.eu)": 249 + }, + { + "Galaxy wrapper id": "fastx_quality_statistics", + "Galaxy tool ids": [ + "cshl_fastx_quality_statistics" + ], + "Description": "Compute quality statistics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fastq Manipulation", + "Statistics" + ], + "ToolShed id": "fastx_quality_statistics", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_quality_statistics", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_quality_statistics", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 63, + "Total tool usage (usegalaxy.eu)": 2176 + }, + { + "Galaxy wrapper id": "fastx_renamer", + "Galaxy tool ids": [ + "cshl_fastx_renamer" + ], + "Description": "Rename sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation" + ], + "ToolShed id": "fastx_renamer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_renamer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_renamer", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 68, + "Total tool usage (usegalaxy.eu)": 2280 + }, + { + "Galaxy wrapper id": "fastx_reverse_complement", + "Galaxy tool ids": [ + "cshl_fastx_reverse_complement" + ], + "Description": "Reverse-Complement", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fastq Manipulation", + "Fasta Manipulation" + ], + "ToolShed id": "fastx_reverse_complement", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_reverse_complement", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_reverse_complement", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 156, + "Total tool usage (usegalaxy.eu)": 10832 + }, + { + "Galaxy wrapper id": "fastx_trimmer", + "Galaxy tool ids": [ + "cshl_fastx_trimmer" + ], + "Description": "Trim sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://hannonlab.cshl.edu/fastx_toolkit/", + "ToolShed categories": [ + "Fasta Manipulation", + "Fastq Manipulation" + ], + "ToolShed id": "fastx_trimmer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_trimmer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_trimmer", + "Galaxy wrapper version": "0.0.14", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 205, + "Total tool usage (usegalaxy.eu)": 13149 + }, + { + "Galaxy wrapper id": "fastq_combiner", + "Galaxy tool ids": [ + "fastq_combiner" + ], + "Description": "Combine FASTA and QUAL into FASTQ", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation", + "Fasta Manipulation" + ], + "ToolShed id": "fastq_combiner", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_combiner", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_combiner", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 66, + "Total tool usage (usegalaxy.eu)": 8676 + }, + { + "Galaxy wrapper id": "fastq_filter", + "Galaxy tool ids": [ + "fastq_filter" + ], + "Description": "Filter FASTQ reads by quality score and length", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_filter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_filter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_filter", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 266, + "Total tool usage (usegalaxy.eu)": 14222 + }, + { + "Galaxy wrapper id": "fastq_groomer", + "Galaxy tool ids": [ + "fastq_groomer" + ], + "Description": "Convert between various FASTQ quality formats.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_groomer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_groomer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_groomer", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1028, + "Total tool usage (usegalaxy.eu)": 94802 + }, + { + "Galaxy wrapper id": "fastq_manipulation", + "Galaxy tool ids": [ + "fastq_manipulation" + ], + "Description": "Manipulate FASTQ reads on various attributes.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_manipulation", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_manipulation", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_manipulation", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 69, + "Total tool usage (usegalaxy.eu)": 2503 + }, + { + "Galaxy wrapper id": "fastq_masker_by_quality", + "Galaxy tool ids": [ + "fastq_masker_by_quality" + ], + "Description": "FASTQ Masker by quality score", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_masker_by_quality", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 170 + }, + { + "Galaxy wrapper id": "fastq_paired_end_deinterlacer", + "Galaxy tool ids": [ + "fastq_paired_end_deinterlacer" + ], + "Description": "FASTQ de-interlacer on paired end reads.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_paired_end_deinterlacer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 122, + "Total tool usage (usegalaxy.eu)": 8410 + }, + { + "Galaxy wrapper id": "fastq_paired_end_interlacer", + "Galaxy tool ids": [ + "fastq_paired_end_interlacer" + ], + "Description": "FASTQ interlacer on paired end reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_paired_end_interlacer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1087, + "Total tool usage (usegalaxy.eu)": 17024 + }, + { + "Galaxy wrapper id": "fastq_paired_end_joiner", + "Galaxy tool ids": [ + "fastq_paired_end_joiner" + ], + "Description": "FASTQ joiner on paired end reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_paired_end_joiner", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 245, + "Total tool usage (usegalaxy.eu)": 16635 + }, + { + "Galaxy wrapper id": "fastq_paired_end_splitter", + "Galaxy tool ids": [ + "fastq_paired_end_splitter" + ], + "Description": "FASTQ splitter on joined paired end reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_paired_end_splitter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 196, + "Total tool usage (usegalaxy.eu)": 3092 + }, + { + "Galaxy wrapper id": "fastq_stats", + "Galaxy tool ids": [ + "fastq_stats" + ], + "Description": "FASTQ Summary Statistics by column", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_stats", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_stats", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_stats", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 221, + "Total tool usage (usegalaxy.eu)": 4246 + }, + { + "Galaxy wrapper id": "fastq_to_tabular", + "Galaxy tool ids": [ + "fastq_to_tabular" + ], + "Description": "FASTQ to Tabular converter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_to_tabular", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_to_tabular", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_to_tabular", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 93, + "Total tool usage (usegalaxy.eu)": 12593 + }, + { + "Galaxy wrapper id": "fastq_trimmer", + "Galaxy tool ids": [ + "fastq_trimmer" + ], + "Description": "FASTQ Trimmer by quality", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_trimmer", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_trimmer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_trimmer", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 210, + "Total tool usage (usegalaxy.eu)": 9757 + }, + { + "Galaxy wrapper id": "fastqtofasta", + "Galaxy tool ids": [ + "fastq_to_fasta_python" + ], + "Description": "FASTQ to FASTA converter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastqtofasta", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastqtofasta", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1371, + "Total tool usage (usegalaxy.eu)": 178178 + }, + { + "Galaxy wrapper id": "tabular_to_fastq", + "Galaxy tool ids": [ + "tabular_to_fastq" + ], + "Description": "Tabular to FASTQ converter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproject/sequence_utils", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "tabular_to_fastq", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/tabular_to_fastq", + "Galaxy wrapper version": "1.1.5", + "Conda id": "galaxy_sequence_utils", + "Conda version": "1.1.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 200, + "Total tool usage (usegalaxy.eu)": 7388 + }, + { + "Galaxy wrapper id": "kraken", + "Galaxy tool ids": [ + "kraken-filter", + "kraken-mpa-report", + "kraken-report", + "kraken-translate", + "kraken" + ], + "Description": "Kraken is a system for assigning taxonomic labels to short DNAsequences, usually obtained through metagenomic studies. Previous attempts by otherbioinformatics software to accomplish this task have often used sequence alignmentor machine learning techniques that were quite slow, leading to the developmentof less sensitive but much faster abundance estimation programs. Kraken aims toachieve high sensitivity and high speed by utilizing exact alignments of k-mersand a novel classification algorithm.", + "bio.tool id": "kraken", + "bio.tool ids": [ + "kraken" + ], + "biii": null, + "bio.tool name": "Kraken", + "bio.tool description": "System for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. It aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm.", + "EDAM operation": [ + "Taxonomic classification" + ], + "EDAM topic": [ + "Taxonomy", + "Metagenomics" + ], + "Status": "To update", + "Source": "http://ccb.jhu.edu/software/kraken/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "kraken", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken", + "Galaxy wrapper version": null, + "Conda id": "kraken", + "Conda version": "1.1.1", + "EDAM operation (no superclasses)": [ + "Taxonomic classification" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 1, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 2, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1209, + "Total tool usage (usegalaxy.eu)": 33778 + }, + { + "Galaxy wrapper id": "kraken2", + "Galaxy tool ids": [ + "kraken2" + ], + "Description": "Kraken2 for taxonomic designation.", + "bio.tool id": "kraken2", + "bio.tool ids": [ + "kraken2" + ], + "biii": null, + "bio.tool name": "kraken2", + "bio.tool description": "Kraken 2 is the newest version of Kraken, a taxonomic classification system using exact k-mer matches to achieve high accuracy and fast classification speeds. This classifier matches each k-mer within a query sequence to the lowest common ancestor (LCA) of all genomes containing the given k-mer. The k-mer assignments inform the classification algorithm.", + "EDAM operation": [ + "Taxonomic classification" + ], + "EDAM topic": [ + "Taxonomy", + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "http://ccb.jhu.edu/software/kraken/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "kraken2", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken2/kraken2/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken2/kraken2", + "Galaxy wrapper version": "2.1.3", + "Conda id": "kraken2", + "Conda version": "2.1.3", + "EDAM operation (no superclasses)": [ + "Taxonomic classification" + ], + "EDAM topic (no superclasses)": [ + "Taxonomy", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 1, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2367, + "Total tool usage (usegalaxy.eu)": 185308 + }, + { + "Galaxy wrapper id": "samtools", + "Galaxy tool ids": [], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/samtools/samtools", + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/samtools", + "Galaxy wrapper version": "1.15.1", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "snpeff", + "Galaxy tool ids": [ + "snpEff", + "snpEff_build_gb", + "snpEff_databases", + "snpEff_download", + "snpEff_get_chr_names" + ], + "Description": "SnpEff is a genetic variant annotation and effect prediction toolbox", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://snpeff.sourceforge.net/", + "ToolShed categories": [ + "Genome-Wide Association Study", + "Variant Analysis" + ], + "ToolShed id": "snpeff", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpeff", + "Galaxy wrapper version": null, + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 1, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 5, + "Tools available on GalaxyTrakr": 5, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 5, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 5, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2676, + "Total tool usage (usegalaxy.eu)": 95592 + }, + { + "Galaxy wrapper id": "snpsift", + "Galaxy tool ids": [ + "snpSift_annotate", + "snpSift_caseControl", + "snpSift_extractFields", + "snpSift_filter", + "snpSift_int", + "snpSift_rmInfo", + "snpsift_vartype", + "snpSift_vcfCheck" + ], + "Description": "snpEff SnpSift tools from Pablo Cingolani", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://snpeff.sourceforge.net/SnpSift.html", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "snpsift", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsift", + "Galaxy wrapper version": null, + "Conda id": "snpsift", + "Conda version": "5.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 8, + "Available on UseGalaxy.org.au": 8, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 8, + "Tools available on UseGalaxy.org (Main)": 8, + "Tools available on UseGalaxy.org.au": 8, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 8, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 8, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 8, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 8, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 8, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 8, + "Tools available on UseGalaxy.no": 8, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1352, + "Total tool usage (usegalaxy.eu)": 5114712 + }, + { + "Galaxy wrapper id": "snpsift_dbnsfp", + "Galaxy tool ids": [ + "snpSift_dbnsfp" + ], + "Description": "snpEff SnpSift dbnsfp tool from Pablo Cingolani", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://snpeff.sourceforge.net/SnpSift.html#dbNSFP", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "snpsift_dbnsfp", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift_dbnsfp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsift_dbnsfp", + "Galaxy wrapper version": null, + "Conda id": "snpsift", + "Conda version": "5.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 46 + }, + { + "Galaxy wrapper id": "snpsift_genesets", + "Galaxy tool ids": [ + "snpSift_geneSets" + ], + "Description": "Annotate SnpEff vcf with genesets such as Gene Ontology (GO), KEGG, Reactome", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://snpeff.sourceforge.net/SnpSift.html#geneSets", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "snpsift_genesets", + "Galaxy wrapper owner": "iuc", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift_genesets/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsift_genesets", + "Galaxy wrapper version": null, + "Conda id": "snpsift", + "Conda version": "5.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 31, + "Total tool usage (usegalaxy.eu)": 528 + }, + { + "Galaxy wrapper id": "vcf2tsv", + "Galaxy tool ids": [ + "vcf2tsv" + ], + "Description": "Converts VCF files into tab-delimited format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis", + "Convert Formats" + ], + "ToolShed id": "vcf2tsv", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcf2tsv", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcf2tsv", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 352, + "Total tool usage (usegalaxy.eu)": 167913 + }, + { + "Galaxy wrapper id": "vcfaddinfo", + "Galaxy tool ids": [ + "vcfaddinfo" + ], + "Description": "Adds info fields from the second dataset which are not present in the first dataset.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfaddinfo", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfaddinfo", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfaddinfo", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 357 + }, + { + "Galaxy wrapper id": "vcfallelicprimitives", + "Galaxy tool ids": [ + "vcfallelicprimitives" + ], + "Description": "Splits alleleic primitives (gaps or mismatches) into multiple VCF lines", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfallelicprimitives", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfallelicprimitives", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfallelicprimitives", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 286, + "Total tool usage (usegalaxy.eu)": 15803 + }, + { + "Galaxy wrapper id": "vcfannotate", + "Galaxy tool ids": [ + "vcfannotate" + ], + "Description": "Intersect VCF records with BED annotations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfannotate", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfannotate", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfannotate", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 77, + "Total tool usage (usegalaxy.eu)": 2181 + }, + { + "Galaxy wrapper id": "vcfannotategenotypes", + "Galaxy tool ids": [ + "vcfannotategenotypes" + ], + "Description": "Annotate genotypes in a VCF dataset using genotypes from another VCF dataset.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfannotategenotypes", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfannotategenotypes", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfannotategenotypes", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 28, + "Total tool usage (usegalaxy.eu)": 192 + }, + { + "Galaxy wrapper id": "vcfbedintersect", + "Galaxy tool ids": [ + "vcfbedintersect" + ], + "Description": "Intersect VCF and BED datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfbedintersect", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfbedintersect", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfbedintersect", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 80, + "Total tool usage (usegalaxy.eu)": 3217 + }, + { + "Galaxy wrapper id": "vcfbreakcreatemulti", + "Galaxy tool ids": [ + "vcfbreakcreatemulti" + ], + "Description": "Break multiple alleles into multiple records, or combine overallpoing alleles into a single record", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfbreakcreatemulti", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfbreakcreatemulti", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfbreakcreatemulti", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 471 + }, + { + "Galaxy wrapper id": "vcfcheck", + "Galaxy tool ids": [ + "vcfcheck" + ], + "Description": "Verify that the reference allele matches the reference genome", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfcheck", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcheck", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcheck", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 39, + "Total tool usage (usegalaxy.eu)": 675 + }, + { + "Galaxy wrapper id": "vcfcombine", + "Galaxy tool ids": [ + "vcfcombine" + ], + "Description": "Combine multiple VCF datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfcombine", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcombine", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcombine", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 99, + "Total tool usage (usegalaxy.eu)": 1695 + }, + { + "Galaxy wrapper id": "vcfcommonsamples", + "Galaxy tool ids": [ + "vcfcommonsamples" + ], + "Description": "Output records belonging to samples commong between two datasets.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfcommonsamples", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcommonsamples", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcommonsamples", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 244 + }, + { + "Galaxy wrapper id": "vcfdistance", + "Galaxy tool ids": [ + "vcfdistance" + ], + "Description": "Calculate distance to the nearest variant.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfdistance", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfdistance", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfdistance", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 40, + "Total tool usage (usegalaxy.eu)": 564 + }, + { + "Galaxy wrapper id": "vcffilter", + "Galaxy tool ids": [ + "vcffilter2" + ], + "Description": "Tool for filtering VCF files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcffilter", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcffilter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcffilter", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 882, + "Total tool usage (usegalaxy.eu)": 44437 + }, + { + "Galaxy wrapper id": "vcffixup", + "Galaxy tool ids": [ + "vcffixup" + ], + "Description": "Count the allele frequencies across alleles present in each record in the VCF file.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcffixup", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcffixup", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcffixup", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 71, + "Total tool usage (usegalaxy.eu)": 917 + }, + { + "Galaxy wrapper id": "vcfflatten", + "Galaxy tool ids": [ + "vcfflatten2" + ], + "Description": "Removes multi-allelic sites by picking the most common alternate", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfflatten", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfflatten", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfflatten", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 177 + }, + { + "Galaxy wrapper id": "vcfgeno2haplo", + "Galaxy tool ids": [ + "vcfgeno2haplo" + ], + "Description": "Convert genotype-based phased alleles into haplotype alleles", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfgeno2haplo", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfgeno2haplo", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfgeno2haplo", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 36, + "Total tool usage (usegalaxy.eu)": 718 + }, + { + "Galaxy wrapper id": "vcfgenotypes", + "Galaxy tool ids": [ + "vcfgenotypes" + ], + "Description": "Convert numerical representation of genotypes to allelic.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfgenotypes", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfgenotypes", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfgenotypes", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 48, + "Total tool usage (usegalaxy.eu)": 451 + }, + { + "Galaxy wrapper id": "vcfhethom", + "Galaxy tool ids": [ + "vcfhethom" + ], + "Description": "Count the number of heterozygotes and alleles, compute het/hom ratio.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfhethom", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfhethom", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfhethom", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 90, + "Total tool usage (usegalaxy.eu)": 1370 + }, + { + "Galaxy wrapper id": "vcfleftalign", + "Galaxy tool ids": [ + "vcfleftalign" + ], + "Description": "Left-align indels and complex variants in VCF dataset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfleftalign", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfleftalign", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfleftalign", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 279 + }, + { + "Galaxy wrapper id": "vcfprimers", + "Galaxy tool ids": [ + "vcfprimers" + ], + "Description": "Extract flanking sequences for each VCF record", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfprimers", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfprimers", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfprimers", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 708 + }, + { + "Galaxy wrapper id": "vcfrandomsample", + "Galaxy tool ids": [ + "vcfrandomsample" + ], + "Description": "Randomly sample sites from VCF dataset", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfrandomsample", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfrandomsample", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfrandomsample", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 159 + }, + { + "Galaxy wrapper id": "vcfselectsamples", + "Galaxy tool ids": [ + "vcfselectsamples" + ], + "Description": "Select samples from a VCF file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfselectsamples", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfselectsamples", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfselectsamples", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 29, + "Total tool usage (usegalaxy.eu)": 854 + }, + { + "Galaxy wrapper id": "vcfsort", + "Galaxy tool ids": [ + "vcfsort" + ], + "Description": "Sort VCF dataset by coordinate", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfsort", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfsort", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfsort", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 63, + "Total tool usage (usegalaxy.eu)": 1852 + }, + { + "Galaxy wrapper id": "vcfvcfintersect", + "Galaxy tool ids": [ + "vcfvcfintersect" + ], + "Description": "Intersect two VCF datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ekg/vcflib", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "vcfvcfintersect", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfvcfintersect", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfvcfintersect", + "Galaxy wrapper version": null, + "Conda id": "vcflib", + "Conda version": "1.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 265, + "Total tool usage (usegalaxy.eu)": 972774 + }, + { + "Galaxy wrapper id": "ThermoRawFileParser", + "Galaxy tool ids": [ + "thermo_raw_file_converter" + ], + "Description": "Thermo RAW file converter", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/compomics/ThermoRawFileParser", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "thermo_raw_file_converter", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser", + "Galaxy wrapper version": "1.3.4", + "Conda id": "thermorawfileparser", + "Conda version": "1.4.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 34, + "Total tool usage (usegalaxy.eu)": 2689 + }, + { + "Galaxy wrapper id": "appendfdr", + "Galaxy tool ids": [ + "append_fdr" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "appendfdr", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/appendfdr", + "Galaxy wrapper version": "0.2.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bed_to_protein_map", + "Galaxy tool ids": [ + "bed_to_protein_map" + ], + "Description": "Converts a BED file to a tabular list of exon locations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "bed_to_protein_map", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bed_to_protein_map", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bed_to_protein_map", + "Galaxy wrapper version": "0.2.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 49, + "Total tool usage (usegalaxy.eu)": 385 + }, + { + "Galaxy wrapper id": "blast_plus_remote_blastp", + "Galaxy tool ids": [ + "blast_plus_remote_blastp" + ], + "Description": "NCBI BLAST+ with -remote option", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://blast.ncbi.nlm.nih.gov/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "blast_plus_remote_blastp", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/blast_plus_remote_blastp", + "Galaxy wrapper version": "2.6.0", + "Conda id": "blast", + "Conda version": "2.16.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bumbershoot", + "Galaxy tool ids": [ + "idpqonvertEmbedder", + "idpassemble", + "idpqonvert", + "idpquery", + "myrimatch" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://proteowizard.sourceforge.net/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bumbershoot", + "Galaxy wrapper version": "3.0.21142", + "Conda id": "bumbershoot", + "Conda version": "3_0_21142_0e4f4a4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 1348 + }, + { + "Galaxy wrapper id": "calisp", + "Galaxy tool ids": [ + "calisp" + ], + "Description": "Calgary approach to isotopes in proteomics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/kinestetika/Calisp/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "calisp", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/calisp", + "Galaxy wrapper version": "3.0.13", + "Conda id": "calisp", + "Conda version": "3.0.13", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cardinal", + "Galaxy tool ids": [ + "cardinal_classification", + "cardinal_colocalization", + "cardinal_combine", + "cardinal_data_exporter", + "cardinal_filtering", + "cardinal_mz_images", + "cardinal_preprocessing", + "cardinal_quality_report", + "cardinal_segmentations", + "cardinal_single_ion_segmentation", + "cardinal_spectra_plots" + ], + "Description": "Statistical and computational tools for analyzing mass spectrometry imaging datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://cardinalmsi.org", + "ToolShed categories": [ + "Proteomics", + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinal", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinal", + "Galaxy wrapper version": "3.4.3", + "Conda id": "bioconductor-cardinal", + "Conda version": "3.4.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 9, + "Available on UseGalaxy.eu": 11, + "Available on UseGalaxy.fr": 11, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 9, + "Tools available on UseGalaxy.eu": 11, + "Tools available on UseGalaxy.fr": 11, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 9, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 11, + "Tools available on UseGalaxy.no": 9, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 277, + "Total tool usage (usegalaxy.eu)": 48705 + }, + { + "Galaxy wrapper id": "dbbuilder", + "Galaxy tool ids": [ + "dbbuilder" + ], + "Description": "Protein Database Downloader", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "dbbuilder", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder", + "Galaxy wrapper version": "0.3.4", + "Conda id": "wget", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 161, + "Total tool usage (usegalaxy.eu)": 4758 + }, + { + "Galaxy wrapper id": "decoyfasta", + "Galaxy tool ids": [], + "Description": "Galaxy tool wrapper for the transproteomic pipeline decoyFASTA tool.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "decoyfasta", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfasta", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfasta", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dia_umpire", + "Galaxy tool ids": [ + "dia_umpire_se" + ], + "Description": "DIA-Umpire analysis for data independent acquisition (DIA) mass spectrometry-based proteomics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://diaumpire.sourceforge.net/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "dia_umpire", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/dia_umpire", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dia_umpire", + "Galaxy wrapper version": "2.1.3", + "Conda id": "dia_umpire", + "Conda version": "2.1.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 33 + }, + { + "Galaxy wrapper id": "dialignr", + "Galaxy tool ids": [ + "dialignr" + ], + "Description": "DIAlignR is an R package for retention time alignment of targeted mass spectrometric data, including DIA and SWATH-MS data. This tool works with MS2 chromatograms directly and uses dynamic programming for alignment of raw chromatographic traces. DIAlignR uses a hybrid approach of global (feature-based) and local (raw data-based) alignment to establish correspondence between peaks.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/shubham1637/DIAlignR", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "dialignr", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr", + "Galaxy wrapper version": "1.2.0", + "Conda id": "bioconductor-dialignr", + "Conda version": "2.10.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 40 + }, + { + "Galaxy wrapper id": "diann", + "Galaxy tool ids": [ + "diann" + ], + "Description": "DiaNN (DIA-based Neural Networks) is a software for DIA/SWATH data processing.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/vdemichev/DiaNN", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "diann", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/vdemichev/DiaNN", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diann", + "Galaxy wrapper version": "1.8.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 15 + }, + { + "Galaxy wrapper id": "diapysef", + "Galaxy tool ids": [ + "diapysef" + ], + "Description": "diapysef is a convenience package for working with DIA-PASEF data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pypi.org/project/diapysef/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "diapysef", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproject/tools-iuc/tree/master/tools/diapysef", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diapysef", + "Galaxy wrapper version": "0.3.5.0", + "Conda id": "diapysef", + "Conda version": "1.0.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 245 + }, + { + "Galaxy wrapper id": "diffacto", + "Galaxy tool ids": [ + "diffacto" + ], + "Description": "Diffacto comparative protein abundance estimation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/statisticalbiotechnology/diffacto", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "diffacto", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffacto", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffacto", + "Galaxy wrapper version": "1.0.6", + "Conda id": "diffacto", + "Conda version": "1.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 7 + }, + { + "Galaxy wrapper id": "digestdb", + "Galaxy tool ids": [ + "digestdb" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "digestdb", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/digestdb", + "Galaxy wrapper version": "0.1.0", + "Conda id": "trans_proteomic_pipeline", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "directag_and_tagrecon", + "Galaxy tool ids": [], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "directag_and_tagrecon", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/directag_and_tagrecon", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "data_manager_eggnog_mapper", + "Galaxy tool ids": [], + "Description": "downloads eggnog data for eggnog-mapper", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "data_manager_eggnog_mapper", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper_data_manager", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "data_manager_eggnog_mapper_abspath", + "Galaxy tool ids": [], + "Description": "download eggnog data for eggnog-mapper", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "data_manager_eggnog_mapper_abspath", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspath", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspath", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "eggnog_mapper", + "Galaxy tool ids": [ + "eggnog_mapper", + "eggnog_mapper_annotate", + "eggnog_mapper_search" + ], + "Description": "eggnog-mapper fast functional annotation of novel sequences", + "bio.tool id": "eggnog-mapper-v2", + "bio.tool ids": [ + "eggnog-mapper-v2" + ], + "biii": null, + "bio.tool name": "eggNOG-mapper v2", + "bio.tool description": "EggNOG-mapper is a tool for fast functional annotation of novel sequences. It uses precomputed orthologous groups and phylogenies from the eggNOG database (http://eggnog5.embl.de) to transfer functional information from fine-grained orthologs only.", + "EDAM operation": [ + "Homology-based gene prediction", + "Genome annotation", + "Fold recognition", + "Information extraction", + "Query and retrieval" + ], + "EDAM topic": [ + "Metagenomics", + "Phylogeny", + "Transcriptomics", + "Workflows", + "Sequence analysis" + ], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "eggnog_mapper", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper", + "Galaxy wrapper version": "2.1.8", + "Conda id": "eggnog-mapper", + "Conda version": "2.1.12", + "EDAM operation (no superclasses)": [ + "Homology-based gene prediction", + "Genome annotation", + "Fold recognition", + "Information extraction", + "Query and retrieval" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Phylogeny", + "Transcriptomics", + "Workflows", + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 3, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 3, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 3, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 510, + "Total tool usage (usegalaxy.eu)": 30565 + }, + { + "Galaxy wrapper id": "encyclopedia", + "Galaxy tool ids": [ + "encyclopedia_encyclopedia", + "encyclopedia_fasta_to_prosit_csv", + "encyclopedia_library_to_blib", + "encyclopedia_prosit_csv_to_library", + "encyclopedia_quantify", + "encyclopedia_searchtolib", + "encyclopedia_walnut" + ], + "Description": "Mass Spec Data-Independent Acquisition (DIA) MS/MS analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bitbucket.org/searleb/encyclopedia/wiki/Home", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "encyclopedia", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/encyclopedia", + "Galaxy wrapper version": "1.12.34", + "Conda id": "encyclopedia", + "Conda version": "2.12.30", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 48, + "Total tool usage (usegalaxy.eu)": 706 + }, + { + "Galaxy wrapper id": "fasta_merge_files_and_filter_unique_sequences", + "Galaxy tool ids": [ + "fasta_merge_files_and_filter_unique_sequences" + ], + "Description": "Concatenate FASTA database files together", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproteomics/tools-galaxyp/", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "fasta_merge_files_and_filter_unique_sequences", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences", + "Galaxy wrapper version": "1.2.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 461, + "Total tool usage (usegalaxy.eu)": 29886 + }, + { + "Galaxy wrapper id": "fastg2protlib", + "Galaxy tool ids": [ + "fastg2protlib-peptides", + "fastg2protlib-validate" + ], + "Description": "Generate FASTA from FASTG", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproteomics/fastg2protlib.git", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "fastg2protlib", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlib", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlib", + "Galaxy wrapper version": "1.0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 28 + }, + { + "Galaxy wrapper id": "feature_alignment", + "Galaxy tool ids": [ + "feature_alignment" + ], + "Description": "TRIC integrates information from all available runs via a graph-based alignment strategy", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "feature_alignment", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/msproteomicstools/msproteomicstools/blob/master/TRIC-README.md", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment", + "Galaxy wrapper version": "0.11.0", + "Conda id": "msproteomicstools", + "Conda version": "0.11.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 18 + }, + { + "Galaxy wrapper id": "filter_by_fasta_ids", + "Galaxy tool ids": [ + "filter_by_fasta_ids" + ], + "Description": "Filter FASTA on the headers and/or the sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fasta Manipulation", + "Proteomics" + ], + "ToolShed id": "filter_by_fasta_ids", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids", + "Galaxy wrapper version": "2.3", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 426, + "Total tool usage (usegalaxy.eu)": 26274 + }, + { + "Galaxy wrapper id": "flashlfq", + "Galaxy tool ids": [ + "flashlfq" + ], + "Description": "FlashLFQ mass-spectrometry proteomics label-free quantification", + "bio.tool id": "flashlfq", + "bio.tool ids": [ + "flashlfq" + ], + "biii": null, + "bio.tool name": "FlashLFQ", + "bio.tool description": "FlashLFQ is an ultrafast label-free quantification algorithm for mass-spectrometry proteomics.", + "EDAM operation": [ + "Label-free quantification" + ], + "EDAM topic": [ + "Proteomics experiment", + "Proteomics" + ], + "Status": "To update", + "Source": "https://github.com/smith-chem-wisc/FlashLFQ", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "flashlfq", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq", + "Galaxy wrapper version": "1.0.3.1", + "Conda id": "flashlfq", + "Conda version": "1.2.6", + "EDAM operation (no superclasses)": [ + "Label-free quantification" + ], + "EDAM topic (no superclasses)": [ + "Proteomics experiment", + "Proteomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 17, + "Total tool usage (usegalaxy.eu)": 645 + }, + { + "Galaxy wrapper id": "fragpipe", + "Galaxy tool ids": [ + "fragpipe" + ], + "Description": "Data analysis for mass spectrometry-based proteomics.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://fragpipe.nesvilab.org/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "fragpipe", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fragpipe", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fragpipe", + "Galaxy wrapper version": "20.0", + "Conda id": "fragpipe", + "Conda version": "20.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gffcompare_to_bed", + "Galaxy tool ids": [ + "gffcompare_to_bed" + ], + "Description": "Filter and convert a gffCompare GTF to BED", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/gpertea/gffcompare/", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "gffcompare_to_bed", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/gffcompare_to_bed", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/gffcompare_to_bed", + "Galaxy wrapper version": "0.2.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 131, + "Total tool usage (usegalaxy.eu)": 2115 + }, + { + "Galaxy wrapper id": "hardklor", + "Galaxy tool ids": [ + "hardklor", + "kronik" + ], + "Description": "Hardklör", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "hardklor", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tools/hardklor", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/hardklor", + "Galaxy wrapper version": "2.30.1+galaxy1", + "Conda id": "hardklor", + "Conda version": "2.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 111 + }, + { + "Galaxy wrapper id": "idconvert", + "Galaxy tool ids": [ + "idconvert" + ], + "Description": "Convert mass spectrometry identification files on linux or MacOSX", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "idconvert", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/idconvert", + "Galaxy wrapper version": null, + "Conda id": "proteowizard", + "Conda version": "3_0_9992", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 275 + }, + { + "Galaxy wrapper id": "lfq_protein_quant", + "Galaxy tool ids": [ + "lfq_protein_quant" + ], + "Description": "Enable protein summarisation and quantitation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/compomics/LFQ_galaxy_p", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "lfq_protein_quant", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quant", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quant", + "Galaxy wrapper version": "1.0", + "Conda id": "bioconductor-msnbase", + "Conda version": "2.28.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 111 + }, + { + "Galaxy wrapper id": "ltq_iquant_cli", + "Galaxy tool ids": [], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "ltq_iquant_cli", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ltq_iquant_cli", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "maldiquant", + "Galaxy tool ids": [ + "maldi_quant_peak_detection", + "maldi_quant_preprocessing" + ], + "Description": "MALDIquant provides a complete analysis pipeline for MALDI-TOF and other 2D mass spectrometry data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://strimmerlab.org/software/maldiquant/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "MALDIquant", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/MALDIquant", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maldiquant", + "Galaxy wrapper version": "1.22.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 2, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 25, + "Total tool usage (usegalaxy.eu)": 3797 + }, + { + "Galaxy wrapper id": "map_peptides_to_bed", + "Galaxy tool ids": [ + "map_peptides_to_bed" + ], + "Description": "Map peptides to a reference genome for display by a genome browser", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "map_peptides_to_bed", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/map_peptides_to_bed", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/map_peptides_to_bed", + "Galaxy wrapper version": "0.2", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 41 + }, + { + "Galaxy wrapper id": "maxquant", + "Galaxy tool ids": [ + "maxquant", + "maxquant_mqpar" + ], + "Description": "wrapper for MaxQuant", + "bio.tool id": "maxquant", + "bio.tool ids": [ + "maxquant" + ], + "biii": null, + "bio.tool name": "MaxQuant", + "bio.tool description": "Quantitative proteomics software package designed for analyzing large mass-spectrometric data sets. It is specifically aimed at high-resolution MS data.", + "EDAM operation": [ + "Imputation", + "Visualisation", + "Protein quantification", + "Statistical calculation", + "Standardisation and normalisation", + "Heat map generation", + "Clustering", + "Principal component plotting" + ], + "EDAM topic": [ + "Proteomics experiment", + "Proteomics", + "Statistics and probability" + ], + "Status": "Up-to-date", + "Source": "https://www.maxquant.org/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "maxquant", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant", + "Galaxy wrapper version": "2.0.3.0", + "Conda id": "maxquant", + "Conda version": "2.0.3.0", + "EDAM operation (no superclasses)": [ + "Imputation", + "Visualisation", + "Protein quantification", + "Standardisation and normalisation", + "Heat map generation", + "Clustering" + ], + "EDAM topic (no superclasses)": [ + "Proteomics experiment", + "Proteomics", + "Statistics and probability" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 415, + "Total tool usage (usegalaxy.eu)": 6078 + }, + { + "Galaxy wrapper id": "meta_proteome_analyzer", + "Galaxy tool ids": [ + "meta_proteome_analyzer" + ], + "Description": "MetaProteomeAnalyzer", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/compomics/meta-proteome-analyzer/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "meta_proteome_analyzer", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzer", + "Galaxy wrapper version": "2.0.0", + "Conda id": "mpa-portable", + "Conda version": "2.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 123 + }, + { + "Galaxy wrapper id": "metagene_annotator", + "Galaxy tool ids": [ + "metagene_annotator" + ], + "Description": "MetaGeneAnnotator gene-finding program for prokaryote and phage", + "bio.tool id": "metageneannotator", + "bio.tool ids": [ + "metageneannotator" + ], + "biii": null, + "bio.tool name": "MetaGeneAnnotator", + "bio.tool description": "Prokaryotic gene finding program from environmental genome shotgun sequences or metagenomic sequences.", + "EDAM operation": [ + "Sequence annotation" + ], + "EDAM topic": [ + "Genomics", + "Model organisms", + "Data submission, annotation and curation" + ], + "Status": "Up-to-date", + "Source": "http://metagene.nig.ac.jp/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "metagene_annotator", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/metagene_annotator", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metagene_annotator", + "Galaxy wrapper version": "1.0", + "Conda id": "metagene_annotator", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [ + "Sequence annotation" + ], + "EDAM topic (no superclasses)": [ + "Genomics", + "Model organisms", + "Data submission, annotation and curation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 115, + "Total tool usage (usegalaxy.eu)": 636 + }, + { + "Galaxy wrapper id": "metanovo", + "Galaxy tool ids": [ + "metanovo" + ], + "Description": "Produce targeted databases for mass spectrometry analysis.", + "bio.tool id": "metanovo", + "bio.tool ids": [ + "metanovo" + ], + "biii": null, + "bio.tool name": "MetaNovo", + "bio.tool description": "An open-source pipeline for probabilistic peptide discovery in complex metaproteomic datasets.", + "EDAM operation": [ + "Target-Decoy", + "de Novo sequencing", + "Tag-based peptide identification", + "Protein identification", + "Expression analysis" + ], + "EDAM topic": [ + "Proteomics", + "Microbial ecology", + "Metagenomics", + "Proteomics experiment", + "Small molecules" + ], + "Status": "Up-to-date", + "Source": "https://github.com/uct-cbio/proteomics-pipelines", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "metanovo", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo", + "Galaxy wrapper version": "1.9.4", + "Conda id": "metanovo", + "Conda version": "1.9.4", + "EDAM operation (no superclasses)": [ + "Target-Decoy", + "de Novo sequencing", + "Tag-based peptide identification", + "Protein identification", + "Expression analysis" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Microbial ecology", + "Metagenomics", + "Proteomics experiment", + "Small molecules" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 4181 + }, + { + "Galaxy wrapper id": "metaquantome", + "Galaxy tool ids": [ + "metaquantome_db", + "metaquantome_expand", + "metaquantome_filter", + "metaquantome_sample", + "metaquantome_stat", + "metaquantome_viz" + ], + "Description": "quantitative analysis of microbiome taxonomy and function", + "bio.tool id": "metaQuantome", + "bio.tool ids": [ + "metaQuantome" + ], + "biii": null, + "bio.tool name": "metaQuantome", + "bio.tool description": "metaQuantome software suite analyzes the state of a microbiome by leveraging complex taxonomic and functional hierarchies to summarize peptide-level quantitative information. metaQuantome offers differential abundance analysis, principal components analysis, and clustered heat map visualizations, as well as exploratory analysis for a single sample or experimental condition.", + "EDAM operation": [ + "Principal component visualisation", + "Visualisation", + "Functional clustering", + "Query and retrieval", + "Differential protein expression analysis", + "Heat map generation", + "Quantification", + "Indexing", + "Filtering", + "Statistical inference" + ], + "EDAM topic": [ + "Proteomics", + "Metatranscriptomics", + "Microbial ecology", + "Proteomics experiment", + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/galaxyproteomics/metaquantome/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "metaquantome", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome", + "Galaxy wrapper version": "2.0.2", + "Conda id": "metaquantome", + "Conda version": "2.0.2", + "EDAM operation (no superclasses)": [ + "Principal component visualisation", + "Functional clustering", + "Query and retrieval", + "Heat map generation", + "Quantification", + "Indexing", + "Filtering", + "Statistical inference" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Metatranscriptomics", + "Microbial ecology", + "Proteomics experiment", + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 6, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 6, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 6, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 104, + "Total tool usage (usegalaxy.eu)": 2522 + }, + { + "Galaxy wrapper id": "mgf_formatter", + "Galaxy tool ids": [ + "mgf_formatter" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "mgf_formatter", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mgf_formatter", + "Galaxy wrapper version": "1.0.0", + "Conda id": "mgf-formatter", + "Conda version": "1.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "moFF", + "Galaxy tool ids": [ + "proteomics_moff" + ], + "Description": "moFF (a modest Feature Finder) extracts MS1 intensities from RAW and mzML spectrum files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/compomics/moFF", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomics_moff", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/moFF", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/moFF", + "Galaxy wrapper version": "2.0.3", + "Conda id": "moff", + "Conda version": "2.0.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 759 + }, + { + "Galaxy wrapper id": "morpheus", + "Galaxy tool ids": [ + "morpheus" + ], + "Description": "Morpheus MS Search Application", + "bio.tool id": "morpheus", + "bio.tool ids": [ + "morpheus" + ], + "biii": null, + "bio.tool name": "Morpheus", + "bio.tool description": "A proteomics search algorithm specifically designed for high-resolution tandem mass spectra.", + "EDAM operation": [ + "Peptide database search" + ], + "EDAM topic": [ + "Proteomics" + ], + "Status": "To update", + "Source": "https://cwenger.github.io/Morpheus", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "morpheus", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus", + "Galaxy wrapper version": "288", + "Conda id": "morpheus", + "Conda version": "290", + "EDAM operation (no superclasses)": [ + "Peptide database search" + ], + "EDAM topic (no superclasses)": [ + "Proteomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 140 + }, + { + "Galaxy wrapper id": "mqppep", + "Galaxy tool ids": [ + "mqppep_anova", + "mqppep_preproc" + ], + "Description": "MaxQuant Phosphoproteomic Enrichment Pipeline - Preprocessing and ANOVA", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproteomics/tools-galaxyp/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "mqppep", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppep", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppep", + "Galaxy wrapper version": "0.1.19", + "Conda id": "bioconductor-preprocesscore", + "Conda version": "1.64.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 2 + }, + { + "Galaxy wrapper id": "msconvert", + "Galaxy tool ids": [ + "msconvert" + ], + "Description": "msconvert Convert and/or filter mass spectrometry files (including vendor formats) using the official Docker container", + "bio.tool id": "msconvert", + "bio.tool ids": [ + "msconvert" + ], + "biii": null, + "bio.tool name": "msConvert", + "bio.tool description": "msConvert is a command-line utility for converting between various mass spectrometry data formats, including from raw data from several commercial companies (with vendor libraries, Windows-only). For Windows users, there is also a GUI, msConvertGUI.", + "EDAM operation": [ + "Filtering", + "Formatting" + ], + "EDAM topic": [ + "Proteomics", + "Proteomics experiment" + ], + "Status": "To update", + "Source": "http://proteowizard.sourceforge.net/tools.shtml", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "msconvert", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert", + "Galaxy wrapper version": "3.0.20287", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Filtering", + "Formatting" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Proteomics experiment" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 189, + "Total tool usage (usegalaxy.eu)": 19958 + }, + { + "Galaxy wrapper id": "msgfplus", + "Galaxy tool ids": [ + "msgfplus" + ], + "Description": "MSGF+", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "msgfplus", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplus", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplus", + "Galaxy wrapper version": "0.5", + "Conda id": "msgf_plus", + "Conda version": "2024.03.26", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 507 + }, + { + "Galaxy wrapper id": "msms_extractor", + "Galaxy tool ids": [ + "msms_extractor" + ], + "Description": "Extract MS/MS scans from the mzML file(s) based on PSM report.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "msms_extractor", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msms_extractor", + "Galaxy wrapper version": "1.0.0", + "Conda id": "proteowizard", + "Conda version": "3_0_9992", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 110 + }, + { + "Galaxy wrapper id": "msstats", + "Galaxy tool ids": [ + "msstats" + ], + "Description": "MSstats tool for analyzing mass spectrometry proteomic datasets", + "bio.tool id": "msstatstmt", + "bio.tool ids": [ + "msstatstmt" + ], + "biii": null, + "bio.tool name": "MSstatsTMT", + "bio.tool description": "Tools for detecting differentially abundant peptides and proteins in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labeling", + "EDAM operation": [ + "Spectrum calculation", + "Tag-based peptide identification", + "Differential protein expression profiling" + ], + "EDAM topic": [ + "Proteomics", + "Proteomics experiment", + "Protein expression" + ], + "Status": "To update", + "Source": "https://github.com/MeenaChoi/MSstats", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats", + "Galaxy wrapper version": "4.0.0", + "Conda id": "bioconductor-msstats", + "Conda version": "4.10.0", + "EDAM operation (no superclasses)": [ + "Spectrum calculation", + "Tag-based peptide identification", + "Differential protein expression profiling" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Proteomics experiment", + "Protein expression" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 144, + "Total tool usage (usegalaxy.eu)": 2036 + }, + { + "Galaxy wrapper id": "msstatstmt", + "Galaxy tool ids": [ + "msstatstmt" + ], + "Description": "MSstatsTMT protein significance analysis in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labeling", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://msstats.org/msstatstmt/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "msstatstmt", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt", + "Galaxy wrapper version": "2.0.0", + "Conda id": "bioconductor-msstatstmt", + "Conda version": "2.10.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 71, + "Total tool usage (usegalaxy.eu)": 726 + }, + { + "Galaxy wrapper id": "mt2mq", + "Galaxy tool ids": [ + "mt2mq" + ], + "Description": "Tool to prepare metatranscriptomic outputs from ASaiM for Metaquantome", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "mt2mq", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mt2mq", + "Galaxy wrapper version": "1.1.0", + "Conda id": "r-tidyverse", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 19, + "Total tool usage (usegalaxy.eu)": 270 + }, + { + "Galaxy wrapper id": "mz_to_sqlite", + "Galaxy tool ids": [ + "mz_to_sqlite" + ], + "Description": "Creates a SQLite database for proteomics data", + "bio.tool id": "mztosqlite", + "bio.tool ids": [ + "mztosqlite" + ], + "biii": null, + "bio.tool name": "mzToSQLite", + "bio.tool description": "Convert proteomics data files into a SQLite database", + "EDAM operation": [ + "Conversion", + "Peptide database search" + ], + "EDAM topic": [ + "Proteomics", + "Biological databases" + ], + "Status": "To update", + "Source": "https://github.com/galaxyproteomics/mzToSQLite", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "mz_to_sqlite", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite", + "Galaxy wrapper version": "2.1.1+galaxy0", + "Conda id": "mztosqlite", + "Conda version": "2.1.1", + "EDAM operation (no superclasses)": [ + "Conversion", + "Peptide database search" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Biological databases" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 33, + "Total tool usage (usegalaxy.eu)": 844 + }, + { + "Galaxy wrapper id": "openms", + "Galaxy tool ids": [ + "AccurateMassSearch", + "AssayGeneratorMetabo", + "BaselineFilter", + "CVInspector", + "ClusterMassTraces", + "ClusterMassTracesByPrecursor", + "CometAdapter", + "ConsensusID", + "ConsensusMapNormalizer", + "DTAExtractor", + "DatabaseFilter", + "DatabaseSuitability", + "DeMeanderize", + "DecoyDatabase", + "Digestor", + "DigestorMotif", + "EICExtractor", + "ERPairFinder", + "Epifany", + "ExternalCalibration", + "FalseDiscoveryRate", + "FeatureFinderCentroided", + "FeatureFinderIdentification", + "FeatureFinderIsotopeWavelet", + "FeatureFinderMRM", + "FeatureFinderMetabo", + "FeatureFinderMetaboIdent", + "FeatureFinderMultiplex", + "FeatureLinkerLabeled", + "FeatureLinkerUnlabeled", + "FeatureLinkerUnlabeledKD", + "FeatureLinkerUnlabeledQT", + "FileConverter", + "FileFilter", + "FileInfo", + "FileMerger", + "FuzzyDiff", + "GNPSExport", + "HighResPrecursorMassCorrector", + "IDConflictResolver", + "IDExtractor", + "IDFileConverter", + "IDFilter", + "IDMapper", + "IDMassAccuracy", + "IDMerger", + "IDPosteriorErrorProbability", + "IDRTCalibration", + "IDRipper", + "IDScoreSwitcher", + "IDSplitter", + "InternalCalibration", + "IsobaricAnalyzer", + "JSONExporter", + "LuciphorAdapter", + "MRMMapper", + "MRMPairFinder", + "MRMTransitionGroupPicker", + "MSFraggerAdapter", + "MSGFPlusAdapter", + "MSstatsConverter", + "MapAlignerIdentification", + "MapAlignerPoseClustering", + "MapAlignerSpectrum", + "MapAlignerTreeGuided", + "MapNormalizer", + "MapRTTransformer", + "MapStatistics", + "MascotAdapter", + "MascotAdapterOnline", + "MassCalculator", + "MassTraceExtractor", + "MetaProSIP", + "MetaboliteSpectralMatcher", + "MultiplexResolver", + "MzMLSplitter", + "MzTabExporter", + "NoiseFilterGaussian", + "NoiseFilterSGolay", + "NovorAdapter", + "NucleicAcidSearchEngine", + "OpenMSDatabasesInfo", + "OpenMSInfo", + "OpenPepXL", + "OpenPepXLLF", + "OpenSwathAnalyzer", + "OpenSwathAssayGenerator", + "OpenSwathChromatogramExtractor", + "OpenSwathConfidenceScoring", + "OpenSwathDIAPreScoring", + "OpenSwathDecoyGenerator", + "OpenSwathFeatureXMLToTSV", + "OpenSwathFileSplitter", + "OpenSwathMzMLFileCacher", + "OpenSwathRTNormalizer", + "OpenSwathRewriteToFeatureXML", + "OpenSwathWorkflow", + "PSMFeatureExtractor", + "PeakPickerHiRes", + "PeakPickerIterative", + "PeakPickerWavelet", + "PeptideIndexer", + "PercolatorAdapter", + "PhosphoScoring", + "PrecursorMassCorrector", + "ProteinInference", + "ProteinQuantifier", + "ProteinResolver", + "QCCalculator", + "QCEmbedder", + "QCExporter", + "QCExtractor", + "QCImporter", + "QCMerger", + "QCShrinker", + "QualityControl", + "RNADigestor", + "RNAMassCalculator", + "RNPxlSearch", + "RNPxlXICFilter", + "SageAdapter", + "SeedListGenerator", + "SemanticValidator", + "SequenceCoverageCalculator", + "SimpleSearchEngine", + "SiriusAdapter", + "SpecLibCreator", + "SpecLibSearcher", + "SpectraFilterBernNorm", + "SpectraFilterMarkerMower", + "SpectraFilterNLargest", + "SpectraFilterNormalizer", + "SpectraFilterParentPeakMower", + "SpectraFilterScaler", + "SpectraFilterSqrtMower", + "SpectraFilterThresholdMower", + "SpectraFilterWindowMower", + "SpectraMerger", + "SpectraSTSearchAdapter", + "StaticModification", + "TICCalculator", + "TOFCalibration", + "TargetedFileConverter", + "TextExporter", + "TriqlerConverter", + "XFDR", + "XMLValidator", + "XTandemAdapter" + ], + "Description": "OpenMS Suite for LC/MS data management and analyses", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.openms.de/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "openms", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms", + "Galaxy wrapper version": "3.1", + "Conda id": "openms", + "Conda version": "3.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 8, + "Available on UseGalaxy.org.au": 34, + "Available on UseGalaxy.eu": 144, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 8, + "Tools available on UseGalaxy.org.au": 34, + "Tools available on UseGalaxy.eu": 144, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 141, + "Tools available on UseGalaxy.no": 124, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 886, + "Total tool usage (usegalaxy.eu)": 105432 + }, + { + "Galaxy wrapper id": "pathwaymatcher", + "Galaxy tool ids": [ + "reactome_pathwaymatcher" + ], + "Description": "Reactome Pathway Matcher", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/LuisFranciscoHS/PathwayMatcher", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "reactome_pathwaymatcher", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcher", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcher", + "Galaxy wrapper version": null, + "Conda id": "pathwaymatcher", + "Conda version": "1.9.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 20, + "Total tool usage (usegalaxy.eu)": 238 + }, + { + "Galaxy wrapper id": "pep_pointer", + "Galaxy tool ids": [ + "pep_pointer" + ], + "Description": "PepPointer categorizes peptides by their genomic coordinates.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Genomic Interval Operations", + "Proteomics" + ], + "ToolShed id": "pep_pointer", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointer", + "Galaxy wrapper version": "0.1.3+galaxy1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 498 + }, + { + "Galaxy wrapper id": "pepquery", + "Galaxy tool ids": [ + "pepquery" + ], + "Description": "A peptide-centric MS search engine for novel peptide identification and validation.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pepquery.org", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "pepquery", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery", + "Galaxy wrapper version": "1.6.2", + "Conda id": "pepquery", + "Conda version": "2.0.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 23, + "Total tool usage (usegalaxy.eu)": 4862 + }, + { + "Galaxy wrapper id": "pepquery2", + "Galaxy tool ids": [ + "pepquery2", + "pepquery2_index", + "pepquery2_show_sets" + ], + "Description": "PepQuery2 peptide-centric MS search for peptide identification and validation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://pepquery.org", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "pepquery2", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery2", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery2", + "Galaxy wrapper version": "2.0.2", + "Conda id": "pepquery", + "Conda version": "2.0.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 717 + }, + { + "Galaxy wrapper id": "peptide_genomic_coordinate", + "Galaxy tool ids": [ + "peptide_genomic_coordinate" + ], + "Description": "Gets genomic coordinate of peptides based on the information in mzsqlite and genomic mapping sqlite files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "peptide_genomic_coordinate", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptide_genomic_coordinate", + "Galaxy wrapper version": "1.0.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 468 + }, + { + "Galaxy wrapper id": "peptideshaker", + "Galaxy tool ids": [ + "fasta_cli", + "ident_params", + "peptide_shaker", + "search_gui" + ], + "Description": "PeptideShaker and SearchGUI", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://compomics.github.io", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "peptideshaker", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker", + "Galaxy wrapper version": null, + "Conda id": "searchgui", + "Conda version": "4.3.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 485, + "Total tool usage (usegalaxy.eu)": 17477 + }, + { + "Galaxy wrapper id": "pepxml_to_xls", + "Galaxy tool ids": [], + "Description": "Convert PepXML to Tabular", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "pepxml_to_xls", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xls", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xls", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "percolator", + "Galaxy tool ids": [ + "batched_set_list_creator", + "percolator", + "percolator_input_converters", + "pout2mzid" + ], + "Description": "Percolator", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "percolator", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tools/percolator", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/percolator", + "Galaxy wrapper version": "3.5", + "Conda id": "percolator", + "Conda version": "3.6.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 368 + }, + { + "Galaxy wrapper id": "pi_db_tools", + "Galaxy tool ids": [ + "calc_delta_pi", + "pi_db_split", + "pi_dbspec_align" + ], + "Description": "HiRIEF tools", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "hirieftools", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tools/pi_db_tools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pi_db_tools", + "Galaxy wrapper version": "1.3", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pmd_fdr", + "Galaxy tool ids": [ + "pmd_fdr" + ], + "Description": "Calculate Precursor Mass Discrepancy (PMD) for MS/MS", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/slhubler/PMD-FDR-for-Galaxy-P", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "pmd_fdr", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pmd_fdr", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pmd_fdr", + "Galaxy wrapper version": "1.4.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "custom_pro_db", + "Galaxy tool ids": [ + "custom_pro_db" + ], + "Description": "CustomProDB", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/customProDB.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "custom_pro_db", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_db", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/custom_pro_db", + "Galaxy wrapper version": "1.22.0", + "Conda id": "bioconductor-rgalaxy", + "Conda version": "1.37.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 57, + "Total tool usage (usegalaxy.eu)": 1652 + }, + { + "Galaxy wrapper id": "custom_pro_db_annotation_data_manager", + "Galaxy tool ids": [], + "Description": "CustomProDB Annotation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/customProDB.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "custom_pro_db_annotation_data_manager", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_db", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/custom_pro_db_annotation_data_manager", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "psm2sam", + "Galaxy tool ids": [ + "PSMtoSAM" + ], + "Description": "PSM to SAM", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://bioconductor.org/packages/release/bioc/html/proBAMr.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "psm_to_sam", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/psm2sam", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/psm2sam", + "Galaxy wrapper version": "1.3.2.1", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "proteinpilot", + "Galaxy tool ids": [ + "convert_windows_newlines", + "proteinpilot", + "proteinpilot_group_extractor", + "proteinpilot_tabular", + "proteinpilot_xml" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "proteinpilot", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteinpilot", + "Galaxy wrapper version": "0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "retrieve_ensembl_bed", + "Galaxy tool ids": [ + "retrieve_ensembl_bed" + ], + "Description": "Retrieve cDNA features from Ensembl REST API in BED format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://rest.ensembl.org/", + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "retrieve_ensembl_bed", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/retrieve_ensembl_bed", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/retrieve_ensembl_bed", + "Galaxy wrapper version": "0.1.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "translate_bed", + "Galaxy tool ids": [ + "translate_bed" + ], + "Description": "Translate BED transcript CDS or cDNA in 3 frames", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://rest.ensembl.org/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "translate_bed", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bed", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bed", + "Galaxy wrapper version": "0.1.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 49, + "Total tool usage (usegalaxy.eu)": 643 + }, + { + "Galaxy wrapper id": "proteomiqon_joinquantpepionswithproteins", + "Galaxy tool ids": [ + "proteomiqon_joinquantpepionswithproteins" + ], + "Description": "The tool JoinQuantPepIonsWithProteins combines results from ProteinInference and PSMBasedQuantification.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://csbiology.github.io/ProteomIQon/tools/JoinQuantPepIonsWithProteins.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_joinquantpepionswithproteins", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteins", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteins", + "Galaxy wrapper version": "0.0.1", + "Conda id": "proteomiqon-joinquantpepionswithproteins", + "Conda version": "0.0.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 366 + }, + { + "Galaxy wrapper id": "proteomiqon_labeledproteinquantification", + "Galaxy tool ids": [ + "proteomiqon_labeledproteinquantification" + ], + "Description": "The tool LabeledProteinQuantification estimates protein abundances using quantified peptide ions.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://csbiology.github.io/ProteomIQon/tools/LabeledProteinQuantification.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_labeledproteinquantification", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labeledproteinquantification", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labeledproteinquantification", + "Galaxy wrapper version": "0.0.1", + "Conda id": "proteomiqon-labeledproteinquantification", + "Conda version": "0.0.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 14 + }, + { + "Galaxy wrapper id": "proteomiqon_labelfreeproteinquantification", + "Galaxy tool ids": [ + "proteomiqon_labelfreeproteinquantification" + ], + "Description": "The tool LabelFreeProteinQuantification estimates protein abundances using quantified peptide ions.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://csbiology.github.io/ProteomIQon/tools/LabelfreeProteinQuantification.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_labelfreeproteinquantification", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labelfreeproteinquantification", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labelfreeproteinquantification", + "Galaxy wrapper version": "0.0.1", + "Conda id": "proteomiqon-labelfreeproteinquantification", + "Conda version": "0.0.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 6 + }, + { + "Galaxy wrapper id": "proteomiqon_mzmltomzlite", + "Galaxy tool ids": [ + "proteomiqon_mzmltomzlite" + ], + "Description": "The tool MzMLToMzLite allows to convert mzML files to mzLite files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://csbiology.github.io/ProteomIQon/tools/MzMLToMzLite.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_mzmltomzlite", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomIQon_MzMLToMzLite", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_mzmltomzlite", + "Galaxy wrapper version": "0.0.8", + "Conda id": "proteomiqon-mzmltomzlite", + "Conda version": "0.0.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 721 + }, + { + "Galaxy wrapper id": "proteomiqon_peptidedb", + "Galaxy tool ids": [ + "proteomiqon_peptidedb" + ], + "Description": "The tool ProteomIQon PeptideDB creates a peptide database in the SQLite format.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://csbiology.github.io/ProteomIQon/tools/PeptideDB.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_peptidedb", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidedb", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidedb", + "Galaxy wrapper version": "0.0.7", + "Conda id": "proteomiqon-peptidedb", + "Conda version": "0.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 96 + }, + { + "Galaxy wrapper id": "proteomiqon_peptidespectrummatching", + "Galaxy tool ids": [ + "proteomiqon_peptidespectrummatching" + ], + "Description": "Given raw an MS run in the mzLite format, this tool iterates across all MS/MS scans, determines precursor charge states and possible peptide spectrum matches using reimplementations of SEQUEST,Andromeda and XTandem.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://csbiology.github.io/ProteomIQon/tools/PeptideSpectrumMatching.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_peptidespectrummatching", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidespectrummatching", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidespectrummatching", + "Galaxy wrapper version": "0.0.7", + "Conda id": "proteomiqon-peptidespectrummatching", + "Conda version": "0.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 686 + }, + { + "Galaxy wrapper id": "proteomiqon_proteininference", + "Galaxy tool ids": [ + "proteomiqon_proteininference" + ], + "Description": "MS-based shotgun proteomics estimates protein abundances using a proxy: peptides. The process of 'Protein Inference' is concerned with the mapping of identified peptides to the proteins they putatively originated from.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://csbiology.github.io/ProteomIQon/tools/ProteinInference.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_proteininference", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_proteininference", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_proteininference", + "Galaxy wrapper version": "0.0.7", + "Conda id": "proteomiqon-proteininference", + "Conda version": "0.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 89 + }, + { + "Galaxy wrapper id": "proteomiqon_psmbasedquantification", + "Galaxy tool ids": [ + "proteomiqon_psmbasedquantification" + ], + "Description": "The PSMBasedQuantification tool was designed to allow label-free quantification as well as quantification of full metabolic labeled samples.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://csbiology.github.io/ProteomIQon/tools/PSMBasedQuantification.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_psmbasedquantification", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmbasedquantification", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmbasedquantification", + "Galaxy wrapper version": "0.0.8", + "Conda id": "proteomiqon-psmbasedquantification", + "Conda version": "0.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 604 + }, + { + "Galaxy wrapper id": "proteomiqon_psmstatistics", + "Galaxy tool ids": [ + "proteomiqon_psmstatistics" + ], + "Description": "The PSMStatistics tool utilizes semi supervised machine learning techniques to integrate search engine scores as well as the mentioned quality scores into one single consensus score.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://csbiology.github.io/ProteomIQon/tools/PSMStatistics.html", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteomiqon_psmstatistics", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmstatistics", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmstatistics", + "Galaxy wrapper version": "0.0.8", + "Conda id": "proteomiqon-psmstatistics", + "Conda version": "0.0.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 694 + }, + { + "Galaxy wrapper id": "proteore_venn_diagram", + "Galaxy tool ids": [ + "proteore_venn_diagram" + ], + "Description": "ProteoRE JVenn Diagram", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "proteore_venn_diagram", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteore_venn_diagram", + "Galaxy wrapper version": "2021.06.08", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 15 + }, + { + "Galaxy wrapper id": "protxml_to_xls", + "Galaxy tool ids": [ + "protxml_to_xls" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "protxml_to_xls", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/protxml_to_xls", + "Galaxy wrapper version": "0.1.0", + "Conda id": "trans_proteomic_pipeline", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "psm_eval", + "Galaxy tool ids": [ + "psm_eval" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "psm_eval", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_eval", + "Galaxy wrapper version": "0.1.0", + "Conda id": "binaries_for_psm_eval", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "psm_validation", + "Galaxy tool ids": [ + "psmvalidator" + ], + "Description": "Validate PSM from Ion Fragmentation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproteomics/psm_fragments.git", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "psm_validation", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validation", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validation", + "Galaxy wrapper version": "1.0.3", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 20 + }, + { + "Galaxy wrapper id": "pyprophet", + "Galaxy tool ids": [ + "pyprophet_export", + "pyprophet_merge", + "pyprophet_peptide", + "pyprophet_protein", + "pyprophet_score", + "pyprophet_subsample" + ], + "Description": "Semi-supervised learning and scoring of OpenSWATH results.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/PyProphet/pyprophet", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet", + "Galaxy wrapper version": "2.1.4", + "Conda id": "pyprophet", + "Conda version": "2.2.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 6, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 33, + "Total tool usage (usegalaxy.eu)": 2509 + }, + { + "Galaxy wrapper id": "pyteomics", + "Galaxy tool ids": [ + "mztab2tsv" + ], + "Description": "Tools using the pyteomics library", + "bio.tool id": "pyteomics", + "bio.tool ids": [ + "pyteomics" + ], + "biii": null, + "bio.tool name": "Pyteomics", + "bio.tool description": "Framework for proteomics data analysis, supporting mzML, MGF, pepXML and more.", + "EDAM operation": [ + "Protein identification" + ], + "EDAM topic": [ + "Proteomics", + "Proteomics experiment" + ], + "Status": "To update", + "Source": "https://pyteomics.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Proteomics", + "Metabolomics" + ], + "ToolShed id": "pyteomics", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomics", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomics", + "Galaxy wrapper version": "4.4.1", + "Conda id": "pyteomics", + "Conda version": "4.7.3", + "EDAM operation (no superclasses)": [ + "Protein identification" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Proteomics experiment" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 81 + }, + { + "Galaxy wrapper id": "quantp", + "Galaxy tool ids": [ + "quantp" + ], + "Description": "Correlation between protein and transcript abundance", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "quantp", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantp", + "Galaxy wrapper version": "1.1.2", + "Conda id": "r-data.table", + "Conda version": "1.11.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 230 + }, + { + "Galaxy wrapper id": "quantwiz_iq", + "Galaxy tool ids": [ + "quantwiz_iq" + ], + "Description": "Isobaric Quantitation using QuantWiz-IQ", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://sourceforge.net/projects/quantwiz/", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "quantwiz_iq", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iq", + "Galaxy wrapper version": "2.0", + "Conda id": "quantwiz-iq", + "Conda version": "2.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 32 + }, + { + "Galaxy wrapper id": "qupath_roi_splitter", + "Galaxy tool ids": [ + "qupath_roi_splitter" + ], + "Description": "Split ROI coordinates of QuPath TMA annotation by cell type", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/npinter/ROIsplitter", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "qupath_roi_splitter", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "hhttps://github.com/npinter/ROIsplitter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/qupath_roi_splitter", + "Galaxy wrapper version": "0.3.1", + "Conda id": "geojson", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 59 + }, + { + "Galaxy wrapper id": "rawtools", + "Galaxy tool ids": [ + "rawtools" + ], + "Description": "Raw Tools", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/kevinkovalchik/RawTools", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "rawtools", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtools", + "Galaxy wrapper version": null, + "Conda id": "rawtools", + "Conda version": "2.0.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 175 + }, + { + "Galaxy wrapper id": "regex_find_replace", + "Galaxy tool ids": [ + "regex1", + "regexColumn1" + ], + "Description": "Use python regular expressions to find and replace text", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "regex_find_replace", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/regex_find_replace", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/regex_find_replace", + "Galaxy wrapper version": "1.0.3", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 2, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 2, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 2, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 495, + "Total tool usage (usegalaxy.eu)": 60307 + }, + { + "Galaxy wrapper id": "scaffold", + "Galaxy tool ids": [ + "scaffold", + "scaffold_export" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [], + "ToolShed id": "scaffold", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/scaffold", + "Galaxy wrapper version": "0.1.0", + "Conda id": "scaffold", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sixgill", + "Galaxy tool ids": [ + "sixgill_build", + "sixgill_filter", + "sixgill_makefasta", + "sixgill_merge" + ], + "Description": "Six-frame Genome-Inferred Libraries for LC-MS/MS", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": null, + "ToolShed categories": [ + "Proteomics", + "MetaProteomics" + ], + "ToolShed id": "sixgill", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgill", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgill", + "Galaxy wrapper version": "0.2.4", + "Conda id": "sixgill", + "Conda version": "0.2.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 4, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 24, + "Total tool usage (usegalaxy.eu)": 293 + }, + { + "Galaxy wrapper id": "spectrast2spectrast_irt", + "Galaxy tool ids": [ + "gp_spectrast2spectrast_irt" + ], + "Description": "Filter from spectraST files to swath input files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "spectrast2spectrast_irt", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irt", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irt", + "Galaxy wrapper version": "0.1.0", + "Conda id": "msproteomicstools", + "Conda version": "0.11.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "spectrast2tsv", + "Galaxy tool ids": [ + "gp_spectrast2tsv" + ], + "Description": "Filter from spectraST files to swath input files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "spectrast2tsv", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsv", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsv", + "Galaxy wrapper version": "0.1.0", + "Conda id": "msproteomicstools", + "Conda version": "0.11.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "translate_bed_sequences", + "Galaxy tool ids": [ + "translate_bed_sequences" + ], + "Description": "Perform 3 frame translation of BED file augmented with a sequence column", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "translate_bed_sequences", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequences", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequences", + "Galaxy wrapper version": "0.2.0", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 6, + "Total tool usage (usegalaxy.eu)": 57 + }, + { + "Galaxy wrapper id": "unipept", + "Galaxy tool ids": [ + "unipept" + ], + "Description": "Unipept retrieves metaproteomics information", + "bio.tool id": "unipept", + "bio.tool ids": [ + "unipept" + ], + "biii": null, + "bio.tool name": "Unipept", + "bio.tool description": "Metaproteomics data analysis with a focus on interactive data visualizations.", + "EDAM operation": [ + "Prediction and recognition", + "Visualisation" + ], + "EDAM topic": [ + "Proteomics", + "Proteogenomics", + "Biodiversity", + "Workflows" + ], + "Status": "To update", + "Source": "https://github.com/galaxyproteomics/tools-galaxyp", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "unipept", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://unipept.ugent.be/apidocs", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/unipept", + "Galaxy wrapper version": "4.5.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Prediction and recognition", + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Proteomics", + "Proteogenomics", + "Biodiversity", + "Workflows" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 115, + "Total tool usage (usegalaxy.eu)": 5005 + }, + { + "Galaxy wrapper id": "uniprotxml_downloader", + "Galaxy tool ids": [ + "uniprotxml_downloader" + ], + "Description": "Download UniProt proteome in XML or fasta format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": "uniprotxml_downloader", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader", + "Galaxy wrapper version": "2.4.0", + "Conda id": "requests", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 79, + "Total tool usage (usegalaxy.eu)": 1360 + }, + { + "Galaxy wrapper id": "validate_fasta_database", + "Galaxy tool ids": [ + "validate_fasta_database" + ], + "Description": "runs Compomics database identification tool on any FASTA database, and separates valid and invalid entries based on a series of checks.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Fasta Manipulation", + "Proteomics" + ], + "ToolShed id": "validate_fasta_database", + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/validate_fasta_database", + "Galaxy wrapper version": "0.1.5", + "Conda id": "validate-fasta-database", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 25, + "Total tool usage (usegalaxy.eu)": 86 + }, + { + "Galaxy wrapper id": "zeiss_lmd_converter", + "Galaxy tool ids": [ + "ZeissLMDconverter" + ], + "Description": "Converts coordinates from a tabular file into a formatted text file readable by Zeiss laser-capture microdissection systems", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter", + "ToolShed categories": [ + "Proteomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "galaxyp", + "Galaxy wrapper source": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter", + "Galaxy wrapper parsed folder": "https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter", + "Galaxy wrapper version": "2.0.4", + "Conda id": "shapely", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bio3d", + "Galaxy tool ids": [ + "bio3d_dccm", + "bio3d_pca", + "bio3d_rmsd", + "bio3d_rmsf", + "bio3d_pca_visualize" + ], + "Description": "Bio3d is a program that can be used to analyse molecular dynamics trajectories.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://thegrantlab.org/bio3d/index.php", + "ToolShed categories": [ + "Computational chemistry" + ], + "ToolShed id": "bio3d", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/bio3d", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/bio3d", + "Galaxy wrapper version": "2.4_1", + "Conda id": "r-bio3d", + "Conda version": "2.3_3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 4, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 4, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 5, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 510, + "Total tool usage (usegalaxy.eu)": 8913 + }, + { + "Galaxy wrapper id": "biomoldyn", + "Galaxy tool ids": [ + "biomd_neqgamma", + "fastpca", + "biomd_extract_clusters", + "biomd_rmsd_clustering" + ], + "Description": "Tools for MD analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/moldyn/", + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "biomoldyn", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biomoldyn", + "Galaxy wrapper version": "1.5.2", + "Conda id": "scipy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 3, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 53, + "Total tool usage (usegalaxy.eu)": 459 + }, + { + "Galaxy wrapper id": "ambertools", + "Galaxy tool ids": [ + "ambertools_acpype", + "acpype_Amber2Gromacs", + "ambertools_antechamber", + "mmpbsa_mmgbsa", + "ambertools_parmchk2", + "parmconv", + "tleap" + ], + "Description": "Ambertools is a set of packages for preparing systems for molecular dynamics (MD) simulations and analyzing trajectories.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://ambermd.org/AmberTools.php", + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "ambertools", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/ambertools", + "Galaxy wrapper version": "21.10", + "Conda id": "ambertools", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 7, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 7, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 243, + "Total tool usage (usegalaxy.eu)": 40666 + }, + { + "Galaxy wrapper id": "packmol", + "Galaxy tool ids": [ + "packmol" + ], + "Description": "PACKMOL is a package for creating starting structures for Molecular Dynamics simulations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://m3g.iqm.unicamp.br/packmol/home.shtml", + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "packmol", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/packmol", + "Galaxy wrapper version": "18.169.1", + "Conda id": "packmol", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 288 + }, + { + "Galaxy wrapper id": "topologyeditors", + "Galaxy tool ids": [ + "gromacs_modify_topology", + "gromacs_extract_topology" + ], + "Description": "Set of python scripts and associated tool files that can be used to modify topology files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditors", + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "topologyeditors", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditors", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditors", + "Galaxy wrapper version": "0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 2, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 50 + }, + { + "Galaxy wrapper id": "free_energy", + "Galaxy tool ids": [], + "Description": "Free energy tools of BRIDGE.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "freeenergy", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/free_energy", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/free_energy", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gromacs", + "Galaxy tool ids": [ + "gmx_check", + "gmx_editconf", + "gmx_energy", + "gmx_get_builtin_file", + "gmx_rg", + "gmx_makendx", + "gmx_merge_topology_files", + "gmx_em", + "gmx_restraints", + "gmx_rmsd", + "gmx_rmsf", + "gmx_setup", + "gmx_sim", + "gmx_solvate", + "gmx_trj" + ], + "Description": "GROMACS is a package for performing molecular dynamics, primarily designed for biochemical molecules such as proteins, lipids and nucleic acids.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/gromacs", + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "gromacs", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs", + "Galaxy wrapper version": "2022", + "Conda id": "gromacs", + "Conda version": "2021.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 14, + "Available on UseGalaxy.org.au": 8, + "Available on UseGalaxy.eu": 15, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 14, + "Tools available on UseGalaxy.org.au": 8, + "Tools available on UseGalaxy.eu": 15, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 13, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 15, + "Tools available on UseGalaxy.no": 9, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1442, + "Total tool usage (usegalaxy.eu)": 177844 + }, + { + "Galaxy wrapper id": "mdanalysis", + "Galaxy tool ids": [ + "mdanalysis_angle", + "mdanalysis_dihedral", + "mdanalysis_distance", + "mdanalysis_endtoend", + "mdanalysis_extract_rmsd", + "mdanalysis_hbonds", + "mdanalysis_cosine_analysis", + "mdanalysis_ramachandran_protein", + "mdanalysis_ramachandran_plot", + "mdanalysis_rdf" + ], + "Description": "MDAnalysis is a package for analyzing trajectories from molecular dynamics (MD) simulations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/MDAnalysis/mdanalysis", + "ToolShed categories": [ + "Computational chemistry" + ], + "ToolShed id": "mdanalysis", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdanalysis", + "Galaxy wrapper version": "1.0.0", + "Conda id": "mdanalysis", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 10, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 10, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 10, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 10, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 10, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 10, + "Tools available on UseGalaxy.no": 10, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 139, + "Total tool usage (usegalaxy.eu)": 3115 + }, + { + "Galaxy wrapper id": "mdfileconverter", + "Galaxy tool ids": [ + "md_converter" + ], + "Description": "A tool for interconverting between different MD structure and trajectory file formats.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "md_converter", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdfileconverter", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdfileconverter", + "Galaxy wrapper version": "1.9.7", + "Conda id": "mdtraj", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 98, + "Total tool usage (usegalaxy.eu)": 26427 + }, + { + "Galaxy wrapper id": "mdslicer", + "Galaxy tool ids": [ + "md_slicer" + ], + "Description": "A tool for slicing trajectory files using MDTraj.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "md_converter", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdslicer", + "Galaxy wrapper version": "1.9.9", + "Conda id": "mdtraj", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 1, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 158 + }, + { + "Galaxy wrapper id": "mdtraj", + "Galaxy tool ids": [ + "traj_selections_and_merge" + ], + "Description": "MDTraj is a python library that allows users to manipulate molecular dynamics (MD) trajectories", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/mdtraj/mdtraj", + "ToolShed categories": [ + "Computational chemistry" + ], + "ToolShed id": "mdtraj", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdtraj", + "Galaxy wrapper version": "1.9.7", + "Conda id": "mdtraj", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 36 + }, + { + "Galaxy wrapper id": "openmm", + "Galaxy tool ids": [ + "pdbfixer" + ], + "Description": "OpenMM is a toolkit for molecular simulation using high performance GPU code.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/openmm", + "ToolShed categories": [ + "Molecular Dynamics", + "Computational chemistry" + ], + "ToolShed id": "openmm", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/openmm", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/openmm", + "Galaxy wrapper version": "1.8.1", + "Conda id": "pdbfixer", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 25, + "Total tool usage (usegalaxy.eu)": 347 + }, + { + "Galaxy wrapper id": "vmd", + "Galaxy tool ids": [], + "Description": "vmd is a package for visualizing and analyzing trajectories from molecular dynamics (MD) simulations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.ks.uiuc.edu/Research/vmd/", + "ToolShed categories": [ + "Computational chemistry" + ], + "ToolShed id": "vmd", + "Galaxy wrapper owner": "chemteam", + "Galaxy wrapper source": "https://github.com/thatchristoph/vmd-cvs-github/tree/master/vmd", + "Galaxy wrapper parsed folder": "https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/vmd", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "artbio_bam_cleaning", + "Galaxy tool ids": [ + "artbio_bam_cleaning" + ], + "Description": "filter bam files before somatic-varscan or lumpy-smoove analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "SAM", + "Variant Analysis" + ], + "ToolShed id": "artbio_bam_cleaning", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/artbio_bam_cleaning", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/artbio_bam_cleaning", + "Galaxy wrapper version": "1.10+galaxy0", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bamparse", + "Galaxy tool ids": [ + "bamparse" + ], + "Description": "Generates hit count lists from bam alignments.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Transcriptomics" + ], + "ToolShed id": "bamparse", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse", + "Galaxy wrapper version": "4.1.1", + "Conda id": "pysam", + "Conda version": "0.22.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "bigwig_to_bedgraph", + "Galaxy tool ids": [ + "bigwig_to_bedgraph" + ], + "Description": "Converts a bigWig file to bedGraph format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "bigwig_to_bedgraph", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_bedgraph", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_bedgraph", + "Galaxy wrapper version": "377+galaxy1", + "Conda id": "ucsc-bigwigtobedgraph", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 200, + "Total tool usage (usegalaxy.eu)": 5749 + }, + { + "Galaxy wrapper id": "bigwig_to_wig", + "Galaxy tool ids": [ + "bigwig_to_wig" + ], + "Description": "Converts a bigWig file to Wiggle (WIG) format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://artbio.fr", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "bigwig_to_wig", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_wig", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_wig", + "Galaxy wrapper version": "3+galaxy0", + "Conda id": "ucsc-bigwiginfo", + "Conda version": "469", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "blast_to_scaffold", + "Galaxy tool ids": [ + "blast2scaffold" + ], + "Description": "Generate DNA scaffold from blastn or tblastx alignments of Contigs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Sequence Analysis", + "Assembly" + ], + "ToolShed id": "blast_to_scaffold", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold", + "Galaxy wrapper version": "1.1.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "blast_unmatched", + "Galaxy tool ids": [ + "blast_unmatched" + ], + "Description": "Extract unmatched query sequences from blast", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "blast_unmatched", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched", + "Galaxy wrapper version": "1.0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "blastparser_and_hits", + "Galaxy tool ids": [ + "BlastParser_and_hits" + ], + "Description": "Parse blast outputs and compile hits", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Assembly", + "RNA" + ], + "ToolShed id": "blastparser_and_hits", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hits", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits", + "Galaxy wrapper version": "2.7.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "blastx_to_scaffold", + "Galaxy tool ids": [ + "blastx2scaffold" + ], + "Description": "Generate DNA scaffold from blastx alignment of Contigs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Sequence Analysis", + "Assembly" + ], + "ToolShed id": "blastx_to_scaffold", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold", + "Galaxy wrapper version": "1.1.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cap3", + "Galaxy tool ids": [ + "cap3" + ], + "Description": "cap3 wrapper", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Assembly" + ], + "ToolShed id": "cap3", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3", + "Galaxy wrapper version": "2.0.1", + "Conda id": "cap3", + "Conda version": "10.2011", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 101, + "Total tool usage (usegalaxy.eu)": 7766 + }, + { + "Galaxy wrapper id": "cherry_pick_fasta", + "Galaxy tool ids": [ + "cherry_pick_fasta" + ], + "Description": "Pick fasta sequence with specific header content", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Fasta Manipulation" + ], + "ToolShed id": "cherry_pick_fasta", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta", + "Galaxy wrapper version": "4.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 1, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "concat_multi_datasets", + "Galaxy tool ids": [ + "cat_multi_datasets" + ], + "Description": "Concatenate multiple datasets tail-to-head, including collection datasets.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "concatenate_multiple_datasets", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/concat_multi_datasets", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/concat_multi_datasets", + "Galaxy wrapper version": "1.4.3", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 352, + "Total tool usage (usegalaxy.eu)": 3612 + }, + { + "Galaxy wrapper id": "cpm_tpm_rpk", + "Galaxy tool ids": [ + "cpm_tpm_rpk" + ], + "Description": "Generate CPM,TPM or RPK from raw counts", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "cpm_tpm_rpk", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk", + "Galaxy wrapper version": "0.6.0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "deseq2_normalization", + "Galaxy tool ids": [ + "deseq2_normalization" + ], + "Description": "Normalizes gene hitlists", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Transcriptomics", + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": "deseq2_normalization", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization", + "Galaxy wrapper version": "1.40.2+galaxy0", + "Conda id": "bioconductor-deseq2", + "Conda version": "1.42.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 1, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "embl2fa", + "Galaxy tool ids": [ + "embl2fa" + ], + "Description": "Converts EMBL flat format to fasta format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "embl2fa", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/embl2fa", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/embl2fa", + "Galaxy wrapper version": "0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ez_histograms", + "Galaxy tool ids": [ + "ez_histograms" + ], + "Description": "ggplot2 histograms and density plots", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/tidyverse/ggplot2", + "ToolShed categories": [ + "Visualization", + "Statistics" + ], + "ToolShed id": "ez_histograms", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/artbio/tools-artbio/tree/main/tools/ez_histograms", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/ez_histograms", + "Galaxy wrapper version": "3.4.4", + "Conda id": "r-ggplot2", + "Conda version": "2.2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fetch_fasta_from_ncbi", + "Galaxy tool ids": [ + "retrieve_fasta_from_NCBI" + ], + "Description": "Fetch fasta sequences from NCBI using eutils wrappers", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Fasta Manipulation", + "Data Source" + ], + "ToolShed id": "fetch_fasta_from_ncbi", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi", + "Galaxy wrapper version": "3.1.0", + "Conda id": "urllib3", + "Conda version": "1.12", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fisher_test", + "Galaxy tool ids": [ + "fishertest" + ], + "Description": "Fisher's exact test on two-column hit lists.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Statistics" + ], + "ToolShed id": "fishertest", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_test", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_test", + "Galaxy wrapper version": "2.32.0+galaxy0", + "Conda id": "bioconductor-qvalue", + "Conda version": "2.34.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gatk4", + "Galaxy tool ids": [ + "filtermutectcalls", + "mergemutectstats", + "mutect2" + ], + "Description": "Find somatic variations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "gatk4", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gatk4", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gatk4", + "Galaxy wrapper version": "4.1.7.0", + "Conda id": "gatk4", + "Conda version": "4.5.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "get_reference_fasta", + "Galaxy tool ids": [ + "get_fasta_reference" + ], + "Description": "Obtain reference genome sequence.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Data Source", + "Fasta Manipulation" + ], + "ToolShed id": "get_reference_fasta", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta", + "Galaxy wrapper version": "0.3.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gsc_center_scale", + "Galaxy tool ids": [ + "center_scale" + ], + "Description": "Center or scale (standardize) data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Statistics" + ], + "ToolShed id": "gsc_center_scale", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_center_scale", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_center_scale", + "Galaxy wrapper version": "4.3.1+galaxy0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gsc_filter_cells", + "Galaxy tool ids": [ + "filter_cells" + ], + "Description": "Filter single cell RNAseq data on libray depth and number of detected genes", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "gsc_filter_cells", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells", + "Galaxy wrapper version": "4.3.1+galaxy0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gsc_filter_genes", + "Galaxy tool ids": [ + "filter_genes" + ], + "Description": "Filter genes that are detected in less than a fraction of libraries in single cell RNAseq data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "gsc_filter_genes", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes", + "Galaxy wrapper version": "4.3.1+galaxy0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gsc_gene_expression_correlations", + "Galaxy tool ids": [ + "single_cell_gene_expression_correlations" + ], + "Description": "Compute single-cell paire-wise gene expressions correlations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "gsc_gene_expression_correlations", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlations", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations", + "Galaxy wrapper version": "4.3.1+galaxy0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gsc_high_dimensions_visualisation", + "Galaxy tool ids": [ + "high_dimensions_visualisation" + ], + "Description": "Generates PCA, t-SNE and HCPC visualisation", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Transcriptomics", + "Visualization" + ], + "ToolShed id": "gsc_high_dimensions_visualisation", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualization", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation", + "Galaxy wrapper version": "4.3+galaxy0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gsc_mannwhitney_de", + "Galaxy tool ids": [ + "mannwhitney_de" + ], + "Description": "Perform a mann-whitney differential testing between two sets of gene expression data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "gsc_mannwhitney_de", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de", + "Galaxy wrapper version": "4.1.3+galaxy0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gsc_scran_normalize", + "Galaxy tool ids": [ + "scran_normalize" + ], + "Description": "Normalize raw counts using scran", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "gsc_scran_normalize", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize", + "Galaxy wrapper version": "1.28.1+galaxy0", + "Conda id": "bioconductor-scran", + "Conda version": "1.30.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 14, + "Total tool usage (usegalaxy.eu)": 78 + }, + { + "Galaxy wrapper id": "gsc_signature_score", + "Galaxy tool ids": [ + "signature_score" + ], + "Description": "Compute signature scores from single cell RNAseq data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "gsc_signature_score", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score", + "Galaxy wrapper version": "2.3.9+galaxy0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "guppy", + "Galaxy tool ids": [ + "guppy-basecaller" + ], + "Description": "A wrapper for the guppy basecaller tool from Oxford Nanopore Technologies", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Nanopore" + ], + "ToolShed id": "guppy_basecaller", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy", + "Galaxy wrapper version": "6.5.7+galaxy0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "high_dim_heatmap", + "Galaxy tool ids": [ + "high_dim_heatmap" + ], + "Description": "gplot heatmap.2 function adapted for plotting large heatmaps", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/cran/gplots", + "ToolShed categories": [ + "Visualization" + ], + "ToolShed id": "high_dim_heatmap", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/artbio/tools-artbio/tree/main/tools/high_dim_heatmap", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/high_dim_heatmap", + "Galaxy wrapper version": "3.1.3+galaxy0", + "Conda id": "r-gplots", + "Conda version": "2.17.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "justdiff", + "Galaxy tool ids": [ + "justdiff" + ], + "Description": "Unix diff", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "justdiff", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/justdiff", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/justdiff", + "Galaxy wrapper version": "3.10+galaxy0", + "Conda id": "diffutils", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "justgzip", + "Galaxy tool ids": [ + "justgzip" + ], + "Description": "Compress fastq sequence files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "justgzip", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/justgzip", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/justgzip", + "Galaxy wrapper version": "2.8+galaxy0", + "Conda id": "pigz", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "lumpy_smoove", + "Galaxy tool ids": [ + "lumpy_smoove", + "vcf2hrdetect" + ], + "Description": "Galaxy wrapper of the lumpy-using smoove workflow", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "lumpy_smoove", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_smoove", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_smoove", + "Galaxy wrapper version": "0.2.8+galaxy1", + "Conda id": "svtyper", + "Conda version": "0.7.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "lumpy_sv", + "Galaxy tool ids": [ + "lumpy" + ], + "Description": "Find structural variations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "lumpy_sv", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy_sv", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_sv", + "Galaxy wrapper version": "1.3", + "Conda id": "lumpy-sv", + "Conda version": "0.3.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "manta", + "Galaxy tool ids": [ + "manta" + ], + "Description": "Structural variant and indel caller for mapped sequencing data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "manta", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/manta", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/manta", + "Galaxy wrapper version": "1.6", + "Conda id": "manta", + "Conda version": "1.6.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 8, + "Total tool usage (usegalaxy.eu)": 93 + }, + { + "Galaxy wrapper id": "mapping_quality_stats", + "Galaxy tool ids": [ + "mapqstatistics" + ], + "Description": "Collects and shows the distribution of MAPQ values in a BAM alignment file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Sequence Analysis", + "Statistics" + ], + "ToolShed id": "mapping_quality_stats", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/mapping_quality_stats", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/mapping_quality_stats", + "Galaxy wrapper version": "0.22.0", + "Conda id": "r-optparse", + "Conda version": "1.3.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mircounts", + "Galaxy tool ids": [ + "mircounts" + ], + "Description": "Generates miRNA count lists from read alignments to mirBase.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Transcriptomics" + ], + "ToolShed id": "mircounts", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts", + "Galaxy wrapper version": "1.6", + "Conda id": "tar", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mutational_patterns", + "Galaxy tool ids": [ + "mutational_patterns" + ], + "Description": "Mutational patterns and signatures in base substitution catalogs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "mutational_patterns", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/mutational_patterns", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/mutational_patterns", + "Galaxy wrapper version": "3.12.0", + "Conda id": "bioconductor-mutationalpatterns", + "Conda version": "3.12.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "oases", + "Galaxy tool ids": [ + "oasesoptimiserv" + ], + "Description": "Short read assembler", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Assembly", + "RNA" + ], + "ToolShed id": "oases", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/oases", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/oases", + "Galaxy wrapper version": "1.4.0", + "Conda id": "oases", + "Conda version": "0.2.09", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pathifier", + "Galaxy tool ids": [ + "pathifier" + ], + "Description": "pathifier", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://", + "ToolShed categories": [ + "Transcriptomics", + "Statistics" + ], + "ToolShed id": "pathifier", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier", + "Galaxy wrapper version": "1.40.0", + "Conda id": "bioconductor-pathifier", + "Conda version": "1.40.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 228 + }, + { + "Galaxy wrapper id": "pindel", + "Galaxy tool ids": [ + "pindel" + ], + "Description": "Pindel detects genome-wide structural variation.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "pindel", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/pindel", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/pindel", + "Galaxy wrapper version": "0.2.5b9", + "Conda id": "pindel", + "Conda version": "0.2.5b9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 1, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "probecoverage", + "Galaxy tool ids": [ + "probecoverage" + ], + "Description": "computes and plots read coverage of genomic regions by sequencing datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Sequence Analysis", + "Genomic Interval Operations", + "Graphics", + "Statistics" + ], + "ToolShed id": "probecoverage", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/probecoverage", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/probecoverage", + "Galaxy wrapper version": "0.22.0", + "Conda id": "pysam", + "Conda version": "0.22.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "repenrich", + "Galaxy tool ids": [ + "edger-repenrich", + "repenrich" + ], + "Description": "Repeat element profiling", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "repenrich", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich", + "Galaxy wrapper version": "2.31.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "repenrich2", + "Galaxy tool ids": [ + "edger-repenrich2", + "repenrich2" + ], + "Description": "Repeat element profiling using bowtie2 aligner", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "repenrich2", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2", + "Galaxy wrapper version": "2.31.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rsem", + "Galaxy tool ids": [ + "extract_transcript_to_gene_map_from_trinity", + "purgegtffrommultichromgenes", + "rsembowtie2", + "rsembowtie" + ], + "Description": "transcript quantification from RNA-Seq data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/deweylab/RSEM", + "ToolShed categories": [ + "Transcriptomics", + "RNA" + ], + "ToolShed id": "rsem", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/artbio/tools-artbio/tree/master/tools/rsem", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/rsem", + "Galaxy wrapper version": null, + "Conda id": "rsem", + "Conda version": "1.3.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 4, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 67, + "Total tool usage (usegalaxy.eu)": 377 + }, + { + "Galaxy wrapper id": "sambamba", + "Galaxy tool ids": [ + "sambamba_sample_or_filter" + ], + "Description": "filter BAM/SAM on flags, fields, tags, and region, or down-sample, or slice BAM/SAM", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "sambamba", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/sambamba", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/sambamba", + "Galaxy wrapper version": "0.7.1+galaxy1", + "Conda id": "sambamba", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sashimi_plot", + "Galaxy tool ids": [ + "sashimi_plot" + ], + "Description": "Generates a sashimi plot from bam files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Transcriptomics", + "Graphics", + "Visualization" + ], + "ToolShed id": "sashimi_plot", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plot", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot", + "Galaxy wrapper version": "0.1.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sequence_format_converter", + "Galaxy tool ids": [ + "sequence_format_converter" + ], + "Description": "various fasta to tabular conversions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Convert Formats", + "Fasta Manipulation" + ], + "ToolShed id": "sequence_format_converter", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/sequence_format_converter", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/sequence_format_converter", + "Galaxy wrapper version": "2.2.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "small_rna_clusters", + "Galaxy tool ids": [ + "small_rna_clusters" + ], + "Description": "clusters small rna reads in alignment BAM files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "SAM", + "Graphics", + "Next Gen Mappers" + ], + "ToolShed id": "small_rna_clusters", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_clusters", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_clusters", + "Galaxy wrapper version": "1.3.0", + "Conda id": "pysam", + "Conda version": "0.22.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "small_rna_maps", + "Galaxy tool ids": [ + "small_rna_maps" + ], + "Description": "Generates small read maps from alignment BAM files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "SAM", + "Graphics", + "Next Gen Mappers" + ], + "ToolShed id": "small_rna_maps", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_maps", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_maps", + "Galaxy wrapper version": "3.1.1", + "Conda id": "numpy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "small_rna_signatures", + "Galaxy tool ids": [ + "overlapping_reads", + "signature" + ], + "Description": "Computes the tendency of small RNAs to overlap with each other.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "small_rna_signatures", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_signatures", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_signatures", + "Galaxy wrapper version": "3.4.2", + "Conda id": "pysam", + "Conda version": "0.22.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 2, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "snvtocnv", + "Galaxy tool ids": [ + "sequenzaindex", + "snvtocnv" + ], + "Description": "infer copy number variations from a vcf file with SNVs using R sequenza", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "snvtocnv", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/snvtocnv", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/snvtocnv", + "Galaxy wrapper version": "3.0.0+galaxy1", + "Conda id": "sequenza-utils", + "Conda version": "3.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 2, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sr_bowtie", + "Galaxy tool ids": [ + "bowtieForSmallRNA" + ], + "Description": "bowtie wrapper tool to align small RNA sequencing reads", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Next Gen Mappers" + ], + "ToolShed id": "sr_bowtie", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie", + "Galaxy wrapper version": "2.3.0", + "Conda id": "bowtie", + "Conda version": "1.3.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sr_bowtie_dataset_annotation", + "Galaxy tool ids": [ + "sr_bowtie_dataset_annotation" + ], + "Description": "Maps iteratively small RNA sequencing datasets to reference sequences.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA" + ], + "ToolShed id": "sr_bowtie_dataset_annotation", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie_dataset_annotation", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie_dataset_annotation", + "Galaxy wrapper version": "2.8", + "Conda id": "bowtie", + "Conda version": "1.3.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "tarfast5", + "Galaxy tool ids": [ + "tarfast5" + ], + "Description": "produces a tar.gz archive of fast5 sequence files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Nanopore" + ], + "ToolShed id": "tarfast5", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/tarfast5", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/tarfast5", + "Galaxy wrapper version": "0.6.1", + "Conda id": "pigz", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "varscan_vaf", + "Galaxy tool ids": [ + "varscan_vaf" + ], + "Description": "Compute variant allele frequency in vcf files generated by varscan.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "varscan_vaf", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/varscan_vaf", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/varscan_vaf", + "Galaxy wrapper version": "0.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "xpore", + "Galaxy tool ids": [ + "xpore_dataprep", + "xpore_diffmod" + ], + "Description": "Identification and quantification of differential RNA modifications from direct RNA sequencing", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/GoekeLab/xpore", + "ToolShed categories": [ + "Nanopore" + ], + "ToolShed id": "xpore", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/xpore", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/xpore", + "Galaxy wrapper version": "2.1+galaxy0", + "Conda id": "xpore", + "Conda version": "2.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "yac_clipper", + "Galaxy tool ids": [ + "yac" + ], + "Description": "Clips 3' adapters for small RNA sequencing reads.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://artbio.fr", + "ToolShed categories": [ + "RNA", + "Fastq Manipulation" + ], + "ToolShed id": "yac_clipper", + "Galaxy wrapper owner": "artbio", + "Galaxy wrapper source": "https://github.com/ARTbio/tools-artbio/tree/master/tools/yac_clipper", + "Galaxy wrapper parsed folder": "https://github.com/ARTbio/tools-artbio/tree/main/tools/yac_clipper", + "Galaxy wrapper version": "2.5.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 1, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "EMLassemblyline", + "Galaxy tool ids": [ + "eal_table_template", + "eal_templates", + "eml2eal", + "entities_template", + "geo_cov_template", + "makeeml", + "raster_template", + "taxo_cov_template", + "vector_template" + ], + "Description": "Tools using EML Assembly Line R package to generate EML metadata from template metadata files and vice versa", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/EDIorg/EMLassemblyline", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "emlassemblyline", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline", + "Galaxy wrapper version": "0.1.1+galaxy0", + "Conda id": "r-emlassemblyline", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 9, + "Available on UseGalaxy.fr": 9, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 9, + "Tools available on UseGalaxy.fr": 9, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 102 + }, + { + "Galaxy wrapper id": "Ecoregionalization_workflow", + "Galaxy tool ids": [ + "ecoregion_brt_analysis", + "ecoregion_GeoNearestNeighbor", + "ecoregion_cluster_estimate", + "ecoregion_clara_cluster", + "ecoregion_eco_map", + "ecoregion_taxa_seeker" + ], + "Description": "Tools to compute ecoregionalization with BRT model predictions and clustering.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/PaulineSGN/Workflow_Galaxy", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "ecoregionalization", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow", + "Galaxy wrapper version": "0.1.0+galaxy0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 82 + }, + { + "Galaxy wrapper id": "Geom_mean_workflow", + "Galaxy tool ids": [ + "Map_shp", + "Mean_geom", + "bar_plot" + ], + "Description": "Tools to compute The evolution of the total volume of very large trees, standing dead wood and dead wood on the ground on an area and the rate of devolution of the volume of wood favorable to biodiversity by large ecological regions (France).", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/PaulineSGN/Galaxy_tool_moyenne_geom", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "Geometric means (Dead wood)", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow", + "Galaxy wrapper version": "0.1.0+galaxy0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "PAMPA", + "Galaxy tool ids": [ + "pampa_communitymetrics", + "pampa_presabs", + "pampa_glmcomm", + "pampa_glmsp", + "pampa_plotglm" + ], + "Description": "Tools to compute and analyse biodiversity metrics", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "pampa", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/ColineRoyaux/PAMPA-Galaxy", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA", + "Galaxy wrapper version": "0.0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 5, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 5, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 73, + "Total tool usage (usegalaxy.eu)": 1004 + }, + { + "Galaxy wrapper id": "ab1_fastq", + "Galaxy tool ids": [ + "ab1_fastq_converter" + ], + "Description": "Tool to convert ab1 files into FASTQ files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "ab1fastq", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/ab1_fastq", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/ab1_fastq", + "Galaxy wrapper version": "1.20.0", + "Conda id": "bioconductor-sangerseqr", + "Conda version": "1.38.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 175, + "Total tool usage (usegalaxy.eu)": 40271 + }, + { + "Galaxy wrapper id": "aquainfra_importer", + "Galaxy tool ids": [ + "aquainfra_importer" + ], + "Description": "A data source tool for downloading datasets via the AquaINFRA Interaction Platform.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/AquaINFRA/galaxy", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/AquaINFRA/tools-ecology/tree/aquainfra_importer", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/aquainfra_importer", + "Galaxy wrapper version": "1.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "champ_blocs", + "Galaxy tool ids": [ + "cb_dissim", + "cb_ivr", + "cb_div" + ], + "Description": "Compute indicators for turnover boulders fields", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/Marie59/champ_blocs", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/champ_blocs", + "Galaxy wrapper version": "0.0.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 3, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 3, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 19, + "Total tool usage (usegalaxy.eu)": 174 + }, + { + "Galaxy wrapper id": "consensus_from_alignments", + "Galaxy tool ids": [ + "aligned_to_consensus" + ], + "Description": "Tool to compute a consensus sequence from several aligned fasta sequences", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "consalign", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/consensus_from_alignments", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/consensus_from_alignments", + "Galaxy wrapper version": "1.0.0", + "Conda id": "r-bioseq", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 55, + "Total tool usage (usegalaxy.eu)": 585 + }, + { + "Galaxy wrapper id": "data_exploration", + "Galaxy tool ids": [ + "tool_anonymization", + "ecology_homogeneity_normality", + "ecology_beta_diversity", + "ecology_link_between_var", + "ecology_presence_abs_abund", + "ecology_stat_presence_abs" + ], + "Description": "Explore data through multiple statistical tools", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/Marie59/Data_explo_tools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_exploration", + "Galaxy wrapper version": "0.0.0", + "Conda id": "r-tangles", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 6, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 6, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 146, + "Total tool usage (usegalaxy.eu)": 658 + }, + { + "Galaxy wrapper id": "xarray", + "Galaxy tool ids": [ + "timeseries_extraction", + "xarray_coords_info", + "xarray_mapplot", + "xarray_metadata_info", + "xarray_netcdf2netcdf", + "xarray_select" + ], + "Description": "xarray (formerly xray) is an open source project and Python package that makes working withlabelled multi-dimensional arrays simple, efficient, and fun!xarray integrates with Dask to support parallel computations and streaming computation on datasetsthat don’t fit into memory.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "http://xarray.pydata.org", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray/", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray", + "Galaxy wrapper version": "2022.3.0", + "Conda id": "xarray", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 5, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 5, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 6, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 175, + "Total tool usage (usegalaxy.eu)": 5876 + }, + { + "Galaxy wrapper id": "gdal", + "Galaxy tool ids": [ + "gdal_gdal_merge", + "gdal_gdal_translate", + "gdal_gdaladdo", + "gdal_gdalbuildvrt", + "gdal_gdalinfo", + "gdal_gdalwarp", + "gdal_ogr2ogr", + "gdal_ogrinfo" + ], + "Description": "Geospatial Data Abstraction Library tools are all dedicated to manipulate raster and vector geospatial data formats.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.gdal.org", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "gdal", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal", + "Galaxy wrapper version": "3.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 8, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 8, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 8, + "Tools available on UseGalaxy.no": 8, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 1475 + }, + { + "Galaxy wrapper id": "hirondelle_crim_ogc_api_processes", + "Galaxy tool ids": [ + "hirondelle_crim" + ], + "Description": "This tool is a wrapper for OGC API Processes coming from https://osf.io/gfbws/.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/AquaINFRA/galaxy", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/hirondelle_crim_ogc_api_processes", + "Galaxy wrapper version": "0.1.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "interpolation", + "Galaxy tool ids": [ + "interpolation_run_idw_interpolation" + ], + "Description": "Run IDW interpolation based on a .csv and .geojson file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/AquaINFRA/galaxy", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation", + "Galaxy wrapper version": "1.0", + "Conda id": "r-getopt", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "marine_omics", + "Galaxy tool ids": [ + "sanntis_marine" + ], + "Description": "The Sanntis tool identify biosynthetic gene clusters (BGCs) in genomic & metagenomic data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/Finn-Lab/SanntiS", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics", + "Galaxy wrapper version": "0.9.3.5", + "Conda id": "sanntis", + "Conda version": "0.9.3.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "medenv", + "Galaxy tool ids": [ + "iabiodiv_smartbiodiv_med_environ" + ], + "Description": "Retrieve environmental data from etopo, cmems and woa", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/jeremyfix/medenv", + "ToolShed categories": [ + "Ecology", + "Data Source" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/jeremyfix/medenv", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/medenv", + "Galaxy wrapper version": "0.1.0", + "Conda id": "pandas", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "obisindicators", + "Galaxy tool ids": [ + "obisindicators", + "obis_data" + ], + "Description": "Compute biodiveristy indicators for marine data from obis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/Marie59/obisindicators", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators", + "Galaxy wrapper version": "0.0.2", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 45 + }, + { + "Galaxy wrapper id": "ocean", + "Galaxy tool ids": [ + "argo_getdata", + "divand_full_analysis" + ], + "Description": "Access, process, visualise oceanographic data for the Earth System", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/Marie59/FE-ft-ESG/tree/main/argo", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean", + "Galaxy wrapper version": "0.1.15", + "Conda id": "julia", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 6 + }, + { + "Galaxy wrapper id": "ogcProcess_otb_bandmath", + "Galaxy tool ids": [ + "otb_band_math" + ], + "Description": "Outputs a monoband image which is the result of a mathematical operation on several multi-band images.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/AquaINFRA/galaxy", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/OtbBandMath", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_bandmath", + "Galaxy wrapper version": "1.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ogcProcess_otb_meanShiftSmoothing", + "Galaxy tool ids": [ + "otb_mean_shift_smoothing" + ], + "Description": "This application smooths an image using the MeanShift algorithm.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/AquaINFRA/galaxy", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_meanShiftSmoothing", + "Galaxy wrapper version": "1.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "regionalgam", + "Galaxy tool ids": [ + "regionalgam_ab_index", + "regionalgam_autocor_acf", + "regionalgam_flight_curve", + "regionalgam_glmmpql", + "regionalgam_gls_adjusted", + "regionalgam_gls", + "regionalgam_plot_trend" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RetoSchmucki/regionalGAM", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam", + "Galaxy wrapper version": "1.5", + "Conda id": "r-mgcv", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 7, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 7, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 7, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 22, + "Total tool usage (usegalaxy.eu)": 526 + }, + { + "Galaxy wrapper id": "retrieve_bold", + "Galaxy tool ids": [ + "retrieve_bold" + ], + "Description": "Search a list of sequences in BOLD (Barcode of Life Data System) from specified taxa list and markers", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://anaconda.org/conda-forge/r-bold", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "retrieve_bold", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/wpearman1996/MARES_database_pipeline/tree/master", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/retrieve_bold", + "Galaxy wrapper version": "1.3.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sdmpredictors", + "Galaxy tool ids": [ + "sdmpredictors_list_layers" + ], + "Description": "Terrestrial and marine predictors for species distribution modelling.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://cran.r-project.org/web/packages/sdmpredictors/index.html", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "sdmpredictors", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors", + "Galaxy wrapper version": "0.2.15", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "spocc", + "Galaxy tool ids": [ + "spocc_occ" + ], + "Description": "Get species occurences data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://cran.r-project.org/web/packages/spocc/index.html", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "spocc_occ", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc", + "Galaxy wrapper version": "1.2.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 56, + "Total tool usage (usegalaxy.eu)": 769 + }, + { + "Galaxy wrapper id": "srs_tools", + "Galaxy tool ids": [ + "srs_diversity_maps", + "srs_global_indices", + "srs_process_data", + "srs_spectral_indices", + "srs_pca", + "srs_preprocess_s2", + "srs_metadata" + ], + "Description": "Compute biodiversity indicators for remote sensing data from Sentinel 2", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/Marie59/Sentinel_2A/srs_tools", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/srs_tools", + "Galaxy wrapper version": "0.0.1", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 7, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 7, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 7, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 21, + "Total tool usage (usegalaxy.eu)": 225 + }, + { + "Galaxy wrapper id": "stoc", + "Galaxy tool ids": [ + "stoceps_filteringsp", + "stoceps_glm", + "stoceps_glm_group", + "stoceps_maketablecarrer", + "stoceps_trend_indic" + ], + "Description": "Tools to analyse STOC data.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "stoceps", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/Alanamosse/Galaxy-E/tree/stoctool/tools/stoc", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/stoc", + "Galaxy wrapper version": "0.0.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 5, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 5, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 5, + "Tools available on UseGalaxy.no": 5, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 325 + }, + { + "Galaxy wrapper id": "vigiechiro", + "Galaxy tool ids": [ + "vigiechiro_bilanenrichipf", + "vigiechiro_bilanenrichirp", + "vigiechiro_idcorrect_2ndlayer", + "vigiechiro_idvalid" + ], + "Description": "Tools created by the vigiechiro team to analyses and identify chiro sounds files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.vigienature-ecole.fr/les-observatoires/le-protocole-vigie-chiro", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "vigiechiro", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro", + "Galaxy wrapper version": "0.1.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 4, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 4, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 4, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 351, + "Total tool usage (usegalaxy.eu)": 12203 + }, + { + "Galaxy wrapper id": "xmlstarlet", + "Galaxy tool ids": [ + "xmlstarlet" + ], + "Description": "Tool to convert a xml file from one metadata standard to another", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "xmlstarlet", + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/main/tools-ecology/tools/xmlstarlet", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/xmlstarlet", + "Galaxy wrapper version": "1.6.1", + "Conda id": "xmlstarlet", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 14 + }, + { + "Galaxy wrapper id": "zoo_project_ogc_api_processes", + "Galaxy tool ids": [ + "zoo_project_ogc_api_processes" + ], + "Description": "This tool is a wrapper for OGC API Processes (OTB) coming from the Zoo Project (https://zoo-project.github.io/docs/intro.html) and was created using the OGC-API-Process2Galaxy tool (https://github.com/AquaINFRA/OGC-API-Process2Galaxy). Check the README in the repository for more information.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/AquaINFRA/galaxy", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "ecology", + "Galaxy wrapper source": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper", + "Galaxy wrapper parsed folder": "https://github.com/galaxyecology/tools-ecology/tree/master/tools/zoo_project_ogc_api_processes", + "Galaxy wrapper version": "0.1.0", + "Conda id": "r-base", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "c3s", + "Galaxy tool ids": [ + "c3s" + ], + "Description": "Copernicus Climate Change Service (C3S)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://cds.climate.copernicus.eu/cdsapp#!/search?type=dataset", + "ToolShed categories": [ + "Climate Analysis" + ], + "ToolShed id": "c3s", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s", + "Galaxy wrapper version": "0.2.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 5, + "Total tool usage (usegalaxy.eu)": 198 + }, + { + "Galaxy wrapper id": "cads", + "Galaxy tool ids": [ + "cads" + ], + "Description": "Copernicus Atmosphere Data Store (ADS)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://ads.atmosphere.copernicus.eu/#!/home", + "ToolShed categories": [ + "Climate Analysis" + ], + "ToolShed id": "cads", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cads", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cads", + "Galaxy wrapper version": "0.1.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 52 + }, + { + "Galaxy wrapper id": "cdo", + "Galaxy tool ids": [ + "cdo_info", + "cdo_operations" + ], + "Description": "CDO (Climate Data Operators) is a collection of command line Operators to manipulate and analyse Climate and NWP model Data.Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG. There are more than 600 operators available.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://code.mpimet.mpg.de/projects/cdo/", + "ToolShed categories": [ + "Climate Analysis" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cdo", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cdo", + "Galaxy wrapper version": "2.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 217 + }, + { + "Galaxy wrapper id": "cesm", + "Galaxy tool ids": [ + "cesm" + ], + "Description": "Community Earth System Model (CESM)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://www.cesm.ucar.edu/", + "ToolShed categories": [ + "Climate Analysis" + ], + "ToolShed id": "cesm", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/ESCOMP/CESM", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cesm", + "Galaxy wrapper version": "2.1.3", + "Conda id": "cesm", + "Conda version": "2.1.3", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 13 + }, + { + "Galaxy wrapper id": "climate-stripes", + "Galaxy tool ids": [ + "climate_stripes" + ], + "Description": "Create climate stripes from a tabular input file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://www.climate-lab-book.ac.uk/2018/warming-stripes/", + "ToolShed categories": [ + "Climate Analysis", + "Visualization" + ], + "ToolShed id": "climate_stripes", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes", + "Galaxy wrapper version": "1.0.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 23, + "Total tool usage (usegalaxy.eu)": 237 + }, + { + "Galaxy wrapper id": "eodie", + "Galaxy tool ids": [ + "eodie" + ], + "Description": "Earth Observation Data Information Extractor", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://eodie.readthedocs.io/", + "ToolShed categories": [ + "Climate Analysis" + ], + "ToolShed id": "eodie", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://gitlab.com/eetun-tiimi/EODIE", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/eodie", + "Galaxy wrapper version": "1.0.2", + "Conda id": "eodie", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 45 + }, + { + "Galaxy wrapper id": "essential_climate_variables", + "Galaxy tool ids": [ + "cds_essential_variability" + ], + "Description": "Get Copernicus Essential Climate Variables for assessing climate variability", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://cds.climate.copernicus.eu/cdsapp#!/dataset/ecv-for-climate-change?tab=overview", + "ToolShed categories": [ + "Climate Analysis", + "Data Source" + ], + "ToolShed id": "cds_essential_variability", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/essential_climate_variables", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/essential_climate_variables", + "Galaxy wrapper version": "0.2.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 15, + "Total tool usage (usegalaxy.eu)": 331 + }, + { + "Galaxy wrapper id": "fates-emerald", + "Galaxy tool ids": [ + "ctsm_fates" + ], + "Description": "EMERALD version of the Functionally Assembled Terrestrial Ecosystem Simulator (FATES) with Community Terrestrial Systems Model as host model", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/NordicESMhub/ctsm/blob/fates_emerald_api/README_fates_emerald_api", + "ToolShed categories": [ + "Climate Analysis" + ], + "ToolShed id": "ctsm_fates", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/fates-emerald", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/fates-emerald", + "Galaxy wrapper version": "2.0", + "Conda id": "fates-emerald", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 12, + "Total tool usage (usegalaxy.eu)": 261 + }, + { + "Galaxy wrapper id": "mean-per-zone", + "Galaxy tool ids": [ + "mean_per_zone" + ], + "Description": "Creates a png image showing statistic over areas as defined in the vector file", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/NordicESMhub/galaxy-tools/blob/master/tools/mean-per-zone/", + "ToolShed categories": [ + "Visualization", + "GIS", + "Climate Analysis" + ], + "ToolShed id": "mean_per_zone", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone", + "Galaxy wrapper version": "0.2.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 24 + }, + { + "Galaxy wrapper id": "psy-maps", + "Galaxy tool ids": [ + "psy_maps" + ], + "Description": "Visualization of regular geographical data on a map with psyplot", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/Chilipp/psy-maps", + "ToolShed categories": [ + "Visualization", + "Climate Analysis" + ], + "ToolShed id": "psy_maps", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/psy-maps", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/psy-maps", + "Galaxy wrapper version": "1.2.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 46, + "Total tool usage (usegalaxy.eu)": 469 + }, + { + "Galaxy wrapper id": "shift-longitudes", + "Galaxy tool ids": [ + "shyft_longitudes" + ], + "Description": "Shift longitudes ranging from 0. and 360 degrees to -180. and 180. degrees", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/NordicESMhub/galaxy-tools/blob/master/tools/shift-longitudes/", + "ToolShed categories": [ + "Climate Analysis" + ], + "ToolShed id": "shift_longitudes", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/shift-longitudes", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/shift-longitudes", + "Galaxy wrapper version": "0.1.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 63 + }, + { + "Galaxy wrapper id": "smithsonian-volcanoes", + "Galaxy tool ids": [ + "smithsonian_volcanoes" + ], + "Description": "Retrieve data from Volcanoes of the World (VOTW) Database", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://volcano.si.edu/gvp_votw.cfm", + "ToolShed categories": [ + "Retrieve Data" + ], + "ToolShed id": "smithsonian_volcanoes", + "Galaxy wrapper owner": "climate", + "Galaxy wrapper source": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/smithsonian-volcanoes", + "Galaxy wrapper parsed folder": "https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/smithsonian-volcanoes", + "Galaxy wrapper version": "0.1.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "droplet-barcode-plot", + "Galaxy tool ids": [ + "_dropletBarcodePlot" + ], + "Description": "Make a cell barcode plot for droplet single-cell RNA-seq QC", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "droplet_barcode_plot", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/droplet-rank-plot/.shed.yml", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/droplet-barcode-plot", + "Galaxy wrapper version": "1.6.1+galaxy2", + "Conda id": "scxa-plots", + "Conda version": "0.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 95, + "Total tool usage (usegalaxy.eu)": 973 + }, + { + "Galaxy wrapper id": "fastq_provider", + "Galaxy tool ids": [ + "fastq_provider" + ], + "Description": "Retrieval and download of FASTQ files from ENA and other repositories such as HCA.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ebi-gene-expression-group/atlas-fastq-provider", + "ToolShed categories": [ + "Data Source", + "RNA", + "Transcriptomics" + ], + "ToolShed id": "atlas_fastq_provider", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_provider", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider", + "Galaxy wrapper version": "0.4.4", + "Conda id": "atlas-fastq-provider", + "Conda version": "0.4.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gtf-2-gene-list", + "Galaxy tool ids": [ + "_ensembl_gtf2gene_list" + ], + "Description": "Utility to extract annotations from Ensembl GTF files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "gtf2gene_list", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/gtf-2-gene-list/.shed.yml", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/gtf-2-gene-list", + "Galaxy wrapper version": "1.52.0+galaxy0", + "Conda id": "atlas-gene-annotation-manipulation", + "Conda version": "1.1.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 155, + "Total tool usage (usegalaxy.eu)": 1678 + }, + { + "Galaxy wrapper id": "fastq_pair", + "Galaxy tool ids": [ + "fastq_pair" + ], + "Description": "Paired-end fastq pairer", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/linsalrob/fastq-pair", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_pair", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_pair", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_pair", + "Galaxy wrapper version": "1.0+galaxy0", + "Conda id": "fastq-pair", + "Conda version": "1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fastq_quality_trimmer", + "Galaxy tool ids": [ + "cshl_fastq_quality_trimmer" + ], + "Description": "FASTQ trimmer based on quality", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/agordon/fastx_toolkit", + "ToolShed categories": [ + "Fastq Manipulation" + ], + "ToolShed id": "fastq_quality_trimmer", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_quality_trimmer", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_quality_trimmer", + "Galaxy wrapper version": "0.0.14+galaxy0", + "Conda id": "fastx_toolkit", + "Conda version": "0.0.14", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fastq_utils", + "Galaxy tool ids": [ + "fastq_filter_n", + "fastq_trim_poly_at" + ], + "Description": "Set of tools for handling fastq files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/nunofonseca/fastq_utils", + "ToolShed categories": [ + "Transcriptomics", + "RNA" + ], + "ToolShed id": "fastq_utils", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utils", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils", + "Galaxy wrapper version": "0.25.1+galaxy0", + "Conda id": "fastq_utils", + "Conda version": "0.25.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "salmon-kallisto-mtx-to-10x", + "Galaxy tool ids": [ + "_salmon_kallisto_mtx_to_10x" + ], + "Description": "Transforms .mtx matrix and associated labels into a format compatible with tools expecting old-style 10X data", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "salmon_kallisto_mtx_to_10x", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/salmon-kallisto-mtx-to-10x/.shed.yml", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/salmon-kallisto-mtx-to-10x", + "Galaxy wrapper version": "0.0.1+galaxy6", + "Conda id": "scipy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 86, + "Total tool usage (usegalaxy.eu)": 561 + }, + { + "Galaxy wrapper id": "cell-types-analysis", + "Galaxy tool ids": [ + "ct_build_cell_ontology_dict", + "ct_check_labels", + "ct_combine_tool_outputs", + "ct_downsample_cells", + "ct_get_consensus_outputs", + "ct_get_empirical_dist", + "ct_get_tool_perf_table", + "ct_get_tool_pvals" + ], + "Description": "Tools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysis", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics" + ], + "ToolShed id": "suite_cell_types_analysis", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis", + "Galaxy wrapper version": "1.1.1", + "Conda id": "cell-types-analysis", + "Conda version": "0.1.11", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 6 + }, + { + "Galaxy wrapper id": "data-hca", + "Galaxy tool ids": [ + "hca_matrix_downloader" + ], + "Description": "Tools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projects", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "suite_human_cell_atlas_tools", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hca", + "Galaxy wrapper version": "v0.0.4+galaxy0", + "Conda id": "hca-matrix-downloader", + "Conda version": "0.0.4", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 34, + "Total tool usage (usegalaxy.eu)": 439 + }, + { + "Galaxy wrapper id": "data-scxa", + "Galaxy tool ids": [ + "retrieve_scxa" + ], + "Description": "Tools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/home", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis" + ], + "ToolShed id": "suite_ebi_expression_atlas", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxa", + "Galaxy wrapper version": "v0.0.2+galaxy2", + "Conda id": "wget", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 99, + "Total tool usage (usegalaxy.eu)": 799 + }, + { + "Galaxy wrapper id": "decoupler", + "Galaxy tool ids": [ + "score_genes_aucell", + "decoupler_pathway_inference", + "decoupler_pseudobulk" + ], + "Description": "decoupler - Ensemble of methods to infer biological activities", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://decoupler-py.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "suite_decoupler", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler", + "Galaxy wrapper version": "1.4.0+galaxy3", + "Conda id": "decoupler", + "Conda version": "1.5.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 6 + }, + { + "Galaxy wrapper id": "dropletutils", + "Galaxy tool ids": [ + "dropletutils_empty_drops", + "dropletutils_read_10x" + ], + "Description": "De-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics", + "Sequence Analysis" + ], + "ToolShed id": "suite_dropletutils", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils", + "Galaxy wrapper version": "1.0.4", + "Conda id": "dropletutils-scripts", + "Conda version": "0.0.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 201, + "Total tool usage (usegalaxy.eu)": 1599 + }, + { + "Galaxy wrapper id": "garnett", + "Galaxy tool ids": [ + "garnett_check_markers", + "garnett_classify_cells", + "garnett_get_feature_genes", + "garnett_get_std_output", + "garnett_train_classifier", + "garnett_transform_markers", + "update_marker_file" + ], + "Description": "De-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics", + "Sequence Analysis" + ], + "ToolShed id": "suite_garnett", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett", + "Galaxy wrapper version": "0.2.8", + "Conda id": "garnett-cli", + "Conda version": "0.0.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 27 + }, + { + "Galaxy wrapper id": "monocle3", + "Galaxy tool ids": [ + "monocle3_create", + "monocle3_diffExp", + "monocle3_learnGraph", + "monocle3_orderCells", + "monocle3_partition", + "monocle3_plotCells", + "monocle3_preprocess", + "monocle3_reduceDim", + "monocle3_topmarkers" + ], + "Description": "De-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics", + "Sequence Analysis" + ], + "ToolShed id": "suite_monocle3", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle3", + "Galaxy wrapper version": "0.1.4", + "Conda id": "monocle3-cli", + "Conda version": "0.0.9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 9, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 9, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 9, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 9, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 264, + "Total tool usage (usegalaxy.eu)": 3266 + }, + { + "Galaxy wrapper id": "pyscenic", + "Galaxy tool ids": [ + "pyscenic_aucell", + "pyscenic_ctx", + "pyscenic_grn" + ], + "Description": "PySCENIC scripts based on usage at https://pyscenic.readthedocs.io/", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Sequence Analysis" + ], + "ToolShed id": "suite_pyscenic", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/pyscenic", + "Galaxy wrapper version": "0.12.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sc3", + "Galaxy tool ids": [ + "sc3_calc_biology", + "sc3_calc_consens", + "sc3_calc_dists", + "sc3_calc_transfs", + "sc3_estimate_k", + "sc3_kmeans", + "sc3_prepare" + ], + "Description": "De-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics", + "Sequence Analysis" + ], + "ToolShed id": "suite_sc3", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc3", + "Galaxy wrapper version": "1.8.0", + "Conda id": "sc3-scripts", + "Conda version": "0.0.6", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 9 + }, + { + "Galaxy wrapper id": "scanpy", + "Galaxy tool ids": [ + "anndata_ops", + "scanpy_filter_cells", + "scanpy_filter_genes", + "scanpy_find_cluster", + "scanpy_find_markers", + "scanpy_find_variable_genes", + "scanpy_integrate_bbknn", + "scanpy_integrate_combat", + "scanpy_integrate_harmony", + "scanpy_integrate_mnn", + "scanpy_plot_scrublet", + "scanpy_multiplet_scrublet", + "scanpy_compute_graph", + "scanpy_normalise_data", + "scanpy_parameter_iterator", + "scanpy_plot_embed", + "scanpy_plot_trajectory", + "scanpy_read_10x", + "scanpy_regress_variable", + "scanpy_run_diffmap", + "scanpy_run_dpt", + "scanpy_run_fdg", + "scanpy_run_paga", + "scanpy_run_pca", + "scanpy_run_tsne", + "scanpy_run_umap", + "scanpy_scale_data" + ], + "Description": "scanpy-scripts, command-line wrapper scripts around Scanpy.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://scanpy.readthedocs.io", + "ToolShed categories": [ + "Transcriptomics", + "Sequence Analysis", + "RNA" + ], + "ToolShed id": "scanpy_scripts", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpy", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy", + "Galaxy wrapper version": "1.9.3", + "Conda id": "scanpy-scripts", + "Conda version": "1.9.301", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 27, + "Available on UseGalaxy.org.au": 27, + "Available on UseGalaxy.eu": 27, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 27, + "Tools available on UseGalaxy.org.au": 27, + "Tools available on UseGalaxy.eu": 27, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 14, + "Tools available on UseGalaxy.no": 13, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2185, + "Total tool usage (usegalaxy.eu)": 39356 + }, + { + "Galaxy wrapper id": "scater", + "Galaxy tool ids": [ + "scater_calculate_cpm", + "scater_calculate_qc_metrics", + "scater_filter", + "scater_is_outlier", + "scater_normalize", + "scater_read_10x_results" + ], + "Description": "De-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics", + "Sequence Analysis" + ], + "ToolShed id": "suite_scater", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater", + "Galaxy wrapper version": "1.10.0", + "Conda id": "scater-scripts", + "Conda version": "0.0.5", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 6, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 6, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 2, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 16, + "Total tool usage (usegalaxy.eu)": 387 + }, + { + "Galaxy wrapper id": "sccaf", + "Galaxy tool ids": [ + "run_sccaf", + "sccaf_asses", + "sccaf_asses_merger", + "sccaf_regress_out" + ], + "Description": "SCCAF: Single Cell Clustering Assessment Framework.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/sccaf/sccaf", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "SCCAF", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccaf", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf", + "Galaxy wrapper version": "0.0.9", + "Conda id": "sccaf", + "Conda version": "0.0.10", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 110 + }, + { + "Galaxy wrapper id": "sceasy", + "Galaxy tool ids": [ + "sceasy_convert" + ], + "Description": "Convert scRNA data object between popular formats", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "sceasy", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy", + "Galaxy wrapper version": "0.0.5", + "Conda id": "r-sceasy", + "Conda version": "0.0.7", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 1, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 90, + "Total tool usage (usegalaxy.eu)": 721 + }, + { + "Galaxy wrapper id": "scmap", + "Galaxy tool ids": [ + "scmap_get_std_output", + "scmap_index_cell", + "scmap_index_cluster", + "scmap_preprocess_sce", + "scmap_scmap_cell", + "scmap_scmap_cluster", + "scmap_select_features" + ], + "Description": "De-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics", + "Sequence Analysis" + ], + "ToolShed id": "suite_scmap", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap", + "Galaxy wrapper version": "1.6.4", + "Conda id": "scmap-cli", + "Conda version": "0.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 7, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 7, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 13, + "Total tool usage (usegalaxy.eu)": 83 + }, + { + "Galaxy wrapper id": "scpred", + "Galaxy tool ids": [ + "scpred_get_feature_space", + "scpred_get_std_output", + "scpred_predict_labels", + "scpred_train_model" + ], + "Description": "De-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics", + "Sequence Analysis" + ], + "ToolShed id": "suite_scpred", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred", + "Galaxy wrapper version": "1.0.2", + "Conda id": "scpred-cli", + "Conda version": "0.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 4, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 4, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 25 + }, + { + "Galaxy wrapper id": "seurat", + "Galaxy tool ids": [ + "seurat_convert", + "seurat_dim_plot", + "seurat_export_cellbrowser", + "seurat_filter_cells", + "seurat_find_clusters", + "seurat_find_markers", + "seurat_find_neighbours", + "seurat_find_variable_genes", + "seurat_hover_locator", + "seurat_integration", + "seurat_map_query", + "seurat_normalise_data", + "seurat_plot", + "seurat_read10x", + "seurat_run_pca", + "seurat_run_tsne", + "seurat_run_umap", + "seurat_scale_data", + "seurat_select_integration_features" + ], + "Description": "De-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/", + "ToolShed categories": [ + "Transcriptomics", + "RNA", + "Statistics", + "Sequence Analysis" + ], + "ToolShed id": "suite_seurat", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat", + "Galaxy wrapper version": "4.0.0", + "Conda id": "seurat-scripts", + "Conda version": "4.0.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 14, + "Available on UseGalaxy.org.au": 14, + "Available on UseGalaxy.eu": 14, + "Available on UseGalaxy.fr": 11, + "Tools available on UseGalaxy.org (Main)": 14, + "Tools available on UseGalaxy.org.au": 14, + "Tools available on UseGalaxy.eu": 14, + "Tools available on UseGalaxy.fr": 11, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 19, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 181, + "Total tool usage (usegalaxy.eu)": 1966 + }, + { + "Galaxy wrapper id": "ucsc-cell-browser", + "Galaxy tool ids": [ + "ucsc_cell_browser" + ], + "Description": "Python pipeline and Javascript scatter plot library for single-cell datasets", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://cells.ucsc.edu/", + "ToolShed categories": [ + "Transcriptomics" + ], + "ToolShed id": "ucsc_cell_browser", + "Galaxy wrapper owner": "ebi-gxa", + "Galaxy wrapper source": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.yml", + "Galaxy wrapper parsed folder": "https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser", + "Galaxy wrapper version": "1.0.0+galaxy1", + "Conda id": "ucsc-cell-browser", + "Conda version": "1.2.8", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 78, + "Total tool usage (usegalaxy.eu)": 941 + }, + { + "Galaxy wrapper id": "biotransformer", + "Galaxy tool ids": [ + "biotransformer" + ], + "Description": "BioTransformer is a tool for prediction of small molecule metabolism in mammals.", + "bio.tool id": "biotransformer", + "bio.tool ids": [ + "biotransformer" + ], + "biii": null, + "bio.tool name": "BioTransformer", + "bio.tool description": "BioTransformer is a freely available web server that supports accurate, rapid and comprehensive in silico metabolism prediction.", + "EDAM operation": [ + "Metabolic pathway prediction", + "PTM site prediction", + "Natural product identification" + ], + "EDAM topic": [ + "Small molecules", + "Endocrinology and metabolism", + "Metabolomics", + "Carbohydrates", + "NMR" + ], + "Status": "Up-to-date", + "Source": "https://bitbucket.org/djoumbou/biotransformerjar/src/master/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "biotransformer", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/biotransformer", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/biotransformer", + "Galaxy wrapper version": "3.0.20230403", + "Conda id": "biotransformer", + "Conda version": "3.0.20230403", + "EDAM operation (no superclasses)": [ + "Metabolic pathway prediction", + "PTM site prediction", + "Natural product identification" + ], + "EDAM topic (no superclasses)": [ + "Small molecules", + "Endocrinology and metabolism", + "Metabolomics", + "Carbohydrates", + "NMR" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "filter_compounds", + "Galaxy tool ids": [ + "filter_orgmet_anorg" + ], + "Description": "Tool for filtering organometallics/anorganic compounds from a list of compounds.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RECETOX/galaxytools/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "filter_compounds", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/filter_compounds", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/filter_compounds", + "Galaxy wrapper version": "3.1.1", + "Conda id": "openbabel", + "Conda version": "2.3.90dev7d621d9", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "gc_derivatization", + "Galaxy tool ids": [ + "gc_derivatization" + ], + "Description": "In silico derivatization for GC.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/RECETOX/gc-meox-tms", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "gc_derivatization", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/gc_derivatization", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/gc_derivatization", + "Galaxy wrapper version": "1.0.1", + "Conda id": "gc-meox-tms", + "Conda version": "1.0.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "isolib", + "Galaxy tool ids": [ + "isolib" + ], + "Description": "Create an isotopic pattern library for given compounds and adducts.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RECETOX/galaxytools/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "isolib", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/isolib", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/isolib", + "Galaxy wrapper version": "1.0.1+galaxy0", + "Conda id": "bioconductor-metabocoreutils", + "Conda version": "1.10.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "matchms", + "Galaxy tool ids": [ + "matchms_add_key", + "matchms_convert", + "matchms_filtering", + "matchms_fingerprint_similarity", + "matchms_formatter", + "matchms_metadata_export", + "matchms_metadata_match", + "matchms_metadata_merge", + "matchms_networking", + "matchms_remove_key", + "matchms_remove_spectra", + "matchms_spectral_similarity", + "matchms_split", + "matchms_subsetting" + ], + "Description": "Searching, filtering and converting mass spectral libraries.", + "bio.tool id": "matchms", + "bio.tool ids": [ + "matchms" + ], + "biii": null, + "bio.tool name": "Matchms", + "bio.tool description": "Tool to import, process, clean, and compare mass spectrometry data.", + "EDAM operation": [ + "Spectral library search", + "Format validation", + "Filtering" + ], + "EDAM topic": [ + "Metabolomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/matchms/matchms", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "matchms", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/matchms", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/matchms", + "Galaxy wrapper version": "0.27.0", + "Conda id": "matchms", + "Conda version": "0.27.0", + "EDAM operation (no superclasses)": [ + "Spectral library search", + "Format validation", + "Filtering" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 14, + "Available on UseGalaxy.eu": 14, + "Available on UseGalaxy.fr": 11, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 14, + "Tools available on UseGalaxy.eu": 14, + "Tools available on UseGalaxy.fr": 11, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 9, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 10, + "Total tool usage (usegalaxy.eu)": 187 + }, + { + "Galaxy wrapper id": "mfassignr", + "Galaxy tool ids": [ + "mfassignr_histnoise", + "mfassignr_isofiltr", + "mfassignr_kmdnoise", + "mfassignr_mfassign", + "mfassignr_mfassignCHO", + "mfassignr_recal", + "mfassignr_recallist", + "mfassignr_snplot" + ], + "Description": "The MFAssignR package was designed for multi-element molecular formula (MF) assignment of ultrahigh resolution mass spectrometry measurements", + "bio.tool id": "mfassignr", + "bio.tool ids": [ + "mfassignr" + ], + "biii": null, + "bio.tool name": "MFAssignR", + "bio.tool description": "Molecular formula assignment software for ultrahigh resolution mass spectrometry analysis of environmental complex mixtures.Ultrahigh resolution mass spectrometry is widely used for nontargeted analysis of complex environmental and biological mixtures, such as dissolved organic matter, due to its unparalleled ability to provide accurate mass measurements.", + "EDAM operation": [ + "Visualisation" + ], + "EDAM topic": [ + "Proteomics experiment", + "Molecular interactions, pathways and networks", + "Workflows" + ], + "Status": "Up-to-date", + "Source": "https://github.com/RECETOX/MFAssignR", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "MFAssignR", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/mfassignr", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/mfassignr", + "Galaxy wrapper version": "1.0.3", + "Conda id": "r-mfassignr", + "Conda version": "1.0.3", + "EDAM operation (no superclasses)": [ + "Visualisation" + ], + "EDAM topic (no superclasses)": [ + "Proteomics experiment", + "Molecular interactions, pathways and networks", + "Workflows" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "misc", + "Galaxy tool ids": [ + "use_theoretical_mz_annotations" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RECETOX/galaxytools", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/misc", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/misc", + "Galaxy wrapper version": "1.0.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "msmetaenhancer", + "Galaxy tool ids": [ + "msmetaenhancer" + ], + "Description": null, + "bio.tool id": "msmetaenhancer", + "bio.tool ids": [ + "msmetaenhancer" + ], + "biii": null, + "bio.tool name": "MSMetaEnhancer", + "bio.tool description": "Tool for mass spectra metadata annotation.", + "EDAM operation": [ + "Annotation", + "Standardisation and normalisation" + ], + "EDAM topic": [ + "Metabolomics", + "Compound libraries and screening", + "Data submission, annotation and curation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/RECETOX/MSMetaEnhancer", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancer", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancer", + "Galaxy wrapper version": "0.4.0", + "Conda id": "msmetaenhancer", + "Conda version": "0.4.0", + "EDAM operation (no superclasses)": [ + "Annotation", + "Standardisation and normalisation" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics", + "Compound libraries and screening", + "Data submission, annotation and curation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 1, + "Total tool usage (usegalaxy.eu)": 103 + }, + { + "Galaxy wrapper id": "msp_merge", + "Galaxy tool ids": [ + "msp_merge" + ], + "Description": null, + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RECETOX/galaxytools", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/msp_merge", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/msp_merge", + "Galaxy wrapper version": "0.1.0", + "Conda id": "matchms", + "Conda version": "0.27.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "mzml_validator", + "Galaxy tool ids": [ + "mzml_validator" + ], + "Description": "mzML Validator checks if mzML file validates against XML Schema Definition of HUPO Proteomics Standard Initiative.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RECETOX/galaxytools", + "ToolShed categories": [ + "Metabolomics", + "Proteomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/mzml_validator", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/mzml_validator", + "Galaxy wrapper version": "0.1.0+galaxy2", + "Conda id": "lxml", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "qcxms", + "Galaxy tool ids": [ + "qcxms_getres", + "qcxms_neutral_run", + "qcxms_production_run" + ], + "Description": "QCxMS is a quantum chemical (QC) based program that enables users to calculate mass spectra (MS) using Born-Oppenheimer Molecular Dynamics (MD).", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/grimme-lab/QCxMS", + "ToolShed categories": [ + "Computational chemistry", + "Molecular Dynamics" + ], + "ToolShed id": "QCxMS", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/qcxms", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/qcxms", + "Galaxy wrapper version": "5.2.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 3, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 3, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "query", + "Galaxy tool ids": [ + "query" + ], + "Description": "Execute an SQL statement on a set of tables", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "query", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/query", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/query", + "Galaxy wrapper version": "0.2", + "Conda id": "click", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ramclustr", + "Galaxy tool ids": [ + "ramclustr", + "ramclustr_define_experiment" + ], + "Description": null, + "bio.tool id": "ramclustr", + "bio.tool ids": [ + "ramclustr" + ], + "biii": null, + "bio.tool name": "RAMClustR", + "bio.tool description": "A feature clustering algorithm for non-targeted mass spectrometric metabolomics data.", + "EDAM operation": [ + "Imputation", + "Standardisation and normalisation", + "Clustering", + "Correlation" + ], + "EDAM topic": [ + "Metabolomics" + ], + "Status": "To update", + "Source": "https://rdrr.io/cran/RAMClustR/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr", + "Galaxy wrapper version": "1.3.0", + "Conda id": "r-ramclustr", + "Conda version": "1.3.1", + "EDAM operation (no superclasses)": [ + "Imputation", + "Standardisation and normalisation", + "Clustering", + "Correlation" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics" + ], + "Available on UseGalaxy.org (Main)": 2, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 2, + "Tools available on UseGalaxy.org (Main)": 2, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 2, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 2, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 2, + "Total tool usage (usegalaxy.eu)": 16 + }, + { + "Galaxy wrapper id": "rcx-tk", + "Galaxy tool ids": [ + "rcx-tk" + ], + "Description": "Tools to process metadata or alkane files.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RECETOX/rcx-tk", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "rcx_tk", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/rcx-tk/", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/rcx-tk", + "Galaxy wrapper version": "0.1.0+galaxy0", + "Conda id": "rcx-tk", + "Conda version": "0.1.0", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "recetox_aplcms", + "Galaxy tool ids": [ + "recetox_aplcms_align_features", + "recetox_aplcms_compute_clusters", + "recetox_aplcms_compute_template", + "recetox_aplcms_correct_time", + "recetox_aplcms_generate_feature_table", + "recetox_aplcms_merge_known_table", + "recetox_aplcms_recover_weaker_signals", + "recetox_aplcms_remove_noise" + ], + "Description": "Peak detection tool for HRMS profile data.", + "bio.tool id": "recetox-aplcms", + "bio.tool ids": [ + "recetox-aplcms" + ], + "biii": null, + "bio.tool name": "recetox-aplcms", + "bio.tool description": "recetox-aplcms is a tool for peak detection in mass spectrometry data. The tool performs (1) noise removal, (2) peak detection, (3) retention time drift correction, (4) peak alignment and (5) weaker signal recovery as well as (6) suspect screening.", + "EDAM operation": [ + "Chromatographic alignment", + "Quantification", + "Peak detection", + "Feature extraction", + "Alignment" + ], + "EDAM topic": [ + "Metabolomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/RECETOX/recetox-aplcms", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "recetox-aplcms", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms", + "Galaxy wrapper version": "0.13.2", + "Conda id": "r-recetox-aplcms", + "Conda version": "0.13.2", + "EDAM operation (no superclasses)": [ + "Chromatographic alignment", + "Quantification", + "Peak detection", + "Feature extraction", + "Alignment" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 8, + "Available on UseGalaxy.eu": 8, + "Available on UseGalaxy.fr": 8, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 8, + "Tools available on UseGalaxy.eu": 8, + "Tools available on UseGalaxy.fr": 8, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 8, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 7, + "Total tool usage (usegalaxy.eu)": 296 + }, + { + "Galaxy wrapper id": "recetox_msfinder", + "Galaxy tool ids": [ + "recetox_msfinder" + ], + "Description": null, + "bio.tool id": "recetox-msfinder", + "bio.tool ids": [ + "recetox-msfinder" + ], + "biii": null, + "bio.tool name": "recetox-msfinder", + "bio.tool description": "This is a modified copy of MS-FINDER with source code modifications to make the tool accessible in Galaxy.MS-FINDER - software for structure elucidation of unknown spectra with hydrogen rearrangement (HR) rulesThe program supports molecular formula prediction, metabolie class prediction, and structure elucidation for EI-MS and MS/MS spectra, and the assembly is licensed under the CC-BY 4.0.", + "EDAM operation": [ + "Annotation" + ], + "EDAM topic": [ + "Metabolomics" + ], + "Status": "To update", + "Source": "https://github.com/RECETOX/recetox-msfinder", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_msfinder", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_msfinder", + "Galaxy wrapper version": "v3.5.2", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Annotation" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "recetox_xmsannotator", + "Galaxy tool ids": [ + "recetox_xmsannotator_advanced" + ], + "Description": null, + "bio.tool id": "recetox-xmsannotator", + "bio.tool ids": [ + "recetox-xmsannotator" + ], + "biii": null, + "bio.tool name": "recetox-xMSannotator", + "bio.tool description": "Annotation tool for untargeted LCMS1 data. Uses a database and adduct list for compound annotation and intensity networks, isotopic patterns and pathways for annotation scoring.", + "EDAM operation": [ + "Expression profile pathway mapping", + "Structure comparison", + "Isotopic distributions calculation", + "Annotation" + ], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/RECETOX/recetox-xMSannotator", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_xmsannotator", + "Galaxy wrapper version": "0.10.0", + "Conda id": "r-recetox-xmsannotator", + "Conda version": "0.10.0", + "EDAM operation (no superclasses)": [ + "Expression profile pathway mapping", + "Structure comparison", + "Isotopic distributions calculation", + "Annotation" + ], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rem_complex", + "Galaxy tool ids": [ + "rem_complex" + ], + "Description": "Removes molecular coordination complexes.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RECETOX/galaxytools", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "rem_complex", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/rem_complex", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/rem_complex", + "Galaxy wrapper version": "1.0.0", + "Conda id": "pandas", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "rename_annotated_feature", + "Galaxy tool ids": [ + "rename_annotated_feature" + ], + "Description": "Update column names in an abundance table using a annotation table with spectral matching results", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/RECETOX/galaxytools/", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "rename_annotated_feature", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/rename_annotated_feature", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/rename_annotated_feature", + "Galaxy wrapper version": "1.0.0", + "Conda id": "pandas", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "retip", + "Galaxy tool ids": [ + "retip_apply", + "retip_descriptors", + "retip_filter_rt", + "retip_train" + ], + "Description": null, + "bio.tool id": "retip", + "bio.tool ids": [ + "retip" + ], + "biii": null, + "bio.tool name": "Retip", + "bio.tool description": "Retention Time Prediction for Compound Annotation in Untargeted Metabolomics.Retip is an R package for predicting Retention Time (RT) for small molecules in a high pressure liquid chromatography (HPLC) Mass Spectrometry analysis.Retip - Retention Time prediction for Metabolomics.Retip: Retention Time Prediction for Compound Annotation in Untargeted Metabolomics Paolo Bonini, Tobias Kind, Hiroshi Tsugawa, Dinesh Kumar Barupal, and Oliver Fiehn Analytical Chemistry 2020 92 (11), 7515-7522 DOI: 10.1021/acs.analchem.9b05765.", + "EDAM operation": [ + "Retention time prediction", + "Spectrum calculation", + "Deisotoping", + "Formatting", + "Deposition" + ], + "EDAM topic": [ + "Metabolomics", + "Proteomics experiment", + "Machine learning", + "Cheminformatics", + "Chemistry" + ], + "Status": "To update", + "Source": "https://github.com/PaoloBnn/Retip", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/retip", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/retip", + "Galaxy wrapper version": "0.5.4", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [ + "Retention time prediction", + "Spectrum calculation", + "Deisotoping", + "Formatting", + "Deposition" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics", + "Proteomics experiment", + "Machine learning", + "Cheminformatics", + "Chemistry" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "riassigner", + "Galaxy tool ids": [ + "riassigner", + "riassigner_from_comment" + ], + "Description": null, + "bio.tool id": "riassigner", + "bio.tool ids": [ + "riassigner" + ], + "biii": null, + "bio.tool name": "RIAssigner", + "bio.tool description": "RIAssigner is a python tool for retention index (RI) computation for GC-MS data.", + "EDAM operation": [ + "Standardisation and normalisation" + ], + "EDAM topic": [ + "Metabolomics", + "Compound libraries and screening", + "Data submission, annotation and curation" + ], + "Status": "Up-to-date", + "Source": "https://github.com/RECETOX/RIAssigner", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/riassigner", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/riassigner", + "Galaxy wrapper version": "0.4.1", + "Conda id": "riassigner", + "Conda version": "0.4.1", + "EDAM operation (no superclasses)": [ + "Standardisation and normalisation" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics", + "Compound libraries and screening", + "Data submission, annotation and curation" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 15 + }, + { + "Galaxy wrapper id": "rmassbank", + "Galaxy tool ids": [ + "rmassbank" + ], + "Description": "RMassBank is an R package for processing tandem MS files and building of MassBank records.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/MassBank/RMassBank", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "rmassbank", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/rmassbank", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/rmassbank", + "Galaxy wrapper version": "3.0.0", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "spec2vec", + "Galaxy tool ids": [ + "spec2vec_similarity", + "spec2vec_training" + ], + "Description": "Mass spectra similarity scoring using a trained Spec2Vec model.", + "bio.tool id": "spec2vec", + "bio.tool ids": [ + "spec2vec" + ], + "biii": null, + "bio.tool name": "Spec2Vec", + "bio.tool description": "Improved mass spectral similarity scoring through learning of structural relationships.Spec2vec is a novel spectral similarity score inspired by a natural language processing algorithm -- Word2Vec. Where Word2Vec learns relationships between words in sentences, spec2vec does so for mass fragments and neutral losses in MS/MS spectra. The spectral similarity score is based on spectral embeddings learnt from the fragmental relationships within a large set of spectral data.Analysis and benchmarking of mass spectra similarity measures using gnps data set.", + "EDAM operation": [ + "Spectrum calculation", + "Spectral library search", + "Database search", + "Natural product identification" + ], + "EDAM topic": [ + "Proteomics experiment", + "Metabolomics", + "Natural language processing", + "Proteomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/iomega/spec2vec", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "spec2vec", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/spec2vec", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/spec2vec", + "Galaxy wrapper version": "0.8.0", + "Conda id": "spec2vec", + "Conda version": "0.8.0", + "EDAM operation (no superclasses)": [ + "Spectrum calculation", + "Spectral library search", + "Database search", + "Natural product identification" + ], + "EDAM topic (no superclasses)": [ + "Proteomics experiment", + "Metabolomics", + "Natural language processing", + "Proteomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 2, + "Available on UseGalaxy.eu": 2, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 2, + "Tools available on UseGalaxy.eu": 2, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "waveica", + "Galaxy tool ids": [ + "waveica" + ], + "Description": "Removal of batch effects for large-scale untargeted metabolomics data based on wavelet analysis.", + "bio.tool id": "waveica", + "bio.tool ids": [ + "waveica" + ], + "biii": null, + "bio.tool name": "WaveICA", + "bio.tool description": "Removal of batch effects for large-scale untargeted metabolomics data based on wavelet transform.", + "EDAM operation": [ + "Standardisation and normalisation" + ], + "EDAM topic": [ + "Metabolomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/RECETOX/WaveICA", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": null, + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/waveica", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/waveica", + "Galaxy wrapper version": "0.2.0", + "Conda id": "r-recetox-waveica", + "Conda version": "0.2.0", + "EDAM operation (no superclasses)": [ + "Standardisation and normalisation" + ], + "EDAM topic (no superclasses)": [ + "Metabolomics" + ], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 6 + }, + { + "Galaxy wrapper id": "xtb", + "Galaxy tool ids": [ + "xtb_molecular_optimization" + ], + "Description": "Performs semiempirical molecular optimization.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/grimme-lab/xtb", + "ToolShed categories": [ + "Metabolomics" + ], + "ToolShed id": "xtb_molecular_optimization", + "Galaxy wrapper owner": "recetox", + "Galaxy wrapper source": "https://github.com/RECETOX/galaxytools/tree/master/tools/xtb", + "Galaxy wrapper parsed folder": "https://github.com/RECETOX/galaxytools/tree/master/tools/xtb", + "Galaxy wrapper version": "6.6.1", + "Conda id": "xtb", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 1, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 1, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 1, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 1, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "consolidate_vcfs", + "Galaxy tool ids": [ + "consolidate_vcfs" + ], + "Description": "Combines freebayes and mpileup files for use by vcf2snvalignment", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "consolidate_vcfs", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/consolidate_vcfs", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "filter_density", + "Galaxy tool ids": [ + "filterdensity" + ], + "Description": "Filter out position based on distance between SNVs", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "filter_density", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_density", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "filter_stats", + "Galaxy tool ids": [ + "filterstat" + ], + "Description": "SNVPhyl filter_stats", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "filter_stats", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_stats", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "filter_vcf", + "Galaxy tool ids": [ + "filtervcf" + ], + "Description": "SNVPhyl filter_vcf", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "filter_vcf", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_vcf", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "find_repeats", + "Galaxy tool ids": [ + "findrepeat" + ], + "Description": "Find repetitive regions on a reference genome using MUMMer", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "find_repeats", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/find_repeats", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "positions2snv_alignment", + "Galaxy tool ids": [ + "positions2snv_alignment" + ], + "Description": "Generate alignment of SNVs from SNVPhyl variant table.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "positions2snv_alignment", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/positions2snv_alignment", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "positions2snv_invariant_alignment", + "Galaxy tool ids": [ + "positions2snv_invariant_alignment" + ], + "Description": "Generate alignment of SNVs and non-variant positions from SNVPhyl variant table.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Variant Analysis" + ], + "ToolShed id": "positions2snv_invariant_alignment", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/positions2snv_invariant_alignment", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "snv_matrix", + "Galaxy tool ids": [ + "snvmatrix" + ], + "Description": "Generate matrix of SNV distances", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "snv_matrix", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/snv_matrix", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "vcf2snvalignment", + "Galaxy tool ids": [ + "vcf2snvalignment" + ], + "Description": "Generates multiple alignment of variant calls", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "vcf2snvalignment", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/vcf2snvalignment", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "verify_map", + "Galaxy tool ids": [ + "verify_map" + ], + "Description": "Checks the mapping quality of all BAM(s)", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://snvphyl.readthedocs.io/en/latest/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "verify_map", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/verify_map", + "Galaxy wrapper version": "1.8.2", + "Conda id": "snvphyl-tools", + "Conda version": "1.8.2", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "suite_snvphyl", + "Galaxy tool ids": [], + "Description": "SNVPhyl suite defining all dependencies for SNVPhyl", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "suite_snvphyl_1_2_3", + "Galaxy wrapper owner": "nml", + "Galaxy wrapper source": "https://github.com/phac-nml/snvphyl-galaxy", + "Galaxy wrapper parsed folder": "https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/suite_snvphyl", + "Galaxy wrapper version": null, + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "cooler", + "Galaxy tool ids": [ + "cooler_balance", + "cooler_cload_tabix", + "cooler_csort_tabix", + "cooler_makebins", + "cooler_zoomify" + ], + "Description": "cooler different tools to process Hi-C from mirnylab", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/open2c/cooler", + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "cooler", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/blob/master/tools/cooler/.shed.yml", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/cooler", + "Galaxy wrapper version": "0.9.3", + "Conda id": "htslib", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 4, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 5, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 4, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 5, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 4, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 11, + "Total tool usage (usegalaxy.eu)": 81 + }, + { + "Galaxy wrapper id": "fromHicupToJuicebox", + "Galaxy tool ids": [ + "fromHicupToJuicebox" + ], + "Description": "Convert the output of hicup (as sam or bam) to the input of juicebox.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "from_hicup_to_juicebox", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromHicupToJuicebox", + "Galaxy wrapper version": "0.0.2", + "Conda id": "pysam", + "Conda version": "0.22.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "fromgtfTobed12", + "Galaxy tool ids": [ + "fromgtfTobed12" + ], + "Description": "Convert GTF files to BED12 format", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://pythonhosted.org/gffutils/contents.html", + "ToolShed categories": [ + "Convert Formats" + ], + "ToolShed id": "fromgtftobed12", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromgtfTobed12", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromgtfTobed12", + "Galaxy wrapper version": "0.11.1+galaxy1", + "Conda id": "gffutils", + "Conda version": "0.13", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "getTn5ExtendedCoverage", + "Galaxy tool ids": [ + "getTn5ExtendedCoverage" + ], + "Description": "Take an input bam from ATAC-seq and generate a bedgraph using the center of the Tn5 insertion with an extension", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Epigenetics" + ], + "ToolShed id": "gettn5extendedcoverage", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": null, + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/getTn5ExtendedCoverage", + "Galaxy wrapper version": "0.0.2", + "Conda id": "pysam", + "Conda version": "0.22.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hyperstack_to_bleach_corrected_movie", + "Galaxy tool ids": [ + "hyperstack_to_bleach_corrected_movie" + ], + "Description": "Generate blach corrected movie from hyperstack", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "hyperstack_to_bleach_corrected_movie", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie", + "Galaxy wrapper version": "20230328", + "Conda id": "Fiji", + "Conda version": "20231211", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "incucyte_stack_and_upload_omero", + "Galaxy tool ids": [ + "incucyte_stack_and_upload_omero" + ], + "Description": "Combine images to stack and upload to the omero server", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "incucyte_stack_and_upload_omero", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero", + "Galaxy wrapper version": "20231221", + "Conda id": "Fiji", + "Conda version": "20231211", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "measure_gastruloids", + "Galaxy tool ids": [ + "measureGastruloids" + ], + "Description": "Get the ROI coordinates around the gastruloids as well as measurements like Area, elongation index", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "measure_gastruloids", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids", + "Galaxy wrapper version": "20221216", + "Conda id": "fiji", + "Conda version": "20231211", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "omero_clean_rois_tables", + "Galaxy tool ids": [ + "omero_clean_rois_tables" + ], + "Description": "Remove all ROIs and all tables on OMERO associated to an omero object and recursively up and down", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "omero_clean_rois_tables", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables", + "Galaxy wrapper version": "20230623", + "Conda id": "fiji", + "Conda version": "20231211", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "omero_get_children_ids", + "Galaxy tool ids": [ + "omero_get_children_ids" + ], + "Description": "Get omero id of children of an omero object id", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "omero_get_children_ids", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids", + "Galaxy wrapper version": "0.2.0", + "Conda id": "omero-py", + "Conda version": "5.11.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "omero_get_full_images", + "Galaxy tool ids": [ + "omero_get_full_images" + ], + "Description": "Get full images from omero", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "omero_get_full_images", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images", + "Galaxy wrapper version": "20240521", + "Conda id": "fiji", + "Conda version": "20231211", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "omero_hyperstack_to_fluo_measurements_on_gastruloid", + "Galaxy tool ids": [ + "omero_hyperstack_to_fluo_measurements_on_gastruloid" + ], + "Description": "Analyse Hyperstack on OMERO server to measure fluorescence levels", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "omero_hyperstack_to_fluo_measurements_on_gastruloid", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid", + "Galaxy wrapper version": "20230809", + "Conda id": "fiji", + "Conda version": "20231211", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "omero_hyperstack_to_gastruloid_measurements", + "Galaxy tool ids": [ + "omero_hyperstack_to_gastruloid_measurements" + ], + "Description": "Analyse Hyperstack on OMERO server to segment gastruloid and compute measurements", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "omero_hyperstack_to_gastruloid_measurements", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements", + "Galaxy wrapper version": "20240214", + "Conda id": "fiji", + "Conda version": "20231211", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "revertR2orientationInBam", + "Galaxy tool ids": [ + "revertR2orientationInBam" + ], + "Description": "Revert the mapped orientation of R2 mates in a bam.", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "SAM" + ], + "ToolShed id": "revertr2orientationinbam", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/revertR2orientationInBam", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/revertR2orientationInBam", + "Galaxy wrapper version": "0.0.2", + "Conda id": "samtools", + "Conda version": "1.20", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 1, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 1, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 9, + "Total tool usage (usegalaxy.eu)": 39 + }, + { + "Galaxy wrapper id": "upload_roi_and_measures_to_omero", + "Galaxy tool ids": [ + "uploadROIandMeasuresToOMERO" + ], + "Description": "Upload the ROI coordinates and the measurements to the omero server", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "upload_roi_and_measures_to_omero", + "Galaxy wrapper owner": "lldelisle", + "Galaxy wrapper source": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero", + "Galaxy wrapper parsed folder": "https://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero", + "Galaxy wrapper version": "0.0.5", + "Conda id": "omero-py", + "Conda version": "5.11.1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "blast2go", + "Galaxy tool ids": [ + "blast2go" + ], + "Description": "Maps BLAST results to GO annotation terms", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go", + "ToolShed categories": [ + "Ontology Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "blast2go", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go", + "Galaxy wrapper version": "0.0.11", + "Conda id": "b2g4pipe", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 1, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 101, + "Total tool usage (usegalaxy.eu)": 1232 + }, + { + "Galaxy wrapper id": "blast_rbh", + "Galaxy tool ids": [ + "blast_reciprocal_best_hits" + ], + "Description": "BLAST Reciprocal Best Hits (RBH) from two FASTA files", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "blast_rbh", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh", + "Galaxy wrapper version": "0.3.0", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 1, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 121, + "Total tool usage (usegalaxy.eu)": 22499 + }, + { + "Galaxy wrapper id": "blastxml_to_top_descr", + "Galaxy tool ids": [ + "blastxml_to_top_descr" + ], + "Description": "Make table of top BLAST match descriptions", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr", + "ToolShed categories": [ + "Convert Formats", + "Sequence Analysis", + "Text Manipulation" + ], + "ToolShed id": "blastxml_to_top_descr", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr", + "Galaxy wrapper version": "0.1.2", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 1, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 159, + "Total tool usage (usegalaxy.eu)": 264558 + }, + { + "Galaxy wrapper id": "make_nr", + "Galaxy tool ids": [ + "make_nr" + ], + "Description": "Make a FASTA file non-redundant", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr", + "ToolShed categories": [ + "Fasta Manipulation", + "Sequence Analysis" + ], + "ToolShed id": "make_nr", + "Galaxy wrapper owner": "peterjc", + "Galaxy wrapper source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr", + "Galaxy wrapper version": "0.0.3", + "Conda id": "biopython", + "Conda version": "1.70", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "ncbi_blast_plus", + "Galaxy tool ids": [ + "blastxml_to_tabular", + "get_species_taxids", + "ncbi_blastdbcmd_info", + "ncbi_blastdbcmd_wrapper", + "ncbi_blastn_wrapper", + "ncbi_blastp_wrapper", + "ncbi_blastx_wrapper", + "ncbi_convert2blastmask_wrapper", + "ncbi_deltablast_wrapper", + "ncbi_dustmasker_wrapper", + "ncbi_makeblastdb", + "ncbi_makeprofiledb", + "ncbi_psiblast_wrapper", + "ncbi_rpsblast_wrapper", + "ncbi_rpstblastn_wrapper", + "ncbi_segmasker_wrapper", + "ncbi_tblastn_wrapper", + "ncbi_tblastx_wrapper" + ], + "Description": "NCBI BLAST+", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://blast.ncbi.nlm.nih.gov/", + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "ncbi_blast_plus", + "Galaxy wrapper owner": "devteam", + "Galaxy wrapper source": "https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus", + "Galaxy wrapper parsed folder": "https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus", + "Galaxy wrapper version": "2.14.1", + "Conda id": "python", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 16, + "Available on UseGalaxy.org.au": 16, + "Available on UseGalaxy.eu": 16, + "Available on UseGalaxy.fr": 16, + "Tools available on UseGalaxy.org (Main)": 16, + "Tools available on UseGalaxy.org.au": 16, + "Tools available on UseGalaxy.eu": 16, + "Tools available on UseGalaxy.fr": 16, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 15, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 15, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 16, + "Tools available on Galaxy@Pasteur": 15, + "Tools available on GalaxyTrakr": 16, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 16, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 16, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 16, + "Tools available on UseGalaxy.no": 15, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4066, + "Total tool usage (usegalaxy.eu)": 365597 + }, + { + "Galaxy wrapper id": "frogs", + "Galaxy tool ids": [ + "FROGS_affiliation_filters", + "FROGS_affiliation_postprocess", + "FROGS_affiliation_stats", + "FROGS_biom_to_stdBiom", + "FROGS_biom_to_tsv", + "FROGS_cluster_filters", + "FROGS_cluster_stats", + "FROGS_clustering", + "FROGS_demultiplex", + "FROGSSTAT_DESeq2_Preprocess", + "FROGSSTAT_DESeq2_Visualisation", + "FROGSFUNC_step2_functions", + "FROGSFUNC_step3_pathways", + "FROGSFUNC_step1_placeseqs", + "FROGS_itsx", + "FROGS_normalisation", + "FROGSSTAT_Phyloseq_Alpha_Diversity", + "FROGSSTAT_Phyloseq_Beta_Diversity", + "FROGSSTAT_Phyloseq_Sample_Clustering", + "FROGSSTAT_Phyloseq_Composition_Visualisation", + "FROGSSTAT_Phyloseq_Import_Data", + "FROGSSTAT_Phyloseq_Multivariate_Analysis_Of_Variance", + "FROGSSTAT_Phyloseq_Structure_Visualisation", + "FROGS_preprocess", + "FROGS_remove_chimera", + "FROGS_taxonomic_affiliation", + "FROGS_Tree", + "FROGS_tsv_to_biom" + ], + "Description": "Suite for metabarcoding analysis", + "bio.tool id": "frogs", + "bio.tool ids": [ + "frogs" + ], + "biii": null, + "bio.tool name": "FROGS", + "bio.tool description": "The user-friendly and Galaxy-supported pipeline FROGS analyses large sets of DNA amplicons sequences accurately and rapidly, essential for microbe community studies.", + "EDAM operation": [ + "Taxonomic classification" + ], + "EDAM topic": [ + "Metagenomics", + "Microbial ecology", + "Taxonomy", + "Evolutionary biology", + "Sequencing" + ], + "Status": "To update", + "Source": "http://frogs.toulouse.inrae.fr/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "frogs", + "Galaxy wrapper owner": "frogs", + "Galaxy wrapper source": "https://github.com/geraldinepascal/FROGS-wrappers/", + "Galaxy wrapper parsed folder": "https://github.com/geraldinepascal/FROGS-wrappers/tree/master/tools/frogs", + "Galaxy wrapper version": "4.1.0", + "Conda id": "frogs", + "Conda version": "5.0.0", + "EDAM operation (no superclasses)": [ + "Taxonomic classification" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics", + "Microbial ecology", + "Taxonomy", + "Evolutionary biology", + "Sequencing" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 28, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 28, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 18, + "Tools available on GalaxyTrakr": 18, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "genomad", + "Galaxy tool ids": [ + "genomad_end_to_end" + ], + "Description": "Identify virus and plasmid genomes from nucleotide sequences", + "bio.tool id": "genomad", + "bio.tool ids": [ + "genomad" + ], + "biii": null, + "bio.tool name": "geNomad", + "bio.tool description": "geNomad is a tool that identifies virus and plasmid genomes from nucleotide sequences. It provides state-of-the-art classification performance and can be used to quickly find mobile genetic elements from genomes, metagenomes, or metatranscriptomes.", + "EDAM operation": [ + "Sequence annotation", + "Taxonomic classification" + ], + "EDAM topic": [ + "Sequence analysis" + ], + "Status": "Up-to-date", + "Source": "https://github.com/apcamargo/genomad/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "genomad", + "Galaxy wrapper owner": "ufz", + "Galaxy wrapper source": "https://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/longorf/", + "Galaxy wrapper parsed folder": "https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/genomad", + "Galaxy wrapper version": "1.8.0", + "Conda id": "genomad", + "Conda version": "1.8.0", + "EDAM operation (no superclasses)": [ + "Sequence annotation", + "Taxonomic classification" + ], + "EDAM topic (no superclasses)": [ + "Sequence analysis" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "longorf", + "Galaxy tool ids": [ + "longORF" + ], + "Description": "obtain longest ORF in six-frame translations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Sequence Analysis" + ], + "ToolShed id": "longorf", + "Galaxy wrapper owner": "mbernt", + "Galaxy wrapper source": "https://github.com/bernt-matthias/mb-galaxy-tools/blob/master/tools/longorf/", + "Galaxy wrapper parsed folder": "https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/longorf", + "Galaxy wrapper version": "0.3.0", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "omero", + "Galaxy tool ids": [ + "omero_import", + "omero_metadata_import" + ], + "Description": "Import images and metadata into an OMERO.server using omero-py", + "bio.tool id": "omero", + "bio.tool ids": [ + "omero" + ], + "biii": null, + "bio.tool name": "OMERO", + "bio.tool description": "Client-server Java software for visualisation, management and analysis of biological microscope images.", + "EDAM operation": [ + "Image analysis" + ], + "EDAM topic": [ + "Imaging", + "Data visualisation" + ], + "Status": "To update", + "Source": "https://github.com/ome/omero-py/", + "ToolShed categories": [ + "Imaging" + ], + "ToolShed id": "omero_upload", + "Galaxy wrapper owner": "ufz", + "Galaxy wrapper source": "https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero", + "Galaxy wrapper parsed folder": "https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero", + "Galaxy wrapper version": "5.18.0", + "Conda id": "omero-py", + "Conda version": "5.11.1", + "EDAM operation (no superclasses)": [ + "Image analysis" + ], + "EDAM topic (no superclasses)": [ + "Imaging", + "Data visualisation" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "scripting", + "Galaxy tool ids": [ + "singularity_scriptrunner" + ], + "Description": "suite_scripting", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bernt-matthias/mb-galaxy-tools/tree/master/tools/scripting/", + "ToolShed categories": [ + "Text Manipulation" + ], + "ToolShed id": "scripting tools", + "Galaxy wrapper owner": "mbernt", + "Galaxy wrapper source": "https://github.com/bernt-matthias/mb-galaxy-tools/tree/master/tools/scripting/", + "Galaxy wrapper parsed folder": "https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/scripting", + "Galaxy wrapper version": "0.1", + "Conda id": null, + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "baseline_calculator", + "Galaxy tool ids": [ + "tt_baseline" + ], + "Description": "Toxicity prediction using QSAR models", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/bernt-matthias/mb-galaxy-tools", + "ToolShed categories": [ + "Ecology", + "Text Manipulation" + ], + "ToolShed id": "baseline_toxicity_calculator", + "Galaxy wrapper owner": "mbernt", + "Galaxy wrapper source": "https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator", + "Galaxy wrapper parsed folder": "https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/baseline_calculator", + "Galaxy wrapper version": "0.1.0+galaxy0", + "Conda id": "pandas", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "dose_responses", + "Galaxy tool ids": [ + "dr_curve" + ], + "Description": "A tool for analyzing and visualizing the relationship between various doses and their corresponding biological responses", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "Up-to-date", + "Source": "https://github.com/bernt-matthias/mb-galaxy-tools", + "ToolShed categories": [ + "Ecology" + ], + "ToolShed id": "dose_response_analysis_tool", + "Galaxy wrapper owner": "ufz", + "Galaxy wrapper source": "https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator", + "Galaxy wrapper parsed folder": "https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/dose_responses", + "Galaxy wrapper version": "3.0_1", + "Conda id": "r-drc", + "Conda version": "3.0_1", + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "virsorter", + "Galaxy tool ids": [ + "virsorter" + ], + "Description": "VirSorter2 applies a multi-classifier, expert-guided approach to detect diverse DNA and RNA virus genomes.", + "bio.tool id": "virsorter", + "bio.tool ids": [ + "virsorter" + ], + "biii": null, + "bio.tool name": "virsorter", + "bio.tool description": "Identify DNA and RNA virus sequences.", + "EDAM operation": [ + "Taxonomic classification" + ], + "EDAM topic": [ + "Metagenomics" + ], + "Status": "Up-to-date", + "Source": "https://github.com/jiarong/VirSorter2/", + "ToolShed categories": [ + "Metagenomics" + ], + "ToolShed id": "virsorter", + "Galaxy wrapper owner": "ufz", + "Galaxy wrapper source": "https://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/virsorter", + "Galaxy wrapper parsed folder": "https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/virsorter", + "Galaxy wrapper version": "2.2.4", + "Conda id": "virsorter", + "Conda version": "2.2.4", + "EDAM operation (no superclasses)": [ + "Taxonomic classification" + ], + "EDAM topic (no superclasses)": [ + "Metagenomics" + ], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 0, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 0, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "pyvo_integration", + "Galaxy tool ids": [ + "astronomical_archives" + ], + "Description": "Astronomical archives tools contains tools for querying and fetching resources from astronomical archives into Galaxy", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Data Source" + ], + "ToolShed id": "astronomicalarchivestool", + "Galaxy wrapper owner": "astroteam", + "Galaxy wrapper source": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/", + "Galaxy wrapper parsed folder": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/archives/pyvo_integration", + "Galaxy wrapper version": "0.10.0", + "Conda id": "astropy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 1, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 4, + "Total tool usage (usegalaxy.eu)": 36 + }, + { + "Galaxy wrapper id": "astropytools", + "Galaxy tool ids": [ + "astropy_fits2bitmap", + "astropy_fits2csv", + "astropy_fitsinfo" + ], + "Description": "AstropyTools library contains Galaxy tools for elementary Astrophysical operations", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": "https://github.com/astropy/astropy", + "ToolShed categories": [ + "Astronomy" + ], + "ToolShed id": "astropytools", + "Galaxy wrapper owner": "volodymyrss", + "Galaxy wrapper source": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/astropytools", + "Galaxy wrapper parsed folder": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/astropytools", + "Galaxy wrapper version": "0.1.0+galaxy0", + "Conda id": "astropy", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 3, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 3, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 3, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 3, + "Total tool usage (usegalaxy.eu)": 11 + }, + { + "Galaxy wrapper id": "cta", + "Galaxy tool ids": [ + "cta_astro_tool" + ], + "Description": "Basic simulation of CTA telescope observations using gammapy package", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Astronomy" + ], + "ToolShed id": "cta_astro_tool", + "Galaxy wrapper owner": "astroteam", + "Galaxy wrapper source": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools", + "Galaxy wrapper parsed folder": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/cta", + "Galaxy wrapper version": "0.0.1+galaxy0", + "Conda id": "unzip", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "hess", + "Galaxy tool ids": [ + "hess_astro_tool" + ], + "Description": "Basic analysis of Data Level 3 public data sample of HESS gamma-ray telescope", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Astronomy" + ], + "ToolShed id": "hess_astro_tool", + "Galaxy wrapper owner": "astroteam", + "Galaxy wrapper source": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools", + "Galaxy wrapper parsed folder": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/hess", + "Galaxy wrapper version": "0.0.2+galaxy0", + "Conda id": "ipython", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + }, + { + "Galaxy wrapper id": "sgwb", + "Galaxy tool ids": [ + "sgwb_astro_tool" + ], + "Description": "SGWB", + "bio.tool id": null, + "bio.tool ids": [], + "biii": null, + "bio.tool name": null, + "bio.tool description": null, + "EDAM operation": [], + "EDAM topic": [], + "Status": "To update", + "Source": null, + "ToolShed categories": [ + "Astronomy" + ], + "ToolShed id": "sgwb_astro_tool", + "Galaxy wrapper owner": "astroteam", + "Galaxy wrapper source": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools", + "Galaxy wrapper parsed folder": "https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/sgwb", + "Galaxy wrapper version": "0.0.1+galaxy0", + "Conda id": "ipython", + "Conda version": null, + "EDAM operation (no superclasses)": [], + "EDAM topic (no superclasses)": [], + "Available on UseGalaxy.org (Main)": 0, + "Available on UseGalaxy.org.au": 0, + "Available on UseGalaxy.eu": 1, + "Available on UseGalaxy.fr": 0, + "Tools available on UseGalaxy.org (Main)": 0, + "Tools available on UseGalaxy.org.au": 0, + "Tools available on UseGalaxy.eu": 1, + "Tools available on UseGalaxy.fr": 0, + "Tools available on APOSTL": 0, + "Tools available on BF2I-MAP": 0, + "Tools available on BioBix": 0, + "Tools available on CIRM-CFBP": 0, + "Tools available on Center for Phage Technology (CPT)": 0, + "Tools available on ChemFlow": 0, + "Tools available on Coloc-stats": 0, + "Tools available on CoralSNP": 0, + "Tools available on CropGalaxy": 0, + "Tools available on Dintor": 0, + "Tools available on FreeBioinfo": 0, + "Tools available on GASLINI": 0, + "Tools available on Galaxy@AuBi": 0, + "Tools available on Galaxy@Pasteur": 0, + "Tools available on GalaxyTrakr": 0, + "Tools available on Genomic Hyperbrowser": 0, + "Tools available on GigaGalaxy": 0, + "Tools available on HyPhy HIV NGS Tools": 0, + "Tools available on IPK Galaxy Blast Suite": 0, + "Tools available on ImmPort Galaxy": 0, + "Tools available on InteractoMIX": 0, + "Tools available on MISSISSIPPI": 0, + "Tools available on Mandoiu Lab": 0, + "Tools available on MiModD NacreousMap": 0, + "Tools available on Oqtans": 0, + "Tools available on Palfinder": 0, + "Tools available on PepSimili": 0, + "Tools available on PhagePromotor": 0, + "Tools available on UseGalaxy.be": 0, + "Tools available on UseGalaxy.cz": 0, + "Tools available on UseGalaxy.no": 0, + "Tools available on Viral Variant Visualizer (VVV)": 0, + "No. of tool users (2022-2023) (usegalaxy.eu)": 0, + "Total tool usage (usegalaxy.eu)": 0 + } +] diff --git a/communities/all/resources/tools.tsv b/communities/all/resources/tools.tsv new file mode 100644 index 00000000..05b0cc48 --- /dev/null +++ b/communities/all/resources/tools.tsv @@ -0,0 +1,1465 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) +2d_auto_threshold ip_threshold Automatic thresholding scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_auto_threshold imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 6541 +2d_feature_extraction ip_2d_feature_extraction 2D feature extraction scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_feature_extraction imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 13760 +2d_filter_segmentation_by_features ip_2d_filter_segmentation_by_features filter segmentation by rules galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging 2d_filter_segmentation_by_features imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features 0.0.1-4 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 6834 +2d_histogram_equalization ip_histogram_equalization 2d histogram equalization scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_histogram_equalization imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 656 +2d_simple_filter ip_filter_standard 2d simple filter scipy To update https://github.com/bmcv Imaging 2d_simple_filter imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter 1.12.0 scipy 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 35 6156 +3d_tensor_feature_dimension_reduction ip_3d_tensor_feature_dimension_reduction Dimensionality reduction for features (channels) of 3D tensor data using UMAP To update https://github.com/BMCV/galaxy-image-analysis Imaging 3d_tensor_feature_dimension_reduction imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction 0.0.1 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +Ensembl-REST get_feature_info, get_genetree, get_sequences A suite of Galaxy tools designed to work with Ensembl REST API. To update https://rest.ensembl.org Data Source earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/Ensembl-REST https://github.com/TGAC/earlham-galaxytools/tree/master/tools/Ensembl-REST 0.1.2 requests 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 47 2889 +GAFA gafa Gene Align and Family Aggregator To update http://aequatus.tgac.ac.uk Visualization gafa earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA/ https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA 0.3.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 45 +TreeBest treebest_best TreeBeST best treebest treebest TreeBeST TreeBeST, which stands for (gene) Tree Building guided by Species Tree, is a versatile program that builds, manipulates and displays phylogenetic trees. It is particularly designed for building gene trees with a known species tree and is highly efficient and accurate.TreeBeST is previously known as NJTREE. It has been largely used in the TreeFam database, Ensembl Compara and OPTIC database of Chris Ponting group. Phylogenetic tree visualisation, Phylogenetic analysis, Phylogenetic inference (from molecular sequences) Phylogenetics To update http://treesoft.sourceforge.net/treebest.shtml Phylogenetics treebest_best earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest https://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest 1.9.2.post0 treebest 1.9.2.post1 Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Phylogenetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 984 +abacas abacas Order and Orientate Contigs To update https://github.com/phac-nml/abacas Assembly abacas nml https://github.com/phac-nml/abacas https://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas 1.1 mummer 3.23 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +anisotropic_diffusion ip_anisotropic_diffusion Anisotropic image diffusion Up-to-date https://github.com/bmcv Imaging anisotropic_diffusion imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic-diffusion/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic_diffusion 0.4.0 medpy 0.4.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 40 +apoc apoc Large-scale structural comparison of protein pockets To update http://cssb.biology.gatech.edu/APoc Computational chemistry apoc earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/apoc/ https://github.com/TGAC/earlham-galaxytools/tree/master/tools/apoc 1.0+galaxy1 apoc 1b16 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 3 +apollo create_account, feat_from_gff3, create_or_update, delete_features, delete_organism, export, fetch_jbrowse, iframe, list_organism Access an Apollo instance from Galaxy To update https://github.com/galaxy-genome-annotation/python-apollo Web Services gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo apollo 4.2.13 0 0 9 0 0 0 9 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 9 0 301 1896 +askomics askomics_integrate Galaxy tools allowing to interact with a remote AskOmics server.AskOmics is a visual SPARQL query builder for RDF database.https://github.com/askomics/ To update https://github.com/askomics/ Web Services gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/askomics https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/askomics askocli 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +askor askor_de AskoR links EdgeR and AskOmics To update https://github.com/askomics/askoR Transcriptomics askor_de genouest https://github.com/genouest/galaxy-tools/tree/master/tools/askor https://github.com/genouest/galaxy-tools/tree/master/tools/askor 0.2 bioconductor-limma 3.58.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +assemblystats assemblystats Summarise an assembly (e.g. N50 metrics) To update https://github.com/phac-nml/galaxy_tools Assembly assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +background_removal background_removal Background removal filters using scikit-image To update https://github.com/bmcv Imaging background_removal imgteam https://github.com/BMCV/galaxy-image-analysis/tools/background_removal https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/background_removal 0.24.0 scikit-image 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +bam2mappingstats bam2mappingstats Generates mapping stats from a bam file. To update https://github.com/phac-nml/galaxy_tools Assembly bam2mappingstats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats 1.1.0 perl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +bamclipper bamclipper Soft-clip gene-specific primers from BAM alignment file based on genomic coordinates of primer pairs in BEDPE format. Up-to-date https://github.com/tommyau/bamclipper Sequence Analysis bamclipper nml https://github.com/tommyau/bamclipper https://github.com/phac-nml/galaxy_tools/tree/master/tools/bamclipper 1.0.0 bamclipper 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +baric_archive baric_archive_rennes, baric_archive_toulouse A data source tool to fetch data from a BARIC Archive server. To update https://www.cesgo.org/catibaric/ Data Source genouest https://github.com/genouest/galaxy-tools/tree/master/tools/baric_archive https://github.com/genouest/galaxy-tools/tree/master/tools/baric_archive 1.1.0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +batched_lastz batched_lastz Galaxy wrapper for the batching Lastz runs Up-to-date https://github.com/galaxyproject/KegAlign Next Gen Mappers batched_lastz richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/batched_lastz https://github.com/richard-burhans/galaxytools/tree/main/tools/batched_lastz 1.04.22 lastz 1.04.22 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +bfconvert ip_convertimage Convert image python-bioformats Up-to-date https://github.com/bmcv Imaging, Convert Formats bfconvert imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert 6.7.0 bftools 6.7.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 38 1523 +binary2labelimage ip_binary_to_labelimage Binary 2 label image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging binary2labelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage 0.5 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 1273 +binaryimage2points ip_binaryimage_to_points Binary Image to Points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging binaryimage2points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points 0.1-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 29 +bioformats2raw bf2raw Convert image to OME-Zarr To update https://github.com/Euro-BioImaging Imaging, Convert Formats bioformats2raw imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw 0.7.0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 +biohansel biohansel Heidelberg and Enteritidis SNP Elucidation To update https://github.com/phac-nml/biohansel Sequence Analysis biohansel nml https://github.com/phac-nml/biohansel https://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel 2.4.0 bio_hansel 2.6.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +biohansel_bionumeric_converter bionumeric_convert Convert BioHansel output data to a Bionumerics friendly form To update https://github.com/phac-nml/galaxy_tools Text Manipulation biohansel_bionumeric_converter nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel_bionumeric_converter 0.2.0 pandas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +blast_parser blast_parser Convert 12- or 24-column BLAST output into 3-column hcluster_sg input To update https://github.com/TGAC/earlham-galaxytools/ Phylogenetics blast_parser earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parser https://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parser 0.1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 27 296 +braker braker BRAKER is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes . To update https://github.com/Gaius-Augustus/BRAKER Genome annotation braker genouest https://github.com/genouest/galaxy-tools/tree/master/tools/braker https://github.com/genouest/galaxy-tools/tree/master/tools/braker 2.1.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 109 +braker3 braker3 BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes . braker3 braker3 BRAKER3 BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes Genome annotation, Gene prediction RNA-Seq, Genomics, Structure prediction, Sequence analysis To update https://github.com/Gaius-Augustus/BRAKER Genome annotation braker3 genouest https://github.com/genouest/galaxy-tools/tree/master/tools/braker https://github.com/genouest/galaxy-tools/tree/master/tools/braker3 3.0.8 Genome annotation, Gene prediction RNA-Seq, Genomics, Structure prediction, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 567 +bundle_collections bundle_collection Tool to bundle up list collection into a single zip to be download To update Sequence Analysis bundle_collections nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/bundle_collections 1.3.0 perl-getopt-long 2.58 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +camera abims_CAMERA_annotateDiffreport, abims_CAMERA_combinexsAnnos To update Metabolomics camera workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/camera 1.48.0 r-snow 0.4_1 1 2 2 2 1 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 30 623 +cfm cfmid Competitive Fragmentation Modeling (CFM) Up-to-date https://sourceforge.net/p/cfm-id/ Metabolomics cfmid computational-metabolomics https://github.com/computational-metabolomics/cfm-galaxy/tree/master/tools/cfm https://github.com/computational-metabolomics/cfm-galaxy/tree/master/tools/cfm 33 cfm 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +chado analysis_add_analysis, analysis_delete_analyses, analysis_get_analyses, export_export_fasta, export_export_gbk, export_export_gff3, expression_add_biomaterial, expression_add_expression, expression_delete_all_biomaterials, expression_delete_biomaterials, expression_get_biomaterials, feature_delete_features, feature_get_features, feature_load_fasta, feature_load_featureprops, feature_load_gff, feature_load_go, load_blast, load_interpro, organism_add_organism, organism_delete_all_organisms, organism_delete_organisms, organism_get_organisms, phylogeny_gene_families, phylogeny_gene_order, phylogeny_load_tree Galaxy tools allowing to load data into a remote Chado database.Chado is a member of the GMOD family of tools.https://github.com/galaxy-genome-annotation/python-chado To update https://github.com/galaxy-genome-annotation/python-chado Web Services gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado python-chado 2.3.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +collapse_collection collapse_dataset Collection tool that collapses a list of files into a single datasset in order of appears in collection To update Sequence Analysis collapse_collections nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/collapse_collection 5.1.0 gawk 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1583 33934 +color-deconvolution ip_color_deconvolution Color-deconvolution methods galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging color_deconvolution imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution 0.8-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 16 +colorize_labels colorize_labels Colorize label map To update https://github.com/bmcv Imaging colorize_labels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels 3.2.1 networkx 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +combineJSON combine_json JSON collection tool that takes multiple JSON data arrays and combines them into a single JSON array. To update Sequence Analysis combine_json nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/combineJSON 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +combine_assembly_stats combine_stats Combine multiple Assemblystats datasets into a single tabular report To update https://github.com/phac-nml/galaxy_tools Assembly combine_assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats 1.0 perl-getopt-long 2.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +combine_tabular_collection combine Combine Tabular Collection into a single file To update Sequence Analysis combine_tabular_collection nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_tabular_collection 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +concat_channels ip_concat_channels Concatenate images galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging concat_channels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels 0.3-1 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 78 +concat_paired concat_fastqs Concatenate paired datasets To update https://github.com/phac-nml/concat Text Manipulation concat_paired nml https://github.com/phac-nml/concat https://github.com/phac-nml/galaxy_tools/tree/master/tools/concat_paired 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +coordinates_of_roi ip_coordinates_of_roi Coordinates of ROI galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging coordinates_of_roi imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi 0.0.4-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 16546 +correlation_analysis correlation_analysis [Metabolomics][W4M] Metabolites Correlation Analysis To update http://workflow4metabolomics.org Metabolomics correlation_analysis workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/correlation_analysis/ https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/correlation_analysis 1.0.1+galaxy0 r-batch 1.1_4 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +count_objects ip_count_objects Count Objects galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging count_objects imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects 0.0.5-2 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 25 272 +cryptogenotyper CryptoGenotyper CryptoGenotyper is a standalone tool to *in-silico* determine species and subtype based on SSU rRNA and gp60 markers. Up-to-date https://github.com/phac-nml/CryptoGenotyper Sequence Analysis cryptogenotyper nml https://github.com/phac-nml/CryptoGenotyper https://github.com/phac-nml/galaxy_tools/tree/master/tools/cryptogenotyper 1.0 cryptogenotyper 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 8518 +csvtk csvtk_awklike_filter, csvtk_awklike_mutate, csvtk_collapse, csvtk_concat, csvtk_convert, csvtk_correlation, csvtk_cut, csvtk_filter, csvtk_freq, csvtk_gather, csvtk_join, csvtk_mutate, csvtk_plot, csvtk_replace, csvtk_sample, csvtk_separate, csvtk_sort, csvtk_split, csvtk_summary, csvtk_uniq Rapid data investigation and manipulation of csv/tsv files To update https://bioinf.shenwei.me/csvtk/ Text Manipulation csvtk nml https://github.com/shenwei356/csvtk https://github.com/phac-nml/galaxy_tools/tree/master/tools/csvtk 0.20.0 csvtk 0.30.0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +curl_post curl_post Send file via cURL POST To update https://github.com/bmcv Data Export, Web Services curl_post imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curl_post https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curl_post 0.0.2 curl 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 27 440 +curve_fitting ip_curve_fitting Polynomial curve fitting to data points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging curve_fitting imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting 0.0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 12 +detection_viz ip_detection_viz Detection Visualization galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging detection_viz imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz 0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 46 +ectyper ectyper EC-Typer - in silico serotyping of Escherichia coli species Up-to-date https://github.com/phac-nml/ecoli_serotyping Sequence Analysis ectyper nml https://github.com/phac-nml/ecoli_serotyping https://github.com/phac-nml/galaxy_tools/tree/master/tools/ectyper 1.0.0 ectyper 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 53 9907 +ete ete_gene_csv_finder, ete_genetree_splitter, ete_homology_classifier, ete_init_taxdb, ete_lineage_generator, ete3_mod, ete_species_tree_generator Analyse phylogenetic trees using the ETE Toolkit ete ete ete The Environment for Tree Exploration (ETE) is a computational framework that simplifies the reconstruction, analysis, and visualization of phylogenetic trees and multiple sequence alignments. Here, we present ETE v3, featuring numerous improvements in the underlying library of methods, and providing a novel set of standalone tools to perform common tasks in comparative genomics and phylogenetics. The new features include (i) building gene-based and supermatrix-based phylogenies using a single command, (ii) testing and visualizing evolutionary models, (iii) calculating distances between trees of different size or including duplications, and (iv) providing seamless integration with the NCBI taxonomy database. ETE is freely available at http://etetoolkit.org Phylogenetic analysis, Phylogenetic tree editing Phylogenetics To update http://etetoolkit.org/ Phylogenetics ete earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete https://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete 3.1.2 ete3 3.1.1 Phylogenetic tree editing Phylogenetics 0 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 45 899 +export_to_cluster export_to_cluster Export datasets to cluster To update https://github.com/TGAC/earlham-galaxytools/ Data Export export_to_cluster earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/export_to_cluster/ https://github.com/TGAC/earlham-galaxytools/tree/master/tools/export_to_cluster 0.0.2 EXPORT_DIR_PREFIX 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fasta2bed fasta2bed Convert multiple fasta file into tabular bed file format To update https://github.com/phac-nml/galaxy_tools Sequence Analysis fasta2bed nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/fasta2bed 1.0.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fasta_extract fa-extract-sequence extract single fasta from multiple fasta file To update https://toolshed.g2.bx.psu.edu/view/nml/fasta_extract Sequence Analysis fasta_extract nml https://toolshed.g2.bx.psu.edu/view/nml/fasta_extract https://github.com/phac-nml/galaxy_tools/tree/master/tools/fasta_extract 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 10 +fastqc_stats FastQC_Summary Summary multiple FastQC into a single tabular line report To update https://github.com/phac-nml/galaxy_tools Sequence Analysis fastqc_stats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/fastqc_stats 1.2 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +feelnc2asko feelnc2asko Convert FeelNC GTF to GFF3 To update https://github.com/tderrien/FEELnc Convert Formats feelnc2asko genouest https://github.com/genouest/galaxy-tools/tree/master/tools/feelnc2asko https://github.com/genouest/galaxy-tools/tree/master/tools/feelnc2asko 0.1 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +feht feht Automatically identify makers predictive of groups. To update https://github.com/phac-nml/galaxy_tools Sequence Analysis feht nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/feht 0.1.0 feht 1.1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +filter_spades_repeats filter_spades_repeat Remove short and repeat contigs/scaffolds To update https://github.com/phac-nml/galaxy_tools/ Assembly filter_spades_repeats nml https://github.com/phac-nml/galaxy_tools/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats 1.0.1 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gblocks gblocks Gblocks Up-to-date http://molevol.cmima.csic.es/castresana/Gblocks.html Sequence Analysis gblocks earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblocks https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblocks 0.91b gblocks 0.91b 0 1 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gcms2isocor gcms2isocor Corrective method dedicated to Isocor for calculating carbon isotopologue distribution from GCMS runs To update https://github.com/p2m2/p2m2tools Metabolomics gcms2isocor workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/gcms2isocor/ https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/gcms2isocor 0.2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gcms2isocor gcms2isocor Conversion from GCMS PostRun Analysis to Isocor To update Metabolomics gcms2isocor genouest https://github.com/genouest/galaxy-tools/tree/master/tools/gcms2isocor 0.1.0 openjdk 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +genenotebook genenotebook_build Galaxy tools allowing to load data into a GeneNoteBook database.https://genenotebook.github.io Up-to-date https://genenotebook.github.io Web Services gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/genenotebook https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/genenotebook 0.4.16 genoboo 0.4.16 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +genform genform genform: generation of molecular formulas by high-resolution MS and MS/MS data To update https://sourceforge.net/projects/genform/ Metabolomics genform workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/genform/ https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/genform genform r8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 68 +get_pairs get_pairs Separate paired and unpaired reads from two fastq files To update Fastq Manipulation get_pairs genouest https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs 0.3 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +getmlst getmlst Download MLST datasets by species from pubmlst.org To update Sequence Analysis getmlst nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/getmlst 0.1.4.1 srst2 0.2.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gnali gnali A tool to find nonessential, loss-of-function gene variants Up-to-date https://github.com/phac-nml/gnali/ Variant Analysis gnali nml https://github.com/phac-nml/gnali/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/gnali 1.1.0 gnali 1.1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gstf_preparation gstf_preparation GeneSeqToFamily preparation converts data for the workflow To update https://github.com/TGAC/earlham-galaxytools/ Convert Formats gstf_preparation earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gstf_preparation https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gstf_preparation 0.4.3 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 397 +hcluster_sg hcluster_sg Hierarchically clustering on a sparse graph To update https://github.com/douglasgscofield/hcluster Phylogenetics hcluster_sg earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg 0.5.1.1 hcluster_sg 0.5.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 238 +hcluster_sg_parser hcluster_sg_parser Converts hcluster_sg 3-column output into lists of ids To update https://github.com/TGAC/earlham-galaxytools/ Phylogenetics hcluster_sg_parser earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg_parser https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg_parser 0.2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 290 +helixer helixer Gene calling with Deep Neural Networks helixer helixer Helixer Deep Learning to predict gene annotations Gene prediction, Genome annotation Sequence analysis, Gene transcripts To update https://github.com/weberlab-hhu/Helixer Genome annotation helixer genouest https://github.com/genouest/galaxy-tools/tree/master/tools/helixer https://github.com/genouest/galaxy-tools/tree/master/tools/helixer 0.3.3 Gene prediction, Genome annotation Sequence analysis, Gene transcripts 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 93 +hivtrace hivtrace An application that identifies potential transmission clusters within a supplied FASTA file with an option to find potential links against the Los Alamos HIV Sequence Database. To update Sequence Analysis hivtrace nml https://github.com/phac-nml/galaxy_tools/tree/tools/hivtrace https://github.com/phac-nml/galaxy_tools/tree/master/tools/hivtrace 1.0.1 hivtrace 1.5.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +image_info ip_imageinfo Extracts image metadata python-bioformats To update https://github.com/bmcv Imaging image_info imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info 5.7.1 bftools 6.7.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 41 621 +image_math image_math Process images using arithmetic expressions To update https://github.com/bmcv Imaging image_math imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math 1.26.4 numpy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +image_registration_affine ip_image_registration Intensity-based Image Registration galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging image_registration_affine imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine 0.0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 12 +imagecoordinates_flipaxis imagecoordinates_flipaxis Flip coordinate axes galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging imagecoordinates_flipaxis imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis 0.1-2 pandas Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 21825 +influx_data_manager influx_data_manager Handling influx_si data inputs in Galaxy workflows To update https://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m/ Metabolomics influx_si_data_manager workflow4metabolomics https://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m/tree/main/tools/influx_data_manager https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/influx_data_manager 1.0.2 influx-si-data-manager 1.0.3 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +influx_si influx_si metabolic flux estimation based on [in]stationary labeling To update https://github.com/sgsokol/influx Metabolomics influx_si workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/influx_si/ https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/influx_si 7.0.1 influx_si 7.0.4 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ipo ipo4retgroup, ipo4xcmsSet [W4M][LC-MS] IPO To update https://github.com/rietho/IPO Metabolomics ipo lecorguille https://github.com/rietho/IPO https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/ipo 1.10.0 bioconductor-ipo 1.28.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +isoplot isoplot Isoplot is a software for the visualisation of MS data from C13 labelling experiments To update Metabolomics, Visualization isoplot workflow4metabolomics https://github.com/llegregam/Isoplot/tree/main https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/isoplot 1.3.0+galaxy1 isoplot 1.3.1 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 2 +jbrowse jbrowse_to_container A tool allowing to export a JBrowse dataset into a JBrowse docker container To update https://jbrowse.org Web Services jbrowse_to_container gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/jbrowse https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/jbrowse python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +kaptive kaptive Kaptive reports information about capsular (K) loci found in genome assemblies. To update Sequence Analysis kaptive nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/kaptive 0.3.0 kaptive 3.0.0b5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +kat_filter kat_@EXECUTABLE@ Filtering kmers or reads from a database of kmers hashes To update Sequence Analysis kat_filter nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_filter 2.3 kat 2.4.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +kat_sect kat_@EXECUTABLE@ SEquence Coverage estimator Tool. Estimates the coverage of each sequence in a file using K-mers from another sequence file. To update kat_sect nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_sect 2.3 kat 2.4.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +kegalign kegalign A Scalable GPU System for Pairwise Whole Genome Alignments based on LASTZ's seed-filter-extend paradigm. Up-to-date https://github.com/galaxyproject/KegAlign Next Gen Mappers kegalign richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/kegalign https://github.com/richard-burhans/galaxytools/tree/main/tools/kegalign 0.1.2.7 kegalign-full 0.1.2.7 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +kmd_hmdb_data_plot kmd_hmdb_data_plot retrieves data from KMD HMDB API and produce plot and csv file To update https://github.com/workflow4metabolomics/tools-metabolomics Metabolomics kmd_hmdb_data_plot workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/kmd_hmdb_data_plot/ https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/kmd_hmdb_data_plot 1.0.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +label_to_binary label_to_binary Convert label map to binary image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging label_to_binary imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary 1.26.4 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +labelimage2points ip_labelimage_to_points Label Image to Points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging labelimage2points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points 0.2-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 36 +landmark_registration ip_landmark_registration Landmark Registration galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging landmark_registration imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration 0.1.0-2 scikit-image Image analysis Imaging, Bioinformatics 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 857 +logol logol_wrapper Logol is a pattern matching grammar language and a set of tools to search a pattern in a sequence Up-to-date http://logol.genouest.org/web/app.php/logol Sequence Analysis genouest https://github.com/genouest/galaxy-tools/tree/master/tools/logol https://github.com/genouest/galaxy-tools/tree/master/tools/logol 1.7.8 logol 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +lotus2 lotus2 LotuS2 OTU processing pipeline lotus2 lotus2 lotus2 LotuS2 is a lightweight and user-friendly pipeline that is fast, precise, and streamlined, using extensive pre- and post-ASV/OTU clustering steps to further increase data quality. High data usage rates and reliability enable high-throughput microbiome analysis in minutes. Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology To update http://lotus2.earlham.ac.uk/ Metagenomics lotus2 earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2 https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2 2.32 lotus2 2.34.1 Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 114 936 +mahotas-features ip_mahotas_features Compute image features using mahotas. mahotas-feature-computation To update https://github.com/luispedro/mahotas Imaging mahotas_features imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features 0.7-2 mahotas 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 37 +mauve_contig_mover mauve_contig_mover Order a draft genome relative to a related reference genome To update https://github.com/phac-nml/mauve_contig_mover Sequence Analysis mauve_contig_mover nml https://github.com/phac-nml/mauve_contig_mover https://github.com/phac-nml/galaxy_tools/tree/master/tools/mauve_contig_mover 1.0.10 mauve 2.4.0.r4736 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +meneco meneco Meneco computes minimal completions to your draft network with reactions from a repair network Up-to-date http://bioasp.github.io/meneco/ Systems Biology meneco genouest https://github.com/genouest/galaxy-tools/tree/master/tools/meneco https://github.com/genouest/galaxy-tools/tree/master/tools/meneco 1.5.2 meneco 1.5.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mergeneighboursinlabelimage ip_merge_neighbours_in_label Merge Neighbours in Label Image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging mergeneighboursinlabelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/\mergeneighboursinlabelimage https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mergeneighboursinlabelimage 0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 25 +metfrag metfrag [Metabolomics][LC-MS][MS/MS] MetFrag - Perform metfrag analysis (can work with the output from msPurity) To update https://github.com/computational-metabolomics/metfrag-galaxy Metabolomics computational-metabolomics https://github.com/computational-metabolomics/metfrag-galaxy https://github.com/computational-metabolomics/metfrag-galaxy/tree/master/tools/metfrag 2.4.5+galaxy3 metfrag 2.4.5 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 153 +metfrag-vis metfrag_vis [Metabolomics][LC-MS][MS/MS] This tool summarises the results generated by MetFrag To update https://github.com/computational-metabolomics/metfrag-galaxy Metabolomics computational-metabolomics https://github.com/computational-metabolomics/metfrag-galaxy https://github.com/computational-metabolomics/metfrag-galaxy/tree/master/tools/metfrag-vis 2.4.5+galaxy0 metfrag 2.4.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 12 +miranda miranda Finds potential target sites for miRNAs in genomic sequences To update http://www.microrna.org/ RNA miranda earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/miranda https://github.com/TGAC/earlham-galaxytools/tree/master/tools/miranda 3.3a+galaxy1 miranda 3.3a 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 6076 +miranda2asko miranda2asko Converts miRanda output into AskOmics format To update Convert Formats miranda2asko genouest https://github.com/genouest/galaxy-tools/tree/master/tools/miranda2asko https://github.com/genouest/galaxy-tools/tree/master/tools/miranda2asko 0.2 perl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mixmodel4repeated_measures mixmodel4repeated_measures [Metabolomics][W4M][Statistics] Mixed models - Analysis of variance for repeated measures using mixed model To update http://workflow4metabolomics.org Metabolomics mixmodel4repeated_measures workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/mixmodel4repeated_measures 3.1.0 r-lme4 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mob_suite mob_recon, mob_typer MOB-suite is a set of software tools for clustering, reconstruction and typing of plasmids from draft assemblies To update https://github.com/phac-nml/mob-suite Sequence Analysis mob_suite nml https://github.com/phac-nml/mob-suite https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob_suite 3.0.3 mob_suite 3.1.9 0 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 322 89021 +morphological_operations morphological_operations Apply morphological operations to images scipy To update https://github.com/bmcv Imaging morphological_operations imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations 1.12.0 scipy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mrbayes mrbayes A program for the Bayesian estimation of phylogeny. To update Sequence Analysis mrbayes nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/mrbayes 1.0.2 mrbayes 3.2.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ms2snoop ms2snoop [W4M][Utils] Extraction et nettoyage des spectre MS1/2 post-traitement MSPurity. To update http://workflow4metabolomics.org Metabolomics ms2snoop workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/ms2snoop 2.2.1 r-base 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +msPurity mspurity_averagefragspectra, mspurity_combineannotations, mspurity_createdatabase, mspurity_createmsp, mspurity_dimspredictpuritysingle, mspurity_filterfragspectra, mspurity_flagremove, mspurity_frag4feature, mspurity_puritya, mspurity_purityx, mspurity_spectralmatching [Metabolomics][LC-MS][DIMS][MS/MS] msPurity - R package for precursor ion purity assessments, data processing and spectral matching for LC-MS(/MS) and DI-MS(/MS) data Up-to-date https://github.com/computational-metabolomics/mspurity-galaxy Metabolomics computational-metabolomics https://github.com/computational-metabolomics/mspurity-galaxy https://github.com/computational-metabolomics/mspurity-galaxy/tree/master/tools/msPurity 1.28.0 bioconductor-mspurity 1.28.0 0 0 10 11 0 0 10 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 40 709 +msp_split msp_split [Metabolomics][LC-MS][DIMS][MS/MS] msPurity - R package for precursor ion purity assessments, data processing and spectral matching for LC-MS(/MS) and DI-MS(/MS) data To update https://github.com/computational-metabolomics/mspurity-galaxy Metabolomics tomnl https://github.com/computational-metabolomics/mspurity-galaxy https://github.com/computational-metabolomics/mspurity-galaxy/tree/master/tools/utils/msp_split 0.0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mykrobe_parser mykrobe_parseR RScript to parse the results of mykrobe predictor. To update https://github.com/phac-nml/mykrobe-parser Sequence Analysis mykrobe_parser nml https://github.com/phac-nml/mykrobe-parser https://github.com/phac-nml/galaxy_tools/tree/master/tools/mykrobe_parser 0.1.4.1 r-base 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ncbi_egapx ncbi_egapx Eukaryotic Genome Annotation Pipeline - External (EGAPx) To update https://github.com/ncbi/egapx Genome annotation ncbi_egapx richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx 0.2-alpha 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ncbi_fcs_adaptor ncbi_fcs_adaptor FCS-adaptor detects adaptor and vector contamination in genome sequences. To update https://github.com/ncbi/fcs Sequence Analysis ncbi_fcs_adaptor richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_fcs_adaptor https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_fcs_adaptor 0.5.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +nmr_annotation NmrAnnotation [Metabolomics][W4M][NMR] NMR Annotation - Annotation of complex mixture NMR spectra and metabolite proportion estimation To update http://workflow4metabolomics.org Metabolomics nmr_annotation marie-tremblay-metatoul https://github.com/workflow4metabolomics/nmr_annotation https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_annotation 3.0.0 r-batch 1.1_4 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 47 +nmr_annotation2d 2DNmrAnnotation [Metabolomics][W4M][NMR] NMR Annotation2D - Automatic annotation of bi-dimensional NMR spectra To update http://workflow4metabolomics.org Metabolomics 2dnmrannotation marie-tremblay-metatoul https://github.com/workflow4metabolomics/tools-metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_annotation2d 2.0.0 r-batch 1.1_4 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +nmr_preprocessing NMR_Preprocessing, NMR_Read [Metabolomics][W4M][NMR] NMR Preprocessing - Preprocessing of 1D NMR spectra from FID to baseline correction To update http://workflow4metabolomics.org Metabolomics nmr_preprocessing marie-tremblay-metatoul https://github.com/workflow4metabolomics/nmr_preprocessing https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/nmr_preprocessing r-batch 1.1_4 0 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 4 140 +normalization normalization [Metabolomics][W4M][ALL] Normalization (operation applied on each individual spectrum) of preprocessed data To update http://workflow4metabolomics.org Metabolomics normalization marie-tremblay-metatoul https://github.com/workflow4metabolomics/normalization https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/normalization 1.0.7 r-batch 1.1_4 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 133 +openlabcds2csv openlabcds2csv "Creates a summary of several ""Internal Standard Report"" OpenLabCDS results." To update Metabolomics openlabcds2csv genouest https://github.com/genouest/galaxy-tools/tree/master/tools/openlabcds2csv 0.1.0 openjdk 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +orientationpy orientationpy Compute image orientation orientationj Up-to-date https://github.com/bmcv Imaging orientationpy imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy 0.2.0.4 orientationpy 0.2.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +overlay_images ip_overlay_images Overlay two images galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging overlay_images imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images 0.0.4 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 60 +pangolin pangolin Phylogenetic Assignment of Named Global Outbreak LINeages To update https://github.com/hCoV-2019/pangolin Sequence Analysis pangolin nml https://github.com/hCoV-2019/pangolin https://github.com/phac-nml/galaxy_tools/tree/master/tools/pangolin 1.1.14 pangolin 4.3 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 259 7276 +patrist patrist Extract Patristic Distance From a Tree To update https://gist.github.com/ArtPoon/7330231e74201ded54b87142a1d6cd02 Phylogenetics patrist nml https://github.com/phac-nml/patrist https://github.com/phac-nml/galaxy_tools/tree/master/tools/patrist 0.1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +peptimapper peptimapper_clustqualify, peptimapper_clust_to_gff, peptimapper_pep_match, peptimapper_pep_novo_tag Proteogenomics workflow for the expert annotation of eukaryotic genomes To update https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-019-5431-9 Proteomics genouest https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper 2.1 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +permutate_axis ip_permutate_axis Permutates axes galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging permutate_axis imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis 0.2-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 42 +physiofit physiofit PhysioFit is a scientific tool designed to quantify cell growth parameters and uptake & production fluxes Up-to-date physiofit.readthedocs.io Metabolomics physiofit workflow4metabolomics https://github.com/MetaSys-LISBP/PhysioFit https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/physiofit 3.4.0 physiofit 3.4.0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +physiofit_manager physiofit_data_manager Handling of physiofit input files Up-to-date physiofit.readthedocs.io Metabolomics physiofit_manager workflow4metabolomics https://github.com/MetaboHUB-MetaToul-FluxoMet/PhysioFit_Data_Manager https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/physiofit_manager 1.0.1 physiofit_data_manager 1.0.1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +plantseg plantseg Tool for cell instance aware segmentation in densely packed 3D volumetric images plantseg plantseg PlantSeg Accurate and Versatile 3D Segmentation of Plant Tissues at Cellular Resolution.PlantSeg is a tool for cell instance aware segmentation in densely packed 3D volumetric images. The pipeline uses a two stages segmentation strategy (Neural Network + Segmentation). The pipeline is tuned for plant cell tissue acquired with confocal and light sheet microscopy. Pre-trained models are provided. Network analysis, Quantification, Microscope image visualisation Plant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopy To update https://github.com/bmcv Imaging plantseg imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg 1.8.1 plant-seg Network analysis, Quantification, Microscope image visualisation Plant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +plasmid_profiler plasmid_profiler Explores plasmid content in WGS data To update plasmid_profiler nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmid_profiler 0.1.6 r 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +plasmid_profiler_suite Plasmid Profiler suite defining all dependencies for Plasmid Profiler To update Sequence Analysis suite_plasmid_profiler nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmid_profiler_suite 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +plasmidspades plasmidspades Genome assembler for assemblying plasmid To update Assembly plasmidspades nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades 1.1 spades 4.0.0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +plotheatmap plotheatmap This tool can be used to plot heatmap of gene expression data. The genes are chosen based on p-value, FDR, log FC and log CPM from edgeR output. To update Computational chemistry plotheatmap earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/plotheatmap https://github.com/TGAC/earlham-galaxytools/tree/master/tools/plotheatmap 1.0 bioconductor-preprocesscore 1.64.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +pneumocat pneumocat Pneumococcal Capsular Typing of illumina fastq reads Up-to-date https://github.com/phe-bioinformatics/PneumoCaT Variant Analysis pneumocat nml https://github.com/phe-bioinformatics/PneumoCaT https://github.com/phac-nml/galaxy_tools/tree/master/tools/pneumocat 1.2.1 pneumocat 1.2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +points2binaryimage ip_points_to_binaryimage Points to Binary Image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging points2binaryimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage 0.2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 41 +points2labelimage ip_points_to_label Points to label image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging points2labelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage 0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 31 +points_association_nn ip_points_association_nn Association of points in consecutive frames galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging points_association_nn imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn 0.0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 29 +projective_transformation ip_projective_transformation Projective transformation galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging projective_transformation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation 0.1.2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 85 +projective_transformation_points ip_projective_transformation_points Projective transformation of ROIs defined by pixel (point) coordinates galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging projective_transformation_points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points 0.1.1 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 21343 +promer promer4_substitutions Aligns two sets of contigs and reports amino acid substitutions between them To update https://github.com/phac-nml/promer Assembly promer nml https://github.com/phac-nml/promer https://github.com/phac-nml/galaxy_tools/tree/master/tools/promer 1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pseudogenome pseudogenome Create a pseudogenome from a multiple fasta file either with a JCVI linker or custom length and characters. To update https://github.com/phac-nml/galaxy_tools Sequence Analysis pseudogenome nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/pseudogenome 1.0.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +quasitools aacoverage, aavariants, callcodonvar, callntvar, complexity_bam, complexity_fasta, consensus, distance, dnds, drmutations, hydra, quality A collection of tools for analysing Viral Quasispecies Up-to-date https://github.com/phac-nml/quasitools Sequence Analysis quasitools nml https://github.com/phac-nml/quasitools https://github.com/phac-nml/galaxy_tools/tree/master/tools/quasitools 0.7.0 quasitools 0.7.0 0 12 0 12 0 12 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rdock rdock Docking ligands to proteins and nucleic acids To update http://rdock.sourceforge.net/ Computational chemistry rdock earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rdock/ https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rdock 1.0 rDock 2013.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +refseq_masher refseq_masher_contains, refseq_masher_matches Find what genomes match or are contained within your sequence data using Mash_ and a Mash sketch database. Up-to-date https://github.com/phac-nml/refseq_masher Sequence Analysis refseq_masher nml https://github.com/phac-nml/refseq_masher https://github.com/phac-nml/galaxy_tools/tree/master/tools/refseq_masher 0.1.2 refseq_masher 0.1.2 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +repeat_channels repeat_channels Convert single-channel to multi-channel image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging repeat_channels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels 1.26.4 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +repeatexplorer2 repeatexplorer_clustering Tool for annotation of repeats from unassembled shotgun reads. To update https://github.com/repeatexplorer/repex_tarean Genome annotation repeatexplorer2 gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 2.3.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 +replace_chromosome_names replace_chromosome_names Replace chromosome names To update Text Manipulation replace_chromosome_names earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/replace_chromosome_names/ https://github.com/TGAC/earlham-galaxytools/tree/master/tools/replace_chromosome_names 0.1 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 537 +rfove rfove Perform segmentation region-based fitting of overlapping ellipses rfove rfove RFOVE RFOVE (Region-based Fitting of Overlapping Ellipses and its Application to Cells Segmentation) is a MATLAB script for performing image segmentation on cells. Image analysis Cell biology, Biomedical science, Imaging To update https://sites.google.com/site/costaspanagiotakis/research/cs Imaging rfove imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove 2023.11.12 Image analysis Cell biology, Biomedical science, Imaging 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 +rsat_filter_snps rsat_filter_snps Filter SNPs in RSAT Matrix Scan output To update https://github.com/TGAC/earlham-galaxytools/ ChIP-seq, Systems Biology rsat_filter_snps earlham https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rsat_filter_snps https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rsat_filter_snps 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +scale_image ip_scale_image Scale image scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging scale_image imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image 0.18.3 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 512 +segalign segalign A Scalable GPU System for Pairwise Whole Genome Alignments based on LASTZ's seed-filter-extend paradigm. Up-to-date https://github.com/gsneha26/SegAlign Next Gen Mappers segalign richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/segalign https://github.com/richard-burhans/galaxytools/tree/main/tools/segalign 0.1.2.7 segalign-galaxy 0.1.2.7 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +segmetrics ip_segmetrics Image segmentation and object detection performance measures segmetrics segmetrics segmetrics SegMetrics Image segmentation and object detection performance measures Image analysis To update https://github.com/bmcv Imaging segmetrics imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics 1.4 segmetrics 1.5 Image analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 3 +seqtk_nml seqtk_nml_sample Tool to downsample fastq reads To update https://github.com/lh3/seqtk Sequence Analysis seqtk_nml nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/galaxy_tools/tree/master/tools/seqtk_nml 1.0.1 seqtk 1.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +sistr_cmd sistr_cmd SISTR in silico serotyping tool To update https://github.com/phac-nml/sistr_cmd Sequence Analysis sistr_cmd nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/sistr_cmd 1.1.1 sistr_cmd 1.1.2 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 133 2489 +skyline2isocor skyline2isocor Converting skyline output to IsoCor input Up-to-date https://github.com/MetaboHUB-MetaToul-FluxoMet/Skyline2IsoCor Metabolomics skyline2isocor workflow4metabolomics https://github.com/MetaboHUB-MetaToul-FluxoMet/tools_w4m https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/skyline2isocor 1.0.0 skyline2isocor 1.0.0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +slice_image ip_slice_image Slice image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging slice_image imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image 0.3-4 scikit-image Image analysis Imaging, Bioinformatics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 102 +smalt smalt SMALT aligns DNA sequencing reads with a reference genome. Up-to-date http://www.sanger.ac.uk/science/tools/smalt-0 Sequence Analysis smalt nml https://sourceforge.net/projects/smalt/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/smalt 0.7.6 smalt 0.7.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +smart_domains smart_domains SMART domains To update http://smart.embl.de/ Sequence Analysis smart_domains earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domains https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domains 0.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +smina smina smina is a fork of Autodock Vina (http://vina.scripps.edu/) that focuses on improving scoring and minimization To update https://sourceforge.net/projects/smina/ Computational chemistry smina earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smina/ https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smina 1.0 smina 2017.11.9 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 493 +spades_header_fixer spades_header_fixer Fixes Spades Fasta ids To update https://github.com/phac-nml/galaxy_tools Fasta Manipulation spades_fasta_header_fixer nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/spades_header_fixer 1.1.2+galaxy1 sed 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +spatyper spatyper Determines SPA type based on repeats in a submitted staphylococcal protein A fasta file. Up-to-date https://github.com/HCGB-IGTP/spaTyper Sequence Analysis spatyper nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/spatyper https://github.com/phac-nml/galaxy_tools/tree/master/tools/spatyper 0.3.3 spatyper 0.3.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +split_labelmap ip_split_labelmap Split Labelmaps galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging split_labelmap imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmaps/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmap 0.2-3 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 42 +spolpred spolpred A program for predicting the spoligotype from raw sequence reads To update Sequence Analysis spolpred nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/spolpred 1.0.1 spolpred 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +spot_detection_2d ip_spot_detection_2d Spot detection in 2D image sequence galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging spot_detection_2d imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d 0.0.3-2 imageio Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 16 +srst2 srst2 Short Read Sequence Typing for Bacterial Pathogens To update Sequence Analysis srst2 nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/srst2 0.3.7 srst2 0.2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 205 +staramr staramr_search Scan genome contigs against the ResFinder, PlasmidFinder, and PointFinder antimicrobial resistance databases. Up-to-date https://github.com/phac-nml/staramr Sequence Analysis staramr nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr https://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr 0.10.0 staramr 0.10.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 889 12673 +stringmlst stringmlst Rapid and accurate identification of the sequence type (ST) To update Sequence Analysis stringmlst nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/stringmlst 1.1.0 stringMLST 0.6.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +suite_qiime2__alignment qiime2__alignment__mafft, qiime2__alignment__mafft_add, qiime2__alignment__mask To update https://github.com/qiime2/q2-alignment Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 6 13 +suite_qiime2__composition qiime2__composition__add_pseudocount, qiime2__composition__ancom, qiime2__composition__ancombc, qiime2__composition__da_barplot, qiime2__composition__tabulate To update https://github.com/qiime2/q2-composition Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition 2024.5.0+q2galaxy.2024.5.0 4 4 4 2 4 4 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 2 5 +suite_qiime2__cutadapt qiime2__cutadapt__demux_paired, qiime2__cutadapt__demux_single, qiime2__cutadapt__trim_paired, qiime2__cutadapt__trim_single To update https://github.com/qiime2/q2-cutadapt Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 5 67 +suite_qiime2__dada2 qiime2__dada2__denoise_ccs, qiime2__dada2__denoise_paired, qiime2__dada2__denoise_pyro, qiime2__dada2__denoise_single To update http://benjjneb.github.io/dada2/ Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 31 202 +suite_qiime2__deblur qiime2__deblur__denoise_16S, qiime2__deblur__denoise_other, qiime2__deblur__visualize_stats To update https://github.com/biocore/deblur Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 9 73 +suite_qiime2__demux qiime2__demux__emp_paired, qiime2__demux__emp_single, qiime2__demux__filter_samples, qiime2__demux__partition_samples_paired, qiime2__demux__partition_samples_single, qiime2__demux__subsample_paired, qiime2__demux__subsample_single, qiime2__demux__summarize, qiime2__demux__tabulate_read_counts To update https://github.com/qiime2/q2-demux Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux 2024.5.0+q2galaxy.2024.5.0 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 26 114 +suite_qiime2__diversity qiime2__diversity__adonis, qiime2__diversity__alpha, qiime2__diversity__alpha_correlation, qiime2__diversity__alpha_group_significance, qiime2__diversity__alpha_phylogenetic, qiime2__diversity__alpha_rarefaction, qiime2__diversity__beta, qiime2__diversity__beta_correlation, qiime2__diversity__beta_group_significance, qiime2__diversity__beta_phylogenetic, qiime2__diversity__beta_rarefaction, qiime2__diversity__bioenv, qiime2__diversity__core_metrics, qiime2__diversity__core_metrics_phylogenetic, qiime2__diversity__filter_alpha_diversity, qiime2__diversity__filter_distance_matrix, qiime2__diversity__mantel, qiime2__diversity__partial_procrustes, qiime2__diversity__pcoa, qiime2__diversity__pcoa_biplot, qiime2__diversity__procrustes_analysis, qiime2__diversity__tsne, qiime2__diversity__umap To update https://github.com/qiime2/q2-diversity Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity 2024.5.0+q2galaxy.2024.5.0 21 21 21 21 21 21 21 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 43 168 +suite_qiime2__diversity_lib qiime2__diversity_lib__alpha_passthrough, qiime2__diversity_lib__beta_passthrough, qiime2__diversity_lib__beta_phylogenetic_meta_passthrough, qiime2__diversity_lib__beta_phylogenetic_passthrough, qiime2__diversity_lib__bray_curtis, qiime2__diversity_lib__faith_pd, qiime2__diversity_lib__jaccard, qiime2__diversity_lib__observed_features, qiime2__diversity_lib__pielou_evenness, qiime2__diversity_lib__shannon_entropy, qiime2__diversity_lib__unweighted_unifrac, qiime2__diversity_lib__weighted_unifrac To update https://github.com/qiime2/q2-diversity-lib Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib 2024.5.0+q2galaxy.2024.5.0 12 12 12 12 12 12 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 4 4 +suite_qiime2__emperor qiime2__emperor__biplot, qiime2__emperor__plot, qiime2__emperor__procrustes_plot To update http://emperor.microbio.me Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 2 6 +suite_qiime2__feature_classifier qiime2__feature_classifier__blast, qiime2__feature_classifier__classify_consensus_blast, qiime2__feature_classifier__classify_consensus_vsearch, qiime2__feature_classifier__classify_hybrid_vsearch_sklearn, qiime2__feature_classifier__classify_sklearn, qiime2__feature_classifier__extract_reads, qiime2__feature_classifier__find_consensus_annotation, qiime2__feature_classifier__fit_classifier_naive_bayes, qiime2__feature_classifier__fit_classifier_sklearn, qiime2__feature_classifier__makeblastdb, qiime2__feature_classifier__vsearch_global To update https://github.com/qiime2/q2-feature-classifier Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier 2024.5.0+q2galaxy.2024.5.0 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 48 263 +suite_qiime2__feature_table qiime2__feature_table__core_features, qiime2__feature_table__filter_features, qiime2__feature_table__filter_features_conditionally, qiime2__feature_table__filter_samples, qiime2__feature_table__filter_seqs, qiime2__feature_table__group, qiime2__feature_table__heatmap, qiime2__feature_table__merge, qiime2__feature_table__merge_seqs, qiime2__feature_table__merge_taxa, qiime2__feature_table__presence_absence, qiime2__feature_table__rarefy, qiime2__feature_table__relative_frequency, qiime2__feature_table__rename_ids, qiime2__feature_table__split, qiime2__feature_table__subsample_ids, qiime2__feature_table__summarize, qiime2__feature_table__summarize_plus, qiime2__feature_table__tabulate_feature_frequencies, qiime2__feature_table__tabulate_sample_frequencies, qiime2__feature_table__tabulate_seqs, qiime2__feature_table__transpose To update https://github.com/qiime2/q2-feature-table Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table 2024.5.0+q2galaxy.2024.5.0 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 59 213 +suite_qiime2__fragment_insertion qiime2__fragment_insertion__classify_otus_experimental, qiime2__fragment_insertion__filter_features, qiime2__fragment_insertion__sepp To update https://github.com/qiime2/q2-fragment-insertion Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 6 20 +suite_qiime2__longitudinal qiime2__longitudinal__anova, qiime2__longitudinal__feature_volatility, qiime2__longitudinal__first_differences, qiime2__longitudinal__first_distances, qiime2__longitudinal__linear_mixed_effects, qiime2__longitudinal__maturity_index, qiime2__longitudinal__nmit, qiime2__longitudinal__pairwise_differences, qiime2__longitudinal__pairwise_distances, qiime2__longitudinal__plot_feature_volatility, qiime2__longitudinal__volatility To update https://github.com/qiime2/q2-longitudinal Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal 2024.5.0+q2galaxy.2024.5.0 11 11 11 11 11 11 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 6 14 +suite_qiime2__metadata qiime2__metadata__distance_matrix, qiime2__metadata__merge, qiime2__metadata__shuffle_groups, qiime2__metadata__tabulate To update https://github.com/qiime2/q2-metadata Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 40 232 +suite_qiime2__phylogeny qiime2__phylogeny__align_to_tree_mafft_fasttree, qiime2__phylogeny__align_to_tree_mafft_iqtree, qiime2__phylogeny__align_to_tree_mafft_raxml, qiime2__phylogeny__fasttree, qiime2__phylogeny__filter_table, qiime2__phylogeny__filter_tree, qiime2__phylogeny__iqtree, qiime2__phylogeny__iqtree_ultrafast_bootstrap, qiime2__phylogeny__midpoint_root, qiime2__phylogeny__raxml, qiime2__phylogeny__raxml_rapid_bootstrap, qiime2__phylogeny__robinson_foulds To update https://github.com/qiime2/q2-phylogeny Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny 2024.5.0+q2galaxy.2024.5.0 12 12 12 12 12 12 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 12 37 +suite_qiime2__quality_control qiime2__quality_control__bowtie2_build, qiime2__quality_control__decontam_identify, qiime2__quality_control__decontam_identify_batches, qiime2__quality_control__decontam_remove, qiime2__quality_control__decontam_score_viz, qiime2__quality_control__evaluate_composition, qiime2__quality_control__evaluate_seqs, qiime2__quality_control__evaluate_taxonomy, qiime2__quality_control__exclude_seqs, qiime2__quality_control__filter_reads To update https://github.com/qiime2/q2-quality-control Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control 2024.5.0+q2galaxy.2024.5.0 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 +suite_qiime2__quality_filter qiime2__quality_filter__q_score To update https://github.com/qiime2/q2-quality-filter Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter 2024.5.0+q2galaxy.2024.5.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 13 +suite_qiime2__rescript qiime2__rescript__cull_seqs, qiime2__rescript__degap_seqs, qiime2__rescript__dereplicate, qiime2__rescript__edit_taxonomy, qiime2__rescript__evaluate_classifications, qiime2__rescript__evaluate_cross_validate, qiime2__rescript__evaluate_fit_classifier, qiime2__rescript__evaluate_seqs, qiime2__rescript__evaluate_taxonomy, qiime2__rescript__extract_seq_segments, qiime2__rescript__filter_seqs_length, qiime2__rescript__filter_seqs_length_by_taxon, qiime2__rescript__filter_taxa, qiime2__rescript__get_gtdb_data, qiime2__rescript__get_ncbi_data, qiime2__rescript__get_ncbi_data_protein, qiime2__rescript__get_ncbi_genomes, qiime2__rescript__get_silva_data, qiime2__rescript__get_unite_data, qiime2__rescript__merge_taxa, qiime2__rescript__orient_seqs, qiime2__rescript__parse_silva_taxonomy, qiime2__rescript__reverse_transcribe, qiime2__rescript__subsample_fasta, qiime2__rescript__trim_alignment To update https://github.com/nbokulich/RESCRIPt Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript 2024.5.0+q2galaxy.2024.5.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +suite_qiime2__sample_classifier qiime2__sample_classifier__classify_samples, qiime2__sample_classifier__classify_samples_from_dist, qiime2__sample_classifier__classify_samples_ncv, qiime2__sample_classifier__confusion_matrix, qiime2__sample_classifier__fit_classifier, qiime2__sample_classifier__fit_regressor, qiime2__sample_classifier__heatmap, qiime2__sample_classifier__metatable, qiime2__sample_classifier__predict_classification, qiime2__sample_classifier__predict_regression, qiime2__sample_classifier__regress_samples, qiime2__sample_classifier__regress_samples_ncv, qiime2__sample_classifier__scatterplot, qiime2__sample_classifier__split_table, qiime2__sample_classifier__summarize To update https://github.com/qiime2/q2-sample-classifier Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier 2024.5.0+q2galaxy.2024.5.0 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 1 1 +suite_qiime2__taxa qiime2__taxa__barplot, qiime2__taxa__collapse, qiime2__taxa__filter_seqs, qiime2__taxa__filter_table To update https://github.com/qiime2/q2-taxa Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 22 172 +suite_qiime2__vsearch qiime2__vsearch__cluster_features_closed_reference, qiime2__vsearch__cluster_features_de_novo, qiime2__vsearch__cluster_features_open_reference, qiime2__vsearch__dereplicate_sequences, qiime2__vsearch__fastq_stats, qiime2__vsearch__merge_pairs, qiime2__vsearch__uchime_denovo, qiime2__vsearch__uchime_ref To update https://github.com/qiime2/q2-vsearch Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch 2024.5.0+q2galaxy.2024.5.0 8 8 8 7 8 8 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 8 16 +suite_qiime2_core To update Statistics, Metagenomics, Sequence Analysis q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tool_collections/suite_qiime2_core 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +suite_qiime2_core__tools qiime2_core__tools__export, qiime2_core__tools__import, qiime2_core__tools__import_fastq To update https://qiime2.org Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools 2024.5.0+dist.he540b0b0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 124 7087 +superdsm ip_superdsm Globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images superdsm superdsm superdsm SuperDSM SuperDSM is a globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images and beyond. Image analysis To update https://github.com/bmcv Imaging superdsm imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm 0.2.0 superdsm 0.3.0 Image analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 16 +t_coffee t_coffee T-Coffee To update http://www.tcoffee.org/ Sequence Analysis t_coffee earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee https://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee 13.45.0.4846264 t-coffee 13.46.0.919e8c6b 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 70 8690 +tree_relabeler tree_relabel Relabels the tips of a newick formatted tree. To update Text Manipulation tree_relabeler nml https://github.com/phac-nml/galaxy_tools/blob/master/tools/tree_relabeler https://github.com/phac-nml/galaxy_tools/tree/master/tools/tree_relabeler 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +tripal analysis_add_analysis, analysis_get_analyses, analysis_load_blast, analysis_load_fasta, analysis_load_gff3, analysis_load_go, analysis_load_interpro, analysis_sync, db_index, db_populate_mviews, entity_publish, expression_add_biomaterial, expression_add_expression, expression_delete_biomaterials, expression_get_biomaterials, expression_sync_biomaterials, feature_delete_orphans, feature_sync, organism_add_organism, organism_get_organisms, organism_sync, phylogeny_sync Galaxy tools allowing to load data into a remote Tripal server.Tripal is a toolkit for construction of online biological (genetics, genomics, breeding, etc), community database,and is a member of the GMOD family of tools. Tripal provides by default integration with the GMOD Chado database schema and Drupal, a popular Content Management Systems (CMS).https://github.com/galaxy-genome-annotation/python-tripal To update https://github.com/galaxy-genome-annotation/python-tripal Web Services gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal python-tripal 3.2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +unzip unzip Unzip file To update https://github.com/bmcv Convert Formats unzip imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/unzip/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/unzip 6.0 unzip 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 508 5370 +visceral-evaluatesegmentation ip_visceral_evaluatesegmentation Visceral Project - Evaluate Segmentation Tool evaluatesegmentation-tool To update https://github.com/bmcv Imaging visceral_evaluatesegmentation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation 0.5-2 visceral-evaluatesegmentation 2015.07.03 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 25 +voronoi_tessellation voronoi_tessellation Compute Voronoi tesselation scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging voronoi_tesselation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tesselation https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tessellation 0.22.0 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +w4mclassfilter w4mclassfilter Filter W4M data by values or metadata To update https://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper Metabolomics w4mclassfilter eschen42 https://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper/tree/master https://github.com/HegemanLab/w4mclassfilter_galaxy_wrapper/tree/master/tools/w4mclassfilter 0.98.19 r-base 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 2834 +w4mconcatenate W4Mconcatenate [W4M][Utils] concatenate two Metadata tables To update http://workflow4metabolomics.org Metabolomics w4mconcatenate workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/w4mconcatenate 1.0.0+galaxy0 r-base 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +w4mcorcov w4mcorcov OPLS-DA Contrasts of Univariate Results To update https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper Metabolomics w4mcorcov eschen42 https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper/tree/master https://github.com/HegemanLab/w4mcorcov_galaxy_wrapper/tree/master/tools/w4mcorcov 0.98.18 r-base 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 368 +w4mjoinpn w4mjoinpn Join positive- and negative-mode W4M datasets To update https://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper Metabolomics w4mjoinpn eschen42 https://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper/tree/master https://github.com/HegemanLab/w4mjoinpn_galaxy_wrapper/tree/master/tools/w4mjoinpn 0.98.2 coreutils 8.25 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 171 +wade wade identify regions of interest To update https://github.com/phac-nml/wade Sequence Analysis wade nml https://github.com/phac-nml/wade https://github.com/phac-nml/galaxy_tools/tree/master/tools/wade 0.2.5+galaxy1 wade 0.2.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +wsi_extract_top_view ip_wsi_extract_top_view WSI Extract Top View To update https://github.com/bmcv Imaging wsi_extract_top_view imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view 0.2-2 scikit-image 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 38 +xcms abims_xcms_fillPeaks, abims_xcms_group, abims_xcms_refine, abims_xcms_retcor, abims_xcms_summary, abims_xcms_xcmsSet, msnbase_readmsdata, xcms_export_samplemetadata, xcms_merge, xcms_plot_chromatogram, xcms_plot_eic, xcms_plot_raw XCMS XCMS xcms Framework for processing and visualization of chromatographically separated and single-spectra mass spectral data. The packages enables imports from AIA/ANDI NetCDF, mzXML, mzData and mzML files and preprocesses data for high-throughput, untargeted analyte profiling. Mass spectrum visualisation, Label-free quantification, Validation, Filtering, Chromatographic alignment, Peak detection, Chromatogram visualisation Biological imaging, Data visualisation, Metabolomics Up-to-date https://github.com/sneumann/xcms Metabolomics xcms workflow4metabolomics https://github.com/workflow4metabolomics/tools-metabolomics/ https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/xcms 4.0.0 bioconductor-xcms 4.0.0 Mass spectrum visualisation, Label-free quantification, Validation, Filtering, Chromatographic alignment, Peak detection, Chromatogram visualisation Data visualisation, Metabolomics 9 11 10 10 9 11 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 9 0 356 29809 +10x_bamtofastq 10x_bamtofastq Converts 10x Genomics BAM to FASTQ To update https://github.com/10XGenomics/bamtofastq Convert Formats 10x_bamtofastq bgruening https://github.com/bgruening/galaxytools/tree/master/tools/10x_bamtofastq https://github.com/bgruening/galaxytools/tree/master/tools/10x_bamtofastq 1.4.1 10x_bamtofastq 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 46 228 +AggregateAlignments graphclust_aggregate_alignments Aggregate and filter alignment metrics of individual clusters, like the output of graphclust_align_cluster. Up-to-date RNA graphclust_aggregate_alignments rnateam https://github.com/bgruening/galaxytools/tools/GraphClust/AggregateAlignments https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/AggregateAlignments 0.6.0 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 116 +AlignCluster graphclust_align_cluster Align predicted clusters of glob_report_no_align step with locarna and conservation analysis and visualizations. To update RNA graphclust_align_cluster rnateam https://github.com/bgruening/galaxytools/tools/GraphClust/AlignCluster https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/AlignCluster 0.1 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 10 3060 +CMFinder cmFinder Determines consensus motives for sequences. To update RNA graphclust_cmfinder rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinder https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinder 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 14 45191 +CollectResults glob_report Post-processing. Redundant clusters are merged and instances that belong to multiple clusters are assigned unambiguously. For every pair of clusters, the relative overlap (i.e. the fraction of instances that occur in both clusters) is computed and clusters are merged if the overlap exceeds 50%. instances that occur in both clusters) is computed and clusters are merged if the overlap exceeds 50%. To update RNA graphclust_postprocessing rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResults https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResults 0.5 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 14 1961 +CollectResultsNoAlign graphclust_glob_report_no_align Redundant GraphClust clusters are merged and instances that belong to multiple clusters are assigned unambiguously. To update RNA graphclust_postprocessing_no_align rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultsNoAlign https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultsNoAlign 0.5 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 108 +GSPAN gspan Second step of GraphClust To update RNA graphclust_fasta_to_gspan rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPAN https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPAN 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 133 +LocARNAGraphClust locarna_best_subtree MLocARNA computes a multiple sequence-structure alignment of RNA sequences. To update RNA graphclust_mlocarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClust https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClust 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 45325 +NSPDK NSPDK_candidateClust, nspdk_sparse Produces an explicit sparse feature encoding and copmutes global feature index and returns top dense sets. To update RNA graphclust_nspdk rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/NSPDK https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/NSPDK 9.2.3.1 graphclust-wrappers 0.6.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 28 62388 +Plotting motifFinderPlot Plotting results for GraphClust To update RNA graphclust_motif_finder_plot rnateam https://github.com/eteriSokhoyan/galaxytools/tree/master/tools/GraphClust/Plotting https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Plotting 0.4 seaborn 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 68 +PrepareForMlocarna preMloc This tool prepares files for locarna step. To update RNA graphclust_prepocessing_for_mlocarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarna https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarna 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 1932 +Preprocessing preproc Preprocessing input for GraphClust To update RNA graphclust_preprocessing rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Preprocessing 0.5 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 1758 +Structure_GSPAN structure_to_gspan Convert RNA structure to GSPAN graphs To update RNA structure_to_gspan rnateam https://github.com/mmiladi/galaxytools/blob/graphclust-gspan/tools/GraphClust/Structure_GSPAN https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Structure_GSPAN 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 2925 +add_line_to_file add_line_to_file Adds a text line to the beginning or end of a file. To update Text Manipulation add_line_to_file bgruening https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/add_line_to_file https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/add_line_to_file 0.1.0 coreutils 8.25 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 193 14480 +add_value addValue Add a value as a new column. To update Text Manipulation add_value devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/add_value https://github.com/galaxyproject/tools-devteam/tree/main/tools/add_value 1.0.1 perl 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 1 591 367167 +agat agat GTF/GFF analysis toolkit agat agat AGAT Another Gff Analysis Toolkit (AGAT)Suite of tools to handle gene annotations in any GTF/GFF format. Data handling, Genome annotation Genomics Up-to-date https://github.com/NBISweden/AGAT Convert Formats, Statistics, Fasta Manipulation agat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/agat https://github.com/bgruening/galaxytools/tree/master/tools/agat 1.4.0 agat 1.4.0 Data handling, Genome annotation Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 42 481 +align_back_trans align_back_trans Thread nucleotides onto a protein alignment (back-translation) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans Fasta Manipulation, Sequence Analysis align_back_trans peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans 0.0.10 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 329 +annotation_profiler Annotation_Profiler_0 Profile Annotations for a set of genomic intervals To update Genomic Interval Operations annotation_profiler devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/annotation_profiler https://github.com/galaxyproject/tools-devteam/tree/main/tools/annotation_profiler 1.0.0 bx-python 0.12.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 2 +antarna antarna antaRNA uses ant colony optimization to solve the inverse folding problem in RNA research . To update RNA antarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/antarna/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/antarna 1.1 antarna 2.0.1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 52 +antismash antismash Antismash allows the genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters antismash antismash antiSMASH Rapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. It integrates and cross-links with a large number of in silico secondary metabolite analysis tools that have been published earlier. Sequence clustering, Gene prediction, Differential gene expression analysis Molecular interactions, pathways and networks, Gene and protein families To update https://antismash.secondarymetabolites.org Sequence Analysis antismash bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash https://github.com/bgruening/galaxytools/tree/master/tools/antismash 6.1.1 antismash 7.1.0 Sequence clustering, Gene prediction, Differential gene expression analysis Molecular interactions, pathways and networks, Gene and protein families 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 279 14596 +aresite2 AREsite2_REST AREsite2 REST Interface To update http://rna.tbi.univie.ac.at/AREsite RNA, Data Source, Sequence Analysis aresite2 rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite2 https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite2 0.1.2 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 65 +atactk_trim_adapters atactk_trim_adapters Trim adapters from paired-end HTS reads. To update https://github.com/ParkerLab/atactk/ Fastq Manipulation atactk_trim_adapters rnateam https://github.com/bgruening/galaxytools/blob/master/tools/trim_adapters https://github.com/bgruening/galaxytools/tree/master/tools/atactk_trim_adapters 0.1.6 atactk 0.1.9 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 26 257 +augustus augustus AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences. To update http://bioinf.uni-greifswald.de/augustus/ Sequence Analysis augustus bgruening https://github.com/bgruening/galaxytools/tree/master/tools/augustus https://github.com/bgruening/galaxytools/tree/master/tools/augustus 3.1.0 augustus 3.5.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 516 8864 +bamhash bamhash Hash BAM and FASTQ files to verify data integrity Up-to-date https://github.com/DecodeGenetics/BamHash Sequence Analysis bamhash bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bamhash https://github.com/bgruening/galaxytools/tree/master/tools/bamhash 1.1 bamhash 1.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 169 +barcode_collapse barcode_collapse Paired End randomer aware duplicate removal algorithm To update https://github.com/YeoLab/gscripts RNA, Sequence Analysis barcode_collapse rnateam https://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapse https://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapse 0.1.0 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +basecoverage gops_basecoverage_1 Base Coverage of all intervals To update https://github.com/galaxyproject/gops Genomic Interval Operations basecoverage devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/basecoverage https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/basecoverage 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 2 308 +best_regression_subsets BestSubsetsRegression1 Perform Best-subsets Regression To update Sequence Analysis, Variant Analysis best_regression_subsets devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/best_regression_subsets https://github.com/galaxyproject/tools-devteam/tree/main/tools/best_regression_subsets 1.0.0 numpy 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 3 +bia-ftplinks bia_download Tool to query ftp links for study from bioimage archive To update Imaging bia_download bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/bia-ftplinks 0.1.0 wget 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 +bigwig_to_bedgraph bigwig_to_bedgraph Convert from bigWig to bedGraph format To update Convert Formats bigwig_to_bedgraph bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bigwig_to_bedgraph https://github.com/bgruening/galaxytools/tree/master/tools/bigwig_to_bedgraph 0.1.0 ucsc_tools 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 5749 +bioimaging bioimage_inference Load model from BioImage.IO and make inferences pytorch pytorch pytorch PyTorch PyTorch is an optimized tensor library for deep learning using GPUs and CPUs. Machine learning, Computer science To update https://github.com/bgruening/galaxytools Imaging bioimage_inference bgruening https://github.com/bgruening/galaxytools/tree/recommendation_training/tools/bioimaging https://github.com/bgruening/galaxytools/tree/master/tools/bioimaging 2.3.1 python Machine learning 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +biomodelsML biomodels_biomd0000001066, biomodels_biomd0000001076 Wrappers for tools to bring BioModels AI models into Galaxy. To update https://www.ebi.ac.uk/biomodels/ Machine Learning biomodels bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML 1.1 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 +bionano bionano_scaffold Bionano Solve is a set of tools for analyzing Bionano data To update https://bionanogenomics.com/ Assembly bionano bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bionano https://github.com/bgruening/galaxytools/tree/master/tools/bionano 3.7.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 112 531 +bismark bismark_pretty_report, bismark_bowtie2, bismark_deduplicate, bismark_methylation_extractor A tool to map bisulfite converted sequence reads and determine cytosine methylation states To update https://www.bioinformatics.babraham.ac.uk/projects/bismark/ Sequence Analysis, Next Gen Mappers bismark bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bismark https://github.com/bgruening/galaxytools/tree/master/tools/bismark 0.22.1 bismark 0.24.2 0 4 4 4 0 4 4 4 0 4 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 4 0 332 12876 +blat_coverage_report generate_coverage_report Polymorphism of the Reads To update Next Gen Mappers, Sequence Analysis blat_coverage_report devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_coverage_report https://github.com/galaxyproject/tools-devteam/tree/main/tools/blat_coverage_report 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +blat_mapping blat2wig Coverage of the Reads in wiggle format To update Next Gen Mappers, Sequence Analysis blat_mapping devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_mapping https://github.com/galaxyproject/tools-devteam/tree/main/tools/blat_mapping 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +blobtoolkit blobtoolkit Identification and isolation non-target data in draft and publicly available genome assemblies. To update https://blobtoolkit.genomehubs.org/ Sequence Analysis, Assembly blobtoolkit bgruening https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit 4.0.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 685 +blockbuster blockbuster Blockbuster detects blocks of overlapping reads using a gaussian-distribution approach. To update http://hoffmann.bioinf.uni-leipzig.de/LIFE/blockbuster.html RNA, Sequence Analysis blockbuster rnateam https://github.com/bgruening/galaxytools/tree/master/tools/blockbuster https://github.com/bgruening/galaxytools/tree/master/tools/blockbuster 0.1.2 blockbuster 0.0.1.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 34 3009 +blockclust blockclust BlockClust detects transcripts with similar processing patterns. Up-to-date https://github.com/bgruening/galaxytools/tree/master/workflows/blockclust RNA blockclust rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/blockclust https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/blockclust 1.1.1 blockclust 1.1.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 15 1478 +bowtie_wrappers bowtie_wrapper Galaxy wrappers for the Bowtie short read mapping tools. To update http://bowtie-bio.sourceforge.net/ Next Gen Mappers bowtie_wrappers devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/bowtie_wrappers https://github.com/galaxyproject/tools-devteam/tree/main/tools/bowtie_wrappers 1.2.0 bowtie 1.3.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 506 22988 +canonical_correlation_analysis cca1 Canonical Correlation Analysis To update Statistics canonical_correlation_analysis devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/canonical_correlation_analysis https://github.com/galaxyproject/tools-devteam/tree/main/tools/canonical_correlation_analysis 1.0.0 R 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 74 +canu canu Canu is a hierarchical assembly pipeline designed for high-noise single-molecule sequencing (such as the PacBio RS II/Sequel or Oxford Nanopore MinION). canu canu CANU De-novo assembly tool for long read chemistry like Nanopore data and PacBio data. De-novo assembly Genomics Up-to-date https://github.com/marbl/canu canu bgruening https://github.com/bgruening/galaxytools/tree/master/tools/canu https://github.com/bgruening/galaxytools/tree/master/tools/canu 2.2 canu 2.2 De-novo assembly Genomics 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 533 13021 +categorize_elements_satisfying_criteria categorize_elements_satisfying_criteria Categorize Elements satisfying criteria. To update Statistics categorize_elements_satisfying_criteria devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/categorize_elements_satisfying_criteria https://github.com/galaxyproject/tools-devteam/tree/main/tools/categorize_elements_satisfying_criteria 1.0.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 40 +ccat peakcalling_ccat Control-based ChIP-seq Analysis Tool To update ChIP-seq ccat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/ccat https://github.com/galaxyproject/tools-devteam/tree/main/tools/ccat 0.0.2 ccat 3.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 173 +cd_hit_dup cd_hit_dup simple tool for removing duplicates from sequencing reads To update Metagenomics, Sequence Analysis cd_hit_dup devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/cd_hit_dup https://github.com/galaxyproject/tools-devteam/tree/main/tools/cd_hit_dup 0.0.1 cd-hit-auxtools 4.8.1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cellpose cellpose Cellpose is an anatomical segmentation algorithm To update https://github.com/MouseLand/cellpose Imaging cellpose bgruening https://github.com/bgruening/galaxytools/tree/master/tools/cellpose https://github.com/bgruening/galaxytools/tree/master/tools/cellpose 3.0.10 cellpose 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cellprofiler cp_cellprofiler, cp_color_to_gray, cp_convert_objects_to_image, cp_display_data_on_image, cp_enhance_or_suppress_features, cp_export_to_spreadsheet, cp_gray_to_color, cp_identify_primary_objects, cp_image_math, cp_mask_image, cp_measure_granularity, cp_measure_image_area_occupied, cp_measure_image_intensity, cp_measure_image_quality, cp_measure_object_intensity, cp_measure_object_size_shape, cp_measure_texture, cp_overlay_outlines, cp_relate_objects, cp_save_images, cp_common, cp_tile, cp_track_objects cellProfiler wrapper CellProfiler CellProfiler cellprofiler CellProfiler Tool for quantifying data from biological images, particularly in high-throughput experiments. Quantification, Image analysis, Parsing Imaging, Microarray experiment, Genotype and phenotype To update Imaging cellprofiler bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler Quantification, Image analysis, Parsing Imaging, Microarray experiment, Genotype and phenotype 0 23 23 19 0 23 23 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 19 0 178 4614 +cellprofiler_v4 cp_cellprofiler4 cellProfiler4 wrapper To update https://github.com/CellProfiler/CellProfiler Imaging cellprofiler4 bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v4 4.2.7 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 43 +change_case ChangeCase Convert column case. To update Text Manipulation change_case devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/change_case https://github.com/galaxyproject/tools-devteam/tree/main/tools/change_case 1.0.1 perl 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 1 0 0 1 0 1 1 0 1 1 1 931 10965 +chatgpt chatgpt_openai_api Using the OpenAI GPT models to generate text based on user input. To update https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt Machine Learning chatgpt_openai_api bgruening https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt 2024 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +chipseeker chipseeker A tool for ChIP peak annotation and visualization To update https://bioconductor.org/packages/release/bioc/html/ChIPseeker.html ChIP-seq, Genome annotation chipseeker rnateam https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker 1.32.0 bioconductor-chipseeker 1.38.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 418 15690 +chromosome_diagram chromosome_diagram Chromosome Diagrams using Biopython To update Graphics, Sequence Analysis, Visualization chromosome_diagram peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/chromosome_diagram 0.0.3 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +circexplorer circexplorer A combined strategy to identify circular RNAs (circRNAs and ciRNAs) To update https://github.com/YangLab/CIRCexplorer Sequence Analysis, RNA circexplorer bgruening https://github.com/bgruening/galaxytools/tree/master/tools/circexplorer https://github.com/bgruening/galaxytools/tree/master/tools/circexplorer 1.1.9.0 circexplorer 1.1.10 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 251 +clc_assembly_cell clc_assembler, clc_mapper Galaxy wrapper for the CLC Assembly Cell suite from CLCBio To update https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell Assembly, Next Gen Mappers, SAM clc_assembly_cell peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell 0.0.7 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +clinod clinod NoD: a Nucleolar localization sequence detector for eukaryotic and viral proteins clinod clinod clinod The command line NoD predictor (clinod) can be run from the command line to predict Nucleolar localization sequences (NoLSs) that are short targeting sequences responsible for the localization of proteins to the nucleolus.The predictor accepts a list of FASTA formatted sequences as an input and outputs the NOLS predictions as a result.Please note that currently, JPred secondary structure predictions are not supported by clinod. However, we are working on it. Nucleic acid sequence analysis Sequence analysis To update http://www.compbio.dundee.ac.uk/www-nod/ Sequence Analysis clinod peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clinod https://github.com/peterjc/pico_galaxy/tree/master/tools/clinod 0.1.0 clinod 1.3 Nucleic acid sequence analysis Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cluster gops_cluster_1 Cluster the intervals of a dataset To update https://github.com/galaxyproject/gops Genomic Interval Operations cluster devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/cluster https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/cluster 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 801 +cmsearch_deoverlap cmsearch_deoverlap removes lower scoring overlaps from cmsearch results. cmsearch-deoverlap cmsearch-deoverlap cmsearch-deoverlap Removes lower scoring overlaps from cmsearch results. Comparison, Alignment Biology, Medicine To update https://github.com/EBI-Metagenomics/pipeline-v5/blob/master/tools/RNA_prediction/cmsearch-deoverlap/cmsearch-deoverlap.pl RNA cmsearch_deoverlap rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap 0.08+galaxy2 perl Comparison, Alignment Biology, Medicine 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 102 +cmv cmcv, cmv, hmmcv, hmmv cmv is a collection of tools for the visualisation of Hidden Markov Models and RNA-family models. Up-to-date https://github.com/eggzilla/cmv RNA cmv rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmv https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmv 1.0.8 cmv 1.0.8 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 1 108 +cofold cofold Cofold predicts RNA secondary structures that takes co-transcriptional folding into account. To update http://www.e-rna.org/cofold/ RNA cofold rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cofold https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cofold 2.0.4.0 cofold 2.0.4 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 342 +column_arrange_by_header bg_column_arrange_by_header Column arrange by header name To update Text Manipulation column_arrange_by_header bgruening https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/column_arrange_by_header https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/column_arrange_by_header 0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 179 3781 +combine_metaphlan_humann combine_metaphlan_humann Combine MetaPhlAn2 and HUMAnN2 outputs to relate genus/species abundances and gene families/pathways abundances combine_metaphlan_and_humann combine_metaphlan_and_humann Combine Metaphlan and HUMAnN This tool combine MetaPhlAn outputs and HUMANnN outputs Aggregation Metagenomics, Molecular interactions, pathways and networks To update Metagenomics combine_metaphlan2_humann2 bebatut https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan2_humann2 https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan_humann 0.3.0 python Aggregation Metagenomics, Molecular interactions, pathways and networks 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 147 +compalignp compalignp Compute fractional identity between trusted alignment and test alignment Up-to-date RNA, Sequence Analysis compalignp rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp 1.0 compalignp 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 220 +compare_humann2_output compare_humann2_output Compare outputs of HUMAnN2 for several samples and extract similar and specific information compare_humann2_outputs compare_humann2_outputs Compare HUMAnN2 outputs This tool compare HUMANnN2 outputs with gene families or pathways and their relative abundances between several samples Comparison Metagenomics, Gene and protein families To update Metagenomics compare_humann2_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output https://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output 0.2.0 Comparison Metagenomics, Gene and protein families 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 332 +complement gops_complement_1 Complement intervals of a dataset To update https://github.com/galaxyproject/gops Genomic Interval Operations complement devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/complement https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/complement 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 233 +compute_motif_frequencies_for_all_motifs compute_motif_frequencies_for_all_motifs Compute Motif Frequencies For All Motifs, motif by motif. To update Sequence Analysis, Statistics compute_motif_frequencies_for_all_motifs devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motif_frequencies_for_all_motifs https://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_motif_frequencies_for_all_motifs 1.0.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 94 +compute_motifs_frequency compute_motifs_frequency Compute Motif Frequencies in indel flanking regions. To update Sequence Analysis, Statistics compute_motifs_frequency devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motifs_frequency https://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_motifs_frequency 1.0.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 65 +compute_q_values compute_q_values Compute q-values based on multiple simultaneous tests p-values To update Statistics compute_q_values devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_q_values https://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_q_values 1.0.1 R 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 +concat gops_concat_1 Concatenate two bed files To update https://github.com/galaxyproject/gops Genomic Interval Operations concat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/concat https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/concat 1.0.1 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 309 564900 +condense_characters Condense characters1 Condense consecutive characters. To update Text Manipulation condense_characters devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/condense_characters https://github.com/galaxyproject/tools-devteam/tree/main/tools/condense_characters 1.0.0 1 1 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +convert_characters Convert characters1 Convert delimiters to tab. To update Text Manipulation convert_characters devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_characters https://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_characters 1.0.1 python 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 1 475 23829 +convert_solid_color2nuc color2nuc Convert Color Space to Nucleotides To update Fasta Manipulation convert_solid_color2nuc devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_solid_color2nuc https://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_solid_color2nuc 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +coprarna coprarna Target prediction for prokaryotic trans-acting small RNAs To update https://github.com/PatrickRWright/CopraRNA RNA, Sequence Analysis coprarna rnateam https://github.com/PatrickRWright/CopraRNA https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/coprarna 2.1.1 coprarna 2.1.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +correlation cor2 Correlation for numeric columns To update Statistics correlation devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/correlation https://github.com/galaxyproject/tools-devteam/tree/main/tools/correlation 1.0.0 rpy 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 47 837 +count_gff_features count_gff_features Count GFF Features To update Sequence Analysis count_gff_features devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/count_gff_features https://github.com/galaxyproject/tools-devteam/tree/main/tools/count_gff_features 0.2 galaxy-ops 1.1.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 49 271 +count_roi_variants count_roi_variants Count sequence variants in region of interest in BAM file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants Assembly, SAM count_roi_variants peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants 0.0.6 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +coverage gops_coverage_1 Coverage of a set of intervals on second set of intervals To update https://github.com/galaxyproject/gops Genomic Interval Operations coverage devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/coverage https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/coverage 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 17 1502 +coverage_stats coverage_stats BAM coverage statistics using samtools idxstats and depth To update https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats Assembly, SAM coverage_stats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats 0.1.0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cpat cpat Coding-potential assessment tool using an alignment-free logistic regression model. Up-to-date https://github.com/liguowang/cpat Transcriptomics cpat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/cpat https://github.com/bgruening/galaxytools/tree/master/tools/cpat 3.0.5 cpat 3.0.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 134 +crt crispr_recognition_tool CRISPR Recognition Tool To update Sequence Analysis crispr_recognition_tool bgruening https://github.com/bgruening/galaxytools/tree/master/tools/crt https://github.com/bgruening/galaxytools/tree/master/tools/crt 1.2.0 crisper_recognition_tool 1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 74 3389 +ctd_batch ctdBatch_1 CTD analysis of chemicals, diseases, or genes To update Sequence Analysis ctd_batch devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/ctd_batch https://github.com/galaxyproject/tools-devteam/tree/main/tools/ctd_batch 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 203 +cummerbund cummeRbund Wrapper for the Bioconductor cummeRbund library To update https://bioconductor.org/packages/release/bioc/html/cummeRbund.html RNA, Visualization cummerbund devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund https://github.com/galaxyproject/tools-devteam/tree/main/tools/cummerbund 2.16.0 fonts-conda-ecosystem 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 31 1782 +cummerbund_to_tabular cummerbund_to_cuffdiff Regenerate the tabular files generated by cuffdiff from a cummeRbund SQLite database. To update Convert Formats, Next Gen Mappers cummerbund_to_tabular devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund_to_tabular https://github.com/galaxyproject/tools-devteam/tree/main/tools/cummerbund_to_tabular 1.0.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 1204 +cut_columns Cut1 Select columns from a dataset. To update Text Manipulation cut_columns devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/cut_columns https://github.com/galaxyproject/tools-devteam/tree/main/tools/cut_columns 1.0.2 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 1 0 0 1 0 1 1 0 1 1 1 5064 1957541 +delete_overlapping_indels delete_overlapping_indels Delete Overlapping Indels from a chromosome indels file To update Sequence Analysis delete_overlapping_indels devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/delete_overlapping_indels https://github.com/galaxyproject/tools-devteam/tree/main/tools/delete_overlapping_indels 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 39 +dewseq dewseq DEWSeq is a sliding window based peak caller for eCLIP/iCLIP data To update https://github.com/EMBL-Hentze-group/DEWSeq_analysis_helpers Sequence Analysis, RNA, CLIP-seq dewseq rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dewseq https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dewseq 0.1.0+galaxy0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 11 72 +dgidb_annotator dgidb_annotate Annotates a tabular file with information from the Drug-Gene Interaction Database (http://dgidb.genome.wustl.edu/) To update Systems Biology, Variant Analysis dgidb_annotator devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/dgidb_annotator https://github.com/galaxyproject/tools-devteam/tree/main/tools/dgidb_annotator 0.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 65 +diff diff GNU diff tool that calculates the differences between two files. To update http://www.gnu.org/software/diffutils/ Text Manipulation diff bgruening https://github.com/bgruening/galaxytools/tree/master/tools/diff https://github.com/bgruening/galaxytools/tree/master/tools/diff 3.7 diffutils 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 235 +diffbind Diffbind provides functions for processing ChIP-Seq data. To update http://bioconductor.org/packages/release/bioc/html/DiffBind.html ChIP-seq diffbind bgruening https://github.com/bgruening/galaxytools/tree/master/tools/diffbind https://github.com/bgruening/galaxytools/tree/master/tools/diffbind 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +divide_pg_snp dividePgSnp Separate pgSnp alleles into columns To update Sequence Analysis divide_pg_snp devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/divide_pg_snp https://github.com/galaxyproject/tools-devteam/tree/main/tools/divide_pg_snp 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 32 +dorina dorina_search data source for RNA interactions in post-transcriptional regulation To update RNA, Data Source dorina rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1576 +dot2ct rnastructure_dot2ct Dot-Bracket to Connect Table (CT) To update Sequence Analysis, RNA dot2ct rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2ct https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2ct 5.7.a rnastructure 6.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dotknot dotknot DotKnot is a heuristic method for pseudoknot prediction in a given RNA sequence To update http://dotknot.csse.uwa.edu.au/ RNA, Proteomics dotknot bgruening https://github.com/bgruening/galaxytools/tree/master/tools/rna/dotknot https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dotknot 1.3.1 vienna_rna 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 83 +draw_stacked_barplots draw_stacked_barplots Draw Stacked Bar Plots for different categories and different criteria To update Graphics, Statistics draw_stacked_barplots devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/draw_stacked_barplots https://github.com/galaxyproject/tools-devteam/tree/main/tools/draw_stacked_barplots 1.0.0 R 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 173 +dwt_cor_ava_perclass compute_p-values_correlation_coefficients_feature_occurrences_between_two_datasets_using_discrete_wavelet_transfom Compute P-values and Correlation Coefficients for Feature Occurrences To update Statistics dwt_cor_ava_perclass devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_cor_ava_perclass https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_cor_ava_perclass 1.0.1 r-waveslim 1.7.5 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dwt_cor_avb_all compute_p-values_correlation_coefficients_featureA_featureB_occurrences_between_two_datasets_using_discrete_wavelet_transfom Compute P-values and Correlation Coefficients for Occurrences of Two Set of Features To update Statistics dwt_cor_avb_all devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_cor_avb_all https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_cor_avb_all 1.0.1 r-waveslim 1.7.5 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dwt_ivc_all compute_p-values_second_moments_feature_occurrences_between_two_datasets_using_discrete_wavelet_transfom Compute P-values and Second Moments for Feature Occurrences To update Statistics dwt_ivc_all devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_ivc_all https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_ivc_all 1.0.1 r-waveslim 1.7.5 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dwt_var_perclass compute_p-values_max_variances_feature_occurrences_in_one_dataset_using_discrete_wavelet_transfom Compute P-values and Max Variances for Feature Occurrences To update Statistics dwt_var_perclass devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_var_perclass https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_var_perclass 1.0.1 r-waveslim 1.7.5 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dwt_var_perfeature dwt_var1 Wavelet variance using Discrete Wavelet Transfoms To update Statistics dwt_var_perfeature devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/dwt_var_perfeature https://github.com/galaxyproject/tools-devteam/tree/main/tools/dwt_var_perfeature 1.0.2 r-bitops 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 36 +ear make_ear A tool to compile assembly reports and stastics from assembly pipeline To update https://github.com/ERGA-consortium/EARs/tree/main Sequence Analysis, Assembly erga_ear bgruening https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 24.08.26 reportlab 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +edta edta The EDTA package was designed to filter out false discoveries in raw TE candidates and generate a high-quality non-redundant TE library for whole-genome TE annotations. edta edta The Extensive de novo TE Annotator (EDTA) The EDTA package was designed to filter out false discoveries in raw TE candidates and generate a high-quality non-redundant TE library for whole-genome TE annotations. Selection of initial search programs were based on benckmarkings on the annotation performance using a manually curated TE library in the rice genome. De-novo assembly, Deisotoping, Genome annotation Workflows, Mobile genetic elements, Plant biology, Transcription factors and regulatory sites, Model organisms To update https://github.com/oushujun/EDTA Variant Analysis edta bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/edta https://github.com/bgruening/galaxytools/tree/master/tools/edta edta 2.2.0 De-novo assembly, Deisotoping, Genome annotation Workflows, Mobile genetic elements, Plant biology, Transcription factors and regulatory sites, Model organisms 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 58 484 +effectiveT3 effectiveT3 Find bacterial type III effectors in protein sequences effectivet3 effectivet3 EffectiveT3 Prediction of putative Type-III secreted proteins. Sequence classification Sequence analysis To update http://effectors.org Sequence Analysis effectivet3 peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3 https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3 0.0.21 effectiveT3 1.0.1 Sequence classification Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +epicseg epicseg_segment EpiCSeg is a tool for conducting chromatin segmentation. To update https://github.com/lamortenera/epicseg Epigenetics epicseg rnateam https://github.com/bgruening/galaxytools/tree/master/tools/epicseg https://github.com/bgruening/galaxytools/tree/master/tools/epicseg @VERSION_STRING@ epicseg 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 245 +exparna exparna ExpaRNA is a fast, motif-based comparison and alignment tool for RNA molecules. Up-to-date http://rna.informatik.uni-freiburg.de/ExpaRNA/Input.jsp RNA exparna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/exparna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/exparna 1.0.1 exparna 1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +express express Quantify the abundances of a set of target sequences from sampled subsequences To update RNA express devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/express https://github.com/galaxyproject/tools-devteam/tree/main/tools/express 1.1.1 eXpress 1.5.1 0 1 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 325 +fasta_compute_length fasta_compute_length Compute sequence length To update Fasta Manipulation fasta_compute_length devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_length https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_compute_length 1.0.3 python 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 380 7758 +fasta_concatenate_by_species fasta_concatenate0 Concatenate FASTA alignment by species To update Fasta Manipulation fasta_concatenate_by_species devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_concatenate_by_species 0.0.1 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 88 35793 +fasta_filter_by_id fasta_filter_by_id Filter FASTA sequences by ID (DEPRECATED) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation fasta_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id 0.0.7 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fasta_filter_by_length fasta_filter_by_length Filter sequences by length To update Fasta Manipulation fasta_filter_by_length devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_length https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_filter_by_length 1.2 python 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 350 48649 +fasta_to_tabular fasta2tab FASTA-to-Tabular converter To update Fasta Manipulation fasta_to_tabular devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_to_tabular https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_to_tabular 1.1.1 python 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 622 105935 +fastq_filter_by_id fastq_filter_by_id Filter FASTQ sequences by ID (DEPRECATED) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id Fastq Manipulation, Sequence Analysis, Text Manipulation fastq_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id 0.0.7 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fastq_info fastq_info FASTQ info allows to validate single or paired fastq files To update https://github.com/nunofonseca/fastq_utils Fastq Manipulation fastq_info bgruening https://github.com/bgruening/galaxytools/tree/master/tools/fastq_info https://github.com/bgruening/galaxytools/tree/master/tools/fastq_info 0.25.1 fastq_utils 0.25.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 679 5765 +fastq_pair_names fastq_pair_names Extract FASTQ paired read names To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names Sequence Analysis fastq_pair_names peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names 0.0.5 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fastq_paired_unpaired fastq_paired_unpaired Divide FASTQ file into paired and unpaired reads To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired Sequence Analysis, Text Manipulation fastq_paired_unpaired peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired 0.1.5 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fastq_trimmer_by_quality fastq_quality_trimmer FASTQ Quality Trimmer by sliding window Up-to-date Fastq Manipulation fastq_trimmer_by_quality devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastq_trimmer_by_quality https://github.com/galaxyproject/tools-devteam/tree/main/tools/fastq_trimmer_by_quality 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 459 5676 +fastqsolexa_to_fasta_qual fastqsolexa_to_fasta_qual FASTQSOLEXA-to-FASTA-QUAL extracts sequences and quality scores from FASTQSOLEXA data To update Convert Formats, Fastq Manipulation fastqsolexa_to_fasta_qual devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqsolexa_to_fasta_qual https://github.com/galaxyproject/tools-devteam/tree/main/tools/fastqsolexa_to_fasta_qual 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +featurecounter featureCoverage1 Feature coverage To update Sequence Analysis, Variant Analysis featurecounter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/featurecounter https://github.com/galaxyproject/tools-devteam/tree/main/tools/featurecounter 2.0.0 bx-python 0.12.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 22385 +file_manipulation bg_uniq This tool returns all unique lines from a tab-separated file. To update https://github.com/bgruening/galaxytools/tree/master/tools/file_manipulation Text Manipulation unique bgruening https://github.com/bgruening/galaxytools/tree/master/tools/file_manipulation https://github.com/bgruening/galaxytools/tree/master/tools/file_manipulation 0.4 python 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 176 8496 +filter_transcripts_via_tracking filter_combined_via_tracking Filter Combined Transcripts To update RNA filter_transcripts_via_tracking devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/filter_transcripts_via_tracking https://github.com/galaxyproject/tools-devteam/tree/main/tools/filter_transcripts_via_tracking 0.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 20 +find_diag_hits find_diag_hits Find diagnostic hits To update https://bitbucket.org/natefoo/taxonomy Metagenomics find_diag_hits devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/find_diag_hits https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/find_diag_hits 1.0.0 taxonomy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 69 +find_subsequences bg_find_subsequences To update find_subsequences bgruening https://github.com/bgruening/galaxytools/tree/master/tools/find_subsequences 0.3 biopython 1.70 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 31 763 +flanking_features flanking_features_1 Fetch closest non-overlapping feature for every interval To update https://github.com/galaxyproject/gops Genomic Interval Operations flanking_features devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/flanking_features 4.0.1 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 20 671 +flexynesis flexynesis This is a deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction. Up-to-date https://github.com/BIMSBbioinfo/flexynesis/tree/main Machine Learning, Statistics, Systems Biology flexynesis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis https://github.com/bgruening/galaxytools/tree/master/tools/flexynesis 0.2.10 flexynesis 0.2.10 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +flye flye Assembly of long and error-prone reads. Flye Flye Flye Flye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs. Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing, Genomics To update https://github.com/fenderglass/Flye/ Assembly flye bgruening https://github.com/bgruening/galaxytools/tree/master/tools/flye https://github.com/bgruening/galaxytools/tree/master/tools/flye 2.9.4 flye 2.9.5 Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1499 20904 +footprint footprint Find transcription factor footprints To update https://ohlerlab.mdc-berlin.de/software/Reproducible_footprinting_139/ Epigenetics footprint rnateam https://github.com/bgruening/galaxytools/tree/master/tools/footprint https://github.com/bgruening/galaxytools/tree/master/tools/footprint 1.0.0 footprint 1.0.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 57 +format_cd_hit_output format_cd_hit_output Format CD-hit output to rename representative sequences with cluster name and/or extract distribution inside clusters given a mapping file To update Fasta Manipulation format_cd_hit_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output/ https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output 1.0.0+galaxy1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 166 +format_metaphlan2_output format_metaphlan2_output Format MetaPhlAn2 output to extract abundance at different taxonomic levels format_metaphlan2_output format_metaphlan2_output Format metaphlan2 output This tool format output file of MetaPhlan2 containing community content (abundance) at all taxonomic levels (from kingdom to strains). Formatting Taxonomy, Metagenomics To update Metagenomics format_metaphlan2_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output/ https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output 0.2.0 Formatting Taxonomy, Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 166 5588 +generate_pc_lda_matrix generate_matrix_for_pca_and_lda1 Generate a Matrix for using PC and LDA To update Sequence Analysis generate_pc_lda_matrix devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/generate_pc_lda_matrix https://github.com/galaxyproject/tools-devteam/tree/main/tools/generate_pc_lda_matrix 1.0.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 119 +get_flanks get_flanks1 Get flanks returns flanking region/s for every gene To update https://github.com/galaxyproject/gops Genomic Interval Operations get_flanks devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/get_flanks https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/get_flanks 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 555 324598 +get_orfs_or_cdss get_orfs_or_cdss Search nucleotide sequences for open reading frames (ORFs), or coding sequences (CDSs) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss Sequence Analysis get_orfs_or_cdss peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss 0.2.3 biopython 1.70 0 1 1 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 15 186 +getindelrates_3way indelRates_3way Estimate Indel Rates for 3-way alignments To update Sequence Analysis, Variant Analysis getindelrates_3way devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/getindelrates_3way https://github.com/galaxyproject/tools-devteam/tree/main/tools/getindelrates_3way 1.0.0 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +getindels_2way getIndels_2way Fetch Indels from pairwise alignments To update Sequence Analysis, Variant Analysis getindels_2way devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/getindels_2way https://github.com/galaxyproject/tools-devteam/tree/main/tools/getindels_2way 1.0.0 numpy 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gfastats gfastats Tool for generating sequence statistics and simultaneous genome assembly file manipulation. gfastats gfastats gfastats gfastats is a single fast and exhaustive tool for summary statistics and simultaneous genome assembly file manipulation. gfastats also allows seamless fasta/fastq/gfa conversion. Data handling Computational biology Up-to-date https://github.com/vgl-hub/gfastats Sequence Analysis gfastats bgruening https://github.com/bgruening/galaxytools/tree/master/tools/gfastats https://github.com/bgruening/galaxytools/tree/master/tools/gfastats 1.3.6 gfastats 1.3.6 Data handling Computational biology 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 418 8159 +gi2taxonomy Fetch Taxonomic Ranks Fetch taxonomic representation gi2taxonomy gi2taxonomy gi2taxonomy The tool fetches taxonomic information for a list of sequence identifiers (i.e. GI numbers, as used by the National Center for Biotechnology Information (NCBI). Database search, ID mapping Taxonomy To update https://bitbucket.org/natefoo/taxonomy Metagenomics gi2taxonomy devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/gi2taxonomy https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/gi2taxonomy 1.1.1 taxonomy 0.10.0 Database search, ID mapping Taxonomy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 27 660 +glimmer_hmm GlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model (GHMM) To update https://ccb.jhu.edu/software/glimmerhmm/ Sequence Analysis glimmer_hmm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gmaj gmaj_1 GMAJ Multiple Alignment Viewer To update Visualization gmaj devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/gmaj https://github.com/galaxyproject/tools-devteam/tree/main/tools/gmaj 2.0.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 11 +gotohscan rbc_gotohscan Find subsequences in db To update Sequence Analysis gotohscan rnateam https://github.com/bgruening/galaxytools/tree/master/tools/gotohscan https://github.com/bgruening/galaxytools/tree/master/tools/gotohscan 1.3.0 gotohscan 1.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 71 +graph_converter graph_converter Convert between different graph formats To update Convert Formats graph_converter bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graph_converter https://github.com/bgruening/galaxytools/tree/master/tools/graph_converter 0.1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +graphclust graphclust GraphClust can be used for structural clustering of RNA sequences. To update http://www.bioinf.uni-freiburg.de/Software/GraphClust/ RNA graphclust bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphclust https://github.com/bgruening/galaxytools/tree/master/tools/graphclust 0.1 GraphClust 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +graphicsmagick graphicsmagick_image_compare, graphicsmagick_image_convert, graphicsmagick_image_montage Contains tools based on GraphicsMagick To update http://www.graphicsmagick.org Imaging graphicsmagick bgruening https://github.com/bgruening/galaxytools/new/gm/tools/image_processing/image_processing/ https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/graphicsmagick 1.3.44 graphicsmagick 1.3.26 1 0 3 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 43 2605 +graphmap graphmap_align, graphmap_overlap Mapper for long, error-prone reads. graphmap graphmap graphmap Splice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing To update https://github.com/isovic/graphmap/ Assembly graphmap bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphmap https://github.com/bgruening/galaxytools/tree/master/tools/graphmap 0.5.2 graphmap 0.6.3 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 136 6651 +graphprot graphprot_predict_profile GraphProt models binding preferences of RNA-binding proteins. To update https://github.com/dmaticzka/GraphProt Sequence Analysis, RNA, CLIP-seq graphprot rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/graphprot https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/graphprot 1.1.7+galaxy2 graphprot 1.1.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 474 +hclust2 hclust2 Plots heatmaps To update https://bitbucket.org/nsegata/hclust2/ Data Visualization hclust2 rnateam https://github.com/yuanbit/galaxytools/tree/hclust2/tools/hclust2 https://github.com/bgruening/galaxytools/tree/master/tools/hclust2 0.99 hclust2 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hgv_fundo hgv_funDo FunDO human genes associated with disease terms To update Sequence Analysis hgv_fundo devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_fundo https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/hgv_fundo 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 +hgv_hilbertvis hgv_hilbertvis HVIS visualization of genomic data with the Hilbert curve To update https://www.ebi.ac.uk/huber-srv/hilbert/ Graphics, Visualization hgv_hilbertvis devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_hilbertvis https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/hgv_hilbertvis 1.0.0 R 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 +hictk hictk Convert cooler to juicebox_hic Up-to-date https://github.com/paulsengroup/hictk Convert Formats, Epigenetics hictk bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hictk https://github.com/bgruening/galaxytools/tree/master/tools/hictk 1.0.0 hictk 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hicup hicup2juicer, hicup_deduplicator, hicup_digester, hicup_filter, hicup_hicup, hicup_mapper, hicup_truncater The HiCUP-Pipeline from the Bioinformatics Babraham Institute. To update https://www.bioinformatics.babraham.ac.uk/projects/hicup/read_the_docs/html/index.html Epigenetics hicup bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hicup https://github.com/bgruening/galaxytools/tree/master/tools/hicup 0.9.2 7 0 7 0 7 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 6 0 76 921 +hisat hisat HISAT is a fast and sensitive spliced alignment program. To update http://ccb.jhu.edu/software/hisat/index.shtml Assembly hisat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/hisat https://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat 1.0.3 hisat 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 228 +histogram histogram_rpy Histogram of a numeric column To update Graphics, Statistics histogram devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/histogram https://github.com/galaxyproject/tools-devteam/tree/main/tools/histogram 1.0.4 rpy2 2.7.8 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 242 4350 +homer Software for motif discovery and next generation sequencing analysis. To update http://homer.salk.edu/homer/ Sequence Analysis homer bgruening https://github.com/bgruening/galaxytools/tree/master/tools/homer https://github.com/bgruening/galaxytools/tree/master/tools/homer 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +htseq-clip htseq_clip htseq-clip is a toolset for the analysis of eCLIP/iCLIP datasets To update https://github.com/EMBL-Hentze-group/htseq-clip Sequence Analysis, RNA, CLIP-seq htseq_clip rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/htseq-clip https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/htseq-clip 0.1.0+galaxy0 htseq-clip 2.19.0b0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 15 77 +illumina_methylation_analyser illumina_methylation_analyser Methylation analyzer for Illumina 450k DNA emthylation microarrays To update https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser Sequence Analysis illumina_methylation_analyser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser 0.1 Rscript 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +imagej2 imagej2_adjust_threshold_binary, imagej2_analyze_particles_binary, imagej2_analyze_skeleton, imagej2_binary_to_edm, imagej2_bunwarpj_adapt_transform, imagej2_bunwarpj_align, imagej2_bunwarpj_compare_elastic, imagej2_bunwarpj_compare_elastic_raw, imagej2_bunwarpj_compare_raw, imagej2_bunwarpj_compose_elastic, imagej2_bunwarpj_compose_raw, imagej2_bunwarpj_compose_raw_elastic, imagej2_bunwarpj_convert_to_raw, imagej2_bunwarpj_elastic_transform, imagej2_bunwarpj_raw_transform, imagej2_create_image, imagej2_enhance_contrast, imagej2_find_edges, imagej2_find_maxima, imagej2_make_binary, imagej2_math, imagej2_noise, imagej2_shadows, imagej2_sharpen, imagej2_skeletonize3d, imagej2_smooth, imagej2_watershed_binary ImageJ2 is a new version of ImageJ for the next generation of multidimensionalimage data, with a focus on scientific imaging. imagej imagej imagej2 ImageJ2 It is a public domain Java image processing program, which was designed with an open architecture. Custom acquisition, analysis and processing plugins can be developed using ImageJ’s built-in editor and a Java compiler. User-written plugins make it possible to solve many image processing and analysis problems, from three-dimensional live-cell imaging, to radiological image processing, multiple imaging system data comparisons to automated hematology systems. Image analysis, Image annotation, Visualisation Imaging To update http://fiji.sc Imaging imagej2 imgteam https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 20170530 Image analysis, Image annotation, Visualisation Imaging 0 0 27 0 0 0 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 27 0 26 1537 +improviser proteomics_improviser Visualisation of PepXML files To update http://www.improviser.uni-freiburg.de/ Proteomics proteomics_improviser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviser https://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviser 1.1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +indels_3way indels_3way Fetch Indels from 3-way alignments To update Sequence Analysis indels_3way devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/indels_3way https://github.com/galaxyproject/tools-devteam/tree/main/tools/indels_3way 1.0.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 22 +infernal infernal_cmalign, infernal_cmbuild, infernal_cmpress, infernal_cmscan, infernal_cmsearch, infernal_cmstat "Infernal (""INFERence of RNA ALignment"") is for searching DNA sequence databases for RNA structure and sequence similarities." infernal infernal Infernal "Infernal (""INFERence of RNA ALignment"") is for searching DNA sequence databases for RNA structure and sequence similarities. It is an implementation of a special case of profile stochastic context-free grammars called covariance models (CMs). A CM is like a sequence profile, but it scores a combination of sequence consensus and RNA secondary structure consensus, so in many cases, it is more capable of identifying RNA homologs that conserve their secondary structure more than their primary sequence." Nucleic acid feature detection Sequence sites, features and motifs, Structural genomics To update http://infernal.janelia.org/ RNA infernal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/infernal https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/infernal 1.1.4 infernal 1.1.5 Nucleic acid feature detection Sequence sites, features and motifs, Structural genomics 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 67 100294 +inforna INFO-RNA is a service for the design of RNA sequences that fold into a given pseudo-knot free RNA secondary structure. To update http://rna.informatik.uni-freiburg.de/INFORNA/Input.jsp RNA inforna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/inforna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/inforna 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +instagraal instagraal Large genome reassembly based on Hi-C data instagraal instagraal instaGRAAL Chromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13) Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites To update https://github.com/koszullab/instaGRAAL Assembly instagraal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/instagraal https://github.com/bgruening/galaxytools/tree/master/tools/instagraal 0.1.6 Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 139 +intarna intarna Efficient RNA-RNA interaction prediction incorporating accessibility and seeding of interaction sites. Up-to-date https://github.com/BackofenLab/IntaRNA RNA intarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/intarna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/intarna 3.4.0 intarna 3.4.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 7569 +intersect gops_intersect_1 Intersect the intervals of two datasets To update https://github.com/galaxyproject/gops Genomic Interval Operations intersect devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/intersect https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/intersect 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1003 348449 +iprscan5 Interproscan queries the interpro database and provides annotations. To update http://www.ebi.ac.uk/Tools/pfa/iprscan5/ Sequence Analysis iprscan5 bgruening https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5 https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +itsx itsx ITSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences. ITSx ITSx ITSx TSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences, which is commonly used as a molecular barcode for e.g. fungi. As the inclusion of parts of the neighbouring, very conserved, ribosomal genes (SSU, 5S and LSU rRNA sequences) in the sequence identification process can lead to severely misleading results, ITSx identifies and extracts only the ITS regions themselves. Sequence feature detection Functional, regulatory and non-coding RNA, Microbiology Up-to-date https://microbiology.se/software/itsx/ Metagenomics itsx bgruening https://github.com/bgruening/galaxytools/tree/master/tools/itsx https://github.com/bgruening/galaxytools/tree/master/tools/itsx 1.1.3 itsx 1.1.3 Sequence feature detection Functional, regulatory and non-coding RNA, Microbiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 38 868 +jbrowse2 jbrowse2 JBrowse2 Genome Browser integrated as a Galaxy Tool jbrowse_2 jbrowse_2 JBrowse 2 Modular genome browser with views of synteny and structural variation. Genome visualisation, Structure visualisation, Pathway visualisation Mapping, Structural variation, Genomics, Gene structure, Sequence assembly To update https://jbrowse.org Sequence Analysis jbrowse2 fubar https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse2 https://github.com/bgruening/galaxytools/tree/master/tools/jbrowse2 2.13.1 jbrowse2 2.14.0 Genome visualisation, Structure visualisation, Pathway visualisation Mapping, Structural variation, Genomics, Gene structure, Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +join gops_join_1 Join the intervals of two datasets side-by-side To update https://github.com/galaxyproject/gops Genomic Interval Operations join devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/join 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 284 329556 +join_files_on_column_fuzzy join_files_on_column_fuzzy Join two files on a common column, allowing a certain difference. To update Text Manipulation join_files_on_column_fuzzy bgruening https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/join_files_on_column_fuzzy https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/join_files_on_column_fuzzy 1.0.1 python 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 117 2448 +jupyter_job run_jupyter_job Run jupyter notebook script in Galaxy To update Machine Learning run_jupyter_job bgruening https://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job https://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job 0.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 30 +kernel_canonical_correlation_analysis kcca1 Kernel Canonical Correlation Analysis To update Statistics kernel_canonical_correlation_analysis devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/kernel_canonical_correlation_analysis https://github.com/galaxyproject/tools-devteam/tree/main/tools/kernel_canonical_correlation_analysis 1.0.0 rpy 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 69 +kernel_principal_component_analysis kpca1 Kernel Principal Component Analysis To update Statistics kernel_principal_component_analysis devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/kernel_principal_component_analysis https://github.com/galaxyproject/tools-devteam/tree/main/tools/kernel_principal_component_analysis 1.0.0 rpy 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 156 +kinwalker Kinwalker splits the folding process into a series of events where each event can either be a folding event or a transcription event. To update http://www.bioinf.uni-leipzig.de/Software/Kinwalker/ RNA kinwalker rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/kinwalker https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/kinwalker 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +kraken2tax Kraken2Tax Convert Kraken output to Galaxy taxonomy data. To update https://bitbucket.org/natefoo/taxonomy Metagenomics kraken2tax devteam https://github.com/galaxyproject/tools-devteam/blob/master/tool_collections/taxonomy/kraken2tax/ https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/kraken2tax 1.2+galaxy0 gawk 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 481 14683 +labels bg_labels remaps and annotates alignments To update https://github.com/bgruening/galaxytools/tree/master/tools/labels Sequence Analysis labels bgruening https://github.com/bgruening/galaxytools/tree/master/tools/labels https://github.com/bgruening/galaxytools/tree/master/tools/labels 1.0.5.0 labels 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +lastz_paired_reads lastz_paired_reads_wrapper Galaxy wrapper for the Lastz alignment tool on paired reads To update Next Gen Mappers lastz_paired_reads devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/lastz_paired_reads https://github.com/galaxyproject/tools-devteam/tree/main/tools/lastz_paired_reads 1.1.1 lastz 1.04.22 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 9 +lca_wrapper lca1 Find lowest diagnostic rank To update https://bitbucket.org/natefoo/taxonomy Metagenomics lca_wrapper devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/lca_wrapper https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/lca_wrapper 1.0.1 taxonomy 0.10.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 137 +lda_analysis lda_analy1 Perform Linear Discriminant Analysis To update Graphics, Statistics lda_analysis devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/lda_analysis https://github.com/galaxyproject/tools-devteam/tree/main/tools/lda_analysis 1.0.1 R 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 148 +lighter lighter Lighter is a kmer-based error correction method for whole genome sequencing data lighter lighter Lighter Kmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors. k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Sequencing, Whole genome sequencing, DNA, Genomics To update https://github.com/mourisl/Lighter Sequence Analysis, Fasta Manipulation lighter bgruening https://github.com/bgruening/galaxytools/tree/master/tools/lighter https://github.com/bgruening/galaxytools/tree/master/tools/lighter 1.0 lighter 1.1.3 k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Whole genome sequencing, DNA, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 152 +linear_regression LinearRegression1 Perform Linear Regression To update Statistics linear_regression devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/linear_regression https://github.com/galaxyproject/tools-devteam/tree/main/tools/linear_regression 1.0.1 R 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +locarna locarna_exparnap, locarna_multiple, locarna_pairwise, locarna_pairwise_p, locarna_reliability_profile LocARNA - A suite for multiple alignment and folding of RNAs Up-to-date http://www.bioinf.uni-freiburg.de/Software/LocARNA/ RNA locarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarna 2.0.1 locarna 2.0.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 339 +logistic_regression_vif LogisticRegression Perform Logistic Regression with vif To update Sequence Analysis, Variant Analysis, Statistics logistic_regression_vif devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/logistic_regression_vif https://github.com/galaxyproject/tools-devteam/tree/main/tools/logistic_regression_vif 1.0.1 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +maf_cpg_filter cpgFilter Mask CpG/non-CpG sites from MAF file To update Sequence Analysis, Variant Analysis maf_cpg_filter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/maf_cpg_filter https://github.com/galaxyproject/tools-devteam/tree/main/tools/maf_cpg_filter 1.0.0 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mafft rbc_mafft_add, rbc_mafft Multiple alignment program for amino acid or nucleotide sequences MAFFT MAFFT MAFFT MAFFT (Multiple Alignment using Fast Fourier Transform) is a high speed multiple sequence alignment program. Multiple sequence alignment Sequence analysis To update https://mafft.cbrc.jp/alignment/software/ RNA mafft rnateam https://github.com/bgruening/galaxytools/tree/master/tools/mafft https://github.com/bgruening/galaxytools/tree/master/tools/mafft 7.526 mafft 7.525 Multiple sequence alignment Sequence analysis 2 2 2 2 2 2 2 2 0 1 0 0 2 0 0 0 0 0 0 0 1 0 2 0 0 2 0 0 0 2 0 0 0 0 0 0 0 2 2 0 817 143045 +mapping_to_ucsc mapToUCSC Format mapping data as UCSC custom track To update Visualization, Convert Formats, Next Gen Mappers mapping_to_ucsc devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/mapping_to_ucsc https://github.com/galaxyproject/tools-devteam/tree/main/tools/mapping_to_ucsc 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mavedb mavedb_importer data source for MaveDB To update Data Source mavedb_importer bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mave_tools/mavedb/ https://github.com/bgruening/galaxytools/tree/master/tools/mave_tools/mavedb 0.9 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mea mea Maximum expected accuracy prediction To update http://www.bioinf.uni-leipzig.de/Software/mea RNA mea rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mea https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mea 0.6.4.1 mea 0.6.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 85 +megablast_xml_parser megablast_xml_parser Parse blast XML output To update Next Gen Mappers, Convert Formats megablast_xml_parser devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/megablast_xml_parser https://github.com/galaxyproject/tools-devteam/tree/main/tools/megablast_xml_parser 1.0.1 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 36 338 +merge gops_merge_1 Merge the overlapping intervals of a dataset To update https://github.com/galaxyproject/gops Genomic Interval Operations merge devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/merge https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/merge 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 193 563676 +merge_cols mergeCols1 Merge columns together. To update Text Manipulation merge_cols devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/merge_cols https://github.com/galaxyproject/tools-devteam/tree/main/tools/merge_cols 1.0.3 python 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 1 542 28593 +methtools methtools_calling, r_correlation_matrix, methtools_destrand, methtools_dmr, methtools_filter, methtools_plot, smooth_running_window, methtools_tiling tools for methylation analysis To update https://github.com/bgruening/galaxytools/tree/master/tools/methtools Sequence Analysis methtools bgruening https://github.com/bgruening/galaxytools/tree/master/tools/methtools https://github.com/bgruening/galaxytools/tree/master/tools/methtools 0.1.1 methtools 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5461 +methyldackel pileometh A tool for processing bisulfite sequencing alignments To update https://github.com/dpryan79/MethylDackel Sequence Analysis pileometh bgruening https://github.com/bgruening/galaxytools/tree/master/tools/methyldackel https://github.com/bgruening/galaxytools/tree/master/tools/methyldackel 0.5.2 methyldackel 0.6.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 16573 +methylkit methylkit A method for DNA methylation analysis and annotation from high-throughput bisulfite sequencing. To update http://bioconductor.org/packages/release/bioc/html/methylKit.html Epigenetics methylkit rnateam https://github.com/bgruening/galaxytools/tree/master/tools/methylkit https://github.com/bgruening/galaxytools/tree/master/tools/methylkit 0.99.2 bioconductor-methylkit 1.28.0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +metilene metilene Differential DNA methylation calling To update RNA, Statistics metilene rnateam https://github.com/bgruening/galaxytools/tree/master/tools/metilene https://github.com/bgruening/galaxytools/tree/master/tools/metilene 0.2.6.1 metilene 0.2.8 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 103 3966 +mgnify_seqprep mgnify_seqprep A modifiied vesion of SeqPrep. Made for use with the MGnify pipelines. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers To update https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis mgnify_seqprep bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep 1.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +miclip mi_clip Identification of binding sites in CLIP-Seq data. To update https://cran.r-project.org/src/contrib/Archive/MiClip/ Sequence Analysis miclip bgruening https://github.com/bgruening/galaxytools/tree/master/tools/miclip https://github.com/bgruening/galaxytools/tree/master/tools/miclip 1.2.0 Rscript 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +microsatellite_birthdeath microsatellite_birthdeath Identify microsatellite births and deaths To update Sequence Analysis microsatellite_birthdeath devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsatellite_birthdeath https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsatellite_birthdeath 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +microsats_alignment_level microsats_align1 Extract Orthologous Microsatellites from pair-wise alignments To update Sequence Analysis, Variant Analysis microsats_alignment_level devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_alignment_level https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsats_alignment_level 1.0.0 sputnik 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +microsats_mutability microsats_mutability1 Estimate microsatellite mutability by specified attributes To update Sequence Analysis, Variant Analysis microsats_mutability devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_mutability https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsats_mutability 1.1.0 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +minced minced MinCED - Mining CRISPRs in Environmental Datasets To update http://bioweb2.pasteur.fr/docs/modules/minced/0.1.5/_README Sequence Analysis minced bgruening https://github.com/bgruening/galaxytools/tree/master/tools/minced https://github.com/bgruening/galaxytools/tree/master/tools/minced 0.2.0 minced 0.4.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 53 895 +mine maximal_information_based_nonparametric_exploration Maximal Information-based Nonparametric Exploration To update Variant Analysis mine devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/mine https://github.com/galaxyproject/tools-devteam/tree/main/tools/mine 0.0.1 MINE 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 11 +minipolish minipolish Polishing miniasm assemblies minipolish minipolish minipolish A tool that bridges the output of miniasm (long-read assembly) and racon (assembly polishing) together to polish a draft assembly. It also provides read depth information in contigs. Localised reassembly, Read depth analysis Sequence assembly, Sequencing Up-to-date https://github.com/rrwick/Minipolish Sequence Analysis minipolish bgruening https://github.com/bgruening/galaxytools/tree/master/tools/minipolish https://github.com/bgruening/galaxytools/tree/master/tools/minipolish 0.1.3 minipolish 0.1.3 Localised reassembly, Read depth analysis Sequence assembly, Sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 185 +mitohifi mitohifi Assembly mitogenomes from Pacbio HiFi read. To update https://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2 Assembly mitohifi bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi 3 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 56 613 +molecule2gspan bg_mol2gspan converter To update https://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspan Convert Formats molecule_to_gspan bgruening https://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspan https://github.com/bgruening/galaxytools/tree/master/tools/molecule2gspan 0.2 openbabel 2.3.90dev7d621d9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mqc mqc Ribosome profiling mapping quality control tool To update https://github.com/Biobix/mQC Sequence Analysis mqc rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc 1.9 mqc 1.10 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 76 +multispecies_orthologous_microsats multispecies_orthologous_microsats Extract orthologous microsatellites To update Sequence Analysis, Variant Analysis multispecies_orthologous_microsats devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/multispecies_orthologous_microsats https://github.com/galaxyproject/tools-devteam/tree/main/tools/multispecies_orthologous_microsats 1.0.0 bx-sputnik 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mummer mummerplot_wrapper Draw dotplots using mummer, mucmer, or promer with mummerplot To update http://mummer.sourceforge.net/ Graphics, Sequence Analysis, Visualization mummer peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/mummer https://github.com/peterjc/pico_galaxy/tree/master/tools/mummer 0.0.8 ghostscript 9.18 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 83 652 +music_deconvolution music_construct_eset, music_inspect_eset, music_manipulate_eset, music_compare, music_deconvolution Multi-subject Single Cell deconvolution (MuSiC) Up-to-date https://github.com/xuranw/MuSiC Transcriptomics music bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/music/ https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution 0.1.1 music-deconvolution 0.1.1 5 5 4 0 5 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 240 1872 +mutate_snp_codon mutate_snp_codon_1 Mutate Codons with SNPs To update Variant Analysis mutate_snp_codon devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/mutate_snp_codon https://github.com/galaxyproject/tools-devteam/tree/main/tools/mutate_snp_codon 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 47 +nanopolish nanopolish_eventalign, nanopolish_methylation, nanopolish_polya, nanopolish_variants Nanopolish software package for signal-level analysis of Oxford Nanopore sequencing data. Up-to-date https://github.com/jts/nanopolish nanopolish bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nanopolish https://github.com/bgruening/galaxytools/tree/master/tools/nanopolish 0.14.0 nanopolish 0.14.0 0 4 4 4 0 4 4 4 0 0 0 0 3 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 78 8366 +nastiseq nastiseq A method to identify cis-NATs using ssRNA-seq Up-to-date https://ohlerlab.mdc-berlin.de/software/NASTIseq_104/ RNA nastiseq rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/nastiseq https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/nastiseq 1.0 r-nastiseq 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 40 +netboxr netboxr netboxr enables automated discovery of biological process modules by network analysis To update Systems Biology netboxr bgruening https://github.com/bgruening/galaxytools/tree/master/tools/netboxr 1.6.0 bioconductor-netboxr 1.9.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 11 +nextdenovo nextdenovo String graph-based de novo assembler for long reads nextdenovo nextdenovo NextDenovo "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a ""correct-then-assemble"" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages." De-novo assembly, Genome assembly Sequencing, Sequence assembly To update https://github.com/Nextomics/NextDenovo Assembly nextdenovo bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo 2.5.0 nextdenovo 2.5.2 De-novo assembly, Genome assembly Sequencing, Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 268 +nlstradamus nlstradamus Find nuclear localization signals (NLSs) in protein sequences To update http://www.moseslab.csb.utoronto.ca/NLStradamus Fasta Manipulation, Sequence Analysis nlstradamus peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus 0.0.11 NLStradamus 1.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +nucleosome_prediction Nucleosome Prediction of Nucleosomes Positions on the Genome nucleosome_prediction nucleosome_prediction nucleosome_prediction Prediction of Nucleosomes Positions on the Genome Prediction and recognition, Nucleosome position prediction, Sequence analysis Structural genomics, Nucleic acid sites, features and motifs Up-to-date https://genie.weizmann.ac.il/software/nucleo_exe.html Sequence Analysis nucleosome_prediction bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction https://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction 3.0 nucleosome_prediction 3.0 Prediction and recognition, Nucleosome position prediction, Sequence analysis Structural genomics, Nucleic acid sites, features and motifs 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 861 +numeric_clustering numeric_clustering Clustering tool for numberic values To update http://scikit-learn.org/stable/index.html Statistics numeric_clustering bgruening https://github.com/bgruening/galaxytools/tree/master/tools/numeric_clustering https://github.com/bgruening/galaxytools/tree/master/tools/numeric_clustering 0.9 anaconda 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 486 +openms AccurateMassSearch, AdditiveSeries, BaselineFilter, CVInspector, CompNovo, CompNovoCID, ConsensusID, ConsensusMapNormalizer, ConvertTSVToTraML, ConvertTraMLToTSV, DTAExtractor, DeMeanderize, Decharger, DecoyDatabase, Digestor, DigestorMotif, EICExtractor, ERPairFinder, ExternalCalibration, FFEval, FalseDiscoveryRate, FeatureFinderCentroided, FeatureFinderIdentification, FeatureFinderIsotopeWavelet, FeatureFinderMRM, FeatureFinderMetabo, FeatureFinderMultiplex, FeatureFinderSuperHirn, FeatureLinkerLabeled, FeatureLinkerUnlabeled, FeatureLinkerUnlabeledQT, FidoAdapter, FileConverter, FileFilter, FileInfo, FileMerger, FuzzyDiff, HighResPrecursorMassCorrector, IDConflictResolver, IDDecoyProbability, IDExtractor, IDFileConverter, IDFilter, IDMapper, IDMassAccuracy, IDMerger, IDPosteriorErrorProbability, IDRTCalibration, IDRipper, IDScoreSwitcher, IDSplitter, ITRAQAnalyzer, InclusionExclusionListCreator, InspectAdapter, InternalCalibration, IsobaricAnalyzer, LabeledEval, LowMemPeakPickerHiRes, LowMemPeakPickerHiRes_RandomAccess, LuciphorAdapter, MRMMapper, MRMPairFinder, MRMTransitionGroupPicker, MSGFPlusAdapter, MSSimulator, MapAlignmentEvaluation, MapNormalizer, MapRTTransformer, MapStatistics, MascotAdapter, MascotAdapterOnline, MassCalculator, MassTraceExtractor, MetaProSIP, MetaboliteSpectralMatcher, MultiplexResolver, MzMLSplitter, MzTabExporter, NoiseFilterGaussian, NoiseFilterSGolay, OpenSwathAnalyzer, OpenSwathAssayGenerator, OpenSwathChromatogramExtractor, OpenSwathConfidenceScoring, OpenSwathDIAPreScoring, OpenSwathDecoyGenerator, OpenSwathFeatureXMLToTSV, OpenSwathFileSplitter, OpenSwathMzMLFileCacher, OpenSwathRTNormalizer, OpenSwathRewriteToFeatureXML, OpenSwathWorkflow, PTModel, PTPredict, PeakPickerHiRes, PeakPickerIterative, PeakPickerWavelet, PepNovoAdapter, PeptideIndexer, PhosphoScoring, PrecursorIonSelector, PrecursorMassCorrector, ProteinInference, ProteinQuantifier, ProteinResolver, QCCalculator, QCEmbedder, QCExporter, QCExtractor, QCImporter, QCMerger, QCShrinker, RNPxl, RNPxlXICFilter, RTEvaluation, RTModel, RTPredict, SemanticValidator, SequenceCoverageCalculator, SimpleSearchEngine, SpecLibCreator, SpectraFilterBernNorm, SpectraFilterMarkerMower, SpectraFilterNLargest, SpectraFilterNormalizer, SpectraFilterParentPeakMower, SpectraFilterScaler, SpectraFilterSqrtMower, SpectraFilterThresholdMower, SpectraFilterWindowMower, SpectraMerger, SvmTheoreticalSpectrumGeneratorTrainer, TICCalculator, TMTAnalyzer, TOFCalibration, TextExporter, TopPerc, TransformationEvaluation, XMLValidator, XTandemAdapter OpenMS in version 2.1. To update Proteomics openms bgruening https://github.com/bgruening/galaxytools/tree/master/tools/openms https://github.com/bgruening/galaxytools/tree/master/tools/openms 2.1.0 openms 3.1.0 7 34 135 0 7 34 135 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135 134 0 916 105743 +pandas_rolling_window pandas_rolling_window Rolling window calculations To update https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.rolling.html Statistics pandas_rolling_window bgruening https://github.com/bgruening/galaxytools/tree/master/tools/pandas_rolling_window https://github.com/bgruening/galaxytools/tree/master/tools/pandas_rolling_window 0.1 numpy 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 269 +paralyzer paralyzer A method to generate a high resolution map of interaction sites between RNA-binding proteins and their targets. Up-to-date https://ohlerlab.mdc-berlin.de/software/PARalyzer_85/ RNA paralyzer rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/paralyzer https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/paralyzer 1.5 paralyzer 1.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 299 +partialr_square partialRsq Compute partial R square To update Statistics partialr_square devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/partialr_square https://github.com/galaxyproject/tools-devteam/tree/main/tools/partialr_square 1.0.0 R 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +peakachu peakachu PEAKachu is a peak-caller for CLIP- and RIP-Seq data To update Sequence Analysis, RNA peakachu rnateam https://github.com/tbischler/PEAKachu https://github.com/bgruening/galaxytools/tree/master/tools/peakachu 0.2.0+galaxy1 peakachu 0.2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 78 3109 +pearson_correlation Pearson_and_apos_Correlation1 Pearson and apos Correlation between any two numeric columns To update Statistics pearson_correlation devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/pearson_correlation https://github.com/galaxyproject/tools-devteam/tree/main/tools/pearson_correlation 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +perf stats_perf_tool suitable for boolean classification problems To update http://osmot.cs.cornell.edu/kddcup/software.html stats_perf_tool bgruening https://github.com/bgruening/galaxytools/tree/master/tools/perf https://github.com/bgruening/galaxytools/tree/master/tools/perf 5.11.0 perf 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pfamscan pfamscan Search a FASTA sequence against a library of Pfam HMM. pfamscan pfamscan PfamScan This tool is used to search a FASTA sequence against a library of Pfam HMM. Protein sequence analysis Sequence analysis Up-to-date http://ftp.ebi.ac.uk/pub/databases/Pfam/Tools/ Sequence Analysis pfamscan bgruening https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan 1.6 pfam_scan 1.6 Protein sequence analysis Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 19 165 +pg_tools pg_dump, pg_import, pg_query tool suite for dealing with Postgresql databases from Galaxy's history To update https://www.postgresql.org Data Export, Data Source pgtools bgruening https://github.com/bgruening/galaxytools/tools/pgtools https://github.com/bgruening/galaxytools/tree/master/tools/pg_tools postgresql 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pgsnp2gd_snp pgSnp2gd_snp Convert from pgSnp to gd_snp To update Variant Analysis pgsnp2gd_snp devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/pgsnp2gd_snp https://github.com/galaxyproject/tools-devteam/tree/main/tools/pgsnp2gd_snp 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pharmcat pharmcat Pharmacogenomics Clinical Annotation Tool To update https://pharmcat.org/ Variant Analysis pharmcat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/pharmcat https://github.com/bgruening/galaxytools/tree/master/tools/pharmcat 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 82 +pileup_interval pileup_interval Pileup-to-Interval condenses pileup format into ranges of bases To update SAM pileup_interval devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/pileup_interval https://github.com/galaxyproject/tools-devteam/tree/main/tools/pileup_interval 1.0.3 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 15 632 +pileup_parser pileup_parser Filter pileup on coverage and SNPs To update https://github.com/galaxyproject/tools-devteam/ SAM pileup_parser devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/pileup_parser https://github.com/galaxyproject/tools-devteam/tree/main/tools/pileup_parser 1.0.2 perl 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 169 3158 +pipmir pipmir A method to identify novel plant miRNA. To update https://ohlerlab.mdc-berlin.de/software/Pipeline_for_the_Identification_of_Plant_miRNAs_84/ RNA pipmir rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/pipmir https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/pipmir 0.1.0 pipmir 1.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 21 275 +piranha piranha Piranha is a peak-caller for CLIP- and RIP-Seq data To update Sequence Analysis, RNA piranha rnateam https://github.com/galaxyproject/tools-iuc/tree/master/tools/piranha https://github.com/bgruening/galaxytools/tree/master/tools/piranha 1.2.1.0 piranha 1.2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 1809 +platypus bg_platypus efficient and accurate variant-detection in high-throughput sequencing data To update http://www.well.ox.ac.uk/platypus Sequence Analysis platypus bgruening https://github.com/bgruening/galaxytools/tree/master/tools/platypus https://github.com/bgruening/galaxytools/tree/master/tools/platypus 0.0.11 platypus 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +plot_from_lda plot_for_lda_output1 "Draw ROC plot on ""Perform LDA"" output" To update Graphics, Statistics plot_from_lda devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/plot_from_lda https://github.com/galaxyproject/tools-devteam/tree/main/tools/plot_from_lda 1.0.1 R 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 73 +plotly_ml_performance_plots plotly_ml_performance_plots performance plots for machine learning problems To update http://scikit-learn.org/stable/modules/classes.html#module-sklearn.metrics Visualization plotly_ml_performance_plots bgruening https://github.com/bgruening/galaxytools/tree/master/tools/plotly_ml_performance_plots https://github.com/bgruening/galaxytools/tree/master/tools/plotly_ml_performance_plots 0.4 galaxy-ml 0.10.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 71 1323 +plotly_parallel_coordinates_plot plotly_parallel_coordinates_plot parallel coordinates plot produced with plotly To update https://plot.ly/python/parallel-coordinates-plot/ Visualization plotly_parallel_coordinates_plot bgruening https://github.com/bgruening/galaxytools/tree/master/tools/plotly_parallel_coordinates_plot https://github.com/bgruening/galaxytools/tree/master/tools/plotly_parallel_coordinates_plot 0.2 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 37 652 +plotly_regression_performance_plots plotly_regression_performance_plots performance plots for regression problems To update http://scikit-learn.org/stable/supervised_learning.html#supervised-learning Visualization plotly_regression_performance_plots bgruening https://github.com/bgruening/galaxytools/tree/master/tools/plotly_regression_performance_plots https://github.com/bgruening/galaxytools/tree/master/tools/plotly_regression_performance_plots 0.1 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 79 843 +poisson2test poisson2test Poisson two-sample test To update https://bitbucket.org/natefoo/taxonomy Statistics, Metagenomics poisson2test devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/poisson2test https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/poisson2test 1.0.0 taxonomy 0.10.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 116 +predictnls predictnls Python reimplementation of predictNLS for Galaxy To update https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls Sequence Analysis predictnls peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls 0.0.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +principal_component_analysis pca1 Principal Component Analysis To update Statistics principal_component_analysis devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/principal_component_analysis https://github.com/galaxyproject/tools-devteam/tree/main/tools/principal_component_analysis 1.0.2 rpy 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 88 9989 +protease_prediction eden_protease_prediction This tool can learn the cleavage specificity of a given class of proteases. To update https://github.com/fabriziocosta/eden Sequence Analysis, Proteomics protease_prediction bgruening https://github.com/bgruening/galaxytools/tree/master/tools/protease_prediction https://github.com/bgruening/galaxytools/tree/master/tools/protease_prediction 0.9 eden 2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 154 +protein_analysis promoter2, Psortb, rxlr_motifs, signalp3, tmhmm2, wolf_psort TMHMM, SignalP, Promoter, RXLR motifs, WoLF PSORT and PSORTb To update https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis Sequence Analysis tmhmm_and_signalp peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis 0.0.13 promoter 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 451 6428 +protein_properties bg_protein_properties Calculation of various properties from given protein sequences To update Sequence Analysis protein_properties bgruening https://github.com/bgruening/galaxytools/tree/master/tools/protein_properties https://github.com/bgruening/galaxytools/tree/master/tools/protein_properties 0.2.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 604 +quality_filter qualityFilter Filter nucleotides based on quality scores To update Sequence Analysis, Variant Analysis quality_filter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/quality_filter https://github.com/galaxyproject/tools-devteam/tree/main/tools/quality_filter 1.0.1 bx-python 0.12.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rRNA meta_rna Identification of ribosomal RNA genes in metagenomic fragments. To update http://weizhong-lab.ucsd.edu/meta_rna/ RNA rrna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rRNA https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rRNA 0.1 hmmsearch3.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +racon racon Consensus module for raw de novo DNA assembly of long uncorrected reads. Racon Racon Racon Consensus module for raw de novo DNA assembly of long uncorrected readsRacon is intended as a standalone consensus module to correct raw contigs generated by rapid assembly methods which do not include a consensus step. The goal of Racon is to generate genomic consensus which is of similar or better quality compared to the output generated by assembly methods which employ both error correction and consensus steps, while providing a speedup of several times compared to those methods. It supports data produced by both Pacific Biosciences and Oxford Nanopore Technologies. Genome assembly, Mapping assembly Whole genome sequencing, Sequence assembly Up-to-date https://github.com/isovic/racon Sequence Analysis racon bgruening https://github.com/bgruening/galaxytools/tree/master/tools/racon https://github.com/bgruening/galaxytools/tree/master/tools/racon 1.5.0 racon 1.5.0 Genome assembly, Mapping assembly Whole genome sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 309 21353 +rbpbench rbpbench Evaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifs rbpbench rbpbench RBPBench Evaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifs RNA, Protein interactions, RNA immunoprecipitation, Bioinformatics, Sequence analysis To update https://github.com/michauhl/RBPBench Sequence Analysis, RNA, CLIP-seq rbpbench rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbench https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbench 0.8.1 rbpbench 0.9 RNA, Protein interactions, RNA immunoprecipitation, Bioinformatics, Sequence analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 +rcas rcas RCAS (RNA Centric Annotation System) for functional analysis of transcriptome-wide regions detected by high-throughput experiments To update https://github.com/BIMSBbioinfo/RCAS RNA rcas rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rcas/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rcas 1.5.4 bioconductor-rcas 1.28.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 38 1226 +rcve rcve1 Compute RCVE To update Sequence Analysis, Variant Analysis rcve devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/rcve https://github.com/galaxyproject/tools-devteam/tree/main/tools/rcve 1.0.0 R 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +reago reago Reago is tool to assembly 16S ribosomal RNA recovery from metagenomic data. reago reago REAGO This is an assembly tool for 16S ribosomal RNA recovery from metagenomic data. Sequence assembly Sequence assembly, RNA, Metagenomics, Microbiology Up-to-date https://github.com/chengyuan/reago-1.1 Metagenomics, RNA reago rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago 1.1 reago 1.1 Sequence assembly Sequence assembly, RNA, Metagenomics, Microbiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +remove_beginning Remove beginning1 Remove lines from the beginning of a file. To update Text Manipulation remove_beginning devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/remove_beginning https://github.com/galaxyproject/tools-devteam/tree/main/tools/remove_beginning 1.0.0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 1 1409 137310 +remurna remurna remuRNA - Measurement of Single Nucleotide Polymorphism induced Changes of RNA Conformation To update https://www.ncbi.nlm.nih.gov/CBBresearch/Przytycka/index.cgi#remurna RNA remurna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/remurna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/remurna 1.0.0 remurna 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 42 +repeat_masker repeatmasker_wrapper RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. To update http://www.repeatmasker.org/ Sequence Analysis repeat_masker bgruening https://github.com/bgruening/galaxytools/tree/master/tools/repeat_masker https://github.com/bgruening/galaxytools/tree/master/tools/repeat_masker 0.1.2 RepeatMasker 4.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 248 3750 +replaceColumn replace_column_with_key_value_file A tool to replace all column entries of a file given by values of a key-value file. To update Text Manipulation replace_column_by_key_value_file bgruening https://github.com/bgruening/galaxytools/tree/replaceColumn/tools/replaceColumn https://github.com/bgruening/galaxytools/tree/master/tools/replaceColumn 0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 189 576111 +rest_tool pubchem_rest_tool This tool fetches data from pubchem via the PubChem REST API. To update https://pubchem.ncbi.nlm.nih.gov/pug_rest/PUG_REST.html Data Source pubchem_rest_tool bgruening https://github.com/bgruening/galaxytools/tree/master/tools/rest_tool https://github.com/bgruening/galaxytools/tree/master/tools/rest_tool 0.1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ribotaper ribotaper_create_annotation, ribotaper_create_metaplots, ribotaper_ribosome_profiling A method for defining traslated ORFs using Ribosome Profiling data. ribotaper ribotaper RiboTaper New analysis pipeline for Ribosome Profiling (Ribo-seq) experiments, which exploits the triplet periodicity of ribosomal footprints to call translated regions. Gene expression profiling Functional genomics To update https://ohlerlab.mdc-berlin.de/software/RiboTaper_126/ RNA ribotaper rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper 1.3.1a ribotaper 1.3.1 Gene expression profiling Functional genomics 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 44 628 +rmap rmap_wrapper RMAP for Solexa Short Reads Alignment To update Next Gen Mappers rmap devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/rmap https://github.com/galaxyproject/tools-devteam/tree/main/tools/rmap 1.0.0 rmap 2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rmapq rmapq_wrapper RMAPQ for Solexa Short Reads Alignment with Quality Scores To update Next Gen Mappers rmapq devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/rmapq https://github.com/galaxyproject/tools-devteam/tree/main/tools/rmapq 1.0.0 rmap 2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rna_shapes RNAshapes Compute secondary structures of RNA To update RNA rnashapes rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapes https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapes 3.3.0 @EXECUTABLE@ 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 129 +rnabob rbc_rnabob Fast pattern searching for RNA structural motifs To update http://eddylab.org/software.html RNA rnabob rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabob https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabob 2.2.1.0 rnabob 2.2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 164 +rnacode rbc_rnacode Analyze the protein coding potential in MSA To update RNA rnacode rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacode https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacode 0.3.2 rnacode 0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 1358 +rnacommender rbc_rnacommender RNAcommender is a tool for genome-wide recommendation of RNA-protein interactions. To update https://github.com/gianlucacorrado/RNAcommender RNA rnacommender rnateam https://github.com/bgruening/galaxytools/tree/rna_commander/tools/rna_tools/rna_commender https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacommender 0.1.1 sam 3.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 1074 +rnaformer infer_rnaformer RNAformer: RNA secondary structure prediction To update https://github.com/automl/RNAformer RNA rnaformer rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaformer https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaformer 1.0.0 rnaformer 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rnalien RNAlien RNAlien unsupervized RNA family model construction To update http://rna.tbi.univie.ac.at/rnalien/ RNA, Sequence Analysis rnalien rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalien https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalien 1.3.6 rnalien 1.8.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 33 +rnasnp rnasnp RNAsnp Efficient detection of local RNA secondary structure changes induced by SNPs To update http://rth.dk/resources/rnasnp/ RNA rnasnp rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rnasnp https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnasnp 1.2.0 rnasnp 1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 86 +rnaz rnaz, rnaz_annotate, rnaz_cluster, rnaz_randomize_aln, rnaz_select_seqs, rnaz_window RNAz is a program for predicting structurally conserved and thermodynamically stable RNA secondary structures in multiple sequence alignments. Up-to-date https://www.tbi.univie.ac.at/~wash/RNAz/ RNA rnaz bgruening https://github.com/bgruening/galaxytools/tree/master/tools/rna_team/rnaz https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaz 2.1.1 rnaz 2.1.1 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 28 43279 +sailfish sailfish Sailfish is a tool for transcript quantification from RNA-seq data To update http://www.cs.cmu.edu/~ckingsf/software/sailfish/ Sequence Analysis, RNA sailfish bgruening https://github.com/bgruening/galaxytools/tree/master/tools/sailfish https://github.com/bgruening/galaxytools/tree/master/tools/sailfish 0.10.1.1 bzip2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 55 4024 +salmon alevin, salmon, salmonquantmerge Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data. salmon salmon Salmon A tool for transcript expression quantification from RNA-seq data Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Gene expression, Transcriptomics To update https://github.com/COMBINE-lab/salmon Sequence Analysis, RNA, Transcriptomics bgruening https://github.com/bgruening/galaxytools/tree/master/tools/salmon https://github.com/bgruening/galaxytools/tree/master/tools/salmon 1.10.1 salmon 1.10.3 Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Transcriptomics 2 2 3 1 2 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 1 0 0 0 2 0 0 0 0 0 0 0 3 3 0 969 61937 +sam2interval sam2interval Convert SAM to interval. To update SAM sam2interval devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/sam2interval https://github.com/galaxyproject/tools-devteam/tree/main/tools/sam2interval 1.0.2 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 1189 +sam_bitwise_flag_filter sam_bw_filter Filter SAM on bitwise flag values To update SAM sam_bitwise_flag_filter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/sam_bitwise_flag_filter https://github.com/galaxyproject/tools-devteam/tree/main/tools/sam_bitwise_flag_filter 1.0.1 python 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 278 +sambamba sambamba_flagstat, sambamba_markdup, sambamba_merge, sambamba_sort Sambamba: process your BAM data faster! Up-to-date https://github.com/biod/sambamba SAM sambamba bgruening https://github.com/biod/sambamba https://github.com/bgruening/galaxytools/tree/master/tools/sambamba 1.0.1 sambamba 1.0.1 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +sample_seqs sample_seqs Sub-sample sequences files (e.g. to reduce coverage) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs Assembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysis sample_seqs peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs 0.2.6 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 149 3765 +samtools_depad samtools_depad Re-align a SAM/BAM file with a padded reference (using samtools depad) To update http://www.htslib.org/ Assembly, SAM, Sequence Analysis samtools_depad peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad 0.0.5 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +samtools_depth samtools_depth Coverage depth via samtools To update http://www.htslib.org/ Assembly, Sequence Analysis, SAM samtools_depth peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth 0.0.3 samtools 1.20 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 296 4948 +samtools_idxstats samtools_idxstats BAM mapping statistics (using samtools idxstats) To update http://www.htslib.org/ Assembly, Next Gen Mappers, SAM samtools_idxstats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats 0.0.6 samtools 1.20 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1450 48426 +scatterplot scatterplot_rpy Scatterplot of two numeric columns To update Graphics, Statistics scatterplot devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/scatterplot https://github.com/galaxyproject/tools-devteam/tree/main/tools/scatterplot 1.0.3 numpy 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 61 1677 +sed sed_stream_editor Manipulate your data with the sed command line tool. To update https://github.com/bgruening/galaxytools/tree/master/tools/sed Text Manipulation sed_wrapper bgruening https://github.com/bgruening/galaxytools/tree/master/tools/sed https://github.com/bgruening/galaxytools/tree/master/tools/sed 0.0.1 sed 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2276 +segemehl segemehl segemehl - short read mapping with gaps To update http://www.bioinf.uni-leipzig.de/Software/segemehl/ Next Gen Mappers segemehl rnateam https://github.com/bgruening/galaxytools/tree/master/tools/segemehl https://github.com/bgruening/galaxytools/tree/master/tools/segemehl 0.2.0.4 segemehl 0.3.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 1276 +selectsequencesfrommsa selectsequencesfrommsa SelectSequences - selects representative entries from a multiple sequence alignment in clustal format Up-to-date https://github.com/eggzilla/SelectSequences RNA, Sequence Analysis selectsequencesfrommsa rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/selectsequencesfrommsa https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/selectsequencesfrommsa 1.0.5 selectsequencesfrommsa 1.0.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 27 457 +seq_composition seq_composition Sequence composition To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition Sequence Analysis seq_composition peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition 0.0.5 biopython 1.70 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 71 874 +seq_filter_by_id seq_filter_by_id Filter sequences by ID To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation seq_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id 0.2.9 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 306 25302 +seq_filter_by_mapping seq_filter_by_mapping Filter sequencing reads using SAM/BAM mapping files To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping Assembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysis seq_filter_by_mapping peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping 0.0.8 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 82 3784 +seq_length seq_length Compute sequence length (from FASTA, QUAL, FASTQ, SFF, etc) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length Fasta Manipulation, Fastq Manipulation, Sequence Analysis seq_length peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length 0.0.5 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +seq_primer_clip seq_primer_clip Trim off 5' or 3' primers To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip Assembly, Fasta Manipulation, Text Manipulation seq_primer_clip peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip 0.0.18 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +seq_rename seq_rename Rename sequences with ID mapping from a tabular file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename Fasta Manipulation, Sequence Analysis, Text Manipulation seq_rename peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename 0.0.10 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +seq_select_by_id seq_select_by_id Select sequences by ID To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation seq_select_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id 0.0.15 biopython 1.70 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +short_reads_figure_high_quality_length hist_high_quality_score Histogram of high quality score reads To update Sequence Analysis, Graphics short_reads_figure_high_quality_length devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_high_quality_length https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_figure_high_quality_length 1.0.0 rpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +short_reads_figure_score quality_score_distribution Build base quality distribution To update Sequence Analysis, Graphics short_reads_figure_score devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_score https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_figure_score 1.0.2 fontconfig 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 163 +short_reads_trim_seq trim_reads Select high quality segments To update Fastq Manipulation short_reads_trim_seq devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_trim_seq https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_trim_seq 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 21 220 +show_beginning Show beginning1 Select lines from the beginning of a file. To update Text Manipulation show_beginning devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/show_beginning https://github.com/galaxyproject/tools-devteam/tree/main/tools/show_beginning 1.0.0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 0 1 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 1 704 32112 +show_tail Show tail1 Select lines from the end of a file. To update Text Manipulation show_tail devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/show_tail https://github.com/galaxyproject/tools-devteam/tree/main/tools/show_tail 1.0.0 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 1 1 1 0 1 1 1 0 1 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 1 128 2513 +sicer peakcalling_sicer Statistical approach for the Identification of ChIP-Enriched Regions Up-to-date https://home.gwu.edu/~wpeng/Software.htm ChIP-seq sicer devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/sicer https://github.com/galaxyproject/tools-devteam/tree/main/tools/sicer 1.1 SICER 1.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 5 374 +sklearn sklearn_mlxtend_association_rules, sklearn_clf_metrics, sklearn_discriminant_classifier, sklearn_ensemble, sklearn_estimator_attributes, sklearn_feature_selection, sklearn_fitted_model_eval, sklearn_generalized_linear, keras_batch_models, keras_model_builder, keras_model_config, keras_train_and_eval, sklearn_label_encoder, sklearn_lightgbm, ml_visualization_ex, model_prediction, sklearn_model_validation, sklearn_nn_classifier, sklearn_numeric_clustering, sklearn_pairwise_metrics, sklearn_pca, sklearn_build_pipeline, sklearn_data_preprocess, sklearn_regression_metrics, sklearn_sample_generator, sklearn_searchcv, sklearn_model_fit, scipy_sparse, stacking_ensemble_models, sklearn_svm_classifier, sklearn_to_categorical, sklearn_train_test_eval, sklearn_train_test_split Machine Learning tool suite from Scikit-learn To update http://scikit-learn.org Machine Learning, Statistics sklearn bgruening https://github.com/bgruening/galaxytools/tree/master/tools/sklearn https://github.com/bgruening/galaxytools/tree/master/tools/sklearn 1.0.11.0 30 14 31 16 30 14 31 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 27 0 958 113932 +snpfreq hgv_snpFreq snpFreq significant SNPs in case-control data To update Variant Analysis, Statistics snpfreq devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/snpfreq https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/snpfreq 1.0.1 R 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 37 +sortmerna bg_sortmerna SortMeRNA is a software designed to rapidly filter ribosomal RNA fragments from metatransriptomic data produced by next-generation sequencers. sortmerna sortmerna SortMeRNA Sequence analysis tool for filtering, mapping and OTU-picking NGS reads. Sequence similarity search, Sequence comparison, Sequence alignment analysis Metatranscriptomics, Metagenomics To update http://bioinfo.lifl.fr/RNA/sortmerna/ RNA sortmerna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna 4.3.6 sortmerna 4.3.7 Sequence similarity search, Sequence alignment analysis Metatranscriptomics, Metagenomics 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 376 18183 +split_file_on_column tp_split_on_column Split a file on a specific column. To update Text Manipulation split_file_on_column bgruening https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_on_column https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_on_column 0.6 gawk 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 159 5507 +split_file_to_collection split_file_to_collection Split tabular, MGF, FASTA, or FASTQ files to a dataset collection. To update https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collection Text Manipulation split_file_to_collection bgruening https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collection https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/split_file_to_collection 0.5.2 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 412 15358 +split_paired_reads split_paired_reads Split paired end reads To update Fastq Manipulation split_paired_reads devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/split_paired_reads https://github.com/galaxyproject/tools-devteam/tree/main/tools/split_paired_reads 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +splitfasta rbc_splitfasta Split a multi-sequence fasta file into files containing single sequences To update Text Manipulation splitfasta rnateam https://github.com/bgruening/galaxytools/tree/master/tools/splitfasta https://github.com/bgruening/galaxytools/tree/master/tools/splitfasta 0.4.0 biopython 1.70 1 0 1 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 96 1295 +sshmm sshmm ssHMM is an RNA sequence-structure motif finder for RNA-binding protein data, such as CLIP-Seq data Up-to-date https://github.molgen.mpg.de/heller/ssHMM Sequence Analysis, RNA sshmm rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sshmm/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sshmm 1.0.7 sshmm 1.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 223 +statistics bg_statistical_hypothesis_testing Tool for computing statistical tests. To update https://github.com/bgruening/galaxytools/tree/master/tools/statistics Statistics bg_statistical_hypothesis_testing bgruening https://github.com/bgruening/galaxytools/tree/master/tools/statistics https://github.com/bgruening/galaxytools/tree/master/tools/statistics 0.3 numpy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 304 +stress_ng stress_ng stress test a computer system in various selectable ways To update Web Services stress_ng bgruening-util https://github.com/ColinIanKing/stress-ng https://github.com/bgruening/galaxytools/tree/master/tools/stress_ng 0.12.04 stress-ng 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 +substitution_rates subRate1 Estimate substitution rates for non-coding regions To update Sequence Analysis, Variant Analysis substitution_rates devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/substitution_rates https://github.com/galaxyproject/tools-devteam/tree/main/tools/substitution_rates 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +substitutions substitutions1 Fetch substitutions from pairwise alignments To update Sequence Analysis, Variant Analysis substitutions devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/substitutions https://github.com/galaxyproject/tools-devteam/tree/main/tools/substitutions 1.0.1 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +subtract gops_subtract_1 Subtract the intervals of two datasets To update https://github.com/galaxyproject/gops Genomic Interval Operations subtract devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/subtract https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/subtract 1.0.0 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 182 564229 +subtract_query subtract_query1 Subtract Whole Dataset from another dataset To update https://github.com/galaxyproject/gops Genomic Interval Operations subtract_query devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/subtract_query https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/subtract_query 0.1 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 55 1019 +t2ps Draw_phylogram Draw phylogeny t2ps t2ps Draw phylogeny """Given taxonomy representation (produced by *Fetch taxonomic representation* tool) this utility produces a graphical representations of phylogenetic tree in PDF format."" - Galaxy tool wrapper" Phylogenetic tree visualisation Phylogenomics To update https://bitbucket.org/natefoo/taxonomy Metagenomics t2ps devteam https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps 1.0.0 taxonomy 0.10.0 Phylogenetic tree visualisation Phylogenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 31 457 +t2t_report t2t_report Summarize taxonomy To update https://bitbucket.org/natefoo/taxonomy Metagenomics t2t_report devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/t2t_report https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2t_report 1.0.0 taxonomy 0.10.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 26 947 +t_test_two_samples t_test_two_samples T Test for Two Samples To update Statistics t_test_two_samples devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/t_test_two_samples https://github.com/galaxyproject/tools-devteam/tree/main/tools/t_test_two_samples 1.0.1 R 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 210 +table_annovar table_annovar Annotate a VCF file using ANNOVAR annotations to produce a tabular file that can be filtered To update Variant Analysis table_annovar devteam Nonehttps://github.com/galaxyproject/tools-devteam/tree/master/tools/table_annovar https://github.com/galaxyproject/tools-devteam/tree/main/tools/table_annovar 0.2 annovar 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +tables_arithmetic_operations tables_arithmetic_operations Arithmetic Operations on tables To update https://github.com/galaxyproject/gops Genomic Interval Operations tables_arithmetic_operations devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/tables_arithmetic_operations https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/gops/tables_arithmetic_operations 1.0.0 perl 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 14 2207 +tabular_to_fasta tab2fasta Tabular-to-FASTA To update Convert Formats tabular_to_fasta devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tabular_to_fasta https://github.com/galaxyproject/tools-devteam/tree/main/tools/tabular_to_fasta 1.1.1 python 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 601 319334 +tapscan tapscan_classify Search for transcription associated proteins (TAPs) To update https://plantcode.cup.uni-freiburg.de/tapscan/ Proteomics tapscan bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tapscan https://github.com/bgruening/galaxytools/tree/master/tools/tapscan 4.76+galaxy0 hmmer 3.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +targetfinder targetfinder Plant small RNA target prediction tool Up-to-date https://github.com/carringtonlab/TargetFinder.git RNA targetfinder rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder 1.7 targetfinder 1.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 37 713 +text_processing tp_awk_tool, tp_cat, tp_cut_tool, tp_easyjoin_tool, tp_find_and_replace, tp_grep_tool, tp_head_tool, tp_multijoin_tool, nl, tp_text_file_with_recurring_lines, tp_replace_in_column, tp_replace_in_line, tp_sed_tool, tp_sort_header_tool, tp_sort_rows, tp_uniq_tool, tp_tac, tp_tail_tool, tp_unfold_column_tool, tp_sorted_uniq High performance text processing tools using the GNU coreutils, sed, awk and friends. To update https://www.gnu.org/software/ Text Manipulation text_processing bgruening https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing 9.3 coreutils 8.25 20 20 20 20 20 20 20 20 0 0 0 0 0 0 0 0 0 0 0 0 19 1 19 0 0 19 0 0 0 20 0 0 0 0 0 0 0 19 19 0 15048 3864895 +tgsgapcloser tgsgapcloser TGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly. TGS-GapCloser TGS-GapCloser TGS-GapCloser TGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads. Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping To update https://github.com/BGI-Qingdao/TGS-GapCloser Assembly tgsgapcloser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser 1.0.3 tgsgapcloser 1.2.1 Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 460 +tiara tiara Tool for identification of eukaryotic sequences in the metagenomic datasets. Tiara Tiara TIARA Total Integrated Archive of Short-Read and Array (TIARA) database, contains personal genomic information obtained from next generation sequencing (NGS) techniques and ultra-high-resolution comparative genomic hybridization (CGH) arrays. This database improves the accuracy of detecting personal genomic variations, such as SNPs, short indels and structural variants (SVs). Genome comparison, Data retrieval, Variant calling, Genome visualisation, Structural variation detection Sequencing, Genomics, DNA polymorphism, DNA structural variation To update https://github.com/ibe-uw/tiara Metagenomics, Sequence Analysis tiara bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tiara https://github.com/bgruening/galaxytools/tree/master/tools/tiara 1.0.3 tiara Genome comparison, Data retrieval, Variant calling, Genome visualisation, Structural variation detection Sequencing, Genomics, DNA polymorphism 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +tool_recommendation_model create_tool_recommendation_model Create model to recommend tools To update https://github.com/bgruening/galaxytools Machine Learning create_tool_recommendation_model bgruening https://github.com/bgruening/galaxytools/tree/recommendation_training/tools/tool_recommendation_model https://github.com/bgruening/galaxytools/tree/master/tools/tool_recommendation_model 0.0.5 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 445 +tophat tophat Tophat for Illumina To update RNA, Next Gen Mappers tophat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat 1.5.0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 +tophat2 tophat2 Tophat - fast splice junction mapper for RNA-Seq reads To update http://ccb.jhu.edu/software/tophat/index.shtml RNA, Next Gen Mappers tophat2 devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat2 https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat2 2.1.1 bowtie2 2.5.4 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 312 24167 +tophat_fusion_post tophat_fusion_post Wrapper for Tophat-Fusion post step To update Transcriptomics tophat_fusion_post devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_post https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post 0.1 blast+ 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 216 +trim_galore trim_galore Trim Galore adaptive quality and adapter trimmer trim_galore trim_galore Trim Galore A wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries. Sequence trimming, Primer removal, Read pre-processing Sequence analysis To update http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/ Sequence Analysis, Fastq Manipulation trim_galore bgruening https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore 0.6.7 trim-galore 0.6.10 Sequence trimming, Primer removal, Read pre-processing Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2334 238699 +trimmer trimmer Trim leading or trailing characters. To update Text Manipulation trimmer devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/trimmer https://github.com/galaxyproject/tools-devteam/tree/main/tools/trimmer 0.0.1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 1 0 0 1 0 1 1 0 1 1 1 188 6058 +trna_prediction aragorn_trna, trnascan Aragorn predicts tRNA and tmRNA in nucleotide sequences. To update http://mbioserv2.mbioekol.lu.se/ARAGORN/ RNA trna_prediction bgruening https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/trna_prediction https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/trna_prediction 0.6 aragorn 1.2.41 0 2 2 0 0 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 236 2935 +ucsc_custom_track build_ucsc_custom_track_1 Build custom track for UCSC genome browser To update Sequence Analysis ucsc_custom_track devteam https://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_track https://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_track 1.0.1 python 1 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 45 394 +uniprot_rest_interface uniprot UniProt ID mapping and sequence retrieval To update https://github.com/jdrudolph/uniprot Proteomics, Sequence Analysis uniprot_rest_interface bgruening https://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interface https://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interface 0.6 requests 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 132 2406 +varscan_version_2 varscan VarScan wrapper To update https://dkoboldt.github.io/varscan/ Variant Analysis varscan_version_2 devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/varscan_version_2 https://github.com/galaxyproject/tools-devteam/tree/main/tools/varscan_version_2 2.4.2 varscan 2.4.6 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 246 5191 +vcf2pgsnp vcf2pgSnp VCF to pgSnp To update Variant Analysis vcf2pgsnp devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf2pgsnp https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf2pgsnp 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 206 +vcf_annotate vcf_annotate Annotate a VCF file (dbSNP, hapmap) To update Variant Analysis vcf_annotate devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_annotate https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_annotate 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +vcf_extract vcf_extract Extract reads from a specified region To update Variant Analysis vcf_extract devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_extract https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_extract 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +vcf_filter vcf_filter Filter a VCF file To update Variant Analysis vcf_filter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_filter https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_filter 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 63 388 +vcf_intersect vcf_intersect Generate the intersection of two VCF files To update Variant Analysis vcf_intersect devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/vcf_intersect https://github.com/galaxyproject/tools-devteam/tree/main/tools/vcf_intersect 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 +vcftools_annotate vcftools_annotate Annotate VCF using custom/user-defined annotations To update https://vcftools.github.io/ Variant Analysis vcftools_annotate devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_annotate https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_annotate 0.1 echo 1 0 1 1 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 24 171 +vcftools_compare vcftools_compare Compare VCF files to get overlap and uniqueness statistics To update https://vcftools.github.io/ Variant Analysis vcftools_compare devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_compare https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_compare 0.1 tabix 1.11 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 531 +vcftools_consensus vcftools_consensus Apply VCF variants to a fasta file to create consensus sequence To update https://vcftools.github.io/ Variant Analysis vcftools_consensus devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_consensus https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_consensus 0.1.11 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +vcftools_isec vcftools_isec Intersect multiple VCF datasets To update https://vcftools.github.io/ Variant Analysis vcftools_isec devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_isec https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_isec 0.1.1 tabix 1.11 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 35 498 +vcftools_merge vcftools_merge Merge multiple VCF datasets into a single dataset To update https://vcftools.github.io/ Variant Analysis vcftools_merge devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_merge https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_merge 0.1.11 tabix 1.11 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 68 953 +vcftools_slice vcftools_slice Subset VCF dataset by genomic regions To update https://vcftools.github.io/ Variant Analysis vcftools_slice devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_slice https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_slice 0.1 echo 1 0 1 1 1 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 24 411 +vcftools_subset vcftools_subset Select samples from a VCF dataset To update https://vcftools.github.io/ Variant Analysis vcftools_subset devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/vcftools/vcftools_subset https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/vcftools/vcftools_subset 0.1 tabix 1.11 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 17 137 +venn_list venn_list Draw Venn Diagram (PDF) from lists, FASTA files, etc To update https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list Graphics, Sequence Analysis, Visualization venn_list peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list 0.1.2 galaxy_sequence_utils 1.1.5 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 248 5067 +vienna_rna viennarna_kinfold, viennarna_kinwalker, viennarna_rna2dfold, viennarna_rnaaliduplex, viennarna_rnaalifold, viennarna_rnacofold, viennarna_rnadistance, viennarna_rnaduplex, viennarna_rnaeval, viennarna_rnafold, viennarna_rnaheat, viennarna_rnainverse, viennarna_rnalalifold, viennarna_rnalfold, viennarna_rnapaln, viennarna_rnadpdist, viennarna_rnapkplex, viennarna_rnaplex, viennarna_rnaplfold, viennarna_rnaplot, viennarna_rnasnoop, viennarna_rnasubopt, viennarna_rnaup ViennaRNA - Prediction and comparison of RNA secondary structures To update http://www.tbi.univie.ac.at/RNA/ RNA viennarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna 2.2.10 viennarna 2.6.4 0 0 21 0 0 0 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 21 0 123 7864 +vt vt_@BINARY@, vt_@BINARY@ A tool set for short variant discovery in genetic sequence data. To update Sequence Analysis, Variant Analysis vt bgruening https://github.com/atks/vt https://github.com/bgruening/galaxytools/tree/master/tools/vt 0.2 vt 2015.11.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +weightedaverage wtavg Assign weighted-average of the values of features overlapping an interval To update Sequence Analysis, Variant Analysis weightedaverage devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/weightedaverage https://github.com/galaxyproject/tools-devteam/tree/main/tools/weightedaverage 1.0.1 galaxy-ops 1.1.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +whisper whisper Transcribe audio or video files to text using the OpenAI Whisper. To update https://github.com/bgruening/galaxytools/tree/master/tools/whisper Machine Learning whisper bgruening https://github.com/bgruening/galaxytools/tree/master/tools/whisper https://github.com/bgruening/galaxytools/tree/master/tools/whisper 20231117 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +windowsplitter winSplitter Make windows To update Sequence Analysis, Variant Analysis windowsplitter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/windowsplitter https://github.com/galaxyproject/tools-devteam/tree/main/tools/windowsplitter 1.0.1 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 +woundhealing woundhealing_scratch_assay Tool to automate quantification of wound healing in high-throughput microscopy scratch assays Up-to-date https://git.embl.de/grp-cba/wound-healing-htm-screen Imaging Wound healing scratch assay image analysis bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/woundhealing 1.6.1 fiji-morpholibj 1.6.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +wtdbg wtdbg WTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly. wtdbg2 wtdbg2 wtdbg2 Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy. Genome assembly, De-novo assembly Sequence assembly, Sequencing Up-to-date https://github.com/ruanjue/wtdbg2 Assembly wtdbg bgruening https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg 2.5 wtdbg 2.5 Genome assembly, De-novo assembly Sequence assembly, Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 116 1660 +xy_plot XY_Plot_1 Plotting tool for multiple series and graph types To update Graphics, Statistics xy_plot devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot https://github.com/galaxyproject/tools-devteam/tree/main/tools/xy_plot 1.0.2 r-base 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 344 5892 +TrimNs trimns TrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipeline To update https://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNs Assembly trimns iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trimN https://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs 0.1.0 trimns_vgp 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 42 +abricate abricate, abricate_list, abricate_summary Mass screening of contigs for antiobiotic resistance genes ABRicate ABRicate ABRicate Mass screening of contigs for antimicrobial resistance or virulence genes. Antimicrobial resistance prediction Genomics, Microbiology Up-to-date https://github.com/tseemann/abricate Sequence Analysis abricate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abricate/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/abricate 1.0.1 abricate 1.0.1 Antimicrobial resistance prediction Genomics, Microbiology 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 1764 496717 +abritamr abritamr A pipeline for running AMRfinderPlus and collating results into functional classes abritamr abritamr abriTAMR an AMR gene detection pipeline that runs AMRFinderPlus on a single (or list ) of given isolates and collates the results into a table, separating genes identified into functionally relevant groups. Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease To update https://zenodo.org/record/7370628 Sequence Analysis abritamr iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamr https://github.com/galaxyproject/tools-iuc/tree/main/tools/abritamr 1.0.14 abritamr 1.0.19 Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +abyss abyss-pe Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler abyss abyss ABySS De novo genome sequence assembler using short reads. Genome assembly, De-novo assembly, Scaffolding Sequence assembly To update http://www.bcgsc.ca/platform/bioinfo/software/abyss Assembly abyss iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss https://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss 2.3.7 abyss 2.3.8 Genome assembly, De-novo assembly, Scaffolding Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 391 4278 +adapter_removal adapter_removal Removes residual adapter sequences from single-end (SE) or paired-end (PE) FASTQ reads. adapterremoval adapterremoval AdapterRemoval AdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. AdapterRemoval can analyze both single end and paired end data, and can be used to merge overlapping paired-ended reads into (longer) consensus sequences. Additionally, AdapterRemoval can construct a consensus adapter sequence for paired-ended reads, if which this information is not available. Sequence trimming, Sequence merging, Primer removal Up-to-date https://github.com/MikkelSchubert/adapterremoval Fasta Manipulation, Sequence Analysis adapter_removal iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/adapter_removal 2.3.4 adapterremoval 2.3.4 Sequence trimming, Sequence merging, Primer removal 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 37 217 +add_input_name_as_column addName Add input name as column on an existing tabular file To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/add_input_name_as_column Text Manipulation add_input_name_as_column mvdbeek https://github.com/galaxyproject/tools-iuc/tree/master/tools/add_input_name_as_column https://github.com/galaxyproject/tools-iuc/tree/main/tools/add_input_name_as_column 0.2.0 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 91 83150 +aegean aegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parseval AEGeAn toolkit wrappers gaeval gaeval GAEVAL Gene Annotation EVAluation. Sequence annotation Sequence analysis, Gene structure Up-to-date https://github.com/BrendelGroup/AEGeAn Transcriptomics, Sequence Analysis aegean iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aegean https://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean 0.16.0 aegean 0.16.0 Sequence annotation Sequence analysis, Gene structure 1 4 4 4 1 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 47 168 +aldex2 aldex2 Performs analysis Of differential abundance taking sample variation into account aldex2 aldex2 ALDEx2 A differential abundance analysis for the comparison of two or more conditions. It uses a Dirichlet-multinomial model to infer abundance from counts, that has been optimized for three or more experimental replicates. Infers sampling variation and calculates the expected FDR given the biological and sampling variation using the Wilcox rank test and Welches t-test, or the glm and Kruskal Wallis tests. Reports both P and fdr values calculated by the Benjamini Hochberg correction. Statistical inference Gene expression, Statistics and probability To update https://github.com/ggloor/ALDEx_bioc Metagenomics aldex2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/aldex2 1.26.0 bioconductor-aldex2 1.34.0 Statistical inference Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 13 129 +allegro allegro Linkage and haplotype analysis from deCODE allegro allegro Allegro It does simultaneous discovery of cis-regulatory motifs and their associated expression profiles. Its input are DNA sequences (typically, promoters or 3′ UTRs) and genome-wide expression profiles. Its output is the set of motifs found, and for each motif the set of genes it regulates (its transcriptional module). It is highly efficient and can analyze expression profiles of thousands of genes, measured across dozens of experimental conditions, along with all regulatory sequences in the genome. Sequence motif discovery Sequence analysis, Transcription factors and regulatory sites, DNA To update http://www.decode.com/software/ Variant Analysis allegro iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/allegro/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/allegro @VER@.0 allegro 3 Sequence motif discovery Sequence analysis, Transcription factors and regulatory sites, DNA 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +amplican amplican AmpliCan is an analysis tool for genome editing. amplican amplican amplican It performs alignment of the amplicon reads, normalizes gathered data, calculates multiple statistics (e.g. cut rates, frameshifts) and presents results in form of aggregated reports. Data and statistics can be broken down by experiments, barcodes, user defined groups, guides and amplicons allowing for quick identification of potential problems. Alignment, Standardisation and normalisation PCR experiment, Statistics and probability To update https://github.com/valenlab/amplican Sequence Analysis amplican iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/amplican https://github.com/galaxyproject/tools-iuc/tree/main/tools/amplican 1.14.0 bioconductor-amplican 1.24.0 Alignment, Standardisation and normalisation PCR experiment, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 53 +ampvis2 ampvis2_alpha_diversity, ampvis2_boxplot, ampvis2_core, ampvis2_export_fasta, ampvis2_frequency, ampvis2_heatmap, ampvis2_load, ampvis2_merge_ampvis2, ampvis2_mergereplicates, ampvis2_octave, ampvis2_ordinate, ampvis2_otu_network, ampvis2_rankabundance, ampvis2_rarecurve, ampvis2_setmetadata, ampvis2_subset_samples, ampvis2_subset_taxa, ampvis2_timeseries, ampvis2_venn ampvis2 ampvis ampvis ampvis ampvis2 is an R-package to conveniently visualise and analyse 16S rRNA amplicon data in different ways. Analysis, Visualisation Biodiversity To update https://github.com/MadsAlbertsen/ampvis2/ Metagenomics ampvis2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ampvis2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/ampvis2 2.8.9 Analysis, Visualisation Biodiversity 0 0 19 0 0 0 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 42 267 +amrfinderplus amrfinderplus """AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search ""plus"", stress, heat, and biocide resistance and virulence factors for some organisms." amrfinderplus amrfinderplus AMRFinderPlus "AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search ""plus"", stress, heat, and biocide resistance and virulence factors for some organisms" Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease Up-to-date https://github.com/ncbi/amr Sequence Analysis AMRFinderPlus iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/amrfinderplus https://github.com/galaxyproject/tools-iuc/tree/main/tools/amrfinderplus 3.12.8 ncbi-amrfinderplus 3.12.8 Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 591 +ancombc ancombc Performs analysis of compositions of microbiomes with bias correction. ancombc ancombc ANCOMBC Determine taxa whose absolute abundances, per unit volume, of the ecosystem (e.g. gut) are significantly different with changes in the covariate of interest (e.g. group). The current version of ancombc function implements Analysis of Compositions of Microbiomes with Bias Correction (ANCOM-BC) in cross-sectional data while allowing for covariate adjustment. DNA barcoding Microbial ecology, Metagenomics, Taxonomy To update https://github.com/FrederickHuangLin/ANCOMBC Metagenomics ancombc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ancombc https://github.com/galaxyproject/tools-iuc/tree/main/tools/ancombc 1.4.0 bioconductor-ancombc 2.4.0 DNA barcoding Microbial ecology, Metagenomics, Taxonomy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 7 +anndata anndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loom Import, Export, Inspect and Manipulate Anndata and Loom objects To update https://anndata.readthedocs.io Transcriptomics, Sequence Analysis anndata iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata 0.10.3 anndata 0.6.22.post1 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 625 35620 +annotatemyids annotatemyids annotateMyIDs: get annotation for a set of IDs using the Bioconductor annotation packages annotatemyids annotatemyids annotatemyids This tool can get annotation for a generic set of IDs, using the Bioconductor annotation data packages. Supported organisms are human, mouse, rat, fruit fly and zebrafish. The org.db packages that are used here are primarily based on mapping using Entrez Gene identifiers. More information on the annotation packages can be found at the Bioconductor website, for example, information on the human annotation package (org.Hs.eg.db) can be found here. Annotation Up-to-date https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids Genome annotation annotatemyids iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids https://github.com/galaxyproject/tools-iuc/tree/main/tools/annotatemyids 3.18.0 bioconductor-org.hs.eg.db 3.18.0 Annotation 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1175 25975 +argnorm argnorm argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database argnorm argnorm argNorm argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database.argNorm also enhances antibiotic resistance gene annotations by providing drug categorization of the drugs that antibiotic resistance genes confer resistance to. Gene functional annotation Up-to-date https://github.com/BigDataBiology/argNorm Genome annotation argnorm iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm 0.6.0 argnorm 0.6.0 Gene functional annotation 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +arriba arriba, arriba_draw_fusions, arriba_get_filters Arriba detects fusion genes in RNA-Seq data after running RNA-STAR Up-to-date https://github.com/suhrig/arriba Sequence Analysis, Transcriptomics arriba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba https://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba 2.4.0 arriba 2.4.0 3 3 3 0 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 38 3528 +art art_454, art_illumina, art_solid Simulator for Illumina, 454, and SOLiD sequencing data art art ART ART is a set of simulation tools to generate synthetic next-generation sequencing reads. ART simulates sequencing reads by mimicking real sequencing process with empirical error models or quality profiles summarized from large recalibrated sequencing data. ART can also simulate reads using user own read error model or quality profiles. ART supports simulation of single-end, paired-end/mate-pair reads of three major commercial next-generation sequencing platforms. Illuminas Solexa, Roches 454 and Applied Biosystems SOLiD Conversion Bioinformatics To update http://www.niehs.nih.gov/research/resources/software/biostatistics/art/ Sequence Analysis, Data Source art iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/art https://github.com/galaxyproject/tools-iuc/tree/main/tools/art 2014.11.03.0 art 2016.06.05 Conversion Bioinformatics 0 0 3 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +artic artic_guppyplex, artic_minion The artic pipeline is designed to help run the artic bioinformatics protocols;for example the nCoV-2019 novel coronavirus protocol.Features include: read filtering, primer trimming, amplicon coverage normalisation,variant calling and consensus building artic artic ARTIC A bioinformatics pipeline for working with virus sequencing data sequenced with nanopore Sequence alignment Genomics To update https://github.com/artic-network/fieldbioinformatics Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/artic https://github.com/galaxyproject/tools-iuc/tree/main/tools/artic artic 1.2.4 Sequence alignment Genomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 123 8175 +assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. Up-to-date https://github.com/rjchallis/assembly-stats Assembly assembly_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-stats https://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats 17.02 rjchallis-assembly-stats 17.02 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +astral astral Tool for estimating an unrooted species tree given a set of unrooted gene trees Up-to-date https://github.com/smirarab/ASTRAL Phylogenetics astral iuc https://github.com/usegalaxy-be/galaxytools/tree/main/astral https://github.com/galaxyproject/tools-iuc/tree/main/tools/astral 5.7.8 astral-tree 5.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +augustus augustus, augustus_training AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences. augustus augustus AUGUSTUS AUGUSTUS is a eukaryotic gene prediction tool. It can integrate evidence, e.g. from RNA-Seq, ESTs, proteomics, but can also predict genes ab initio. The PPX extension to AUGUSTUS can take a protein sequence multiple sequence alignment as input to find new members of the family in a genome. It can be run through a web interface (see https://bio.tools/webaugustus), or downloaded and run locally. Gene prediction, Ab-initio gene prediction, Homology-based gene prediction, Homology-based gene prediction, Operation Gene transcripts, Gene and protein families To update http://bioinf.uni-greifswald.de/augustus/ Sequence Analysis augustus bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus https://github.com/galaxyproject/tools-iuc/tree/main/tools/augustus 3.4.0 augustus 3.5.0 Ab-initio gene prediction, Homology-based gene prediction, Homology-based gene prediction, Operation Gene transcripts, Gene and protein families 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 685 11245 +b2btools b2btools_single_sequence This software suite provides structural predictions for protein sequences made by Bio2Byte group.About Bio2Byte: We investigate how the dynamics, conformational states, and available experimental data of proteins relate to their amino acid sequence.Underlying physical and chemical principles are computationally unraveled through data integration, analysis, and machine learning, so connecting themto biological events and improving our understanding of the way proteins work. b2btools b2btools b2bTools The bio2byte tools server (b2btools) offers the following single protein sequence based predictions:- Backbone and sidechain dynamics (DynaMine)- Helix, sheet, coil and polyproline-II propensity- Early folding propensity (EFoldMine)- Disorder (DisoMine)- Beta-sheet aggregation (Agmata)In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'biophysical limits' of a protein family as defined in the MSA Protein disorder prediction, Protein secondary structure prediction, Protein feature detection To update https://bio2byte.be Computational chemistry, Molecular Dynamics, Proteomics, Sequence Analysis, Synthetic Biology iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/b2tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/b2btools 3.0.5+galaxy0 b2btools 3.0.7 Protein disorder prediction, Protein secondary structure prediction 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 345 +bakta bakta """Bakta is a tool for the rapid & standardized annotation of bacterial genomes and plasmids from both isolates and MAGs.It provides dbxref-rich and sORF-including annotations in machine-readable JSON & bioinformatics standard file formats for automatic downstream analysis.""" bakta bakta Bakta Rapid & standardized annotation of bacterial genomes, MAGs & plasmids Genome annotation Genomics, Data submission, annotation and curation, Sequence analysis To update https://github.com/oschwengers/bakta Sequence Analysis bakta iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/bakta https://github.com/galaxyproject/tools-iuc/tree/main/tools/bakta 1.9.3 bakta 1.9.4 Genome annotation Genomics, Data submission, annotation and curation, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 151 2982 +bam_to_scidx bam_to_scidx Contains a tool that converts a BAM file to an ScIdx file. To update https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/bamtoscidx Convert Formats bam_to_scidx iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bam_to_scidx https://github.com/galaxyproject/tools-iuc/tree/main/tools/bam_to_scidx 1.0.1 openjdk 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 128 +bamtools bamtools Operate on and transform BAM datasets in various ways using bamtools bamtools bamtools BamTools BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files. Data handling, Sequence alignment analysis Sequencing, Data management, Sequence analysis Up-to-date https://github.com/pezmaster31/bamtools Sequence Analysis, SAM bamtools devteam https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools 2.5.2 bamtools 2.5.2 Data handling, Sequence alignment analysis Sequencing, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 208 14021 +bamtools_filter bamFilter Filter BAM datasets on various attributes using bamtools filter bamtools bamtools BamTools BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files. Data handling, Sequence alignment analysis Sequencing, Data management, Sequence analysis Up-to-date https://github.com/pezmaster31/bamtools Sequence Analysis, SAM bamtools_filter devteam https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filter 2.5.2 bamtools 2.5.2 Data handling, Sequence alignment analysis Sequencing, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1195 114863 +bamtools_split bamtools_split_mapped, bamtools_split_paired, bamtools_split_ref, bamtools_split_tag Utility for filtering BAM files. It is based on the BAMtools suiteof tools by Derek Barnett. bamtools bamtools BamTools BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files. Data handling, Sequence alignment analysis Sequencing, Data management, Sequence analysis Up-to-date https://github.com/pezmaster31/bamtools Sequence Analysis, SAM iuc https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_split https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_split 2.5.2 bamtools 2.5.2 Data handling, Sequence alignment analysis Sequencing, Sequence analysis 4 3 4 0 4 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 197 4328 +bamutil bamutil_clip_overlap, bamutil_diff bamUtil is a repository that contains several programs that perform operations on SAM/BAM files. To update https://github.com/statgen/bamUtil Sequence Analysis bamutil iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bamutil https://github.com/galaxyproject/tools-iuc/tree/main/tools/bamutil bamutil 1.0.15 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 39 +bandage bandage_image, bandage_info Bandage - A Bioinformatics Application for Navigating De novo Assembly Graphs Easily bandage bandage Bandage GUI program that allows users to interact with the assembly graphs made by de novo assemblers such as Velvet, SPAdes, MEGAHIT and others. It visualises assembly graphs, with connections, using graph layout algorithms. Sequence assembly visualisation Genomics, Sequence assembly Up-to-date https://github.com/rrwick/Bandage Visualization bandage iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bandage https://github.com/galaxyproject/tools-iuc/tree/main/tools/bandage 2022.09 bandage_ng 2022.09 Sequence assembly visualisation Genomics, Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 2016 44390 +barcode_splitter barcode_splitter A utility to split sequence files using multiple sets of barcodes To update https://bitbucket.org/princeton_genomics/barcode_splitter/ Fastq Manipulation barcode_splitter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/barcode_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tools/barcode_splitter 0.18.4.0 barcode_splitter 0.18.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +baredsc baredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2d baredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. baredsc baredsc baredSC The baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability Up-to-date https://github.com/lldelisle/baredSC Transcriptomics, Visualization baredsc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/baredsc https://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc 1.1.3 baredsc 1.1.3 Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 71 +barrnap barrnap Contains the Barrnap tool for finding ribosomal RNAs in FASTA sequences. barrnap barrnap Barrnap Predict the location of ribosomal RNA genes in genomes. It supports bacteria (5S,23S,16S), archaea (5S,5.8S,23S,16S), mitochondria (12S,16S) and eukaryotes (5S,5.8S,28S,18S). Gene prediction Genomics, Model organisms, Model organisms To update https://github.com/tseemann/barrnap Sequence Analysis barrnap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/barrnap https://github.com/galaxyproject/tools-iuc/tree/main/tools/barrnap 1.2.2 barrnap 0.9 Gene prediction Genomics, Model organisms, Model organisms 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 160 3938 +basil basil Breakpoint detection, including large insertions Up-to-date https://github.com/seqan/anise_basil Variant Analysis basil iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/basil 1.2.0 anise_basil 1.2.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 35 266 +bax2bam bax2bam BAX to BAM converter Up-to-date https://github.com/pacificbiosciences/bax2bam/ Convert Formats, Sequence Analysis bax2bam iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pax2bam https://github.com/galaxyproject/tools-iuc/tree/main/tools/bax2bam 0.0.11 bax2bam 0.0.11 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 200 +bayescan BayeScan Detecting natural selection from population-based genetic data bayescan bayescan BayeScan BAYEsian genome SCAN for outliers, aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. It is based on the multinomial-Dirichlet model. Statistical inference Genetics, Evolutionary biology, Statistics and probability, DNA polymorphism To update http://cmpg.unibe.ch/software/BayeScan/index.html Sequence Analysis bayescan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bayescan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bayescan 2.1 bayescan 2.0.1 Statistical inference Genetics, Evolutionary biology, Statistics and probability, DNA polymorphism 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 64 +bbgbigwig bbgtobigwig Make a coverage bigwig from bam, bed or gff, optionally with a chromosome length file. UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update https://www.encodeproject.org/software/bedgraphtobigwig/ Convert Formats bbgbigwig iuc https://www.encodeproject.org/software/bedgraphtobigwig/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bbgbigwig 0.1 ucsc-bedgraphtobigwig 469 Sequence analysis 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +bbtools bbtools_bbduk, bbtools_bbmap, bbtools_bbmerge, bbtools_bbnorm, bbtools_callvariants, bbtools_tadpole BBTools is a suite of fast, multithreaded bioinformatics tools designed for analysis of DNA and RNA sequence data.BBTools can handle common sequencing file formats such as fastq, fasta, sam, scarf, fasta+qual, compressed or raw,with autodetection of quality encoding and interleaving. It is written in Java and works on any platform supportingJava, including Linux, MacOS, and Microsoft Windows and Linux; there are no dependencies other than Java (version7 or higher). Program descriptions and options are shown when running the shell scripts with no parameters. bbmap bbtools, bbmap BBMap BBMap is a fast splice-aware aligner for RNA and DNA. It is faster than almost all short-read aligners, yet retains unrivaled sensitivity and specificity, particularly for reads with many errors and indels. RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignment Sequencing, RNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq Up-to-date https://jgi.doe.gov/data-and-tools/bbtools/ Sequence Analysis bbtools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bbtools 39.08 bbmap 39.08 RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignment RNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq 6 1 5 0 6 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 0 0 420 6381 +bcftools bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@_from_vcf, bcftools_@EXECUTABLE@_to_vcf, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_plugin_@PLUGIN_ID@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@_list_samples, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@, bcftools_@EXECUTABLE@ BCFtools toolkit wrappers bcftools bcftools BCFtools BCFtools is a set of utilities that manipulate variant calls in the Variant Call Format (VCF) and its binary counterpart BCF. All commands work transparently with both VCFs and BCFs, both uncompressed and BGZF-compressed. Data handling, Variant calling Genetic variation, DNA polymorphism, GWAS study, Genotyping experiment To update https://samtools.github.io/bcftools/ Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bcftools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bcftools 1.15.1 bcftools 1.20 Data handling, Variant calling DNA polymorphism, GWAS study, Genotyping experiment 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +bctools bctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_events bctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0 Up-to-date https://github.com/dmaticzka/bctools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools 0.2.2 bctools 0.2.2 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 87 2895 +beacon2 beacon2_csv2xlsx, beacon2_pxf2bff, beacon2_vcf2bff beacon2-ri-tools are part of the ELIXIR-CRG Beacon v2 Reference Implementation (B2RI). ga4gh_beacon ga4gh_beacon GA4GH Beacon A global search engine for genetic mutations. Service discovery, Database search, Genetic variation analysis Genetic variation, Population genetics, Data security, Rare diseases Up-to-date https://github.com/EGA-archive/beacon2-ri-tools/tree/main Variant Analysis beacon2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/beacon2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/beacon2 2.0.0 beacon2-ri-tools 2.0.0 Service discovery, Database search, Genetic variation analysis Genetic variation, Population genetics, Data security, Rare diseases 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 28 +beacon2-import beacon2_analyses, beacon2_biosamples, beacon2_bracket, beacon2_cnv, beacon2_cohorts, beacon2_datasets, beacon2_gene, beacon2_import, beacon2_individuals, beacon2_range, beacon2_runs, beacon2_sequence Beacon Import uploads local genetic data to the server, while Beacon Query searches for genetic information such as genes, sequences, and variants. ga4gh_beacon ga4gh_beacon GA4GH Beacon A global search engine for genetic mutations. Service discovery, Database search, Genetic variation analysis Genetic variation, Population genetics, Data security, Rare diseases Up-to-date https://pypi.org/project/beacon2-import/ Variant Analysis Beacon2_Import iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/beacon2-import https://github.com/galaxyproject/tools-iuc/tree/main/tools/beacon2-import 2.2.3 beacon2-import 2.2.3 Service discovery, Database search, Genetic variation analysis Genetic variation, Population genetics, Data security, Rare diseases 0 0 12 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +beagle beagle Beagle is a program for phasing and imputing missing genotypes. To update https://faculty.washington.edu/browning/beagle/beagle.html Variant Analysis beagle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/beagle https://github.com/galaxyproject/tools-iuc/tree/main/tools/beagle 5.2_21Apr21.304 beagle 5.4_22Jul22.46e 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 54 +bedops bedops-sort-bed BEDOPS: high-performance genomic feature operations Up-to-date https://bedops.readthedocs.io/en/latest/ Genomic Interval Operations bedops_sortbed iuc https://bedops.readthedocs.io/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bedops 2.4.41 bedops 2.4.41 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 28 +bedtools bedtools_annotatebed, bedtools_bamtobed, bedtools_bed12tobed6, bedtools_bedtobam, bedtools_bedtoigv, bedtools_bedpetobam, bedtools_closestbed, bedtools_clusterbed, bedtools_complementbed, bedtools_coveragebed, bedtools_expandbed, bedtools_fisher, bedtools_flankbed, bedtools_genomecoveragebed, bedtools_getfastabed, bedtools_groupbybed, bedtools_intersectbed, bedtools_jaccard, bedtools_links, bedtools_makewindowsbed, bedtools_map, bedtools_maskfastabed, bedtools_mergebed, bedtools_multicovtbed, bedtools_multiintersectbed, bedtools_nucbed, bedtools_overlapbed, bedtools_randombed, bedtools_reldistbed, bedtools_shufflebed, bedtools_slopbed, bedtools_sortbed, bedtools_spacingbed, bedtools_subtractbed, bedtools_tagbed, bedtools_unionbedgraph, bedtools_windowbed bedtools is a powerful toolset for genome arithmetic bedtools bedtools BEDTools BEDTools is an extensive suite of utilities for comparing genomic features in BED format. Mapping Genomics Up-to-date https://github.com/arq5x/bedtools2 Genomic Interval Operations, Text Manipulation bedtools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bedtools 2.31.1 bedtools 2.31.1 Mapping Genomics 37 37 37 37 37 37 37 37 0 37 0 0 37 0 0 0 0 0 0 0 37 6 37 0 0 37 0 0 0 37 0 0 0 0 0 0 0 37 37 0 5844 901750 +bellerophon bellerophon Filter mapped reads where the mapping spans a junction, retaining the 5-prime read. Up-to-date https://github.com/davebx/bellerophon Sequence Analysis bellerophon iuc https://github.com/davebx/bellerophon https://github.com/galaxyproject/tools-iuc/tree/main/tools/bellerophon 1.0 bellerophon 1.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 123 1194 +berokka berokka Berokka is used to trim, circularise, orient & filter long read bacterial genome assemblies. Up-to-date https://github.com/tseemann/berokka Fasta Manipulation berokka iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/berokka https://github.com/galaxyproject/tools-iuc/tree/main/tools/berokka 0.2.3 berokka 0.2.3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +bigscape bigscape Construct sequence similarity networks of BGCs and groups them into GCF BiG-SCAPE BiG-SCAPE BiG-SCAPE A computational framework to explore large-scale biosynthetic diversity.BiG-SCAPE (Biosynthetic Gene Similarity Clustering and Prospecting Engine) is a software package, written in Python, that constructs sequence similarity networks of Biosynthetic Gene Clusters (BGCs) and groups them into Gene Cluster Families (GCFs). BiG-SCAPE does this by rapidly calculating a distance matrix between gene clusters based on a comparison of their protein domain content, order, copy number and sequence identity.It defines a distance metric between Gene Clusters using a combination of three indices (Jaccard Index of domain types, Domain Sequence Similarity the Adjacency...BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynthetic gene clusters (BGCs) across large numbers of genomes, by constructing BGC sequence similarity networks, grouping BGCs into gene cluster families, and exploring gene cluster diversity linked to enzyme phylogenies. Clustering, Global alignment, Fold recognition Phylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein families Up-to-date https://github.com/medema-group/BiG-SCAPE Metagenomics bigscape iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigscape/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigscape 1.1.9 bigscape 1.1.9 Clustering, Global alignment, Fold recognition Phylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein families 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +bigwig_outlier_bed bigwig_outlier_bed pybigtools and numpy code to find continuous runs above a high or below a low quantile cutpoint in bigwig files bigtools bigtools bigtools Bigtools is a library and associated tools for reading and writing bigwig and bigbed files. Rust. To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigwig_outlier_bed Sequence Analysis bigwig_outlier_bed iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigwig_outlier_bed https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigwig_outlier_bed 0.2.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +binning_refiner bin_refiner Reconciles the outputs of different binning programs with the aim to improve the quality of genome bins,especially with respect to contamination levels. binning_refiner binning_refiner Binning_refiner Improving genome bins through the combination of different binning programs Read binning, Sequence clustering Metagenomics, Sequence assembly, Microbial ecology Up-to-date https://github.com/songweizhi/Binning_refiner Metagenomics binning_refiner iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/binning_refiner/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/binning_refiner 1.4.3 binning_refiner 1.4.3 Read binning, Sequence clustering Metagenomics, Sequence assembly, Microbial ecology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 81 +bioext bioext_bam2msa, bioext_bealign A suite of Galaxy tools designed around the BioExt extension to BioPython. Align sequences, merge duplicate sequences into one, and more! To update https://pypi.python.org/pypi/biopython-extensions/ Next Gen Mappers iuc https://github.com/davebx/bioext-gx/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioext 0.21.7 python-bioext 0.21.9 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 363 15228 +bioinformatics_cafe fasta_regex_finder Miscellanea of scripts for bioinformatics To update https://github.com/dariober/bioinformatics-cafe/ Sequence Analysis bioinformatics_cafe mbernt https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics-cafe https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics_cafe 0.1.0 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 71 978 +biom_format biom_add_metadata, biom_convert, biom_from_uc, biom_normalize_table, biom_subset_table, biom_summarize_table The biom-format package provides a command line interface and Python API for working with BIOM files. biomformat biomformat biomformat "This package includes basic tools for reading biom-format files, accessing and subsetting data tables from a biom object, as well as limited support for writing a biom-object back to a biom-format file. The design of this API is intended to match the python API and other tools included with the biom-format project, but with a decidedly ""R flavor"" that should be familiar to R users. This includes S4 classes and methods, as well as extensions of common core functions/methods." Formatting Laboratory information management, Sequence analysis To update https://github.com/biocore/biom-format Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_format https://github.com/galaxyproject/tools-iuc/tree/main/tools/biom_format 2.1.15 biom-format 2.1.7 Formatting Laboratory information management, Sequence analysis 2 2 6 0 2 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 98 3906 +bioperl bp_genbank2gff3 Converts GenBank format files to GFF3 bioperl bioperl BioPerl A collection of Perl modules that facilitate the development of Perl scripts for bioinformatics applications. It provides software modules for many of the typical tasks of bioinformatics programming. Data handling, Service invocation Genomics, Software engineering, Data management To update https://bioperl.org/ Sequence Analysis bp_genbank2gff3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bioperl https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioperl 1.1 perl-bioperl 1.7.8 Data handling, Service invocation Genomics, Software engineering 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 240 6736 +biotradis bacteria_tradis, tradis_essentiality, tradis_gene_insert_sites Bio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data. biotradis biotradis biotradis The Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format. Sequence analysis Mobile genetic elements, Workflows Up-to-date https://www.sanger.ac.uk/science/tools/bio-tradis Genome annotation biotradis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradis https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis 1.4.5 biotradis 1.4.5 Sequence analysis Mobile genetic elements, Workflows 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +biscot biscot Bionano scaffolding correction tool Up-to-date https://github.com/institut-de-genomique/biscot Assembly biscot iuc https://github.com/bgruening/iuc/tree/master/tools/biscot https://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot 2.3.3 biscot 2.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 3 +blast magicblast Maps large next-generation RNA or DNA sequencing runs against a whole genome or transcriptome Up-to-date https://ncbi.github.io/magicblast/ Next Gen Mappers magicblast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/blast https://github.com/galaxyproject/tools-iuc/tree/main/tools/blast 1.7.0 magicblast 1.7.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 78 511 +blastxml_to_gapped_gff3 blastxml_to_gapped_gff3 BlastXML to gapped GFF3 To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3 Convert Formats, Sequence Analysis blastxml_to_gapped_gff3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/blastxml_to_gapped_gff3 1.1 bcbiogff 0.6.6 1 1 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 24 185 +bowtie2 bowtie2 Bowtie2: Fast and sensitive read alignment bowtie2 bowtie2 Bowtie 2 Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes. Read mapping Mapping, Genomics, Mapping To update http://bowtie-bio.sourceforge.net/bowtie2 Next Gen Mappers bowtie2 devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/bowtie2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/bowtie2 2.5.3 bowtie2 2.5.4 Read mapping Mapping, Genomics, Mapping 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 1 0 5136 380252 +bracken est_abundance Bayesian Reestimation of Abundance with KrakEN bracken bracken Bracken Statistical method that computes the abundance of species in DNA sequences from a metagenomics sample. Statistical calculation Metagenomics, Microbial ecology Up-to-date https://ccb.jhu.edu/software/bracken/ Sequence Analysis, Metagenomics bracken iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bracken https://github.com/galaxyproject/tools-iuc/tree/main/tools/bracken 3.0 bracken 3.0 Statistical calculation Metagenomics, Microbial ecology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 326 18351 +breseq breseq Predicts mutations in microbial genomes breseq breseq breseq Runs Breseq software on a set of fastq files. Polymorphism detection Sequencing, Sequence analysis, DNA mutation To update https://github.com/barricklab/breseq Variant Analysis breseq iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/breseq 0.35.5 breseq 0.39.0 Polymorphism detection Sequencing, Sequence analysis, DNA mutation 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 50 1871 +brew3r_r brew3r_r Extend 3' end of a GTF using another GTF as a template brew3r.r brew3r.r BREW3R.r This R package provide functions that are used in the BREW3R workflow. This mainly contains a function that extend a gtf as GRanges using information from another gtf (also as GRanges). The process allows to extend gene annotation without increasing the overlap between gene ids. Genome annotation Transcriptomics, Genomics To update https://bioconductor.org/packages/release/bioc/html/BREW3R.r.html Transcriptomics, RNA brew3r_r iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_r https://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r 1.0.2 Genome annotation Transcriptomics 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +busco busco BUSCO assess genome and annotation completeness busco busco BUSCO Provides measures for quantitative assessment of genome assembly, gene set, and transcriptome completeness based on evolutionarily informed expectations of gene content from near-universal single-copy orthologs. Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assembly Sequence assembly, Genomics, Transcriptomics, Sequence analysis Up-to-date https://gitlab.com/ezlab/busco/-/releases Sequence Analysis busco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/busco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/busco 5.7.1 busco 5.7.1 Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assembly Sequence assembly, Transcriptomics, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1804 86180 +bwa bwa_mem, bwa Wrapper for bwa mem, aln, sampe, and samse bwa bwa BWA Fast, accurate, memory-efficient aligner for short and long sequencing reads Genome indexing, Sequence alignment, Read mapping, Sequence alignment, Generation, Sequence alignment, Generation, Sequence alignment, Sequence alignment Mapping Up-to-date http://bio-bwa.sourceforge.net/ Next Gen Mappers bwa devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa https://github.com/galaxyproject/tools-iuc/tree/main/tools/bwa 0.7.18 bwa 0.7.18 Genome indexing, Sequence alignment, Read mapping, Sequence alignment, Generation, Sequence alignment, Generation, Sequence alignment, Sequence alignment Mapping 2 2 2 2 2 2 2 2 0 1 0 0 2 0 0 0 0 0 0 0 2 1 2 0 0 2 0 0 0 2 0 0 0 0 0 0 0 2 2 2 5295 981251 +bwa_mem2 bwa_mem2 Bwa-mem2 is the next version of the bwa-mem algorithm in bwa. bwa-mem2 bwa-mem2 Bwa-mem2 Bwa-mem2 is the next version of the bwa-mem algorithm in bwa. It produces alignment identical to bwa and is ~1.3-3.1x faster depending on the use-case, dataset and the running machine. Sequence alignment Mapping Up-to-date https://github.com/bwa-mem2/bwa-mem2 Next Gen Mappers bwa_mem2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa_mem2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/bwa_mem2 2.2.1 bwa-mem2 2.2.1 Sequence alignment Mapping 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1220 44386 +bwameth bwameth Fast and accurate alignment of BS-seq reads Up-to-date https://github.com/brentp/bwa-meth Sequence Analysis, Next Gen Mappers bwameth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwameth https://github.com/galaxyproject/tools-iuc/tree/main/tools/bwameth 0.2.7 bwameth 0.2.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 201 10619 +cactus cactus_cactus, cactus_export Cactus is a reference-free whole-genome multiple alignment program cactus cactus Cactus Cactus is a reference-free whole-genome multiple alignment program. Multiple sequence alignment, Genome alignment Genomics, Sequence analysis, Phylogeny, Sequence assembly, Mapping, Phylogenetics To update https://github.com/ComparativeGenomicsToolkit/cactus Sequence Analysis cactus galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/main/tools/cactus https://github.com/galaxyproject/tools-iuc/tree/main/tools/cactus 2.7.1 Multiple sequence alignment, Genome alignment Genomics, Sequence assembly, Mapping, Phylogenetics 0 2 2 1 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 26 234 +calculate_contrast_threshold calculate_contrast_threshold Calculates a contrast threshold from the CDT file generated by ``tag_pileup_frequency``. The calculated values are then used to set a uniform contrast for all the heatmaps generated downstream. To update https://github.com/CEGRcode/ChIP-QC-tools/tree/master/calculate_contrast_threshold Visualization, Genomic Interval Operations, SAM calculate_contrast_threshold iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/calculate_contrast_threshold https://github.com/galaxyproject/tools-iuc/tree/main/tools/calculate_contrast_threshold 1.0.0 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +calculate_numeric_param calculate_numeric_param Calculate a numeric parameter value using integer and float values. To update Text Manipulation calculate_numeric_param iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/calculate_numeric_param https://github.com/galaxyproject/tools-iuc/tree/main/tools/calculate_numeric_param 0.1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1393 +cami_amber biobox_add_taxid, cami_amber, cami_amber_add, cami_amber_convert Evaluation package for the comparative assessment of genome reconstructions and taxonomic assignments Up-to-date https://github.com/CAMI-challenge/AMBER Metagenomics cami_amber iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/amber/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/cami_amber 2.0.6 cami-amber 2.0.6 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cat cat_add_names, cat_bins, cat_contigs, cat_prepare, cat_summarise Contig Annotation Tool (CAT) cat_bins cat_bins CAT and BAT Contig Annotation Tool (CAT) and Bin Annotation Tool (BAT) are pipelines for the taxonomic classification of long DNA sequences and metagenome assembled genomes (MAGs/bins) of both known and (highly) unknown microorganisms, as generated by contemporary metagenomics studies. The core algorithm of both programs involves gene calling, mapping of predicted ORFs against the nr protein database, and voting-based classification of the entire contig / MAG based on classification of the individual ORFs. Taxonomic classification, Sequence assembly, Coding region prediction Metagenomics, Metagenomic sequencing, Taxonomy, Sequence assembly To update https://github.com/dutilh/CAT Metagenomics contig_annotation_tool iuc https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cat https://github.com/galaxyproject/tools-iuc/tree/main/tools/cat 5.2.3 cat 5.3 Taxonomic classification, Sequence assembly, Coding region prediction Metagenomics, Metagenomic sequencing, Taxonomy, Sequence assembly 5 2 5 0 5 2 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 268 2878 +cdhit cd_hit Cluster or compare biological sequence datasets cd-hit cd-hit cd-hit Cluster a nucleotide dataset into representative sequences. Sequence clustering Sequencing Up-to-date http://weizhongli-lab.org/cd-hit/ Sequence Analysis, Fasta Manipulation cd_hit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhit https://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit 4.8.1 cd-hit 4.8.1 Sequence clustering Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 280 4474 +cemitool cemitool Gene co-expression network analysis tool cemitool cemitool CEMiTool It unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network. Enrichment analysis, Pathway or network analysis Gene expression, Transcriptomics, Microarray experiment Up-to-date https://www.bioconductor.org/packages/release/bioc/html/CEMiTool.html Transcriptomics, RNA, Statistics cemitool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool https://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool 1.26.0 bioconductor-cemitool 1.26.0 Enrichment analysis, Pathway or network analysis Transcriptomics, Microarray experiment 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 98 +charts charts Enables advanced visualization options in Galaxy Charts To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/ Visualization charts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/charts 1.0.1 r-getopt 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 287 3589 +checkm checkm_analyze, checkm_lineage_set, checkm_lineage_wf, checkm_plot, checkm_qa, checkm_taxon_set, checkm_taxonomy_wf, checkm_tetra, checkm_tree, checkm_tree_qa Assess the quality of microbial genomes recovered from isolates, single cells, and metagenomes checkm checkm CheckM CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes. Sequence assembly validation, Validation, Sequence composition calculation, Sequencing quality control, Statistical calculation Genomics, Phylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management To update https://github.com/Ecogenomics/CheckM Metagenomics checkm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/checkm https://github.com/galaxyproject/tools-iuc/tree/main/tools/checkm 1.2.0 checkm-genome 1.2.3 Sequence assembly validation, Sequence composition calculation, Statistical calculation Phylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management 0 0 10 10 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 390 5165 +cherri cherri_eval, cherri_train Computational Help Evaluating RNA-RNA interactions cherri cherri cherri CheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions. Molecular interactions, pathways and networks, Structure analysis, Machine learning To update https://github.com/BackofenLab/Cherri Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cherri https://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri 0.7 cherri 0.8 Molecular interactions, pathways and networks, Structure analysis, Machine learning 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 207 +chewbbaca chewbbaca_allelecall, chewbbaca_allelecallevaluator, chewbbaca_createschema, chewbbaca_downloadschema, chewbbaca_extractcgmlst, chewbbaca_joinprofiles, chewbbaca_nsstats, chewbbaca_prepexternalschema BSR-Based Allele Calling Algorithm To update https://github.com/B-UMMI/chewBBACA/tree/master Variant Analysis chewbbaca iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chewbbaca https://github.com/galaxyproject/tools-iuc/tree/main/tools/chewbbaca chewbbaca 3.3.10 0 0 8 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +chira chira_collapse, chira_extract, chira_map, chira_merge, chira_quantify Chimeric Read Annotator for RNA-RNA interactome data chira chira ChiRA ChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc. RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA Up-to-date https://github.com/pavanvidem/chira RNA, Transcriptomics, Sequence Analysis chira iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chira https://github.com/galaxyproject/tools-iuc/tree/main/tools/chira 1.4.3 chira 1.4.3 Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 97 6418 +chopin2 chopin2 Domain-Agnostic Supervised Learning with Hyperdimensional Computing To update https://github.com/cumbof/chopin2 Machine Learning chopin2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chopin2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/chopin2 1.0.9.post1 chopin2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +chromeister chromeister ultra-fast pairwise genome comparisons Up-to-date https://github.com/estebanpw/chromeister Sequence Analysis chromeister iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chromeister https://github.com/galaxyproject/tools-iuc/tree/main/tools/chromeister 1.5.a chromeister 1.5.a 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 182 2130 +circexplorer2 circexplorer2 Comprehensive and integrative circular RNA analysis toolset. circexplorer2 circexplorer2 CIRCexplorer2 Genome-wide annotation of circRNAs and their alternative back-splicing/splicing. RNA splicing, Gene transcripts, Literature and language Up-to-date https://github.com/YangLab/CIRCexplorer2 RNA, Assembly circexplorer2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer2 2.3.8 circexplorer2 2.3.8 RNA splicing, Gene transcripts, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 16 269 +circos circos_aln_to_links, circos_binlinks, circos_bundlelinks, circos, circos_gc_skew, circos_resample, circos_wiggle_to_scatter, circos_wiggle_to_stacked, circos_tableviewer, circos_interval_to_text, circos_interval_to_tile Build Circos Plots in Galaxy galactic_circos galactic_circos Galactic Circos Galactic Circos is a Galaxy wrapper providing a GUI for the Circos tool. Circos allows visualizing data in a circular format. Sequence visualisation To update http://circos.ca/ Graphics circos iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos https://github.com/galaxyproject/tools-iuc/tree/main/tools/circos 0.69.8 circos 0.69.9 Sequence visualisation 11 11 11 11 11 11 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 0 0 0 0 0 0 11 0 0 0 0 0 0 0 11 11 0 1018 21305 +cite_seq_count cite_seq_count Count CMO/HTO CITE-seq-Count CITE-seq-Count CITE-seq-Count Tool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment. RNA-Seq quantification Transcriptomics, Immunoproteins and antigens To update https://github.com/Hoohm/CITE-seq-Count Transcriptomics cite_seq_count iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count 1.4.4 cite-seq-count 1.4.5 RNA-Seq quantification Transcriptomics, Immunoproteins and antigens 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 18 +clair3 clair3 Symphonizing pileup and full-alignment for high-performance long-read variant calling clair3 clair3 Clair3 Clair3 is a germline small variant caller for long-reads. Clair3 makes the best of two major method categories: pileup calling handles most variant candidates with speed, and full-alignment tackles complicated candidates to maximize precision and recall. Clair3 runs fast and has superior performance, especially at lower coverage. Clair3 is simple and modular for easy deployment and integration. Variant calling Molecular genetics To update https://github.com/HKU-BAL/Clair3 Sequence Analysis, Variant Analysis clair3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/clair3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/clair3 1.0.8 clair3 1.0.10 Variant calling Molecular genetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 68 1856 +clustalw clustalw ClustalW multiple sequence alignment program for DNA or proteins clustal2 clustal2 Clustal 2 (Clustal W, Clustal X) Multiple sequence alignment program with a command-line interface (Clustal W) and a graphical user interface (Clustal X). The display colours allow conserved features to be highlighted for easy viewing in the alignment. It is available for several platforms, including Windows, Macintosh PowerMac, Linux and Solaris.Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, Clustal2. Multiple sequence alignment Phylogeny, Sequence analysis Up-to-date http://www.clustal.org/clustal2/ Phylogenetics, Sequence Analysis clustalw devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/clustalw https://github.com/galaxyproject/tools-iuc/tree/main/tools/clustalw 2.1 clustalw 2.1 Multiple sequence alignment Phylogeny, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 651 46793 +clustering_from_distmat clustering_from_distmat Distance matrix-based hierarchical clustering using SciPy To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/clustering_from_distmat/ Statistics clustering_from_distmat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/clustering_from_distmat/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/clustering_from_distmat 1.1 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cnv-phenopacket cnv_phenopacket cnv-phenopacket Converts TSV metadata file to JSON. To update https://pypi.org/project/cnv-phenopacket/ Variant Analysis cnv_phenopacket iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket https://github.com/galaxyproject/tools-iuc/tree/main/tools/cnv-phenopacket 1.0.2 cnv-phenopacket 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cnv-vcf2json cnv_vcf2json cnv-vcf2json Converts structural variants VCF file to JSON. To update https://pypi.org/project/cnv-phenopacket/ Variant Analysis cnv-vcf2json iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-vcf2json https://github.com/galaxyproject/tools-iuc/tree/main/tools/cnv-vcf2json 1.1.0 cnv-vcf2json 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cnvkit cnvkit_access, cnvkit_antitarget, cnvkit_autobin, cnvkit_batch, cnvkit_breaks, cnvkit_call, cnvkit_coverage, cnvkit_diagram, cnvkit_fix, cnvkit_genemetrics, cnvkit_heatmap, cnvkit_reference, cnvkit_scatter, cnvkit_segment, cnvkit_segmetrics, cnvkit_sex, cnvkit_target detecting copy number variants and alterations genome-wide from high-throughput sequencing cnvkit cnvkit CNVkit CNVkit is a software toolkit to infer and visualize copy number from targeted DNA sequencing data. Variant calling DNA structural variation Up-to-date https://github.com/etal/cnvkit Variant Analysis cnvkit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnvkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/cnvkit 0.9.11 cnvkit 0.9.11 Variant calling 0 0 17 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 45 370 +codeml codeml Detects positive selection paml paml PAML Package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. Probabilistic sequence generation, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Phylogenetic tree analysis Phylogenetics, Sequence analysis To update http://abacus.gene.ucl.ac.uk/software/paml.html Phylogenetics codeml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/codeml https://github.com/galaxyproject/tools-iuc/tree/main/tools/codeml 4.9 paml 4.10.7 Probabilistic sequence generation Phylogenetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 29 60901 +cojac cooc_mutbamscan, cooc_pubmut, cooc_tabmut co-occurrence of mutations on amplicons cojac cojac COJAC CoOccurrence adJusted Analysis and Calling - The cojac package comprises a set of command-line tools to analyse co-occurrence of mutations on amplicons. It is useful, for example, for early detection of viral variants of concern (e.g. Alpha, Delta, Omicron) in environmental samples, and has been designed to scan for multiple SARS-CoV-2 variants in wastewater samples, as analyzed jointly by ETH Zurich, EPFL and Eawag. Genetic variation Up-to-date https://github.com/cbg-ethz/cojac Metagenomics, Sequence Analysis cojac iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cojac https://github.com/galaxyproject/tools-iuc/tree/main/tools/cojac 0.9.2 cojac 0.9.2 Genetic variation 2 0 3 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 20 2757 +colabfold colabfold_alphafold, colabfold_msa Protein prediction based on AlphaFold2 Colabfold Colabfold ColabFold ColabFold databases are MMseqs2 expandable profile databases to generate diverse multiple sequence alignments to predict protein structures. Database search, Protein structure prediction, Fold recognition Protein folds and structural domains, Protein folding, stability and design, Structure prediction, Sequence sites, features and motifs, Metagenomics To update https://github.com/sokrypton/ColabFold Proteomics, Graphics colabfold iuc https://github.com/sokrypton/ColabFold https://github.com/galaxyproject/tools-iuc/tree/main/tools/colabfold 1.5.5 Database search, Protein structure prediction, Fold recognition Protein folds and structural domains, Protein folding, stability and design, Structure prediction, Sequence sites, features and motifs, Metagenomics 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +colibread commet, discosnp_rad, discosnp_pp, kissplice, lordec, mapsembler2, takeabreak Colib'read tools are all dedicated to the analysis of NGS datasets without the need of any reference genome To update https://colibread.inria.fr/ Sequence Analysis, Variant Analysis colibread iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread https://github.com/galaxyproject/tools-iuc/tree/main/tools/colibread 24.7.14+galaxy0 commet 24.7.14 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 251 +collection_column_join collection_column_join Column Join on Collections To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_column_join Text Manipulation collection_column_join iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_column_join https://github.com/galaxyproject/tools-iuc/tree/main/tools/collection_column_join 0.0.3 coreutils 8.25 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1483 20857 +collection_element_identifiers collection_element_identifiers Extract element identifiers of a collection To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_element_identifiers Text Manipulation collection_element_identifiers iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_element_identifiers https://github.com/galaxyproject/tools-iuc/tree/main/tools/collection_element_identifiers 0.0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 912 5059 +column_maker Add_a_column1 Compute an expression on every row To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_maker Text Manipulation column_maker devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_maker https://github.com/galaxyproject/tools-iuc/tree/main/tools/column_maker 2.1 python 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 2379 3883271 +column_order_header_sort column_order_header_sort Sort Column Order by heading To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_order_header_sort Text Manipulation column_order_header_sort iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_order_header_sort https://github.com/galaxyproject/tools-iuc/tree/main/tools/column_order_header_sort 0.0.1 python 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 80 3258 +column_remove_by_header column_remove_by_header Remove columns by header To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_remove_by_header Text Manipulation column_remove_by_header iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/column_remove_by_header https://github.com/galaxyproject/tools-iuc/tree/main/tools/column_remove_by_header 1.0 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 199 8424 +compleasm compleasm Compleasm: a faster and more accurate reimplementation of BUSCO compleasm compleasm compleasm """Compleasm: a faster and more accurate reimplementation of BUSCO""" Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assembly Sequence assembly, Genomics, Transcriptomics, Sequence analysis Up-to-date https://github.com/huangnengCSU/compleasm Sequence Analysis compleasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/compleasm/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/compleasm 0.2.6 compleasm 0.2.6 Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assembly Sequence assembly, Transcriptomics, Sequence analysis 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +compose_text_param compose_text_param Compose a text parameter value using text, integer and float values To update Text Manipulation compose_text_param iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/compose_text_param https://github.com/galaxyproject/tools-iuc/tree/main/tools/compose_text_param 0.1.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 375 35084 +compress_file compress_file Compress files. To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/compress_file Text Manipulation compress_file iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/compress_file https://github.com/galaxyproject/tools-iuc/tree/main/tools/compress_file 0.1.0 gzip 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 164 3674 +concoct concoct, concoct_coverage_table, concoct_cut_up_fasta, concoct_extract_fasta_bins, concoct_merge_cut_up_clustering CONCOCT (Clustering cONtigs with COverage and ComposiTion) does unsupervised binning of metagenomic contigs byusing nucleotide composition - kmer frequencies - and coverage data for multiple samples. CONCOCT can accurately(up to species level) bin metagenomic contigs. concoct concoct CONCOCT A program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads. Sequence clustering, Read binning Metagenomics Up-to-date https://github.com/BinPro/CONCOCT Metagenomics concoct iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/concoct https://github.com/galaxyproject/tools-iuc/tree/main/tools/concoct 1.1.0 concoct 1.1.0 Sequence clustering, Read binning Metagenomics 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 92 786 +cosg cosg Marker gene identification for single-cell sequencing data using COSG. Up-to-date https://github.com/genecell/COSG Transcriptomics, Sequence Analysis cosg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg 1.0.1 cosg 1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +coverage_report CoverageReport2 Generate Detailed Coverage Report from BAM file To update https://github.com/galaxyproject/tools-iuc Sequence Analysis coverage_report iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/coverage_report https://github.com/galaxyproject/tools-iuc/tree/main/tools/coverage_report 0.0.4 perl-number-format 1.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +coverm coverm_contig, coverm_genome CoverM genome and contig wrappers coverm coverm CoverM Read coverage calculator for metagenomics Local alignment Bioinformatics Up-to-date https://github.com/wwood/CoverM Sequence Analysis coverm iuc https://github.com/galaxyproject/tools-iuc/tools/coverm https://github.com/galaxyproject/tools-iuc/tree/main/tools/coverm 0.7.0 coverm 0.7.0 Local alignment Bioinformatics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 72 529 +crispr_studio crispr_studio CRISPR Studio is a program developed to facilitate and accelerate CRISPR array visualization. crisprstudio crisprstudio CRISPRStudio CRISPRStudio is a program developed to facilitate and accelerate CRISPR array visualization. It works by first comparing spacers sequence homology in a dataset, then assigning a two-color-code to each cluster of spacers and finally writing an svg file, which can be opened in graphics vector editor. Visualisation Sequence analysis, Genomics, Data visualisation To update https://github.com/moineaulab/CRISPRStudio Sequence Analysis crispr_studio iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crispr_studio/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/crispr_studio 1+galaxy0 crispr_studio 1 Visualisation Sequence analysis, Genomics, Data visualisation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 636 +crosscontamination_barcode_filter crosscontamination_barcode_filter Barcode contamination discovery tool To update Transcriptomics, Visualization crosscontamination_barcode_filter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filter https://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter 0.3 r-ggplot2 2.2.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 17 347 +crossmap crossmap_bam, crossmap_bed, crossmap_bw, crossmap_gff, crossmap_region, crossmap_vcf, crossmap_wig CrossMap converts genome coordinates or annotation files between genome assemblies To update http://crossmap.sourceforge.net/ Convert Formats, Genomic Interval Operations crossmap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crossmap https://github.com/galaxyproject/tools-iuc/tree/main/tools/crossmap 0.6.1 crossmap 0.7.0 5 0 6 0 5 0 6 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 6 5 0 116 1968 +cuffcompare cuffcompare Galaxy wrappers for the Cuffcompare tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffcompare devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 65 1130 +cuffdiff cuffdiff Galaxy wrappers for the Cuffdiff tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffdiff devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiff https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff 2.2.1 cufflinks 2.2.1 1 0 1 0 1 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 228 5831 +cufflinks cufflinks Galaxy wrappers for the Cufflinks tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cufflinks devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinks https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 1 1 0 319 32218 +cuffmerge cuffmerge Galaxy wrappers for the Cuffmerge tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffmerge devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmerge https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 122 3292 +cuffnorm cuffnorm The Cuffnorm tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffnorm devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnorm https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 27 660 +cuffquant cuffquant The Cuffquant tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffquant devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquant https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 18 688 +cutadapt cutadapt Flexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq). cutadapt cutadapt Cutadapt Find and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads. Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing Up-to-date https://cutadapt.readthedocs.org/en/stable/ Fasta Manipulation, Fastq Manipulation, Sequence Analysis cutadapt lparsons https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapt https://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt 4.9 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 5090 232004 +cutesv cutesv Long-read sequencing enables the comprehensive discovery of structural variations (SVs). However, it is still non-trivial to achieve high sensitivity and performance simultaneously due to the complex SV characteristics implied by noisy long reads. Therefore, we propose cuteSV, a sensitive, fast and scalable long-read-based SV detection approach. cuteSV uses tailored methods to collect the signatures of various types of SVs and employs a clustering-and-refinement method to analyze the signatures to implement sensitive SV detection. Benchmarks on real Pacific Biosciences (PacBio) and Oxford Nanopore Technology (ONT) datasets demonstrate that cuteSV has better yields and scalability than state-of-the-art tools. cuteSV cuteSV cuteSV Long Read based Human Genomic Structural Variation Detection with cuteSV | Long-read sequencing technologies enable to comprehensively discover structural variations (SVs). However, it is still non-trivial for state-of-the-art approaches to detect SVs with high sensitivity or high performance or both. Herein, we propose cuteSV, a sensitive, fast and lightweight SV detection approach. cuteSV uses tailored methods to comprehensively collect various types of SV signatures, and a clustering-and-refinement method to implement a stepwise SV detection, which enables to achieve high sensitivity without loss of accuracy. Benchmark results demonstrate that cuteSV has better yields on real datasets. Further, its speed and scalability are outstanding and promising to large-scale data analysis Split read mapping, Genotyping, Structural variation detection DNA structural variation, Sequencing, Computer science To update https://github.com/tjiangHIT/cuteSV Variant Analysis cutesv iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutesv https://github.com/galaxyproject/tools-iuc/tree/main/tools/cutesv 1.0.8 cutesv 2.1.1 Split read mapping, Genotyping, Structural variation detection Sequencing, Computer science 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 235 +cwpair2 cwpair2 Contains a tool that takes a list of called peaks on both strands and produces a list of matched pairsand a list of unmatched orphans. To update ChIP-seq cwpair2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cwpair2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/cwpair2 1.1.1 matplotlib 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dada2 dada2_assignTaxonomyAddspecies, dada2_dada, dada2_filterAndTrim, dada2_learnErrors, dada2_makeSequenceTable, dada2_mergePairs, dada2_plotComplexity, dada2_plotQualityProfile, dada2_removeBimeraDenovo, dada2_seqCounts DADA2 wrappers dada2 dada2 dada2 This package infers exact sequence variants (SVs) from amplicon data, replacing the commonly used and coarser OTU clustering approach. This pipeline inputs demultiplexed fastq files, and outputs the sequence variants and their sample-wise abundances after removing substitution and chimera errors. Taxonomic classification is available via a native implementation of the RDP naive Bayesian classifier. Variant calling, DNA barcoding Sequencing, Genetic variation, Microbial ecology, Metagenomics To update https://benjjneb.github.io/dada2/index.html Metagenomics dada2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dada2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/dada2 bioconductor-dada2 1.30.0 Variant calling, DNA barcoding Sequencing, Genetic variation, Microbial ecology, Metagenomics 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 10 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 10 10 0 1263 66609 +das_tool Fasta_to_Contig2Bin, das_tool DAS Tool for genome resolved metagenomics dastool dastool dastool DAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly. Read binning Metagenomics Up-to-date https://github.com/cmks/DAS_Tool Metagenomics das_tool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool https://github.com/galaxyproject/tools-iuc/tree/main/tools/das_tool 1.1.7 das_tool 1.1.7 Read binning Metagenomics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 24 706 +data_source_iris_tcga data_source_iris_tcga IRIS-TCGA Data source tool To update Data Source data_source_iris_tcga iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/data_source_iris_tcga https://github.com/galaxyproject/tools-iuc/tree/main/tools/data_source_iris_tcga 1.0.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +datamash datamash_ops, datamash_reverse, datamash_transpose GNU Datamash is a command-line program which performs basicnumeric,textual and statistical operations on input textual data files.It is designed to be portable and reliable, and aid researchersto easily automate analysis pipelines, without writing code or even short scripts.License: GPL Version 3 (or later).These tool wrappers were originally writen by Assaf Gordon. To update https://www.gnu.org/software/datamash/ Text Manipulation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/datamash https://github.com/galaxyproject/tools-iuc/tree/main/tools/datamash 1.8 datamash 1.1.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 1 3 3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 3 3 0 3066 739298 +decontaminator decontaminator Deep Learning method for novel virus detection in sequencing data decontaminator decontaminator decontaminator Decontaminator is a deep learning helping tool that filters out phage or fungi contigs from plant virome RNAseq assemblies. Filtering Metagenomics To update https://github.com/cbib/decontaminator Machine Learning decontaminator iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/decontaminator https://github.com/galaxyproject/tools-iuc/tree/main/tools/decontaminator 1.0.0 numpy Filtering Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 15 99 +deepmicro deepmicro Representation learning and classification framework DeepMicro DeepMicro DeepMicro Deep representation learning for disease prediction based on microbiome data.DeepMicro is a deep representation learning framework exploiting various autoencoders to learn robust low-dimensional representations from high-dimensional data and training classification models based on the learned representation. Essential dynamics, Splitting, Community profiling Microbial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeutics Up-to-date https://github.com/paulzierep/DeepMicro Machine Learning deepmicro iuc https://github.com/paulzierep/DeepMicro https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepmicro 1.4 deepmicro 1.4 Essential dynamics, Splitting Microbial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeutics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 501 +deepsig deepsig Predictor of signal peptides in proteins based on deep learning Up-to-date https://github.com/BolognaBiocomp/deepsig Genome annotation deepsig iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deepsig https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepsig 1.2.5 deepsig 1.2.5 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 +deepvariant deepvariant DeepVariant is a deep learning-based variant caller To update https://github.com/google/deepvariant Variant Analysis deepvariant iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deepvariant https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepvariant 1.5.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 182 1889 +deg_annotate deg_annotate Annotate DESeq2/DEXSeq output tables To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate Transcriptomics deg_annotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate 1.1.0 bedtools 2.31.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1774 19910 +delly delly_call, delly_classify, delly_cnv, delly_filter, delly_lr, delly_merge Delly is an integrated structural variant (SV) prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. It uses paired-ends, split-reads and read-depth to sensitively and accurately delineate genomic rearrangements throughout the genome. delly2 delly2 Delly2 Integrated structural variant prediction method that can discover, genotype and visualize deletions, tandem duplications, inversions and translocations at single-nucleotide resolution in short-read massively parallel sequencing data. It uses paired-ends and split-reads to sensitively and accurately delineate genomic rearrangements throughout the genome. Structural variants can be visualized using Delly-maze and Delly-suave. Indel detection, Structural variation detection, Variant calling, Genotyping, Genetic variation analysis DNA structural variation, Sequencing, Pathology, Genomics, Genetic variation, Bioinformatics, Population genomics, Rare diseases To update https://github.com/dellytools/delly Variant Analysis delly iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/delly https://github.com/galaxyproject/tools-iuc/tree/main/tools/delly 0.9.1 delly 1.2.6 Indel detection, Structural variation detection, Genotyping Sequencing, Genetic variation, Bioinformatics, Population genomics, Rare diseases 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 6 0 0 124 1135 +deseq2 deseq2 Differential gene expression analysis based on the negative binomial distribution DESeq2 DESeq2 DESeq2 R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution. Differential gene expression analysis, RNA-Seq analysis RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics deseq2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq2 2.11.40.8 bioconductor-deseq2 1.42.0 Differential gene expression analysis, RNA-Seq analysis RNA-Seq 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4990 95752 +dexseq dexseq, dexseq_count, plotdexseq Inference of differential exon usage in RNA-Seq dexseq dexseq DEXSeq The package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results. Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq Up-to-date https://www.bioconductor.org/packages/release/bioc/html/DEXSeq.html Transcriptomics, RNA, Statistics dexseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq 1.48.0 bioconductor-dexseq 1.48.0 Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 218 16064 +diamond bg_diamond, bg_diamond_makedb, bg_diamond_view DIAMOND is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR. diamond diamond Diamond Sequence aligner for protein and translated DNA searches and functions as a drop-in replacement for the NCBI BLAST software tools. It is suitable for protein-protein search as well as DNA-protein search on short reads and longer sequences including contigs and assemblies, providing a speedup of BLAST ranging up to x20,000. Sequence alignment analysis Sequence analysis, Proteins To update https://github.com/bbuchfink/diamond Sequence Analysis diamond bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond https://github.com/galaxyproject/tools-iuc/tree/main/tools/diamond 2.0.15 diamond 2.1.9 Sequence alignment analysis Sequence analysis, Proteins 3 3 3 3 3 3 3 3 0 0 0 0 3 0 0 0 0 0 0 0 3 3 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 0 963 49711 +diffbind diffbind Diffbind provides functions for processing ChIP-Seq data. diffbind diffbind DiffBind Compute differentially bound sites from multiple ChIP-seq experiments using affinity (quantitative) data. Also enables occupancy (overlap) analysis and plotting functions. Differential binding analysis ChIP-seq Up-to-date http://bioconductor.org/packages/release/bioc/html/DiffBind.html ChIP-seq diffbind bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/diffbind https://github.com/galaxyproject/tools-iuc/tree/main/tools/diffbind 3.12.0 bioconductor-diffbind 3.12.0 Differential binding analysis ChIP-seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 250 6264 +dimet dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@, dimet_@EXECUTABLE@ DIMet is a bioinformatics pipeline for differential analysis of isotopic targeted labeling data. Up-to-date https://github.com/cbib/DIMet Metabolomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/DIMet https://github.com/galaxyproject/tools-iuc/tree/main/tools/dimet 0.2.4 dimet 0.2.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +disco disco DISCO is a overlap-layout-consensus (OLC) metagenome assembler disco disco DISCO DISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer. Protein sequence analysis Structure determination To update http://disco.omicsbio.org/ Metagenomics, Assembly disco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/disco disco 1.2 Protein sequence analysis Structure determination 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 369 +dnabot dnabot DNA assembly using BASIC on OpenTrons To update https://github.com/BASIC-DNA-ASSEMBLY/DNA-BOT Synthetic Biology dnabot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dnabot https://github.com/galaxyproject/tools-iuc/tree/main/tools/dnabot 3.1.0 dnabot 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dnaweaver dnaweaver Given a SBOL input, calculate assembly parts for Gibson or Golden Gate. Up-to-date https://github.com/Edinburgh-Genome-Foundry/DnaWeaver Synthetic Biology dnaweaver iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dnaweaver https://github.com/galaxyproject/tools-iuc/tree/main/tools/dnaweaver 1.0.2 dnaweaver_synbiocad 1.0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dram dram_annotate, dram_distill, dram_merge_annotations, dram_neighborhoods, dram_strainer DRAM for distilling microbial metabolism to automate the curation of microbiome function dram dram DRAM Distilled and Refined Annotation of Metabolism: A tool for the annotation and curation of function for microbial and viral genomes Gene functional annotation Metagenomics, Biological databases, Molecular genetics Up-to-date https://github.com/WrightonLabCSU/DRAM Metagenomics dram iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dram https://github.com/galaxyproject/tools-iuc/tree/main/tools/dram 1.5.0 dram 1.5.0 Gene functional annotation Metagenomics, Biological databases, Molecular genetics 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 39 6886 +drep drep_compare, drep_dereplicate dRep compares and dereplicates genome sets drep drep dRep Fast and accurate genomic comparisons that enables improved genome recovery from metagenomes through de-replication. Genome comparison Metagenomics, Genomics, Sequence analysis Up-to-date https://github.com/MrOlm/drep Metagenomics drep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/drep https://github.com/galaxyproject/tools-iuc/tree/main/tools/drep 3.5.0 drep 3.5.0 Genome comparison Metagenomics, Sequence analysis 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 46 646 +dropletutils dropletutils DropletUtils - Utilities for handling droplet-based single-cell RNA-seq data dropletutils dropletutils DropletUtils Provides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix. Loading, Community profiling Gene expression, RNA-seq, Sequencing, Transcriptomics To update https://bioconductor.org/packages/devel/bioc/html/DropletUtils.html Transcriptomics, Sequence Analysis dropletutils iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils 1.10.0 bioconductor-dropletutils 1.22.0 Sequencing, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 126 3934 +ebi_tools ebi_search_rest_results Tools to query and download data from several EMBL-EBI databases To update http://www.ebi.ac.uk/services/all Web Services, Data Source ebi_tools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ebi_tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/ebi_tools 0.1.1 six 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 52 382 +edger edger Perform RNA-Seq differential expression analysis using edgeR pipeline edger edger edgeR Differential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE. Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq To update http://bioconductor.org/packages/release/bioc/html/edgeR.html Transcriptomics, RNA, Statistics edger iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger https://github.com/galaxyproject/tools-iuc/tree/main/tools/edger 3.36.0 bioconductor-edger 4.0.16 Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 945 18117 +egsea egsea This tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testing egsea egsea EGSEA This package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing. Gene set testing Systems biology To update https://bioconductor.org/packages/release/bioc/html/EGSEA.html Transcriptomics, RNA, Statistics egsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea 1.20.0 bioconductor-egsea 1.28.0 Gene set testing Systems biology 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 177 2524 +emboss_5 EMBOSS: antigenic1, EMBOSS: backtranseq2, EMBOSS: banana3, EMBOSS: biosed4, EMBOSS: btwisted5, EMBOSS: cai6, EMBOSS: cai_custom6, EMBOSS: chaos7, EMBOSS: charge8, EMBOSS: checktrans9, EMBOSS: chips10, EMBOSS: cirdna11, EMBOSS: codcmp12, EMBOSS: coderet13, EMBOSS: compseq14, EMBOSS: cpgplot15, EMBOSS: cpgreport16, EMBOSS: cusp17, EMBOSS: cutseq18, EMBOSS: dan19, EMBOSS: degapseq20, EMBOSS: descseq21, EMBOSS: diffseq22, EMBOSS: digest23, EMBOSS: dotmatcher24, EMBOSS: dotpath25, EMBOSS: dottup26, EMBOSS: dreg27, EMBOSS: einverted28, EMBOSS: epestfind29, EMBOSS: equicktandem31, EMBOSS: est2genome32, EMBOSS: etandem33, EMBOSS: extractfeat34, EMBOSS: extractseq35, EMBOSS: freak36, EMBOSS: fuzznuc37, EMBOSS: fuzzpro38, EMBOSS: fuzztran39, EMBOSS: garnier40, EMBOSS: geecee41, EMBOSS: getorf42, EMBOSS: helixturnhelix43, EMBOSS: hmoment44, EMBOSS: iep45, EMBOSS: infoseq46, EMBOSS: isochore47, EMBOSS: lindna48, EMBOSS: marscan49, EMBOSS: maskfeat50, EMBOSS: maskseq51, EMBOSS: matcher52, EMBOSS: megamerger53, EMBOSS: merger54, EMBOSS: msbar55, EMBOSS: needle56, EMBOSS: newcpgreport57, EMBOSS: newcpgseek58, EMBOSS: newseq59, EMBOSS: noreturn60, EMBOSS: notseq61, EMBOSS: nthseq62, EMBOSS: octanol63, EMBOSS: oddcomp64, EMBOSS: palindrome65, EMBOSS: pasteseq66, EMBOSS: patmatdb67, EMBOSS: pepcoil68, EMBOSS: pepinfo69, EMBOSS: pepnet70, EMBOSS: pepstats71, EMBOSS: pepwheel72, EMBOSS: pepwindow73, EMBOSS: pepwindowall74, EMBOSS: plotcon75, EMBOSS: plotorf76, EMBOSS: polydot77, EMBOSS: preg78, EMBOSS: prettyplot79, EMBOSS: prettyseq80, EMBOSS: primersearch81, EMBOSS: revseq82, EMBOSS: seqmatchall83, EMBOSS: seqret84, EMBOSS: showfeat85, EMBOSS: shuffleseq87, EMBOSS: sigcleave88, EMBOSS: sirna89, EMBOSS: sixpack90, EMBOSS: skipseq91, EMBOSS: splitter92, EMBOSS: supermatcher95, EMBOSS: syco96, EMBOSS: tcode97, EMBOSS: textsearch98, EMBOSS: tmap99, EMBOSS: tranalign100, EMBOSS: transeq101, EMBOSS: trimest102, EMBOSS: trimseq103, EMBOSS: twofeat104, EMBOSS: union105, EMBOSS: vectorstrip106, EMBOSS: water107, EMBOSS: wobble108, EMBOSS: wordcount109, EMBOSS: wordmatch110 Galaxy wrappers for EMBOSS version 5.0.0 tools emboss emboss EMBOSS Diverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool. Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis, Biology To update http://emboss.open-bio.org/ Sequence Analysis, Fasta Manipulation emboss_5 devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5 https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_5 5.0.0 emboss 6.6.0 Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis 107 107 107 107 107 107 107 107 0 0 0 0 107 0 0 0 0 0 0 0 0 0 107 0 0 107 0 0 0 107 0 0 0 0 0 0 0 107 107 0 1816 89530 +ena_upload ena_upload Submits experimental data and respective metadata to the European Nucleotide Archive (ENA). Up-to-date https://github.com/usegalaxy-eu/ena-upload-cli Data Export ena_upload iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ena_upload https://github.com/galaxyproject/tools-iuc/tree/main/tools/ena_upload 0.7.3 ena-upload-cli 0.7.3 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 14 208 +enasearch enasearch_retrieve_analysis_report, enasearch_retrieve_data, enasearch_retrieve_run_report, enasearch_retrieve_taxons, enasearch_search_data A Python library for interacting with ENA's API To update https://github.com/bebatut/enasearch Data Source enasearch iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/enasearch https://github.com/galaxyproject/tools-iuc/tree/main/tools/enasearch enasearch 0.2.2 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 126 2257 +ensembl_vep ensembl_vep Ensembl VEP: Annotate VCFs with variant effect predictions To update https://github.com/Ensembl/ensembl-vep Variant Analysis ensembl_vep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ensembl_vep https://github.com/galaxyproject/tools-iuc/tree/main/tools/ensembl_vep 110.1 ensembl-vep 112.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 119 2653 +episcanpy episcanpy_build_matrix, episcanpy_cluster_embed, episcanpy_preprocess EpiScanpy – Epigenomics single cell analysis in python episcanpy episcanpy epiScanpy Epigenomics Single Cell Analysis in Python. Enrichment analysis, Imputation Epigenomics, Cell biology, DNA To update https://github.com/colomemaria/epiScanpy Epigenetics episcanpy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/episcanpy 0.3.2 episcanpy 0.4.0 Enrichment analysis, Imputation Epigenomics, Cell biology, DNA 3 3 3 0 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 20 736 +exomedepth exomedepth ExomeDepth: Calls copy number variants (CNVs) from targeted sequence data exomedepth exomedepth ExomeDepth Copy number variant (CNV) calling algorithm designed to control technical variability between samples. It calls CNVs from targeted sequence data, typically exome sequencing experiments designed to identify the genetic basis of Mendelian disorders. Sequence analysis, Variant calling, Genotyping, Copy number estimation Exome sequencing, Gene transcripts, Mapping, Sequencing, Genetic variation, Rare diseases To update https://cran.r-project.org/package=ExomeDepth Sequence Analysis, Variant Analysis exomedepth crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/exomedepth https://github.com/galaxyproject/tools-iuc/tree/main/tools/exomedepth 1.1.0 r-exomedepth 1.1.16 Sequence analysis, Variant calling, Genotyping, Copy number estimation Exome sequencing, Gene transcripts, Mapping, Genetic variation, Rare diseases 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 29 410 +exonerate exonerate Exonerate is a generic tool for pairwise sequence comparison. exonerate exonerate Exonerate A tool for pairwise sequence alignment. It enables alignment for DNA-DNA and DNA-protein pairs and also gapped and ungapped alignment. Pairwise sequence alignment, Protein threading, Genome alignment Sequence analysis, Sequence sites, features and motifs, Molecular interactions, pathways and networks Up-to-date https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate Sequence Analysis exonerate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/exonerate https://github.com/galaxyproject/tools-iuc/tree/main/tools/exonerate 2.4.0 exonerate 2.4.0 Pairwise sequence alignment, Protein threading, Genome alignment Sequence analysis, Sequence sites, features and motifs, Molecular interactions, pathways and networks 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 59 988 +export2graphlan export2graphlan export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn export2graphlan export2graphlan export2graphlan export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn. In particular, the annotation file tries to highlight specific sub-trees deriving automatically from input file what nodes are important. Conversion Taxonomy, Metabolomics, Biomarkers To update https://bitbucket.org/CibioCM/export2graphlan/overview Metagenomics export2graphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/export2graphlan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/export2graphlan 0.20 export2graphlan 0.22 Conversion Taxonomy, Metabolomics, Biomarkers 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 5265 +extract_genomic_dna Extract genomic DNA 1 Contains a tool that extracts genomic DNA using coordinates from ASSEMBLED genomes and UNassembled genomes. To update Genomic Interval Operations extract_genomic_dna iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/extract_genomic_dna https://github.com/galaxyproject/tools-iuc/tree/main/tools/extract_genomic_dna 3.0.3+galaxy2 bx-python 0.12.0 1 0 1 0 1 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 285 11846 +falco falco A high throughput sequence QC analysis tool falco falco Falco A high-speed FastQC emulation for quality control of sequencing data. Sequencing quality control, Visualisation, Read mapping Workflows, Mapping, Imaging To update https://github.com/smithlabcode/falco/ Sequence Analysis falco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/falco https://github.com/galaxyproject/tools-iuc/tree/main/tools/falco 1.2.2+galaxy1 falco 1.2.3 Sequencing quality control, Visualisation, Read mapping Workflows, Mapping, Imaging 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fargene fargene fARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) fargene fargene fARGene fARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) is a tool that takes either fragmented metagenomic data or longer sequences as input and predicts and delivers full-length antiobiotic resistance genes as output. Antimicrobial resistance prediction Metagenomics, Microbiology, Public health and epidemiology Up-to-date https://github.com/fannyhb/fargene Sequence Analysis fargene iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fargene https://github.com/galaxyproject/tools-iuc/tree/main/tools/fargene 0.1 fargene 0.1 Antimicrobial resistance prediction Metagenomics, Microbiology, Public health and epidemiology 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 52 459 +fasplit fasplit faSplit is a tool to split a single FASTA file into several files UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Fasta Manipulation ucsc_fasplit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fasplit https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fasplit 377 ucsc-fasplit 469 Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 242 2644 +fasta_clipping_histogram cshl_fasta_clipping_histogram Length Distribution chart Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Graphics, Statistics fasta_clipping_histogram devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_clipping_histogram https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_clipping_histogram 0.0.14 fastx_toolkit 0.0.14 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +fasta_formatter cshl_fasta_formatter FASTA Width formatter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fasta_formatter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_formatter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_formatter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 68 2912 +fasta_nucleotide_changer cshl_fasta_nucleotides_changer RNA/DNA converter. Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fasta_nucleotide_changer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_nucleotide_changer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_nucleotide_changer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 29 774 +fasta_nucleotide_color_plot fasta_nucleotide_color_plot Contains a tool that produces a graphical representation of FASTA data with each nucleotide represented by a selected color. To update https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/fourcolorplot Visualization fasta_nucleotide_color_plot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_nucleotide_color_plot https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_nucleotide_color_plot 1.0.1 openjdk 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 160 +fasta_stats fasta-stats Display summary statistics for a fasta file. To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_stats/ Sequence Analysis fasta_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_stats/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_stats 2.0 numpy 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1080 35336 +fastani fastani Fast alignment-free computation of whole-genome Average Nucleotide Identity fastani fastani FastANI FastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies. Genome alignment, Sequence similarity search Microbiology, Genetic variation To update https://github.com/ParBLiSS/FastANI Sequence Analysis fastani iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastani https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastani 1.3 fastani 1.34 Genome alignment, Sequence similarity search Microbiology, Genetic variation 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 250 3498 +fastk fastk_fastk FastK: A K-mer counter (for HQ assembly data sets) To update https://github.com/thegenemyers/FASTK Assembly fastk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk 1.0.0 fastk 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fastp fastp Fast all-in-one preprocessing for FASTQ files fastp fastp fastp A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance. Sequencing quality control, Sequence contamination filtering Sequence analysis, Probes and primers Up-to-date https://github.com/OpenGene/fastp Sequence Analysis fastp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastp https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastp 0.23.4 fastp 0.23.4 Sequence contamination filtering Probes and primers 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 1 2803 1055760 +fastq_combiner fastq_combiner Combine FASTA and QUAL into FASTQ Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation, Fasta Manipulation fastq_combiner devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_combiner https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_combiner 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 66 8676 +fastq_filter fastq_filter Filter FASTQ reads by quality score and length Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_filter 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 266 14222 +fastq_groomer fastq_groomer Convert between various FASTQ quality formats. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_groomer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_groomer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_groomer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1028 94802 +fastq_manipulation fastq_manipulation Manipulate FASTQ reads on various attributes. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_manipulation devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_manipulation https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_manipulation 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 69 2503 +fastq_masker_by_quality fastq_masker_by_quality FASTQ Masker by quality score Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_masker_by_quality devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 170 +fastq_paired_end_deinterlacer fastq_paired_end_deinterlacer FASTQ de-interlacer on paired end reads. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_deinterlacer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 122 8410 +fastq_paired_end_interlacer fastq_paired_end_interlacer FASTQ interlacer on paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_interlacer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1087 17024 +fastq_paired_end_joiner fastq_paired_end_joiner FASTQ joiner on paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_joiner devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 245 16635 +fastq_paired_end_splitter fastq_paired_end_splitter FASTQ splitter on joined paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_splitter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 196 3092 +fastq_quality_boxplot cshl_fastq_quality_boxplot Draw quality score boxplot Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Graphics, Statistics fastq_quality_boxplot devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_boxplot https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_boxplot 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 51 1178 +fastq_quality_converter cshl_fastq_quality_converter Quality format converter (ASCII-Numeric) Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation fastq_quality_converter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_converter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 11 220 +fastq_quality_filter cshl_fastq_quality_filter Filter by quality Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation fastq_quality_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_filter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1509 15172 +fastq_stats fastq_stats FASTQ Summary Statistics by column Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_stats devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_stats https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_stats 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 221 4246 +fastq_to_fasta cshl_fastq_to_fasta FASTQ to FASTA converter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Convert Formats fastq_to_fasta devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fasta https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_to_fasta 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 419 13599 +fastq_to_tabular fastq_to_tabular FASTQ to Tabular converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_to_tabular devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_to_tabular https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_to_tabular 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 93 12593 +fastq_trimmer fastq_trimmer FASTQ Trimmer by quality Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_trimmer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_trimmer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_trimmer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 210 9757 +fastqc fastqc Read QC reports using FastQC fastqc fastqc FastQC This tool aims to provide a QC report which can spot problems or biases which originate either in the sequencer or in the starting library material. It can be run in one of two modes. It can either run as a stand alone interactive application for the immediate analysis of small numbers of FastQ files, or it can be run in a non-interactive mode where it would be suitable for integrating into a larger analysis pipeline for the systematic processing of large numbers of files. Sequence composition calculation, Sequencing quality control, Statistical calculation Sequencing, Data quality management, Sequence analysis To update http://www.bioinformatics.babraham.ac.uk/projects/fastqc/ Fastq Manipulation fastqc devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqc 0.74+galaxy1 fastqc 0.12.1 Sequence composition calculation, Sequencing quality control, Statistical calculation Sequencing, Data quality management, Sequence analysis 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 1 1 0 17447 1556625 +fastqe fastqe FASTQE fastqe fastqe FASTQE Compute quality stats for FASTQ files and print those stats as emoji... for some reason. Sequencing quality control Sequence analysis, Sequencing To update https://fastqe.com/ Sequence Analysis fastqe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqe https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqe 0.3.1+galaxy0 fastqe 0.3.1 Sequencing quality control Sequence analysis, Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1266 4333 +fastqtofasta fastq_to_fasta_python FASTQ to FASTA converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastqtofasta devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastqtofasta 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1371 178178 +fasttree fasttree FastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences - GVL fasttree fasttree FastTree Infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences. Phylogenetic tree generation (from molecular sequences), Phylogenetic tree generation (maximum likelihood and Bayesian methods) Phylogenetics, Sequence analysis To update http://www.microbesonline.org/fasttree/ Phylogenetics fasttree iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasttree https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasttree 2.1.10 fasttree 2.1.11 Phylogenetics 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 379 55434 +fastx_artifacts_filter cshl_fastx_artifacts_filter Remove sequencing artifacts Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_artifacts_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_artifacts_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_artifacts_filter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 27 1810 +fastx_barcode_splitter cshl_fastx_barcode_splitter Barcode Splitter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_barcode_splitter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_barcode_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_barcode_splitter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 128 16591 +fastx_clipper cshl_fastx_clipper Clip adapter sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_clipper devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_clipper https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_clipper 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 96 3333 +fastx_collapser cshl_fastx_collapser Collapse sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fastx_collapser devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_collapser https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_collapser 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 114 61218 +fastx_nucleotides_distribution cshl_fastx_nucleotides_distribution Draw nucleotides distribution chart Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Graphics fastx_nucleotides_distribution devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_nucleotides_distribution https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_nucleotides_distribution 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 25 249 +fastx_quality_statistics cshl_fastx_quality_statistics Compute quality statistics Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Statistics fastx_quality_statistics devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_quality_statistics https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_quality_statistics 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 63 2176 +fastx_renamer cshl_fastx_renamer Rename sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_renamer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_renamer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_renamer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 68 2280 +fastx_reverse_complement cshl_fastx_reverse_complement Reverse-Complement Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Fasta Manipulation fastx_reverse_complement devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_reverse_complement https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_reverse_complement 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 156 10832 +fastx_trimmer cshl_fastx_trimmer Trim sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_trimmer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_trimmer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_trimmer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 205 13149 +fatovcf fatovcf Convert a FASTA alignment file to Variant Call Format (VCF) single-nucleotide diffs UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis Up-to-date http://hgdownload.cse.ucsc.edu/admin/exe/ Convert Formats ucsc_fatovcf iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fatovcf https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fatovcf 448 ucsc-fatovcf 448 Sequence analysis 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 285 +featurecounts featurecounts featureCounts counts the number of reads aligned to defined masked regions in a reference genome featurecounts featurecounts FeatureCounts featureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package. Read summarisation, RNA-Seq quantification RNA-Seq To update http://bioinf.wehi.edu.au/featureCounts RNA, Transcriptomics, Sequence Analysis featurecounts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts https://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts 2.0.3 subread 2.0.6 Read summarisation, RNA-Seq quantification RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4679 696399 +feelnc feelnc Galaxy wrapper for FEELnc feelnc feelnc FEELnc A tool to annotate long non-coding RNAs from RNA-seq assembled transcripts. Annotation, Classification RNA-seq, Functional, regulatory and non-coding RNA To update https://github.com/tderrien/FEELnc Sequence Analysis feelnc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/feelnc https://github.com/galaxyproject/tools-iuc/tree/main/tools/feelnc 0.2.1 feelnc 0.2 Annotation, Classification Functional, regulatory and non-coding RNA 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 46 1191 +fermikit fermi2, fermikit_variants FermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data. Up-to-date https://github.com/lh3/fermikit Assembly, Variant Analysis fermikit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikit https://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikit r193 fermi2 r193 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fgsea fgsea Perform gene set testing using fgsea fgsea fgsea fgsea The package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction. Gene-set enrichment analysis Genetics To update https://bioconductor.org/packages/release/bioc/html/fgsea.html Visualization, Transcriptomics, Statistics fgsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fgsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea 1.8.0+galaxy1 bioconductor-fgsea 1.28.0 Gene-set enrichment analysis Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 307 5240 +filtlong filtlong Filtlong - Filtering long reads by quality filtlong filtlong Filtlong Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter. Filtering, Sequencing quality control Up-to-date https://github.com/rrwick/Filtlong Fastq Manipulation, Sequence Analysis filtlong iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlong https://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong 0.2.1 filtlong 0.2.1 Filtering, Sequencing quality control 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 617 30483 +flair flair_collapse, flair_correct FLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads. To update https://github.com/BrooksLabUCSC/flair Nanopore flair iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flair https://github.com/galaxyproject/tools-iuc/tree/main/tools/flair 1.5 flair 2.0.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 14 331 +flash flash Fast Length Adjustment of SHort reads flash flash FLASH Identifies paired-end reads which overlap in the middle, converting them to single long reads Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly Up-to-date https://ccb.jhu.edu/software/FLASH/ Assembly, Fastq Manipulation flash iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flash https://github.com/galaxyproject/tools-iuc/tree/main/tools/flash 1.2.11 flash 1.2.11 Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 74 13759 +fraggenescan fraggenescan Tool for finding (fragmented) genes in short read fraggenescan fraggenescan FragGeneScan Application for finding (fragmented) genes in short reads Gene prediction Genetics, Sequence analysis To update https://sourceforge.net/projects/fraggenescan/ Sequence Analysis fraggenescan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fraggenescan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/fraggenescan fraggenescan 1.31 Gene prediction Genetics, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 68 1102 +freebayes freebayes, bamleftalign Galaxy Freebayes Bayesian genetic variant detector tool freebayes freebayes FreeBayes Bayesian genetic variant detector designed to find small polymorphisms, specifically SNPs, indels, multi-nucleotide polymorphisms, and complex events (composite insertion and substitution events) smaller than the length of a short-read sequencing alignment. Variant calling, Statistical calculation Genomics, Genetic variation, Rare diseases To update https://github.com/ekg/freebayes Variant Analysis freebayes devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/freebayes https://github.com/galaxyproject/tools-iuc/tree/main/tools/freebayes 1.3.6 freebayes 1.3.7 Variant calling, Statistical calculation Genomics, Genetic variation, Rare diseases 2 2 2 2 2 2 2 2 0 2 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 3059 155087 +freec control_freec Control-FREEC is a tool for detection of copy-number changes and allelic imbalances (including LOH) using deep-sequencing data originally developed by the Bioinformatics Laboratory of Institut Curie (Paris). It automatically computes, normalizes, segments copy number and beta allele frequency (BAF) profiles, then calls copy number alterations and LOH. freec freec FREEC A tool for control-free copy number alteration (CNA) and allelic imbalances (LOH) detection using deep-sequencing data, particularly useful for cancer studies. Copy number estimation, Variant calling, Genome alignment DNA structural variation, Oncology, Human genetics, Data mining To update http://boevalab.inf.ethz.ch/FREEC/ Variant Analysis control_freec iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/freec https://github.com/galaxyproject/tools-iuc/tree/main/tools/freec 11.6 gawk Copy number estimation, Variant calling, Genome alignment Oncology, Human genetics, Data mining 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 44 665 +freyja freyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variants lineage abundances estimation freyja freyja Freyja Recover relative lineage abundances from mixed SARS-CoV-2 samples from a sequencing dataset RNA-Seq quantification Metagenomics To update https://github.com/andersen-lab/Freyja Metagenomics, Sequence Analysis freyja iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/freyja https://github.com/galaxyproject/tools-iuc/tree/main/tools/freyja 1.4.4 freyja 1.5.1 RNA-Seq quantification Metagenomics 2 0 4 0 2 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 55 20021 +fsd fsd, fsd_beforevsafter, fsd_regions, td Tool that plots a histogram of sizes of read families To update Graphics duplex_family_size_distribution iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fsd https://github.com/galaxyproject/tools-iuc/tree/main/tools/fsd 1.0.2 matplotlib 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +funannotate funannotate_annotate, funannotate_clean, funannotate_compare, funannotate_predict, funannotate_sort Funannotate is a genome prediction, annotation, and comparison software package. funannotate funannotate funannotate funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes). Genome annotation Genomics To update https://funannotate.readthedocs.io Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate 1.8.15 Genome annotation Genomics 3 5 5 5 3 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 900 5906 +gatk4 gatk4_mutect2 A Galaxy wrapper for Mutect2 from GATK To update https://software.broadinstitute.org/gatk/gatk4 Variant Analysis gatk4_mutect2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gatk4 https://github.com/galaxyproject/tools-iuc/tree/main/tools/gatk4 4.1.7.0 gatk4 4.5.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 181 2483 +gdcwebapp data_source_gdcwebapp GDCWebApp automatically filter, extract, and convert genomic data from the Genomic Data Commons portal to BED format To update http://bioinf.iasi.cnr.it/gdcwebapp/ Data Source, Convert Formats gdcwebapp iuc https://github.com/fabio-cumbo/GDCWebApp4Galaxy https://github.com/galaxyproject/tools-iuc/tree/main/tools/gdcwebapp 1.0.0 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gecko gecko Ungapped genome comparison Up-to-date https://github.com/otorreno/gecko Sequence Analysis gecko iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gecko https://github.com/galaxyproject/tools-iuc/tree/main/tools/gecko 1.2 gecko 1.2 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 112 519 +gemini gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_db_info, gemini_@BINARY@, gemini_@BINARY@, gemini_inheritance, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@ GEMINI: a flexible framework for exploring genome variation gemini gemini GEMINI GEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics. Sequence analysis, Genetic variation analysis Sequence analysis To update https://github.com/arq5x/gemini Sequence Analysis, Next Gen Mappers gemini iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini https://github.com/galaxyproject/tools-iuc/tree/main/tools/gemini 0.20.1 gemini 0.30.2 Sequence analysis, Genetic variation analysis Sequence analysis 1 2 2 2 1 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 662 4916 +genebed_maf_to_fasta GeneBed_Maf_Fasta2 Stitch gene blocks given a set of coding exon intervals To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/genebed_maf_to_fasta/ Genomic Interval Operations genebed_maf_to_fasta iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genebed_maf_to_fasta/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/genebed_maf_to_fasta 1.0.1+galaxy0 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 1 4 +genehunter_modscore genehunter_modscore Maximised LOD score pedigree analysis utility To update https://www.unimedizin-mainz.de/imbei/biometricsgenomic-statistics-and-bioinformatics/software/genehunter-modscore-40.html?L=1 Variant Analysis genehunter_modscore iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genehunter_modscore/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/genehunter_modscore 3.0.0 ghm 3.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +geneiobio gene_iobio_display_generation_iframe Gene.iobio is an interactive tool for variant and trio analysis. To update https://github.com/iobio/gene.iobio Sequence Analysis geneiobio iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/geneiobio https://github.com/galaxyproject/tools-iuc/tree/main/tools/geneiobio 4.7.1+galaxy1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 67 +genetrack genetrack "Contains a tool that separately identifies peaks on the forward ""+” (W) and reverse “-” (C) strand." To update ChIP-seq genetrack iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genetrack https://github.com/galaxyproject/tools-iuc/tree/main/tools/genetrack numpy 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +genomescope genomescope Analyze unassembled short reads Up-to-date https://github.com/tbenavi1/genomescope2.0 Statistics genomescope iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomescope https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomescope 2.0.1 genomescope2 2.0.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 329 2118 +genomic_super_signature genomic_super_signature Interpretation of RNAseq experiments through robust, efficient comparison to public databases genomicsupersignature genomicsupersignature GenomicSuperSignature GenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases. Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment To update https://github.com/shbrief/GenomicSuperSignature Sequence Analysis, RNA, Transcriptomics genomic_super_signature iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signature https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature 1.2.0 bioconductor-genomicsupersignature 1.10.0 Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 11 46 +genrich genrich Genrich is a peak-caller for genomic enrichment assays (e.g. ChIP-seq, ATAC-seq). To update https://github.com/jsh58/Genrich ChIP-seq genrich iuc https://github.com/jsh58/Genrich https://github.com/galaxyproject/tools-iuc/tree/main/tools/genrich 0.5+galaxy2 genrich 0.6.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 79 3515 +get_hrun get_hrun Annotate indel variants with homopolymer context To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/get_hrun Variant Analysis get_hrun iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/get_hrun https://github.com/galaxyproject/tools-iuc/tree/main/tools/get_hrun 0.5.9.2 pyfaidx 0.8.1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 4 +getorganelle get_annotated_regions_from_gb, get_organelle_from_reads GetOrganelle - This toolkit assembles organelle genomes from genomic skimming data. getorganelle getorganelle GetOrganelle A fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data. De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms Up-to-date https://github.com/Kinggerm/GetOrganelle Assembly getorganelle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganelle https://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle 1.7.7.1 getorganelle 1.7.7.1 De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 18 495 +gfa_to_fa gfa_to_fa gfa_to_fa - Converting GFA format to Fasta format To update http://gfa-spec.github.io/GFA-spec/ Convert Formats gfa_to_fa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gfa_to_fa https://github.com/galaxyproject/tools-iuc/tree/main/tools/gfa_to_fa 0.1.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 332 8274 +gff3_rebase gff3.rebase Rebase a GFF against a parent GFF (e.g. an original genome) To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/gff3_rebase Sequence Analysis gff3_rebase iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gff3_rebase https://github.com/galaxyproject/tools-iuc/tree/main/tools/gff3_rebase 1.2 bcbiogff 0.6.6 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 135 +gffcompare gffcompare Galaxy wrappers for Geo Pertea's GffCompare package. gffcompare gffcompare gffcompare Program for comparing, annotating, merging and tracking transcripts in GFF files. Sequence annotation Nucleic acids, Sequence analysis Up-to-date https://github.com/gpertea/gffcompare/ Transcriptomics gffcompare iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare 0.12.6 gffcompare 0.12.6 Sequence annotation Nucleic acids, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 381 3477 +gffread gffread gffread filters and/or converts GFF3/GTF2 records gffread gffread gffread program for filtering, converting and manipulating GFF files Sequence annotation Nucleic acids, Sequence analysis Up-to-date http://ccb.jhu.edu/software/stringtie/gff.shtml#gffread/ Sequence Analysis gffread devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffread https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffread 0.12.7 gffread 0.12.7 Sequence annotation Nucleic acids, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 680 10995 +ggplot2 ggplot2_heatmap, ggplot2_pca, ggplot2_histogram, ggplot2_point, ggplot2_violin ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics.You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to use,and it takes care of the details. ggplot2 ggplot2 ggplot2 Plotting system for R, based on the grammar of graphics. Visualisation Data visualisation To update https://github.com/tidyverse/ggplot2 Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/ggplot2 3.4.0 r-base Visualisation Data visualisation 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 1 0 5 0 0 0 0 0 0 3 0 0 0 0 0 0 0 5 5 0 1388 22148 +ggupset emc-ggupset Create Upset Plots with ggupset To update https://github.com/const-ae/ggupset Graphics ggupset iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggupset https://github.com/galaxyproject/tools-iuc/tree/main/tools/ggupset 1.0 r-ggupset 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +glimmer glimmer_acgt_content, glimmer_build_icm, glimmer_extract, glimmer_gbk_to_orf, glimmer_glimmer_to_gff, glimmer_long_orfs, glimmer_knowledge_based, glimmer_not_knowledge_based Glimmer makes gene predictions. gemini gemini GEMINI GEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics. Sequence analysis, Genetic variation analysis Sequence analysis To update https://ccb.jhu.edu/software/glimmer/ Sequence Analysis bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/glimmer glimmer 3.02 Sequence analysis, Genetic variation analysis Sequence analysis 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 187 3965 +goenrichment goenrichment, goslimmer Performs GO Enrichment analysis. goenrichment goenrichment GOEnrichment GOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência. Gene-set enrichment analysis Transcriptomics Up-to-date https://github.com/DanFaria/GOEnrichment Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment https://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment 2.0.1 goenrichment 2.0.1 Gene-set enrichment analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 408 5484 +goseq goseq goseq does selection-unbiased testing for category enrichment amongst differentially expressed (DE) genes for RNA-seq data goseq goseq GOseq Detect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data. Gene functional annotation RNA-Seq To update https://bioconductor.org/packages/release/bioc/html/goseq.html Statistics, RNA, Micro-array Analysis goseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/goseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/goseq 1.50.0 bioconductor-goseq 1.54.0 Gene functional annotation RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1210 19167 +gprofiler gprofiler_convert, gprofiler_gost, gprofiler_orth, gprofiler_random, gprofiler_snpense functional enrichment analysis of gene lists, convertion between various types of namespaces, translation gene identifiers between organisms and more To update https://biit.cs.ut.ee/gprofiler Statistics, Web Services gprofiler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gprofiler/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/gprofiler @TOOL_VERSION@+galaxy11 r-gprofiler2 5 0 5 0 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 196 3443 +graphembed graphembed Compute a 2D embedding of a data matrix given supervised class information Up-to-date https://github.com/fabriziocosta/GraphEmbed Statistics, Graphics graphembed iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/graphembed/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphembed 2.4 graph_embed 2.4 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 63 +graphlan graphlan, graphlan_annotate GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees graphlan graphlan GraPhlAn GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees. GraPhlAn focuses on concise, integrative, informative, and publication-ready representations of phylogenetically- and taxonomically-driven investigation. Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classification Metagenomics, Phylogenetics, Phylogenomics, Cladistics To update https://github.com/biobakery/graphlan Metagenomics, Graphics, Phylogenetics graphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphlan graphlan 1.1.3 Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classification Metagenomics, Phylogenetics, Phylogenomics, Cladistics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 432 9277 +gtdb_to_taxdump gtdb_to_taxdump Convert GTDB taxonomy to NCBI taxdump format gtdb_to_taxdump gtdb_to_taxdump gtdb_to_taxdump Tool with multiple functions. Main functions are to create a DIAMOND database from the GTDB taxonomy data or create a NCBI taxdump format out of this data. This tool can also create a mapping between the taxonomy classification between GTDB and NCBI. Data handling, Mapping, Generation Computational biology Up-to-date https://github.com/nick-youngblut/gtdb_to_taxdump Metagenomics gtdb_to_taxdump iuc https://github.com/nick-youngblut/gtdb_to_taxdump https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdb_to_taxdump 0.1.9 gtdb_to_taxdump 0.1.9 Data handling, Mapping, Generation Computational biology 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gtdbtk gtdbtk_classify_wf GTDB-Tk is a software tool kit for assigning objective taxonomic classifications to bacterial and archaeal genomesbased on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds orthousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can alsobe applied to isolate and single-cell genomes. GTDB-Tk GTDB-Tk GTDB-Tk a toolkit to classify genomes with the Genome Taxonomy Database.GTDB-Tk: a toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes.GTDB-Tk is a software toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes based on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds or thousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can also be applied to isolate and single-cell genomes. The GTDB-Tk is open source and released under the GNU General Public License (Version 3). Genome alignment, Taxonomic classification, Sequence assembly, Query and retrieval Metagenomics, Taxonomy, Phylogenetics, Database management, Proteins To update https://github.com/Ecogenomics/GTDBTk Metagenomics gtdbtk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gtdbtk https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdbtk 2.3.2 gtdbtk 2.4.0 Genome alignment, Taxonomic classification, Sequence assembly, Query and retrieval Metagenomics, Taxonomy, Phylogenetics, Database management, Proteins 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gtfToBed12 gtftobed12 Convert GTF files to BED12 format UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://genome-source.cse.ucsc.edu/gitweb/?p=kent.git;a=blob;f=src/userApps/README Convert Formats gtftobed12 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gtfToBed12 https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtfToBed12 357 ucsc-gtftogenepred 469 Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1200 8107 +gubbins gubbins Gubbins - bacterial recombination detection gubbins gubbins Gubbins Gubbins is a tool for rapid phylogenetic analysis of large samples of recombinant bacterial whole genome sequences. Genotyping, Phylogenetic inference, Ancestral reconstruction Phylogeny, Genotype and phenotype, Whole genome sequencing To update Sequence Analysis gubbins iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gubbins https://github.com/galaxyproject/tools-iuc/tree/main/tools/gubbins 3.2.1 gubbins 3.3.5 Genotyping, Phylogenetic inference, Ancestral reconstruction Phylogeny, Genotype and phenotype, Whole genome sequencing 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 145 3340 +gvcftools gvcftools_extract_variants gvcftools is a set of utilities to help create and analyze Genome VCF (gVCF) files.gVCF are VCF 4.1 files which follow a set of conventions for representing all sitesin the genome, further described at https://sites.google.com/site/gvcftools/home/about-gvcf. To update https://github.com/sequencing/gvcftools Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gvcftools https://github.com/galaxyproject/tools-iuc/tree/main/tools/gvcftools 0.1 gvcftools 0.17.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gwastools gwastools_manhattan_plot gwastools gwastools GWASTools Classes for storing very large GWAS data sets and annotation, and functions for GWAS data cleaning and analysis. Deposition, Analysis, Annotation GWAS study To update https://bioconductor.org/packages/release/bioc/html/GWASTools.html Visualization, Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/gwastools 0.1.0 bioconductor-gwastools 1.48.0 Deposition, Analysis, Annotation GWAS study 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +hamronization hamronize_summarize, hamronize_tool Convert AMR gene detection tool output to hAMRonization specification format. hamronization hamronization hAMRonization Parse multiple Antimicrobial Resistance Analysis Reports into a common data structure Data handling, Antimicrobial resistance prediction, Parsing Public health and epidemiology, Microbiology, Bioinformatics Up-to-date https://github.com/pha4ge/hAMRonization Sequence Analysis hamronization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hamronization https://github.com/galaxyproject/tools-iuc/tree/main/tools/hamronization 1.1.4 hamronization 1.1.4 Antimicrobial resistance prediction, Parsing Public health and epidemiology, Microbiology, Bioinformatics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 117 4459 +hansel bio_hansel Heidelberg and Enteritidis SNP Elucidation Biohansel Biohansel BioHansel BioHansel is a tool for performing high-resolution genotyping of bacterial isolates by identifying phylogenetically informative single nucleotide polymorphisms (SNPs), also known as canonical SNPs, in whole genome sequencing (WGS) data. The application uses a fast k-mer matching algorithm to map pathogen WGS data to canonical SNPs contained in hierarchically structured schemas and assigns genotypes based on the detected SNP profile. Genotyping, SNP detection, Genome assembly Whole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural science Up-to-date https://github.com/phac-nml/bio_hansel Sequence Analysis bio_hansel iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel https://github.com/galaxyproject/tools-iuc/tree/main/tools/hansel 2.6.1 bio_hansel 2.6.1 Genotyping, SNP detection, Genome assembly Whole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural science 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 339 +hapcut2 hapcut2 Robust and accurate haplotype assembly for diverse sequencing technologies hapcut2 hapcut2 HapCUT2 "HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to ""just work"" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.md" Haplotype mapping, Variant classification Up-to-date https://github.com/vibansal/HapCUT2 Assembly hapcut2 galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut2 1.3.4 hapcut2 1.3.4 Haplotype mapping, Variant classification 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hapog hapog Hapo-G - Haplotype-Aware Polishing of Genomes hapog hapog Hapo-G Hapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes. Genome assembly, Optimisation and refinement Sequence assembly, Genomics Up-to-date https://github.com/institut-de-genomique/HAPO-G Assembly hapog iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog 1.3.8 hapog 1.3.8 Genome assembly, Optimisation and refinement Sequence assembly, Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 295 +happy som.py A tool to perform comparisons only based on chromosome, position, and allele identity for comparison of somatic callsets. hap.py hap.py hap.py This is a set of programs based on htslib to benchmark variant calls against gold standard truth datasets.To compare a VCF against a gold standard dataset, use the following commmand line to perform genotype-level haplotype comparison. Variant calling, Sequence analysis, Genotyping Genomics, DNA polymorphism To update https://github.com/Illumina/hap.py Variant Analysis happy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/happy https://github.com/galaxyproject/tools-iuc/tree/main/tools/happy 0.3.14 hap.py 0.3.15 Variant calling, Sequence analysis, Genotyping Genomics, DNA polymorphism 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +heatmap2 ggplot2_heatmap2 heatmap.2 function from the R gplots package To update https://github.com/cran/gplots Visualization ggplot2_heatmap2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/heatmap2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/heatmap2 3.1.3.1 r-gplots 2.17.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1953 44240 +heinz heinz_bum, heinz, heinz_scoring, heinz_visualization An algorithm for identification of the optimal scoring subnetwork. heinz bionet, heinz Heinz Tool for single-species active module discovery. Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks To update https://github.com/ls-cwi/heinz Transcriptomics, Visualization, Statistics heinz iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz https://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz 1.0 bioconductor-bionet 1.62.0 Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 242 1186 +hgvsparser hgvsparser Parsing and building variant descriptor strings compliant with the HGVS standard To update https://github.com/VariantEffect/hgvsParseR/tree/master Variant Analysis hgvsparser iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hgvsparser/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/hgvsparser 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hicexplorer hicexplorer_chicaggregatestatistic, hicexplorer_chicdifferentialtest, hicexplorer_chicexportdata, hicexplorer_chicplotviewpoint, hicexplorer_chicqualitycontrol, hicexplorer_chicsignificantinteractions, hicexplorer_chicviewpoint, hicexplorer_chicviewpointbackgroundmodel, hicexplorer_hicadjustmatrix, hicexplorer_hicaggregatecontacts, hicexplorer_hicaverageregions, hicexplorer_hicbuildmatrix, hicexplorer_hiccomparematrices, hicexplorer_hiccompartmentspolarization, hicexplorer_hicconvertformat, hicexplorer_hiccorrectmatrix, hicexplorer_hiccorrelate, hicexplorer_hicdetectloops, hicexplorer_hicdifferentialtad, hicexplorer_hicfindrestrictionsites, hicexplorer_hicfindtads, hicexplorer_hichyperoptDetectLoops, hicexplorer_hicinfo, hicexplorer_hicinterintratad, hicexplorer_hicmergedomains, hicexplorer_hicmergeloops, hicexplorer_hicmergematrixbins, hicexplorer_hicnormalize, hicexplorer_hicpca, hicexplorer_hicplotaverageregions, hicexplorer_hicplotdistvscounts, hicexplorer_hicplotmatrix, hicexplorer_hicplotsvl, hicexplorer_hicplotviewpoint, hicexplorer_hicquickqc, hicexplorer_hicsummatrices, hicexplorer_hictransform, hicexplorer_hicvalidatelocations HiCExplorer: Set of programs to process, analyze and visualize Hi-C data. Up-to-date https://github.com/deeptools/HiCExplorer Sequence Analysis, Visualization hicexplorer bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer https://github.com/galaxyproject/tools-iuc/tree/main/tools/hicexplorer 3.7.5 hicexplorer 3.7.5 38 38 38 4 38 38 38 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 36 33 0 1085 66003 +hicstuff hicstuff_pipeline A toolkit to generate and manipulate Hi-C matrices To update https://github.com/koszullab/hicstuff Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicstuff https://github.com/galaxyproject/tools-iuc/tree/main/tools/hicstuff 3.1.5 hicstuff 3.2.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hifiasm hifiasm A fast haplotype-resolved de novo assembler Up-to-date https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm 0.19.9 hifiasm 0.19.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 297 1410 +hifiasm_meta hifiasm_meta A hifiasm fork for metagenome assembly using Hifi reads. hifiasm-meta hifiasm-meta Hifiasm-meta Hifiasm_meta - de novo metagenome assembler, based on hifiasm, a haplotype-resolved de novo assembler for PacBio Hifi reads. Sequence assembly Sequence assembly, Metagenomics To update https://github.com/xfengnefx/hifiasm-meta Metagenomics hifiasm_meta galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/hifiasm_meta https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm_meta 0.3.1 hifiasm_meta hamtv0.3.1 Sequence assembly Sequence assembly, Metagenomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 137 +hisat2 hisat2 HISAT2 is a fast and sensitive spliced alignment program. hisat2 hisat2 HISAT2 Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome). Sequence alignment RNA-seq Up-to-date http://ccb.jhu.edu/software/hisat2/ Assembly hisat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat2 2.2.1 hisat2 2.2.1 Sequence alignment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4183 299104 +hivclustering hivclustering Infers transmission networks from pairwise distances inferred by tn93 To update https://pypi.org/project/hivclustering/ Next Gen Mappers hivclustering iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hivclustering/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/hivclustering 1.3.1 python-hivclustering 1.6.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hmmer3 hmmer_alimask, hmmer_hmmalign, hmmer_hmmbuild, hmmer_hmmconvert, hmmer_hmmemit, hmmer_hmmfetch, hmmer_hmmscan, hmmer_hmmsearch, hmmer_jackhmmer, hmmer_nhmmer, hmmer_nhmmscan, hmmer_phmmer HMMER is used for searching sequence databases for homologs of proteinsequences, and for making protein sequence alignments. It implementsmethods using probabilistic models called profile hidden Markov models(profile HMMs). hmmer3 hmmer3 HMMER3 This tool is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models. The new HMMER3 project, HMMER is now as fast as BLAST for protein search. Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Sequence generation, Data retrieval, Statistical calculation, Database search, Formatting, Database search, Database search, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Database search, Sequence database search Sequence analysis, Sequence sites, features and motifs, Gene and protein families Up-to-date http://hmmer.org/ Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hmmer3 3.4 hmmer 3.4 Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Data retrieval, Statistical calculation, Formatting, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Sequence database search Sequence analysis, Sequence sites, features and motifs, Gene and protein families 0 12 12 12 0 12 12 12 0 0 0 0 12 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 0 439 33702 +homer homer_annotatePeaks, homer_findMotifs, homer_findMotifsGenome, homer_gtf_to_annotations, homer_scanMotifGenomeWide HOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and next-gen sequencing analysis. homer homer homer HOMER contains a novel motif discovery algorithm that was designed for regulatory element analysis in genomics applications (DNA only, no protein). It is a differential motif discovery algorithm, which means that it takes two sets of sequences and tries to identify the regulatory elements that are specifically enriched in on set relative to the other. It uses ZOOPS scoring (zero or one occurrence per sequence) coupled with the hypergeometric enrichment calculations (or binomial) to determine motif enrichment. HOMER also tries its best to account for sequenced bias in the dataset. It was designed with ChIP-Seq and promoter analysis in mind, but can be applied to pretty much any nucleic acids motif finding problem. Sequence motif discovery Up-to-date http://homer.ucsd.edu/homer/index.html Sequence Analysis data_manager_homer_preparse iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/homer https://github.com/galaxyproject/tools-iuc/tree/main/tools/homer 4.11 homer 4.11 Sequence motif discovery 0 0 5 4 0 0 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 5 0 0 394 6937 +htseq_count htseq_count Count aligned reads (SAM/BAM) that overlap genomic features (GFF) htseq htseq HTSeq Python framework to process and analyse high-throughput sequencing (HTS) data Nucleic acid sequence analysis Sequence analysis Up-to-date https://readthedocs.org/projects/htseq/ Genomic Interval Operations, SAM, Sequence Analysis, RNA htseq_count lparsons https://github.com/galaxyproject/tools-iuc/tree/master/tools/htseq_count https://github.com/galaxyproject/tools-iuc/tree/main/tools/htseq_count 2.0.5 htseq 2.0.5 Nucleic acid sequence analysis Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1419 154533 +humann humann, humann_associate, humann_barplot, humann_join_tables, humann_reduce_table, humann_regroup_table, humann_rename_table, humann_renorm_table, humann_rna_dna_norm, humann_split_stratified_table, humann_split_table, humann_strain_profiler, humann_unpack_pathways HUMAnN for functionally profiling metagenomes and metatranscriptomes at species-level resolution humann humann humann HUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data (typically millions of short DNA/RNA reads). This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question “What are the microbes in my community-of-interest doing (or are capable of doing)?” Species frequency estimation, Taxonomic classification, Phylogenetic analysis Metagenomics, Phylogenomics To update http://huttenhower.sph.harvard.edu/humann Metagenomics humann iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann https://github.com/galaxyproject/tools-iuc/tree/main/tools/humann 3.8 humann 3.9 Species frequency estimation, Taxonomic classification, Phylogenetic analysis Metagenomics, Phylogenomics 6 13 13 13 6 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 13 0 1045 19521 +hybpiper hybpiper Analyse targeted sequence capture data HybPiper HybPiper HybPiper Paralogs and off-target sequences improve phylogenetic resolution in a densely-sampled study of the breadfruit genus (Artocarpus, Moraceae).Recovering genes from targeted sequence capture data.Current version: 1.3.1 (August 2018).-- Read our article in Applications in Plant Sciences (Open Access).HybPiper was designed for targeted sequence capture, in which DNA sequencing libraries are enriched for gene regions of interest, especially for phylogenetics. HybPiper is a suite of Python scripts that wrap and connect bioinformatics tools in order to extract target sequences from high-throughput DNA sequencing reads. Sequence trimming, Sequence assembly, Read mapping Phylogenetics, Plant biology, Gene transcripts, Sequence assembly, Phylogenomics To update https://github.com/mossmatters/HybPiper Sequence Analysis, Phylogenetics hybpiper iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hybpiper https://github.com/galaxyproject/tools-iuc/tree/main/tools/hybpiper 2.1.6 hybpiper 2.2.0 Sequence trimming, Sequence assembly, Read mapping Phylogenetics, Plant biology, Gene transcripts, Sequence assembly, Phylogenomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hyphy hyphy_absrel, hyphy_annotate, hyphy_bgm, hyphy_busted, hyphy_cfel, hyphy_conv, hyphy_fade, hyphy_fel, hyphy_fubar, hyphy_gard, hyphy_meme, hyphy_prime, hyphy_relax, hyphy_slac, hyphy_sm19, hyphy_strike_ambigs, hyphy_summary Hypothesis Testing using Phylogenies HyPhy HyPhy HyPhy Software package for the analysis of genetic sequences using techniques in phylogenetics, molecular evolution, and machine learning. Statistical calculation Phylogeny, Small molecules, Molecular interactions, pathways and networks To update http://www.hyphy.org Phylogenetics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/hyphy 2.5.47 hyphy 2.5.62 Statistical calculation Phylogeny, Small molecules, Molecular interactions, pathways and networks 17 2 17 2 17 2 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 17 12 0 161 10370 +hypo hypo Super Fast & Accurate Polisher for Long Read Genome Assemblies HyPo HyPo HyPo HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes. Optimisation and refinement, Genome assembly Sequence assembly, Genomics Up-to-date https://github.com/kensung-lab/hypo Assembly hypo iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo https://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo 1.0.3 hypo 1.0.3 Optimisation and refinement, Genome assembly Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 39 354 +icescreen icescreen ICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes. icescreen icescreen ICEscreen A tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures. Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation To update https://icescreen.migale.inrae.fr/ Genome annotation icescreen iuc https://forgemia.inra.fr/ices_imes_analysis/icescreen https://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen 1.3.1 icescreen 1.3.2 Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +idba_ud idba_hybrid, idba_tran, idba_ud Wrappers for the idba assembler variants. idba idba IDBA A short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system. Sequence assembly Sequence assembly To update https://i.cs.hku.hk/~alse/hkubrg/projects/index.html Assembly idba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud https://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_ud idba 1.1.3 Sequence assembly Sequence assembly 3 0 3 3 3 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 69 1127 +idr idr Galaxy wrappers for the IDR package from Nathan Boleu To update https://github.com/nboley/idr Sequence Analysis idr iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idr/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/idr 2.0.3 idr 2.0.4.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 30 2873 +idr_download idr_download_by_ids Image Data Resource downloading tool To update https://idr.openmicroscopy.org Data Source idr_download_by_ids iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idr_download https://github.com/galaxyproject/tools-iuc/tree/main/tools/idr_download 0.44.1 omero-py 5.11.1 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 361 +iedb_api iedb_api Get epitope binding predictions from IEDB-API To update http://tools.immuneepitope.org/main/tools-api/ Data Source, Sequence Analysis iedb_api iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/iedb_api https://github.com/galaxyproject/tools-iuc/tree/main/tools/iedb_api 2.15.2 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 1506 +infercnv infercnv Infer Copy Number Variation from Single-Cell RNA-Seq Data Up-to-date https://github.com/broadinstitute/infercnv Transcriptomics, Variant Analysis infercnv iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/infercnv https://github.com/galaxyproject/tools-iuc/tree/main/tools/infercnv 1.20.0 bioconductor-infercnv 1.20.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +instrain instrain_compare, instrain_profile InStrain is a tool for analysis of co-occurring genome populations from metagenomes instrain instrain InStrain InStrain is a tool for analysis of co-occurring genome populations from metagenomes that allows highly accurate genome comparisons, analysis of coverage, microdiversity, and linkage, and sensitive SNP detection with gene localization and synonymous non-synonymous identification SNP detection, Genome comparison Mapping, Metagenomics To update https://instrain.readthedocs.io/en/latest/# Metagenomics instrain iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/instrain https://github.com/galaxyproject/tools-iuc/tree/main/tools/instrain 1.5.3 instrain 1.9.0 SNP detection, Genome comparison Mapping, Metagenomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 94 +integron_finder integron_finder """IntegronFinder identify integrons with high accuracy and sensitivity.It searches for attC sites using covariance models, for integron-integrases using HMM profiles, and for other features (promoters, attI site) using pattern matching""" integron_finder integron_finder Integron Finder A tool to detect Integron in DNA sequences. Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotation Functional genomics, Mobile genetic elements, Molecular biology, Sequence analysis Up-to-date https://github.com/gem-pasteur/Integron_Finder Sequence Analysis integronfinder iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/integron_finder https://github.com/galaxyproject/tools-iuc/tree/main/tools/integron_finder 2.0.5 integron_finder 2.0.5 Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotation Functional genomics, Mobile genetic elements, Molecular biology, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 58 52965 +intermine_galaxy_exchange galaxy_intermine_exchange InterMine Exporter To update https://github.com/intermine Convert Formats intermine_galaxy_exchange iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/intermine_galaxy_exchange https://github.com/galaxyproject/tools-iuc/tree/main/tools/intermine_galaxy_exchange 0.0.1 coreutils 8.25 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 44 +interproscan interproscan Interproscan queries the interpro database and provides annotations. interproscan_ebi interproscan_ebi InterProScan (EBI) Scan sequences against the InterPro protein signature databases. Sequence motif recognition, Protein feature detection Gene and protein families, Sequence analysis To update http://www.ebi.ac.uk/Tools/pfa/iprscan5/ Sequence Analysis interproscan bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/interproscan https://github.com/galaxyproject/tools-iuc/tree/main/tools/interproscan 5.59-91.0 interproscan 5.59_91.0 Sequence motif recognition, Protein feature detection Gene and protein families, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 677 35243 +interval2maf Interval2Maf1 Extract MAF blocks given a set of intervals bx-python bx-python bx-python Tools for manipulating biological data, particularly multiple sequence alignments. Sequence analysis To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/ Genomic Interval Operations interval2maf iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/interval2maf 1.0.1+galaxy1 bx-python 0.12.0 Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 105 +intervene intervene_pairwise, intervene_upset Create pairwise and upset plots intervene intervene Intervene Tool for intersection and visualization of multiple gene or genomic region sets. Intervene contains three modules: venn to generate Venn diagrams of up to six sets, upset to generate UpSet plots of multiple sets, and pairwise to compute and visualize intersections of multiple sets as clustered heat maps. Sequence comparison, Sequence visualisation Computational biology Up-to-date https://intervene.readthedocs.io Statistics intervene iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/intervene https://github.com/galaxyproject/tools-iuc/tree/main/tools/intervene 0.6.5 intervene 0.6.5 Sequence comparison, Sequence visualisation Computational biology 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 136 1497 +iqtree iqtree Efficient phylogenomic software by maximum likelihood iqtree iqtree iqtree A fast and effective stochastic algorithm to infer phylogenetic trees by maximum likelihood. IQ-TREE compares favorably to RAxML and PhyML in terms of likelihoods with similar computing time Phylogenetic analysis, Sequence analysis Phylogenetics Up-to-date http://www.iqtree.org/ Phylogenetics iqtree iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/iqtree/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/iqtree 2.3.6 iqtree 2.3.6 Phylogenetic analysis, Sequence analysis Phylogenetics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 681 21598 +irissv irissv Refine insertion sequences To update https://github.com/mkirsche/Iris Variant Analysis irissv iuc https://github.com/galaxyproject/tools-iuc/tools/irissv/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/irissv 1.0.5 samtools 1.20 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 29 +isescan isescan """ISEScan is a pipeline to identify IS (Insertion Sequence) elements in genome and metagenomebased on profile hidden Markov models constructed from manually curated IS elements.""" ISEScan ISEScan ISEScan Automated identification of insertion sequence elements in prokaryotic genomes. Structural variation detection Genomics, DNA structural variation, Sequence analysis, Genetic variation To update https://github.com/xiezhq/ISEScan Sequence Analysis ISEScan iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/isescan https://github.com/galaxyproject/tools-iuc/tree/main/tools/isescan 1.7.2.3 isescan 1.7.2.1 Structural variation detection Genomics, Sequence analysis, Genetic variation 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 50 57581 +isoformswitchanalyzer isoformswitchanalyzer Statistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms. IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR Enables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well. Sequence comparison, Sequence analysis Computational biology, Gene transcripts To update https://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.html Transcriptomics, RNA, Statistics isoformswitchanalyzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer 1.20.0 bioconductor-isoformswitchanalyzer 2.2.0 Sequence comparison, Sequence analysis Computational biology, Gene transcripts 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 29 822 +ivar ivar_consensus, ivar_filtervariants, ivar_removereads, ivar_trim, ivar_variants iVar is a computational package that contains functions broadly useful for viral amplicon-based sequencing Up-to-date https://github.com/andersen-lab/ivar Sequence Analysis ivar iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ivar/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/ivar 1.4.3 ivar 1.4.3 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 4 0 0 0 4 0 0 0 0 0 0 0 5 5 0 1171 1224275 +iwtomics iwtomics_loadandplot, iwtomics_plotwithscale, iwtomics_testandplot Interval-Wise Testing for Omics Data iwtomics iwtomics IWTomics "Implementation of the Interval-Wise Testing (IWT) for omics data. This inferential procedure tests for differences in ""Omics"" data between two groups of genomic regions (or between a group of genomic regions and a reference center of symmetry), and does not require fixing location and scale at the outset." Differential gene expression analysis, Differentially-methylated region identification, Peak calling, Genome annotation, Comparison Statistics and probability To update https://bioconductor.org/packages/release/bioc/html/IWTomics.html Statistics iwtomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/iwtomics https://github.com/galaxyproject/tools-iuc/tree/main/tools/iwtomics 1.0.0 bioconductor-iwtomics 1.26.0 Differential gene expression analysis, Peak calling, Genome annotation, Comparison Statistics and probability 3 3 3 0 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 3 542 +jasminesv jasminesv Merge structural variants across samples To update https://github.com/mkirsche/Jasmine/ Variant Analysis jasminesv iuc https://github.com/galaxyproject/tools-iuc/jasminesv/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/jasminesv 1.0.11 jasminesv 1.1.5 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 30 +jbrowse jbrowse_to_standalone, jbrowse JBrowse Genome Browser integrated as a Galaxy Tool jbrowse jbrowse JBrowse Slick, speedy genome browser with a responsive and dynamic AJAX interface for visualization of genome data. Being developed by the GMOD project as a successor to GBrowse. Genome visualisation Genomics Up-to-date https://jbrowse.org Sequence Analysis jbrowse iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse https://github.com/galaxyproject/tools-iuc/tree/main/tools/jbrowse 1.16.11 jbrowse 1.16.11 Genome visualisation Genomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 2346 18229 +jcvi_gff_stats jcvi_gff_stats Compute statistics from a genome annotation in GFF3 format (using JCVI Python utilities) To update https://github.com/tanghaibao/jcvi Sequence Analysis jcvi_gff_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jcvi_gff_stats https://github.com/galaxyproject/tools-iuc/tree/main/tools/jcvi_gff_stats 0.8.4 jcvi 1.4.16 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 2469 +jellyfish jellyfish Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA Jellyfish Jellyfish Jellyfish A command-line algorithm for counting k-mers in DNA sequence. k-mer counting Sequence analysis, Genomics To update https://github.com/gmarcais/Jellyfish Assembly jellyfish iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish https://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfish kmer-jellyfish 2.3.1 k-mer counting Sequence analysis, Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 91 1138 +join_files_by_id join_files_by_id This tool will join datasets according to a column with identifier To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id Text Manipulation join_files_by_id iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id https://github.com/galaxyproject/tools-iuc/tree/main/tools/join_files_by_id 1.0 r-data.table 1.11.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +jq jq JQ is a lightweight and flexible command-line JSON processor To update https://stedolan.github.io/jq/ Text Manipulation jq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jq https://github.com/galaxyproject/tools-iuc/tree/main/tools/jq 1.0 jq 1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 21 2312 +jvarkit jvarkit_wgscoverageplotter Jvarkit : Java utilities for Bioinformatics Up-to-date https://lindenb.github.io/jvarkit/ SAM jvarkit iuc https://github.com/galaxyproject/iuc/tree/master/tools/jvarkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/jvarkit 20201223 jvarkit-wgscoverageplotter 20201223 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 249 6285 +kallisto kallisto_pseudo, kallisto_quant kallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment. kallisto kallisto kallisto A program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment. Gene expression profiling Transcriptomics, RNA-seq, Gene expression To update https://pachterlab.github.io/kallisto/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto 0.48.0 kallisto 0.51.0 Gene expression profiling Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 299 24155 +kc-align kc-align Kc-Align custom tool kc-align kc-align kc-align A fast and accurate tool for performing codon-aware multiple sequence alignments Multiple sequence alignment Mapping Up-to-date https://github.com/davebx/kc-align Sequence Analysis kc_align iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kc-align https://github.com/galaxyproject/tools-iuc/tree/main/tools/kc-align 1.0.2 kcalign 1.0.2 Multiple sequence alignment Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 363 +khmer khmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_median In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more khmer khmer khmer khmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data. Standardisation and normalisation, De-novo assembly Sequence assembly Up-to-date https://khmer.readthedocs.org/ Assembly, Next Gen Mappers khmer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer 3.0.0a3 khmer 3.0.0a3 Standardisation and normalisation, De-novo assembly Sequence assembly 8 8 8 0 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 8 8 0 63 2022 +king king Kinship-based INference for Gwas Up-to-date http://people.virginia.edu/~wc9c/KING/ Variant Analysis king iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/king/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/king 2.2.7 king 2.2.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 5 +kleborate kleborate Screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) kleborate kleborate Kleborate Genomic surveillance framework and global population structure for Klebsiella pneumoniae.Kleborate is a tool to screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) for:.A manuscript describing the Kleborate software in full is currently in preparation. In the meantime, if you use Kleborate, please cite the preprint: Lam, MMC. et al. Genomic surveillance framework and global population structure for Klebsiella pneumoniae. bioRxiv (2020). Multilocus sequence typing, Genome assembly, Virulence prediction Public health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing To update https://github.com/katholt/Kleborate/wiki Metagenomics kleborate iuc https://github.com/katholt/Kleborate https://github.com/galaxyproject/tools-iuc/tree/main/tools/kleborate 2.3.2 kleborate 3.0.6 Multilocus sequence typing, Genome assembly, Virulence prediction Public health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 38 319 +kma kma_map Map with KMA To update https://bitbucket.org/genomicepidemiology/kma Next Gen Mappers kma iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kma https://github.com/galaxyproject/tools-iuc/tree/main/tools/kma 1.4.14 kma 1.4.15 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 +kofamscan kofamscan Gene function annotation tool based on KEGG Orthology and hidden Markov model kofamscan kofamscan kofamscan KofamScan is a gene function annotation tool based on KEGG Orthology and hidden Markov model. You need KOfam database to use this tool. Sequence analysis, Gene functional annotation Genomics Up-to-date https://github.com/takaram/kofam_scan Sequence Analysis kofamscan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kofamscan https://github.com/galaxyproject/tools-iuc/tree/main/tools/kofamscan 1.3.0 kofamscan 1.3.0 Sequence analysis, Gene functional annotation Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 33 594 +kraken kraken-filter, kraken-mpa-report, kraken-report, kraken-translate, kraken Kraken is a system for assigning taxonomic labels to short DNAsequences, usually obtained through metagenomic studies. Previous attempts by otherbioinformatics software to accomplish this task have often used sequence alignmentor machine learning techniques that were quite slow, leading to the developmentof less sensitive but much faster abundance estimation programs. Kraken aims toachieve high sensitivity and high speed by utilizing exact alignments of k-mersand a novel classification algorithm. kraken kraken Kraken System for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. It aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm. Taxonomic classification Taxonomy, Metagenomics To update http://ccb.jhu.edu/software/kraken/ Metagenomics kraken devteam https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken/ https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken kraken 1.1.1 Taxonomic classification Taxonomy, Metagenomics 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 5 0 1209 33778 +kraken2 kraken2 Kraken2 for taxonomic designation. kraken2 kraken2 kraken2 Kraken 2 is the newest version of Kraken, a taxonomic classification system using exact k-mer matches to achieve high accuracy and fast classification speeds. This classifier matches each k-mer within a query sequence to the lowest common ancestor (LCA) of all genomes containing the given k-mer. The k-mer assignments inform the classification algorithm. Taxonomic classification Taxonomy, Metagenomics Up-to-date http://ccb.jhu.edu/software/kraken/ Metagenomics kraken2 iuc https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken2/kraken2/ https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken2/kraken2 2.1.3 kraken2 2.1.3 Taxonomic classification Taxonomy, Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 2367 185308 +kraken_biom kraken_biom Create BIOM-format tables (http://biom-format.org) from Kraken output (http://ccb.jhu.edu/software/kraken/) Up-to-date https://github.com/smdabdoub/kraken-biom Metagenomics kraken_biom iuc https://github.com/smdabdoub/kraken-biom https://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_biom 1.2.0 kraken-biom 1.2.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 182 1444 +kraken_taxonomy_report kraken_taxonomy_report Kraken taxonomy report Kraken-Taxonomy-Report Kraken-Taxonomy-Report Kraken-Taxonomy-Report view report of classification for multiple samples Visualisation, Classification Metagenomics, Taxonomy To update https://github.com/blankenberg/Kraken-Taxonomy-Report Metagenomics kraken_taxonomy_report iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kraken_taxonomy_report https://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_taxonomy_report 0.0.3 biopython 1.70 Visualisation, Classification Metagenomics, Taxonomy 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 354 2527 +krakentools krakentools_alpha_diversity, krakentools_beta_diversity, krakentools_combine_kreports, krakentools_extract_kraken_reads, krakentools_kreport2krona, krakentools_kreport2mpa KrakenTools is a suite of scripts to be used alongside the Kraken krakentools krakentools KrakenTools KrakenTools provides individual scripts to analyze Kraken/Kraken2/Bracken/KrakenUniq output files Visualisation, Aggregation Taxonomy, Metagenomics Up-to-date https://github.com/jenniferlu717/KrakenTools Metagenomics krakentools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/krakentools https://github.com/galaxyproject/tools-iuc/tree/main/tools/krakentools 1.2 krakentools 1.2 Visualisation, Aggregation Taxonomy, Metagenomics 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 1 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 703 16525 +krocus krocus Predict MLST directly from uncorrected long reads krocus krocus krocus Predict MLST directly from uncorrected long reads Multilocus sequence typing, k-mer counting Public health and epidemiology To update https://github.com/quadram-institute-bioscience/krocus Sequence Analysis krocus iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/krocus https://github.com/galaxyproject/tools-iuc/tree/main/tools/krocus 1.0.1 krocus 1.0.3 Multilocus sequence typing, k-mer counting Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +last last_al, last_db, last_split, last_train, last_maf_convert LAST finds similar regions between sequences. last last LAST Short read alignment program incorporating quality scores Sequence alignment Genomics, Comparative genomics To update http://last.cbrc.jp/ Sequence Analysis last iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/last https://github.com/galaxyproject/tools-iuc/tree/main/tools/last 1205 last 1574 Sequence alignment Comparative genomics 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 41 227 +lastz lastz_wrapper_2, lastz_d_wrapper Galaxy wrappers for the Lastz and Lastz_d lastz lastz LASTZ A tool for (1) aligning two DNA sequences, and (2) inferring appropriate scoring parameters automatically. Sequence alignment, Read mapping Genomics Up-to-date https://github.com/lastz/lastz Next Gen Mappers lastz devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz https://github.com/galaxyproject/tools-iuc/tree/main/tools/lastz 1.04.22 lastz 1.04.22 Sequence alignment, Read mapping Genomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 0 188 83331 +lcrgenie lcrgenie Ligase Chain Reaction Genie To update https://github.com/neilswainston/LCRGenie Synthetic Biology lcrgenie iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/lcrgenie https://github.com/galaxyproject/tools-iuc/tree/main/tools/lcrgenie 1.0.2 lcr_genie 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +legsta legsta Performs in silico Legionella pneumophila sequence based typing. legsta legsta legsta Performs in silico Legionella pneumophila sequence based typing Sequence analysis Public health and epidemiology Up-to-date https://github.com/tseemann/legsta Sequence Analysis legsta iuc https://github.com/tseemann/legsta https://github.com/galaxyproject/tools-iuc/tree/main/tools/legsta 0.5.1 legsta 0.5.1 Sequence analysis Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 7 55 +length_and_gc_content length_and_gc_content Gets gene length and gc content from a fasta and a GTF file To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content Fasta Manipulation, Statistics, RNA, Micro-array Analysis length_and_gc_content iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content https://github.com/galaxyproject/tools-iuc/tree/main/tools/length_and_gc_content 0.1.2 r-optparse 1.3.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 322 4090 +limma_voom limma_voom Perform RNA-Seq differential expression analysis using limma voom pipeline limma limma limma Data analysis, linear models and differential expression for microarray data. RNA-Seq analysis Molecular biology, Genetics Up-to-date http://bioconductor.org/packages/release/bioc/html/limma.html Transcriptomics, RNA, Statistics limma_voom iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom https://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom 3.58.1 bioconductor-limma 3.58.1 RNA-Seq analysis Molecular biology, Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1012 20344 +lineagespot lineagespot Identification of SARS-CoV-2 related metagenomic mutations based on a single (or a list of) variant(s) file(s) lineagespot lineagespot lineagespot Lineagespot is a framework written in R, and aims to identify and assign different SARS-CoV-2 lineages based on a single variant file (i.e., variant calling format). Variant calling Metagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variation To update https://www.bioconductor.org/packages/release/bioc/html/lineagespot.html Metagenomics, Sequence Analysis lineagespot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/lineagespot https://github.com/galaxyproject/tools-iuc/tree/main/tools/lineagespot 1.6.0 r-base Variant calling Metagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 37 +links links Scaffold genome assemblies with long reads. links links LINKS LINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS. Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing Up-to-date https://github.com/bcgsc/LINKS Assembly links iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/links https://github.com/galaxyproject/tools-iuc/tree/main/tools/links 2.0.1 links 2.0.1 Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 77 405 +lofreq lofreq_alnqual, lofreq_call, lofreq_filter, lofreq_indelqual, lofreq_viterbi LoFreq is a fast and sensitive variant-caller for inferring SNVs and indelsfrom next-generation sequencing data. It makes full use of base-call qualitiesand other sources of errors inherent in sequencing (e.g. mapping or base/indelalignment uncertainty), which are usually ignored by other methods or onlyused for filtering. Up-to-date https://csb5.github.io/lofreq/ Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/lofreq https://github.com/galaxyproject/tools-iuc/tree/main/tools/lofreq 2.1.5 lofreq 2.1.5 5 5 5 4 5 5 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 0 0 0 4 0 0 0 0 0 0 0 5 5 0 1791 4150903 +lorikeet lorikeet_spoligotype Tools for M. tuberculosis DNA fingerprinting (spoligotyping) lorikeet lorikeet lorikeet Tools for M. tuberculosis DNA fingerprinting (spoligotyping) Sequence analysis, Genotyping Genotype and phenotype Up-to-date https://github.com/AbeelLab/lorikeet Sequence Analysis lorikeet_spoligotype iuc https://github.com/AbeelLab/lorikeet https://github.com/galaxyproject/tools-iuc/tree/main/tools/lorikeet 20 lorikeet 20 Sequence analysis, Genotyping Genotype and phenotype 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 647 +lumpy_sv lumpy_prep, lumpy_sv LUMPY - a general probabilistic framework for structural variant discovery Up-to-date http://layerlab.org/software/ Variant Analysis lumpy_sv iuc https://github.com/arq5x/lumpy-sv https://github.com/galaxyproject/tools-iuc/tree/main/tools/lumpy_sv 0.3.1 lumpy-sv 0.3.1 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 105 1164 +m6anet m6anet m6anet to detect m6A RNA modifications from nanopore data m6Anet m6Anet m6Anet Detection of m6A from direct RNA sequencing using a Multiple Instance Learning framework. Quantification, Imputation, Gene expression profiling RNA-Seq, Transcriptomics, RNA, Machine learning Up-to-date https://m6anet.readthedocs.io/en/latest Sequence Analysis m6anet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/m6anet https://github.com/galaxyproject/tools-iuc/tree/main/tools/m6anet 2.1.0 m6anet 2.1.0 Quantification, Imputation, Gene expression profiling RNA-Seq, Transcriptomics, RNA, Machine learning 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 +maaslin2 maaslin2 MaAsLin2 is comprehensive R package for efficiently determining multivariable association between microbial meta'omic features and clinical metadata. maaslin2 maaslin2 MaAsLin2 MaAsLin2 is comprehensive R package for efficiently determining multivariable association between phenotypes, environments, exposures, covariates and microbial meta’omic features. MaAsLin2 relies on general linear models to accommodate most modern epidemiological study designs, including cross-sectional and longitudinal, and offers a variety of data exploration, normalization, and transformation methods. Filtering, Statistical calculation, Standardisation and normalisation, Visualisation Metagenomics, Statistics and probability To update http://huttenhower.sph.harvard.edu/maaslin Metagenomics maaslin2 iuc https://github.com/biobakery/Maaslin2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/maaslin2 1.16.0 bioconductor-maaslin2 1.18.0 Filtering, Standardisation and normalisation, Visualisation Metagenomics, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 29 188 +macs2 macs2_bdgbroadcall, macs2_bdgcmp, macs2_bdgdiff, macs2_bdgpeakcall, macs2_callpeak, macs2_filterdup, macs2_predictd, macs2_randsample, macs2_refinepeak MACS - Model-based Analysis of ChIP-Seq macs macs MACS Model-based Analysis of ChIP-seq data. Peak calling, Enrichment analysis, Gene regulatory network analysis ChIP-seq, Molecular interactions, pathways and networks, Transcription factors and regulatory sites Up-to-date https://github.com/taoliu/MACS Sequence Analysis, Statistics macs2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/macs2 2.2.9.1 macs2 2.2.9.1 Peak calling, Enrichment analysis, Gene regulatory network analysis ChIP-seq, Molecular interactions, pathways and networks, Transcription factors and regulatory sites 9 9 9 9 9 9 9 9 0 9 0 0 0 0 0 0 0 0 0 0 9 9 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 9 9 0 1969 84521 +maf_stats maf_stats1 MAF Coverage statistics To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/ Genomic Interval Operations maf_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/interval2maf/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/maf_stats 1.0.2+galaxy0 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 3 21 +maftoaxt maftoaxt Convert dataset from MAF to axt format UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Convert Formats ucsc_maftoaxt iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/maftoaxt https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/maftoaxt 377 ucsc-maftoaxt 469 Sequence analysis 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mageck mageck_count, mageck_gsea, mageck_mle, mageck_pathway, mageck_test Model-based Analysis of Genome-wide CRISPR-Cas9 Knockout (MAGeCK) is a computational tool to identifyimportant genes from the recent genome-scale CRISPR-Cas9 knockout screens technology. mageck mageck MAGeCK Computational tool to identify important genes from the recent genome-scale CRISPR-Cas9 knockout screens technology. Genetic variation analysis Genetics, Genetic variation, Genomics To update https://sourceforge.net/projects/mageck/ Genome editing iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mageck https://github.com/galaxyproject/tools-iuc/tree/main/tools/mageck 0.5.9.2 mageck 0.5.9.5 Genetic variation analysis Genetics, Genetic variation, Genomics 3 5 5 5 3 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 587 10503 +maker maker, maker_map_ids MAKER is a portable and easily configurable genome annotation pipeline.Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. maker maker MAKER Portable and easily configurable genome annotation pipeline. It’s purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. Genome annotation Genomics, DNA, Sequence analysis To update http://www.yandell-lab.org/software/maker.html Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/maker https://github.com/galaxyproject/tools-iuc/tree/main/tools/maker 2.31.11 maker 3.01.03 Genome annotation Genomics, DNA, Sequence analysis 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 554 5591 +malt malt_run Aligns an input sequence (DNA or proteins) against an index representing a collection of reference DNA or protein sequences. To update https://github.com/husonlab/malt Next Gen Mappers malt_run iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/malt https://github.com/galaxyproject/tools-iuc/tree/main/tools/malt 0.5.3 malt 0.62 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 22 +map_param_value map_param_value Map a parameter value to another value To update Text Manipulation map_param_value iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/map_param_value https://github.com/galaxyproject/tools-iuc/tree/main/tools/map_param_value 0.2.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 1528 +mapseq mapseq fast and accurate sequence read classification tool designed to assign taxonomy and OTU classifications to ribosomal RNA sequences. mapseq mapseq MAPseq Highly efficient k-mer search with confidence estimates, for rRNA sequence analysis . k-mer counting Functional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifs To update https://github.com/jfmrod/MAPseq Metagenomics mapseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mapseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/mapseq 2.1.1 perl k-mer counting Functional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifs 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 167 +mash mash_screen, mash_sketch Fast genome and metagenome distance estimation using MinHash mash mash Mash Fast genome and metagenome distance estimation using MinHash. Sequence distance matrix generation Genomics, Metagenomics, Statistics and probability, Sequence analysis, DNA mutation Up-to-date https://github.com/marbl/Mash Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash https://github.com/galaxyproject/tools-iuc/tree/main/tools/mash 2.3 mash 2.3 Sequence distance matrix generation Metagenomics, Statistics and probability, Sequence analysis, DNA mutation 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 27 9763 +mashmap mashmap Fast local alignment boundaries Up-to-date https://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmap Sequence Analysis mashmap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmap https://github.com/galaxyproject/tools-iuc/tree/main/tools/mashmap 3.1.3 mashmap 3.1.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +masigpro masigpro Identify significantly differential expression profiles in time-course microarray experiments masigpro masigpro maSigPro Regression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments. Regression analysis Gene expression, Molecular genetics, Microarray experiment, RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/maSigPro.html Transcriptomics, RNA, Statistics masigpro iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/masigpro https://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro 1.49.3 coreutils 8.25 Regression analysis Gene expression, Microarray experiment, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 576 +maxbin2 maxbin2 clusters metagenomic contigs into bins maxbin maxbin MaxBin Software for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm. Sequence assembly Metagenomics, Sequence assembly, Microbiology To update https://downloads.jbei.org/data/microbial_communities/MaxBin/MaxBin.html Metagenomics maxbin2 mbernt https://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/maxbin2 maxbin2 2.2.7 Sequence assembly Metagenomics, Sequence assembly, Microbiology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 118 2059 +mcl mcl The Markov Cluster Algorithm, a cluster algorithm for graphs mcl mcl MCL MCL is a clustering algorithm widely used in bioinformatics and gaining traction in other fields. Clustering, Network analysis, Gene regulatory network analysis Molecular interactions, pathways and networks Up-to-date https://micans.org/mcl/man/mcl.html Sequence Analysis mcl iuc https://github.com/galaxyproject/tools-iuc/tree/master/mcl https://github.com/galaxyproject/tools-iuc/tree/main/tools/mcl 22.282 mcl 22.282 Clustering, Gene regulatory network analysis Molecular interactions, pathways and networks 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 29 +medaka medaka_consensus, medaka_consensus_pipeline, medaka_snp, medaka_variant Sequence correction provided by ONT Research medaka medaka Medaka medaka is a tool to create consensus sequences and variant calls from nanopore sequencing data. This task is performed using neural networks applied a pileup of individual sequencing reads against a draft assembly. Base-calling, Variant calling, Sequence assembly Sequence assembly, Machine learning To update https://github.com/nanoporetech/medaka Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/medaka https://github.com/galaxyproject/tools-iuc/tree/main/tools/medaka 1.7.2 medaka 1.11.3 Base-calling, Variant calling, Sequence assembly Sequence assembly, Machine learning 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 3 3 0 768 99863 +megahit megahit An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph. megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly Up-to-date https://github.com/voutcn/megahit Sequence Analysis, Assembly, Metagenomics megahit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit 1.2.9 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 548 9530 +megahit_contig2fastg megahit_contig2fastg A subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg) megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly To update https://github.com/voutcn/megahit/blob/master/tools/toolkit.cpp Sequence Analysis, Assembly, Metagenomics megahit_contig2fastg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg 1.1.3 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 54 475 +megan megan_blast2lca, megan_blast2rma, megan_daa2info, megan_daa2rma, megan_daa_meganizer, megan_read_extractor, megan_sam2rma MEGAN Community Edition - Interactive exploration and analysis of large-scale microbiome sequencing data. MEGAN is a tool for studying the taxonomic content of a set of DNA reads, typically collected in a metagenomics project.In a preprocessing step, a sequence alignment of all reads against a suitable database of reference DNA or proteinsequences must be performed to produce an input file for the program. MEGAN is suitable for DNA reads (metagenomedata), RNA reads (metatranscriptome data), peptide sequences (metaproteomics data) and, using a suitable synonymsfile that maps SILVA ids to taxon ids, for 16S rRNA data (amplicon sequencing). megan megan MEGAN Metagenome Analysis Software - MEGAN (MEtaGenome ANalyzer) is a new computer program that allows laptop analysis of large metagenomic datasets. In a preprocessing step, the set of DNA reads (or contigs) is compared against databases of known sequences using BLAST or another comparison tool. MEGAN can then be used to compute and interactively explore the taxonomical content of the dataset, employing the NCBI taxonomy to summarize and order the results. Sequence analysis, Taxonomic classification Sequence analysis To update https://github.com/husonlab/megan-ce Sequence Analysis megan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megan https://github.com/galaxyproject/tools-iuc/tree/main/tools/megan 6.21.7 megan 6.25.9 Sequence analysis, Taxonomic classification Sequence analysis 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 261 3610 +meme meme_dreme, meme_fimo, meme_meme, meme_psp_gen The MEME Suite allows the biologist to discover novel motifs in collections of unaligned nucleotideor protein sequences, and to perform a wide variety of other motif-based analyses. meme_meme meme_meme, meme_fimo meme_meme An algorithm that discovers one or more motifs in a collection of DNA or protein sequences by using the technique of expectation maximization to fit a two-component finite mixture model to the set of sequences. Nucleic acid feature detection, Protein feature detection, Statistical calculation Data mining, Sequence analysis, Genetic variation, Statistics and probability To update http://meme-suite.org/ ChIP-seq meme iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meme https://github.com/galaxyproject/tools-iuc/tree/main/tools/meme 5.5.6 meme 5.5.7 Nucleic acid feature detection, Protein feature detection, Statistical calculation Data mining, Sequence analysis, Genetic variation, Statistics and probability 3 0 4 0 3 0 4 0 0 2 0 0 2 0 0 0 0 0 0 0 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 235 22352 +meme_chip meme_chip Performs motif discovery, motif enrichment analysis and clustering on large nucleotide datasets. To update http://meme-suite.org/ ChIP-seq meme_chip iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meme_chip https://github.com/galaxyproject/tools-iuc/tree/main/tools/meme_chip 4.11.2 graphicsmagick 1.3.26 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 287 6584 +meningotype meningotype Assign sequence type to N. meningitidis genome assemblies meningotype meningotype meningotype In silico typing of Neisseria meningitidis contigs. Genotyping, Multilocus sequence typing Microbiology, Genotype and phenotype Up-to-date https://github.com/MDU-PHL/meningotype Sequence Analysis meningotype iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype https://github.com/galaxyproject/tools-iuc/tree/main/tools/meningotype 0.8.5 meningotype 0.8.5 Multilocus sequence typing Microbiology, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +merlin merlin Pedigree Analysis package merlin merlin Merlin Can be used for parametric and non-parametric linkage analysis, regression-based linkage analysis or association analysis for quantitative traits, ibd and kinship estimation, haplotyping, error detection and simulation Haplotype mapping, Genetic mapping GWAS study, Mapping Up-to-date http://csg.sph.umich.edu/abecasis/Merlin/ Variant Analysis merlin iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/merlin/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/merlin 1.1.2 merlin 1.1.2 Haplotype mapping GWAS study, Mapping 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +merqury merqury, merquryplot Merqury is a tool for evaluating genomes assemblies based of k-mer operations. merqury merqury Merqury Reference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose. Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology Up-to-date https://github.com/marbl/merqury Assembly merqury iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury https://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury 1.3 merqury 1.3 Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 244 2483 +meryl meryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_mode Meryl a k-mer counter. meryl meryl Meryl Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu. k-mer counting Whole genome sequencing, Genomics, Sequence analysis, Sequencing Up-to-date https://github.com/marbl/meryl Assembly meryl iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl 1.3 merqury 1.3 k-mer counting Whole genome sequencing, Genomics, Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +metabat2 metabat2_jgi_summarize_bam_contig_depths, metabat2 MetaBAT2 (Metagenome Binning based on Abundance and Tetranucleotide frequency) is an automated metagenome binningsoftware that integrates empirical probabilistic distances of genome abundance and tetranucleotide frequency. MetaBAT_2 MetaBAT_2 MetaBAT 2 "an adaptive binning algorithm for robust and efficient genome reconstruction from metagenome assemblies | MetaBAT2 clusters metagenomic contigs into different ""bins"", each of which should correspond to a putative genome | MetaBAT2 uses nucleotide composition information and source strain abundance (measured by depth-of-coverage by aligning the reads to the contigs) to perform binning" Read binning, Sequence assembly, Genome annotation Metagenomics, Sequence assembly, Metagenomic sequencing To update https://bitbucket.org/berkeleylab/metabat/src/master/ Metagenomics metabat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metabat2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabat2 2.15 metabat2 2.17 Read binning, Sequence assembly, Genome annotation Metagenomics, Sequence assembly, Metagenomic sequencing 2 1 2 2 2 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 192 4329 +metabuli metabuli_classify Classifying metagenomes by jointly analysing both DNA and amino acid (AA) sequences metabuli metabuli metabuli Metabuli: specific and sensitive metagenomic classification via joint analysis of DNA and amino acid Taxonomic classification Taxonomy Up-to-date https://github.com/steineggerlab/Metabuli Sequence Analysis, Metagenomics metabuli iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metabuli https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabuli 1.0.5 metabuli 1.0.5 Taxonomic classification Taxonomy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +metaeuk metaeuk_easy_predict MetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand. MetaEuk MetaEuk MetaEuk MetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomics Homology-based gene prediction Metagenomics, Gene and protein families To update https://github.com/soedinglab/metaeuk Sequence Analysis, Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeuk https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk 5.34c21f2 metaeuk 6.a5d39d9 Homology-based gene prediction Metagenomics, Gene and protein families 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 184 +metagenomeseq metagenomeseq_normalizaton metagenomeSeq Normalization metagenomeseq metagenomeseq metagenomeSeq Designed to determine features (be it Operational Taxanomic Unit (OTU), species, etc.) that are differentially abundant between two or more groups of multiple samples. It is designed to address the effects of both normalization and under-sampling of microbial communities on disease association detection and the testing of feature correlations. Sequence visualisation, Statistical calculation Metagenomics, Sequencing To update https://bioconductor.org/packages/3.18/bioc/html/metagenomeSeq.html Metagenomics metagenomeseq_normalization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metagenomeseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/metagenomeseq 1.16.0-0.0.1 bioconductor-metagenomeseq 1.43.0 Sequence visualisation, Statistical calculation Metagenomics, Sequencing 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 753 +metaphlan customize_metaphlan_database, extract_metaphlan_database, merge_metaphlan_tables, metaphlan MetaPhlAn for Metagenomic Phylogenetic Analysis metaphlan metaphlan MetaPhlAn Computational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data. Nucleic acid sequence analysis, Phylogenetic tree analysis Metagenomics, Phylogenomics Up-to-date https://github.com/biobakery/MetaPhlAn Metagenomics metaphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaphlan 4.1.1 metaphlan 4.1.1 Nucleic acid sequence analysis Metagenomics, Phylogenomics 1 2 4 4 1 2 4 4 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 499 11069 +metawrapmg metawrapmg_binning A flexible pipeline for genome-resolved metagenomic data analysis metawrap metawrap MetaWRAP MetaWRAP aims to be an easy-to-use metagenomic wrapper suite that accomplishes the core tasks of metagenomic analysis from start to finish: read quality control, assembly, visualization, taxonomic profiling, extracting draft genomes (binning), and functional annotation. Read binning, Sequence assembly, Genome annotation, Sequence trimming, Demultiplexing Whole genome sequencing, Metagenomic sequencing, Metagenomics Up-to-date https://github.com/bxlab/metaWRAP Metagenomics metawrapmg_binning galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/metawrapmg https://github.com/galaxyproject/tools-iuc/tree/main/tools/metawrapmg 1.3.0 metawrap-mg 1.3.0 Read binning, Sequence assembly, Genome annotation, Sequence trimming, Demultiplexing Whole genome sequencing, Metagenomic sequencing, Metagenomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mg_toolkit mg_toolkit_bulk_download, mg_toolkit_original_metadata Metagenomics toolkit enables scientists to download all of the sample metadata for a given study or sequence to a single csv file. mg-toolkit mg-toolkit mg-toolkit Metagenomics toolkit enables scientists to download all of the sample metadata for a given study or sequence to a single csv file. Data retrieval Metagenomics Up-to-date https://github.com/EBI-Metagenomics/emg-toolkit Metagenomics mg_toolkit iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/mg_toolkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/mg_toolkit 0.10.4 mg-toolkit 0.10.4 Data retrieval Metagenomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +microsatbed microsatbed Select microsatellites for a bed file To update https://github.com/lmdu/pytrf Sequence Analysis microsatbed iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/microsatbed https://github.com/galaxyproject/tools-iuc/tree/main/tools/microsatbed 1.3.2 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +migmap migmap mapper for full-length T- and B-cell repertoire sequencing MiGMAP MiGMAP MiGMAP Mapper for full-length T- and B-cell repertoire sequencing. Sequence analysis, Read mapping Immunoproteins, genes and antigens, Sequence analysis Up-to-date https://github.com/mikessh/migmap RNA, Sequence Analysis migmap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap https://github.com/galaxyproject/tools-iuc/tree/main/tools/migmap 1.0.3 migmap 1.0.3 Sequence analysis, Read mapping Sequence analysis 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 1226 +minia minia Short-read assembler based on a de Bruijn graph minia minia Minia Short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day. Genome assembly Sequence assembly Up-to-date https://gatb.inria.fr/software/minia/ Assembly minia iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia https://github.com/galaxyproject/tools-iuc/tree/main/tools/minia 3.2.6 minia 3.2.6 Genome assembly Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 109 2206 +miniasm miniasm Miniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step) miniasm miniasm miniasm Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. De-novo assembly Genomics, Sequence assembly To update https://github.com/lh3/miniasm Assembly miniasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm 0.3_r179 miniasm 0.3 De-novo assembly Genomics, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 178 11938 +minimap2 minimap2 A fast pairwise aligner for genomic and spliced nucleotide sequences minimap2 minimap2 Minimap2 Pairwise aligner for genomic and spliced nucleotide sequences Pairwise sequence alignment Mapping Up-to-date https://github.com/lh3/minimap2 Next Gen Mappers minimap2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/minimap2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/minimap2 2.28 minimap2 2.28 Pairwise sequence alignment Mapping 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1588 260442 +miniprot miniprot, miniprot_index Align a protein sequence against a genome with affine gap penalty, splicing and frameshift. miniprot miniprot miniprot Miniprot aligns a protein sequence against a genome with affine gap penalty, splicing and frameshift. It is primarily intended for annotating protein-coding genes in a new species using known genes from other species. Sequence alignment, Protein sequence analysis Sequence sites, features and motifs, Sequence analysis Up-to-date https://github.com/lh3/miniprot Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniprot https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniprot 0.13 miniprot 0.13 Sequence alignment, Protein sequence analysis Sequence sites, features and motifs, Sequence analysis 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 30 842 +mirmachine mirmachine Tool to detect miRNA in genome sequences Up-to-date https://github.com/sinanugur/MirMachine Sequence Analysis mirmachine iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine https://github.com/galaxyproject/tools-iuc/tree/main/tools/mirmachine 0.2.13 mirmachine 0.2.13 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mirnature mirnature Computational detection of canonical microRNAs Up-to-date https://github.com/Bierinformatik/miRNAture RNA, Sequence Analysis mirnature iuc https://github.com/Bierinformatik/miRNAture https://github.com/galaxyproject/tools-iuc/tree/main/tools/mirnature 1.1 mirnature 1.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 10 +mitobim mitobim assemble mitochondrial genomes Up-to-date https://github.com/chrishah/MITObim Assembly mitobim iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobim https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim 1.9.1 mitobim 1.9.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 66 881 +mitos mitos, mitos2 de-novo annotation of metazoan mitochondrial genomes mitos mitos MITOS De novo metazoan mitochondrial genome annotation. Genome annotation Zoology, Whole genome sequencing To update http://mitos.bioinf.uni-leipzig.de/ Sequence Analysis mitos iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitos 1.1.7 mitos 2.1.9 Genome annotation Zoology, Whole genome sequencing 1 1 2 0 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 236 100920 +mlst mlst, mlst_list Scan contig files against PubMLST typing schemes mlst mlst MLST Multi Locus Sequence Typing from an assembled genome or from a set of reads. Multilocus sequence typing Immunoproteins and antigens To update https://github.com/tseemann/mlst Sequence Analysis mlst iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mlst https://github.com/galaxyproject/tools-iuc/tree/main/tools/mlst 2.22.0 mlst 2.23.0 Multilocus sequence typing Immunoproteins and antigens 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 635 9304 +moabs moabs MOABS for differential methylation analysis on Bisulfite sequencing data. To update https://github.com/sunnyisgalaxy/moabs Epigenetics moabs iuc https://github.com/sunnyisgalaxy/moabs https://github.com/galaxyproject/tools-iuc/tree/main/tools/moabs 1.3.4.6 moabs 1.3.9.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 317 +mosdepth mosdepth fast and flexible BAM/CRAM depth calculation Up-to-date https://github.com/brentp/mosdepth SAM mosdepth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mosdepth https://github.com/galaxyproject/tools-iuc/tree/main/tools/mosdepth 0.3.8 mosdepth 0.3.8 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 262 +mothur mothur_align_check, mothur_align_seqs, mothur_amova, mothur_anosim, mothur_bin_seqs, mothur_biom_info, mothur_chimera_bellerophon, mothur_chimera_ccode, mothur_chimera_check, mothur_chimera_perseus, mothur_chimera_pintail, mothur_chimera_slayer, mothur_chimera_uchime, mothur_chimera_vsearch, mothur_chop_seqs, mothur_classify_otu, mothur_classify_seqs, mothur_classify_tree, mothur_clearcut, mothur_cluster_classic, mothur_cluster_fragments, mothur_cluster_split, mothur_cluster, mothur_collect_shared, mothur_collect_single, mothur_consensus_seqs, mothur_cooccurrence, mothur_corr_axes, mothur_count_groups, mothur_count_seqs, mothur_create_database, mothur_degap_seqs, mothur_deunique_seqs, mothur_deunique_tree, mothur_dist_seqs, mothur_dist_shared, mothur_fastq_info, mothur_filter_seqs, mothur_filter_shared, mothur_get_communitytype, mothur_get_coremicrobiome, mothur_get_dists, mothur_get_group, mothur_get_groups, mothur_get_label, mothur_get_lineage, mothur_get_mimarkspackage, mothur_get_otulabels, mothur_get_otulist, mothur_get_oturep, mothur_get_otus, mothur_get_rabund, mothur_get_relabund, mothur_get_sabund, mothur_get_seqs, mothur_get_sharedseqs, mothur_heatmap_bin, mothur_heatmap_sim, mothur_homova, mothur_indicator, mothur_lefse, mothur_libshuff, mothur_list_otulabels, mothur_list_seqs, mothur_make_biom, mothur_make_contigs, mothur_make_design, mothur_make_fastq, mothur_make_group, mothur_make_lefse, mothur_make_lookup, mothur_make_shared, mothur_make_sra, mothur_mantel, mothur_merge_count, mothur_merge_files, mothur_merge_groups, mothur_merge_sfffiles, mothur_merge_taxsummary, mothur_metastats, mothur_mimarks_attributes, mothur_nmds, mothur_normalize_shared, mothur_otu_association, mothur_otu_hierarchy, mothur_pairwise_seqs, mothur_parse_list, mothur_parsimony, mothur_pca, mothur_pcoa, mothur_pcr_seqs, mothur_phylo_diversity, mothur_phylotype, mothur_pre_cluster, mothur_primer_design, mothur_rarefaction_shared, mothur_rarefaction_single, mothur_remove_dists, mothur_remove_groups, mothur_remove_lineage, mothur_remove_otulabels, mothur_remove_otus, mothur_remove_rare, mothur_remove_seqs, mothur_rename_seqs, mothur_reverse_seqs, mothur_screen_seqs, mothur_sens_spec, mothur_seq_error, mothur_sffinfo, mothur_shhh_flows, mothur_shhh_seqs, mothur_sort_seqs, mothur_split_abund, mothur_split_groups, mothur_sub_sample, mothur_summary_qual, mothur_summary_seqs, mothur_summary_shared, mothur_summary_single, mothur_summary_tax, mothur_taxonomy_to_krona, mothur_tree_shared, mothur_trim_flows, mothur_trim_seqs, mothur_unifrac_unweighted, mothur_unifrac_weighted, mothur_unique_seqs, mothur_venn Mothur wrappers mothur mothur mothur Open-source, platform-independent, community-supported software for describing and comparing microbial communities DNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysis Microbial ecology, Taxonomy, Sequence analysis, Phylogeny To update https://www.mothur.org Metagenomics mothur iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur https://github.com/galaxyproject/tools-iuc/tree/main/tools/mothur 1.0 mothur 1.48.0 DNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysis Microbial ecology, Taxonomy, Sequence analysis, Phylogeny 129 129 129 129 129 129 129 129 0 3 0 0 0 0 0 0 0 0 0 0 128 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 129 0 14353 302916 +msaboot msaboot A multiple sequences alignment bootstrapping tool. Up-to-date https://github.com/phac-nml/msaboot Fasta Manipulation msaboot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/msaboot https://github.com/galaxyproject/tools-iuc/tree/main/tools/msaboot 0.1.2 msaboot 0.1.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 803 +multigps multigps Analyzes collections of multi-condition ChIP-seq data. To update http://mahonylab.org/software/multigps/ ChIP-seq multigps iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigps https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigps 0.74.0 fonts-conda-ecosystem 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +multigsea multigsea GSEA-based pathway enrichment analysis for multi-omics data multiGSEA multiGSEA multiGSEA A GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration. Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules Up-to-date https://bioconductor.org/packages/devel/bioc/html/multiGSEA.html Transcriptomics, Proteomics, Statistics multigsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea 1.12.0 bioconductor-multigsea 1.12.0 Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 53 +multiqc multiqc MultiQC aggregates results from bioinformatics analyses across many samples into a single report multiqc multiqc MultiQC MultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. Validation, Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics To update http://multiqc.info/ Fastq Manipulation, Statistics, Visualization multiqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc 1.11 multiqc 1.24.1 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 8320 162790 +mummer4 mummer_delta_filter, mummer_dnadiff, mummer_mummer, mummer_mummerplot, mummer_nucmer, mummer_show_coords Mummer4 Tools mummer4 mummer4 Up-to-date https://github.com/mummer4/mummer Sequence Analysis mummer4 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mummer4 https://github.com/galaxyproject/tools-iuc/tree/main/tools/mummer4 4.0.0rc1 mummer4 4.0.0rc1 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 669 18347 +mykrobe mykrobe_predict Antibiotic resistance predictions Mykrobe Mykrobe Mykrobe Antibiotic resistance prediction for Mycobacterium tuberculosis from genome sequence data with Mykrobe.Antibiotic resistance prediction in minutes.Table of Contents generated with DocToc.AMR prediction (Mykrobe predictor).Before attempting to install with bioconda, please ensure you have your channels set up as specified in the documentation. If you don't, you may run into issues with an older version of mykrobe being installed Antimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimming Whole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, Metagenomics To update https://github.com/Mykrobe-tools/mykrobe Sequence Analysis mykrobe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mykrobe https://github.com/galaxyproject/tools-iuc/tree/main/tools/mykrobe 0.10.0 mykrobe 0.13.0 Antimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimming Whole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, Metagenomics 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mzmine mzmine_batch mass-spectrometry data processing, with the main focus on LC-MS data mzmine mzmine MZmine Toolbox for visualization and analysis of LC-MS data in netCDF or mzXML. Natural product identification, Standardisation and normalisation, Peptide database search, Deisotoping, Clustering, Filtering, Chromatographic alignment, Peak detection, Peptide identification, Chromatogram visualisation, Mass spectrum visualisation, Structure visualisation, Plotting, Heat map generation Proteomics, Metabolomics, Proteomics experiment, Small molecules Up-to-date http://mzmine.github.io/ Metabolomics mzmine_batch iuc https://github.com/workflow4metabolomics/tools-metabolomics/blob/master/tools/mzmine/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/mzmine 3.9.0 mzmine 3.9.0 Natural product identification, Standardisation and normalisation, Peptide database search, Deisotoping, Clustering, Filtering, Chromatographic alignment, Peak detection, Peptide identification, Chromatogram visualisation, Mass spectrum visualisation, Structure visualisation, Plotting, Heat map generation Proteomics, Metabolomics, Proteomics experiment, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 +naltorfs bicodon_counts_from_fasta, codon_freq_from_bicodons, find_nested_alt_orfs nAlt-ORFs: Nested Alternate Open Reading Frames (nAltORFs) Up-to-date https://github.com/BlankenbergLab/nAltORFs Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/naltorfs/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/naltorfs 0.1.2 naltorfs 0.1.2 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +nanocompore nanocompore_db, nanocompore_sampcomp Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro. Nanocompore Nanocompore Nanocompore RNA modifications detection by comparative Nanopore direct RNA sequencing.RNA modifications detection from Nanopore dRNA-Seq data.Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples.Analyses performed for the nanocompore paper.Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro Post-translation modification site prediction, PolyA signal detection, Genotyping, k-mer counting Functional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sites To update https://nanocompore.rna.rocks/ Sequence Analysis nanocompore iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanocompore https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanocompore 1.0.0rc3.post2 nanocompore 1.0.4 PolyA signal detection, Genotyping, k-mer counting Functional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sites 0 1 2 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 3 836 +nanoplot nanoplot Plotting tool for long read sequencing data and alignments nanoplot nanoplot NanoPlot NanoPlot is a tool with various visualizations of sequencing data in bam, cram, fastq, fasta or platform-specific TSV summaries, mainly intended for long-read sequencing from Oxford Nanopore Technologies and Pacific Biosciences Scatter plot plotting, Box-Whisker plot plotting Genomics Up-to-date https://github.com/wdecoster/NanoPlot Visualization nanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanoplot/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanoplot 1.43.0 nanoplot 1.43.0 Scatter plot plotting, Box-Whisker plot plotting Genomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 2195 63235 +nanopolishcomp nanopolishcomp_eventaligncollapse, nanopolishcomp_freqmethcalculate NanopolishComp contains 2 modules. Eventalign_collapse collapses the raw file generated by nanopolish eventalign by kmers rather than by event. Freq_meth_calculate methylation frequency at genomic CpG sites from the output of nanopolish call-methylation. nanopolishcomp nanopolishcomp NanopolishComp NanopolishComp is a Python3 package for downstream analyses of Nanopolish output files.It is a companion package for Nanopolish. Methylation analysis, Collapsing methods Sequence analysis, Sequencing, Genetic variation To update https://a-slide.github.io/NanopolishComp Sequence Analysis nanopolishcomp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanopolishcomp https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanopolishcomp 0.6.11 nanopolishcomp 0.6.12 Methylation analysis, Collapsing methods Sequence analysis, Sequencing, Genetic variation 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 15 1074 +ncbi_acc_download ncbi_acc_download Download sequences from GenBank/RefSeq by accession through the NCBI ENTREZ API Up-to-date https://github.com/kblin/ncbi-acc-download Data Source ncbi_acc_download iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_acc_download https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_acc_download 0.2.8 ncbi-acc-download 0.2.8 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 688 5487 +ncbi_datasets datasets_download_gene, datasets_download_genome NCBI datasets downloads biological sequence data across all domains of life from NCBI. ncbi_datasets ncbi_datasets NCBI Datasets NCBI Datasets is a new resource that lets you easily gather data from across NCBI databases. Find and download sequence, annotation, and metadata for genes and genomes using our command-line tools or web interface. Data handling, Sequence database search, Data retrieval Biological databases To update https://github.com/ncbi/datasets Data Source ncbi_datasets iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_datasets https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_datasets 16.20.0 ncbi-datasets-cli Data handling, Sequence database search, Data retrieval Biological databases 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 0 667 3177 +ncbi_entrez_direct ncbi_entrez_direct_efetch, ncbi_entrez_direct_einfo, ncbi_entrez_direct_esearch NCBI Entrez Direct allow fetching data from NCBI Databases Up-to-date http://www.ncbi.nlm.nih.gov/books/NBK179288/ Data Source ncbi_entrez_direct iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_direct https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_entrez_direct 22.4 entrez-direct 22.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ncbi_entrez_eutils ncbi_eutils_ecitmatch, ncbi_eutils_efetch, ncbi_eutils_egquery, ncbi_eutils_einfo, ncbi_eutils_elink, ncbi_eutils_epost, ncbi_eutils_esearch, ncbi_eutils_esummary NCBI Entrez E-Utilties allow fetching data from NCBI Databases To update https://www.ncbi.nlm.nih.gov/books/NBK25501/ Data Source ncbi_entrez_eutils iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_entrez_eutils 1.70 python 0 0 8 0 0 0 8 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 4 0 0 4 0 0 0 2 0 0 0 0 0 0 0 8 8 0 169 3193 +ncbi_fcs_gx ncbi_fcs_gx FCS-GX detects contamination from foreign organisms in genome sequences using the genome cross-species aligner (GX). ncbi_fcs ncbi_fcs NCBI fcs The NCBI Foreign Contamination Screen (FCS) is a tool suite for identifying and removing contaminant sequences in genome assemblies. Contaminants are defined as sequences in a dataset that do not originate from the biological source organism and can arise from a variety of environmental and laboratory sources. FCS will help you remove contaminants from genomes before submission to GenBank. Sequence assembly validation, Sequence trimming, Sequence contamination filtering Sequence analysis, Sequence assembly Up-to-date https://github.com/ncbi/fcs-gx Sequence Analysis ncbi_fcs_gx iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx 0.5.4 ncbi-fcs-gx 0.5.4 Sequence assembly validation, Sequence trimming, Sequence contamination filtering Sequence analysis, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +necat necat Error correction and de-novo assembly for ONT Nanopore reads necat necat NECAT NECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads. De-novo assembly Sequence assembly Up-to-date https://github.com/xiaochuanle/NECAT Assembly necat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/necat https://github.com/galaxyproject/tools-iuc/tree/main/tools/necat 0.0.1_update20200803 necat 0.0.1_update20200803 De-novo assembly Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 95 667 +newick_utils newick_display Perform operations on Newick trees newick_utilities newick_utilities Newick Utilities The Newick Utilities are a set of command-line tools for processing phylogenetic trees. They can process arbitrarily large amounts of data and do not require user interaction, which makes them suitable for automating phylogeny processing tasks. Phylogenetic tree generation, Phylogenetic tree analysis, Phylogenetic tree reconstruction Phylogeny, Genomics, Computer science To update http://cegg.unige.ch/newick_utils Visualization, Metagenomics newick_utils iuc https://github.com/tjunier/newick_utils https://github.com/galaxyproject/tools-iuc/tree/main/tools/newick_utils 1.6+galaxy1 newick_utils 1.6 Phylogeny, Genomics, Computer science 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 448 25505 +nextclade nextalign, nextclade Identify differences between your sequences and a reference sequence used by Nextstrain nextclade nextclade Nextclade Nextclade is an open-source project for viral genome alignment, mutation calling, clade assignment, quality checks and phylogenetic placement. Methylation analysis, Variant calling Genomics, Sequence analysis, Cladistics To update https://github.com/nextstrain/nextclade Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nextclade https://github.com/galaxyproject/tools-iuc/tree/main/tools/nextclade 2.7.0 nextalign 2.14.0 Methylation analysis, Variant calling Genomics, Cladistics 1 1 2 2 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 2 0 0 210 4080 +ngmlr ngmlr CoNvex Gap-cost alignMents for Long Reads ngmlr ngmlr NGMLR An algorithm to map third generation long-read sequencing data (PacBio and Oxford Nanopore) to a reference genome with a focus on reads that span structural variation. DNA mapping, Sequence alignment, Genetic variation analysis Sequencing, Mapping, DNA structural variation Up-to-date https://github.com/philres/ngmlr Next Gen Mappers ngmlr iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ngmlr https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngmlr 0.2.7 ngmlr 0.2.7 DNA mapping, Sequence alignment, Genetic variation analysis Sequencing, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 1266 +ngsutils ngsutils_bam_filter NGSUtils is a suite of software tools for working with next-generation sequencing datasets.Starting in 2009, we (Liu Lab @ Indiana University School of Medicine) starting working withnext-generation sequencing data. We initially started doing custom coding for each project in a one-off manner.It quickly became apparent that this was an inefficient manner to work, so we started assembling smallerutilities that could be adapted into larger, more complicated, workflows. We have used them for Illumia,SOLiD, 454, Ion Torrent, and Pac Bio sequencing data. We have used them for DNA and RNA resequcing,ChIP-Seq, CLIP-Seq, and targeted resequencing (Agilent exome capture and PCR targeting).These tools are also used heavily in our in-house DNA and RNA mapping pipelines.NGSUtils is made up of 50+ programs, mainly written in Python.These are separated into modules based on the type of file that is to be analyzed. ngsutils ngsutils NGSUtils NGSUtils is a suite of software tools for working with next-generation sequencing datasets Read pre-processing, Sequencing quality control, Variant calling, Formatting, Sequence contamination filtering Genomics, Transcriptomics To update https://github.com/ngsutils/ngsutils SAM iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ngsutils https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsutils ngsutils 0.5.9 Read pre-processing, Variant calling, Formatting, Sequence contamination filtering Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 224 24740 +nonpareil nonpareil Estimate average coverage in metagenomic datasets nonpareil nonpareil nonpareil Estimate metagenomic coverage and sequence diversity Operation To update http://nonpareil.readthedocs.io Metagenomics nonpareil iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nonpareil https://github.com/galaxyproject/tools-iuc/tree/main/tools/nonpareil 3.1.1 nonpareil 3.5.5 Operation 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 142 +novoplasty novoplasty NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. To update https://github.com/ndierckx/NOVOPlasty Assembly novoplasty iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplasty https://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty 4.3.1 novoplasty 4.3.5 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 162 6384 +nugen_nudup nugen_nudup Marks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products. nudup nudup NuDup Marks/removes duplicate molecules based on the molecular tagging technology used in Tecan products. Duplication detection Sequencing Up-to-date https://github.com/tecangenomics/nudup SAM, Metagenomics, Sequence Analysis, Transcriptomics nugen_nudup iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup https://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup 2.3.3 nudup 2.3.3 Duplication detection Sequencing 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +obitools obi_illumina_pairend, obi_ngsfilter, obi_annotate, obi_clean, obi_convert, obi_grep, obi_sort, obi_stat, obi_tab, obi_uniq OBITools is a set of programs developed to simplify the manipulation of sequence files obitools obitools OBITools Set of python programs developed to simplify the manipulation of sequence files. They were mainly designed to help us for analyzing Next Generation Sequencer outputs (454 or Illumina) in the context of DNA Metabarcoding. Sequence analysis, Sequence analysis Sequence analysis, DNA, Sequencing Up-to-date http://metabarcoding.org/obitools Sequence Analysis obitools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools https://github.com/galaxyproject/tools-iuc/tree/main/tools/obitools 1.2.13 obitools 1.2.13 Sequence analysis, Sequence analysis Sequence analysis, DNA, Sequencing 0 10 10 10 0 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 503 26251 +ococo ococo Variant detection of SNVs To update https://github.com/karel-brinda/ococo Variant Analysis ococo iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ococo https://github.com/galaxyproject/tools-iuc/tree/main/tools/ococo 0.1.2.6 ococo 0.1.2.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 32 1877 +odgi odgi_build, odgi_viz Representing large genomic variation graphs with minimal memory overhead requires a careful encoding of the graph entities. odgi follows the dynamic GBWT in developing a byte-packed version of the graph and paths through it. To update https://github.com/vgteam/odgi Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/odgi 0.3 odgi 0.8.6 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 25 +omark omark Proteome quality assessment software omark omark OMArk Proteome quality assessment software Sequence assembly validation, Differential protein expression profiling Proteomics, Sequence analysis, Statistics and probability To update https://github.com/DessimozLab/OMArk Sequence Analysis omark iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/omark/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/omark 0.3.0 Sequence assembly validation, Differential protein expression profiling Proteomics, Sequence analysis, Statistics and probability 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ont_fast5_api ont_fast5_api_compress_fast5, ont_fast5_api_fast5_subset, ont_fast5_api_multi_to_single_fast5, ont_fast5_api_single_to_multi_fast5 ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore FAST5 file format. To update https://github.com/nanoporetech/ont_fast5_api/ Nanopore ont_fast5_api iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ont_fast5_api https://github.com/galaxyproject/tools-iuc/tree/main/tools/ont_fast5_api 3.1.3 ont-fast5-api 4.1.3 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 39 2654 +onto_toolkit onto_tk_get_ancestor_terms, onto_tk_get_child_terms, onto_tk_get_descendent_terms, onto_tk_get_parent_terms, onto_tk_get_parent_terms_by_relationship_type, onto_tk_get_relationship_id_vs_relationship_def, onto_tk_get_relationship_id_vs_relationship_name, onto_tk_get_relationship_id_vs_relationship_namespace, onto_tk_get_relationship_types, onto_tk_get_root_terms, onto_tk_get_subontology_from, onto_tk_term_id_vs_term_def, onto_tk_term_id_vs_term_name, onto_tk_get_term_synonyms, onto_tk_get_terms, onto_tk_get_terms_by_relationship_type, onto_tk_obo2owl, onto_tk_obo2rdf, onto_tk_term_id_vs_term_def ONTO-Toolkit is a collection of tools for managing ontologies. Up-to-date http://search.cpan.org/~easr/ONTO-PERL-1.45/ Ontology Manipulation onto_toolkit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/onto-toolkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/onto_toolkit 1.45 perl-onto-perl 1.45 0 0 17 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 0 22 655 +optdoe optdoe Optimal Design Of Experiment To update https://github.com/pablocarb/doebase Synthetic Biology optdoe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/optdoe https://github.com/galaxyproject/tools-iuc/tree/main/tools/optdoe v2.0.2 doebase 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +optitype optitype Precision HLA typing from NGS data Up-to-date https://github.com/FRED-2/OptiType Sequence Analysis optitype iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/optitype1 https://github.com/galaxyproject/tools-iuc/tree/main/tools/optitype 1.3.5 optitype 1.3.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 24 321 +orfipy orfipy Galaxy wrapper for ORFIPY orfipy orfipy orfipy A fast and flexible tool for extracting ORFs.orfipy is a tool written in python/cython to extract ORFs in extremely an fast and flexible manner. Other popular ORF searching tools are OrfM and getorf. Compared to OrfM and getorf, orfipy provides the most options to fine tune ORF searches. orfipy uses multiple CPU cores and is particularly faster for data containing multiple smaller fasta sequences such as de-novo transcriptome assemblies. Please read the preprint here. Coding region prediction, Database search, Transcriptome assembly, De-novo assembly Computer science, RNA-Seq, Transcriptomics, Small molecules Up-to-date https://github.com/urmi-21/orfipy Sequence Analysis orfipy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/orfipy https://github.com/galaxyproject/tools-iuc/tree/main/tools/orfipy 0.0.4 orfipy 0.0.4 Coding region prediction, Database search, Transcriptome assembly, De-novo assembly Computer science, RNA-Seq, Transcriptomics, Small molecules 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 53 774 +orthofinder orthofinder_onlygroups Accurate inference of orthologous gene groups made easy OrthoFinder OrthoFinder OrthoFinder OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics. It finds orthogroups and orthologs, infers rooted gene trees for all orthogroups and identifies all of the gene duplcation events in those gene trees. It also infers a rooted species tree for the species being analysed and maps the gene duplication events from the gene trees to branches in the species tree. OrthoFinder also provides comprehensive statistics for comparative genomic analyses. Genome comparison, Phylogenetic tree generation (from molecular sequences), Phylogenetic tree analysis, Genome alignment Phylogenetics, Phylogenomics, Bioinformatics, Comparative genomics, Sequence analysis Up-to-date https://github.com/davidemms/OrthoFinder Phylogenetics, Sequence Analysis orthofinder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/orthofinder https://github.com/galaxyproject/tools-iuc/tree/main/tools/orthofinder 2.5.5 orthofinder 2.5.5 Genome comparison, Genome alignment Phylogenetics, Phylogenomics, Bioinformatics, Comparative genomics 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 239 1333 +packaged_annotation_loader packaged_annotation_loader Tool to make cached genome annotation data available as a list of datasets collection To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/packaged_annotation_loader Data Source packaged_annotation_loader iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/packaged_annotation_loader https://github.com/galaxyproject/tools-iuc/tree/main/tools/packaged_annotation_loader 0.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pacu pacu_map, pacu_snp PACU is a workflow for whole genome sequencing based phylogeny of Illumina and ONT R9/R10 data. pacu pacu PACU PACU is a workflow for whole genome sequencing based phylogeny of Illumina and ONT R9/R10 data.PACU stands for the Prokaryotic Awesome variant Calling Utility and is named after an omnivorous fish (that eats both Illumina and ONT reads). Clustering Phylogenetics, Sequence analysis Up-to-date https://github.com/BioinformaticsPlatformWIV-ISP/PACU Sequence Analysis, Phylogenetics pacu iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pacu https://github.com/galaxyproject/tools-iuc/tree/main/tools/pacu 0.0.5 pacu_snp 0.0.5 Clustering Phylogenetics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pairtools pairtools_dedup, pairtools_parse, pairtools_sort, pairtools_split, pairtools_stats Flexible tools for Hi-C data processing Up-to-date https://pairtools.readthedocs.io Sequence Analysis pairtools iuc https://github.com/open2c/pairtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/pairtools 1.1.0 pairtools 1.1.0 5 0 5 0 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pangolin pangolin Pangolin assigns SARS-CoV-2 genome sequences their most likely lineages under the Pango nomenclature system. pangolin_cov-lineages pangolin_cov-lineages pangolin Phylogenetic Assignment of Named Global Outbreak LINeages - software package for assigning SARS-CoV-2 genome sequences to global lineages Tree-based sequence alignment, Variant classification Virology Up-to-date https://github.com/cov-lineages/pangolin Sequence Analysis pangolin iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pangolin https://github.com/galaxyproject/tools-iuc/tree/main/tools/pangolin 4.3 pangolin 4.3 Tree-based sequence alignment, Variant classification Virology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 259 7276 +parse_mito_blast parse_mito_blast Filtering blast out from querying assembly against mitochondrial database. Up-to-date https://raw.githubusercontent.com/VGP/vgp-assembly/master/galaxy_tools/parse_mito_blast/parse_mito_blast.py Sequence Analysis parse_mito_blast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/parse_mito_blast https://github.com/galaxyproject/tools-iuc/tree/main/tools/parse_mito_blast 1.0.2 parse_mito_blast 1.0.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 31 90 +pathview pathview Pathview is a tool set for pathway based data integration and visualization. pathview pathview pathview Tool set for pathway based data integration and visualization that maps and renders a wide variety of biological data on relevant pathway graphs. It downloads the pathway graph data, parses the data file, maps user data to the pathway, and render pathway graph with the mapped data. In addition, it integrates with pathway and gene set (enrichment) analysis tools for large-scale and fully automated analysis. Pathway or network analysis, Pathway or network visualisation Molecular interactions, pathways and networks, Systems biology, Data visualisation To update https://bioconductor.org/packages/release/bioc/html/pathview.html Statistics, RNA, Micro-array Analysis pathview iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pathview https://github.com/galaxyproject/tools-iuc/tree/main/tools/pathview 1.34.0 bioconductor-pathview 1.42.0 Pathway or network analysis, Pathway or network visualisation Molecular interactions, pathways and networks, Systems biology, Data visualisation 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 565 5260 +pbgcpp pbgcpp Compute genomic consensus and call variants using PacBio reads mapped to a reference genomicconsensus genomicconsensus GenomicConsensus The GenomicConsensus package provides the variantCaller tool, which allows you to apply the Quiver or Arrow algorithm to mapped PacBio reads to get consensus and variant calls. Variant calling Mapping Up-to-date https://github.com/PacificBiosciences/gcpp Variant Analysis pbgcpp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pbgcpp https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbgcpp 2.0.2 pbgcpp 2.0.2 Variant calling Mapping 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pbmm2 pbmm2 A minimap2 SMRT wrapper for PacBio data. pbmm2 pbmm2 pbmm2 pbmm2 is a SMRT C++ wrapper for minimap2's C API. Its purpose is to support native PacBio in- and output, provide sets of recommended parameters, generate sorted output on-the-fly, and postprocess alignments. Sorted output can be used directly for polishing using GenomicConsensus, if BAM has been used as input to pbmm2. Benchmarks show that pbmm2 outperforms BLASR in sequence identity, number of mapped bases, and especially runtime. pbmm2 is the official replacement for BLASR. Pairwise sequence alignment, Sorting Mapping Up-to-date https://github.com/PacificBiosciences/pbmm2 Next Gen Mappers pbmm2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pbmm2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbmm2 1.14.99 pbmm2 1.14.99 Pairwise sequence alignment, Sorting Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pbtk bam2fastx Convert PacBio Bam File to fasta or fastq file Up-to-date https://github.com/PacificBiosciences/pbtk Convert Formats, Fasta Manipulation, Fastq Manipulation bam2fastx iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pbtk https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbtk 3.1.1 pbtk 3.1.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pe_histogram pe_histogram Contains a tool that produces an insert size histogram for a paired-end BAM file. To update https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/pehistogram Graphics pe_histogram iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pe_histogram https://github.com/galaxyproject/tools-iuc/tree/main/tools/pe_histogram 1.0.1 openjdk 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 312 4180 +peakzilla peakzilla Peakzilla identifies sites of enrichment and transcription factor binding sites from ChIP-seq and ChIP-exo experiments. To update https://github.com/steinmann/peakzilla ChIP-seq peakzilla iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/peakzilla https://github.com/galaxyproject/tools-iuc/tree/main/tools/peakzilla 1.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pear iuc_pear PEAR evaluates all possible paired-end read overlaps pear pear PEAR Paired-end read merger. PEAR evaluates all possible paired-end read overlaps without requiring the target fragment size as input. In addition, it implements a statistical test for minimizing false-positive results. Sequence merging Sequence assembly Up-to-date https://cme.h-its.org/exelixis/web/software/pear/ Fastq Manipulation pear iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pear https://github.com/galaxyproject/tools-iuc/tree/main/tools/pear 0.9.6 pear 0.9.6 Sequence merging Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 150 4305 +pharokka pharokka rapid standardised annotation tool for bacteriophage genomes and metagenomes pharokka pharokka Pharokka Pharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes. Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA To update https://github.com/gbouras13/pharokka Genome annotation pharokka iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka 1.3.2 " + pharokka + " Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 74 2565 +phyloseq phyloseq_from_biom, phyloseq_from_dada2, phyloseq_plot_ordination, phyloseq_plot_richness Handling and analysis of high-throughput microbiome census data phyloseq phyloseq phyloseq Provides a set of classes and tools to facilitate the import, storage, analysis, and graphical display of microbiome census data. Deposition, Analysis, Visualisation Microbiology, Sequence analysis, Metagenomics Up-to-date https://www.bioconductor.org/packages/release/bioc/html/phyloseq.html Metagenomics phyloseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyloseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/phyloseq 1.46.0 bioconductor-phyloseq 1.46.0 Deposition, Analysis, Visualisation Microbiology, Sequence analysis, Metagenomics 0 1 4 4 0 1 4 4 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 82 812 +phyml phyml PhyML is a phylogeny software based on the maximum-likelihood principle. phyml phyml PhyML Phylogenetic estimation software using Maximum Likelihood Phylogenetic tree generation (maximum likelihood and Bayesian methods) Phylogenetics, Bioinformatics, Phylogenetics Up-to-date http://www.atgc-montpellier.fr/phyml/ Phylogenetics phyml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml https://github.com/galaxyproject/tools-iuc/tree/main/tools/phyml 3.3.20220408 phyml 3.3.20220408 Phylogenetics, Bioinformatics, Phylogenetics 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 104 1770 +picard picard_AddCommentsToBam, picard_AddOrReplaceReadGroups, picard_BedToIntervalList, picard_CleanSam, picard_CASM, picard_CollectBaseDistributionByCycle, picard_CollectGcBiasMetrics, picard_CollectHsMetrics, picard_CollectInsertSizeMetrics, picard_CollectRnaSeqMetrics, picard_artifact_metrics, picard_CollectWgsMetrics, picard_DownsampleSam, picard_EstimateLibraryComplexity, picard_FastqToSam, picard_FilterSamReads, picard_FixMateInformation, picard_MarkDuplicates, picard_MarkDuplicatesWithMateCigar, picard_MeanQualityByCycle, picard_MergeBamAlignment, picard_MergeSamFiles, picard_NormalizeFasta, picard_QualityScoreDistribution, picard_ReorderSam, picard_ReplaceSamHeader, picard_RevertOriginalBaseQualitiesAndAddMateCigar, picard_RevertSam, picard_SamToFastq, picard_SortSam, picard_ValidateSamFile Picard SAM/BAM manipulation tools. picard_samtofastq picard_reordersam, picard_replacesamheader, picard_fastqtosam, picard_samtofastq picard_samtofastq Create a FASTQ file. Formatting Sequencing To update http://broadinstitute.github.io/picard/ SAM picard devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/picard https://github.com/galaxyproject/tools-iuc/tree/main/tools/picard 3.1.1 picard 3.2.0 Formatting Sequencing 31 31 31 31 31 31 31 31 0 29 0 0 31 0 0 0 0 0 0 0 31 4 31 0 0 31 0 0 0 31 0 0 0 0 0 0 0 31 31 0 3735 374458 +pick_value pick_value Compose a text parameter value using text, integer and float values To update Text Manipulation pick_value iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pick_value https://github.com/galaxyproject/tools-iuc/tree/main/tools/pick_value 0.2.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 116 +picrust picrust_categorize, picrust_compare_biom, picrust_format_tree_and_trait_table, picrust_metagenome_contributions, picrust_normalize_by_copy_number, picrust_predict_metagenomes PICRUSt wrappers picrust picrust PICRUSt PICRUSt (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a bioinformatics software package designed to predict metagenome functional content from marker gene (e.g., 16S rRNA) surveys and full genomes. Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcoding Metagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencing To update https://picrust.github.io/picrust/ Metagenomics picrust iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/picrust https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust 1.1.1 picrust 1.1.4 Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcoding Metagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencing 0 6 5 6 0 6 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 45 1095 +picrust2 picrust2_add_descriptions, picrust2_hsp, picrust2_metagenome_pipeline, picrust2_pathway_pipeline, picrust2_pipeline, picrust2_place_seqs, picrust2_shuffle_predictions PICRUSt2: Phylogenetic Investigation of Communities by Reconstruction of Unobserved States picrust2 picrust2 PICRUSt2 PICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences. Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysis Metagenomics, Microbiology, Phylogenetics, Metagenomic sequencing Up-to-date https://github.com/picrust/picrust2/wiki Metagenomics picrust2 iuc https://github.com/picrust/picrust2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust2 2.5.3 picrust2 2.5.3 Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysis Metagenomics, Microbiology, Phylogenetics, Metagenomic sequencing 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 88 1000 +pilon pilon pilon is a tool for assembly improvement and variant analysis in bacteria pilon pilon pilon Read alignment analysis to diagnose, report, and automatically improve de novo genome assemblies. Sequence assembly, Analysis, Read alignment Assembly To update https://github.com/broadinstitute/pilon/wiki Variant Analysis pilon iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pilon https://github.com/galaxyproject/tools-iuc/tree/main/tools/pilon 1.20.1 pilon 1.24 Sequence assembly, Analysis Assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 467 7942 +pipelign pipelign Multipe sequence alignment Up-to-date https://github.com/asmmhossain/pipelign/ Next Gen Mappers pipelign iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pipelign https://github.com/galaxyproject/tools-iuc/tree/main/tools/pipelign 0.2 pipelign 0.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 83 983 +pizzly pizzly Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. To update https://github.com/pmelsted/pizzly/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly 0.37.3.1 pizzly 0.37.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 208 +plasflow PlasFlow PlasFlow - Prediction of plasmid sequences in metagenomic contigs. plasflow plasflow PlasFlow PlasFlow is a set of scripts used for prediction of plasmid sequences in metagenomic contigs. Sequence analysis Metagenomics Up-to-date https://github.com/smaegol/PlasFlow Sequence Analysis plasflow iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow https://github.com/galaxyproject/tools-iuc/tree/main/tools/plasflow 1.1.0 plasflow 1.1.0 Sequence analysis Metagenomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 278 22589 +plasmidfinder plasmidfinder """PlasmidFinder provides the detection of replicons in the WGSand assigns the plasmids under study to lineages that trace backthe information to the existing knowledge on Inc groups and suggestspossible reference plasmids for each lineage""" PlasmidFinder PlasmidFinder PlasmidFinder PlasmidFinder is a tool for the identification and typing of Plasmid Replicons in Whole-Genome Sequencing (WGS). Genome assembly, Scaffolding, Multilocus sequence typing Whole genome sequencing, Sequence assembly, Mapping, Probes and primers Up-to-date https://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/ Sequence Analysis plasmidfinder iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder https://github.com/galaxyproject/tools-iuc/tree/main/tools/plasmidfinder 2.1.6 plasmidfinder 2.1.6 Genome assembly, Scaffolding, Multilocus sequence typing Whole genome sequencing, Sequence assembly, Mapping, Probes and primers 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 22 +plink plink Whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. plink plink PLINK Free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. Genetic variation analysis GWAS study Up-to-date https://www.cog-genomics.org/plink Genome-Wide Association Study plink iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/plink https://github.com/galaxyproject/tools-iuc/tree/main/tools/plink 1.90b6.21 plink 1.90b6.21 Genetic variation analysis GWAS study 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 46 669 +polypolish polypolish """Polypolish is a tool for polishing genome assemblies with short reads.Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location).This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix.""" Polypolish Polypolish Polypolish Polypolish is a tool for polishing genome assemblies with short reads. Unlike other tools in this category, Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location). This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix. Genome assembly, Read mapping, Mapping assembly, Sequencing error detection Sequence assembly, Sequence composition, complexity and repeats, Mapping To update https://github.com/rrwick/Polypolish Sequence Analysis polypolish iuc https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish https://github.com/galaxyproject/tools-iuc/tree/main/tools/polypolish 0.5.0 polypolish 0.6.0 Genome assembly, Read mapping, Mapping assembly, Sequencing error detection Sequence assembly, Sequence composition, complexity and repeats, Mapping 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 24 239 +porechop porechop Porechop - Finding and removing adapters from Oxford Nanopore reads To update https://github.com/rrwick/Porechop Fasta Manipulation, Fastq Manipulation porechop iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop https://github.com/galaxyproject/tools-iuc/tree/main/tools/porechop porechop 0.2.4 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1046 185468 +poretools poretools_events, poretools_extract, poretools_hist, poretools_nucdist, poretools_occupancy, poretools_qualdist, poretools_qualpos, poretools_squiggle, poretools_stats, poretools_tabular, poretools_times, poretools_winner, poretools_yield_plot A flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis. poretools poretools Poretools Flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis. Nucleic acid sequence analysis DNA, Sequencing Up-to-date https://poretools.readthedocs.io/en/latest/ Fasta Manipulation, Fastq Manipulation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools https://github.com/galaxyproject/tools-iuc/tree/main/tools/poretools 0.6.1a1 poretools 0.6.1a1 Nucleic acid sequence analysis DNA, Sequencing 13 13 13 0 13 13 13 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 13 0 409 18773 +presto presto_alignsets, presto_assemblepairs, presto_buildconsensus, presto_collapseseq, presto_filterseq, presto_maskprimers, presto_pairseq, presto_parseheaders, presto_parselog, presto_partition, prestor_abseq3 pRESTO toolkit for immune repertoire analysis. presto presto pRESTO Integrated collection of platform-independent Python modules for processing raw reads from high-throughput (next-generation) sequencing of lymphocyte repertoires. Nucleic acid sequence analysis Sequencing, DNA, Immunology To update https://presto.readthedocs.io/ Sequence Analysis presto iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/presto https://github.com/galaxyproject/tools-iuc/tree/main/tools/presto 0.6.2 presto 0.7.2 Nucleic acid sequence analysis Sequencing, DNA, Immunology 11 0 0 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pretext pretext_graph, pretext_map, pretext_snapshot Process genome contacts maps processing images. Up-to-date https://github.com/wtsi-hpag/PretextSnapshot Sequence Analysis suite_pretext iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pretext https://github.com/galaxyproject/tools-iuc/tree/main/tools/pretext 0.0.6 pretextgraph 0.0.6 3 2 3 0 3 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 254 2350 +prinseq prinseq PRINSEQ is a tool for easy and rapid quality control and data processing of metagenomic and metatranscriptomic datasets prinseq prinseq PRINSEQ PRINSEQ is a sequence processing tool that can be used to filter, reformat and trim genomic and metagenomic sequence data. It generates summary statistics of the input in graphical and tabular formats that can be used for quality control steps. PRINSEQ is available as both standalone and web-based versions. Read pre-processing, Sequence trimming, Sequence contamination filtering Transcriptomics, Metagenomics, Genomics To update http://prinseq.sourceforge.net/manual.html Fastq Manipulation, Metagenomics prinseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/prinseq/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/prinseq @TOOL_VERSION+galaxy2 prinseq 0.20.4 Read pre-processing, Sequence trimming, Sequence contamination filtering Transcriptomics, Metagenomics 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 70 7881 +prodigal prodigal A protein-coding gene prediction software tool for bacterial and archaeal genomes prodigal prodigal Prodigal Fast, reliable protein-coding gene prediction for prokaryotic genomes. Genome annotation Genomics, Sequence analysis Up-to-date https://github.com/hyattpd/Prodigal Genome annotation prodigal iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal 2.6.3 prodigal 2.6.3 Genome annotation Genomics, Sequence analysis 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +progressivemauve progressivemauve, xmfa2gff3 Mauve/ProgressiveMauve Multiple Sequence Aligner To update http://darlinglab.org/mauve/user-guide/progressivemauve.html Sequence Analysis progressivemauve iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/progressivemauve https://github.com/galaxyproject/tools-iuc/tree/main/tools/progressivemauve progressivemauve snapshot_2015_02_13 2 0 2 0 2 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 286 1734 +prokka prokka Rapid annotation of prokaryotic genomes prokka prokka Prokka Software tool to annotate bacterial, archaeal and viral genomes quickly and produce standards-compliant output files. Gene prediction, Coding region prediction, Genome annotation Genomics, Model organisms, Virology Up-to-date http://github.com/tseemann/prokka Sequence Analysis prokka crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/prokka/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/prokka 1.14.6 prokka 1.14.6 Coding region prediction, Genome annotation Genomics, Model organisms, Virology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 3233 371445 +prot-scriber prot_scriber Protein annotation of short human readable descriptions Up-to-date https://github.com/usadellab/prot-scriber Proteomics prot_scriber iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/prot-scriber https://github.com/galaxyproject/tools-iuc/tree/main/tools/prot-scriber 0.1.6 prot-scriber 0.1.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 5 +proteinortho proteinortho, proteinortho_grab_proteins, proteinortho_summary Proteinortho is a tool to detect orthologous proteins/genes within different species. proteinortho proteinortho Proteinortho Proteinortho is a tool to detect orthologous genes within different species Sequence clustering, Sequence analysis Comparative genomics To update https://gitlab.com/paulklemm_PHD/proteinortho Proteomics proteinortho iuc https://gitlab.com/paulklemm_PHD/proteinortho https://github.com/galaxyproject/tools-iuc/tree/main/tools/proteinortho 6.3.1 proteinortho 6.3.2 Sequence clustering, Sequence analysis Comparative genomics 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 200 3320 +psiclass psiclass PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples. psiclass psiclass PsiCLASS Reference-based transcriptome assembler for single or multiple RNA-seq samples Transcriptome assembly Sequence assembly Up-to-date https://github.com/splicebox/PsiCLASS Transcriptomics psiclass iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclass https://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass 1.0.3 psiclass 1.0.3 Transcriptome assembly Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 15 +pureclip pureclip PureCLIP is an HMM based peak caller specifically designed for eCLIP/iCLIP data To update https://github.com/skrakau/PureCLIP Sequence Analysis, RNA, CLIP-seq pureclip iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pureclip https://github.com/galaxyproject/tools-iuc/tree/main/tools/pureclip 1.0.4 pureclip 1.3.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 36 1423 +purge_dups purge_dups Purge haplotigs and overlaps in an assembly based on read depth purge_dups purge_dups purge_dups Identifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuences Genome assembly, Read binning, Scaffolding Sequence assembly Up-to-date https://github.com/dfguan/purge_dups Assembly purge_dups iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dups https://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups 1.2.6 purge_dups 1.2.6 Genome assembly, Read binning, Scaffolding Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 167 16800 +pycoqc pycoqc QC metrics for ONT Basecalling pycoqc pycoqc pycoQC PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing Up-to-date https://github.com/tleonardi/pycoQC Nanopore pycoqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc 2.5.2 pycoqc 2.5.2 Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 350 21123 +pyega3 pyega3 EGA python client uses the EGA REST API to download authorized datasets and files. To update https://github.com/EGA-archive/ega-download-client Data Source ega_download_client iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pyega3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/pyega3 5.0.2 pyega3 5.2.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 38 2424 +pygenometracks pygenomeTracks pyGenomeTracks: Standalone program and library to plot beautiful genome browser tracks. pygenometracks pygenometracks pyGenomeTracks reproducible plots for multivariate genomic data sets.Standalone program and library to plot beautiful genome browser tracks.pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. Currently, it is possible to plot:. Visualisation, Formatting Model organisms, Imaging, Workflows To update https://github.com/deeptools/pyGenomeTracks Visualization pygenometracks iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pygenometracks https://github.com/galaxyproject/tools-iuc/tree/main/tools/pygenometracks 3.8 pygenometracks 3.9 Visualisation, Formatting Model organisms, Imaging, Workflows 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 377 11332 +pysradb pysradb_search pysradb allows to retrieve metadata, such as run accession numbers, from SRA and ENA based on multiple criteria. pysradb pysradb pysradb Python package to query next-generation sequencing metadata and data from NCBI Sequence Read Archive. Deposition, Data retrieval Sequencing, Gene transcripts, Bioinformatics To update https://github.com/saketkc/pysradb Sequence Analysis pysradb_search iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pysradb https://github.com/galaxyproject/tools-iuc/tree/main/tools/pysradb 1.4.2 pysradb 2.2.1 Deposition, Data retrieval Sequencing, Gene transcripts, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 26 144 +qfilt qfilt Filter sequencing data To update https://github.com/veg/qfilt Fastq Manipulation qfilt iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qfilt https://github.com/galaxyproject/tools-iuc/tree/main/tools/qfilt 1.0.0+galaxy1 qfilt 0.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +qiime_add_on qiime_collapse_samples, qiime_make_otu_table QIIME to perform microbial community analysis qiime_add_on qiime_add_on, qiime_core qiime_add_on QIIME 2 is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed. Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics To update http://www.qiime.org Metagenomics qiime iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_add_on qiime 1.9.1 Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 68 1909 +qiime_core qiime_align_seqs, qiime_alpha_diversity, qiime_alpha_rarefaction, qiime_assign_taxonomy, qiime_beta_diversity, qiime_beta_diversity_through_plots, qiime_compare_categories, qiime_core_diversity, qiime_count_seqs, qiime_extract_barcodes, qiime_filter_alignment, qiime_filter_fasta, qiime_filter_otus_from_otu_table, qiime_filter_samples_from_otu_table, qiime_filter_taxa_from_otu_table, qiime_jackknifed_beta_diversity, qiime_make_emperor, qiime_make_otu_heatmap, qiime_make_phylogeny, qiime_multiple_join_paired_ends, qiime_multiple_split_libraries_fastq, qiime_pick_closed_reference_otus, qiime_pick_open_reference_otus, qiime_pick_otus, qiime_pick_rep_set, qiime_plot_taxa_summary, qiime_split_libraries, qiime_split_libraries_fastq, qiime_summarize_taxa, qiime_summarize_taxa_through_plots, qiime_upgma_cluster, qiime_validate_mapping_file QIIME to perform microbial community analysis qiime_core qiime_core qiime_core QIIME 2™ is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed. Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics To update http://www.qiime.org Metagenomics qiime iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_core qiime 1.9.1 Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics 0 0 32 32 0 0 32 32 0 0 0 0 0 0 0 0 0 0 0 0 31 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 31 0 1155 28681 +qiime_extract_viz qiime_extract_viz Extract vizualization from QIIME artifacts To update http://www.qiime.org Metagenomics qiime_extract_viz iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiimme_extract_viz https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime_extract_viz 0.1.0 unzip 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +qq_tools qq_manhattan To update https://CRAN.R-project.org/package=qqman Visualization, Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/qq_tools 0.1.0 r-qqman 0.1.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +qualimap qualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseq Qualimap 2 is a platform-independent application written in Java andR that facilitates the quality control of alignment sequencing data and itsderivatives like feature counts. qualimap qualimap QualiMap Platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data. Sequencing quality control Data quality management Up-to-date http://qualimap.bioinfo.cipf.es/ Sequence Analysis, Transcriptomics, SAM qualimap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap https://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap 2.3 qualimap 2.3 Sequencing quality control Data quality management 4 4 4 1 4 4 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 4 4 0 1328 664470 +quast quast Quast (Quality ASsessment Tool) evaluates genome assemblies. quast quast QUAST QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports. Visualisation, Sequence assembly validation Sequence assembly Up-to-date http://quast.bioinf.spbau.ru/ Assembly quast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast https://github.com/galaxyproject/tools-iuc/tree/main/tools/quast 5.2.0 quast 5.2.0 Visualisation, Sequence assembly validation Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 3567 51567 +query_impc query_impc Contains a tool to query the IMPC database. To update https://github.com/INFRAFRONTIERDIB/tools-iuc/tree/query_impc/tools/query_impc Convert Formats, Web Services query_impc iuc https://github.com/INFRAFRONTIERDIB/tools-iuc/tree/query_impc/tools/query_impc https://github.com/galaxyproject/tools-iuc/tree/main/tools/query_impc 0.9.0 requests 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +query_tabular filter_tabular, query_tabular, sqlite_to_tabular Loads tabular files into a SQLite DB to perform a SQL query producing a tabular output To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabular Text Manipulation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabular https://github.com/galaxyproject/tools-iuc/tree/main/tools/query_tabular 3.3.1 python 3 3 3 1 3 3 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 3 0 561 124536 +quickmerge quickmerge Merge long-read and hybrid assemblies to increase contiguity quickmerge quickmerge quickmerge Quickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads. Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype Up-to-date https://github.com/mahulchak/quickmerge Assembly quickmerge galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge https://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge 0.3 quickmerge 0.3 Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 +raceid raceid_clustering, raceid_filtnormconf, raceid_inspectclusters, raceid_inspecttrajectory, raceid_trajectory RaceID3, StemID2, FateID - scRNA analysis To update https://github.com/dgrun/RaceID3_StemID2_package/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid 0.2.3 r-raceid 0.1.3 5 5 5 1 5 5 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 82 4569 +ragtag ragtag Reference-guided scaffolding of draft genomes tool. ragtag ragtag ragtag RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Genome assembly Sequence assembly Up-to-date https://github.com/malonge/RagTag Assembly ragtag iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtag https://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag 2.1.0 ragtag 2.1.0 Genome assembly Sequence assembly 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 237 2833 +rapidnj rapidnj Galaxy wrapper for the RapidNJ tool rapidnj rapidnj RapidNJ A tool for fast canonical neighbor-joining tree construction. Phylogenetic tree generation Phylogeny Up-to-date https://birc.au.dk/software/rapidnj/ Phylogenetics rapidnj iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rapidnj https://github.com/galaxyproject/tools-iuc/tree/main/tools/rapidnj 2.3.2 rapidnj 2.3.2 Phylogeny 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 176 +rasusa rasusa Randomly subsample sequencing reads to a specified coverage rasusa rasusa rasusa Produces an unbiased subsample of your reads To update https://github.com/mbhall88/rasusa Sequence Analysis rasusa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rasusa https://github.com/galaxyproject/tools-iuc/tree/main/tools/rasusa 2.0.0 rasusa 2.1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +raven raven Raven is a de novo genome assembler for long uncorrected reads. Up-to-date https://github.com/lbcb-sci/raven Assembly iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven https://github.com/galaxyproject/tools-iuc/tree/main/tools/raven 1.8.3 raven-assembler 1.8.3 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 262 6902 +raxml raxml RAxML - A Maximum Likelihood based phylogenetic inference raxml raxml RAxML A tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies. Sequence analysis, Phylogenetic tree analysis Phylogenetics, Sequence analysis To update http://www.exelixis-lab.org/web/software/raxml/ Phylogenetics raxml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raxml https://github.com/galaxyproject/tools-iuc/tree/main/tools/raxml 8.2.12 raxml 8.2.13 Sequence analysis Phylogenetics 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 383 6808 +rcorrector rcorrector Rcorrector (RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data. rcorrector rcorrector Rcorrector This is a kmer-based error correction method for RNA-seq data. It can also be applied to other types of sequencing data where the read coverage is non-uniform, such as single-cell sequencing. Sequencing error detection RNA, RNA-Seq, Sequencing To update https://github.com/mourisl/Rcorrector Fastq Manipulation rcorrector iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rcorrector https://github.com/galaxyproject/tools-iuc/tree/main/tools/rcorrector 1.0.3+galaxy1 rcorrector 1.0.7 Sequencing error detection RNA, RNA-Seq 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 569 +read_it_and_keep read_it_and_keep Rapid decontamination of SARS-CoV-2 sequencing reads read_it_and_keep read_it_and_keep read_it_and_keep Read contamination removal Filtering, Genome alignment Pathology, Genomics To update https://github.com/GenomePathogenAnalysisService/read-it-and-keep Sequence Analysis read_it_and_keep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/read-it-and-keep https://github.com/galaxyproject/tools-iuc/tree/main/tools/read_it_and_keep 0.2.2 read-it-and-keep 0.3.0 Filtering, Genome alignment Pathology, Genomics 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 71 3370 +recentrifuge recentrifuge """With Recentrifuge, researchers can analyze results from taxonomic classifiers using interactive charts with emphasis on the confidence level of the classifications.In addition to contamination-subtracted samples.Recentrifuge provides shared and exclusive taxa per sample,thus enabling robust contamination removal and comparative analysis in environmental and clinical metagenomics.""" Recentrifuge Recentrifuge Recentrifuge Robust comparative analysis and contamination removal for metagenomics. Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic sequencing Up-to-date https://github.com/khyox/recentrifuge Metagenomics recentrifuge iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/recentrifuge https://github.com/galaxyproject/tools-iuc/tree/main/tools/recentrifuge 1.14.1 recentrifuge 1.14.1 Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 48 331 +red red Red (REpeat Detector) red red RED This is a program to detect and visualize RNA editing events at genomic scale using next-generation sequencing data. RNA-Seq analysis, Editing RNA, Sequencing, Data visualisation Up-to-date https://github.com/BioinformaticsToolsmith/Red Sequence Analysis red iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/red https://github.com/galaxyproject/tools-iuc/tree/main/tools/red 2018.09.10 red 2018.09.10 RNA-Seq analysis, Editing RNA, Sequencing, Data visualisation 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 88 578 +repeatmasker repeatmasker_wrapper RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. repeatmasker repeatmasker RepeatMasker A program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. The output of the program is a detailed annotation of the repeats that are present in the query sequence as well as a modified version of the query sequence in which all the annotated repeats have been masked (default: replaced by Ns). Genome annotation Sequence analysis, Sequence composition, complexity and repeats Up-to-date http://www.repeatmasker.org/ Sequence Analysis repeat_masker bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmasker https://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmasker 4.1.5 repeatmasker 4.1.5 Genome annotation Sequence composition, complexity and repeats 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 248 3750 +repeatmodeler repeatmodeler RepeatModeler - Model repetitive DNA repeatmodeler repeatmodeler RepeatModeler De-novo repeat family identification and modeling package. At the heart of RepeatModeler are two de-novo repeat finding programs ( RECON and RepeatScout ) which employ complementary computational methods for identifying repeat element boundaries and family relationships from sequence data. RepeatModeler assists in automating the runs of RECON and RepeatScout given a genomic database and uses the output to build, refine and classify consensus models of putative interspersed repeats. Repeat sequence detection Sequence composition, complexity and repeats, Sequence composition, complexity and repeats To update https://www.repeatmasker.org/RepeatModeler/ Genome annotation repeatmodeler csbl https://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmodeler https://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmodeler 2.0.5 Repeat sequence detection Sequence composition, complexity and repeats, Sequence composition, complexity and repeats 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 217 1177 +repmatch_gff3 repmatch_gff3 Contains a tool that matches corresponding peak-pair midpoints from separate datasets based onuser-defined criteria. To update ChIP-seq repmatch_gff3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/repmatch_gff3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/repmatch_gff3 matplotlib 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +reshape2 cast, melt Flexibly restructure and aggregate data using just the two functions melt and dcast To update https://cran.r-project.org/web/packages/reshape2/index.html Text Manipulation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/reshape2 1.4.2 r-reshape2 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 33 3456 +resize_coordinate_window resize_coordinate_window Contains a tool that modifies the start and stop coordinates of GFF data, expanding the coordinate windowby a specified size. To update Genomic Interval Operations resize_coordinate_window iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/resize_coordinate_window https://github.com/galaxyproject/tools-iuc/tree/main/tools/resize_coordinate_window 1.0.2 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 85 +revoluzer revoluzer_crex, revoluzer_distmat revoluzer wrappers revoluzer revoluzer revoluzer Various tools for genome rearrangement analysis. CREx, TreeREx, etc Structural variation detection Molecular evolution, Phylogeny Up-to-date https://gitlab.com/Bernt/revoluzer/ Phylogenetics revoluzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/revoluzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/revoluzer 0.1.6 revoluzer 0.1.6 Structural variation detection Molecular evolution, Phylogeny 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rgcca rgcca multi-block analysis To update https://github.com/rgcca-factory/RGCCA Statistics rgcca iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgcca https://github.com/galaxyproject/tools-iuc/tree/main/tools/rgcca 3.0.2 rgccacmd 3.0.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 44 +rgrnastar rna_star, rna_starsolo RNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapper star star STAR Ultrafast universal RNA-seq data aligner Sequence alignment RNA-Seq, Transcriptomics To update https://github.com/alexdobin/STAR Next Gen Mappers, Transcriptomics rgrnastar iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar https://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar 2.7.11a star 2.7.11b Sequence alignment RNA-Seq, Transcriptomics 2 2 2 2 2 2 2 2 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 2 0 0 0 2 0 0 0 0 0 0 0 2 2 0 4015 425658 +ribowaltz ribowaltz_process, ribowaltz_plot Calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data riboWaltz riboWaltz riboWaltz riboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data. Computational biology To update https://github.com/LabTranslationalArchitectomics/riboWaltz Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltz https://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz 1.2.0 ribowaltz 2.0 Computational biology 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 14 161 +rnaquast rna_quast rnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies. rnaQUAST rnaQUAST rnaQUAST Quality assessment tool for de novo transcriptome assemblies. De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics, RNA-seq Up-to-date https://github.com/ablab/rnaquast Assembly, RNA rnaquast iuc https://git.ufz.de/lehmanju/rnaquast https://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast 2.3.0 rnaquast 2.3.0 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 109 1110 +roary roary Roary the pangenome pipeline roary roary Roary A high speed stand alone pan genome pipeline, which takes annotated assemblies in GFF3 format (produced by Prokka (Seemann, 2014)) and calculates the pan genome. Genome assembly DNA, Genomics, Mapping Up-to-date https://sanger-pathogens.github.io/Roary/ Sequence Analysis roary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary https://github.com/galaxyproject/tools-iuc/tree/main/tools/roary 3.13.0 roary 3.13.0 Genome assembly DNA, Genomics, Mapping 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 656 12225 +rp2biosensor rp2biosensor Build Sensing-Enabling Metabolic Pathways from RetroPath2.0 output To update https://github.com/brsynth/rp2biosensor Synthetic Biology rp2biosensor iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2biosensor https://github.com/galaxyproject/tools-iuc/tree/main/tools/rp2biosensor 3.2.1 rp2biosensor 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rp2paths rp2paths Enumerate and seperate the different pathways generated by RetroPath2.0 To update https://github.com/brsynth/rp2paths Synthetic Biology rp2paths iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths https://github.com/galaxyproject/tools-iuc/tree/main/tools/rp2paths 1.5.1 rp2paths 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rpbasicdesign rpbasicdesign Extracting enzyme IDs from rpSBML files To update https://github.com/brsynth/rpbasicdesign Synthetic Biology rpbasicdesign iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rpbasicdesign https://github.com/galaxyproject/tools-iuc/tree/main/tools/rpbasicdesign 1.2.2 rpbasicdesign 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rpfba rpfba Perform FBA for the RetroPath2.0 heterologous pathways To update https://github.com/brsynth/rptools/releases Synthetic Biology rpfba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rpfba https://github.com/galaxyproject/tools-iuc/tree/main/tools/rpfba 5.12.3 rptools 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rptools rptools_rpextractsink, rptools_rpfba, rptools_rpranker, rptools_rpreport, rptools_rpviz Suite of tools that work on rpSBML format To update https://github.com/brsynth/rptools Synthetic Biology rptools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rptools https://github.com/galaxyproject/tools-iuc/tree/main/tools/rptools 5.13.1 rptools 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rrparser rrparser Reaction Rules Parser To update https://github.com/brsynth/RRParser Synthetic Biology rrparser iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser https://github.com/galaxyproject/tools-iuc/tree/main/tools/rrparser 2.5.2 rrparser 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rseqc rseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tin an RNA-seq quality control package rseqc rseqc RSeQC Provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. Data handling Sequencing Up-to-date https://code.google.com/p/rseqc/ Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualization rseqc nilesh https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc 5.0.3 rseqc 5.0.3 Data handling Sequencing 22 22 22 22 22 22 22 22 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 22 22 0 3206 133498 +ruvseq ruvseq Remove Unwanted Variation from RNA-Seq Data ruvseq ruvseq RUVSeq This package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples. Differential gene expression analysis Gene expression, RNA-seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics ruvseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq 1.26.0 bioconductor-ruvseq 1.36.0 Differential gene expression analysis Gene expression 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 76 1236 +salsa2 salsa A tool to scaffold long read assemblies with Hi-C SALSA SALSA SALSA > VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branch Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping Up-to-date https://github.com/marbl/SALSA Assembly salsa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa2 2.3 salsa2 2.3 Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 454 +samblaster samblaster samblaster marks duplicates and can output split and discordant alignments from SAM/BAM files samblaster samblaster SAMBLASTER A tool to mark duplicates and extract discordant and split reads from SAM files. Split read mapping DNA, Sequencing, Mapping To update https://github.com/GregoryFaust/samblaster SAM, Fastq Manipulation, Variant Analysis samblaster iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/samblaster https://github.com/galaxyproject/tools-iuc/tree/main/tools/samblaster 0.1.24 samblaster 0.1.26 Split read mapping DNA, Sequencing, Mapping 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +samtools To update https://github.com/samtools/samtools SAM iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/samtools https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/samtools 1.15.1 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +sansa sansa_annotate Sansa is a tool for structural variant annotation. Up-to-date https://github.com/dellytools/sansa Variant Analysis sansa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sansa https://github.com/galaxyproject/tools-iuc/tree/main/tools/sansa 0.2.1 sansa 0.2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 18 123 +sarscov2formatter sarscov2formatter sarscov2formatter custom script Up-to-date https://github.com/nickeener/sarscov2formatter Sequence Analysis sarscov2formatter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2formatter https://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2formatter 1.0 sarscov2formatter 1.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 173 +sarscov2summary sarscov2summary sarscov2summary custom script To update https://github.com/nickeener/sarscov2summary Sequence Analysis sarscov2summary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2summary https://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2summary 0.1 sarscov2summary 0.5 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 140 +sbml2sbol sbml2sbol Convert SBML to SBOL format To update https://github.com/neilswainston/SbmlToSbol Synthetic Biology sbml2sbol iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sbml2sbol https://github.com/galaxyproject/tools-iuc/tree/main/tools/sbml2sbol 0.1.13 sbml2sbol 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +scanpy scanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confounders Scanpy – Single-Cell Analysis in Python scanpy scanpy SCANPY Scalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. Differential gene expression analysis Gene expression, Cell biology, Genetics To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis scanpy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy 1.9.6 scanpy 1.7.2 Differential gene expression analysis Gene expression, Cell biology, Genetics 6 6 6 0 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 766 51978 +scater scater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsne Scater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization. scater scater scater Pre-processing, quality control, normalization and visualization of single-cell RNA-seq data. Read pre-processing, Sequencing quality control, Sequence visualisation RNA-seq, Quality affairs, Molecular genetics To update http://bioconductor.org/packages/scater/ Transcriptomics, RNA, Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scater https://github.com/galaxyproject/tools-iuc/tree/main/tools/scater 1.22.0 bioconductor-scater 1.30.1 Read pre-processing, Sequence visualisation Quality affairs, Molecular genetics 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 77 1365 +sceasy sceasy_convert Converter between difference single-cell formats Up-to-date https://github.com/cellgeni/sceasy/ Transcriptomics sceasy_convert iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy 0.0.7 r-sceasy 0.0.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 +schicexplorer schicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrol scHiCExplorer: Set of programs to process, analyze and visualize scHi-C data. To update https://github.com/joachimwolff/schicexplorer Sequence Analysis, Transcriptomics, Visualization schicexplorer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorer https://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer 4 schicexplorer 7 16 16 16 0 16 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 16 0 23 779 +scikit-bio scikit_bio_diversity_beta_diversity scikit-bio: an open-source, BSD-licensed, python package providing data structures, algorithms, and educational resources for bioinformatics Up-to-date http://scikit-bio.org/ Sequence Analysis scikit_bio iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scikit_bio https://github.com/galaxyproject/tools-iuc/tree/main/tools/scikit-bio 0.4.2 scikit-bio 0.4.2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +scoary scoary Scoary calculates the assocations between all genes in the accessory genome and the traits. scoary scoary Scoary Pan-genome wide association studies and is designed to take the gene_presence_absence.csv file from Roary as well as a traits file created by the user and calculate the assocations between all genes in the accessory genome (all genes that are present in i genomes where 1 < i < N) and the traits. It reports a list of genes sorted by strength of association per trait. Analysis Genotype and phenotype, Model organisms, GWAS study, Functional genomics Up-to-date https://github.com/AdmiralenOla/Scoary Metagenomics scoary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scoary https://github.com/galaxyproject/tools-iuc/tree/main/tools/scoary 1.6.16 scoary 1.6.16 Analysis Genotype and phenotype, Model organisms, GWAS study, Functional genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 61 676 +scpipe scpipe A flexible preprocessing pipeline for single-cell RNA-sequencing data scpipe scpipe scPipe A preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols. Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq, Sequencing To update http://bioconductor.org/packages/release/bioc/html/scPipe.html Transcriptomics, RNA, Statistics scpipe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipe https://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe 1.0.0+galaxy2 bioconductor-scpipe 2.2.0 Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 628 +seacr seacr SEACR is intended to call peaks and enriched regions from sparse CUT&RUN or chromatin profiling data in which background is dominated by zeroes. Up-to-date https://github.com/FredHutch/SEACR Epigenetics, ChIP-seq seacr iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seacr https://github.com/galaxyproject/tools-iuc/tree/main/tools/seacr 1.3 seacr 1.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 50 3647 +selenzy_wrapper selenzy_wrapper Performs enzyme selection from a reaction query. Up-to-date https://github.com/brsynth/selenzy-wrapper Synthetic Biology selenzy_wrapper iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/selenzy_wrapper https://github.com/galaxyproject/tools-iuc/tree/main/tools/selenzy_wrapper 0.3.0 selenzy_wrapper 0.3.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +semibin semibin_bin, semibin_concatenate_fasta, semibin_generate_cannot_links, semibin_generate_sequence_features, semibin, semibin_train SemiBin: Semi-supervised Metagenomic Binning Using Siamese Neural Networks semibin semibin SemiBin Command tool for metagenomic binning with semi-supervised deep learning using information from reference genomes. Sequence assembly, Read binning Metagenomics, Machine learning, Microbial ecology, Sequence assembly To update https://semibin.readthedocs.io/en/latest/ Metagenomics semibin iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/semibin https://github.com/galaxyproject/tools-iuc/tree/main/tools/semibin 2.0.2 semibin 2.1.0 Sequence assembly, Read binning Metagenomics, Machine learning, Microbial ecology, Sequence assembly 0 0 6 1 0 0 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 39 542 +seq2hla seq2hla Precision HLA typing and expression from RNAseq data seq2hla seq2hla Seq2HLA seq2HLA is a computational tool to determine Human Leukocyte Antigen (HLA) directly from existing and future short RNA-Seq reads. It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie index comprising known HLA alleles and outputs the most likely HLA class I and class II types, a p-value for each call, and the expression of each class. Read mapping, Genetic variation analysis Transcriptomics, Mapping Up-to-date https://github.com/TRON-Bioinformatics/seq2HLA Sequence Analysis seq2hla iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla https://github.com/galaxyproject/tools-iuc/tree/main/tools/seq2hla 2.3 seq2hla 2.3 Read mapping, Genetic variation analysis Transcriptomics, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 288 +seqcomplexity seqcomplexity Sequence complexity for raw reads Up-to-date https://github.com/stevenweaver/seqcomplexity Sequence Analysis iuc https://github.com/stephenshank/tools-iuc/tree/seqcomplexity/tools/seqcomplexity/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqcomplexity 0.1.2 seqcomplexity 0.1.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 16 68 +seqkit seqkit_fx2tab, seqkit_locate, seqkit_sort, seqkit_stats, seqkit_translate A cross-platform and ultrafast toolkit for FASTA/Q file manipulation seqkit seqkit seqkit FASTA and FASTQ are basic and ubiquitous formats for storing nucleotide and protein sequences. Common manipulations of FASTA/Q file include converting, searching, filtering, deduplication, splitting, shuffling, and sampling. Existing tools only implement some of these manipulations, and not particularly efficiently, and some are only available for certain operating systems. Furthermore, the complicated installation process of required packages and running environments can render these programs less user friendly. SeqKit demonstrates competitive performance in execution time and memory usage compared to similar tools. The efficiency and usability of SeqKit enable researchers to rapidly accomplish common FASTA/Q file manipulations. DNA transcription, Sequence trimming, DNA translation, Sequence conversion Database management, Sequence analysis Up-to-date https://bioinf.shenwei.me/seqkit/ Sequence Analysis seqkit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqkit 2.8.2 seqkit 2.8.2 DNA transcription, Sequence trimming, DNA translation Database management, Sequence analysis 0 2 5 2 0 2 5 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 129 1964 +seqprep seqprep Tool for merging paired-end Illumina reads and trimming adapters. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers Up-to-date https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis seqprep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprep https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep 1.3.2 seqprep 1.3.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +seqsero2 seqsero2 Salmonella serotype prediction from genome sequencing data seqsero2 seqsero2 SeqSero2 "rapid and improved Salmonella serotype determination using whole genome sequencing data | SeqSero-Salmonella Serotyping by Whole Genome Sequencing | Salmonella Serotyping by Whole Genome Sequencing | Online version: http://www.denglab.info/SeqSero2 | Salmonella serotype prediction from genome sequencing data | Citation: SeqSero, Zhang et al. 2015; SeqSero2, Zhang et al. 2019 | Salmonella serotype derterminants databases | Upon executing the command, a directory named 'SeqSero_result_Time_your_run' will be created. Your result will be stored in 'SeqSero_result.txt' in that directory. And the assembled alleles can also be found in the directory if using ""-m a"" (allele mode)" Genome indexing, Antimicrobial resistance prediction, Genome alignment Whole genome sequencing, Sequence assembly, Genomics Up-to-date https://github.com/denglab/SeqSero2 Sequence Analysis seqsero2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqsero2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqsero2 1.3.1 seqsero2 1.3.1 Genome indexing, Antimicrobial resistance prediction, Genome alignment Whole genome sequencing, Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 +seqtk seqtk_comp, seqtk_cutN, seqtk_dropse, seqtk_fqchk, seqtk_hety, seqtk_listhet, seqtk_mergefa, seqtk_mergepe, seqtk_mutfa, seqtk_randbase, seqtk_sample, seqtk_seq, seqtk_subseq, seqtk_telo, seqtk_trimfq Toolkit for processing sequences in FASTA/Q formats seqtk seqtk seqtk A tool for processing sequences in the FASTA or FASTQ format. It parses both FASTA and FASTQ files which can also be optionally compressed by gzip. Data handling, Sequence file editing Data management Up-to-date https://github.com/lh3/seqtk Sequence Analysis seqtk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqtk 1.4 seqtk 1.4 Data handling, Sequence file editing 15 15 15 15 15 15 15 15 0 0 0 0 14 0 0 0 0 0 0 0 14 0 14 0 0 14 0 0 0 15 0 0 0 0 0 0 0 14 14 14 753 59668 +seqwish seqwish Alignment to variation graph inducer To update https://github.com/ekg/seqwish Sequence Analysis, Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqwish/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqwish 0.7.5 seqwish 0.7.10 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 271 +seurat seurat A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data To update https://github.com/satijalab/seurat Transcriptomics, RNA, Statistics seurat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat https://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat 4.3.0.1 r-seurat 3.0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 66 1543 +shasta shasta Fast de novo assembly of long read sequencing data To update https://github.com/chanzuckerberg/shasta Assembly, Nanopore shasta iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta https://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta 0.6.0 shasta 0.12.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 154 763 +shorah shorah_amplicon Reconstruct haplotypes using ShoRAH in amplicon mode shorah shorah ShoRAH Inference of a population from a set of short reads. The package contains programs that support mapping of reads to a reference genome, correcting sequencing errors by locally clustering reads in small windows of the alignment, reconstructing a minimal set of global haplotypes that explain the reads, and estimating the frequencies of the inferred haplotypes. Haplotype mapping, Variant calling Metagenomics, Sequencing, Genetics To update https://github.com/cbg-ethz/shorah/blob/master/README.md Sequence Analysis shorah_amplicon iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shorah https://github.com/galaxyproject/tools-iuc/tree/main/tools/shorah 1.1.3 shorah 1.99.2 Haplotype mapping, Variant calling Metagenomics, Sequencing, Genetics 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +shovill shovill Faster de novo assembly pipeline based around Spades shovill shovill shovill Shovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too. Genome assembly Genomics, Microbiology, Sequence assembly Up-to-date https://github.com/tseemann/shovill Assembly shovill iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill https://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill 1.1.0 shovill 1.1.0 Genome assembly Genomics, Microbiology, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1008 41600 +sickle sickle A windowed adaptive trimming tool for FASTQ files using quality sickle sickle sickle A tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads. Sequence trimming Data quality management To update https://github.com/najoshi/sickle Fastq Manipulation, Sequence Analysis sickle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle https://github.com/galaxyproject/tools-iuc/tree/main/tools/sickle 1.33.2 sickle-trim 1.33 Sequence trimming Data quality management 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 269 14982 +simtext abstracts_by_pmids, pmids_to_pubtator_matrix, pubmed_by_queries, text_to_wordmatrix A text mining framework for interactive analysis and visualization of similarities among biomedical entities. To update https://github.com/dlal-group/simtext Text Manipulation simtext iuc https://github.com/galaxyproject/tools-iuc/tools/simtext https://github.com/galaxyproject/tools-iuc/tree/main/tools/simtext 0.0.2 r-argparse 1.0.1 0 2 4 0 0 2 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 34 142 +sina sina SINA reference based multiple sequence alignment sina sina SINA Aligns and optionally taxonomically classifies your rRNA gene sequences.Reference based multiple sequence alignment Sequence alignment analysis, Multiple sequence alignment, Taxonomic classification, Structure-based sequence alignment Sequencing, RNA, Nucleic acid structure analysis, Taxonomy, Sequence analysis, Taxonomy Up-to-date https://sina.readthedocs.io/en/latest/ Sequence Analysis sina iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina https://github.com/galaxyproject/tools-iuc/tree/main/tools/sina 1.7.2 sina 1.7.2 Sequence alignment analysis, Multiple sequence alignment, Taxonomic classification, Structure-based sequence alignment Sequencing, RNA, Nucleic acid structure analysis, Taxonomy, Sequence analysis, Taxonomy 1 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 1128 +sinto sinto_barcode, sinto_fragments Sinto single-cell analysis tools To update https://github.com/timoast/sinto Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sinto https://github.com/galaxyproject/tools-iuc/tree/main/tools/sinto 0.9.0 sinto 0.10.1 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 17 91 +slamdunk alleyoop, slamdunk Slamdunk maps and quantifies SLAMseq reads Up-to-date http://t-neumann.github.io/slamdunk RNA, Transcriptomics, Sequence Analysis, Next Gen Mappers slamdunk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunk https://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk 0.4.3 slamdunk 0.4.3 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 361 +sleuth sleuth Sleuth is a program for differential analysis of RNA-Seq data. sleuth sleuth sleuth A statistical model and software application for RNA-seq differential expression analysis. Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation RNA-seq, Gene expression, Statistics and probability Up-to-date https://github.com/pachterlab/sleuth Transcriptomics, RNA, Statistics sleuth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuth https://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth 0.30.1 r-sleuth 0.30.1 Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 64 +smallgenomeutilities smgu_frameshift_deletions_checks Set of utilities for manipulating small viral genome data. v-pipe v-pipe V-pipe Bioinformatics pipeline for the analysis of next-generation sequencing data derived from intra-host viral populations. Read pre-processing, Sequence alignment, Genetic variation analysis Genomics, Population genetics, Workflows, Virology, Sequencing Up-to-date https://github.com/cbg-ethz/smallgenomeutilities Sequence Analysis smallgenomeutilities iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/smallgenomeutilities https://github.com/galaxyproject/tools-iuc/tree/main/tools/smallgenomeutilities 0.4.1 smallgenomeutilities 0.4.1 Read pre-processing, Sequence alignment, Genetic variation analysis Genomics, Population genetics, Workflows, Virology, Sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 121 +smudgeplot smudgeplot Inference of ploidy and heterozygosity structure using whole genome sequencing smudgeplots smudgeplots Smudgeplots Reference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics Up-to-date https://github.com/KamilSJaron/smudgeplot Assembly smudgeplot galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot 0.2.5 smudgeplot 0.2.5 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 22 203 +snap snap, snap_training SNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes. snap snap SNAP The Semi-HMM-based Nucleic Acid Parser is a gene prediction tool. Gene prediction DNA, DNA polymorphism, Genetics Up-to-date https://github.com/KorfLab/SNAP Sequence Analysis snap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snap https://github.com/galaxyproject/tools-iuc/tree/main/tools/snap 2013_11_29 snap 2013_11_29 Gene prediction DNA polymorphism, Genetics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 133 1349 +snapatac2 snapatac2_clustering, snapatac2_peaks_and_motif, snapatac2_plotting, snapatac2_preprocessing SnapATAC2 – A Python/Rust package for single-cell epigenomics analysis To update https://kzhang.org/SnapATAC2/ Epigenetics, Sequence Analysis snapatac2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snapatac2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/snapatac2 2.6.4 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +sniffles sniffles Galaxy wrapper for sniffles sniffles sniffles Sniffles An algorithm for structural variation detection from third generation sequencing alignment. Sequence analysis, Structural variation detection DNA structural variation, Sequencing To update https://github.com/fritzsedlazeck/Sniffles Sequence Analysis sniffles iuc https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/sniffles 1.0.12 sniffles 2.4 Sequence analysis, Structural variation detection Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 58 919 +snipit snipit Summarise snps relative to a reference sequence snipit snipit snipit Summarise snps relative to a reference sequence Base position variability plotting Virology Up-to-date https://github.com/aineniamh/snipit Variant Analysis, Sequence Analysis snipit iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/snipit https://github.com/galaxyproject/tools-iuc/tree/main/tools/snipit 1.2 snipit 1.2 Base position variability plotting Virology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 669 +snippy snippy_core, snippy, snippy_clean_full_aln Contains the snippy tool for characterising microbial snps snippy snippy snippy Rapid haploid variant calling and core SNP phylogeny generation. Phylogenetic tree visualisation, Phylogenetic tree generation, Variant calling Genomics, Model organisms, DNA polymorphism, Phylogenetics To update https://github.com/tseemann/snippy Sequence Analysis snippy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snippy https://github.com/galaxyproject/tools-iuc/tree/main/tools/snippy snippy 4.6.0 Phylogenetic tree visualisation, Variant calling Genomics, Model organisms, DNA polymorphism, Phylogenetics 3 3 3 3 3 3 3 3 0 0 0 0 2 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 1372 105708 +snp-dists snp_dists Compute pairwise SNP distance matrix from a FASTA sequence alignment Up-to-date https://github.com/tseemann/snp-dists Variant Analysis snp_dists iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snp-dists https://github.com/galaxyproject/tools-iuc/tree/main/tools/snp-dists 0.8.2 snp-dists 0.8.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 367 4558 +snp-sites snp_sites Finds SNP sites from a multi-FASTA alignment file Up-to-date https://github.com/sanger-pathogens/snp-sites Variant Analysis snp_sites iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snp-sites https://github.com/galaxyproject/tools-iuc/tree/main/tools/snp-sites 2.5.1 snp-sites 2.5.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 284 5107 +snpeff snpEff, snpEff_build_gb, snpEff_databases, snpEff_download, snpEff_get_chr_names SnpEff is a genetic variant annotation and effect prediction toolbox To update http://snpeff.sourceforge.net/ Genome-Wide Association Study, Variant Analysis snpeff iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpeff biopython 1.70 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 1 0 0 0 0 5 5 0 0 5 0 0 0 5 0 0 0 0 0 0 0 5 5 0 2676 95592 +snpeff-covid19 snpeff_sars_cov_2 SnpEff, the COVID-19 version, is a genetic variant annotation and effect prediction toolbox snpeff snpeff snpEff Variant annotation and effect prediction tool. It annotates and predicts the effects of variants on genes and proteins (such as amino acid changes). SNP detection DNA polymorphism, Genetic variation, Nucleic acid sites, features and motifs To update http://snpeff.sourceforge.net/ Genome-Wide Association Study, Variant Analysis snpeff_sars_cov_2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpeff https://github.com/galaxyproject/tools-iuc/tree/main/tools/snpeff-covid19 SNP detection DNA polymorphism, Nucleic acid sites, features and motifs 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 533 760352 +snpfreqplot snpfreqplot A plotting app to visualise the SNPs across a region To update https://github.com/BrownfieldPlantLab/SNPFreqPlot Variant Analysis snpfreqplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snpfreqplot/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/snpfreqplot 1.0 r-base 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 156 3530 +snpsift snpSift_annotate, snpSift_caseControl, snpSift_extractFields, snpSift_filter, snpSift_int, snpSift_rmInfo, snpsift_vartype, snpSift_vcfCheck snpEff SnpSift tools from Pablo Cingolani To update http://snpeff.sourceforge.net/SnpSift.html Variant Analysis snpsift iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsift snpsift 5.2 8 8 8 8 8 8 8 8 0 0 0 0 0 0 0 0 8 0 0 0 0 0 8 0 0 8 0 0 0 8 0 0 0 0 0 0 0 8 8 0 1352 5114712 +snpsift_dbnsfp snpSift_dbnsfp snpEff SnpSift dbnsfp tool from Pablo Cingolani To update http://snpeff.sourceforge.net/SnpSift.html#dbNSFP Variant Analysis snpsift_dbnsfp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift_dbnsfp https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsift_dbnsfp snpsift 5.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 46 +snpsift_genesets snpSift_geneSets Annotate SnpEff vcf with genesets such as Gene Ontology (GO), KEGG, Reactome To update http://snpeff.sourceforge.net/SnpSift.html#geneSets Variant Analysis snpsift_genesets iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/snpsift/snpsift_genesets/ https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/snpsift/snpsift_genesets snpsift 5.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 31 528 +socru socru Order and orientation of complete bacterial genomes To update https://github.com/quadram-institute-bioscience/socru Sequence Analysis socru iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/socru https://github.com/galaxyproject/tools-iuc/tree/main/tools/socru 2.1.7 socru 2.2.4 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 621 +sonneityping sonneityping Scripts for parsing Mykrobe predict results for Shigella sonnei. sonneityping sonneityping sonneityping Scripts for parsing Mykrobe predict results for Shigella sonnei. Antimicrobial resistance prediction, Variant calling, Genotyping Whole genome sequencing, Genotype and phenotype, Genetic variation, Metagenomics Up-to-date https://github.com/katholt/sonneityping Sequence Analysis sonneityping iuc https://github.com/katholt/sonneityping https://github.com/galaxyproject/tools-iuc/tree/main/tools/sonneityping 20210201 sonneityping 20210201 Antimicrobial resistance prediction, Variant calling, Genotyping Whole genome sequencing, Genotype and phenotype, Genetic variation, Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 +spades spades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spades SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction. spades coronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spades SPAdes St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads. Genome assembly Sequence assembly To update https://github.com/ablab/spades Assembly, RNA, Metagenomics spades iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades https://github.com/galaxyproject/tools-iuc/tree/main/tools/spades 3.15.5 spades 4.0.0 Genome assembly Sequence assembly 9 9 9 9 9 9 9 9 0 0 0 0 1 0 0 0 0 0 0 0 1 3 8 0 0 2 0 0 0 3 0 0 0 0 0 0 0 9 3 0 3547 72953 +spaln list_spaln_tables, spaln Spaln (space-efficient spliced alignment) maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence. To update http://www.genome.ist.i.kyoto-u.ac.jp/~aln_user/spaln/ Sequence Analysis, Genome annotation spaln iuc https://github.com/ogotoh/spaln https://github.com/galaxyproject/tools-iuc/tree/main/tools/spaln 2.4.9 python 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 34 446 +spapros spapros, spapros Select and evaluate probe sets for targeted spatial transcriptomics. Up-to-date https://github.com/theislab/spapros Transcriptomics, Sequence Analysis spapros iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spapros/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/spapros 0.1.5 spapros 0.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +spotyping spotyping SpoTyping allows fast and accurate in silico Mycobacterium spoligotyping from sequence reads spotyping spotyping SpoTyping Fast and accurate in silico Mycobacterium spoligotyping from sequence reads. Variant pattern analysis Microbiology, Sequencing, Sequence composition, complexity and repeats, Genetic variation Up-to-date https://github.com/xiaeryu/SpoTyping-v2.0 Sequence Analysis spotyping iuc https://github.com/xiaeryu/SpoTyping-v2.0/tree/master/SpoTyping-v2.0-commandLine https://github.com/galaxyproject/tools-iuc/tree/main/tools/spotyping 2.1 spotyping 2.1 Variant pattern analysis Microbiology, Sequencing, Sequence composition, complexity and repeats, Genetic variation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 1278 +spyboat spyboat Wavelet analysis for 3d-image stacks To update http://github.com/tensionhead/spyboat Imaging, Graphics spyboat iuc https://github.com/galaxyproject/tools-iuc/tree/master/packages/spyboat https://github.com/galaxyproject/tools-iuc/tree/main/tools/spyboat 0.1.2 spyboat 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 67 +sra-tools fasterq_dump, fastq_dump, sam_dump NCBI Sequence Read Archive toolkit utilities sra-tools sra-tools SRA Software Toolkit The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives. Data handling DNA, Genomics, Sequencing Up-to-date https://github.com/ncbi/sra-tools Data Source, Fastq Manipulation sra_tools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sra-tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/sra-tools 3.1.1 sra-tools 3.1.1 Data handling DNA, Genomics, Sequencing 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 3 0 0 0 3 0 0 0 0 0 0 0 3 3 0 6247 350032 +srst2 srst2 SRST2 Short Read Sequence Typing for Bacterial Pathogens srst2 srst2 srst2 Short Read Sequence Typing for Bacterial Pathogens Multilocus sequence typing Whole genome sequencing, Public health and epidemiology To update http://katholt.github.io/srst2/ Metagenomics srst2 iuc https://github.com/katholt/srst2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/srst2 0.2.0 samtools 1.20 Multilocus sequence typing Whole genome sequencing, Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 205 +stacks stacks_assembleperead, stacks_clonefilter, stacks_cstacks, stacks_denovomap, stacks_genotypes, stacks_populations, stacks_procrad, stacks_pstacks, stacks_refmap, stacks_rxstacks, stacks_sstacks, stacks_stats, stacks_ustacks Stacks is a software pipeline for building loci from short-read sequences, such as RAD-seq stacks stacks Stacks Developed to work with restriction enzyme based sequence data, such as RADseq, for building genetic maps and conducting population genomics and phylogeography analysis. Data handling Mapping, Population genetics To update http://catchenlab.life.illinois.edu/stacks/ Sequence Analysis stacks iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks https://github.com/galaxyproject/tools-iuc/tree/main/tools/stacks stacks 2.65 Data handling Mapping, Population genetics 0 13 13 12 0 13 13 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 13 0 152 11635 +stacks2 stacks2_clonefilter, stacks2_cstacks, stacks2_denovomap, stacks2_gstacks, stacks2_kmerfilter, stacks2_populations, stacks2_procrad, stacks2_refmap, stacks2_shortreads, stacks2_sstacks, stacks2_tsv2bam, stacks2_ustacks Stacks is a software pipeline for building loci from short-read sequences, such as RAD-seq To update http://catchenlab.life.illinois.edu/stacks/ Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/stacks2 2.55 stacks 2.65 0 12 12 12 0 12 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 0 238 7292 +star_fusion star_fusion STAR Fusion detects fusion genes in RNA-Seq data after running RNA-STAR To update https://github.com/STAR-Fusion/STAR-Fusion Sequence Analysis, Transcriptomics star_fusion iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusion https://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion 0.5.4-3+galaxy1 star-fusion 1.13.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 35 1212 +straindesign straindesign_analyzing_model, straindesign_reduce_model, straindesign_simulate_deletion Toolbox to optimize biological model To update https://github.com/brsynth/straindesign Systems Biology, Synthetic Biology straindesign iuc https://github.com/brsynth/straindesign https://github.com/galaxyproject/tools-iuc/tree/main/tools/straindesign 3.2.2 straindesign 3.2.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +strelka strelka_germline, strelka_somatic Strelka2 is a fast and accurate small variant caller optimizedfor analysis of germline variation in small cohorts and somaticvariation in tumor/normal sample pairs. The germline caller employs anefficient tiered haplotype model to improve accuracy and provide read-backedphasing, adaptively selecting between assembly and a faster alignment-basedhaplotyping approach at each variant locus. The germline caller also analyzesinput sequencing data using a mixture-model indel error estimation method toimprove robustness to indel noise. The somatic calling model improves on theoriginal Strelka method for liquid and late-stage tumor analysis by accountingfor possible tumor cell contamination in the normal sample. A final empiricalvariant re-scoring step using random forest models trained on various callquality features has been added to both callers to further improve precision. Up-to-date https://github.com/Illumina/strelka/ Variant Analysis strelka iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/strelka https://github.com/galaxyproject/tools-iuc/tree/main/tools/strelka 2.9.10 strelka 2.9.10 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 53 549 +stringtie stringtie, stringtie_merge StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. stringtie stringtie StringTie Fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus. Transcriptome assembly, RNA-Seq analysis Transcriptomics, RNA-seq Up-to-date http://ccb.jhu.edu/software/stringtie/ Transcriptomics stringtie iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie https://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie 2.2.3 stringtie 2.2.3 Transcriptome assembly, RNA-Seq analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2165 167659 +structure structure for using multi-locus genotype data to investigate population structure. structure structure Structure The program structureis a free software package for using multi-locus genotype data to investigate population structure. Its uses include inferring the presence of distinct populations, assigning individuals to populations, studying hybrid zones, identifying migrants and admixed individuals, and estimating population allele frequencies in situations where many individuals are migrants or admixed. Genetic variation analysis Population genetics Up-to-date https://web.stanford.edu/group/pritchardlab/structure.html Phylogenetics, Variant Analysis structure iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/structure https://github.com/galaxyproject/tools-iuc/tree/main/tools/structure 2.3.4 structure 2.3.4 Genetic variation analysis Population genetics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 59 2623 +structureharvester structureharvester for parsing STRUCTURE outputs and for performing the Evanno method Up-to-date http://alumni.soe.ucsc.edu/~dearl/software/structureHarvester/ Phylogenetics, Variant Analysis structureharvester iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/structureharvester https://github.com/galaxyproject/tools-iuc/tree/main/tools/structureharvester 0.6.94 structureharvester 0.6.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +swift swiftlink Parallel MCMC Linkage Analysis Up-to-date https://github.com/ajm/swiftlink Variant Analysis swiftlink iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/swiftlink/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/swift 1.0 swiftlink 1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +syndiva syndiva SynDivA was developed to analyze the diversity of synthetic libraries of a Fibronectin domain. To update Proteomics syndiva iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/SynDivA https://github.com/galaxyproject/tools-iuc/tree/main/tools/syndiva 1.0 clustalo 1.2.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 30 +table_compute table_compute Perform general-purpose table operations To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/table_compute Text Manipulation table_compute iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/table_compute https://github.com/galaxyproject/tools-iuc/tree/main/tools/table_compute 1.2.4 pandas 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 741 208652 +tabular_to_fastq tabular_to_fastq Tabular to FASTQ converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation tabular_to_fastq devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/tabular_to_fastq 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 7388 +tag_pileup_frequency tag_pileup_frequency Contains a tool that generates a frequency pileup of the 5' ends of aligned reads in a BAM filerelative to reference points in a BED file. To update https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/tagpileup Statistics, SAM, Genomic Interval Operations tag_pileup_frequency iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tag_pileup_frequency https://github.com/galaxyproject/tools-iuc/tree/main/tools/tag_pileup_frequency 1.0.2 openjdk 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 164 +tasmanian_mismatch tasmanian_mismatch Analysis of positional mismatches Up-to-date https://github.com/nebiolabs/tasmanian-mismatch Sequence Analysis tasmanian_mismatch iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tasmanian_mismatch https://github.com/galaxyproject/tools-iuc/tree/main/tools/tasmanian_mismatch 1.0.7 tasmanian-mismatch 1.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +taxonkit name2taxid, profile2cami TaxonKit - A Practical and Efficient NCBI Taxonomy Toolkit taxonkit taxonkit TaxonKit TaxonKit is a practical and efficient NCBI taxonomy toolkit. Formatting, Data retrieval Taxonomy, Biotechnology, Ecology Up-to-date https://bioinf.shenwei.me/taxonkit/ Metagenomics taxonkit iuc https://github.com/shenwei356/taxonkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonkit 0.17.0 taxonkit 0.17.0 Formatting, Data retrieval Taxonomy, Biotechnology, Ecology 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +taxonomy_filter_refseq taxonomy_filter_refseq Filter RefSeq by taxonomy To update https://github.com/pvanheus/ncbitaxonomy Sequence Analysis, Genome annotation taxonomy_filter_refseq iuc https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_filter_refseq 0.3.0 rust-ncbitaxonomy 1.0.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +taxonomy_krona_chart taxonomy_krona_chart Krona pie chart from taxonomic profile krona krona Krona Krona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome). Visualisation Metagenomics To update http://sourceforge.net/projects/krona/ Assembly taxonomy_krona_chart crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart 2.7.1+galaxy0 krona 2.8.1 Visualisation Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1801 27426 +taxpasta taxpasta standardise taxonomic profiles taxpasta taxpasta taxpasta TAXonomic Profile Aggregation and STAndardisationThe main purpose of taxpasta is to standardise taxonomic profiles created by a range of bioinformatics tools. We call those tools taxonomic profilers. They each come with their own particular tabular output format. Across the profilers, relative abundances can be reported in read counts, fractions, or percentages, as well as any number of additional columns with extra information. We therefore decided to take the lessons learnt to heart and provide our own solution to deal with this pasticcio. With taxpasta you can ingest all of those formats and, at a minimum, output taxonomy identifiers and their integer counts. Taxpasta can not only standardise profiles but also merge them across samples for the same profiler into a single table. Standardisation and normalisation, Aggregation, Formatting, Conversion Taxonomy, Metagenomics Up-to-date https://taxpasta.readthedocs.io/en/latest/ Sequence Analysis taxpasta iuc https://github.com/taxprofiler/taxpasta https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxpasta 0.7.0 taxpasta 0.7.0 Standardisation and normalisation, Aggregation, Formatting, Conversion Taxonomy, Metagenomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +tb-profiler tb_profiler_profile Processes M. tuberculosis sequence data to infer strain type and identify known drug resistance markers. tb-profiler tb-profiler tb-profiler A tool for drug resistance prediction from _M. tuberculosis_ genomic data (sequencing reads, alignments or variants). Antimicrobial resistance prediction To update https://github.com/jodyphelan/TBProfiler Sequence Analysis tbprofiler iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/tb-profiler https://github.com/galaxyproject/tools-iuc/tree/main/tools/tb-profiler 6.2.1 tb-profiler 6.3.0 Antimicrobial resistance prediction 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 198 5161 +tb_variant_filter tb_variant_filter M. tuberculosis H37Rv VCF filter Up-to-date https://github.com/COMBAT-TB/tb_variant_filter Variant Analysis tb_variant_filter iuc https://github.com/COMBAT-TB/tb_variant_filter https://github.com/galaxyproject/tools-iuc/tree/main/tools/tb_variant_filter 0.4.0 tb_variant_filter 0.4.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 209 19252 +tbl2gff3 tbl2gff3 Table to GFF3 To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3 Convert Formats, Sequence Analysis tbl2gff3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/tbl2gff3 1.2 bcbiogff 0.6.6 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 229 1584 +tbvcfreport tbvcfreport Generate HTML report from SnpEff M.tuberculosis VCF(s) Up-to-date https://github.com/COMBAT-TB/tbvcfreport Variant Analysis tbvcfreport iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/tbvcfreport https://github.com/galaxyproject/tools-iuc/tree/main/tools/tbvcfreport 1.0.1 tbvcfreport 1.0.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 167 2290 +te_finder te_finder Transposable element insertions finder tefinder tefinder TEfinder A Bioinformatics Pipeline for Detecting New Transposable Element Insertion Events in Next-Generation Sequencing Data.A bioinformatics tool for detecting novel transposable element insertions.TEfinder uses discordant reads to detect novel transposable element insertion events in paired-end sample sequencing data. Genome indexing, Variant calling, PCR primer design Sequencing, Mobile genetic elements, Workflows, Evolutionary biology, Genetic variation To update https://github.com/VistaSohrab/TEfinder Sequence Analysis te_finder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/te_finder/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/te_finder 1.0.1 samtools 1.20 Genome indexing, Variant calling, PCR primer design Sequencing, Mobile genetic elements, Workflows, Evolutionary biology, Genetic variation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 7 81 +telescope telescope_assign Single locus resolution of Transposable ELEment expression. Telescope-expression Telescope-expression Telescope Telescope is a tool for the characterization of the retrotranscriptome by accurate estimation of transposable element expression and the quantification of transposable element expression using RNA-seq.It can be used for Statistical Performance of TE Quantification Methods.All scripts needed to examine the sensitivity and biases of computational approaches for quantifying TE expression: 1) unique counts, 2) best counts, 3) RepEnrich, 4) TEtranscripts, 5) RSEM, 6) SalmonTE, and 7) Telescope. Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mapping RNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly Up-to-date https://github.com/mlbendall/telescope/ Genome annotation telescope_assign iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/telescope https://github.com/galaxyproject/tools-iuc/tree/main/tools/telescope 1.0.3 telescope 1.0.3 Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mapping RNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +tetoolkit tetoolkit_tetranscripts The TEToolkit suite improves the bioinformatic analysis of repetitive sequences, particularly transposable elements, in order to elucidate novel (and previously ignored) biological insights of their functions in development and diseases. Up-to-date http://hammelllab.labsites.cshl.edu/software/ Sequence Analysis tetoolkit iuc https://github.com/mhammell-laboratory/TEtranscripts https://github.com/galaxyproject/tools-iuc/tree/main/tools/tetoolkit 2.2.3 tetranscripts 2.2.3 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 33 871 +tetyper tetyper Type a specific transposable element (TE) of interest from paired-end sequencing data. Up-to-date https://github.com/aesheppard/TETyper Sequence Analysis tetyper iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tetyper https://github.com/galaxyproject/tools-iuc/tree/main/tools/tetyper 1.1 tetyper 1.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 69 +tn93 tn93_readreduce, tn93, tn93_cluster, tn93_filter Compute distances between sequences To update https://github.com/veg/tn93/ Sequence Analysis tn93 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tn93/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/tn93 1.0.6 tn93 1.0.14 4 0 4 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 4 0 0 17 1881 +tooldistillator tooldistillator, tooldistillator_summarize ToolDistillator extract and aggregate information from different tool outputs to JSON parsable files tooldistillator tooldistillator ToolDistillator ToolDistillator is a tool to extract information from output files of specific tools, expose it as JSON files, and aggregate over several tools.It can produce both a single file to each tool or a summarized file from a set of reports. Data handling, Parsing Microbiology, Bioinformatics, Sequence analysis Up-to-date https://gitlab.com/ifb-elixirfr/abromics/tooldistillator Sequence Analysis tooldistillator iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tooldistillator https://github.com/galaxyproject/tools-iuc/tree/main/tools/tooldistillator 0.9 tooldistillator 0.9 Parsing Microbiology, Bioinformatics, Sequence analysis 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +tracegroomer tracegroomer TraceGroomer is a solution for formatting and normalising Tracer metabolomics given file(s), to produce the .csv files which are ready for DIMet tool. Up-to-date https://github.com/cbib/TraceGroomer Metabolomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/Tracegroomer https://github.com/galaxyproject/tools-iuc/tree/main/tools/tracegroomer 0.1.4 tracegroomer 0.1.4 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +tracy tracy_align, tracy_assemble, tracy_basecall, tracy_decompose To update iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tracy https://github.com/galaxyproject/tools-iuc/tree/main/tools/tracy 0.6.1 tracy 0.7.6 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 58 2439 +transdecoder transdecoder TransDecoder finds coding regions within transcripts TransDecoder TransDecoder TransDecoder TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks. Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing To update https://transdecoder.github.io/ Transcriptomics, RNA transdecoder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoder https://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder 5.5.0 transdecoder 5.7.1 Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 348 5468 +transit gff_to_prot, transit_gumbel, transit_hmm, transit_resampling, transit_tn5gaps TRANSIT transit transit TRANSIT A tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions. Transposon prediction DNA, Sequencing, Mobile genetic elements To update https://github.com/mad-lab/transit/ Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit 3.0.2 transit 3.2.3 Transposon prediction DNA, Sequencing, Mobile genetic elements 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 84 907 +transtermhp transtermhp Finds rho-independent transcription terminators in bacterial genomes transtermhp transtermhp TransTermHP TransTermHP finds rho-independent transcription terminators in bacterial genomes. Each terminator found by the program is assigned a confidence value that estimates its probability of being a true terminator Transcriptional regulatory element prediction Transcription factors and regulatory sites To update https://transterm.cbcb.umd.edu Sequence Analysis transtermhp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transtermhp https://github.com/galaxyproject/tools-iuc/tree/main/tools/transtermhp transtermhp 2.09 Transcriptional regulatory element prediction Transcription factors and regulatory sites 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 229 +trimmomatic trimmomatic A flexible read trimming tool for Illumina NGS data Up-to-date http://www.usadellab.org/cms/?page=trimmomatic Fastq Manipulation trimmomatic pjbriggs https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic https://github.com/galaxyproject/tools-iuc/tree/main/tools/trimmomatic 0.39 trimmomatic 0.39 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 5862 305866 +trinity trinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_stats Trinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseq trinity trinity Trinity Trinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads. Transcriptome assembly Transcriptomics, Gene expression, Gene transcripts To update https://github.com/trinityrnaseq/trinityrnaseq Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity 2.15.1 trinity 2.15.2 Transcriptome assembly Transcriptomics, Gene transcripts 9 13 13 13 9 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 11 0 0 1 0 0 0 0 13 12 0 1762 31951 +trinotate trinotate Trinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes. trinotate trinotate Trinotate Comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms. Gene functional annotation Gene expression, Transcriptomics To update https://trinotate.github.io/ Transcriptomics, RNA trinotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate 3.2.2 trinotate 4.0.2 Gene functional annotation Transcriptomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 151 1796 +trycycler trycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsample Trycycler toolkit wrappers Up-to-date https://github.com/rrwick/Trycycler Assembly trycycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler 0.5.5 trycycler 0.5.5 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 147 8942 +tsebra tsebra This tool has been developed to combine BRAKER predictions. tsebra tsebra TSEBRA TSEBRA is a combiner tool that selects transcripts from gene predictions based on the support by extrisic evidence in form of introns and start/stop codons. It was developed to combine BRAKER1 and BRAKER2 predicitons to increase their accuracies. Homology-based gene prediction, Alternative splicing prediction Gene expression, RNA-Seq, Gene transcripts, Model organisms To update https://github.com/Gaius-Augustus/TSEBRA Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tsebra https://github.com/galaxyproject/tools-iuc/tree/main/tools/tsebra 1.1.2.4 tsebra 1.1.2.5 Homology-based gene prediction, Alternative splicing prediction Gene expression, RNA-Seq, Gene transcripts, Model organisms 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 +tsne tsne T-Distributed Stochastic Neighbor Embedding using a Barnes-Hut Implementation To update https://cran.r-project.org/web/packages/Rtsne/ Text Manipulation tsne iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tsne https://github.com/galaxyproject/tools-iuc/tree/main/tools/tsne 0.0.2 r-rtsne 0.13 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 368 +twobittofa ucsc-twobittofa twoBitToFa is a tool to convert all or part of .2bit file to FASTA UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update https://genome.ucsc.edu/goldenpath/help/twoBit.html Convert Formats ucsc_twobittofa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/twobittofa https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/twobittofa 377 ucsc-twobittofa 469 Sequence analysis 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 48 502 +tximport tximport Wrapper for the Bioconductor package tximport tximport tximport tximport An R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages. Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows To update http://bioconductor.org/packages/tximport/ Transcriptomics tximport iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tximport https://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport 1.22.0 bioconductor-tximport 1.30.0 Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 88 1408 +ucsc_axtchain ucsc_axtchain Chain together genome alignments UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Sequence Analysis ucsc_axtchain iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axtchain https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_axtchain 455 ucsc-axtchain 469 Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ucsc_axttomaf ucsc_axtomaf Convert dataset from axt to MAF format. UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Convert Formats ucsc_axttomaf iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axttomaf https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_axttomaf 377 ucsc-axttomaf 469 Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ucsc_blat ucsc_blat Standalone blat sequence search command line tool blat blat BLAT Fast, accurate spliced alignment of DNA sequences. Sequence alignment Sequence analysis To update http://genome.ucsc.edu/goldenPath/help/blatSpec.html Sequence Analysis ucsc_blat yating-l https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc_blat/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_blat 377 ucsc-blat 469 Sequence alignment Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +ucsc_chainnet ucsc_chainnet Make alignment nets out of chains UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis Up-to-date http://hgdownload.cse.ucsc.edu/admin/exe/ Sequence Analysis ucsc_chainnet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/ucsc_chainnet https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainnet 469 ucsc-chainnet 469 Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ucsc_chainprenet ucsc_chainprenet Remove chains that don't have a chance of being netted UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Sequence Analysis ucsc_chainprenet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainprenet https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainprenet 377 ucsc-chainprenet 469 Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ucsc_chainsort ucsc_chainsort Sort chains. By default sorts by score. UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Sequence Analysis ucsc_chainsort iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainsort https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainsort 455 ucsc-chainsort 469 Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +umi_tools umi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelist UMI-tools extract - Extract UMIs from fastq umi-tools umi-tools UMI-tools Tools for handling Unique Molecular Identifiers in NGS data sets. Sequencing quality control NGS, Sequence sites, features and motifs, Quality affairs To update https://github.com/CGATOxford/UMI-tools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools 1.1.2 umi_tools 1.1.5 Sequencing quality control Sequence sites, features and motifs, Quality affairs 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 5 5 0 379 61618 +unicycler unicycler Unicycler is a hybrid assembly pipeline for bacterial genomes. unicycler unicycler Unicycler A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads. Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly Up-to-date https://github.com/rrwick/Unicycler Assembly unicycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler 0.5.1 unicycler 0.5.1 Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1558 65732 +usher usher_matutils, usher UShER toolkit wrappers usher usher usher The UShER toolkit includes a set of tools for for rapid, accurate placement of samples to existing phylogenies. While not restricted to SARS-CoV-2 phylogenetic analyses, it has enabled real-time phylogenetic analyses and genomic contact tracing in that its placement is orders of magnitude faster and more memory-efficient than previous methods. Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Phylogeny, Evolutionary biology, Cladistics, Genotype and phenotype, Phylogenomics To update https://github.com/yatisht/usher Phylogenetics usher iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/usher https://github.com/galaxyproject/tools-iuc/tree/main/tools/usher 0.2.1 usher 0.6.3 Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Cladistics, Genotype and phenotype, Phylogenomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 1060 +valet valet A pipeline for detecting mis-assemblies in metagenomic assemblies. valet valet VALET VALET is a pipeline for detecting mis-assemblies in metagenomic assemblies. Sequence assembly, Sequence assembly visualisation Metagenomics, Sequence assembly To update https://github.com/marbl/VALET Metagenomics valet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/valet https://github.com/galaxyproject/tools-iuc/tree/main/tools/valet valet 1.0 Sequence assembly, Sequence assembly visualisation Metagenomics, Sequence assembly 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 637 +vapor vapor Classify Influenza samples from raw short read sequence data vapor vapor VAPOR VAPOR is a tool for classification of Influenza samples from raw short read sequence data for downstream bioinformatics analysis. VAPOR is provided with a fasta file of full-length sequences (> 20,000) for a given segment, a set of reads, and attempts to retrieve a reference that is closest to the sample strain. Data retrieval, De-novo assembly, Read mapping Whole genome sequencing, Mapping, Sequence assembly Up-to-date https://github.com/connor-lab/vapor Sequence Analysis vapor iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vapor https://github.com/galaxyproject/tools-iuc/tree/main/tools/vapor 1.0.2 vapor 1.0.2 Data retrieval, De-novo assembly, Read mapping Whole genome sequencing, Mapping, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 94 3164 +vardict vardict_java VarDict - calls SNVs and indels for tumour-normal pairs To update https://github.com/AstraZeneca-NGS/VarDictJava Variant Analysis vardict_java iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vardict https://github.com/galaxyproject/tools-iuc/tree/main/tools/vardict 1.8.3 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 16 273 +variant_analyzer mut2read, mut2sscs, read2mut Collection of tools for analyzing variants in duplex consensus sequencing (DCS) data To update Variant Analysis variant_analyzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/variant_analyzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/variant_analyzer 2.0.0 matplotlib 3 0 3 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 3 88 +varscan varscan_copynumber, varscan_mpileup, varscan_somatic VarScan is a variant caller for high-throughput sequencing data To update https://dkoboldt.github.io/varscan/ Variant Analysis varscan iuc https://github.com/galaxyproject/iuc/tree/master/tools/varscan https://github.com/galaxyproject/tools-iuc/tree/main/tools/varscan 2.4.3 varscan 2.4.6 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 492 9779 +varvamp varvamp Variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses varvamp varvamp varVAMP variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses. The input is an alignment of your viral (full-genome) sequences. PCR primer design Virology, Probes and primers Up-to-date https://github.com/jonas-fuchs/varVAMP/ Sequence Analysis varvamp iuc https://github.com/jonas-fuchs/varVAMP https://github.com/galaxyproject/tools-iuc/tree/main/tools/varvamp 1.2.0 varvamp 1.2.0 PCR primer design Virology, Probes and primers 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +vcf2maf vcf2maf vcf2maf: Convert VCF into MAF To update https://github.com/mskcc/vcf2maf Convert Formats vcf2maf iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vcf2maf https://github.com/galaxyproject/tools-iuc/tree/main/tools/vcf2maf 1.6.21 vcf2maf 1.6.22 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 29 751 +vcf2tsv vcf2tsv Converts VCF files into tab-delimited format To update https://github.com/ekg/vcflib Variant Analysis, Convert Formats vcf2tsv devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcf2tsv https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcf2tsv vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 352 167913 +vcfaddinfo vcfaddinfo Adds info fields from the second dataset which are not present in the first dataset. To update https://github.com/ekg/vcflib Variant Analysis vcfaddinfo devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfaddinfo https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfaddinfo vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 357 +vcfallelicprimitives vcfallelicprimitives Splits alleleic primitives (gaps or mismatches) into multiple VCF lines To update https://github.com/ekg/vcflib Variant Analysis vcfallelicprimitives devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfallelicprimitives https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfallelicprimitives vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 286 15803 +vcfanno vcfanno Annotate VCF files vcfanno vcfanno vcfanno Fast, flexible annotation of genetic variants. SNP annotation Genetic variation, Data submission, annotation and curation Up-to-date https://github.com/brentp/vcfanno Variant Analysis vcfanno iuc https://github.com/galaxyproject/tools-iuc/vcfanno/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/vcfanno 0.3.5 vcfanno 0.3.5 SNP annotation Genetic variation, Data submission, annotation and curation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 87 872 +vcfannotate vcfannotate Intersect VCF records with BED annotations To update https://github.com/ekg/vcflib Variant Analysis vcfannotate devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfannotate https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfannotate vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 77 2181 +vcfannotategenotypes vcfannotategenotypes Annotate genotypes in a VCF dataset using genotypes from another VCF dataset. To update https://github.com/ekg/vcflib Variant Analysis vcfannotategenotypes devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfannotategenotypes https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfannotategenotypes vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 28 192 +vcfbedintersect vcfbedintersect Intersect VCF and BED datasets To update https://github.com/ekg/vcflib Variant Analysis vcfbedintersect devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfbedintersect https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfbedintersect vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 80 3217 +vcfbreakcreatemulti vcfbreakcreatemulti Break multiple alleles into multiple records, or combine overallpoing alleles into a single record To update https://github.com/ekg/vcflib Variant Analysis vcfbreakcreatemulti devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfbreakcreatemulti https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfbreakcreatemulti vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 471 +vcfcheck vcfcheck Verify that the reference allele matches the reference genome To update https://github.com/ekg/vcflib Variant Analysis vcfcheck devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcheck https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcheck vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 675 +vcfcombine vcfcombine Combine multiple VCF datasets To update https://github.com/ekg/vcflib Variant Analysis vcfcombine devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcombine https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcombine vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 99 1695 +vcfcommonsamples vcfcommonsamples Output records belonging to samples commong between two datasets. To update https://github.com/ekg/vcflib Variant Analysis vcfcommonsamples devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfcommonsamples https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfcommonsamples vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 14 244 +vcfdistance vcfdistance Calculate distance to the nearest variant. To update https://github.com/ekg/vcflib Variant Analysis vcfdistance devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfdistance https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfdistance vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 40 564 +vcffilter vcffilter2 Tool for filtering VCF files To update https://github.com/ekg/vcflib Variant Analysis vcffilter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcffilter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcffilter vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 882 44437 +vcffixup vcffixup Count the allele frequencies across alleles present in each record in the VCF file. To update https://github.com/ekg/vcflib Variant Analysis vcffixup devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcffixup https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcffixup vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 71 917 +vcfflatten vcfflatten2 Removes multi-allelic sites by picking the most common alternate To update https://github.com/ekg/vcflib Variant Analysis vcfflatten devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfflatten https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfflatten vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 177 +vcfgeno2haplo vcfgeno2haplo Convert genotype-based phased alleles into haplotype alleles To update https://github.com/ekg/vcflib Variant Analysis vcfgeno2haplo devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfgeno2haplo https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfgeno2haplo vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 36 718 +vcfgenotypes vcfgenotypes Convert numerical representation of genotypes to allelic. To update https://github.com/ekg/vcflib Variant Analysis vcfgenotypes devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfgenotypes https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfgenotypes vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 48 451 +vcfhethom vcfhethom Count the number of heterozygotes and alleles, compute het/hom ratio. To update https://github.com/ekg/vcflib Variant Analysis vcfhethom devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfhethom https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfhethom vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 90 1370 +vcfleftalign vcfleftalign Left-align indels and complex variants in VCF dataset To update https://github.com/ekg/vcflib Variant Analysis vcfleftalign devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfleftalign https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfleftalign vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 279 +vcfprimers vcfprimers Extract flanking sequences for each VCF record To update https://github.com/ekg/vcflib Variant Analysis vcfprimers devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfprimers https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfprimers vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 708 +vcfrandomsample vcfrandomsample Randomly sample sites from VCF dataset To update https://github.com/ekg/vcflib Variant Analysis vcfrandomsample devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfrandomsample https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfrandomsample vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 159 +vcfselectsamples vcfselectsamples Select samples from a VCF file To update https://github.com/ekg/vcflib Variant Analysis vcfselectsamples devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfselectsamples https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfselectsamples vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 29 854 +vcfsort vcfsort Sort VCF dataset by coordinate To update https://github.com/ekg/vcflib Variant Analysis vcfsort devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfsort https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfsort vcflib 1.0.9 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 63 1852 +vcfvcfintersect vcfvcfintersect Intersect two VCF datasets To update https://github.com/ekg/vcflib Variant Analysis vcfvcfintersect devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/vcflib/vcfvcfintersect https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/vcflib/vcfvcfintersect vcflib 1.0.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 265 972774 +vegan vegan_diversity, vegan_fisher_alpha, vegan_rarefaction an R package fo community ecologist vegan vegan vegan Ordination methods, diversity analysis and other functions for community and vegetation ecologists Standardisation and normalisation, Analysis Ecology, Phylogenetics, Environmental science To update https://cran.r-project.org/package=vegan Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vegan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/vegan 2.4-3 r-vegan 2.3_4 Standardisation and normalisation, Analysis Ecology, Phylogenetics, Environmental science 3 0 3 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 74 2020 +velocyto velocyto_cli Velocyto is a library for the analysis of RNA velocity. Up-to-date http://velocyto.org/ Transcriptomics velocyto iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/velocyto https://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto 0.17.17 velocyto.py 0.17.17 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 +velvet velvetg, velveth de novo genomic assembler specially designed for short read sequencing technologies velvet velvet Velvet A de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD. Formatting, De-novo assembly Sequence assembly To update https://www.ebi.ac.uk/~zerbino/velvet/ Assembly velvet devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet velvet 1.2.10 Formatting, De-novo assembly Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2083 25420 +velvet_optimiser velvetoptimiser Automatically optimize Velvet assemblies velvetoptimiser velvetoptimiser VelvetOptimiser This tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly. Optimisation and refinement, Sequence assembly Genomics, Sequence assembly To update Assembly velvetoptimiser simon-gladman https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser 2.2.6+galaxy2 velvet 1.2.10 Optimisation and refinement, Sequence assembly Genomics, Sequence assembly 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 4741 +verkko verkko Telomere-to-telomere assembly pipeline To update https://github.com/marbl/verkko Assembly verkko iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/verkko https://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko 1.3.1 verkko 2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 22 +vg vg_convert, vg_deconstruct, vg_view Variation graph data structures, interchange formats, alignment, genotyping, and variant calling methods To update https://github.com/vgteam/vg Sequence Analysis, Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vg https://github.com/galaxyproject/tools-iuc/tree/main/tools/vg 1.23.0 vg 1.56.0 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 3 477 +virAnnot virannot_blast2tsv, virannot_otu, virAnnot_rps2tsv virAnnot wrappers virannot virannot virAnnot "VirAnnot was build to ease the assembly, blast search, taxonomic annotation and OTUs assignation of viral metagenomic HTS data. It is used in Virologie team of UMR1332 BFP laboratory at INRAE. VirAnnot also takes part of the Euphresco project ""Plant Health Bioinformatics Network"". See more.It is designed to identify viruses in plant metagenomic data but it can be used to assemble and annotate any sequences with the NCBI taxonomy." Sequence annotation, Sequence clustering, Sequence cluster visualisation Metagenomics, Virology, Microbial ecology To update https://github.com/marieBvr/virAnnot Metagenomics virannot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/virAnnot https://github.com/galaxyproject/tools-iuc/tree/main/tools/virAnnot 1.0.1+galaxy0 biopython 1.70 Sequence annotation, Sequence clustering, Sequence cluster visualisation Metagenomics, Virology, Microbial ecology 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +virheat virheat generates a heatmap of allele frequencies from vcf files virheat virheat virHEAT VirHEAT tool generates multi-sample variant-frequency plots from SnpEff-annotated viral variant lists. The tool provides a condensed look at variant frequencies after mapping raw reads to a viral/bacterial reference genome and compares multiple vcf files at the same time. Up-to-date https://github.com/jonas-fuchs/virHEAT Visualization, Variant Analysis virheat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/virheat https://github.com/galaxyproject/tools-iuc/tree/main/tools/virheat 0.7.1 virheat 0.7.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +virhunter virhunter Deep Learning method for novel virus detection in sequencing data virhunter virhunter VirHunter VirHunter is a deep learning method that uses Convolutional Neural Networks (CNNs) and a Random Forest Classifier to identify viruses in sequencing datasets. More precisely, VirHunter classifies previously assembled contigs as viral, host, and bacterial (contamination). Sequence classification Virology To update https://github.com/cbib/virhunter Machine Learning virhunter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/VirHunter https://github.com/galaxyproject/tools-iuc/tree/main/tools/virhunter 1.0.0 numpy Sequence classification Virology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 40 234 +volcanoplot volcanoplot Tool to create a Volcano Plot To update https://ggplot2.tidyverse.org/ Visualization, Transcriptomics, Statistics volcanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplot https://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot 0.0.6 r-ggplot2 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1749 30946 +vsearch vsearch_alignment, vsearch_chimera_detection, vsearch_clustering, vsearch_dereplication, vsearch_masking, vsearch_search, vsearch_shuffling, vsearch_sorting VSEARCH including searching, clustering, chimera detection, dereplication, sorting, masking and shuffling of sequences. vsearch vsearch VSEARCH High-throughput search and clustering sequence analysis tool. It supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering and conversion. DNA mapping, Chimera detection Metagenomics, Sequence analysis To update https://github.com/torognes/vsearch Sequence Analysis vsearch iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch https://github.com/galaxyproject/tools-iuc/tree/main/tools/vsearch 2.8.3 vsearch 2.28.1 DNA mapping, Chimera detection Metagenomics, Sequence analysis 8 8 8 8 8 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 0 0 0 0 0 8 0 0 0 0 0 0 0 8 8 0 182 8507 +vsnp vsnp_add_zero_coverage, vsnp_build_tables, vsnp_determine_ref_from_data, vsnp_get_snps, vsnp_statistics The vSNP tools are critical components of several workflows that validate SNPs and produce annotatedSNP tables and corresponding phylogenetic trees. To update https://github.com/USDA-VS/vSNP Sequence Analysis vsnp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsnp https://github.com/galaxyproject/tools-iuc/tree/main/tools/vsnp 3.0.6 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +weather_app simple_weather provides simple weather in text format To update http://wttr.in/ Visualization, Web Services simpleweather iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/weather_app https://github.com/galaxyproject/tools-iuc/tree/main/tools/weather_app 0.1.2 curl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +weblogo3 rgweblogo3 Sequence Logo generator for fasta weblogo weblogo WebLogo Web-based application designed to make generate sequence logos. Sequence cluster visualisation, Sequence visualisation, Sequence motif recognition Nucleic acid sites, features and motifs, Sequence analysis To update Graphics weblogo3 devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/weblogo3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/weblogo3 3.5.0 weblogo 3.7.9 Sequence cluster visualisation, Sequence visualisation, Sequence motif recognition Nucleic acid sites, features and motifs, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 74 2379 +wigtobigwig ucsc_wigtobigwig converts bedGraph (wig) files into binary bigwig UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update https://genome.ucsc.edu/goldenPath/help/bigWig.html Convert Formats ucsc_wigtobigwig iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/wigtobigwig https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/wigtobigwig 447 ucsc-wigtobigwig 469 Sequence analysis 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +windowmasker windowmasker_mkcounts, windowmasker_ustat Identify repetitive regions using WindowMasker To update https://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/lxr/source/src/app/winmasker/ Sequence Analysis windowmasker iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/windowmasker/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/windowmasker 1.0 blast 2.16.0 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 +winnowmap winnowmap A long-read mapping tool optimized for mapping ONT and PacBio reads to repetitive reference sequences. Up-to-date https://github.com/marbl/Winnowmap Next Gen Mappers winnowmap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/winnowmap https://github.com/galaxyproject/tools-iuc/tree/main/tools/winnowmap 2.03 winnowmap 2.03 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 27 248 +xpath xpath XPath XML querying tool To update http://search.cpan.org/dist/XML-XPath/ Text Manipulation xpath iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/xpath https://github.com/galaxyproject/tools-iuc/tree/main/tools/xpath perl-xml-xpath 1.47 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 234 +yahs yahs Yet Another Hi-C scaffolding tool Up-to-date https://github.com/c-zhou/yahs Assembly yahs iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs https://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs 1.2a.2 yahs 1.2a.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 64 344 +zerone zerone ChIP-seq discretization and quality control Up-to-date https://github.com/nanakiksc/zerone ChIP-seq zerone iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/zerone https://github.com/galaxyproject/tools-iuc/tree/main/tools/zerone 1.0 zerone 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 90 +EMLassemblyline eal_table_template, eal_templates, eml2eal, entities_template, geo_cov_template, makeeml, raster_template, taxo_cov_template, vector_template Tools using EML Assembly Line R package to generate EML metadata from template metadata files and vice versa To update https://github.com/EDIorg/EMLassemblyline Ecology emlassemblyline ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline 0.1.1+galaxy0 r-emlassemblyline 0 0 9 9 0 0 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 102 +Ecoregionalization_workflow ecoregion_brt_analysis, ecoregion_GeoNearestNeighbor, ecoregion_cluster_estimate, ecoregion_clara_cluster, ecoregion_eco_map, ecoregion_taxa_seeker Tools to compute ecoregionalization with BRT model predictions and clustering. To update https://github.com/PaulineSGN/Workflow_Galaxy Ecology ecoregionalization ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow 0.1.0+galaxy0 r-base 0 0 6 5 0 0 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 82 +Geom_mean_workflow Map_shp, Mean_geom, bar_plot Tools to compute The evolution of the total volume of very large trees, standing dead wood and dead wood on the ground on an area and the rate of devolution of the volume of wood favorable to biodiversity by large ecological regions (France). To update https://github.com/PaulineSGN/Galaxy_tool_moyenne_geom Ecology Geometric means (Dead wood) ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow 0.1.0+galaxy0 r-base 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +PAMPA pampa_communitymetrics, pampa_presabs, pampa_glmcomm, pampa_glmsp, pampa_plotglm Tools to compute and analyse biodiversity metrics To update Ecology pampa ecology https://github.com/ColineRoyaux/PAMPA-Galaxy https://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA 0.0.2 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 0 73 1004 +ThermoRawFileParser thermo_raw_file_converter Thermo RAW file converter To update https://github.com/compomics/ThermoRawFileParser Proteomics thermo_raw_file_converter galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser 1.3.4 thermorawfileparser 1.4.4 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 2689 +ab1_fastq ab1_fastq_converter Tool to convert ab1 files into FASTQ files To update Convert Formats ab1fastq ecology https://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/ab1_fastq https://github.com/galaxyecology/tools-ecology/tree/master/tools/ab1_fastq 1.20.0 bioconductor-sangerseqr 1.38.0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 175 40271 +ambertools ambertools_acpype, acpype_Amber2Gromacs, ambertools_antechamber, mmpbsa_mmgbsa, ambertools_parmchk2, parmconv, tleap Ambertools is a set of packages for preparing systems for molecular dynamics (MD) simulations and analyzing trajectories. To update http://ambermd.org/AmberTools.php Molecular Dynamics, Computational chemistry ambertools chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/ambertools 21.10 ambertools 7 2 7 0 7 2 7 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 5 0 243 40666 +appendfdr append_fdr To update appendfdr galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/appendfdr 0.2.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +aquainfra_importer aquainfra_importer A data source tool for downloading datasets via the AquaINFRA Interaction Platform. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/AquaINFRA/tools-ecology/tree/aquainfra_importer https://github.com/galaxyecology/tools-ecology/tree/master/tools/aquainfra_importer 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +artbio_bam_cleaning artbio_bam_cleaning filter bam files before somatic-varscan or lumpy-smoove analysis To update http://artbio.fr SAM, Variant Analysis artbio_bam_cleaning artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/artbio_bam_cleaning https://github.com/ARTbio/tools-artbio/tree/main/tools/artbio_bam_cleaning 1.10+galaxy0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +astropytools astropy_fits2bitmap, astropy_fits2csv, astropy_fitsinfo AstropyTools library contains Galaxy tools for elementary Astrophysical operations To update https://github.com/astropy/astropy Astronomy astropytools volodymyrss https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/astropytools https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/astropytools 0.1.0+galaxy0 astropy 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 3 11 +bamparse bamparse Generates hit count lists from bam alignments. To update http://artbio.fr RNA, Transcriptomics bamparse artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse 4.1.1 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +baseline_calculator tt_baseline Toxicity prediction using QSAR models To update https://github.com/bernt-matthias/mb-galaxy-tools Ecology, Text Manipulation baseline_toxicity_calculator mbernt https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/baseline_calculator 0.1.0+galaxy0 pandas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +bed_to_protein_map bed_to_protein_map Converts a BED file to a tabular list of exon locations To update Proteomics bed_to_protein_map galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bed_to_protein_map https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bed_to_protein_map 0.2.0 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 49 385 +bigwig_to_bedgraph bigwig_to_bedgraph Converts a bigWig file to bedGraph format To update http://artbio.fr Convert Formats bigwig_to_bedgraph artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_bedgraph https://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_bedgraph 377+galaxy1 ucsc-bigwigtobedgraph 469 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 5749 +bigwig_to_wig bigwig_to_wig Converts a bigWig file to Wiggle (WIG) format To update https://artbio.fr Convert Formats bigwig_to_wig artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_wig https://github.com/ARTbio/tools-artbio/tree/main/tools/bigwig_to_wig 3+galaxy0 ucsc-bigwiginfo 469 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +bio3d bio3d_dccm, bio3d_pca, bio3d_rmsd, bio3d_rmsf, bio3d_pca_visualize Bio3d is a program that can be used to analyse molecular dynamics trajectories. To update http://thegrantlab.org/bio3d/index.php Computational chemistry bio3d chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/bio3d https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/bio3d 2.4_1 r-bio3d 2.3_3 5 4 5 0 5 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 510 8913 +biomoldyn biomd_neqgamma, fastpca, biomd_extract_clusters, biomd_rmsd_clustering Tools for MD analysis To update https://github.com/moldyn/ Molecular Dynamics, Computational chemistry biomoldyn chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biomoldyn 1.5.2 scipy 4 0 4 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 0 53 459 +biotransformer biotransformer BioTransformer is a tool for prediction of small molecule metabolism in mammals. biotransformer biotransformer BioTransformer BioTransformer is a freely available web server that supports accurate, rapid and comprehensive in silico metabolism prediction. Metabolic pathway prediction, PTM site prediction, Natural product identification Small molecules, Endocrinology and metabolism, Metabolomics, Carbohydrates, NMR Up-to-date https://bitbucket.org/djoumbou/biotransformerjar/src/master/ Metabolomics biotransformer recetox https://github.com/RECETOX/galaxytools/tree/master/tools/biotransformer https://github.com/RECETOX/galaxytools/tree/master/tools/biotransformer 3.0.20230403 biotransformer 3.0.20230403 Metabolic pathway prediction, PTM site prediction, Natural product identification Small molecules, Endocrinology and metabolism, Metabolomics, Carbohydrates, NMR 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +blast2go blast2go Maps BLAST results to GO annotation terms To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go Ontology Manipulation, Sequence Analysis blast2go peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go 0.0.11 b2g4pipe 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 101 1232 +blast_plus_remote_blastp blast_plus_remote_blastp NCBI BLAST+ with -remote option To update https://blast.ncbi.nlm.nih.gov/ Sequence Analysis blast_plus_remote_blastp galaxyp https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/blast_plus_remote_blastp 2.6.0 blast 2.16.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +blast_rbh blast_reciprocal_best_hits BLAST Reciprocal Best Hits (RBH) from two FASTA files To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh Fasta Manipulation, Sequence Analysis blast_rbh peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh 0.3.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 121 22499 +blast_to_scaffold blast2scaffold Generate DNA scaffold from blastn or tblastx alignments of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blast_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold 1.1.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +blast_unmatched blast_unmatched Extract unmatched query sequences from blast To update http://artbio.fr Fasta Manipulation blast_unmatched artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched 1.0.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +blastparser_and_hits BlastParser_and_hits Parse blast outputs and compile hits To update http://artbio.fr Assembly, RNA blastparser_and_hits artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hits https://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits 2.7.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +blastx_to_scaffold blastx2scaffold Generate DNA scaffold from blastx alignment of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blastx_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold 1.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +blastxml_to_top_descr blastxml_to_top_descr Make table of top BLAST match descriptions To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr Convert Formats, Sequence Analysis, Text Manipulation blastxml_to_top_descr peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr 0.1.2 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 159 264558 +bumbershoot idpqonvertEmbedder, idpassemble, idpqonvert, idpquery, myrimatch To update http://proteowizard.sourceforge.net/ Proteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bumbershoot 3.0.21142 bumbershoot 3_0_21142_0e4f4a4 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 3 1348 +c3s c3s Copernicus Climate Change Service (C3S) To update https://cds.climate.copernicus.eu/cdsapp#!/search?type=dataset Climate Analysis c3s climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s 0.2.0 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 198 +cads cads Copernicus Atmosphere Data Store (ADS) To update https://ads.atmosphere.copernicus.eu/#!/home Climate Analysis cads climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cads https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cads 0.1.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 52 +calisp calisp Calgary approach to isotopes in proteomics Up-to-date https://github.com/kinestetika/Calisp/ Proteomics calisp galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/calisp 3.0.13 calisp 3.0.13 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +cap3 cap3 cap3 wrapper To update http://artbio.fr Assembly cap3 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 2.0.1 cap3 10.2011 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 101 7766 +cardinal cardinal_classification, cardinal_colocalization, cardinal_combine, cardinal_data_exporter, cardinal_filtering, cardinal_mz_images, cardinal_preprocessing, cardinal_quality_report, cardinal_segmentations, cardinal_single_ion_segmentation, cardinal_spectra_plots Statistical and computational tools for analyzing mass spectrometry imaging datasets Up-to-date http://cardinalmsi.org Proteomics, Metabolomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinal https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinal 3.4.3 bioconductor-cardinal 3.4.3 0 9 11 11 0 9 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 11 9 0 277 48705 +cdo cdo_info, cdo_operations CDO (Climate Data Operators) is a collection of command line Operators to manipulate and analyse Climate and NWP model Data.Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG. There are more than 600 operators available. To update https://code.mpimet.mpg.de/projects/cdo/ Climate Analysis climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cdo https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cdo 2.0.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 16 217 +cell-types-analysis ct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvals Tools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysis To update Transcriptomics, RNA, Statistics suite_cell_types_analysis ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis 1.1.1 cell-types-analysis 0.1.11 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 6 +cesm cesm Community Earth System Model (CESM) Up-to-date https://www.cesm.ucar.edu/ Climate Analysis cesm climate https://github.com/ESCOMP/CESM https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/cesm 2.1.3 cesm 2.1.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 13 +champ_blocs cb_dissim, cb_ivr, cb_div Compute indicators for turnover boulders fields To update Ecology ecology https://github.com/Marie59/champ_blocs https://github.com/galaxyecology/tools-ecology/tree/master/tools/champ_blocs 0.0.0 r-base 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 19 174 +cherry_pick_fasta cherry_pick_fasta Pick fasta sequence with specific header content To update http://artbio.fr Fasta Manipulation cherry_pick_fasta artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta https://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta 4.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +climate-stripes climate_stripes Create climate stripes from a tabular input file To update https://www.climate-lab-book.ac.uk/2018/warming-stripes/ Climate Analysis, Visualization climate_stripes climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes 1.0.2 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 237 +concat_multi_datasets cat_multi_datasets Concatenate multiple datasets tail-to-head, including collection datasets. To update http://artbio.fr Text Manipulation concatenate_multiple_datasets artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/concat_multi_datasets https://github.com/ARTbio/tools-artbio/tree/main/tools/concat_multi_datasets 1.4.3 1 1 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 352 3612 +consensus_from_alignments aligned_to_consensus Tool to compute a consensus sequence from several aligned fasta sequences To update Sequence Analysis consalign ecology https://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/consensus_from_alignments https://github.com/galaxyecology/tools-ecology/tree/master/tools/consensus_from_alignments 1.0.0 r-bioseq 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 55 585 +consolidate_vcfs consolidate_vcfs Combines freebayes and mpileup files for use by vcf2snvalignment Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis consolidate_vcfs nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/consolidate_vcfs 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +cooler cooler_balance, cooler_cload_tabix, cooler_csort_tabix, cooler_makebins, cooler_zoomify cooler different tools to process Hi-C from mirnylab To update https://github.com/open2c/cooler Epigenetics cooler lldelisle https://github.com/lldelisle/tools-lldelisle/blob/master/tools/cooler/.shed.yml https://github.com/lldelisle/tools-lldelisle/tree/master/tools/cooler 0.9.3 htslib 1.20 4 0 5 0 4 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 11 81 +cpm_tpm_rpk cpm_tpm_rpk Generate CPM,TPM or RPK from raw counts To update http://artbio.fr Transcriptomics cpm_tpm_rpk artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk 0.6.0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +cta cta_astro_tool Basic simulation of CTA telescope observations using gammapy package To update Astronomy cta_astro_tool astroteam https://github.com/esg-epfl-apc/tools-astro/tree/main/tools https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/cta 0.0.1+galaxy0 unzip 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +custom_pro_db custom_pro_db CustomProDB To update https://bioconductor.org/packages/release/bioc/html/customProDB.html Proteomics custom_pro_db galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_db https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/custom_pro_db 1.22.0 bioconductor-rgalaxy 1.37.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 57 1652 +custom_pro_db_annotation_data_manager CustomProDB Annotation To update https://bioconductor.org/packages/release/bioc/html/customProDB.html Proteomics custom_pro_db_annotation_data_manager galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_db https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/custom_pro_db_annotation_data_manager 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +data-hca hca_matrix_downloader Tools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projects To update Transcriptomics, Sequence Analysis suite_human_cell_atlas_tools ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hca v0.0.4+galaxy0 hca-matrix-downloader 0.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 439 +data-scxa retrieve_scxa Tools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/home To update Transcriptomics, Sequence Analysis suite_ebi_expression_atlas ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxa v0.0.2+galaxy2 wget 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 99 799 +data_exploration tool_anonymization, ecology_homogeneity_normality, ecology_beta_diversity, ecology_link_between_var, ecology_presence_abs_abund, ecology_stat_presence_abs Explore data through multiple statistical tools To update Ecology ecology https://github.com/Marie59/Data_explo_tools https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_exploration 0.0.0 r-tangles 0 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 146 658 +data_manager_eggnog_mapper downloads eggnog data for eggnog-mapper To update Proteomics data_manager_eggnog_mapper galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper_data_manager https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +data_manager_eggnog_mapper_abspath download eggnog data for eggnog-mapper To update Proteomics data_manager_eggnog_mapper_abspath galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspath https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspath 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dbbuilder dbbuilder Protein Database Downloader To update https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder Proteomics dbbuilder galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder 0.3.4 wget 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 161 4758 +decoupler score_genes_aucell, decoupler_pathway_inference, decoupler_pseudobulk decoupler - Ensemble of methods to infer biological activities To update https://decoupler-py.readthedocs.io/en/latest/ Transcriptomics suite_decoupler ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler 1.4.0+galaxy3 decoupler 1.5.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +decoyfasta Galaxy tool wrapper for the transproteomic pipeline decoyFASTA tool. To update Proteomics decoyfasta galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfasta https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfasta 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +deseq2_normalization deseq2_normalization Normalizes gene hitlists To update http://artbio.fr RNA, Transcriptomics, Sequence Analysis, Statistics deseq2_normalization artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization 1.40.2+galaxy0 bioconductor-deseq2 1.42.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +dia_umpire dia_umpire_se DIA-Umpire analysis for data independent acquisition (DIA) mass spectrometry-based proteomics To update http://diaumpire.sourceforge.net/ Proteomics dia_umpire galaxyp https://github.com/galaxyproject/tools-iuc/tree/master/tools/dia_umpire https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dia_umpire 2.1.3 dia_umpire 2.1.6 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 33 +dialignr dialignr DIAlignR is an R package for retention time alignment of targeted mass spectrometric data, including DIA and SWATH-MS data. This tool works with MS2 chromatograms directly and uses dynamic programming for alignment of raw chromatographic traces. DIAlignR uses a hybrid approach of global (feature-based) and local (raw data-based) alignment to establish correspondence between peaks. To update https://github.com/shubham1637/DIAlignR Proteomics dialignr galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr 1.2.0 bioconductor-dialignr 2.10.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 40 +diann diann DiaNN (DIA-based Neural Networks) is a software for DIA/SWATH data processing. To update https://github.com/vdemichev/DiaNN Proteomics diann galaxyp https://github.com/vdemichev/DiaNN https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diann 1.8.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 15 +diapysef diapysef diapysef is a convenience package for working with DIA-PASEF data To update https://pypi.org/project/diapysef/ Proteomics diapysef galaxyp https://github.com/galaxyproject/tools-iuc/tree/master/tools/diapysef https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diapysef 0.3.5.0 diapysef 1.0.10 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 245 +diffacto diffacto Diffacto comparative protein abundance estimation To update https://github.com/statisticalbiotechnology/diffacto Proteomics diffacto galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffacto https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffacto 1.0.6 diffacto 1.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 7 +digestdb digestdb To update digestdb galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/digestdb 0.1.0 trans_proteomic_pipeline 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +directag_and_tagrecon To update directag_and_tagrecon galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/directag_and_tagrecon 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +dose_responses dr_curve A tool for analyzing and visualizing the relationship between various doses and their corresponding biological responses Up-to-date https://github.com/bernt-matthias/mb-galaxy-tools Ecology dose_response_analysis_tool ufz https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/dose_responses 3.0_1 r-drc 3.0_1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +droplet-barcode-plot _dropletBarcodePlot Make a cell barcode plot for droplet single-cell RNA-seq QC To update https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary Sequence Analysis droplet_barcode_plot ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/droplet-rank-plot/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/droplet-barcode-plot 1.6.1+galaxy2 scxa-plots 0.0.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 95 973 +dropletutils dropletutils_empty_drops, dropletutils_read_10x De-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_dropletutils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils 1.0.4 dropletutils-scripts 0.0.5 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 201 1599 +eggnog_mapper eggnog_mapper, eggnog_mapper_annotate, eggnog_mapper_search eggnog-mapper fast functional annotation of novel sequences eggnog-mapper-v2 eggnog-mapper-v2 eggNOG-mapper v2 EggNOG-mapper is a tool for fast functional annotation of novel sequences. It uses precomputed orthologous groups and phylogenies from the eggNOG database (http://eggnog5.embl.de) to transfer functional information from fine-grained orthologs only. Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrieval Metagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysis To update Proteomics eggnog_mapper galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper 2.1.8 eggnog-mapper 2.1.12 Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrieval Metagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysis 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 3 1 0 510 30565 +embl2fa embl2fa Converts EMBL flat format to fasta format To update http://artbio.fr Text Manipulation embl2fa artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/embl2fa https://github.com/ARTbio/tools-artbio/tree/main/tools/embl2fa 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +encyclopedia encyclopedia_encyclopedia, encyclopedia_fasta_to_prosit_csv, encyclopedia_library_to_blib, encyclopedia_prosit_csv_to_library, encyclopedia_quantify, encyclopedia_searchtolib, encyclopedia_walnut Mass Spec Data-Independent Acquisition (DIA) MS/MS analysis To update https://bitbucket.org/searleb/encyclopedia/wiki/Home Proteomics encyclopedia galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/encyclopedia 1.12.34 encyclopedia 2.12.30 2 4 7 0 2 4 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 48 706 +eodie eodie Earth Observation Data Information Extractor To update https://eodie.readthedocs.io/ Climate Analysis eodie climate https://gitlab.com/eetun-tiimi/EODIE https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/eodie 1.0.2 eodie 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 45 +essential_climate_variables cds_essential_variability Get Copernicus Essential Climate Variables for assessing climate variability To update https://cds.climate.copernicus.eu/cdsapp#!/dataset/ecv-for-climate-change?tab=overview Climate Analysis, Data Source cds_essential_variability climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/essential_climate_variables https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/essential_climate_variables 0.2.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 331 +ez_histograms ez_histograms ggplot2 histograms and density plots To update https://github.com/tidyverse/ggplot2 Visualization, Statistics ez_histograms artbio https://github.com/artbio/tools-artbio/tree/main/tools/ez_histograms https://github.com/ARTbio/tools-artbio/tree/main/tools/ez_histograms 3.4.4 r-ggplot2 2.2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +fasta_merge_files_and_filter_unique_sequences fasta_merge_files_and_filter_unique_sequences Concatenate FASTA database files together To update https://github.com/galaxyproteomics/tools-galaxyp/ Fasta Manipulation fasta_merge_files_and_filter_unique_sequences galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences 1.2.0 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 461 29886 +fastg2protlib fastg2protlib-peptides, fastg2protlib-validate Generate FASTA from FASTG To update https://github.com/galaxyproteomics/fastg2protlib.git Proteomics fastg2protlib galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlib https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlib 1.0.2 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 28 +fastq_pair fastq_pair Paired-end fastq pairer To update https://github.com/linsalrob/fastq-pair Fastq Manipulation fastq_pair ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_pair https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_pair 1.0+galaxy0 fastq-pair 1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fastq_provider fastq_provider Retrieval and download of FASTQ files from ENA and other repositories such as HCA. To update https://github.com/ebi-gene-expression-group/atlas-fastq-provider Data Source, RNA, Transcriptomics atlas_fastq_provider ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_provider https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider 0.4.4 atlas-fastq-provider 0.4.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fastq_quality_trimmer cshl_fastq_quality_trimmer FASTQ trimmer based on quality To update https://github.com/agordon/fastx_toolkit Fastq Manipulation fastq_quality_trimmer ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_quality_trimmer https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_quality_trimmer 0.0.14+galaxy0 fastx_toolkit 0.0.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fastq_utils fastq_filter_n, fastq_trim_poly_at Set of tools for handling fastq files To update https://github.com/nunofonseca/fastq_utils Transcriptomics, RNA fastq_utils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utils https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils 0.25.1+galaxy0 fastq_utils 0.25.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fates-emerald ctsm_fates EMERALD version of the Functionally Assembled Terrestrial Ecosystem Simulator (FATES) with Community Terrestrial Systems Model as host model To update https://github.com/NordicESMhub/ctsm/blob/fates_emerald_api/README_fates_emerald_api Climate Analysis ctsm_fates climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/fates-emerald https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/fates-emerald 2.0 fates-emerald 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 261 +feature_alignment feature_alignment TRIC integrates information from all available runs via a graph-based alignment strategy Up-to-date Proteomics feature_alignment galaxyp https://github.com/msproteomicstools/msproteomicstools/blob/master/TRIC-README.md https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment 0.11.0 msproteomicstools 0.11.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 18 +fetch_fasta_from_ncbi retrieve_fasta_from_NCBI Fetch fasta sequences from NCBI using eutils wrappers To update http://artbio.fr Fasta Manipulation, Data Source fetch_fasta_from_ncbi artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi https://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi 3.1.0 urllib3 1.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +filter_by_fasta_ids filter_by_fasta_ids Filter FASTA on the headers and/or the sequences To update Fasta Manipulation, Proteomics filter_by_fasta_ids galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids 2.3 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 426 26274 +filter_compounds filter_orgmet_anorg Tool for filtering organometallics/anorganic compounds from a list of compounds. To update https://github.com/RECETOX/galaxytools/ Metabolomics filter_compounds recetox https://github.com/RECETOX/galaxytools/tree/master/tools/filter_compounds https://github.com/RECETOX/galaxytools/tree/master/tools/filter_compounds 3.1.1 openbabel 2.3.90dev7d621d9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +filter_density filterdensity Filter out position based on distance between SNVs Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis filter_density nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_density 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +filter_stats filterstat SNVPhyl filter_stats Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis filter_stats nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_stats 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +filter_vcf filtervcf SNVPhyl filter_vcf Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis filter_vcf nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_vcf 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +find_repeats findrepeat Find repetitive regions on a reference genome using MUMMer Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis find_repeats nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/find_repeats 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fisher_test fishertest Fisher's exact test on two-column hit lists. To update http://artbio.fr RNA, Statistics fishertest artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_test https://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_test 2.32.0+galaxy0 bioconductor-qvalue 2.34.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +flashlfq flashlfq FlashLFQ mass-spectrometry proteomics label-free quantification flashlfq flashlfq FlashLFQ FlashLFQ is an ultrafast label-free quantification algorithm for mass-spectrometry proteomics. Label-free quantification Proteomics experiment, Proteomics To update https://github.com/smith-chem-wisc/FlashLFQ Proteomics flashlfq galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq 1.0.3.1 flashlfq 1.2.6 Label-free quantification Proteomics experiment, Proteomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 17 645 +fragpipe fragpipe Data analysis for mass spectrometry-based proteomics. Up-to-date https://fragpipe.nesvilab.org/ Proteomics fragpipe galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fragpipe https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fragpipe 20.0 fragpipe 20.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +free_energy Free energy tools of BRIDGE. To update Molecular Dynamics, Computational chemistry freeenergy chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/free_energy https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/free_energy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +frogs FROGS_affiliation_filters, FROGS_affiliation_postprocess, FROGS_affiliation_stats, FROGS_biom_to_stdBiom, FROGS_biom_to_tsv, FROGS_cluster_filters, FROGS_cluster_stats, FROGS_clustering, FROGS_demultiplex, FROGSSTAT_DESeq2_Preprocess, FROGSSTAT_DESeq2_Visualisation, FROGSFUNC_step2_functions, FROGSFUNC_step3_pathways, FROGSFUNC_step1_placeseqs, FROGS_itsx, FROGS_normalisation, FROGSSTAT_Phyloseq_Alpha_Diversity, FROGSSTAT_Phyloseq_Beta_Diversity, FROGSSTAT_Phyloseq_Sample_Clustering, FROGSSTAT_Phyloseq_Composition_Visualisation, FROGSSTAT_Phyloseq_Import_Data, FROGSSTAT_Phyloseq_Multivariate_Analysis_Of_Variance, FROGSSTAT_Phyloseq_Structure_Visualisation, FROGS_preprocess, FROGS_remove_chimera, FROGS_taxonomic_affiliation, FROGS_Tree, FROGS_tsv_to_biom Suite for metabarcoding analysis frogs frogs FROGS The user-friendly and Galaxy-supported pipeline FROGS analyses large sets of DNA amplicons sequences accurately and rapidly, essential for microbe community studies. Taxonomic classification Metagenomics, Microbial ecology, Taxonomy, Evolutionary biology, Sequencing To update http://frogs.toulouse.inrae.fr/ Metagenomics frogs frogs https://github.com/geraldinepascal/FROGS-wrappers/ https://github.com/geraldinepascal/FROGS-wrappers/tree/master/tools/frogs 4.1.0 frogs 5.0.0 Taxonomic classification Metagenomics, Microbial ecology, Taxonomy, Evolutionary biology, Sequencing 0 0 0 28 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fromHicupToJuicebox fromHicupToJuicebox Convert the output of hicup (as sam or bam) to the input of juicebox. To update Epigenetics from_hicup_to_juicebox lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromHicupToJuicebox 0.0.2 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +fromgtfTobed12 fromgtfTobed12 Convert GTF files to BED12 format To update https://pythonhosted.org/gffutils/contents.html Convert Formats fromgtftobed12 lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromgtfTobed12 https://github.com/lldelisle/tools-lldelisle/tree/master/tools/fromgtfTobed12 0.11.1+galaxy1 gffutils 0.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +garnett garnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_file De-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_garnett ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett 0.2.8 garnett-cli 0.0.5 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 27 +gatk4 filtermutectcalls, mergemutectstats, mutect2 Find somatic variations To update http://artbio.fr Variant Analysis gatk4 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gatk4 https://github.com/ARTbio/tools-artbio/tree/main/tools/gatk4 4.1.7.0 gatk4 4.5.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gc_derivatization gc_derivatization In silico derivatization for GC. Up-to-date https://github.com/RECETOX/gc-meox-tms Metabolomics gc_derivatization recetox https://github.com/RECETOX/galaxytools/tree/master/tools/gc_derivatization https://github.com/RECETOX/galaxytools/tree/master/tools/gc_derivatization 1.0.1 gc-meox-tms 1.0.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gdal gdal_gdal_merge, gdal_gdal_translate, gdal_gdaladdo, gdal_gdalbuildvrt, gdal_gdalinfo, gdal_gdalwarp, gdal_ogr2ogr, gdal_ogrinfo Geospatial Data Abstraction Library tools are all dedicated to manipulate raster and vector geospatial data formats. To update https://www.gdal.org Ecology gdal ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal 3.0.0 0 0 8 8 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 10 1475 +genomad genomad_end_to_end Identify virus and plasmid genomes from nucleotide sequences genomad genomad geNomad geNomad is a tool that identifies virus and plasmid genomes from nucleotide sequences. It provides state-of-the-art classification performance and can be used to quickly find mobile genetic elements from genomes, metagenomes, or metatranscriptomes. Sequence annotation, Taxonomic classification Sequence analysis Up-to-date https://github.com/apcamargo/genomad/ Metagenomics genomad ufz https://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/longorf/ https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/genomad 1.8.0 genomad 1.8.0 Sequence annotation, Taxonomic classification Sequence analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +getTn5ExtendedCoverage getTn5ExtendedCoverage Take an input bam from ATAC-seq and generate a bedgraph using the center of the Tn5 insertion with an extension To update Epigenetics gettn5extendedcoverage lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/getTn5ExtendedCoverage 0.0.2 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +get_reference_fasta get_fasta_reference Obtain reference genome sequence. To update http://artbio.fr Data Source, Fasta Manipulation get_reference_fasta artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta https://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta 0.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +gffcompare_to_bed gffcompare_to_bed Filter and convert a gffCompare GTF to BED To update https://github.com/gpertea/gffcompare/ Convert Formats gffcompare_to_bed galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/gffcompare_to_bed https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/gffcompare_to_bed 0.2.1 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 131 2115 +gromacs gmx_check, gmx_editconf, gmx_energy, gmx_get_builtin_file, gmx_rg, gmx_makendx, gmx_merge_topology_files, gmx_em, gmx_restraints, gmx_rmsd, gmx_rmsf, gmx_setup, gmx_sim, gmx_solvate, gmx_trj GROMACS is a package for performing molecular dynamics, primarily designed for biochemical molecules such as proteins, lipids and nucleic acids. To update https://github.com/gromacs Molecular Dynamics, Computational chemistry gromacs chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/gromacs 2022 gromacs 2021.3 14 8 15 0 14 8 15 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 9 0 1442 177844 +gsc_center_scale center_scale Center or scale (standardize) data To update http://artbio.fr Statistics gsc_center_scale artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_center_scale https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_center_scale 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gsc_filter_cells filter_cells Filter single cell RNAseq data on libray depth and number of detected genes To update http://artbio.fr Transcriptomics gsc_filter_cells artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gsc_filter_genes filter_genes Filter genes that are detected in less than a fraction of libraries in single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_filter_genes artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gsc_gene_expression_correlations single_cell_gene_expression_correlations Compute single-cell paire-wise gene expressions correlations To update http://artbio.fr Transcriptomics gsc_gene_expression_correlations artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlations https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gsc_high_dimensions_visualisation high_dimensions_visualisation Generates PCA, t-SNE and HCPC visualisation To update http://artbio.fr Transcriptomics, Visualization gsc_high_dimensions_visualisation artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualization https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation 4.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gsc_mannwhitney_de mannwhitney_de Perform a mann-whitney differential testing between two sets of gene expression data To update http://artbio.fr Transcriptomics gsc_mannwhitney_de artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de 4.1.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gsc_scran_normalize scran_normalize Normalize raw counts using scran To update http://artbio.fr Transcriptomics gsc_scran_normalize artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize 1.28.1+galaxy0 bioconductor-scran 1.30.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 78 +gsc_signature_score signature_score Compute signature scores from single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_signature_score artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score 2.3.9+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +gtf-2-gene-list _ensembl_gtf2gene_list Utility to extract annotations from Ensembl GTF files. To update https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary Sequence Analysis gtf2gene_list ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/gtf-2-gene-list/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/gtf-2-gene-list 1.52.0+galaxy0 atlas-gene-annotation-manipulation 1.1.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 155 1678 +guppy guppy-basecaller A wrapper for the guppy basecaller tool from Oxford Nanopore Technologies To update http://artbio.fr Nanopore guppy_basecaller artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy 6.5.7+galaxy0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hardklor hardklor, kronik Hardklör To update Proteomics hardklor galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/hardklor https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/hardklor 2.30.1+galaxy1 hardklor 2.3.2 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 111 +hess hess_astro_tool Basic analysis of Data Level 3 public data sample of HESS gamma-ray telescope To update Astronomy hess_astro_tool astroteam https://github.com/esg-epfl-apc/tools-astro/tree/main/tools https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/hess 0.0.2+galaxy0 ipython 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +high_dim_heatmap high_dim_heatmap gplot heatmap.2 function adapted for plotting large heatmaps To update https://github.com/cran/gplots Visualization high_dim_heatmap artbio https://github.com/artbio/tools-artbio/tree/main/tools/high_dim_heatmap https://github.com/ARTbio/tools-artbio/tree/main/tools/high_dim_heatmap 3.1.3+galaxy0 r-gplots 2.17.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +hirondelle_crim_ogc_api_processes hirondelle_crim This tool is a wrapper for OGC API Processes coming from https://osf.io/gfbws/. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper https://github.com/galaxyecology/tools-ecology/tree/master/tools/hirondelle_crim_ogc_api_processes 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +hyperstack_to_bleach_corrected_movie hyperstack_to_bleach_corrected_movie Generate blach corrected movie from hyperstack To update Imaging hyperstack_to_bleach_corrected_movie lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie https://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie 20230328 Fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +idconvert idconvert Convert mass spectrometry identification files on linux or MacOSX To update Proteomics idconvert galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/idconvert proteowizard 3_0_9992 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 275 +incucyte_stack_and_upload_omero incucyte_stack_and_upload_omero Combine images to stack and upload to the omero server To update Imaging incucyte_stack_and_upload_omero lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero https://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero 20231221 Fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +interpolation interpolation_run_idw_interpolation Run IDW interpolation based on a .csv and .geojson file To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation 1.0 r-getopt 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +isolib isolib Create an isotopic pattern library for given compounds and adducts. To update https://github.com/RECETOX/galaxytools/ Metabolomics isolib recetox https://github.com/RECETOX/galaxytools/tree/master/tools/isolib https://github.com/RECETOX/galaxytools/tree/master/tools/isolib 1.0.1+galaxy0 bioconductor-metabocoreutils 1.10.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +justdiff justdiff Unix diff To update http://artbio.fr Text Manipulation justdiff artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/justdiff https://github.com/ARTbio/tools-artbio/tree/main/tools/justdiff 3.10+galaxy0 diffutils 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +justgzip justgzip Compress fastq sequence files To update http://artbio.fr Convert Formats justgzip artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/justgzip https://github.com/ARTbio/tools-artbio/tree/main/tools/justgzip 2.8+galaxy0 pigz 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +lfq_protein_quant lfq_protein_quant Enable protein summarisation and quantitation To update https://github.com/compomics/LFQ_galaxy_p Proteomics lfq_protein_quant galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quant https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quant 1.0 bioconductor-msnbase 2.28.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 111 +longorf longORF obtain longest ORF in six-frame translations To update Sequence Analysis longorf mbernt https://github.com/bernt-matthias/mb-galaxy-tools/blob/master/tools/longorf/ https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/longorf 0.3.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ltq_iquant_cli To update ltq_iquant_cli galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ltq_iquant_cli 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +lumpy_smoove lumpy_smoove, vcf2hrdetect Galaxy wrapper of the lumpy-using smoove workflow To update http://artbio.fr Variant Analysis lumpy_smoove artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_smoove https://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_smoove 0.2.8+galaxy1 svtyper 0.7.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 +lumpy_sv lumpy Find structural variations To update http://artbio.fr Variant Analysis lumpy_sv artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/lumpy_sv https://github.com/ARTbio/tools-artbio/tree/main/tools/lumpy_sv 1.3 lumpy-sv 0.3.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +make_nr make_nr Make a FASTA file non-redundant To update https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr Fasta Manipulation, Sequence Analysis make_nr peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr 0.0.3 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +maldiquant maldi_quant_peak_detection, maldi_quant_preprocessing MALDIquant provides a complete analysis pipeline for MALDI-TOF and other 2D mass spectrometry data. To update http://strimmerlab.org/software/maldiquant/ Proteomics MALDIquant galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/MALDIquant https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maldiquant 1.22.0 r-base 0 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 0 25 3797 +manta manta Structural variant and indel caller for mapped sequencing data To update http://artbio.fr Variant Analysis manta artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/manta https://github.com/ARTbio/tools-artbio/tree/main/tools/manta 1.6 manta 1.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 8 93 +map_peptides_to_bed map_peptides_to_bed Map peptides to a reference genome for display by a genome browser To update Proteomics map_peptides_to_bed galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/map_peptides_to_bed https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/map_peptides_to_bed 0.2 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 41 +mapping_quality_stats mapqstatistics Collects and shows the distribution of MAPQ values in a BAM alignment file To update http://artbio.fr Sequence Analysis, Statistics mapping_quality_stats artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/mapping_quality_stats https://github.com/ARTbio/tools-artbio/tree/main/tools/mapping_quality_stats 0.22.0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +marine_omics sanntis_marine The Sanntis tool identify biosynthetic gene clusters (BGCs) in genomic & metagenomic data Up-to-date https://github.com/Finn-Lab/SanntiS Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics 0.9.3.5 sanntis 0.9.3.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +matchms matchms_add_key, matchms_convert, matchms_filtering, matchms_fingerprint_similarity, matchms_formatter, matchms_metadata_export, matchms_metadata_match, matchms_metadata_merge, matchms_networking, matchms_remove_key, matchms_remove_spectra, matchms_spectral_similarity, matchms_split, matchms_subsetting Searching, filtering and converting mass spectral libraries. matchms matchms Matchms Tool to import, process, clean, and compare mass spectrometry data. Spectral library search, Format validation, Filtering Metabolomics Up-to-date https://github.com/matchms/matchms Metabolomics matchms recetox https://github.com/RECETOX/galaxytools/tree/master/tools/matchms https://github.com/RECETOX/galaxytools/tree/master/tools/matchms 0.27.0 matchms 0.27.0 Spectral library search, Format validation, Filtering Metabolomics 2 14 14 11 2 14 14 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 10 187 +maxquant maxquant, maxquant_mqpar wrapper for MaxQuant maxquant maxquant MaxQuant Quantitative proteomics software package designed for analyzing large mass-spectrometric data sets. It is specifically aimed at high-resolution MS data. Imputation, Visualisation, Protein quantification, Statistical calculation, Standardisation and normalisation, Heat map generation, Clustering, Principal component plotting Proteomics experiment, Proteomics, Statistics and probability Up-to-date https://www.maxquant.org/ Proteomics maxquant galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant 2.0.3.0 maxquant 2.0.3.0 Imputation, Visualisation, Protein quantification, Standardisation and normalisation, Heat map generation, Clustering Proteomics experiment, Proteomics, Statistics and probability 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 415 6078 +mdanalysis mdanalysis_angle, mdanalysis_dihedral, mdanalysis_distance, mdanalysis_endtoend, mdanalysis_extract_rmsd, mdanalysis_hbonds, mdanalysis_cosine_analysis, mdanalysis_ramachandran_protein, mdanalysis_ramachandran_plot, mdanalysis_rdf MDAnalysis is a package for analyzing trajectories from molecular dynamics (MD) simulations To update https://github.com/MDAnalysis/mdanalysis Computational chemistry mdanalysis chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdanalysis 1.0.0 mdanalysis 10 5 10 0 10 5 10 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 139 3115 +mdfileconverter md_converter A tool for interconverting between different MD structure and trajectory file formats. To update Molecular Dynamics, Computational chemistry md_converter chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdfileconverter https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdfileconverter 1.9.7 mdtraj 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 98 26427 +mdslicer md_slicer A tool for slicing trajectory files using MDTraj. To update Molecular Dynamics, Computational chemistry md_converter chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tools/mdslicer https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdslicer 1.9.9 mdtraj 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 158 +mdtraj traj_selections_and_merge MDTraj is a python library that allows users to manipulate molecular dynamics (MD) trajectories To update https://github.com/mdtraj/mdtraj Computational chemistry mdtraj chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/mdtraj 1.9.7 mdtraj 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 36 +mean-per-zone mean_per_zone Creates a png image showing statistic over areas as defined in the vector file To update https://github.com/NordicESMhub/galaxy-tools/blob/master/tools/mean-per-zone/ Visualization, GIS, Climate Analysis mean_per_zone climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone 0.2.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 24 +measure_gastruloids measureGastruloids Get the ROI coordinates around the gastruloids as well as measurements like Area, elongation index To update Imaging measure_gastruloids lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids https://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids 20221216 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +medenv iabiodiv_smartbiodiv_med_environ Retrieve environmental data from etopo, cmems and woa To update https://github.com/jeremyfix/medenv Ecology, Data Source ecology https://github.com/jeremyfix/medenv https://github.com/galaxyecology/tools-ecology/tree/master/tools/medenv 0.1.0 pandas 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +meta_proteome_analyzer meta_proteome_analyzer MetaProteomeAnalyzer Up-to-date https://github.com/compomics/meta-proteome-analyzer/ Proteomics meta_proteome_analyzer galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzer https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzer 2.0.0 mpa-portable 2.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 123 +metagene_annotator metagene_annotator MetaGeneAnnotator gene-finding program for prokaryote and phage metageneannotator metageneannotator MetaGeneAnnotator Prokaryotic gene finding program from environmental genome shotgun sequences or metagenomic sequences. Sequence annotation Genomics, Model organisms, Data submission, annotation and curation Up-to-date http://metagene.nig.ac.jp/ Sequence Analysis metagene_annotator galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/metagene_annotator https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metagene_annotator 1.0 metagene_annotator 1.0 Sequence annotation Genomics, Model organisms, Data submission, annotation and curation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 115 636 +metanovo metanovo Produce targeted databases for mass spectrometry analysis. metanovo metanovo MetaNovo An open-source pipeline for probabilistic peptide discovery in complex metaproteomic datasets. Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysis Proteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small molecules Up-to-date https://github.com/uct-cbio/proteomics-pipelines Proteomics metanovo galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo 1.9.4 metanovo 1.9.4 Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysis Proteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 15 4181 +metaquantome metaquantome_db, metaquantome_expand, metaquantome_filter, metaquantome_sample, metaquantome_stat, metaquantome_viz quantitative analysis of microbiome taxonomy and function metaQuantome metaQuantome metaQuantome metaQuantome software suite analyzes the state of a microbiome by leveraging complex taxonomic and functional hierarchies to summarize peptide-level quantitative information. metaQuantome offers differential abundance analysis, principal components analysis, and clustered heat map visualizations, as well as exploratory analysis for a single sample or experimental condition. Principal component visualisation, Visualisation, Functional clustering, Query and retrieval, Differential protein expression analysis, Heat map generation, Quantification, Indexing, Filtering, Statistical inference Proteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, Metagenomics Up-to-date https://github.com/galaxyproteomics/metaquantome/ Proteomics metaquantome galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome 2.0.2 metaquantome 2.0.2 Principal component visualisation, Functional clustering, Query and retrieval, Heat map generation, Quantification, Indexing, Filtering, Statistical inference Proteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, Metagenomics 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 104 2522 +mfassignr mfassignr_histnoise, mfassignr_isofiltr, mfassignr_kmdnoise, mfassignr_mfassign, mfassignr_mfassignCHO, mfassignr_recal, mfassignr_recallist, mfassignr_snplot The MFAssignR package was designed for multi-element molecular formula (MF) assignment of ultrahigh resolution mass spectrometry measurements mfassignr mfassignr MFAssignR Molecular formula assignment software for ultrahigh resolution mass spectrometry analysis of environmental complex mixtures.Ultrahigh resolution mass spectrometry is widely used for nontargeted analysis of complex environmental and biological mixtures, such as dissolved organic matter, due to its unparalleled ability to provide accurate mass measurements. Visualisation Proteomics experiment, Molecular interactions, pathways and networks, Workflows Up-to-date https://github.com/RECETOX/MFAssignR Metabolomics MFAssignR recetox https://github.com/RECETOX/galaxytools/tree/master/tools/mfassignr https://github.com/RECETOX/galaxytools/tree/master/tools/mfassignr 1.0.3 r-mfassignr 1.0.3 Visualisation Proteomics experiment, Molecular interactions, pathways and networks, Workflows 0 0 8 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mgf_formatter mgf_formatter Up-to-date mgf_formatter galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mgf_formatter 1.0.0 mgf-formatter 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mircounts mircounts Generates miRNA count lists from read alignments to mirBase. To update http://artbio.fr RNA, Transcriptomics mircounts artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts https://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts 1.6 tar 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +misc use_theoretical_mz_annotations To update https://github.com/RECETOX/galaxytools Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/misc https://github.com/RECETOX/galaxytools/tree/master/tools/misc 1.0.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +moFF proteomics_moff moFF (a modest Feature Finder) extracts MS1 intensities from RAW and mzML spectrum files. Up-to-date https://github.com/compomics/moFF Proteomics proteomics_moff galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/moFF https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/moFF 2.0.3 moff 2.0.3 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 759 +monocle3 monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkers De-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_monocle3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle3 0.1.4 monocle3-cli 0.0.9 9 0 9 0 9 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 264 3266 +morpheus morpheus Morpheus MS Search Application morpheus morpheus Morpheus A proteomics search algorithm specifically designed for high-resolution tandem mass spectra. Peptide database search Proteomics To update https://cwenger.github.io/Morpheus Proteomics morpheus galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus 288 morpheus 290 Peptide database search Proteomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 140 +mqppep mqppep_anova, mqppep_preproc MaxQuant Phosphoproteomic Enrichment Pipeline - Preprocessing and ANOVA To update https://github.com/galaxyproteomics/tools-galaxyp/ Proteomics mqppep galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppep https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppep 0.1.19 bioconductor-preprocesscore 1.64.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 +msconvert msconvert msconvert Convert and/or filter mass spectrometry files (including vendor formats) using the official Docker container msconvert msconvert msConvert msConvert is a command-line utility for converting between various mass spectrometry data formats, including from raw data from several commercial companies (with vendor libraries, Windows-only). For Windows users, there is also a GUI, msConvertGUI. Filtering, Formatting Proteomics, Proteomics experiment To update http://proteowizard.sourceforge.net/tools.shtml Proteomics msconvert galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert 3.0.20287 Filtering, Formatting Proteomics, Proteomics experiment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 189 19958 +msgfplus msgfplus MSGF+ To update Proteomics msgfplus galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplus 0.5 msgf_plus 2024.03.26 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 507 +msmetaenhancer msmetaenhancer msmetaenhancer msmetaenhancer MSMetaEnhancer Tool for mass spectra metadata annotation. Annotation, Standardisation and normalisation Metabolomics, Compound libraries and screening, Data submission, annotation and curation Up-to-date https://github.com/RECETOX/MSMetaEnhancer Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancer https://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancer 0.4.0 msmetaenhancer 0.4.0 Annotation, Standardisation and normalisation Metabolomics, Compound libraries and screening, Data submission, annotation and curation 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 103 +msms_extractor msms_extractor Extract MS/MS scans from the mzML file(s) based on PSM report. To update Proteomics msms_extractor galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msms_extractor 1.0.0 proteowizard 3_0_9992 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 110 +msp_merge msp_merge To update https://github.com/RECETOX/galaxytools Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/msp_merge https://github.com/RECETOX/galaxytools/tree/master/tools/msp_merge 0.1.0 matchms 0.27.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +msstats msstats MSstats tool for analyzing mass spectrometry proteomic datasets msstatstmt msstatstmt MSstatsTMT Tools for detecting differentially abundant peptides and proteins in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labeling Spectrum calculation, Tag-based peptide identification, Differential protein expression profiling Proteomics, Proteomics experiment, Protein expression To update https://github.com/MeenaChoi/MSstats Proteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats 4.0.0 bioconductor-msstats 4.10.0 Spectrum calculation, Tag-based peptide identification, Differential protein expression profiling Proteomics, Proteomics experiment, Protein expression 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 144 2036 +msstatstmt msstatstmt MSstatsTMT protein significance analysis in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labeling To update http://msstats.org/msstatstmt/ Proteomics msstatstmt galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt 2.0.0 bioconductor-msstatstmt 2.10.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 71 726 +mt2mq mt2mq Tool to prepare metatranscriptomic outputs from ASaiM for Metaquantome To update Proteomics mt2mq galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mt2mq 1.1.0 r-tidyverse 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 270 +mutational_patterns mutational_patterns Mutational patterns and signatures in base substitution catalogs Up-to-date http://artbio.fr Variant Analysis mutational_patterns artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/mutational_patterns https://github.com/ARTbio/tools-artbio/tree/main/tools/mutational_patterns 3.12.0 bioconductor-mutationalpatterns 3.12.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +mz_to_sqlite mz_to_sqlite Creates a SQLite database for proteomics data mztosqlite mztosqlite mzToSQLite Convert proteomics data files into a SQLite database Conversion, Peptide database search Proteomics, Biological databases To update https://github.com/galaxyproteomics/mzToSQLite Proteomics mz_to_sqlite galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite 2.1.1+galaxy0 mztosqlite 2.1.1 Conversion, Peptide database search Proteomics, Biological databases 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 33 844 +mzml_validator mzml_validator mzML Validator checks if mzML file validates against XML Schema Definition of HUPO Proteomics Standard Initiative. To update https://github.com/RECETOX/galaxytools Metabolomics, Proteomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/mzml_validator https://github.com/RECETOX/galaxytools/tree/master/tools/mzml_validator 0.1.0+galaxy2 lxml 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ncbi_blast_plus blastxml_to_tabular, get_species_taxids, ncbi_blastdbcmd_info, ncbi_blastdbcmd_wrapper, ncbi_blastn_wrapper, ncbi_blastp_wrapper, ncbi_blastx_wrapper, ncbi_convert2blastmask_wrapper, ncbi_deltablast_wrapper, ncbi_dustmasker_wrapper, ncbi_makeblastdb, ncbi_makeprofiledb, ncbi_psiblast_wrapper, ncbi_rpsblast_wrapper, ncbi_rpstblastn_wrapper, ncbi_segmasker_wrapper, ncbi_tblastn_wrapper, ncbi_tblastx_wrapper NCBI BLAST+ To update https://blast.ncbi.nlm.nih.gov/ Sequence Analysis ncbi_blast_plus devteam https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus 2.14.1 python 16 16 16 16 16 16 16 16 0 15 0 0 15 0 0 0 0 0 0 0 16 15 16 0 0 0 0 0 0 16 0 0 0 0 16 0 0 16 15 0 4066 365597 +oases oasesoptimiserv Short read assembler To update http://artbio.fr Assembly, RNA oases artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/oases https://github.com/ARTbio/tools-artbio/tree/main/tools/oases 1.4.0 oases 0.2.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +obisindicators obisindicators, obis_data Compute biodiveristy indicators for marine data from obis To update https://github.com/Marie59/obisindicators Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators 0.0.2 r-base 1 0 2 1 1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 45 +ocean argo_getdata, divand_full_analysis Access, process, visualise oceanographic data for the Earth System To update https://github.com/Marie59/FE-ft-ESG/tree/main/argo Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean 0.1.15 julia 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 +ogcProcess_otb_bandmath otb_band_math Outputs a monoband image which is the result of a mathematical operation on several multi-band images. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/OtbBandMath https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_bandmath 1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +ogcProcess_otb_meanShiftSmoothing otb_mean_shift_smoothing This application smooths an image using the MeanShift algorithm. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_meanShiftSmoothing 1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +omero omero_import, omero_metadata_import Import images and metadata into an OMERO.server using omero-py omero omero OMERO Client-server Java software for visualisation, management and analysis of biological microscope images. Image analysis Imaging, Data visualisation To update https://github.com/ome/omero-py/ Imaging omero_upload ufz https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero 5.18.0 omero-py 5.11.1 Image analysis Imaging, Data visualisation 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +omero_clean_rois_tables omero_clean_rois_tables Remove all ROIs and all tables on OMERO associated to an omero object and recursively up and down To update Imaging omero_clean_rois_tables lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables 20230623 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +omero_get_children_ids omero_get_children_ids Get omero id of children of an omero object id To update Imaging omero_get_children_ids lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids 0.2.0 omero-py 5.11.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +omero_get_full_images omero_get_full_images Get full images from omero To update Imaging omero_get_full_images lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images 20240521 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +omero_hyperstack_to_fluo_measurements_on_gastruloid omero_hyperstack_to_fluo_measurements_on_gastruloid Analyse Hyperstack on OMERO server to measure fluorescence levels To update Imaging omero_hyperstack_to_fluo_measurements_on_gastruloid lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid 20230809 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +omero_hyperstack_to_gastruloid_measurements omero_hyperstack_to_gastruloid_measurements Analyse Hyperstack on OMERO server to segment gastruloid and compute measurements To update Imaging omero_hyperstack_to_gastruloid_measurements lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements 20240214 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +openmm pdbfixer OpenMM is a toolkit for molecular simulation using high performance GPU code. To update https://github.com/openmm Molecular Dynamics, Computational chemistry openmm chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/openmm https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/openmm 1.8.1 pdbfixer 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 25 347 +openms AccurateMassSearch, AssayGeneratorMetabo, BaselineFilter, CVInspector, ClusterMassTraces, ClusterMassTracesByPrecursor, CometAdapter, ConsensusID, ConsensusMapNormalizer, DTAExtractor, DatabaseFilter, DatabaseSuitability, DeMeanderize, DecoyDatabase, Digestor, DigestorMotif, EICExtractor, ERPairFinder, Epifany, ExternalCalibration, FalseDiscoveryRate, FeatureFinderCentroided, FeatureFinderIdentification, FeatureFinderIsotopeWavelet, FeatureFinderMRM, FeatureFinderMetabo, FeatureFinderMetaboIdent, FeatureFinderMultiplex, FeatureLinkerLabeled, FeatureLinkerUnlabeled, FeatureLinkerUnlabeledKD, FeatureLinkerUnlabeledQT, FileConverter, FileFilter, FileInfo, FileMerger, FuzzyDiff, GNPSExport, HighResPrecursorMassCorrector, IDConflictResolver, IDExtractor, IDFileConverter, IDFilter, IDMapper, IDMassAccuracy, IDMerger, IDPosteriorErrorProbability, IDRTCalibration, IDRipper, IDScoreSwitcher, IDSplitter, InternalCalibration, IsobaricAnalyzer, JSONExporter, LuciphorAdapter, MRMMapper, MRMPairFinder, MRMTransitionGroupPicker, MSFraggerAdapter, MSGFPlusAdapter, MSstatsConverter, MapAlignerIdentification, MapAlignerPoseClustering, MapAlignerSpectrum, MapAlignerTreeGuided, MapNormalizer, MapRTTransformer, MapStatistics, MascotAdapter, MascotAdapterOnline, MassCalculator, MassTraceExtractor, MetaProSIP, MetaboliteSpectralMatcher, MultiplexResolver, MzMLSplitter, MzTabExporter, NoiseFilterGaussian, NoiseFilterSGolay, NovorAdapter, NucleicAcidSearchEngine, OpenMSDatabasesInfo, OpenMSInfo, OpenPepXL, OpenPepXLLF, OpenSwathAnalyzer, OpenSwathAssayGenerator, OpenSwathChromatogramExtractor, OpenSwathConfidenceScoring, OpenSwathDIAPreScoring, OpenSwathDecoyGenerator, OpenSwathFeatureXMLToTSV, OpenSwathFileSplitter, OpenSwathMzMLFileCacher, OpenSwathRTNormalizer, OpenSwathRewriteToFeatureXML, OpenSwathWorkflow, PSMFeatureExtractor, PeakPickerHiRes, PeakPickerIterative, PeakPickerWavelet, PeptideIndexer, PercolatorAdapter, PhosphoScoring, PrecursorMassCorrector, ProteinInference, ProteinQuantifier, ProteinResolver, QCCalculator, QCEmbedder, QCExporter, QCExtractor, QCImporter, QCMerger, QCShrinker, QualityControl, RNADigestor, RNAMassCalculator, RNPxlSearch, RNPxlXICFilter, SageAdapter, SeedListGenerator, SemanticValidator, SequenceCoverageCalculator, SimpleSearchEngine, SiriusAdapter, SpecLibCreator, SpecLibSearcher, SpectraFilterBernNorm, SpectraFilterMarkerMower, SpectraFilterNLargest, SpectraFilterNormalizer, SpectraFilterParentPeakMower, SpectraFilterScaler, SpectraFilterSqrtMower, SpectraFilterThresholdMower, SpectraFilterWindowMower, SpectraMerger, SpectraSTSearchAdapter, StaticModification, TICCalculator, TOFCalibration, TargetedFileConverter, TextExporter, TriqlerConverter, XFDR, XMLValidator, XTandemAdapter OpenMS Suite for LC/MS data management and analyses To update https://www.openms.de/ Proteomics openms galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms 3.1 openms 3.1.0 8 34 144 0 8 34 144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 141 124 0 886 105432 +packmol packmol PACKMOL is a package for creating starting structures for Molecular Dynamics simulations To update http://m3g.iqm.unicamp.br/packmol/home.shtml Molecular Dynamics, Computational chemistry packmol chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/packmol 18.169.1 packmol 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 288 +pathifier pathifier pathifier Up-to-date https:// Transcriptomics, Statistics pathifier artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier 1.40.0 bioconductor-pathifier 1.40.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 228 +pathwaymatcher reactome_pathwaymatcher Reactome Pathway Matcher To update https://github.com/LuisFranciscoHS/PathwayMatcher Proteomics reactome_pathwaymatcher galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcher https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcher pathwaymatcher 1.9.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 238 +pep_pointer pep_pointer PepPointer categorizes peptides by their genomic coordinates. To update Genomic Interval Operations, Proteomics pep_pointer galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointer https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointer 0.1.3+galaxy1 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 498 +pepquery pepquery A peptide-centric MS search engine for novel peptide identification and validation. To update https://pepquery.org Proteomics pepquery galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery 1.6.2 pepquery 2.0.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 4862 +pepquery2 pepquery2, pepquery2_index, pepquery2_show_sets PepQuery2 peptide-centric MS search for peptide identification and validation Up-to-date https://pepquery.org Proteomics pepquery2 galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery2 https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery2 2.0.2 pepquery 2.0.2 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 13 717 +peptide_genomic_coordinate peptide_genomic_coordinate Gets genomic coordinate of peptides based on the information in mzsqlite and genomic mapping sqlite files To update Proteomics peptide_genomic_coordinate galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptide_genomic_coordinate 1.0.0 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 468 +peptideshaker fasta_cli, ident_params, peptide_shaker, search_gui PeptideShaker and SearchGUI To update http://compomics.github.io Proteomics peptideshaker galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker searchgui 4.3.9 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 0 485 17477 +pepxml_to_xls Convert PepXML to Tabular To update Proteomics pepxml_to_xls galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xls https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xls 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +percolator batched_set_list_creator, percolator, percolator_input_converters, pout2mzid Percolator To update Proteomics percolator galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/percolator https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/percolator 3.5 percolator 3.6.5 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 5 368 +pi_db_tools calc_delta_pi, pi_db_split, pi_dbspec_align HiRIEF tools To update Proteomics hirieftools galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/pi_db_tools https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pi_db_tools 1.3 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pindel pindel Pindel detects genome-wide structural variation. Up-to-date http://artbio.fr Variant Analysis pindel artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/pindel https://github.com/ARTbio/tools-artbio/tree/main/tools/pindel 0.2.5b9 pindel 0.2.5b9 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +pmd_fdr pmd_fdr Calculate Precursor Mass Discrepancy (PMD) for MS/MS To update https://github.com/slhubler/PMD-FDR-for-Galaxy-P Proteomics pmd_fdr galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pmd_fdr https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pmd_fdr 1.4.0 r-base 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +positions2snv_alignment positions2snv_alignment Generate alignment of SNVs from SNVPhyl variant table. Up-to-date https://snvphyl.readthedocs.io/en/latest/ Variant Analysis positions2snv_alignment nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/positions2snv_alignment 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +positions2snv_invariant_alignment positions2snv_invariant_alignment Generate alignment of SNVs and non-variant positions from SNVPhyl variant table. Up-to-date https://snvphyl.readthedocs.io/en/latest/ Variant Analysis positions2snv_invariant_alignment nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/positions2snv_invariant_alignment 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +probecoverage probecoverage computes and plots read coverage of genomic regions by sequencing datasets To update http://artbio.fr Sequence Analysis, Genomic Interval Operations, Graphics, Statistics probecoverage artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/probecoverage https://github.com/ARTbio/tools-artbio/tree/main/tools/probecoverage 0.22.0 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +proteinpilot convert_windows_newlines, proteinpilot, proteinpilot_group_extractor, proteinpilot_tabular, proteinpilot_xml To update proteinpilot galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteinpilot 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +proteomiqon_joinquantpepionswithproteins proteomiqon_joinquantpepionswithproteins The tool JoinQuantPepIonsWithProteins combines results from ProteinInference and PSMBasedQuantification. To update https://csbiology.github.io/ProteomIQon/tools/JoinQuantPepIonsWithProteins.html Proteomics proteomiqon_joinquantpepionswithproteins galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteins https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteins 0.0.1 proteomiqon-joinquantpepionswithproteins 0.0.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 366 +proteomiqon_labeledproteinquantification proteomiqon_labeledproteinquantification The tool LabeledProteinQuantification estimates protein abundances using quantified peptide ions. To update https://csbiology.github.io/ProteomIQon/tools/LabeledProteinQuantification.html Proteomics proteomiqon_labeledproteinquantification galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labeledproteinquantification https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labeledproteinquantification 0.0.1 proteomiqon-labeledproteinquantification 0.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 14 +proteomiqon_labelfreeproteinquantification proteomiqon_labelfreeproteinquantification The tool LabelFreeProteinQuantification estimates protein abundances using quantified peptide ions. To update https://csbiology.github.io/ProteomIQon/tools/LabelfreeProteinQuantification.html Proteomics proteomiqon_labelfreeproteinquantification galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labelfreeproteinquantification https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labelfreeproteinquantification 0.0.1 proteomiqon-labelfreeproteinquantification 0.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 6 +proteomiqon_mzmltomzlite proteomiqon_mzmltomzlite The tool MzMLToMzLite allows to convert mzML files to mzLite files. Up-to-date https://csbiology.github.io/ProteomIQon/tools/MzMLToMzLite.html Proteomics proteomiqon_mzmltomzlite galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomIQon_MzMLToMzLite https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_mzmltomzlite 0.0.8 proteomiqon-mzmltomzlite 0.0.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 721 +proteomiqon_peptidedb proteomiqon_peptidedb The tool ProteomIQon PeptideDB creates a peptide database in the SQLite format. Up-to-date https://csbiology.github.io/ProteomIQon/tools/PeptideDB.html Proteomics proteomiqon_peptidedb galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidedb https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidedb 0.0.7 proteomiqon-peptidedb 0.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 96 +proteomiqon_peptidespectrummatching proteomiqon_peptidespectrummatching Given raw an MS run in the mzLite format, this tool iterates across all MS/MS scans, determines precursor charge states and possible peptide spectrum matches using reimplementations of SEQUEST,Andromeda and XTandem. Up-to-date https://csbiology.github.io/ProteomIQon/tools/PeptideSpectrumMatching.html Proteomics proteomiqon_peptidespectrummatching galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidespectrummatching https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidespectrummatching 0.0.7 proteomiqon-peptidespectrummatching 0.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 686 +proteomiqon_proteininference proteomiqon_proteininference MS-based shotgun proteomics estimates protein abundances using a proxy: peptides. The process of 'Protein Inference' is concerned with the mapping of identified peptides to the proteins they putatively originated from. Up-to-date https://csbiology.github.io/ProteomIQon/tools/ProteinInference.html Proteomics proteomiqon_proteininference galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_proteininference https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_proteininference 0.0.7 proteomiqon-proteininference 0.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 89 +proteomiqon_psmbasedquantification proteomiqon_psmbasedquantification The PSMBasedQuantification tool was designed to allow label-free quantification as well as quantification of full metabolic labeled samples. To update https://csbiology.github.io/ProteomIQon/tools/PSMBasedQuantification.html Proteomics proteomiqon_psmbasedquantification galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmbasedquantification https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmbasedquantification 0.0.8 proteomiqon-psmbasedquantification 0.0.9 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 604 +proteomiqon_psmstatistics proteomiqon_psmstatistics The PSMStatistics tool utilizes semi supervised machine learning techniques to integrate search engine scores as well as the mentioned quality scores into one single consensus score. Up-to-date https://csbiology.github.io/ProteomIQon/tools/PSMStatistics.html Proteomics proteomiqon_psmstatistics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmstatistics https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmstatistics 0.0.8 proteomiqon-psmstatistics 0.0.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 694 +proteore_venn_diagram proteore_venn_diagram ProteoRE JVenn Diagram To update Proteomics proteore_venn_diagram galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteore_venn_diagram 2021.06.08 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 +protxml_to_xls protxml_to_xls To update protxml_to_xls galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/protxml_to_xls 0.1.0 trans_proteomic_pipeline 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +psm2sam PSMtoSAM PSM to SAM To update https://bioconductor.org/packages/release/bioc/html/proBAMr.html Proteomics psm_to_sam galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/psm2sam https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/psm2sam 1.3.2.1 r-base 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +psm_eval psm_eval To update psm_eval galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_eval 0.1.0 binaries_for_psm_eval 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +psm_validation psmvalidator Validate PSM from Ion Fragmentation To update https://github.com/galaxyproteomics/psm_fragments.git Proteomics psm_validation galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validation https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validation 1.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 20 +psy-maps psy_maps Visualization of regular geographical data on a map with psyplot To update https://github.com/Chilipp/psy-maps Visualization, Climate Analysis psy_maps climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/psy-maps https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/psy-maps 1.2.1 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 46 469 +pyprophet pyprophet_export, pyprophet_merge, pyprophet_peptide, pyprophet_protein, pyprophet_score, pyprophet_subsample Semi-supervised learning and scoring of OpenSWATH results. To update https://github.com/PyProphet/pyprophet Proteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet 2.1.4 pyprophet 2.2.5 0 5 6 0 0 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 33 2509 +pyscenic pyscenic_aucell, pyscenic_ctx, pyscenic_grn PySCENIC scripts based on usage at https://pyscenic.readthedocs.io/ To update Transcriptomics, RNA, Sequence Analysis suite_pyscenic ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/pyscenic 0.12.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +pyteomics mztab2tsv Tools using the pyteomics library pyteomics pyteomics Pyteomics Framework for proteomics data analysis, supporting mzML, MGF, pepXML and more. Protein identification Proteomics, Proteomics experiment To update https://pyteomics.readthedocs.io/en/latest/ Proteomics, Metabolomics pyteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomics https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomics 4.4.1 pyteomics 4.7.3 Protein identification Proteomics, Proteomics experiment 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 81 +pyvo_integration astronomical_archives Astronomical archives tools contains tools for querying and fetching resources from astronomical archives into Galaxy To update Data Source astronomicalarchivestool astroteam https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/ https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/archives/pyvo_integration 0.10.0 astropy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 36 +qcxms qcxms_getres, qcxms_neutral_run, qcxms_production_run QCxMS is a quantum chemical (QC) based program that enables users to calculate mass spectra (MS) using Born-Oppenheimer Molecular Dynamics (MD). To update https://github.com/grimme-lab/QCxMS Computational chemistry, Molecular Dynamics QCxMS recetox https://github.com/RECETOX/galaxytools/tree/master/tools/qcxms https://github.com/RECETOX/galaxytools/tree/master/tools/qcxms 5.2.1 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +quantp quantp Correlation between protein and transcript abundance To update Proteomics quantp galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantp 1.1.2 r-data.table 1.11.6 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 230 +quantwiz_iq quantwiz_iq Isobaric Quantitation using QuantWiz-IQ Up-to-date https://sourceforge.net/projects/quantwiz/ Proteomics quantwiz_iq galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iq https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iq 2.0 quantwiz-iq 2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 32 +query query Execute an SQL statement on a set of tables To update Text Manipulation query recetox https://github.com/RECETOX/galaxytools/tree/master/tools/query https://github.com/RECETOX/galaxytools/tree/master/tools/query 0.2 click 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +qupath_roi_splitter qupath_roi_splitter Split ROI coordinates of QuPath TMA annotation by cell type To update https://github.com/npinter/ROIsplitter Imaging qupath_roi_splitter galaxyp hhttps://github.com/npinter/ROIsplitter https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/qupath_roi_splitter 0.3.1 geojson 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 59 +ramclustr ramclustr, ramclustr_define_experiment ramclustr ramclustr RAMClustR A feature clustering algorithm for non-targeted mass spectrometric metabolomics data. Imputation, Standardisation and normalisation, Clustering, Correlation Metabolomics To update https://rdrr.io/cran/RAMClustR/ Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr https://github.com/RECETOX/galaxytools/tree/master/tools/ramclustr 1.3.0 r-ramclustr 1.3.1 Imputation, Standardisation and normalisation, Clustering, Correlation Metabolomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 16 +rawtools rawtools Raw Tools To update https://github.com/kevinkovalchik/RawTools Proteomics rawtools galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtools https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtools rawtools 2.0.4 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 14 175 +rcx-tk rcx-tk Tools to process metadata or alkane files. To update https://github.com/RECETOX/rcx-tk Metabolomics rcx_tk recetox https://github.com/RECETOX/galaxytools/tree/master/tools/rcx-tk/ https://github.com/RECETOX/galaxytools/tree/master/tools/rcx-tk 0.1.0+galaxy0 rcx-tk 0.1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +recetox_aplcms recetox_aplcms_align_features, recetox_aplcms_compute_clusters, recetox_aplcms_compute_template, recetox_aplcms_correct_time, recetox_aplcms_generate_feature_table, recetox_aplcms_merge_known_table, recetox_aplcms_recover_weaker_signals, recetox_aplcms_remove_noise Peak detection tool for HRMS profile data. recetox-aplcms recetox-aplcms recetox-aplcms recetox-aplcms is a tool for peak detection in mass spectrometry data. The tool performs (1) noise removal, (2) peak detection, (3) retention time drift correction, (4) peak alignment and (5) weaker signal recovery as well as (6) suspect screening. Chromatographic alignment, Quantification, Peak detection, Feature extraction, Alignment Metabolomics Up-to-date https://github.com/RECETOX/recetox-aplcms Metabolomics recetox-aplcms recetox https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms 0.13.2 r-recetox-aplcms 0.13.2 Chromatographic alignment, Quantification, Peak detection, Feature extraction, Alignment Metabolomics 0 8 8 8 0 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 7 296 +recetox_msfinder recetox_msfinder recetox-msfinder recetox-msfinder recetox-msfinder This is a modified copy of MS-FINDER with source code modifications to make the tool accessible in Galaxy.MS-FINDER - software for structure elucidation of unknown spectra with hydrogen rearrangement (HR) rulesThe program supports molecular formula prediction, metabolie class prediction, and structure elucidation for EI-MS and MS/MS spectra, and the assembly is licensed under the CC-BY 4.0. Annotation Metabolomics To update https://github.com/RECETOX/recetox-msfinder Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_msfinder https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_msfinder v3.5.2 Annotation Metabolomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +recetox_xmsannotator recetox_xmsannotator_advanced recetox-xmsannotator recetox-xmsannotator recetox-xMSannotator Annotation tool for untargeted LCMS1 data. Uses a database and adduct list for compound annotation and intensity networks, isotopic patterns and pathways for annotation scoring. Expression profile pathway mapping, Structure comparison, Isotopic distributions calculation, Annotation Up-to-date https://github.com/RECETOX/recetox-xMSannotator Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/recetox-xmsannotator https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_xmsannotator 0.10.0 r-recetox-xmsannotator 0.10.0 Expression profile pathway mapping, Structure comparison, Isotopic distributions calculation, Annotation 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +regex_find_replace regex1, regexColumn1 Use python regular expressions to find and replace text To update Text Manipulation regex_find_replace galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/regex_find_replace https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/regex_find_replace 1.0.3 python 2 2 2 2 2 2 2 2 0 2 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 495 60307 +regionalgam regionalgam_ab_index, regionalgam_autocor_acf, regionalgam_flight_curve, regionalgam_glmmpql, regionalgam_gls_adjusted, regionalgam_gls, regionalgam_plot_trend To update https://github.com/RetoSchmucki/regionalGAM Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam 1.5 r-mgcv 0 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 22 526 +rem_complex rem_complex Removes molecular coordination complexes. To update https://github.com/RECETOX/galaxytools Metabolomics rem_complex recetox https://github.com/RECETOX/galaxytools/tree/master/tools/rem_complex https://github.com/RECETOX/galaxytools/tree/master/tools/rem_complex 1.0.0 pandas 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +rename_annotated_feature rename_annotated_feature Update column names in an abundance table using a annotation table with spectral matching results To update https://github.com/RECETOX/galaxytools/ Metabolomics rename_annotated_feature recetox https://github.com/RECETOX/galaxytools/tree/master/tools/rename_annotated_feature https://github.com/RECETOX/galaxytools/tree/master/tools/rename_annotated_feature 1.0.0 pandas 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +repenrich edger-repenrich, repenrich Repeat element profiling To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich Transcriptomics repenrich artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich 2.31.1 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 +repenrich2 edger-repenrich2, repenrich2 Repeat element profiling using bowtie2 aligner To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 Transcriptomics repenrich2 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 2.31.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +retip retip_apply, retip_descriptors, retip_filter_rt, retip_train retip retip Retip Retention Time Prediction for Compound Annotation in Untargeted Metabolomics.Retip is an R package for predicting Retention Time (RT) for small molecules in a high pressure liquid chromatography (HPLC) Mass Spectrometry analysis.Retip - Retention Time prediction for Metabolomics.Retip: Retention Time Prediction for Compound Annotation in Untargeted Metabolomics Paolo Bonini, Tobias Kind, Hiroshi Tsugawa, Dinesh Kumar Barupal, and Oliver Fiehn Analytical Chemistry 2020 92 (11), 7515-7522 DOI: 10.1021/acs.analchem.9b05765. Retention time prediction, Spectrum calculation, Deisotoping, Formatting, Deposition Metabolomics, Proteomics experiment, Machine learning, Cheminformatics, Chemistry To update https://github.com/PaoloBnn/Retip Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/retip https://github.com/RECETOX/galaxytools/tree/master/tools/retip 0.5.4 Retention time prediction, Spectrum calculation, Deisotoping, Formatting, Deposition Metabolomics, Proteomics experiment, Machine learning, Cheminformatics, Chemistry 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +retrieve_bold retrieve_bold Search a list of sequences in BOLD (Barcode of Life Data System) from specified taxa list and markers To update https://anaconda.org/conda-forge/r-bold Ecology retrieve_bold ecology https://github.com/wpearman1996/MARES_database_pipeline/tree/master https://github.com/galaxyecology/tools-ecology/tree/master/tools/retrieve_bold 1.3.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +retrieve_ensembl_bed retrieve_ensembl_bed Retrieve cDNA features from Ensembl REST API in BED format To update http://rest.ensembl.org/ Data Source retrieve_ensembl_bed galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/retrieve_ensembl_bed https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/retrieve_ensembl_bed 0.1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +revertR2orientationInBam revertR2orientationInBam Revert the mapped orientation of R2 mates in a bam. To update SAM revertr2orientationinbam lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/revertR2orientationInBam https://github.com/lldelisle/tools-lldelisle/tree/master/tools/revertR2orientationInBam 0.0.2 samtools 1.20 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 39 +riassigner riassigner, riassigner_from_comment riassigner riassigner RIAssigner RIAssigner is a python tool for retention index (RI) computation for GC-MS data. Standardisation and normalisation Metabolomics, Compound libraries and screening, Data submission, annotation and curation Up-to-date https://github.com/RECETOX/RIAssigner Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/riassigner https://github.com/RECETOX/galaxytools/tree/master/tools/riassigner 0.4.1 riassigner 0.4.1 Standardisation and normalisation Metabolomics, Compound libraries and screening, Data submission, annotation and curation 1 2 2 1 1 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 15 +rmassbank rmassbank RMassBank is an R package for processing tandem MS files and building of MassBank records. To update https://github.com/MassBank/RMassBank Metabolomics rmassbank recetox https://github.com/RECETOX/galaxytools/tree/master/tools/rmassbank https://github.com/RECETOX/galaxytools/tree/master/tools/rmassbank 3.0.0 python 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 +rsem extract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtie transcript quantification from RNA-Seq data To update https://github.com/deweylab/RSEM Transcriptomics, RNA rsem artbio https://github.com/artbio/tools-artbio/tree/master/tools/rsem https://github.com/ARTbio/tools-artbio/tree/main/tools/rsem rsem 1.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 1 1 0 67 377 +salmon-kallisto-mtx-to-10x _salmon_kallisto_mtx_to_10x Transforms .mtx matrix and associated labels into a format compatible with tools expecting old-style 10X data To update https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary Sequence Analysis salmon_kallisto_mtx_to_10x ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/salmon-kallisto-mtx-to-10x/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/salmon-kallisto-mtx-to-10x 0.0.1+galaxy6 scipy 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 561 +sambamba sambamba_sample_or_filter filter BAM/SAM on flags, fields, tags, and region, or down-sample, or slice BAM/SAM To update http://artbio.fr SAM sambamba artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sambamba https://github.com/ARTbio/tools-artbio/tree/main/tools/sambamba 0.7.1+galaxy1 sambamba 1.0.1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +sashimi_plot sashimi_plot Generates a sashimi plot from bam files. To update http://artbio.fr RNA, Transcriptomics, Graphics, Visualization sashimi_plot artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plot https://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot 0.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +sc3 sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepare De-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_sc3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc3 1.8.0 sc3-scripts 0.0.6 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 +scaffold scaffold, scaffold_export To update scaffold galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/scaffold 0.1.0 scaffold 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +scanpy anndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_data scanpy-scripts, command-line wrapper scripts around Scanpy. To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis, RNA scanpy_scripts ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpy https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy 1.9.3 scanpy-scripts 1.9.301 27 27 27 0 27 27 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 13 0 2185 39356 +scater scater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_results De-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scater ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater 1.10.0 scater-scripts 0.0.5 1 2 6 0 1 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 16 387 +sccaf run_sccaf, sccaf_asses, sccaf_asses_merger, sccaf_regress_out SCCAF: Single Cell Clustering Assessment Framework. To update https://github.com/sccaf/sccaf Transcriptomics SCCAF ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccaf https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf 0.0.9 sccaf 0.0.10 4 3 4 0 4 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 110 +sceasy sceasy_convert Convert scRNA data object between popular formats To update Transcriptomics sceasy ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy 0.0.5 r-sceasy 0.0.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 +scmap scmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_features De-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scmap ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap 1.6.4 scmap-cli 0.1.0 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 13 83 +scpred scpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_model De-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scpred ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred 1.0.2 scpred-cli 0.1.0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 +scripting singularity_scriptrunner suite_scripting To update https://github.com/bernt-matthias/mb-galaxy-tools/tree/master/tools/scripting/ Text Manipulation scripting tools mbernt https://github.com/bernt-matthias/mb-galaxy-tools/tree/master/tools/scripting/ https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/scripting 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +sdmpredictors sdmpredictors_list_layers Terrestrial and marine predictors for species distribution modelling. To update https://cran.r-project.org/web/packages/sdmpredictors/index.html Ecology sdmpredictors ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors 0.2.15 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +sequence_format_converter sequence_format_converter various fasta to tabular conversions To update http://artbio.fr Convert Formats, Fasta Manipulation sequence_format_converter artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sequence_format_converter https://github.com/ARTbio/tools-artbio/tree/main/tools/sequence_format_converter 2.2.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +seurat seurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_features De-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1 Up-to-date https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ Transcriptomics, RNA, Statistics, Sequence Analysis suite_seurat ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat 4.0.0 seurat-scripts 4.0.0 14 14 14 11 14 14 14 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 0 0 0 181 1966 +sgwb sgwb_astro_tool SGWB To update Astronomy sgwb_astro_tool astroteam https://github.com/esg-epfl-apc/tools-astro/tree/main/tools https://github.com/esg-epfl-apc/tools-astro/tree/main/tools/sgwb 0.0.1+galaxy0 ipython 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +shift-longitudes shyft_longitudes Shift longitudes ranging from 0. and 360 degrees to -180. and 180. degrees To update https://github.com/NordicESMhub/galaxy-tools/blob/master/tools/shift-longitudes/ Climate Analysis shift_longitudes climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/shift-longitudes https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/shift-longitudes 0.1.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 63 +sixgill sixgill_build, sixgill_filter, sixgill_makefasta, sixgill_merge Six-frame Genome-Inferred Libraries for LC-MS/MS Up-to-date Proteomics, MetaProteomics sixgill galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgill https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgill 0.2.4 sixgill 0.2.4 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 24 293 +small_rna_clusters small_rna_clusters clusters small rna reads in alignment BAM files To update http://artbio.fr RNA, SAM, Graphics, Next Gen Mappers small_rna_clusters artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_clusters https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_clusters 1.3.0 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +small_rna_maps small_rna_maps Generates small read maps from alignment BAM files To update http://artbio.fr RNA, SAM, Graphics, Next Gen Mappers small_rna_maps artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_maps https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_maps 3.1.1 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +small_rna_signatures overlapping_reads, signature Computes the tendency of small RNAs to overlap with each other. To update http://artbio.fr RNA small_rna_signatures artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_signatures https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_signatures 3.4.2 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 +smithsonian-volcanoes smithsonian_volcanoes Retrieve data from Volcanoes of the World (VOTW) Database To update https://volcano.si.edu/gvp_votw.cfm Retrieve Data smithsonian_volcanoes climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/smithsonian-volcanoes https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/smithsonian-volcanoes 0.1.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +snv_matrix snvmatrix Generate matrix of SNV distances Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis snv_matrix nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/snv_matrix 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +snvtocnv sequenzaindex, snvtocnv infer copy number variations from a vcf file with SNVs using R sequenza To update http://artbio.fr Variant Analysis snvtocnv artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/snvtocnv https://github.com/ARTbio/tools-artbio/tree/main/tools/snvtocnv 3.0.0+galaxy1 sequenza-utils 3.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +spec2vec spec2vec_similarity, spec2vec_training Mass spectra similarity scoring using a trained Spec2Vec model. spec2vec spec2vec Spec2Vec Improved mass spectral similarity scoring through learning of structural relationships.Spec2vec is a novel spectral similarity score inspired by a natural language processing algorithm -- Word2Vec. Where Word2Vec learns relationships between words in sentences, spec2vec does so for mass fragments and neutral losses in MS/MS spectra. The spectral similarity score is based on spectral embeddings learnt from the fragmental relationships within a large set of spectral data.Analysis and benchmarking of mass spectra similarity measures using gnps data set. Spectrum calculation, Spectral library search, Database search, Natural product identification Proteomics experiment, Metabolomics, Natural language processing, Proteomics Up-to-date https://github.com/iomega/spec2vec Metabolomics spec2vec recetox https://github.com/RECETOX/galaxytools/tree/master/tools/spec2vec https://github.com/RECETOX/galaxytools/tree/master/tools/spec2vec 0.8.0 spec2vec 0.8.0 Spectrum calculation, Spectral library search, Database search, Natural product identification Proteomics experiment, Metabolomics, Natural language processing, Proteomics 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +spectrast2spectrast_irt gp_spectrast2spectrast_irt Filter from spectraST files to swath input files To update Proteomics spectrast2spectrast_irt galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irt https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irt 0.1.0 msproteomicstools 0.11.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +spectrast2tsv gp_spectrast2tsv Filter from spectraST files to swath input files To update Proteomics spectrast2tsv galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsv https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsv 0.1.0 msproteomicstools 0.11.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +spocc spocc_occ Get species occurences data To update https://cran.r-project.org/web/packages/spocc/index.html Ecology spocc_occ ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc 1.2.2 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 56 769 +sr_bowtie bowtieForSmallRNA bowtie wrapper tool to align small RNA sequencing reads To update http://artbio.fr RNA, Next Gen Mappers sr_bowtie artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie https://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie 2.3.0 bowtie 1.3.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +sr_bowtie_dataset_annotation sr_bowtie_dataset_annotation Maps iteratively small RNA sequencing datasets to reference sequences. To update http://artbio.fr RNA sr_bowtie_dataset_annotation artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie_dataset_annotation https://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie_dataset_annotation 2.8 bowtie 1.3.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +srs_tools srs_diversity_maps, srs_global_indices, srs_process_data, srs_spectral_indices, srs_pca, srs_preprocess_s2, srs_metadata Compute biodiversity indicators for remote sensing data from Sentinel 2 To update Ecology ecology https://github.com/Marie59/Sentinel_2A/srs_tools https://github.com/galaxyecology/tools-ecology/tree/master/tools/srs_tools 0.0.1 r-base 4 0 7 7 4 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 21 225 +stoc stoceps_filteringsp, stoceps_glm, stoceps_glm_group, stoceps_maketablecarrer, stoceps_trend_indic Tools to analyse STOC data. To update Ecology stoceps ecology https://github.com/Alanamosse/Galaxy-E/tree/stoctool/tools/stoc https://github.com/galaxyecology/tools-ecology/tree/master/tools/stoc 0.0.2 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 10 325 +suite_snvphyl SNVPhyl suite defining all dependencies for SNVPhyl To update Sequence Analysis suite_snvphyl_1_2_3 nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/suite_snvphyl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +tarfast5 tarfast5 produces a tar.gz archive of fast5 sequence files To update http://artbio.fr Nanopore tarfast5 artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/tarfast5 https://github.com/ARTbio/tools-artbio/tree/main/tools/tarfast5 0.6.1 pigz 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +topologyeditors gromacs_modify_topology, gromacs_extract_topology Set of python scripts and associated tool files that can be used to modify topology files. To update https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditors Molecular Dynamics, Computational chemistry topologyeditors chemteam https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditors https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/buildtools/topologyeditors 0 python 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 8 50 +translate_bed translate_bed Translate BED transcript CDS or cDNA in 3 frames To update http://rest.ensembl.org/ Proteomics translate_bed galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bed https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bed 0.1.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 49 643 +translate_bed_sequences translate_bed_sequences Perform 3 frame translation of BED file augmented with a sequence column To update Proteomics translate_bed_sequences galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequences https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequences 0.2.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 57 +ucsc-cell-browser ucsc_cell_browser Python pipeline and Javascript scatter plot library for single-cell datasets To update https://cells.ucsc.edu/ Transcriptomics ucsc_cell_browser ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser 1.0.0+galaxy1 ucsc-cell-browser 1.2.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 78 941 +unipept unipept Unipept retrieves metaproteomics information unipept unipept Unipept Metaproteomics data analysis with a focus on interactive data visualizations. Prediction and recognition, Visualisation Proteomics, Proteogenomics, Biodiversity, Workflows To update https://github.com/galaxyproteomics/tools-galaxyp Proteomics unipept galaxyp https://unipept.ugent.be/apidocs https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/unipept 4.5.1 python Prediction and recognition, Visualisation Proteomics, Proteogenomics, Biodiversity, Workflows 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 115 5005 +uniprotxml_downloader uniprotxml_downloader Download UniProt proteome in XML or fasta format To update Proteomics uniprotxml_downloader galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader 2.4.0 requests 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 79 1360 +upload_roi_and_measures_to_omero uploadROIandMeasuresToOMERO Upload the ROI coordinates and the measurements to the omero server To update Imaging upload_roi_and_measures_to_omero lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero https://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero 0.0.5 omero-py 5.11.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +validate_fasta_database validate_fasta_database runs Compomics database identification tool on any FASTA database, and separates valid and invalid entries based on a series of checks. To update Fasta Manipulation, Proteomics validate_fasta_database galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/validate_fasta_database 0.1.5 validate-fasta-database 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 25 86 +varscan_vaf varscan_vaf Compute variant allele frequency in vcf files generated by varscan. To update http://artbio.fr Variant Analysis varscan_vaf artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/varscan_vaf https://github.com/ARTbio/tools-artbio/tree/main/tools/varscan_vaf 0.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +vcf2snvalignment vcf2snvalignment Generates multiple alignment of variant calls Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis vcf2snvalignment nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/vcf2snvalignment 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +verify_map verify_map Checks the mapping quality of all BAM(s) Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis verify_map nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/verify_map 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +vigiechiro vigiechiro_bilanenrichipf, vigiechiro_bilanenrichirp, vigiechiro_idcorrect_2ndlayer, vigiechiro_idvalid Tools created by the vigiechiro team to analyses and identify chiro sounds files. To update https://www.vigienature-ecole.fr/les-observatoires/le-protocole-vigie-chiro Ecology vigiechiro ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro 0.1.1 0 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 351 12203 +virsorter virsorter VirSorter2 applies a multi-classifier, expert-guided approach to detect diverse DNA and RNA virus genomes. virsorter virsorter virsorter Identify DNA and RNA virus sequences. Taxonomic classification Metagenomics Up-to-date https://github.com/jiarong/VirSorter2/ Metagenomics virsorter ufz https://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/virsorter https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/virsorter 2.2.4 virsorter 2.2.4 Taxonomic classification Metagenomics 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +vmd vmd is a package for visualizing and analyzing trajectories from molecular dynamics (MD) simulations To update https://www.ks.uiuc.edu/Research/vmd/ Computational chemistry vmd chemteam https://github.com/thatchristoph/vmd-cvs-github/tree/master/vmd https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/vmd 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +waveica waveica Removal of batch effects for large-scale untargeted metabolomics data based on wavelet analysis. waveica waveica WaveICA Removal of batch effects for large-scale untargeted metabolomics data based on wavelet transform. Standardisation and normalisation Metabolomics Up-to-date https://github.com/RECETOX/WaveICA Metabolomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/waveica https://github.com/RECETOX/galaxytools/tree/master/tools/waveica 0.2.0 r-recetox-waveica 0.2.0 Standardisation and normalisation Metabolomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 6 +xarray timeseries_extraction, xarray_coords_info, xarray_mapplot, xarray_metadata_info, xarray_netcdf2netcdf, xarray_select xarray (formerly xray) is an open source project and Python package that makes working withlabelled multi-dimensional arrays simple, efficient, and fun!xarray integrates with Dask to support parallel computations and streaming computation on datasetsthat don’t fit into memory. To update http://xarray.pydata.org Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray/ https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray 2022.3.0 xarray 5 2 6 5 5 2 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 0 175 5876 +xmlstarlet xmlstarlet Tool to convert a xml file from one metadata standard to another To update Convert Formats xmlstarlet ecology https://github.com/galaxyecology/tools-ecology/tree/main/tools-ecology/tools/xmlstarlet https://github.com/galaxyecology/tools-ecology/tree/master/tools/xmlstarlet 1.6.1 xmlstarlet 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 14 +xpore xpore_dataprep, xpore_diffmod Identification and quantification of differential RNA modifications from direct RNA sequencing To update https://github.com/GoekeLab/xpore Nanopore xpore artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/xpore https://github.com/ARTbio/tools-artbio/tree/main/tools/xpore 2.1+galaxy0 xpore 2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +xtb xtb_molecular_optimization Performs semiempirical molecular optimization. To update https://github.com/grimme-lab/xtb Metabolomics xtb_molecular_optimization recetox https://github.com/RECETOX/galaxytools/tree/master/tools/xtb https://github.com/RECETOX/galaxytools/tree/master/tools/xtb 6.6.1 xtb 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +yac_clipper yac Clips 3' adapters for small RNA sequencing reads. To update http://artbio.fr RNA, Fastq Manipulation yac_clipper artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/yac_clipper https://github.com/ARTbio/tools-artbio/tree/main/tools/yac_clipper 2.5.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 +zeiss_lmd_converter ZeissLMDconverter Converts coordinates from a tabular file into a formatted text file readable by Zeiss laser-capture microdissection systems To update https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter Proteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter 2.0.4 shapely 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +zoo_project_ogc_api_processes zoo_project_ogc_api_processes This tool is a wrapper for OGC API Processes (OTB) coming from the Zoo Project (https://zoo-project.github.io/docs/intro.html) and was created using the OGC-API-Process2Galaxy tool (https://github.com/AquaINFRA/OGC-API-Process2Galaxy). Check the README in the repository for more information. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper https://github.com/galaxyecology/tools-ecology/tree/master/tools/zoo_project_ogc_api_processes 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 diff --git a/communities/all/resources/tools_wordcloud.png b/communities/all/resources/tools_wordcloud.png new file mode 100644 index 00000000..8ff1dc00 Binary files /dev/null and b/communities/all/resources/tools_wordcloud.png differ diff --git a/communities/all/resources/tutorials.json b/communities/all/resources/tutorials.json new file mode 100644 index 00000000..4a9ab568 --- /dev/null +++ b/communities/all/resources/tutorials.json @@ -0,0 +1,294142 @@ +[ + { + "abbreviations": { + "TSDB": "Time Series Database" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/monitoring/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/monitoring", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/monitoring", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Telegraf provides an easy solution to monitor servers", + "Galaxy can send metrics to Telegraf", + "Telegraf can run arbitrary commands like `gxadmin`, which provides influx formatted output", + "InfluxDB can collect metrics from Telegraf", + "Use Grafana to visualise these metrics, and monitor their values" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Setup InfluxDB", + "Setup Telegraf", + "Setup Grafana", + "Create several charts" + ], + "pageviews": 5731953, + "pub_date": "2019-01-31", + "questions": [ + "How to monitor Galaxy with Telegraf", + "How do I set up InfluxDB", + "How can I make graphs in Grafana?", + "How can I best alert on important metrics?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann", + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "73M", + "speakers": [], + "youtube_id": "drUaYQtMBLY" + } + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy", + "gxadmin" + ], + "type": "internal" + } + ], + "short_id": "T00015", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "2M", + "speakers": [ + "awspolly" + ], + "youtube_id": "qcp9lEUxCGI" + } + ], + "subtopic": "monitoring", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "monitoring", + "git-gat" + ], + "time_estimation": "2h", + "title": "Galaxy Monitoring with Telegraf and Grafana", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "monitoring", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/monitoring/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/monitoring/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/monitoring/tutorial.json" + }, + "version": 45, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 203, + "visitors": 2066415 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/gxadmin/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/gxadmin", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/gxadmin", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "gxadmin is a tool to run common database queries useful for Galaxy admins", + "new queries are welcome and easy to contribute" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Learn gxadmin basics", + "See some queries and learn how they help debug production issues" + ], + "pageviews": 5728058, + "pub_date": "2019-01-28", + "questions": [ + "What is gxadmin", + "What can it do?", + "How to write a query?" + ], + "short_id": "T00009", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "2M", + "speakers": [ + "awspolly" + ], + "youtube_id": "QFwOgDyFSSA" + } + ], + "subtopic": "monitoring", + "supported_servers": [], + "symlink": null, + "tags": [ + "monitoring", + "ansible", + "git-gat" + ], + "time_estimation": "30m", + "title": "Galaxy Monitoring with gxadmin", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "gxadmin", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/gxadmin/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/gxadmin/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/gxadmin/tutorial.json" + }, + "version": 27, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 321, + "visitors": 2064469, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/interactive-tools/tutorial.json", + "contributions": { + "authorship": [ + "natefoo", + "slugger70", + "hexylena", + "abretaud" + ], + "editing": [ + "kysrpex" + ] + }, + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "id": "kysrpex", + "joined": "2023-10", + "name": "Jos\u00e9 Manuel Dom\u00ednguez", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kysrpex/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kysrpex.json" + } + ], + "dir": "topics/admin/tutorials/interactive-tools", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/interactive-tools", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy Interactive Tools run as jobs in largely the same manner as any other Galaxy job", + "nginx routes GxIT requests to the GxIT(/GIE) Proxy, which routes them to the node/port on which the GxIT is running", + "GxITs require wildcard SSL certificates", + "GxITs expose your Galaxy server's user datasets unless configured to use Pulsar" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-26", + "objectives": [ + "Understand what Galaxy Interactive Tools are and how they work", + "Be aware of the security implications of Interactive Tools", + "Have a basic understanding of the Interactive Tools (GxIT/GIE) Proxy, its purpose, and configuration", + "Be familiar with wildcard SSL certificates and how to get them from Let's Encrypt", + "Configure your Galaxy to serve Interactive Tools using an Ansible Playbook", + "Start, run, and use an Interactive Tool" + ], + "pageviews": 5729755, + "pub_date": "2020-02-27", + "questions": [ + "What are Galaxy Interactive Tools?", + "How can I enable Interactive Tools on my Galaxy instance?" + ], + "recordings": [ + { + "captioners": [ + "abretaud", + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "44M", + "speakers": [ + "abretaud" + ], + "youtube_id": "lACsIhnbTbE" + } + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy", + "connect-to-compute-cluster", + "job-destinations" + ], + "type": "internal" + } + ], + "short_id": "T00010", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "interactive-tools" + ], + "time_estimation": "2h", + "title": "Galaxy Interactive Tools", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "interactive-tools", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/interactive-tools/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/interactive-tools/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/interactive-tools/tutorial.json" + }, + "version": 24, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 316, + "visitors": 2065601, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "data_manager_bwa_mem_index_builder", + "owner": "devteam", + "revisions": "9e993022c762", + "tool_panel_section_label": "Data Managers", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "data_manager_fetch_genome_dbkeys_all_fasta", + "owner": "devteam", + "revisions": "4d3eff1bc421", + "tool_panel_section_label": "Data Managers", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: data_manager_bwa_mem_index_builder\n owner: devteam\n revisions: 9e993022c762\n tool_panel_section_label: Data Managers\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: data_manager_fetch_genome_dbkeys_all_fasta\n owner: devteam\n revisions: 4d3eff1bc421\n tool_panel_section_label: Data Managers\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/reference-genomes/tutorial.json", + "contributions": { + "authorship": [ + "slugger70", + "afgane" + ], + "editing": [ + "hexylena", + "natefoo" + ] + }, + "contributors": [ + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "id": "afgane", + "joined": "2018-06", + "name": "Enis Afgan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/afgane/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/afgane.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + } + ], + "dir": "topics/admin/tutorials/reference-genomes", + "edam_operation": [ + "Sequence alignment", + "Read mapping", + "Genome indexing", + "Generation" + ], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/reference-genomes", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Understand how Galaxy stores and uses its reference data", + "Understand how to manually add a reference genome and tool indices if required", + "Understand and how to use data managers to make all of this much much easier" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-04-21", + "objectives": [ + "Have an understanding of the way in which Galaxy stores and uses reference data", + "Be able to download and use data managers to add a reference genome and its pre-calculated indices into the Galaxy reference data system", + "Use an Ansible playbook for all of the above" + ], + "pageviews": 5727367, + "pub_date": "2019-01-28", + "questions": null, + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00329", + "short_tools": [ + "bwa", + "bwa_mem_index_builder_data_manager", + "data_manager_fetch_genome_all_fasta_dbkey" + ], + "slides": true, + "slides_recordings": false, + "subtopic": "data", + "supported_servers": [], + "symlink": null, + "time_estimation": "1h", + "title": "Reference Data with Data Managers", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa/0.7.17.5", + "toolshed.g2.bx.psu.edu/repos/devteam/data_manager_bwa_mem_index_builder/bwa_mem_index_builder_data_manager/0.0.5", + "toolshed.g2.bx.psu.edu/repos/devteam/data_manager_fetch_genome_dbkeys_all_fasta/data_manager_fetch_genome_all_fasta_dbkey/0.0.4" + ], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "reference-genomes", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/reference-genomes/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/reference-genomes/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/reference-genomes/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 453, + "visitors": 2064122, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/galaxy-docker/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/admin/tutorials/galaxy-docker", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/galaxy-docker", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use Docker", + "Integrate your tools into Galaxy", + "Use Galaxy inside Docker to have a flavoured Galaxy instance" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2022-10-18", + "objectives": [ + "Docker basics", + "Galaxy Docker image (usage)", + "Galaxy Docker (internals)", + "Galaxy flavours" + ], + "pageviews": 5726877, + "pub_date": "2016-09-29", + "questions": [ + "Why Docker? What is it?", + "How to use Docker?", + "How to integrate Galaxy in Docker to facilitate its deployment?" + ], + "short_id": "S00011", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "1h", + "title": "Docker and Galaxy", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-docker", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/galaxy-docker/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/galaxy-docker/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/galaxy-docker/slides.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tool-management/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "cz", + "email": "marten@bx.psu.edu", + "fediverse": "https://mastodon.world/@martenson", + "fediverse_flavor": "mastodon", + "id": "martenson", + "joined": "2017-09", + "location": { + "country": "USA", + "lat": 37.0, + "lon": -122.0 + }, + "matrix": "martenson:matrix.org", + "name": "Martin \u010cech", + "orcid": "0000-0002-9318-1781", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/martenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/martenson.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + } + ], + "dir": "topics/admin/tutorials/tool-management", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/tool-management", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Ephemeris and automation help with the tool management on Galaxy", + "There are tool management best practices you can learn from", + "Do not manage your Galaxy tools manually" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Learn about Ephemeris", + "Extract a list of tools from a workflow", + "Install these tools on a given Galaxy" + ], + "pageviews": 5728903, + "pub_date": "2019-01-27", + "questions": [ + "How to install, update, and maintain Galaxy tools?", + "How to extract a list of tools from a workflow or Galaxy instance?" + ], + "recordings": [ + { + "captioners": [ + "cat-bro" + ], + "date": "2021-06-28", + "galaxy_version": "21.05", + "length": "27M", + "speakers": [ + "cat-bro" + ], + "youtube_id": "pda0v9b3vO4" + }, + { + "captioners": [ + "eancelet" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "47M", + "speakers": [ + "cat-bro" + ], + "youtube_id": "7Qqwrzn--YI" + } + ], + "short_id": "T00023", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "cat-bro" + ], + "date": "2021-06-28", + "galaxy_version": "21.05", + "length": "17M", + "speakers": [ + "cat-bro" + ], + "youtube_id": "8Rdho_eUeKc" + } + ], + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "tags": [ + "tools", + "git-gat" + ], + "time_estimation": "45m", + "title": "Galaxy Tool Management with Ephemeris", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tool-management", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/tool-management/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tool-management/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tool-management/tutorial.json" + }, + "version": 38, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 386, + "visitors": 2065110 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/pulsar/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gmauro", + "joined": "2019-03", + "name": "Gianmauro Cuccuru", + "orcid": "0000-0002-5335-545X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gmauro/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gmauro.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe", + "deNBI" + ], + "elixir_node": "de", + "email": "kuntzm@informatik.uni-freiburg.de", + "id": "mira-miracoli", + "joined": "2022-07", + "matrix": "mira-miracoli:matrix.org", + "name": "Mira Kuntz", + "orcid": "0000-0003-4302-5091", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mira-miracoli/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mira-miracoli.json" + } + ], + "dir": "topics/admin/tutorials/pulsar", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/pulsar", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Pulsar allows you to easily add geographically distributed compute resources into your Galaxy instance", + "It also works well in situations where the compute resources cannot share storage pools." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Have an understanding of what Pulsar is and how it works", + "Install and configure a RabbitMQ message queueing server", + "Install and configure a Pulsar server on a remote linux machine", + "Be able to get Galaxy to send jobs to a remote Pulsar server" + ], + "pageviews": 5730429, + "pub_date": "2019-01-28", + "questions": [ + "How does pulsar work?", + "How can I deploy it?" + ], + "recordings": [ + { + "captioners": [ + "hexylena" + ], + "date": "2021-06-28", + "galaxy_version": "21.05", + "length": "1H28M", + "speakers": [ + "slugger70" + ], + "youtube_id": "f0QdF8NDhsM" + }, + { + "captioners": [ + "simonbray", + "slugger70" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "57M", + "speakers": [ + "slugger70" + ], + "youtube_id": "a7fKJT4Fs9k" + } + ], + "redirect_from": [ + "/topics/admin/tutorials/heterogeneous-compute/tutorial", + "/short/admin/pulsar", + "/short/T00017" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy", + "connect-to-compute-cluster", + "job-destinations", + "cvmfs" + ], + "type": "internal" + }, + { + "title": "A server/VM on which to deploy Pulsar", + "type": "none" + } + ], + "short_id": "T00017", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "14M", + "speakers": [ + "slugger70" + ], + "youtube_id": "M1-Z_2tuQPI" + } + ], + "subtopic": "jobs", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "jobs", + "git-gat" + ], + "time_estimation": "60m", + "title": "Running Jobs on Remote Resources with Pulsar", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "pulsar", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/pulsar/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/pulsar/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/pulsar/tutorial.json" + }, + "version": 48, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 333, + "visitors": 2065824 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/empathy/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/admin/tutorials/empathy", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/empathy", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2021-04-06", + "pageviews": 5726878, + "pub_date": "2019-01-31", + "short_id": "S00009", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "title": "Empathy", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "empathy", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/empathy/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/empathy/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/empathy/slides.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ansible/tutorial.json", + "contributions": { + "authorship": [ + "hexylena", + "shiltemann" + ], + "testing": [ + "vladvisan" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "uga" + ], + "email": "vlad.visan@gmail.com", + "id": "vladvisan", + "joined": "2023-02", + "location": { + "country": "FR", + "lat": 45.19, + "lon": 5.76 + }, + "matrix": "vlad.visan:matrix.org", + "name": "Vlad Visan", + "orcid": "0009-0007-0529-1002", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/vladvisan/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/vladvisan.json" + } + ], + "dir": "topics/admin/tutorials/ansible", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/ansible", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Ansible lets you do system administration at scale", + "Many system administration, software installation, and software management tasks are already available as Ansible tasks or roles" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Learn Ansible basics", + "Write a simple role", + "Install a role from Ansible Galaxy (repository unrelated to the Galaxy Project)" + ], + "pageviews": 5737371, + "pub_date": "2018-07-11", + "questions": [ + "Why Ansible?", + "How and when to use Ansible?", + "How to write a role?", + "How to leverage community build roles?" + ], + "recordings": [ + { + "captioners": [ + "martenson" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "61M", + "speakers": [ + "martenson" + ], + "youtube_id": "2KdT0sYKUeE" + } + ], + "short_id": "T00000", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "martenson" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "5M", + "speakers": [ + "jdavcs" + ], + "youtube_id": "KFpbfmN0OTE" + } + ], + "subtopic": "core", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible" + ], + "time_estimation": "60m", + "title": "Ansible", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "ansible", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/ansible/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ansible/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ansible/tutorial.json" + }, + "version": 48, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 251, + "visitors": 2069384, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cvmfs/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/cvmfs", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/cvmfs", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Have an understanding of what CVMFS is and how it works", + "Install and configure the CVMFS client on a linux machine and mount the Galaxy reference data repository", + "Configure your Galaxy to use these reference genomes and indices", + "Use an Ansible playbook for all of the above." + ], + "pageviews": 5729458, + "pub_date": "2019-01-27", + "questions": null, + "recordings": [ + { + "captioners": [ + "slugger70" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "23M", + "speakers": [ + "slugger70" + ], + "youtube_id": "X3iFMZP_fQ8" + } + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00003", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "3M", + "speakers": [ + "awspolly" + ], + "youtube_id": "g_cavAO-fBM" + } + ], + "subtopic": "data", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "git-gat" + ], + "time_estimation": "1h", + "title": "Reference Data with CVMFS", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "cvmfs", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/cvmfs/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cvmfs/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cvmfs/tutorial.json" + }, + "version": 49, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 347, + "visitors": 2065420, + "voice": { + "id": "Olivia", + "lang": "en-AU", + "neural": true + }, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/poll-ssa/tutorial.json", + "contributions": { + "authorship": [ + "vladvisan" + ], + "data": [ + "bernt-matthias", + "lldelisle", + "hrhotz" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "uga" + ], + "email": "vlad.visan@gmail.com", + "id": "vladvisan", + "joined": "2023-02", + "location": { + "country": "FR", + "lat": 45.19, + "lon": 5.76 + }, + "matrix": "vlad.visan:matrix.org", + "name": "Vlad Visan", + "orcid": "0009-0007-0529-1002", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/vladvisan/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/vladvisan.json" + }, + { + "elixir_node": "de", + "id": "bernt-matthias", + "joined": "2017-09", + "name": "Matthias Bernt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bernt-matthias.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "hrhotz@googlemail.com", + "fediverse": "https://genomic.social/@hrhotz", + "fediverse_flavor": "mastodon", + "id": "hrhotz", + "joined": "2017-09", + "linkedin": "hans-rudolf-hotz-542b31", + "location": { + "country": "CH", + "lat": 47.57, + "lon": 7.6 + }, + "matrix": "hrhotz:matrix.org", + "name": "Hans-Rudolf Hotz", + "orcid": "0000-0002-2799-424X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hrhotz/", + "twitter": "hrhotz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hrhotz.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/poll-ssa", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/poll-ssa", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2024-07-10", + "pageviews": 130963, + "pub_date": "2024-07-10", + "short_id": "S00122", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "maintenance", + "supported_servers": [], + "symlink": null, + "tags": [ + "deploying", + "maintenance", + "survey" + ], + "title": "Galaxy Administrator Time Burden and Technology Usage", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "poll-ssa", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/poll-ssa/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/poll-ssa/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/poll-ssa/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 144, + "visitors": 54203 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/users-groups-quotas/tutorial.json", + "contributions": { + "authorship": [ + "natefoo", + "bgruening", + "hexylena" + ] + }, + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/users-groups-quotas", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/users-groups-quotas", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy has a powerful user and group managment system that can be utilized for Quota management." + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2024-08-08", + "objectives": [ + "Learn the Galaxy user/group management and assign Quotas.", + "Understand the Role Based Access Control (RBAC) of Galaxy." + ], + "pageviews": 5726878, + "pub_date": "2018-01-07", + "questions": [ + "How does Galaxy manage users and groups?", + "How can I assign Quotas to specific users/groups?", + "How should I manage groups vs roles", + "What authentication methods are available?", + "How is dataset privacy managed?", + "Authentication Systems, what is available and how can I enable it?" + ], + "recordings": [ + { + "captioners": [ + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "4M", + "speakers": [ + "awspolly" + ], + "youtube_id": "crywu31L8qg" + } + ], + "short_id": "S00027", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "4M", + "speakers": [ + "awspolly" + ], + "youtube_id": "crywu31L8qg" + } + ], + "subtopic": "maintenance", + "supported_servers": [], + "symlink": null, + "time_estimation": "15m", + "title": "User, Role, Group, Quota, and Authentication managment", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "users-groups-quotas", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/users-groups-quotas/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/users-groups-quotas/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/users-groups-quotas/slides.json" + }, + "version": 19, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/data-library/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/admin/tutorials/data-library", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/data-library", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Data libraries are a great way to share data with groups of users" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Setup a data library", + "Manage permissions", + "Import data from disk" + ], + "pageviews": 5660754, + "pub_date": "2021-01-14", + "questions": [ + "How do data libraries work?", + "What are they good for?", + "How can I use them?", + "How can I setup permissions for them?" + ], + "recordings": [ + { + "captioners": [ + "hexylena", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "22M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "6BWu29Oiihw" + } + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy", + "tool-management" + ], + "type": "internal" + } + ], + "short_id": "T00005", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "data", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "storage", + "git-gat" + ], + "time_estimation": "30m", + "title": "Data Libraries", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "data-library", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/data-library/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/data-library/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/data-library/tutorial.json" + }, + "version": 32, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 278, + "visitors": 2044055 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/systemd-supervisor/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/systemd-supervisor", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/systemd-supervisor", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2023-04-16", + "pageviews": 5726878, + "pub_date": "2019-01-28", + "short_id": "S00023", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "deprecated", + "supported_servers": [], + "symlink": null, + "title": "Controlling Galaxy with systemd or Supervisor", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "systemd-supervisor", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/systemd-supervisor/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/systemd-supervisor/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/systemd-supervisor/slides.json" + }, + "version": 5, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/database/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "cz", + "email": "marten@bx.psu.edu", + "fediverse": "https://mastodon.world/@martenson", + "fediverse_flavor": "mastodon", + "id": "martenson", + "joined": "2017-09", + "location": { + "country": "USA", + "lat": 37.0, + "lon": -122.0 + }, + "matrix": "martenson:matrix.org", + "name": "Martin \u010cech", + "orcid": "0000-0002-9318-1781", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/martenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/martenson.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/database", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/database", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2022-06-16", + "pageviews": 5726878, + "pub_date": "2019-01-28", + "short_id": "S00008", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "title": "Galactic Database", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "database", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/database/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/database/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/database/slides.json" + }, + "version": 5, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/production/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + }, + { + "id": "abdulrahmanazab", + "joined": "2019-01", + "name": "Abdulrahman Azab", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abdulrahmanazab/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abdulrahmanazab.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "cz", + "email": "marten@bx.psu.edu", + "fediverse": "https://mastodon.world/@martenson", + "fediverse_flavor": "mastodon", + "id": "martenson", + "joined": "2017-09", + "location": { + "country": "USA", + "lat": 37.0, + "lon": -122.0 + }, + "matrix": "martenson:matrix.org", + "name": "Martin \u010cech", + "orcid": "0000-0002-9318-1781", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/martenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/martenson.json" + } + ], + "dir": "topics/admin/tutorials/production", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/production", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2023-04-16", + "pageviews": 5726878, + "pub_date": "2019-01-28", + "short_id": "S00019", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "maintenance", + "supported_servers": [], + "symlink": null, + "title": "Gearing towards production", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "production", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/production/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/production/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/production/slides.json" + }, + "version": 9, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/introduction/tutorial.json", + "contributors": [ + { + "id": "valentinmarcon", + "joined": "2017-09", + "name": "Valentin Marcon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/valentinmarcon/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/valentinmarcon.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/introduction", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy is scalable from personal computers to huge HPC and cloud-instances.", + "Amount of expected users, types of common tasks, and storage capabilities have a big impact on the deployment." + ], + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2024-06-25", + "objectives": [ + "Learn about different options about Galaxy deployment.", + "Make an educated decision about your preferred deployment model." + ], + "pageviews": 5726878, + "priority": 1, + "pub_date": "2017-06-12", + "questions": [ + "What options to deploy Galaxy do I have?", + "Which platforms are supported by Galaxy?", + "What requirements does Galaxy have?" + ], + "redirect_from": [ + "/topics/admin/slides/introduction", + "/short/admin/introduction/slides", + "/short/S00015" + ], + "short_id": "S00015", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": [], + "symlink": null, + "time_estimation": "20m", + "title": "Galaxy from an administrator's point of view", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/introduction/slides.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758, + "zenodo_link": "" + }, + { + "abbreviations": { + "WORM": "Write Once Read Many" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/backup-cleanup/tutorial.json", + "contributions": { + "authorship": [ + "hexylena", + "lldelisle", + "natefoo" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + } + ], + "dir": "topics/admin/tutorials/backup-cleanup", + "edam_ontology": [ + "topic_3489", + "topic_0605", + "topic_3071" + ], + "edam_operation": [], + "edam_topic": [ + "Database management", + "Informatics", + "Data management" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/backup-cleanup", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use configuration management (e.g. Ansible)", + "Store configuration management in git", + "Back up the parts of Galaxy that can't be recreated" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Learn about different maintenance steps", + "Setup postgres backups", + "Setup cleanups", + "Learn what to back up and how to recover" + ], + "pageviews": 5727341, + "pub_date": "2019-01-31", + "questions": [ + "How can I back up my Galaxy?", + "What data should be included?", + "How can I ensure jobs get cleaned up appropriately?", + "How do I maintain a Galaxy server?", + "What happens if I lose everything?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible-galaxy" + ], + "type": "internal" + }, + { + "title": "A VM with at least 2 vCPUs and 4 GB RAM, preferably running Ubuntu 18.04 - 20.04.", + "type": "none" + } + ], + "short_id": "T00324", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "maintenance", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "deploying", + "git-gat" + ], + "time_estimation": "30m", + "title": "Server Maintenance: Cleanup, Backup, and Restoration", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "backup-cleanup", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/backup-cleanup/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/backup-cleanup/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/backup-cleanup/tutorial.json" + }, + "version": 5, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 840, + "visitors": 2064092 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/uwsgi/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + } + ], + "dir": "topics/admin/tutorials/uwsgi", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/uwsgi", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2022-03-01", + "pageviews": 5726879, + "pub_date": "2019-01-28", + "short_id": "S00028", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "deprecated", + "supported_servers": [], + "symlink": null, + "title": "uWSGI", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "uwsgi", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/uwsgi/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/uwsgi/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/uwsgi/slides.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/connect-to-compute-cluster/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/connect-to-compute-cluster", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "admin", + "tutorials": [ + "job-destinations" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "admin/connect-to-compute-cluster", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy supports a variety of different DRMs.", + "You should absolutely set one up, it prevents jobs from being killed during server restarts." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Be familiar with the basics of installing, configuring, and using Slurm", + "Understand all components of the Galaxy job running stack", + "Understand how the job conf controls Galaxy's jobs subsystem", + "Have a strong understanding of Galaxy job destinations", + "Understand the purpose and function of Galaxy job metrics" + ], + "pageviews": 5732896, + "pub_date": "2018-01-07", + "questions": [ + "How to connect Galaxy to a compute cluster?", + "What are job metrics?", + "What sort of information can I collect?", + "Where can I find this information?" + ], + "recordings": [ + { + "captioners": [ + "cat-bro", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "31M", + "speakers": [ + "hexylena" + ], + "youtube_id": "R0NbHscL3jA" + }, + { + "captioners": [ + "beatrizserrano" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "6M", + "speakers": [ + "hexylena" + ], + "youtube_id": "7CYI5yw9MN8" + } + ], + "redirect_from": [ + "/topics/admin/tutorials/job-metrics/tutorial", + "/short/admin/connect-to-compute-cluster", + "/short/T00002" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00002", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "jobs", + "supported_servers": [], + "symlink": null, + "tags": [ + "jobs", + "ansible", + "git-gat" + ], + "time_estimation": "1h", + "title": "Connecting Galaxy to a compute cluster", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "connect-to-compute-cluster", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/connect-to-compute-cluster/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/connect-to-compute-cluster/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/connect-to-compute-cluster/tutorial.json" + }, + "version": 56, + "video": true, + "video_versions": 2, + "video_view": 0, + "visit_duration": 354, + "visitors": 2067055 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/object-store/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gmauro", + "joined": "2019-03", + "name": "Gianmauro Cuccuru", + "orcid": "0000-0002-5335-545X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gmauro/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gmauro.json" + } + ], + "dir": "topics/admin/tutorials/object-store", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/object-store", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The distributed object store configuration allows you to easily expand that storage that is attached to your Galaxy.", + "You can move data around without affecting users." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Setup Galaxy with both the Hierarachical and Distributed Object Storages" + ], + "pageviews": 5728838, + "pub_date": "2019-01-28", + "questions": [ + "How does Galaxy locate data?", + "How can I have Galaxy use multiple storage locations?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00016", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "cat-bro" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "18M", + "speakers": [ + "gmauro" + ], + "youtube_id": "Hv2bvjk5sjE" + } + ], + "subtopic": "data", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "storage" + ], + "time_estimation": "30m", + "title": "Distributed Object Storage", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "object-store", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/object-store/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/object-store/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/object-store/tutorial.json" + }, + "version": 27, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 244, + "visitors": 2064970 + }, + { + "abbreviations": { + "DVCS": "Distributed Version Control System" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ansible-galaxy/tutorial.json", + "contributions": { + "authorship": [ + "hexylena", + "natefoo", + "slugger70" + ], + "editing": [ + "shiltemann", + "nsoranzo", + "gmauro", + "mvdbeek", + "martenson", + "jmchilton", + "davebx", + "lecorguille", + "abretaud", + "lldelisle" + ], + "testing": [ + "mira-miracoli", + "edmontosaurus" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gmauro", + "joined": "2019-03", + "name": "Gianmauro Cuccuru", + "orcid": "0000-0002-5335-545X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gmauro/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gmauro.json" + }, + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "cz", + "email": "marten@bx.psu.edu", + "fediverse": "https://mastodon.world/@martenson", + "fediverse_flavor": "mastodon", + "id": "martenson", + "joined": "2017-09", + "location": { + "country": "USA", + "lat": 37.0, + "lon": -122.0 + }, + "matrix": "martenson:matrix.org", + "name": "Martin \u010cech", + "orcid": "0000-0002-9318-1781", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/martenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/martenson.json" + }, + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "id": "davebx", + "joined": "2021-06", + "name": "Dave B.", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/davebx/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/davebx.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "id": "lecorguille", + "joined": "2017-09", + "name": "Gildas Le Corguill\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lecorguille/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lecorguille.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe", + "deNBI" + ], + "elixir_node": "de", + "email": "kuntzm@informatik.uni-freiburg.de", + "id": "mira-miracoli", + "joined": "2022-07", + "matrix": "mira-miracoli:matrix.org", + "name": "Mira Kuntz", + "orcid": "0000-0003-4302-5091", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mira-miracoli/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mira-miracoli.json" + }, + { + "id": "edmontosaurus", + "joined": "2023-11", + "matrix": "edmontosaurus:matrix.org", + "name": "Edwin den Haas", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/edmontosaurus/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/edmontosaurus.json" + } + ], + "dir": "topics/admin/tutorials/ansible-galaxy", + "edam_ontology": [ + "topic_3489", + "topic_0605", + "topic_3071" + ], + "edam_operation": [], + "edam_topic": [ + "Database management", + "Informatics", + "Data management" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/ansible-galaxy", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Basic deployment with Ansible is surprisingly easy", + "Complexity can grow over time as your organisation does, no need to start with playbooks like UseGalaxy.org" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Have an understanding of how Galaxy's Ansible roles are structured and interact with one another", + "Be able to use an Ansible playbook to install different flavors of Galaxy for different purposes" + ], + "pageviews": 5770977, + "pub_date": "2019-01-28", + "questions": [ + "How does the Galaxy Ansible module work internally?", + "How can I install a Galaxy server with Ansible" + ], + "recordings": [ + { + "captioners": [ + "natefoo", + "hexylena" + ], + "date": "2022-03-01", + "galaxy_version": "21.05", + "length": "2H50M", + "speakers": [ + "natefoo", + "hexylena" + ], + "youtube_id": "LPK8rP_qUiA" + }, + { + "captioners": [ + "natefoo", + "hexylena" + ], + "date": "2021-06-28", + "galaxy_version": "21.05", + "length": "2H47M", + "speakers": [ + "natefoo" + ], + "youtube_id": "zT70luZqPOU" + }, + { + "captioners": [ + "shiltemann", + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "53M", + "speakers": [ + "hexylena" + ], + "youtube_id": "il83uApg7Hc" + } + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible" + ], + "type": "internal" + }, + { + "title": "A VM with at least 2 vCPUs and 4 GB RAM, preferably running Ubuntu 20.04 - 22.04.", + "type": "none" + } + ], + "short_id": "T00001", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "deploying", + "git-gat" + ], + "time_estimation": "2h30m", + "title": "Galaxy Installation with Ansible", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "ansible-galaxy", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/ansible-galaxy/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ansible-galaxy/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ansible-galaxy/tutorial.json" + }, + "version": 99, + "video": true, + "video_versions": 3, + "video_view": 0, + "visit_duration": 254, + "visitors": 2086723 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cloudbursting/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + } + ], + "dir": "topics/admin/tutorials/cloudbursting", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/cloudbursting", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2022-03-01", + "pageviews": 5726879, + "pub_date": "2019-01-31", + "short_id": "S00004", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "cloud", + "supported_servers": [], + "symlink": null, + "title": "Galaxy on the Cloud", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "cloudbursting", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/cloudbursting/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cloudbursting/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cloudbursting/slides.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/stuff/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/stuff", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/stuff", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy supports pluggable monitoring extensions.", + "Use grafana or the reports webapp to monitor your service." + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2023-02-17", + "objectives": [ + "Learn about different monitoring strategies.", + "Setup and start the Galaxy reports app." + ], + "pageviews": 5726879, + "pub_date": "2018-01-07", + "questions": [ + "How to monitor a Galaxy service?" + ], + "short_id": "S00022", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Server: Other", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "stuff", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/stuff/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/stuff/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/stuff/slides.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/celery/tutorial.json", + "contributions": { + "authorship": [ + "mira-miracoli" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe", + "deNBI" + ], + "elixir_node": "de", + "email": "kuntzm@informatik.uni-freiburg.de", + "id": "mira-miracoli", + "joined": "2022-07", + "matrix": "mira-miracoli:matrix.org", + "name": "Mira Kuntz", + "orcid": "0000-0003-4302-5091", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mira-miracoli/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mira-miracoli.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/celery", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/celery", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "objectives": [ + "Have an understanding of what Celery is and how it works", + "Install Redis", + "Configure and start Celery workers", + "Install Flower to the Galaxy venv and configure it", + "Use an Ansible playbook for all of the above.", + "Monitor a Celery task using the Flower dashboard" + ], + "pageviews": 2906091, + "pub_date": "2022-07-16", + "questions": null, + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy", + "pulsar" + ], + "type": "internal" + } + ], + "short_id": "T00326", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "data", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "git-gat" + ], + "time_estimation": "1h", + "title": "Setting up Celery Workers for Galaxy", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "celery", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/celery/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/celery/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/celery/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 232, + "visitors": 1208298, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/external-auth/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/external-auth", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/external-auth", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Remote auth is not complex to set up and can help you meet institutional requirements" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2022-10-18", + "objectives": [ + "be familiar with configuring Galaxy to use an upstream (proxy) authentication provider", + "be able to log in to your Galaxy server with a file-configured user." + ], + "pageviews": 5727928, + "pub_date": "2019-01-28", + "questions": [ + "How can I connect Galaxy with CAS, SAML, etc." + ], + "redirect_from": [ + "/topics/admin/tutorials/upstream-auth/tutorial", + "/short/admin/external-auth", + "/short/T00007" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00007", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "tags": [ + "authentication" + ], + "time_estimation": "30m", + "title": "External Authentication", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "external-auth", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/external-auth/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/external-auth/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/external-auth/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 199, + "visitors": 2064406 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/general-monitoring/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/general-monitoring", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/general-monitoring", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2022-03-01", + "pageviews": 5726879, + "pub_date": "2019-04-26", + "short_id": "S00012", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "monitoring", + "supported_servers": [], + "symlink": null, + "title": "Galaxy Monitoring", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "general-monitoring", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/general-monitoring/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/general-monitoring/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/general-monitoring/slides.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/advanced-galaxy-customisation/tutorial.json", + "contributors": [ + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "cz", + "email": "marten@bx.psu.edu", + "fediverse": "https://mastodon.world/@martenson", + "fediverse_flavor": "mastodon", + "id": "martenson", + "joined": "2017-09", + "location": { + "country": "USA", + "lat": 37.0, + "lon": -122.0 + }, + "matrix": "martenson:matrix.org", + "name": "Martin \u010cech", + "orcid": "0000-0002-9318-1781", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/martenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/martenson.json" + } + ], + "dir": "topics/admin/tutorials/advanced-galaxy-customisation", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/advanced-galaxy-customisation", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2023-04-17", + "pageviews": 5726879, + "pub_date": "2017-06-27", + "short_id": "S00000", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "deprecated", + "supported_servers": [], + "symlink": null, + "title": "Advanced customisation of a Galaxy instance", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "advanced-galaxy-customisation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/advanced-galaxy-customisation/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/advanced-galaxy-customisation/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/advanced-galaxy-customisation/slides.json" + }, + "version": 18, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/troubleshooting/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "cz", + "email": "marten@bx.psu.edu", + "fediverse": "https://mastodon.world/@martenson", + "fediverse_flavor": "mastodon", + "id": "martenson", + "joined": "2017-09", + "location": { + "country": "USA", + "lat": 37.0, + "lon": -122.0 + }, + "matrix": "martenson:matrix.org", + "name": "Martin \u010cech", + "orcid": "0000-0002-9318-1781", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/martenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/martenson.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + } + ], + "dir": "topics/admin/tutorials/troubleshooting", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "admin/troubleshooting", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "assets/images/gat.png", + "mod_date": "2024-06-25", + "pageviews": 5726879, + "pub_date": "2019-01-28", + "short_id": "S00026", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "maintenance", + "supported_servers": [], + "symlink": null, + "title": "Galaxy Troubleshooting", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "troubleshooting", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/troubleshooting/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/troubleshooting/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/troubleshooting/slides.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/beacon/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "editing": [ + "shiltemann" + ], + "funding": [ + "CINECA-Project" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "funder": true, + "funder_name": "Horizon 2020", + "funding_id": "825775", + "funding_system": "cordis", + "id": "CINECA-Project", + "joined": "2023-03", + "members": [ + "shiltemann" + ], + "name": "Common Infrastructure for National Cohorts in Europe, Canada, and Africa", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/CINECA-Project/", + "short_name": "CINECA", + "url": "https://training.galaxyproject.org/training-material/api/funders/CINECA-Project.json" + } + ], + "dir": "topics/admin/tutorials/beacon", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/beacon", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "While deprecated, Beacon v1 is easy to deploy", + "It can also tick some boxes for grants!" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-04-21", + "objectives": [ + "Deploy a Beacon" + ], + "pageviews": 103, + "pub_date": "2023-04-16", + "questions": [ + "What is a Beacon?", + "How do I deploy it?", + "Is v1 the same as v2?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00325", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "tags": [ + "ga4gh", + "beacon", + "git-gat" + ], + "time_estimation": "30m", + "title": "Deploying a Beacon v1 in Galaxy", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "beacon", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/beacon/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/beacon/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/beacon/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 194, + "visitors": 90, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/apptainer/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "no", + "email": "torfinn.nome@gmail.com", + "id": "torfinnnome", + "joined": "2021-01", + "name": "Torfinn Nome", + "orcid": "0000-0003-1659-132X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/torfinnnome/", + "twitter": "torfinnnome", + "url": "https://training.galaxyproject.org/training-material/api/contributors/torfinnnome.json" + }, + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "elixir_node": "de", + "id": "bernt-matthias", + "joined": "2017-09", + "name": "Matthias Bernt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bernt-matthias.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe", + "deNBI" + ], + "elixir_node": "de", + "email": "kuntzm@informatik.uni-freiburg.de", + "id": "mira-miracoli", + "joined": "2022-07", + "matrix": "mira-miracoli:matrix.org", + "name": "Mira Kuntz", + "orcid": "0000-0003-4302-5091", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mira-miracoli/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mira-miracoli.json" + } + ], + "dir": "topics/admin/tutorials/apptainer", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/apptainer", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Configure your Galaxy to use Apptainer and BioContainers for running jobs" + ], + "pageviews": 880, + "pub_date": "2021-01-08", + "questions": null, + "recordings": [ + { + "captioners": [ + "gallardoalba", + "slugger70" + ], + "date": "2021-06-28", + "galaxy_version": "21.05", + "length": "43M", + "speakers": [ + "slugger70" + ], + "youtube_id": "q6Dt7j713tI" + }, + { + "captioners": [ + "hexylena", + "cat-bro" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "16M", + "speakers": [ + "hexylena" + ], + "youtube_id": "airzg4-ETEs" + } + ], + "redirect_from": [ + "/topics/admin/tutorials/singularity/tutorial", + "/short/admin/apptainer", + "/short/T00323" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00323", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "jobs", + "supported_servers": [], + "symlink": null, + "tags": [ + "jobs", + "ansible", + "git-gat" + ], + "time_estimation": "1h", + "title": "Use Apptainer containers for running Galaxy jobs", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "apptainer", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/apptainer/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/apptainer/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/apptainer/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 151, + "visitors": 679, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/k8s-managing-galaxy/tutorial.json", + "contributors": [ + { + "id": "nuwang", + "joined": "2019-06", + "name": "Nuwan Goonasekera", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nuwang/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nuwang.json" + }, + { + "id": "afgane", + "joined": "2018-06", + "name": "Enis Afgan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/afgane/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/afgane.json" + }, + { + "id": "almahmoud", + "joined": "2019-06", + "name": "Alex Mahmoud", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/almahmoud/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/almahmoud.json" + }, + { + "id": "pcm32", + "joined": "2019-06", + "name": "Pablo Moreno", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pcm32/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pcm32.json" + }, + { + "email": "jdavcs@gmail.com", + "id": "jdavcs", + "joined": "2019-06", + "name": "John Davis", + "orcid": "0000-0002-1363-1245", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jdavcs/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jdavcs.json" + } + ], + "dir": "topics/admin/tutorials/k8s-managing-galaxy", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/k8s-managing-galaxy", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Modifying configuration is a matter of having some local config files that are mapped in their entirety into the Galaxy container.", + "Scaling is a simple matter of changing the number of replicas.", + "K8S enables zero downtime upgrades and sets the stage for continuous delivery" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2022-10-18", + "objectives": [ + "Have an understanding of how to modify Galaxy configuration", + "Be able to upgrade and scale galaxy" + ], + "pageviews": 837, + "priority": 1, + "pub_date": "2019-07-02", + "questions": [ + "How do I change Galaxy configs?", + "How can I upgrade to a new version?", + "How do I rollback my changes?", + "How do I scale Galaxy?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "k8s-deploying-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00014", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "cloud", + "supported_servers": [], + "symlink": null, + "tags": [ + "kubernetes" + ], + "time_estimation": "30m", + "title": "Managing Galaxy on Kubernetes", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "k8s-managing-galaxy", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/k8s-managing-galaxy/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/k8s-managing-galaxy/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/k8s-managing-galaxy/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 140, + "visitors": 549 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/sentry/tutorial.json", + "contributions": { + "authorship": [ + "mvdbeek" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/sentry", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/sentry", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-18", + "objectives": [ + "Have an understanding of Sentry", + "Install Sentry", + "Configure Galaxy and Pulsar to send errors to Sentry", + "Monitor performance with Sentry" + ], + "pageviews": 173, + "pub_date": "2023-04-19", + "questions": null, + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy", + "pulsar" + ], + "type": "internal" + } + ], + "short_id": "T00330", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "monitoring", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "git-gat" + ], + "time_estimation": "1h", + "title": "Monitoring Galaxy and Pulsar with Sentry", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sentry", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/sentry/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/sentry/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/sentry/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 97, + "visitors": 137, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tus/tutorial.json", + "contributors": [ + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + } + ], + "dir": "topics/admin/tutorials/tus", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/tus", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use TUS to make uploads more efficient, especially for large uploads over unstable connections." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Setup TUSd", + "Configure Galaxy to use it to process uploads" + ], + "pageviews": 1022, + "pub_date": "2022-03-01", + "questions": null, + "recordings": [ + { + "captioners": [ + "hexylena" + ], + "date": "2022-03-11", + "galaxy_version": "22.01", + "length": "7M", + "speakers": [ + "hexylena" + ], + "youtube_id": "v5sbIqF_0qo" + } + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00024", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "time_estimation": "30M", + "title": "Performant Uploads with TUS", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tus", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/tus/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tus/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tus/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 331, + "visitors": 679, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cvmfs-manual/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/cvmfs-manual", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/cvmfs-manual", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-23", + "objectives": [ + "Have an understanding of what CVMFS is and how it works", + "Install and configure the CVMFS client on a linux machine and mount the Galaxy reference data repository", + "Configure your Galaxy to use these reference genomes and indices" + ], + "pageviews": 424, + "pub_date": "2020-06-17", + "questions": null, + "short_id": "T00004", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "data", + "supported_servers": [], + "symlink": null, + "time_estimation": "1h", + "title": "Reference Data with CVMFS without Ansible", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "cvmfs-manual", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/cvmfs-manual/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cvmfs-manual/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/cvmfs-manual/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 134, + "visitors": 299, + "zenodo_link": "" + }, + { + "abbreviations": { + "FTP": "File Transfer Protocol", + "NAT": "Network Address Translation" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ftp/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + } + ], + "dir": "topics/admin/tutorials/ftp", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/ftp", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "FTP is easy to deploy thanks to the role", + "Users can be authenticated with their Galaxy credentials simplifying the user management process significantly" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "objectives": [ + "Configure galaxy and install a FTP server.", + "Use an Ansible playbook for this." + ], + "pageviews": 1451, + "pub_date": "2021-06-18", + "questions": [ + "How can I setup FTP to be easy for my users?", + "Can I authenticate ftp users with Galaxy credentials?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00008", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "tags": [ + "data", + "git-gat" + ], + "time_estimation": "1h", + "title": "Enable upload via FTP", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ftp", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/ftp/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ftp/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/ftp/tutorial.json" + }, + "version": 23, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 100, + "visitors": 1020, + "zenodo_link": "" + }, + { + "abbreviations": { + "CI": "Continuous Integration" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/jenkins/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/jenkins", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/jenkins", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Automate all the things!", + "Especially regular tasks you might forget to do", + "Automatically run Ansible to ensure machines are in compliance" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2022-10-18", + "objectives": [ + "Setup Jenkins", + "Setup a simple job", + "Automate running of the Galaxy playbook", + "Secure Jenkins" + ], + "pageviews": 16177, + "pub_date": "2019-08-06", + "questions": [ + "What sort of tasks should be automated?", + "What are my options for automation?", + "How can I automate repetitive tasks?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00011", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "automation" + ], + "time_estimation": "1h", + "title": "Automation with Jenkins", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "jenkins", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/jenkins/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/jenkins/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/jenkins/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 39, + "visitors": 8129 + }, + { + "abbreviations": { + "TIaaS": "Training Infrastructure as a Service" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tiaas/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/admin/tutorials/tiaas", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/tiaas", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "TIaaS is an additional service you can deploy which can help you provide a better service to your users" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Setup TIaaS", + "Request and manage trainings", + "Join a training" + ], + "pageviews": 600, + "pub_date": "2020-02-12", + "questions": [ + "How to deploy EU's TIaaS" + ], + "recordings": [ + { + "captioners": [ + "hexylena", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "24M", + "speakers": [ + "hexylena" + ], + "youtube_id": "tz0ZbK_8Vcc" + } + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy", + "connect-to-compute-cluster", + "job-destinations", + "pulsar" + ], + "type": "internal" + } + ], + "short_id": "T00022", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "training", + "jobs", + "git-gat" + ], + "time_estimation": "30m", + "title": "Training Infrastructure as a Service (TIaaS)", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tiaas", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/tiaas/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tiaas/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/tiaas/tutorial.json" + }, + "version": 37, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 210, + "visitors": 437, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/customization/tutorial.json", + "contributions": { + "authorship": [ + "ElectronicBlueberry" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "id": "ElectronicBlueberry", + "joined": "2023-04", + "name": "Laila Los", + "orcid": "0000-0002-2362-9720", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ElectronicBlueberry/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ElectronicBlueberry.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/customization", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/customization", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Set your Galaxy instance apart from others", + "Communicate what your Galaxy instance is about", + "Offer users more customization options using themes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "objectives": [ + "Set a brand text for your Galaxy instance", + "Add a custom welcome page to Galaxy", + "Activate and customize themes" + ], + "pageviews": 421, + "pub_date": "2023-04-16", + "questions": [ + "How do I change Galaxy's front page?", + "How do I set a custom brand text?", + "How can I configure theming?" + ], + "requirements": [], + "short_id": "T00327", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "maintenance", + "supported_servers": [], + "symlink": null, + "tags": [ + "git-gat" + ], + "time_estimation": "45m", + "title": "Customizing the look of Galaxy", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "customization", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/customization/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/customization/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/customization/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 341, + "visitors": 334 + }, + { + "abbreviations": { + "TPV": "Total Perspective Vortex" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/job-destinations/tutorial.json", + "contributions": { + "authorship": [ + "natefoo", + "bgruening", + "nuwang", + "mira-miracoli" + ], + "editing": [ + "hexylena", + "afgane" + ], + "funding": [], + "testing": [ + "cat-bro", + "edmontosaurus" + ] + }, + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "id": "nuwang", + "joined": "2019-06", + "name": "Nuwan Goonasekera", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nuwang/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nuwang.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe", + "deNBI" + ], + "elixir_node": "de", + "email": "kuntzm@informatik.uni-freiburg.de", + "id": "mira-miracoli", + "joined": "2022-07", + "matrix": "mira-miracoli:matrix.org", + "name": "Mira Kuntz", + "orcid": "0000-0003-4302-5091", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mira-miracoli/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mira-miracoli.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "afgane", + "joined": "2018-06", + "name": "Enis Afgan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/afgane/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/afgane.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "id": "cat-bro", + "joined": "2019-12", + "matrix": "cat-bro:matrix.org", + "name": "Catherine Bromhead", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cat-bro/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cat-bro.json" + }, + { + "id": "edmontosaurus", + "joined": "2023-11", + "matrix": "edmontosaurus:matrix.org", + "name": "Edwin den Haas", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/edmontosaurus/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/edmontosaurus.json" + } + ], + "dir": "topics/admin/tutorials/job-destinations", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/job-destinations", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Dynamic Tool Destinations are a convenient way to map", + "Job resource parameters can allow you to give your users control over job resource requirements, if they are knowledgeable about the tools and compute resources available to them." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Know how to map tools to job destinations", + "Be able to use the dynamic job runner to make arbitrary destination mappings", + "Understand the job resource selector config and dynamic rule creation", + "The various ways in which tools can be mapped to destinations, both statically and dynamically", + "How to write a dynamic tool destination (DTD)", + "How to write a dynamic python function destination", + "How to use the job resource parameter selection feature" + ], + "pageviews": 2197, + "pub_date": "2021-01-17", + "questions": [ + "How can I configure job dependent resources, like cores, memory for my DRM?", + "How can I map jobs to resources and destinations" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "31M", + "speakers": [ + "hexylena" + ], + "youtube_id": "qX8GjTJwnAk" + } + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "connect-to-compute-cluster" + ], + "type": "internal" + } + ], + "short_id": "T00012", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "jobs", + "supported_servers": [], + "symlink": null, + "tags": [ + "jobs", + "git-gat" + ], + "time_estimation": "2h", + "title": "Mapping Jobs to Destinations using TPV", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "job-destinations", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/job-destinations/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/job-destinations/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/job-destinations/tutorial.json" + }, + "version": 36, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 187, + "visitors": 1329 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/reports/tutorial.json", + "contributors": [ + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/reports", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/reports", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy supports pluggable monitoring extensions.", + "The Reports webapp is one option to monitor your system." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Setup and start the Galaxy reports app." + ], + "pageviews": 564, + "pub_date": "2019-01-31", + "questions": [ + "How to monitor a Galaxy service with the Reports application?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00018", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "monitoring", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "monitoring", + "git-gat", + "broken" + ], + "time_estimation": "30m", + "title": "Galaxy Monitoring with Reports", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "reports", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/reports/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/reports/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/reports/tutorial.json" + }, + "version": 41, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 187, + "visitors": 420, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/stop-worrying-love-systemd/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "editing": [ + "natefoo" + ], + "testing": [ + "natefoo" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + } + ], + "dir": "topics/admin/tutorials/stop-worrying-love-systemd", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/stop-worrying-love-systemd", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "systemd units are actually kinda nice", + "In most versions you even can limit memory, cpu usage of process groups. In recent versions, disk usage!", + "No more PID files! Cgroups mean the processes are actually cleaned up!", + "journalctl makes accessing logs incredibly easy; view multiple logs simultaneously, properly interlaced.", + "journalctl-vacuum replaces onerous cleaning processes and even can clean by relative timestamps" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-09-28", + "objectives": [ + "Have an objective understanding of systemd allowing the user to obtain the benefits of this new system", + "Realise the joys of journald, and how it makes logging easier and simpler" + ], + "pageviews": 698, + "pub_date": "2022-07-06", + "questions": [ + "Unix is supposed to be about FILES\u2122", + "What is this systemd stuff?", + "Why should I love it?", + "I have so many worries!" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00020", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "features", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible", + "systemd" + ], + "time_estimation": "30m", + "title": "How I learned to stop worrying and love the systemd", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "stop-worrying-love-systemd", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/stop-worrying-love-systemd/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/stop-worrying-love-systemd/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/stop-worrying-love-systemd/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 35, + "visitors": 610 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/customization-manual/tutorial.json", + "contributions": { + "authorship": [ + "ElectronicBlueberry" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "id": "ElectronicBlueberry", + "joined": "2023-04", + "name": "Laila Los", + "orcid": "0000-0002-2362-9720", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ElectronicBlueberry/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ElectronicBlueberry.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/customization-manual", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/customization-manual", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Set your Galaxy instance apart from others", + "Communicate what your Galaxy instance is about", + "Offer users more customization options using themes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-04-16", + "objectives": [ + "Set a brand text for your Galaxy instance", + "Add a custom welcome page to Galaxy", + "Activate and customize themes" + ], + "pageviews": 95, + "pub_date": "2023-04-16", + "questions": [ + "How do I change Galaxy's front page?", + "How do I set a custom brand text?", + "How can I configure theming?" + ], + "requirements": [], + "short_id": "T00328", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "maintenance", + "supported_servers": [], + "symlink": null, + "time_estimation": "45m", + "title": "Customizing the look of Galaxy (Manual)", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "customization-manual", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/customization-manual/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/customization-manual/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/customization-manual/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 221, + "visitors": 79 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/wireguard/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/wireguard", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/wireguard", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Wireguard is incredibly easy to deploy, and very secure." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-04-16", + "objectives": [ + "Setup a wireguard mesh across a few nodes" + ], + "pageviews": 1103, + "pub_date": "2022-09-21", + "questions": [ + "What is wireguard?", + "When is it useful?", + "Is it right for me?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible" + ], + "type": "internal" + }, + { + "title": "Three or more VMs (they can be tiny, 1 CPU, <1GB RAM)", + "type": "none" + } + ], + "short_id": "T00026", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "cloud", + "supported_servers": [], + "symlink": null, + "tags": [ + "wireguard", + "networking" + ], + "time_estimation": "60m", + "title": "Deploying Wireguard for private mesh networking", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "wireguard", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/wireguard/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/wireguard/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/wireguard/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 22, + "visitors": 951, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/database-schema/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "hrhotz@googlemail.com", + "fediverse": "https://genomic.social/@hrhotz", + "fediverse_flavor": "mastodon", + "id": "hrhotz", + "joined": "2017-09", + "linkedin": "hans-rudolf-hotz-542b31", + "location": { + "country": "CH", + "lat": 47.57, + "lon": 7.6 + }, + "matrix": "hrhotz:matrix.org", + "name": "Hans-Rudolf Hotz", + "orcid": "0000-0002-2799-424X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hrhotz/", + "twitter": "hrhotz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hrhotz.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/admin/tutorials/database-schema", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/database-schema", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Be careful, when you interact with the Galaxy database. And make sure you always have a backup!" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn some of the design concepts of the Galaxy database", + "Extract information from the Galaxy database", + "Get to know SchemaSpy" + ], + "pageviews": 4622, + "pub_date": "2016-07-20", + "questions": [ + "Running a production Galaxy server, you some times end up in with a situation, where you manually need to interact with the Galaxy database: how do you do that", + "How to extract usage information, which can not be gathered using the given report tools", + "How to move from MySQL to PostgreSQL", + "Is there ever a need to manually change the contents of a table" + ], + "short_id": "T00006", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "2h", + "title": "Galaxy Database schema", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "database-schema", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/database-schema/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/database-schema/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/database-schema/tutorial.json" + }, + "version": 22, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 65, + "visitors": 2728, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/wireguard-headscale/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "editing": [ + "natefoo" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "nate@bx.psu.edu", + "id": "natefoo", + "joined": "2017-12", + "matrix": "natefoo:matrix.org", + "name": "Nate Coraor", + "orcid": "0000-0001-8083-2963", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/natefoo/", + "twitter": "natefoo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/natefoo.json" + } + ], + "dir": "topics/admin/tutorials/wireguard-headscale", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/wireguard-headscale", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Tailscale is a fantastic bit of software that Just Works\u2122", + "We use headscale, an open source reimplementation of Tailscale's control server because it's easy to use in training", + "But if you can afford Tailscale, just use that.", + "There is a FOSS plan, go check it out!" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-03-17", + "objectives": [ + "Setup a tailnet across a few nodes" + ], + "pageviews": 2645, + "pub_date": "2022-09-21", + "questions": [ + "What is Tailscale?", + "When is it useful?", + "Is it right for me?" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible" + ], + "type": "internal" + }, + { + "title": "Three or more VMs (they can be tiny, 1 CPU, <1GB RAM)", + "type": "none" + } + ], + "short_id": "T00027", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "cloud", + "supported_servers": [], + "symlink": null, + "tags": [ + "wireguard", + "networking" + ], + "time_estimation": "60m", + "title": "Deploying Tailscale/Headscale for private mesh networking", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "wireguard-headscale", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/wireguard-headscale/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/wireguard-headscale/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/wireguard-headscale/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 29, + "visitors": 1972, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/upgrading/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + } + ], + "dir": "topics/admin/tutorials/upgrading", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/upgrading", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Using Ansible to keep your server up to date is the best practice method", + "Always backup the database before you do an upgrade in case anything goes wrong", + "Re-run the playbook from time to time to keep your Galaxy server up to date with any minor changes and patches" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand how to find the current Galaxy server version you are using", + "How to find the latest release version", + "How to backup the Galaxy server database and why it's a good idea", + "How to upgrade the Galaxy server to a new version" + ], + "pageviews": 885, + "pub_date": "2021-06-08", + "questions": [ + "How can I find which version of Galaxy I'm running?", + "How do I upgrade the Galaxy server to the latest version?" + ], + "recordings": [ + { + "captioners": [ + "slugger70", + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "36M", + "speakers": [ + "slugger70" + ], + "youtube_id": "OnL47MvXjoo" + } + ], + "redirect_from": [ + "/topics/admin/tutorials/upgrading/slides", + "/short/admin/upgrading", + "/short/T00025" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "ansible-galaxy" + ], + "type": "internal" + } + ], + "short_id": "T00025", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "maintenance", + "supported_servers": [], + "symlink": null, + "tags": [ + "ansible" + ], + "time_estimation": "1h", + "title": "Upgrading Galaxy", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "upgrading", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/upgrading/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/upgrading/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/upgrading/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 174, + "visitors": 539, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/k8s-deploying-galaxy/tutorial.json", + "contributors": [ + { + "id": "pcm32", + "joined": "2019-06", + "name": "Pablo Moreno", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pcm32/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pcm32.json" + }, + { + "id": "afgane", + "joined": "2018-06", + "name": "Enis Afgan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/afgane/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/afgane.json" + }, + { + "id": "nuwang", + "joined": "2019-06", + "name": "Nuwan Goonasekera", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nuwang/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nuwang.json" + }, + { + "id": "almahmoud", + "joined": "2019-06", + "name": "Alex Mahmoud", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/almahmoud/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/almahmoud.json" + }, + { + "email": "jdavcs@gmail.com", + "id": "jdavcs", + "joined": "2019-06", + "name": "John Davis", + "orcid": "0000-0002-1363-1245", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jdavcs/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jdavcs.json" + } + ], + "dir": "topics/admin/tutorials/k8s-deploying-galaxy", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "admin", + "tutorials": [ + "k8s-managing-galaxy" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "admin/k8s-deploying-galaxy", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Stock deployment of production Galaxy components on Kubernetes is simple", + "Helm chart allows easy configuration changes" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-30", + "objectives": [ + "Have an understanding of how to use Galaxy's Helm chart", + "Be able to use Helm to install different flavors of Galaxy for different purposes" + ], + "pageviews": 2304, + "priority": 2, + "pub_date": "2019-07-02", + "questions": [ + "How do I deploy Galaxy on Kubernetes using Helm?", + "How can I create a simple replica of usegalaxy.org?" + ], + "short_id": "T00013", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "cloud", + "supported_servers": [], + "symlink": null, + "tags": [ + "kubernetes" + ], + "time_estimation": "30m", + "title": "Galaxy Installation on Kubernetes", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "k8s-deploying-galaxy", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/k8s-deploying-galaxy/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/k8s-deploying-galaxy/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/k8s-deploying-galaxy/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 146, + "visitors": 1311 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/terraform/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/admin/tutorials/terraform", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "admin/terraform", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Terraform lets you develop and implement infrastructure-as-code within your organisation", + "It can drastically simplify management of large numbers of VMs" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2022-10-18", + "objectives": [ + "Learn Terraform basics", + "Launch a VM with Terraform", + "Launch and tear down a cluster with Terraform" + ], + "pageviews": 5755673, + "priority": 3, + "pub_date": "2018-10-27", + "questions": [ + "What is Terraform?", + "In which situations is it good/bad?", + "How to use it for managing your VM cluster" + ], + "short_id": "T00021", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "cloud", + "supported_servers": [], + "symlink": null, + "tags": [ + "terraform", + "deploying", + "cloud" + ], + "time_estimation": "60m", + "title": "Deploying a compute cluster in OpenStack via Terraform", + "tools": [], + "topic_name": "admin", + "topic_name_human": "Galaxy Server administration", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "terraform", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/admin/tutorials/terraform/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/terraform/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/admin/tutorials/terraform/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 205, + "visitors": 2078824, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/welcome-bioimageio/tutorial.json", + "contributors": [ + { + "bio": "Post-doctoral researcher at UC3M", + "email": "cafuster@pa.uc3m.es", + "id": "cfusterbarcelo", + "joined": "2023-03", + "linkedin": "caterinafusterb", + "name": "Caterina Fuster-Barcel\u00f3", + "orcid": "0000-0002-4784-6957", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cfusterbarcelo/", + "twitter": "cfusterbarcelo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cfusterbarcelo.json" + } + ], + "dir": "topics/ai4life/tutorials/welcome-bioimageio", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "ai4life/welcome-bioimageio", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides_ai4life", + "license": "CC-BY-4.0", + "logo": "topics/ai4life/images/AI4Life-logo_giraffe-nodes.png", + "mod_date": "2023-05-18", + "objectives": [ + "Overview", + "Content", + "Models" + ], + "pageviews": 1651106, + "pub_date": "2023-05-11", + "questions": [ + "What can be found in the BioImage Model Zoo?", + "Why is it worth trying?", + "How does it work?" + ], + "short_id": "S00106", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "bioimageio", + "image analysis" + ], + "time_estimation": "5m", + "title": "Welcome to the BioImage Model Zoo", + "tools": [], + "topic_name": "ai4life", + "topic_name_human": "Image analysis using Deep Learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "welcome-bioimageio", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ai4life/tutorials/welcome-bioimageio/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/welcome-bioimageio/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/welcome-bioimageio/slides.json" + }, + "version": 3, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 143, + "visitors": 712068 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/getting-started/tutorial.json", + "contributors": [ + { + "bio": "Post-doctoral researcher at UC3M", + "email": "cafuster@pa.uc3m.es", + "id": "cfusterbarcelo", + "joined": "2023-03", + "linkedin": "caterinafusterb", + "name": "Caterina Fuster-Barcel\u00f3", + "orcid": "0000-0002-4784-6957", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cfusterbarcelo/", + "twitter": "cfusterbarcelo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cfusterbarcelo.json" + } + ], + "dir": "topics/ai4life/tutorials/getting-started", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "ai4life/getting-started", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides_ai4life", + "license": "CC-BY-4.0", + "logo": "topics/ai4life/images/AI4Life-logo_giraffe-nodes.png", + "mod_date": "2023-05-24", + "objectives": [ + "Share what BioImage Model Zoo is.", + "Provide a general view of what can be done with BioImage Model Zoo.", + "Explain who can and should contribute to the BioImage Model Zoo." + ], + "pageviews": 1754502, + "pub_date": "2023-04-18", + "questions": [ + "What is BioImage Model Zoo?", + "Who participates in the BioImage Model Zoo?", + "Who can participate in the BioImage Model Zoo?" + ], + "short_id": "S00105", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "bioimageio", + "image analysis" + ], + "time_estimation": "5m", + "title": "BioImage Model Zoo: Advanced models in one-click", + "tools": [], + "topic_name": "ai4life", + "topic_name_human": "Image analysis using Deep Learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "getting-started", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ai4life/tutorials/getting-started/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/getting-started/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/getting-started/slides.json" + }, + "version": 4, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 143, + "visitors": 759114 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/contribute-materials/tutorial.json", + "contributors": [ + { + "bio": "Post-doctoral researcher at UC3M", + "email": "cafuster@pa.uc3m.es", + "id": "cfusterbarcelo", + "joined": "2023-03", + "linkedin": "caterinafusterb", + "name": "Caterina Fuster-Barcel\u00f3", + "orcid": "0000-0002-4784-6957", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cfusterbarcelo/", + "twitter": "cfusterbarcelo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cfusterbarcelo.json" + } + ], + "dir": "topics/ai4life/tutorials/contribute-materials", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "ai4life/contribute-materials", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides_ai4life", + "license": "CC-BY-4.0", + "logo": "topics/ai4life/images/AI4Life-logo_giraffe-nodes.png", + "mod_date": "2023-05-24", + "objectives": [ + "Get to know how to contribute with models to the BioImage.IO" + ], + "pageviews": 1618730, + "pub_date": "2023-05-18", + "questions": [ + "What is contained in a BioImage.IO model?", + "Which are the requirements to contribute?", + "How to contribute?" + ], + "short_id": "S00107", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "bioimageio", + "image analysis" + ], + "time_estimation": "10m", + "title": "Contribute to the BioImage.IO models", + "tools": [], + "topic_name": "ai4life", + "topic_name_human": "Image analysis using Deep Learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "contribute-materials", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ai4life/tutorials/contribute-materials/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/contribute-materials/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ai4life/tutorials/contribute-materials/slides.json" + }, + "version": 3, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 143, + "visitors": 697705 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastq_paired_end_interlacer", + "owner": "devteam", + "revisions": "2ccb8dcabddc", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "velvet", + "owner": "devteam", + "revisions": "5da9a0e2fb2d", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "velvet", + "owner": "devteam", + "revisions": "920677cd220f", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "velvet", + "owner": "devteam", + "revisions": "5da9a0e2fb2d", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "velvet", + "owner": "devteam", + "revisions": "920677cd220f", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "b2f1f75d49c4", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "59db8ea8c845", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastq_paired_end_interlacer\n owner: devteam\n revisions: 2ccb8dcabddc\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: velvet\n owner: devteam\n revisions: 5da9a0e2fb2d\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: velvet\n owner: devteam\n revisions: 920677cd220f\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: velvet\n owner: devteam\n revisions: 5da9a0e2fb2d\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: velvet\n owner: devteam\n revisions: 920677cd220f\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: b2f1f75d49c4\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 59db8ea8c845\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/general-introduction/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + } + ], + "dir": "topics/assembly/tutorials/general-introduction", + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "De-novo assembly", + "Formatting", + "Sequence assembly validation", + "Sequence composition calculation", + "Validation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/general-introduction", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We assembled some Illumina fastq reads into contigs using a short read assembler called Velvet", + "We showed what effect one of the key assembly parameters, the k-mer size, has on the assembly", + "It looks as though there are some exploitable patterns in the metric data vs the k-mer size." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "assemble some paired end reads using Velvet", + "examine the output of the assembly." + ], + "pageviews": 5773889, + "pub_date": "2017-05-23", + "questions": [ + "How do we perform a very basic genome assembly from short read data?" + ], + "short_id": "T00034", + "short_tools": [ + "velvetg", + "multiqc", + "quast", + "fastqc", + "velveth", + "fastq_paired_end_interlacer" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "shiltemann", + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "25M", + "speakers": [ + "slugger70" + ], + "youtube_id": "-EX_G1griZE" + } + ], + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "30m", + "title": "An Introduction to Genome Assembly", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velvetg/1.2.10.1", + "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velvetg/1.2.10.2", + "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velveth/1.2.10.1", + "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velveth/1.2.10.3", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "general-introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/general-introduction/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/general-introduction/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/general-introduction/tutorial.json" + }, + "version": 28, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 317, + "visitors": 2091066, + "workflows": [ + { + "creators": [], + "description": "tutorial", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmutant_R1.fastq\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmutant_R2.fastq\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwildtype.fna\"]\n 3[label=\"FastQC\"]\n 0 -> 3 [label=\"output\"]\n k22a51e6e2e5f4415a127e0b1c179a1b1[color=lightseagreen,label=\"Output\\nfastqc_html\"]\n 3 -> k22a51e6e2e5f4415a127e0b1c179a1b1\n k51ec8c05eb47435991200eca1a6d5c2f[color=lightseagreen,label=\"Output\\nfastqc_txt\"]\n 3 -> k51ec8c05eb47435991200eca1a6d5c2f\n 4[label=\"FastQC\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"FASTQ interlacer\"]\n 0 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n k225edf5f3b904f84a38a5c786000a3fc[color=lightseagreen,label=\"Output\\noutput_pairs\"]\n 5 -> k225edf5f3b904f84a38a5c786000a3fc\n kdae90093ae964bb2824dc92b61585096[color=lightseagreen,label=\"Output\\noutput_singles\"]\n 5 -> kdae90093ae964bb2824dc92b61585096\n 6[label=\"MultiQC\"]\n 3 -> 6 [label=\"text_file\"]\n 4 -> 6 [label=\"text_file\"]\n k85e3704a859d4657b3d79b67e4981d21[color=lightseagreen,label=\"Output\\nmultiqc_stats\"]\n 6 -> k85e3704a859d4657b3d79b67e4981d21\n kfab7e06a604e4432b0edb63157a8643b[color=lightseagreen,label=\"Output\\nmultiqc_report\"]\n 6 -> kfab7e06a604e4432b0edb63157a8643b\n 7[label=\"velveth\"]\n 5 -> 7 [label=\"outfile_pairs\"]\n k607a214d91374e739b73954c79678937[color=lightseagreen,label=\"Output\\nvelveth_out\"]\n 7 -> k607a214d91374e739b73954c79678937\n 8[label=\"velvetg\"]\n 7 -> 8 [label=\"out_file1\"]\n kb0cf3779619942c9963fa733559f90bb[color=lightseagreen,label=\"Output\\nvelvet_contigs\"]\n 8 -> kb0cf3779619942c9963fa733559f90bb\n k54926701ccae4143b649b7e08e1c6a8e[color=lightseagreen,label=\"Output\\nvelvet_stats\"]\n 8 -> k54926701ccae4143b649b7e08e1c6a8e\n 9[label=\"Quast\"]\n 2 -> 9 [label=\"output\"]\n 8 -> 9 [label=\"contigs\"]\n k0babe9594d6348389e184526b3dd0db5[color=lightseagreen,label=\"Output\\nquast_report_html\"]\n 9 -> k0babe9594d6348389e184526b3dd0db5\n kf41c43c4763c42bcb36e9ea76e7752c2[color=lightseagreen,label=\"Output\\nquast_report_pdf\"]\n 9 -> kf41c43c4763c42bcb36e9ea76e7752c2\n}", + "history": [ + { + "hash": "b435b09a401e2f8678827dafd0e94ee51a2ff804", + "message": "updated test for general-introduction, added test for debruijn-graph-assembly using planemo https://github.com/galaxyproject/planemo/pull/1028", + "num": 6, + "short_hash": "b435b09a4", + "unix": "1595663711" + }, + { + "hash": "0f6d81078be383a1721da85cedfbfd4428156d6e", + "message": "proper version", + "num": 5, + "short_hash": "0f6d81078", + "unix": "1582226394" + }, + { + "hash": "8c24dc774a9e119dc6135bdfe4ba2bddf5af97c3", + "message": "intro to assembly workflow updated", + "num": 4, + "short_hash": "8c24dc774", + "unix": "1581096563" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "4d69dccf649f2fbabb140f1c3cd1bda33d632dd2", + "message": "add new testing files", + "num": 1, + "short_hash": "4d69dccf6", + "unix": "1526999040" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R1.fastq" + } + ], + "label": "mutant_R1.fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 241, + "top": 367.6875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ae357211-b491-4cab-98c2-11da142da53b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6082dd9a-a97c-4f0e-a6b6-cf6d93bc1a56" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R2.fastq" + } + ], + "label": "mutant_R2.fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 197, + "top": 523.203125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b614685b-d77b-4cb4-a1cf-745302274379", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9476849b-1cd4-41b8-91b9-72acbe6927e2" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome file" + } + ], + "label": "wildtype.fna", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 984, + "top": 651.75 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ee2978d6-4c6d-456d-9be0-66d0edb629e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6463d497-a5ad-4475-ae92-186dfe76c6bd" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nmutant_R1.fastq\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nmutant_R2.fastq\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nwildtype.fna\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"FastQC\"];\n 0 -->|output| 3;\n 22a51e6e-2e5f-4415-a127-e0b1c179a1b1[\"Output\\nfastqc_html\"];\n 3 --> 22a51e6e-2e5f-4415-a127-e0b1c179a1b1;\n style 22a51e6e-2e5f-4415-a127-e0b1c179a1b1 stroke:#2c3143,stroke-width:4px;\n 51ec8c05-eb47-4359-9120-0eca1a6d5c2f[\"Output\\nfastqc_txt\"];\n 3 --> 51ec8c05-eb47-4359-9120-0eca1a6d5c2f;\n style 51ec8c05-eb47-4359-9120-0eca1a6d5c2f stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC\"];\n 1 -->|output| 4;\n 5[\"FASTQ interlacer\"];\n 0 -->|output| 5;\n 1 -->|output| 5;\n 225edf5f-3b90-4f84-a38a-5c786000a3fc[\"Output\\noutput_pairs\"];\n 5 --> 225edf5f-3b90-4f84-a38a-5c786000a3fc;\n style 225edf5f-3b90-4f84-a38a-5c786000a3fc stroke:#2c3143,stroke-width:4px;\n dae90093-ae96-4bb2-824d-c92b61585096[\"Output\\noutput_singles\"];\n 5 --> dae90093-ae96-4bb2-824d-c92b61585096;\n style dae90093-ae96-4bb2-824d-c92b61585096 stroke:#2c3143,stroke-width:4px;\n 6[\"MultiQC\"];\n 3 -->|text_file| 6;\n 4 -->|text_file| 6;\n 85e3704a-859d-4657-b3d7-9b67e4981d21[\"Output\\nmultiqc_stats\"];\n 6 --> 85e3704a-859d-4657-b3d7-9b67e4981d21;\n style 85e3704a-859d-4657-b3d7-9b67e4981d21 stroke:#2c3143,stroke-width:4px;\n fab7e06a-604e-4432-b0ed-b63157a8643b[\"Output\\nmultiqc_report\"];\n 6 --> fab7e06a-604e-4432-b0ed-b63157a8643b;\n style fab7e06a-604e-4432-b0ed-b63157a8643b stroke:#2c3143,stroke-width:4px;\n 7[\"velveth\"];\n 5 -->|outfile_pairs| 7;\n 607a214d-9137-4e73-9b73-954c79678937[\"Output\\nvelveth_out\"];\n 7 --> 607a214d-9137-4e73-9b73-954c79678937;\n style 607a214d-9137-4e73-9b73-954c79678937 stroke:#2c3143,stroke-width:4px;\n 8[\"velvetg\"];\n 7 -->|out_file1| 8;\n b0cf3779-6199-42c9-963f-a733559f90bb[\"Output\\nvelvet_contigs\"];\n 8 --> b0cf3779-6199-42c9-963f-a733559f90bb;\n style b0cf3779-6199-42c9-963f-a733559f90bb stroke:#2c3143,stroke-width:4px;\n 54926701-ccae-4143-b649-b7e08e1c6a8e[\"Output\\nvelvet_stats\"];\n 8 --> 54926701-ccae-4143-b649-b7e08e1c6a8e;\n style 54926701-ccae-4143-b649-b7e08e1c6a8e stroke:#2c3143,stroke-width:4px;\n 9[\"Quast\"];\n 2 -->|output| 9;\n 8 -->|contigs| 9;\n 0babe959-4d63-4838-9e18-4526b3dd0db5[\"Output\\nquast_report_html\"];\n 9 --> 0babe959-4d63-4838-9e18-4526b3dd0db5;\n style 0babe959-4d63-4838-9e18-4526b3dd0db5 stroke:#2c3143,stroke-width:4px;\n f41c43c4-763c-42bc-b36e-9ea76e7752c2[\"Output\\nquast_report_pdf\"];\n 9 --> f41c43c4-763c-42bc-b36e-9ea76e7752c2;\n style f41c43c4-763c-42bc-b36e-9ea76e7752c2 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Intro to Genome Assembly", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R1.fastq" + } + ], + "label": "mutant_R1.fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 241, + "top": 367.6875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ae357211-b491-4cab-98c2-11da142da53b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6082dd9a-a97c-4f0e-a6b6-cf6d93bc1a56" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R2.fastq" + } + ], + "label": "mutant_R2.fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 197, + "top": 523.203125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b614685b-d77b-4cb4-a1cf-745302274379", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9476849b-1cd4-41b8-91b9-72acbe6927e2" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome file" + } + ], + "label": "wildtype.fna", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 984, + "top": 651.75 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ee2978d6-4c6d-456d-9be0-66d0edb629e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6463d497-a5ad-4475-ae92-186dfe76c6bd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 618.890625, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": null, + "type": "tool", + "uuid": "3a5a44fd-e16b-4069-82f3-2cd7eabada8b", + "workflow_outputs": [ + { + "label": "fastqc_html", + "output_name": "html_file", + "uuid": "22a51e6e-2e5f-4415-a127-e0b1c179a1b1" + }, + { + "label": "fastqc_txt", + "output_name": "text_file", + "uuid": "51ec8c05-eb47-4359-9120-0eca1a6d5c2f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "reads|input1_file": { + "id": 0, + "output_name": "output" + }, + "reads|input2_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FASTQ interlacer", + "outputs": [ + { + "name": "outfile_pairs", + "type": "input" + }, + { + "name": "outfile_singles", + "type": "input" + } + ], + "position": { + "left": 450, + "top": 825 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2ccb8dcabddc", + "name": "fastq_paired_end_interlacer", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"reads\": {\"input2_file\": {\"__class__\": \"ConnectedValue\"}, \"input1_file\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 0, \"reads_selector\": \"paired\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "af9b6352-c51e-4f0c-83f6-4f5b9272985a", + "workflow_outputs": [ + { + "label": "output_pairs", + "output_name": "outfile_pairs", + "uuid": "225edf5f-3b90-4f84-a38a-5c786000a3fc" + }, + { + "label": "output_singles", + "output_name": "outfile_singles", + "uuid": "dae90093-ae96-4bb2-824d-c92b61585096" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 6, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 3, + "output_name": "text_file" + }, + "results_0|software_cond|output_1|input": { + "id": 4, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 963.890625, + "top": 340.6875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"__page__\": null, \"title\": \"\", \"__rerun_remap_job_id__\": null, \"results\": [{\"__index__\": 0, \"software_cond\": {\"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}], \"__current_case__\": 8, \"software\": \"fastqc\"}}], \"saveLog\": \"false\"}", + "tool_version": null, + "type": "tool", + "uuid": "95440a74-31d3-4b9c-8c8f-4e91fd54cf01", + "workflow_outputs": [ + { + "label": "multiqc_stats", + "output_name": "stats", + "uuid": "85e3704a-859d-4657-b3d7-9b67e4981d21" + }, + { + "label": "multiqc_report", + "output_name": "html_report", + "uuid": "fab7e06a-604e-4432-b0ed-b63157a8643b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velveth/1.2.10.1", + "errors": null, + "id": 7, + "input_connections": { + "inputs_0|input": { + "id": 5, + "output_name": "outfile_pairs" + } + }, + "inputs": [], + "label": null, + "name": "velveth", + "outputs": [ + { + "name": "out_file1", + "type": "velvet" + } + ], + "position": { + "left": 763, + "top": 877 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velveth/1.2.10.1", + "tool_shed_repository": { + "changeset_revision": "5da9a0e2fb2d", + "name": "velvet", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"hash_length\": \"29\", \"__rerun_remap_job_id__\": null, \"strand_specific\": \"false\", \"inputs\": [{\"__index__\": 0, \"read_type\": \"-shortPaired\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"file_format\": \"-fastq\"}]}", + "tool_version": null, + "type": "tool", + "uuid": "f98f0453-b473-4407-82da-8348aff285dd", + "workflow_outputs": [ + { + "label": "velveth_out", + "output_name": "out_file1", + "uuid": "607a214d-9137-4e73-9b73-954c79678937" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velvetg/1.2.10.1", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 7, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "velvetg", + "outputs": [ + { + "name": "stats", + "type": "tabular" + }, + { + "name": "contigs", + "type": "fasta" + } + ], + "position": { + "left": 1018, + "top": 882 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velvetg/1.2.10.1", + "tool_shed_repository": { + "changeset_revision": "5da9a0e2fb2d", + "name": "velvet", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"last_graph\": {\"generate_graph\": \"no\", \"__current_case__\": 0}, \"generate_amos\": {\"afg\": \"no\", \"__current_case__\": 0}, \"reads\": {\"paired\": \"yes\", \"options\": {\"__current_case__\": 0, \"advanced\": \"no\"}, \"__current_case__\": 1, \"ins_length\": \"-1\"}, \"unused_reads\": {\"generate_unused\": \"no\", \"__current_case__\": 0}, \"coverage\": {\"cutoff\": \"none\", \"__current_case__\": 0}, \"expected\": {\"__current_case__\": 0, \"coverage\": \"none\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"read_trkg\": \"false\", \"contig_lgth\": {\"__current_case__\": 0, \"use_contig_lgth\": \"no\"}}", + "tool_version": null, + "type": "tool", + "uuid": "c34bb33c-0e8a-4698-a370-f8d8f96f0921", + "workflow_outputs": [ + { + "label": "velvet_contigs", + "output_name": "contigs", + "uuid": "b0cf3779-6199-42c9-963f-a733559f90bb" + }, + { + "label": "velvet_stats", + "output_name": "stats", + "uuid": "54926701-ccae-4143-b649-b7e08e1c6a8e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "assembly|ref|r": { + "id": 2, + "output_name": "output" + }, + "in|inputs": { + "id": 8, + "output_name": "contigs" + } + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "quast_tabular", + "type": "tabular" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_pdf", + "type": "pdf" + }, + { + "name": "log", + "type": "txt" + }, + { + "name": "mis_ass", + "type": "tabular" + }, + { + "name": "unalign", + "type": "tabular" + } + ], + "position": { + "left": 1390.5, + "top": 594.25 + }, + "post_job_actions": { + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionmis_ass": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "mis_ass" + }, + "HideDatasetActionquast_tabular": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "quast_tabular" + }, + "HideDatasetActionunalign": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "unalign" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "59db8ea8c845", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"scaffold_gap_max_size\": \"1000\", \"skip_unaligned_mis_contigs\": \"true\", \"assembly\": {\"ref\": {\"operons\": {\"__class__\": \"RuntimeValue\"}, \"r\": {\"__class__\": \"ConnectedValue\"}, \"use_ref\": \"true\", \"features\": {\"__class__\": \"RuntimeValue\"}, \"__current_case__\": 0}, \"orga_type\": \"\", \"type\": \"genome\", \"__current_case__\": 0}, \"circos\": \"false\", \"contig_thresholds\": \"0,1000\", \"__page__\": null, \"strict_NA\": \"false\", \"__rerun_remap_job_id__\": null, \"genes\": {\"rna_finding\": \"false\", \"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"conserved_genes_finding\": \"false\"}, \"unaligned_part_size\": \"500\", \"al\": {\"upper_bound_assembly\": \"false\", \"min_identity\": \"95.0\", \"ambiguity_score\": \"0.99\", \"ambiguity_usage\": \"one\", \"upper_bound_min_con\": \"2\", \"fragmented\": \"false\", \"fragmented_max_indent\": \"50\", \"use_all_alignments\": \"false\", \"min_alignment\": \"65\"}, \"extensive_mis_size\": \"1000\", \"large\": \"false\", \"in\": {\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 1, \"custom\": \"false\"}, \"k_mer\": {\"k_mer_stats\": \"\", \"__current_case__\": 1}, \"split_scaffolds\": \"false\", \"min_contig\": \"500\"}", + "tool_version": null, + "type": "tool", + "uuid": "80922e53-cb63-4bba-8fd6-d53e48b17327", + "workflow_outputs": [ + { + "label": "quast_report_html", + "output_name": "report_html", + "uuid": "0babe959-4d63-4838-9e18-4526b3dd0db5" + }, + { + "label": "quast_report_pdf", + "output_name": "report_pdf", + "uuid": "f41c43c4-763c-42bc-b36e-9ea76e7752c2" + } + ] + } + ], + "parent_id": "assembly/general-introduction", + "path": "topics/assembly/tutorials/general-introduction/workflows/assembly-general-introduction.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": true, + "title": "Intro to Genome Assembly", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-general-introduction/versions/assembly-general-introduction", + "tutorial_id": "general-introduction", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/general-introduction/workflows/assembly-general-introduction.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/general-introduction/workflows/assembly-general-introduction.html", + "version": 5, + "wfid": "assembly-general-introduction", + "wfname": "assembly-general-introduction", + "workflow": "assembly-general-introduction.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velvetg/1.2.10.1", + "toolshed.g2.bx.psu.edu/repos/devteam/velvet/velveth/1.2.10.1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy0" + ], + "workflowhub_id": "1192" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.582600" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "flye", + "owner": "bgruening", + "revisions": "291923e6f276", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "racon", + "owner": "bgruening", + "revisions": "78c533842eeb", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "ea8146ee148f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "0dbb995c7d35", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "c59d48774d03", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "genomescope", + "owner": "iuc", + "revisions": "01210c4e9144", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "revisions": "fc8804320156", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meryl", + "owner": "iuc", + "revisions": "29dabd8db6f2", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "be1d967337e4", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "a02b8b3f5a0c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: flye\n owner: bgruening\n revisions: 291923e6f276\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: racon\n owner: bgruening\n revisions: 78c533842eeb\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: ea8146ee148f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 0dbb995c7d35\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: c59d48774d03\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: genomescope\n owner: iuc\n revisions: 01210c4e9144\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: medaka_consensus_pipeline\n owner: iuc\n revisions: fc8804320156\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meryl\n owner: iuc\n revisions: 29dabd8db6f2\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: be1d967337e4\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: a02b8b3f5a0c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/largegenome/tutorial.json", + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + } + ], + "dir": "topics/assembly/tutorials/largegenome", + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence assembly validation", + "Sequence composition calculation", + "Pairwise sequence alignment", + "Sequence assembly visualisation", + "Transcriptome assembly", + "Cross-assembly", + "Validation", + "Genome assembly", + "Base-calling", + "Sequence assembly", + "Statistical calculation", + "Scaffolding", + "Sequence contamination filtering", + "De-novo assembly", + "Box-Whisker plot plotting", + "Scatter plot plotting", + "Mapping assembly", + "Variant calling" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/largegenome", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We can assemble long reads from plant or animal species into large contigs", + "These contigs can be polished with both long and short reads", + "We can assess the quality of this assembly with various tools" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Assemble a large genome from long reads", + "Polish the assembly", + "Assess the quality of the assembly" + ], + "pageviews": 4728, + "pub_date": "2023-03-06", + "questions": [ + "How can we assemble a large plant or animal genome?" + ], + "recordings": [ + { + "captioners": [ + "annasyme" + ], + "date": "2023-05-16", + "galaxy_version": "23.01", + "length": "25M", + "speakers": [ + "annasyme" + ], + "youtube_id": "BM70nvwWjOY" + } + ], + "short_id": "T00331", + "short_tools": [ + "barchart_gnuplot", + "nanoplot", + "fastp", + "multiqc", + "busco", + "racon", + "flye", + "quast", + "fasta-stats", + "fastqc", + "genomescope", + "meryl", + "minimap2", + "bandage_image", + "medaka_consensus_pipeline" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "assembly", + "polishing", + "nanopore", + "plants" + ], + "time_estimation": "2h", + "title": "Large genome assembly and polishing", + "tools": [ + "barchart_gnuplot", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "largegenome", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/largegenome/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/largegenome/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/largegenome/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 131, + "visitors": 3651, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": true, + "report": { + "markdown": "\n# Workflow Report for Assembly Polishing\n\n## Workflow steps\n\n```galaxy\nworkflow_display()\n```\n\n## Fasta statistics after Racon long-read polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Racon long read polish\")\n```\n\n\n## Fasta statistics after Medaka polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Medaka polish\")\n```\n\n## Fasta statistics after Racon short-read polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Racon short read polish\")\n```\n\n\n\n\n" + }, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nminimap setting for long reads\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"]\n 4[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nRacon polish with long reads, x4 - upgraded\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Medaka polish\"]\n 4 -> 5 [label=\"Assembly polished by long reads using Racon\"]\n 1 -> 5 [label=\"output\"]\n ke3136060bce74af387c49dcbb0d1f531[color=lightseagreen,label=\"Output\\nAssembly polished by long reads using Medaka\"]\n 5 -> ke3136060bce74af387c49dcbb0d1f531\n 6[label=\"Fasta statistics after Racon long read polish\"]\n 4 -> 6 [label=\"Assembly polished by long reads using Racon\"]\n 7[label=\"Fasta statistics after Medaka polish\"]\n 5 -> 7 [label=\"out_consensus\"]\n 8[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nRacon polish with Illumina reads R1 only, x2 - upgraded\"]\n 5 -> 8 [label=\"out_consensus\"]\n 3 -> 8 [label=\"output\"]\n 9[label=\"Fasta statistics after Racon short read polish\"]\n 8 -> 9 [label=\"Assembly polished by short reads using Racon\"]\n}", + "history": [ + { + "hash": "091a0834c77e69841f4d07570420c632c6c5043c", + "message": "Update Galaxy-Workflow-Assembly_polishing.ga", + "num": 5, + "short_hash": "091a0834c", + "unix": "1715074278" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "f294a05b57afbe9ec436008d1d2571f6d42fb977", + "message": "Rename Galaxy-Workflow-Assembly_polishing.ga to Galaxy-Workflow-Assembly_polishing_old.ga", + "num": 3, + "short_hash": "f294a05b5", + "unix": "1714537220" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 19.464939294568495, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "52bc9ac4-ac3c-48eb-aead-94a0a14417fc", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 142.48340578478533 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "688866c4-de9b-4b78-8df3-b169d28b1617", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads)" + } + ], + "label": "minimap setting (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 13.133522093825794, + "top": 247.1519749531627 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "c1f18b5c-e8db-4046-b876-9b28a77cf66e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ce393bcf-42e3-43ee-9056-a99e8c077a29" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R1" + } + ], + "label": "Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 617.719019724734, + "top": 600.0866464299372 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ea859a58-c81a-4ef6-9bd2-4ef2f17bb5a9", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nminimap setting for long reads\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\ud83d\udee0\ufe0f Subworkflow\\nRacon polish with long reads, x4 - upgraded\"];\n style 4 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 4;\n 1 -->|output| 4;\n 2 -->|output| 4;\n 5[\"Medaka polish\"];\n 4 -->|Assembly polished by long reads using Racon| 5;\n 1 -->|output| 5;\n e3136060-bce7-4af3-87c4-9dcbb0d1f531[\"Output\\nAssembly polished by long reads using Medaka\"];\n 5 --> e3136060-bce7-4af3-87c4-9dcbb0d1f531;\n style e3136060-bce7-4af3-87c4-9dcbb0d1f531 stroke:#2c3143,stroke-width:4px;\n 6[\"Fasta statistics after Racon long read polish\"];\n 4 -->|Assembly polished by long reads using Racon| 6;\n 7[\"Fasta statistics after Medaka polish\"];\n 5 -->|out_consensus| 7;\n 8[\"\ud83d\udee0\ufe0f Subworkflow\\nRacon polish with Illumina reads R1 only, x2 - upgraded\"];\n style 8 fill:#edd,stroke:#900,stroke-width:4px;\n 5 -->|out_consensus| 8;\n 3 -->|output| 8;\n 9[\"Fasta statistics after Racon short read polish\"];\n 8 -->|Assembly polished by short reads using Racon| 9;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Assembly polishing - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads)" + } + ], + "label": "minimap setting (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 13.133522093825794, + "top": 247.1519749531627 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "c1f18b5c-e8db-4046-b876-9b28a77cf66e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ce393bcf-42e3-43ee-9056-a99e8c077a29" + } + ] + }, + { + "annotation": "", + "id": 4, + "input_connections": { + "Assembly to be polished": { + "id": 0, + "input_subworkflow_step_id": 0, + "output_name": "output" + }, + "long reads": { + "id": 1, + "input_subworkflow_step_id": 1, + "output_name": "output" + }, + "minimap setting (for long reads) ": { + "id": 2, + "input_subworkflow_step_id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Racon polish with long reads, x4 - upgraded", + "outputs": [], + "position": { + "left": 299.6429464825318, + "top": 72.0364210406818 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "comments": [], + "creator": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "format-version": "0.1", + "name": "Racon polish with long reads, x4 - upgraded", + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 216.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c7796c36-adf8-49e4-a8e4-66e606d70311", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.5, + "top": 360.234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e2e4a70b-6e36-4b8b-bdf6-12b97189a6bd", + "when": null, + "workflow_outputs": [] + }, + "10": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "corrected_reads": { + "id": 8, + "output_name": "consensus" + }, + "overlaps": { + "id": 9, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 4", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1496.078125, + "top": 431.1875 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "53f4572e-3a4a-4585-89ab-9459f8a61720", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Racon", + "output_name": "consensus", + "uuid": "bcf0f03c-5951-46a7-aa38-545aed9bc183" + } + ] + }, + "2": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads) " + } + ], + "label": "minimap setting (for long reads) ", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.578125, + "top": 495.859375 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "fb80c05c-08d4-4ac2-b4bf-81ed906e4d72", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3983ef22-5f05-4384-8f34-6ac8c4b2cc83" + } + ] + }, + "3": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to assembly", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 377.640625, + "top": 0 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "0c06144f-d1ac-4b45-9669-1ddf11fcb06b", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "corrected_reads": { + "id": 0, + "output_name": "output" + }, + "overlaps": { + "id": 3, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 1", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 458.640625, + "top": 518.875 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "6c144354-91f2-49dd-a1f5-7c4119859730", + "when": null, + "workflow_outputs": [] + }, + "5": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 1", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 698.859375, + "top": 13.390625 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "c1b83dad-a8ed-42cb-951f-73f59f2dfa92", + "when": null, + "workflow_outputs": [] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "corrected_reads": { + "id": 4, + "output_name": "consensus" + }, + "overlaps": { + "id": 5, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 2", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 759.9375, + "top": 485.71875 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "3208491e-b831-4238-957e-5b7388d7ff8d", + "when": null, + "workflow_outputs": [] + }, + "7": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 6, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 2", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 998.75, + "top": 27.9375 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "42af524b-7f74-4c75-8d78-f6888078dd2e", + "when": null, + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "corrected_reads": { + "id": 6, + "output_name": "consensus" + }, + "overlaps": { + "id": 7, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 3", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1089.71875, + "top": 455.53125 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "21f339bd-ebc1-4c73-a976-5d0b9ab2127a", + "when": null, + "workflow_outputs": [] + }, + "9": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 8, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 3", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 1316.53125, + "top": 38.046875 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "7d36291e-aa76-4312-9943-b5e56d0e90c5", + "when": null, + "workflow_outputs": [] + } + }, + "tags": "", + "uuid": "c57efd37-4cf6-4cc7-abf4-2bab22a2e9a0" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "58c99e4b-fd6a-401d-b9c7-cdf7e6d1757d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "2:output", + "uuid": "50fa1032-8037-454e-8192-b95405bcd5d4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "d": { + "id": 4, + "output_name": "Assembly polished by long reads using Racon" + }, + "i": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Medaka polish", + "name": "medaka consensus pipeline", + "outputs": [ + { + "name": "out_consensus", + "type": "fasta" + } + ], + "position": { + "left": 515.5164024294684, + "top": 305.08460859328346 + }, + "post_job_actions": { + "RenameDatasetActionout_consensus": { + "action_arguments": { + "newname": "Medaka_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fc8804320156", + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"b\": \"100\", \"d\": {\"__class__\": \"ConnectedValue\"}, \"g\": false, \"i\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"r941_min_high_g360\", \"out\": [\"consensus\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.2+galaxy1", + "type": "tool", + "uuid": "14c5ce9c-df92-4e20-85da-7a161eaa759d", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Medaka", + "output_name": "out_consensus", + "uuid": "e3136060-bce7-4af3-87c4-9dcbb0d1f531" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_polishing.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Assembly polishing - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assembly-polishing", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_polishing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_polishing.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-assembly-polishing", + "workflow": "Galaxy-Workflow-Assembly_polishing.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0" + ], + "workflowhub_id": "1174" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "# Workflow Report for Assembly with Flye\n\n\n## Workflow steps\n\n```galaxy\nworkflow_display()\n```\n\n## Dataset - fasta stats. \n\n```galaxy\nhistory_dataset_display(output=\"Fasta Statistics on input dataset(s): Fasta summary stats\")\n```\n\n## Contig sizes\n\n```galaxy\nhistory_dataset_as_image(output=\"Bar chart showing contig sizes\")\n```\n\n\n## Bandage image\n\n```galaxy\nhistory_dataset_as_image(output=\"Bandage Image on input dataset(s): Assembly Graph Image\")\n```\n\n## Quast report\n\n\r\n```galaxy\nhistory_dataset_display(output=\"Quast on input dataset(s): PDF report\")\n```\r\n\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 1[label=\"Flye: assembly\"]\n 0 -> 1 [label=\"output\"]\n k3960e31d7a9e400cbb21f6e47b75e649[color=lightseagreen,label=\"Output\\nFlye assembly on input dataset(s) (consensus)\"]\n 1 -> k3960e31d7a9e400cbb21f6e47b75e649\n ke524f295a9574c91838cf8e98e809b6c[color=lightseagreen,label=\"Output\\nFlye assembly on input dataset(s) (assembly_graph)\"]\n 1 -> ke524f295a9574c91838cf8e98e809b6c\n k48b854e2dd6e43458d0509abca6659da[color=lightseagreen,label=\"Output\\nFlye assembly on input dataset(s) (Graphical Fragment Assembly)\"]\n 1 -> k48b854e2dd6e43458d0509abca6659da\n k8672c17271a7432c9679a8e37f36cf53[color=lightseagreen,label=\"Output\\nFlye assembly on input dataset(s) (assembly_info)\"]\n 1 -> k8672c17271a7432c9679a8e37f36cf53\n 2[label=\"Fasta statistics\"]\n 1 -> 2 [label=\"consensus\"]\n 3[label=\"Quast genome report\"]\n 1 -> 3 [label=\"consensus\"]\n k17cdf8e08ad44570afae1861934fc678[color=lightseagreen,label=\"Output\\nQuast on input dataset(s): HTML report\"]\n 3 -> k17cdf8e08ad44570afae1861934fc678\n 4[label=\"Bandage image: Flye assembly\"]\n 1 -> 4 [label=\"assembly_gfa\"]\n ke66bd129146f48dc95b839a2a1ffb68d[color=lightseagreen,label=\"Output\\nBandage Image on input dataset(s): Assembly Graph Image\"]\n 4 -> ke66bd129146f48dc95b839a2a1ffb68d\n 5[label=\"Bar chart: show contig sizes\"]\n 1 -> 5 [label=\"assembly_info\"]\n k6d0a4e23d6314e3789303d22fc91369b[color=lightseagreen,label=\"Output\\nBar chart showing contig sizes\"]\n 5 -> k6d0a4e23d6314e3789303d22fc91369b\n}", + "history": [ + { + "hash": "f3dd8377556ae73d56d73612a37a5a7e20c98093", + "message": "Update Galaxy-Workflow-Assembly_with_Flye.ga", + "num": 5, + "short_hash": "f3dd83775", + "unix": "1715074300" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "43baea079b7b412f3f272ac1ac887cd67aef6c49", + "message": "Rename Galaxy-Workflow-Assembly_with_Flye.ga to Galaxy-Workflow-Assembly_with_Flye_old.ga", + "num": 3, + "short_hash": "43baea079", + "unix": "1714537239" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 398.40625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "501d7387-3bed-4510-891f-a4571a48d9ab", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Flye: assembly\"];\n 0 -->|output| 1;\n 3960e31d-7a9e-400c-bb21-f6e47b75e649[\"Output\\nFlye assembly on input dataset(s) (consensus)\"];\n 1 --> 3960e31d-7a9e-400c-bb21-f6e47b75e649;\n style 3960e31d-7a9e-400c-bb21-f6e47b75e649 stroke:#2c3143,stroke-width:4px;\n e524f295-a957-4c91-838c-f8e98e809b6c[\"Output\\nFlye assembly on input dataset(s) (assembly_graph)\"];\n 1 --> e524f295-a957-4c91-838c-f8e98e809b6c;\n style e524f295-a957-4c91-838c-f8e98e809b6c stroke:#2c3143,stroke-width:4px;\n 48b854e2-dd6e-4345-8d05-09abca6659da[\"Output\\nFlye assembly on input dataset(s) (Graphical Fragment Assembly)\"];\n 1 --> 48b854e2-dd6e-4345-8d05-09abca6659da;\n style 48b854e2-dd6e-4345-8d05-09abca6659da stroke:#2c3143,stroke-width:4px;\n 8672c172-71a7-432c-9679-a8e37f36cf53[\"Output\\nFlye assembly on input dataset(s) (assembly_info)\"];\n 1 --> 8672c172-71a7-432c-9679-a8e37f36cf53;\n style 8672c172-71a7-432c-9679-a8e37f36cf53 stroke:#2c3143,stroke-width:4px;\n 2[\"Fasta statistics\"];\n 1 -->|consensus| 2;\n 3[\"Quast genome report\"];\n 1 -->|consensus| 3;\n 17cdf8e0-8ad4-4570-afae-1861934fc678[\"Output\\nQuast on input dataset(s): HTML report\"];\n 3 --> 17cdf8e0-8ad4-4570-afae-1861934fc678;\n style 17cdf8e0-8ad4-4570-afae-1861934fc678 stroke:#2c3143,stroke-width:4px;\n 4[\"Bandage image: Flye assembly\"];\n 1 -->|assembly_gfa| 4;\n e66bd129-146f-48dc-95b8-39a2a1ffb68d[\"Output\\nBandage Image on input dataset(s): Assembly Graph Image\"];\n 4 --> e66bd129-146f-48dc-95b8-39a2a1ffb68d;\n style e66bd129-146f-48dc-95b8-39a2a1ffb68d stroke:#2c3143,stroke-width:4px;\n 5[\"Bar chart: show contig sizes\"];\n 1 -->|assembly_info| 5;\n 6d0a4e23-d631-4e37-8930-3d22fc91369b[\"Output\\nBar chart showing contig sizes\"];\n 5 --> 6d0a4e23-d631-4e37-8930-3d22fc91369b;\n style 6d0a4e23-d631-4e37-8930-3d22fc91369b stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Assembly with Flye - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "errors": null, + "id": 1, + "input_connections": { + "inputs": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Flye: assembly", + "name": "Flye", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + } + ], + "position": { + "left": 260.57143695759436, + "top": 248.74363091133793 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "291923e6f276", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"asm\": {\"asm_select\": \"false\", \"__current_case__\": 1}, \"generate_log\": false, \"i\": \"1\", \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"iterations\": \"1\", \"keep_haplotypes\": false, \"m\": null, \"meta\": false, \"min_overlap\": null, \"mode\": \"--nano-raw\", \"mode_conditional\": {\"mode\": \"--nano-raw\", \"__current_case__\": 0}, \"no_alt_contigs\": false, \"no_trestle\": \"false\", \"plasmids\": \"false\", \"scaffold\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.9.3+galaxy0", + "type": "tool", + "uuid": "8bed3591-266a-41f1-91d3-11b3456e8609", + "when": null, + "workflow_outputs": [ + { + "label": "Flye assembly on input dataset(s) (consensus)", + "output_name": "consensus", + "uuid": "3960e31d-7a9e-400c-bb21-f6e47b75e649" + }, + { + "label": "Flye assembly on input dataset(s) (assembly_graph)", + "output_name": "assembly_graph", + "uuid": "e524f295-a957-4c91-838c-f8e98e809b6c" + }, + { + "label": "Flye assembly on input dataset(s) (Graphical Fragment Assembly)", + "output_name": "assembly_gfa", + "uuid": "48b854e2-dd6e-4345-8d05-09abca6659da" + }, + { + "label": "Flye assembly on input dataset(s) (assembly_info)", + "output_name": "assembly_info", + "uuid": "8672c172-71a7-432c-9679-a8e37f36cf53" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "mode|in|inputs": { + "id": 1, + "output_name": "consensus" + } + }, + "inputs": [], + "label": "Quast genome report", + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 697.3759752425051, + "top": 194.46891558901518 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"al\": {\"ambiguity_score\": \"0.99\", \"ambiguity_usage\": \"one\", \"fragmented\": false, \"fragmented_max_indent\": \"50\", \"min_alignment\": \"65\", \"min_identity\": \"95.0\", \"upper_bound_assembly\": false, \"upper_bound_min_con\": \"2\", \"use_all_alignments\": false}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"false\", \"__current_case__\": 1, \"est_ref_size\": null}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"circos\": \"false\", \"contig_thresholds\": \"0,1000\", \"extensive_mis_size\": \"1000\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"in\": {\"__current_case__\": 1, \"custom\": \"false\", \"inputs\": {\"__class__\": \"RuntimeValue\"}}, \"k_mer\": {\"__current_case__\": 1, \"k_mer_stats\": \"\"}, \"large\": true, \"min_contig\": \"500\", \"mode\": {\"mode\": \"co\", \"__current_case__\": 1, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"scaffold_gap_max_size\": \"1000\", \"skip_unaligned_mis_contigs\": \"false\", \"split_scaffolds\": false, \"strict_NA\": \"false\", \"unaligned_part_size\": \"500\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "5bc29646-ec4c-4eb3-af01-73d82fc690a2", + "when": null, + "workflow_outputs": [ + { + "label": "Quast on input dataset(s): HTML report", + "output_name": "report_html", + "uuid": "17cdf8e0-8ad4-4570-afae-1861934fc678" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "assembly_gfa" + } + }, + "inputs": [], + "label": "Bandage image: Flye assembly", + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 583.546875, + "top": 446.40625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "tool_shed_repository": { + "changeset_revision": "ddddce450736", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": false, \"names\": false, \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2022.09+galaxy4", + "type": "tool", + "uuid": "395f2dfe-3fa5-4684-bf97-7dd12e970f78", + "when": null, + "workflow_outputs": [ + { + "label": "Bandage Image on input dataset(s): Assembly Graph Image", + "output_name": "outfile", + "uuid": "e66bd129-146f-48dc-95b8-39a2a1ffb68d" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 1, + "output_name": "assembly_info" + } + }, + "inputs": [], + "label": "Bar chart: show contig sizes", + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 595.421875, + "top": 688.984375 + }, + "post_job_actions": {}, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"Assembly contig sizes\", \"xtic\": {\"userSpecified\": \"No\", \"__current_case__\": 1}, \"ylabel\": \"lengths\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "cb9d5059-bf42-4a0e-8150-f5089e0d5b1b", + "when": null, + "workflow_outputs": [ + { + "label": "Bar chart showing contig sizes", + "output_name": "out_file1", + "uuid": "6d0a4e23-d631-4e37-8930-3d22fc91369b" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_with_Flye.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Assembly with Flye - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assembly-with-flye", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_with_Flye.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_with_Flye.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-assembly-with-flye", + "workflow": "Galaxy-Workflow-Assembly_with_Flye.ga", + "workflow_tools": [ + "barchart_gnuplot", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "workflowhub_id": "1170" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow Execution Report\n\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n\n## Busco results\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco short summary\")\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco summary image\")\n```\n\n## Quast results\n\n\n```galaxy\nhistory_dataset_display(output=\"Quast on input dataset(s): tabular report\")\n```\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPolished assembly\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome\"]\n 2[label=\"Busco: assess assembly\"]\n 0 -> 2 [label=\"output\"]\n k219e495236e04b01a407e774b5b02dca[color=lightseagreen,label=\"Output\\nBusco short summary\"]\n 2 -> k219e495236e04b01a407e774b5b02dca\n 3[label=\"Quast: assess assembly\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n k77ab01864cfd460fb71e39a923414ef4[color=lightseagreen,label=\"Output\\nQuast on input dataset(s): HTML report\"]\n 3 -> k77ab01864cfd460fb71e39a923414ef4\n}", + "history": [ + { + "hash": "1b47a1ad8d46b114394c0579436c448e6bb7efcf", + "message": "Update Galaxy-Workflow-Assess_genome_quality.ga", + "num": 5, + "short_hash": "1b47a1ad8", + "unix": "1715074319" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "fc05e79f01c6b59c4dfc6aa59ebf592ae615641f", + "message": "Rename Galaxy-Workflow-Assess_genome_quality.ga to Galaxy-Workflow-Assess_genome_quality_old.ga", + "num": 3, + "short_hash": "fc05e79f0", + "unix": "1714537255" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Polished assembly" + } + ], + "label": "Polished assembly", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 101.09375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2ed19084-9eaf-4efb-acdc-b81536e7c024", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genome" + } + ], + "label": "Reference genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 246.765625, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5b12a6af-13c3-4520-a549-280de6a3df17", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPolished assembly\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference genome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Busco: assess assembly\"];\n 0 -->|output| 2;\n 219e4952-36e0-4b01-a407-e774b5b02dca[\"Output\\nBusco short summary\"];\n 2 --> 219e4952-36e0-4b01-a407-e774b5b02dca;\n style 219e4952-36e0-4b01-a407-e774b5b02dca stroke:#2c3143,stroke-width:4px;\n 3[\"Quast: assess assembly\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 77ab0186-4cfd-460f-b71e-39a923414ef4[\"Output\\nQuast on input dataset(s): HTML report\"];\n 3 --> 77ab0186-4cfd-460f-b71e-39a923414ef4;\n style 77ab0186-4cfd-460f-b71e-39a923414ef4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Assess genome quality - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Busco: assess assembly", + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + } + ], + "position": { + "left": 294.42303466796875, + "top": 200.68505859375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ea8146ee148f", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"auto_detect\", \"__current_case__\": 0, \"auto_lineage\": \"--auto-lineage\"}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"lineage_dataset\": \"eukaryota_odb10\", \"outputs\": \"short_summary\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.5.0+galaxy0", + "type": "tool", + "uuid": "8f5f17de-a21e-49f4-b55c-6eff5f4fa213", + "when": null, + "workflow_outputs": [ + { + "label": "Busco short summary", + "output_name": "busco_sum", + "uuid": "219e4952-36e0-4b01-a407-e774b5b02dca" + }, + { + "label": null, + "output_name": "busco_table", + "uuid": "fc06df63-3453-4303-80d1-c76823ba384a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "assembly|ref|r": { + "id": 1, + "output_name": "output" + }, + "mode|in|inputs": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Quast: assess assembly", + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 564.8660278320312, + "top": 56.71406029052495 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"true\", \"__current_case__\": 0, \"r\": {\"__class__\": \"RuntimeValue\"}, \"features\": {\"__class__\": \"RuntimeValue\"}, \"operons\": {\"__class__\": \"RuntimeValue\"}, \"k_mer\": {\"k_mer_stats\": \"\", \"__current_case__\": 1}, \"circos\": false}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"large\": true, \"min_contig\": \"0\", \"mode\": {\"mode\": \"individual\", \"__current_case__\": 0, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"RuntimeValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"split_scaffolds\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "6caef18b-b257-472d-b8d0-fac523a72d37", + "when": null, + "workflow_outputs": [ + { + "label": "Quast on input dataset(s): HTML report", + "output_name": "report_html", + "uuid": "77ab0186-4cfd-460f-b71e-39a923414ef4" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assess_genome_quality.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Assess genome quality - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assess-genome-quality", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assess_genome_quality.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assess_genome_quality.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-assess-genome-quality", + "workflow": "Galaxy-Workflow-Assess_genome_quality.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "workflowhub_id": "1158" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": true, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR1\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR2\"]\n 3[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nminimap settings for long reads\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome for Quast\"]\n 5[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nkmer counting - meryl - upgraded\"]\n 1 -> 5 [label=\"output\"]\n 6[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nData QC - upgraded\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 0 -> 6 [label=\"output\"]\n 7[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nTrim and filter reads - fastp - upgraded \"]\n 1 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 0 -> 7 [label=\"output\"]\n 8[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nAssembly with Flye - upgraded\"]\n 7 -> 8 [label=\"fastp filtered long reads\"]\n 9[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nAssembly polishing - upgraded\"]\n 8 -> 9 [label=\"Flye assembly on input datasets consensus\"]\n 7 -> 9 [label=\"fastp filtered R1 reads\"]\n 7 -> 9 [label=\"fastp filtered long reads\"]\n 3 -> 9 [label=\"output\"]\n 10[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nAssess genome quality - upgraded\"]\n 9 -> 10 [label=\"Assembly polished by long reads using Medaka\"]\n 4 -> 10 [label=\"output\"]\n}", + "history": [ + { + "hash": "01cffeed0413d12d37753e72aa81c95fb47e2179", + "message": "Update Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", + "num": 5, + "short_hash": "01cffeed0", + "unix": "1715074366" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "bd0db2c9632aca4fc5faba5e811b23e9f98817f0", + "message": "Rename Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga to Galaxy-Workflow-Combined_workflows_for_large_genome_assembly_old.ga", + "num": 3, + "short_hash": "bd0db2c96", + "unix": "1714537274" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 37.09056155334109, + "top": 117.80110422489305 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f9154ba8-6c56-4b8c-b3a6-79bf72638963", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R1" + } + ], + "label": "R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 296.6915657131622 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2152a89a-64b2-4e77-897e-97c2e951f0d4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R2" + } + ], + "label": "R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 18.331891780359495, + "top": 404.60599487314124 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "04ed4838-38d0-47c6-9692-af43b305750c", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap settings (for long reads)" + } + ], + "label": "minimap settings (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 953.979654343896, + "top": 53.88085686443145 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "925fcb63-babc-42b5-9510-c82277158288", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3643a598-963e-42d9-b625-41f5256dee4a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genome for Quast" + } + ], + "label": "Reference genome for Quast", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1271.7306972391564, + "top": 75.04279962197629 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5bd59f90-9351-4b1e-bc0d-11fee8b4a435", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nR1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nR2\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Parameter\\nminimap settings for long reads\"];\n style 3 fill:#ded,stroke:#393,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nReference genome for Quast\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\ud83d\udee0\ufe0f Subworkflow\\nkmer counting - meryl - upgraded\"];\n style 5 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 5;\n 6[\"\ud83d\udee0\ufe0f Subworkflow\\nData QC - upgraded\"];\n style 6 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 6;\n 2 -->|output| 6;\n 0 -->|output| 6;\n 7[\"\ud83d\udee0\ufe0f Subworkflow\\nTrim and filter reads - fastp - upgraded \"];\n style 7 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 7;\n 2 -->|output| 7;\n 0 -->|output| 7;\n 8[\"\ud83d\udee0\ufe0f Subworkflow\\nAssembly with Flye - upgraded\"];\n style 8 fill:#edd,stroke:#900,stroke-width:4px;\n 7 -->|fastp filtered long reads| 8;\n 9[\"\ud83d\udee0\ufe0f Subworkflow\\nAssembly polishing - upgraded\"];\n style 9 fill:#edd,stroke:#900,stroke-width:4px;\n 8 -->|Flye assembly on input datasets consensus| 9;\n 7 -->|fastp filtered R1 reads| 9;\n 7 -->|fastp filtered long reads| 9;\n 3 -->|output| 9;\n 10[\"\ud83d\udee0\ufe0f Subworkflow\\nAssess genome quality - upgraded\"];\n style 10 fill:#edd,stroke:#900,stroke-width:4px;\n 9 -->|Assembly polished by long reads using Medaka| 10;\n 4 -->|output| 10;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Combined workflows for large genome assembly - upgraded ", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap settings (for long reads)" + } + ], + "label": "minimap settings (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 953.979654343896, + "top": 53.88085686443145 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "925fcb63-babc-42b5-9510-c82277158288", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3643a598-963e-42d9-b625-41f5256dee4a" + } + ] + }, + { + "annotation": "", + "id": 9, + "input_connections": { + "Assembly to be polished": { + "id": 8, + "input_subworkflow_step_id": 0, + "output_name": "Flye assembly on input dataset(s) (consensus)" + }, + "Illumina reads R1": { + "id": 7, + "input_subworkflow_step_id": 3, + "output_name": "fastp filtered R1 reads" + }, + "long reads": { + "id": 7, + "input_subworkflow_step_id": 1, + "output_name": "fastp filtered long reads" + }, + "minimap setting (for long reads)": { + "id": 3, + "input_subworkflow_step_id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Assembly polishing - upgraded", + "outputs": [], + "position": { + "left": 1260.7587450660599, + "top": 269.3075732043599 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "comments": [], + "creator": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "format-version": "0.1", + "name": "Assembly polishing - upgraded", + "report": { + "markdown": "\n# Workflow Report for Assembly Polishing\n\n## Workflow steps\n\n```galaxy\nworkflow_display()\n```\n\n## Fasta statistics after Racon long-read polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Racon long read polish\")\n```\n\n\n## Fasta statistics after Medaka polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Medaka polish\")\n```\n\n## Fasta statistics after Racon short-read polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Racon short read polish\")\n```\n\n\n\n\n" + }, + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 19.464939294568495, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "52bc9ac4-ac3c-48eb-aead-94a0a14417fc", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 142.48340578478533 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "688866c4-de9b-4b78-8df3-b169d28b1617", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads)" + } + ], + "label": "minimap setting (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 13.133522093825794, + "top": 247.1519749531627 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "c1f18b5c-e8db-4046-b876-9b28a77cf66e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ce393bcf-42e3-43ee-9056-a99e8c077a29" + } + ] + }, + "3": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R1" + } + ], + "label": "Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 617.719019724734, + "top": 600.0866464299372 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ea859a58-c81a-4ef6-9bd2-4ef2f17bb5a9", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "id": 4, + "input_connections": { + "Assembly to be polished": { + "id": 0, + "input_subworkflow_step_id": 0, + "output_name": "output" + }, + "long reads": { + "id": 1, + "input_subworkflow_step_id": 1, + "output_name": "output" + }, + "minimap setting (for long reads) ": { + "id": 2, + "input_subworkflow_step_id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Racon polish with long reads, x4 - upgraded", + "outputs": [], + "position": { + "left": 299.6429464825318, + "top": 72.0364210406818 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "comments": [], + "creator": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "format-version": "0.1", + "name": "Racon polish with long reads, x4 - upgraded", + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 216.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c7796c36-adf8-49e4-a8e4-66e606d70311", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.5, + "top": 360.234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e2e4a70b-6e36-4b8b-bdf6-12b97189a6bd", + "when": null, + "workflow_outputs": [] + }, + "10": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "corrected_reads": { + "id": 8, + "output_name": "consensus" + }, + "overlaps": { + "id": 9, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 4", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1496.078125, + "top": 431.1875 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "53f4572e-3a4a-4585-89ab-9459f8a61720", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Racon", + "output_name": "consensus", + "uuid": "bcf0f03c-5951-46a7-aa38-545aed9bc183" + } + ] + }, + "2": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads) " + } + ], + "label": "minimap setting (for long reads) ", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.578125, + "top": 495.859375 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "fb80c05c-08d4-4ac2-b4bf-81ed906e4d72", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3983ef22-5f05-4384-8f34-6ac8c4b2cc83" + } + ] + }, + "3": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to assembly", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 377.640625, + "top": 0 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "0c06144f-d1ac-4b45-9669-1ddf11fcb06b", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "corrected_reads": { + "id": 0, + "output_name": "output" + }, + "overlaps": { + "id": 3, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 1", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 458.640625, + "top": 518.875 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "6c144354-91f2-49dd-a1f5-7c4119859730", + "when": null, + "workflow_outputs": [] + }, + "5": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 1", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 698.859375, + "top": 13.390625 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "c1b83dad-a8ed-42cb-951f-73f59f2dfa92", + "when": null, + "workflow_outputs": [] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "corrected_reads": { + "id": 4, + "output_name": "consensus" + }, + "overlaps": { + "id": 5, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 2", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 759.9375, + "top": 485.71875 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "3208491e-b831-4238-957e-5b7388d7ff8d", + "when": null, + "workflow_outputs": [] + }, + "7": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 6, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 2", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 998.75, + "top": 27.9375 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "42af524b-7f74-4c75-8d78-f6888078dd2e", + "when": null, + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "corrected_reads": { + "id": 6, + "output_name": "consensus" + }, + "overlaps": { + "id": 7, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 3", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1089.71875, + "top": 455.53125 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "21f339bd-ebc1-4c73-a976-5d0b9ab2127a", + "when": null, + "workflow_outputs": [] + }, + "9": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 8, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 3", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 1316.53125, + "top": 38.046875 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "7d36291e-aa76-4312-9943-b5e56d0e90c5", + "when": null, + "workflow_outputs": [] + } + }, + "tags": "", + "uuid": "c57efd37-4cf6-4cc7-abf4-2bab22a2e9a0" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "58c99e4b-fd6a-401d-b9c7-cdf7e6d1757d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "2:output", + "uuid": "50fa1032-8037-454e-8192-b95405bcd5d4" + } + ] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "d": { + "id": 4, + "output_name": "Assembly polished by long reads using Racon" + }, + "i": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Medaka polish", + "name": "medaka consensus pipeline", + "outputs": [ + { + "name": "out_consensus", + "type": "fasta" + } + ], + "position": { + "left": 515.5164024294684, + "top": 305.08460859328346 + }, + "post_job_actions": { + "RenameDatasetActionout_consensus": { + "action_arguments": { + "newname": "Medaka_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fc8804320156", + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"b\": \"100\", \"d\": {\"__class__\": \"ConnectedValue\"}, \"g\": false, \"i\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"r941_min_high_g360\", \"out\": [\"consensus\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.2+galaxy1", + "type": "tool", + "uuid": "14c5ce9c-df92-4e20-85da-7a161eaa759d", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Medaka", + "output_name": "out_consensus", + "uuid": "e3136060-bce7-4af3-87c4-9dcbb0d1f531" + } + ] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 6, + "input_connections": { + "fasta": { + "id": 4, + "output_name": "Assembly polished by long reads using Racon" + } + }, + "inputs": [], + "label": "Fasta statistics after Racon long read polish", + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 611.8186129984722, + "top": 131.47863560473016 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": false, \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "e78db141-a6d2-42b1-b2b6-aee5e900d3f4", + "when": null, + "workflow_outputs": [] + }, + "7": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 7, + "input_connections": { + "fasta": { + "id": 5, + "output_name": "out_consensus" + } + }, + "inputs": [], + "label": "Fasta statistics after Medaka polish", + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 816.9504695700908, + "top": 343.05724959525315 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": false, \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "96f313ee-4a6a-4ba9-86f8-3dedc1d5d30d", + "when": null, + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "id": 8, + "input_connections": { + "Assembly to be polished": { + "id": 5, + "input_subworkflow_step_id": 0, + "output_name": "out_consensus" + }, + "Illumina reads, R1, in fastq.gz format": { + "id": 3, + "input_subworkflow_step_id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Racon polish with Illumina reads (R1 only), x2 - upgraded", + "outputs": [], + "position": { + "left": 915.3758175639219, + "top": 512.306732089216 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "comments": [], + "creator": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "format-version": "0.1", + "name": "Racon polish with Illumina reads (R1 only), x2 - upgraded", + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 72.5176329833982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "28669894-74e2-4ba1-9d49-6e3209b5a1de", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads, R1, in fastq.gz format" + } + ], + "label": "Illumina reads, R1, in fastq.gz format", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 8.5, + "top": 341.2832579833982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bc936fdc-22a9-4507-aa47-4a70a3f93923", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2 round 1: map reads to assembly", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 399.936279296875, + "top": 0 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": \"sr\"}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "b01b8c3d-c33b-47b2-9a83-297c19d63ab7", + "when": null, + "workflow_outputs": [] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "corrected_reads": { + "id": 0, + "output_name": "output" + }, + "overlaps": { + "id": 2, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon round 1: polish assembly", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 635.5625200274146, + "top": 432.13610641498093 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"error_threshold\": \"0.3\", \"fragment_correction\": false, \"gap\": \"-4\", \"include_unpolished\": false, \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"window_length\": \"500\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "fe32d046-4ff2-485e-84e8-191b04803afc", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 3, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2 round 2: map reads to assembly", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 859.5, + "top": 23.955132983398205 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": \"sr\"}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "ee834cad-027a-4a84-963b-141b22eaa70a", + "when": null, + "workflow_outputs": [] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "corrected_reads": { + "id": 3, + "output_name": "consensus" + }, + "overlaps": { + "id": 4, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon round 2: polish assembly", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1198.765625, + "top": 332.4707579833982 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_short_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "b3c89c40-3ad0-454c-a4d4-dfa34fb09f24", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by short reads using Racon", + "output_name": "consensus", + "uuid": "594819c3-668e-4575-b9a6-4459ffacf952" + } + ] + } + }, + "tags": "", + "uuid": "1b96b1cf-dbd4-46b1-8a59-aebfe80135c2" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "46288abb-a2bc-43d5-822a-a93af0d346cf", + "when": null, + "workflow_outputs": [] + }, + "9": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 9, + "input_connections": { + "fasta": { + "id": 8, + "output_name": "Assembly polished by short reads using Racon" + } + }, + "inputs": [], + "label": "Fasta statistics after Racon short read polish", + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 1179.1223817823236, + "top": 547.060000097866 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": false, \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "3c06b177-02b5-4068-8056-56b653d95379", + "when": null, + "workflow_outputs": [] + } + }, + "tags": "", + "uuid": "af8b99cb-cfc5-4f96-ba6c-6a178826ca98" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "6b6668c9-25b7-4135-ac9b-140a6d1593b0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "2:output", + "uuid": "f740de36-9921-4f0c-924e-3902bc2083b7" + }, + { + "label": null, + "output_name": "4:2:output", + "uuid": "2b5d309e-c47e-4a79-a69c-4d4fd6a93d8b" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Combined workflows for large genome assembly - upgraded ", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-combined-workflows-for-large-genome-assembly", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-combined-workflows-for-large-genome-assembly", + "workflow": "Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", + "workflow_tools": [ + "barchart_gnuplot", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "workflowhub_id": "1176" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow Report for Data QC\n\n## Workflow steps\n\n```galaxy\nworkflow_display()\n```\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput file: long reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput file: Illumina reads R1\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput file: Illumina reads R2\"]\n 3[label=\"Nanoplot: long reads\"]\n 0 -> 3 [label=\"output\"]\n k73d0e4cf366e41c1810ab269638826b3[color=lightseagreen,label=\"Output\\nNanoPlot on input dataset(s): HTML report\"]\n 3 -> k73d0e4cf366e41c1810ab269638826b3\n 4[label=\"FastQC on R1\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"FastQC on R2\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"MultiQC: combine fastQC reports\"]\n 4 -> 6 [label=\"text_file\"]\n 5 -> 6 [label=\"text_file\"]\n k8baf8700876e4a74ad996e656f3ba618[color=lightseagreen,label=\"Output\\nMultiQC on input dataset(s): Webpage\"]\n 6 -> k8baf8700876e4a74ad996e656f3ba618\n}", + "history": [ + { + "hash": "d35221f6506e7b95e8b3ff679a2ad01edf1a560a", + "message": "Update Galaxy-Workflow-Data_QC.ga", + "num": 5, + "short_hash": "d35221f65", + "unix": "1715074384" + }, + { + "hash": "a737e5f1b936379382f4d568b0caeb664d81c392", + "message": "Rename Galaxy-Workflow-Data_QC_-_upgraded.ga to Galaxy-Workflow-Data_QC.ga", + "num": 4, + "short_hash": "a737e5f1b", + "unix": "1714537191" + }, + { + "hash": "9ca497557dddc43b116a61592a953f455046bc86", + "message": "Rename Galaxy-Workflow-Data_QC.ga to Galaxy-Workflow-Data_QC_old.ga", + "num": 3, + "short_hash": "9ca497557", + "unix": "1714537118" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input file: long reads" + } + ], + "label": "Input file: long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e2e4a70b-6e36-4b8b-bdf6-12b97189a6bd", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input file: Illumina reads R1" + } + ], + "label": "Input file: Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 535.703125, + "top": 21.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ea859a58-c81a-4ef6-9bd2-4ef2f17bb5a9", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input file: Illumina reads R2" + } + ], + "label": "Input file: Illumina reads R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 530.703125, + "top": 379.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "472adc05-88a5-4955-9e43-e82e9550ad08", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput file: long reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput file: Illumina reads R1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput file: Illumina reads R2\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Nanoplot: long reads\"];\n 0 -->|output| 3;\n 73d0e4cf-366e-41c1-810a-b269638826b3[\"Output\\nNanoPlot on input dataset(s): HTML report\"];\n 3 --> 73d0e4cf-366e-41c1-810a-b269638826b3;\n style 73d0e4cf-366e-41c1-810a-b269638826b3 stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC on R1\"];\n 1 -->|output| 4;\n 5[\"FastQC on R2\"];\n 2 -->|output| 5;\n 6[\"MultiQC: combine fastQC reports\"];\n 4 -->|text_file| 6;\n 5 -->|text_file| 6;\n 8baf8700-876e-4a74-ad99-6e656f3ba618[\"Output\\nMultiQC on input dataset(s): Webpage\"];\n 6 --> 8baf8700-876e-4a74-ad99-6e656f3ba618;\n style 8baf8700-876e-4a74-ad99-6e656f3ba618 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Data QC - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "mode|reads|files": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Nanoplot: long reads", + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + } + ], + "position": { + "left": 240.84375, + "top": 104.359375 + }, + "post_job_actions": { + "HideDatasetActionlog_read_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log_read_length" + }, + "HideDatasetActionnanostats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats" + }, + "HideDatasetActionnanostats_post_filtering": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "HideDatasetActionread_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a02b8b3f5a0c", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"customization\": {\"color\": null, \"plots\": null, \"N50\": false}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.42.0+galaxy1", + "type": "tool", + "uuid": "3b8a87fe-1506-48d2-a4d9-f4dca8b6065d", + "when": null, + "workflow_outputs": [ + { + "label": "NanoPlot on input dataset(s): HTML report", + "output_name": "output_html", + "uuid": "73d0e4cf-366e-41c1-810a-b269638826b3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 4, + "output_name": "text_file" + }, + "results_0|software_cond|output_1|input": { + "id": 5, + "output_name": "text_file" + } + }, + "inputs": [], + "label": "MultiQC: combine fastQC reports", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1233.5, + "top": 230.844970703125 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "3e29a59b-dca0-4993-b20d-495a3f17e291", + "when": null, + "workflow_outputs": [ + { + "label": "MultiQC on input dataset(s): Webpage", + "output_name": "html_report", + "uuid": "8baf8700-876e-4a74-ad99-6e656f3ba618" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Data_QC.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Data QC - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-data-qc", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Data_QC.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Data_QC.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-data-qc", + "workflow": "Galaxy-Workflow-Data_QC.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1" + ], + "workflowhub_id": "1162" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads, R1, in fastq.gz format\"]\n 2[label=\"Minimap2 round 1: map reads to assembly\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Racon round 1: polish assembly\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"alignment_output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Minimap2 round 2: map reads to assembly\"]\n 1 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"consensus\"]\n 5[label=\"Racon round 2: polish assembly\"]\n 3 -> 5 [label=\"consensus\"]\n 4 -> 5 [label=\"alignment_output\"]\n 1 -> 5 [label=\"output\"]\n k594819c3668e4575b9a64459ffacf952[color=lightseagreen,label=\"Output\\nAssembly polished by short reads using Racon\"]\n 5 -> k594819c3668e4575b9a64459ffacf952\n}", + "history": [ + { + "hash": "3be0312ca5a2e27bc1f8573e28943833be988894", + "message": "Update Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", + "num": 5, + "short_hash": "3be0312ca", + "unix": "1715074403" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "7d222309ffbec070126e3e749ba6f3d4e510cc6e", + "message": "Rename Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga to Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2_old.ga", + "num": 3, + "short_hash": "7d222309f", + "unix": "1714537293" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 72.5176329833982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "28669894-74e2-4ba1-9d49-6e3209b5a1de", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads, R1, in fastq.gz format" + } + ], + "label": "Illumina reads, R1, in fastq.gz format", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 8.5, + "top": 341.2832579833982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bc936fdc-22a9-4507-aa47-4a70a3f93923", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nIllumina reads, R1, in fastq.gz format\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Minimap2 round 1: map reads to assembly\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Racon round 1: polish assembly\"];\n 0 -->|output| 3;\n 2 -->|alignment_output| 3;\n 1 -->|output| 3;\n 4[\"Minimap2 round 2: map reads to assembly\"];\n 1 -->|output| 4;\n 3 -->|consensus| 4;\n 5[\"Racon round 2: polish assembly\"];\n 3 -->|consensus| 5;\n 4 -->|alignment_output| 5;\n 1 -->|output| 5;\n 594819c3-668e-4575-b9a6-4459ffacf952[\"Output\\nAssembly polished by short reads using Racon\"];\n 5 --> 594819c3-668e-4575-b9a6-4459ffacf952;\n style 594819c3-668e-4575-b9a6-4459ffacf952 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Racon polish with Illumina reads (R1 only), x2 - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "corrected_reads": { + "id": 3, + "output_name": "consensus" + }, + "overlaps": { + "id": 4, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon round 2: polish assembly", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1198.765625, + "top": 332.4707579833982 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_short_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "b3c89c40-3ad0-454c-a4d4-dfa34fb09f24", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by short reads using Racon", + "output_name": "consensus", + "uuid": "594819c3-668e-4575-b9a6-4459ffacf952" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Racon polish with Illumina reads (R1 only), x2 - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-racon-polish-with-illumina-reads-x2", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-racon-polish-with-illumina-reads-x2", + "workflow": "Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0" + ], + "workflowhub_id": "1148" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": true, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nminimap setting for long reads \"]\n 3[label=\"Minimap2: map long reads to assembly\"]\n 2 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Racon: polish 1\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"alignment_output\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Minimap2: map long reads to polished assembly 1\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"consensus\"]\n 6[label=\"Racon: polish 2\"]\n 4 -> 6 [label=\"consensus\"]\n 5 -> 6 [label=\"alignment_output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Minimap2: map long reads to polished assembly 2\"]\n 2 -> 7 [label=\"output\"]\n 1 -> 7 [label=\"output\"]\n 6 -> 7 [label=\"consensus\"]\n 8[label=\"Racon: polish 3\"]\n 6 -> 8 [label=\"consensus\"]\n 7 -> 8 [label=\"alignment_output\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"Minimap2: map long reads to polished assembly 3\"]\n 2 -> 9 [label=\"output\"]\n 1 -> 9 [label=\"output\"]\n 8 -> 9 [label=\"consensus\"]\n 10[label=\"Racon: polish 4\"]\n 8 -> 10 [label=\"consensus\"]\n 9 -> 10 [label=\"alignment_output\"]\n 1 -> 10 [label=\"output\"]\n kbcf0f03c595146a7aa38545aed9bc183[color=lightseagreen,label=\"Output\\nAssembly polished by long reads using Racon\"]\n 10 -> kbcf0f03c595146a7aa38545aed9bc183\n}", + "history": [ + { + "hash": "ea8cb9df4cc68241e9b406bde825b4c16647280b", + "message": "Update Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", + "num": 5, + "short_hash": "ea8cb9df4", + "unix": "1715074423" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "7bd7c55df24dd71009cbde6408fb87d49901a84a", + "message": "Rename Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga to Galaxy-Workflow-Racon_polish_with_long_reads_x4_old.ga", + "num": 3, + "short_hash": "7bd7c55df", + "unix": "1714537311" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 216.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c7796c36-adf8-49e4-a8e4-66e606d70311", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.5, + "top": 360.234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e2e4a70b-6e36-4b8b-bdf6-12b97189a6bd", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads) " + } + ], + "label": "minimap setting (for long reads) ", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.578125, + "top": 495.859375 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "fb80c05c-08d4-4ac2-b4bf-81ed906e4d72", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3983ef22-5f05-4384-8f34-6ac8c4b2cc83" + } + ] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nminimap setting for long reads \"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"Minimap2: map long reads to assembly\"];\n 2 -->|output| 3;\n 1 -->|output| 3;\n 0 -->|output| 3;\n 4[\"Racon: polish 1\"];\n 0 -->|output| 4;\n 3 -->|alignment_output| 4;\n 1 -->|output| 4;\n 5[\"Minimap2: map long reads to polished assembly 1\"];\n 2 -->|output| 5;\n 1 -->|output| 5;\n 4 -->|consensus| 5;\n 6[\"Racon: polish 2\"];\n 4 -->|consensus| 6;\n 5 -->|alignment_output| 6;\n 1 -->|output| 6;\n 7[\"Minimap2: map long reads to polished assembly 2\"];\n 2 -->|output| 7;\n 1 -->|output| 7;\n 6 -->|consensus| 7;\n 8[\"Racon: polish 3\"];\n 6 -->|consensus| 8;\n 7 -->|alignment_output| 8;\n 1 -->|output| 8;\n 9[\"Minimap2: map long reads to polished assembly 3\"];\n 2 -->|output| 9;\n 1 -->|output| 9;\n 8 -->|consensus| 9;\n 10[\"Racon: polish 4\"];\n 8 -->|consensus| 10;\n 9 -->|alignment_output| 10;\n 1 -->|output| 10;\n bcf0f03c-5951-46a7-aa38-545aed9bc183[\"Output\\nAssembly polished by long reads using Racon\"];\n 10 --> bcf0f03c-5951-46a7-aa38-545aed9bc183;\n style bcf0f03c-5951-46a7-aa38-545aed9bc183 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Racon polish with long reads, x4 - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads) " + } + ], + "label": "minimap setting (for long reads) ", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.578125, + "top": 495.859375 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "fb80c05c-08d4-4ac2-b4bf-81ed906e4d72", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3983ef22-5f05-4384-8f34-6ac8c4b2cc83" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "corrected_reads": { + "id": 8, + "output_name": "consensus" + }, + "overlaps": { + "id": 9, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 4", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1496.078125, + "top": 431.1875 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "53f4572e-3a4a-4585-89ab-9459f8a61720", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Racon", + "output_name": "consensus", + "uuid": "bcf0f03c-5951-46a7-aa38-545aed9bc183" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Racon polish with long reads, x4 - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-racon-polish-with-long-reads-x4", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_long_reads_x4.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-racon-polish-with-long-reads-x4", + "workflow": "Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0" + ], + "workflowhub_id": "1154" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow for Trim and Filter Reads\n\n## Workflow steps\n```galaxy\nworkflow_display()\n```\n\n\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads R2\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 3[label=\"fastp on short reads\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n k656e413841ab4561898933de9ac9a2f3[color=lightseagreen,label=\"Output\\nfastp report on short reads html\"]\n 3 -> k656e413841ab4561898933de9ac9a2f3\n k0d53f347036847cb953a2e4dac57e013[color=lightseagreen,label=\"Output\\nfastp filtered R1 reads\"]\n 3 -> k0d53f347036847cb953a2e4dac57e013\n k10fbe1e5400c4ffe87949b776b0d7322[color=lightseagreen,label=\"Output\\nfastp report on short reads json\"]\n 3 -> k10fbe1e5400c4ffe87949b776b0d7322\n k639ed3f70e514e5db6f8081378962109[color=lightseagreen,label=\"Output\\nfastp filtered R2 reads\"]\n 3 -> k639ed3f70e514e5db6f8081378962109\n 4[label=\"fastp on long reads\"]\n 2 -> 4 [label=\"output\"]\n k5e0d2c3d41a44823ae9cb1e4d2826541[color=lightseagreen,label=\"Output\\nfastp report on long reads html\"]\n 4 -> k5e0d2c3d41a44823ae9cb1e4d2826541\n ke6018ad686f44e788cf2ccc8b97022fe[color=lightseagreen,label=\"Output\\nfastp filtered long reads\"]\n 4 -> ke6018ad686f44e788cf2ccc8b97022fe\n k69f8383ba1be4a7495f43dba35e01426[color=lightseagreen,label=\"Output\\nfastp report on long reads json\"]\n 4 -> k69f8383ba1be4a7495f43dba35e01426\n}", + "history": [ + { + "hash": "1fe24b92fd7cf3bf693a850751a6215f7b9273bd", + "message": "Update Galaxy-Workflow-Trim_and_filter_reads.ga", + "num": 5, + "short_hash": "1fe24b92f", + "unix": "1715074442" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "12f721099e26ef4bd152c1c2b56ccb51e6bd31ab", + "message": "Rename Galaxy-Workflow-Trim_and_filter_reads.ga to Galaxy-Workflow-Trim_and_filter_reads_old.ga", + "num": 3, + "short_hash": "12f721099", + "unix": "1714537350" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R1" + } + ], + "label": "Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 29.045160466974437 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "00a54054-e3f7-4e4f-9195-563e54df899a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R2" + } + ], + "label": "Illumina reads R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 145.03474842418325 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "14062fd8-1aa9-4a18-94d8-bbbb0e1a9262", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 576.5103981711648, + "top": 35.50348455255681 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "08eeb0d3-6ad6-4e7f-ac6a-d00c8e87fd08", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nIllumina reads R2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"fastp on short reads\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 656e4138-41ab-4561-8989-33de9ac9a2f3[\"Output\\nfastp report on short reads html\"];\n 3 --> 656e4138-41ab-4561-8989-33de9ac9a2f3;\n style 656e4138-41ab-4561-8989-33de9ac9a2f3 stroke:#2c3143,stroke-width:4px;\n 0d53f347-0368-47cb-953a-2e4dac57e013[\"Output\\nfastp filtered R1 reads\"];\n 3 --> 0d53f347-0368-47cb-953a-2e4dac57e013;\n style 0d53f347-0368-47cb-953a-2e4dac57e013 stroke:#2c3143,stroke-width:4px;\n 10fbe1e5-400c-4ffe-8794-9b776b0d7322[\"Output\\nfastp report on short reads json\"];\n 3 --> 10fbe1e5-400c-4ffe-8794-9b776b0d7322;\n style 10fbe1e5-400c-4ffe-8794-9b776b0d7322 stroke:#2c3143,stroke-width:4px;\n 639ed3f7-0e51-4e5d-b6f8-081378962109[\"Output\\nfastp filtered R2 reads\"];\n 3 --> 639ed3f7-0e51-4e5d-b6f8-081378962109;\n style 639ed3f7-0e51-4e5d-b6f8-081378962109 stroke:#2c3143,stroke-width:4px;\n 4[\"fastp on long reads\"];\n 2 -->|output| 4;\n 5e0d2c3d-41a4-4823-ae9c-b1e4d2826541[\"Output\\nfastp report on long reads html\"];\n 4 --> 5e0d2c3d-41a4-4823-ae9c-b1e4d2826541;\n style 5e0d2c3d-41a4-4823-ae9c-b1e4d2826541 stroke:#2c3143,stroke-width:4px;\n e6018ad6-86f4-4e78-8cf2-ccc8b97022fe[\"Output\\nfastp filtered long reads\"];\n 4 --> e6018ad6-86f4-4e78-8cf2-ccc8b97022fe;\n style e6018ad6-86f4-4e78-8cf2-ccc8b97022fe stroke:#2c3143,stroke-width:4px;\n 69f8383b-a1be-4a74-95f4-3dba35e01426[\"Output\\nfastp report on long reads json\"];\n 4 --> 69f8383b-a1be-4a74-95f4-3dba35e01426;\n style 69f8383b-a1be-4a74-95f4-3dba35e01426 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Trim and filter reads - fastp - upgraded ", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "single_paired|in1": { + "id": 0, + "output_name": "output" + }, + "single_paired|in2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + }, + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + } + ], + "label": "fastp on short reads", + "name": "fastp", + "outputs": [ + { + "name": "out1", + "type": "input" + }, + { + "name": "out2", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 290.5382191051136, + "top": 0 + }, + "post_job_actions": { + "DeleteIntermediatesActionout1": { + "action_arguments": {}, + "action_type": "DeleteIntermediatesAction", + "output_name": "out1" + }, + "RenameDatasetActionout1": { + "action_arguments": { + "newname": "fastp_filtered_R1.fastq.gz" + }, + "action_type": "RenameDatasetAction", + "output_name": "out1" + }, + "RenameDatasetActionout2": { + "action_arguments": { + "newname": "fastp_filtered_R2.fastq.gz" + }, + "action_type": "RenameDatasetAction", + "output_name": "out2" + }, + "RenameDatasetActionreport_html": { + "action_arguments": { + "newname": "fastp_illumina.html" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_html" + }, + "RenameDatasetActionreport_json": { + "action_arguments": { + "newname": "fastp_illumina.json" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c59d48774d03", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"paired\", \"__current_case__\": 1, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"in2\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": \"\", \"adapter_sequence2\": \"\"}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.23.4+galaxy0", + "type": "tool", + "uuid": "c38e84b3-771c-428e-9d2d-ce84d5e1153c", + "when": null, + "workflow_outputs": [ + { + "label": "fastp report on short reads html", + "output_name": "report_html", + "uuid": "656e4138-41ab-4561-8989-33de9ac9a2f3" + }, + { + "label": "fastp filtered R1 reads", + "output_name": "out1", + "uuid": "0d53f347-0368-47cb-953a-2e4dac57e013" + }, + { + "label": "fastp report on short reads json", + "output_name": "report_json", + "uuid": "10fbe1e5-400c-4ffe-8794-9b776b0d7322" + }, + { + "label": "fastp filtered R2 reads", + "output_name": "out2", + "uuid": "639ed3f7-0e51-4e5d-b6f8-081378962109" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "single_paired|in1": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + } + ], + "label": "fastp on long reads", + "name": "fastp", + "outputs": [ + { + "name": "out1", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 804.010509144176, + "top": 22.482646595348 + }, + "post_job_actions": { + "DeleteIntermediatesActionout1": { + "action_arguments": {}, + "action_type": "DeleteIntermediatesAction", + "output_name": "out1" + }, + "RenameDatasetActionout1": { + "action_arguments": { + "newname": "fastp_filtered_long_reads.fastq.gz" + }, + "action_type": "RenameDatasetAction", + "output_name": "out1" + }, + "RenameDatasetActionreport_html": { + "action_arguments": { + "newname": "fastp_longreads.html" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_html" + }, + "RenameDatasetActionreport_json": { + "action_arguments": { + "newname": "fastp_longreads.json" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c59d48774d03", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": true, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": true, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"-G\", \"__current_case__\": 2}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"single\", \"__current_case__\": 0, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": true, \"adapter_sequence1\": \"\"}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.23.4+galaxy0", + "type": "tool", + "uuid": "93602736-2d22-43e4-a53a-803326ccab9e", + "when": null, + "workflow_outputs": [ + { + "label": "fastp report on long reads html", + "output_name": "report_html", + "uuid": "5e0d2c3d-41a4-4823-ae9c-b1e4d2826541" + }, + { + "label": "fastp filtered long reads", + "output_name": "out1", + "uuid": "e6018ad6-86f4-4e78-8cf2-ccc8b97022fe" + }, + { + "label": "fastp report on long reads json", + "output_name": "report_json", + "uuid": "69f8383b-a1be-4a74-95f4-3dba35e01426" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Trim_and_filter_reads.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Trim and filter reads - fastp - upgraded ", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-trim-and-filter-reads", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Trim_and_filter_reads.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Trim_and_filter_reads.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-trim-and-filter-reads", + "workflow": "Galaxy-Workflow-Trim_and_filter_reads.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0" + ], + "workflowhub_id": "1144" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow Execution Report\n\n\r\n```galaxy\nworkflow_display()\n```\r\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"]\n 1[label=\"Meryl - count kmers\"]\n 0 -> 1 [label=\"output\"]\n k899ddd934c0f4f81a9738120494ed983[color=lightseagreen,label=\"Output\\nMeryl on input dataset(s): read-db.meryldb\"]\n 1 -> k899ddd934c0f4f81a9738120494ed983\n 2[label=\"Meryl - generate histogram\"]\n 1 -> 2 [label=\"read_db\"]\n 3[label=\"Genomescope\"]\n 2 -> 3 [label=\"read_db_hist\"]\n kefc727b61ef44c4c8cce35c7d3cc8aac[color=lightseagreen,label=\"Output\\nGenomeScope on input dataset(s) Transformed log plot\"]\n 3 -> kefc727b61ef44c4c8cce35c7d3cc8aac\n k701df341576744bcade26af498ab7467[color=lightseagreen,label=\"Output\\nGenomeScope on input dataset(s) Transformed linear plot\"]\n 3 -> k701df341576744bcade26af498ab7467\n k85fa4004b35147b384aa6788d338037a[color=lightseagreen,label=\"Output\\nGenomeScope on input dataset(s) Log plot\"]\n 3 -> k85fa4004b35147b384aa6788d338037a\n kc71ce05598f0435493972f8833b90cc4[color=lightseagreen,label=\"Output\\nGenomeScope on input dataset(s) Linear plot\"]\n 3 -> kc71ce05598f0435493972f8833b90cc4\n}", + "history": [ + { + "hash": "b74cf5a09d0d563d658d374ed6d287db85df3a8a", + "message": "Update Galaxy-Workflow-kmer_counting.ga", + "num": 5, + "short_hash": "b74cf5a09", + "unix": "1715074461" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "0be0483e2cbaa0ab18026da1f19f4b124d78e1c4", + "message": "Rename Galaxy-Workflow-kmer_counting.ga to Galaxy-Workflow-kmer_counting_old.ga", + "num": 3, + "short_hash": "0be0483e2", + "unix": "1714537366" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R1" + } + ], + "label": "Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 31.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3daa3f25-6fff-4766-9d45-b991fd6751a5", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Meryl - count kmers\"];\n 0 -->|output| 1;\n 899ddd93-4c0f-4f81-a973-8120494ed983[\"Output\\nMeryl on input dataset(s): read-db.meryldb\"];\n 1 --> 899ddd93-4c0f-4f81-a973-8120494ed983;\n style 899ddd93-4c0f-4f81-a973-8120494ed983 stroke:#2c3143,stroke-width:4px;\n 2[\"Meryl - generate histogram\"];\n 1 -->|read_db| 2;\n 3[\"Genomescope\"];\n 2 -->|read_db_hist| 3;\n efc727b6-1ef4-4c4c-8cce-35c7d3cc8aac[\"Output\\nGenomeScope on input dataset(s) Transformed log plot\"];\n 3 --> efc727b6-1ef4-4c4c-8cce-35c7d3cc8aac;\n style efc727b6-1ef4-4c4c-8cce-35c7d3cc8aac stroke:#2c3143,stroke-width:4px;\n 701df341-5767-44bc-ade2-6af498ab7467[\"Output\\nGenomeScope on input dataset(s) Transformed linear plot\"];\n 3 --> 701df341-5767-44bc-ade2-6af498ab7467;\n style 701df341-5767-44bc-ade2-6af498ab7467 stroke:#2c3143,stroke-width:4px;\n 85fa4004-b351-47b3-84aa-6788d338037a[\"Output\\nGenomeScope on input dataset(s) Log plot\"];\n 3 --> 85fa4004-b351-47b3-84aa-6788d338037a;\n style 85fa4004-b351-47b3-84aa-6788d338037a stroke:#2c3143,stroke-width:4px;\n c71ce055-98f0-4354-9397-2f8833b90cc4[\"Output\\nGenomeScope on input dataset(s) Linear plot\"];\n 3 --> c71ce055-98f0-4354-9397-2f8833b90cc4;\n style c71ce055-98f0-4354-9397-2f8833b90cc4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "kmer counting - meryl - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "errors": null, + "id": 1, + "input_connections": { + "operation_type|input_reads": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Meryl", + "name": "operation_type" + } + ], + "label": "Meryl - count kmers", + "name": "Meryl", + "outputs": [ + { + "name": "read_db", + "type": "meryldb" + } + ], + "position": { + "left": 228, + "top": 103.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "tool_shed_repository": { + "changeset_revision": "29dabd8db6f2", + "name": "meryl", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"operation_type\": {\"command_type\": \"count-kmers\", \"__current_case__\": 0, \"count_operations\": \"count\", \"input_reads\": {\"__class__\": \"RuntimeValue\"}, \"options_kmer_size\": {\"kmer_size\": \"provide\", \"__current_case__\": 0, \"input_kmer_size\": \"21\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3+galaxy6", + "type": "tool", + "uuid": "0a85d93b-8f53-4bc8-b89b-4be6f306f2c6", + "when": null, + "workflow_outputs": [ + { + "label": "Meryl on input dataset(s): read-db.meryldb", + "output_name": "read_db", + "uuid": "899ddd93-4c0f-4f81-a973-8120494ed983" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "errors": null, + "id": 2, + "input_connections": { + "operation_type|input_meryldb_02": { + "id": 1, + "output_name": "read_db" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Meryl", + "name": "operation_type" + } + ], + "label": "Meryl - generate histogram", + "name": "Meryl", + "outputs": [ + { + "name": "read_db_hist", + "type": "tabular" + } + ], + "position": { + "left": 465.5, + "top": 110 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "tool_shed_repository": { + "changeset_revision": "29dabd8db6f2", + "name": "meryl", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"operation_type\": {\"command_type\": \"histogram-kmers\", \"__current_case__\": 4, \"input_meryldb_02\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3+galaxy6", + "type": "tool", + "uuid": "80dbb867-84f7-4349-ae1d-1c7b87d0dce7", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "read_db_hist", + "uuid": "bf11e7cb-61a2-4c27-9aa1-4c7a42028330" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "read_db_hist" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool GenomeScope", + "name": "input" + } + ], + "label": "Genomescope", + "name": "GenomeScope", + "outputs": [ + { + "name": "linear_plot", + "type": "png" + }, + { + "name": "log_plot", + "type": "png" + }, + { + "name": "transformed_linear_plot", + "type": "png" + }, + { + "name": "transformed_log_plot", + "type": "png" + }, + { + "name": "model", + "type": "txt" + }, + { + "name": "summary", + "type": "txt" + }, + { + "name": "progress", + "type": "txt" + } + ], + "position": { + "left": 699.204345703125, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "01210c4e9144", + "name": "genomescope", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"topology\": null, \"initial_repetitiveness\": null, \"initial_heterozygosities\": \"\", \"transform_exp\": null, \"testing\": false, \"true_params\": \"\", \"trace_flag\": false, \"num_rounds\": null}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"kmer_length\": \"21\", \"lambda\": null, \"max_kmercov\": null, \"output_options\": {\"output_files\": [\"model_output\", \"summary_output\", \"progress_output\"], \"no_unique_sequence\": false}, \"ploidy\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0+galaxy2", + "type": "tool", + "uuid": "fa7a5012-8bd0-4b35-b337-249245e0932b", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "progress", + "uuid": "fedca588-8be6-4e13-9ff5-62387a5a90af" + }, + { + "label": "GenomeScope on input dataset(s) Transformed log plot", + "output_name": "transformed_log_plot", + "uuid": "efc727b6-1ef4-4c4c-8cce-35c7d3cc8aac" + }, + { + "label": null, + "output_name": "summary", + "uuid": "fd17af72-7c2a-4167-9880-7fbda525ccbb" + }, + { + "label": null, + "output_name": "model", + "uuid": "ede2b1a5-4017-4aef-a6d2-bac5d17bc7b5" + }, + { + "label": "GenomeScope on input dataset(s) Transformed linear plot", + "output_name": "transformed_linear_plot", + "uuid": "701df341-5767-44bc-ade2-6af498ab7467" + }, + { + "label": "GenomeScope on input dataset(s) Log plot", + "output_name": "log_plot", + "uuid": "85fa4004-b351-47b3-84aa-6788d338037a" + }, + { + "label": "GenomeScope on input dataset(s) Linear plot", + "output_name": "linear_plot", + "uuid": "c71ce055-98f0-4354-9397-2f8833b90cc4" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-kmer_counting.ga", + "tags": [ + "GTN", + "LG-WF" + ], + "test_results": null, + "tests": false, + "title": "kmer counting - meryl - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-kmer-counting", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-kmer_counting.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-kmer_counting.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-kmer-counting", + "workflow": "Galaxy-Workflow-kmer_counting.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6" + ], + "workflowhub_id": "1166" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.7055935" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "busco", + "owner": "iuc", + "revisions": "41030a6c03b7", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chromeister", + "owner": "iuc", + "revisions": "b768cc4cca40", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merqury", + "owner": "iuc", + "revisions": "f8113c25bc6b", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meryl", + "owner": "iuc", + "revisions": "29dabd8db6f2", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "3061c8b029e5", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: busco\n owner: iuc\n revisions: 41030a6c03b7\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chromeister\n owner: iuc\n revisions: b768cc4cca40\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merqury\n owner: iuc\n revisions: f8113c25bc6b\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meryl\n owner: iuc\n revisions: 29dabd8db6f2\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 3061c8b029e5\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-quality-control/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "email": "alexandre.cormier@ifremer.fr", + "id": "alexcorm", + "joined": "2021-11", + "name": "Alexandre Cormier", + "orcid": "0000-0002-7775-8413", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alexcorm/", + "twitter": "allanssx", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alexcorm.json" + }, + { + "email": "erwan.corre@sb-roscoff.fr", + "id": "r1corre", + "joined": "2019-04", + "name": "Erwan Corre", + "orcid": "0000-0001-6354-2278", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/r1corre/", + "twitter": "r1corre", + "url": "https://training.galaxyproject.org/training-material/api/contributors/r1corre.json" + }, + { + "email": "laura.leroi@ifremer.fr", + "id": "lleroi", + "joined": "2021-11", + "name": "Laura Leroi", + "orcid": "0000-0003-3748-4179", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lleroi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lleroi.json" + }, + { + "email": "stephanie.robin@inrae.fr", + "id": "stephanierobin", + "joined": "2021-11", + "name": "St\u00e9phanie Robin", + "orcid": "0000-0001-7379-9173", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stephanierobin/", + "twitter": "robinstphanie1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stephanierobin.json" + } + ], + "dir": "topics/assembly/tutorials/assembly-quality-control", + "edam_operation": [ + "Visualisation", + "Phasing", + "De-novo assembly", + "Sequence assembly validation", + "Transcriptome assembly", + "Genome assembly", + "k-mer counting", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "repeatmasker" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "assembly/assembly-quality-control", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Quast, BUSCO and Merqury make it easy to assess the quality of an assembly", + "Post-processing can be necessary (purging, scaffolding) before annotation" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Assess assembly quality" + ], + "pageviews": 2770269, + "pub_date": "2022-08-26", + "questions": [ + "Is my genome assembly ready for annotation and/or scaffolding?" + ], + "short_id": "T00028", + "short_tools": [ + "busco", + "merqury", + "quast", + "meryl", + "chromeister" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "assembly", + "quality control" + ], + "time_estimation": "2h", + "title": "Genome Assembly Quality Control", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.3.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "assembly-quality-control", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/assembly-quality-control/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-quality-control/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-quality-control/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 265, + "visitors": 1159110, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "", + "name": "Erwan Corre" + }, + { + "class": "Person", + "identifier": "", + "name": "St\u00e9phanie Robin" + }, + { + "class": "Person", + "identifier": "", + "name": "Anthony Bretaudeau" + }, + { + "class": "Person", + "identifier": "", + "name": "Alexandre Cormier" + }, + { + "class": "Person", + "identifier": "", + "name": "Laura Leroi" + } + ], + "description": "Genome assembly quality control using PacBio data and with reference genome", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGCA_000146045.2_genomic.fna\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nScerevisiae-INSC1019.flye.30x.fa\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nScerevisiae-INSC1019.hifiasm.30x.fa\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRR13577847_subreads.30x.fastq.gz\"]\n 4[label=\"Busco\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Busco\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Quast\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Busco\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Chromeister\"]\n 0 -> 8 [label=\"output\"]\n 2 -> 8 [label=\"output\"]\n 9[label=\"Meryl\"]\n 3 -> 9 [label=\"output\"]\n 10[label=\"Merqury\"]\n 0 -> 10 [label=\"output\"]\n 9 -> 10 [label=\"read_db\"]\n 11[label=\"Merqury\"]\n 1 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"read_db\"]\n 12[label=\"Merqury\"]\n 2 -> 12 [label=\"output\"]\n 9 -> 12 [label=\"read_db\"]\n}", + "history": [ + { + "hash": "9e51f44fe902a2db9db2b2895df49c788990df15", + "message": "Genome assembly quality control (#3120)", + "num": 1, + "short_hash": "9e51f44fe", + "unix": "1661523060" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GCA_000146045.2_genomic.fna" + } + ], + "label": "GCA_000146045.2_genomic.fna", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "67e22573-10a9-4a09-bc6b-ad54147f931a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Scerevisiae-INSC1019.flye.30x.fa" + } + ], + "label": "Scerevisiae-INSC1019.flye.30x.fa", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "056f45e5-b3d7-4d43-8c87-497977c8b9f6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Scerevisiae-INSC1019.hifiasm.30x.fa" + } + ], + "label": "Scerevisiae-INSC1019.hifiasm.30x.fa", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "e812ab39-31c2-4595-8f11-f1e939e68704", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR13577847_subreads.30x.fastq.gz" + } + ], + "label": "SRR13577847_subreads.30x.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "f0a31b4f-fdf0-4417-9300-a4e52dc60580", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGCA_000146045.2_genomic.fna\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nScerevisiae-INSC1019.flye.30x.fa\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nScerevisiae-INSC1019.hifiasm.30x.fa\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nSRR13577847_subreads.30x.fastq.gz\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Busco\"];\n 0 -->|output| 4;\n 5[\"Busco\"];\n 1 -->|output| 5;\n 6[\"Quast\"];\n 0 -->|output| 6;\n 1 -->|output| 6;\n 2 -->|output| 6;\n 7[\"Busco\"];\n 2 -->|output| 7;\n 8[\"Chromeister\"];\n 0 -->|output| 8;\n 2 -->|output| 8;\n 9[\"Meryl\"];\n 3 -->|output| 9;\n 10[\"Merqury\"];\n 0 -->|output| 10;\n 9 -->|read_db| 10;\n 11[\"Merqury\"];\n 1 -->|output| 11;\n 9 -->|read_db| 11;\n 12[\"Merqury\"];\n 2 -->|output| 12;\n 9 -->|read_db| 12;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "Genome Assembly Quality Control", + "outputs": [], + "parent_id": "assembly/assembly-quality-control", + "path": "topics/assembly/tutorials/assembly-quality-control/workflows/main_workflow.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": false, + "title": "Genome Assembly Quality Control", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-quality-control/versions/main-workflow", + "tutorial_id": "assembly-quality-control", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-quality-control/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-quality-control/workflows/main_workflow.html", + "version": 1, + "wfid": "assembly-assembly-quality-control", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.3.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0" + ], + "workflowhub_id": "1128" + } + ], + "zenodo_link": "https://zenodo.org/record/6947782" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "flye", + "owner": "bgruening", + "revisions": "276f5d8712d5", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "0d243f458b53", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "46ae58b1d792", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "0dbb995c7d35", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "7594365c546b", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: flye\n owner: bgruening\n revisions: 276f5d8712d5\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 0d243f458b53\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 46ae58b1d792\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 0dbb995c7d35\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 7594365c546b\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/flye-assembly/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "email": "alexandre.cormier@ifremer.fr", + "id": "alexcorm", + "joined": "2021-11", + "name": "Alexandre Cormier", + "orcid": "0000-0002-7775-8413", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alexcorm/", + "twitter": "allanssx", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alexcorm.json" + }, + { + "email": "erwan.corre@sb-roscoff.fr", + "id": "r1corre", + "joined": "2019-04", + "name": "Erwan Corre", + "orcid": "0000-0001-6354-2278", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/r1corre/", + "twitter": "r1corre", + "url": "https://training.galaxyproject.org/training-material/api/contributors/r1corre.json" + }, + { + "email": "laura.leroi@ifremer.fr", + "id": "lleroi", + "joined": "2021-11", + "name": "Laura Leroi", + "orcid": "0000-0003-3748-4179", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lleroi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lleroi.json" + }, + { + "email": "stephanie.robin@inrae.fr", + "id": "stephanierobin", + "joined": "2021-11", + "name": "St\u00e9phanie Robin", + "orcid": "0000-0001-7379-9173", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stephanierobin/", + "twitter": "robinstphanie1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stephanierobin.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/assembly/tutorials/flye-assembly", + "edam_operation": [ + "Visualisation", + "De-novo assembly", + "Sequence assembly validation", + "Mapping assembly", + "Transcriptome assembly", + "Cross-assembly", + "Genome assembly", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "repeatmasker" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "assembly/flye-assembly", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "PacBio data allows to perform good quality genome assembly", + "Quast and BUSCO make it easy to compare the quality of assemblies" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Assemble a Genome with PacBio data", + "Assess assembly quality" + ], + "pageviews": 4471, + "pub_date": "2021-11-29", + "questions": [ + "How to perform a genome assembly with PacBio data ?", + "How to check assembly quality ?" + ], + "short_id": "T00033", + "short_tools": [ + "fasta-stats", + "flye", + "quast", + "busco" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "assembly", + "pacbio" + ], + "time_estimation": "6h", + "title": "Genome assembly using PacBio data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.2.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.2.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy3" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "flye-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/flye-assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/flye-assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/flye-assembly/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 118, + "visitors": 3238, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "", + "name": "Erwan Corre" + }, + { + "class": "Person", + "identifier": "", + "name": "St\u00e9phanie Robin" + }, + { + "class": "Person", + "identifier": "", + "name": "Anthony Bretaudeau" + }, + { + "class": "Person", + "identifier": "", + "name": "Alexandre Cormier" + } + ], + "description": "Genome Assembly using PacBio data and Flye assembler", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPacBio reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome\"]\n 2[label=\"Flye\"]\n 0 -> 2 [label=\"output\"]\n kd7badcb24d384ddab89bb4bd3ffbc64a[color=lightseagreen,label=\"Output\\nFlye on input dataset(s): assembly info\"]\n 2 -> kd7badcb24d384ddab89bb4bd3ffbc64a\n kc8f96c22e06e4fecbbfad993b7b103eb[color=lightseagreen,label=\"Output\\nFlye on input dataset(s): consensus\"]\n 2 -> kc8f96c22e06e4fecbbfad993b7b103eb\n ka288fb935aa5423189e4958c57106978[color=lightseagreen,label=\"Output\\nFlye on input dataset(s): graphical fragment assembly\"]\n 2 -> ka288fb935aa5423189e4958c57106978\n k0e0641815cd442c898f9fe417303956c[color=lightseagreen,label=\"Output\\nFlye on input dataset(s): assembly graph\"]\n 2 -> k0e0641815cd442c898f9fe417303956c\n 3[label=\"Fasta Statistics\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Busco\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Fasta Statistics\"]\n 2 -> 5 [label=\"consensus\"]\n 6[label=\"Quast\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"consensus\"]\n kbea191cbf88d4103b8fab3683d77cc93[color=lightseagreen,label=\"Output\\nQuast on input dataset(s): HTML report\"]\n 6 -> kbea191cbf88d4103b8fab3683d77cc93\n 7[label=\"Busco\"]\n 2 -> 7 [label=\"consensus\"]\n}", + "history": [ + { + "hash": "6e12dcba4982df8a8c154f51242a45ae66e32aa9", + "message": "update quast", + "num": 4, + "short_hash": "6e12dcba4", + "unix": "1638177109" + }, + { + "hash": "a086911d08bd6aaaee479fc075bb8d64ff1265a6", + "message": "update workflow + minor changes", + "num": 3, + "short_hash": "a086911d0", + "unix": "1637938578" + }, + { + "hash": "b8606bace2788251cf703b48a07c34c5897bfc23", + "message": "flye-assembly workflow modified with new tools versions", + "num": 2, + "short_hash": "b8606bace", + "unix": "1637931503" + }, + { + "hash": "e817e8cfdf08abdb2d4dee03fd7461c008807ee2", + "message": "added flye assembly tutorial", + "num": 1, + "short_hash": "e817e8cfd", + "unix": "1635261060" + } + ], + "inputs": [ + { + "annotation": "PacBio reads in fastq format", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "PacBio reads in fastq format", + "name": "PacBio reads" + } + ], + "label": "PacBio reads", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 242.1999969482422, + "height": 82.19999694824219, + "left": 253.5, + "right": 453.5, + "top": 160, + "width": 200, + "x": 253.5, + "y": 160 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fastqsanger.gz\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "022ec16e-3c15-45db-99c0-167a7d3121fe", + "workflow_outputs": [] + }, + { + "annotation": "Reference genome from JGI", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Reference genome from JGI", + "name": "Reference genome" + } + ], + "label": "Reference genome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 418.1999969482422, + "height": 82.19999694824219, + "left": 255, + "right": 455, + "top": 336, + "width": 200, + "x": 255, + "y": 336 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "abf0462d-3f02-4be7-8079-a97f496b4683", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPacBio reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference genome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Flye\"];\n 0 -->|output| 2;\n d7badcb2-4d38-4dda-b89b-b4bd3ffbc64a[\"Output\\nFlye on input dataset(s): assembly info\"];\n 2 --> d7badcb2-4d38-4dda-b89b-b4bd3ffbc64a;\n style d7badcb2-4d38-4dda-b89b-b4bd3ffbc64a stroke:#2c3143,stroke-width:4px;\n c8f96c22-e06e-4fec-bbfa-d993b7b103eb[\"Output\\nFlye on input dataset(s): consensus\"];\n 2 --> c8f96c22-e06e-4fec-bbfa-d993b7b103eb;\n style c8f96c22-e06e-4fec-bbfa-d993b7b103eb stroke:#2c3143,stroke-width:4px;\n a288fb93-5aa5-4231-89e4-958c57106978[\"Output\\nFlye on input dataset(s): graphical fragment assembly\"];\n 2 --> a288fb93-5aa5-4231-89e4-958c57106978;\n style a288fb93-5aa5-4231-89e4-958c57106978 stroke:#2c3143,stroke-width:4px;\n 0e064181-5cd4-42c8-98f9-fe417303956c[\"Output\\nFlye on input dataset(s): assembly graph\"];\n 2 --> 0e064181-5cd4-42c8-98f9-fe417303956c;\n style 0e064181-5cd4-42c8-98f9-fe417303956c stroke:#2c3143,stroke-width:4px;\n 3[\"Fasta Statistics\"];\n 1 -->|output| 3;\n 4[\"Busco\"];\n 1 -->|output| 4;\n 5[\"Fasta Statistics\"];\n 2 -->|consensus| 5;\n 6[\"Quast\"];\n 1 -->|output| 6;\n 2 -->|consensus| 6;\n bea191cb-f88d-4103-b8fa-b3683d77cc93[\"Output\\nQuast on input dataset(s): HTML report\"];\n 6 --> bea191cb-f88d-4103-b8fa-b3683d77cc93;\n style bea191cb-f88d-4103-b8fa-b3683d77cc93 stroke:#2c3143,stroke-width:4px;\n 7[\"Busco\"];\n 2 -->|consensus| 7;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Genome Assembly using PacBio data", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "inputs": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Flye", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + } + ], + "position": { + "bottom": 441.8999938964844, + "height": 286.3999938964844, + "left": 547.5, + "right": 747.5, + "top": 155.5, + "width": 200, + "x": 547.5, + "y": 155.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "276f5d8712d5", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"asm\": {\"asm_select\": \"false\", \"__current_case__\": 1}, \"generate_log\": \"false\", \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"iterations\": \"1\", \"keep_haplotypes\": \"false\", \"meta\": \"false\", \"min_overlap\": null, \"mode_conditional\": {\"mode\": \"--pacbio-raw\", \"__current_case__\": 3}, \"scaffold\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.9+galaxy0", + "type": "tool", + "uuid": "b46b2319-5fa8-4055-817f-15eea86c4049", + "workflow_outputs": [ + { + "label": "Flye on input dataset(s): assembly info", + "output_name": "assembly_info", + "uuid": "d7badcb2-4d38-4dda-b89b-b4bd3ffbc64a" + }, + { + "label": "Flye on input dataset(s): consensus", + "output_name": "consensus", + "uuid": "c8f96c22-e06e-4fec-bbfa-d993b7b103eb" + }, + { + "label": "Flye on input dataset(s): graphical fragment assembly", + "output_name": "assembly_gfa", + "uuid": "a288fb93-5aa5-4231-89e4-958c57106978" + }, + { + "label": "Flye on input dataset(s): assembly graph", + "output_name": "assembly_graph", + "uuid": "0e064181-5cd4-42c8-98f9-fe417303956c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 5, + "input_connections": { + "fasta": { + "id": 2, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "bottom": 278.3999938964844, + "height": 154.39999389648438, + "left": 905, + "right": 1105, + "top": 124, + "width": 200, + "x": 905, + "y": 124 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": \"false\", \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "6ec5c36e-0b3d-41b9-9cc8-899350540545", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats_output", + "uuid": "400afe45-b895-41aa-a2b9-3c222c344f7b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy3", + "errors": null, + "id": 6, + "input_connections": { + "assembly|ref|r": { + "id": 1, + "output_name": "output" + }, + "in|inputs": { + "id": 2, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Quast", + "name": "in" + } + ], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "bottom": 593, + "height": 266, + "left": 902.5, + "right": 1102.5, + "top": 327, + "width": 200, + "x": 902.5, + "y": 327 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy3", + "tool_shed_repository": { + "changeset_revision": "7594365c546b", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": \"false\", \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": \"true\", \"fragmented_max_indent\": null}, \"alignments\": {\"use_all_alignments\": \"false\", \"min_alignment\": \"65\", \"min_identity\": \"95.0\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": \"false\", \"upper_bound_assembly\": \"false\", \"upper_bound_min_con\": null}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"true\", \"__current_case__\": 0, \"r\": {\"__class__\": \"RuntimeValue\"}, \"features\": {\"__class__\": \"RuntimeValue\"}, \"operons\": {\"__class__\": \"RuntimeValue\"}, \"k_mer\": {\"k_mer_stats\": \"\", \"__current_case__\": 1}, \"circos\": \"false\"}, \"orga_type\": \"--fungus\"}, \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": \"false\", \"conserved_genes_finding\": \"false\"}, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"RuntimeValue\"}}, \"large\": \"false\", \"min_contig\": \"500\", \"output_files\": [\"html\"], \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}, \"split_scaffolds\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.2+galaxy3", + "type": "tool", + "uuid": "f734c70b-03c8-4fc3-8350-27a7230cbd58", + "workflow_outputs": [ + { + "label": "Quast on input dataset(s): HTML report", + "output_name": "report_html", + "uuid": "bea191cb-f88d-4103-b8fa-b3683d77cc93" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.2.2+galaxy2", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 2, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + } + ], + "position": { + "bottom": 847.1999969482422, + "height": 205.1999969482422, + "left": 906.5, + "right": 1106.5, + "top": 642, + "width": 200, + "x": 906.5, + "y": 642 + }, + "post_job_actions": { + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.2.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "46ae58b1d792", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": \"mucorales_odb10\"}, \"outputs\": [\"short_summary\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.2+galaxy2", + "type": "tool", + "uuid": "fb896bc9-5ebd-41a1-82a7-1dae23e23dac", + "workflow_outputs": [ + { + "label": null, + "output_name": "busco_sum", + "uuid": "5a62f2bb-17ec-4091-985f-bd9c69f9fe61" + } + ] + } + ], + "parent_id": "assembly/flye-assembly", + "path": "topics/assembly/tutorials/flye-assembly/workflows/main_workflow.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": false, + "title": "Genome Assembly using PacBio data", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-flye-assembly/versions/main-workflow", + "tutorial_id": "flye-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/flye-assembly/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/flye-assembly/workflows/main_workflow.html", + "version": 1, + "wfid": "assembly-flye-assembly", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.2.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy3" + ], + "workflowhub_id": "1131" + } + ], + "zenodo_link": "https://zenodo.org/record/5702408" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unique", + "owner": "bgruening", + "revisions": "7ce75adb93be", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools", + "owner": "devteam", + "revisions": "befc9dad4ca8", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "f6877ad76b00", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "03e9b2fbc005", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "21e491ad532a", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "21e491ad532a", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "coverm_contig", + "owner": "iuc", + "revisions": "6941d0d453ba", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filter_tabular", + "owner": "iuc", + "revisions": "34d29339abab", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "megahit", + "owner": "iuc", + "revisions": "14ddfc8ffb93", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "megahit_contig2fastg", + "owner": "iuc", + "revisions": "4ec5b3777508", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ngsutils_bam_filter", + "owner": "iuc", + "revisions": "2e957d4c4b95", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "3061c8b029e5", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "5915ea1ec9b1", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaspades", + "owner": "nml", + "revisions": "fd128c111ab0", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unique\n owner: bgruening\n revisions: 7ce75adb93be\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools\n owner: devteam\n revisions: befc9dad4ca8\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: f6877ad76b00\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: 03e9b2fbc005\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 21e491ad532a\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 21e491ad532a\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: coverm_contig\n owner: iuc\n revisions: 6941d0d453ba\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filter_tabular\n owner: iuc\n revisions: 34d29339abab\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: megahit\n owner: iuc\n revisions: 14ddfc8ffb93\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: megahit_contig2fastg\n owner: iuc\n revisions: 4ec5b3777508\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ngsutils_bam_filter\n owner: iuc\n revisions: 2e957d4c4b95\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 3061c8b029e5\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 5915ea1ec9b1\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaspades\n owner: nml\n revisions: fd128c111ab0\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/metagenomics-assembly/tutorial.json", + "contributions": { + "authorship": [ + "plushz", + "bebatut" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "id": "plushz", + "joined": "2022-03", + "name": "Polina Polunina", + "orcid": "0000-0002-0507-4602", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/plushz/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/plushz.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/assembly/tutorials/metagenomics-assembly", + "edam_ontology": [ + "topic_3174", + "topic_0196" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Primer removal", + "Sequence file editing", + "Formatting", + "Read mapping", + "Sequence assembly validation", + "Sequence composition calculation", + "Sequence assembly visualisation", + "Local alignment", + "Genome assembly", + "Sequence trimming", + "Statistical calculation", + "Sequence contamination filtering", + "Sequence alignment analysis", + "Read pre-processing", + "Data handling", + "Variant calling" + ], + "edam_topic": [ + "Metagenomics", + "Sequence assembly" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/metagenomics-assembly", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "js_requirements": { + "mathjax": 25185, + "mermaid": false + }, + "key_points": [ + "Assembly groups reads into contigs and scafolds.", + "De Brujin Graphs use k-mers to assembly reads", + "MetaSPAdes and MEGAHIT are assemblers", + "Quast is the tool to assess the assembly quality" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-18", + "objectives": [ + "Describe what an assembly is", + "Describe what de-replication is", + "Explain the difference between co-assembly and individual assembly", + "Explain the difference between reads, contigs and scaffolds", + "Explain how tools based on De Bruijn graph work", + "Apply appropriate tools for analyzing the quality of metagenomic data", + "Construct and apply simple assembly pipelines on short read data", + "Apply appropriate tools for analyzing the quality of metagenomic assembly", + "Evaluate the Quality of the Assembly with Quast, Bowtie2, and CoverM-Genome" + ], + "pageviews": 2, + "pub_date": "2024-08-18", + "questions": [ + "Why metagenomic data should be assembled?", + "What is the difference between co-assembly and individual assembly?", + "What is the difference between reads, contigs and scaffolds?", + "How tools based on De Bruijn graph work?", + "How to assess the quality of metagenomic data assembly?" + ], + "recordings": [ + { + "captioners": [ + "bebatut", + "sophia120199" + ], + "date": "2023-05-02", + "galaxy_version": "23.01", + "length": "1H", + "speakers": [ + "bebatut" + ], + "youtube_id": "1ZYGy85Im7w" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metagenomics-assembly/tutorial", + "/short/assembly/metagenomics-assembly", + "/short/T00035" + ], + "short_id": "T00035", + "short_tools": [ + "bg_uniq", + "megahit_contig2fastg", + "ngsutils_bam_filter", + "megahit", + "bowtie2", + "tp_cat", + "quast", + "random_lines1", + "collection_column_join", + "filter_tabular", + "seqtk_subseq", + "fastqc", + "bandage_info", + "coverm_contig", + "bandage_image", + "bamtools", + "cutadapt", + "metaspades" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ] + }, + "symlink": true, + "tags": [ + "assembly", + "metagenomics", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Assembly of metagenomic sequencing data", + "tools": [ + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/coverm_contig/coverm_contig/0.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy10", + "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metagenomics-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/metagenomics-assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/metagenomics-assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/metagenomics-assembly/tutorial.json" + }, + "version": 0, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 6, + "visitors": 2, + "workflows": [ + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[label=\"metaSPAdes\"]\n 0 -> 1 [label=\"output\"]\n k833d79ffe16f414c9c41db8dbfa8ed6b[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Scaffolds\"]\n 1 -> k833d79ffe16f414c9c41db8dbfa8ed6b\n k10319152d2f947d8be41f956a57e86d3[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Assembly graph\"]\n 1 -> k10319152d2f947d8be41f956a57e86d3\n kb1ffc3a48e394255ac57fd7cfb9c1633[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Assembly graph with scaffolds\"]\n 1 -> kb1ffc3a48e394255ac57fd7cfb9c1633\n kb6b74c9d5a164725a1d111c1f05ee909[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Contigs\"]\n 1 -> kb6b74c9d5a164725a1d111c1f05ee909\n 2[label=\"MEGAHIT\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Bowtie2\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"megahit contig2fastg\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Quast\"]\n 2 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Bandage Image\"]\n 4 -> 6 [label=\"fastg\"]\n 7[label=\"Bandage Info\"]\n 4 -> 7 [label=\"fastg\"]\n 8[label=\"Column join\"]\n 7 -> 8 [label=\"outfile\"]\n}", + "history": [], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 480 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cdb65097-d956-4715-9cd4-fadc9b0c07c5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c8ca2f5f-b0f4-4d90-8259-9e4796c4a35f" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"metaSPAdes\"];\n 0 -->|output| 1;\n 833d79ff-e16f-414c-9c41-db8dbfa8ed6b[\"Output\\nmetaSPAdes on input dataset(s): Scaffolds\"];\n 1 --> 833d79ff-e16f-414c-9c41-db8dbfa8ed6b;\n style 833d79ff-e16f-414c-9c41-db8dbfa8ed6b stroke:#2c3143,stroke-width:4px;\n 10319152-d2f9-47d8-be41-f956a57e86d3[\"Output\\nmetaSPAdes on input dataset(s): Assembly graph\"];\n 1 --> 10319152-d2f9-47d8-be41-f956a57e86d3;\n style 10319152-d2f9-47d8-be41-f956a57e86d3 stroke:#2c3143,stroke-width:4px;\n b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633[\"Output\\nmetaSPAdes on input dataset(s): Assembly graph with scaffolds\"];\n 1 --> b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633;\n style b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633 stroke:#2c3143,stroke-width:4px;\n b6b74c9d-5a16-4725-a1d1-11c1f05ee909[\"Output\\nmetaSPAdes on input dataset(s): Contigs\"];\n 1 --> b6b74c9d-5a16-4725-a1d1-11c1f05ee909;\n style b6b74c9d-5a16-4725-a1d1-11c1f05ee909 stroke:#2c3143,stroke-width:4px;\n 2[\"MEGAHIT\"];\n 0 -->|output| 2;\n 3[\"Bowtie2\"];\n 0 -->|output| 3;\n 2 -->|output| 3;\n 4[\"megahit contig2fastg\"];\n 2 -->|output| 4;\n 5[\"Quast\"];\n 2 -->|output| 5;\n 0 -->|output| 5;\n 6[\"Bandage Image\"];\n 4 -->|fastg| 6;\n 7[\"Bandage Info\"];\n 4 -->|fastg| 7;\n 8[\"Column join\"];\n 7 -->|outfile| 8;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Metagenomics assembly tutorial workflow", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 480 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cdb65097-d956-4715-9cd4-fadc9b0c07c5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c8ca2f5f-b0f4-4d90-8259-9e4796c4a35f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2", + "errors": null, + "id": 1, + "input_connections": { + "singlePaired|input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool metaSPAdes", + "name": "arf" + }, + { + "description": "runtime parameter for tool metaSPAdes", + "name": "arf" + }, + { + "description": "runtime parameter for tool metaSPAdes", + "name": "singlePaired" + } + ], + "label": null, + "name": "metaSPAdes", + "outputs": [ + { + "name": "out_ag", + "type": "fastg" + }, + { + "name": "out_ags", + "type": "txt" + }, + { + "name": "out_cn", + "type": "fasta" + }, + { + "name": "out_sc", + "type": "fasta" + } + ], + "position": { + "left": 247.0, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "fd128c111ab0", + "name": "metaspades", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"additional_reads\": {\"selector\": \"false\", \"__current_case__\": 1}, \"arf\": {\"nanopore\": {\"__class__\": \"RuntimeValue\"}, \"pacbio\": {\"__class__\": \"RuntimeValue\"}}, \"kmer_cond\": {\"kmer_sel\": \"manual\", \"__current_case__\": 1, \"manual\": \"21,33,55,77\"}, \"library_number\": \"true\", \"mode_sel\": null, \"optional_output\": [\"ag\", \"ags\", \"cn\", \"sc\"], \"phred_offset\": \"auto\", \"singlePaired\": {\"sPaired\": \"paired_collection\", \"__current_case__\": 2, \"input\": {\"__class__\": \"RuntimeValue\"}, \"type_paired\": \"pe\", \"orientation\": \"fr\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.15.4+galaxy2", + "type": "tool", + "uuid": "7dc08460-f398-4f1d-9f30-1736cf636a13", + "workflow_outputs": [ + { + "label": "metaSPAdes on input dataset(s): Scaffolds", + "output_name": "out_sc", + "uuid": "833d79ff-e16f-414c-9c41-db8dbfa8ed6b" + }, + { + "label": "metaSPAdes on input dataset(s): Assembly graph", + "output_name": "out_ag", + "uuid": "10319152-d2f9-47d8-be41-f956a57e86d3" + }, + { + "label": "metaSPAdes on input dataset(s): Assembly graph with scaffolds", + "output_name": "out_ags", + "uuid": "b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633" + }, + { + "label": "metaSPAdes on input dataset(s): Contigs", + "output_name": "out_cn", + "uuid": "b6b74c9d-5a16-4725-a1d1-11c1f05ee909" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_option|batchmode|pair_input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MEGAHIT", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 278.0, + "top": 464 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "14ddfc8ffb93", + "name": "megahit", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"advanced_section\": {\"nomercy\": \"false\", \"bubble_level\": \"2\", \"merge_level\": \"20,0.95\", \"prune_level\": \"2\", \"prune_depth\": \"2\", \"disconnect_ratio\": \"0.1\", \"low_local_ratio\": \"0.2\", \"cleaning_rounds\": \"5\", \"nolocal\": \"false\", \"kmin1pass\": \"false\"}, \"basic_section\": {\"min_count\": \"2\", \"k_mer\": {\"k_mer_method\": \"klim_method\", \"__current_case__\": 1, \"k_min\": \"21\", \"k_max\": \"91\", \"k_step\": \"12\"}}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_option\": {\"choice\": \"paired_collection\", \"__current_case__\": 3, \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"pair_input\": {\"__class__\": \"ConnectedValue\"}}}, \"output_section\": {\"min_contig_len\": \"200\", \"show_intermediate_contigs\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.9+galaxy0", + "type": "tool", + "uuid": "ffbb16f2-580a-4832-8b6d-e67932e24b27", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "061ac8dd-de43-467d-9c15-a4f46a125103" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "reference_genome|own_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 556.0, + "top": 130 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "03e9b2fbc005", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"own_file|__identifier__\": \"ERR2231567\", \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.0+galaxy0", + "type": "tool", + "uuid": "9f445c6b-31c9-4ff0-b559-6be00fb0fc17", + "workflow_outputs": [ + { + "label": null, + "output_name": "mapping_stats", + "uuid": "ff350260-91cd-4f01-a82f-f64e8eddd4ed" + }, + { + "label": null, + "output_name": "output", + "uuid": "2fa389b6-088a-4686-94e9-de884f86e1b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "contigs": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "megahit contig2fastg", + "outputs": [ + { + "name": "fastg", + "type": "fastg" + } + ], + "position": { + "left": 556.0, + "top": 444 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "4ec5b3777508", + "name": "megahit_contig2fastg", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contigs\": {\"__class__\": \"ConnectedValue\"}, \"contigs|__identifier__\": \"ERR2231567\", \"kmer\": \"91\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3+galaxy1", + "type": "tool", + "uuid": "c839a8b8-c719-474d-957e-d94614491f13", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastg", + "uuid": "91718981-2ae5-4cdd-8007-0ce9cc3c68f6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "in|inputs": { + "id": 2, + "output_name": "output" + }, + "reads|input_1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "metrics_tabular", + "type": "input" + }, + { + "name": "metrics_pdf", + "type": "input" + }, + { + "name": "report_tabular_meta", + "type": "tabular" + }, + { + "name": "report_html_meta", + "type": "html" + }, + { + "name": "log_meta", + "type": "txt" + }, + { + "name": "krona", + "type": "html" + } + ], + "position": { + "left": 556.0, + "top": 636 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3061c8b029e5", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": \"false\", \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": \"true\", \"fragmented_max_indent\": null, \"report_all_metrics\": \"false\", \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": \"false\", \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": \"false\", \"upper_bound_assembly\": \"false\", \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"metagenome\", \"__current_case__\": 1, \"ref\": {\"origin\": \"none\", \"__current_case__\": 3}, \"reuse_combined_alignments\": \"false\", \"min_identity\": \"90.0\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": \"false\", \"conserved_genes_finding\": \"false\"}, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"large\": \"false\", \"min_contig\": \"500\", \"output_files\": [\"html\", \"pdf\", \"tabular\", \"log\", \"summary\", \"krona\"], \"reads\": {\"reads_option\": \"paired_collection\", \"__current_case__\": 3, \"input_1\": {\"__class__\": \"ConnectedValue\"}}, \"split_scaffolds\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy0", + "type": "tool", + "uuid": "12072d4c-8ad5-4de1-bbe2-3b081b8373be", + "workflow_outputs": [ + { + "label": null, + "output_name": "log_meta", + "uuid": "33c6424f-fceb-45d1-9462-ea3e7cda79ea" + }, + { + "label": null, + "output_name": "krona", + "uuid": "44457a4b-760c-4080-b552-dc4724906b2c" + }, + { + "label": null, + "output_name": "metrics_tabular", + "uuid": "9b2b72ac-a297-46a2-883f-8f1704664cf3" + }, + { + "label": null, + "output_name": "report_tabular_meta", + "uuid": "1259f3a1-4952-48f1-be69-0fde3b6be9de" + }, + { + "label": null, + "output_name": "report_html_meta", + "uuid": "b8f1b46c-1421-4952-9e87-1790bdd076df" + }, + { + "label": null, + "output_name": "metrics_pdf", + "uuid": "ac4aa63b-5dc1-4b4c-bbb0-6afce689f0d2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "errors": null, + "id": 6, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "fastg" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 834.0, + "top": 466 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "21e491ad532a", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"input_file|__identifier__\": \"ERR2231567\", \"lengths\": \"false\", \"names\": \"false\", \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy4", + "type": "tool", + "uuid": "31b35530-ae7f-4e9c-8021-6983cf3f3401", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "e02c022d-3067-40ce-8bb6-4cc258d8523a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "fastg" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 834.0, + "top": 679 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b9e31c5c01c7", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"input_file|__identifier__\": \"ERR2231567\", \"tsv\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "b63e03dc-b9be-4a72-ac81-64b63ddf99f2", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "6bd3194a-9e8c-4677-b42c-2fb3bd1116f3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "errors": null, + "id": 8, + "input_connections": { + "input_tabular": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Column join", + "outputs": [ + { + "name": "tabular_output", + "type": "tabular" + } + ], + "position": { + "left": 1112.0, + "top": 732 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "tool_shed_repository": { + "changeset_revision": "3ddd99c7efee", + "name": "collection_column_join", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fill_char\": \".\", \"has_header\": \"0\", \"identifier_column\": \"1\", \"include_outputs\": null, \"input_tabular\": {\"__class__\": \"ConnectedValue\"}, \"old_col_in_header\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.3", + "type": "tool", + "uuid": "e9dc42b2-c638-4b9c-af5f-ce84f6b0d654", + "workflow_outputs": [ + { + "label": null, + "output_name": "tabular_output", + "uuid": "fe5b4460-6fa0-48a8-84e7-b3b8270e9b8f" + } + ] + } + ], + "parent_id": "assembly/metagenomics-assembly", + "path": "topics/assembly/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "Metagenomics assembly tutorial workflow", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-metagenomics-assembly/versions/metagenomics-assembly-tutorial-workflow", + "tutorial_id": "metagenomics-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.html", + "version": 0, + "wfid": "assembly-metagenomics-assembly", + "wfname": "metagenomics-assembly-tutorial-workflow", + "workflow": "metagenomics_assembly_tutorial_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2" + ], + "workflowhub_id": "1120" + }, + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nERR2231567_1.fastq.gz\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nERR2231567_2.fastq.gz\"]\n 2[label=\"Cutadapt\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"MEGAHIT\"]\n 2 -> 3 [label=\"out1\"]\n 2 -> 3 [label=\"out2\"]\n 4[label=\"Bowtie2\"]\n 2 -> 4 [label=\"out1\"]\n 2 -> 4 [label=\"out2\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"BAM filter\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"BAM filter\"]\n 4 -> 6 [label=\"output\"]\n 7[label=\"Convert, Merge, Randomize\"]\n 5 -> 7 [label=\"outfile\"]\n 8[label=\"Convert, Merge, Randomize\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"Select random lines\"]\n 7 -> 9 [label=\"out_file1\"]\n 10[label=\"Select random lines\"]\n 8 -> 10 [label=\"out_file1\"]\n 11[label=\"Filter Tabular\"]\n 9 -> 11 [label=\"out_file1\"]\n 12[label=\"Filter Tabular\"]\n 10 -> 12 [label=\"out_file1\"]\n 13[label=\"Unique\"]\n 11 -> 13 [label=\"output\"]\n 14[label=\"Unique\"]\n 12 -> 14 [label=\"output\"]\n 15[label=\"Concatenate datasets\"]\n 13 -> 15 [label=\"outfile\"]\n 14 -> 15 [label=\"outfile\"]\n 16[label=\"seqtk_subseq\"]\n 2 -> 16 [label=\"out1\"]\n 15 -> 16 [label=\"out_file1\"]\n 17[label=\"seqtk_subseq\"]\n 2 -> 17 [label=\"out2\"]\n 15 -> 17 [label=\"out_file1\"]\n 18[label=\"FastQC\"]\n 16 -> 18 [label=\"default\"]\n 19[label=\"FastQC\"]\n 17 -> 19 [label=\"default\"]\n}", + "history": [], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ERR2231567_1.fastq.gz" + } + ], + "label": "ERR2231567_1.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 174.98046875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ac2a7e31-6a0c-43f0-b39f-6764ae421dea", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ERR2231567_2.fastq.gz" + } + ], + "label": "ERR2231567_2.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.03515625, + "top": 365.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2e1fd5bf-3b01-49dd-a091-75c7215eb3f9", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nERR2231567_1.fastq.gz\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nERR2231567_2.fastq.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Cutadapt\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"MEGAHIT\"];\n 2 -->|out1| 3;\n 2 -->|out2| 3;\n 4[\"Bowtie2\"];\n 2 -->|out1| 4;\n 2 -->|out2| 4;\n 3 -->|output| 4;\n 5[\"BAM filter\"];\n 4 -->|output| 5;\n 6[\"BAM filter\"];\n 4 -->|output| 6;\n 7[\"Convert, Merge, Randomize\"];\n 5 -->|outfile| 7;\n 8[\"Convert, Merge, Randomize\"];\n 6 -->|outfile| 8;\n 9[\"Select random lines\"];\n 7 -->|out_file1| 9;\n 10[\"Select random lines\"];\n 8 -->|out_file1| 10;\n 11[\"Filter Tabular\"];\n 9 -->|out_file1| 11;\n 12[\"Filter Tabular\"];\n 10 -->|out_file1| 12;\n 13[\"Unique\"];\n 11 -->|output| 13;\n 14[\"Unique\"];\n 12 -->|output| 14;\n 15[\"Concatenate datasets\"];\n 13 -->|outfile| 15;\n 14 -->|outfile| 15;\n 16[\"seqtk_subseq\"];\n 2 -->|out1| 16;\n 15 -->|out_file1| 16;\n 17[\"seqtk_subseq\"];\n 2 -->|out2| 17;\n 15 -->|out_file1| 17;\n 18[\"FastQC\"];\n 16 -->|default| 18;\n 19[\"FastQC\"];\n 17 -->|default| 19;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "workflow-generate-dataset-for-assembly-tutorial", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "library|input_2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "out2", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 248.0078125, + "top": 260.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5915ea1ec9b1", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"internal\": \"\", \"error_rate\": \"0.1\", \"no_indels\": \"false\", \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"revcomp\": \"false\"}, \"filter_options\": {\"discard_trimmed\": \"false\", \"discard_untrimmed\": \"false\", \"minimum_length\": \"200\", \"maximum_length\": null, \"length_R2_options\": {\"length_R2_status\": \"False\", \"__current_case__\": 1}, \"max_n\": null, \"pair_filter\": \"any\", \"max_expected_errors\": null, \"discard_cassava\": \"false\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\", \"quality_cutoff2\": \"\"}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"strip_suffix\": \"\", \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0+galaxy0", + "type": "tool", + "uuid": "67ddef5c-cde3-462d-a189-77028682a357", + "workflow_outputs": [ + { + "label": null, + "output_name": "out1", + "uuid": "7b3621e4-5077-4ac8-95d3-61a94a6ee664" + }, + { + "label": null, + "output_name": "out2", + "uuid": "f7db5a96-f4e7-4caf-8e78-093d4e6b007c" + }, + { + "label": null, + "output_name": "report", + "uuid": "ff6985ad-6afe-4cf7-9def-223fdd5e5f62" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input_option|fastq_input1": { + "id": 2, + "output_name": "out1" + }, + "input_option|fastq_input2": { + "id": 2, + "output_name": "out2" + } + }, + "inputs": [], + "label": null, + "name": "MEGAHIT", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 735.9765625, + "top": 301.97265625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "14ddfc8ffb93", + "name": "megahit", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_section\": {\"nomercy\": \"false\", \"bubble_level\": \"2\", \"merge_level\": \"20,0.95\", \"prune_level\": \"2\", \"prune_depth\": \"2\", \"disconnect_ratio\": \"0.1\", \"low_local_ratio\": \"0.2\", \"cleaning_rounds\": \"5\", \"nolocal\": \"false\", \"kmin1pass\": \"false\"}, \"basic_section\": {\"min_count\": \"2\", \"k_mer\": {\"k_mer_method\": \"klist_method\", \"__current_case__\": 0, \"k_list\": \"21,29,39,59,79,99,119,141\"}}, \"input_option\": {\"choice\": \"paired\", \"__current_case__\": 2, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"fastq_input2\": {\"__class__\": \"ConnectedValue\"}}, \"output_section\": {\"min_contig_len\": \"200\", \"show_intermediate_contigs\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.9+galaxy0", + "type": "tool", + "uuid": "0e1e0ffb-4536-4802-b886-5f5f391255d1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7a0e5487-3923-46e0-9976-d3fdc3fe7e09" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "library|input_1": { + "id": 2, + "output_name": "out1" + }, + "library|input_2": { + "id": 2, + "output_name": "out2" + }, + "reference_genome|own_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 979.00390625, + "top": 40.9765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "f6877ad76b00", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.5+galaxy1", + "type": "tool", + "uuid": "cd8574f0-da3e-4dc1-848e-6f21c57831e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "mapping_stats", + "uuid": "cf119c49-eee7-448a-bfff-0f1053f87821" + }, + { + "label": null, + "output_name": "output", + "uuid": "44b0908f-2158-4ea2-be6f-65c0dd803bcb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool BAM filter", + "name": "excludebed" + }, + { + "description": "runtime parameter for tool BAM filter", + "name": "includebed" + } + ], + "label": null, + "name": "BAM filter", + "outputs": [ + { + "name": "outfile", + "type": "bam" + } + ], + "position": { + "left": 1265.01953125, + "top": 0.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "tool_shed_repository": { + "changeset_revision": "2e957d4c4b95", + "name": "ngsutils_bam_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"excludebed\": {\"__class__\": \"RuntimeValue\"}, \"excluderef\": \"\", \"ignore_strand\": \"false\", \"includebed\": {\"__class__\": \"RuntimeValue\"}, \"includeref\": \"\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mapped\": \"false\", \"mask\": \"\", \"maximum_mismatch_ratio\": null, \"maxlen\": null, \"minlen\": null, \"mismatch\": null, \"nopcrdup\": \"false\", \"noproperpair\": \"false\", \"noqcfail\": \"false\", \"nosecondary\": \"false\", \"properpair\": \"false\", \"uniq\": \"-1\", \"uniq_start\": \"false\", \"unmapped\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.9", + "type": "tool", + "uuid": "e2b45ca6-2a67-4b95-a454-5c67fa87bccb", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "c1c6c99c-c810-41f4-84f3-5998c50b1422" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool BAM filter", + "name": "excludebed" + }, + { + "description": "runtime parameter for tool BAM filter", + "name": "includebed" + } + ], + "label": null, + "name": "BAM filter", + "outputs": [ + { + "name": "outfile", + "type": "bam" + } + ], + "position": { + "left": 1268.0078125, + "top": 354.00390625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "tool_shed_repository": { + "changeset_revision": "2e957d4c4b95", + "name": "ngsutils_bam_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"excludebed\": {\"__class__\": \"RuntimeValue\"}, \"excluderef\": \"\", \"ignore_strand\": \"false\", \"includebed\": {\"__class__\": \"RuntimeValue\"}, \"includeref\": \"\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mapped\": \"true\", \"mask\": \"\", \"maximum_mismatch_ratio\": null, \"maxlen\": null, \"minlen\": null, \"mismatch\": null, \"nopcrdup\": \"false\", \"noproperpair\": \"false\", \"noqcfail\": \"false\", \"nosecondary\": \"false\", \"properpair\": \"false\", \"uniq\": \"-1\", \"uniq_start\": \"false\", \"unmapped\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.9", + "type": "tool", + "uuid": "eb538482-dcf6-4509-b4b0-3da71ac6c600", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "b7c08a3a-296d-4352-90a6-423897d8cc74" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input_bams": { + "id": 5, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Convert, Merge, Randomize", + "outputs": [ + { + "name": "out_file1", + "type": "txt" + } + ], + "position": { + "left": 1559.00390625, + "top": 110.9765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "befc9dad4ca8", + "name": "bamtools", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"convert\", \"__current_case__\": 0, \"format_type\": {\"format_type_selector\": \"sam\", \"__current_case__\": 6, \"noheader\": \"false\"}}, \"input_bams\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.1+galaxy0", + "type": "tool", + "uuid": "8dc250e9-c89b-40be-8432-08a7330d6e27", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "8ad07a76-7793-43b2-add3-7e236a696172" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input_bams": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Convert, Merge, Randomize", + "outputs": [ + { + "name": "out_file1", + "type": "txt" + } + ], + "position": { + "left": 1548.0078125, + "top": 462.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "befc9dad4ca8", + "name": "bamtools", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"convert\", \"__current_case__\": 0, \"format_type\": {\"format_type_selector\": \"sam\", \"__current_case__\": 6, \"noheader\": \"false\"}}, \"input_bams\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.1+galaxy0", + "type": "tool", + "uuid": "b5c1bcac-9624-477c-998f-a0988b110a26", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9801f8ee-e700-4e9b-bbfc-7ccf7aa99372" + } + ] + }, + { + "annotation": "", + "content_id": "random_lines1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 7, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select random lines", + "name": "input" + } + ], + "label": null, + "name": "Select random lines", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1823.0078125, + "top": 182.98828125 + }, + "post_job_actions": {}, + "tool_id": "random_lines1", + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"num_lines\": \"210000\", \"seed_source\": {\"seed_source_selector\": \"no_seed\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2", + "type": "tool", + "uuid": "88f4ed97-5899-48f1-a5de-256be6e58862", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "69da2900-e66d-4d95-9bdb-1d9f801097e3" + } + ] + }, + { + "annotation": "", + "content_id": "random_lines1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select random lines", + "name": "input" + } + ], + "label": null, + "name": "Select random lines", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1826.9921875, + "top": 535.99609375 + }, + "post_job_actions": {}, + "tool_id": "random_lines1", + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"num_lines\": \"1000000\", \"seed_source\": {\"seed_source_selector\": \"no_seed\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2", + "type": "tool", + "uuid": "9064c0e8-fdc9-4347-99c2-bd6d97104fc9", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "fd4f3605-1f48-4583-b11a-91a9869e7946" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2081.015625, + "top": 212.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "34d29339abab", + "name": "filter_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "302a62bb-98f7-4998-b290-281bb52e3c70", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e83fbb91-742e-448f-8592-bdf37ce3cbdf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2085, + "top": 566.97265625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "34d29339abab", + "name": "filter_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "ab1a4102-7bb2-4ba7-80d1-2a532b410201", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2701a2bd-2ec9-433a-9f26-7f35410ec018" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2330, + "top": 265.99609375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "tool_shed_repository": { + "changeset_revision": "7ce75adb93be", + "name": "unique", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"ignore_case\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3", + "type": "tool", + "uuid": "2a68a6a4-4d3d-4de3-bc64-35edc63287f9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "b2bb66d7-fe76-4ce3-bb5b-72c979a755d1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2331.97265625, + "top": 617.94921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "tool_shed_repository": { + "changeset_revision": "7ce75adb93be", + "name": "unique", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"ignore_case\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3", + "type": "tool", + "uuid": "c2d1dc5c-4d14-45e5-9bb9-bdab787ea5f3", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "df0bbae1-b735-4cf4-a5a3-ef4f8b525a4e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 15, + "input_connections": { + "inputs": [ + { + "id": 13, + "output_name": "outfile" + }, + { + "id": 14, + "output_name": "outfile" + } + ] + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2575, + "top": 417.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "bf2ba224-25ae-4ec3-9a1f-7cb1afd0aef2", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "53ae320a-b570-4985-ae2a-8344e15e43f9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 16, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "out1" + }, + "source|name_list": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2847.98828125, + "top": 819.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"l\": \"0\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "478adb2b-4910-4aed-af4e-2a66e9a1922c", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "b47e4af0-c185-4b6f-a529-6f0ef96a14ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 17, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "out2" + }, + "source|name_list": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2836.97265625, + "top": 1019.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"l\": \"0\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "81ae5423-c7d0-4ceb-a6e4-168ab1f3fd35", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "c7de5bbe-f941-4772-bb32-15aeff98678a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "input_file": { + "id": 16, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 3135.9765625, + "top": 775.99609375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "6d6cee2a-b879-463b-81d1-7ab4f72ca04b", + "workflow_outputs": [ + { + "label": null, + "output_name": "text_file", + "uuid": "ca3ea14a-b1cc-481d-b1a3-2b46b8d24809" + }, + { + "label": null, + "output_name": "html_file", + "uuid": "6849e3f4-33bc-47a9-8ef5-b7cbbdfe0d93" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "input_file": { + "id": 17, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 3133.984375, + "top": 1104.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "54fc20b8-5520-4b93-a7d8-ed447df19b3c", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "a85a4180-b2ab-4cac-9c71-76aee3df673f" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "65e24721-ec93-4648-9310-c3c2609b7818" + } + ] + } + ], + "parent_id": "assembly/metagenomics-assembly", + "path": "topics/assembly/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "workflow-generate-dataset-for-assembly-tutorial", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-metagenomics-assembly/versions/workflow-generate-dataset-for-assembly-tutorial", + "tutorial_id": "metagenomics-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.html", + "version": 0, + "wfid": "assembly-metagenomics-assembly", + "wfname": "workflow-generate-dataset-for-assembly-tutorial", + "workflow": "workflow-generate-dataset-for-assembly-tutorial.ga", + "workflow_tools": [ + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0" + ], + "workflowhub_id": "1116" + } + ], + "zenodo_link": "https://zenodo.org/record/7818827" + }, + { + "abbreviations": { + "SVs": "Structural Variations" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "flye", + "owner": "bgruening", + "revisions": "cb8dfd28c16f", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa_mem2", + "owner": "iuc", + "revisions": "bfaa0d22c2e4", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filtlong", + "owner": "iuc", + "revisions": "8880fb74ef56", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filtlong", + "owner": "iuc", + "revisions": "1f296803dfa3", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "0f1c34698076", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "polypolish", + "owner": "iuc", + "revisions": "f355085dd2aa", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "93d623d9979c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: flye\n owner: bgruening\n revisions: cb8dfd28c16f\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa_mem2\n owner: iuc\n revisions: bfaa0d22c2e4\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filtlong\n owner: iuc\n revisions: 8880fb74ef56\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filtlong\n owner: iuc\n revisions: 1f296803dfa3\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: 0f1c34698076\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: polypolish\n owner: iuc\n revisions: f355085dd2aa\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 93d623d9979c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-nanopore/tutorial.json", + "contributions": { + "authorship": [ + "bazante1", + "bebatut" + ], + "editing": [ + "hexylena", + "bazante1", + "shiltemann", + "miaomiaozhou88" + ], + "funding": [ + "avans-atgm", + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "email": "m.zhou1@avans.nl", + "id": "miaomiaozhou88", + "joined": "2020-12", + "name": "Miaomiao Zhou", + "orcid": "0000-0003-4426-1758", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/miaomiaozhou88/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/miaomiaozhou88.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/assembly/tutorials/mrsa-nanopore", + "edam_ontology": [ + "topic_0196", + "topic_3673", + "topic_3305", + "topic_0622", + "topic_3301", + "topic_4013" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence contamination filtering", + "Genome assembly", + "De-novo assembly", + "Sequence alignment", + "Box-Whisker plot plotting", + "Sequence assembly validation", + "Sequence composition calculation", + "Read mapping", + "Scatter plot plotting", + "Mapping assembly", + "Sequencing error detection", + "Sequence assembly visualisation", + "Cross-assembly", + "Filtering", + "Statistical calculation" + ], + "edam_topic": [ + "Sequence assembly", + "Whole genome sequencing", + "Public health and epidemiology", + "Genomics", + "Microbiology", + "Antimicrobial Resistance" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "amr-gene-detection" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "assembly/mrsa-nanopore", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": 11271, + "mermaid": false + }, + "key_points": [ + "Nanopore produces fantastic assemblies but with low quality data", + "Annotation with Prokka is very easy" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-13", + "objectives": [ + "Run tools to evaluate sequencing data on quality and quantity", + "Process the output of quality control tools", + "Improve the quality of sequencing data", + "Run a tool to assemble a bacterial genome using short reads", + "Run tools to assess the quality of an assembly", + "Understand the outputs of tools to assess the quality of an assembly" + ], + "pageviews": 10571, + "pub_date": "2021-03-24", + "questions": [ + "How to check the quality of the MinION data (together with Illumina data)?", + "How to perform an assembly of a bacterial genome with MinION data?", + "How to check the quality of an assembly?" + ], + "short_id": "T00037", + "short_tools": [ + "nanoplot", + "fastp", + "CONVERTER_bz2_to_uncompressed", + "filtlong", + "flye", + "bwa_mem2", + "quast", + "fastqc", + "polypolish", + "bandage_image", + "upload1", + "porechop" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "nanopore", + "assembly", + "amr", + "gmod", + "jbrowse1", + "microgalaxy" + ], + "time_estimation": "2h", + "title": "Genome Assembly of MRSA from Oxford Nanopore MinION data (and optionally Illumina data)", + "tools": [ + "CONVERTER_bz2_to_uncompressed", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong/0.2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong/0.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/polypolish/polypolish/0.5.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.3", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "upload1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mrsa-nanopore", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/mrsa-nanopore/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-nanopore/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-nanopore/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 206, + "visitors": 6851, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2255-1631", + "name": "Bazante Sanders" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Genome Assembly of MRSA from Oxford Nanopore MinION data (and optionally Illumina data)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNanopore raw reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina forward raw reads\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reverse raw reads\"]\n 3[label=\"Convert compressed file to uncompressed.\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"FastQC\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"fastp\"]\n 1 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"NanoPlot\"]\n 3 -> 6 [label=\"output1\"]\n ka97e6f3381824a3386dd6cfbb83a842d[color=lightseagreen,label=\"Output\\nnanoplot_before_filtering\"]\n 6 -> ka97e6f3381824a3386dd6cfbb83a842d\n 7[label=\"filtlong\"]\n 5 -> 7 [label=\"out1\"]\n 5 -> 7 [label=\"out2\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Flye\"]\n 7 -> 8 [label=\"outfile\"]\n kf12e718f1bd5490dbd41f0747aaa41a6[color=lightseagreen,label=\"Output\\nflye_assembly_info\"]\n 8 -> kf12e718f1bd5490dbd41f0747aaa41a6\n 9[label=\"NanoPlot\"]\n 7 -> 9 [label=\"outfile\"]\n k89524090f590434d89e266f0b1a23c7c[color=lightseagreen,label=\"Output\\nnanoplot_after_filtering\"]\n 9 -> k89524090f590434d89e266f0b1a23c7c\n 10[label=\"Bandage Image\"]\n 8 -> 10 [label=\"assembly_gfa\"]\n 11[label=\"BWA-MEM2\"]\n 5 -> 11 [label=\"out2\"]\n 8 -> 11 [label=\"consensus\"]\n 12[label=\"Quast\"]\n 8 -> 12 [label=\"consensus\"]\n kdabfb8fd87914959a9dc9b3c1e57a69c[color=lightseagreen,label=\"Output\\nquast_report_before_polishing\"]\n 12 -> kdabfb8fd87914959a9dc9b3c1e57a69c\n 13[label=\"BWA-MEM2\"]\n 5 -> 13 [label=\"out1\"]\n 8 -> 13 [label=\"consensus\"]\n 14[label=\"Polypolish\"]\n 8 -> 14 [label=\"consensus\"]\n 13 -> 14 [label=\"bam_output\"]\n 11 -> 14 [label=\"bam_output\"]\n 15[label=\"Quast\"]\n 14 -> 15 [label=\"polished_fasta\"]\n 8 -> 15 [label=\"consensus\"]\n k4e465b5168bf42039a7c897f46c70277[color=lightseagreen,label=\"Output\\nquast_report_after_polishing\"]\n 15 -> k4e465b5168bf42039a7c897f46c70277\n}", + "history": [ + { + "hash": "96393a7fcb4d6dc37d86866cf8a61c931293502f", + "message": "Add MRSA Nanopore assembly tutorial to AMR learning pathway", + "num": 1, + "short_hash": "96393a7fc", + "unix": "1709135526" + } + ], + "inputs": [ + { + "annotation": "Nanopore raw reads", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Nanopore raw reads", + "name": "Nanopore raw reads" + } + ], + "label": "Nanopore raw reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 65.66800632871802, + "top": 217.27323322511424 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "cd4fd302-af94-4771-9b80-7c7acb6619d4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Illumina forward raw reads", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Illumina forward raw reads", + "name": "Illumina forward raw reads" + } + ], + "label": "Illumina forward raw reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 479 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "b3fe89da-544c-4066-abcb-b33d4f005796", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Illumina reverse raw reads", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Illumina reverse raw reads", + "name": "Illumina reverse raw reads" + } + ], + "label": "Illumina reverse raw reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 602 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "16545abc-0513-4a32-9ea5-4a168875a854", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nNanopore raw reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nIllumina forward raw reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nIllumina reverse raw reads\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Convert compressed file to uncompressed.\"];\n 0 -->|output| 3;\n 4[\"FastQC\"];\n 0 -->|output| 4;\n 5[\"fastp\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 6[\"NanoPlot\"];\n 3 -->|output1| 6;\n a97e6f33-8182-4a33-86dd-6cfbb83a842d[\"Output\\nnanoplot_before_filtering\"];\n 6 --> a97e6f33-8182-4a33-86dd-6cfbb83a842d;\n style a97e6f33-8182-4a33-86dd-6cfbb83a842d stroke:#2c3143,stroke-width:4px;\n 7[\"filtlong\"];\n 5 -->|out1| 7;\n 5 -->|out2| 7;\n 0 -->|output| 7;\n 8[\"Flye\"];\n 7 -->|outfile| 8;\n f12e718f-1bd5-490d-bd41-f0747aaa41a6[\"Output\\nflye_assembly_info\"];\n 8 --> f12e718f-1bd5-490d-bd41-f0747aaa41a6;\n style f12e718f-1bd5-490d-bd41-f0747aaa41a6 stroke:#2c3143,stroke-width:4px;\n 9[\"NanoPlot\"];\n 7 -->|outfile| 9;\n 89524090-f590-434d-89e2-66f0b1a23c7c[\"Output\\nnanoplot_after_filtering\"];\n 9 --> 89524090-f590-434d-89e2-66f0b1a23c7c;\n style 89524090-f590-434d-89e2-66f0b1a23c7c stroke:#2c3143,stroke-width:4px;\n 10[\"Bandage Image\"];\n 8 -->|assembly_gfa| 10;\n 11[\"BWA-MEM2\"];\n 5 -->|out2| 11;\n 8 -->|consensus| 11;\n 12[\"Quast\"];\n 8 -->|consensus| 12;\n dabfb8fd-8791-4959-a9dc-9b3c1e57a69c[\"Output\\nquast_report_before_polishing\"];\n 12 --> dabfb8fd-8791-4959-a9dc-9b3c1e57a69c;\n style dabfb8fd-8791-4959-a9dc-9b3c1e57a69c stroke:#2c3143,stroke-width:4px;\n 13[\"BWA-MEM2\"];\n 5 -->|out1| 13;\n 8 -->|consensus| 13;\n 14[\"Polypolish\"];\n 8 -->|consensus| 14;\n 13 -->|bam_output| 14;\n 11 -->|bam_output| 14;\n 15[\"Quast\"];\n 14 -->|polished_fasta| 15;\n 8 -->|consensus| 15;\n 4e465b51-68bf-4203-9a7c-897f46c70277[\"Output\\nquast_report_after_polishing\"];\n 15 --> 4e465b51-68bf-4203-9a7c-897f46c70277;\n style 4e465b51-68bf-4203-9a7c-897f46c70277 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Genome Assembly of MRSA using Oxford Nanopore MinION (and Illumina data if available)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "mode|reads|files": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 598.8807084399002, + "top": 268.83097889129806 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "0f1c34698076", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"customization\": {\"color\": null, \"plots\": null, \"N50\": true}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.41.0+galaxy0", + "type": "tool", + "uuid": "ad46f297-04f2-4959-aa09-db88cd91cc27", + "when": null, + "workflow_outputs": [ + { + "label": "nanoplot_before_filtering", + "output_name": "nanostats", + "uuid": "a97e6f33-8182-4a33-86dd-6cfbb83a842d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "inputs": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Flye", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + } + ], + "position": { + "left": 850.0098909589506, + "top": 593 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "cb8dfd28c16f", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"asm\": {\"asm_select\": \"false\", \"__current_case__\": 1}, \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"generate_log\": false, \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"iterations\": \"1\", \"keep_haplotypes\": false, \"meta\": false, \"min_overlap\": null, \"mode_conditional\": {\"mode\": \"--nano-corr\", \"__current_case__\": 1}, \"no_alt_contigs\": false, \"scaffold\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.9.1+galaxy0", + "type": "tool", + "uuid": "8cf7ff30-4007-49cb-a959-e25c337f05be", + "when": null, + "workflow_outputs": [ + { + "label": "flye_assembly_info", + "output_name": "assembly_info", + "uuid": "f12e718f-1bd5-490d-bd41-f0747aaa41a6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "mode|reads|files": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 850.0098909589506, + "top": 859 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "0f1c34698076", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"customization\": {\"color\": null, \"plots\": null, \"N50\": true}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.41.0+galaxy0", + "type": "tool", + "uuid": "467fca53-715f-4717-ab4c-c4410d321086", + "when": null, + "workflow_outputs": [ + { + "label": "nanoplot_after_filtering", + "output_name": "nanostats", + "uuid": "89524090-f590-434d-89e2-66f0b1a23c7c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "mode|in|inputs": { + "id": 8, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 1140.0069535390257, + "top": 767 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"false\", \"__current_case__\": 1, \"est_ref_size\": null}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"large\": false, \"min_contig\": \"500\", \"mode\": {\"mode\": \"co\", \"__current_case__\": 1, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"split_scaffolds\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "6949cf20-419e-4cee-86fa-3b08ab60cb9f", + "when": null, + "workflow_outputs": [ + { + "label": "quast_report_before_polishing", + "output_name": "report_html", + "uuid": "dabfb8fd-8791-4959-a9dc-9b3c1e57a69c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 15, + "input_connections": { + "mode|in|inputs": [ + { + "id": 14, + "output_name": "polished_fasta" + }, + { + "id": 8, + "output_name": "consensus" + } + ] + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 1700.001078699176, + "top": 853 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"false\", \"__current_case__\": 1, \"est_ref_size\": null}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"large\": false, \"min_contig\": \"500\", \"mode\": {\"mode\": \"co\", \"__current_case__\": 1, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"split_scaffolds\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "866187e0-dd7c-40d5-b121-a8ef4a281c80", + "when": null, + "workflow_outputs": [ + { + "label": "quast_report_after_polishing", + "output_name": "report_html", + "uuid": "4e465b51-68bf-4203-9a7c-897f46c70277" + } + ] + } + ], + "parent_id": "assembly/mrsa-nanopore", + "path": "topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.ga", + "tags": [ + "Assembly" + ], + "test_results": null, + "tests": true, + "title": "Genome Assembly of MRSA using Oxford Nanopore MinION (and Illumina data if available)", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-mrsa-nanopore/versions/main-workflow", + "tutorial_id": "mrsa-nanopore", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.html", + "version": 1, + "wfid": "assembly-mrsa-nanopore", + "wfname": "main-workflow", + "workflow": "main-workflow.ga", + "workflow_tools": [ + "CONVERTER_bz2_to_uncompressed", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong/0.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/polypolish/polypolish/0.5.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "workflowhub_id": "1178" + } + ], + "zenodo_link": "https://zenodo.org/record/10669812" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "shovill", + "owner": "iuc", + "revisions": "ad80238462c1", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "shovill", + "owner": "iuc", + "revisions": "ee17a294d3a3", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: shovill\n owner: iuc\n revisions: ad80238462c1\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: shovill\n owner: iuc\n revisions: ee17a294d3a3\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-illumina/tutorial.json", + "contributions": { + "authorship": [ + "bazante1", + "bebatut" + ], + "editing": [ + "hexylena", + "bazante1", + "shiltemann", + "miaomiaozhou88" + ], + "funding": [ + "avans-atgm", + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "email": "m.zhou1@avans.nl", + "id": "miaomiaozhou88", + "joined": "2020-12", + "name": "Miaomiao Zhou", + "orcid": "0000-0003-4426-1758", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/miaomiaozhou88/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/miaomiaozhou88.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/assembly/tutorials/mrsa-illumina", + "edam_ontology": [ + "topic_0196", + "topic_3673", + "topic_3305", + "topic_0622", + "topic_3301" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence contamination filtering", + "Sequence assembly validation", + "Sequence composition calculation", + "Sequence assembly visualisation", + "Genome assembly", + "Statistical calculation" + ], + "edam_topic": [ + "Sequence assembly", + "Whole genome sequencing", + "Public health and epidemiology", + "Genomics", + "Microbiology" + ], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "amr-gene-detection" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "assembly/mrsa-illumina", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Illumina assemblies can be done with Shovill", + "It is hard to get the genome in one contig" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-13", + "objectives": [ + "Run tools to evaluate sequencing data on quality and quantity", + "Process the output of quality control tools", + "Improve the quality of sequencing data", + "Run a tool to assemble a bacterial genome using short reads", + "Run tools to assess the quality of an assembly", + "Understand the outputs of tools to assess the quality of an assembly" + ], + "pageviews": 10369, + "pub_date": "2021-03-24", + "questions": [ + "How to check the quality of the MiSeq data?", + "How to perform an assembly of a bacterial genome with MiSeq data?", + "How to check the quality of an assembly?" + ], + "short_id": "T00036", + "short_tools": [ + "fastp", + "shovill", + "quast", + "fastqc", + "bandage_info", + "bandage_image", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "illumina", + "assembly", + "microgalaxy" + ], + "time_estimation": "2h", + "title": "Genome Assembly of a bacterial genome (MRSA) sequenced using Illumina MiSeq Data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/2022.09+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy2", + "upload1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mrsa-illumina", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/mrsa-illumina/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-illumina/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-illumina/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 225, + "visitors": 6432, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2255-1631", + "name": "Bazante Sanders" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Genome Assembly of MRSA using Illumina MiSeq Data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDRR187559_2\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDRR187559_1\"]\n 2[label=\"FastQC\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"fastp\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n kfaabc87368844cfdb66dffafda580c82[color=lightseagreen,label=\"Output\\nfastp_json\"]\n 3 -> kfaabc87368844cfdb66dffafda580c82\n 4[label=\"FastQC\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Shovill\"]\n 3 -> 5 [label=\"out1\"]\n 3 -> 5 [label=\"out2\"]\n k25b137fd331a48608718be6737321bce[color=lightseagreen,label=\"Output\\nshovill_log\"]\n 5 -> k25b137fd331a48608718be6737321bce\n 6[label=\"Quast\"]\n 5 -> 6 [label=\"contigs\"]\n k3a915c59ad7645d9b4d60ab3ffe2beb0[color=lightseagreen,label=\"Output\\nquast_output\"]\n 6 -> k3a915c59ad7645d9b4d60ab3ffe2beb0\n 7[label=\"Bandage Image\"]\n 5 -> 7 [label=\"contigs_graph\"]\n 8[label=\"Bandage Info\"]\n 5 -> 8 [label=\"contigs_graph\"]\n k5a1a539618ca48fa932e0f00eb153387[color=lightseagreen,label=\"Output\\nbandage_info_output\"]\n 8 -> k5a1a539618ca48fa932e0f00eb153387\n}", + "history": [ + { + "hash": "597f8ce954083c7cd4e43765b6c4709619637e6a", + "message": "Add Bazante's ORCID", + "num": 7, + "short_hash": "597f8ce95", + "unix": "1706018263" + }, + { + "hash": "03e4290900ade23b2dffb3f61ea2875a64f2c396", + "message": "Fix workflows", + "num": 6, + "short_hash": "03e429090", + "unix": "1706004257" + }, + { + "hash": "c88bcbb6f04ad1847e0747f7fb9256ee0ec858de", + "message": "Add license and creator to workflows", + "num": 5, + "short_hash": "c88bcbb6f", + "unix": "1705678137" + }, + { + "hash": "5fbcc03b0d2408af8c03f0c7867791b47b4cceff", + "message": "Update the MRSA short-read assembly tutorial", + "num": 4, + "short_hash": "5fbcc03b0", + "unix": "1705072112" + }, + { + "hash": "31848c0ae9109d020ddee510ad5a1c374c3df96e", + "message": "fix linting issues", + "num": 3, + "short_hash": "31848c0ae", + "unix": "1610039782" + }, + { + "hash": "9c83730d5b61b1ed51890ee8c00dbf73834d7b54", + "message": "Finish illumina version", + "num": 2, + "short_hash": "9c83730d5", + "unix": "1610038238" + }, + { + "hash": "c1175777fc34b261481e16516de8fde7c890c4ae", + "message": "Add Illumina version of tutorial", + "num": 1, + "short_hash": "c1175777f", + "unix": "1608293515" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DRR187559_2" + } + ], + "label": "DRR187559_2", + "name": "DRR187559_2", + "outputs": [], + "position": { + "left": 0, + "top": 216 + }, + "tool_id": null, + "tool_state": "{\"name\": \"DRR187559_2\", \"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "8e9c45ae-139a-4a69-af24-f0d9f58041cc", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DRR187559_1" + } + ], + "label": "DRR187559_1", + "name": "DRR187559_1", + "outputs": [], + "position": { + "left": 0, + "top": 339 + }, + "tool_id": null, + "tool_state": "{\"name\": \"DRR187559_1\", \"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "1290afbe-52b9-447f-ac30-6f8c92f93ff5", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nDRR187559_2\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nDRR187559_1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"FastQC\"];\n 0 -->|output| 2;\n 3[\"fastp\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n faabc873-6884-4cfd-b66d-ffafda580c82[\"Output\\nfastp_json\"];\n 3 --> faabc873-6884-4cfd-b66d-ffafda580c82;\n style faabc873-6884-4cfd-b66d-ffafda580c82 stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC\"];\n 1 -->|output| 4;\n 5[\"Shovill\"];\n 3 -->|out1| 5;\n 3 -->|out2| 5;\n 25b137fd-331a-4860-8718-be6737321bce[\"Output\\nshovill_log\"];\n 5 --> 25b137fd-331a-4860-8718-be6737321bce;\n style 25b137fd-331a-4860-8718-be6737321bce stroke:#2c3143,stroke-width:4px;\n 6[\"Quast\"];\n 5 -->|contigs| 6;\n 3a915c59-ad76-45d9-b4d6-0ab3ffe2beb0[\"Output\\nquast_output\"];\n 6 --> 3a915c59-ad76-45d9-b4d6-0ab3ffe2beb0;\n style 3a915c59-ad76-45d9-b4d6-0ab3ffe2beb0 stroke:#2c3143,stroke-width:4px;\n 7[\"Bandage Image\"];\n 5 -->|contigs_graph| 7;\n 8[\"Bandage Info\"];\n 5 -->|contigs_graph| 8;\n 5a1a5396-18ca-48fa-932e-0f00eb153387[\"Output\\nbandage_info_output\"];\n 8 --> 5a1a5396-18ca-48fa-932e-0f00eb153387;\n style 5a1a5396-18ca-48fa-932e-0f00eb153387 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Genome Assembly of MRSA using Illumina MiSeq Data", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "single_paired|in1": { + "id": 1, + "output_name": "output" + }, + "single_paired|in2": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "fastp", + "outputs": [ + { + "name": "out1", + "type": "input" + }, + { + "name": "out2", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 280, + "top": 296 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "65b93b623c77", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": \"30\", \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": null, \"umi_len\": null, \"umi_prefix\": null}, \"cutting_by_quality_options\": {\"cut_by_quality5\": true, \"cut_by_quality3\": true, \"cut_window_size\": \"4\", \"cut_mean_quality\": \"20\"}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"paired\", \"__current_case__\": 1, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"in2\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": null, \"adapter_sequence2\": null}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.23.2+galaxy0", + "type": "tool", + "uuid": "a3f526cd-bd95-4a6f-9fc3-8624dfc49323", + "when": null, + "workflow_outputs": [ + { + "label": "fastp_json", + "output_name": "report_json", + "uuid": "faabc873-6884-4cfd-b66d-ffafda580c82" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy2", + "errors": null, + "id": 5, + "input_connections": { + "library|R1": { + "id": 3, + "output_name": "out1" + }, + "library|R2": { + "id": 3, + "output_name": "out2" + } + }, + "inputs": [], + "label": null, + "name": "Shovill", + "outputs": [ + { + "name": "shovill_std_log", + "type": "txt" + }, + { + "name": "contigs", + "type": "fasta" + }, + { + "name": "contigs_graph", + "type": "txt" + } + ], + "position": { + "left": 560, + "top": 351 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "ee17a294d3a3", + "name": "shovill", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastq.gz\", \"adv\": {\"namefmt\": \"contig%05d\", \"depth\": \"100\", \"gsize\": \"2914567\", \"kmers\": \"\", \"opts\": \"\", \"keep_files\": {\"nocorr\": \"no_correction\", \"__current_case__\": 0}, \"minlen\": \"0\", \"mincov\": \"2\"}, \"assembler\": \"spades\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"library\": {\"lib_type\": \"paired\", \"__current_case__\": 0, \"R1\": {\"__class__\": \"ConnectedValue\"}, \"R2\": {\"__class__\": \"ConnectedValue\"}}, \"log\": true, \"trim\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0+galaxy2", + "type": "tool", + "uuid": "2676d037-3faf-4974-8357-1113ff27de62", + "when": null, + "workflow_outputs": [ + { + "label": "shovill_log", + "output_name": "shovill_std_log", + "uuid": "25b137fd-331a-4860-8718-be6737321bce" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "mode|in|inputs": { + "id": 5, + "output_name": "contigs" + } + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 840, + "top": 302 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"false\", \"__current_case__\": 1, \"est_ref_size\": null}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"large\": false, \"min_contig\": \"500\", \"mode\": {\"mode\": \"individual\", \"__current_case__\": 0, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"split_scaffolds\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "0fa4aa47-d6f1-4b9a-9db9-91131f80a410", + "when": null, + "workflow_outputs": [ + { + "label": "quast_output", + "output_name": "report_html", + "uuid": "3a915c59-ad76-45d9-b4d6-0ab3ffe2beb0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/2022.09+galaxy2", + "errors": null, + "id": 8, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "contigs_graph" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 840, + "top": 610 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/2022.09+galaxy2", + "tool_shed_repository": { + "changeset_revision": "ddddce450736", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"tsv\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2022.09+galaxy2", + "type": "tool", + "uuid": "f191da8d-81fe-499e-beee-abb31d05ba71", + "when": null, + "workflow_outputs": [ + { + "label": "bandage_info_output", + "output_name": "outfile", + "uuid": "5a1a5396-18ca-48fa-932e-0f00eb153387" + } + ] + } + ], + "parent_id": "assembly/mrsa-illumina", + "path": "topics/assembly/tutorials/mrsa-illumina/workflows/main_workflow.ga", + "tags": [ + "assembly", + "microgalaxy" + ], + "test_results": null, + "tests": true, + "title": "Genome Assembly of MRSA using Illumina MiSeq Data", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-mrsa-illumina/versions/main-workflow", + "tutorial_id": "mrsa-illumina", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-illumina/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-illumina/workflows/main_workflow.html", + "version": 2, + "wfid": "assembly-mrsa-illumina", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/2022.09+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/shovill/shovill/1.1.0+galaxy2" + ], + "workflowhub_id": "1135" + } + ], + "zenodo_link": "https://zenodo.org/record/10669812" + }, + { + "abbreviations": { + "G10K": "Genome 10K", + "GWS": "Galaxy Workflow System", + "Hi-C": "all-versus-all chromatin conformation capture", + "HiFi": "high fidelity reads", + "QV": "assembly consensus quality", + "VGP": "Vertebrate Genome Project", + "alternate assembly": "alternate loci not represented in the primary assembly", + "collection": "Galaxy's way to represent multiple datasets as a single interface entity", + "collections": "Galaxy's way to represent multiple datasets as a single interface entity", + "contigs": "contiguous sequences in an assembly", + "primary assembly": "homozygous regions of the genome plus one set of alleles for the heterozygous loci", + "scaffold": "one or more contigs joined by gap sequence", + "scaffolds": "one or more contigs joined by gap sequence", + "unitig": "A uniquely assembleable subset of overlapping fragments. A unitig is an assembly of fragments for which there are no competing internal overlaps. A unitig is either a correctly assembled portion of a contig or a collapsed assembly of several high-fidelity copies of a repeat." + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/vgp_workflow_training/tutorial.json", + "contributors": [ + { + "email": "delphine.lariviere@galaxy.org", + "id": "delphine-l", + "joined": "2017-09", + "name": "Delphine Lariviere", + "orcid": "0000-0001-6421-3484", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/delphine-l/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/delphine-l.json" + }, + { + "email": "a.ostrovsky@mac.com", + "id": "astrovsky01", + "joined": "2019-06", + "name": "Alex Ostrovsky", + "orcid": "0000-0002-7901-7109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/astrovsky01.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "id": "pickettbd", + "joined": "2022-01", + "name": "Brandon Pickett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pickettbd/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pickettbd.json" + }, + { + "id": "abueg", + "joined": "2022-01", + "name": "Linelle Abueg", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abueg/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abueg.json" + }, + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/assembly/tutorials/vgp_workflow_training", + "edam_operation": [ + "Visualisation", + "Sequence assembly validation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/vgp_workflow_training", + "inexact_supported_servers": [ + "Center for Phage Technology (CPT)", + "HyPhy HIV NGS Tools" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The VGP pipeline allows to generate error-free, near gapless reference-quality genome assemblies", + "The assembly can be divided in four main stages: genome profile analysis, HiFi long read phased assembly with hifiasm, Bionano hybrid scaffolding and Hi-C hybrid scaffolding" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-07-26", + "objectives": [ + "Learn the tools necessary to perform a de novo assembly of a vertebrate genome", + "Evaluate the quality of the assembly" + ], + "pageviews": 2930, + "pub_date": "2022-04-06", + "questions": [ + "What combination of tools can produce the highest quality assembly of vertebrate genomes?", + "How can we evaluate how good it is?" + ], + "short_id": "T00040", + "short_tools": [ + "quast" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Center for Phage Technology (CPT)", + "url": "https://cpt.tamu.edu/galaxy-public/", + "usegalaxy": false + }, + { + "name": "HyPhy HIV NGS Tools", + "url": "https://galaxy.hyphy.org/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "pacbio", + "eukaryote", + "VGP" + ], + "time_estimation": "1h", + "title": "VGP assembly pipeline - short version", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "vgp_workflow_training", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/vgp_workflow_training/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/vgp_workflow_training/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/vgp_workflow_training/tutorial.json" + }, + "version": 20, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 165, + "visitors": 2043, + "zenodo_link": "https://zenodo.org/record/5887339" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "blobtoolkit", + "owner": "bgruening", + "revisions": "7d9ee8cd14b8", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "blobtoolkit", + "owner": "bgruening", + "revisions": "53dd00a4ab68", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "diamond", + "owner": "bgruening", + "revisions": "e8ac2b53f262", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfastats", + "owner": "bgruening", + "revisions": "5799092ffdff", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfastats", + "owner": "bgruening", + "revisions": "3ef480892a9f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "3a0efe14891f", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "smudgeplot", + "owner": "galaxy-australia", + "revisions": "5e0825476fb7", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bellerophon", + "owner": "iuc", + "revisions": "25ca5d73aedf", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "bb935709506a", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa_mem2", + "owner": "iuc", + "revisions": "b4a22d90cce9", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "genomescope", + "owner": "iuc", + "revisions": "01210c4e9144", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "f4af63aaf57a", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merqury", + "owner": "iuc", + "revisions": "f8113c25bc6b", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meryl", + "owner": "iuc", + "revisions": "29dabd8db6f2", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pretext_map", + "owner": "iuc", + "revisions": "dfb8a4497339", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pretext_snapshot", + "owner": "iuc", + "revisions": "44c66e8d21e6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: blobtoolkit\n owner: bgruening\n revisions: 7d9ee8cd14b8\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: blobtoolkit\n owner: bgruening\n revisions: 53dd00a4ab68\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: diamond\n owner: bgruening\n revisions: e8ac2b53f262\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfastats\n owner: bgruening\n revisions: 5799092ffdff\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfastats\n owner: bgruening\n revisions: 3ef480892a9f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 3a0efe14891f\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: smudgeplot\n owner: galaxy-australia\n revisions: 5e0825476fb7\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bellerophon\n owner: iuc\n revisions: 25ca5d73aedf\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: bb935709506a\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa_mem2\n owner: iuc\n revisions: b4a22d90cce9\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: genomescope\n owner: iuc\n revisions: 01210c4e9144\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: f4af63aaf57a\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merqury\n owner: iuc\n revisions: f8113c25bc6b\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meryl\n owner: iuc\n revisions: 29dabd8db6f2\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pretext_map\n owner: iuc\n revisions: dfb8a4497339\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pretext_snapshot\n owner: iuc\n revisions: 44c66e8d21e6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ERGA-post-assembly-QC/tutorial.json", + "contributors": [ + { + "id": "GitFab93", + "joined": "2023-03", + "name": "Fabian Recktenwald", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/GitFab93/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/GitFab93.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + } + ], + "dir": "topics/assembly/tutorials/ERGA-post-assembly-QC", + "edam_operation": [ + "Phasing", + "De-novo assembly", + "Sequence alignment", + "Genotyping", + "Sequence assembly validation", + "Sequence alignment analysis", + "Sequence assembly visualisation", + "Transcriptome assembly", + "Data handling", + "Genome assembly", + "Sequence trimming", + "k-mer counting", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/ERGA-post-assembly-QC", + "inexact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The ERGA post-assembly pipeline allows to assess and improve the quality of genome assemblies", + "The ERGA post-assembly pipeline contains of three main steps: Genome assembly decontamination and overview with BlobToolKit, providing analysis information and statistics and Hi-C scaffolding." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "apply the post-assembly-QC-workflow using the necessary tools", + "analyse and evaluate the results of the workflow" + ], + "pageviews": 1088, + "pub_date": "2023-06-23", + "questions": [ + "what combination of tools can assess the quality of an post-assembly?", + "what metrics can help to analyse the quality?", + "how to evaluate the outputs?" + ], + "short_id": "T00355", + "short_tools": [ + "bellerophon", + "meryl", + "collapse_dataset", + "__EXTRACT_DATASET__", + "hisat2", + "busco", + "genomescope", + "blobtoolkit", + "pretext_map", + "CONVERTER_gz_to_uncompressed", + "samtools_stats", + "interactive_tool_blobtoolkit", + "tp_find_and_replace", + "smudgeplot", + "gfastats", + "bg_diamond", + "bandage_image", + "merqury", + "pretext_snapshot", + "bwa_mem2" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "plants" + ], + "time_estimation": "3H", + "title": "ERGA post-assembly QC", + "tools": [ + "CONVERTER_gz_to_uncompressed", + "__EXTRACT_DATASET__", + "interactive_tool_blobtoolkit", + "toolshed.g2.bx.psu.edu/repos/bgruening/blobtoolkit/blobtoolkit/3.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/blobtoolkit/blobtoolkit/4.0.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy+2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_map/pretext_map/0.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ERGA-post-assembly-QC", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/ERGA-post-assembly-QC/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ERGA-post-assembly-QC/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ERGA-post-assembly-QC/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 98, + "visitors": 820, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-5752-2155", + "name": "Crist\u00f3bal Gallardo Alba" + } + ], + "description": "ERGA post-assembly QC", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMetadata file\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nNCBI taxonomic ID\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNCBI taxdump directory\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nFASTQ files\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nPloidy for model to use\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPrimary genome assembly file fasta\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDIAMOND database\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nHi-C reverse\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nHi-C forward\"]\n 9[label=\"Meryl\"]\n 3 -> 9 [label=\"output\"]\n 10[label=\"Collapse Collection\"]\n 3 -> 10 [label=\"output\"]\n 11[label=\"Create BlobtoolKit\"]\n 5 -> 11 [label=\"output\"]\n 0 -> 11 [label=\"output\"]\n 2 -> 11 [label=\"output\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"gfastats\"]\n 5 -> 12 [label=\"output\"]\n 13[label=\"Convert compressed file to uncompressed.\"]\n 5 -> 13 [label=\"output\"]\n 14[label=\"gfastats\"]\n 5 -> 14 [label=\"output\"]\n 15[label=\"Diamond\"]\n 5 -> 15 [label=\"output\"]\n 6 -> 15 [label=\"output\"]\n 16[label=\"Collapse Collection\"]\n 7 -> 16 [label=\"output\"]\n 17[label=\"Collapse Collection\"]\n 8 -> 17 [label=\"output\"]\n 18[label=\"Meryl\"]\n 9 -> 18 [label=\"read_db\"]\n 19[label=\"HISAT2\"]\n 10 -> 19 [label=\"output\"]\n 5 -> 19 [label=\"output\"]\n 20[label=\"Smudgeplot\"]\n 10 -> 20 [label=\"output\"]\n 21[label=\"Replace\"]\n 13 -> 21 [label=\"output1\"]\n 22[label=\"Bandage Image\"]\n 14 -> 22 [label=\"output\"]\n 23[label=\"BWA-MEM2\"]\n 16 -> 23 [label=\"output\"]\n 5 -> 23 [label=\"output\"]\n 24[label=\"BWA-MEM2\"]\n 17 -> 24 [label=\"output\"]\n 5 -> 24 [label=\"output\"]\n 25[label=\"Merqury\"]\n 5 -> 25 [label=\"output\"]\n 18 -> 25 [label=\"read_db\"]\n kc2fe83a3754a4544bb87df16f3537ab4[color=lightseagreen,label=\"Output\\nMerqury on input dataset(s): stats\"]\n 25 -> kc2fe83a3754a4544bb87df16f3537ab4\n k8f08d8f67615420c8a15201a61b5d3bb[color=lightseagreen,label=\"Output\\nMerqury on input dataset(s): plots\"]\n 25 -> k8f08d8f67615420c8a15201a61b5d3bb\n k7a8d951a6a314b02aeba0eb3061f85ce[color=lightseagreen,label=\"Output\\nMerqury on input dataset(s): QV stats\"]\n 25 -> k7a8d951a6a314b02aeba0eb3061f85ce\n 26[label=\"Meryl\"]\n 18 -> 26 [label=\"read_db\"]\n 27[label=\"Samtools stats\"]\n 19 -> 27 [label=\"output_alignments\"]\n 28[label=\"Busco\"]\n 21 -> 28 [label=\"outfile\"]\n k1d4e45428bf14e32890b2e18df95a0de[color=lightseagreen,label=\"Output\\nBusco on input dataset(s): full table\"]\n 28 -> k1d4e45428bf14e32890b2e18df95a0de\n k680b817736534630ab99c1d2304dc485[color=lightseagreen,label=\"Output\\nBusco on input dataset(s): short summary\"]\n 28 -> k680b817736534630ab99c1d2304dc485\n 29[label=\"Filter and merge\"]\n 24 -> 29 [label=\"bam_output\"]\n 23 -> 29 [label=\"bam_output\"]\n 30[label=\"Merqury plot 2\"]\n 25 -> 30 [label=\"png_files\"]\n 31[label=\"Merqury plot 1\"]\n 25 -> 31 [label=\"png_files\"]\n 32[label=\"Merqury plot 3\"]\n 25 -> 32 [label=\"png_files\"]\n 33[label=\"Merqury plot 5\"]\n 25 -> 33 [label=\"png_files\"]\n 34[label=\"Merqury plot 4\"]\n 25 -> 34 [label=\"png_files\"]\n 35[label=\"GenomeScope\"]\n 26 -> 35 [label=\"read_db_hist\"]\n 4 -> 35 [label=\"output\"]\n 36[label=\"BlobToolKit\"]\n 15 -> 36 [label=\"blast_tabular\"]\n 11 -> 36 [label=\"blobdir\"]\n 28 -> 36 [label=\"busco_table\"]\n 19 -> 36 [label=\"output_alignments\"]\n 37[label=\"PretextMap\"]\n 29 -> 37 [label=\"outfile\"]\n 38[label=\"Interactive BlobToolKit\"]\n 36 -> 38 [label=\"blobdir\"]\n 39[label=\"Pretext Snapshot\"]\n 37 -> 39 [label=\"pretext_map_out\"]\n}", + "history": [ + { + "hash": "807026b8414e9d8e35cb6805104338150b1131f0", + "message": "Update topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.ga", + "num": 3, + "short_hash": "807026b84", + "unix": "1687524556" + }, + { + "hash": "c5bb8031a5b03030e4fdc5c0a478a87e7c1e3c13", + "message": "Fix testes", + "num": 2, + "short_hash": "c5bb8031a", + "unix": "1687511093" + }, + { + "hash": "893cd527b9bd282e7f98475f5c3cd3e2f3ea89b0", + "message": "Add images and rename tutorial", + "num": 1, + "short_hash": "893cd527b", + "unix": "1682673537" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Metadata file" + } + ], + "label": "Metadata file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 280, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": true, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4e2925a6-af6c-4a48-95e1-334ee4cebee4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "NCBI taxonomic ID" + } + ], + "label": "NCBI taxonomic ID", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 280, + "top": 123 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"integer\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "ffe0dbe7-597d-45ed-a356-f036d807b80a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "NCBI taxdump directory" + } + ], + "label": "NCBI taxdump directory", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 280, + "top": 246 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a04c5335-88b6-4d11-9924-5752df4204e1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "FASTQ files" + } + ], + "label": "FASTQ files", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 1182 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "7cb038c5-3dd4-4313-b178-dd05cdc96721", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Ploidy for model to use" + } + ], + "label": "Ploidy for model to use", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 860, + "top": 1011 + }, + "tool_id": null, + "tool_state": "{\"default\": 2, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "e586fc91-192f-45c1-bccb-b3a017ff5b26", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Primary genome assembly file (fasta)" + } + ], + "label": "Primary genome assembly file (fasta)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 280, + "top": 1310 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "1b4475cb-0cc2-4371-ac68-c1bd2f868e50", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DIAMOND database" + } + ], + "label": "DIAMOND database", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 280, + "top": 1735 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "68be0d0c-35a9-4c73-a61e-56c1486e3548", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Hi-C reverse" + } + ], + "label": "Hi-C reverse", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 2172 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8e598f70-ebee-4264-84a4-5d40642004a4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Hi-C forward" + } + ], + "label": "Hi-C forward", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 2602 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "b1a0825d-054b-4d34-a735-4f8b2f57df4c", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nMetadata file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nNCBI taxonomic ID\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nNCBI taxdump directory\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Collection\\nFASTQ files\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nPloidy for model to use\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nPrimary genome assembly file fasta\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nDIAMOND database\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Collection\\nHi-C reverse\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Collection\\nHi-C forward\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"Meryl\"];\n 3 -->|output| 9;\n 10[\"Collapse Collection\"];\n 3 -->|output| 10;\n 11[\"Create BlobtoolKit\"];\n 5 -->|output| 11;\n 0 -->|output| 11;\n 2 -->|output| 11;\n 1 -->|output| 11;\n 12[\"gfastats\"];\n 5 -->|output| 12;\n 13[\"Convert compressed file to uncompressed.\"];\n 5 -->|output| 13;\n 14[\"gfastats\"];\n 5 -->|output| 14;\n 15[\"Diamond\"];\n 5 -->|output| 15;\n 6 -->|output| 15;\n 16[\"Collapse Collection\"];\n 7 -->|output| 16;\n 17[\"Collapse Collection\"];\n 8 -->|output| 17;\n 18[\"Meryl\"];\n 9 -->|read_db| 18;\n 19[\"HISAT2\"];\n 10 -->|output| 19;\n 5 -->|output| 19;\n 20[\"Smudgeplot\"];\n 10 -->|output| 20;\n 21[\"Replace\"];\n 13 -->|output1| 21;\n 22[\"Bandage Image\"];\n 14 -->|output| 22;\n 23[\"BWA-MEM2\"];\n 16 -->|output| 23;\n 5 -->|output| 23;\n 24[\"BWA-MEM2\"];\n 17 -->|output| 24;\n 5 -->|output| 24;\n 25[\"Merqury\"];\n 5 -->|output| 25;\n 18 -->|read_db| 25;\n c2fe83a3-754a-4544-bb87-df16f3537ab4[\"Output\\nMerqury on input dataset(s): stats\"];\n 25 --> c2fe83a3-754a-4544-bb87-df16f3537ab4;\n style c2fe83a3-754a-4544-bb87-df16f3537ab4 stroke:#2c3143,stroke-width:4px;\n 8f08d8f6-7615-420c-8a15-201a61b5d3bb[\"Output\\nMerqury on input dataset(s): plots\"];\n 25 --> 8f08d8f6-7615-420c-8a15-201a61b5d3bb;\n style 8f08d8f6-7615-420c-8a15-201a61b5d3bb stroke:#2c3143,stroke-width:4px;\n 7a8d951a-6a31-4b02-aeba-0eb3061f85ce[\"Output\\nMerqury on input dataset(s): QV stats\"];\n 25 --> 7a8d951a-6a31-4b02-aeba-0eb3061f85ce;\n style 7a8d951a-6a31-4b02-aeba-0eb3061f85ce stroke:#2c3143,stroke-width:4px;\n 26[\"Meryl\"];\n 18 -->|read_db| 26;\n 27[\"Samtools stats\"];\n 19 -->|output_alignments| 27;\n 28[\"Busco\"];\n 21 -->|outfile| 28;\n 1d4e4542-8bf1-4e32-890b-2e18df95a0de[\"Output\\nBusco on input dataset(s): full table\"];\n 28 --> 1d4e4542-8bf1-4e32-890b-2e18df95a0de;\n style 1d4e4542-8bf1-4e32-890b-2e18df95a0de stroke:#2c3143,stroke-width:4px;\n 680b8177-3653-4630-ab99-c1d2304dc485[\"Output\\nBusco on input dataset(s): short summary\"];\n 28 --> 680b8177-3653-4630-ab99-c1d2304dc485;\n style 680b8177-3653-4630-ab99-c1d2304dc485 stroke:#2c3143,stroke-width:4px;\n 29[\"Filter and merge\"];\n 24 -->|bam_output| 29;\n 23 -->|bam_output| 29;\n 30[\"Merqury plot 2\"];\n 25 -->|png_files| 30;\n 31[\"Merqury plot 1\"];\n 25 -->|png_files| 31;\n 32[\"Merqury plot 3\"];\n 25 -->|png_files| 32;\n 33[\"Merqury plot 5\"];\n 25 -->|png_files| 33;\n 34[\"Merqury plot 4\"];\n 25 -->|png_files| 34;\n 35[\"GenomeScope\"];\n 26 -->|read_db_hist| 35;\n 4 -->|output| 35;\n 36[\"BlobToolKit\"];\n 15 -->|blast_tabular| 36;\n 11 -->|blobdir| 36;\n 28 -->|busco_table| 36;\n 19 -->|output_alignments| 36;\n 37[\"PretextMap\"];\n 29 -->|outfile| 37;\n 38[\"Interactive BlobToolKit\"];\n 36 -->|blobdir| 38;\n 39[\"Pretext Snapshot\"];\n 37 -->|pretext_map_out| 39;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "Post-assembly workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.2.0+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "gfastats", + "outputs": [ + { + "name": "stats", + "type": "tabular" + } + ], + "position": { + "left": 570, + "top": 1150 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.2.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5799092ffdff", + "name": "gfastats", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"mode_condition\": {\"selector\": \"statistics\", \"__current_case__\": 1, \"statistics_condition\": {\"selector\": \"assembly\", \"__current_case__\": 2, \"expected_genomesize\": null}, \"tabular\": true}, \"target_condition\": {\"target_option\": \"false\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0+galaxy0", + "type": "tool", + "uuid": "7b6264cf-7b3e-4df7-8091-4fe9db70ba0b", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "6c86bd99-c6d3-49a5-9ffe-5d86d045128d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy+2", + "errors": null, + "id": 20, + "input_connections": { + "file|input|reads": { + "id": 10, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Smudgeplot", + "outputs": [ + { + "name": "smudgeplot", + "type": "png" + }, + { + "name": "smudgeplot_log", + "type": "png" + } + ], + "position": { + "left": 570, + "top": 2319 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy+2", + "tool_shed_repository": { + "changeset_revision": "5e0825476fb7", + "name": "smudgeplot", + "owner": "galaxy-australia", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"file\": {\"input\": {\"input_select\": \"reads\", \"__current_case__\": 0, \"reads\": {\"__class__\": \"ConnectedValue\"}, \"mer_len\": \"21\", \"lower_cutoff\": null, \"upper_cutoff\": null}}, \"homozygous\": false, \"table_output\": false, \"verbose_output\": false, \"warnings_output\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.5+galaxy+2", + "type": "tool", + "uuid": "2b550197-cc54-44e7-be71-8d15a093fda6", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "smudgeplot_log", + "uuid": "7573ecef-1ef1-4879-b602-f4dcc92e0bfb" + }, + { + "label": null, + "output_name": "smudgeplot", + "uuid": "ab18b562-de82-40f4-8c30-3f730479d97c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "errors": null, + "id": 22, + "input_connections": { + "input_file": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 860, + "top": 1499 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "tool_shed_repository": { + "changeset_revision": "ddddce450736", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": false, \"names\": false, \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2022.09+galaxy4", + "type": "tool", + "uuid": "17e86ff6-8432-4125-aee6-63630ea662cc", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "25323480-dacf-41b4-a7e9-c02f557737de" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "errors": null, + "id": 25, + "input_connections": { + "mode|assembly_options|assembly_01": { + "id": 5, + "output_name": "output" + }, + "mode|meryldb_F1": { + "id": 18, + "output_name": "read_db" + } + }, + "inputs": [], + "label": null, + "name": "Merqury", + "outputs": [ + { + "name": "qv_files", + "type": "input" + }, + { + "name": "png_files", + "type": "input" + }, + { + "name": "stats_files", + "type": "input" + } + ], + "position": { + "left": 860, + "top": 581 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "tool_shed_repository": { + "changeset_revision": "f8113c25bc6b", + "name": "merqury", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"label\": \"output_merqury\", \"mode\": {\"options\": \"default\", \"__current_case__\": 0, \"meryldb_F1\": {\"__class__\": \"ConnectedValue\"}, \"assembly_options\": {\"number_assemblies\": \"one\", \"__current_case__\": 0, \"assembly_01\": {\"__class__\": \"ConnectedValue\"}}}, \"output_add_headers\": false, \"output_selector\": [\"qv\", \"plots\", \"stats\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3+galaxy2", + "type": "tool", + "uuid": "60379717-8086-422d-8300-9d1b459a473a", + "when": null, + "workflow_outputs": [ + { + "label": "Merqury on input dataset(s): stats", + "output_name": "stats_files", + "uuid": "c2fe83a3-754a-4544-bb87-df16f3537ab4" + }, + { + "label": "Merqury on input dataset(s): plots", + "output_name": "png_files", + "uuid": "8f08d8f6-7615-420c-8a15-201a61b5d3bb" + }, + { + "label": "Merqury on input dataset(s): QV stats", + "output_name": "qv_files", + "uuid": "7a8d951a-6a31-4b02-aeba-0eb3061f85ce" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.4", + "errors": null, + "id": 27, + "input_connections": { + "input": { + "id": 19, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "Samtools stats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 860, + "top": 1816 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.4", + "tool_shed_repository": { + "changeset_revision": "3a0efe14891f", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cov_threshold\": null, \"coverage_cond\": {\"coverage_select\": \"no\", \"__current_case__\": 0}, \"filter_by_flags\": {\"filter_flags\": \"nofilter\", \"__current_case__\": 1}, \"gc_depth\": null, \"input\": {\"__class__\": \"ConnectedValue\"}, \"insert_size\": null, \"most_inserts\": null, \"read_group\": null, \"read_length\": null, \"remove_dups\": false, \"remove_overlaps\": false, \"sparse\": false, \"split_output_cond\": {\"split_output_selector\": \"no\", \"__current_case__\": 0}, \"trim_quality\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.4", + "type": "tool", + "uuid": "d6f1f5fe-736a-4e1f-87d5-0ae8bba7ad11", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c26fc7dd-b185-42fc-b831-e3e9a5e6d741" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.4+galaxy0", + "errors": null, + "id": 28, + "input_connections": { + "input": { + "id": 21, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + } + ], + "position": { + "left": 1140, + "top": 1293 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "bb935709506a", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"auto_detect\", \"__current_case__\": 0, \"auto_lineage\": \"--auto-lineage\"}, \"outputs\": [\"short_summary\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.4.4+galaxy0", + "type": "tool", + "uuid": "3a41b74c-9ed5-4a4c-a92d-f48cf6d5f35d", + "when": null, + "workflow_outputs": [ + { + "label": "Busco on input dataset(s): full table", + "output_name": "busco_table", + "uuid": "1d4e4542-8bf1-4e32-890b-2e18df95a0de" + }, + { + "label": "Busco on input dataset(s): short summary", + "output_name": "busco_sum", + "uuid": "680b8177-3653-4630-ab99-c1d2304dc485" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "errors": null, + "id": 35, + "input_connections": { + "input": { + "id": 26, + "output_name": "read_db_hist" + }, + "ploidy": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "GenomeScope", + "outputs": [ + { + "name": "linear_plot", + "type": "png" + }, + { + "name": "log_plot", + "type": "png" + }, + { + "name": "transformed_linear_plot", + "type": "png" + }, + { + "name": "transformed_log_plot", + "type": "png" + } + ], + "position": { + "left": 1140, + "top": 977 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "01210c4e9144", + "name": "genomescope", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"topology\": null, \"initial_repetitiveness\": null, \"initial_heterozygosities\": \"\", \"transform_exp\": null, \"testing\": false, \"true_params\": \"\", \"trace_flag\": false, \"num_rounds\": null}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_length\": \"21\", \"lambda\": null, \"max_kmercov\": null, \"output_options\": {\"output_files\": null, \"no_unique_sequence\": false}, \"ploidy\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0+galaxy2", + "type": "tool", + "uuid": "123fa27b-c25d-422f-ab18-5996179a50a0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "transformed_linear_plot", + "uuid": "a7482d1b-bc8b-4d99-9095-14008f64ca7e" + }, + { + "label": null, + "output_name": "log_plot", + "uuid": "2fd6f906-f4ec-4d9a-8043-2185ffde267d" + }, + { + "label": null, + "output_name": "linear_plot", + "uuid": "ed2a9a05-d98f-4edd-b033-2312990b215b" + }, + { + "label": null, + "output_name": "transformed_log_plot", + "uuid": "3e5db883-c25e-470e-bb18-be0da5dcd4f0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "errors": null, + "id": 39, + "input_connections": { + "input": { + "id": 37, + "output_name": "pretext_map_out" + } + }, + "inputs": [], + "label": null, + "name": "Pretext Snapshot", + "outputs": [ + { + "name": "pretext_snap_out", + "type": "input" + } + ], + "position": { + "left": 1430, + "top": 2162 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "44c66e8d21e6", + "name": "pretext_snapshot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"colormap\": \"5\", \"formats\": {\"outformat\": \"png\", \"__current_case__\": 0}, \"grid\": {\"showGrid\": true, \"__current_case__\": 0, \"gridsize\": \"1\", \"gridcolor\": \"black\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mintexels\": \"64\", \"resolution\": \"1000\", \"sequencenames\": false, \"sequences\": \"=full, =all\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.3+galaxy1", + "type": "tool", + "uuid": "576bcaf5-7b61-494c-b6cd-e10084628f08", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "pretext_snap_out", + "uuid": "ac2cda6a-0fdd-476b-b6ba-7e5312d9f409" + } + ] + } + ], + "parent_id": "assembly/ERGA-post-assembly-QC", + "path": "topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Post-assembly workflow", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-ERGA-post-assembly-QC/versions/main-workflow", + "tutorial_id": "ERGA-post-assembly-QC", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.html", + "version": 1, + "wfid": "assembly-ERGA-post-assembly-QC", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "CONVERTER_gz_to_uncompressed", + "__EXTRACT_DATASET__", + "interactive_tool_blobtoolkit", + "toolshed.g2.bx.psu.edu/repos/bgruening/blobtoolkit/blobtoolkit/4.0.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy+2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_map/pretext_map/0.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1127" + } + ] + }, + { + "abbreviations": { + "ASM": "assembly", + "BUSCO": "Benchmarking Universal Single-Copy Orthologs", + "CN": "copy number", + "G10K": "Genome 10K consortium", + "GFA": "Graphical Fragment Assembly", + "Hi-C": "all-versus-all chromatin conformation capture", + "HiFi": "high fidelity", + "NGS": "next generation sequencing", + "QC": "Quality Control", + "QV": "consensus accuracy quality value", + "SMRT": "single-molecule real-time", + "TGS": "third-generation sequencing", + "VGP": "Vertebrate Genomes Project" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bionano_scaffold", + "owner": "bgruening", + "revisions": "5258e18bbe23", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bionano_scaffold", + "owner": "bgruening", + "revisions": "3371c5bdc17a", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfastats", + "owner": "bgruening", + "revisions": "3ef480892a9f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hifiasm", + "owner": "bgruening", + "revisions": "0ee0c3089254", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "f46f0e4f75c4", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "02026300aa45", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bellerophon", + "owner": "iuc", + "revisions": "25ca5d73aedf", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bellerophon", + "owner": "iuc", + "revisions": "321347bd0494", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "46ae58b1d792", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "ea8146ee148f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa_mem2", + "owner": "iuc", + "revisions": "b4a22d90cce9", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa_mem2", + "owner": "iuc", + "revisions": "bfaa0d22c2e4", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "genomescope", + "owner": "iuc", + "revisions": "3169a38c2656", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "genomescope", + "owner": "iuc", + "revisions": "01210c4e9144", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfa_to_fa", + "owner": "iuc", + "revisions": "e33c82b63727", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merqury", + "owner": "iuc", + "revisions": "39edec572bae", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merqury", + "owner": "iuc", + "revisions": "d7edbc9c3a07", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meryl", + "owner": "iuc", + "revisions": "eadfd71dde37", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meryl", + "owner": "iuc", + "revisions": "29dabd8db6f2", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "f54f5baedfdd", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "11a0d50a54e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pretext_map", + "owner": "iuc", + "revisions": "dfb8a4497339", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pretext_snapshot", + "owner": "iuc", + "revisions": "44c66e8d21e6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "purge_dups", + "owner": "iuc", + "revisions": "a315c25dc813", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "purge_dups", + "owner": "iuc", + "revisions": "e9bd16ba5ebd", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "875d0f36d66f", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "salsa", + "owner": "iuc", + "revisions": "f77f7a7f3b83", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "yahs", + "owner": "iuc", + "revisions": "425e63adcc5d", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "48f587c13075", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "8c0175e03cee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bionano_scaffold\n owner: bgruening\n revisions: 5258e18bbe23\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bionano_scaffold\n owner: bgruening\n revisions: 3371c5bdc17a\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfastats\n owner: bgruening\n revisions: 3ef480892a9f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hifiasm\n owner: bgruening\n revisions: 0ee0c3089254\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: f46f0e4f75c4\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 02026300aa45\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bellerophon\n owner: iuc\n revisions: 25ca5d73aedf\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bellerophon\n owner: iuc\n revisions: 321347bd0494\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 46ae58b1d792\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: ea8146ee148f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa_mem2\n owner: iuc\n revisions: b4a22d90cce9\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa_mem2\n owner: iuc\n revisions: bfaa0d22c2e4\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: genomescope\n owner: iuc\n revisions: 3169a38c2656\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: genomescope\n owner: iuc\n revisions: 01210c4e9144\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfa_to_fa\n owner: iuc\n revisions: e33c82b63727\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merqury\n owner: iuc\n revisions: 39edec572bae\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merqury\n owner: iuc\n revisions: d7edbc9c3a07\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meryl\n owner: iuc\n revisions: eadfd71dde37\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meryl\n owner: iuc\n revisions: 29dabd8db6f2\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: f54f5baedfdd\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 11a0d50a54e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pretext_map\n owner: iuc\n revisions: dfb8a4497339\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pretext_snapshot\n owner: iuc\n revisions: 44c66e8d21e6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: purge_dups\n owner: iuc\n revisions: a315c25dc813\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: purge_dups\n owner: iuc\n revisions: e9bd16ba5ebd\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 875d0f36d66f\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: salsa\n owner: iuc\n revisions: f77f7a7f3b83\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: yahs\n owner: iuc\n revisions: 425e63adcc5d\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 48f587c13075\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 8c0175e03cee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/vgp_genome_assembly/tutorial.json", + "contributors": [ + { + "email": "delphine.lariviere@galaxy.org", + "id": "delphine-l", + "joined": "2017-09", + "name": "Delphine Lariviere", + "orcid": "0000-0001-6421-3484", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/delphine-l/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/delphine-l.json" + }, + { + "email": "a.ostrovsky@mac.com", + "id": "astrovsky01", + "joined": "2019-06", + "name": "Alex Ostrovsky", + "orcid": "0000-0002-7901-7109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/astrovsky01.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + }, + { + "id": "abueg", + "joined": "2022-01", + "name": "Linelle Abueg", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abueg/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abueg.json" + }, + { + "id": "pickettbd", + "joined": "2022-01", + "name": "Brandon Pickett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pickettbd/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pickettbd.json" + }, + { + "id": "gf777", + "joined": "2022-01", + "name": "Giulio Formenti", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gf777/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gf777.json" + }, + { + "id": "msozzoni", + "joined": "2022-03", + "name": "Marcella Sozzoni", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/msozzoni/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/msozzoni.json" + }, + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/assembly/tutorials/vgp_genome_assembly", + "edam_operation": [ + "Visualisation", + "Primer removal", + "Phasing", + "De-novo assembly", + "Sequence alignment", + "Mapping", + "Sequence assembly validation", + "Read pre-processing", + "Pairwise sequence alignment", + "Transcriptome assembly", + "Data handling", + "Genome assembly", + "Sequence trimming", + "Read binning", + "k-mer counting", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/vgp_genome_assembly", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 28717, + "mermaid": false + }, + "key_points": [ + "The VGP pipeline allows users to generate error-free, near gapless reference-quality genome assemblies", + "The assembly can be divided into four main stages: genome profile analysis, HiFi long read phased assembly with hifiasm, Bionano hybrid scaffolding and Hi-C scaffolding" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Learn the tools necessary to perform a de novo assembly of a vertebrate genome", + "Evaluate the quality of the assembly" + ], + "pageviews": 17115, + "pub_date": "2021-06-04", + "questions": [ + "What combination of tools can produce the highest quality assembly of vertebrate genomes?", + "How can we evaluate the quality of the assembly in a reference-free way?" + ], + "recordings": [ + { + "captioners": [ + "delphine-l" + ], + "date": "2022-03-13", + "galaxy_version": "21.09", + "length": "10M", + "speakers": [ + "delphine-l" + ], + "youtube_id": "0EoBDiyd-84" + } + ], + "short_id": "T00039", + "short_tools": [ + "bellerophon", + "meryl", + "collapse_dataset", + "busco", + "quast", + "collection_column_join", + "yahs", + "genomescope", + "pretext_map", + "gfa_to_fa", + "cat1", + "tp_find_and_replace", + "sort1", + "hifiasm", + "tp_cut_tool", + "gfastats", + "cutadapt", + "salsa", + "tp_grep_tool", + "merqury", + "pretext_snapshot", + "Convert characters1", + "bedtools_bamtobed", + "bionano_scaffold", + "purge_dups", + "minimap2", + "Add_a_column1", + "bwa_mem2" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "pacbio", + "eukaryote", + "VGP" + ], + "time_estimation": "5h", + "title": "VGP assembly pipeline: Step by Step", + "tools": [ + "Convert characters1", + "cat1", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/bionano_scaffold/bionano_scaffold/3.7.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/bionano_scaffold/bionano_scaffold/3.7.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hifiasm/hifiasm/0.19.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.2.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa/0.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_map/pretext_map/0.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.5+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/salsa/salsa/2.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/yahs/yahs/1.2a.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/3.5+galaxy2", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "ttoolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "vgp_genome_assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/vgp_genome_assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/vgp_genome_assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/vgp_genome_assembly/tutorial.json" + }, + "version": 52, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 119, + "visitors": 10751, + "workflows": [ + { + "creators": [], + "description": "VGP assembly tutorial", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBionano_dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHi-C_dataset_R\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHi-C_dataset_F\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 4[label=\"GFA to FASTA\"]\n 5[label=\"GFA to FASTA\"]\n 6[label=\"Cutadapt\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Busco\"]\n 4 -> 7 [label=\"out_fa\"]\n 8[label=\"Busco\"]\n 5 -> 8 [label=\"out_fa\"]\n 9[label=\"Purge overlaps\"]\n 5 -> 9 [label=\"out_fa\"]\n 10[label=\"Collapse Collection\"]\n 6 -> 10 [label=\"out1\"]\n 11[label=\"Meryl\"]\n 6 -> 11 [label=\"out1\"]\n 12[label=\"Map with minimap2\"]\n 6 -> 12 [label=\"out1\"]\n 5 -> 12 [label=\"out_fa\"]\n 13[label=\"Quast\"]\n 5 -> 13 [label=\"out_fa\"]\n 4 -> 13 [label=\"out_fa\"]\n 6 -> 13 [label=\"out1\"]\n 14[label=\"Map with minimap2\"]\n 9 -> 14 [label=\"split_fasta\"]\n 9 -> 14 [label=\"split_fasta\"]\n 15[label=\"Meryl\"]\n 11 -> 15 [label=\"read_db\"]\n 16[label=\"Purge overlaps\"]\n 12 -> 16 [label=\"alignment_output\"]\n 17[label=\"Meryl\"]\n 15 -> 17 [label=\"read_db\"]\n 18[label=\"Merqury\"]\n 5 -> 18 [label=\"out_fa\"]\n 4 -> 18 [label=\"out_fa\"]\n 15 -> 18 [label=\"read_db\"]\n 19[label=\"Purge overlaps\"]\n 16 -> 19 [label=\"pbcstat_cov\"]\n 16 -> 19 [label=\"calcuts_cutoff\"]\n 14 -> 19 [label=\"alignment_output\"]\n 20[label=\"GenomeScope\"]\n 17 -> 20 [label=\"read_db_hist\"]\n 21[label=\"Purge overlaps\"]\n 19 -> 21 [label=\"purge_dups_bed\"]\n 5 -> 21 [label=\"out_fa\"]\n 22[label=\"Replace\"]\n 20 -> 22 [label=\"summary\"]\n 23[label=\"Compute\"]\n 20 -> 23 [label=\"model_params\"]\n 24[label=\"Bionano Hybrid Scaffold\"]\n 0 -> 24 [label=\"output\"]\n 21 -> 24 [label=\"get_seqs_purged\"]\n 25[label=\"Concatenate datasets\"]\n 21 -> 25 [label=\"get_seqs_hap\"]\n 4 -> 25 [label=\"out_fa\"]\n 26[label=\"Busco\"]\n 21 -> 26 [label=\"get_seqs_purged\"]\n 27[label=\"Replace\"]\n 22 -> 27 [label=\"outfile\"]\n 28[label=\"Compute\"]\n 23 -> 28 [label=\"out_file1\"]\n 29[label=\"Concatenate datasets\"]\n 24 -> 29 [label=\"ngs_contigs_scaffold_trimmed\"]\n 24 -> 29 [label=\"ngs_contigs_not_scaffolded_trimmed\"]\n 30[label=\"Purge overlaps\"]\n 25 -> 30 [label=\"out_file1\"]\n 31[label=\"Map with minimap2\"]\n 10 -> 31 [label=\"output\"]\n 25 -> 31 [label=\"out_file1\"]\n 32[label=\"Search in textfiles\"]\n 27 -> 32 [label=\"outfile\"]\n 33[label=\"Advanced Cut\"]\n 28 -> 33 [label=\"out_file1\"]\n 34[label=\"Advanced Cut\"]\n 28 -> 34 [label=\"out_file1\"]\n 35[label=\"BWA-MEM2\"]\n 1 -> 35 [label=\"output\"]\n 29 -> 35 [label=\"out_file1\"]\n 36[label=\"BWA-MEM2\"]\n 2 -> 36 [label=\"output\"]\n 29 -> 36 [label=\"out_file1\"]\n 37[label=\"Replace\"]\n 29 -> 37 [label=\"out_file1\"]\n 38[label=\"Quast\"]\n 29 -> 38 [label=\"out_file1\"]\n 10 -> 38 [label=\"output\"]\n 39[label=\"Busco\"]\n 29 -> 39 [label=\"out_file1\"]\n 40[label=\"Map with minimap2\"]\n 30 -> 40 [label=\"split_fasta\"]\n 30 -> 40 [label=\"split_fasta\"]\n 41[label=\"Purge overlaps\"]\n 31 -> 41 [label=\"alignment_output\"]\n 42[label=\"Convert\"]\n 32 -> 42 [label=\"output\"]\n 43[label=\"Filter and merge\"]\n 36 -> 43 [label=\"bam_output\"]\n 35 -> 43 [label=\"bam_output\"]\n 44[label=\"Purge overlaps\"]\n 41 -> 44 [label=\"pbcstat_cov\"]\n 41 -> 44 [label=\"calcuts_cutoff\"]\n 40 -> 44 [label=\"alignment_output\"]\n 45[label=\"Advanced Cut\"]\n 42 -> 45 [label=\"out_file1\"]\n 46[label=\"bedtools BAM to BED\"]\n 43 -> 46 [label=\"outfile\"]\n 47[label=\"PretextMap\"]\n 43 -> 47 [label=\"outfile\"]\n 48[label=\"Purge overlaps\"]\n 44 -> 48 [label=\"purge_dups_bed\"]\n 25 -> 48 [label=\"out_file1\"]\n 49[label=\"Sort\"]\n 46 -> 49 [label=\"output\"]\n 50[label=\"Pretext Snapshot\"]\n 47 -> 50 [label=\"pretext_map_out\"]\n 51[label=\"Busco\"]\n 48 -> 51 [label=\"get_seqs_purged\"]\n 52[label=\"Quast\"]\n 21 -> 52 [label=\"get_seqs_purged\"]\n 48 -> 52 [label=\"get_seqs_purged\"]\n 10 -> 52 [label=\"output\"]\n 53[label=\"SALSA\"]\n 49 -> 53 [label=\"out_file1\"]\n 37 -> 53 [label=\"outfile\"]\n 54[label=\"BWA-MEM2\"]\n 1 -> 54 [label=\"output\"]\n 53 -> 54 [label=\"scaffolds_fasta\"]\n 55[label=\"BWA-MEM2\"]\n 2 -> 55 [label=\"output\"]\n 53 -> 55 [label=\"scaffolds_fasta\"]\n 56[label=\"Busco\"]\n 53 -> 56 [label=\"scaffolds_fasta\"]\n 57[label=\"Quast\"]\n 53 -> 57 [label=\"scaffolds_fasta\"]\n 10 -> 57 [label=\"output\"]\n 58[label=\"Filter and merge\"]\n 55 -> 58 [label=\"bam_output\"]\n 54 -> 58 [label=\"bam_output\"]\n 59[label=\"PretextMap\"]\n 58 -> 59 [label=\"outfile\"]\n 60[label=\"Pretext Snapshot\"]\n 59 -> 60 [label=\"pretext_map_out\"]\n}", + "history": [ + { + "hash": "b57efed6057cbfaeb5e79c2ed6a0182d59c619d0", + "message": "VGP training: fix duplication problem (#3271)", + "num": 8, + "short_hash": "b57efed60", + "unix": "1648533596" + }, + { + "hash": "f764939f89074b68169419b828862b8c4333e671", + "message": "Update VGP training 06.02: synthetic reads (#3157)", + "num": 7, + "short_hash": "f764939f8", + "unix": "1645040160" + }, + { + "hash": "5552083ddc045639e0dbed4422cbf97c71052110", + "message": "Fix bug", + "num": 6, + "short_hash": "5552083dd", + "unix": "1643108875" + }, + { + "hash": "f7354f457234a89e026e4960e48fdc211f3aeef8", + "message": "Fix workflow lint", + "num": 5, + "short_hash": "f7354f457", + "unix": "1643108431" + }, + { + "hash": "e87377be94fcab2333895380c4167a4fd0ab435c", + "message": "Include Linelle and update workflow", + "num": 4, + "short_hash": "e87377be9", + "unix": "1643108189" + }, + { + "hash": "a45e1874032e2d30c3d3801599900467134ba5b7", + "message": "workflow tag and annotation", + "num": 3, + "short_hash": "a45e18740", + "unix": "1622754288" + }, + { + "hash": "54179df03c881344d118a06596d7a8ee75477e16", + "message": "update tools", + "num": 2, + "short_hash": "54179df03", + "unix": "1622753242" + }, + { + "hash": "3309edda7618f96ec58d14e47350ea4d5897b9e0", + "message": "add vgp training skeleton from workflow", + "num": 1, + "short_hash": "3309edda7", + "unix": "1622750872" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Bionano_dataset" + } + ], + "label": "Bionano_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "80e89ff1-902e-42f4-be59-f33bf55a692c", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Hi-C_dataset_R" + } + ], + "label": "Hi-C_dataset_R", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "07cb8e4c-afd1-4007-ad83-e7fe9ab14ae6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Hi-C_dataset_F" + } + ], + "label": "Hi-C_dataset_F", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "8395a577-e9a2-41ef-b2bf-ce303b637892", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d99feaa3-653d-4a95-bd1c-6975baf1e946", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nBionano_dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nHi-C_dataset_R\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nHi-C_dataset_F\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"GFA to FASTA\"];\n 5[\"GFA to FASTA\"];\n 6[\"Cutadapt\"];\n 3 -->|output| 6;\n 7[\"Busco\"];\n 4 -->|out_fa| 7;\n 8[\"Busco\"];\n 5 -->|out_fa| 8;\n 9[\"Purge overlaps\"];\n 5 -->|out_fa| 9;\n 10[\"Collapse Collection\"];\n 6 -->|out1| 10;\n 11[\"Meryl\"];\n 6 -->|out1| 11;\n 12[\"Map with minimap2\"];\n 6 -->|out1| 12;\n 5 -->|out_fa| 12;\n 13[\"Quast\"];\n 5 -->|out_fa| 13;\n 4 -->|out_fa| 13;\n 6 -->|out1| 13;\n 14[\"Map with minimap2\"];\n 9 -->|split_fasta| 14;\n 9 -->|split_fasta| 14;\n 15[\"Meryl\"];\n 11 -->|read_db| 15;\n 16[\"Purge overlaps\"];\n 12 -->|alignment_output| 16;\n 17[\"Meryl\"];\n 15 -->|read_db| 17;\n 18[\"Merqury\"];\n 5 -->|out_fa| 18;\n 4 -->|out_fa| 18;\n 15 -->|read_db| 18;\n 19[\"Purge overlaps\"];\n 16 -->|pbcstat_cov| 19;\n 16 -->|calcuts_cutoff| 19;\n 14 -->|alignment_output| 19;\n 20[\"GenomeScope\"];\n 17 -->|read_db_hist| 20;\n 21[\"Purge overlaps\"];\n 19 -->|purge_dups_bed| 21;\n 5 -->|out_fa| 21;\n 22[\"Replace\"];\n 20 -->|summary| 22;\n 23[\"Compute\"];\n 20 -->|model_params| 23;\n 24[\"Bionano Hybrid Scaffold\"];\n 0 -->|output| 24;\n 21 -->|get_seqs_purged| 24;\n 25[\"Concatenate datasets\"];\n 21 -->|get_seqs_hap| 25;\n 4 -->|out_fa| 25;\n 26[\"Busco\"];\n 21 -->|get_seqs_purged| 26;\n 27[\"Replace\"];\n 22 -->|outfile| 27;\n 28[\"Compute\"];\n 23 -->|out_file1| 28;\n 29[\"Concatenate datasets\"];\n 24 -->|ngs_contigs_scaffold_trimmed| 29;\n 24 -->|ngs_contigs_not_scaffolded_trimmed| 29;\n 30[\"Purge overlaps\"];\n 25 -->|out_file1| 30;\n 31[\"Map with minimap2\"];\n 10 -->|output| 31;\n 25 -->|out_file1| 31;\n 32[\"Search in textfiles\"];\n 27 -->|outfile| 32;\n 33[\"Advanced Cut\"];\n 28 -->|out_file1| 33;\n 34[\"Advanced Cut\"];\n 28 -->|out_file1| 34;\n 35[\"BWA-MEM2\"];\n 1 -->|output| 35;\n 29 -->|out_file1| 35;\n 36[\"BWA-MEM2\"];\n 2 -->|output| 36;\n 29 -->|out_file1| 36;\n 37[\"Replace\"];\n 29 -->|out_file1| 37;\n 38[\"Quast\"];\n 29 -->|out_file1| 38;\n 10 -->|output| 38;\n 39[\"Busco\"];\n 29 -->|out_file1| 39;\n 40[\"Map with minimap2\"];\n 30 -->|split_fasta| 40;\n 30 -->|split_fasta| 40;\n 41[\"Purge overlaps\"];\n 31 -->|alignment_output| 41;\n 42[\"Convert\"];\n 32 -->|output| 42;\n 43[\"Filter and merge\"];\n 36 -->|bam_output| 43;\n 35 -->|bam_output| 43;\n 44[\"Purge overlaps\"];\n 41 -->|pbcstat_cov| 44;\n 41 -->|calcuts_cutoff| 44;\n 40 -->|alignment_output| 44;\n 45[\"Advanced Cut\"];\n 42 -->|out_file1| 45;\n 46[\"bedtools BAM to BED\"];\n 43 -->|outfile| 46;\n 47[\"PretextMap\"];\n 43 -->|outfile| 47;\n 48[\"Purge overlaps\"];\n 44 -->|purge_dups_bed| 48;\n 25 -->|out_file1| 48;\n 49[\"Sort\"];\n 46 -->|output| 49;\n 50[\"Pretext Snapshot\"];\n 47 -->|pretext_map_out| 50;\n 51[\"Busco\"];\n 48 -->|get_seqs_purged| 51;\n 52[\"Quast\"];\n 21 -->|get_seqs_purged| 52;\n 48 -->|get_seqs_purged| 52;\n 10 -->|output| 52;\n 53[\"SALSA\"];\n 49 -->|out_file1| 53;\n 37 -->|outfile| 53;\n 54[\"BWA-MEM2\"];\n 1 -->|output| 54;\n 53 -->|scaffolds_fasta| 54;\n 55[\"BWA-MEM2\"];\n 2 -->|output| 55;\n 53 -->|scaffolds_fasta| 55;\n 56[\"Busco\"];\n 53 -->|scaffolds_fasta| 56;\n 57[\"Quast\"];\n 53 -->|scaffolds_fasta| 57;\n 10 -->|output| 57;\n 58[\"Filter and merge\"];\n 55 -->|bam_output| 58;\n 54 -->|bam_output| 58;\n 59[\"PretextMap\"];\n 58 -->|outfile| 59;\n 60[\"Pretext Snapshot\"];\n 59 -->|pretext_map_out| 60;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "VGP assembly: training workflow", + "outputs": [], + "parent_id": "assembly/vgp_genome_assembly", + "path": "topics/assembly/tutorials/vgp_genome_assembly/workflows/main_workflow.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": false, + "title": "VGP assembly: training workflow", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-vgp_genome_assembly/versions/main-workflow", + "tutorial_id": "vgp_genome_assembly", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/vgp_genome_assembly/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/vgp_genome_assembly/workflows/main_workflow.html", + "version": 4, + "wfid": "assembly-vgp_genome_assembly", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Convert characters1", + "cat1", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/bionano_scaffold/bionano_scaffold/3.7.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.2.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa/0.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_map/pretext_map/0.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/purge_dups/purge_dups/1.2.5+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/salsa/salsa/2.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/3.5+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1187" + } + ], + "zenodo_link": "https://zenodo.org/record/5887339" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "ddf54b12c295", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "add_value", + "owner": "devteam", + "revisions": "745871c0b055", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_compute_length", + "owner": "devteam", + "revisions": "de2db1bdfbf8", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_filter_by_length", + "owner": "devteam", + "revisions": "e626b3ff9922", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_filter_by_length", + "owner": "devteam", + "revisions": "8cacfcf96a52", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lastz", + "owner": "devteam", + "revisions": "e7f19d6a9af8", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merge_cols", + "owner": "devteam", + "revisions": "f2aac0c5c60d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "e19bebe96cd2", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "e19bebe96cd2", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "e19bebe96cd2", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "df7356989ac1", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "df7356989ac1", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "fd5dbf0f732e", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "25136a2b0cfe", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: ddf54b12c295\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: add_value\n owner: devteam\n revisions: 745871c0b055\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_compute_length\n owner: devteam\n revisions: de2db1bdfbf8\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_filter_by_length\n owner: devteam\n revisions: e626b3ff9922\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_filter_by_length\n owner: devteam\n revisions: 8cacfcf96a52\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lastz\n owner: devteam\n revisions: e7f19d6a9af8\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merge_cols\n owner: devteam\n revisions: f2aac0c5c60d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: e19bebe96cd2\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: e19bebe96cd2\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: e19bebe96cd2\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: df7356989ac1\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: df7356989ac1\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: fd5dbf0f732e\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 25136a2b0cfe\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ecoli_comparison/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "email": "delphine.lariviere@galaxy.org", + "id": "delphine-l", + "joined": "2017-09", + "name": "Delphine Lariviere", + "orcid": "0000-0001-6421-3484", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/delphine-l/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/delphine-l.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/assembly/tutorials/ecoli_comparison", + "edam_ontology": [ + "topic_0196", + "topic_0622", + "topic_3301" + ], + "edam_operation": [ + "Genome visualisation", + "Sequence alignment", + "Mapping", + "Read mapping", + "Sequence visualisation" + ], + "edam_topic": [ + "Sequence assembly", + "Genomics", + "Microbiology" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/ecoli_comparison", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We learned how to download large sets of completed genomes from NCBI", + "We learned how to use Galaxy's rule-based collection builder", + "We learned how to use a combination of Galaxy tools to create complex views of genome comparisons", + "We learned about idiosyncrasies of data formats and how to deal with them using Galaxy tools" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-24", + "objectives": [ + "Identification of the most closely related genome to my new assembly", + "Perform sequence comparison to locate rearrangements", + "Identify genes located in deletions" + ], + "pageviews": 12067, + "pub_date": "2018-06-14", + "questions": [ + "I just assembled a genome. How does it compare with already sequenced genomes?", + "How do I find rearranged, inserted, or deleted regions?" + ], + "requirements": [ + { + "topic_name": "assembly", + "tutorials": [ + "unicycler-assembly" + ], + "type": "internal" + } + ], + "short_id": "T00032", + "short_tools": [ + "circos", + "lastz_wrapper_2", + "random_lines1", + "Cut1", + "circos_interval_to_tiles", + "addValue", + "collapse_dataset", + "Grep1", + "datamash_ops", + "bedtools_sortbed", + "tp_sort_header_tool", + "bedtools_complementbed", + "tp_replace_in_column", + "circos_aln_to_links", + "cat1", + "tp_cat", + "fasta_filter_by_length", + "Filter1", + "tp_sed_tool", + "fasta_compute_length", + "tp_replace_in_line", + "join1", + "upload1", + "jbrowse", + "bedtools_intersectbed", + "tp_grep_tool", + "mergeCols1" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "gmod", + "prokaryote", + "microgalaxy", + "jbrowse1" + ], + "time_estimation": "4h", + "title": "Making sense of a newly assembled genome", + "tools": [ + "Cut1", + "Filter1", + "Grep1", + "cat1", + "join1", + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/lastz/lastz_wrapper_2/1.3.2", + "toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_complementbed/2.27.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.27.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.27.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy7", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_aln_to_links/0.69.8+galaxy7", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_interval_to_tiles/0.69.8+galaxy7", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "upload1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ecoli_comparison", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/ecoli_comparison/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ecoli_comparison/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ecoli_comparison/tutorial.json" + }, + "version": 29, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 182, + "visitors": 5938, + "workflows": [ + { + "creators": [], + "description": "Making sense of a newly assembled genome", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 10[label=\"Collapse Collection\"]\n 6 -> 10 [label=\"output\"]\n 11[label=\"Text transformation\"]\n 7 -> 11 [label=\"output\"]\n 12[label=\"Add column\"]\n 8 -> 12 [label=\"out_file1\"]\n 13[label=\"LASTZ\"]\n 9 -> 13 [label=\"output\"]\n 3 -> 13 [label=\"output\"]\n 14[label=\"random_lines1\"]\n 10 -> 14 [label=\"output\"]\n 15[label=\"Filter\"]\n 10 -> 15 [label=\"output\"]\n 16[label=\"Search in textfiles\"]\n 11 -> 16 [label=\"output\"]\n 17[label=\"Concatenate datasets\"]\n 11 -> 17 [label=\"output\"]\n 9 -> 17 [label=\"output\"]\n 18[label=\"Cut\"]\n 12 -> 18 [label=\"out_file1\"]\n 19[label=\"Text transformation\"]\n 13 -> 19 [label=\"output\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 20[label=\"Datamash\"]\n 15 -> 20 [label=\"out_file1\"]\n 21[label=\"Compute sequence length\"]\n 17 -> 21 [label=\"out_file1\"]\n 22[label=\"Collapse Collection\"]\n 18 -> 22 [label=\"out_file1\"]\n 23[label=\"Merge Columns\"]\n 19 -> 23 [label=\"output\"]\n 24[label=\"Select\"]\n 20 -> 24 [label=\"out_file\"]\n 25[label=\"Sort\"]\n 21 -> 25 [label=\"output\"]\n 26[label=\"Collapse Collection\"]\n 23 -> 26 [label=\"out_file1\"]\n 27[label=\"Cut\"]\n 26 -> 27 [label=\"output\"]\n 28[label=\"Cut\"]\n 26 -> 28 [label=\"output\"]\n 29[label=\"Concatenate datasets\"]\n 27 -> 29 [label=\"out_file1\"]\n 28 -> 29 [label=\"out_file1\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 30[label=\"SortBED\"]\n 29 -> 30 [label=\"out_file1\"]\n 31[label=\"ComplementBed\"]\n 25 -> 31 [label=\"outfile\"]\n 30 -> 31 [label=\"output\"]\n 32[label=\"Filter\"]\n 31 -> 32 [label=\"output\"]\n 33[label=\"Filter\"]\n 32 -> 33 [label=\"out_file1\"]\n 34[label=\"Intersect intervals\"]\n 33 -> 34 [label=\"out_file1\"]\n 22 -> 34 [label=\"output\"]\n 35[label=\"Join two Datasets\"]\n 34 -> 35 [label=\"output\"]\n 1 -> 35 [label=\"output\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 5[label=\"Filter sequences by length\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"LASTZ\"]\n 2 -> 6 [label=\"output\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Collapse Collection\"]\n 3 -> 7 [label=\"output\"]\n 8[label=\"Select\"]\n 4 -> 8 [label=\"output\"]\n 9[label=\"Text transformation\"]\n 5 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "48cf52ea88fe32cfc059494bc1b464c4b202bf99", + "message": "on purpose mistake fixed", + "num": 6, + "short_hash": "48cf52ea8", + "unix": "1579772724" + }, + { + "hash": "b3f79801438efc81c5f2a3f0af17a26f82e6913e", + "message": "test", + "num": 5, + "short_hash": "b3f798014", + "unix": "1579714684" + }, + { + "hash": "230f6e12fc9de41c8cb554a353e0b816eb656724", + "message": "linting fix", + "num": 4, + "short_hash": "230f6e12f", + "unix": "1579705852" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "485411d09f88e53fb83bc584da92afa171aed32a", + "message": "workflow for ecoli_comparison", + "num": 1, + "short_hash": "485411d09", + "unix": "1546963139" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Ecoli_C_assembly.fna" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Ecoli_C_assembly.fna\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2eb3a31a-f5ec-4ce0-a4db-f421ab573412", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "inline-supplementary-material-7 - Table_S4_Essential genes identi.tsv" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"inline-supplementary-material-7 - Table_S4_Essential genes identi.tsv\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ac567420-400d-4a74-adb5-cdaed90cebd6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8cc3e0ac-13bd-4e29-83dc-8411490fc85d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "6bc17455-70a4-48bb-a511-e484016e9ad8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 490 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "04145efc-b9a4-4bd4-9a72-7cdf0e98e752", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Collapse Collection\"];\n 6 -->|output| 10;\n 11[\"Text transformation\"];\n 7 -->|output| 11;\n 12[\"Add column\"];\n 8 -->|out_file1| 12;\n 13[\"LASTZ\"];\n 9 -->|output| 13;\n 3 -->|output| 13;\n 14[\"random_lines1\"];\n 10 -->|output| 14;\n 15[\"Filter\"];\n 10 -->|output| 15;\n 16[\"Search in textfiles\"];\n 11 -->|output| 16;\n 17[\"Concatenate datasets\"];\n 11 -->|output| 17;\n 9 -->|output| 17;\n 18[\"Cut\"];\n 12 -->|out_file1| 18;\n 19[\"Text transformation\"];\n 13 -->|output| 19;\n 2[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 20[\"Datamash\"];\n 15 -->|out_file1| 20;\n 21[\"Compute sequence length\"];\n 17 -->|out_file1| 21;\n 22[\"Collapse Collection\"];\n 18 -->|out_file1| 22;\n 23[\"Merge Columns\"];\n 19 -->|output| 23;\n 24[\"Select\"];\n 20 -->|out_file| 24;\n 25[\"Sort\"];\n 21 -->|output| 25;\n 26[\"Collapse Collection\"];\n 23 -->|out_file1| 26;\n 27[\"Cut\"];\n 26 -->|output| 27;\n 28[\"Cut\"];\n 26 -->|output| 28;\n 29[\"Concatenate datasets\"];\n 27 -->|out_file1| 29;\n 28 -->|out_file1| 29;\n 3[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 30[\"SortBED\"];\n 29 -->|out_file1| 30;\n 31[\"ComplementBed\"];\n 25 -->|outfile| 31;\n 30 -->|output| 31;\n 32[\"Filter\"];\n 31 -->|output| 32;\n 33[\"Filter\"];\n 32 -->|out_file1| 33;\n 34[\"Intersect intervals\"];\n 33 -->|out_file1| 34;\n 22 -->|output| 34;\n 35[\"Join two Datasets\"];\n 34 -->|output| 35;\n 1 -->|output| 35;\n 4[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Filter sequences by length\"];\n 0 -->|output| 5;\n 6[\"LASTZ\"];\n 2 -->|output| 6;\n 0 -->|output| 6;\n 7[\"Collapse Collection\"];\n 3 -->|output| 7;\n 8[\"Select\"];\n 4 -->|output| 8;\n 9[\"Text transformation\"];\n 5 -->|output| 9;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Ecoli Comparison", + "outputs": [], + "parent_id": "assembly/ecoli_comparison", + "path": "topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": false, + "title": "Ecoli Comparison", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-ecoli_comparison/versions/ecoli-comparison", + "tutorial_id": "ecoli_comparison", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.html", + "version": 3, + "wfid": "assembly-ecoli_comparison", + "wfname": "ecoli-comparison", + "workflow": "ecoli-comparison.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "Grep1", + "cat1", + "join1", + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/lastz/lastz_wrapper_2/1.3.2", + "toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_complementbed/2.27.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.27.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.27.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0" + ], + "workflowhub_id": "1113" + } + ], + "zenodo_link": "https://zenodo.org/record/3382053" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "749c918495f7", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_filter_by_length", + "owner": "devteam", + "revisions": "8cacfcf96a52", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "145f6d74ff5e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "b2860df42e16", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "94fe43e75ddc", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "1d8fe9bc4cb0", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "53c0b7a1a0c3", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "b2f1f75d49c4", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "645159bcee2d", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_fastx", + "owner": "iuc", + "revisions": "a8d69aee190e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "b01db2684fa5", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "aad3885b3216", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unicycler", + "owner": "iuc", + "revisions": "9e3e80cc4ad4", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bowtie2\n owner: devteam\n revisions: 749c918495f7\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_filter_by_length\n owner: devteam\n revisions: 8cacfcf96a52\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 145f6d74ff5e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: b2860df42e16\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 94fe43e75ddc\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 1d8fe9bc4cb0\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 53c0b7a1a0c3\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: b2f1f75d49c4\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: 645159bcee2d\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_fastx\n owner: iuc\n revisions: a8d69aee190e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: b01db2684fa5\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: aad3885b3216\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unicycler\n owner: iuc\n revisions: 9e3e80cc4ad4\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-with-preprocessing/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/assembly/tutorials/assembly-with-preprocessing", + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Sequence file editing", + "Box-Whisker plot plotting", + "Read mapping", + "Pairwise sequence alignment", + "Scatter plot plotting", + "Sequence assembly visualisation", + "Data handling", + "Validation", + "Genome assembly", + "Aggregation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/assembly-with-preprocessing", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Certain types of NGS samples can be heavily contaminated with sequences from other genomes", + "Reads from known/expected contaminating sources can be identified by mapping to the respective genomes", + "After mapping, use filtering tools to remove identified contaminating reads, and use conversion tools to convert remaining mapped reads back into raw sequenced reads expected by most downstream tools" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Obtain viral (SARS-CoV-2) sequencing data with contaminating human reads from public sources", + "Organize the data into collections and check its quality", + "Detect and remove human reads", + "Assemble retained reads and explore the results" + ], + "pageviews": 5734441, + "pub_date": "2020-04-21", + "questions": [ + "How can a genome of interest be assembled against a background of contaminating reads from other genomes?", + "How can sequencing data from public sources be turned into assembly-ready polished datasets?" + ], + "recordings": [ + { + "captioners": [ + "mtekman" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "25M", + "speakers": [ + "gallardoalba" + ], + "youtube_id": "jNFLYhjgJPs" + } + ], + "requirements": [ + { + "topic_name": "assembly", + "tutorials": [ + "unicycler-assembly" + ], + "type": "internal" + }, + { + "topic_name": "sequence-analysis", + "tutorials": [ + "mapping" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + } + ], + "short_id": "T00029", + "short_tools": [ + "samtools_stats", + "nanoplot", + "fastp", + "samtools_view", + "multiqc", + "samtools_fastx", + "__ZIP_COLLECTION__", + "bowtie2", + "fasterq_dump", + "fasta_filter_by_length", + "seqtk_sample", + "bandage_info", + "minimap2", + "bandage_image", + "unicycler", + "collapse_dataset" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "covid19" + ], + "time_estimation": "4h", + "title": "Unicycler assembly of SARS-CoV-2 genome with preprocessing to remove human genome reads", + "tools": [ + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "assembly-with-preprocessing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/assembly-with-preprocessing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-with-preprocessing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-with-preprocessing/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 363, + "visitors": 2068028, + "workflows": [ + { + "creators": [], + "description": "Assembly with preprocessing", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nCollection of paired short-reads data\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nCollection of long-reads data\"]\n 10[label=\"Samtools fastx\"]\n 7 -> 10 [label=\"outputsam\"]\n 11[label=\"Samtools fastx\"]\n 9 -> 11 [label=\"outputsam\"]\n 12[label=\"Collapse Collection\"]\n 10 -> 12 [label=\"nonspecific\"]\n 13[label=\"Zip Collection\"]\n 11 -> 13 [label=\"forward\"]\n 11 -> 13 [label=\"reverse\"]\n 14[label=\"Collapse Collection\"]\n 11 -> 14 [label=\"forward\"]\n 15[label=\"Collapse Collection\"]\n 11 -> 15 [label=\"reverse\"]\n 16[label=\"seqtk_sample\"]\n 14 -> 16 [label=\"output\"]\n 17[label=\"seqtk_sample\"]\n 15 -> 17 [label=\"output\"]\n 18[label=\"Create assemblies with Unicycler\"]\n 12 -> 18 [label=\"output\"]\n 16 -> 18 [label=\"default\"]\n 17 -> 18 [label=\"default\"]\n 19[label=\"Bandage Info\"]\n 18 -> 19 [label=\"assembly_graph\"]\n 2[label=\"fastp: Trimmed Illumina Reads\"]\n 0 -> 2 [label=\"output\"]\n 20[label=\"Filter sequences by length\"]\n 18 -> 20 [label=\"assembly\"]\n 21[label=\"Bandage Image\"]\n 18 -> 21 [label=\"assembly_graph\"]\n 3[label=\"NanoPlot\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Map with minimap2\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"MultiQC\"]\n 2 -> 5 [label=\"report_json\"]\n 6[label=\"Bowtie2\"]\n 2 -> 6 [label=\"output_paired_coll\"]\n 7[label=\"Samtools view\"]\n 4 -> 7 [label=\"alignment_output\"]\n 8[label=\"Samtools stats\"]\n 4 -> 8 [label=\"alignment_output\"]\n 9[label=\"Samtools view\"]\n 6 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "fc35e6581a2e34e4420f19af4619c92283609e91", + "message": "add annotations", + "num": 2, + "short_hash": "fc35e6581", + "unix": "1587558793" + }, + { + "hash": "7ed054469d1ef84a60abec55758ee2932f9a9655", + "message": "readd workflows", + "num": 1, + "short_hash": "7ed054469", + "unix": "1587555276" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Collection of paired short-reads data", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 268.13330078125, + "top": 341.41668701171875 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "3e7dab04-77db-4780-b1dd-c724b80a8b7b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "daba9931-3837-42b5-a93f-e2e51f5f667a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Collection of long-reads data", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 267.13330078125, + "top": 756.4166717529297 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"lis\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "bd1f5561-95a1-4fb5-af1e-f3d4cbb40639", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7146e49b-ab4b-44a8-ac54-e98539fecb97" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nCollection of paired short-reads data\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nCollection of long-reads data\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Samtools fastx\"];\n 7 -->|outputsam| 10;\n 11[\"Samtools fastx\"];\n 9 -->|outputsam| 11;\n 12[\"Collapse Collection\"];\n 10 -->|nonspecific| 12;\n 13[\"Zip Collection\"];\n 11 -->|forward| 13;\n 11 -->|reverse| 13;\n 14[\"Collapse Collection\"];\n 11 -->|forward| 14;\n 15[\"Collapse Collection\"];\n 11 -->|reverse| 15;\n 16[\"seqtk_sample\"];\n 14 -->|output| 16;\n 17[\"seqtk_sample\"];\n 15 -->|output| 17;\n 18[\"Create assemblies with Unicycler\"];\n 12 -->|output| 18;\n 16 -->|default| 18;\n 17 -->|default| 18;\n 19[\"Bandage Info\"];\n 18 -->|assembly_graph| 19;\n 2[\"fastp: Trimmed Illumina Reads\"];\n 0 -->|output| 2;\n 20[\"Filter sequences by length\"];\n 18 -->|assembly| 20;\n 21[\"Bandage Image\"];\n 18 -->|assembly_graph| 21;\n 3[\"NanoPlot\"];\n 1 -->|output| 3;\n 4[\"Map with minimap2\"];\n 1 -->|output| 4;\n 5[\"MultiQC\"];\n 2 -->|report_json| 5;\n 6[\"Bowtie2\"];\n 2 -->|output_paired_coll| 6;\n 7[\"Samtools view\"];\n 4 -->|alignment_output| 7;\n 8[\"Samtools stats\"];\n 4 -->|alignment_output| 8;\n 9[\"Samtools view\"];\n 6 -->|output| 9;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "assembly_with_preprocessing", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Collection of paired short-reads data", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 268.13330078125, + "top": 341.41668701171875 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "3e7dab04-77db-4780-b1dd-c724b80a8b7b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "daba9931-3837-42b5-a93f-e2e51f5f667a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Collection of long-reads data", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 267.13330078125, + "top": 756.4166717529297 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"lis\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "bd1f5561-95a1-4fb5-af1e-f3d4cbb40639", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7146e49b-ab4b-44a8-ac54-e98539fecb97" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 7, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "nonspecific", + "type": "fasta" + } + ], + "position": { + "left": 1333.63330078125, + "top": 852.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a8d69aee190e", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_arb_tags\": \"\\\"\\\"\", \"__page__\": null, \"output_fmt_cond\": \"{\\\"__current_case__\\\": 2, \\\"default_quality\\\": \\\"\\\", \\\"ilumina_casava\\\": \\\"false\\\", \\\"output_fmt_select\\\": \\\"fastqsanger.gz\\\", \\\"output_quality\\\": \\\"false\\\"}\", \"idxout_cond\": \"{\\\"__current_case__\\\": 0, \\\"idxout_select\\\": \\\"no\\\"}\", \"read_numbering\": \"\\\"\\\"\", \"exclusive_filter\": \"null\", \"exclusive_filter_all\": \"null\", \"inclusive_filter\": \"null\", \"outputs\": \"[\\\"r0\\\"]\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"copy_tags\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "31e2b4e8-7631-46c0-8382-b805cee2b739", + "workflow_outputs": [ + { + "label": null, + "output_name": "nonspecific", + "uuid": "cfbf839f-53f0-4a82-8966-2bdb6919de5e" + } + ] + }, + { + "annotation": "", + "content_id": "__ZIP_COLLECTION__", + "errors": null, + "id": 13, + "input_connections": { + "input_forward": { + "id": 11, + "output_name": "forward" + }, + "input_reverse": { + "id": 11, + "output_name": "reverse" + } + }, + "inputs": [], + "label": null, + "name": "Zip Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1754.63330078125, + "top": 477.41668701171875 + }, + "post_job_actions": {}, + "tool_id": "__ZIP_COLLECTION__", + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"input_reverse\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"input_forward\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "9ba89e81-9c53-4f5b-9d61-42319b7d574c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ebc8f563-c45e-4e17-a541-b1275e7f61ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "errors": null, + "id": 16, + "input_connections": { + "in_file": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_sample", + "name": "in_file" + } + ], + "label": null, + "name": "seqtk_sample", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2129.4166717529297, + "top": 711.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"s\": \"\\\"4\\\"\", \"in_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"subsample_size\": \"\\\"0.1\\\"\", \"advanced\": \"{\\\"single_pass_mode\\\": \\\"false\\\"}\"}", + "tool_version": "1.3.2", + "type": "tool", + "uuid": "4f7c9133-a664-46dc-9583-c9980d5d1011", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "be52344e-6874-431c-8d86-9d0e9371aed9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "errors": null, + "id": 17, + "input_connections": { + "in_file": { + "id": 15, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_sample", + "name": "in_file" + } + ], + "label": null, + "name": "seqtk_sample", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2116.4166717529297, + "top": 859.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"s\": \"\\\"4\\\"\", \"in_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"subsample_size\": \"\\\"0.1\\\"\", \"advanced\": \"{\\\"single_pass_mode\\\": \\\"false\\\"}\"}", + "tool_version": "1.3.2", + "type": "tool", + "uuid": "79064891-aa79-42e3-b848-7a6240022acc", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "3e196eb1-8ba1-4be5-90d0-c5b8d3df4ff0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "errors": null, + "id": 18, + "input_connections": { + "long": { + "id": 12, + "output_name": "output" + }, + "paired_unpaired|fastq_input1": { + "id": 16, + "output_name": "default" + }, + "paired_unpaired|fastq_input2": { + "id": 17, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "lr_align" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "long" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "paired_unpaired" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "paired_unpaired" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "rotation" + } + ], + "label": null, + "name": "Create assemblies with Unicycler", + "outputs": [ + { + "name": "assembly_graph", + "type": "tabular" + }, + { + "name": "assembly", + "type": "fasta" + } + ], + "position": { + "left": 2365.633331298828, + "top": 706.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "tool_shed_repository": { + "changeset_revision": "88c240872a65", + "name": "unicycler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"linear_seqs\": \"\\\"1\\\"\", \"spades\": \"{\\\"depth_filter\\\": \\\"0.25\\\", \\\"kmer_count\\\": \\\"10\\\", \\\"kmers\\\": \\\"\\\", \\\"largest_component\\\": \\\"false\\\", \\\"max_kmer_frac\\\": \\\"0.95\\\", \\\"min_kmer_frac\\\": \\\"0.2\\\", \\\"no_correct\\\": \\\"false\\\"}\", \"graph_clean\": \"{\\\"min_component_size\\\": \\\"1000\\\", \\\"min_dead_end_size\\\": \\\"1000\\\"}\", \"__page__\": null, \"min_anchor_seg_len\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"lr_align\": \"{\\\"contamination\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"low_score\\\": \\\"\\\", \\\"scores\\\": \\\"3,-6,-5,-2\\\"}\", \"long\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"paired_unpaired\": \"{\\\"__current_case__\\\": 0, \\\"fastq_input1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"fastq_input2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"fastq_input_selector\\\": \\\"paired\\\"}\", \"min_fasta_length\": \"\\\"100\\\"\", \"mode\": \"\\\"normal\\\"\", \"rotation\": \"{\\\"no_rotate\\\": \\\"false\\\", \\\"start_gene_cov\\\": \\\"95.0\\\", \\\"start_gene_id\\\": \\\"90.0\\\", \\\"start_genes\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\", \"pilon\": \"{\\\"min_polish_size\\\": \\\"1000\\\", \\\"no_pilon\\\": \\\"false\\\"}\"}", + "tool_version": "0.4.8.0", + "type": "tool", + "uuid": "851c6be6-c202-450a-9cd3-19e205dcc496", + "workflow_outputs": [ + { + "label": null, + "output_name": "assembly", + "uuid": "702dd61e-6072-49d9-a502-44e0a23f5a98" + }, + { + "label": null, + "output_name": "assembly_graph", + "uuid": "3285cc00-6b39-4f3d-87a5-87abd483ede6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "input_file": { + "id": 18, + "output_name": "assembly_graph" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "txt" + } + ], + "position": { + "left": 2665.633331298828, + "top": 811.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"tsv\": \"\\\"false\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "0.8.1+galaxy1", + "type": "tool", + "uuid": "4aa230bd-3269-41c3-81f5-9085fcc4001d", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "cf5eab6a-97ae-430e-a27a-6ecc33d4b8c0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "single_paired|paired_input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "fastp: Trimmed Illumina Reads", + "name": "fastp", + "outputs": [ + { + "name": "output_paired_coll", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 585, + "top": 365.04998779296875 + }, + "post_job_actions": { + "HideDatasetActionreport_html": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "report_html" + }, + "HideDatasetActionreport_json": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "1d8fe9bc4cb0", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"output_options\": \"{\\\"report_html\\\": \\\"true\\\", \\\"report_json\\\": \\\"true\\\"}\", \"single_paired\": \"{\\\"__current_case__\\\": 2, \\\"adapter_trimming_options\\\": {\\\"adapter_sequence1\\\": \\\"\\\", \\\"adapter_sequence2\\\": \\\"\\\", \\\"disable_adapter_trimming\\\": \\\"false\\\"}, \\\"global_trimming_options\\\": {\\\"trim_front1\\\": \\\"\\\", \\\"trim_front2\\\": \\\"\\\", \\\"trim_tail1\\\": \\\"\\\", \\\"trim_tail2\\\": \\\"\\\"}, \\\"paired_input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"single_paired_selector\\\": \\\"paired_collection\\\"}\", \"read_mod_options\": \"{\\\"base_correction_options\\\": {\\\"correction\\\": \\\"false\\\"}, \\\"cutting_by_quality_options\\\": {\\\"cut_by_quality3\\\": \\\"false\\\", \\\"cut_by_quality5\\\": \\\"false\\\", \\\"cut_mean_quality\\\": \\\"\\\", \\\"cut_window_size\\\": \\\"\\\"}, \\\"polyg_tail_trimming\\\": {\\\"__current_case__\\\": 1, \\\"poly_g_min_len\\\": \\\"\\\", \\\"trimming_select\\\": \\\"\\\"}, \\\"polyx_tail_trimming\\\": {\\\"__current_case__\\\": 1, \\\"polyx_trimming_select\\\": \\\"\\\"}, \\\"umi_processing\\\": {\\\"umi\\\": \\\"false\\\", \\\"umi_len\\\": \\\"\\\", \\\"umi_loc\\\": \\\"\\\", \\\"umi_prefix\\\": \\\"\\\"}}\", \"overrepresented_sequence_analysis\": \"{\\\"overrepresentation_analysis\\\": \\\"false\\\", \\\"overrepresentation_sampling\\\": \\\"\\\"}\", \"filter_options\": \"{\\\"length_filtering_options\\\": {\\\"disable_length_filtering\\\": \\\"false\\\", \\\"length_required\\\": \\\"50\\\"}, \\\"low_complexity_filter\\\": {\\\"complexity_threshold\\\": \\\"\\\", \\\"enable_low_complexity_filter\\\": \\\"false\\\"}, \\\"quality_filtering_options\\\": {\\\"disable_quality_filtering\\\": \\\"false\\\", \\\"n_base_limit\\\": \\\"\\\", \\\"qualified_quality_phred\\\": \\\"20\\\", \\\"unqualified_percent_limit\\\": \\\"20\\\"}}\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.19.5+galaxy1", + "type": "tool", + "uuid": "7508c22b-dc6a-4071-8dd0-d5616718e62b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_paired_coll", + "uuid": "a7be7eab-3e80-4be6-b1a4-ab303c314096" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "assembly" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Filter sequences by length", + "name": "input" + } + ], + "label": null, + "name": "Filter sequences by length", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 2574.4166870117188, + "top": 1254.4166870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "tool_shed_repository": { + "changeset_revision": "8cacfcf96a52", + "name": "fasta_filter_by_length", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"max_length\": \"\\\"0\\\"\", \"min_length\": \"\\\"1000\\\"\"}", + "tool_version": "1.2", + "type": "tool", + "uuid": "3cbd67e0-3e55-4726-8dbe-0c61aec4d293", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e4143f49-239f-4266-ba8d-e6299a331403" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "errors": null, + "id": 21, + "input_connections": { + "input_file": { + "id": 18, + "output_name": "assembly_graph" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Bandage Image", + "name": "input_file" + } + ], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 2667.4166870117188, + "top": 1052.4166870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"lengths\": \"\\\"true\\\"\", \"output_format\": \"\\\"jpg\\\"\", \"height\": \"\\\"1000\\\"\", \"width\": \"\\\"\\\"\", \"names\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "ef2c6a46-8421-499e-a840-8dd03483c5c9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "5e535f98-b740-44ec-aba1-9d9090acb89a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "mode|reads|files": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "txt" + }, + { + "name": "nanostats_post_filtering", + "type": "txt" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 630, + "top": 650.4666595458984 + }, + "post_job_actions": { + "HideDatasetActionlog_read_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log_read_length" + }, + "HideDatasetActionnanostats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats" + }, + "HideDatasetActionnanostats_post_filtering": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "HideDatasetActionread_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "645159bcee2d", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter\": \"{\\\"alength\\\": \\\"false\\\", \\\"barcoded\\\": \\\"false\\\", \\\"downsample\\\": \\\"\\\", \\\"drop_outliers\\\": \\\"false\\\", \\\"loglength\\\": \\\"true\\\", \\\"maxlength\\\": \\\"\\\", \\\"minlength\\\": \\\"\\\", \\\"minqual\\\": \\\"\\\", \\\"percentqual\\\": \\\"false\\\", \\\"readtype\\\": null}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"mode\": \"{\\\"__current_case__\\\": 0, \\\"choice\\\": \\\"batch\\\", \\\"reads\\\": {\\\"__current_case__\\\": 0, \\\"files\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"type\\\": \\\"fastq\\\"}}\", \"customization\": \"{\\\"N50\\\": \\\"false\\\", \\\"color\\\": null, \\\"format\\\": \\\"png\\\", \\\"noN50\\\": \\\"false\\\", \\\"plots\\\": null}\"}", + "tool_version": "1.25.0+galaxy1", + "type": "tool", + "uuid": "9b1d43ac-82e3-463f-9c88-08c8826a62c9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_html", + "uuid": "cd8570c7-02db-479b-81a9-cd0d26643f71" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 709.199951171875, + "top": 1131.9666748046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "tool_shed_repository": { + "changeset_revision": "53c0b7a1a0c3", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": \"{\\\"-O2\\\": \\\"\\\", \\\"A\\\": \\\"\\\", \\\"B\\\": \\\"\\\", \\\"E\\\": \\\"\\\", \\\"E2\\\": \\\"\\\", \\\"O\\\": \\\"\\\", \\\"s\\\": \\\"\\\", \\\"u\\\": null, \\\"z\\\": \\\"\\\"}\", \"analysis_type_selector\": \"\\\"splice\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"io_options\": \"{\\\"K\\\": \\\"\\\", \\\"L\\\": \\\"false\\\", \\\"Q\\\": \\\"false\\\", \\\"Y\\\": \\\"false\\\", \\\"c\\\": \\\"false\\\", \\\"cs\\\": null, \\\"eqx\\\": \\\"false\\\", \\\"output_format\\\": \\\"BAM\\\"}\", \"mapping_options\": \"{\\\"F\\\": \\\"\\\", \\\"G\\\": \\\"\\\", \\\"N\\\": \\\"\\\", \\\"X\\\": \\\"false\\\", \\\"f\\\": \\\"\\\", \\\"g\\\": \\\"\\\", \\\"m\\\": \\\"\\\", \\\"min_occ_floor\\\": \\\"\\\", \\\"n\\\": \\\"\\\", \\\"p\\\": \\\"\\\", \\\"r\\\": \\\"\\\"}\", \"fastq_input\": \"{\\\"__current_case__\\\": 1, \\\"fastq_input1\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"fastq_input_selector\\\": \\\"single\\\"}\", \"reference_source\": \"{\\\"__current_case__\\\": 0, \\\"ref_file\\\": \\\"hg38\\\", \\\"reference_source_selector\\\": \\\"cached\\\"}\", \"indexing_options\": \"{\\\"H\\\": \\\"false\\\", \\\"I\\\": \\\"\\\", \\\"k\\\": \\\"\\\", \\\"w\\\": \\\"\\\"}\"}", + "tool_version": "2.17+galaxy1", + "type": "tool", + "uuid": "098d2283-1218-489b-9882-8822e79d9444", + "workflow_outputs": [ + { + "label": null, + "output_name": "alignment_output", + "uuid": "9972015d-4bdc-440f-b8b6-84e92a64ef8f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 5, + "input_connections": { + "results_0|software_cond|input": { + "id": 2, + "output_name": "report_json" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 938.699951171875, + "top": 250 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\\\"\\\"\", \"__page__\": null, \"title\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"results\": \"[{\\\"__index__\\\": 0, \\\"software_cond\\\": {\\\"__current_case__\\\": 7, \\\"input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"software\\\": \\\"fastp\\\"}}]\", \"saveLog\": \"\\\"false\\\"\"}", + "tool_version": "1.7", + "type": "tool", + "uuid": "73566697-4a46-4d35-b8e2-61770acc62c0", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "15f42a94-2c97-4932-8e3f-f26a72b58be4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "library|input_1": { + "id": 2, + "output_name": "output_paired_coll" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 913.9166259765625, + "top": 564.6333312988281 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "749c918495f7", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"sam_options\": \"{\\\"__current_case__\\\": 1, \\\"sam_options_selector\\\": \\\"no\\\"}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"library\": \"{\\\"__current_case__\\\": 2, \\\"aligned_file\\\": \\\"false\\\", \\\"input_1\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"paired_options\\\": {\\\"__current_case__\\\": 1, \\\"paired_options_selector\\\": \\\"no\\\"}, \\\"type\\\": \\\"paired_collection\\\", \\\"unaligned_file\\\": \\\"false\\\"}\", \"reference_genome\": \"{\\\"__current_case__\\\": 0, \\\"index\\\": \\\"hg38full\\\", \\\"source\\\": \\\"indexed\\\"}\", \"rg\": \"{\\\"__current_case__\\\": 3, \\\"rg_selector\\\": \\\"do_not_set\\\"}\", \"save_mapping_stats\": \"\\\"true\\\"\", \"analysis_type\": \"{\\\"__current_case__\\\": 0, \\\"analysis_type_selector\\\": \\\"simple\\\", \\\"presets\\\": \\\"no_presets\\\"}\"}", + "tool_version": "2.3.4.3+galaxy0", + "type": "tool", + "uuid": "43331d2c-7116-410e-a6bd-7e7520d93a52", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "eeae40f6-f1b2-4c56-9860-ac7b8eb1dec0" + }, + { + "label": null, + "output_name": "mapping_stats", + "uuid": "c567226e-efaf-4188-bdec-3ba20d0733b0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 4, + "output_name": "alignment_output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools stats", + "outputs": [ + { + "name": "output_collection", + "type": "input" + } + ], + "position": { + "left": 1022.4166259765625, + "top": 1254.4166870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "145f6d74ff5e", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"coverage_cond\": \"{\\\"__current_case__\\\": 0, \\\"coverage_select\\\": \\\"no\\\"}\", \"gc_depth\": \"\\\"\\\"\", \"cov_threshold\": \"\\\"\\\"\", \"most_inserts\": \"\\\"\\\"\", \"cond_region\": \"{\\\"__current_case__\\\": 0, \\\"select_region\\\": \\\"no\\\"}\", \"split_output_cond\": \"{\\\"__current_case__\\\": 1, \\\"generate_tables\\\": [\\\"SN\\\"], \\\"split_output_selector\\\": \\\"yes\\\"}\", \"read_length\": \"\\\"\\\"\", \"trim_quality\": \"\\\"\\\"\", \"remove_overlaps\": \"\\\"false\\\"\", \"filter_by_flags\": \"{\\\"__current_case__\\\": 1, \\\"filter_flags\\\": \\\"nofilter\\\"}\", \"sparse\": \"\\\"false\\\"\", \"addref_cond\": \"{\\\"__current_case__\\\": 0, \\\"addref_select\\\": \\\"no\\\"}\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"insert_size\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"remove_dups\": \"\\\"false\\\"\"}", + "tool_version": "2.0.2+galaxy2", + "type": "tool", + "uuid": "15f6252f-79d4-4319-855d-09665deac6a3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_collection", + "uuid": "faed6306-eed6-40bd-ac9f-9fb3a4e980ea" + } + ] + } + ], + "parent_id": "assembly/assembly-with-preprocessing", + "path": "topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.ga", + "tags": [ + "GTN", + "assembly" + ], + "test_results": null, + "tests": false, + "title": "assembly_with_preprocessing", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-with-preprocessing/versions/assembly-with-preprocessing", + "tutorial_id": "assembly-with-preprocessing", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.html", + "version": 1, + "wfid": "assembly-assembly-with-preprocessing", + "wfname": "assembly-with-preprocessing", + "workflow": "assembly_with_preprocessing.ga", + "workflow_tools": [ + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "workflowhub_id": "1132" + }, + { + "creators": [], + "description": "Assembly with preprocessing and SRA download", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nList of Illumina accessions\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nList of ONT accessions\"]\n 10[label=\"Samtools stats\"]\n 6 -> 10 [label=\"alignment_output\"]\n 11[label=\"Samtools view\"]\n 8 -> 11 [label=\"output\"]\n 12[label=\"Samtools fastx\"]\n 9 -> 12 [label=\"outputsam\"]\n 13[label=\"Samtools fastx\"]\n 11 -> 13 [label=\"outputsam\"]\n 14[label=\"Collapse Collection\"]\n 12 -> 14 [label=\"nonspecific\"]\n 15[label=\"Zip Collection\"]\n 13 -> 15 [label=\"forward\"]\n 13 -> 15 [label=\"reverse\"]\n 16[label=\"Collapse Collection\"]\n 13 -> 16 [label=\"forward\"]\n 17[label=\"Collapse Collection\"]\n 13 -> 17 [label=\"reverse\"]\n 18[label=\"seqtk_sample\"]\n 16 -> 18 [label=\"output\"]\n 19[label=\"seqtk_sample\"]\n 17 -> 19 [label=\"output\"]\n 2[label=\"Illumina data\"]\n 0 -> 2 [label=\"output\"]\n 20[label=\"Create assemblies with Unicycler\"]\n 14 -> 20 [label=\"output\"]\n 18 -> 20 [label=\"default\"]\n 19 -> 20 [label=\"default\"]\n 21[label=\"Bandage Info\"]\n 20 -> 21 [label=\"assembly_graph\"]\n 22[label=\"Bandage Image\"]\n 20 -> 22 [label=\"assembly_graph\"]\n 23[label=\"Filter sequences by length\"]\n 20 -> 23 [label=\"assembly\"]\n 3[label=\"ONT data\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"fastp: Trimmed Illumina Reads\"]\n 2 -> 4 [label=\"list_paired\"]\n 5[label=\"NanoPlot\"]\n 3 -> 5 [label=\"output_collection\"]\n 6[label=\"Map with minimap2\"]\n 3 -> 6 [label=\"output_collection\"]\n 7[label=\"MultiQC\"]\n 4 -> 7 [label=\"report_json\"]\n 8[label=\"Bowtie2\"]\n 4 -> 8 [label=\"output_paired_coll\"]\n 9[label=\"Samtools view\"]\n 6 -> 9 [label=\"alignment_output\"]\n}", + "history": [ + { + "hash": "fc35e6581a2e34e4420f19af4619c92283609e91", + "message": "add annotations", + "num": 2, + "short_hash": "fc35e6581", + "unix": "1587558793" + }, + { + "hash": "7ed054469d1ef84a60abec55758ee2932f9a9655", + "message": "readd workflows", + "num": 1, + "short_hash": "7ed054469", + "unix": "1587555276" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "List of Illumina accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 257.683349609375, + "top": 215.9166259765625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1a61a3b3-4515-47a1-8ee5-fb79f05a8dfa", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ea340c2d-d9e8-4ea5-bbc0-7ee7d92a57bf" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "List of ONT accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 264.9833984375, + "top": 522.7166442871094 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0988bf07-dc80-4d7b-a62f-8e5e852b0982", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fb053f14-71fc-45ac-83ea-a308a5c22918" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nList of Illumina accessions\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nList of ONT accessions\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Samtools stats\"];\n 6 -->|alignment_output| 10;\n 11[\"Samtools view\"];\n 8 -->|output| 11;\n 12[\"Samtools fastx\"];\n 9 -->|outputsam| 12;\n 13[\"Samtools fastx\"];\n 11 -->|outputsam| 13;\n 14[\"Collapse Collection\"];\n 12 -->|nonspecific| 14;\n 15[\"Zip Collection\"];\n 13 -->|forward| 15;\n 13 -->|reverse| 15;\n 16[\"Collapse Collection\"];\n 13 -->|forward| 16;\n 17[\"Collapse Collection\"];\n 13 -->|reverse| 17;\n 18[\"seqtk_sample\"];\n 16 -->|output| 18;\n 19[\"seqtk_sample\"];\n 17 -->|output| 19;\n 2[\"Illumina data\"];\n 0 -->|output| 2;\n 20[\"Create assemblies with Unicycler\"];\n 14 -->|output| 20;\n 18 -->|default| 20;\n 19 -->|default| 20;\n 21[\"Bandage Info\"];\n 20 -->|assembly_graph| 21;\n 22[\"Bandage Image\"];\n 20 -->|assembly_graph| 22;\n 23[\"Filter sequences by length\"];\n 20 -->|assembly| 23;\n 3[\"ONT data\"];\n 1 -->|output| 3;\n 4[\"fastp: Trimmed Illumina Reads\"];\n 2 -->|list_paired| 4;\n 5[\"NanoPlot\"];\n 3 -->|output_collection| 5;\n 6[\"Map with minimap2\"];\n 3 -->|output_collection| 6;\n 7[\"MultiQC\"];\n 4 -->|report_json| 7;\n 8[\"Bowtie2\"];\n 4 -->|output_paired_coll| 8;\n 9[\"Samtools view\"];\n 6 -->|alignment_output| 9;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "assembly_with_preprocessing_and_sra_download", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "List of Illumina accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 257.683349609375, + "top": 215.9166259765625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1a61a3b3-4515-47a1-8ee5-fb79f05a8dfa", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ea340c2d-d9e8-4ea5-bbc0-7ee7d92a57bf" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "List of ONT accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 264.9833984375, + "top": 522.7166442871094 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0988bf07-dc80-4d7b-a62f-8e5e852b0982", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fb053f14-71fc-45ac-83ea-a308a5c22918" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 6, + "output_name": "alignment_output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools stats", + "outputs": [ + { + "name": "output_collection", + "type": "input" + } + ], + "position": { + "left": 1328.4166259765625, + "top": 1239.4166259765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "145f6d74ff5e", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"coverage_cond\": \"{\\\"__current_case__\\\": 0, \\\"coverage_select\\\": \\\"no\\\"}\", \"gc_depth\": \"\\\"\\\"\", \"cov_threshold\": \"\\\"\\\"\", \"most_inserts\": \"\\\"\\\"\", \"cond_region\": \"{\\\"__current_case__\\\": 0, \\\"select_region\\\": \\\"no\\\"}\", \"split_output_cond\": \"{\\\"__current_case__\\\": 1, \\\"generate_tables\\\": [\\\"SN\\\"], \\\"split_output_selector\\\": \\\"yes\\\"}\", \"read_length\": \"\\\"\\\"\", \"trim_quality\": \"\\\"\\\"\", \"remove_overlaps\": \"\\\"false\\\"\", \"filter_by_flags\": \"{\\\"__current_case__\\\": 1, \\\"filter_flags\\\": \\\"nofilter\\\"}\", \"sparse\": \"\\\"false\\\"\", \"addref_cond\": \"{\\\"__current_case__\\\": 0, \\\"addref_select\\\": \\\"no\\\"}\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"insert_size\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"remove_dups\": \"\\\"false\\\"\"}", + "tool_version": "2.0.2+galaxy2", + "type": "tool", + "uuid": "ae176340-d7da-4c2e-851b-e6129a0c222d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_collection", + "uuid": "8652ea8a-35f5-4531-8b89-88bca189ab9f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 9, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "nonspecific", + "type": "fasta" + } + ], + "position": { + "left": 1628.4166259765625, + "top": 852.4166412353516 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a8d69aee190e", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_arb_tags\": \"\\\"\\\"\", \"__page__\": null, \"output_fmt_cond\": \"{\\\"__current_case__\\\": 2, \\\"default_quality\\\": \\\"\\\", \\\"ilumina_casava\\\": \\\"false\\\", \\\"output_fmt_select\\\": \\\"fastqsanger.gz\\\", \\\"output_quality\\\": \\\"false\\\"}\", \"idxout_cond\": \"{\\\"__current_case__\\\": 0, \\\"idxout_select\\\": \\\"no\\\"}\", \"read_numbering\": \"\\\"\\\"\", \"exclusive_filter\": \"null\", \"exclusive_filter_all\": \"null\", \"inclusive_filter\": \"null\", \"outputs\": \"[\\\"r0\\\"]\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"copy_tags\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "31e2b4e8-7631-46c0-8382-b805cee2b739", + "workflow_outputs": [ + { + "label": null, + "output_name": "nonspecific", + "uuid": "cfbf839f-53f0-4a82-8966-2bdb6919de5e" + } + ] + }, + { + "annotation": "", + "content_id": "__ZIP_COLLECTION__", + "errors": null, + "id": 15, + "input_connections": { + "input_forward": { + "id": 13, + "output_name": "forward" + }, + "input_reverse": { + "id": 13, + "output_name": "reverse" + } + }, + "inputs": [], + "label": null, + "name": "Zip Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 2049.4166870117188, + "top": 477.4166259765625 + }, + "post_job_actions": {}, + "tool_id": "__ZIP_COLLECTION__", + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"input_reverse\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"input_forward\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "9ba89e81-9c53-4f5b-9d61-42319b7d574c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ebc8f563-c45e-4e17-a541-b1275e7f61ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "errors": null, + "id": 18, + "input_connections": { + "in_file": { + "id": 16, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_sample", + "name": "in_file" + } + ], + "label": null, + "name": "seqtk_sample", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2438.0833282470703, + "top": 688.6833190917969 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"s\": \"\\\"4\\\"\", \"in_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"subsample_size\": \"\\\"0.1\\\"\", \"advanced\": \"{\\\"single_pass_mode\\\": \\\"false\\\"}\"}", + "tool_version": "1.3.2", + "type": "tool", + "uuid": "b4e40092-e076-4eb0-af30-c8c47885fefa", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "cf3eb8ef-fce5-42af-a14d-60ff915fbff3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "errors": null, + "id": 19, + "input_connections": { + "in_file": { + "id": 17, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_sample", + "name": "in_file" + } + ], + "label": null, + "name": "seqtk_sample", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2413.0833129882812, + "top": 864.6833190917969 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"s\": \"\\\"4\\\"\", \"in_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"subsample_size\": \"\\\"0.1\\\"\", \"advanced\": \"{\\\"single_pass_mode\\\": \\\"false\\\"}\"}", + "tool_version": "1.3.2", + "type": "tool", + "uuid": "1ef9ca9e-e447-4933-8871-c0e8e9a953c4", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "bf722cb7-0b06-42ed-8fbc-9dc3896e9340" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input|file_list": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Illumina data", + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 511.783447265625, + "top": 273.1666259765625 + }, + "post_job_actions": { + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionoutput_collection": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection" + }, + "HideDatasetActionoutput_collection_other": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection_other" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aad3885b3216", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"minlen\\\": \\\"\\\", \\\"skip_technical\\\": \\\"true\\\", \\\"split\\\": \\\"--split-3\\\"}\", \"input\": \"{\\\"__current_case__\\\": 2, \\\"file_list\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"input_select\\\": \\\"file_list\\\"}\", \"__rerun_remap_job_id__\": null, \"__page__\": null}", + "tool_version": "2.10.4+galaxy1", + "type": "tool", + "uuid": "b097b5cb-44a8-4881-9ba0-a089ef1b4ad6", + "workflow_outputs": [ + { + "label": null, + "output_name": "list_paired", + "uuid": "c6b4e7f2-5cf4-4051-afd1-a110381c4679" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "errors": null, + "id": 20, + "input_connections": { + "long": { + "id": 14, + "output_name": "output" + }, + "paired_unpaired|fastq_input1": { + "id": 18, + "output_name": "default" + }, + "paired_unpaired|fastq_input2": { + "id": 19, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "lr_align" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "long" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "paired_unpaired" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "paired_unpaired" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "rotation" + } + ], + "label": null, + "name": "Create assemblies with Unicycler", + "outputs": [ + { + "name": "assembly_graph", + "type": "tabular" + }, + { + "name": "assembly", + "type": "fasta" + } + ], + "position": { + "left": 2673.4166717529297, + "top": 699.4166412353516 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "tool_shed_repository": { + "changeset_revision": "88c240872a65", + "name": "unicycler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"linear_seqs\": \"\\\"1\\\"\", \"spades\": \"{\\\"depth_filter\\\": \\\"0.25\\\", \\\"kmer_count\\\": \\\"10\\\", \\\"kmers\\\": \\\"\\\", \\\"largest_component\\\": \\\"false\\\", \\\"max_kmer_frac\\\": \\\"0.95\\\", \\\"min_kmer_frac\\\": \\\"0.2\\\", \\\"no_correct\\\": \\\"false\\\"}\", \"graph_clean\": \"{\\\"min_component_size\\\": \\\"1000\\\", \\\"min_dead_end_size\\\": \\\"1000\\\"}\", \"__page__\": null, \"min_anchor_seg_len\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"lr_align\": \"{\\\"contamination\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"low_score\\\": \\\"\\\", \\\"scores\\\": \\\"3,-6,-5,-2\\\"}\", \"long\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"paired_unpaired\": \"{\\\"__current_case__\\\": 0, \\\"fastq_input1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"fastq_input2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"fastq_input_selector\\\": \\\"paired\\\"}\", \"min_fasta_length\": \"\\\"100\\\"\", \"mode\": \"\\\"normal\\\"\", \"rotation\": \"{\\\"no_rotate\\\": \\\"false\\\", \\\"start_gene_cov\\\": \\\"95.0\\\", \\\"start_gene_id\\\": \\\"90.0\\\", \\\"start_genes\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\", \"pilon\": \"{\\\"min_polish_size\\\": \\\"1000\\\", \\\"no_pilon\\\": \\\"false\\\"}\"}", + "tool_version": "0.4.8.0", + "type": "tool", + "uuid": "851c6be6-c202-450a-9cd3-19e205dcc496", + "workflow_outputs": [ + { + "label": null, + "output_name": "assembly", + "uuid": "17700863-7cc5-4a67-ac0f-aa5f7b258d62" + }, + { + "label": null, + "output_name": "assembly_graph", + "uuid": "3285cc00-6b39-4f3d-87a5-87abd483ede6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "errors": null, + "id": 21, + "input_connections": { + "input_file": { + "id": 20, + "output_name": "assembly_graph" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "txt" + } + ], + "position": { + "left": 2977.4166870117188, + "top": 803.4166412353516 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"tsv\": \"\\\"false\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "0.8.1+galaxy1", + "type": "tool", + "uuid": "4aa230bd-3269-41c3-81f5-9085fcc4001d", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "cf5eab6a-97ae-430e-a27a-6ecc33d4b8c0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "errors": null, + "id": 22, + "input_connections": { + "input_file": { + "id": 20, + "output_name": "assembly_graph" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Bandage Image", + "name": "input_file" + } + ], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 2975.4166870117188, + "top": 1017.4166412353516 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"lengths\": \"\\\"true\\\"\", \"output_format\": \"\\\"jpg\\\"\", \"height\": \"\\\"1000\\\"\", \"width\": \"\\\"\\\"\", \"names\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "7683e21a-0fe1-4871-b044-7e74321fe44b", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "12e0cc76-0374-4ce8-b882-f5f21a942ad1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "errors": null, + "id": 23, + "input_connections": { + "input": { + "id": 20, + "output_name": "assembly" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Filter sequences by length", + "name": "input" + } + ], + "label": null, + "name": "Filter sequences by length", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 2978.4166870117188, + "top": 1220.4166259765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "tool_shed_repository": { + "changeset_revision": "8cacfcf96a52", + "name": "fasta_filter_by_length", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"max_length\": \"\\\"0\\\"\", \"min_length\": \"\\\"1000\\\"\"}", + "tool_version": "1.2", + "type": "tool", + "uuid": "ef08963b-e96b-4841-b1fd-02056f6ab1f2", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "637c866b-dc17-4c32-aa1e-5207ae2c79a0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input|file_list": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "ONT data", + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 516.13330078125, + "top": 540.7166442871094 + }, + "post_job_actions": { + "HideDatasetActionlist_paired": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "list_paired" + }, + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionoutput_collection_other": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection_other" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aad3885b3216", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"minlen\\\": \\\"\\\", \\\"skip_technical\\\": \\\"true\\\", \\\"split\\\": \\\"--split-3\\\"}\", \"input\": \"{\\\"__current_case__\\\": 2, \\\"file_list\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"input_select\\\": \\\"file_list\\\"}\", \"__rerun_remap_job_id__\": null, \"__page__\": null}", + "tool_version": "2.10.4+galaxy1", + "type": "tool", + "uuid": "2ea0a236-4ecc-43b4-a815-40f37bf1bd59", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_collection", + "uuid": "9cd44dd5-4375-4c34-9edc-804544192c34" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "single_paired|paired_input": { + "id": 2, + "output_name": "list_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + } + ], + "label": "fastp: Trimmed Illumina Reads", + "name": "fastp", + "outputs": [ + { + "name": "output_paired_coll", + "type": "input" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 879.7833251953125, + "top": 365.04998779296875 + }, + "post_job_actions": { + "HideDatasetActionreport_json": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "1d8fe9bc4cb0", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"output_options\": \"{\\\"report_html\\\": \\\"false\\\", \\\"report_json\\\": \\\"true\\\"}\", \"single_paired\": \"{\\\"__current_case__\\\": 2, \\\"adapter_trimming_options\\\": {\\\"adapter_sequence1\\\": \\\"\\\", \\\"adapter_sequence2\\\": \\\"\\\", \\\"disable_adapter_trimming\\\": \\\"false\\\"}, \\\"global_trimming_options\\\": {\\\"trim_front1\\\": \\\"\\\", \\\"trim_front2\\\": \\\"\\\", \\\"trim_tail1\\\": \\\"\\\", \\\"trim_tail2\\\": \\\"\\\"}, \\\"paired_input\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"single_paired_selector\\\": \\\"paired_collection\\\"}\", \"read_mod_options\": \"{\\\"base_correction_options\\\": {\\\"correction\\\": \\\"false\\\"}, \\\"cutting_by_quality_options\\\": {\\\"cut_by_quality3\\\": \\\"false\\\", \\\"cut_by_quality5\\\": \\\"false\\\", \\\"cut_mean_quality\\\": \\\"\\\", \\\"cut_window_size\\\": \\\"\\\"}, \\\"polyg_tail_trimming\\\": {\\\"__current_case__\\\": 1, \\\"poly_g_min_len\\\": \\\"\\\", \\\"trimming_select\\\": \\\"\\\"}, \\\"polyx_tail_trimming\\\": {\\\"__current_case__\\\": 1, \\\"polyx_trimming_select\\\": \\\"\\\"}, \\\"umi_processing\\\": {\\\"umi\\\": \\\"false\\\", \\\"umi_len\\\": \\\"\\\", \\\"umi_loc\\\": \\\"\\\", \\\"umi_prefix\\\": \\\"\\\"}}\", \"overrepresented_sequence_analysis\": \"{\\\"overrepresentation_analysis\\\": \\\"false\\\", \\\"overrepresentation_sampling\\\": \\\"\\\"}\", \"filter_options\": \"{\\\"length_filtering_options\\\": {\\\"disable_length_filtering\\\": \\\"false\\\", \\\"length_required\\\": \\\"50\\\"}, \\\"low_complexity_filter\\\": {\\\"complexity_threshold\\\": \\\"\\\", \\\"enable_low_complexity_filter\\\": \\\"false\\\"}, \\\"quality_filtering_options\\\": {\\\"disable_quality_filtering\\\": \\\"false\\\", \\\"n_base_limit\\\": \\\"\\\", \\\"qualified_quality_phred\\\": \\\"20\\\", \\\"unqualified_percent_limit\\\": \\\"20\\\"}}\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.19.5+galaxy1", + "type": "tool", + "uuid": "7508c22b-dc6a-4071-8dd0-d5616718e62b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_paired_coll", + "uuid": "a7be7eab-3e80-4be6-b1a4-ab303c314096" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "mode|reads|files": { + "id": 3, + "output_name": "output_collection" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "txt" + }, + { + "name": "nanostats_post_filtering", + "type": "txt" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 924.7833251953125, + "top": 650.4666442871094 + }, + "post_job_actions": { + "HideDatasetActionlog_read_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log_read_length" + }, + "HideDatasetActionnanostats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats" + }, + "HideDatasetActionnanostats_post_filtering": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "HideDatasetActionread_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "645159bcee2d", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter\": \"{\\\"alength\\\": \\\"false\\\", \\\"barcoded\\\": \\\"false\\\", \\\"downsample\\\": \\\"\\\", \\\"drop_outliers\\\": \\\"false\\\", \\\"loglength\\\": \\\"true\\\", \\\"maxlength\\\": \\\"\\\", \\\"minlength\\\": \\\"\\\", \\\"minqual\\\": \\\"\\\", \\\"percentqual\\\": \\\"false\\\", \\\"readtype\\\": null}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"mode\": \"{\\\"__current_case__\\\": 0, \\\"choice\\\": \\\"batch\\\", \\\"reads\\\": {\\\"__current_case__\\\": 0, \\\"files\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"type\\\": \\\"fastq\\\"}}\", \"customization\": \"{\\\"N50\\\": \\\"false\\\", \\\"color\\\": null, \\\"format\\\": \\\"png\\\", \\\"noN50\\\": \\\"false\\\", \\\"plots\\\": null}\"}", + "tool_version": "1.25.0+galaxy1", + "type": "tool", + "uuid": "9b1d43ac-82e3-463f-9c88-08c8826a62c9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_html", + "uuid": "cd8570c7-02db-479b-81a9-cd0d26643f71" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 3, + "output_name": "output_collection" + } + }, + "inputs": [], + "label": null, + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 1003.9833984375, + "top": 1131.9666442871094 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "tool_shed_repository": { + "changeset_revision": "53c0b7a1a0c3", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": \"{\\\"-O2\\\": \\\"\\\", \\\"A\\\": \\\"\\\", \\\"B\\\": \\\"\\\", \\\"E\\\": \\\"\\\", \\\"E2\\\": \\\"\\\", \\\"O\\\": \\\"\\\", \\\"s\\\": \\\"\\\", \\\"u\\\": null, \\\"z\\\": \\\"\\\"}\", \"analysis_type_selector\": \"\\\"splice\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"io_options\": \"{\\\"K\\\": \\\"\\\", \\\"L\\\": \\\"false\\\", \\\"Q\\\": \\\"false\\\", \\\"Y\\\": \\\"false\\\", \\\"c\\\": \\\"false\\\", \\\"cs\\\": null, \\\"eqx\\\": \\\"false\\\", \\\"output_format\\\": \\\"BAM\\\"}\", \"mapping_options\": \"{\\\"F\\\": \\\"\\\", \\\"G\\\": \\\"\\\", \\\"N\\\": \\\"\\\", \\\"X\\\": \\\"false\\\", \\\"f\\\": \\\"\\\", \\\"g\\\": \\\"\\\", \\\"m\\\": \\\"\\\", \\\"min_occ_floor\\\": \\\"\\\", \\\"n\\\": \\\"\\\", \\\"p\\\": \\\"\\\", \\\"r\\\": \\\"\\\"}\", \"fastq_input\": \"{\\\"__current_case__\\\": 1, \\\"fastq_input1\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"fastq_input_selector\\\": \\\"single\\\"}\", \"reference_source\": \"{\\\"__current_case__\\\": 0, \\\"ref_file\\\": \\\"hg38\\\", \\\"reference_source_selector\\\": \\\"cached\\\"}\", \"indexing_options\": \"{\\\"H\\\": \\\"false\\\", \\\"I\\\": \\\"\\\", \\\"k\\\": \\\"\\\", \\\"w\\\": \\\"\\\"}\"}", + "tool_version": "2.17+galaxy1", + "type": "tool", + "uuid": "098d2283-1218-489b-9882-8822e79d9444", + "workflow_outputs": [ + { + "label": null, + "output_name": "alignment_output", + "uuid": "9972015d-4bdc-440f-b8b6-84e92a64ef8f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 7, + "input_connections": { + "results_0|software_cond|input": { + "id": 4, + "output_name": "report_json" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1152.4833984375, + "top": 200 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\\\"\\\"\", \"__page__\": null, \"title\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"results\": \"[{\\\"__index__\\\": 0, \\\"software_cond\\\": {\\\"__current_case__\\\": 7, \\\"input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"software\\\": \\\"fastp\\\"}}]\", \"saveLog\": \"\\\"false\\\"\"}", + "tool_version": "1.7", + "type": "tool", + "uuid": "73566697-4a46-4d35-b8e2-61770acc62c0", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "15f42a94-2c97-4932-8e3f-f26a72b58be4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "library|input_1": { + "id": 4, + "output_name": "output_paired_coll" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 1208.699951171875, + "top": 564.6333160400391 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "749c918495f7", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"sam_options\": \"{\\\"__current_case__\\\": 1, \\\"sam_options_selector\\\": \\\"no\\\"}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"library\": \"{\\\"__current_case__\\\": 2, \\\"aligned_file\\\": \\\"false\\\", \\\"input_1\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"paired_options\\\": {\\\"__current_case__\\\": 1, \\\"paired_options_selector\\\": \\\"no\\\"}, \\\"type\\\": \\\"paired_collection\\\", \\\"unaligned_file\\\": \\\"false\\\"}\", \"reference_genome\": \"{\\\"__current_case__\\\": 0, \\\"index\\\": \\\"hg38full\\\", \\\"source\\\": \\\"indexed\\\"}\", \"rg\": \"{\\\"__current_case__\\\": 3, \\\"rg_selector\\\": \\\"do_not_set\\\"}\", \"save_mapping_stats\": \"\\\"true\\\"\", \"analysis_type\": \"{\\\"__current_case__\\\": 0, \\\"analysis_type_selector\\\": \\\"simple\\\", \\\"presets\\\": \\\"no_presets\\\"}\"}", + "tool_version": "2.3.4.3+galaxy0", + "type": "tool", + "uuid": "43331d2c-7116-410e-a6bd-7e7520d93a52", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "eeae40f6-f1b2-4c56-9860-ac7b8eb1dec0" + }, + { + "label": null, + "output_name": "mapping_stats", + "uuid": "c567226e-efaf-4188-bdec-3ba20d0733b0" + } + ] + } + ], + "parent_id": "assembly/assembly-with-preprocessing", + "path": "topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.ga", + "tags": [ + "GTN", + "assembly" + ], + "test_results": null, + "tests": false, + "title": "assembly_with_preprocessing_and_sra_download", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-with-preprocessing/versions/assembly-with-preprocessing-and-sra-download", + "tutorial_id": "assembly-with-preprocessing", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.html", + "version": 1, + "wfid": "assembly-assembly-with-preprocessing", + "wfname": "assembly-with-preprocessing-and-sra-download", + "workflow": "assembly_with_preprocessing_and_sra_download.ga", + "workflow_tools": [ + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "workflowhub_id": "1197" + } + ], + "zenodo_link": "https://zenodo.org/record/3732359" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "prokka", + "owner": "crs4", + "revisions": "bf68eb663bc3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "b2f1f75d49c4", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "59db8ea8c845", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unicycler", + "owner": "iuc", + "revisions": "9e3e80cc4ad4", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: prokka\n owner: crs4\n revisions: bf68eb663bc3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: b2f1f75d49c4\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 59db8ea8c845\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unicycler\n owner: iuc\n revisions: 9e3e80cc4ad4\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/unicycler-assembly/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "email": "delphine.lariviere@galaxy.org", + "id": "delphine-l", + "joined": "2017-09", + "name": "Delphine Lariviere", + "orcid": "0000-0001-6421-3484", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/delphine-l/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/delphine-l.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + } + ], + "dir": "topics/assembly/tutorials/unicycler-assembly", + "edam_ontology": [ + "topic_0196", + "topic_0622", + "topic_3301" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Genome annotation", + "Sequence assembly validation", + "Sequence composition calculation", + "Coding region prediction", + "Validation", + "Genome assembly", + "Gene prediction", + "Statistical calculation", + "Aggregation" + ], + "edam_topic": [ + "Sequence assembly", + "Genomics", + "Microbiology" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "assembly", + "tutorials": [ + "ecoli_comparison" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "assembly/unicycler-assembly", + "inexact_supported_servers": [ + "GalaxyTrakr", + "HyPhy HIV NGS Tools", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We learned about the strategies used by assemblers for hybrid assemblies", + "We performed an hybrid assembly of a bacterial genome and its annotation", + "Unicycler is a pipeline bases on Spades and Pilon dedicated to hybrid assembly of Small genomes", + "Combination of short and long reads helped us produce an almost perfect assembly" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-13", + "objectives": [ + "Perform Quality Control on your reads", + "Perform a Small genome Assembly with Unicycler", + "Evaluate the Quality of the Assembly with Quast", + "Annotate the assembly with Prokka" + ], + "pageviews": 5746521, + "pub_date": "2017-10-11", + "questions": [ + "I have short reads and long reads. How do I assemble a genome?" + ], + "short_id": "T00038", + "short_tools": [ + "multiqc", + "quast", + "prokka", + "fastqc", + "unicycler" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "HyPhy HIV NGS Tools", + "url": "https://galaxy.hyphy.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "microgalaxy" + ], + "time_estimation": "4h", + "title": "Unicycler Assembly", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "unicycler-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/unicycler-assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/unicycler-assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/unicycler-assembly/tutorial.json" + }, + "version": 23, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 273, + "visitors": 2074750, + "workflows": [ + { + "creators": [], + "description": "Unicycler Assembly", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nForward reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReverse Reads\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nLong Reads\"]\n 3[label=\"FastQC\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"FastQC\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Create assemblies with Unicycler\"]\n 2 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"MultiQC\"]\n 3 -> 6 [label=\"text_file\"]\n 4 -> 6 [label=\"text_file\"]\n 7[label=\"Quast\"]\n 5 -> 7 [label=\"assembly\"]\n 8[label=\"Prokka\"]\n 5 -> 8 [label=\"assembly\"]\n k0d6b33c9b10549979045b86e52f00156[color=lightseagreen,label=\"Output\\ntbl\"]\n 8 -> k0d6b33c9b10549979045b86e52f00156\n k8e08b54d87e142699b968ebf1a9bb4ab[color=lightseagreen,label=\"Output\\ngbk\"]\n 8 -> k8e08b54d87e142699b968ebf1a9bb4ab\n k65e4ddf9f5bc40788b4e37b332e12ece[color=lightseagreen,label=\"Output\\nffn\"]\n 8 -> k65e4ddf9f5bc40788b4e37b332e12ece\n}", + "history": [ + { + "hash": "232ce03723ab9acbd124828954705c1cd2679abd", + "message": "removed name label bit", + "num": 9, + "short_hash": "232ce0372", + "unix": "1581615057" + }, + { + "hash": "cccd85216e3d9baaca787eb7ae8808bd5f3fa2dc", + "message": "minor tweaks and files unhidden", + "num": 8, + "short_hash": "cccd85216", + "unix": "1581613998" + }, + { + "hash": "2a2b6329ed96aaaf214703eae87459c58d6e8702", + "message": "name fixed", + "num": 7, + "short_hash": "2a2b6329e", + "unix": "1581095735" + }, + { + "hash": "3d424d5e65326cf45c1e4d34851998ab29e6e85c", + "message": "annotation fixed", + "num": 6, + "short_hash": "3d424d5e6", + "unix": "1581014437" + }, + { + "hash": "2eade3cbf7b99b8252c3a53ac6cac59e0cacd432", + "message": "tags added", + "num": 5, + "short_hash": "2eade3cbf", + "unix": "1581004807" + }, + { + "hash": "07642064759cb13fda345ab9a687aa96b80b3004", + "message": "workflows updated with newer tools, added missing", + "num": 4, + "short_hash": "076420647", + "unix": "1580135207" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "02b1037e840cced4c04432f9e6e22cee7ef20392", + "message": "add testing for unicycler", + "num": 1, + "short_hash": "02b1037e8", + "unix": "1527005073" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Forward reads" + } + ], + "label": "Forward reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 230.140625, + "top": 404.015625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "5152d41f-3523-496e-afa2-8d4b0af89b2a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e14afa81-ce6c-4577-b17e-90ef2b75c885" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reverse Reads" + } + ], + "label": "Reverse Reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 187.359375, + "top": 656.765625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "25209075-9248-4e70-9396-87e6e28995e1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4cade8d2-87ae-4bae-8795-b1f64c5c3cab" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Long Reads" + } + ], + "label": "Long Reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 186.65625, + "top": 803.734375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "c1cfa6a5-2c17-4cd7-b582-ce85ff552b67", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bf7b5353-30b6-471b-91b7-5fd2143bf981" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nForward reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReverse Reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nLong Reads\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"FastQC\"];\n 0 -->|output| 3;\n 4[\"FastQC\"];\n 1 -->|output| 4;\n 5[\"Create assemblies with Unicycler\"];\n 2 -->|output| 5;\n 0 -->|output| 5;\n 1 -->|output| 5;\n 6[\"MultiQC\"];\n 3 -->|text_file| 6;\n 4 -->|text_file| 6;\n 7[\"Quast\"];\n 5 -->|assembly| 7;\n 8[\"Prokka\"];\n 5 -->|assembly| 8;\n 0d6b33c9-b105-4997-9045-b86e52f00156[\"Output\\ntbl\"];\n 8 --> 0d6b33c9-b105-4997-9045-b86e52f00156;\n style 0d6b33c9-b105-4997-9045-b86e52f00156 stroke:#2c3143,stroke-width:4px;\n 8e08b54d-87e1-4269-9b96-8ebf1a9bb4ab[\"Output\\ngbk\"];\n 8 --> 8e08b54d-87e1-4269-9b96-8ebf1a9bb4ab;\n style 8e08b54d-87e1-4269-9b96-8ebf1a9bb4ab stroke:#2c3143,stroke-width:4px;\n 65e4ddf9-f5bc-4078-8b4e-37b332e12ece[\"Output\\nffn\"];\n 8 --> 65e4ddf9-f5bc-4078-8b4e-37b332e12ece;\n style 65e4ddf9-f5bc-4078-8b4e-37b332e12ece stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Unicycler training", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Forward reads" + } + ], + "label": "Forward reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 230.140625, + "top": 404.015625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "5152d41f-3523-496e-afa2-8d4b0af89b2a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e14afa81-ce6c-4577-b17e-90ef2b75c885" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reverse Reads" + } + ], + "label": "Reverse Reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 187.359375, + "top": 656.765625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "25209075-9248-4e70-9396-87e6e28995e1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4cade8d2-87ae-4bae-8795-b1f64c5c3cab" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Long Reads" + } + ], + "label": "Long Reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 186.65625, + "top": 803.734375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "c1cfa6a5-2c17-4cd7-b582-ce85ff552b67", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bf7b5353-30b6-471b-91b7-5fd2143bf981" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 415.015625, + "top": 199.984375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "d0e16801-e8f6-4889-9502-c57aa6b1a436", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "3c8f9841-bf87-4c4b-9af2-115a0b84f13f" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "5c63bd29-f9c1-423b-ad6e-4b944e32c6ac" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 415.390625, + "top": 410.765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "1f890a7b-848b-40e0-987b-26450c9f5203", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "0dee124c-9984-4c90-9a76-353ffbcea854" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "f80ae006-d3ee-4794-bfe1-b656aea05823" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "errors": null, + "id": 5, + "input_connections": { + "long": { + "id": 2, + "output_name": "output" + }, + "paired_unpaired|fastq_input1": { + "id": 0, + "output_name": "output" + }, + "paired_unpaired|fastq_input2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "lr_align" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "rotation" + } + ], + "label": null, + "name": "Create assemblies with Unicycler", + "outputs": [ + { + "name": "assembly_graph", + "type": "tabular" + }, + { + "name": "assembly", + "type": "fasta" + } + ], + "position": { + "left": 397.15625, + "top": 636.984375 + }, + "post_job_actions": { + "HideDatasetActionassembly_graph": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "assembly_graph" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "tool_shed_repository": { + "changeset_revision": "88c240872a65", + "name": "unicycler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"linear_seqs\": \"0\", \"spades\": {\"no_correct\": \"false\", \"kmer_count\": \"10\", \"depth_filter\": \"0.25\", \"kmers\": \"\", \"min_kmer_frac\": \"0.2\", \"max_kmer_frac\": \"0.95\", \"largest_component\": \"false\"}, \"graph_clean\": {\"min_dead_end_size\": \"1000\", \"min_component_size\": \"1000\"}, \"__page__\": null, \"min_anchor_seg_len\": \"\", \"__rerun_remap_job_id__\": null, \"lr_align\": {\"low_score\": \"\", \"scores\": \"\", \"contamination\": {\"__class__\": \"RuntimeValue\"}}, \"long\": {\"__class__\": \"ConnectedValue\"}, \"paired_unpaired\": {\"fastq_input2\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 0, \"fastq_input_selector\": \"paired\", \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"min_fasta_length\": \"100\", \"mode\": \"normal\", \"rotation\": {\"start_genes\": {\"__class__\": \"RuntimeValue\"}, \"start_gene_cov\": \"95.0\", \"no_rotate\": \"false\", \"start_gene_id\": \"90.0\"}, \"pilon\": {\"no_pilon\": \"false\", \"min_polish_size\": \"1000\"}}", + "tool_version": "0.4.8.0", + "type": "tool", + "uuid": "98050cb0-ca52-4a9d-a1c3-cd301f36356c", + "workflow_outputs": [ + { + "label": null, + "output_name": "assembly", + "uuid": "c35c6740-11f7-4ca3-8b93-a1fe502b8719" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 6, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 3, + "output_name": "text_file" + }, + "results_0|software_cond|output_1|input": { + "id": 4, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 650.71875, + "top": 251.3125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"__page__\": null, \"title\": \"\", \"__rerun_remap_job_id__\": null, \"results\": [{\"__index__\": 0, \"software_cond\": {\"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}], \"__current_case__\": 8, \"software\": \"fastqc\"}}], \"saveLog\": \"false\"}", + "tool_version": "1.7", + "type": "tool", + "uuid": "3277000f-cee0-4279-80d3-0b266694cce2", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "3bfec2db-625d-4aa5-9016-e16fe27bf466" + }, + { + "label": null, + "output_name": "html_report", + "uuid": "6f40035d-5c8d-4e18-82ea-0093237d250f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "in|inputs": { + "id": 5, + "output_name": "assembly" + } + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "quast_tabular", + "type": "tabular" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_pdf", + "type": "pdf" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 648.875, + "top": 416.5 + }, + "post_job_actions": { + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionquast_tabular": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "quast_tabular" + }, + "HideDatasetActionreport_pdf": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "report_pdf" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "59db8ea8c845", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"scaffold_gap_max_size\": \"1000\", \"skip_unaligned_mis_contigs\": \"true\", \"assembly\": {\"ref\": {\"use_ref\": \"false\", \"est_ref_size\": \"\", \"__current_case__\": 1}, \"orga_type\": \"\", \"type\": \"genome\", \"__current_case__\": 0}, \"circos\": \"false\", \"contig_thresholds\": \"0,1000\", \"__page__\": null, \"strict_NA\": \"false\", \"__rerun_remap_job_id__\": null, \"genes\": {\"rna_finding\": \"false\", \"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"conserved_genes_finding\": \"false\"}, \"unaligned_part_size\": \"500\", \"al\": {\"upper_bound_assembly\": \"false\", \"min_identity\": \"95.0\", \"ambiguity_score\": \"0.99\", \"ambiguity_usage\": \"one\", \"upper_bound_min_con\": \"2\", \"fragmented\": \"false\", \"fragmented_max_indent\": \"50\", \"use_all_alignments\": \"false\", \"min_alignment\": \"65\"}, \"extensive_mis_size\": \"1000\", \"large\": \"false\", \"in\": {\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 1, \"custom\": \"false\"}, \"k_mer\": {\"k_mer_stats\": \"\", \"__current_case__\": 1}, \"split_scaffolds\": \"false\", \"min_contig\": \"500\"}", + "tool_version": "5.0.2+galaxy0", + "type": "tool", + "uuid": "1bb7b9fa-3e76-48b6-aa08-1169710715c5", + "workflow_outputs": [ + { + "label": null, + "output_name": "quast_tsv", + "uuid": "22d4aad1-6145-4209-8261-8dadf4fd4c02" + }, + { + "label": null, + "output_name": "report_html", + "uuid": "0de88512-45db-4372-9457-94f136a77267" + }, + { + "label": null, + "output_name": "icarus", + "uuid": "84990237-682a-4800-9ce3-dfeb83c7042d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 5, + "output_name": "assembly" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Prokka", + "name": "proteins" + } + ], + "label": null, + "name": "Prokka", + "outputs": [ + { + "name": "out_gff", + "type": "gff" + }, + { + "name": "out_gbk", + "type": "txt" + }, + { + "name": "out_fna", + "type": "fasta" + }, + { + "name": "out_faa", + "type": "fasta" + }, + { + "name": "out_ffn", + "type": "fasta" + }, + { + "name": "out_sqn", + "type": "asn1" + }, + { + "name": "out_fsa", + "type": "fasta" + }, + { + "name": "out_tbl", + "type": "txt" + }, + { + "name": "out_err", + "type": "txt" + }, + { + "name": "out_txt", + "type": "txt" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 647.125, + "top": 603.75 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "tool_shed_repository": { + "changeset_revision": "bf68eb663bc3", + "name": "prokka", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"strain\": \"C-1\", \"increment\": \"10\", \"species\": \"Coli\", \"__page__\": null, \"usegenus\": \"true\", \"evalue\": \"1e-06\", \"locustag\": \"PROKKA\", \"fast\": \"false\", \"compliant\": {\"mincontig\": \"200\", \"__current_case__\": 0, \"compliant_select\": \"no\", \"addgenes\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"kingdom\": {\"gcode\": \"11\", \"kingdom_select\": \"Bacteria\", \"__current_case__\": 1}, \"metagenome\": \"false\", \"centre\": \"\", \"outputs\": [\"gff\", \"gbk\", \"fna\", \"faa\", \"ffn\", \"sqn\", \"fsa\", \"tbl\", \"err\", \"txt\"], \"gffver\": \"3\", \"norrna\": \"false\", \"proteins\": {\"__class__\": \"RuntimeValue\"}, \"notrna\": \"false\", \"plasmid\": \"\", \"rfam\": \"false\", \"genus\": \"Escherichia\", \"__rerun_remap_job_id__\": null}", + "tool_version": "1.14.5", + "type": "tool", + "uuid": "dd9a67df-68a8-423b-90d2-2167393949e6", + "workflow_outputs": [ + { + "label": "tbl", + "output_name": "out_tbl", + "uuid": "0d6b33c9-b105-4997-9045-b86e52f00156" + }, + { + "label": null, + "output_name": "out_txt", + "uuid": "4b7ef57d-3075-41cf-bc75-a5fc4aa8c942" + }, + { + "label": "gbk", + "output_name": "out_gbk", + "uuid": "8e08b54d-87e1-4269-9b96-8ebf1a9bb4ab" + }, + { + "label": null, + "output_name": "out_err", + "uuid": "d2cd11ae-12f9-4123-bfde-119fa409da73" + }, + { + "label": "ffn", + "output_name": "out_ffn", + "uuid": "65e4ddf9-f5bc-4078-8b4e-37b332e12ece" + }, + { + "label": null, + "output_name": "out_fsa", + "uuid": "14a0d804-36f3-488f-a85d-4d18ff95d56f" + }, + { + "label": null, + "output_name": "out_fna", + "uuid": "d494a946-ff3c-4900-a3f5-573ff1540ea3" + }, + { + "label": null, + "output_name": "out_log", + "uuid": "80ed53bf-7d76-4de2-85b5-7dc487922e0e" + }, + { + "label": null, + "output_name": "out_faa", + "uuid": "249632ad-2412-4010-a703-aa8faeecc538" + }, + { + "label": null, + "output_name": "out_sqn", + "uuid": "175956d0-42a8-4270-b976-3eefef7384ab" + }, + { + "label": null, + "output_name": "out_gff", + "uuid": "0e2ffd13-e194-4693-9adf-54e561fd24e5" + } + ] + } + ], + "parent_id": "assembly/unicycler-assembly", + "path": "topics/assembly/tutorials/unicycler-assembly/workflows/unicycler.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": true, + "title": "Unicycler training", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-unicycler-assembly/versions/unicycler", + "tutorial_id": "unicycler-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/unicycler-assembly/workflows/unicycler.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/unicycler-assembly/workflows/unicycler.html", + "version": 4, + "wfid": "assembly-unicycler-assembly", + "wfname": "unicycler", + "workflow": "unicycler.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0" + ], + "workflowhub_id": "1182" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.940733" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "9c620a950d3a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "spades", + "owner": "nml", + "revisions": "b7829778729f", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "velvetoptimiser", + "owner": "simon-gladman", + "revisions": "37d88f41c810", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fasta_stats\n owner: iuc\n revisions: 9c620a950d3a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: spades\n owner: nml\n revisions: b7829778729f\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: velvetoptimiser\n owner: simon-gladman\n revisions: 37d88f41c810\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/debruijn-graph-assembly/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/assembly/tutorials/debruijn-graph-assembly", + "edam_operation": [ + "Genome assembly", + "Sequence assembly", + "Optimisation and refinement" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/debruijn-graph-assembly", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We learned about how the choice of k-mer size will affect assembly outcomes", + "We learned about the strategies that assemblers use to make reference genomes", + "We performed a number of assemblies with Velvet and SPAdes.", + "You should use SPAdes or another more modern assembler than Velvet for actual assemblies now." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-02-01", + "objectives": [ + "Perform an optimised Velvet assembly with the Velvet Optimiser", + "Compare this assembly with those we did in the basic tutorial", + "Perform an assembly using the SPAdes assembler." + ], + "pageviews": 5735100, + "pub_date": "2017-05-24", + "questions": [ + "What are the factors that affect genome assembly?", + "How does Genome assembly work?" + ], + "short_id": "T00031", + "short_tools": [ + "velvetoptimiser", + "spades", + "fasta-stats" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2h", + "title": "De Bruijn Graph Assembly", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "toolshed.g2.bx.psu.edu/repos/nml/spades/spades/3.12.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/simon-gladman/velvetoptimiser/velvetoptimiser/2.2.6" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "debruijn-graph-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/debruijn-graph-assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/debruijn-graph-assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/debruijn-graph-assembly/tutorial.json" + }, + "version": 25, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 299, + "visitors": 2068785, + "workflows": [ + { + "creators": [], + "description": "De Bruijn Graph Assembly", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmutant_R1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmutant_R2\"]\n 2[label=\"VelvetOptimiser\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"SPAdes\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Fasta Statistics\"]\n 2 -> 4 [label=\"contigs\"]\n kdacb84a554824ab081ade92af21636cd[color=lightseagreen,label=\"Output\\nfasta_stats_velvet\"]\n 4 -> kdacb84a554824ab081ade92af21636cd\n 5[label=\"Fasta Statistics\"]\n 3 -> 5 [label=\"out_contigs\"]\n kff376be9736148c6b1c8d9f951b9c6fa[color=lightseagreen,label=\"Output\\nfasta_stats_spades\"]\n 5 -> kff376be9736148c6b1c8d9f951b9c6fa\n}", + "history": [ + { + "hash": "b435b09a401e2f8678827dafd0e94ee51a2ff804", + "message": "updated test for general-introduction, added test for debruijn-graph-assembly using planemo https://github.com/galaxyproject/planemo/pull/1028", + "num": 4, + "short_hash": "b435b09a4", + "unix": "1595663711" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "6ce45f0c2d49dbd6e6bcb72bc3ef161c4c5a7a41", + "message": "workflow", + "num": 1, + "short_hash": "6ce45f0c2", + "unix": "1549974498" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R1.fastq" + } + ], + "label": "mutant_R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mutant_R1.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "fd0c169b-7c95-4ad9-a7c6-7e16e4eaab2e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R2.fastq" + } + ], + "label": "mutant_R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mutant_R2.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "03430abb-4f48-4bb8-b294-58c4de22a85c", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nmutant_R1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nmutant_R2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"VelvetOptimiser\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"SPAdes\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Fasta Statistics\"];\n 2 -->|contigs| 4;\n dacb84a5-5482-4ab0-81ad-e92af21636cd[\"Output\\nfasta_stats_velvet\"];\n 4 --> dacb84a5-5482-4ab0-81ad-e92af21636cd;\n style dacb84a5-5482-4ab0-81ad-e92af21636cd stroke:#2c3143,stroke-width:4px;\n 5[\"Fasta Statistics\"];\n 3 -->|out_contigs| 5;\n ff376be9-7361-48c6-b1c8-d9f951b9c6fa[\"Output\\nfasta_stats_spades\"];\n 5 --> ff376be9-7361-48c6-b1c8-d9f951b9c6fa;\n style ff376be9-7361-48c6-b1c8-d9f951b9c6fa stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "Debruijn Graph", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "errors": null, + "id": 4, + "input_connections": { + "dataset": { + "id": 2, + "output_name": "contigs" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats", + "type": "tabular" + } + ], + "position": { + "left": 450, + "top": 10 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "tool_shed_repository": { + "changeset_revision": "9c620a950d3a", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"dataset\": \"null\"}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "4999cd50-69fd-4e57-af95-8c73ece1fe31", + "workflow_outputs": [ + { + "label": "fasta_stats_velvet", + "output_name": "stats", + "uuid": "dacb84a5-5482-4ab0-81ad-e92af21636cd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "errors": null, + "id": 5, + "input_connections": { + "dataset": { + "id": 3, + "output_name": "out_contigs" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats", + "type": "tabular" + } + ], + "position": { + "left": 450, + "top": 130 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "tool_shed_repository": { + "changeset_revision": "9c620a950d3a", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"dataset\": \"null\"}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "bfc90a5a-640d-4633-b4df-2f8ccdbfe95b", + "workflow_outputs": [ + { + "label": "fasta_stats_spades", + "output_name": "stats", + "uuid": "ff376be9-7361-48c6-b1c8-d9f951b9c6fa" + } + ] + } + ], + "parent_id": "assembly/debruijn-graph-assembly", + "path": "topics/assembly/tutorials/debruijn-graph-assembly/workflows/debruijn-graph.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": true, + "title": "Debruijn Graph", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-debruijn-graph-assembly/versions/debruijn-graph", + "tutorial_id": "debruijn-graph-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/debruijn-graph-assembly/workflows/debruijn-graph.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/debruijn-graph-assembly/workflows/debruijn-graph.html", + "version": 4, + "wfid": "assembly-debruijn-graph-assembly", + "wfname": "debruijn-graph", + "workflow": "debruijn-graph.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "toolshed.g2.bx.psu.edu/repos/nml/spades/spades/3.12.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/simon-gladman/velvetoptimiser/velvetoptimiser/2.2.6" + ], + "workflowhub_id": "1124" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.582600" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "flye", + "owner": "bgruening", + "revisions": "3ee0ef312022", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "prokka", + "owner": "crs4", + "revisions": "bf68eb663bc3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "prokka", + "owner": "crs4", + "revisions": "111884f0d912", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "b2860df42e16", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "94fe43e75ddc", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "9c620a950d3a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "0dbb995c7d35", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "2bb2e07a7a21", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "17359b808b01", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "edbb6c5028f5", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pilon", + "owner": "iuc", + "revisions": "11e5408fd238", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: flye\n owner: bgruening\n revisions: 3ee0ef312022\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: prokka\n owner: crs4\n revisions: bf68eb663bc3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: prokka\n owner: crs4\n revisions: 111884f0d912\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: b2860df42e16\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 94fe43e75ddc\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 9c620a950d3a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 0dbb995c7d35\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 2bb2e07a7a21\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 17359b808b01\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: edbb6c5028f5\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pilon\n owner: iuc\n revisions: 11e5408fd238\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/chloroplast-assembly/tutorial.json", + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + } + ], + "dir": "topics/assembly/tutorials/chloroplast-assembly", + "edam_operation": [ + "Genome indexing", + "De-novo assembly", + "Sequence alignment", + "Box-Whisker plot plotting", + "Genome annotation", + "Read mapping", + "Scatter plot plotting", + "Mapping assembly", + "Genome visualisation", + "Sequence assembly visualisation", + "Generation", + "Analysis", + "Coding region prediction", + "Cross-assembly", + "Genome assembly", + "Sequence assembly", + "Gene prediction", + "Read alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/chloroplast-assembly", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A chloroplast genome can be assembled with long reads and polished with short reads", + "The assembly graph is useful to look at and think about genomic structure", + "We can map raw reads back to the assembly and investigate areas of high or low read coverage", + "We can view an assembly, its mapped reads, and its annotations in JBrowse" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Assemble a chloroplast genome from long reads", + "Polish the assembly with short reads", + "Annotate the assembly and view", + "Map reads to the assembly and view" + ], + "pageviews": 9428, + "pub_date": "2020-12-04", + "questions": [ + "How can we assemble a chloroplast genome?" + ], + "recordings": [ + { + "captioners": [ + "annasyme" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "35M", + "speakers": [ + "annasyme" + ], + "youtube_id": "eyfCyINTD_E" + } + ], + "short_id": "T00030", + "short_tools": [ + "nanoplot", + "jbrowse", + "flye", + "fasta-stats", + "prokka", + "bandage_info", + "bandage_image", + "bwa_mem", + "upload1", + "pilon" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "plants", + "nanopore", + "jbrowse1" + ], + "time_estimation": "2h", + "title": "Chloroplast genome assembly", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1", + "upload1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "chloroplast-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/chloroplast-assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/chloroplast-assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/chloroplast-assembly/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 170, + "visitors": 5895, + "workflows": [ + { + "creators": [], + "description": "Assembly", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina_reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNanopore_reads\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTiny_set_illumina_read\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTiny_set_nanopore_reads\"]\n 4[label=\"Flye assembly\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"NanoPlot\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Map with BWA-MEM\"]\n 0 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"consensus\"]\n 7[label=\"Fasta Statistics\"]\n 4 -> 7 [label=\"consensus\"]\n 8[label=\"Bandage Info\"]\n 4 -> 8 [label=\"assembly_gfa\"]\n 9[label=\"Bandage Image\"]\n 4 -> 9 [label=\"assembly_gfa\"]\n 10[label=\"pilon\"]\n 6 -> 10 [label=\"bam_output\"]\n 4 -> 10 [label=\"consensus\"]\n 11[label=\"Fasta Statistics\"]\n 10 -> 11 [label=\"output_fasta\"]\n 12[label=\"Map with BWA-MEM\"]\n 2 -> 12 [label=\"output\"]\n 10 -> 12 [label=\"output_fasta\"]\n 13[label=\"Map with BWA-MEM\"]\n 3 -> 13 [label=\"output\"]\n 10 -> 13 [label=\"output_fasta\"]\n 14[label=\"Prokka\"]\n 10 -> 14 [label=\"output_fasta\"]\n 15[label=\"JBrowse\"]\n 10 -> 15 [label=\"output_fasta\"]\n 12 -> 15 [label=\"bam_output\"]\n 13 -> 15 [label=\"bam_output\"]\n 16[label=\"JBrowse\"]\n 10 -> 16 [label=\"output_fasta\"]\n 14 -> 16 [label=\"out_gff\"]\n}", + "history": [ + { + "hash": "ed613d5a1151b9f28f238d38166228cd186f2462", + "message": "Updated workflow with new version of Fasta Stats", + "num": 3, + "short_hash": "ed613d5a1", + "unix": "1683677548" + }, + { + "hash": "2b2bcd3917fafb9b8bc912598edf3ab28cee70d5", + "message": "swap version of tool for one on every server", + "num": 2, + "short_hash": "2b2bcd391", + "unix": "1613141279" + }, + { + "hash": "ebcd3d5282b03ce89bd65e0d39748970c7738481", + "message": "updated workflow added", + "num": 1, + "short_hash": "ebcd3d528", + "unix": "1611556716" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina_reads" + } + ], + "label": "Illumina_reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 294.1953125, + "top": 123.90625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "35434963-8a88-47e2-99f0-ef3eb0484f7e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Nanopore_reads" + } + ], + "label": "Nanopore_reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 354.859375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "59b157b8-f5c4-498c-b66c-0d206ba06ee9", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tiny_set_illumina_read" + } + ], + "label": "Tiny_set_illumina_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 908.265625, + "top": 919.359375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "39c47516-8e9c-4d44-b6bc-326c4be142ee", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tiny_set_nanopore_reads" + } + ], + "label": "Tiny_set_nanopore_reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 908.2734375, + "top": 1040.5703125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "1257e34e-ad76-4f76-88dc-f22c5cc60b8b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIllumina_reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nNanopore_reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTiny_set_illumina_read\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nTiny_set_nanopore_reads\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Flye assembly\"];\n 1 -->|output| 4;\n 5[\"NanoPlot\"];\n 1 -->|output| 5;\n 6[\"Map with BWA-MEM\"];\n 0 -->|output| 6;\n 4 -->|consensus| 6;\n 7[\"Fasta Statistics\"];\n 4 -->|consensus| 7;\n 8[\"Bandage Info\"];\n 4 -->|assembly_gfa| 8;\n 9[\"Bandage Image\"];\n 4 -->|assembly_gfa| 9;\n 10[\"pilon\"];\n 6 -->|bam_output| 10;\n 4 -->|consensus| 10;\n 11[\"Fasta Statistics\"];\n 10 -->|output_fasta| 11;\n 12[\"Map with BWA-MEM\"];\n 2 -->|output| 12;\n 10 -->|output_fasta| 12;\n 13[\"Map with BWA-MEM\"];\n 3 -->|output| 13;\n 10 -->|output_fasta| 13;\n 14[\"Prokka\"];\n 10 -->|output_fasta| 14;\n 15[\"JBrowse\"];\n 10 -->|output_fasta| 15;\n 12 -->|bam_output| 15;\n 13 -->|bam_output| 15;\n 16[\"JBrowse\"];\n 10 -->|output_fasta| 16;\n 14 -->|out_gff| 16;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "Chloroplast-genome-assembly-and-annotation", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6", + "errors": null, + "id": 4, + "input_connections": { + "inputs": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Flye assembly", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + }, + { + "name": "flye_log", + "type": "txt" + } + ], + "position": { + "left": 301.03125, + "top": 244.03125 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "flye-assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6", + "tool_shed_repository": { + "changeset_revision": "3ee0ef312022", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"asm\": null, \"g\": \"160000\", \"i\": \"1\", \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"m\": null, \"meta\": \"false\", \"mode\": \"--nano-raw\", \"no_trestle\": \"false\", \"plasmids\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6", + "type": "tool", + "uuid": "efcc01cf-bb71-4c46-9eec-83488a79859e", + "workflow_outputs": [ + { + "label": null, + "output_name": "assembly_info", + "uuid": "f14c4d31-93bc-4e19-9d81-f3061ed8898e" + }, + { + "label": null, + "output_name": "flye_log", + "uuid": "33126b99-3149-4da0-bcaa-031156d82f09" + }, + { + "label": null, + "output_name": "consensus", + "uuid": "1e33ae8a-4d67-44bf-933e-ade1a94b7f85" + }, + { + "label": null, + "output_name": "assembly_graph", + "uuid": "89d53ead-feef-4079-8988-627850312bd9" + }, + { + "label": null, + "output_name": "assembly_gfa", + "uuid": "de2f80a8-f73f-419c-81e2-208b63c84c1f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "mode|reads|files": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "txt" + }, + { + "name": "nanostats_post_filtering", + "type": "txt" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 315.015625, + "top": 701.8125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "edbb6c5028f5", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"customization\": {\"color\": null, \"format\": \"png\", \"plots\": null, \"N50\": \"false\"}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": \"false\", \"downsample\": null, \"loglength\": \"false\", \"percentqual\": \"false\", \"alength\": \"false\", \"minqual\": null, \"readtype\": null, \"barcoded\": \"false\"}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.28.2+galaxy1", + "type": "tool", + "uuid": "655afaaf-7a0f-4103-b68c-32ad0c03a32b", + "workflow_outputs": [ + { + "label": null, + "output_name": "log_read_length", + "uuid": "a87ac909-55de-42d8-b637-981e0b37c062" + }, + { + "label": null, + "output_name": "nanostats_post_filtering", + "uuid": "46189275-9aef-4c23-8410-d6a6eb14299d" + }, + { + "label": null, + "output_name": "nanostats", + "uuid": "1f5ce9f1-eec9-48c9-b175-8d530b9d9024" + }, + { + "label": null, + "output_name": "read_length", + "uuid": "18ebb4bc-a4a3-48a5-b2e2-c8f9fb801dd6" + }, + { + "label": null, + "output_name": "output_html", + "uuid": "5192b242-50f9-4205-aac7-d1deca088724" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 6, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 0, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "left": 637.8359375, + "top": 0.0 + }, + "post_job_actions": { + "RenameDatasetActionbam_output": { + "action_arguments": { + "newname": "illumina.bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "bam_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "dfd8b7f78c37", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 1, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}, \"index_a\": \"auto\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "95ed65e8-2534-4cef-888f-6de9f83a3770", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "2a0f0b99-d8b1-4585-8272-159d9f3a6a6d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 7, + "input_connections": { + "fasta": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 640.78125, + "top": 365.859375 + }, + "post_job_actions": { + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "Fasta stats of flye assembly" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionstats_output": { + "action_arguments": { + "newname": "Flye assembly fasta stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": \"false\", \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "e4b5dd88-a21b-4b20-93b6-5de72b3883e1", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats_output", + "uuid": "083a96d6-2e0f-408e-a343-9df5cccbcbae" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "assembly_gfa" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "txt" + } + ], + "position": { + "left": 608.78125, + "top": 588.5859375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"tsv\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy1", + "type": "tool", + "uuid": "11a0fc24-13ed-4199-8524-1ebc317e449e", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "5bfce93b-c6bd-42c2-8910-d99b2f472b70" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "errors": null, + "id": 9, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "assembly_gfa" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 605.78125, + "top": 764.40625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": \"true\", \"names\": \"false\", \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "528ebaa8-2c95-472b-b719-4752804e2d00", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "64a6e260-f828-42a7-9ff6-415e3fa5c496" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1", + "errors": null, + "id": 10, + "input_connections": { + "auto_selection|bam": { + "id": 6, + "output_name": "bam_output" + }, + "reference_genome|history_item": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "pilon", + "outputs": [ + { + "name": "output_changes", + "type": "txt" + }, + { + "name": "output_fasta", + "type": "fasta" + } + ], + "position": { + "left": 886.65625, + "top": 262.0625 + }, + "post_job_actions": { + "RenameDatasetActionoutput_fasta": { + "action_arguments": { + "newname": "polished-assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_fasta" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1", + "tool_shed_repository": { + "changeset_revision": "11e5408fd238", + "name": "pilon", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"auto_selection\": {\"auto_enabled\": \"true\", \"__current_case__\": 0, \"bam\": {\"__class__\": \"ConnectedValue\"}}, \"changes\": \"true\", \"options\": {\"selection_mode\": \"default\", \"__current_case__\": 0}, \"reference_genome\": {\"reference_genome_source\": \"history\", \"__current_case__\": 0, \"history_item\": {\"__class__\": \"ConnectedValue\"}}, \"variant\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.20.1", + "type": "tool", + "uuid": "a445d29c-7b0c-48a0-984b-945f2acb64ac", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_changes", + "uuid": "d48e11c7-ea49-457b-8a96-38b6dc0f1bc2" + }, + { + "label": null, + "output_name": "output_fasta", + "uuid": "e898b32c-b4ae-4f5a-b3be-f7a2681e4fa0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 11, + "input_connections": { + "fasta": { + "id": 10, + "output_name": "output_fasta" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 1170.40625, + "top": 139.0625 + }, + "post_job_actions": { + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "Fasta stats of polished flye assembly" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionstats_output": { + "action_arguments": { + "newname": "Pilon polished assembly fasta stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": \"false\", \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "465a0ecf-4f47-4679-ad02-c06eb48449fc", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats_output", + "uuid": "ae93f473-d571-439c-8fa6-3927026fdb49" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 12, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 2, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 10, + "output_name": "output_fasta" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "left": 1195.359375, + "top": 628.0546875 + }, + "post_job_actions": { + "RenameDatasetActionbam_output": { + "action_arguments": { + "newname": "illumina-tiny.bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "bam_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "dfd8b7f78c37", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 1, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}, \"index_a\": \"auto\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "79954680-1c4f-4831-889c-53c4e502aa3c", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "d2513973-0987-4260-9db6-3ac95c45c770" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 13, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 3, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 10, + "output_name": "output_fasta" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "left": 1192.3828125, + "top": 904.5859375 + }, + "post_job_actions": { + "RenameDatasetActionbam_output": { + "action_arguments": { + "newname": "nanopore-tiny.bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "bam_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "dfd8b7f78c37", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"ont2d\", \"__current_case__\": 2}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 1, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}, \"index_a\": \"auto\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "c91315b3-c7f8-458c-a182-2b561d825837", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "bebb5b25-00c2-456a-92a0-cd133a169e0e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 10, + "output_name": "output_fasta" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Prokka", + "name": "proteins" + } + ], + "label": null, + "name": "Prokka", + "outputs": [ + { + "name": "out_gff", + "type": "gff" + }, + { + "name": "out_gbk", + "type": "txt" + }, + { + "name": "out_fna", + "type": "fasta" + }, + { + "name": "out_faa", + "type": "fasta" + }, + { + "name": "out_ffn", + "type": "fasta" + }, + { + "name": "out_sqn", + "type": "asn1" + }, + { + "name": "out_fsa", + "type": "fasta" + }, + { + "name": "out_tbl", + "type": "txt" + }, + { + "name": "out_tsv", + "type": "tabular" + }, + { + "name": "out_err", + "type": "txt" + }, + { + "name": "out_txt", + "type": "txt" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 1704.984375, + "top": 350.234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "tool_shed_repository": { + "changeset_revision": "bf68eb663bc3", + "name": "prokka", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"centre\": \"\", \"compliant\": {\"compliant_select\": \"no\", \"__current_case__\": 0, \"addgenes\": \"false\", \"mincontig\": \"200\"}, \"evalue\": \"1e-06\", \"fast\": \"false\", \"genus\": \"\", \"gffver\": \"3\", \"increment\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"kingdom\": {\"kingdom_select\": \"Bacteria\", \"__current_case__\": 1, \"gcode\": \"11\"}, \"locustag\": \"\", \"metagenome\": \"false\", \"norrna\": \"false\", \"notrna\": \"false\", \"outputs\": [\"gff\", \"gbk\", \"fna\", \"faa\", \"ffn\", \"sqn\", \"fsa\", \"tbl\", \"tsv\", \"err\", \"txt\"], \"plasmid\": \"\", \"proteins\": {\"__class__\": \"RuntimeValue\"}, \"rfam\": \"false\", \"species\": \"\", \"strain\": \"\", \"usegenus\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.14.5", + "type": "tool", + "uuid": "489e19de-1324-472c-8c8e-77e95572b6c3", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_err", + "uuid": "a5f8d2e3-b2ca-46c3-83c5-36bc15507046" + }, + { + "label": null, + "output_name": "out_fna", + "uuid": "1d83fde1-6207-46cc-b65e-a71815c578d8" + }, + { + "label": null, + "output_name": "out_faa", + "uuid": "8e49b1a0-fd5b-4a80-8714-5fe51e7e6096" + }, + { + "label": null, + "output_name": "out_tbl", + "uuid": "638f81aa-0004-4497-aeb9-6c1964cb27a7" + }, + { + "label": null, + "output_name": "out_fsa", + "uuid": "773f3ba6-43ff-41aa-b498-ee509d71a58a" + }, + { + "label": null, + "output_name": "out_ffn", + "uuid": "fd75d3c5-5cff-448e-9fd6-92b8af36e5cf" + }, + { + "label": null, + "output_name": "out_tsv", + "uuid": "0efb82cf-84b6-49dd-bab4-d64d7356e0c7" + }, + { + "label": null, + "output_name": "out_txt", + "uuid": "da1cc1bc-e00c-4f65-afbc-1a118b23274a" + }, + { + "label": null, + "output_name": "out_sqn", + "uuid": "a5a04271-fc67-4ce3-95dc-9f01ee77775c" + }, + { + "label": null, + "output_name": "out_log", + "uuid": "ca98afab-a3d2-4beb-b3f0-de7f38bf5c6b" + }, + { + "label": null, + "output_name": "out_gff", + "uuid": "bae78be6-7c70-42bf-95c1-cae45c51871d" + }, + { + "label": null, + "output_name": "out_gbk", + "uuid": "9a2a7aab-fde6-4a9c-b098-17b958ff2f20" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "reference_genome|genome": { + "id": 10, + "output_name": "output_fasta" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 12, + "output_name": "bam_output" + }, + "track_groups_0|data_tracks_1|data_format|annotation": { + "id": 13, + "output_name": "bam_output" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1469.125, + "top": 558.828125 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "JBrowse-view-assembly-and-reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "17359b808b01", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"11\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Default\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"auto_snp\": \"false\", \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"force\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}, {\"__index__\": 1, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"auto_snp\": \"false\", \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"force\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.9+galaxy0", + "type": "tool", + "uuid": "9ae0aa01-72e9-4481-b992-248f3ec20a07", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b5c7a4ed-bb41-4486-b01f-270071e23e52" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "errors": null, + "id": 16, + "input_connections": { + "reference_genome|genome": { + "id": 10, + "output_name": "output_fasta" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 14, + "output_name": "out_gff" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1981.40625, + "top": 224.328125 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "JBrowse-view-annotations" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "17359b808b01", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"11\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Default\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"force\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.9+galaxy0", + "type": "tool", + "uuid": "7e5c8b63-2538-4898-9644-71453e17c0ba", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5ad68433-82c3-47aa-b3e4-ef1b07ed790e" + } + ] + } + ], + "parent_id": "assembly/chloroplast-assembly", + "path": "topics/assembly/tutorials/chloroplast-assembly/workflows/Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": false, + "title": "Chloroplast-genome-assembly-and-annotation", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-chloroplast-assembly/versions/galaxy-workflow-chloroplast-genome-assembly-and-annotation", + "tutorial_id": "chloroplast-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/chloroplast-assembly/workflows/Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/chloroplast-assembly/workflows/Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.html", + "version": 3, + "wfid": "assembly-chloroplast-assembly", + "wfname": "galaxy-workflow-chloroplast-genome-assembly-and-annotation", + "workflow": "Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6", + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1" + ], + "workflowhub_id": "1139" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.3567224" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/get-started-genome-assembly/tutorial.json", + "contributions": { + "authorship": [ + "alexcorm", + "lleroi" + ], + "editing": [ + "abretaud", + "stephanierobin", + "r1corre" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "email": "alexandre.cormier@ifremer.fr", + "id": "alexcorm", + "joined": "2021-11", + "name": "Alexandre Cormier", + "orcid": "0000-0002-7775-8413", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alexcorm/", + "twitter": "allanssx", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alexcorm.json" + }, + { + "email": "laura.leroi@ifremer.fr", + "id": "lleroi", + "joined": "2021-11", + "name": "Laura Leroi", + "orcid": "0000-0003-3748-4179", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lleroi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lleroi.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "email": "stephanie.robin@inrae.fr", + "id": "stephanierobin", + "joined": "2021-11", + "name": "St\u00e9phanie Robin", + "orcid": "0000-0001-7379-9173", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stephanierobin/", + "twitter": "robinstphanie1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stephanierobin.json" + }, + { + "email": "erwan.corre@sb-roscoff.fr", + "id": "r1corre", + "joined": "2019-04", + "name": "Erwan Corre", + "orcid": "0000-0001-6354-2278", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/r1corre/", + "twitter": "r1corre", + "url": "https://training.galaxyproject.org/training-material/api/contributors/r1corre.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/assembly/tutorials/get-started-genome-assembly", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "assembly/get-started-genome-assembly", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We learned the definitions of bioinformatics terms used in genomes assembly and annotation", + "We have seen the bioinformatics file formats used for these analyses", + "We learned the importance of preparing the project to ensure its success", + "We learned the importance of surrounding ourselves with all the people who have knowledge of the different parts of the project (wet lab, sequencing, bioinformatics,...)" + ], + "layout": "tutorial_slides", + "level": "Introductory", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-10-23", + "pageviews": 4101826, + "pub_date": "2021-11-30", + "questions": [ + "Definitions of bioinformatics terms for assembly and annotation", + "What are the guidelines before starting a Genome Assembly and Annotation project?", + "What file formats are used for assembly and annotation?" + ], + "short_id": "S00034", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1h", + "title": "An introduction to get started in genome assembly and annotation", + "tools": [], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "get-started-genome-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/get-started-genome-assembly/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/get-started-genome-assembly/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/get-started-genome-assembly/slides.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 149, + "visitors": 1577806 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/algorithms-introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "email": "delphine.lariviere@galaxy.org", + "id": "delphine-l", + "joined": "2017-09", + "name": "Delphine Lariviere", + "orcid": "0000-0001-6421-3484", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/delphine-l/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/delphine-l.json" + } + ], + "dir": "topics/assembly/tutorials/algorithms-introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "assembly/algorithms-introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "level": "Intermediate", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2021-01-12", + "pageviews": 5658344, + "pub_date": "2021-01-12", + "questions": [ + "What are the main types of assembly algorithms?", + "How do they perform with short and long reads?", + "How to improve assemblies using other technologies?" + ], + "short_id": "S00029", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Deeper look into Genome Assembly algorithms", + "tools": [], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "algorithms-introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/algorithms-introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/algorithms-introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/algorithms-introduction/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2042097 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "argo_getdata", + "owner": "ecology", + "revisions": "28c8f085d1b4", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "timeseries_extraction", + "owner": "ecology", + "revisions": "810820a0d45c", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_coords_info", + "owner": "ecology", + "revisions": "663e6f115a76", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_metadata_info", + "owner": "ecology", + "revisions": "00de53d18b99", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: argo_getdata\n owner: ecology\n revisions: 28c8f085d1b4\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: timeseries_extraction\n owner: ecology\n revisions: 810820a0d45c\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_coords_info\n owner: ecology\n revisions: 663e6f115a76\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_metadata_info\n owner: ecology\n revisions: 00de53d18b99\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/argo_pangeo/tutorial.json", + "contributions": { + "authorship": [ + "Marie59" + ], + "funding": [ + "fairease", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "avatar": "/training-material/assets/images/fair_ease_colour.png", + "funder": true, + "funding_id": "101058785", + "funding_statement": "FAIR-EASE is a RIA project funded under HORIZON-INFRA-2021-EOSC-01-04, and it involves a consortium of 25 partners from all over Europe.", + "funding_system": "cordis", + "github": false, + "id": "fairease", + "joined": "2023-10", + "members": [ + "Marie59", + "yvanlebras" + ], + "name": "Fair-Ease", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fairease/", + "url": "https://training.galaxyproject.org/training-material/api/funders/fairease.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/climate/tutorials/argo_pangeo", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/argo_pangeo", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Argo data", + "Pangeo Ecosystem", + "Galaxy Earth System" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-24", + "objectives": [ + "How to fetch Argo Data?", + "How to get metadata with xarray netcdf tools?", + "Learn to get temperature variations.", + "Learn to use an interactive tool to visualise Argo temperature variable on an interactive map." + ], + "pageviews": 108, + "pub_date": "2024-03-24", + "questions": [ + "How to use the Pangeo ecosystem to analyse ocean data?", + "How to process Argo data to visualise ocean temperature variations?" + ], + "requirements": [ + { + "topic_name": "introduction", + "tutorials": [ + "galaxy-intro-short" + ], + "type": "internal" + } + ], + "short_id": "T00428", + "short_tools": [ + "argo_getdata", + "interactive_tool_odv", + "timeseries_extraction", + "xarray_metadata_info", + "xarray_coords_info" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "earth-system", + "ocean", + "pangeo", + "argo" + ], + "time_estimation": "1H", + "title": "Analyse Argo data", + "tools": [ + "interactive_tool_odv", + "toolshed.g2.bx.psu.edu/repos/ecology/argo_getdata/argo_getdata/0.1.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/timeseries_extraction/timeseries_extraction/2022.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/2022.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/2022.3.0+galaxy0" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "argo_pangeo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/argo_pangeo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/argo_pangeo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/argo_pangeo/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 120, + "visitors": 85, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0008-0622-604X", + "name": "Marie Joss\u00e9", + "url": "https://github.com/Marie59" + } + ], + "description": "Process argo data with the Pangeo Ecosystem and visualise them with Ocean Data View (ODV)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Argo data access\"]\n 1[label=\"NetCDF xarray Coordinate Info\"]\n 0 -> 1 [label=\"output_argo\"]\n 2[label=\"NetCDF xarray Metadata Info\"]\n 0 -> 2 [label=\"output_argo\"]\n 3[label=\"NetCDF timeseries Extractor\"]\n 0 -> 3 [label=\"output_argo\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"ODV\"]\n 3 -> 4 [label=\"timeseries_tabular\"]\n}", + "history": [ + { + "hash": "54b194630704357541b0a560b2b5e212cbf7fa35", + "message": "add new argo tuto", + "num": 1, + "short_hash": "54b194630", + "unix": "1710791150" + } + ], + "inputs": [], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"Argo data access\"];\n 1[\"NetCDF xarray Coordinate Info\"];\n 0 -->|output_argo| 1;\n 2[\"NetCDF xarray Metadata Info\"];\n 0 -->|output_argo| 2;\n 3[\"NetCDF timeseries Extractor\"];\n 0 -->|output_argo| 3;\n 2 -->|output| 3;\n 4[\"ODV\"];\n 3 -->|timeseries_tabular| 4;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Analyse Argo data ", + "outputs": [], + "parent_id": "climate/argo_pangeo", + "path": "topics/climate/tutorials/argo_pangeo/workflows/main_workflow.ga", + "tags": [ + "Ocean", + "Pangeo", + "earth-system" + ], + "test_results": null, + "tests": false, + "title": "Analyse Argo data ", + "topic_id": "climate", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-argo_pangeo/versions/main-workflow", + "tutorial_id": "argo_pangeo", + "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/argo_pangeo/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/argo_pangeo/workflows/main_workflow.html", + "version": 1, + "wfid": "climate-argo_pangeo", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "interactive_tool_odv", + "toolshed.g2.bx.psu.edu/repos/ecology/argo_getdata/argo_getdata/0.1.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/timeseries_extraction/timeseries_extraction/2022.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/2022.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/2022.3.0+galaxy0" + ], + "workflowhub_id": "1193" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/pangeo-notebook/tutorial.json", + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + } + ], + "dir": "topics/climate/tutorials/pangeo-notebook", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "link": "http://gallery.pangeo.io/repos/pangeo-data/pangeo-tutorial-gallery/index.html", + "title": "Pangeo Tutorial Gallery", + "type": "external" + }, + { + "link": "http://gallery.pangeo.io/index.html", + "title": "Pangeo Gallery", + "type": "external" + } + ], + "hands_on": true, + "id": "climate/pangeo-notebook", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Pangeo ecosystem enables big data analysis in geosciences", + "Xarray is an important Python package for big data analysis in geosciences", + "Xarray can be used to read, select, mask and plot netCDF data", + "Xarray can also be used to perform global operations such as mean, max, min or resampling data" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "notebook": { + "language": "python", + "snippet": "topics/climate/tutorials/pangeo-notebook/preamble.md" + }, + "objectives": [ + "Learn to get metadata information using Xarray Galaxy Tools", + "Learn to select data", + "Learn to visualize data", + "Learn to filter, make reduction operations (mean, max, min)", + "Learn to resample my data", + "Learn to cite and contribute to Pangeo" + ], + "pageviews": 3702313, + "pub_date": "2022-02-18", + "questions": [ + "What is Pangeo notebook?", + "How to start Pangeo Notebook in Galaxy?", + "What are the main software components of the Pangeo ecosystem?", + "What is Xarray?", + "How to manipulate Xarrays?", + "How to print metadata information?", + "How to make a selection?", + "How to visualize?", + "How to filter?", + "How to make reduction operations (mean, max, min)?", + "How to resample my data?", + "Where to go next?" + ], + "recordings": [ + { + "captioners": [ + "annefou" + ], + "date": "2022-03-03", + "galaxy_version": "21.09", + "length": "17M", + "speakers": [ + "annefou" + ], + "youtube_id": "XFF2yRcYGp0" + } + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "python-basics" + ], + "type": "internal" + }, + { + "topic_name": "data-science", + "tutorials": [ + "python-plotting", + "python-advanced-np-pd" + ], + "type": "internal" + }, + { + "link": "https://datacarpentry.org/geospatial-workshop/", + "title": "Data Carpentry Geospatial Workshop", + "type": "external" + } + ], + "short_id": "T00045", + "short_tools": [ + "interactive_tool_pangeo_notebook" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "pangeo", + "interactive-tools" + ], + "time_estimation": "1H", + "title": "Pangeo Notebook in Galaxy - Introduction to Xarray", + "tools": [ + "interactive_tool_pangeo_notebook" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "pangeo-notebook", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/pangeo-notebook/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/pangeo-notebook/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/pangeo-notebook/tutorial.json" + }, + "version": 10, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 268, + "visitors": 1455677, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1784-2920", + "name": "Anne Fouilloux", + "url": "https://github.com/annefou" + } + ], + "description": "Workflow for GTN Pangeo Notebook in Galaxy - Introduction to Xarray", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Pangeo Jupyter for Big Data geoscience\"]\n}", + "history": [ + { + "hash": "e1474b2a116fe585bb664fa489f11648d12be74f", + "message": "Add missing annotation for pangeo-notebook workflow", + "num": 2, + "short_hash": "e1474b2a1", + "unix": "1643364120" + }, + { + "hash": "1cb326ea7de3765fc5804f168fb4d813a72676b5", + "message": "split pangeo training in two (Galaxy tool and Pangeo notebook)", + "num": 1, + "short_hash": "1cb326ea7", + "unix": "1640271678" + } + ], + "inputs": [], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"Pangeo Jupyter for Big Data geoscience\"];", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Pangeo Jupyter Notebook", + "outputs": [ + { + "annotation": "", + "content_id": "interactive_tool_pangeo_notebook", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "runtime parameter for tool Interactive Pangeo Notebook", + "name": "input" + } + ], + "label": "Pangeo Jupyter for Big Data geoscience", + "name": "Interactive Pangeo Notebook", + "outputs": [ + { + "name": "jupyter_notebook", + "type": "ipynb" + } + ], + "position": { + "bottom": 516.90625, + "height": 174.734375, + "left": 672, + "right": 872, + "top": 342.171875, + "width": 200, + "x": 672, + "y": 342.171875 + }, + "post_job_actions": {}, + "tool_id": "interactive_tool_pangeo_notebook", + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"mode\": {\"mode_select\": \"scratch\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1c0f66b", + "type": "tool", + "uuid": "e921fd5a-97f9-4364-8c8a-7f225329016a", + "workflow_outputs": [ + { + "label": null, + "output_name": "jupyter_notebook", + "uuid": "30d1f58a-ace4-4eaf-9efa-c3930d768898" + } + ] + } + ], + "parent_id": "climate/pangeo-notebook", + "path": "topics/climate/tutorials/pangeo-notebook/workflows/main_workflow.ga", + "tags": [ + "pangeo", + "climate", + "big-data", + "geosciences" + ], + "test_results": null, + "tests": false, + "title": "Pangeo Jupyter Notebook", + "topic_id": "climate", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-pangeo-notebook/versions/main-workflow", + "tutorial_id": "pangeo-notebook", + "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/pangeo-notebook/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/pangeo-notebook/workflows/main_workflow.html", + "version": 1, + "wfid": "climate-pangeo-notebook", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "interactive_tool_pangeo_notebook" + ], + "workflowhub_id": "1189" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.5805953" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "9ff72e942410", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cds_essential_variability", + "owner": "climate", + "revisions": "9ee8db6ffba3", + "tool_panel_section_label": "Climate Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "climate_stripes", + "owner": "climate", + "revisions": "c6f2435d680b", + "tool_panel_section_label": "Climate Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "psy_maps", + "owner": "climate", + "revisions": "706666d912d5", + "tool_panel_section_label": "Climate Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_point", + "owner": "iuc", + "revisions": "9cec81e1b90e", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: 9ff72e942410\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cds_essential_variability\n owner: climate\n revisions: 9ee8db6ffba3\n tool_panel_section_label: Climate Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: climate_stripes\n owner: climate\n revisions: c6f2435d680b\n tool_panel_section_label: Climate Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: psy_maps\n owner: climate\n revisions: 706666d912d5\n tool_panel_section_label: Climate Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_point\n owner: iuc\n revisions: 9cec81e1b90e\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/climate-101/tutorial.json", + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + } + ], + "dir": "topics/climate/tutorials/climate-101", + "edam_operation": [ + "Visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/climate-101", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Weather versus Climate", + "Essential Climate Variables", + "Observations, reanalysis, predictions and projections." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-11", + "objectives": [ + "Learn about the terminology", + "Learn about the different source of climate data", + "Learn about climate observations, reanalysis, climate predictions and climate projections" + ], + "pageviews": 1191, + "pub_date": "2020-04-30", + "questions": [ + "What is climate?", + "What type of data is available?" + ], + "short_id": "T00041", + "short_tools": [ + "Grep1", + "datamash_ops", + "tp_awk_tool", + "ggplot2_point", + "psy_maps", + "climate_stripes", + "cds_essential_variability" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Getting your hands-on climate data", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/climate/cds_essential_variability/cds_essential_variability/0.1.4", + "toolshed.g2.bx.psu.edu/repos/climate/climate_stripes/climate_stripes/1.0.1", + "toolshed.g2.bx.psu.edu/repos/climate/psy_maps/psy_maps/1.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "climate-101", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/climate-101/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/climate-101/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/climate-101/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 56, + "visitors": 841, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1784-2920", + "name": "Anne Fouilloux" + } + ], + "description": "Visualize Climate data with Panoply netCDF viewer", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[label=\"Copernicus Essential Climate Variables\"]\n 3[label=\"climate stripes\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Select\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Datamash\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Datamash\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Datamash\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"Text reformatting\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"map plot\"]\n 2 -> 9 [label=\"ofilename\"]\n 10[label=\"Datamash\"]\n 8 -> 10 [label=\"outfile\"]\n 11[label=\"Datamash\"]\n 8 -> 11 [label=\"outfile\"]\n 12[label=\"Datamash\"]\n 10 -> 12 [label=\"out_file\"]\n 13[label=\"Datamash\"]\n 10 -> 13 [label=\"out_file\"]\n 14[label=\"Scatterplot w ggplot2\"]\n 11 -> 14 [label=\"out_file\"]\n}", + "history": [ + { + "hash": "3693396f61a109643d15e9bc1b9e21a8def0562d", + "message": "add license, creator information", + "num": 2, + "short_hash": "3693396f6", + "unix": "1633427069" + }, + { + "hash": "969fae434066d9571160c4510b8995e99defd640", + "message": "Add climate workflows from @annefou", + "num": 1, + "short_hash": "969fae434", + "unix": "1633426896" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ts_cities.csv" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"ts_cities.csv\"}", + "tool_version": null, + "type": "data_input", + "uuid": "99e7d3bd-74d3-4651-81d0-7a468624d8aa", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "tg_ens_mean_0.1deg_reg_v20.0e_Paris_daily.csv" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"tg_ens_mean_0.1deg_reg_v20.0e_Paris_daily.csv\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0afa85cd-9b3e-44a1-a528-9e293f86b500", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Copernicus Essential Climate Variables\"];\n 3[\"climate stripes\"];\n 0 -->|output| 3;\n 4[\"Select\"];\n 1 -->|output| 4;\n 5[\"Datamash\"];\n 1 -->|output| 5;\n 6[\"Datamash\"];\n 1 -->|output| 6;\n 7[\"Datamash\"];\n 1 -->|output| 7;\n 8[\"Text reformatting\"];\n 1 -->|output| 8;\n 9[\"map plot\"];\n 2 -->|ofilename| 9;\n 10[\"Datamash\"];\n 8 -->|outfile| 10;\n 11[\"Datamash\"];\n 8 -->|outfile| 11;\n 12[\"Datamash\"];\n 10 -->|out_file| 12;\n 13[\"Datamash\"];\n 10 -->|out_file| 13;\n 14[\"Scatterplot w ggplot2\"];\n 11 -->|out_file| 14;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Climate 101", + "outputs": [], + "parent_id": "climate/climate-101", + "path": "topics/climate/tutorials/climate-101/workflows/climate_101_workflow.ga", + "tags": [ + "climate" + ], + "test_results": null, + "tests": false, + "title": "Climate 101", + "topic_id": "climate", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-climate-101/versions/climate-101-workflow", + "tutorial_id": "climate-101", + "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/climate-101/workflows/climate_101_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/climate-101/workflows/climate_101_workflow.html", + "version": 1, + "wfid": "climate-climate-101", + "wfname": "climate-101-workflow", + "workflow": "climate_101_workflow.ga", + "workflow_tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/climate/cds_essential_variability/cds_essential_variability/0.1.4", + "toolshed.g2.bx.psu.edu/repos/climate/climate_stripes/climate_stripes/1.0.1", + "toolshed.g2.bx.psu.edu/repos/climate/psy_maps/psy_maps/1.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1" + ], + "workflowhub_id": "1138" + } + ], + "zenodo_link": "https://zenodo.org/record/3776500" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "divand_full_analysis", + "owner": "ecology", + "revisions": "484930fdc002", + "tool_panel_section_label": "Climate Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: divand_full_analysis\n owner: ecology\n revisions: 484930fdc002\n tool_panel_section_label: Climate Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/ocean-variables/tutorial.json", + "contributions": { + "authorship": [ + "Marie59" + ], + "funding": [ + "fairease", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "avatar": "/training-material/assets/images/fair_ease_colour.png", + "funder": true, + "funding_id": "101058785", + "funding_statement": "FAIR-EASE is a RIA project funded under HORIZON-INFRA-2021-EOSC-01-04, and it involves a consortium of 25 partners from all over Europe.", + "funding_system": "cordis", + "github": false, + "id": "fairease", + "joined": "2023-10", + "members": [ + "Marie59", + "yvanlebras" + ], + "name": "Fair-Ease", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fairease/", + "url": "https://training.galaxyproject.org/training-material/api/funders/fairease.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/climate/tutorials/ocean-variables", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/ocean-variables", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Manage ODV collection's data.", + "Learn to extract data and visualize them on ODV", + "Learn to chain ODV and DIVAnd" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Deals with ODV collection with data originating from Emodnet chemistry", + "Visualise ocean variables to study climate changes" + ], + "pageviews": 109, + "pub_date": "2023-11-29", + "questions": [ + "How to process extract ocean's variables?", + "How to use ODV collections?", + "How to create climatological estimates?" + ], + "short_id": "T00376", + "short_tools": [ + "interactive_tool_divand", + "divand_full_analysis", + "interactive_tool_odv" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "earth-system", + "ocean", + "netcdf data" + ], + "time_estimation": "1H", + "title": "Ocean's variables study", + "tools": [ + "interactive_tool_divand", + "interactive_tool_odv", + "toolshed.g2.bx.psu.edu/repos/ecology/divand_full_analysis/divand_full_analysis/0.1.0+galaxy0" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ocean-variables", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/ocean-variables/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/ocean-variables/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/ocean-variables/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 145, + "visitors": 84, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0008-0622-604X", + "name": "Marie Joss\u00e9", + "url": "https://github.com/Marie59" + } + ], + "description": "Subset data on the Mediterreanean see and extract and visualise the Phosphate variable", + "features": { + "comments": true, + "parameters": true, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow Inputs\n```galaxy\ninvocation_inputs()\n```\n\n## Workflow Outputs\n```galaxy\ninvocation_outputs()\n```\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nWorflow fully interactive\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEutrophication_Med_profiles_2022_unrestricted_SNAPSHOT_2023-10-24T16-39-44.zip\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nWorkflow semi automatic\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ngebco_30sec_8.nc\"]\n 4[label=\"Ocean Data View\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Interactive DIVAnd jupyterlab\"]\n 4 -> 5 [label=\"outputs_netcdf\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"DIVAnd create a climatology\"]\n 3 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"outputs_netcdf\"]\n 2 -> 6 [label=\"output\"]\n k5996328287bf4432a7778a9b61dea03c[color=lightseagreen,label=\"Output\\nWater_body_Phosphate_Mediterranean.nc\"]\n 6 -> k5996328287bf4432a7778a9b61dea03c\n 7[label=\"ODV visualisation interactive\"]\n 5 -> 7 [label=\"output_netcdf\"]\n kdc8316a4e57c476bb885bbe4fb84d8c7[color=lightseagreen,label=\"Output\\nOcean variables visualisation interactive\"]\n 7 -> kdc8316a4e57c476bb885bbe4fb84d8c7\n 8[label=\"ODV visualisation\"]\n 6 -> 8 [label=\"output_netcdf\"]\n k7b0722535bf9434fb06a70b375ddaa03[color=lightseagreen,label=\"Output\\nOcean variables visualisation\"]\n 8 -> k7b0722535bf9434fb06a70b375ddaa03\n}", + "history": [ + { + "hash": "1c6ee9c0d6c08affe5e54d71b4488147396ba5aa", + "message": "Add new version of workflow", + "num": 2, + "short_hash": "1c6ee9c0d", + "unix": "1723110972" + }, + { + "hash": "c51d6ffbc21866df213772767f645a889a23c70f", + "message": "Add workflow", + "num": 1, + "short_hash": "c51d6ffbc", + "unix": "1710854627" + } + ], + "inputs": [ + { + "annotation": "Choose whether you want to have only interactive tools (for more experimented user) or if you want a workflow hat combines interactive and non-interactive tools (easier)", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Choose whether you want to have only interactive tools (for more experimented user) or if you want a workflow hat combines interactive and non-interactive tools (easier)", + "name": "Worflow fully interactive" + } + ], + "label": "Worflow fully interactive", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 29.80677214543107, + "top": 359.1046708180256 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"boolean\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "250d862b-4c3d-462d-9bcd-9a5053c52b5e", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "The data here are Mediterranean Sea - Eutrophication and Acidity aggregated datasets EMODnet Chemistry.", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "The data here are Mediterranean Sea - Eutrophication and Acidity aggregated datasets EMODnet Chemistry.", + "name": "Eutrophication_Med_profiles_2022_unrestricted_SNAPSHOT_2023-10-24T16-39-44.zip" + } + ], + "label": "Eutrophication_Med_profiles_2022_unrestricted_SNAPSHOT_2023-10-24T16-39-44.zip", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 314.4, + "top": 507.4 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "b513664a-1176-4fd9-bb79-439010069177", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Choose whether you want to have only interactive tools (for more experimented user) or if you want a workflow hat combines interactive and non-interactive tools (easier)", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Choose whether you want to have only interactive tools (for more experimented user) or if you want a workflow hat combines interactive and non-interactive tools (easier)", + "name": "Workflow semi automatic" + } + ], + "label": "Workflow semi automatic", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 34.559982917236994, + "top": 738.7586893348329 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"boolean\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "6e2ed5ec-3760-44fe-a722-4e44356f9058", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "A bathymetry file in netcdf.", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "A bathymetry file in netcdf.", + "name": "gebco_30sec_8.nc" + } + ], + "label": "gebco_30sec_8.nc", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 614.0977004616734, + "top": 903.4688531054738 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "006a3936-6151-4724-9fab-6b41f869e1ee", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nWorflow fully interactive\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nEutrophication_Med_profiles_2022_unrestricted_SNAPSHOT_2023-10-24T16-39-44.zip\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nWorkflow semi automatic\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\ngebco_30sec_8.nc\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Ocean Data View\"];\n 1 -->|output| 4;\n 5[\"Interactive DIVAnd jupyterlab\"];\n 4 -->|outputs_netcdf| 5;\n 0 -->|output| 5;\n 6[\"DIVAnd create a climatology\"];\n 3 -->|output| 6;\n 4 -->|outputs_netcdf| 6;\n 2 -->|output| 6;\n 59963282-87bf-4432-a777-8a9b61dea03c[\"Output\\nWater_body_Phosphate_Mediterranean.nc\"];\n 6 --> 59963282-87bf-4432-a777-8a9b61dea03c;\n style 59963282-87bf-4432-a777-8a9b61dea03c stroke:#2c3143,stroke-width:4px;\n 7[\"ODV visualisation interactive\"];\n 5 -->|output_netcdf| 7;\n dc8316a4-e57c-476b-b885-bbe4fb84d8c7[\"Output\\nOcean variables visualisation interactive\"];\n 7 --> dc8316a4-e57c-476b-b885-bbe4fb84d8c7;\n style dc8316a4-e57c-476b-b885-bbe4fb84d8c7 stroke:#2c3143,stroke-width:4px;\n 8[\"ODV visualisation\"];\n 6 -->|output_netcdf| 8;\n 7b072253-5bf9-434f-b06a-70b375ddaa03[\"Output\\nOcean variables visualisation\"];\n 8 --> 7b072253-5bf9-434f-b06a-70b375ddaa03;\n style 7b072253-5bf9-434f-b06a-70b375ddaa03 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Ocean's variables 2.0", + "outputs": [ + { + "annotation": "Create a climatology (not interactively)", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/divand_full_analysis/divand_full_analysis/0.1.0+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "bathname": { + "id": 3, + "output_name": "output" + }, + "input_netcdf_identifier": { + "id": 4, + "output_name": "outputs_netcdf" + }, + "when": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "DIVAnd (create a climatology)", + "name": "DIVAnd", + "outputs": [ + { + "name": "output_netcdf", + "type": "netcdf" + } + ], + "position": { + "left": 958.2529539113443, + "top": 679.118779662132 + }, + "post_job_actions": { + "RenameDatasetActionoutput_netcdf": { + "action_arguments": { + "newname": "Water_body_Phosphate_Mediterranean.nc" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_netcdf" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/divand_full_analysis/divand_full_analysis/0.1.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "484930fdc002", + "name": "divand_full_analysis", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"bathname\": {\"__class__\": \"ConnectedValue\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"enddate\": \"2017-01-01\", \"input_netcdf_identifier\": {\"__class__\": \"ConnectedValue\"}, \"input_netcdf_identifier|__identifier__\": \"data_from_Eutrophication_Med_profiles_2022_unrestricted.nc\", \"latmax\": \"38.0\", \"latmin\": \"32.0\", \"longmax\": \"30.0\", \"longmin\": \"19.0\", \"selmax\": \"100\", \"selmin\": \"0\", \"startdate\": \"1950-12-31\", \"varname\": \"phosphate\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0+galaxy0", + "type": "tool", + "uuid": "d1c07265-1da0-40d6-9fd5-1041a9d9f658", + "when": "$(inputs.when)", + "workflow_outputs": [ + { + "label": "Water_body_Phosphate_Mediterranean.nc", + "output_name": "output_netcdf", + "uuid": "59963282-87bf-4432-a777-8a9b61dea03c" + } + ] + }, + { + "annotation": "Final step to visualize in different way a ocean variable like the phosphate.", + "content_id": "interactive_tool_odv", + "errors": null, + "id": 7, + "input_connections": { + "method|infiles": { + "id": 5, + "output_name": "output_netcdf" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool ODV", + "name": "method" + } + ], + "label": "ODV (visualisation) interactive", + "name": "ODV", + "outputs": [ + { + "name": "outputs_netcdf", + "type": "input" + }, + { + "name": "outputs_all", + "type": "input" + } + ], + "position": { + "left": 1315.0326051372172, + "top": 398.52546972475403 + }, + "post_job_actions": {}, + "tool_id": "interactive_tool_odv", + "tool_state": "{\"__input_ext\": \"netcdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"method\": {\"type\": \"own_data\", \"__current_case__\": 0, \"infiles\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.6.5.1", + "type": "tool", + "uuid": "50c35d61-7b8d-4706-9d56-d3bd94a46960", + "when": null, + "workflow_outputs": [ + { + "label": "Ocean variables visualisation interactive", + "output_name": "outputs_all", + "uuid": "dc8316a4-e57c-476b-b885-bbe4fb84d8c7" + } + ] + }, + { + "annotation": "Final step to visualize in different way a ocean variable like the phosphate.", + "content_id": "interactive_tool_odv", + "errors": null, + "id": 8, + "input_connections": { + "method|infiles": { + "id": 6, + "output_name": "output_netcdf" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool ODV", + "name": "method" + } + ], + "label": "ODV (visualisation)", + "name": "ODV", + "outputs": [ + { + "name": "outputs_netcdf", + "type": "input" + }, + { + "name": "outputs_all", + "type": "input" + } + ], + "position": { + "left": 1313.0264554819623, + "top": 737.9220054373203 + }, + "post_job_actions": {}, + "tool_id": "interactive_tool_odv", + "tool_state": "{\"__input_ext\": \"netcdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"method\": {\"type\": \"own_data\", \"__current_case__\": 0, \"infiles\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.6.5.1", + "type": "tool", + "uuid": "9bff476c-be32-4d87-a655-db241126ae49", + "when": null, + "workflow_outputs": [ + { + "label": "Ocean variables visualisation", + "output_name": "outputs_all", + "uuid": "7b072253-5bf9-434f-b06a-70b375ddaa03" + } + ] + } + ], + "parent_id": "climate/ocean-variables", + "path": "topics/climate/tutorials/ocean-variables/workflows/main_workflow.ga", + "tags": [ + "earth-system", + "Ocean" + ], + "test_results": null, + "tests": true, + "title": "Ocean's variables 2.0", + "topic_id": "climate", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-ocean-variables/versions/main-workflow", + "tutorial_id": "ocean-variables", + "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/ocean-variables/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/ocean-variables/workflows/main_workflow.html", + "version": 2, + "wfid": "climate-ocean-variables", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "interactive_tool_divand", + "interactive_tool_odv", + "toolshed.g2.bx.psu.edu/repos/ecology/divand_full_analysis/divand_full_analysis/0.1.0+galaxy0" + ], + "workflowhub_id": "1200" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "graphicsmagick_image_montage", + "owner": "bgruening", + "revisions": "a0f01c777820", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "climate_stripes", + "owner": "climate", + "revisions": "c6f2435d680b", + "tool_panel_section_label": "Climate Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_coords_info", + "owner": "ecology", + "revisions": "6015f30a7258", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_mapplot", + "owner": "ecology", + "revisions": "d7479b6dfbe8", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_metadata_info", + "owner": "ecology", + "revisions": "e8650cdf092f", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_netcdf2netcdf", + "owner": "ecology", + "revisions": "1a91e551f3a9", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_select", + "owner": "ecology", + "revisions": "6baac361495b", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "ae8c4b2488e7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_point", + "owner": "iuc", + "revisions": "e3a675da7fd0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: graphicsmagick_image_montage\n owner: bgruening\n revisions: a0f01c777820\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: climate_stripes\n owner: climate\n revisions: c6f2435d680b\n tool_panel_section_label: Climate Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_coords_info\n owner: ecology\n revisions: 6015f30a7258\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_mapplot\n owner: ecology\n revisions: d7479b6dfbe8\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_metadata_info\n owner: ecology\n revisions: e8650cdf092f\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_netcdf2netcdf\n owner: ecology\n revisions: 1a91e551f3a9\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_select\n owner: ecology\n revisions: 6baac361495b\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: ae8c4b2488e7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_point\n owner: iuc\n revisions: e3a675da7fd0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/pangeo/tutorial.json", + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + } + ], + "dir": "topics/climate/tutorials/pangeo", + "edam_operation": [ + "Visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/pangeo", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Xarray Tools in Galaxy" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand what Pangeo and Xarray are", + "Learn to get metadata information using Xarray Galaxy Tools", + "Learn to select data", + "Learn to visualize geographical data on a map", + "Learn to filter, make reduction operations (mean, max, min)", + "Learn to resample my data" + ], + "pageviews": 3701863, + "pub_date": "2022-02-18", + "questions": [ + "What Xarray Galaxy Tools can I use in Galaxy and what for?", + "What is an Xarray?", + "How do I use Xarray in Galaxy?", + "How to get metadata information?", + "How to make a selection?", + "How to visualize?", + "How to filter?", + "How to make reduction operations (mean, max, min)?", + "How to resample my data?" + ], + "recordings": [ + { + "captioners": [ + "annefou" + ], + "date": "2022-03-03", + "galaxy_version": "21.09", + "length": "1H20M", + "speakers": [ + "annefou" + ], + "youtube_id": "V43jEJfa6hY" + } + ], + "short_id": "T00044", + "short_tools": [ + "xarray_select", + "graphicsmagick_image_montage", + "xarray_mapplot", + "ggplot2_point", + "climate_stripes", + "xarray_netcdf2netcdf", + "xarray_metadata_info", + "regexColumn1", + "__MERGE_COLLECTION__", + "__EXTRACT_DATASET__", + "xarray_coords_info" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "pangeo" + ], + "time_estimation": "1H", + "title": "Pangeo ecosystem 101 for everyone - Introduction to Xarray Galaxy Tools", + "tools": [ + "__EXTRACT_DATASET__", + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_montage/graphicsmagick_image_montage/1.3.31+galaxy1", + "toolshed.g2.bx.psu.edu/repos/climate/climate_stripes/climate_stripes/1.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/0.18.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.18.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_netcdf2netcdf/xarray_netcdf2netcdf/0.18.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_select/xarray_select/0.15.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "pangeo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/pangeo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/pangeo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/pangeo/tutorial.json" + }, + "version": 5, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 344, + "visitors": 1455499, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-1784-2920", + "name": "Anne Fouilloux", + "url": "https://github.com/annefou" + } + ], + "description": "Workflow for GTN Pangeo 101 for everyone - Introduction to Xarray", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nplot first time e.g. index=0\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCAMS-PM2_5-20211222.netcdf\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nplot forecast time 2 days 12:00 UTC\"]\n 3[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\ntime=5\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\ntime=6\"]\n 5[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\ntime=3\"]\n 6[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\ntime=2\"]\n 7[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\ntime=7\"]\n 8[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\ntime=1\"]\n 9[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\ntime=4\"]\n 10[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\ntime=0\"]\n 11[label=\"NetCDF xarray Coordinate Info\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"NetCDF xarray Metadata Info\"]\n 1 -> 12 [label=\"output\"]\n 13[label=\"extract longitude\"]\n 11 -> 13 [label=\"output_dir\"]\n 14[label=\"extract latitude\"]\n 11 -> 14 [label=\"output_dir\"]\n 15[label=\"Extract time from coordinate info\"]\n 11 -> 15 [label=\"output_dir\"]\n k3b4968d789844e6687a9a3ab8fc12ca4[color=lightseagreen,label=\"Output\\ninput dataset(s) (extracted element)\"]\n 15 -> k3b4968d789844e6687a9a3ab8fc12ca4\n 16[label=\"NetCDF xarray operations\"]\n 1 -> 16 [label=\"output\"]\n 14 -> 16 [label=\"output\"]\n 13 -> 16 [label=\"output\"]\n 12 -> 16 [label=\"output\"]\n 17[label=\"NetCDF xarray operations\"]\n 1 -> 17 [label=\"output\"]\n 15 -> 17 [label=\"output\"]\n 12 -> 17 [label=\"output\"]\n 18[label=\"NetCDF xarray operations\"]\n 1 -> 18 [label=\"output\"]\n 15 -> 18 [label=\"output\"]\n 14 -> 18 [label=\"output\"]\n 13 -> 18 [label=\"output\"]\n 12 -> 18 [label=\"output\"]\n 19[label=\"PM2.5 CAMS Europe 0 days 00:00 UTC reference time\"]\n 15 -> 19 [label=\"output\"]\n 0 -> 19 [label=\"output\"]\n 1 -> 19 [label=\"output\"]\n 12 -> 19 [label=\"output\"]\n k4248303121e24d8888984a9aa9bb10e5[color=lightseagreen,label=\"Output\\nPM2.5 reference date Europe\"]\n 19 -> k4248303121e24d8888984a9aa9bb10e5\n 20[label=\"PM2.5 CAMS forecast 2 days 12:00 UTC\"]\n 15 -> 20 [label=\"output\"]\n 2 -> 20 [label=\"output\"]\n 1 -> 20 [label=\"output\"]\n 12 -> 20 [label=\"output\"]\n k07ba8141bad34a61833d3b3e82b53fdb[color=lightseagreen,label=\"Output\\nPM2.5 fc 2 days 12:00 UTC Europe\"]\n 20 -> k07ba8141bad34a61833d3b3e82b53fdb\n 21[label=\"NetCDF xarray Selection\"]\n 16 -> 21 [label=\"output_netcdf\"]\n 12 -> 21 [label=\"output\"]\n 22[label=\"NetCDF xarray Coordinate Info\"]\n 17 -> 22 [label=\"output_netcdf\"]\n 23[label=\"NetCDF xarray Coordinate Info\"]\n 18 -> 23 [label=\"output_netcdf\"]\n 24[label=\"NetCDF xarray Metadata Info\"]\n 18 -> 24 [label=\"output_netcdf\"]\n 25[label=\"Column Regex Find And Replace\"]\n 21 -> 25 [label=\"simpleoutput\"]\n 26[label=\"PM2.5 over Naples 4 days forecast\"]\n 21 -> 26 [label=\"simpleoutput\"]\n k8984beb4e59342f88de50e92631061c7[color=lightseagreen,label=\"Output\\n1D plot PM2.5 over Naples (4 days forecast)\"]\n 26 -> k8984beb4e59342f88de50e92631061c7\n 27[label=\"Extract times from coordinates\"]\n 22 -> 27 [label=\"output_dir\"]\n 28[label=\"Extract time\"]\n 23 -> 28 [label=\"output_dir\"]\n 29[label=\" stripes PM2.5 over Naples 4 days forecast\"]\n 25 -> 29 [label=\"out_file1\"]\n k92cad57678b54e079a076f05ff8f4a56[color=lightseagreen,label=\"Output\\nPM2.5 stripes Naples for 4 days forecast from reference date\"]\n 29 -> k92cad57678b54e079a076f05ff8f4a56\n 30[label=\"NetCDF xarray map plotting\"]\n 27 -> 30 [label=\"output\"]\n 0 -> 30 [label=\"output\"]\n 18 -> 30 [label=\"output_netcdf\"]\n 24 -> 30 [label=\"output\"]\n 31[label=\"NetCDF xarray map plotting\"]\n 28 -> 31 [label=\"output\"]\n 6 -> 31 [label=\"output\"]\n 18 -> 31 [label=\"output_netcdf\"]\n 24 -> 31 [label=\"output\"]\n 32[label=\"NetCDF xarray map plotting\"]\n 28 -> 32 [label=\"output\"]\n 8 -> 32 [label=\"output\"]\n 18 -> 32 [label=\"output_netcdf\"]\n 24 -> 32 [label=\"output\"]\n 33[label=\"NetCDF xarray map plotting\"]\n 28 -> 33 [label=\"output\"]\n 5 -> 33 [label=\"output\"]\n 18 -> 33 [label=\"output_netcdf\"]\n 24 -> 33 [label=\"output\"]\n 34[label=\"NetCDF xarray map plotting\"]\n 28 -> 34 [label=\"output\"]\n 9 -> 34 [label=\"output\"]\n 18 -> 34 [label=\"output_netcdf\"]\n 24 -> 34 [label=\"output\"]\n 35[label=\"NetCDF xarray map plotting\"]\n 28 -> 35 [label=\"output\"]\n 4 -> 35 [label=\"output\"]\n 18 -> 35 [label=\"output_netcdf\"]\n 24 -> 35 [label=\"output\"]\n 36[label=\"NetCDF xarray map plotting\"]\n 28 -> 36 [label=\"output\"]\n 7 -> 36 [label=\"output\"]\n 18 -> 36 [label=\"output_netcdf\"]\n 24 -> 36 [label=\"output\"]\n 37[label=\"NetCDF xarray map plotting\"]\n 28 -> 37 [label=\"output\"]\n 3 -> 37 [label=\"output\"]\n 18 -> 37 [label=\"output_netcdf\"]\n 24 -> 37 [label=\"output\"]\n 38[label=\"NetCDF xarray map plotting\"]\n 28 -> 38 [label=\"output\"]\n 3 -> 38 [label=\"output\"]\n 18 -> 38 [label=\"output_netcdf\"]\n 24 -> 38 [label=\"output\"]\n 39[label=\"NetCDF xarray map plotting\"]\n 28 -> 39 [label=\"output\"]\n 4 -> 39 [label=\"output\"]\n 18 -> 39 [label=\"output_netcdf\"]\n 24 -> 39 [label=\"output\"]\n 40[label=\"NetCDF xarray map plotting\"]\n 28 -> 40 [label=\"output\"]\n 10 -> 40 [label=\"output\"]\n 18 -> 40 [label=\"output_netcdf\"]\n 24 -> 40 [label=\"output\"]\n 41[label=\"NetCDF xarray map plotting\"]\n 28 -> 41 [label=\"output\"]\n 5 -> 41 [label=\"output\"]\n 18 -> 41 [label=\"output_netcdf\"]\n 24 -> 41 [label=\"output\"]\n 42[label=\"NetCDF xarray map plotting\"]\n 28 -> 42 [label=\"output\"]\n 6 -> 42 [label=\"output\"]\n 18 -> 42 [label=\"output_netcdf\"]\n 24 -> 42 [label=\"output\"]\n 43[label=\"NetCDF xarray map plotting\"]\n 28 -> 43 [label=\"output\"]\n 10 -> 43 [label=\"output\"]\n 18 -> 43 [label=\"output_netcdf\"]\n 24 -> 43 [label=\"output\"]\n 44[label=\"NetCDF xarray map plotting\"]\n 28 -> 44 [label=\"output\"]\n 7 -> 44 [label=\"output\"]\n 18 -> 44 [label=\"output_netcdf\"]\n 24 -> 44 [label=\"output\"]\n 45[label=\"NetCDF xarray map plotting\"]\n 28 -> 45 [label=\"output\"]\n 9 -> 45 [label=\"output\"]\n 18 -> 45 [label=\"output_netcdf\"]\n 24 -> 45 [label=\"output\"]\n 46[label=\"NetCDF xarray map plotting\"]\n 28 -> 46 [label=\"output\"]\n 8 -> 46 [label=\"output\"]\n 18 -> 46 [label=\"output_netcdf\"]\n 24 -> 46 [label=\"output\"]\n 47[label=\"Merge collections\"]\n 30 -> 47 [label=\"output_dir\"]\n 32 -> 47 [label=\"output_dir\"]\n 31 -> 47 [label=\"output_dir\"]\n 33 -> 47 [label=\"output_dir\"]\n 34 -> 47 [label=\"output_dir\"]\n 37 -> 47 [label=\"output_dir\"]\n 35 -> 47 [label=\"output_dir\"]\n 36 -> 47 [label=\"output_dir\"]\n 48[label=\"Merge collections\"]\n 43 -> 48 [label=\"output_dir\"]\n 46 -> 48 [label=\"output_dir\"]\n 42 -> 48 [label=\"output_dir\"]\n 41 -> 48 [label=\"output_dir\"]\n 45 -> 48 [label=\"output_dir\"]\n 38 -> 48 [label=\"output_dir\"]\n 39 -> 48 [label=\"output_dir\"]\n 44 -> 48 [label=\"output_dir\"]\n 49[label=\"PM2.5 forecast 10:00 - 17:00 UTC > 30 um/m3\"]\n 47 -> 49 [label=\"output\"]\n k1c16eeb7dfe140de9be73aa2a8568308[color=lightseagreen,label=\"Output\\nPM2.5 (values > 30 um/m3) fc 10:00 - 17:00 UTC over Italy\"]\n 49 -> k1c16eeb7dfe140de9be73aa2a8568308\n 50[label=\"PM2.5 forecast 10:00 - 17:00 UTC \"]\n 48 -> 50 [label=\"output\"]\n k070fe227b5334c77bed04d005b174920[color=lightseagreen,label=\"Output\\nPM2.5 fc 10:00 - 17:00 UTC over Italy\"]\n 50 -> k070fe227b5334c77bed04d005b174920\n}", + "history": [ + { + "hash": "bf3253c1663b8cf975df1bea79c89518fe24f415", + "message": "Add Galaxy workflow for Pangeo tutorial", + "num": 2, + "short_hash": "bf3253c16", + "unix": "1640720788" + }, + { + "hash": "5851fc4684ccf17fdff7bedc5ada8a8b7adab255", + "message": "template for Galaxy Pangeo Tutorial", + "num": 1, + "short_hash": "5851fc468", + "unix": "1640250281" + } + ], + "inputs": [ + { + "annotation": "Which index to plot. Default is the first one e.g. 0", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Which index to plot. Default is the first one e.g. 0", + "name": "plot first time e.g. index=0" + } + ], + "label": "plot first time e.g. index=0", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 806.859375, + "height": 102.5625, + "left": 328.5625, + "right": 528.5625, + "top": 704.296875, + "width": 200, + "x": 328.5625, + "y": 704.296875 + }, + "tool_id": null, + "tool_state": "{\"default\": \"0\", \"suggestions\": [\"0\"], \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "6919cfef-7066-4bcc-b416-23d311895239", + "workflow_outputs": [] + }, + { + "annotation": "netCDF input (4 days forecast) of PM2.5 from Copernicus Atmosphere Monitoring Service\nhttps://ads.atmosphere.copernicus.eu/#!/home\n\nAs an example https://doi.org/10.5281/zenodo.5805953", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "netCDF input (4 days forecast) of PM2.5 from Copernicus Atmosphere Monitoring Service\nhttps://ads.atmosphere.copernicus.eu/#!/home\n\nAs an example https://doi.org/10.5281/zenodo.5805953", + "name": "CAMS-PM2_5-20211222.netcdf" + } + ], + "label": "CAMS-PM2_5-20211222.netcdf", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 1039.46875, + "height": 82.171875, + "left": -237.4375, + "right": -37.4375, + "top": 957.296875, + "width": 200, + "x": -237.4375, + "y": 957.296875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "23224390-493a-491e-a97e-3c12737b066c", + "workflow_outputs": [] + }, + { + "annotation": "Which index to plot. Default is the first one e.g. 60", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Which index to plot. Default is the first one e.g. 60", + "name": "plot forecast time 2 days 12:00 UTC" + } + ], + "label": "plot forecast time 2 days 12:00 UTC", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 1120.859375, + "height": 102.5625, + "left": 328.5625, + "right": 528.5625, + "top": 1018.296875, + "width": 200, + "x": 328.5625, + "y": 1018.296875 + }, + "tool_id": null, + "tool_state": "{\"default\": \"60\", \"suggestions\": [\"60\"], \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "566d7f78-5e2d-4f1c-a86c-7273150215fa", + "workflow_outputs": [] + }, + { + "annotation": "Select time index 5 for plotting", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Select time index 5 for plotting", + "name": "time=5" + } + ], + "label": "time=5", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 627.078125, + "height": 61.78125, + "left": 1222.5625, + "right": 1422.5625, + "top": 565.296875, + "width": 200, + "x": 1222.5625, + "y": 565.296875 + }, + "tool_id": null, + "tool_state": "{\"restrictions\": [\"5\"], \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "a24ee007-4960-4baf-8adf-7eb52332d863", + "workflow_outputs": [] + }, + { + "annotation": "Select time index 6 for plotting", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "Select time index 6 for plotting", + "name": "time=6" + } + ], + "label": "time=6", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 728.078125, + "height": 61.78125, + "left": 1222.5625, + "right": 1422.5625, + "top": 666.296875, + "width": 200, + "x": 1222.5625, + "y": 666.296875 + }, + "tool_id": null, + "tool_state": "{\"restrictions\": [\"6\"], \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "63505be1-6d31-4fc7-b4a9-13fd2020b2a6", + "workflow_outputs": [] + }, + { + "annotation": "Select time index 3 for plotting", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "Select time index 3 for plotting", + "name": "time=3" + } + ], + "label": "time=3", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 829.078125, + "height": 61.78125, + "left": 1222.5625, + "right": 1422.5625, + "top": 767.296875, + "width": 200, + "x": 1222.5625, + "y": 767.296875 + }, + "tool_id": null, + "tool_state": "{\"restrictions\": [\"3\"], \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "809770ff-4420-465e-b861-8ad043ec474f", + "workflow_outputs": [] + }, + { + "annotation": "Select time index 2 for plotting", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "Select time index 2 for plotting", + "name": "time=2" + } + ], + "label": "time=2", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 930.078125, + "height": 61.78125, + "left": 1222.5625, + "right": 1422.5625, + "top": 868.296875, + "width": 200, + "x": 1222.5625, + "y": 868.296875 + }, + "tool_id": null, + "tool_state": "{\"restrictions\": [\"2\"], \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "1534fecd-9660-4ac2-8332-2256def2a529", + "workflow_outputs": [] + }, + { + "annotation": "Select time index 7 for plotting", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "Select time index 7 for plotting", + "name": "time=7" + } + ], + "label": "time=7", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 1500.078125, + "height": 61.78125, + "left": 1222.5625, + "right": 1422.5625, + "top": 1438.296875, + "width": 200, + "x": 1222.5625, + "y": 1438.296875 + }, + "tool_id": null, + "tool_state": "{\"restrictions\": [\"7\"], \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "abf46fe0-1dfd-4953-96e5-e971245ee9ad", + "workflow_outputs": [] + }, + { + "annotation": "Select time index 1 for plotting", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "Select time index 1 for plotting", + "name": "time=1" + } + ], + "label": "time=1", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 1600.078125, + "height": 61.78125, + "left": 1222.5625, + "right": 1422.5625, + "top": 1538.296875, + "width": 200, + "x": 1222.5625, + "y": 1538.296875 + }, + "tool_id": null, + "tool_state": "{\"restrictions\": [\"1\"], \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "128438ed-e0fe-4ac6-89f8-c33ee6eee110", + "workflow_outputs": [] + }, + { + "annotation": "Select time index 4 for plotting", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "Select time index 4 for plotting", + "name": "time=4" + } + ], + "label": "time=4", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 1700.078125, + "height": 61.78125, + "left": 1222.5625, + "right": 1422.5625, + "top": 1638.296875, + "width": 200, + "x": 1222.5625, + "y": 1638.296875 + }, + "tool_id": null, + "tool_state": "{\"restrictions\": [\"4\"], \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "ab171440-bd89-4184-9bd1-95fb9794c97a", + "workflow_outputs": [] + }, + { + "annotation": "Select time index 9 for plotting", + "content_id": null, + "errors": null, + "id": 10, + "input_connections": {}, + "inputs": [ + { + "description": "Select time index 9 for plotting", + "name": "time=0" + } + ], + "label": "time=0", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 1801.078125, + "height": 61.78125, + "left": 1222.5625, + "right": 1422.5625, + "top": 1739.296875, + "width": 200, + "x": 1222.5625, + "y": 1739.296875 + }, + "tool_id": null, + "tool_state": "{\"restrictions\": [\"0\"], \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "38a2dac0-d29a-4217-882d-316e095cd9f3", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nplot first time e.g. index=0\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCAMS-PM2_5-20211222.netcdf\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nplot forecast time 2 days 12:00 UTC\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Parameter\\ntime=5\"];\n style 3 fill:#ded,stroke:#393,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\ntime=6\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Parameter\\ntime=3\"];\n style 5 fill:#ded,stroke:#393,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Parameter\\ntime=2\"];\n style 6 fill:#ded,stroke:#393,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Parameter\\ntime=7\"];\n style 7 fill:#ded,stroke:#393,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Parameter\\ntime=1\"];\n style 8 fill:#ded,stroke:#393,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Parameter\\ntime=4\"];\n style 9 fill:#ded,stroke:#393,stroke-width:4px;\n 10[\"\u2139\ufe0f Input Parameter\\ntime=0\"];\n style 10 fill:#ded,stroke:#393,stroke-width:4px;\n 11[\"NetCDF xarray Coordinate Info\"];\n 1 -->|output| 11;\n 12[\"NetCDF xarray Metadata Info\"];\n 1 -->|output| 12;\n 13[\"extract longitude\"];\n 11 -->|output_dir| 13;\n 14[\"extract latitude\"];\n 11 -->|output_dir| 14;\n 15[\"Extract time from coordinate info\"];\n 11 -->|output_dir| 15;\n 3b4968d7-8984-4e66-87a9-a3ab8fc12ca4[\"Output\\ninput dataset(s) (extracted element)\"];\n 15 --> 3b4968d7-8984-4e66-87a9-a3ab8fc12ca4;\n style 3b4968d7-8984-4e66-87a9-a3ab8fc12ca4 stroke:#2c3143,stroke-width:4px;\n 16[\"NetCDF xarray operations\"];\n 1 -->|output| 16;\n 14 -->|output| 16;\n 13 -->|output| 16;\n 12 -->|output| 16;\n 17[\"NetCDF xarray operations\"];\n 1 -->|output| 17;\n 15 -->|output| 17;\n 12 -->|output| 17;\n 18[\"NetCDF xarray operations\"];\n 1 -->|output| 18;\n 15 -->|output| 18;\n 14 -->|output| 18;\n 13 -->|output| 18;\n 12 -->|output| 18;\n 19[\"PM2.5 CAMS Europe 0 days 00:00 UTC reference time\"];\n 15 -->|output| 19;\n 0 -->|output| 19;\n 1 -->|output| 19;\n 12 -->|output| 19;\n 42483031-21e2-4d88-8898-4a9aa9bb10e5[\"Output\\nPM2.5 reference date Europe\"];\n 19 --> 42483031-21e2-4d88-8898-4a9aa9bb10e5;\n style 42483031-21e2-4d88-8898-4a9aa9bb10e5 stroke:#2c3143,stroke-width:4px;\n 20[\"PM2.5 CAMS forecast 2 days 12:00 UTC\"];\n 15 -->|output| 20;\n 2 -->|output| 20;\n 1 -->|output| 20;\n 12 -->|output| 20;\n 07ba8141-bad3-4a61-833d-3b3e82b53fdb[\"Output\\nPM2.5 fc 2 days 12:00 UTC Europe\"];\n 20 --> 07ba8141-bad3-4a61-833d-3b3e82b53fdb;\n style 07ba8141-bad3-4a61-833d-3b3e82b53fdb stroke:#2c3143,stroke-width:4px;\n 21[\"NetCDF xarray Selection\"];\n 16 -->|output_netcdf| 21;\n 12 -->|output| 21;\n 22[\"NetCDF xarray Coordinate Info\"];\n 17 -->|output_netcdf| 22;\n 23[\"NetCDF xarray Coordinate Info\"];\n 18 -->|output_netcdf| 23;\n 24[\"NetCDF xarray Metadata Info\"];\n 18 -->|output_netcdf| 24;\n 25[\"Column Regex Find And Replace\"];\n 21 -->|simpleoutput| 25;\n 26[\"PM2.5 over Naples 4 days forecast\"];\n 21 -->|simpleoutput| 26;\n 8984beb4-e593-42f8-8de5-0e92631061c7[\"Output\\n1D plot PM2.5 over Naples (4 days forecast)\"];\n 26 --> 8984beb4-e593-42f8-8de5-0e92631061c7;\n style 8984beb4-e593-42f8-8de5-0e92631061c7 stroke:#2c3143,stroke-width:4px;\n 27[\"Extract times from coordinates\"];\n 22 -->|output_dir| 27;\n 28[\"Extract time\"];\n 23 -->|output_dir| 28;\n 29[\" stripes PM2.5 over Naples 4 days forecast\"];\n 25 -->|out_file1| 29;\n 92cad576-78b5-4e07-9a07-6f05ff8f4a56[\"Output\\nPM2.5 stripes Naples for 4 days forecast from reference date\"];\n 29 --> 92cad576-78b5-4e07-9a07-6f05ff8f4a56;\n style 92cad576-78b5-4e07-9a07-6f05ff8f4a56 stroke:#2c3143,stroke-width:4px;\n 30[\"NetCDF xarray map plotting\"];\n 27 -->|output| 30;\n 0 -->|output| 30;\n 18 -->|output_netcdf| 30;\n 24 -->|output| 30;\n 31[\"NetCDF xarray map plotting\"];\n 28 -->|output| 31;\n 6 -->|output| 31;\n 18 -->|output_netcdf| 31;\n 24 -->|output| 31;\n 32[\"NetCDF xarray map plotting\"];\n 28 -->|output| 32;\n 8 -->|output| 32;\n 18 -->|output_netcdf| 32;\n 24 -->|output| 32;\n 33[\"NetCDF xarray map plotting\"];\n 28 -->|output| 33;\n 5 -->|output| 33;\n 18 -->|output_netcdf| 33;\n 24 -->|output| 33;\n 34[\"NetCDF xarray map plotting\"];\n 28 -->|output| 34;\n 9 -->|output| 34;\n 18 -->|output_netcdf| 34;\n 24 -->|output| 34;\n 35[\"NetCDF xarray map plotting\"];\n 28 -->|output| 35;\n 4 -->|output| 35;\n 18 -->|output_netcdf| 35;\n 24 -->|output| 35;\n 36[\"NetCDF xarray map plotting\"];\n 28 -->|output| 36;\n 7 -->|output| 36;\n 18 -->|output_netcdf| 36;\n 24 -->|output| 36;\n 37[\"NetCDF xarray map plotting\"];\n 28 -->|output| 37;\n 3 -->|output| 37;\n 18 -->|output_netcdf| 37;\n 24 -->|output| 37;\n 38[\"NetCDF xarray map plotting\"];\n 28 -->|output| 38;\n 3 -->|output| 38;\n 18 -->|output_netcdf| 38;\n 24 -->|output| 38;\n 39[\"NetCDF xarray map plotting\"];\n 28 -->|output| 39;\n 4 -->|output| 39;\n 18 -->|output_netcdf| 39;\n 24 -->|output| 39;\n 40[\"NetCDF xarray map plotting\"];\n 28 -->|output| 40;\n 10 -->|output| 40;\n 18 -->|output_netcdf| 40;\n 24 -->|output| 40;\n 41[\"NetCDF xarray map plotting\"];\n 28 -->|output| 41;\n 5 -->|output| 41;\n 18 -->|output_netcdf| 41;\n 24 -->|output| 41;\n 42[\"NetCDF xarray map plotting\"];\n 28 -->|output| 42;\n 6 -->|output| 42;\n 18 -->|output_netcdf| 42;\n 24 -->|output| 42;\n 43[\"NetCDF xarray map plotting\"];\n 28 -->|output| 43;\n 10 -->|output| 43;\n 18 -->|output_netcdf| 43;\n 24 -->|output| 43;\n 44[\"NetCDF xarray map plotting\"];\n 28 -->|output| 44;\n 7 -->|output| 44;\n 18 -->|output_netcdf| 44;\n 24 -->|output| 44;\n 45[\"NetCDF xarray map plotting\"];\n 28 -->|output| 45;\n 9 -->|output| 45;\n 18 -->|output_netcdf| 45;\n 24 -->|output| 45;\n 46[\"NetCDF xarray map plotting\"];\n 28 -->|output| 46;\n 8 -->|output| 46;\n 18 -->|output_netcdf| 46;\n 24 -->|output| 46;\n 47[\"Merge collections\"];\n 30 -->|output_dir| 47;\n 32 -->|output_dir| 47;\n 31 -->|output_dir| 47;\n 33 -->|output_dir| 47;\n 34 -->|output_dir| 47;\n 37 -->|output_dir| 47;\n 35 -->|output_dir| 47;\n 36 -->|output_dir| 47;\n 48[\"Merge collections\"];\n 43 -->|output_dir| 48;\n 46 -->|output_dir| 48;\n 42 -->|output_dir| 48;\n 41 -->|output_dir| 48;\n 45 -->|output_dir| 48;\n 38 -->|output_dir| 48;\n 39 -->|output_dir| 48;\n 44 -->|output_dir| 48;\n 49[\"PM2.5 forecast 10:00 - 17:00 UTC > 30 um/m3\"];\n 47 -->|output| 49;\n 1c16eeb7-dfe1-40de-9be7-3aa2a8568308[\"Output\\nPM2.5 (values > 30 um/m3) fc 10:00 - 17:00 UTC over Italy\"];\n 49 --> 1c16eeb7-dfe1-40de-9be7-3aa2a8568308;\n style 1c16eeb7-dfe1-40de-9be7-3aa2a8568308 stroke:#2c3143,stroke-width:4px;\n 50[\"PM2.5 forecast 10:00 - 17:00 UTC \"];\n 48 -->|output| 50;\n 070fe227-b533-4c77-bed0-4d005b174920[\"Output\\nPM2.5 fc 10:00 - 17:00 UTC over Italy\"];\n 50 --> 070fe227-b533-4c77-bed0-4d005b174920;\n style 070fe227-b533-4c77-bed0-4d005b174920 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "GTN 'Pangeo 101 for everyone - Xarray'", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/0.18.2+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray Coordinate Info", + "outputs": [ + { + "name": "output_dir", + "type": "input" + } + ], + "position": { + "bottom": 473.859375, + "height": 113.5625, + "left": 40.5625, + "right": 240.5625, + "top": 360.296875, + "width": 200, + "x": 40.5625, + "y": 360.296875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/0.18.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6015f30a7258", + "name": "xarray_coords_info", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.18.2+galaxy0", + "type": "tool", + "uuid": "a88bbebf-2396-45d8-9012-75a295eca17f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_dir", + "uuid": "a55c361e-9df4-4026-b94d-958f404063b5" + } + ] + }, + { + "annotation": "", + "content_id": "__EXTRACT_DATASET__", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 11, + "output_name": "output_dir" + } + }, + "inputs": [], + "label": "extract longitude", + "name": "Extract dataset", + "outputs": [ + { + "name": "output", + "type": "data" + } + ], + "position": { + "bottom": 312.25, + "height": 133.953125, + "left": 328.5625, + "right": 528.5625, + "top": 178.296875, + "width": 200, + "x": 328.5625, + "y": 178.296875 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + } + }, + "tool_id": "__EXTRACT_DATASET__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"longitude\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "bdd20b99-cb89-4c08-b1c7-512e3d09c55e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbe23d4b-dbe6-44c8-bcd9-2d6177c4eec4" + } + ] + }, + { + "annotation": "", + "content_id": "__EXTRACT_DATASET__", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 11, + "output_name": "output_dir" + } + }, + "inputs": [], + "label": "extract latitude", + "name": "Extract dataset", + "outputs": [ + { + "name": "output", + "type": "data" + } + ], + "position": { + "bottom": 484.25, + "height": 133.953125, + "left": 328.5625, + "right": 528.5625, + "top": 350.296875, + "width": 200, + "x": 328.5625, + "y": 350.296875 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + } + }, + "tool_id": "__EXTRACT_DATASET__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"latitude\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "07b58c0e-f45a-47f8-93d5-95113766d98a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d3501c46-1ac0-4cd8-9fbc-dbaa13fb2b38" + } + ] + }, + { + "annotation": "This step is used to extract time from all the coordinates.", + "content_id": "__EXTRACT_DATASET__", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 11, + "output_name": "output_dir" + } + }, + "inputs": [], + "label": "Extract time from coordinate info", + "name": "Extract dataset", + "outputs": [ + { + "name": "output", + "type": "data" + } + ], + "position": { + "bottom": 979.25, + "height": 133.953125, + "left": 328.5625, + "right": 528.5625, + "top": 845.296875, + "width": 200, + "x": 328.5625, + "y": 845.296875 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + } + }, + "tool_id": "__EXTRACT_DATASET__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"time\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "cea72621-2a3b-4ea2-8b58-28bed9ea5a7d", + "workflow_outputs": [ + { + "label": "input dataset(s) (extracted element)", + "output_name": "output", + "uuid": "3b4968d7-8984-4e66-87a9-a3ab8fc12ca4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_netcdf2netcdf/xarray_netcdf2netcdf/0.18.2+galaxy0", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + }, + "user_choice_0|dim_tab": { + "id": 14, + "output_name": "output" + }, + "user_choice_1|dim_tab": { + "id": 13, + "output_name": "output" + }, + "var_tab": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray operations", + "outputs": [ + { + "name": "output_netcdf", + "type": "netcdf" + } + ], + "position": { + "bottom": 175.59375, + "height": 286.296875, + "left": 666.5625, + "right": 866.5625, + "top": -110.703125, + "width": 200, + "x": 666.5625, + "y": -110.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_netcdf2netcdf/xarray_netcdf2netcdf/0.18.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1a91e551f3a9", + "name": "xarray_netcdf2netcdf", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"scale\": null, \"user_choice\": [{\"__index__\": 0, \"dim\": \"latitude\", \"dim_tab\": {\"__class__\": \"ConnectedValue\"}, \"condi_between\": {\"comparator\": \"sl\", \"__current_case__\": 0, \"t1\": \"290\", \"t2\": \"291\"}}, {\"__index__\": 1, \"dim\": \"longitude\", \"dim_tab\": {\"__class__\": \"ConnectedValue\"}, \"condi_between\": {\"comparator\": \"sl\", \"__current_case__\": 0, \"t1\": \"392\", \"t2\": \"393\"}}], \"var\": \"pm2p5_conc\", \"var_tab\": {\"__class__\": \"ConnectedValue\"}, \"write_all\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.18.2+galaxy0", + "type": "tool", + "uuid": "39c3c4aa-8aa8-4838-9f4f-1e2bbe969cea", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_netcdf", + "uuid": "88559166-0620-48ef-8def-48e43bf5f9e8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_netcdf2netcdf/xarray_netcdf2netcdf/0.18.2+galaxy0", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + }, + "user_choice_0|dim_tab": { + "id": 15, + "output_name": "output" + }, + "var_tab": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray operations", + "outputs": [ + { + "name": "output_netcdf", + "type": "netcdf" + } + ], + "position": { + "bottom": 428.421875, + "height": 215.125, + "left": 666.5625, + "right": 866.5625, + "top": 213.296875, + "width": 200, + "x": 666.5625, + "y": 213.296875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_netcdf2netcdf/xarray_netcdf2netcdf/0.18.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1a91e551f3a9", + "name": "xarray_netcdf2netcdf", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"scale\": null, \"user_choice\": [{\"__index__\": 0, \"dim\": \"time\", \"dim_tab\": {\"__class__\": \"ConnectedValue\"}, \"condi_between\": {\"comparator\": \"sl\", \"__current_case__\": 0, \"t1\": \"0\", \"t2\": \"24\"}}], \"var\": \"pm2p5_conc\", \"var_tab\": {\"__class__\": \"ConnectedValue\"}, \"write_all\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.18.2+galaxy0", + "type": "tool", + "uuid": "161a7b32-a63a-4ff1-991d-4cad44e317f1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_netcdf", + "uuid": "5f3567ca-c0ff-40c6-a1b7-5af79f34e9ee" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_netcdf2netcdf/xarray_netcdf2netcdf/0.18.2+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + }, + "user_choice_0|dim_tab": { + "id": 15, + "output_name": "output" + }, + "user_choice_1|dim_tab": { + "id": 14, + "output_name": "output" + }, + "user_choice_2|dim_tab": { + "id": 13, + "output_name": "output" + }, + "var_tab": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray operations", + "outputs": [ + { + "name": "output_netcdf", + "type": "netcdf" + } + ], + "position": { + "bottom": 824.765625, + "height": 357.46875, + "left": 666.5625, + "right": 866.5625, + "top": 467.296875, + "width": 200, + "x": 666.5625, + "y": 467.296875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_netcdf2netcdf/xarray_netcdf2netcdf/0.18.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1a91e551f3a9", + "name": "xarray_netcdf2netcdf", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"scale\": null, \"user_choice\": [{\"__index__\": 0, \"dim\": \"time\", \"dim_tab\": {\"__class__\": \"ConnectedValue\"}, \"condi_between\": {\"comparator\": \"sl\", \"__current_case__\": 0, \"t1\": \"10\", \"t2\": \"18\"}}, {\"__index__\": 1, \"dim\": \"latitude\", \"dim_tab\": {\"__class__\": \"ConnectedValue\"}, \"condi_between\": {\"comparator\": \"sl\", \"__current_case__\": 0, \"t1\": \"269\", \"t2\": \"299\"}}, {\"__index__\": 2, \"dim\": \"longitude\", \"dim_tab\": {\"__class__\": \"ConnectedValue\"}, \"condi_between\": {\"comparator\": \"sl\", \"__current_case__\": 0, \"t1\": \"360\", \"t2\": \"400\"}}], \"var\": \"pm2p5_conc\", \"var_tab\": {\"__class__\": \"ConnectedValue\"}, \"write_all\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.18.2+galaxy0", + "type": "tool", + "uuid": "e6436aee-bdfd-410b-8b2a-125586e2e8a8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_netcdf", + "uuid": "63946d3c-506d-4f50-a6ee-13e8c70c9ab8" + } + ] + }, + { + "annotation": "Map of PM2.5 for the reference date and time.", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.18.2+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "condi_datetime|time_tab": { + "id": 15, + "output_name": "output" + }, + "condi_datetime|time_values": { + "id": 0, + "output_name": "output" + }, + "input": { + "id": 1, + "output_name": "output" + }, + "var_tab": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "condi_datetime" + }, + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "input" + }, + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "var_tab" + } + ], + "label": "PM2.5 CAMS Europe 0 days 00:00 UTC (reference time)", + "name": "NetCDF xarray map plotting", + "outputs": [ + { + "name": "output_dir", + "type": "input" + }, + { + "name": "version", + "type": "tabular" + } + ], + "position": { + "bottom": 1138.203125, + "height": 275.90625, + "left": 666.5625, + "right": 866.5625, + "top": 862.296875, + "width": 200, + "x": 666.5625, + "y": 862.296875 + }, + "post_job_actions": { + "HideDatasetActionversion": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "version" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.18.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d7479b6dfbe8", + "name": "xarray_mapplot", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"borders\": \"0.2\", \"cmap\": \"cm.roma_r\", \"coastline\": \"0.5\", \"colorbar_label\": \"\", \"condi_datetime\": {\"datetime\": \"yes\", \"__current_case__\": 1, \"time_tab\": {\"__class__\": \"RuntimeValue\"}, \"time_values\": {\"__class__\": \"ConnectedValue\"}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"land\": null, \"lat_dim\": \"latitude\", \"lon_dim\": \"longitude\", \"ocean\": null, \"proj\": \"\", \"range\": \"0,35\", \"shift\": \"Yes\", \"threshold\": null, \"title\": \"\", \"var\": \"pm2p5_conc\", \"var_tab\": {\"__class__\": \"RuntimeValue\"}, \"xlim\": \"\", \"ylim\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.18.2+galaxy0", + "type": "tool", + "uuid": "3d814592-5964-4827-b1db-4b8d8e89af05", + "workflow_outputs": [ + { + "label": "PM2.5 reference date Europe", + "output_name": "output_dir", + "uuid": "42483031-21e2-4d88-8898-4a9aa9bb10e5" + } + ] + }, + { + "annotation": "one map plot for the entire region (here Europe) and for day 2 12:00 UTC.", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.18.2+galaxy0", + "errors": null, + "id": 20, + "input_connections": { + "condi_datetime|time_tab": { + "id": 15, + "output_name": "output" + }, + "condi_datetime|time_values": { + "id": 2, + "output_name": "output" + }, + "input": { + "id": 1, + "output_name": "output" + }, + "var_tab": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "condi_datetime" + }, + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "input" + }, + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "var_tab" + } + ], + "label": "PM2.5 CAMS forecast 2 days 12:00 UTC", + "name": "NetCDF xarray map plotting", + "outputs": [ + { + "name": "output_dir", + "type": "input" + }, + { + "name": "version", + "type": "tabular" + } + ], + "position": { + "bottom": 1390.8125, + "height": 255.515625, + "left": 666.5625, + "right": 866.5625, + "top": 1135.296875, + "width": 200, + "x": 666.5625, + "y": 1135.296875 + }, + "post_job_actions": { + "HideDatasetActionversion": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "version" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.18.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d7479b6dfbe8", + "name": "xarray_mapplot", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"borders\": \"0.2\", \"cmap\": \"cm.roma_r\", \"coastline\": \"0.5\", \"colorbar_label\": \"\", \"condi_datetime\": {\"datetime\": \"yes\", \"__current_case__\": 1, \"time_tab\": {\"__class__\": \"RuntimeValue\"}, \"time_values\": {\"__class__\": \"ConnectedValue\"}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"land\": null, \"lat_dim\": \"latitude\", \"lon_dim\": \"longitude\", \"ocean\": null, \"proj\": \"\", \"range\": \"0,35\", \"shift\": \"Yes\", \"threshold\": null, \"title\": \"\", \"var\": \"pm2p5_conc\", \"var_tab\": {\"__class__\": \"RuntimeValue\"}, \"xlim\": \"\", \"ylim\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.18.2+galaxy0", + "type": "tool", + "uuid": "8d8440dd-6bcd-499a-bff7-f76426c841ef", + "workflow_outputs": [ + { + "label": "PM2.5 fc 2 days 12:00 UTC Europe", + "output_name": "output_dir", + "uuid": "07ba8141-bad3-4a61-833d-3b3e82b53fdb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 26, + "input_connections": { + "input1": { + "id": 21, + "output_name": "simpleoutput" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scatterplot with ggplot2", + "name": "input1" + } + ], + "label": "PM2.5 over Naples (4 days forecast)", + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "bottom": -198.359375, + "height": 154.34375, + "left": 1222.5625, + "right": 1422.5625, + "top": -352.703125, + "width": 200, + "x": 1222.5625, + "y": -352.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "e3a675da7fd0", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"type\": \"lines\", \"points\": {\"pointoptions\": \"defined\", \"__current_case__\": 1, \"size\": \"1.0\", \"alpha\": \"0.7\", \"pointcolor\": \"black\"}, \"factor\": {\"factoring\": \"Default\", \"__current_case__\": 0}, \"axis_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"axis_text_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"plot_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"gridlinecust\": \"default\", \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"legend\": \"yes\"}, \"input1\": {\"__class__\": \"RuntimeValue\"}, \"out\": {\"unit_output_dim\": \"in\", \"width_output_dim\": \"7.0\", \"height_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"additional_output_format\": \"none\"}, \"title\": \"\", \"xlab\": \"Forecast time (hour) from December, 22 2021\", \"xplot\": \"1\", \"ylab\": \"Particule Matter < 2.5 um-3\", \"yplot\": \"6\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "27171f25-90d7-405c-af69-82625303a2a2", + "workflow_outputs": [ + { + "label": "1D plot PM2.5 over Naples (4 days forecast)", + "output_name": "output1", + "uuid": "8984beb4-e593-42f8-8de5-0e92631061c7" + } + ] + }, + { + "annotation": "", + "content_id": "__EXTRACT_DATASET__", + "errors": null, + "id": 27, + "input_connections": { + "input": { + "id": 22, + "output_name": "output_dir" + } + }, + "inputs": [], + "label": "Extract times from coordinates", + "name": "Extract dataset", + "outputs": [ + { + "name": "output", + "type": "data" + } + ], + "position": { + "bottom": 388.25, + "height": 133.953125, + "left": 1222.5625, + "right": 1422.5625, + "top": 254.296875, + "width": 200, + "x": 1222.5625, + "y": 254.296875 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + } + }, + "tool_id": "__EXTRACT_DATASET__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"time\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "b73f7317-d86c-4b42-ad39-e6febe9fa3dd", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "06d825b7-4242-42c7-98ce-85a13f775d5e" + } + ] + }, + { + "annotation": "", + "content_id": "__EXTRACT_DATASET__", + "errors": null, + "id": 28, + "input_connections": { + "input": { + "id": 23, + "output_name": "output_dir" + } + }, + "inputs": [], + "label": "Extract time", + "name": "Extract dataset", + "outputs": [ + { + "name": "output", + "type": "data" + } + ], + "position": { + "bottom": 1304.859375, + "height": 113.5625, + "left": 1222.5625, + "right": 1422.5625, + "top": 1191.296875, + "width": 200, + "x": 1222.5625, + "y": 1191.296875 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + } + }, + "tool_id": "__EXTRACT_DATASET__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_identifier\", \"__current_case__\": 1, \"identifier\": \"time\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "85cd5774-4b6c-4194-ab50-67d89333fb71", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a0efce76-3fcd-4f14-bf46-82a6f2ee85dc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/climate/climate_stripes/climate_stripes/1.0.1", + "errors": null, + "id": 29, + "input_connections": { + "ifilename": { + "id": 25, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool climate stripes", + "name": "ifilename" + } + ], + "label": " stripes PM2.5 over Naples (4 days forecast)", + "name": "climate stripes", + "outputs": [ + { + "name": "ofilename", + "type": "png" + } + ], + "position": { + "bottom": -1072.96875, + "height": 174.734375, + "left": 1680.5625, + "right": 1880.5625, + "top": -1247.703125, + "width": 200, + "x": 1680.5625, + "y": -1247.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/climate/climate_stripes/climate_stripes/1.0.1", + "tool_shed_repository": { + "changeset_revision": "c6f2435d680b", + "name": "climate_stripes", + "owner": "climate", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"xname\": \"time\", \"format_date\": \"%Y%m%d %H:%M:%S.%f\", \"format_plot\": \"%d %b %H hours\", \"colormap\": \"winter\"}, \"ifilename\": {\"__class__\": \"RuntimeValue\"}, \"title\": \"PM2.5 4 days forecast from December 22 2021 over Naples\", \"variable\": \"pm2p5_conc\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "d5da8203-3dab-447b-a8db-1eab85cb8174", + "workflow_outputs": [ + { + "label": "PM2.5 stripes Naples for 4 days forecast from reference date", + "output_name": "ofilename", + "uuid": "92cad576-78b5-4e07-9a07-6f05ff8f4a56" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.18.2+galaxy0", + "errors": null, + "id": 40, + "input_connections": { + "condi_datetime|time_tab": { + "id": 28, + "output_name": "output" + }, + "condi_datetime|time_values": { + "id": 10, + "output_name": "output" + }, + "input": { + "id": 18, + "output_name": "output_netcdf" + }, + "var_tab": { + "id": 24, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray map plotting", + "outputs": [ + { + "name": "output_dir", + "type": "input" + }, + { + "name": "version", + "type": "tabular" + } + ], + "position": { + "bottom": 1869.421875, + "height": 235.125, + "left": 1680.5625, + "right": 1880.5625, + "top": 1634.296875, + "width": 200, + "x": 1680.5625, + "y": 1634.296875 + }, + "post_job_actions": { + "HideDatasetActionversion": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "version" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.18.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d7479b6dfbe8", + "name": "xarray_mapplot", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"borders\": \"0.2\", \"cmap\": \"cm.roma_r\", \"coastline\": \"0.5\", \"colorbar_label\": \"\", \"condi_datetime\": {\"datetime\": \"yes\", \"__current_case__\": 1, \"time_tab\": {\"__class__\": \"ConnectedValue\"}, \"time_values\": {\"__class__\": \"ConnectedValue\"}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"land\": null, \"lat_dim\": \"latitude\", \"lon_dim\": \"longitude\", \"ocean\": null, \"proj\": \"\", \"range\": \"0,35\", \"shift\": \"\", \"threshold\": \"30.0\", \"title\": \"\", \"var\": \"pm2p5_conc\", \"var_tab\": {\"__class__\": \"ConnectedValue\"}, \"xlim\": \"\", \"ylim\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.18.2+galaxy0", + "type": "tool", + "uuid": "16cfabc8-5374-4bb1-9f72-06a0aa832cc9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_dir", + "uuid": "e4e0322c-9e22-4cbf-8880-b0b0e4f67a9e" + } + ] + }, + { + "annotation": "We have 8 plots, one for each forecast time for the first forecast day betwwen 100:00 and 17:00 UTC and we applied a mask e.g. only plot values great than 30 um/m3.", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_montage/graphicsmagick_image_montage/1.3.31+galaxy1", + "errors": null, + "id": 49, + "input_connections": { + "input": { + "id": 47, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Image Montage", + "name": "input" + } + ], + "label": "PM2.5 forecast 10:00 - 17:00 UTC > 30 um/m3", + "name": "Image Montage", + "outputs": [ + { + "name": "output", + "type": "png" + } + ], + "position": { + "bottom": 224.03125, + "height": 174.734375, + "left": 2266.5625, + "right": 2466.5625, + "top": 49.296875, + "width": 200, + "x": 2266.5625, + "y": 49.296875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_montage/graphicsmagick_image_montage/1.3.31+galaxy1", + "tool_shed_repository": { + "changeset_revision": "39881709807e", + "name": "graphicsmagick_image_montage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"width\": \"4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.31+galaxy1", + "type": "tool", + "uuid": "8264424f-2479-4eb2-8df1-b7fde84113d7", + "workflow_outputs": [ + { + "label": "PM2.5 (values > 30 um/m3) fc 10:00 - 17:00 UTC over Italy", + "output_name": "output", + "uuid": "1c16eeb7-dfe1-40de-9be7-3aa2a8568308" + } + ] + }, + { + "annotation": "We have 8 plots, one for each forecast time. We take the forecast on day 1 between 10:00 and 17:00 UTC", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_montage/graphicsmagick_image_montage/1.3.31+galaxy1", + "errors": null, + "id": 50, + "input_connections": { + "input": { + "id": 48, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Image Montage", + "name": "input" + } + ], + "label": "PM2.5 forecast 10:00 - 17:00 UTC ", + "name": "Image Montage", + "outputs": [ + { + "name": "output", + "type": "png" + } + ], + "position": { + "bottom": 2426.25, + "height": 133.953125, + "left": 2266.5625, + "right": 2466.5625, + "top": 2292.296875, + "width": 200, + "x": 2266.5625, + "y": 2292.296875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_montage/graphicsmagick_image_montage/1.3.31+galaxy1", + "tool_shed_repository": { + "changeset_revision": "39881709807e", + "name": "graphicsmagick_image_montage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"width\": \"4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.31+galaxy1", + "type": "tool", + "uuid": "84cbf552-1abd-4b4b-a022-92a5f3b15ff0", + "workflow_outputs": [ + { + "label": "PM2.5 fc 10:00 - 17:00 UTC over Italy", + "output_name": "output", + "uuid": "070fe227-b533-4c77-bed0-4d005b174920" + } + ] + } + ], + "parent_id": "climate/pangeo", + "path": "topics/climate/tutorials/pangeo/workflows/main_workflow.ga", + "tags": [ + "pangeo", + "climate", + "copernicus", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "GTN 'Pangeo 101 for everyone - Xarray'", + "topic_id": "climate", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-pangeo/versions/main-workflow", + "tutorial_id": "pangeo", + "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/pangeo/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/pangeo/workflows/main_workflow.html", + "version": 1, + "wfid": "climate-pangeo", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "__EXTRACT_DATASET__", + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_montage/graphicsmagick_image_montage/1.3.31+galaxy1", + "toolshed.g2.bx.psu.edu/repos/climate/climate_stripes/climate_stripes/1.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/0.18.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.18.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_netcdf2netcdf/xarray_netcdf2netcdf/0.18.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_select/xarray_select/0.15.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2" + ], + "workflowhub_id": "1195" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.5805953" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "f46f0e4f75c4", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ctsm_fates", + "owner": "climate", + "revisions": "b525b88bc941", + "tool_panel_section_label": "Climate Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_metadata_info", + "owner": "ecology", + "revisions": "e8650cdf092f", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_select", + "owner": "ecology", + "revisions": "6baac361495b", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_point", + "owner": "iuc", + "revisions": "e3a675da7fd0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: f46f0e4f75c4\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ctsm_fates\n owner: climate\n revisions: b525b88bc941\n tool_panel_section_label: Climate Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_metadata_info\n owner: ecology\n revisions: e8650cdf092f\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_select\n owner: ecology\n revisions: 6baac361495b\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_point\n owner: iuc\n revisions: e3a675da7fd0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/fates/tutorial.json", + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + }, + { + "id": "huitang-earth", + "joined": "2021-01", + "name": "Hui Tang", + "orcid": "0000-0002-8745-3859", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/huitang-earth/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/huitang-earth.json" + } + ], + "dir": "topics/climate/tutorials/fates", + "edam_operation": [ + "Visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/fates", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "CLM-FATES is a numerical terrestrial ecosystem model used in climate models", + "Panoply is a quick visualization tools for plotting your results", + "Multi-case simulations can be easily developed and shared with a Galaxy workflow" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Setting up a CLM-FATES case.", + "Customizing your run.", + "Interactive visualization with Panoply.", + "Automating your analyzes and visualisations of your CLM-FATES case.", + "Creating multi-case scenarios.", + "Composing, executing and publishing CML-FATES workflow." + ], + "pageviews": 5728870, + "pub_date": "2020-10-25", + "questions": [ + "How to run CLM-FATES with the CLM-FATES Galaxy tool?", + "How to upload input data for running CLM-FATES?", + "How to customize your runs?", + "How to analyze your model outputs?", + "How to create a workflow?", + "How to share your workflow?" + ], + "recordings": [ + { + "captioners": [ + "s3by01" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H20M", + "speakers": [ + "annefou" + ], + "youtube_id": "0LsEx11eLiI" + } + ], + "requirements": [ + { + "topic_name": "climate", + "tutorials": [ + "panoply" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "short_id": "T00042", + "short_tools": [ + "ctsm_fates", + "xarray_select", + "tp_find_and_replace", + "ggplot2_point", + "interactive_tool_panoply", + "xarray_metadata_info", + "__EXTRACT_DATASET__" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "annefou" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "7M", + "speakers": [ + "awspolly" + ], + "youtube_id": "Z57C7MQG95s" + } + ], + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "4H", + "title": "Functionally Assembled Terrestrial Ecosystem Simulator (FATES)", + "tools": [ + "__EXTRACT_DATASET__", + "interactive_tool_panoply", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.3", + "toolshed.g2.bx.psu.edu/repos/climate/ctsm_fates/ctsm_fates/2.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_select/xarray_select/0.15.1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "fates", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/fates/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/fates/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/fates/tutorial.json" + }, + "version": 17, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 275, + "visitors": 2064955, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1784-2920", + "name": "Anne Fouilloux" + } + ], + "description": "Functionally Assembled Terrestrial Ecosystem Simulator (FATES)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset for CLM-FATES\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCLM-FATES restart file\"]\n 2[label=\"CTSM/FATES-EMERALD\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Extract Dataset\"]\n 2 -> 3 [label=\"history_files\"]\n kdebf2e31dbea46d58644586c9731cdbe[color=lightseagreen,label=\"Output\\ninput dataset(s) (extracted element)\"]\n 3 -> kdebf2e31dbea46d58644586c9731cdbe\n 4[label=\"NetCDF xarray Metadata Info\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"NetCDF xarray Selection\"]\n 3 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"Replace\"]\n 5 -> 6 [label=\"simpleoutput\"]\n 7[label=\"Scatterplot with ggplot2\"]\n 6 -> 7 [label=\"outfile\"]\n}", + "history": [ + { + "hash": "ad6ca44b0dc2aadac1598e2d9d5e3bb5e94429aa", + "message": "fix wf", + "num": 3, + "short_hash": "ad6ca44b0", + "unix": "1633952401" + }, + { + "hash": "3693396f61a109643d15e9bc1b9e21a8def0562d", + "message": "add license, creator information", + "num": 2, + "short_hash": "3693396f6", + "unix": "1633427069" + }, + { + "hash": "969fae434066d9571160c4510b8995e99defd640", + "message": "Add climate workflows from @annefou", + "num": 1, + "short_hash": "969fae434", + "unix": "1633426896" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input dataset for CLM-FATES" + } + ], + "label": "Input dataset for CLM-FATES", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 389.09725189208984, + "height": 81.31945037841797, + "left": 340.0173645019531, + "right": 540.0173797607422, + "top": 307.7778015136719, + "width": 200.00001525878906, + "x": 340.0173645019531, + "y": 307.7778015136719 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "13b908b0-6a00-437b-bc4d-6c34f6f2d390", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "424dce0e-f3f0-4095-8513-9268be9c705d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "CLM-FATES restart file" + } + ], + "label": "CLM-FATES restart file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 732.5695114135742, + "height": 81.31945037841797, + "left": 317.3958435058594, + "right": 517.3958587646484, + "top": 651.2500610351562, + "width": 200.00001525878906, + "x": 317.3958435058594, + "y": 651.2500610351562 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "19770ee9-8f78-4030-a8b8-1a44dd25ed43", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1cecc2ed-8a94-448a-90f7-e67f8e8cf117" + } + ] + } + ], + "license": "Apache-2.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset for CLM-FATES\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCLM-FATES restart file\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"CTSM/FATES-EMERALD\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Extract Dataset\"];\n 2 -->|history_files| 3;\n debf2e31-dbea-46d5-8644-586c9731cdbe[\"Output\\ninput dataset(s) (extracted element)\"];\n 3 --> debf2e31-dbea-46d5-8644-586c9731cdbe;\n style debf2e31-dbea-46d5-8644-586c9731cdbe stroke:#2c3143,stroke-width:4px;\n 4[\"NetCDF xarray Metadata Info\"];\n 3 -->|output| 4;\n 5[\"NetCDF xarray Selection\"];\n 3 -->|output| 5;\n 4 -->|output| 5;\n 6[\"Replace\"];\n 5 -->|simpleoutput| 6;\n 7[\"Scatterplot with ggplot2\"];\n 6 -->|outfile| 7;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "CLM-FATES_ ALP1 simulation (5 years)", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input dataset for CLM-FATES" + } + ], + "label": "Input dataset for CLM-FATES", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 389.09725189208984, + "height": 81.31945037841797, + "left": 340.0173645019531, + "right": 540.0173797607422, + "top": 307.7778015136719, + "width": 200.00001525878906, + "x": 340.0173645019531, + "y": 307.7778015136719 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "13b908b0-6a00-437b-bc4d-6c34f6f2d390", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "424dce0e-f3f0-4095-8513-9268be9c705d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "CLM-FATES restart file" + } + ], + "label": "CLM-FATES restart file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 732.5695114135742, + "height": 81.31945037841797, + "left": 317.3958435058594, + "right": 517.3958587646484, + "top": 651.2500610351562, + "width": 200.00001525878906, + "x": 317.3958435058594, + "y": 651.2500610351562 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "19770ee9-8f78-4030-a8b8-1a44dd25ed43", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1cecc2ed-8a94-448a-90f7-e67f8e8cf117" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/climate/ctsm_fates/ctsm_fates/2.0.1", + "errors": null, + "id": 2, + "input_connections": { + "adv_period|condi_type_run|restart": { + "id": 1, + "output_name": "output" + }, + "inputdata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "CTSM/FATES-EMERALD", + "outputs": [ + { + "name": "history_files", + "type": "input" + }, + { + "name": "atm_log", + "type": "txt" + }, + { + "name": "cesm_log", + "type": "txt" + }, + { + "name": "cpl_log", + "type": "txt" + }, + { + "name": "lnd_log", + "type": "txt" + }, + { + "name": "rof_log", + "type": "txt" + }, + { + "name": "restart", + "type": "tar" + }, + { + "name": "case_info", + "type": "txt" + }, + { + "name": "rinfo", + "type": "txt" + }, + { + "name": "work", + "type": "tar" + } + ], + "position": { + "bottom": 879.3056030273438, + "height": 452.4305725097656, + "left": 599.1319580078125, + "right": 799.1319732666016, + "top": 426.8750305175781, + "width": 200.00001525878906, + "x": 599.1319580078125, + "y": 426.8750305175781 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/climate/ctsm_fates/ctsm_fates/2.0.1", + "tool_shed_repository": { + "changeset_revision": "b525b88bc941", + "name": "ctsm_fates", + "owner": "climate", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tar\", \"adv\": {\"co2\": \"367.0\", \"condi_user_mods\": {\"add_changes\": \"no\", \"__current_case__\": 1}}, \"adv_clm\": {\"use_fates_planthydro\": \"false\", \"use_fates_cohort_age_tracking\": \"false\", \"use_fates_ed_st3\": \"false\", \"use_fates_ed_prescribed_phys\": \"false\", \"use_fates_logging\": \"false\", \"use_fates_fixed_biogeog\": \"false\", \"fates_spitfire_mode\": \"0\", \"fates_parteh_mode\": \"\"}, \"adv_period\": {\"condi_type_run\": {\"run_type\": \"hybrid\", \"__current_case__\": 2, \"run_refcase\": \"ALP1_refcase\", \"run_refdate\": \"2300-01-01\", \"run_startdate\": \"0001-01-01\", \"restart\": {\"__class__\": \"ConnectedValue\"}}, \"stopn\": \"5\", \"stop_option\": \"nyears\"}, \"casename\": \"ALP1_exp\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"inputdata\": {\"__class__\": \"ConnectedValue\"}, \"resolution\": \"1x1_ALP1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.1", + "type": "tool", + "uuid": "91a8cda0-72a6-46cf-babe-a4c0b11731f0", + "workflow_outputs": [ + { + "label": null, + "output_name": "rinfo", + "uuid": "5a152c6b-5574-46be-a0fc-be24471f83f7" + }, + { + "label": null, + "output_name": "work", + "uuid": "a00239c9-9d0e-46d3-970e-d2e699eb6e4f" + }, + { + "label": null, + "output_name": "rof_log", + "uuid": "230f4572-a4bb-46d4-aff5-25a592b375c3" + }, + { + "label": null, + "output_name": "cpl_log", + "uuid": "3d6ef14c-9ee1-4fa5-be75-91985a8bc365" + }, + { + "label": null, + "output_name": "cesm_log", + "uuid": "9c0f5924-4042-4c76-8c38-b4ae523b67a1" + }, + { + "label": null, + "output_name": "atm_log", + "uuid": "c8dd2197-1288-4a90-be18-9dd32a926ad5" + }, + { + "label": null, + "output_name": "restart", + "uuid": "5c5a27f6-42a3-4b50-b954-54ba8e9e0c67" + }, + { + "label": null, + "output_name": "lnd_log", + "uuid": "5290961c-4660-42c2-88d1-ccd8e2f78412" + }, + { + "label": null, + "output_name": "case_info", + "uuid": "9dd13369-b025-4095-9842-9030623fc941" + }, + { + "label": null, + "output_name": "history_files", + "uuid": "8993eb0a-6e44-4cce-b8a1-f950b96cb8a8" + } + ] + }, + { + "annotation": "", + "content_id": "__EXTRACT_DATASET__", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "history_files" + } + }, + "inputs": [], + "label": null, + "name": "Extract Dataset", + "outputs": [ + { + "name": "output", + "type": "data" + } + ], + "position": { + "bottom": 392.63890075683594, + "height": 132.43055725097656, + "left": 871.8923950195312, + "right": 1071.8924102783203, + "top": 260.2083435058594, + "width": 200.00001525878906, + "x": 871.8923950195312, + "y": 260.2083435058594 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "netcdf" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + } + }, + "tool_id": "__EXTRACT_DATASET__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"first\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "efb5bd53-a220-47fe-b4e0-15dd623737a1", + "workflow_outputs": [ + { + "label": "input dataset(s) (extracted element)", + "output_name": "output", + "uuid": "debf2e31-dbea-46d5-8644-586c9731cdbe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray Metadata Info", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "info", + "type": "txt" + } + ], + "position": { + "bottom": 686.1111602783203, + "height": 142.43055725097656, + "left": 887.951416015625, + "right": 1087.951431274414, + "top": 543.6806030273438, + "width": 200.00001525878906, + "x": 887.951416015625, + "y": 543.6806030273438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "tool_shed_repository": { + "changeset_revision": "7edbe5ae8b72", + "name": "xarray_metadata_info", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"netcdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.15.1", + "type": "tool", + "uuid": "1dce5844-3ad9-42f8-b3f3-021c20b4bff1", + "workflow_outputs": [ + { + "label": null, + "output_name": "info", + "uuid": "ed801226-13db-4c99-8c49-521428e96dd8" + }, + { + "label": null, + "output_name": "output", + "uuid": "10127f47-1ba1-4ecf-bb1c-014b87f098cb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_select/xarray_select/0.15.1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + }, + "var_tab": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray Selection", + "outputs": [ + { + "name": "simpleoutput", + "type": "tabular" + } + ], + "position": { + "bottom": 613.9409942626953, + "height": 142.43055725097656, + "left": 1162.7083740234375, + "right": 1362.7083892822266, + "top": 471.51043701171875, + "width": 200.00001525878906, + "x": 1162.7083740234375, + "y": 471.51043701171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_select/xarray_select/0.15.1", + "tool_shed_repository": { + "changeset_revision": "225d0d275a24", + "name": "xarray_select", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"netcdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"condi_source_coord\": {\"coord_source\": \"coord_from_stdin\", \"__current_case__\": 1, \"condi_coord\": {\"coord\": \"global\", \"__current_case__\": 2}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"time\": {\"condi_datetime\": {\"datetime\": \"no\", \"__current_case__\": 0}}, \"user_choice\": [], \"var\": \"LEAFC\", \"var_tab\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.15.1", + "type": "tool", + "uuid": "34e85d8a-b640-41a6-b9ee-82a73f5fda43", + "workflow_outputs": [ + { + "label": null, + "output_name": "simpleoutput", + "uuid": "1c9a151b-50e8-439e-9586-96af577d9c27" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.3", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 5, + "output_name": "simpleoutput" + } + }, + "inputs": [], + "label": null, + "name": "Replace", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 698.3507232666016, + "height": 92.43055725097656, + "left": 1185.4862060546875, + "right": 1385.4862213134766, + "top": 605.920166015625, + "width": 200.00001525878906, + "x": 1185.4862060546875, + "y": 605.920166015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.3", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"caseinsensitive\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"find_pattern\": \"00:00:00\", \"global\": \"true\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": \"false\", \"replace_pattern\": \"\", \"searchwhere\": {\"searchwhere_select\": \"line\", \"__current_case__\": 0}, \"skip_first_line\": \"true\", \"wholewords\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3", + "type": "tool", + "uuid": "f6ea58b5-a373-4cf4-884a-242dc8cc1928", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "10b70ac6-9a53-45ba-a761-71dd1e987184" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 7, + "input_connections": { + "input1": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "bottom": 815.1215362548828, + "height": 152.43055725097656, + "left": 1339.3751220703125, + "right": 1539.3751373291016, + "top": 662.6909790039062, + "width": 200.00001525878906, + "x": 1339.3751220703125, + "y": 662.6909790039062 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adv\": {\"type\": \"pointslines\", \"points\": {\"pointoptions\": \"default\", \"__current_case__\": 0}, \"factor\": {\"factoring\": \"Default\", \"__current_case__\": 0}, \"axis_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"axis_text_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"plot_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"gridlinecust\": \"default\", \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"legend\": \"yes\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"out\": {\"unit_output_dim\": \"in\", \"width_output_dim\": \"19.0\", \"height_output_dim\": \"5.0\", \"dpi_output_dim\": \"300.0\", \"additional_output_format\": \"none\"}, \"title\": \"Total carbon in live plant leaves\", \"xlab\": \"Time\", \"xplot\": \"1\", \"ylab\": \"LEAFC (kgC ha-1)\", \"yplot\": \"4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "dc2790c9-e3f1-441c-8d95-2406a44bfa3e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "2857a6af-c707-4dea-a188-dd9f2e8146e5" + } + ] + } + ], + "parent_id": "climate/fates", + "path": "topics/climate/tutorials/fates/workflows/CLM-FATES_ALP1_simulation_5years.ga", + "tags": [ + "climate" + ], + "test_results": null, + "tests": false, + "title": "CLM-FATES_ ALP1 simulation (5 years)", + "topic_id": "climate", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-fates/versions/clm-fates-alp1-simulation-5years", + "tutorial_id": "fates", + "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/fates/workflows/CLM-FATES_ALP1_simulation_5years.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/fates/workflows/CLM-FATES_ALP1_simulation_5years.html", + "version": 1, + "wfid": "climate-fates", + "wfname": "clm-fates-alp1-simulation-5years", + "workflow": "CLM-FATES_ALP1_simulation_5years.ga", + "workflow_tools": [ + "__EXTRACT_DATASET__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.3", + "toolshed.g2.bx.psu.edu/repos/climate/ctsm_fates/ctsm_fates/2.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_select/xarray_select/0.15.1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2" + ], + "workflowhub_id": "1185" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4108341" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/sentinel5_data/tutorial.json", + "contributions": { + "authorship": [ + "Marie59" + ], + "funding": [ + "fairease", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "avatar": "/training-material/assets/images/fair_ease_colour.png", + "funder": true, + "funding_id": "101058785", + "funding_statement": "FAIR-EASE is a RIA project funded under HORIZON-INFRA-2021-EOSC-01-04, and it involves a consortium of 25 partners from all over Europe.", + "funding_system": "cordis", + "github": false, + "id": "fairease", + "joined": "2023-10", + "members": [ + "Marie59", + "yvanlebras" + ], + "name": "Fair-Ease", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fairease/", + "url": "https://training.galaxyproject.org/training-material/api/funders/fairease.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/climate/tutorials/sentinel5_data", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/sentinel5_data", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Manage satellite data", + "Visualise netcdf data", + "Study volcano activity" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-01-26", + "objectives": [ + "Learn to use OpenEO in a jupyterlab", + "Learn to handle satellite data", + "Practice on how to visualise netcdf data with Panoply", + "Handle going from one interactive tool to another", + "Learn to visualise gases around a volcano" + ], + "pageviews": 113, + "pub_date": "2024-01-26", + "questions": [ + "How to visualise volcanoes with Sentinel 5 data ?", + "How can we see the evolution of sulfur dioxide and aerosol index through time?", + "How can be used OpenEO ?" + ], + "short_id": "T00396", + "short_tools": [ + "interactive_tool_panoply", + "interactive_tool_copernicus", + "interactive_tool_copernicus_notebook" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "earth-system", + "volcano", + "satellite data" + ], + "time_estimation": "1H", + "title": "Sentinel 5P data visualisation", + "tools": [ + "interactive_tool_copernicus", + "interactive_tool_copernicus_notebook", + "interactive_tool_panoply" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sentinel5_data", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/sentinel5_data/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/sentinel5_data/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/sentinel5_data/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 37, + "visitors": 96, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0008-0622-604X", + "name": "Marie Joss\u00e9", + "url": "https://github.com/Marie59" + } + ], + "description": "From Copernicus Sentinel 5P data to panoply visualization of volcanic activity impact to atmosphere", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Copernicus Data Space Ecosystem\"]\n 1[label=\"Panoply\"]\n 0 -> 1 [label=\"output_collection\"]\n}", + "history": [ + { + "hash": "dc7f440762f8b8c520f88f868a2e4874a473048d", + "message": "Add Sentinel5P tuto", + "num": 1, + "short_hash": "dc7f44076", + "unix": "1706085833" + } + ], + "inputs": [], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"Copernicus Data Space Ecosystem\"];\n 1[\"Panoply\"];\n 0 -->|output_collection| 1;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Sentinel5 volcanic data", + "outputs": [], + "parent_id": "climate/sentinel5_data", + "path": "topics/climate/tutorials/sentinel5_data/workflows/main_workflow.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "Sentinel5 volcanic data", + "topic_id": "climate", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/climate-sentinel5_data/versions/main-workflow", + "tutorial_id": "sentinel5_data", + "url": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/sentinel5_data/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/climate/tutorials/sentinel5_data/workflows/main_workflow.html", + "version": 1, + "wfid": "climate-sentinel5_data", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "interactive_tool_copernicus_notebook", + "interactive_tool_panoply" + ], + "workflowhub_id": "1203" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/introduction/tutorial.json", + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + }, + { + "id": "j34ni", + "joined": "2020-10", + "name": "Jean Iaquinta", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/j34ni/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/j34ni.json" + } + ], + "dir": "topics/climate/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "climate/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-01-12", + "pageviews": 5726880, + "priority": 1, + "pub_date": "2020-10-11", + "redirect_from": [ + "/topics/climate/slides/introduction", + "/short/climate/introduction/slides", + "/short/S00037" + ], + "short_id": "S00037", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to climate data", + "tools": [], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/introduction/slides.json" + }, + "version": 1, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/panoply/tutorial.json", + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + } + ], + "dir": "topics/climate/tutorials/panoply", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/panoply", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Inspect and view netCDF data with Panoply", + "Interact with Galaxy to save your plots" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn to use Panoply in Galaxy to visuallize netCDF geo-referenced data", + "Learn how Panoply plots are exported to Galaxy" + ], + "pageviews": 9433, + "pub_date": "2020-03-05", + "questions": [ + "How to start Panoply interactive environment in Galaxy?", + "How to inspect netCDF data?", + "How to make a plot with Panoply?", + "Where to save your plots in Panoply?", + "How to customize plots in Panoply?", + "How to generate animation in Panoply?" + ], + "short_id": "T00046", + "short_tools": [ + "interactive_tool_panoply" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "1H", + "title": "Visualize Climate data with Panoply netCDF viewer", + "tools": [ + "interactive_tool_panoply" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "panoply", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/panoply/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/panoply/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/panoply/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 51, + "visitors": 5546, + "zenodo_link": "https://doi.org/10.5281/zenodo.3695482" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/fates-jupyterlab/tutorial.json", + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + } + ], + "dir": "topics/climate/tutorials/fates-jupyterlab", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/fates-jupyterlab", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy Climate JupyterLab", + "CLM-FATES", + "Model analysis" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-12-05", + "objectives": [ + "Motivation for using the Galaxy Climate JupyterLab for CLM-FATES.", + "Setting up CLM-FATES case with Galaxy Climate JupyterLab.", + "Running CLM-FATES in Galaxy for single-point locations where in-situ measurements are available.", + "Analyzing CLM-FATES results.", + "Sharing CLM-FATES simulations.", + "Composing, executing and publishing the corresponding Jupyter notebooks." + ], + "pageviews": 851, + "pub_date": "2020-10-25", + "questions": [ + "Why and when using Galaxy Climate JupyterLab for CLM-FATES?", + "How to start Galaxy Climate JupyterLab in Galaxy?", + "How to upload input data for running CLM-FATES?", + "How to create CLM-FATES case in Galaxy Climate JupyterLab?", + "How to customize your run?", + "How to analyze your model outputs?", + "How to save your model results into a Galaxy history?", + "How to share your results?" + ], + "requirements": [ + { + "topic_name": "climate", + "tutorials": [ + "fates" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "jupyterlab" + ], + "type": "internal" + }, + { + "link": "https://swcarpentry.github.io/python-novice-inflammation/", + "title": "Programming with Python", + "type": "external" + }, + { + "link": "http://swcarpentry.github.io/shell-novice/", + "title": "The Unix Shell", + "type": "external" + } + ], + "short_id": "T00043", + "short_tools": [ + "interactive_tool_jupyter_notebook" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "6H", + "title": "Functionally Assembled Terrestrial Ecosystem Simulator (FATES) with Galaxy Climate JupyterLab", + "tools": [ + "interactive_tool_jupyter_notebook" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fates-jupyterlab", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/fates-jupyterlab/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/fates-jupyterlab/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/fates-jupyterlab/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 112, + "visitors": 458, + "zenodo_link": "https://doi.org/10.5281/zenodo.4108341" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/ocean-data-view/tutorial.json", + "contributions": { + "authorship": [ + "Marie59" + ], + "funding": [ + "fairease", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "avatar": "/training-material/assets/images/fair_ease_colour.png", + "funder": true, + "funding_id": "101058785", + "funding_statement": "FAIR-EASE is a RIA project funded under HORIZON-INFRA-2021-EOSC-01-04, and it involves a consortium of 25 partners from all over Europe.", + "funding_system": "cordis", + "github": false, + "id": "fairease", + "joined": "2023-10", + "members": [ + "Marie59", + "yvanlebras" + ], + "name": "Fair-Ease", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fairease/", + "url": "https://training.galaxyproject.org/training-material/api/funders/fairease.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/climate/tutorials/ocean-data-view", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "climate/ocean-data-view", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Manage Argo glider's data and learn to process netcdf data.", + "Build a map of the stations and create profiles curves with ODV", + "Learn to use ODV as Galaxy interactive tool" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-27", + "objectives": [ + "Deal with netcdf files in ODV", + "Visualise ocean variables from Argo glider's data" + ], + "pageviews": 223, + "pub_date": "2023-11-27", + "questions": [ + "How to process Argo's glider data ?", + "How to visualise the glider's stations", + "How to use make salinity temperature profiles for one or more stations ?" + ], + "short_id": "T00375", + "short_tools": [ + "interactive_tool_odv" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "earth-system", + "ocean", + "geographical information system", + "ODV", + "netcdf data", + "maps", + "marine data" + ], + "time_estimation": "1H", + "title": "Ocean Data View (ODV)", + "tools": [ + "interactive_tool_odv" + ], + "topic_name": "climate", + "topic_name_human": "Climate", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ocean-data-view", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/climate/tutorials/ocean-data-view/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/ocean-data-view/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/climate/tutorials/ocean-data-view/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 93, + "visitors": 173 + }, + { + "abbreviations": { + "CoP": "Community of Practice", + "GCB": "Galaxy Community Board", + "GEB": "Galaxy Executive Board", + "GTB": "Galaxy Technical Board", + "SIG": "Special Interest Group", + "WG": "Working Groups" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/community/tutorials/sig_define/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist" + ], + "editing": [ + "shiltemann" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/community/tutorials/sig_define", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "community", + "tutorials": [ + "sig_create" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "community/sig_define", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Special Interest Groups are groups of like-minded Galaxy enthusiasts that enable global collaboration", + "There are many existing Special Interest Groups within Galaxy that welcome new members", + "If you are interacting with the Galaxy community and want to find like-minded individuals, you might want to make a Special Interest Group" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-08", + "objectives": [ + "Define 'Special Interest Group'", + "Explain the purpose of Special Interest Groups", + "Learn how Special Interest Groups interact with the Galaxy governance" + ], + "pageviews": 36, + "priority": 1, + "pub_date": "2024-07-08", + "questions": [ + "What is a Special Interest Group?", + "What is the purpose of a Special Interest Group?", + "How are Special Interest Groups represented in Galaxy?" + ], + "requirements": null, + "short_id": "T00444", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "15m", + "title": "What's a Special Interest Group?", + "tools": [], + "topic_name": "community", + "topic_name_human": "Galaxy Community Building", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sig_define", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/community/tutorials/sig_define/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/community/tutorials/sig_define/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/community/tutorials/sig_define/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 35, + "visitors": 13 + }, + { + "abbreviations": { + "CoP": "Community of Practice", + "GCB": "Galaxy Community Board", + "GEB": "Galaxy Executive Board", + "GTB": "Galaxy Technical Board", + "SIG": "Special Interest Group", + "WG": "Working Groups" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/community/tutorials/sig_create/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist" + ], + "editing": [ + "shiltemann" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/community/tutorials/sig_create", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "community/sig_create", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Special Interest Groups are a commitment to create and sustain.", + "There are centralised resources to help support running a Special Interest Group.", + "SIGs are joyous places for like-minded scientists to interact and share expertise." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-08", + "objectives": [ + "Determine whether you need a Galaxy Special Interest Group", + "Create a Special Interest Group", + "Be aware of resources for expanding your Special Interest Group" + ], + "pageviews": 18, + "priority": 2, + "pub_date": "2024-07-08", + "questions": [ + "Do I need to make a Special Interest Group?", + "What are the requirements for a Special Interest Group?", + "How can I create a Special Interest Group?", + "Where can I go to find Special Interest Group resources?" + ], + "requirements": [ + { + "topic_name": "community", + "tutorials": [ + "sig_define" + ], + "type": "internal" + } + ], + "short_id": "T00443", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "30m", + "title": "Creating a Special Interest Group", + "tools": [], + "topic_name": "community", + "topic_name_human": "Galaxy Community Building", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sig_create", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/community/tutorials/sig_create/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/community/tutorials/sig_create/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/community/tutorials/sig_create/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 112, + "visitors": 15 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "get_pdb", + "owner": "bgruening", + "revisions": "538790c6c21b", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_editconf", + "owner": "chemteam", + "revisions": "bfb65cb551d8", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_editconf", + "owner": "chemteam", + "revisions": "0fac8e2afc13", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_em", + "owner": "chemteam", + "revisions": "55918daa5651", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_em", + "owner": "chemteam", + "revisions": "f5d979cb4b54", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_setup", + "owner": "chemteam", + "revisions": "4da9ee404eab", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_setup", + "owner": "chemteam", + "revisions": "2c349b027a01", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_sim", + "owner": "chemteam", + "revisions": "f197e34c33a9", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_sim", + "owner": "chemteam", + "revisions": "73008ef1f487", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_solvate", + "owner": "chemteam", + "revisions": "27ea4e1a3f95", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_solvate", + "owner": "chemteam", + "revisions": "2c8ed1b52bf7", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: get_pdb\n owner: bgruening\n revisions: 538790c6c21b\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_editconf\n owner: chemteam\n revisions: bfb65cb551d8\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_editconf\n owner: chemteam\n revisions: 0fac8e2afc13\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_em\n owner: chemteam\n revisions: 55918daa5651\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_em\n owner: chemteam\n revisions: f5d979cb4b54\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_setup\n owner: chemteam\n revisions: 4da9ee404eab\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_setup\n owner: chemteam\n revisions: 2c349b027a01\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_sim\n owner: chemteam\n revisions: f197e34c33a9\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_sim\n owner: chemteam\n revisions: 73008ef1f487\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_solvate\n owner: chemteam\n revisions: 27ea4e1a3f95\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_solvate\n owner: chemteam\n revisions: 2c8ed1b52bf7\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/md-simulation-gromacs/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/md-simulation-gromacs", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "analysis-md-simulations", + "htmd-analysis" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "computational-chemistry/md-simulation-gromacs", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Molecular dynamics produces a trajectory describing the atomic motion of a system.", + "Preparation of the system is required; setup, solvation, minimization, equilibration." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn about the GROMACS engine provided via Galaxy.", + "Understand the structure of the molecular dynamics workflow.", + "Prepare a short (1 ns) trajectory for a simulation of a protein." + ], + "pageviews": 43090, + "pub_date": "2019-06-03", + "questions": [ + "How do I use the GROMACS engine in Galaxy?", + "What is the correct procedure for performing a simple molecular dynamics simulation of a protein?" + ], + "short_id": "T00051", + "short_tools": [ + "gmx_editconf", + "gmx_setup", + "tp_grep_tool", + "get_pdb", + "gmx_em", + "gmx_solvate", + "gmx_sim" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Running molecular dynamics simulations using GROMACS", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2020.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_em/gmx_em/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_em/gmx_em/2020.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_setup/gmx_setup/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_setup/gmx_setup/2020.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_solvate/gmx_solvate/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_solvate/gmx_solvate/2020.4+galaxy1" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "md-simulation-gromacs", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/md-simulation-gromacs/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/md-simulation-gromacs/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/md-simulation-gromacs/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 84, + "visitors": 23011, + "workflows": [ + { + "creators": [], + "description": "Running molecular dynamics simulations using GROMACS", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Get PDB file\"]\n 1[label=\"Search in textfiles\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"GROMACS initial setup\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"GROMACS structure configuration\"]\n 2 -> 3 [label=\"output2\"]\n 4[label=\"GROMACS solvation and adding ions\"]\n 2 -> 4 [label=\"output1\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"GROMACS energy minimization\"]\n 4 -> 5 [label=\"output2\"]\n 4 -> 5 [label=\"output1\"]\n 6[label=\"NVT equilibration\"]\n 2 -> 6 [label=\"output3\"]\n 4 -> 6 [label=\"output2\"]\n 5 -> 6 [label=\"output1\"]\n 7[label=\"NPT equilibration\"]\n 2 -> 7 [label=\"output3\"]\n 4 -> 7 [label=\"output2\"]\n 6 -> 7 [label=\"output1\"]\n 6 -> 7 [label=\"output5\"]\n 8[label=\"MD simulation\"]\n 4 -> 8 [label=\"output2\"]\n 7 -> 8 [label=\"output1\"]\n 7 -> 8 [label=\"output5\"]\n k027305f5213b40af8e2bc376d5d2e294[color=lightseagreen,label=\"Output\\nxtc_output\"]\n 8 -> k027305f5213b40af8e2bc376d5d2e294\n ke745fd4cf607421584e4c62587c8c07a[color=lightseagreen,label=\"Output\\ngro_output\"]\n 8 -> ke745fd4cf607421584e4c62587c8c07a\n}", + "history": [ + { + "hash": "3ae7a9ecfb9e282fb6c35c46403dd836332ec0b8", + "message": "gromacs", + "num": 7, + "short_hash": "3ae7a9ecf", + "unix": "1601688226" + }, + { + "hash": "5f5f0c617ea85caedfabf2e880cc61f5c7df0f81", + "message": "Update main_workflow.ga", + "num": 6, + "short_hash": "5f5f0c617", + "unix": "1595841826" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 3, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "84d04eb28db4a8b72f20d5a10a76b6446d1493a2", + "message": "Update gromacs tutorial after changes to tools (#1635)", + "num": 2, + "short_hash": "84d04eb28", + "unix": "1571779875" + }, + { + "hash": "be6fece7faf81d375f35a35d1a115041aae6066b", + "message": "Simonbray compchem (#6)", + "num": 1, + "short_hash": "be6fece7f", + "unix": "1556962666" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"Get PDB file\"];\n 1[\"Search in textfiles\"];\n 0 -->|output| 1;\n 2[\"GROMACS initial setup\"];\n 1 -->|output| 2;\n 3[\"GROMACS structure configuration\"];\n 2 -->|output2| 3;\n 4[\"GROMACS solvation and adding ions\"];\n 2 -->|output1| 4;\n 3 -->|output| 4;\n 5[\"GROMACS energy minimization\"];\n 4 -->|output2| 5;\n 4 -->|output1| 5;\n 6[\"NVT equilibration\"];\n 2 -->|output3| 6;\n 4 -->|output2| 6;\n 5 -->|output1| 6;\n 7[\"NPT equilibration\"];\n 2 -->|output3| 7;\n 4 -->|output2| 7;\n 6 -->|output1| 7;\n 6 -->|output5| 7;\n 8[\"MD simulation\"];\n 4 -->|output2| 8;\n 7 -->|output1| 8;\n 7 -->|output5| 8;\n 027305f5-213b-40af-8e2b-c376d5d2e294[\"Output\\nxtc_output\"];\n 8 --> 027305f5-213b-40af-8e2b-c376d5d2e294;\n style 027305f5-213b-40af-8e2b-c376d5d2e294 stroke:#2c3143,stroke-width:4px;\n e745fd4c-f607-4215-84e4-c62587c8c07a[\"Output\\ngro_output\"];\n 8 --> e745fd4c-f607-4215-84e4-c62587c8c07a;\n style e745fd4c-f607-4215-84e4-c62587c8c07a stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "GROMACS Training Workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Get PDB file", + "outputs": [ + { + "name": "output", + "type": "pdb" + } + ], + "position": { + "left": 200, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "tool_shed_repository": { + "changeset_revision": "538790c6c21b", + "name": "get_pdb", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"pdb_id\": \"\\\"1aki\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "cc9d4f3f-27b3-4a1d-90b4-e48852402f84", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6c877d6c-28d4-4f77-8314-dd0f9ed09474" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "errors": null, + "id": 1, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Search in textfiles", + "name": "infile" + } + ], + "label": null, + "name": "Search in textfiles", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 265.7166748046875, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"lines_before\": \"\\\"0\\\"\", \"regex_type\": \"\\\"-P\\\"\", \"__page__\": null, \"color\": \"\\\"NOCOLOR\\\"\", \"invert\": \"\\\"-v\\\"\", \"case_sensitive\": \"\\\"-i\\\"\", \"__rerun_remap_job_id__\": null, \"url_paste\": \"\\\"HETATM\\\"\", \"lines_after\": \"\\\"0\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "10503b43-6802-4dd2-bc7c-a378d67ad0ea", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6c90bcff-6759-4b2f-b761-9b48374cb527" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2020.2+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 2, + "output_name": "output2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool GROMACS structure configuration", + "name": "input_file" + } + ], + "label": null, + "name": "GROMACS structure configuration", + "outputs": [ + { + "name": "output", + "type": "gro" + } + ], + "position": { + "left": 412.13330078125, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2020.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "bfb65cb551d8", + "name": "gmx_editconf", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"box\": \"{\\\"__current_case__\\\": 0, \\\"config\\\": \\\"true\\\", \\\"dim\\\": \\\"1.0\\\", \\\"type\\\": \\\"cubic\\\"}\", \"__page__\": null, \"capture_log\": \"\\\"false\\\"\", \"input_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"output_format\": \"\\\"gro\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "2020.2+galaxy0", + "type": "tool", + "uuid": "1950b3f5-3998-4c11-b38b-f70ca0edc4be", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "36cb2f15-bdaa-490a-bc46-936964520843" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.2+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "gro_input": { + "id": 7, + "output_name": "output1" + }, + "inps|cpt_in": { + "id": 7, + "output_name": "output5" + }, + "top_input": { + "id": 4, + "output_name": "output2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool GROMACS simulation", + "name": "gro_input" + }, + { + "description": "runtime parameter for tool GROMACS simulation", + "name": "top_input" + }, + { + "description": "runtime parameter for tool GROMACS simulation", + "name": "inps" + }, + { + "description": "runtime parameter for tool GROMACS simulation", + "name": "inps" + }, + { + "description": "runtime parameter for tool GROMACS simulation", + "name": "inps" + } + ], + "label": "MD simulation", + "name": "GROMACS simulation", + "outputs": [ + { + "name": "output1", + "type": "gro" + }, + { + "name": "output4", + "type": "xtc" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 810.1666870117188, + "top": 200 + }, + "post_job_actions": { + "HideDatasetActionoutput1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output1" + }, + "HideDatasetActionoutput4": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output4" + }, + "HideDatasetActionreport": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a97dcfc23b4b", + "name": "gmx_sim", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"capture_log\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null, \"gro_input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"sets\": \"{\\\"ensemble\\\": \\\"nvt\\\", \\\"mdp\\\": {\\\"__current_case__\\\": 1, \\\"constraints\\\": \\\"none\\\", \\\"coulombtype\\\": \\\"PME\\\", \\\"cutoffscheme\\\": \\\"Verlet\\\", \\\"integrator\\\": \\\"md\\\", \\\"md_steps\\\": \\\"500000\\\", \\\"mdpfile\\\": \\\"default\\\", \\\"rcoulomb\\\": \\\"1.0\\\", \\\"rlist\\\": \\\"1.0\\\", \\\"rvdw\\\": \\\"1.0\\\", \\\"step_length\\\": \\\"0.001\\\", \\\"temperature\\\": \\\"300\\\", \\\"write_freq\\\": \\\"0\\\"}}\", \"top_input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"outps\": \"{\\\"cpt_out\\\": \\\"false\\\", \\\"edr_out\\\": \\\"false\\\", \\\"str\\\": \\\"gro\\\", \\\"tpr_out\\\": \\\"false\\\", \\\"traj\\\": \\\"xtc\\\", \\\"xvg_out\\\": \\\"false\\\"}\", \"inps\": \"{\\\"cpt_in\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"itp_in\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"ndx_in\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\"}", + "tool_version": "2020.2+galaxy0", + "type": "tool", + "uuid": "13266213-d546-4b13-9cf4-7c46186b23cd", + "workflow_outputs": [ + { + "label": "xtc_output", + "output_name": "output4", + "uuid": "027305f5-213b-40af-8e2b-c376d5d2e294" + }, + { + "label": "gro_output", + "output_name": "output1", + "uuid": "e745fd4c-f607-4215-84e4-c62587c8c07a" + } + ] + } + ], + "parent_id": "computational-chemistry/md-simulation-gromacs", + "path": "topics/computational-chemistry/tutorials/md-simulation-gromacs/workflows/main_workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": true, + "title": "GROMACS Training Workflow", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-md-simulation-gromacs/versions/main-workflow", + "tutorial_id": "md-simulation-gromacs", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-gromacs/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-gromacs/workflows/main_workflow.html", + "version": 7, + "wfid": "computational-chemistry-md-simulation-gromacs", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_em/gmx_em/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_setup/gmx_setup/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_solvate/gmx_solvate/2020.2+galaxy0" + ], + "workflowhub_id": "1130" + } + ], + "zenodo_link": "https://zenodo.org/record/2598415" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/md-simulation-namd/tutorial.json", + "contributors": [ + { + "id": "chrisbarnettster", + "joined": "2019-05", + "name": "Christopher Barnett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/chrisbarnettster/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/chrisbarnettster.json" + }, + { + "id": "tsenapathi", + "joined": "2019-05", + "name": "Tharindu Senapathi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tsenapathi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tsenapathi.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/md-simulation-namd", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "analysis-md-simulations" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "computational-chemistry/md-simulation-namd", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Several MD engines are available in BRIDGE", + "Workflows are available for common simulations tasks such as equilibration and production dynamics for various ensembles (NVT, NPT)", + "You've run an equilibrium and production MD simulation using NAMD" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn about the NAMD engine provided in BRIDGE" + ], + "pageviews": 6361, + "pub_date": "2019-06-03", + "questions": [ + "How do I use the NAMD engine in Galaxy?", + "What is the correct procedure for performing a simple molecular dynamics simulation of a protein?" + ], + "requirements": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "setting-up-molecular-systems" + ], + "type": "internal" + } + ], + "short_id": "T00052", + "short_tools": [ + "namd_nvt", + "setup", + "namd_npt", + "minimizer" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "3H", + "title": "Running molecular dynamics simulations using NAMD", + "tools": [ + "minimizer", + "namd_npt", + "namd_nvt", + "setup" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "md-simulation-namd", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/md-simulation-namd/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/md-simulation-namd/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/md-simulation-namd/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 72, + "visitors": 3625, + "workflows": [ + { + "creators": [], + "description": "Running molecular dynamics simulations using NAMD", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[label=\"System Setup\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Energy Minimizer\"]\n 2 -> 3 [label=\"setup_crd\"]\n 2 -> 3 [label=\"setup_psf\"]\n 2 -> 3 [label=\"structure_prm\"]\n 4[label=\"NAMD MD Simulator NVT\"]\n 3 -> 4 [label=\"pdbout\"]\n 3 -> 4 [label=\"pmespec\"]\n 3 -> 4 [label=\"xplorpsfout\"]\n 3 -> 4 [label=\"bbrmsd\"]\n 3 -> 4 [label=\"scrmsd\"]\n 3 -> 4 [label=\"subsrmsd\"]\n 2 -> 4 [label=\"structure_prm\"]\n 5[label=\"NAMD MD Simulator NPT\"]\n 3 -> 5 [label=\"pdbout\"]\n 3 -> 5 [label=\"pmespec\"]\n 3 -> 5 [label=\"xplorpsfout\"]\n 4 -> 5 [label=\"coorout\"]\n 4 -> 5 [label=\"velout\"]\n 4 -> 5 [label=\"xscout\"]\n 2 -> 5 [label=\"structure_prm\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "be6fece7faf81d375f35a35d1a115041aae6066b", + "message": "Simonbray compchem (#6)", + "num": 1, + "short_hash": "be6fece7f", + "unix": "1556962666" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "7cel.psf" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"7cel.psf\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ae09b2b3-e735-46e7-be28-eaf11cab2d24", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "7cel.crd" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"7cel.crd\"}", + "tool_version": null, + "type": "data_input", + "uuid": "83bc3872-4bbf-4afd-aaf8-81a03780636a", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"System Setup\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Energy Minimizer\"];\n 2 -->|setup_crd| 3;\n 2 -->|setup_psf| 3;\n 2 -->|structure_prm| 3;\n 4[\"NAMD MD Simulator NVT\"];\n 3 -->|pdbout| 4;\n 3 -->|pmespec| 4;\n 3 -->|xplorpsfout| 4;\n 3 -->|bbrmsd| 4;\n 3 -->|scrmsd| 4;\n 3 -->|subsrmsd| 4;\n 2 -->|structure_prm| 4;\n 5[\"NAMD MD Simulator NPT\"];\n 3 -->|pdbout| 5;\n 3 -->|pmespec| 5;\n 3 -->|xplorpsfout| 5;\n 4 -->|coorout| 5;\n 4 -->|velout| 5;\n 4 -->|xscout| 5;\n 2 -->|structure_prm| 5;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "MD NAMD", + "outputs": [], + "parent_id": "computational-chemistry/md-simulation-namd", + "path": "topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "MD NAMD", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-md-simulation-namd/versions/main-workflow", + "tutorial_id": "md-simulation-namd", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow.html", + "version": 4, + "wfid": "computational-chemistry-md-simulation-namd", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "minimizer", + "namd_npt", + "namd_nvt", + "setup" + ], + "workflowhub_id": "1071" + }, + { + "creators": [], + "description": "Running molecular dynamics simulations using NAMD", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 4[label=\"NAMD MD Simulator NVT\"]\n 0 -> 4 [label=\"output\"]\n 2 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"NAMD MD Simulator NPT\"]\n 0 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"coorout\"]\n 4 -> 5 [label=\"velout\"]\n 4 -> 5 [label=\"xscout\"]\n 3 -> 5 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "be6fece7faf81d375f35a35d1a115041aae6066b", + "message": "Simonbray compchem (#6)", + "num": 1, + "short_hash": "be6fece7f", + "unix": "1556962666" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "step3_pbcsetup.pdb" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"step3_pbcsetup.pdb\"}", + "tool_version": null, + "type": "data_input", + "uuid": "180b4e05-b912-4c3e-8d7b-39027a6c9d65", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "step3_pbcsetup.xplor.ext.psf" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"step3_pbcsetup.xplor.ext.psf\"}", + "tool_version": null, + "type": "data_input", + "uuid": "8829a91f-e5b5-44bd-977d-c4c308453ac6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "checkfft.str" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"name\": \"checkfft.str\"}", + "tool_version": null, + "type": "data_input", + "uuid": "badde4ba-b790-406a-93e5-d622f4be8062", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "step2.1_waterbox.prm" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"name\": \"step2.1_waterbox.prm\"}", + "tool_version": null, + "type": "data_input", + "uuid": "de715d6e-ffac-4e42-9166-6dfeea0c244f", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"NAMD MD Simulator NVT\"];\n 0 -->|output| 4;\n 2 -->|output| 4;\n 1 -->|output| 4;\n 3 -->|output| 4;\n 5[\"NAMD MD Simulator NPT\"];\n 0 -->|output| 5;\n 2 -->|output| 5;\n 1 -->|output| 5;\n 4 -->|coorout| 5;\n 4 -->|velout| 5;\n 4 -->|xscout| 5;\n 3 -->|output| 5;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "NAMD MD From CHARMM GUI", + "outputs": [], + "parent_id": "computational-chemistry/md-simulation-namd", + "path": "topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow_charmmgui.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "NAMD MD From CHARMM GUI", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-md-simulation-namd/versions/main-workflow-charmmgui", + "tutorial_id": "md-simulation-namd", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow_charmmgui.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/md-simulation-namd/workflows/main_workflow_charmmgui.html", + "version": 4, + "wfid": "computational-chemistry-md-simulation-namd", + "wfname": "main-workflow-charmmgui", + "workflow": "main_workflow_charmmgui.ga", + "workflow_tools": [ + "namd_npt", + "namd_nvt" + ], + "workflowhub_id": "1072" + } + ], + "zenodo_link": "https://zenodo.org/record/3234841" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "chembl", + "owner": "bgruening", + "revisions": "a446ea7e2bc1", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ctb_im_rxn_maker", + "owner": "bgruening", + "revisions": "8ef5428fb809", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "get_pdb", + "owner": "bgruening", + "revisions": "538790c6c21b", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "e2c36f62e22f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_svg_depiction", + "owner": "bgruening", + "revisions": "7672039a0bb0", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qed", + "owner": "bgruening", + "revisions": "52a8d34dd08f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "md_converter", + "owner": "chemteam", + "revisions": "ba83f0923369", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: chembl\n owner: bgruening\n revisions: a446ea7e2bc1\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ctb_im_rxn_maker\n owner: bgruening\n revisions: 8ef5428fb809\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: get_pdb\n owner: bgruening\n revisions: 538790c6c21b\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: e2c36f62e22f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_svg_depiction\n owner: bgruening\n revisions: 7672039a0bb0\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qed\n owner: bgruening\n revisions: 52a8d34dd08f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: md_converter\n owner: chemteam\n revisions: ba83f0923369\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/med-chem-data/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "kkamieniecka", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/med-chem-data", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "computational-chemistry", + "type": "internal" + } + ], + "hands_on": true, + "id": "computational-chemistry/med-chem-data", + "inexact_supported_servers": [ + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The power of big data might be useful to shape innovations of the future in the pharmaceutical field.", + "There are many publicly available databases used for drug discovery and development and they might look at the same medicines from different angles and classify them based on various factors.", + "Galaxy provides tools and a platform for medicinal chemistry analyses." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Learn some terminology from the field of medicinal chemistry", + "Understand the idea of data-driven medicinal chemistry", + "Explore the databases used for drug discovery and development", + "Use Galaxy tools for data management, format conversion and simple analyses" + ], + "pageviews": 212, + "pub_date": "2024-01-08", + "questions": [ + "Why does medicinal chemistry research produce so much data?", + "How can big data be useful for medicinal chemists?", + "What are the current publicly available databases that can be used for drug discovery and development?", + "How to use Galaxy for data management and analysis of chemical data?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "data-management" + ], + "type": "internal" + } + ], + "short_id": "T00381", + "short_tools": [ + "ctb_silicos_qed", + "md_converter", + "get_pdb", + "ctb_im_rxn_maker", + "openbabel_compound_convert", + "chembl", + "openbabel_svg_depiction" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "data-management", + "medicinal-chemistry", + "computational-chemistry" + ], + "time_estimation": "1H", + "title": "Data management in Medicinal Chemistry", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_im_rxn_maker/ctb_im_rxn_maker/1.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/md_converter/md_converter/1.9.6+galaxy0" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "med-chem-data", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/med-chem-data/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/med-chem-data/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/med-chem-data/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 131, + "visitors": 177, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + } + ], + "description": "Workflow includes data import, format conversion and some basic medicinal chemistry analyses.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBenzenesulfonyl chloride\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEthylamine\"]\n 2[label=\"Compound conversion\"]\n 0 -> 2 [label=\"output\"]\n kaff8fa4fc2544f05956052bad6c7e04a[color=lightseagreen,label=\"Output\\nBenzenesulfonyl chloride SDF\"]\n 2 -> kaff8fa4fc2544f05956052bad6c7e04a\n 3[label=\"Search ChEMBL database\"]\n 0 -> 3 [label=\"output\"]\n k044d2c0892ed45c99868ee802998d92c[color=lightseagreen,label=\"Output\\nSubstructures from ChEMBL database\"]\n 3 -> k044d2c0892ed45c99868ee802998d92c\n 4[label=\"Search ChEMBL database\"]\n 0 -> 4 [label=\"output\"]\n k99274b60732d4276969fccc3673a872a[color=lightseagreen,label=\"Output\\nLipinski substructures from ChEMBL database\"]\n 4 -> k99274b60732d4276969fccc3673a872a\n 5[label=\"Compound conversion\"]\n 1 -> 5 [label=\"output\"]\n k77ad7b99576146a3b9a61dd3d8e2baac[color=lightseagreen,label=\"Output\\nEthylamine SDF\"]\n 5 -> k77ad7b99576146a3b9a61dd3d8e2baac\n 6[label=\"Reaction maker\"]\n 2 -> 6 [label=\"outfile\"]\n 5 -> 6 [label=\"outfile\"]\n kf9d1d7fde854469ba4646811998e058e[color=lightseagreen,label=\"Output\\nReaction product\"]\n 6 -> kf9d1d7fde854469ba4646811998e058e\n kb0bd7ed2a80b44ce994b999e1d472281[color=lightseagreen,label=\"Output\\nReaction maker logfile\"]\n 6 -> kb0bd7ed2a80b44ce994b999e1d472281\n 7[label=\"Visualisation\"]\n 6 -> 7 [label=\"outfile\"]\n kfc618f3f6aa54970841d56f4eabf47b7[color=lightseagreen,label=\"Output\\nVisualisation of reaction product\"]\n 7 -> kfc618f3f6aa54970841d56f4eabf47b7\n 8[label=\"Drug-likeness\"]\n 6 -> 8 [label=\"outfile\"]\n k7ad8c184e10d4fcea4023e79da6e09ac[color=lightseagreen,label=\"Output\\nDrug-likeness of product molecule\"]\n 8 -> k7ad8c184e10d4fcea4023e79da6e09ac\n}", + "history": [ + { + "hash": "76375aa18524e038426017ca255745b4d276b972", + "message": "workflow tests", + "num": 1, + "short_hash": "76375aa18", + "unix": "1704138994" + } + ], + "inputs": [ + { + "annotation": "First input molecule ", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "First input molecule ", + "name": "Benzenesulfonyl chloride" + } + ], + "label": "Benzenesulfonyl chloride", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.21065309449974406, + "top": 8.775010413544436 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3f0f498c-32b9-4977-bdac-84ebe37c20d1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Second input molecule ", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Second input molecule ", + "name": "Ethylamine" + } + ], + "label": "Ethylamine", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 111.57694234472979 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0dac45d0-117b-4d59-b2e6-6f591b3804f8", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nBenzenesulfonyl chloride\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nEthylamine\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Compound conversion\"];\n 0 -->|output| 2;\n aff8fa4f-c254-4f05-9560-52bad6c7e04a[\"Output\\nBenzenesulfonyl chloride SDF\"];\n 2 --> aff8fa4f-c254-4f05-9560-52bad6c7e04a;\n style aff8fa4f-c254-4f05-9560-52bad6c7e04a stroke:#2c3143,stroke-width:4px;\n 3[\"Search ChEMBL database\"];\n 0 -->|output| 3;\n 044d2c08-92ed-45c9-9868-ee802998d92c[\"Output\\nSubstructures from ChEMBL database\"];\n 3 --> 044d2c08-92ed-45c9-9868-ee802998d92c;\n style 044d2c08-92ed-45c9-9868-ee802998d92c stroke:#2c3143,stroke-width:4px;\n 4[\"Search ChEMBL database\"];\n 0 -->|output| 4;\n 99274b60-732d-4276-969f-ccc3673a872a[\"Output\\nLipinski substructures from ChEMBL database\"];\n 4 --> 99274b60-732d-4276-969f-ccc3673a872a;\n style 99274b60-732d-4276-969f-ccc3673a872a stroke:#2c3143,stroke-width:4px;\n 5[\"Compound conversion\"];\n 1 -->|output| 5;\n 77ad7b99-5761-46a3-b9a6-1dd3d8e2baac[\"Output\\nEthylamine SDF\"];\n 5 --> 77ad7b99-5761-46a3-b9a6-1dd3d8e2baac;\n style 77ad7b99-5761-46a3-b9a6-1dd3d8e2baac stroke:#2c3143,stroke-width:4px;\n 6[\"Reaction maker\"];\n 2 -->|outfile| 6;\n 5 -->|outfile| 6;\n f9d1d7fd-e854-469b-a464-6811998e058e[\"Output\\nReaction product\"];\n 6 --> f9d1d7fd-e854-469b-a464-6811998e058e;\n style f9d1d7fd-e854-469b-a464-6811998e058e stroke:#2c3143,stroke-width:4px;\n b0bd7ed2-a80b-44ce-994b-999e1d472281[\"Output\\nReaction maker logfile\"];\n 6 --> b0bd7ed2-a80b-44ce-994b-999e1d472281;\n style b0bd7ed2-a80b-44ce-994b-999e1d472281 stroke:#2c3143,stroke-width:4px;\n 7[\"Visualisation\"];\n 6 -->|outfile| 7;\n fc618f3f-6aa5-4970-841d-56f4eabf47b7[\"Output\\nVisualisation of reaction product\"];\n 7 --> fc618f3f-6aa5-4970-841d-56f4eabf47b7;\n style fc618f3f-6aa5-4970-841d-56f4eabf47b7 stroke:#2c3143,stroke-width:4px;\n 8[\"Drug-likeness\"];\n 6 -->|outfile| 8;\n 7ad8c184-e10d-4fce-a402-3e79da6e09ac[\"Output\\nDrug-likeness of product molecule\"];\n 8 --> 7ad8c184-e10d-4fce-a402-3e79da6e09ac;\n style 7ad8c184-e10d-4fce-a402-3e79da6e09ac stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Data management in Medicinal Chemistry workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Compound conversion", + "outputs": [ + { + "name": "outfile", + "type": "text" + } + ], + "position": { + "left": 277.9155357077574, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Benzenesulfonyl chloride SDF" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e2c36f62e22f", + "name": "openbabel_compound_convert", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"smi\", \"appendtotitle\": \"\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dative_bonds\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"oformat\": {\"oformat_opts_selector\": \"sdf\", \"__current_case__\": 58, \"sdf_exp_h\": false, \"sdf_no_prop\": false, \"sdf_wedge_bonds\": false, \"sdf_alias_out\": false, \"gen2d\": false, \"gen3d\": false}, \"ph\": \"-1.0\", \"remove_h\": false, \"split\": false, \"unique\": {\"unique_opts_selector\": \"\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.1+galaxy0", + "type": "tool", + "uuid": "d5ad1375-76ba-4fc9-bfcf-3c47c1e6ae34", + "when": null, + "workflow_outputs": [ + { + "label": "Benzenesulfonyl chloride SDF", + "output_name": "outfile", + "uuid": "aff8fa4f-c254-4f05-9560-52bad6c7e04a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "errors": null, + "id": 3, + "input_connections": { + "input|smiles": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Search ChEMBL database", + "outputs": [ + { + "name": "outfile", + "type": "smi" + } + ], + "position": { + "left": 229.7356198344896, + "top": 402.97495753564186 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Benzenesulfonyl chloride substructures" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "a446ea7e2bc1", + "name": "chembl", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"smi\", \"biotherapeutic\": false, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"drugs\": false, \"input\": {\"format\": \"-f\", \"__current_case__\": 1, \"smiles\": {\"__class__\": \"ConnectedValue\"}}, \"natprod\": false, \"ro5\": false, \"search\": {\"type\": \"-s\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.1+galaxy4", + "type": "tool", + "uuid": "35abd340-c8b4-48aa-9758-aaacf7b30d08", + "when": null, + "workflow_outputs": [ + { + "label": "Substructures from ChEMBL database", + "output_name": "outfile", + "uuid": "044d2c08-92ed-45c9-9868-ee802998d92c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "errors": null, + "id": 4, + "input_connections": { + "input|smiles": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Search ChEMBL database", + "outputs": [ + { + "name": "outfile", + "type": "smi" + } + ], + "position": { + "left": 319.97994179389195, + "top": 571.2698718107019 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Benzenesulfonyl chloride Lipinski substructures" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "a446ea7e2bc1", + "name": "chembl", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"smi\", \"biotherapeutic\": false, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"drugs\": false, \"input\": {\"format\": \"-f\", \"__current_case__\": 1, \"smiles\": {\"__class__\": \"ConnectedValue\"}}, \"natprod\": false, \"ro5\": true, \"search\": {\"type\": \"-s\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.1+galaxy4", + "type": "tool", + "uuid": "4c95bb53-414f-42ba-9932-73a42867fccc", + "when": null, + "workflow_outputs": [ + { + "label": "Lipinski substructures from ChEMBL database", + "output_name": "outfile", + "uuid": "99274b60-732d-4276-969f-ccc3673a872a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Compound conversion", + "outputs": [ + { + "name": "outfile", + "type": "text" + } + ], + "position": { + "left": 292.9155357077574, + "top": 222.9874801635741 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Ethylamine SDF" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e2c36f62e22f", + "name": "openbabel_compound_convert", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"smi\", \"appendtotitle\": \"\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dative_bonds\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"oformat\": {\"oformat_opts_selector\": \"sdf\", \"__current_case__\": 58, \"sdf_exp_h\": false, \"sdf_no_prop\": false, \"sdf_wedge_bonds\": false, \"sdf_alias_out\": false, \"gen2d\": false, \"gen3d\": false}, \"ph\": \"-1.0\", \"remove_h\": false, \"split\": false, \"unique\": {\"unique_opts_selector\": \"\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.1+galaxy0", + "type": "tool", + "uuid": "7c407d5d-dd19-4350-a852-bec9ebef7814", + "when": null, + "workflow_outputs": [ + { + "label": "Ethylamine SDF", + "output_name": "outfile", + "uuid": "77ad7b99-5761-46a3-b9a6-1dd3d8e2baac" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_im_rxn_maker/ctb_im_rxn_maker/1.1.4+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 2, + "output_name": "outfile" + }, + "reagent_file": { + "id": 5, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Reaction maker", + "outputs": [ + { + "name": "outfile", + "type": "sdf" + }, + { + "name": "logfile", + "type": "txt" + } + ], + "position": { + "left": 544.9155330206689, + "top": 114.98750994420489 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_im_rxn_maker/ctb_im_rxn_maker/1.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8ef5428fb809", + "name": "ctb_im_rxn_maker", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"sdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"multi\": false, \"reagent_file\": {\"__class__\": \"ConnectedValue\"}, \"reagent_opts\": \"Sulfonamide\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.4+galaxy0", + "type": "tool", + "uuid": "37301a4f-bdfd-44b1-b040-ce64a879a06b", + "when": null, + "workflow_outputs": [ + { + "label": "Reaction product", + "output_name": "outfile", + "uuid": "f9d1d7fd-e854-469b-a464-6811998e058e" + }, + { + "label": "Reaction maker logfile", + "output_name": "logfile", + "uuid": "b0bd7ed2-a80b-44ce-994b-999e1d472281" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Visualisation", + "outputs": [ + { + "name": "outfile", + "type": "png" + } + ], + "position": { + "left": 799.9156856085593, + "top": 70.98751375890217 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "7672039a0bb0", + "name": "openbabel_svg_depiction", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"sdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"display_name\": \"MW\", \"draw_all_carbon_atoms\": false, \"embed_molecule_as_cml\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"oformat\": \"svg\", \"sort\": null, \"thick_lines\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.1+galaxy0", + "type": "tool", + "uuid": "e7e66ae2-821d-41e3-bc2c-d4b46ba4029a", + "when": null, + "workflow_outputs": [ + { + "label": "Visualisation of reaction product", + "output_name": "outfile", + "uuid": "fc618f3f-6aa5-4970-841d-56f4eabf47b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Drug-likeness", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 807.9157161261375, + "top": 234.98750994420482 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "52a8d34dd08f", + "name": "qed", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"sdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"header\": true, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"method\": \"unweighted\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2021.03.4+galaxy0", + "type": "tool", + "uuid": "fd355ddb-320d-442d-8b6b-e98e0e91b0d1", + "when": null, + "workflow_outputs": [ + { + "label": "Drug-likeness of product molecule", + "output_name": "outfile", + "uuid": "7ad8c184-e10d-4fce-a402-3e79da6e09ac" + } + ] + } + ], + "parent_id": "computational-chemistry/med-chem-data", + "path": "topics/computational-chemistry/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Data management in Medicinal Chemistry workflow", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-med-chem-data/versions/data-management-in-medicinal-chemistry-workflow", + "tutorial_id": "med-chem-data", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.html", + "version": 1, + "wfid": "computational-chemistry-med-chem-data", + "wfname": "data-management-in-medicinal-chemistry-workflow", + "workflow": "Data-management-in-Medicinal-Chemistry-workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_im_rxn_maker/ctb_im_rxn_maker/1.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0" + ], + "workflowhub_id": "1066" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bio3d_pca", + "owner": "chemteam", + "revisions": "994c509873db", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_pca", + "owner": "chemteam", + "revisions": "24867ab16f36", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_rmsd", + "owner": "chemteam", + "revisions": "f871c9a8cb7c", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_rmsd", + "owner": "chemteam", + "revisions": "77e28e1da9f4", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_rmsf", + "owner": "chemteam", + "revisions": "4354d92dc1aa", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_rmsf", + "owner": "chemteam", + "revisions": "6bcb804a54c3", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mdanalysis_cosine_analysis", + "owner": "chemteam", + "revisions": "ebeb72aa39a8", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mdanalysis_dihedral", + "owner": "chemteam", + "revisions": "554f60da9c8f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mdanalysis_distance", + "owner": "chemteam", + "revisions": "489b25966bb9", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mdanalysis_ramachandran_plot", + "owner": "chemteam", + "revisions": "d710c7f00ae6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mdanalysis_rdf", + "owner": "chemteam", + "revisions": "49dac57d004a", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bio3d_pca\n owner: chemteam\n revisions: 994c509873db\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_pca\n owner: chemteam\n revisions: 24867ab16f36\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_rmsd\n owner: chemteam\n revisions: f871c9a8cb7c\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_rmsd\n owner: chemteam\n revisions: 77e28e1da9f4\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_rmsf\n owner: chemteam\n revisions: 4354d92dc1aa\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_rmsf\n owner: chemteam\n revisions: 6bcb804a54c3\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mdanalysis_cosine_analysis\n owner: chemteam\n revisions: ebeb72aa39a8\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mdanalysis_dihedral\n owner: chemteam\n revisions: 554f60da9c8f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mdanalysis_distance\n owner: chemteam\n revisions: 489b25966bb9\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mdanalysis_ramachandran_plot\n owner: chemteam\n revisions: d710c7f00ae6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mdanalysis_rdf\n owner: chemteam\n revisions: 49dac57d004a\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/analysis-md-simulations/tutorial.json", + "contributors": [ + { + "id": "chrisbarnettster", + "joined": "2019-05", + "name": "Christopher Barnett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/chrisbarnettster/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/chrisbarnettster.json" + }, + { + "id": "tsenapathi", + "joined": "2019-05", + "name": "Tharindu Senapathi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tsenapathi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tsenapathi.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + }, + { + "email": "nadia.goue@uca.fr", + "id": "nagoue", + "joined": "2019-07", + "name": "Nadia Gou\u00e9", + "orcid": "0000-0003-2750-1473", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nagoue/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nagoue.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/analysis-md-simulations", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "analysis-md-simulations" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "computational-chemistry/analysis-md-simulations", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Multiple analyses including timeseries, RMSD, PCA are available", + "Analysis tools allow a further chemical understanding of the system" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn which analysis tools are available.", + "Analyse a protein and discuss the meaning behind each analysis." + ], + "pageviews": 53658, + "pub_date": "2019-06-03", + "questions": [ + "Which analysis tools are available?" + ], + "requirements": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "setting-up-molecular-systems", + "md-simulation-namd" + ], + "type": "internal" + } + ], + "short_id": "T00047", + "short_tools": [ + "mdanalysis_rdf", + "mdanalysis_distance", + "mdanalysis_cosine_analysis", + "bio3d_rmsd", + "bio3d_pca", + "bio3d_rmsf", + "mdanalysis_ramachandran_plot", + "mdanalysis_dihedral" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Analysis of molecular dynamics simulations", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_cosine_analysis/mdanalysis_cosine_analysis/0.19", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_dihedral/mdanalysis_dihedral/0.19", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_distance/mdanalysis_distance/0.19", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_ramachandran_plot/mdanalysis_ramachandran_plot/0.1.3", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_rdf/mdanalysis_rdf/0.19" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "analysis-md-simulations", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/analysis-md-simulations/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/analysis-md-simulations/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/analysis-md-simulations/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 76, + "visitors": 29218, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "", + "name": "Chris Barnett" + } + ], + "description": "Analysis of MD trajectories using MDAnalysis, generating a Ramachandran plot and various timeseries.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDCD input\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPDB input\"]\n 2[label=\"RDF Analysis\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n kab90456fd7ae4fb1ba2f978a59791acc[color=lightseagreen,label=\"Output\\nRDF Analysis plot\"]\n 2 -> kab90456fd7ae4fb1ba2f978a59791acc\n k1ee2fe4a0e504a4f828e3b60d75120e7[color=lightseagreen,label=\"Output\\nRDF Analysis raw data\"]\n 2 -> k1ee2fe4a0e504a4f828e3b60d75120e7\n 3[label=\"Cosine Content\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n k5ca6c423961b4a55a821794a0d311e41[color=lightseagreen,label=\"Output\\nCosine Content raw data\"]\n 3 -> k5ca6c423961b4a55a821794a0d311e41\n k7854cbf9187f4117b49473a5a404d06f[color=lightseagreen,label=\"Output\\nCosine Content plot\"]\n 3 -> k7854cbf9187f4117b49473a5a404d06f\n 4[label=\"Ramachandran Plots\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n kaa7afa978be64e6bad2c5715f3c10362[color=lightseagreen,label=\"Output\\nRamachandran Plot\"]\n 4 -> kaa7afa978be64e6bad2c5715f3c10362\n k178f112aeb0b4299aff569efd9ffb52b[color=lightseagreen,label=\"Output\\nRamachandran Plot raw data\"]\n 4 -> k178f112aeb0b4299aff569efd9ffb52b\n 5[label=\"Distance Analysis\"]\n 0 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n keac670fbf01e49cda103828a15149f48[color=lightseagreen,label=\"Output\\nDistance Analysis raw data\"]\n 5 -> keac670fbf01e49cda103828a15149f48\n k6605884d7bfa4f43bbc62352256d2bc7[color=lightseagreen,label=\"Output\\nDistance Analysis plot\"]\n 5 -> k6605884d7bfa4f43bbc62352256d2bc7\n 6[label=\"Dihedral Analysis\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n k755dbb993e3e425ba4b2e375df6e39b4[color=lightseagreen,label=\"Output\\nDihedral Analysis plot\"]\n 6 -> k755dbb993e3e425ba4b2e375df6e39b4\n ke0234472cc44483e997b8b0e0719c8d7[color=lightseagreen,label=\"Output\\nDihedral Analysis raw data\"]\n 6 -> ke0234472cc44483e997b8b0e0719c8d7\n}", + "history": [ + { + "hash": "cfb492901cd9b4a57f9ee8b837ee55266f730fd8", + "message": "fix link to advanced mdanalysis workflow", + "num": 1, + "short_hash": "cfb492901", + "unix": "1646414495" + } + ], + "inputs": [ + { + "annotation": "DCD input", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "DCD input", + "name": "DCD input" + } + ], + "label": "DCD input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 403.7499745686849, + "height": 46.34999084472656, + "left": 821.3333333333334, + "right": 971.3333333333334, + "top": 357.3999837239583, + "width": 150, + "x": 821.3333333333334, + "y": 357.3999837239583 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "148360ef-fd61-4c7a-8618-b9236f50a707", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c85a8a7f-a07f-4e95-a7bc-3162a3268838" + } + ] + }, + { + "annotation": "PDB input", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "PDB input", + "name": "PDB input" + } + ], + "label": "PDB input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 503.7499745686849, + "height": 46.34999084472656, + "left": 821.3333333333334, + "right": 971.3333333333334, + "top": 457.3999837239583, + "width": 150, + "x": 821.3333333333334, + "y": 457.3999837239583 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "25160e20-09db-4c55-b86b-c6a8d9a48d7d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3b27e298-e57d-4270-9309-211fe201d1a2" + } + ] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nDCD input\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nPDB input\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"RDF Analysis\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n ab90456f-d7ae-4fb1-ba2f-978a59791acc[\"Output\\nRDF Analysis plot\"];\n 2 --> ab90456f-d7ae-4fb1-ba2f-978a59791acc;\n style ab90456f-d7ae-4fb1-ba2f-978a59791acc stroke:#2c3143,stroke-width:4px;\n 1ee2fe4a-0e50-4a4f-828e-3b60d75120e7[\"Output\\nRDF Analysis raw data\"];\n 2 --> 1ee2fe4a-0e50-4a4f-828e-3b60d75120e7;\n style 1ee2fe4a-0e50-4a4f-828e-3b60d75120e7 stroke:#2c3143,stroke-width:4px;\n 3[\"Cosine Content\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 5ca6c423-961b-4a55-a821-794a0d311e41[\"Output\\nCosine Content raw data\"];\n 3 --> 5ca6c423-961b-4a55-a821-794a0d311e41;\n style 5ca6c423-961b-4a55-a821-794a0d311e41 stroke:#2c3143,stroke-width:4px;\n 7854cbf9-187f-4117-b494-73a5a404d06f[\"Output\\nCosine Content plot\"];\n 3 --> 7854cbf9-187f-4117-b494-73a5a404d06f;\n style 7854cbf9-187f-4117-b494-73a5a404d06f stroke:#2c3143,stroke-width:4px;\n 4[\"Ramachandran Plots\"];\n 0 -->|output| 4;\n 1 -->|output| 4;\n aa7afa97-8be6-4e6b-ad2c-5715f3c10362[\"Output\\nRamachandran Plot\"];\n 4 --> aa7afa97-8be6-4e6b-ad2c-5715f3c10362;\n style aa7afa97-8be6-4e6b-ad2c-5715f3c10362 stroke:#2c3143,stroke-width:4px;\n 178f112a-eb0b-4299-aff5-69efd9ffb52b[\"Output\\nRamachandran Plot raw data\"];\n 4 --> 178f112a-eb0b-4299-aff5-69efd9ffb52b;\n style 178f112a-eb0b-4299-aff5-69efd9ffb52b stroke:#2c3143,stroke-width:4px;\n 5[\"Distance Analysis\"];\n 0 -->|output| 5;\n 1 -->|output| 5;\n eac670fb-f01e-49cd-a103-828a15149f48[\"Output\\nDistance Analysis raw data\"];\n 5 --> eac670fb-f01e-49cd-a103-828a15149f48;\n style eac670fb-f01e-49cd-a103-828a15149f48 stroke:#2c3143,stroke-width:4px;\n 6605884d-7bfa-4f43-bbc6-2352256d2bc7[\"Output\\nDistance Analysis plot\"];\n 5 --> 6605884d-7bfa-4f43-bbc6-2352256d2bc7;\n style 6605884d-7bfa-4f43-bbc6-2352256d2bc7 stroke:#2c3143,stroke-width:4px;\n 6[\"Dihedral Analysis\"];\n 0 -->|output| 6;\n 1 -->|output| 6;\n 755dbb99-3e3e-425b-a4b2-e375df6e39b4[\"Output\\nDihedral Analysis plot\"];\n 6 --> 755dbb99-3e3e-425b-a4b2-e375df6e39b4;\n style 755dbb99-3e3e-425b-a4b2-e375df6e39b4 stroke:#2c3143,stroke-width:4px;\n e0234472-cc44-483e-997b-8b0e0719c8d7[\"Output\\nDihedral Analysis raw data\"];\n 6 --> e0234472-cc44-483e-997b-8b0e0719c8d7;\n style e0234472-cc44-483e-997b-8b0e0719c8d7 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Analysis using MDAnalysis", + "outputs": [ + { + "annotation": "DCD input", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "DCD input", + "name": "DCD input" + } + ], + "label": "DCD input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 403.7499745686849, + "height": 46.34999084472656, + "left": 821.3333333333334, + "right": 971.3333333333334, + "top": 357.3999837239583, + "width": 150, + "x": 821.3333333333334, + "y": 357.3999837239583 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "148360ef-fd61-4c7a-8618-b9236f50a707", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c85a8a7f-a07f-4e95-a7bc-3162a3268838" + } + ] + }, + { + "annotation": "PDB input", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "PDB input", + "name": "PDB input" + } + ], + "label": "PDB input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 503.7499745686849, + "height": 46.34999084472656, + "left": 821.3333333333334, + "right": 971.3333333333334, + "top": 457.3999837239583, + "width": 150, + "x": 821.3333333333334, + "y": 457.3999837239583 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "25160e20-09db-4c55-b86b-c6a8d9a48d7d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3b27e298-e57d-4270-9309-211fe201d1a2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_rdf/mdanalysis_rdf/0.19", + "errors": null, + "id": 2, + "input_connections": { + "dcdin": { + "id": 0, + "output_name": "output" + }, + "pdbin": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RDF Analysis", + "name": "dcdin" + }, + { + "description": "runtime parameter for tool RDF Analysis", + "name": "pdbin" + } + ], + "label": null, + "name": "RDF Analysis", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "rdf_plot", + "type": "png" + } + ], + "position": { + "bottom": 92.49999491373697, + "height": 146.09999084472656, + "left": 1109.3333333333333, + "right": 1259.3333333333333, + "top": -53.599995930989586, + "width": 150, + "x": 1109.3333333333333, + "y": -53.599995930989586 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_rdf/mdanalysis_rdf/0.19", + "tool_shed_repository": { + "changeset_revision": "49dac57d004a", + "name": "mdanalysis_rdf", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dcdin\": {\"__class__\": \"RuntimeValue\"}, \"end\": \"5.0\", \"name1\": \"OE2\", \"name2\": \"C1\", \"nbins\": \"100\", \"pdbin\": {\"__class__\": \"RuntimeValue\"}, \"resid1\": \"212\", \"resid2\": \"3\", \"segid1\": \"PRO\", \"segid2\": \"HET\", \"start\": \"0.0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.19", + "type": "tool", + "uuid": "07498fa6-c71c-48fe-9e80-590b6a320dc8", + "workflow_outputs": [ + { + "label": "RDF Analysis plot", + "output_name": "rdf_plot", + "uuid": "ab90456f-d7ae-4fb1-ba2f-978a59791acc" + }, + { + "label": "RDF Analysis raw data", + "output_name": "output", + "uuid": "1ee2fe4a-0e50-4a4f-828e-3b60d75120e7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_cosine_analysis/mdanalysis_cosine_analysis/0.19", + "errors": null, + "id": 3, + "input_connections": { + "dcdin": { + "id": 0, + "output_name": "output" + }, + "pdbin": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Cosine Content", + "name": "dcdin" + }, + { + "description": "runtime parameter for tool Cosine Content", + "name": "pdbin" + } + ], + "label": null, + "name": "Cosine Content", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "cosout", + "type": "txt" + } + ], + "position": { + "bottom": 325.49999491373694, + "height": 146.09999084472656, + "left": 1109.3333333333333, + "right": 1259.3333333333333, + "top": 179.4000040690104, + "width": 150, + "x": 1109.3333333333333, + "y": 179.4000040690104 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_cosine_analysis/mdanalysis_cosine_analysis/0.19", + "tool_shed_repository": { + "changeset_revision": "ebeb72aa39a8", + "name": "mdanalysis_cosine_analysis", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"components\": \"3\", \"dcdin\": {\"__class__\": \"RuntimeValue\"}, \"index\": \"0\", \"pdbin\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.19", + "type": "tool", + "uuid": "0947c650-cd50-44ce-a3e3-b3bfdcd2074e", + "workflow_outputs": [ + { + "label": "Cosine Content raw data", + "output_name": "output", + "uuid": "5ca6c423-961b-4a55-a821-794a0d311e41" + }, + { + "label": "Cosine Content plot", + "output_name": "cosout", + "uuid": "7854cbf9-187f-4117-b494-73a5a404d06f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_ramachandran_plot/mdanalysis_ramachandran_plot/0.1.3", + "errors": null, + "id": 4, + "input_connections": { + "dcdin": { + "id": 0, + "output_name": "output" + }, + "pdbin": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Ramachandran Plots", + "name": "dcdin" + }, + { + "description": "runtime parameter for tool Ramachandran Plots", + "name": "pdbin" + } + ], + "label": null, + "name": "Ramachandran Plots", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "ramachandran_plot", + "type": "png" + } + ], + "position": { + "bottom": 558.4999745686848, + "height": 146.09999084472656, + "left": 1109.3333333333333, + "right": 1259.3333333333333, + "top": 412.3999837239583, + "width": 150, + "x": 1109.3333333333333, + "y": 412.3999837239583 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_ramachandran_plot/mdanalysis_ramachandran_plot/0.1.3", + "tool_shed_repository": { + "changeset_revision": "d710c7f00ae6", + "name": "mdanalysis_ramachandran_plot", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dcdin\": {\"__class__\": \"RuntimeValue\"}, \"pdbin\": {\"__class__\": \"RuntimeValue\"}, \"phi\": {\"segid1\": \"HET\", \"resid1\": \"3\", \"name1\": \"O5\", \"segid2\": \"HET\", \"resid2\": \"3\", \"name2\": \"C1\", \"segid3\": \"HET\", \"resid3\": \"2\", \"name3\": \"O4\", \"segid4\": \"HET\", \"resid4\": \"2\", \"name4\": \"C4\"}, \"psi\": {\"segid1\": \"HET\", \"resid1\": \"3\", \"name1\": \"C1\", \"segid2\": \"HET\", \"resid2\": \"2\", \"name2\": \"O4\", \"segid3\": \"HET\", \"resid3\": \"2\", \"name3\": \"C4\", \"segid4\": \"HET\", \"resid4\": \"2\", \"name4\": \"C3\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.3", + "type": "tool", + "uuid": "9a734458-4df3-4dca-820a-d6550466c839", + "workflow_outputs": [ + { + "label": "Ramachandran Plot", + "output_name": "ramachandran_plot", + "uuid": "aa7afa97-8be6-4e6b-ad2c-5715f3c10362" + }, + { + "label": "Ramachandran Plot raw data", + "output_name": "output", + "uuid": "178f112a-eb0b-4299-aff5-69efd9ffb52b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_distance/mdanalysis_distance/0.19", + "errors": null, + "id": 5, + "input_connections": { + "dcdin": { + "id": 0, + "output_name": "output" + }, + "pdbin": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Distance Analysis", + "name": "dcdin" + }, + { + "description": "runtime parameter for tool Distance Analysis", + "name": "pdbin" + } + ], + "label": null, + "name": "Distance Analysis", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "distance_plot", + "type": "png" + } + ], + "position": { + "bottom": 806.7999776204427, + "height": 161.39999389648438, + "left": 1109.3333333333333, + "right": 1259.3333333333333, + "top": 645.3999837239584, + "width": 150, + "x": 1109.3333333333333, + "y": 645.3999837239584 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_distance/mdanalysis_distance/0.19", + "tool_shed_repository": { + "changeset_revision": "489b25966bb9", + "name": "mdanalysis_distance", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dcdin\": {\"__class__\": \"RuntimeValue\"}, \"name1\": \"OE2\", \"name2\": \"C1\", \"pdbin\": {\"__class__\": \"RuntimeValue\"}, \"resid1\": \"212\", \"resid2\": \"3\", \"segid1\": \"PRO\", \"segid2\": \"HET\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.19", + "type": "tool", + "uuid": "959e239a-6421-4144-9ac2-703c9fdda4eb", + "workflow_outputs": [ + { + "label": "Distance Analysis raw data", + "output_name": "output", + "uuid": "eac670fb-f01e-49cd-a103-828a15149f48" + }, + { + "label": "Distance Analysis plot", + "output_name": "distance_plot", + "uuid": "6605884d-7bfa-4f43-bbc6-2352256d2bc7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_dihedral/mdanalysis_dihedral/0.19", + "errors": null, + "id": 6, + "input_connections": { + "dcdin": { + "id": 0, + "output_name": "output" + }, + "pdbin": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Dihedral Analysis", + "name": "dcdin" + }, + { + "description": "runtime parameter for tool Dihedral Analysis", + "name": "pdbin" + } + ], + "label": null, + "name": "Dihedral Analysis", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "dihedral_plot", + "type": "png" + } + ], + "position": { + "bottom": 1059.7999776204429, + "height": 161.39999389648438, + "left": 1109.3333333333333, + "right": 1259.3333333333333, + "top": 898.3999837239584, + "width": 150, + "x": 1109.3333333333333, + "y": 898.3999837239584 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_dihedral/mdanalysis_dihedral/0.19", + "tool_shed_repository": { + "changeset_revision": "554f60da9c8f", + "name": "mdanalysis_dihedral", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dcdin\": {\"__class__\": \"RuntimeValue\"}, \"name1\": \"OE2\", \"name2\": \"C1\", \"name3\": \"C2\", \"name4\": \"C3\", \"pdbin\": {\"__class__\": \"RuntimeValue\"}, \"resid1\": \"212\", \"resid2\": \"3\", \"resid3\": \"3\", \"resid4\": \"3\", \"segid1\": \"PRO\", \"segid2\": \"HET\", \"segid3\": \"HET\", \"segid4\": \"HET\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.19", + "type": "tool", + "uuid": "a13f23a8-7b55-4c6f-bb7c-4b26ae064a40", + "workflow_outputs": [ + { + "label": "Dihedral Analysis plot", + "output_name": "dihedral_plot", + "uuid": "755dbb99-3e3e-425b-a4b2-e375df6e39b4" + }, + { + "label": "Dihedral Analysis raw data", + "output_name": "output", + "uuid": "e0234472-cc44-483e-997b-8b0e0719c8d7" + } + ] + } + ], + "parent_id": "computational-chemistry/analysis-md-simulations", + "path": "topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/advanced_workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": true, + "title": "Analysis using MDAnalysis", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-analysis-md-simulations/versions/advanced-workflow", + "tutorial_id": "analysis-md-simulations", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/advanced_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/advanced_workflow.html", + "version": 1, + "wfid": "computational-chemistry-analysis-md-simulations", + "wfname": "advanced-workflow", + "workflow": "advanced_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_cosine_analysis/mdanalysis_cosine_analysis/0.19", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_dihedral/mdanalysis_dihedral/0.19", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_distance/mdanalysis_distance/0.19", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_ramachandran_plot/mdanalysis_ramachandran_plot/0.1.3", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_rdf/mdanalysis_rdf/0.19" + ], + "workflowhub_id": "1126" + }, + { + "creators": [], + "description": "Analysis of molecular dynamics simulations", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nprotein_mdsimulation_dcd\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nprotein_pdb\"]\n 2[label=\"RMSD Analysis\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n k6de2beaff80e47888598229a1c582757[color=lightseagreen,label=\"Output\\nrmsd_tabular_output\"]\n 2 -> k6de2beaff80e47888598229a1c582757\n 3[label=\"RMSF Analysis\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n k1f2d715d230a4ec5a509e8ae501e7634[color=lightseagreen,label=\"Output\\nrmsf_tabular_output\"]\n 3 -> k1f2d715d230a4ec5a509e8ae501e7634\n 4[label=\"PCA\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n k92b7a40f9ffc4f568cf3deec52e7b8b5[color=lightseagreen,label=\"Output\\npca_tabular_output\"]\n 4 -> k92b7a40f9ffc4f568cf3deec52e7b8b5\n}", + "history": [ + { + "hash": "6614b58c185cff33cbdced64bd110564410d13d9", + "message": "md-simulations", + "num": 5, + "short_hash": "6614b58c1", + "unix": "1601688748" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "be6fece7faf81d375f35a35d1a115041aae6066b", + "message": "Simonbray compchem (#6)", + "num": 1, + "short_hash": "be6fece7f", + "unix": "1556962666" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "protein_mdsimulation_dcd" + } + ], + "label": "protein_mdsimulation_dcd", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 310 + }, + "tool_id": null, + "tool_state": "{\"name\": \"protein_mdsimulation_dcd\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e26cd82e-19c8-4cf5-93c7-5a0a0e5201cc", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "protein_pdb" + } + ], + "label": "protein_pdb", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 430 + }, + "tool_id": null, + "tool_state": "{\"name\": \"protein_pdb\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cbe0e7c8-c572-4231-a55f-d04c72760cd4", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nprotein_mdsimulation_dcd\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nprotein_pdb\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"RMSD Analysis\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 6de2beaf-f80e-4788-8598-229a1c582757[\"Output\\nrmsd_tabular_output\"];\n 2 --> 6de2beaf-f80e-4788-8598-229a1c582757;\n style 6de2beaf-f80e-4788-8598-229a1c582757 stroke:#2c3143,stroke-width:4px;\n 3[\"RMSF Analysis\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 1f2d715d-230a-4ec5-a509-e8ae501e7634[\"Output\\nrmsf_tabular_output\"];\n 3 --> 1f2d715d-230a-4ec5-a509-e8ae501e7634;\n style 1f2d715d-230a-4ec5-a509-e8ae501e7634 stroke:#2c3143,stroke-width:4px;\n 4[\"PCA\"];\n 0 -->|output| 4;\n 1 -->|output| 4;\n 92b7a40f-9ffc-4f56-8cf3-deec52e7b8b5[\"Output\\npca_tabular_output\"];\n 4 --> 92b7a40f-9ffc-4f56-8cf3-deec52e7b8b5;\n style 92b7a40f-9ffc-4f56-8cf3-deec52e7b8b5 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Simple Analysis", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3", + "errors": null, + "id": 2, + "input_connections": { + "dcdin": { + "id": 0, + "output_name": "output" + }, + "pdbin": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RMSD Analysis", + "name": "pdbin" + }, + { + "description": "runtime parameter for tool RMSD Analysis", + "name": "dcdin" + } + ], + "label": null, + "name": "RMSD Analysis", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "rmsd_plot", + "type": "png" + }, + { + "name": "rmsd_hist_plot", + "type": "png" + } + ], + "position": { + "left": 439, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3", + "tool_shed_repository": { + "changeset_revision": "75fd897bd85d", + "name": "bio3d_rmsd", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"rmsd\": \"{\\\"sele\\\": \\\"calpha\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"pdbin\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"chromInfo\": \"\\\"/galaxy-central/tool-data/shared/ucsc/chrom/?.len\\\"\", \"dcdin\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.3", + "type": "tool", + "uuid": "5b0988f7-6cb1-4dfc-95b5-d5493d77d579", + "workflow_outputs": [ + { + "label": "rmsd_tabular_output", + "output_name": "output", + "uuid": "6de2beaf-f80e-4788-8598-229a1c582757" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3", + "errors": null, + "id": 3, + "input_connections": { + "dcdin": { + "id": 0, + "output_name": "output" + }, + "pdbin": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RMSF Analysis", + "name": "pdbin" + }, + { + "description": "runtime parameter for tool RMSF Analysis", + "name": "dcdin" + } + ], + "label": null, + "name": "RMSF Analysis", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "rmsf_plot", + "type": "png" + } + ], + "position": { + "left": 535, + "top": 397 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3", + "tool_shed_repository": { + "changeset_revision": "e838317708a6", + "name": "bio3d_rmsf", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"rmsf\": \"{\\\"sele\\\": \\\"calpha\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"pdbin\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"chromInfo\": \"\\\"/galaxy-central/tool-data/shared/ucsc/chrom/?.len\\\"\", \"dcdin\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.3", + "type": "tool", + "uuid": "aebc72d2-95bd-4b94-aa49-f8fbd55e7d54", + "workflow_outputs": [ + { + "label": "rmsf_tabular_output", + "output_name": "output", + "uuid": "1f2d715d-230a-4ec5-a509-e8ae501e7634" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3", + "errors": null, + "id": 4, + "input_connections": { + "dcdin": { + "id": 0, + "output_name": "output" + }, + "pdbin": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool PCA", + "name": "pdbin" + }, + { + "description": "runtime parameter for tool PCA", + "name": "dcdin" + } + ], + "label": null, + "name": "PCA", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "pca_plot", + "type": "png" + }, + { + "name": "pca_cluster", + "type": "png" + }, + { + "name": "pc1_rmsf", + "type": "png" + } + ], + "position": { + "left": 423, + "top": 592 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3", + "tool_shed_repository": { + "changeset_revision": "f56fb2762abb", + "name": "bio3d_pca", + "owner": "chemteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"dcdin\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"pdbin\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"pca\": \"{\\\"sele\\\": \\\"calpha\\\", \\\"__current_case__\\\": 0}\", \"chromInfo\": \"\\\"/galaxy-central/tool-data/shared/ucsc/chrom/?.len\\\"\", \"method\": \"\\\"false\\\"\"}", + "tool_version": "2.3", + "type": "tool", + "uuid": "99415486-79b9-47d1-8111-02d0e6dcbed6", + "workflow_outputs": [ + { + "label": "pca_tabular_output", + "output_name": "output", + "uuid": "92b7a40f-9ffc-4f56-8cf3-deec52e7b8b5" + } + ] + } + ], + "parent_id": "computational-chemistry/analysis-md-simulations", + "path": "topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/main_workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": true, + "title": "Simple Analysis", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-analysis-md-simulations/versions/main-workflow", + "tutorial_id": "analysis-md-simulations", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/analysis-md-simulations/workflows/main_workflow.html", + "version": 5, + "wfid": "computational-chemistry-analysis-md-simulations", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3" + ], + "workflowhub_id": "1122" + } + ], + "zenodo_link": "https://zenodo.org/record/2537734" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "align_it", + "owner": "bgruening", + "revisions": "06d9381593a4", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_addh", + "owner": "bgruening", + "revisions": "6e4b7e0c61a6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rdconf", + "owner": "bgruening", + "revisions": "5c501eb8d56c", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "6cbe2f30c2d7", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: align_it\n owner: bgruening\n revisions: 06d9381593a4\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_addh\n owner: bgruening\n revisions: 6e4b7e0c61a6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rdconf\n owner: bgruening\n revisions: 5c501eb8d56c\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: 6cbe2f30c2d7\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/zauberkugel/tutorial.json", + "contributors": [ + { + "email": "amaf.aurelien@yahoo.com", + "id": "aurelienmoumbock", + "joined": "2022-02", + "name": "Aur\u00e9lien F. A. Moumbock", + "orcid": "0000-0002-6034-2016", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/aurelienmoumbock/", + "twitter": "FMoumbock", + "url": "https://training.galaxyproject.org/training-material/api/contributors/aurelienmoumbock.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/zauberkugel", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "computational-chemistry/zauberkugel", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 6049, + "mermaid": false + }, + "key_points": [ + "A pharmacophore is an abstract description of the molecular features of a bioactive ligand.", + "Pharmacophore-based target prediction is an efficient and cost-effective method." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Create an SMILES file of a bioactive ligand.", + "Screen the query ligand against a pharmacophore library.", + "Analyze the results of the protein target prediction." + ], + "pageviews": 1438, + "pub_date": "2022-02-15", + "questions": [ + "What is a pharmacophore model?", + "How can I perform protein target prediction with a multi-step workflow or the one-step Zauberkugel workflow?" + ], + "short_id": "T00054", + "short_tools": [ + "sort1", + "tp_cat", + "ctb_alignit", + "split_file_to_collection", + "rdconf", + "openbabel_addh" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Protein target prediction of a bioactive ligand with Align-it and ePharmaLib", + "tools": [ + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/align_it/ctb_alignit/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_addh/openbabel_addh/3.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdconf/rdconf/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "zauberkugel", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/zauberkugel/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/zauberkugel/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/zauberkugel/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 941, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "email": "mailto:amaf.aurelien@yahoo.com", + "identifier": "https://orcid.org/0000-0002-6034-2016", + "name": "Aur\u00e9lien F. A. Moumbock" + }, + { + "class": "Organization", + "name": "Albert-Ludwigs-Universit\u00e4t Freiburg" + } + ], + "description": "Protein target prediction of a bioactive ligand with Align-it and ePharmaLib", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQuery ligand\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPharmacophore library\"]\n 2[label=\"Ligand ionization state generation\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Splitting ePharmaLib into individual pharmacophores\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\" Low-energy ligand conformer search\"]\n 2 -> 4 [label=\"outfile\"]\n 5[label=\"Pharmacophore alignment\"]\n 4 -> 5 [label=\"outfile\"]\n 3 -> 5 [label=\"list_output_generic\"]\n 6[label=\"Concatenating the pharmacophore alignment scores\"]\n 5 -> 6 [label=\"score_result_file\"]\n 7[label=\"Ranking the predicted protein targets according to the Tversky index 10th column\"]\n 6 -> 7 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "b70afe30388f2cf2023a1abb8d7d6130721467b2", + "message": "annotate workflow for gtn linting", + "num": 3, + "short_hash": "b70afe303", + "unix": "1644931554" + }, + { + "hash": "506069da4d92df0665a2c7ed4de1bfc40345cf22", + "message": "pretty print pharmacophore workflow", + "num": 2, + "short_hash": "506069da4", + "unix": "1644582976" + }, + { + "hash": "fdd280bcf8dfeccdd087f4822150679914725469", + "message": "Add files via upload", + "num": 1, + "short_hash": "fdd280bcf", + "unix": "1644350636" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query ligand" + } + ], + "label": "Query ligand", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 747.5521469116211, + "height": 62.083335876464844, + "left": 559.0104370117188, + "right": 759.0104522705078, + "top": 685.4688110351562, + "width": 200.00001525878906, + "x": 559.0104370117188, + "y": 685.4688110351562 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"smi\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "63eee683-907c-40a4-b801-d977e0b2cb3e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Pharmacophore library" + } + ], + "label": "Pharmacophore library", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 1033.8889236450195, + "height": 82.46527862548828, + "left": 780.9375610351562, + "right": 980.9375762939453, + "top": 951.4236450195312, + "width": 200.00001525878906, + "x": 780.9375610351562, + "y": 951.4236450195312 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"phar\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "004f025f-dafc-4d26-8aec-88a64d013852", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQuery ligand\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nPharmacophore library\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Ligand ionization state generation\"];\n 0 -->|output| 2;\n 3[\"Splitting ePharmaLib into individual pharmacophores\"];\n 1 -->|output| 3;\n 4[\" Low-energy ligand conformer search\"];\n 2 -->|outfile| 4;\n 5[\"Pharmacophore alignment\"];\n 4 -->|outfile| 5;\n 3 -->|list_output_generic| 5;\n 6[\"Concatenating the pharmacophore alignment scores\"];\n 5 -->|score_result_file| 6;\n 7[\"Ranking the predicted protein targets according to the Tversky index 10th column\"];\n 6 -->|out_file1| 7;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Zauberkugel", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_addh/openbabel_addh/3.1.1+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Ligand ionization state generation", + "name": "Add hydrogen atoms", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 746.4236679077148, + "height": 113.95833587646484, + "left": 776.99658203125, + "right": 976.9965972900391, + "top": 632.46533203125, + "width": 200.00001525878906, + "x": 776.99658203125, + "y": 632.46533203125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_addh/openbabel_addh/3.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6e4b7e0c61a6", + "name": "openbabel_addh", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"pH_value\": \"7.4\", \"polar\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.1+galaxy1", + "type": "tool", + "uuid": "857b1ca0-d39a-463f-9840-cf2c7e6b363f", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "24b52c0f-f6e2-4d14-bd92-2aa620c91d83" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "errors": null, + "id": 3, + "input_connections": { + "split_parms|input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Splitting ePharmaLib into individual pharmacophores", + "name": "Split file", + "outputs": [ + { + "name": "list_output_generic", + "type": "input" + } + ], + "position": { + "bottom": 1036.1979370117188, + "height": 154.72222900390625, + "left": 1009.982666015625, + "right": 1209.982681274414, + "top": 881.4757080078125, + "width": 200.00001525878906, + "x": 1009.982666015625, + "y": 881.4757080078125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "tool_shed_repository": { + "changeset_revision": "6cbe2f30c2d7", + "name": "split_file_to_collection", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"split_parms\": {\"select_ftype\": \"generic\", \"__current_case__\": 6, \"input\": {\"__class__\": \"ConnectedValue\"}, \"split_method\": {\"select_split_method\": \"regex\", \"__current_case__\": 0, \"generic_regex\": \"\\\\$\\\\$\\\\$\\\\$\", \"split_after\": \"true\"}, \"select_mode\": {\"mode\": \"chunk\", \"__current_case__\": 0, \"chunksize\": \"1\"}, \"newfilenames\": \"epharmalib\", \"select_allocate\": {\"allocate\": \"batch\", \"__current_case__\": 1}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.0", + "type": "tool", + "uuid": "1baf3f94-2aa7-42e9-968e-959fffcc462b", + "workflow_outputs": [ + { + "label": null, + "output_name": "list_output_generic", + "uuid": "6d0c53e6-2607-410f-a529-3fc4cd1d70b4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/rdconf/rdconf/2020.03.4+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "infile": { + "id": 2, + "output_name": "outfile" + } + }, + "inputs": [], + "label": " Low-energy ligand conformer search", + "name": "RDConf: Low-energy ligand conformer search", + "outputs": [ + { + "name": "outfile", + "type": "sdf" + } + ], + "position": { + "bottom": 784.18408203125, + "height": 154.72222900390625, + "left": 1001.0070190429688, + "right": 1201.0070343017578, + "top": 629.4618530273438, + "width": 200.00001525878906, + "x": 1001.0070190429688, + "y": 629.4618530273438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/rdconf/rdconf/2020.03.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5c501eb8d56c", + "name": "rdconf", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"CNT\": \"100\", \"E\": \"10.0\", \"N\": \"1\", \"R\": \"0.7\", \"etkdg\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mmff\": \"false\", \"nomin\": \"false\", \"s\": \"9162006\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2020.03.4+galaxy0", + "type": "tool", + "uuid": "0c02c9e1-8579-4370-aa2e-575956b017cc", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "04f08403-a7e1-4350-94e0-17af711f0113" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/align_it/ctb_alignit/1.0.4+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "database": { + "id": 4, + "output_name": "outfile" + }, + "reference": { + "id": 3, + "output_name": "list_output_generic" + } + }, + "inputs": [], + "label": null, + "name": "Pharmacophore alignment", + "outputs": [ + { + "name": "aligned_pharmacophores", + "type": "phar" + }, + { + "name": "aligned_structures", + "type": "smi" + }, + { + "name": "score_result_file", + "type": "tabular" + } + ], + "position": { + "bottom": 1037.3438110351562, + "height": 408.92364501953125, + "left": 1244.010498046875, + "right": 1444.010513305664, + "top": 628.420166015625, + "width": 200.00001525878906, + "x": 1244.010498046875, + "y": 628.420166015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/align_it/ctb_alignit/1.0.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "06d9381593a4", + "name": "align_it", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"best\": \"1\", \"cutoff\": \"0.5\", \"database\": {\"__class__\": \"ConnectedValue\"}, \"epsilon\": \"0.5\", \"fgroups\": [\"AROM\", \"HDON\", \"HACC\", \"LIPO\", \"CHARGE\"], \"merge\": \"false\", \"noHybrid\": \"true\", \"noNormal\": \"true\", \"oformat\": \"smi\", \"rankBy\": \"TVERSKY_REF\", \"reference\": {\"__class__\": \"ConnectedValue\"}, \"scoreOnly\": \"false\", \"withExclusion\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4+galaxy0", + "type": "tool", + "uuid": "5d8f4ad4-8831-405f-8cef-7a9d0c114ddd", + "workflow_outputs": [ + { + "label": null, + "output_name": "aligned_pharmacophores", + "uuid": "7a9ad93a-e27c-48f2-a17e-afd5afcc5c47" + }, + { + "label": null, + "output_name": "score_result_file", + "uuid": "ec32ab04-d509-48ac-94c4-145a1547a134" + }, + { + "label": null, + "output_name": "aligned_structures", + "uuid": "d3dd55d0-472a-4d38-b0c0-f5d61ecf167f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 6, + "input_connections": { + "inputs": { + "id": 5, + "output_name": "score_result_file" + } + }, + "inputs": [], + "label": "Concatenating the pharmacophore alignment scores", + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 783.1423950195312, + "height": 154.72222900390625, + "left": 1475.9896240234375, + "right": 1675.9896392822266, + "top": 628.420166015625, + "width": 200.00001525878906, + "x": 1475.9896240234375, + "y": 628.420166015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "c3b7d2a3-b06e-4a4f-aee2-a2b8941ebfdb", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9cfedc75-e78a-4425-b8dc-2019f1d8479d" + } + ] + }, + { + "annotation": "", + "content_id": "sort1", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Ranking the predicted protein targets according to the Tversky index (10th column)", + "name": "Sort", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 782.2048950195312, + "height": 154.72222900390625, + "left": 1700.0001220703125, + "right": 1900.0001373291016, + "top": 627.482666015625, + "width": 200.00001525878906, + "x": 1700.0001220703125, + "y": 627.482666015625 + }, + "post_job_actions": { + "EmailActionout_file1": { + "action_arguments": {}, + "action_type": "EmailAction", + "output_name": "out_file1" + } + }, + "tool_id": "sort1", + "tool_state": "{\"column\": \"10\", \"column_set\": [], \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"order\": \"DESC\", \"style\": \"num\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "3bbbee13-46e9-48ad-9ecc-c874da658723", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "f1cb518a-3021-44b3-a03c-2443d7cddc91" + } + ] + } + ], + "parent_id": "computational-chemistry/zauberkugel", + "path": "topics/computational-chemistry/tutorials/zauberkugel/workflows/main_workflow.ga", + "tags": [ + "cheminformatics", + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "Zauberkugel", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-zauberkugel/versions/main-workflow", + "tutorial_id": "zauberkugel", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/zauberkugel/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/zauberkugel/workflows/main_workflow.html", + "version": 1, + "wfid": "computational-chemistry-zauberkugel", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/align_it/ctb_alignit/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_addh/openbabel_addh/3.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdconf/rdconf/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1" + ], + "workflowhub_id": "1082" + } + ], + "zenodo_link": "https://zenodo.org/record/6055897" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "revisions": "8e214e52e461", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "revisions": "7255688c77f3", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "enumerate_charges", + "owner": "bgruening", + "revisions": "2a868592ebcb", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "enumerate_charges", + "owner": "bgruening", + "revisions": "67ee76f0e497", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "b59c91adeac1", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "e2c36f62e22f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rdock_rbcavity", + "owner": "bgruening", + "revisions": "744a777e9f90", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rdock_rbdock", + "owner": "bgruening", + "revisions": "a22969b08177", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rxdock_rbcavity", + "owner": "bgruening", + "revisions": "7fac8e7a12d5", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rxdock_rbdock", + "owner": "bgruening", + "revisions": "6fe6b0e10ed6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "0046692724f9", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "6cbe2f30c2d7", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sucos_max_score", + "owner": "bgruening", + "revisions": "d4c67ced6abc", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sucos_max_score", + "owner": "bgruening", + "revisions": "9b48456a96fe", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xchem_transfs_scoring", + "owner": "bgruening", + "revisions": "f6f9b47d02b6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: ctb_frankenstein_ligand\n owner: bgruening\n revisions: 8e214e52e461\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ctb_frankenstein_ligand\n owner: bgruening\n revisions: 7255688c77f3\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: enumerate_charges\n owner: bgruening\n revisions: 2a868592ebcb\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: enumerate_charges\n owner: bgruening\n revisions: 67ee76f0e497\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: b59c91adeac1\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: e2c36f62e22f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rdock_rbcavity\n owner: bgruening\n revisions: 744a777e9f90\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rdock_rbdock\n owner: bgruening\n revisions: a22969b08177\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rxdock_rbcavity\n owner: bgruening\n revisions: 7fac8e7a12d5\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rxdock_rbdock\n owner: bgruening\n revisions: 6fe6b0e10ed6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: '0046692724f9'\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: 6cbe2f30c2d7\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sucos_max_score\n owner: bgruening\n revisions: d4c67ced6abc\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sucos_max_score\n owner: bgruening\n revisions: 9b48456a96fe\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xchem_transfs_scoring\n owner: bgruening\n revisions: f6f9b47d02b6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/covid19-docking", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "computational-chemistry/covid19-docking", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy can support large, rapid studies in computational chemistry", + "Protein-ligand docking contributes to the discovery of new drugs" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Understand how Galaxy was used to perform docking and pose scoring on the SARS-CoV-2 main protease (MPro).", + "Replicate the study on a (very) small scale", + "Gain familiarity with the docking and scoring techniques involved." + ], + "pageviews": 4516, + "pub_date": "2020-03-27", + "questions": [ + "How can candidate ligands be generated and docked to a protein in Galaxy?", + "How can the poses of the docked ligands be evaluated?", + "How can a workflow for drug virtual screening be constructed in Galaxy?" + ], + "requirements": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "cheminformatics" + ], + "type": "internal" + } + ], + "short_id": "T00049", + "short_tools": [ + "enumerate_charges", + "xchem_transfs_scoring", + "rdock_rbdock", + "rdock_rbcavity", + "rxdock_rbcavity", + "xchem_pose_scoring", + "openbabel_compound_convert", + "split_file_to_collection", + "ctb_frankenstein_ligand", + "sucos_max_score", + "collapse_dataset", + "rxdock_rbdock" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "covid19", + "one-health" + ], + "time_estimation": "2H", + "title": "Virtual screening of the SARS-CoV-2 main protease with rxDock and pose scoring", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/2013.1-0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/2.4.2.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbcavity/rdock_rbcavity/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbdock/rdock_rbdock/0.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/rxdock_rbcavity/rxdock_rbcavity/0.1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/rxdock_rbdock/rxdock_rbdock/0.1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.4.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/0.2.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/xchem_transfs_scoring/xchem_transfs_scoring/0.4.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "xchem_pose_scoring" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "covid19-docking", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/covid19-docking/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 178, + "visitors": 2664, + "workflows": [ + { + "creators": [], + "description": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCandidates\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMpro-x0195_0_apo-desolv.pdb\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhits.sdf\"]\n 3[label=\"Enumerate changes\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Compound conversion\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Create Frankenstein ligand\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Compound conversion\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"rDock cavity definition\"]\n 4 -> 7 [label=\"outfile\"]\n 5 -> 7 [label=\"outfile\"]\n 8[label=\"Split file\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"rDock docking\"]\n 4 -> 9 [label=\"outfile\"]\n 8 -> 9 [label=\"list_output_sdf\"]\n 7 -> 9 [label=\"activesite\"]\n 10[label=\"Collapse Collection\"]\n 9 -> 10 [label=\"output\"]\n 11[label=\"XChem TransFS pose scoring\"]\n 1 -> 11 [label=\"output\"]\n 10 -> 11 [label=\"output\"]\n 12[label=\"Max SuCOS score\"]\n 11 -> 12 [label=\"output\"]\n 2 -> 12 [label=\"output\"]\n}", + "history": [ + { + "hash": "cf8b1cb0509e73e534c234076c8bd055379823c5", + "message": "Update some workflow names for consistency", + "num": 4, + "short_hash": "cf8b1cb05", + "unix": "1598836271" + }, + { + "hash": "60a21218780027dcf65a5f37b94148b0771303e1", + "message": "update with covid19 tut with frankenstein ligand tool", + "num": 3, + "short_hash": "60a212187", + "unix": "1591084355" + }, + { + "hash": "2bffcbdc75d8aaf32b06acc2f9f493931782546d", + "message": "lint", + "num": 2, + "short_hash": "2bffcbdc7", + "unix": "1585304017" + }, + { + "hash": "62d30105b34ea23f3280539d9880037639aa770e", + "message": "linting covid19 cheminformatics tutorial", + "num": 1, + "short_hash": "62d30105b", + "unix": "1585300158" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Candidates" + } + ], + "label": "Candidates", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Candidates\"}", + "tool_version": null, + "type": "data_input", + "uuid": "47bf8c53-ae1e-4af6-bece-6adfd74b627c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cdab037e-aee1-49b8-a998-cd9fe7ddcdb7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mpro-x0195_0_apo-desolv.pdb" + } + ], + "label": "Mpro-x0195_0_apo-desolv.pdb", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 289.76666259765625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mpro-x0195_0_apo-desolv.pdb\"}", + "tool_version": null, + "type": "data_input", + "uuid": "156f4aeb-d160-456a-974e-7884b79cb83a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fd1c624-37c6-4874-b863-a40eac5e4994" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hits.sdf" + } + ], + "label": "hits.sdf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 400.5333251953125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"hits.sdf\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dd2d3bc0-8138-4e66-b2d9-e5e90e27b659", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1c8fb3cc-52ad-4f62-a00d-80b14b2c1d4a" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nCandidates\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nMpro-x0195_0_apo-desolv.pdb\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nhits.sdf\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Enumerate changes\"];\n 0 -->|output| 3;\n 4[\"Compound conversion\"];\n 1 -->|output| 4;\n 5[\"Create Frankenstein ligand\"];\n 2 -->|output| 5;\n 6[\"Compound conversion\"];\n 3 -->|output| 6;\n 7[\"rDock cavity definition\"];\n 4 -->|outfile| 7;\n 5 -->|outfile| 7;\n 8[\"Split file\"];\n 6 -->|outfile| 8;\n 9[\"rDock docking\"];\n 4 -->|outfile| 9;\n 8 -->|list_output_sdf| 9;\n 7 -->|activesite| 9;\n 10[\"Collapse Collection\"];\n 9 -->|output| 10;\n 11[\"XChem TransFS pose scoring\"];\n 1 -->|output| 11;\n 10 -->|output| 11;\n 12[\"Max SuCOS score\"];\n 11 -->|output| 12;\n 2 -->|output| 12;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Candidates" + } + ], + "label": "Candidates", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Candidates\"}", + "tool_version": null, + "type": "data_input", + "uuid": "47bf8c53-ae1e-4af6-bece-6adfd74b627c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cdab037e-aee1-49b8-a998-cd9fe7ddcdb7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mpro-x0195_0_apo-desolv.pdb" + } + ], + "label": "Mpro-x0195_0_apo-desolv.pdb", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 289.76666259765625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mpro-x0195_0_apo-desolv.pdb\"}", + "tool_version": null, + "type": "data_input", + "uuid": "156f4aeb-d160-456a-974e-7884b79cb83a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fd1c624-37c6-4874-b863-a40eac5e4994" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hits.sdf" + } + ], + "label": "hits.sdf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 400.5333251953125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"hits.sdf\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dd2d3bc0-8138-4e66-b2d9-e5e90e27b659", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1c8fb3cc-52ad-4f62-a00d-80b14b2c1d4a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create Frankenstein ligand", + "name": "infile" + } + ], + "label": null, + "name": "Create Frankenstein ligand", + "outputs": [ + { + "name": "outfile", + "type": "sdf" + } + ], + "position": { + "left": 478.76666259765625, + "top": 483.5333251953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "tool_shed_repository": { + "changeset_revision": "8e214e52e461", + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "081abe35-347a-4244-99ae-ec35329e3de0", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "53c557af-d5b9-4033-be54-7c197591e750" + } + ] + } + ], + "parent_id": "computational-chemistry/covid19-docking", + "path": "topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-covid19-docking/versions/workflow", + "tutorial_id": "covid19-docking", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.html", + "version": 3, + "wfid": "computational-chemistry-covid19-docking", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/2.4.2.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbcavity/rdock_rbcavity/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbdock/rdock_rbdock/0.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.4.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/0.2.3", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "xchem_pose_scoring" + ], + "workflowhub_id": "1079" + } + ], + "zenodo_link": "https://zenodo.org/record/3730474" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "autodock_vina", + "owner": "bgruening", + "revisions": "7a871df65202", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "autodock_vina_prepare_box", + "owner": "bgruening", + "revisions": "668c60aa4799", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "autodock_vina_prepare_receptor", + "owner": "bgruening", + "revisions": "05a13d377b28", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chembl", + "owner": "bgruening", + "revisions": "a446ea7e2bc1", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chemfp", + "owner": "bgruening", + "revisions": "73de2fe4bf92", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chemfp", + "owner": "bgruening", + "revisions": "43a9e7d9b24f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chemfp", + "owner": "bgruening", + "revisions": "73de2fe4bf92", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chemfp", + "owner": "bgruening", + "revisions": "e3a7d6cc87af", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chemfp", + "owner": "bgruening", + "revisions": "73de2fe4bf92", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chemical_data_sources", + "owner": "bgruening", + "revisions": "c2055dd1927b", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fpocket", + "owner": "bgruening", + "revisions": "4fb73be7f4cb", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "get_pdb", + "owner": "bgruening", + "revisions": "538790c6c21b", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "natural_product_likeness", + "owner": "bgruening", + "revisions": "6052dd3fa475", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "e2c36f62e22f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_svg_depiction", + "owner": "bgruening", + "revisions": "7672039a0bb0", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sdf_to_tab", + "owner": "bgruening", + "revisions": "4beb3e026bbb", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "f46f0e4f75c4", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: autodock_vina\n owner: bgruening\n revisions: 7a871df65202\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: autodock_vina_prepare_box\n owner: bgruening\n revisions: 668c60aa4799\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: autodock_vina_prepare_receptor\n owner: bgruening\n revisions: 05a13d377b28\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chembl\n owner: bgruening\n revisions: a446ea7e2bc1\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chemfp\n owner: bgruening\n revisions: 73de2fe4bf92\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chemfp\n owner: bgruening\n revisions: 43a9e7d9b24f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chemfp\n owner: bgruening\n revisions: 73de2fe4bf92\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chemfp\n owner: bgruening\n revisions: e3a7d6cc87af\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chemfp\n owner: bgruening\n revisions: 73de2fe4bf92\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chemical_data_sources\n owner: bgruening\n revisions: c2055dd1927b\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fpocket\n owner: bgruening\n revisions: 4fb73be7f4cb\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: get_pdb\n owner: bgruening\n revisions: 538790c6c21b\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: natural_product_likeness\n owner: bgruening\n revisions: 6052dd3fa475\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: e2c36f62e22f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_svg_depiction\n owner: bgruening\n revisions: 7672039a0bb0\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sdf_to_tab\n owner: bgruening\n revisions: 4beb3e026bbb\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: f46f0e4f75c4\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/cheminformatics/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/cheminformatics", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "computational-chemistry/cheminformatics", + "inexact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": 16452, + "mermaid": false + }, + "key_points": [ + "Docking allows 'virtual screening' of drug candidates", + "Molecular fingerprints encode features into a bitstring", + "The ChemicalToolbox contains many tools for cheminformatics analysis" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Create a small compound library using the ChEMBL database", + "Dock a variety of ligands to the active site of the Hsp90 protein" + ], + "pageviews": 27617, + "pub_date": "2019-10-19", + "questions": [ + "What is cheminformatics?", + "What is protein-ligand docking?", + "How can I perform a simple docking workflow in Galaxy?" + ], + "short_id": "T00048", + "short_tools": [ + "ctb_remDuplicates", + "sdf_to_tab", + "ctb_chemfp_nxn_clustering", + "fpocket", + "collapse_dataset", + "openbabel_svg_depiction", + "ctb_remIons", + "prepare_receptor", + "openbabel_compound_convert", + "ctb_np-likeness-calculator", + "ctb_obgrep", + "tp_find_and_replace", + "tp_cat", + "chembl", + "ctb_chemfp_butina_clustering", + "prepare_box", + "ctb_filter", + "ctb_online_data_fetch", + "ctb_compound_convert", + "docking", + "tp_grep_tool", + "get_pdb", + "ctb_change_title", + "ctb_chemfp_mol2fps" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "3H", + "title": "Protein-ligand docking", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/autodock_vina/docking/1.1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/autodock_vina_prepare_box/prepare_box/2021.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/autodock_vina_prepare_receptor/prepare_receptor/1.5.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_butina_clustering/1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_mol2fps/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_mol2fps/1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_nxn_clustering/0.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_nxn_clustering/1.5.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemical_data_sources/ctb_online_data_fetch/0.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/fpocket/fpocket/3.1.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/natural_product_likeness/ctb_np-likeness-calculator/2.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_change_title/0.0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_compound_convert/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_filter/1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_obgrep/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_remDuplicates/1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_remIons/1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sdf_to_tab/sdf_to_tab/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "cheminformatics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/cheminformatics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/cheminformatics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/cheminformatics/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 88, + "visitors": 15451, + "workflows": [ + { + "creators": [], + "description": "CTB Unittest workflow", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 11[label=\"Compound Search\"]\n 5 -> 11 [label=\"outfile\"]\n 13[label=\"Remove duplicated molecules\"]\n 5 -> 13 [label=\"outfile\"]\n 19[label=\"Remove counterions and fragments\"]\n 13 -> 19 [label=\"outfile\"]\n 2[label=\"Online data\"]\n 29[label=\"Filter\"]\n 19 -> 29 [label=\"outfile\"]\n 30[label=\"Compound Convert\"]\n 19 -> 30 [label=\"outfile\"]\n 31[label=\"Molecules to Fingerprints\"]\n 19 -> 31 [label=\"outfile\"]\n 39[label=\"Natural Product\"]\n 29 -> 39 [label=\"outfile\"]\n 40[label=\"Molecules to Fingerprints\"]\n 29 -> 40 [label=\"outfile\"]\n 44[label=\"NxN Clustering\"]\n 40 -> 44 [label=\"outfile\"]\n 5[label=\"Change Title\"]\n 2 -> 5 [label=\"output\"]\n}", + "history": [ + { + "hash": "52ea0ed9ee0a8920a6831112d60295283db993ee", + "message": "editing the workflow using the workflow editor", + "num": 6, + "short_hash": "52ea0ed9e", + "unix": "1582108026" + }, + { + "hash": "d681f0586063602176dd9f0a0c3b6901e1252c44", + "message": "disabled workflow with testtools", + "num": 5, + "short_hash": "d681f0586", + "unix": "1579166204" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 3, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "aa2ef61fb0b97cf82ea068696454cf18f729f01b", + "message": "initial cheminformatics commit", + "num": 1, + "short_hash": "aa2ef61fb", + "unix": "1560350110" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 11[\"Compound Search\"];\n 5 -->|outfile| 11;\n 13[\"Remove duplicated molecules\"];\n 5 -->|outfile| 13;\n 19[\"Remove counterions and fragments\"];\n 13 -->|outfile| 19;\n 2[\"Online data\"];\n 29[\"Filter\"];\n 19 -->|outfile| 29;\n 30[\"Compound Convert\"];\n 19 -->|outfile| 30;\n 31[\"Molecules to Fingerprints\"];\n 19 -->|outfile| 31;\n 39[\"Natural Product\"];\n 29 -->|outfile| 39;\n 40[\"Molecules to Fingerprints\"];\n 29 -->|outfile| 40;\n 44[\"NxN Clustering\"];\n 40 -->|outfile| 44;\n 5[\"Change Title\"];\n 2 -->|output| 5;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "CTB Workflow", + "outputs": [], + "parent_id": "computational-chemistry/cheminformatics", + "path": "topics/computational-chemistry/tutorials/cheminformatics/workflows/main_workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "CTB Workflow", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-cheminformatics/versions/main-workflow", + "tutorial_id": "cheminformatics", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/cheminformatics/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/cheminformatics/workflows/main_workflow.html", + "version": 4, + "wfid": "computational-chemistry-cheminformatics", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_mol2fps/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_nxn_clustering/0.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemical_data_sources/ctb_online_data_fetch/0.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/natural_product_likeness/ctb_np-likeness-calculator/2.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_change_title/0.0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_compound_convert/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_filter/1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_obgrep/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_remDuplicates/1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel/ctb_remIons/1.0" + ], + "workflowhub_id": "1075" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "get_pdb", + "owner": "bgruening", + "revisions": "538790c6c21b", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "b59c91adeac1", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "e2c36f62e22f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ambertools_acpype", + "owner": "chemteam", + "revisions": "f4230f116196", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ambertools_acpype", + "owner": "chemteam", + "revisions": "6ca543ec1bf8", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_pca", + "owner": "chemteam", + "revisions": "24867ab16f36", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_pca_visualize", + "owner": "chemteam", + "revisions": "f61a718993fd", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_rmsd", + "owner": "chemteam", + "revisions": "77e28e1da9f4", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bio3d_rmsf", + "owner": "chemteam", + "revisions": "6bcb804a54c3", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_editconf", + "owner": "chemteam", + "revisions": "3b8a9d5ced85", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_editconf", + "owner": "chemteam", + "revisions": "0fac8e2afc13", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_em", + "owner": "chemteam", + "revisions": "eb6564a60136", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_em", + "owner": "chemteam", + "revisions": "f5d979cb4b54", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_energy", + "owner": "chemteam", + "revisions": "d2f955aea23a", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_merge_topology_files", + "owner": "chemteam", + "revisions": "d1d0efda35c0", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_merge_topology_files", + "owner": "chemteam", + "revisions": "319a28774da9", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_setup", + "owner": "chemteam", + "revisions": "cac1886249a2", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_setup", + "owner": "chemteam", + "revisions": "2c349b027a01", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_sim", + "owner": "chemteam", + "revisions": "2e219a2d9327", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_sim", + "owner": "chemteam", + "revisions": "73008ef1f487", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_solvate", + "owner": "chemteam", + "revisions": "1809414a9454", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gmx_solvate", + "owner": "chemteam", + "revisions": "2c8ed1b52bf7", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "md_converter", + "owner": "chemteam", + "revisions": "79e8ab8f1e81", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "md_converter", + "owner": "chemteam", + "revisions": "ba83f0923369", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mdanalysis_cosine_analysis", + "owner": "chemteam", + "revisions": "9a3a1f698fc6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mdanalysis_cosine_analysis", + "owner": "chemteam", + "revisions": "48d6a6eb438b", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "vmd_hbonds", + "owner": "chemteam", + "revisions": "8aa5e465b043", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: get_pdb\n owner: bgruening\n revisions: 538790c6c21b\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: b59c91adeac1\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: e2c36f62e22f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ambertools_acpype\n owner: chemteam\n revisions: f4230f116196\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ambertools_acpype\n owner: chemteam\n revisions: 6ca543ec1bf8\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_pca\n owner: chemteam\n revisions: 24867ab16f36\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_pca_visualize\n owner: chemteam\n revisions: f61a718993fd\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_rmsd\n owner: chemteam\n revisions: 77e28e1da9f4\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bio3d_rmsf\n owner: chemteam\n revisions: 6bcb804a54c3\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_editconf\n owner: chemteam\n revisions: 3b8a9d5ced85\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_editconf\n owner: chemteam\n revisions: 0fac8e2afc13\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_em\n owner: chemteam\n revisions: eb6564a60136\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_em\n owner: chemteam\n revisions: f5d979cb4b54\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_energy\n owner: chemteam\n revisions: d2f955aea23a\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_merge_topology_files\n owner: chemteam\n revisions: d1d0efda35c0\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_merge_topology_files\n owner: chemteam\n revisions: 319a28774da9\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_setup\n owner: chemteam\n revisions: cac1886249a2\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_setup\n owner: chemteam\n revisions: 2c349b027a01\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_sim\n owner: chemteam\n revisions: 2e219a2d9327\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_sim\n owner: chemteam\n revisions: 73008ef1f487\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_solvate\n owner: chemteam\n revisions: 1809414a9454\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gmx_solvate\n owner: chemteam\n revisions: 2c8ed1b52bf7\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: md_converter\n owner: chemteam\n revisions: 79e8ab8f1e81\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: md_converter\n owner: chemteam\n revisions: ba83f0923369\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mdanalysis_cosine_analysis\n owner: chemteam\n revisions: 9a3a1f698fc6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mdanalysis_cosine_analysis\n owner: chemteam\n revisions: 48d6a6eb438b\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: vmd_hbonds\n owner: chemteam\n revisions: 8aa5e465b043\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/htmd-analysis/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + }, + { + "id": "tsenapathi", + "joined": "2019-05", + "name": "Tharindu Senapathi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tsenapathi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tsenapathi.json" + }, + { + "id": "chrisbarnettster", + "joined": "2019-05", + "name": "Christopher Barnett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/chrisbarnettster/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/chrisbarnettster.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/htmd-analysis", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "computational-chemistry/htmd-analysis", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Simulating protein-ligand systems is more complex than simply simulating protein-only systems.", + "There are a range of Galaxy tools for MD simulation (using GROMACS) and analysis.", + "Galaxy makes assembling and scaling up workflows for high-throughput MD straightforward for users." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn about force-fields and MD parameterization", + "Learn how to conduct MD simulation and analysis for a protein-ligand system", + "Understand how different molecular interactions contribute to the binding affinity of various ligands for the Hsp90 protein." + ], + "pageviews": 15545, + "pub_date": "2020-05-20", + "questions": [ + "How are protein-ligand systems parameterized for molecular dynamics simulation?", + "What kind of analysis can be carried out on molecular trajectories?", + "How can high-throughput MD be used to study multiple ligands?" + ], + "recordings": [ + { + "captioners": [ + "simonbray" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H40M", + "speakers": [ + "simonbray", + "chrisbarnettster" + ], + "youtube_id": "LjW3nES04bI" + } + ], + "short_id": "T00050", + "short_tools": [ + "gmx_editconf", + "gmx_merge_topology_files", + "bio3d_pca_visualize", + "gmx_setup", + "vmd_hbonds", + "tp_grep_tool", + "ambertools_acpype", + "md_converter", + "get_pdb", + "openbabel_compound_convert", + "gmx_em", + "bio3d_rmsd", + "mdanalysis_cosine_analysis", + "bio3d_pca", + "bio3d_rmsf", + "gmx_energy", + "gmx_solvate", + "gmx_sim" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "3H", + "title": "High Throughput Molecular Dynamics and Analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/2.4.2.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/chemteam/ambertools_acpype/ambertools_acpype/19.11", + "toolshed.g2.bx.psu.edu/repos/chemteam/ambertools_acpype/ambertools_acpype/21.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca_visualize/bio3d_pca_visualize/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2019.1.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2020.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_em/gmx_em/2019.1.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_em/gmx_em/2020.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_energy/gmx_energy/2020.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_merge_topology_files/gmx_merge_topology_files/3.2.0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_merge_topology_files/gmx_merge_topology_files/3.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_setup/gmx_setup/2019.1.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_setup/gmx_setup/2020.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2019.1.4.1", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2020.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_solvate/gmx_solvate/2019.1.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_solvate/gmx_solvate/2020.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/chemteam/md_converter/md_converter/1.9.3.2", + "toolshed.g2.bx.psu.edu/repos/chemteam/md_converter/md_converter/1.9.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_cosine_analysis/mdanalysis_cosine_analysis/0.20", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_cosine_analysis/mdanalysis_cosine_analysis/1.0.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/vmd_hbonds/vmd_hbonds/1.9.3" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "htmd-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/htmd-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/htmd-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/htmd-analysis/tutorial.json" + }, + "version": 18, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 160, + "visitors": 8309, + "workflows": [ + { + "creators": [], + "description": "High Throughput Molecular Dynamics and Analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[label=\"GROMACS structure configuration\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"MDTraj file converter\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"RMSD Analysis\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"RMSF Analysis\"]\n 2 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"output\"]\n 6[label=\"PCA\"]\n 2 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Cosine Content\"]\n 3 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"PCA visualization\"]\n 2 -> 8 [label=\"output\"]\n 3 -> 8 [label=\"output\"]\n 9[label=\"Hydrogen Bond Analysis using VMD\"]\n 3 -> 9 [label=\"output\"]\n 2 -> 9 [label=\"output\"]\n 10[label=\"RMSD Analysis\"]\n 2 -> 10 [label=\"output\"]\n 3 -> 10 [label=\"output\"]\n}", + "history": [ + { + "hash": "2a74c677081dfcdf29c3c05c38bcb07d131f412f", + "message": "fix workflows", + "num": 2, + "short_hash": "2a74c6770", + "unix": "1595329917" + }, + { + "hash": "3e9586df2283684cf7a452fb32a3ff0f69b48f4a", + "message": "HTMD tutorial (#1837)", + "num": 1, + "short_hash": "3e9586df2", + "unix": "1589995622" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Galaxy30-[GROMACS_simulation_on_data_28,_data_15,_and_data_26].gro" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Galaxy30-[GROMACS_simulation_on_data_28,_data_15,_and_data_26].gro\"}", + "tool_version": null, + "type": "data_input", + "uuid": "82ae4961-8bb0-440d-bed6-9206d8b9d860", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Galaxy31-[GROMACS_simulation_on_data_28,_data_15,_and_data_26].xtc" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Galaxy31-[GROMACS_simulation_on_data_28,_data_15,_and_data_26].xtc\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f67e98b9-2b4f-4d7d-9da7-ec3c23ffbd38", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"GROMACS structure configuration\"];\n 0 -->|output| 2;\n 3[\"MDTraj file converter\"];\n 1 -->|output| 3;\n 4[\"RMSD Analysis\"];\n 2 -->|output| 4;\n 3 -->|output| 4;\n 5[\"RMSF Analysis\"];\n 2 -->|output| 5;\n 3 -->|output| 5;\n 6[\"PCA\"];\n 2 -->|output| 6;\n 3 -->|output| 6;\n 7[\"Cosine Content\"];\n 3 -->|output| 7;\n 2 -->|output| 7;\n 8[\"PCA visualization\"];\n 2 -->|output| 8;\n 3 -->|output| 8;\n 9[\"Hydrogen Bond Analysis using VMD\"];\n 3 -->|output| 9;\n 2 -->|output| 9;\n 10[\"RMSD Analysis\"];\n 2 -->|output| 10;\n 3 -->|output| 10;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Workflow constructed from history 'Hsp90-MDAnalysis'", + "outputs": [], + "parent_id": "computational-chemistry/htmd-analysis", + "path": "topics/computational-chemistry/tutorials/htmd-analysis/workflows/analysis_workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "Workflow constructed from history 'Hsp90-MDAnalysis'", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-htmd-analysis/versions/analysis-workflow", + "tutorial_id": "htmd-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/htmd-analysis/workflows/analysis_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/htmd-analysis/workflows/analysis_workflow.html", + "version": 2, + "wfid": "computational-chemistry-htmd-analysis", + "wfname": "analysis-workflow", + "workflow": "analysis_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca/bio3d_pca/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_pca_visualize/bio3d_pca_visualize/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsd/bio3d_rmsd/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/bio3d_rmsf/bio3d_rmsf/2.3.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2019.1.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/md_converter/md_converter/1.9.3.2", + "toolshed.g2.bx.psu.edu/repos/chemteam/mdanalysis_cosine_analysis/mdanalysis_cosine_analysis/0.20", + "toolshed.g2.bx.psu.edu/repos/chemteam/vmd_hbonds/vmd_hbonds/1.9.3" + ], + "workflowhub_id": "1062" + }, + { + "creators": [], + "description": "High Throughput Molecular Dynamics and Analysis", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nPDB code e.g. 6hhr\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nLigand name e.g. AG5E\"]\n 2[label=\"Get PDB file\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Search in textfiles\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Search in textfiles\"]\n 2 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"GROMACS initial setup\"]\n 3 -> 5 [label=\"output\"]\n 6[label=\"Compound conversion\"]\n 4 -> 6 [label=\"output\"]\n 7[label=\"Generate MD topologies for small molecules\"]\n 6 -> 7 [label=\"outfile\"]\n 8[label=\"Merge GROMACS topologies\"]\n 7 -> 8 [label=\"gro_output\"]\n 5 -> 8 [label=\"output1\"]\n 5 -> 8 [label=\"output2\"]\n 7 -> 8 [label=\"output\"]\n 9[label=\"GROMACS structure configuration\"]\n 8 -> 9 [label=\"complex_gro\"]\n 10[label=\"GROMACS solvation and adding ions\"]\n 8 -> 10 [label=\"complex_top\"]\n 9 -> 10 [label=\"output\"]\n 11[label=\"GROMACS energy minimization\"]\n 10 -> 11 [label=\"output2\"]\n 10 -> 11 [label=\"output1\"]\n 12[label=\"GROMACS simulation\"]\n 5 -> 12 [label=\"output3\"]\n 10 -> 12 [label=\"output2\"]\n 11 -> 12 [label=\"output1\"]\n 13[label=\"GROMACS simulation\"]\n 5 -> 13 [label=\"output3\"]\n 10 -> 13 [label=\"output2\"]\n 12 -> 13 [label=\"output1\"]\n 12 -> 13 [label=\"output5\"]\n 14[label=\"GROMACS simulation\"]\n 10 -> 14 [label=\"output2\"]\n 13 -> 14 [label=\"output1\"]\n 13 -> 14 [label=\"output5\"]\n}", + "history": [ + { + "hash": "2a74c677081dfcdf29c3c05c38bcb07d131f412f", + "message": "fix workflows", + "num": 2, + "short_hash": "2a74c6770", + "unix": "1595329917" + }, + { + "hash": "3e9586df2283684cf7a452fb32a3ff0f69b48f4a", + "message": "HTMD tutorial (#1837)", + "num": 1, + "short_hash": "3e9586df2", + "unix": "1589995622" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "PDB code (e.g. 6hhr)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 229.5, + "top": 191.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"parameter_type\": \"text\"}", + "tool_version": null, + "type": "parameter_input", + "uuid": "73aff13d-acd3-41a0-8894-3104a93f9ad0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2a9ccaa8-d21d-4d92-8e8c-97822d8d5d9e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Ligand name (e.g. AG5E)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 230.5, + "top": 340.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"parameter_type\": \"text\"}", + "tool_version": null, + "type": "parameter_input", + "uuid": "4c514954-d86b-409d-aa30-70545b8522ea", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fb55337-8d3f-4918-a1af-14c28986ff07" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nPDB code e.g. 6hhr\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nLigand name e.g. AG5E\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"Get PDB file\"];\n 0 -->|output| 2;\n 3[\"Search in textfiles\"];\n 2 -->|output| 3;\n 4[\"Search in textfiles\"];\n 2 -->|output| 4;\n 1 -->|output| 4;\n 5[\"GROMACS initial setup\"];\n 3 -->|output| 5;\n 6[\"Compound conversion\"];\n 4 -->|output| 6;\n 7[\"Generate MD topologies for small molecules\"];\n 6 -->|outfile| 7;\n 8[\"Merge GROMACS topologies\"];\n 7 -->|gro_output| 8;\n 5 -->|output1| 8;\n 5 -->|output2| 8;\n 7 -->|output| 8;\n 9[\"GROMACS structure configuration\"];\n 8 -->|complex_gro| 9;\n 10[\"GROMACS solvation and adding ions\"];\n 8 -->|complex_top| 10;\n 9 -->|output| 10;\n 11[\"GROMACS energy minimization\"];\n 10 -->|output2| 11;\n 10 -->|output1| 11;\n 12[\"GROMACS simulation\"];\n 5 -->|output3| 12;\n 10 -->|output2| 12;\n 11 -->|output1| 12;\n 13[\"GROMACS simulation\"];\n 5 -->|output3| 13;\n 10 -->|output2| 13;\n 12 -->|output1| 13;\n 12 -->|output5| 13;\n 14[\"GROMACS simulation\"];\n 10 -->|output2| 14;\n 13 -->|output1| 14;\n 13 -->|output5| 14;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "MD protein-ligand workflow (from PDB structure)", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "PDB code (e.g. 6hhr)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 229.5, + "top": 191.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"parameter_type\": \"text\"}", + "tool_version": null, + "type": "parameter_input", + "uuid": "73aff13d-acd3-41a0-8894-3104a93f9ad0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2a9ccaa8-d21d-4d92-8e8c-97822d8d5d9e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Ligand name (e.g. AG5E)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 230.5, + "top": 340.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"parameter_type\": \"text\"}", + "tool_version": null, + "type": "parameter_input", + "uuid": "4c514954-d86b-409d-aa30-70545b8522ea", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fb55337-8d3f-4918-a1af-14c28986ff07" + } + ] + } + ], + "parent_id": "computational-chemistry/htmd-analysis", + "path": "topics/computational-chemistry/tutorials/htmd-analysis/workflows/main_workflow.ga", + "tags": [ + "cheminformatics", + "moleculardynamics", + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "MD protein-ligand workflow (from PDB structure)", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-htmd-analysis/versions/main-workflow", + "tutorial_id": "htmd-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/htmd-analysis/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/htmd-analysis/workflows/main_workflow.html", + "version": 2, + "wfid": "computational-chemistry-htmd-analysis", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/2.4.2.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/chemteam/ambertools_acpype/ambertools_acpype/19.11", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_editconf/gmx_editconf/2019.1.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_em/gmx_em/2019.1.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_merge_topology_files/gmx_merge_topology_files/3.2.0", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_setup/gmx_setup/2019.1.4", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_sim/gmx_sim/2019.1.4.1", + "toolshed.g2.bx.psu.edu/repos/chemteam/gmx_solvate/gmx_solvate/2019.1.4" + ], + "workflowhub_id": "1134" + } + ], + "zenodo_link": "https://zenodo.org/records/3813283" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/setting-up-molecular-systems/tutorial.json", + "contributors": [ + { + "id": "chrisbarnettster", + "joined": "2019-05", + "name": "Christopher Barnett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/chrisbarnettster/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/chrisbarnettster.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + }, + { + "email": "nadia.goue@uca.fr", + "id": "nagoue", + "joined": "2019-07", + "name": "Nadia Gou\u00e9", + "orcid": "0000-0003-2750-1473", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nagoue/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nagoue.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/setting-up-molecular-systems", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "md-simulation-namd" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "computational-chemistry/setting-up-molecular-systems", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The PDB is a key resource for finding protein structures.", + "Using CHARMM-GUI is one way to prepare a protein and ligand system.", + "To get data into Galaxy you can upload a file from your computer or paste in a web address." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "learn about the Protein Data Bank", + "learn how to set up up a model protein and ligand system (with CHARMM-GUI)", + "learn how to upload the system to Galaxy" + ], + "pageviews": 1939, + "pub_date": "2019-06-03", + "questions": [ + "How to get started modelling a protein and a ligand?" + ], + "requirements": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "setting-up-molecular-systems" + ], + "type": "internal" + } + ], + "short_id": "T00053", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Setting up molecular systems", + "tools": [], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "setting-up-molecular-systems", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/setting-up-molecular-systems/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/setting-up-molecular-systems/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/setting-up-molecular-systems/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 105, + "visitors": 1418, + "zenodo_link": "https://zenodo.org/record/2600690" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "ddf54b12c295", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "c3s", + "owner": "climate", + "revisions": "250554670f72", + "tool_panel_section_label": "Climate Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bam_to_sam", + "owner": "devteam", + "revisions": "88eedb4abea0", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "017aba02828d", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_to_tabular", + "owner": "devteam", + "revisions": "614a63f14adf", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "49370cb85f0f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: ddf54b12c295\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: c3s\n owner: climate\n revisions: 250554670f72\n tool_panel_section_label: Climate Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bam_to_sam\n owner: devteam\n revisions: 88eedb4abea0\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: 017aba02828d\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_to_tabular\n owner: devteam\n revisions: 614a63f14adf\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 49370cb85f0f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + } + ], + "dir": "topics/contributing/tutorials/create-new-tutorial", + "edam_operation": [ + "Primer removal", + "Read mapping", + "Data handling", + "Sequence file editing", + "Sequence trimming", + "Read pre-processing" + ], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/create-new-tutorial", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Finding good training datasets is hard!", + "Creating a new tutorial involves several steps: some are mandatory, some can be skipped even if they are recommended" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Create a tutorial from scratch", + "Link a tutorial to a topic", + "Create hands-on", + "Add technical support for a tutorial" + ], + "pageviews": 2080, + "pub_date": "2018-06-20", + "questions": [ + "How to integrate a new tutorial?", + "How to make a tutorial robust and reproducible?" + ], + "recordings": [ + { + "captioners": [ + "EngyNasr" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "42M", + "speakers": [ + "bebatut" + ], + "youtube_id": "Vw9h5kvRH2k" + } + ], + "short_id": "T00057", + "short_tools": [ + "cutadapt", + "tp_cut_tool", + "bowtie2", + "tp_cat", + "random_lines1", + "Cut1", + "bam_to_sam", + "Filter1", + "tp_sed_tool", + "fastq_to_tabular", + "seqtk_subseq", + "tp_sorted_uniq", + "c3s" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "writing", + "supported_servers": [], + "symlink": null, + "time_estimation": "15m", + "title": "Creating a new tutorial", + "tools": [ + "Cut1", + "Filter1", + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/climate/c3s/c3s/0.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bam_to_sam/bam_to_sam/2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_tabular/fastq_to_tabular/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5" + ], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "create-new-tutorial", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/create-new-tutorial/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial/tutorial.json" + }, + "version": 30, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 315, + "visitors": 1367, + "workflows": [ + { + "creators": [], + "description": "Creating a new tutorial", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRR891268_R1_20M.fastq.gz\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRR891268_R2_20M.fastq.gz\"]\n 10[label=\"Unique\"]\n 9 -> 10 [label=\"out_file1\"]\n 11[label=\"Text transformation\"]\n 10 -> 11 [label=\"outfile\"]\n 12[label=\"Concatenate datasets\"]\n 6 -> 12 [label=\"out_file1\"]\n 11 -> 12 [label=\"output\"]\n 13[label=\"Unique\"]\n 12 -> 13 [label=\"out_file1\"]\n 14[label=\"seqtk_subseq\"]\n 0 -> 14 [label=\"output\"]\n 13 -> 14 [label=\"outfile\"]\n 15[label=\"Text transformation\"]\n 13 -> 15 [label=\"outfile\"]\n 16[label=\"seqtk_subseq\"]\n 1 -> 16 [label=\"output\"]\n 15 -> 16 [label=\"output\"]\n 2[label=\"FASTQ to Tabular\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Cutadapt\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Cut\"]\n 2 -> 4 [label=\"output_file\"]\n 5[label=\"Bowtie2\"]\n 3 -> 5 [label=\"out1\"]\n 3 -> 5 [label=\"out2\"]\n 6[label=\"Select random lines\"]\n 4 -> 6 [label=\"output\"]\n 7[label=\"BAM-to-SAM\"]\n 5 -> 7 [label=\"output\"]\n 8[label=\"Filter\"]\n 7 -> 8 [label=\"output1\"]\n 9[label=\"Cut\"]\n 8 -> 9 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "2e196e9308b3391faf5e4d6c545ffa15b7b7bbfd", + "message": "move workflow file to repo and minor tweaks", + "num": 1, + "short_hash": "2e196e930", + "unix": "1564742477" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR891268_R1_20M.fastq.gz" + } + ], + "label": "SRR891268_R1_20M.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 204, + "top": 243 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR891268_R1_20M.fastq.gz\"}", + "tool_version": null, + "type": "data_input", + "uuid": "6bf853bb-91c6-4dfe-99b5-bac66836a3cc", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR891268_R2_20M.fastq.gz" + } + ], + "label": "SRR891268_R2_20M.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 190.5, + "top": 325.5 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR891268_R2_20M.fastq.gz\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cb935121-adbd-4f05-9bae-39b7ab2da6b6", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSRR891268_R1_20M.fastq.gz\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSRR891268_R2_20M.fastq.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Unique\"];\n 9 -->|out_file1| 10;\n 11[\"Text transformation\"];\n 10 -->|outfile| 11;\n 12[\"Concatenate datasets\"];\n 6 -->|out_file1| 12;\n 11 -->|output| 12;\n 13[\"Unique\"];\n 12 -->|out_file1| 13;\n 14[\"seqtk_subseq\"];\n 0 -->|output| 14;\n 13 -->|outfile| 14;\n 15[\"Text transformation\"];\n 13 -->|outfile| 15;\n 16[\"seqtk_subseq\"];\n 1 -->|output| 16;\n 15 -->|output| 16;\n 2[\"FASTQ to Tabular\"];\n 0 -->|output| 2;\n 3[\"Cutadapt\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Cut\"];\n 2 -->|output_file| 4;\n 5[\"Bowtie2\"];\n 3 -->|out1| 5;\n 3 -->|out2| 5;\n 6[\"Select random lines\"];\n 4 -->|output| 6;\n 7[\"BAM-to-SAM\"];\n 5 -->|output| 7;\n 8[\"Filter\"];\n 7 -->|output1| 8;\n 9[\"Cut\"];\n 8 -->|out_file1| 9;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "MakeAFakeInput", + "outputs": [], + "parent_id": "contributing/create-new-tutorial", + "path": "topics/contributing/tutorials/create-new-tutorial/workflows/Galaxy-Workflow-MakeAFakeInput.ga", + "tags": [ + "contributing" + ], + "test_results": null, + "tests": false, + "title": "MakeAFakeInput", + "topic_id": "contributing", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/contributing-create-new-tutorial/versions/galaxy-workflow-makeafakeinput", + "tutorial_id": "create-new-tutorial", + "url": "https://training.galaxyproject.org/training-material/topics/contributing/tutorials/create-new-tutorial/workflows/Galaxy-Workflow-MakeAFakeInput.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/contributing/tutorials/create-new-tutorial/workflows/Galaxy-Workflow-MakeAFakeInput.html", + "version": 4, + "wfid": "contributing-create-new-tutorial", + "wfname": "galaxy-workflow-makeafakeinput", + "workflow": "Galaxy-Workflow-MakeAFakeInput.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bam_to_sam/bam_to_sam/2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_tabular/fastq_to_tabular/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5" + ], + "workflowhub_id": "1307" + }, + { + "creators": [], + "description": "Retrieve climate data from Copernicus", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAPI Request file\"]\n 1[label=\"Copernicus Climate Data Store\"]\n 0 -> 1 [label=\"output\"]\n}", + "history": [ + { + "hash": "072570b000f94db5c676646e57bdee2a8e9e66bd", + "message": "Change example in tutorial for creating tutorial", + "num": 1, + "short_hash": "072570b00", + "unix": "1623401909" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "API Request file" + } + ], + "label": "API Request file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 421.6999969482422, + "height": 82.19999694824219, + "left": 497, + "right": 697, + "top": 339.5, + "width": 200, + "x": 497, + "y": 339.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a74c9437-9abe-4b6b-9a1d-ddea0a243565", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9b185f3d-97a2-4857-b174-839d9be57c90" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAPI Request file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Copernicus Climate Data Store\"];\n 0 -->|output| 1;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Retrieve climate data from Copernicus", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "API Request file" + } + ], + "label": "API Request file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 421.6999969482422, + "height": 82.19999694824219, + "left": 497, + "right": 697, + "top": 339.5, + "width": 200, + "x": 497, + "y": 339.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a74c9437-9abe-4b6b-9a1d-ddea0a243565", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9b185f3d-97a2-4857-b174-839d9be57c90" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/climate/c3s/c3s/0.1.0", + "errors": null, + "id": 1, + "input_connections": { + "is_file|api_req_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Copernicus Climate Data Store", + "name": "is_file" + } + ], + "label": null, + "name": "Copernicus Climate Data Store", + "outputs": [ + { + "name": "request", + "type": "txt" + }, + { + "name": "ofilename", + "type": "netcdf" + } + ], + "position": { + "bottom": 494.5, + "height": 144, + "left": 909, + "right": 1109, + "top": 350.5, + "width": 200, + "x": 909, + "y": 350.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/climate/c3s/c3s/0.1.0", + "tool_shed_repository": { + "changeset_revision": "250554670f72", + "name": "c3s", + "owner": "climate", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"is_file\": {\"has_req\": \"yes\", \"__current_case__\": 0, \"api_req_file\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "5e0cad3c-826e-4e7c-8844-7a7e903f15cb", + "workflow_outputs": [ + { + "label": null, + "output_name": "ofilename", + "uuid": "a56ccd61-78ca-4bb8-beb3-785955f2831e" + }, + { + "label": null, + "output_name": "request", + "uuid": "62ec4f99-49f4-4a36-ab50-82567abcfa51" + } + ] + } + ], + "parent_id": "contributing/create-new-tutorial", + "path": "topics/contributing/tutorials/create-new-tutorial/workflows/main_workflow.ga", + "tags": [ + "contributing" + ], + "test_results": null, + "tests": false, + "title": "Retrieve climate data from Copernicus", + "topic_id": "contributing", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/contributing-create-new-tutorial/versions/main-workflow", + "tutorial_id": "create-new-tutorial", + "url": "https://training.galaxyproject.org/training-material/topics/contributing/tutorials/create-new-tutorial/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/contributing/tutorials/create-new-tutorial/workflows/main_workflow.html", + "version": 1, + "wfid": "contributing-create-new-tutorial", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/climate/c3s/c3s/0.1.0" + ], + "workflowhub_id": "1312" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/contributing/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "contributing/introduction", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-01-12", + "pageviews": 5726880, + "priority": 1, + "pub_date": "2017-06-25", + "redirect_from": [ + "/topics/contributing/slides/introduction", + "/short/contributing/introduction/slides", + "/short/S00042" + ], + "short_id": "S00042", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "title": "Overview of the Galaxy Training Material", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/introduction/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/github-command-line-contribution/tutorial.json", + "contributors": [ + { + "id": "cmonjeau", + "joined": "2017-09", + "name": "Cyril Monjeaud", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cmonjeau/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cmonjeau.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/contributing/tutorials/github-command-line-contribution", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/github-command-line-contribution", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Work on your fork", + "1 branch = 1 feature", + "1 pull request = 1 branch", + "Be careful of the branch you're working on", + "Check the automated tests" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Fork a repository on GitHub", + "Clone a remote repository locally", + "Create a branch", + "Commit changes", + "Push changes to a remote repository", + "Create a pull request", + "Update a pull request" + ], + "pageviews": 5731396, + "pub_date": "2017-06-12", + "questions": [ + "How can I contribute to an open-source project with GitHub?", + "What is the GitHub flow?" + ], + "short_id": "T00064", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "contribute", + "supported_servers": [], + "symlink": null, + "time_estimation": "30m", + "title": "Contributing with GitHub via command-line", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "github-command-line-contribution", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/github-command-line-contribution/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/github-command-line-contribution/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/github-command-line-contribution/tutorial.json" + }, + "version": 21, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 197, + "visitors": 2066555 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-slides/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/contributing/tutorials/create-new-tutorial-slides", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "contributing/create-new-tutorial-slides", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Slides are often presented before the hands-on portion, provide relevant background information", + "Provide examples that are relevant to your audience" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-08-08", + "objectives": [ + "Create a new set of slides", + "Add presenter comments" + ], + "pageviews": 5726880, + "pub_date": "2018-06-13", + "questions": [ + "How to format slides?", + "How do we add presenter notes?", + "How to use the features of the slide show tool?", + "What sort of content should be included in slides?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "5M", + "speakers": [ + "awspolly" + ], + "youtube_id": "Gm1MKAwuLxg" + } + ], + "short_id": "S00040", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "5M", + "speakers": [ + "awspolly" + ], + "youtube_id": "Gm1MKAwuLxg" + } + ], + "subtopic": "writing", + "supported_servers": [], + "symlink": null, + "time_estimation": null, + "title": "Creating Slides", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "create-new-tutorial-slides", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/create-new-tutorial-slides/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-slides/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-slides/slides.json" + }, + "version": 16, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-tours/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/contributing/tutorials/create-new-tutorial-tours", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/create-new-tutorial-tours", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The Interactive Tours are a good training object for self-learning at its own speed", + "It is now easy to create an Interactive Tour and test it" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Creating a Galaxy tour from scratch", + "Deploying and running a tour" + ], + "pageviews": 405, + "pub_date": "2017-06-25", + "questions": [ + "What is a Interactive Galaxy Tour?", + "How can we create an Interactive Tour?" + ], + "short_id": "T00061", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "15m", + "title": "Creating Interactive Galaxy Tours", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "create-new-tutorial-tours", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/create-new-tutorial-tours/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-tours/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-tours/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 167, + "visitors": 247 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-topic/tutorial.json", + "contributions": { + "authorship": [ + "bebatut" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/contributing/tutorials/create-new-topic", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/create-new-topic", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A new topic can be easily added for new tutorials" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Create a new topic", + "Set up the metadata for a topic" + ], + "pageviews": 1155, + "pub_date": "2018-06-04", + "questions": [ + "How to include a new topic?", + "What kinds of Topics are possible?" + ], + "short_id": "T00056", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "30m", + "title": "Including a new topic", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "create-new-topic", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/create-new-topic/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-topic/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-topic/tutorial.json" + }, + "version": 30, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 27, + "visitors": 776 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/schemas/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/contributing/tutorials/schemas", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/schemas", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-04", + "objectives": [ + "Know where to find all of the available metadata, so you can reference it later." + ], + "pageviews": 259, + "pub_date": "2022-06-02", + "questions": [ + "What metadata is required or possible to set in a Tutorial, Slide, Topic, or FAQ" + ], + "short_id": "T00070", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "10m", + "title": "GTN Metadata", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "schemas", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/schemas/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/schemas/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/schemas/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 186, + "visitors": 189 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/running-jekyll/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/contributing/tutorials/running-jekyll", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/running-jekyll", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Checking the generated website can be done locally" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-03", + "objectives": [ + "Installing packages needed for rendering the webpage", + "Running the GTN material website locally", + "Tracking changes to the content live in the webbrowser" + ], + "pageviews": 1492, + "pub_date": "2017-06-25", + "questions": [ + "How to setup the infrastructure to build training webpages?" + ], + "short_id": "T00069", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "writing", + "supported_servers": [], + "symlink": null, + "time_estimation": "15m", + "title": "Running the GTN website locally", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "running-jekyll", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/running-jekyll/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/running-jekyll/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/running-jekyll/tutorial.json" + }, + "version": 25, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 208, + "visitors": 1079 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/learning-principles/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom", + "allegravia", + "ppalagi", + "gallardoalba", + "elixir-goblet-ttt" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "allegravia", + "joined": "2022-09", + "name": "Allegra Via", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/allegravia/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/allegravia.json" + }, + { + "id": "ppalagi", + "joined": "2022-09", + "name": "Patricia Palagi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ppalagi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ppalagi.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "avatar": "/training-material/shared/images/elixir.png", + "github": false, + "id": "elixir-goblet-ttt", + "joined": "2022-09", + "name": "ELIXIR Goblet Train the Trainers", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-goblet-ttt/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/elixir-goblet-ttt.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/contributing/tutorials/learning-principles", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/learning-principles", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Teaching and training is not only a matter of knowledge", + "Educators help learners, specially novices, build and develop mental models", + "Educators help learners make connections", + "Educators should be aware of the limitations of expertise, e.g. the expert blind spot or fluid representations", + "Educators should detect and remediate misconceptions" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-23", + "objectives": [ + "Describe how learning works according to a few learning models", + "Explain how learning models can help you improve your teaching in the classroom", + "List learning strategies and principles suggested by evidence-based research results" + ], + "pageviews": 4820, + "pub_date": "2022-09-23", + "questions": [ + "What are the main principles that drive learning?", + "How can these principles be applied to training and teaching?" + ], + "quiz": [ + { + "contributors": [ + "bebatut" + ], + "id": "learning_metaphors.yaml", + "path": "topics/contributing/tutorials/learning-principles/quiz/learning_metaphors.yaml", + "title": "Learning metaphors" + }, + { + "contributors": [ + "bebatut" + ], + "id": "overloading_short_term_memory.yaml", + "path": "topics/contributing/tutorials/learning-principles/quiz/overloading_short_term_memory.yaml", + "title": "How can you avoid to overload learners working memory?" + }, + { + "contributors": [ + "bebatut" + ], + "id": "short_term_memory.yaml", + "path": "topics/contributing/tutorials/learning-principles/quiz/short_term_memory.yaml", + "title": "How short is your short term memory?" + }, + { + "contributors": [ + "bebatut" + ], + "id": "teaching_or_training.yaml", + "path": "topics/contributing/tutorials/learning-principles/quiz/teaching_or_training.yaml", + "title": "Teaching or training?" + }, + { + "contributors": [ + "bebatut" + ], + "id": "verbs.yaml", + "path": "topics/contributing/tutorials/learning-principles/quiz/verbs.yaml", + "title": "Identify observable and non observable actions (verbs)" + } + ], + "short_id": "T00067", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pedagogy", + "supported_servers": [], + "symlink": null, + "time_estimation": "2h", + "title": "Principles of learning and how they apply to training and teaching", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "learning-principles", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/learning-principles/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/learning-principles/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/learning-principles/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 50, + "visitors": 4008 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/admin-knitting/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/contributing/tutorials/admin-knitting", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/admin-knitting", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The knitting script works OK?", + "Learn to rebase now, if you haven't yet", + "git am is not fun", + "If you have issues, ping me." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-23", + "objectives": [ + "Update some text in an earlier commit" + ], + "pageviews": 89, + "pub_date": "2021-06-07", + "questions": [ + "How does it work?" + ], + "short_id": "T00055", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "5m", + "title": "Updating diffs in admin training", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "admin-knitting", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/admin-knitting/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/admin-knitting/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/admin-knitting/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 5, + "visitors": 48 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/github-interface-contribution/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/contributing/tutorials/github-interface-contribution", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/github-interface-contribution", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "You can't add or push directly to the `main` branch, so you need to create a pull request", + "1 pull request = 1 branch", + "The pull request is the foundation of the collaborative development of the training material" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Edit a file via GitHub interface", + "Create a pull request", + "Update a pull request" + ], + "pageviews": 906, + "pub_date": "2018-06-12", + "questions": [ + "How can I contribute to an open-source project with GitHub and its interface" + ], + "short_id": "T00065", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "contribute", + "supported_servers": [], + "symlink": null, + "time_estimation": "20m", + "title": "Contributing with GitHub via its interface", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "github-interface-contribution", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/github-interface-contribution/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/github-interface-contribution/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/github-interface-contribution/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 136, + "visitors": 572 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/design/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom", + "allegravia", + "ppalagi", + "elixir-goblet-ttt" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "allegravia", + "joined": "2022-09", + "name": "Allegra Via", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/allegravia/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/allegravia.json" + }, + { + "id": "ppalagi", + "joined": "2022-09", + "name": "Patricia Palagi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ppalagi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ppalagi.json" + }, + { + "avatar": "/training-material/shared/images/elixir.png", + "github": false, + "id": "elixir-goblet-ttt", + "joined": "2022-09", + "name": "ELIXIR Goblet Train the Trainers", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-goblet-ttt/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/elixir-goblet-ttt.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/contributing/tutorials/design", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/design", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Course development is a multi-step, iterative process", + "The first step is to identify intended (SMART) LOs", + "Identification of key content only becomes relevant after LOs & suitable LEs have been identified", + "Bloom's taxonomy can facilitate the articulation of measurable LOs, & support the development of cognitive complexity through them", + "Messick's questions help to align KSAs, instruction & assessment", + "For successful outcomes, learners & the course must be evaluated (it isn't sufficient simply to note 'completers' or learner satisfaction)", + "A successful course guides learners from entry-level performance to the minimum performance level for achieving its target LOs", + "In a course designed to support learners & LOs, the instruction that's delivered & learning that's intended are more likely to align, thereby providing the optimal circumstances for learner success." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "List five key phases of curriculum & course development", + "Explain the primary role of learning outcomes", + "Write learning outcomes for a course", + "Identify the Bloom\u2019s-level accomplishments that different types of learning experience are likely to support", + "Describe the role of learning outcomes in selecting relevant content", + "Distinguish different types of assessment & their role in supporting learner progression towards learning outcomes", + "Summarise the benefits of course evaluation" + ], + "pageviews": 571, + "pub_date": "2022-09-23", + "questions": [ + "Is the structured approach to course design?", + "How to articulate learning outcomes commensurate with the cognitive complexity of the target learning?", + "How to devise learning experiences and course content?", + "What are the steps that can help trainers devise and deploy effective courses?" + ], + "quiz": [ + { + "contributors": [ + "bebatut" + ], + "id": "LEs_GTN_tutorials.yaml", + "path": "topics/contributing/tutorials/design/quiz/LEs_GTN_tutorials.yaml", + "title": "LEs in GTN tutorials" + }, + { + "contributors": [ + "bebatut" + ], + "id": "assessments_GTN_tutorials.yaml", + "path": "topics/contributing/tutorials/design/quiz/assessments_GTN_tutorials.yaml", + "title": "Evaluate assessment in GTN tutorials" + }, + { + "contributors": [ + "bebatut" + ], + "id": "effectiveness_GTN_tutorials.yaml", + "path": "topics/contributing/tutorials/design/quiz/effectiveness_GTN_tutorials.yaml", + "title": "Evaluate effectiveness in GTN tutorials" + }, + { + "contributors": [ + "bebatut" + ], + "id": "evaluate_learning_outcomes.yaml", + "path": "topics/contributing/tutorials/design/quiz/evaluate_learning_outcomes.yaml", + "title": "Evaluate Learning outcomes" + } + ], + "requirements": [ + { + "topic_name": "contributing", + "tutorials": [ + "learning-principles" + ], + "type": "internal" + } + ], + "short_id": "T00062", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pedagogy", + "supported_servers": [], + "symlink": null, + "time_estimation": "60m", + "title": "Design and plan session, course, materials", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "design", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/design/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/design/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/design/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 174, + "visitors": 404 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/generating-pdf/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/contributing/tutorials/generating-pdf", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/generating-pdf", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "PDFs can be easily generated for the different tutorials to share with learnees or to keep a fixed version of a tutorial" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Generating PDFs" + ], + "pageviews": 74, + "pub_date": "2018-06-04", + "questions": [ + "How to generate PDF of the different tutorials and slides?" + ], + "short_id": "T00063", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "10m", + "title": "Generating PDF artefacts of the website", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "generating-pdf", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/generating-pdf/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/generating-pdf/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/generating-pdf/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 217, + "visitors": 59 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/slides-with-video/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/contributing/tutorials/slides-with-video", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/slides-with-video", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Thanks to the GTN, videos are easy to add", + "Be mindful of your captions. Short sentences are good!" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Adding a video to a set of slides" + ], + "pageviews": 312, + "pub_date": "2020-10-20", + "questions": [ + "How can we add auto-generated video?", + "How does it work?", + "What do I need to do to make it optimal for viewers?" + ], + "short_id": "T00071", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "writing", + "supported_servers": [], + "symlink": null, + "time_estimation": "20m", + "title": "Adding auto-generated video to your slides", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "slides-with-video", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/slides-with-video/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/slides-with-video/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/slides-with-video/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 262, + "visitors": 235 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/gitpod/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/contributing/tutorials/gitpod", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/gitpod", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "GitPod can be used to serve the GTN training materials" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Preview the GTN website online via GitPod", + "Make changes to the GTN website and preview those changes" + ], + "pageviews": 1314, + "pub_date": "2021-06-24", + "questions": [ + "How can I get a preview of the GTN website using GitPod?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "20M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "_-wnsPttBCo" + } + ], + "short_id": "T00066", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "writing", + "supported_servers": [], + "symlink": null, + "time_estimation": "15m", + "title": "Running the GTN website online using GitPod", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gitpod", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/gitpod/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/gitpod/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/gitpod/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 168, + "visitors": 916 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-quiz/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/contributing/tutorials/create-new-tutorial-quiz", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/create-new-tutorial-quiz", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Quizzes are helpful for both self-directed learning, and ensuring that in synchronous classes, students are all following the material" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2022-10-18", + "objectives": [ + "Create a quiz" + ], + "pageviews": 86, + "pub_date": "2022-05-19", + "questions": [ + "How to make a quiz?" + ], + "quiz": [ + { + "contributors": [ + "hexylena" + ], + "id": "a.yaml", + "path": "topics/contributing/tutorials/create-new-tutorial-quiz/quiz/a.yaml", + "title": "Test Quiz" + } + ], + "short_id": "T00059", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "15m", + "title": "Adding Quizzes to your Tutorial", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "create-new-tutorial-quiz", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/create-new-tutorial-quiz/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-quiz/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-quiz/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 16, + "visitors": 73 + }, + { + "abbreviations": { + "API": "Application Programming Interface", + "JSON": "JavaScript Object Notation" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "multiqc", + "owner": "iuc", + "revisions": "bf675f34b056", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: multiqc\n owner: iuc\n revisions: bf675f34b056\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-content/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "hexylena" + ], + "editing": [ + "bgruening", + "shiltemann" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/contributing/tutorials/create-new-tutorial-content", + "edam_operation": [ + "Sequencing quality control", + "Validation" + ], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/create-new-tutorial-content", + "js_requirements": { + "mathjax": 13775, + "mermaid": false + }, + "key_points": [ + "You can highlight questions, tools and hints with a special syntax", + "Self-learning can be done by questions and hidden answers" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-26", + "objectives": [ + "Create hands-on", + "Use the different boxes" + ], + "pageviews": 9110, + "pub_date": "2017-06-25", + "questions": [ + "How to write a tutorial with hands-on?", + "What are the different boxes?", + "How can I add a caption to an image?" + ], + "short_id": "T00058", + "short_tools": [ + "upload1", + "multiqc" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "writing", + "supported_servers": [], + "symlink": null, + "time_estimation": "15m", + "title": "Creating content in Markdown", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "upload1" + ], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "create-new-tutorial-content", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/create-new-tutorial-content/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-content/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-content/tutorial.json" + }, + "version": 81, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 122, + "visitors": 3243 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-technical/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/contributing/tutorials/create-new-tutorial-technical", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/create-new-tutorial-technical", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Tools, data and workflows can be easily integrated in a Docker flavor to have a useful technical support for a tutorial", + "A Galaxy Docker flavor is a great support for training", + "A Galaxy Docker flavor can be deployed 'anywhere' and is scalable" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-24", + "objectives": [ + "Extracting the technical description for a tutorial", + "Populating an existing instance with the needed tools, data and workflows for a tutorial", + "Creating a Galaxy Docker flavor with the needed tools, data and workflows for a tutorial", + "Testing the Galaxy Docker flavor of a tutorial" + ], + "pageviews": 594, + "pub_date": "2017-06-25", + "questions": [ + "How can we define the technical infrastructure for a tutorial?", + "How to define the tools needed for a tutorial?", + "How to add the needed data directly in an instance?", + "How to add the workflows related to a tutorial?", + "How can we check the technical infrastructure is working?", + "How can we make an existing Galaxy instance able to run a tutorial?" + ], + "short_id": "T00060", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "writing", + "supported_servers": [], + "symlink": null, + "time_estimation": "30m", + "title": "Tools, Data, and Workflows for tutorials", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "create-new-tutorial-technical", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/create-new-tutorial-technical/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-technical/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/create-new-tutorial-technical/tutorial.json" + }, + "version": 25, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 109, + "visitors": 415 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/python/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "editing": [ + "bazante1" + ], + "testing": [ + "dirowa" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + } + ], + "dir": "topics/contributing/tutorials/python", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/python", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Debugging code is an absolutely critical skill for students that they need ot become familiar with early on.", + "There are a lot of strategies you can teach students to give them the necessary skills for this, such as Wolf Fence debugging.", + "Or simply adding print statements so they can trace the code's execution.", + "Fading examples helps students become more independent as they work onwards through problems.", + "Conversely compounding problems are sometimes a good fit for homework to give numerous \"easy\" problems followed by some \"stretch\" goals that students can reach for, combining their previous work.", + "Pair progarmming is proven to improve student learning outcomes, when applied correctly." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-23", + "objectives": [ + "Learn about four different problem design ideas, and one teaching methodology." + ], + "pageviews": 429, + "pub_date": "2022-10-19", + "questions": [ + "What methods can I incorporate to improve student material uptake within my python courses?", + "How do I write problems that use these methodologies" + ], + "short_id": "T00068", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "writing", + "supported_servers": [], + "symlink": null, + "time_estimation": "2h", + "title": "Teaching Python", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/python/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/python/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/python/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 40, + "visitors": 143 + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable", + "GTN": "Galaxy Training Network" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/fair-gtn/tutorial.json", + "contributions": { + "authorship": [ + "kkamieniecka", + "poterlowicz-lab" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/contributing/tutorials/fair-gtn", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "contributing/fair-gtn", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "FAIR principles in Galaxy training development and content creation." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-18", + "objectives": [ + "Learn about metadata and findability", + "Learn how to support system and content curation" + ], + "pageviews": 0, + "priority": 3, + "pub_date": "2024-08-18", + "questions": [ + "What are the FAIR training materials?", + "How to test, reproduce and share your content?", + "How to collaborate and don\u2019t duplicate?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro" + ], + "type": "internal" + } + ], + "short_id": "T00363", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": [], + "symlink": true, + "tags": [ + "fair", + "gtn", + "training" + ], + "time_estimation": "30M", + "title": "FAIR Galaxy Training Material", + "tools": [], + "topic_name": "contributing", + "topic_name_human": "Contributing to the Galaxy Training Material", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-gtn", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/contributing/tutorials/fair-gtn/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/fair-gtn/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/contributing/tutorials/fair-gtn/tutorial.json" + }, + "version": 0, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 0, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "e522022137f6", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "compose_text_param", + "owner": "iuc", + "revisions": "e188c9826e0f", + "tool_panel_section_label": "Expression Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pangolin", + "owner": "iuc", + "revisions": "b6abccb1f25b", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bcftools_consensus\n owner: iuc\n revisions: e522022137f6\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: compose_text_param\n owner: iuc\n revisions: e188c9826e0f\n tool_panel_section_label: Expression Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pangolin\n owner: iuc\n revisions: b6abccb1f25b\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-automation/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/workflow-automation", + "edam_operation": [ + "Variant classification", + "Tree-based sequence alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/workflow-automation", + "inexact_supported_servers": [ + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Workflows can be executed not only through the web browser, but also via the command line.", + "Executing workflows programmatically allows automation of analyses." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn to use the `planemo run` subcommand to run workflows from the command line.", + "Be able to write simple shell scripts for running multiple workflows concurrently or sequentially.", + "Learn how to use Pangolin to assign annotated variants to lineages." + ], + "pageviews": 2720, + "pub_date": "2021-06-08", + "questions": [ + "How can I schedule and run tens or hundreds of Galaxy workflows easily?", + "How can I automate my analyses when large amounts of data are being produced daily?" + ], + "recordings": [ + { + "captioners": [ + "simonbray" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "simonbray" + ], + "youtube_id": "o39QjVnLG68" + } + ], + "requirements": [ + { + "title": "Familiarity with Galaxy and basic associated concepts, in particular workflows", + "type": "none" + }, + { + "title": "Basic knowledge of the command line", + "type": "none" + } + ], + "short_id": "T00162", + "short_tools": [ + "bcftools_consensus", + "compose_text_param", + "pangolin", + "snpSift_filter", + "collapse_dataset" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "workflows", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "workflows", + "variant-analysis", + "covid19" + ], + "time_estimation": "2h", + "title": "Automating Galaxy workflows using the command line", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.10", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/2.3.8", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "workflow-automation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/workflow-automation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-automation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-automation/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 118, + "visitors": 2200, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-9464-6640", + "name": "Wolfgang Maier" + } + ], + "description": "workflow-automation", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nVariant calls\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nmin-AF for consensus variant\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome\"]\n 3[label=\"Compose text parameter value\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"SnpSift Filter\"]\n 3 -> 4 [label=\"out1\"]\n 0 -> 4 [label=\"output\"]\n kee67c5edff7c404bad2019259edbc671[color=lightseagreen,label=\"Output\\nconsensus_variants\"]\n 4 -> kee67c5edff7c404bad2019259edbc671\n 5[label=\"bcftools consensus\"]\n 4 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n k9028f80e411240d89a49f671677d304f[color=lightseagreen,label=\"Output\\nconsensus\"]\n 5 -> k9028f80e411240d89a49f671677d304f\n 6[label=\"Collapse Collection\"]\n 5 -> 6 [label=\"output_file\"]\n k1dd7978eb90742d68fc4f6fadeefcad1[color=lightseagreen,label=\"Output\\nmultisample_consensus_fasta\"]\n 6 -> k1dd7978eb90742d68fc4f6fadeefcad1\n 7[label=\"Pangolin\"]\n 6 -> 7 [label=\"output\"]\n ke02d2cfb98424069957c6cf4ec197056[color=lightseagreen,label=\"Output\\npangolin_results\"]\n 7 -> ke02d2cfb98424069957c6cf4ec197056\n}", + "history": [ + { + "hash": "486585510e665c834a43668e2a769dd69654b9d6", + "message": "add WF automation tutorial", + "num": 1, + "short_hash": "486585510", + "unix": "1622197006" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Variant calls" + } + ], + "label": "Variant calls", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 425.43333435058594, + "height": 61.80000305175781, + "left": 297, + "right": 497, + "top": 363.6333312988281, + "width": 200, + "x": 297, + "y": 363.6333312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "fca4e710-87a7-4cb6-9ff1-f9a8dc84ca37", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "min-AF for consensus variant" + } + ], + "label": "min-AF for consensus variant", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 619.1000061035156, + "height": 102.60000610351562, + "left": 295.45001220703125, + "right": 495.45001220703125, + "top": 516.5, + "width": 200, + "x": 295.45001220703125, + "y": 516.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 0.7, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "52664bd7-b500-40a1-935b-8ac6df7003e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5db03aa3-a62d-4a39-8712-d48911abf2bb" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genome" + } + ], + "label": "Reference genome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 734.8500366210938, + "height": 82.20001220703125, + "left": 749.816650390625, + "right": 949.816650390625, + "top": 652.6500244140625, + "width": 200, + "x": 749.816650390625, + "y": 652.6500244140625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4a2c6df2-fb1e-42d8-96d5-6765ca85c214", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nVariant calls\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nmin-AF for consensus variant\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nReference genome\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Compose text parameter value\"];\n 1 -->|output| 3;\n 4[\"SnpSift Filter\"];\n 3 -->|out1| 4;\n 0 -->|output| 4;\n ee67c5ed-ff7c-404b-ad20-19259edbc671[\"Output\\nconsensus_variants\"];\n 4 --> ee67c5ed-ff7c-404b-ad20-19259edbc671;\n style ee67c5ed-ff7c-404b-ad20-19259edbc671 stroke:#2c3143,stroke-width:4px;\n 5[\"bcftools consensus\"];\n 4 -->|output| 5;\n 2 -->|output| 5;\n 9028f80e-4112-40d8-9a49-f671677d304f[\"Output\\nconsensus\"];\n 5 --> 9028f80e-4112-40d8-9a49-f671677d304f;\n style 9028f80e-4112-40d8-9a49-f671677d304f stroke:#2c3143,stroke-width:4px;\n 6[\"Collapse Collection\"];\n 5 -->|output_file| 6;\n 1dd7978e-b907-42d6-8fc4-f6fadeefcad1[\"Output\\nmultisample_consensus_fasta\"];\n 6 --> 1dd7978e-b907-42d6-8fc4-f6fadeefcad1;\n style 1dd7978e-b907-42d6-8fc4-f6fadeefcad1 stroke:#2c3143,stroke-width:4px;\n 7[\"Pangolin\"];\n 6 -->|output| 7;\n e02d2cfb-9842-4069-957c-6cf4ec197056[\"Output\\npangolin_results\"];\n 7 --> e02d2cfb-9842-4069-957c-6cf4ec197056;\n style e02d2cfb-9842-4069-957c-6cf4ec197056 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "vcf2lineage", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "min-AF for consensus variant" + } + ], + "label": "min-AF for consensus variant", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 619.1000061035156, + "height": 102.60000610351562, + "left": 295.45001220703125, + "right": 495.45001220703125, + "top": 516.5, + "width": 200, + "x": 295.45001220703125, + "y": 516.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 0.7, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "52664bd7-b500-40a1-935b-8ac6df7003e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5db03aa3-a62d-4a39-8712-d48911abf2bb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "filter_expression|expr": { + "id": 3, + "output_name": "out1" + }, + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Filter", + "outputs": [ + { + "name": "output", + "type": "vcf" + } + ], + "position": { + "bottom": 506.5, + "height": 144, + "left": 750.2833251953125, + "right": 950.2833251953125, + "top": 362.5, + "width": 200, + "x": 750.2833251953125, + "y": 362.5 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Consensus variants" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "tool_shed_repository": { + "changeset_revision": "2e497a770bca", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_expression\": {\"type\": \"simple\", \"__current_case__\": 0, \"expr\": {\"__class__\": \"ConnectedValue\"}}, \"filtering\": {\"mode\": \"entries\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"inverse\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy1", + "type": "tool", + "uuid": "3673b687-1ba0-42f2-ba13-fa3130462079", + "workflow_outputs": [ + { + "label": "consensus_variants", + "output_name": "output", + "uuid": "ee67c5ed-ff7c-404b-ad20-19259edbc671" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.10", + "errors": null, + "id": 5, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "output" + }, + "reference_source|fasta_ref": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools consensus", + "name": "input_file" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "reference_source" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "sec_default" + } + ], + "label": null, + "name": "bcftools consensus", + "outputs": [ + { + "name": "output_file", + "type": "fasta" + } + ], + "position": { + "bottom": 535.5666809082031, + "height": 174.39999389648438, + "left": 993.8333129882812, + "right": 1193.8333129882812, + "top": 361.16668701171875, + "width": 200, + "x": 993.8333129882812, + "y": 361.16668701171875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "Consensus sequences" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.10", + "tool_shed_repository": { + "changeset_revision": "e522022137f6", + "name": "bcftools_consensus", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chain\": \"false\", \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"RuntimeValue\"}}, \"rename\": \"true\", \"sec_default\": {\"mask\": {\"__class__\": \"RuntimeValue\"}, \"iupac_codes\": \"false\", \"sample\": \"\", \"select_haplotype\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.10", + "type": "tool", + "uuid": "5d2e8bea-3e75-4453-9494-b5fd52b2f528", + "workflow_outputs": [ + { + "label": "consensus", + "output_name": "output_file", + "uuid": "9028f80e-4112-40d8-9a49-f671677d304f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "errors": null, + "id": 6, + "input_connections": { + "input_list": { + "id": 5, + "output_name": "output_file" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 537.8000030517578, + "height": 174.8000030517578, + "left": 1223.5, + "right": 1423.5, + "top": 363, + "width": 200, + "x": 1223.5, + "y": 363 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Multisample consensus FASTA" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "tool_shed_repository": { + "changeset_revision": "830961c48e42", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": \"false\", \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2", + "type": "tool", + "uuid": "acae0f3e-448b-483e-a44a-3e09ce9b3e77", + "workflow_outputs": [ + { + "label": "multisample_consensus_fasta", + "output_name": "output", + "uuid": "1dd7978e-b907-42d6-8fc4-f6fadeefcad1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/2.3.8", + "errors": null, + "id": 7, + "input_connections": { + "input1": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Pangolin", + "name": "input1" + } + ], + "label": null, + "name": "Pangolin", + "outputs": [ + { + "name": "output1", + "type": "tabular" + } + ], + "position": { + "bottom": 512.1999969482422, + "height": 93.19999694824219, + "left": 1451, + "right": 1651, + "top": 419, + "width": 200, + "x": 1451, + "y": 419 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "Pangolin lineage assignments" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/2.3.8", + "tool_shed_repository": { + "changeset_revision": "b6abccb1f25b", + "name": "pangolin", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment\": \"false\", \"db\": {\"source\": \"builtin\", \"__current_case__\": 1, \"db_release\": \"2021-05-11\"}, \"input1\": {\"__class__\": \"RuntimeValue\"}, \"max_ambig\": \"0.5\", \"min_length\": \"10000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.3.8", + "type": "tool", + "uuid": "bf8893e0-d08c-46c9-b384-a8ad0fc88185", + "workflow_outputs": [ + { + "label": "pangolin_results", + "output_name": "output1", + "uuid": "e02d2cfb-9842-4069-957c-6cf4ec197056" + } + ] + } + ], + "parent_id": "galaxy-interface/workflow-automation", + "path": "topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.ga", + "tags": [ + "variant-analysis", + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "vcf2lineage", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-automation/versions/main-workflow", + "tutorial_id": "workflow-automation", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.html", + "version": 1, + "wfid": "galaxy-interface-workflow-automation", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.10", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/2.3.8", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "workflowhub_id": "1293" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "ena_upload", + "owner": "iuc", + "revisions": "9e2df763086c", + "tool_panel_section_label": "Send Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: ena_upload\n owner: iuc\n revisions: 9e2df763086c\n tool_panel_section_label: Send Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-data-to-ena/tutorial.json", + "contributors": [ + { + "email": "miguel.roncoroni@elixir-belgium.org", + "id": "roncoronimiguel", + "joined": "2021-08", + "name": "Miguel Roncoroni", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/roncoronimiguel/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/roncoronimiguel.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "be", + "email": "bert.droesbeke@vib.be", + "id": "bedroesb", + "joined": "2019-12", + "matrix": "bedroesb:matrix.org", + "name": "Bert Droesbeke", + "orcid": "0000-0003-0522-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bedroesb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bedroesb.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "be", + "email": "boris.depoortere99@gmail.com", + "id": "B0r1sD", + "joined": "2024-04", + "linkedin": "borisdepoortere", + "location": { + "country": "BE", + "lat": 51.054, + "lon": 3.723 + }, + "matrix": "b0r1sd:matrix.org", + "name": "Boris Depoortere", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/B0r1sD/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/B0r1sD.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/upload-data-to-ena", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/upload-data-to-ena", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use Galaxy's 'ENA Upload tool' to submit raw reads to ENA", + "Use Galaxy's 'Submit consensus sequence to ENA' tool", + "You need to include your ENA Webin credentials in Galaxy", + "For small submission use 'ENA Upload tool' interactive metadata forms feature", + "For bulk submissions use a spreadsheet metadata template" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-04-04", + "objectives": [ + "Submit raw sequencing reads and metadata to ENA's test server", + "Submit consensus sequence and metadata to ENA's test server" + ], + "pageviews": 4636019, + "pub_date": "2021-08-10", + "questions": [ + "How do you submit raw sequence reads and assembled genomes to the European Nucleotide Archive?" + ], + "requirements": [ + { + "topic_name": "sequence-analysis", + "tutorials": [ + "human-reads-removal" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + } + ], + "short_id": "T00159", + "short_tools": [ + "ena_webin_cli", + "ena_upload" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "covid19" + ], + "time_estimation": "1h", + "title": "Submitting sequence data to ENA", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/ieguinoa/ena_webin_cli/ena_webin_cli/7d751b5943b0", + "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.7.1" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "upload-data-to-ena", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/upload-data-to-ena/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-data-to-ena/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-data-to-ena/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 238, + "visitors": 1741666, + "workflows": [ + { + "creators": [], + "description": "Submitting SARS-CoV-2 sequences to ENA", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"ENA Upload tool\"]\n 1[label=\"ENA Upload tool\"]\n}", + "history": [ + { + "hash": "f6670f581c4629118c7087a0794564387afeb2e3", + "message": "rename", + "num": 1, + "short_hash": "f6670f581", + "unix": "1628583615" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"ENA Upload tool\"];\n 1[\"ENA Upload tool\"];", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN_ENA_upload_workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.3.2", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "ENA Upload tool", + "outputs": [ + { + "name": "output", + "type": "txt" + }, + { + "name": "studies_table_out", + "type": "tabular" + }, + { + "name": "samples_table_out", + "type": "tabular" + }, + { + "name": "experiments_table_out", + "type": "tabular" + }, + { + "name": "runs_table_out", + "type": "tabular" + } + ], + "position": { + "bottom": 656.2166748046875, + "height": 318.7166748046875, + "left": 701.25, + "right": 861.25, + "top": 337.5, + "width": 160, + "x": 701.25, + "y": 337.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.3.2", + "tool_shed_repository": { + "changeset_revision": "9e2df763086c", + "name": "ena_upload", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action_options\": {\"action\": \"add\", \"__current_case__\": 0, \"test_submit_parameters\": {\"submit_dev\": \"true\", \"dry_run\": \"true\"}, \"test_submit\": \"False\", \"input_format_conditional\": {\"input_format\": \"build_tables\", \"__current_case__\": 2, \"conditional_viral_metadata\": {\"viral_sample\": \"false\", \"__current_case__\": 1, \"rep_study\": [{\"__index__\": 0, \"study_title\": \"\", \"study_abstract\": \"\", \"study_type\": \"Whole Genome Sequencing\", \"study_pubmed_id\": \"\", \"rep_sample\": [{\"__index__\": 0, \"sample_title\": \"\", \"sample_description\": \"\", \"scientific_name\": \"\", \"tax_id\": \"\", \"rep_experiment\": [{\"__index__\": 0, \"experiment_title\": \"\", \"experiment_design\": \"\", \"library_strategy\": \"WGS\", \"library_source\": \"GENOMIC\", \"library_selection\": \"RANDOM\", \"library_layout\": \"SINGLE\", \"insert_size\": \"0\", \"library_construction_protocol\": \"\", \"platform\": \"ILLUMINA\", \"instrument_model\": \"minION\", \"rep_runs\": [{\"__index__\": 0, \"run_base_name\": \"\", \"upload_files\": {\"__class__\": \"RuntimeValue\"}}]}]}]}]}}, \"center\": \"ELIXIR_BE\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.2", + "type": "tool", + "uuid": "40e72cfd-122f-4bef-a4ed-064ff7e14009", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f04d309c-8267-432b-8e43-769c51e8f96a" + }, + { + "label": null, + "output_name": "runs_table_out", + "uuid": "33795505-1bfa-4a96-995e-1a989fa5e404" + }, + { + "label": null, + "output_name": "experiments_table_out", + "uuid": "b140a301-fac3-4be5-b1bc-652862fb2b3b" + }, + { + "label": null, + "output_name": "samples_table_out", + "uuid": "6285b2f0-2646-404d-9711-a94288c11140" + }, + { + "label": null, + "output_name": "studies_table_out", + "uuid": "54f2d83c-8dd8-4d3a-be1c-e40f6e567053" + } + ] + } + ], + "parent_id": "galaxy-interface/upload-data-to-ena", + "path": "topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "GTN_ENA_upload_workflow", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-upload-data-to-ena/versions/main-workflow", + "tutorial_id": "upload-data-to-ena", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.html", + "version": 1, + "wfid": "galaxy-interface-upload-data-to-ena", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.3.2" + ], + "workflowhub_id": "1334" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.5163611" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "749c918495f7", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_filter_by_length", + "owner": "devteam", + "revisions": "8cacfcf96a52", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "145f6d74ff5e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "b2860df42e16", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "94fe43e75ddc", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "1d8fe9bc4cb0", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "53c0b7a1a0c3", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "b2f1f75d49c4", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "645159bcee2d", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_fastx", + "owner": "iuc", + "revisions": "a8d69aee190e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "b01db2684fa5", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "aad3885b3216", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unicycler", + "owner": "iuc", + "revisions": "9e3e80cc4ad4", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bowtie2\n owner: devteam\n revisions: 749c918495f7\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_filter_by_length\n owner: devteam\n revisions: 8cacfcf96a52\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 145f6d74ff5e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: b2860df42e16\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 94fe43e75ddc\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 1d8fe9bc4cb0\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 53c0b7a1a0c3\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: b2f1f75d49c4\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: 645159bcee2d\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_fastx\n owner: iuc\n revisions: a8d69aee190e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: b01db2684fa5\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: aad3885b3216\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unicycler\n owner: iuc\n revisions: 9e3e80cc4ad4\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-with-preprocessing/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/assembly/tutorials/assembly-with-preprocessing", + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Sequence file editing", + "Box-Whisker plot plotting", + "Read mapping", + "Pairwise sequence alignment", + "Scatter plot plotting", + "Sequence assembly visualisation", + "Data handling", + "Validation", + "Genome assembly", + "Aggregation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/assembly-with-preprocessing", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Certain types of NGS samples can be heavily contaminated with sequences from other genomes", + "Reads from known/expected contaminating sources can be identified by mapping to the respective genomes", + "After mapping, use filtering tools to remove identified contaminating reads, and use conversion tools to convert remaining mapped reads back into raw sequenced reads expected by most downstream tools" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Obtain viral (SARS-CoV-2) sequencing data with contaminating human reads from public sources", + "Organize the data into collections and check its quality", + "Detect and remove human reads", + "Assemble retained reads and explore the results" + ], + "pageviews": 5734442, + "pub_date": "2020-04-21", + "questions": [ + "How can a genome of interest be assembled against a background of contaminating reads from other genomes?", + "How can sequencing data from public sources be turned into assembly-ready polished datasets?" + ], + "recordings": [ + { + "captioners": [ + "mtekman" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "25M", + "speakers": [ + "gallardoalba" + ], + "youtube_id": "jNFLYhjgJPs" + } + ], + "requirements": [ + { + "topic_name": "assembly", + "tutorials": [ + "unicycler-assembly" + ], + "type": "internal" + }, + { + "topic_name": "sequence-analysis", + "tutorials": [ + "mapping" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + } + ], + "short_id": "T00029", + "short_tools": [ + "samtools_stats", + "nanoplot", + "fastp", + "samtools_view", + "multiqc", + "samtools_fastx", + "__ZIP_COLLECTION__", + "bowtie2", + "fasterq_dump", + "fasta_filter_by_length", + "seqtk_sample", + "bandage_info", + "minimap2", + "bandage_image", + "unicycler", + "collapse_dataset" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "covid19" + ], + "time_estimation": "4h", + "title": "Unicycler assembly of SARS-CoV-2 genome with preprocessing to remove human genome reads", + "tools": [ + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "assembly-with-preprocessing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/assembly-with-preprocessing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-with-preprocessing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/assembly-with-preprocessing/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 363, + "visitors": 2068028, + "workflows": [ + { + "creators": [], + "description": "Assembly with preprocessing", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nCollection of paired short-reads data\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nCollection of long-reads data\"]\n 10[label=\"Samtools fastx\"]\n 7 -> 10 [label=\"outputsam\"]\n 11[label=\"Samtools fastx\"]\n 9 -> 11 [label=\"outputsam\"]\n 12[label=\"Collapse Collection\"]\n 10 -> 12 [label=\"nonspecific\"]\n 13[label=\"Zip Collection\"]\n 11 -> 13 [label=\"forward\"]\n 11 -> 13 [label=\"reverse\"]\n 14[label=\"Collapse Collection\"]\n 11 -> 14 [label=\"forward\"]\n 15[label=\"Collapse Collection\"]\n 11 -> 15 [label=\"reverse\"]\n 16[label=\"seqtk_sample\"]\n 14 -> 16 [label=\"output\"]\n 17[label=\"seqtk_sample\"]\n 15 -> 17 [label=\"output\"]\n 18[label=\"Create assemblies with Unicycler\"]\n 12 -> 18 [label=\"output\"]\n 16 -> 18 [label=\"default\"]\n 17 -> 18 [label=\"default\"]\n 19[label=\"Bandage Info\"]\n 18 -> 19 [label=\"assembly_graph\"]\n 2[label=\"fastp: Trimmed Illumina Reads\"]\n 0 -> 2 [label=\"output\"]\n 20[label=\"Filter sequences by length\"]\n 18 -> 20 [label=\"assembly\"]\n 21[label=\"Bandage Image\"]\n 18 -> 21 [label=\"assembly_graph\"]\n 3[label=\"NanoPlot\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Map with minimap2\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"MultiQC\"]\n 2 -> 5 [label=\"report_json\"]\n 6[label=\"Bowtie2\"]\n 2 -> 6 [label=\"output_paired_coll\"]\n 7[label=\"Samtools view\"]\n 4 -> 7 [label=\"alignment_output\"]\n 8[label=\"Samtools stats\"]\n 4 -> 8 [label=\"alignment_output\"]\n 9[label=\"Samtools view\"]\n 6 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "fc35e6581a2e34e4420f19af4619c92283609e91", + "message": "add annotations", + "num": 2, + "short_hash": "fc35e6581", + "unix": "1587558793" + }, + { + "hash": "7ed054469d1ef84a60abec55758ee2932f9a9655", + "message": "readd workflows", + "num": 1, + "short_hash": "7ed054469", + "unix": "1587555276" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Collection of paired short-reads data", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 268.13330078125, + "top": 341.41668701171875 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "3e7dab04-77db-4780-b1dd-c724b80a8b7b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "daba9931-3837-42b5-a93f-e2e51f5f667a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Collection of long-reads data", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 267.13330078125, + "top": 756.4166717529297 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"lis\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "bd1f5561-95a1-4fb5-af1e-f3d4cbb40639", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7146e49b-ab4b-44a8-ac54-e98539fecb97" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nCollection of paired short-reads data\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nCollection of long-reads data\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Samtools fastx\"];\n 7 -->|outputsam| 10;\n 11[\"Samtools fastx\"];\n 9 -->|outputsam| 11;\n 12[\"Collapse Collection\"];\n 10 -->|nonspecific| 12;\n 13[\"Zip Collection\"];\n 11 -->|forward| 13;\n 11 -->|reverse| 13;\n 14[\"Collapse Collection\"];\n 11 -->|forward| 14;\n 15[\"Collapse Collection\"];\n 11 -->|reverse| 15;\n 16[\"seqtk_sample\"];\n 14 -->|output| 16;\n 17[\"seqtk_sample\"];\n 15 -->|output| 17;\n 18[\"Create assemblies with Unicycler\"];\n 12 -->|output| 18;\n 16 -->|default| 18;\n 17 -->|default| 18;\n 19[\"Bandage Info\"];\n 18 -->|assembly_graph| 19;\n 2[\"fastp: Trimmed Illumina Reads\"];\n 0 -->|output| 2;\n 20[\"Filter sequences by length\"];\n 18 -->|assembly| 20;\n 21[\"Bandage Image\"];\n 18 -->|assembly_graph| 21;\n 3[\"NanoPlot\"];\n 1 -->|output| 3;\n 4[\"Map with minimap2\"];\n 1 -->|output| 4;\n 5[\"MultiQC\"];\n 2 -->|report_json| 5;\n 6[\"Bowtie2\"];\n 2 -->|output_paired_coll| 6;\n 7[\"Samtools view\"];\n 4 -->|alignment_output| 7;\n 8[\"Samtools stats\"];\n 4 -->|alignment_output| 8;\n 9[\"Samtools view\"];\n 6 -->|output| 9;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "assembly_with_preprocessing", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Collection of paired short-reads data", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 268.13330078125, + "top": 341.41668701171875 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "3e7dab04-77db-4780-b1dd-c724b80a8b7b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "daba9931-3837-42b5-a93f-e2e51f5f667a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Collection of long-reads data", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 267.13330078125, + "top": 756.4166717529297 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"lis\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "bd1f5561-95a1-4fb5-af1e-f3d4cbb40639", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7146e49b-ab4b-44a8-ac54-e98539fecb97" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 7, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "nonspecific", + "type": "fasta" + } + ], + "position": { + "left": 1333.63330078125, + "top": 852.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a8d69aee190e", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_arb_tags\": \"\\\"\\\"\", \"__page__\": null, \"output_fmt_cond\": \"{\\\"__current_case__\\\": 2, \\\"default_quality\\\": \\\"\\\", \\\"ilumina_casava\\\": \\\"false\\\", \\\"output_fmt_select\\\": \\\"fastqsanger.gz\\\", \\\"output_quality\\\": \\\"false\\\"}\", \"idxout_cond\": \"{\\\"__current_case__\\\": 0, \\\"idxout_select\\\": \\\"no\\\"}\", \"read_numbering\": \"\\\"\\\"\", \"exclusive_filter\": \"null\", \"exclusive_filter_all\": \"null\", \"inclusive_filter\": \"null\", \"outputs\": \"[\\\"r0\\\"]\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"copy_tags\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "31e2b4e8-7631-46c0-8382-b805cee2b739", + "workflow_outputs": [ + { + "label": null, + "output_name": "nonspecific", + "uuid": "cfbf839f-53f0-4a82-8966-2bdb6919de5e" + } + ] + }, + { + "annotation": "", + "content_id": "__ZIP_COLLECTION__", + "errors": null, + "id": 13, + "input_connections": { + "input_forward": { + "id": 11, + "output_name": "forward" + }, + "input_reverse": { + "id": 11, + "output_name": "reverse" + } + }, + "inputs": [], + "label": null, + "name": "Zip Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1754.63330078125, + "top": 477.41668701171875 + }, + "post_job_actions": {}, + "tool_id": "__ZIP_COLLECTION__", + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"input_reverse\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"input_forward\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "9ba89e81-9c53-4f5b-9d61-42319b7d574c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ebc8f563-c45e-4e17-a541-b1275e7f61ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "errors": null, + "id": 16, + "input_connections": { + "in_file": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_sample", + "name": "in_file" + } + ], + "label": null, + "name": "seqtk_sample", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2129.4166717529297, + "top": 711.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"s\": \"\\\"4\\\"\", \"in_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"subsample_size\": \"\\\"0.1\\\"\", \"advanced\": \"{\\\"single_pass_mode\\\": \\\"false\\\"}\"}", + "tool_version": "1.3.2", + "type": "tool", + "uuid": "4f7c9133-a664-46dc-9583-c9980d5d1011", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "be52344e-6874-431c-8d86-9d0e9371aed9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "errors": null, + "id": 17, + "input_connections": { + "in_file": { + "id": 15, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_sample", + "name": "in_file" + } + ], + "label": null, + "name": "seqtk_sample", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2116.4166717529297, + "top": 859.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"s\": \"\\\"4\\\"\", \"in_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"subsample_size\": \"\\\"0.1\\\"\", \"advanced\": \"{\\\"single_pass_mode\\\": \\\"false\\\"}\"}", + "tool_version": "1.3.2", + "type": "tool", + "uuid": "79064891-aa79-42e3-b848-7a6240022acc", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "3e196eb1-8ba1-4be5-90d0-c5b8d3df4ff0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "errors": null, + "id": 18, + "input_connections": { + "long": { + "id": 12, + "output_name": "output" + }, + "paired_unpaired|fastq_input1": { + "id": 16, + "output_name": "default" + }, + "paired_unpaired|fastq_input2": { + "id": 17, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "lr_align" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "long" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "paired_unpaired" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "paired_unpaired" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "rotation" + } + ], + "label": null, + "name": "Create assemblies with Unicycler", + "outputs": [ + { + "name": "assembly_graph", + "type": "tabular" + }, + { + "name": "assembly", + "type": "fasta" + } + ], + "position": { + "left": 2365.633331298828, + "top": 706.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "tool_shed_repository": { + "changeset_revision": "88c240872a65", + "name": "unicycler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"linear_seqs\": \"\\\"1\\\"\", \"spades\": \"{\\\"depth_filter\\\": \\\"0.25\\\", \\\"kmer_count\\\": \\\"10\\\", \\\"kmers\\\": \\\"\\\", \\\"largest_component\\\": \\\"false\\\", \\\"max_kmer_frac\\\": \\\"0.95\\\", \\\"min_kmer_frac\\\": \\\"0.2\\\", \\\"no_correct\\\": \\\"false\\\"}\", \"graph_clean\": \"{\\\"min_component_size\\\": \\\"1000\\\", \\\"min_dead_end_size\\\": \\\"1000\\\"}\", \"__page__\": null, \"min_anchor_seg_len\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"lr_align\": \"{\\\"contamination\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"low_score\\\": \\\"\\\", \\\"scores\\\": \\\"3,-6,-5,-2\\\"}\", \"long\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"paired_unpaired\": \"{\\\"__current_case__\\\": 0, \\\"fastq_input1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"fastq_input2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"fastq_input_selector\\\": \\\"paired\\\"}\", \"min_fasta_length\": \"\\\"100\\\"\", \"mode\": \"\\\"normal\\\"\", \"rotation\": \"{\\\"no_rotate\\\": \\\"false\\\", \\\"start_gene_cov\\\": \\\"95.0\\\", \\\"start_gene_id\\\": \\\"90.0\\\", \\\"start_genes\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\", \"pilon\": \"{\\\"min_polish_size\\\": \\\"1000\\\", \\\"no_pilon\\\": \\\"false\\\"}\"}", + "tool_version": "0.4.8.0", + "type": "tool", + "uuid": "851c6be6-c202-450a-9cd3-19e205dcc496", + "workflow_outputs": [ + { + "label": null, + "output_name": "assembly", + "uuid": "702dd61e-6072-49d9-a502-44e0a23f5a98" + }, + { + "label": null, + "output_name": "assembly_graph", + "uuid": "3285cc00-6b39-4f3d-87a5-87abd483ede6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "input_file": { + "id": 18, + "output_name": "assembly_graph" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "txt" + } + ], + "position": { + "left": 2665.633331298828, + "top": 811.4166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"tsv\": \"\\\"false\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "0.8.1+galaxy1", + "type": "tool", + "uuid": "4aa230bd-3269-41c3-81f5-9085fcc4001d", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "cf5eab6a-97ae-430e-a27a-6ecc33d4b8c0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "single_paired|paired_input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "fastp: Trimmed Illumina Reads", + "name": "fastp", + "outputs": [ + { + "name": "output_paired_coll", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 585, + "top": 365.04998779296875 + }, + "post_job_actions": { + "HideDatasetActionreport_html": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "report_html" + }, + "HideDatasetActionreport_json": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "1d8fe9bc4cb0", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"output_options\": \"{\\\"report_html\\\": \\\"true\\\", \\\"report_json\\\": \\\"true\\\"}\", \"single_paired\": \"{\\\"__current_case__\\\": 2, \\\"adapter_trimming_options\\\": {\\\"adapter_sequence1\\\": \\\"\\\", \\\"adapter_sequence2\\\": \\\"\\\", \\\"disable_adapter_trimming\\\": \\\"false\\\"}, \\\"global_trimming_options\\\": {\\\"trim_front1\\\": \\\"\\\", \\\"trim_front2\\\": \\\"\\\", \\\"trim_tail1\\\": \\\"\\\", \\\"trim_tail2\\\": \\\"\\\"}, \\\"paired_input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"single_paired_selector\\\": \\\"paired_collection\\\"}\", \"read_mod_options\": \"{\\\"base_correction_options\\\": {\\\"correction\\\": \\\"false\\\"}, \\\"cutting_by_quality_options\\\": {\\\"cut_by_quality3\\\": \\\"false\\\", \\\"cut_by_quality5\\\": \\\"false\\\", \\\"cut_mean_quality\\\": \\\"\\\", \\\"cut_window_size\\\": \\\"\\\"}, \\\"polyg_tail_trimming\\\": {\\\"__current_case__\\\": 1, \\\"poly_g_min_len\\\": \\\"\\\", \\\"trimming_select\\\": \\\"\\\"}, \\\"polyx_tail_trimming\\\": {\\\"__current_case__\\\": 1, \\\"polyx_trimming_select\\\": \\\"\\\"}, \\\"umi_processing\\\": {\\\"umi\\\": \\\"false\\\", \\\"umi_len\\\": \\\"\\\", \\\"umi_loc\\\": \\\"\\\", \\\"umi_prefix\\\": \\\"\\\"}}\", \"overrepresented_sequence_analysis\": \"{\\\"overrepresentation_analysis\\\": \\\"false\\\", \\\"overrepresentation_sampling\\\": \\\"\\\"}\", \"filter_options\": \"{\\\"length_filtering_options\\\": {\\\"disable_length_filtering\\\": \\\"false\\\", \\\"length_required\\\": \\\"50\\\"}, \\\"low_complexity_filter\\\": {\\\"complexity_threshold\\\": \\\"\\\", \\\"enable_low_complexity_filter\\\": \\\"false\\\"}, \\\"quality_filtering_options\\\": {\\\"disable_quality_filtering\\\": \\\"false\\\", \\\"n_base_limit\\\": \\\"\\\", \\\"qualified_quality_phred\\\": \\\"20\\\", \\\"unqualified_percent_limit\\\": \\\"20\\\"}}\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.19.5+galaxy1", + "type": "tool", + "uuid": "7508c22b-dc6a-4071-8dd0-d5616718e62b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_paired_coll", + "uuid": "a7be7eab-3e80-4be6-b1a4-ab303c314096" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "assembly" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Filter sequences by length", + "name": "input" + } + ], + "label": null, + "name": "Filter sequences by length", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 2574.4166870117188, + "top": 1254.4166870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "tool_shed_repository": { + "changeset_revision": "8cacfcf96a52", + "name": "fasta_filter_by_length", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"max_length\": \"\\\"0\\\"\", \"min_length\": \"\\\"1000\\\"\"}", + "tool_version": "1.2", + "type": "tool", + "uuid": "3cbd67e0-3e55-4726-8dbe-0c61aec4d293", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e4143f49-239f-4266-ba8d-e6299a331403" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "errors": null, + "id": 21, + "input_connections": { + "input_file": { + "id": 18, + "output_name": "assembly_graph" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Bandage Image", + "name": "input_file" + } + ], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 2667.4166870117188, + "top": 1052.4166870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"lengths\": \"\\\"true\\\"\", \"output_format\": \"\\\"jpg\\\"\", \"height\": \"\\\"1000\\\"\", \"width\": \"\\\"\\\"\", \"names\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "ef2c6a46-8421-499e-a840-8dd03483c5c9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "5e535f98-b740-44ec-aba1-9d9090acb89a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "mode|reads|files": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "txt" + }, + { + "name": "nanostats_post_filtering", + "type": "txt" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 630, + "top": 650.4666595458984 + }, + "post_job_actions": { + "HideDatasetActionlog_read_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log_read_length" + }, + "HideDatasetActionnanostats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats" + }, + "HideDatasetActionnanostats_post_filtering": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "HideDatasetActionread_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "645159bcee2d", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter\": \"{\\\"alength\\\": \\\"false\\\", \\\"barcoded\\\": \\\"false\\\", \\\"downsample\\\": \\\"\\\", \\\"drop_outliers\\\": \\\"false\\\", \\\"loglength\\\": \\\"true\\\", \\\"maxlength\\\": \\\"\\\", \\\"minlength\\\": \\\"\\\", \\\"minqual\\\": \\\"\\\", \\\"percentqual\\\": \\\"false\\\", \\\"readtype\\\": null}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"mode\": \"{\\\"__current_case__\\\": 0, \\\"choice\\\": \\\"batch\\\", \\\"reads\\\": {\\\"__current_case__\\\": 0, \\\"files\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"type\\\": \\\"fastq\\\"}}\", \"customization\": \"{\\\"N50\\\": \\\"false\\\", \\\"color\\\": null, \\\"format\\\": \\\"png\\\", \\\"noN50\\\": \\\"false\\\", \\\"plots\\\": null}\"}", + "tool_version": "1.25.0+galaxy1", + "type": "tool", + "uuid": "9b1d43ac-82e3-463f-9c88-08c8826a62c9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_html", + "uuid": "cd8570c7-02db-479b-81a9-cd0d26643f71" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 709.199951171875, + "top": 1131.9666748046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "tool_shed_repository": { + "changeset_revision": "53c0b7a1a0c3", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": \"{\\\"-O2\\\": \\\"\\\", \\\"A\\\": \\\"\\\", \\\"B\\\": \\\"\\\", \\\"E\\\": \\\"\\\", \\\"E2\\\": \\\"\\\", \\\"O\\\": \\\"\\\", \\\"s\\\": \\\"\\\", \\\"u\\\": null, \\\"z\\\": \\\"\\\"}\", \"analysis_type_selector\": \"\\\"splice\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"io_options\": \"{\\\"K\\\": \\\"\\\", \\\"L\\\": \\\"false\\\", \\\"Q\\\": \\\"false\\\", \\\"Y\\\": \\\"false\\\", \\\"c\\\": \\\"false\\\", \\\"cs\\\": null, \\\"eqx\\\": \\\"false\\\", \\\"output_format\\\": \\\"BAM\\\"}\", \"mapping_options\": \"{\\\"F\\\": \\\"\\\", \\\"G\\\": \\\"\\\", \\\"N\\\": \\\"\\\", \\\"X\\\": \\\"false\\\", \\\"f\\\": \\\"\\\", \\\"g\\\": \\\"\\\", \\\"m\\\": \\\"\\\", \\\"min_occ_floor\\\": \\\"\\\", \\\"n\\\": \\\"\\\", \\\"p\\\": \\\"\\\", \\\"r\\\": \\\"\\\"}\", \"fastq_input\": \"{\\\"__current_case__\\\": 1, \\\"fastq_input1\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"fastq_input_selector\\\": \\\"single\\\"}\", \"reference_source\": \"{\\\"__current_case__\\\": 0, \\\"ref_file\\\": \\\"hg38\\\", \\\"reference_source_selector\\\": \\\"cached\\\"}\", \"indexing_options\": \"{\\\"H\\\": \\\"false\\\", \\\"I\\\": \\\"\\\", \\\"k\\\": \\\"\\\", \\\"w\\\": \\\"\\\"}\"}", + "tool_version": "2.17+galaxy1", + "type": "tool", + "uuid": "098d2283-1218-489b-9882-8822e79d9444", + "workflow_outputs": [ + { + "label": null, + "output_name": "alignment_output", + "uuid": "9972015d-4bdc-440f-b8b6-84e92a64ef8f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 5, + "input_connections": { + "results_0|software_cond|input": { + "id": 2, + "output_name": "report_json" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 938.699951171875, + "top": 250 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\\\"\\\"\", \"__page__\": null, \"title\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"results\": \"[{\\\"__index__\\\": 0, \\\"software_cond\\\": {\\\"__current_case__\\\": 7, \\\"input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"software\\\": \\\"fastp\\\"}}]\", \"saveLog\": \"\\\"false\\\"\"}", + "tool_version": "1.7", + "type": "tool", + "uuid": "73566697-4a46-4d35-b8e2-61770acc62c0", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "15f42a94-2c97-4932-8e3f-f26a72b58be4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "library|input_1": { + "id": 2, + "output_name": "output_paired_coll" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 913.9166259765625, + "top": 564.6333312988281 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "749c918495f7", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"sam_options\": \"{\\\"__current_case__\\\": 1, \\\"sam_options_selector\\\": \\\"no\\\"}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"library\": \"{\\\"__current_case__\\\": 2, \\\"aligned_file\\\": \\\"false\\\", \\\"input_1\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"paired_options\\\": {\\\"__current_case__\\\": 1, \\\"paired_options_selector\\\": \\\"no\\\"}, \\\"type\\\": \\\"paired_collection\\\", \\\"unaligned_file\\\": \\\"false\\\"}\", \"reference_genome\": \"{\\\"__current_case__\\\": 0, \\\"index\\\": \\\"hg38full\\\", \\\"source\\\": \\\"indexed\\\"}\", \"rg\": \"{\\\"__current_case__\\\": 3, \\\"rg_selector\\\": \\\"do_not_set\\\"}\", \"save_mapping_stats\": \"\\\"true\\\"\", \"analysis_type\": \"{\\\"__current_case__\\\": 0, \\\"analysis_type_selector\\\": \\\"simple\\\", \\\"presets\\\": \\\"no_presets\\\"}\"}", + "tool_version": "2.3.4.3+galaxy0", + "type": "tool", + "uuid": "43331d2c-7116-410e-a6bd-7e7520d93a52", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "eeae40f6-f1b2-4c56-9860-ac7b8eb1dec0" + }, + { + "label": null, + "output_name": "mapping_stats", + "uuid": "c567226e-efaf-4188-bdec-3ba20d0733b0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 4, + "output_name": "alignment_output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools stats", + "outputs": [ + { + "name": "output_collection", + "type": "input" + } + ], + "position": { + "left": 1022.4166259765625, + "top": 1254.4166870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "145f6d74ff5e", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"coverage_cond\": \"{\\\"__current_case__\\\": 0, \\\"coverage_select\\\": \\\"no\\\"}\", \"gc_depth\": \"\\\"\\\"\", \"cov_threshold\": \"\\\"\\\"\", \"most_inserts\": \"\\\"\\\"\", \"cond_region\": \"{\\\"__current_case__\\\": 0, \\\"select_region\\\": \\\"no\\\"}\", \"split_output_cond\": \"{\\\"__current_case__\\\": 1, \\\"generate_tables\\\": [\\\"SN\\\"], \\\"split_output_selector\\\": \\\"yes\\\"}\", \"read_length\": \"\\\"\\\"\", \"trim_quality\": \"\\\"\\\"\", \"remove_overlaps\": \"\\\"false\\\"\", \"filter_by_flags\": \"{\\\"__current_case__\\\": 1, \\\"filter_flags\\\": \\\"nofilter\\\"}\", \"sparse\": \"\\\"false\\\"\", \"addref_cond\": \"{\\\"__current_case__\\\": 0, \\\"addref_select\\\": \\\"no\\\"}\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"insert_size\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"remove_dups\": \"\\\"false\\\"\"}", + "tool_version": "2.0.2+galaxy2", + "type": "tool", + "uuid": "15f6252f-79d4-4319-855d-09665deac6a3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_collection", + "uuid": "faed6306-eed6-40bd-ac9f-9fb3a4e980ea" + } + ] + } + ], + "parent_id": "assembly/assembly-with-preprocessing", + "path": "topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.ga", + "tags": [ + "GTN", + "assembly" + ], + "test_results": null, + "tests": false, + "title": "assembly_with_preprocessing", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-with-preprocessing/versions/assembly-with-preprocessing", + "tutorial_id": "assembly-with-preprocessing", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing.html", + "version": 1, + "wfid": "assembly-assembly-with-preprocessing", + "wfname": "assembly-with-preprocessing", + "workflow": "assembly_with_preprocessing.ga", + "workflow_tools": [ + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "workflowhub_id": "1132" + }, + { + "creators": [], + "description": "Assembly with preprocessing and SRA download", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nList of Illumina accessions\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nList of ONT accessions\"]\n 10[label=\"Samtools stats\"]\n 6 -> 10 [label=\"alignment_output\"]\n 11[label=\"Samtools view\"]\n 8 -> 11 [label=\"output\"]\n 12[label=\"Samtools fastx\"]\n 9 -> 12 [label=\"outputsam\"]\n 13[label=\"Samtools fastx\"]\n 11 -> 13 [label=\"outputsam\"]\n 14[label=\"Collapse Collection\"]\n 12 -> 14 [label=\"nonspecific\"]\n 15[label=\"Zip Collection\"]\n 13 -> 15 [label=\"forward\"]\n 13 -> 15 [label=\"reverse\"]\n 16[label=\"Collapse Collection\"]\n 13 -> 16 [label=\"forward\"]\n 17[label=\"Collapse Collection\"]\n 13 -> 17 [label=\"reverse\"]\n 18[label=\"seqtk_sample\"]\n 16 -> 18 [label=\"output\"]\n 19[label=\"seqtk_sample\"]\n 17 -> 19 [label=\"output\"]\n 2[label=\"Illumina data\"]\n 0 -> 2 [label=\"output\"]\n 20[label=\"Create assemblies with Unicycler\"]\n 14 -> 20 [label=\"output\"]\n 18 -> 20 [label=\"default\"]\n 19 -> 20 [label=\"default\"]\n 21[label=\"Bandage Info\"]\n 20 -> 21 [label=\"assembly_graph\"]\n 22[label=\"Bandage Image\"]\n 20 -> 22 [label=\"assembly_graph\"]\n 23[label=\"Filter sequences by length\"]\n 20 -> 23 [label=\"assembly\"]\n 3[label=\"ONT data\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"fastp: Trimmed Illumina Reads\"]\n 2 -> 4 [label=\"list_paired\"]\n 5[label=\"NanoPlot\"]\n 3 -> 5 [label=\"output_collection\"]\n 6[label=\"Map with minimap2\"]\n 3 -> 6 [label=\"output_collection\"]\n 7[label=\"MultiQC\"]\n 4 -> 7 [label=\"report_json\"]\n 8[label=\"Bowtie2\"]\n 4 -> 8 [label=\"output_paired_coll\"]\n 9[label=\"Samtools view\"]\n 6 -> 9 [label=\"alignment_output\"]\n}", + "history": [ + { + "hash": "fc35e6581a2e34e4420f19af4619c92283609e91", + "message": "add annotations", + "num": 2, + "short_hash": "fc35e6581", + "unix": "1587558793" + }, + { + "hash": "7ed054469d1ef84a60abec55758ee2932f9a9655", + "message": "readd workflows", + "num": 1, + "short_hash": "7ed054469", + "unix": "1587555276" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "List of Illumina accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 257.683349609375, + "top": 215.9166259765625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1a61a3b3-4515-47a1-8ee5-fb79f05a8dfa", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ea340c2d-d9e8-4ea5-bbc0-7ee7d92a57bf" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "List of ONT accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 264.9833984375, + "top": 522.7166442871094 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0988bf07-dc80-4d7b-a62f-8e5e852b0982", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fb053f14-71fc-45ac-83ea-a308a5c22918" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nList of Illumina accessions\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nList of ONT accessions\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Samtools stats\"];\n 6 -->|alignment_output| 10;\n 11[\"Samtools view\"];\n 8 -->|output| 11;\n 12[\"Samtools fastx\"];\n 9 -->|outputsam| 12;\n 13[\"Samtools fastx\"];\n 11 -->|outputsam| 13;\n 14[\"Collapse Collection\"];\n 12 -->|nonspecific| 14;\n 15[\"Zip Collection\"];\n 13 -->|forward| 15;\n 13 -->|reverse| 15;\n 16[\"Collapse Collection\"];\n 13 -->|forward| 16;\n 17[\"Collapse Collection\"];\n 13 -->|reverse| 17;\n 18[\"seqtk_sample\"];\n 16 -->|output| 18;\n 19[\"seqtk_sample\"];\n 17 -->|output| 19;\n 2[\"Illumina data\"];\n 0 -->|output| 2;\n 20[\"Create assemblies with Unicycler\"];\n 14 -->|output| 20;\n 18 -->|default| 20;\n 19 -->|default| 20;\n 21[\"Bandage Info\"];\n 20 -->|assembly_graph| 21;\n 22[\"Bandage Image\"];\n 20 -->|assembly_graph| 22;\n 23[\"Filter sequences by length\"];\n 20 -->|assembly| 23;\n 3[\"ONT data\"];\n 1 -->|output| 3;\n 4[\"fastp: Trimmed Illumina Reads\"];\n 2 -->|list_paired| 4;\n 5[\"NanoPlot\"];\n 3 -->|output_collection| 5;\n 6[\"Map with minimap2\"];\n 3 -->|output_collection| 6;\n 7[\"MultiQC\"];\n 4 -->|report_json| 7;\n 8[\"Bowtie2\"];\n 4 -->|output_paired_coll| 8;\n 9[\"Samtools view\"];\n 6 -->|alignment_output| 9;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "assembly_with_preprocessing_and_sra_download", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "List of Illumina accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 257.683349609375, + "top": 215.9166259765625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1a61a3b3-4515-47a1-8ee5-fb79f05a8dfa", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ea340c2d-d9e8-4ea5-bbc0-7ee7d92a57bf" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "List of ONT accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 264.9833984375, + "top": 522.7166442871094 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0988bf07-dc80-4d7b-a62f-8e5e852b0982", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fb053f14-71fc-45ac-83ea-a308a5c22918" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 6, + "output_name": "alignment_output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools stats", + "outputs": [ + { + "name": "output_collection", + "type": "input" + } + ], + "position": { + "left": 1328.4166259765625, + "top": 1239.4166259765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "145f6d74ff5e", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"coverage_cond\": \"{\\\"__current_case__\\\": 0, \\\"coverage_select\\\": \\\"no\\\"}\", \"gc_depth\": \"\\\"\\\"\", \"cov_threshold\": \"\\\"\\\"\", \"most_inserts\": \"\\\"\\\"\", \"cond_region\": \"{\\\"__current_case__\\\": 0, \\\"select_region\\\": \\\"no\\\"}\", \"split_output_cond\": \"{\\\"__current_case__\\\": 1, \\\"generate_tables\\\": [\\\"SN\\\"], \\\"split_output_selector\\\": \\\"yes\\\"}\", \"read_length\": \"\\\"\\\"\", \"trim_quality\": \"\\\"\\\"\", \"remove_overlaps\": \"\\\"false\\\"\", \"filter_by_flags\": \"{\\\"__current_case__\\\": 1, \\\"filter_flags\\\": \\\"nofilter\\\"}\", \"sparse\": \"\\\"false\\\"\", \"addref_cond\": \"{\\\"__current_case__\\\": 0, \\\"addref_select\\\": \\\"no\\\"}\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"insert_size\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"remove_dups\": \"\\\"false\\\"\"}", + "tool_version": "2.0.2+galaxy2", + "type": "tool", + "uuid": "ae176340-d7da-4c2e-851b-e6129a0c222d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_collection", + "uuid": "8652ea8a-35f5-4531-8b89-88bca189ab9f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 9, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "nonspecific", + "type": "fasta" + } + ], + "position": { + "left": 1628.4166259765625, + "top": 852.4166412353516 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a8d69aee190e", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_arb_tags\": \"\\\"\\\"\", \"__page__\": null, \"output_fmt_cond\": \"{\\\"__current_case__\\\": 2, \\\"default_quality\\\": \\\"\\\", \\\"ilumina_casava\\\": \\\"false\\\", \\\"output_fmt_select\\\": \\\"fastqsanger.gz\\\", \\\"output_quality\\\": \\\"false\\\"}\", \"idxout_cond\": \"{\\\"__current_case__\\\": 0, \\\"idxout_select\\\": \\\"no\\\"}\", \"read_numbering\": \"\\\"\\\"\", \"exclusive_filter\": \"null\", \"exclusive_filter_all\": \"null\", \"inclusive_filter\": \"null\", \"outputs\": \"[\\\"r0\\\"]\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"copy_tags\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "31e2b4e8-7631-46c0-8382-b805cee2b739", + "workflow_outputs": [ + { + "label": null, + "output_name": "nonspecific", + "uuid": "cfbf839f-53f0-4a82-8966-2bdb6919de5e" + } + ] + }, + { + "annotation": "", + "content_id": "__ZIP_COLLECTION__", + "errors": null, + "id": 15, + "input_connections": { + "input_forward": { + "id": 13, + "output_name": "forward" + }, + "input_reverse": { + "id": 13, + "output_name": "reverse" + } + }, + "inputs": [], + "label": null, + "name": "Zip Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 2049.4166870117188, + "top": 477.4166259765625 + }, + "post_job_actions": {}, + "tool_id": "__ZIP_COLLECTION__", + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"input_reverse\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"input_forward\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "9ba89e81-9c53-4f5b-9d61-42319b7d574c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ebc8f563-c45e-4e17-a541-b1275e7f61ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "errors": null, + "id": 18, + "input_connections": { + "in_file": { + "id": 16, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_sample", + "name": "in_file" + } + ], + "label": null, + "name": "seqtk_sample", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2438.0833282470703, + "top": 688.6833190917969 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"s\": \"\\\"4\\\"\", \"in_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"subsample_size\": \"\\\"0.1\\\"\", \"advanced\": \"{\\\"single_pass_mode\\\": \\\"false\\\"}\"}", + "tool_version": "1.3.2", + "type": "tool", + "uuid": "b4e40092-e076-4eb0-af30-c8c47885fefa", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "cf3eb8ef-fce5-42af-a14d-60ff915fbff3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "errors": null, + "id": 19, + "input_connections": { + "in_file": { + "id": 17, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_sample", + "name": "in_file" + } + ], + "label": null, + "name": "seqtk_sample", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2413.0833129882812, + "top": 864.6833190917969 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"s\": \"\\\"4\\\"\", \"in_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"subsample_size\": \"\\\"0.1\\\"\", \"advanced\": \"{\\\"single_pass_mode\\\": \\\"false\\\"}\"}", + "tool_version": "1.3.2", + "type": "tool", + "uuid": "1ef9ca9e-e447-4933-8871-c0e8e9a953c4", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "bf722cb7-0b06-42ed-8fbc-9dc3896e9340" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input|file_list": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Illumina data", + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 511.783447265625, + "top": 273.1666259765625 + }, + "post_job_actions": { + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionoutput_collection": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection" + }, + "HideDatasetActionoutput_collection_other": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection_other" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aad3885b3216", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"minlen\\\": \\\"\\\", \\\"skip_technical\\\": \\\"true\\\", \\\"split\\\": \\\"--split-3\\\"}\", \"input\": \"{\\\"__current_case__\\\": 2, \\\"file_list\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"input_select\\\": \\\"file_list\\\"}\", \"__rerun_remap_job_id__\": null, \"__page__\": null}", + "tool_version": "2.10.4+galaxy1", + "type": "tool", + "uuid": "b097b5cb-44a8-4881-9ba0-a089ef1b4ad6", + "workflow_outputs": [ + { + "label": null, + "output_name": "list_paired", + "uuid": "c6b4e7f2-5cf4-4051-afd1-a110381c4679" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "errors": null, + "id": 20, + "input_connections": { + "long": { + "id": 14, + "output_name": "output" + }, + "paired_unpaired|fastq_input1": { + "id": 18, + "output_name": "default" + }, + "paired_unpaired|fastq_input2": { + "id": 19, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "lr_align" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "long" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "paired_unpaired" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "paired_unpaired" + }, + { + "description": "runtime parameter for tool Create assemblies with Unicycler", + "name": "rotation" + } + ], + "label": null, + "name": "Create assemblies with Unicycler", + "outputs": [ + { + "name": "assembly_graph", + "type": "tabular" + }, + { + "name": "assembly", + "type": "fasta" + } + ], + "position": { + "left": 2673.4166717529297, + "top": 699.4166412353516 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "tool_shed_repository": { + "changeset_revision": "88c240872a65", + "name": "unicycler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"linear_seqs\": \"\\\"1\\\"\", \"spades\": \"{\\\"depth_filter\\\": \\\"0.25\\\", \\\"kmer_count\\\": \\\"10\\\", \\\"kmers\\\": \\\"\\\", \\\"largest_component\\\": \\\"false\\\", \\\"max_kmer_frac\\\": \\\"0.95\\\", \\\"min_kmer_frac\\\": \\\"0.2\\\", \\\"no_correct\\\": \\\"false\\\"}\", \"graph_clean\": \"{\\\"min_component_size\\\": \\\"1000\\\", \\\"min_dead_end_size\\\": \\\"1000\\\"}\", \"__page__\": null, \"min_anchor_seg_len\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"lr_align\": \"{\\\"contamination\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"low_score\\\": \\\"\\\", \\\"scores\\\": \\\"3,-6,-5,-2\\\"}\", \"long\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"paired_unpaired\": \"{\\\"__current_case__\\\": 0, \\\"fastq_input1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"fastq_input2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"fastq_input_selector\\\": \\\"paired\\\"}\", \"min_fasta_length\": \"\\\"100\\\"\", \"mode\": \"\\\"normal\\\"\", \"rotation\": \"{\\\"no_rotate\\\": \\\"false\\\", \\\"start_gene_cov\\\": \\\"95.0\\\", \\\"start_gene_id\\\": \\\"90.0\\\", \\\"start_genes\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\", \"pilon\": \"{\\\"min_polish_size\\\": \\\"1000\\\", \\\"no_pilon\\\": \\\"false\\\"}\"}", + "tool_version": "0.4.8.0", + "type": "tool", + "uuid": "851c6be6-c202-450a-9cd3-19e205dcc496", + "workflow_outputs": [ + { + "label": null, + "output_name": "assembly", + "uuid": "17700863-7cc5-4a67-ac0f-aa5f7b258d62" + }, + { + "label": null, + "output_name": "assembly_graph", + "uuid": "3285cc00-6b39-4f3d-87a5-87abd483ede6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "errors": null, + "id": 21, + "input_connections": { + "input_file": { + "id": 20, + "output_name": "assembly_graph" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "txt" + } + ], + "position": { + "left": 2977.4166870117188, + "top": 803.4166412353516 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"tsv\": \"\\\"false\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "0.8.1+galaxy1", + "type": "tool", + "uuid": "4aa230bd-3269-41c3-81f5-9085fcc4001d", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "cf5eab6a-97ae-430e-a27a-6ecc33d4b8c0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "errors": null, + "id": 22, + "input_connections": { + "input_file": { + "id": 20, + "output_name": "assembly_graph" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Bandage Image", + "name": "input_file" + } + ], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 2975.4166870117188, + "top": 1017.4166412353516 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"lengths\": \"\\\"true\\\"\", \"output_format\": \"\\\"jpg\\\"\", \"height\": \"\\\"1000\\\"\", \"width\": \"\\\"\\\"\", \"names\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "7683e21a-0fe1-4871-b044-7e74321fe44b", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "12e0cc76-0374-4ce8-b882-f5f21a942ad1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "errors": null, + "id": 23, + "input_connections": { + "input": { + "id": 20, + "output_name": "assembly" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Filter sequences by length", + "name": "input" + } + ], + "label": null, + "name": "Filter sequences by length", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 2978.4166870117188, + "top": 1220.4166259765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "tool_shed_repository": { + "changeset_revision": "8cacfcf96a52", + "name": "fasta_filter_by_length", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"max_length\": \"\\\"0\\\"\", \"min_length\": \"\\\"1000\\\"\"}", + "tool_version": "1.2", + "type": "tool", + "uuid": "ef08963b-e96b-4841-b1fd-02056f6ab1f2", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "637c866b-dc17-4c32-aa1e-5207ae2c79a0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input|file_list": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "ONT data", + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 516.13330078125, + "top": 540.7166442871094 + }, + "post_job_actions": { + "HideDatasetActionlist_paired": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "list_paired" + }, + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionoutput_collection_other": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection_other" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aad3885b3216", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"minlen\\\": \\\"\\\", \\\"skip_technical\\\": \\\"true\\\", \\\"split\\\": \\\"--split-3\\\"}\", \"input\": \"{\\\"__current_case__\\\": 2, \\\"file_list\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"input_select\\\": \\\"file_list\\\"}\", \"__rerun_remap_job_id__\": null, \"__page__\": null}", + "tool_version": "2.10.4+galaxy1", + "type": "tool", + "uuid": "2ea0a236-4ecc-43b4-a815-40f37bf1bd59", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_collection", + "uuid": "9cd44dd5-4375-4c34-9edc-804544192c34" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "single_paired|paired_input": { + "id": 2, + "output_name": "list_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + } + ], + "label": "fastp: Trimmed Illumina Reads", + "name": "fastp", + "outputs": [ + { + "name": "output_paired_coll", + "type": "input" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 879.7833251953125, + "top": 365.04998779296875 + }, + "post_job_actions": { + "HideDatasetActionreport_json": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "1d8fe9bc4cb0", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"output_options\": \"{\\\"report_html\\\": \\\"false\\\", \\\"report_json\\\": \\\"true\\\"}\", \"single_paired\": \"{\\\"__current_case__\\\": 2, \\\"adapter_trimming_options\\\": {\\\"adapter_sequence1\\\": \\\"\\\", \\\"adapter_sequence2\\\": \\\"\\\", \\\"disable_adapter_trimming\\\": \\\"false\\\"}, \\\"global_trimming_options\\\": {\\\"trim_front1\\\": \\\"\\\", \\\"trim_front2\\\": \\\"\\\", \\\"trim_tail1\\\": \\\"\\\", \\\"trim_tail2\\\": \\\"\\\"}, \\\"paired_input\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"single_paired_selector\\\": \\\"paired_collection\\\"}\", \"read_mod_options\": \"{\\\"base_correction_options\\\": {\\\"correction\\\": \\\"false\\\"}, \\\"cutting_by_quality_options\\\": {\\\"cut_by_quality3\\\": \\\"false\\\", \\\"cut_by_quality5\\\": \\\"false\\\", \\\"cut_mean_quality\\\": \\\"\\\", \\\"cut_window_size\\\": \\\"\\\"}, \\\"polyg_tail_trimming\\\": {\\\"__current_case__\\\": 1, \\\"poly_g_min_len\\\": \\\"\\\", \\\"trimming_select\\\": \\\"\\\"}, \\\"polyx_tail_trimming\\\": {\\\"__current_case__\\\": 1, \\\"polyx_trimming_select\\\": \\\"\\\"}, \\\"umi_processing\\\": {\\\"umi\\\": \\\"false\\\", \\\"umi_len\\\": \\\"\\\", \\\"umi_loc\\\": \\\"\\\", \\\"umi_prefix\\\": \\\"\\\"}}\", \"overrepresented_sequence_analysis\": \"{\\\"overrepresentation_analysis\\\": \\\"false\\\", \\\"overrepresentation_sampling\\\": \\\"\\\"}\", \"filter_options\": \"{\\\"length_filtering_options\\\": {\\\"disable_length_filtering\\\": \\\"false\\\", \\\"length_required\\\": \\\"50\\\"}, \\\"low_complexity_filter\\\": {\\\"complexity_threshold\\\": \\\"\\\", \\\"enable_low_complexity_filter\\\": \\\"false\\\"}, \\\"quality_filtering_options\\\": {\\\"disable_quality_filtering\\\": \\\"false\\\", \\\"n_base_limit\\\": \\\"\\\", \\\"qualified_quality_phred\\\": \\\"20\\\", \\\"unqualified_percent_limit\\\": \\\"20\\\"}}\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.19.5+galaxy1", + "type": "tool", + "uuid": "7508c22b-dc6a-4071-8dd0-d5616718e62b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_paired_coll", + "uuid": "a7be7eab-3e80-4be6-b1a4-ab303c314096" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "mode|reads|files": { + "id": 3, + "output_name": "output_collection" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "txt" + }, + { + "name": "nanostats_post_filtering", + "type": "txt" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 924.7833251953125, + "top": 650.4666442871094 + }, + "post_job_actions": { + "HideDatasetActionlog_read_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log_read_length" + }, + "HideDatasetActionnanostats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats" + }, + "HideDatasetActionnanostats_post_filtering": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "HideDatasetActionread_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "645159bcee2d", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter\": \"{\\\"alength\\\": \\\"false\\\", \\\"barcoded\\\": \\\"false\\\", \\\"downsample\\\": \\\"\\\", \\\"drop_outliers\\\": \\\"false\\\", \\\"loglength\\\": \\\"true\\\", \\\"maxlength\\\": \\\"\\\", \\\"minlength\\\": \\\"\\\", \\\"minqual\\\": \\\"\\\", \\\"percentqual\\\": \\\"false\\\", \\\"readtype\\\": null}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"mode\": \"{\\\"__current_case__\\\": 0, \\\"choice\\\": \\\"batch\\\", \\\"reads\\\": {\\\"__current_case__\\\": 0, \\\"files\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"type\\\": \\\"fastq\\\"}}\", \"customization\": \"{\\\"N50\\\": \\\"false\\\", \\\"color\\\": null, \\\"format\\\": \\\"png\\\", \\\"noN50\\\": \\\"false\\\", \\\"plots\\\": null}\"}", + "tool_version": "1.25.0+galaxy1", + "type": "tool", + "uuid": "9b1d43ac-82e3-463f-9c88-08c8826a62c9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_html", + "uuid": "cd8570c7-02db-479b-81a9-cd0d26643f71" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 3, + "output_name": "output_collection" + } + }, + "inputs": [], + "label": null, + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 1003.9833984375, + "top": 1131.9666442871094 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "tool_shed_repository": { + "changeset_revision": "53c0b7a1a0c3", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": \"{\\\"-O2\\\": \\\"\\\", \\\"A\\\": \\\"\\\", \\\"B\\\": \\\"\\\", \\\"E\\\": \\\"\\\", \\\"E2\\\": \\\"\\\", \\\"O\\\": \\\"\\\", \\\"s\\\": \\\"\\\", \\\"u\\\": null, \\\"z\\\": \\\"\\\"}\", \"analysis_type_selector\": \"\\\"splice\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"io_options\": \"{\\\"K\\\": \\\"\\\", \\\"L\\\": \\\"false\\\", \\\"Q\\\": \\\"false\\\", \\\"Y\\\": \\\"false\\\", \\\"c\\\": \\\"false\\\", \\\"cs\\\": null, \\\"eqx\\\": \\\"false\\\", \\\"output_format\\\": \\\"BAM\\\"}\", \"mapping_options\": \"{\\\"F\\\": \\\"\\\", \\\"G\\\": \\\"\\\", \\\"N\\\": \\\"\\\", \\\"X\\\": \\\"false\\\", \\\"f\\\": \\\"\\\", \\\"g\\\": \\\"\\\", \\\"m\\\": \\\"\\\", \\\"min_occ_floor\\\": \\\"\\\", \\\"n\\\": \\\"\\\", \\\"p\\\": \\\"\\\", \\\"r\\\": \\\"\\\"}\", \"fastq_input\": \"{\\\"__current_case__\\\": 1, \\\"fastq_input1\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"fastq_input_selector\\\": \\\"single\\\"}\", \"reference_source\": \"{\\\"__current_case__\\\": 0, \\\"ref_file\\\": \\\"hg38\\\", \\\"reference_source_selector\\\": \\\"cached\\\"}\", \"indexing_options\": \"{\\\"H\\\": \\\"false\\\", \\\"I\\\": \\\"\\\", \\\"k\\\": \\\"\\\", \\\"w\\\": \\\"\\\"}\"}", + "tool_version": "2.17+galaxy1", + "type": "tool", + "uuid": "098d2283-1218-489b-9882-8822e79d9444", + "workflow_outputs": [ + { + "label": null, + "output_name": "alignment_output", + "uuid": "9972015d-4bdc-440f-b8b6-84e92a64ef8f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 7, + "input_connections": { + "results_0|software_cond|input": { + "id": 4, + "output_name": "report_json" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1152.4833984375, + "top": 200 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\\\"\\\"\", \"__page__\": null, \"title\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"results\": \"[{\\\"__index__\\\": 0, \\\"software_cond\\\": {\\\"__current_case__\\\": 7, \\\"input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"software\\\": \\\"fastp\\\"}}]\", \"saveLog\": \"\\\"false\\\"\"}", + "tool_version": "1.7", + "type": "tool", + "uuid": "73566697-4a46-4d35-b8e2-61770acc62c0", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "15f42a94-2c97-4932-8e3f-f26a72b58be4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "library|input_1": { + "id": 4, + "output_name": "output_paired_coll" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 1208.699951171875, + "top": 564.6333160400391 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "749c918495f7", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"sam_options\": \"{\\\"__current_case__\\\": 1, \\\"sam_options_selector\\\": \\\"no\\\"}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"library\": \"{\\\"__current_case__\\\": 2, \\\"aligned_file\\\": \\\"false\\\", \\\"input_1\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"paired_options\\\": {\\\"__current_case__\\\": 1, \\\"paired_options_selector\\\": \\\"no\\\"}, \\\"type\\\": \\\"paired_collection\\\", \\\"unaligned_file\\\": \\\"false\\\"}\", \"reference_genome\": \"{\\\"__current_case__\\\": 0, \\\"index\\\": \\\"hg38full\\\", \\\"source\\\": \\\"indexed\\\"}\", \"rg\": \"{\\\"__current_case__\\\": 3, \\\"rg_selector\\\": \\\"do_not_set\\\"}\", \"save_mapping_stats\": \"\\\"true\\\"\", \"analysis_type\": \"{\\\"__current_case__\\\": 0, \\\"analysis_type_selector\\\": \\\"simple\\\", \\\"presets\\\": \\\"no_presets\\\"}\"}", + "tool_version": "2.3.4.3+galaxy0", + "type": "tool", + "uuid": "43331d2c-7116-410e-a6bd-7e7520d93a52", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "eeae40f6-f1b2-4c56-9860-ac7b8eb1dec0" + }, + { + "label": null, + "output_name": "mapping_stats", + "uuid": "c567226e-efaf-4188-bdec-3ba20d0733b0" + } + ] + } + ], + "parent_id": "assembly/assembly-with-preprocessing", + "path": "topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.ga", + "tags": [ + "GTN", + "assembly" + ], + "test_results": null, + "tests": false, + "title": "assembly_with_preprocessing_and_sra_download", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-assembly-with-preprocessing/versions/assembly-with-preprocessing-and-sra-download", + "tutorial_id": "assembly-with-preprocessing", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/assembly-with-preprocessing/workflows/assembly_with_preprocessing_and_sra_download.html", + "version": 1, + "wfid": "assembly-assembly-with-preprocessing", + "wfname": "assembly-with-preprocessing-and-sra-download", + "workflow": "assembly_with_preprocessing_and_sra_download.ga", + "workflow_tools": [ + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.19.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_sample/1.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "workflowhub_id": "1197" + } + ], + "zenodo_link": "https://zenodo.org/record/3732359" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "a1f0b3f4b781", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "145f6d74ff5e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_call", + "owner": "iuc", + "revisions": "65432c3abf6c", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_indelqual", + "owner": "iuc", + "revisions": "426d707dfc47", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_viterbi", + "owner": "iuc", + "revisions": "aa35ee7f3ab2", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "bf675f34b056", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "revisions": "2a3a00c1fa0a", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "494b2ec08162", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "4df8de2d0e48", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: a1f0b3f4b781\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 145f6d74ff5e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_call\n owner: iuc\n revisions: 65432c3abf6c\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_indelqual\n owner: iuc\n revisions: 426d707dfc47\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_viterbi\n owner: iuc\n revisions: aa35ee7f3ab2\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: bf675f34b056\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff_sars_cov_2\n owner: iuc\n revisions: 2a3a00c1fa0a\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 494b2ec08162\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 4df8de2d0e48\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json", + "contributions": { + "authorship": [ + "mvdbeek", + "tnabtaf", + "blankenberg", + "nekrut" + ], + "editing": [ + "wm75" + ] + }, + "contributors": [ + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + }, + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/variant-analysis/tutorials/sars-cov-2", + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Genome indexing", + "SNP detection", + "Sequence alignment", + "Formatting", + "Read mapping", + "Generation", + "Data handling", + "Validation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/sars-cov-2", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Sequence data in the SRA can be directly imported into Galaxy", + "Collections enable efficient/parallel processing of sequence data from whole batches of samples", + "Genomic mutations in SARS-CoV-2 viral isolates can be identified through a straightforward pipeline involving sequenced reads preprocessing, mapping to the SARS-CoV-2 reference genome, postprocessing of mapping results, and variant calling" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand how Galaxy and the Sequence Read Archive interact", + "Be able to go from Galaxy to the Short Reach Archive, query SRA, use the SRA Run Selector to send selected metadata to Galaxy, and then import sequence data from SRA into Galaxy", + "Understand how collections enable processing of sequencing data in batches", + "Understand the analysis steps required to identify and annotate genomic mutations from sequencing data of SARS-CoV-2 samples" + ], + "pageviews": 18450, + "pub_date": "2020-06-24", + "questions": [ + "How can you download public sequencing data deposited in the NCBI Sequence Read Archive (SRA) into a Galaxy history for analysis?", + "How can you process a batch of sequencing data from several samples efficiently/in parallel with Galaxy?", + "Starting from raw sequenced reads of whole-genome sequenced samples of SARS-CoV-2, how can you identify mutations in the genomes of these samples?" + ], + "recordings": [ + { + "captioners": [ + "nekrut" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "nekrut" + ], + "youtube_id": "9mIL0tIfZ_o" + } + ], + "short_id": "T00315", + "short_tools": [ + "Grep1", + "picard_MarkDuplicates", + "samtools_stats", + "fastp", + "multiqc", + "tp_cut_tool", + "fasterq_dump", + "snpSift_extractFields", + "Filter1", + "lofreq_call", + "lofreq_indelqual", + "lofreq_viterbi", + "bwa_mem", + "snpeff_sars_cov_2" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "covid19", + "virology", + "one-health" + ], + "time_estimation": "1H", + "title": "From NCBI's Sequence Read Archive (SRA) to Galaxy: SARS-CoV-2 variant analysis", + "tools": [ + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.0.3+galaxy0" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-cov-2", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/sars-cov-2/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 175, + "visitors": 12116, + "workflows": [ + { + "creators": [], + "description": "Analysis of variation within individual COVID-19 samples (Paired End Illumina). Does not use paured", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNC_045512.2 fasta file\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRA Manifest\"]\n 2[label=\"Faster Download and Extract Reads in FASTQ\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"fastp\"]\n 2 -> 3 [label=\"list_paired\"]\n 4[label=\"Map with BWA-MEM\"]\n 3 -> 4 [label=\"output_paired_coll\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"MarkDuplicates\"]\n 4 -> 5 [label=\"bam_output\"]\n 6[label=\"Realign reads\"]\n 5 -> 6 [label=\"outFile\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Samtools stats\"]\n 5 -> 7 [label=\"outFile\"]\n 8[label=\"Insert indel qualities\"]\n 6 -> 8 [label=\"realigned\"]\n 0 -> 8 [label=\"output\"]\n k2ca7c89b999f41dc8037e54e25959a7e[color=lightseagreen,label=\"Output\\nRealigned Alignments with Indel Qualities\"]\n 8 -> k2ca7c89b999f41dc8037e54e25959a7e\n 9[label=\"Call variants\"]\n 8 -> 9 [label=\"output\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"SnpEff eff:\"]\n 9 -> 10 [label=\"variants\"]\n 11[label=\"SnpSift Extract Fields\"]\n 10 -> 11 [label=\"snpeff_output\"]\n k06259137eaa5404a923c70ee5f1d89d4[color=lightseagreen,label=\"Output\\nSnpSift tabular output\"]\n 11 -> k06259137eaa5404a923c70ee5f1d89d4\n 12[label=\"MultiQC\"]\n 3 -> 12 [label=\"report_json\"]\n 7 -> 12 [label=\"output\"]\n 5 -> 12 [label=\"metrics_file\"]\n 10 -> 12 [label=\"csvFile\"]\n k758ffde57ddd482a88b21504f8335488[color=lightseagreen,label=\"Output\\nMultiQC Report PE\"]\n 12 -> k758ffde57ddd482a88b21504f8335488\n}", + "history": [ + { + "hash": "18338ab9a1ef29b46dc8f2e8a7f7a4b055f16e3d", + "message": "Use correct fasterqdump version", + "num": 7, + "short_hash": "18338ab9a", + "unix": "1593005231" + }, + { + "hash": "979d6cd2174d0f2ce10ad195d9d3cc4b29a1623a", + "message": "Reformat workflow, bump lofreq to 2.1.5", + "num": 6, + "short_hash": "979d6cd21", + "unix": "1593004337" + }, + { + "hash": "ced05a792b3048548fd31a9d0bde9a1bf634481f", + "message": "Fix workflow connections", + "num": 5, + "short_hash": "ced05a792", + "unix": "1592944690" + }, + { + "hash": "1c38a3ed277eb7434c02927dce89f72e8a9c0c78", + "message": "Use newer, simpler output", + "num": 4, + "short_hash": "1c38a3ed2", + "unix": "1592943019" + }, + { + "hash": "a58450027f50bbdb5e91ee3529c7deef7ee1cf4e", + "message": "add topic tag to workflow", + "num": 3, + "short_hash": "a58450027", + "unix": "1592838416" + }, + { + "hash": "e8eea07056121bf6ee287bec31c64cd69d2e6dcb", + "message": "reformat workflow", + "num": 2, + "short_hash": "e8eea0705", + "unix": "1592835884" + }, + { + "hash": "a06c40264814dc80888f2a9ce28d4f06c2c3e687", + "message": "Skeleton from PE sars-cov-2 workflow", + "num": 1, + "short_hash": "a06c40264", + "unix": "1592389814" + } + ], + "inputs": [ + { + "annotation": "Contains SARS-CoV-2 reference sequence", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Contains SARS-CoV-2 reference sequence", + "name": "NC_045512.2 fasta file" + } + ], + "label": "NC_045512.2 fasta file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 317.85511016845703 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0e91bcb8-fa43-4fc5-87f9-9e65784373e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1dedf4c3-5fc4-4505-baa0-b13e4416d67d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRA Manifest" + } + ], + "label": "SRA Manifest", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 372.3295364379883 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3c5adef0-7af6-435e-bb10-966361130b58", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fa458185-44d5-4d2d-ad69-20595c8ad337" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nNC_045512.2 fasta file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSRA Manifest\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Faster Download and Extract Reads in FASTQ\"];\n 1 -->|output| 2;\n 3[\"fastp\"];\n 2 -->|list_paired| 3;\n 4[\"Map with BWA-MEM\"];\n 3 -->|output_paired_coll| 4;\n 0 -->|output| 4;\n 5[\"MarkDuplicates\"];\n 4 -->|bam_output| 5;\n 6[\"Realign reads\"];\n 5 -->|outFile| 6;\n 0 -->|output| 6;\n 7[\"Samtools stats\"];\n 5 -->|outFile| 7;\n 8[\"Insert indel qualities\"];\n 6 -->|realigned| 8;\n 0 -->|output| 8;\n 2ca7c89b-999f-41dc-8037-e54e25959a7e[\"Output\\nRealigned Alignments with Indel Qualities\"];\n 8 --> 2ca7c89b-999f-41dc-8037-e54e25959a7e;\n style 2ca7c89b-999f-41dc-8037-e54e25959a7e stroke:#2c3143,stroke-width:4px;\n 9[\"Call variants\"];\n 8 -->|output| 9;\n 0 -->|output| 9;\n 10[\"SnpEff eff:\"];\n 9 -->|variants| 10;\n 11[\"SnpSift Extract Fields\"];\n 10 -->|snpeff_output| 11;\n 06259137-eaa5-404a-923c-70ee5f1d89d4[\"Output\\nSnpSift tabular output\"];\n 11 --> 06259137-eaa5-404a-923c-70ee5f1d89d4;\n style 06259137-eaa5-404a-923c-70ee5f1d89d4 stroke:#2c3143,stroke-width:4px;\n 12[\"MultiQC\"];\n 3 -->|report_json| 12;\n 7 -->|output| 12;\n 5 -->|metrics_file| 12;\n 10 -->|csvFile| 12;\n 758ffde5-7ddd-482a-88b2-1504f8335488[\"Output\\nMultiQC Report PE\"];\n 12 --> 758ffde5-7ddd-482a-88b2-1504f8335488;\n style 758ffde5-7ddd-482a-88b2-1504f8335488 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Simple COVID-19 - PE Variation", + "outputs": [ + { + "annotation": "Contains SARS-CoV-2 reference sequence", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Contains SARS-CoV-2 reference sequence", + "name": "NC_045512.2 fasta file" + } + ], + "label": "NC_045512.2 fasta file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 317.85511016845703 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0e91bcb8-fa43-4fc5-87f9-9e65784373e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1dedf4c3-5fc4-4505-baa0-b13e4416d67d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRA Manifest" + } + ], + "label": "SRA Manifest", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 372.3295364379883 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3c5adef0-7af6-435e-bb10-966361130b58", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fa458185-44d5-4d2d-ad69-20595c8ad337" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input|file_list": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Faster Download and Extract Reads in FASTQ", + "name": "input" + } + ], + "label": null, + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 342.9971618652344, + "top": 317.85511016845703 + }, + "post_job_actions": { + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionoutput_collection": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection" + }, + "HideDatasetActionoutput_collection_other": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection_other" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "tool_shed_repository": { + "changeset_revision": "248f85ff0733", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"minlen\": \"\", \"split\": \"--split-3\", \"skip_technical\": \"true\"}, \"input\": {\"input_select\": \"file_list\", \"__current_case__\": 2, \"file_list\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.10.7+galaxy1", + "type": "tool", + "uuid": "3ce5b504-3641-4ea9-8d24-07f9bebaec23", + "workflow_outputs": [ + { + "label": null, + "output_name": "list_paired", + "uuid": "9e5c0368-e97c-4def-9704-1b902fbb2ed7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "reads": { + "id": 6, + "output_name": "realigned" + }, + "strategy|reference_source|ref": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Insert indel qualities", + "outputs": [ + { + "name": "output", + "type": "bam" + } + ], + "position": { + "left": 1057.5852355957031, + "top": 317.85511016845703 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Realigned Alignments with Indel Qualities" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "354b534eeab7", + "name": "lofreq_indelqual", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"reads\": {\"__class__\": \"ConnectedValue\"}, \"strategy\": {\"selector\": \"dindel\", \"__current_case__\": 1, \"reference_source\": {\"ref_selector\": \"history\", \"__current_case__\": 1, \"ref\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.5+galaxy0", + "type": "tool", + "uuid": "cbc7ee7f-5cfa-4d45-a83e-623efbf66068", + "workflow_outputs": [ + { + "label": "Realigned Alignments with Indel Qualities", + "output_name": "output", + "uuid": "2ca7c89b-999f-41dc-8037-e54e25959a7e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "variants" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "intervals" + }, + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "transcripts" + } + ], + "label": null, + "name": "SnpEff eff:", + "outputs": [ + { + "name": "snpeff_output", + "type": "vcf" + }, + { + "name": "statsFile", + "type": "html" + }, + { + "name": "csvFile", + "type": "csv" + } + ], + "position": { + "left": 1343.0823059082031, + "top": 317.85511016845703 + }, + "post_job_actions": { + "HideDatasetActioncsvFile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "csvFile" + }, + "HideDatasetActionstatsFile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "statsFile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "tool_shed_repository": { + "changeset_revision": "2a3a00c1fa0a", + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotations\": [\"-formatEff\", \"-classic\"], \"chr\": \"\", \"csvStats\": \"true\", \"filter\": {\"specificEffects\": \"no\", \"__current_case__\": 0}, \"filterOut\": [\"-no-downstream\", \"-no-intergenic\", \"-no-upstream\", \"-no-utr\"], \"generate_stats\": \"true\", \"genome_version\": \"NC_045512.2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inputFormat\": \"vcf\", \"intervals\": {\"__class__\": \"RuntimeValue\"}, \"noLog\": \"true\", \"offset\": \"default\", \"outputConditional\": {\"outputFormat\": \"vcf\", \"__current_case__\": 0}, \"transcripts\": {\"__class__\": \"RuntimeValue\"}, \"udLength\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.5covid19", + "type": "tool", + "uuid": "8fb55fb1-4986-45f5-bb6b-45c1329842b2", + "workflow_outputs": [ + { + "label": null, + "output_name": "snpeff_output", + "uuid": "d5bec60d-c853-4979-a191-e69f47539684" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 10, + "output_name": "snpeff_output" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Extract Fields", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1486.0794982910156, + "top": 317.85511016845703 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "SnpSift tabular output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "tool_shed_repository": { + "changeset_revision": "2b3e65a4252f", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"empty_text\": \".\", \"extract\": \"CHROM POS REF ALT QUAL DP AF SB DP4 EFF[*].IMPACT EFF[*].FUNCLASS EFF[*].EFFECT EFF[*].GENE EFF[*].CODON\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"one_effect_per_line\": \"false\", \"separator\": \",\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy0", + "type": "tool", + "uuid": "33e13bce-928f-41d6-b418-bc0a9e53d83d", + "workflow_outputs": [ + { + "label": "SnpSift tabular output", + "output_name": "output", + "uuid": "06259137-eaa5-404a-923c-70ee5f1d89d4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "results_0|software_cond|input": { + "id": 3, + "output_name": "report_json" + }, + "results_1|software_cond|output_0|type|input": { + "id": 7, + "output_name": "output" + }, + "results_2|software_cond|output_0|input": { + "id": 5, + "output_name": "metrics_file" + }, + "results_3|software_cond|input": { + "id": 10, + "output_name": "csvFile" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "plots", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1486.0794982910156, + "top": 397.8408889770508 + }, + "post_job_actions": { + "HideDatasetActionplots": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "plots" + }, + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC Report PE" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "bf675f34b056", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"flat\": \"false\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastp\", \"__current_case__\": 7, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"samtools\", \"__current_case__\": 23, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"stats\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 3, \"software_cond\": {\"software\": \"snpeff\", \"__current_case__\": 25, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8+galaxy0", + "type": "tool", + "uuid": "8c98527f-d1db-4cc4-89f1-1e75c508b8e9", + "workflow_outputs": [ + { + "label": "MultiQC Report PE", + "output_name": "html_report", + "uuid": "758ffde5-7ddd-482a-88b2-1504f8335488" + } + ] + } + ], + "parent_id": "variant-analysis/sars-cov-2", + "path": "topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": false, + "title": "Simple COVID-19 - PE Variation", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-sars-cov-2/versions/main-workflow", + "tutorial_id": "sars-cov-2", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.html", + "version": 1, + "wfid": "variant-analysis-sars-cov-2", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1" + ], + "workflowhub_id": "1074" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "4c07ddedc198", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nextclade", + "owner": "iuc", + "revisions": "4f6349228462", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pangolin", + "owner": "iuc", + "revisions": "03ed9524dcd1", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_regex_finder", + "owner": "mbernt", + "revisions": "9a811adb714f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: datamash_ops\n owner: iuc\n revisions: 4c07ddedc198\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nextclade\n owner: iuc\n revisions: 4f6349228462\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pangolin\n owner: iuc\n revisions: 03ed9524dcd1\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_regex_finder\n owner: mbernt\n revisions: 9a811adb714f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json", + "contributions": { + "authorship": [ + "wm75", + "bebatut" + ], + "funding": [ + "by-covid", + "elixir-converge" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + }, + { + "avatar": "https://elixir-europe.org/sites/default/files/styles/right-medium/public/images/converge_logo.png", + "funder": true, + "funding_id": "871075", + "funding_statement": "ELIXIR CONVERGE is connecting and align ELIXIR Nodes to deliver sustainable FAIR life-science data management services. This project has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement \u2116 871075", + "funding_system": "cordis", + "github": false, + "id": "elixir-converge", + "joined": "2023-01", + "members": [ + "bgruening", + "hexylena" + ], + "name": "ELIXIR-CONVERGE", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-converge/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-converge.json" + } + ], + "dir": "topics/variant-analysis/tutorials/sars-cov-2-variant-discovery", + "edam_operation": [ + "Variant calling", + "Methylation analysis", + "Variant classification", + "Tree-based sequence alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/sars-cov-2-variant-discovery", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The Galaxy Covid-19 project has developed a flexible set of workflows for SARS-CoV-2 genome surveillance, which is freely available through public workflow registries.", + "The workflows enable processing of whole batches of samples with rather limited user interaction.", + "They provide a high-throughput and flexible analysis solution without compromising on accuracy, nor on the possibility to explore intermediate steps and outputs in detail." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Discover and obtain recommended Galaxy workflows for SARS-CoV-2 sequence data analysis through public workflow registries", + "Choose and run a workflow to discover mutations in a batch of viral samples from sequencing data obtained through a range of different protocols and platforms", + "Run a workflow to summarize and visualize the mutation discovery results for a batch of samples", + "Run a workflow to construct viral consensus sequences for the samples in a batch", + "Know different SARS-CoV-2 lineage classification systems, and use pangolin and Nextclade to assign samples to predefined lineages", + "Combine information from different analysis steps to be able to draw appropriate conclusions about individual samples and batches of viral data" + ], + "pageviews": 11912, + "pub_date": "2021-06-30", + "questions": [ + "How can a complete analysis, including viral consensus sequence reconstruction and lineage assignment be performed?", + "How can such an analysis be kept manageable for lots of samples, yet flexible enough to handle different types of input data?", + "What are key results beyond consensus genomes and lineage assignments that need to be understood to avoid inappropriate conclusions about samples?", + "How can the needs for high-throughput data analysis in an ongoing infectious disease outbreak/pandemic and the need for proper quality control and data inspection be balanced?" + ], + "recordings": [ + { + "captioners": [ + "wm75" + ], + "date": "2023-05-10", + "length": "55M", + "speakers": [ + "wm75" + ], + "youtube_id": "hjlmCWQhBvI" + }, + { + "captioners": [ + "hexylena" + ], + "date": "2021-08-09", + "length": "1H30M", + "speakers": [ + "wm75" + ], + "youtube_id": "vnFQ2fR_fzw" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + }, + { + "topic_name": "variant-analysis", + "tutorials": [ + "sars-cov-2" + ], + "type": "internal" + } + ], + "short_id": "T00316", + "short_tools": [ + "nextclade", + "datamash_ops", + "fasta_regex_finder", + "pangolin", + "Filter1", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "covid19", + "virology", + "one-health" + ], + "time_estimation": "3H", + "title": "Mutation calling, viral genome reconstruction and lineage/clade assignment from SARS-CoV-2 sequencing data", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nextclade/nextclade/2.7.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mbernt/fasta_regex_finder/fasta_regex_finder/0.1.0", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-cov-2-variant-discovery", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 207, + "visitors": 6391, + "zenodo_link": "https://zenodo.org/record/5036687" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "revisions": "8e214e52e461", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "revisions": "7255688c77f3", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "enumerate_charges", + "owner": "bgruening", + "revisions": "2a868592ebcb", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "enumerate_charges", + "owner": "bgruening", + "revisions": "67ee76f0e497", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "b59c91adeac1", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "e2c36f62e22f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rdock_rbcavity", + "owner": "bgruening", + "revisions": "744a777e9f90", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rdock_rbdock", + "owner": "bgruening", + "revisions": "a22969b08177", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rxdock_rbcavity", + "owner": "bgruening", + "revisions": "7fac8e7a12d5", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rxdock_rbdock", + "owner": "bgruening", + "revisions": "6fe6b0e10ed6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "0046692724f9", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "6cbe2f30c2d7", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sucos_max_score", + "owner": "bgruening", + "revisions": "d4c67ced6abc", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sucos_max_score", + "owner": "bgruening", + "revisions": "9b48456a96fe", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xchem_transfs_scoring", + "owner": "bgruening", + "revisions": "f6f9b47d02b6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: ctb_frankenstein_ligand\n owner: bgruening\n revisions: 8e214e52e461\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ctb_frankenstein_ligand\n owner: bgruening\n revisions: 7255688c77f3\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: enumerate_charges\n owner: bgruening\n revisions: 2a868592ebcb\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: enumerate_charges\n owner: bgruening\n revisions: 67ee76f0e497\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: b59c91adeac1\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: e2c36f62e22f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rdock_rbcavity\n owner: bgruening\n revisions: 744a777e9f90\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rdock_rbdock\n owner: bgruening\n revisions: a22969b08177\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rxdock_rbcavity\n owner: bgruening\n revisions: 7fac8e7a12d5\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rxdock_rbdock\n owner: bgruening\n revisions: 6fe6b0e10ed6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: '0046692724f9'\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: 6cbe2f30c2d7\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sucos_max_score\n owner: bgruening\n revisions: d4c67ced6abc\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sucos_max_score\n owner: bgruening\n revisions: 9b48456a96fe\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xchem_transfs_scoring\n owner: bgruening\n revisions: f6f9b47d02b6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/covid19-docking", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "computational-chemistry/covid19-docking", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy can support large, rapid studies in computational chemistry", + "Protein-ligand docking contributes to the discovery of new drugs" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Understand how Galaxy was used to perform docking and pose scoring on the SARS-CoV-2 main protease (MPro).", + "Replicate the study on a (very) small scale", + "Gain familiarity with the docking and scoring techniques involved." + ], + "pageviews": 4516, + "pub_date": "2020-03-27", + "questions": [ + "How can candidate ligands be generated and docked to a protein in Galaxy?", + "How can the poses of the docked ligands be evaluated?", + "How can a workflow for drug virtual screening be constructed in Galaxy?" + ], + "requirements": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "cheminformatics" + ], + "type": "internal" + } + ], + "short_id": "T00049", + "short_tools": [ + "enumerate_charges", + "xchem_transfs_scoring", + "rdock_rbdock", + "rdock_rbcavity", + "rxdock_rbcavity", + "xchem_pose_scoring", + "openbabel_compound_convert", + "split_file_to_collection", + "ctb_frankenstein_ligand", + "sucos_max_score", + "collapse_dataset", + "rxdock_rbdock" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "covid19", + "one-health" + ], + "time_estimation": "2H", + "title": "Virtual screening of the SARS-CoV-2 main protease with rxDock and pose scoring", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/2013.1-0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/2.4.2.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbcavity/rdock_rbcavity/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbdock/rdock_rbdock/0.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/rxdock_rbcavity/rxdock_rbcavity/0.1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/rxdock_rbdock/rxdock_rbdock/0.1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.4.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/0.2.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/xchem_transfs_scoring/xchem_transfs_scoring/0.4.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "xchem_pose_scoring" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "covid19-docking", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/covid19-docking/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 178, + "visitors": 2664, + "workflows": [ + { + "creators": [], + "description": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCandidates\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMpro-x0195_0_apo-desolv.pdb\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhits.sdf\"]\n 3[label=\"Enumerate changes\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Compound conversion\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Create Frankenstein ligand\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Compound conversion\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"rDock cavity definition\"]\n 4 -> 7 [label=\"outfile\"]\n 5 -> 7 [label=\"outfile\"]\n 8[label=\"Split file\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"rDock docking\"]\n 4 -> 9 [label=\"outfile\"]\n 8 -> 9 [label=\"list_output_sdf\"]\n 7 -> 9 [label=\"activesite\"]\n 10[label=\"Collapse Collection\"]\n 9 -> 10 [label=\"output\"]\n 11[label=\"XChem TransFS pose scoring\"]\n 1 -> 11 [label=\"output\"]\n 10 -> 11 [label=\"output\"]\n 12[label=\"Max SuCOS score\"]\n 11 -> 12 [label=\"output\"]\n 2 -> 12 [label=\"output\"]\n}", + "history": [ + { + "hash": "cf8b1cb0509e73e534c234076c8bd055379823c5", + "message": "Update some workflow names for consistency", + "num": 4, + "short_hash": "cf8b1cb05", + "unix": "1598836271" + }, + { + "hash": "60a21218780027dcf65a5f37b94148b0771303e1", + "message": "update with covid19 tut with frankenstein ligand tool", + "num": 3, + "short_hash": "60a212187", + "unix": "1591084355" + }, + { + "hash": "2bffcbdc75d8aaf32b06acc2f9f493931782546d", + "message": "lint", + "num": 2, + "short_hash": "2bffcbdc7", + "unix": "1585304017" + }, + { + "hash": "62d30105b34ea23f3280539d9880037639aa770e", + "message": "linting covid19 cheminformatics tutorial", + "num": 1, + "short_hash": "62d30105b", + "unix": "1585300158" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Candidates" + } + ], + "label": "Candidates", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Candidates\"}", + "tool_version": null, + "type": "data_input", + "uuid": "47bf8c53-ae1e-4af6-bece-6adfd74b627c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cdab037e-aee1-49b8-a998-cd9fe7ddcdb7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mpro-x0195_0_apo-desolv.pdb" + } + ], + "label": "Mpro-x0195_0_apo-desolv.pdb", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 289.76666259765625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mpro-x0195_0_apo-desolv.pdb\"}", + "tool_version": null, + "type": "data_input", + "uuid": "156f4aeb-d160-456a-974e-7884b79cb83a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fd1c624-37c6-4874-b863-a40eac5e4994" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hits.sdf" + } + ], + "label": "hits.sdf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 400.5333251953125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"hits.sdf\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dd2d3bc0-8138-4e66-b2d9-e5e90e27b659", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1c8fb3cc-52ad-4f62-a00d-80b14b2c1d4a" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nCandidates\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nMpro-x0195_0_apo-desolv.pdb\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nhits.sdf\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Enumerate changes\"];\n 0 -->|output| 3;\n 4[\"Compound conversion\"];\n 1 -->|output| 4;\n 5[\"Create Frankenstein ligand\"];\n 2 -->|output| 5;\n 6[\"Compound conversion\"];\n 3 -->|output| 6;\n 7[\"rDock cavity definition\"];\n 4 -->|outfile| 7;\n 5 -->|outfile| 7;\n 8[\"Split file\"];\n 6 -->|outfile| 8;\n 9[\"rDock docking\"];\n 4 -->|outfile| 9;\n 8 -->|list_output_sdf| 9;\n 7 -->|activesite| 9;\n 10[\"Collapse Collection\"];\n 9 -->|output| 10;\n 11[\"XChem TransFS pose scoring\"];\n 1 -->|output| 11;\n 10 -->|output| 11;\n 12[\"Max SuCOS score\"];\n 11 -->|output| 12;\n 2 -->|output| 12;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Candidates" + } + ], + "label": "Candidates", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Candidates\"}", + "tool_version": null, + "type": "data_input", + "uuid": "47bf8c53-ae1e-4af6-bece-6adfd74b627c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cdab037e-aee1-49b8-a998-cd9fe7ddcdb7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mpro-x0195_0_apo-desolv.pdb" + } + ], + "label": "Mpro-x0195_0_apo-desolv.pdb", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 289.76666259765625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mpro-x0195_0_apo-desolv.pdb\"}", + "tool_version": null, + "type": "data_input", + "uuid": "156f4aeb-d160-456a-974e-7884b79cb83a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fd1c624-37c6-4874-b863-a40eac5e4994" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hits.sdf" + } + ], + "label": "hits.sdf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 400.5333251953125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"hits.sdf\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dd2d3bc0-8138-4e66-b2d9-e5e90e27b659", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1c8fb3cc-52ad-4f62-a00d-80b14b2c1d4a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create Frankenstein ligand", + "name": "infile" + } + ], + "label": null, + "name": "Create Frankenstein ligand", + "outputs": [ + { + "name": "outfile", + "type": "sdf" + } + ], + "position": { + "left": 478.76666259765625, + "top": 483.5333251953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "tool_shed_repository": { + "changeset_revision": "8e214e52e461", + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "081abe35-347a-4244-99ae-ec35329e3de0", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "53c557af-d5b9-4033-be54-7c197591e750" + } + ] + } + ], + "parent_id": "computational-chemistry/covid19-docking", + "path": "topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-covid19-docking/versions/workflow", + "tutorial_id": "covid19-docking", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.html", + "version": 3, + "wfid": "computational-chemistry-covid19-docking", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/2.4.2.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbcavity/rdock_rbcavity/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbdock/rdock_rbdock/0.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.4.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/0.2.3", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "xchem_pose_scoring" + ], + "workflowhub_id": "1079" + } + ], + "zenodo_link": "https://zenodo.org/record/3730474" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_fastx", + "owner": "iuc", + "revisions": "a8d69aee190e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "898b67846b47", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "d94aff5ee623", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_fastx\n owner: iuc\n revisions: a8d69aee190e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: 898b67846b47\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: d94aff5ee623\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/human-reads-removal/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/human-reads-removal", + "edam_operation": [ + "Generation", + "Data handling", + "Sequence file editing", + "Sequence alignment", + "Genome indexing", + "Read mapping" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/human-reads-removal", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Before submitting raw viral sequencing data to public databases you will want to remove human sequence traces", + "Human reads can be identified by mapping the data to the human reference genome", + "After mapping, you can extract the read identifiers of the non-human reads and use these to extract just the desired original sequenced reads from the input data" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Obtain viral (SARS-CoV-2) sequencing data with contaminating human reads from public sources", + "Organize the data into a collection", + "Preprocess and map the data against the human reference genome", + "Eliminate reads/read pairs that map to the human genome from the original data" + ], + "pageviews": 4759, + "pub_date": "2021-08-04", + "questions": [ + "How can you remove traces of human sequence data from a sequenced viral sample?" + ], + "requirements": [ + { + "topic_name": "sequence-analysis", + "tutorials": [ + "quality-control", + "mapping" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + } + ], + "short_id": "T00236", + "short_tools": [ + "Grep1", + "__UNZIP_COLLECTION__", + "samtools_fastx", + "__ZIP_COLLECTION__", + "seqtk_subseq", + "tp_replace_in_line", + "bwa_mem", + "trimmomatic" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "covid19" + ], + "time_estimation": "1h", + "title": "Removal of human reads from SARS-CoV-2 sequencing data", + "tools": [ + "Grep1", + "__UNZIP_COLLECTION__", + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.0", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "human-reads-removal", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/human-reads-removal/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/human-reads-removal/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/human-reads-removal/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 141, + "visitors": 3347, + "workflows": [ + { + "creators": [], + "description": "Removal of human reads from SARS-CoV-2 sequencing data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[label=\"Trimmomatic\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Unzip Collection\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Map with BWA-MEM\"]\n 1 -> 3 [label=\"fastq_out_paired\"]\n 4[label=\"Samtools fastx\"]\n 3 -> 4 [label=\"bam_output\"]\n 5[label=\"Select\"]\n 4 -> 5 [label=\"forward\"]\n 6[label=\"Replace Text\"]\n 5 -> 6 [label=\"out_file1\"]\n 7[label=\"seqtk_subseq\"]\n 2 -> 7 [label=\"forward\"]\n 6 -> 7 [label=\"outfile\"]\n 8[label=\"seqtk_subseq\"]\n 2 -> 8 [label=\"reverse\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"Paired-end collection of cleaned reads\"]\n 7 -> 9 [label=\"default\"]\n 8 -> 9 [label=\"default\"]\n kf24bbf28dc51440fa758ac05033f0645[color=lightseagreen,label=\"Output\\nCleaned Data\"]\n 9 -> kf24bbf28dc51440fa758ac05033f0645\n}", + "history": [ + { + "hash": "f71f6dde01e2dfe86a4b43526f119d9050693f84", + "message": "Address WF linting issues", + "num": 2, + "short_hash": "f71f6dde0", + "unix": "1628012579" + }, + { + "hash": "f232ad426455a30be4a74af21054384c23b07275", + "message": "Add new tutorial for cleaning SARS-CoV-2 data", + "num": 1, + "short_hash": "f232ad426", + "unix": "1628010649" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 564, + "height": 81, + "left": 296, + "right": 496, + "top": 483, + "width": 200, + "x": 296, + "y": 483 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d61c43e8-23ee-4f9a-9fd8-f58ffc134735", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b14c9326-21d3-4e0e-be24-7654e6b31b43" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Trimmomatic\"];\n 0 -->|output| 1;\n 2[\"Unzip Collection\"];\n 0 -->|output| 2;\n 3[\"Map with BWA-MEM\"];\n 1 -->|fastq_out_paired| 3;\n 4[\"Samtools fastx\"];\n 3 -->|bam_output| 4;\n 5[\"Select\"];\n 4 -->|forward| 5;\n 6[\"Replace Text\"];\n 5 -->|out_file1| 6;\n 7[\"seqtk_subseq\"];\n 2 -->|forward| 7;\n 6 -->|outfile| 7;\n 8[\"seqtk_subseq\"];\n 2 -->|reverse| 8;\n 6 -->|outfile| 8;\n 9[\"Paired-end collection of cleaned reads\"];\n 7 -->|default| 9;\n 8 -->|default| 9;\n f24bbf28-dc51-440f-a758-ac05033f0645[\"Output\\nCleaned Data\"];\n 9 --> f24bbf28-dc51-440f-a758-ac05033f0645;\n style f24bbf28-dc51-440f-a758-ac05033f0645 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "GTN - Sequence Analyses - Removal of human reads from SARS-CoV-2 sequencing data", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 564, + "height": 81, + "left": 296, + "right": 496, + "top": 483, + "width": 200, + "x": 296, + "y": 483 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d61c43e8-23ee-4f9a-9fd8-f58ffc134735", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b14c9326-21d3-4e0e-be24-7654e6b31b43" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "errors": null, + "id": 1, + "input_connections": { + "readtype|fastq_pair": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Trimmomatic", + "outputs": [ + { + "name": "fastq_out_paired", + "type": "input" + }, + { + "name": "fastq_out_unpaired", + "type": "input" + } + ], + "position": { + "bottom": 515, + "height": 202, + "left": 532, + "right": 732, + "top": 313, + "width": 200, + "x": 532, + "y": 313 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "tool_shed_repository": { + "changeset_revision": "d94aff5ee623", + "name": "trimmomatic", + "owner": "pjbriggs", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"illuminaclip\": {\"do_illuminaclip\": \"false\", \"__current_case__\": 1}, \"operations\": [{\"__index__\": 0, \"operation\": {\"name\": \"SLIDINGWINDOW\", \"__current_case__\": 0, \"window_size\": \"4\", \"required_quality\": \"20\"}}], \"output_err\": \"false\", \"output_logs\": \"false\", \"readtype\": {\"single_or_paired\": \"collection\", \"__current_case__\": 2, \"fastq_pair\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.38.1", + "type": "tool", + "uuid": "ced9a15d-ca78-4cf5-b1a0-267920691879", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastq_out_unpaired", + "uuid": "88e4c149-85d2-4c19-8a53-f242a3703e5e" + }, + { + "label": null, + "output_name": "fastq_out_paired", + "uuid": "fd0243b9-ef6a-445d-8fb9-f76d47c3f6fc" + } + ] + }, + { + "annotation": "", + "content_id": "__UNZIP_COLLECTION__", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unzip Collection", + "outputs": [ + { + "name": "forward", + "type": "input" + }, + { + "name": "reverse", + "type": "input" + } + ], + "position": { + "bottom": 746, + "height": 182, + "left": 735, + "right": 935, + "top": 564, + "width": 200, + "x": 735, + "y": 564 + }, + "post_job_actions": {}, + "tool_id": "__UNZIP_COLLECTION__", + "tool_state": "{\"input\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "f6552b12-5845-486b-95f5-35a3eefaa109", + "workflow_outputs": [ + { + "label": null, + "output_name": "forward", + "uuid": "5fabd686-3611-4d28-aff3-c1286b461bbf" + }, + { + "label": null, + "output_name": "reverse", + "uuid": "9b0c1a5f-6d39-46c7-a16d-afbb9e34bcfe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "errors": null, + "id": 3, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "fastq_out_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with BWA-MEM", + "name": "fastq_input" + } + ], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "bottom": 487, + "height": 192, + "left": 753, + "right": 953, + "top": 295, + "width": 200, + "x": 753, + "y": 295 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "tool_shed_repository": { + "changeset_revision": "64f11cf59c6e", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"fastq_input\": {\"fastq_input_selector\": \"paired_collection\", \"__current_case__\": 2, \"fastq_input1\": {\"__class__\": \"RuntimeValue\"}, \"iset_stats\": \"\"}, \"output_sort\": \"coordinate\", \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"ref_file\": \"hg38\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.2", + "type": "tool", + "uuid": "c21129e8-b54f-4a7d-9af2-b8202434c342", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "f0ca56d9-f544-465c-ad37-6380ba0ac2ea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "bam_output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "forward", + "type": "fasta" + } + ], + "position": { + "bottom": 447, + "height": 152, + "left": 973, + "right": 1173, + "top": 295, + "width": 200, + "x": 973, + "y": 295 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a8d69aee190e", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"copy_arb_tags\": \"\", \"copy_tags\": \"false\", \"exclusive_filter\": null, \"exclusive_filter_all\": null, \"idxout_cond\": {\"idxout_select\": \"no\", \"__current_case__\": 0}, \"inclusive_filter\": [\"4\", \"8\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"1085990\", \"output_fmt_cond\": {\"output_fmt_select\": \"fasta\", \"__current_case__\": 1}, \"outputs\": [\"r1\"], \"read_numbering\": \"-n\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "756ca036-b6b5-46e8-a230-81ed522ba950", + "workflow_outputs": [ + { + "label": null, + "output_name": "forward", + "uuid": "e82ae014-e75a-486c-93d6-af8cdd6e6f95" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "forward" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 387, + "height": 92, + "left": 1193, + "right": 1393, + "top": 295, + "width": 200, + "x": 1193, + "y": 295 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"1085990\", \"invert\": \"\", \"keep_header\": \"false\", \"pattern\": \"^>.+\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "5ab56d83-be12-4498-a88e-16d37ef2e904", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "04aaed7c-6c4c-44d6-89b0-5bba0a58927b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 387, + "height": 92, + "left": 1413, + "right": 1613, + "top": 295, + "width": 200, + "x": 1413, + "y": 295 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"infile|__identifier__\": \"1085990\", \"replacements\": [{\"__index__\": 0, \"find_pattern\": \"^>(.+)\", \"replace_pattern\": \"\\\\1\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "030b177e-2375-4856-b640-8ffd7f591aaf", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "f81d7560-8835-4307-b876-f56e22edf40e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 7, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "forward" + }, + "source|name_list": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "bottom": 416, + "height": 142, + "left": 1653, + "right": 1853, + "top": 274, + "width": 200, + "x": 1653, + "y": 274 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"in_file|__identifier__\": \"1085990\", \"l\": \"0\", \"name_list|__identifier__\": \"1085990\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "50599db8-7c04-4f0f-8cc7-ca9fbeb405ea", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "75989c7c-9b50-4286-b59a-e2ebefcd6206" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 8, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "reverse" + }, + "source|name_list": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "bottom": 572, + "height": 142, + "left": 1658, + "right": 1858, + "top": 430, + "width": 200, + "x": 1658, + "y": 430 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"in_file|__identifier__\": \"1085990\", \"l\": \"0\", \"name_list|__identifier__\": \"1085990\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "6b8ac606-6490-4355-9111-001dbe15fd22", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "1787644d-4796-4928-9458-7fc0779eb500" + } + ] + }, + { + "annotation": "", + "content_id": "__ZIP_COLLECTION__", + "errors": null, + "id": 9, + "input_connections": { + "input_forward": { + "id": 7, + "output_name": "default" + }, + "input_reverse": { + "id": 8, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Zip Collection", + "name": "input_forward" + }, + { + "description": "runtime parameter for tool Zip Collection", + "name": "input_reverse" + } + ], + "label": "Paired-end collection of cleaned reads", + "name": "Zip Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 490.5, + "height": 142, + "left": 1939, + "right": 2139, + "top": 348.5, + "width": 200, + "x": 1939, + "y": 348.5 + }, + "post_job_actions": {}, + "tool_id": "__ZIP_COLLECTION__", + "tool_state": "{\"input_forward\": {\"__class__\": \"RuntimeValue\"}, \"input_reverse\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "381d0485-0164-410f-801d-7dfb7891663d", + "workflow_outputs": [ + { + "label": "Cleaned Data", + "output_name": "output", + "uuid": "f24bbf28-dc51-440f-a758-ac05033f0645" + } + ] + } + ], + "parent_id": "sequence-analysis/human-reads-removal", + "path": "topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.ga", + "tags": [ + "sequence-analysis" + ], + "test_results": null, + "tests": false, + "title": "GTN - Sequence Analyses - Removal of human reads from SARS-CoV-2 sequencing data", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-human-reads-removal/versions/human-reads-removal", + "tutorial_id": "human-reads-removal", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.html", + "version": 1, + "wfid": "sequence-analysis-human-reads-removal", + "wfname": "human-reads-removal", + "workflow": "human-reads-removal.ga", + "workflow_tools": [ + "Grep1", + "__UNZIP_COLLECTION__", + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1" + ], + "workflowhub_id": "1276" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "ddf54b12c295", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqtofasta", + "owner": "devteam", + "revisions": "297962e79f39", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jq", + "owner": "iuc", + "revisions": "5ff75eb1a893", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "33d61c89fb8d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "revisions": "2a3a00c1fa0a", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "69ebb7f46e45", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "83c7d564b128", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: ddf54b12c295\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqtofasta\n owner: devteam\n revisions: 297962e79f39\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jq\n owner: iuc\n revisions: 5ff75eb1a893\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: 33d61c89fb8d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff_sars_cov_2\n owner: iuc\n revisions: 2a3a00c1fa0a\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 69ebb7f46e45\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 83c7d564b128\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/ncbi-sarf/tutorial.json", + "contributors": [ + { + "github": false, + "id": "jontrow", + "joined": "2021-05", + "name": "Jon Trow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jontrow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jontrow.json" + }, + { + "id": "RareSeas", + "joined": "2021-05", + "name": "Adelaide Rhodes", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/RareSeas/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/RareSeas.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/ncbi-sarf", + "edam_operation": [ + "Data handling", + "SNP detection" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/ncbi-sarf", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "NCBI Publishes datasets in the cloud that you can easily process with Galaxy", + "The Rule Based Uploader simplifies processing and downloading large numbers of files" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn about SRA aligned read format and vcf files for Runs containing SARS-CoV-2 content", + "Understand how to search the metadata for these Runs to find your dataset of interest and then import that data in your preferred format" + ], + "pageviews": 4971883, + "pub_date": "2021-05-31", + "questions": [ + "How can I search SRA SARS-CoV-2 metadata from within Galaxy?", + "How can I import SRA aligned read files and extract the data in my format of choice?", + "How can I import vcf files into Galaxy that have been generated for these Runs?" + ], + "recordings": [ + { + "captioners": [ + "prodromus" + ], + "date": "2021-05-15", + "galaxy_version": "21.01", + "length": "40M", + "speakers": [ + "prodromus" + ], + "youtube_id": "ogu-NBTP-DM" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "upload-rules" + ], + "type": "internal" + } + ], + "short_id": "T00155", + "short_tools": [ + "fastq_to_fasta_python", + "tp_cat", + "fasterq_dump", + "query_tabular", + "fastq_dump", + "jq", + "snpeff_sars_cov_2" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "prodromus" + ], + "date": "2021-05-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "prodromus" + ], + "youtube_id": "siLP71B9gm4" + } + ], + "subtopic": "upload", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "ncbi", + "covid19" + ], + "time_estimation": "30m", + "title": "SRA Aligned Read Format to Speed Up SARS-CoV-2 data Analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqtofasta/fastq_to_fasta_python/1.1.5", + "toolshed.g2.bx.psu.edu/repos/iuc/jq/jq/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.11.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fastq_dump/2.11.0+galaxy0" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ncbi-sarf", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/ncbi-sarf/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/ncbi-sarf/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/ncbi-sarf/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 266, + "visitors": 1842342 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "17359b808b01", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 17359b808b01\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json", + "contributions": { + "authorship": [ + "nakucher", + "avahoffman", + "robertmeller" + ], + "editing": [ + "katherinecox", + "cutsort", + "nakucher" + ], + "funding": [ + "nhgri-gdscn", + "nhgri-anvil" + ], + "infrastructure": [ + "cansavvy", + "avahoffman", + "katherinecox", + "ehumph", + "cutsort" + ] + }, + "contributors": [ + { + "email": "nkucher3@jhu.edu", + "id": "nakucher", + "joined": "2023-06", + "name": "Natalie Kucher", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nakucher/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nakucher.json" + }, + { + "id": "avahoffman", + "joined": "2023-06", + "name": "Ava Hoffman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avahoffman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/avahoffman.json" + }, + { + "id": "robertmeller", + "joined": "2023-06", + "name": "Robert Meller", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmeller/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmeller.json" + }, + { + "id": "katherinecox", + "joined": "2023-06", + "name": "Katherine Cox", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherinecox/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherinecox.json" + }, + { + "id": "cutsort", + "joined": "2023-06", + "name": "Frederick Tan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cutsort/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cutsort.json" + }, + { + "email": "nkucher3@jhu.edu", + "id": "nakucher", + "joined": "2023-06", + "name": "Natalie Kucher", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nakucher/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nakucher.json" + }, + { + "id": "cansavvy", + "joined": "2023-06", + "name": "Candace Savonen", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cansavvy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cansavvy.json" + }, + { + "id": "avahoffman", + "joined": "2023-06", + "name": "Ava Hoffman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avahoffman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/avahoffman.json" + }, + { + "id": "katherinecox", + "joined": "2023-06", + "name": "Katherine Cox", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherinecox/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherinecox.json" + }, + { + "id": "ehumph", + "joined": "2023-06", + "name": "Elizabeth Humphries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ehumph/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ehumph.json" + }, + { + "id": "cutsort", + "joined": "2023-06", + "name": "Frederick Tan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cutsort/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cutsort.json" + }, + { + "avatar": "https://www.ashg.org/wp-content/uploads/2021/07/nhgri-logo-800x167-1.png", + "funder": true, + "funding_id": "75N92022P00232", + "github": false, + "id": "nhgri-gdscn", + "joined": "2023-06", + "name": "National Human Genome Research Institute Genomic Data Science Community Network", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nhgri-gdscn/", + "short_name": "NHGRI GDS Community Network", + "url": "https://training.galaxyproject.org/training-material/api/funders/nhgri-gdscn.json" + }, + { + "avatar": "https://www.ashg.org/wp-content/uploads/2021/07/nhgri-logo-800x167-1.png", + "funder": true, + "funding_id": "U24HG010263", + "github": false, + "id": "nhgri-anvil", + "joined": "2023-06", + "name": "National Human Genome Research Institute Genomic Data Science Analysis, Visualization, and Informatics Lab-Space", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nhgri-anvil/", + "short_name": "NHGRI ANVIL", + "url": "https://training.galaxyproject.org/training-material/api/funders/nhgri-anvil.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil", + "edam_operation": [ + "Sequencing quality control", + "Generation", + "Read mapping", + "Genome visualisation", + "Genome indexing", + "Sequence alignment", + "Sequence composition calculation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/sars-with-galaxy-on-anvil", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use Galaxy on the AnVIL cloud computing resource to check data, perform an alignment, and visualize the results." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Gather and evaluate experimental evidence, including qualitative and quantitative data", + "Generate and interpret graphs displaying experimental results", + "Critique large data sets and use bioinformatics to assess genetics data", + "Tap into the interdisciplinary nature of science" + ], + "pageviews": 899, + "pub_date": "2023-07-10", + "questions": [ + "How do I check my data quality?", + "How do I put together my dataset of fragmented sequences into a full sequence?", + "How do I visually explore the variants in my SARS-CoV-2 sample?" + ], + "short_id": "T00356", + "short_tools": [ + "fastqc", + "bwa_mem", + "jbrowse" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "covid19", + "gmod", + "jbrowse1" + ], + "time_estimation": "1H", + "title": "SARS-CoV-2 Viral Sample Alignment and Variant Visualization", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-with-galaxy-on-anvil", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 283, + "visitors": 691, + "zenodo_link": "https://doi.org/10.5281/zenodo.8115178" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "split_file_on_column", + "owner": "bgruening", + "revisions": "37a53100b67e", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "02026300aa45", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "ae8c4b2488e7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "746e8e4bf929", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: split_file_on_column\n owner: bgruening\n revisions: 37a53100b67e\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 02026300aa45\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: ae8c4b2488e7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 746e8e4bf929\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics/tutorial.json", + "contributions": { + "authorship": [ + "shiltemann", + "lybCNU" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "id": "lybCNU", + "joined": "2024-08", + "name": "Yongbin Li", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lybCNU/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lybCNU.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/data-manipulation-olympics", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/data-manipulation-olympics", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 61358, + "mermaid": false + }, + "key_points": [ + "There are a lot of tools available in Galaxy for performing basic data manipulation tasks", + "Basic data manipulation is often needed between steps in a larger scientific analysis in order to connect outputs from one tool to input of another.", + "There are often multiple ways/tools to achieve the same end result", + "Having a basic understanding of data manipulation tools will make it easier to do exploratory data analysis", + "Always read the help text of the tool before using it to get a full understanding of its workings", + "Always try to formulate the output you are expecting from a tool. This will make it easier to spot mistakes as soon as possible." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-18", + "objectives": [ + "Familiarize yourself with data manipulation tools in Galaxy", + "Perform basic text manipulation tasks in Galaxy", + "Become comfortable converting text-based files in a variety of ways.", + "Reason about the expected outcome of tools" + ], + "pageviews": 0, + "pub_date": "2024-08-18", + "questions": [ + "How can I do basic data manipulation in Galaxy?", + "Which tools are available to convert, reformat, filter, sort etc my text-based data?" + ], + "short_id": "T00077", + "short_tools": [ + "", + "Count1", + "Cut1", + "Remove beginning1", + "Grouping1", + "datamash_ops", + "Show beginning1", + "tp_sort_header_tool", + "tp_sorted_uniq", + "cat1", + "tp_cat", + "wc_gnu", + "Filter1", + "tp_split_on_column", + "join1", + "regexColumn1", + "upload1", + "tabular_to_csv", + "Add_a_column1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": true, + "tags": [ + "cyoa" + ], + "time_estimation": "1h", + "title": "Data Manipulation Olympics", + "tools": [ + "Count1", + "Cut1", + "Filter1", + "Grouping1", + "Remove beginning1", + "Show beginning1", + "cat1", + "join1", + "tabular_to_csv", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0+galaxy2", + "upload1", + "wc_gnu", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "data-manipulation-olympics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/data-manipulation-olympics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics/tutorial.json" + }, + "version": 0, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 0, + "workflows": [ + { + "creators": [], + "description": "Data Manipulation Olympics", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nolympics.tsv\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncountry-information.tsv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nolympics_2022.tsv\"]\n 3[label=\"Line/Word/Character count\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"tabular-to-csv\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Sort\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Sort\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Sort\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Sort\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"Sort\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Sort\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"Filter\"]\n 0 -> 11 [label=\"output\"]\n 12[label=\"Filter\"]\n 0 -> 12 [label=\"output\"]\n 13[label=\"Count\"]\n 0 -> 13 [label=\"output\"]\n 14[label=\"Count\"]\n 0 -> 14 [label=\"output\"]\n 15[label=\"Count\"]\n 0 -> 15 [label=\"output\"]\n 16[label=\"Count\"]\n 0 -> 16 [label=\"output\"]\n 17[label=\"Datamash\"]\n 0 -> 17 [label=\"output\"]\n 18[label=\"Count\"]\n 0 -> 18 [label=\"output\"]\n 19[label=\"Datamash\"]\n 0 -> 19 [label=\"output\"]\n 20[label=\"Filter\"]\n 0 -> 20 [label=\"output\"]\n 21[label=\"Filter\"]\n 0 -> 21 [label=\"output\"]\n 22[label=\"Filter\"]\n 0 -> 22 [label=\"output\"]\n 23[label=\"Filter\"]\n 0 -> 23 [label=\"output\"]\n 24[label=\"Filter\"]\n 0 -> 24 [label=\"output\"]\n 25[label=\"Filter\"]\n 0 -> 25 [label=\"output\"]\n 26[label=\"Filter\"]\n 0 -> 26 [label=\"output\"]\n 27[label=\"Compute\"]\n 0 -> 27 [label=\"output\"]\n 28[label=\"Compute\"]\n 0 -> 28 [label=\"output\"]\n 29[label=\"Cut\"]\n 0 -> 29 [label=\"output\"]\n 30[label=\"Column Regex Find And Replace\"]\n 0 -> 30 [label=\"output\"]\n 31[label=\"Column Regex Find And Replace\"]\n 0 -> 31 [label=\"output\"]\n 32[label=\"Column Regex Find And Replace\"]\n 0 -> 32 [label=\"output\"]\n 33[label=\"Cut\"]\n 0 -> 33 [label=\"output\"]\n 34[label=\"Cut\"]\n 0 -> 34 [label=\"output\"]\n 35[label=\"Datamash\"]\n 0 -> 35 [label=\"output\"]\n 36[label=\"Datamash\"]\n 0 -> 36 [label=\"output\"]\n 37[label=\"Datamash\"]\n 0 -> 37 [label=\"output\"]\n 38[label=\"Datamash\"]\n 0 -> 38 [label=\"output\"]\n 39[label=\"Datamash\"]\n 0 -> 39 [label=\"output\"]\n 40[label=\"Count\"]\n 0 -> 40 [label=\"output\"]\n 41[label=\"Column Regex Find And Replace\"]\n 0 -> 41 [label=\"output\"]\n 42[label=\"Split file\"]\n 0 -> 42 [label=\"output\"]\n 43[label=\"Join two Datasets\"]\n 0 -> 43 [label=\"output\"]\n 1 -> 43 [label=\"output\"]\n 44[label=\"Remove beginning\"]\n 2 -> 44 [label=\"output\"]\n 45[label=\"Sort\"]\n 11 -> 45 [label=\"out_file1\"]\n 46[label=\"Filter\"]\n 12 -> 46 [label=\"out_file1\"]\n 47[label=\"Cut\"]\n 28 -> 47 [label=\"out_file1\"]\n 48[label=\"Unique\"]\n 29 -> 48 [label=\"out_file1\"]\n 49[label=\"Count\"]\n 41 -> 49 [label=\"out_file1\"]\n 50[label=\"Datamash\"]\n 41 -> 50 [label=\"out_file1\"]\n 51[label=\"Concatenate datasets\"]\n 0 -> 51 [label=\"output\"]\n 44 -> 51 [label=\"out_file1\"]\n 52[label=\"Filter\"]\n 45 -> 52 [label=\"outfile\"]\n 53[label=\"Sort\"]\n 46 -> 53 [label=\"out_file1\"]\n 54[label=\"Remove beginning\"]\n 47 -> 54 [label=\"out_file1\"]\n 55[label=\"Select first\"]\n 47 -> 55 [label=\"out_file1\"]\n 56[label=\"Sort\"]\n 48 -> 56 [label=\"outfile\"]\n 57[label=\"Unique\"]\n 54 -> 57 [label=\"out_file1\"]\n 58[label=\"Concatenate datasets\"]\n 55 -> 58 [label=\"out_file1\"]\n 57 -> 58 [label=\"outfile\"]\n 59[label=\"Join two Datasets\"]\n 0 -> 59 [label=\"output\"]\n 58 -> 59 [label=\"out_file1\"]\n 60[label=\"Cut\"]\n 59 -> 60 [label=\"out_file1\"]\n 61[label=\"Line/Word/Character count\"]\n 60 -> 61 [label=\"out_file1\"]\n}", + "history": [], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "olympics.tsv" + } + ], + "label": "olympics.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "749981b6-9589-48a3-b1fe-3830a019aac3", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "country-information.tsv" + } + ], + "label": "country-information.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4dd01f90-d214-419c-b685-187c4c7e0236", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "olympics_2022.tsv" + } + ], + "label": "olympics_2022.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "8caf40e8-4c72-48c5-92cb-50fef0a9da1c", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nolympics.tsv\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ncountry-information.tsv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nolympics_2022.tsv\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Line/Word/Character count\"];\n 0 -->|output| 3;\n 4[\"tabular-to-csv\"];\n 0 -->|output| 4;\n 5[\"Sort\"];\n 0 -->|output| 5;\n 6[\"Sort\"];\n 0 -->|output| 6;\n 7[\"Sort\"];\n 0 -->|output| 7;\n 8[\"Sort\"];\n 0 -->|output| 8;\n 9[\"Sort\"];\n 0 -->|output| 9;\n 10[\"Sort\"];\n 0 -->|output| 10;\n 11[\"Filter\"];\n 0 -->|output| 11;\n 12[\"Filter\"];\n 0 -->|output| 12;\n 13[\"Count\"];\n 0 -->|output| 13;\n 14[\"Count\"];\n 0 -->|output| 14;\n 15[\"Count\"];\n 0 -->|output| 15;\n 16[\"Count\"];\n 0 -->|output| 16;\n 17[\"Datamash\"];\n 0 -->|output| 17;\n 18[\"Count\"];\n 0 -->|output| 18;\n 19[\"Datamash\"];\n 0 -->|output| 19;\n 20[\"Filter\"];\n 0 -->|output| 20;\n 21[\"Filter\"];\n 0 -->|output| 21;\n 22[\"Filter\"];\n 0 -->|output| 22;\n 23[\"Filter\"];\n 0 -->|output| 23;\n 24[\"Filter\"];\n 0 -->|output| 24;\n 25[\"Filter\"];\n 0 -->|output| 25;\n 26[\"Filter\"];\n 0 -->|output| 26;\n 27[\"Compute\"];\n 0 -->|output| 27;\n 28[\"Compute\"];\n 0 -->|output| 28;\n 29[\"Cut\"];\n 0 -->|output| 29;\n 30[\"Column Regex Find And Replace\"];\n 0 -->|output| 30;\n 31[\"Column Regex Find And Replace\"];\n 0 -->|output| 31;\n 32[\"Column Regex Find And Replace\"];\n 0 -->|output| 32;\n 33[\"Cut\"];\n 0 -->|output| 33;\n 34[\"Cut\"];\n 0 -->|output| 34;\n 35[\"Datamash\"];\n 0 -->|output| 35;\n 36[\"Datamash\"];\n 0 -->|output| 36;\n 37[\"Datamash\"];\n 0 -->|output| 37;\n 38[\"Datamash\"];\n 0 -->|output| 38;\n 39[\"Datamash\"];\n 0 -->|output| 39;\n 40[\"Count\"];\n 0 -->|output| 40;\n 41[\"Column Regex Find And Replace\"];\n 0 -->|output| 41;\n 42[\"Split file\"];\n 0 -->|output| 42;\n 43[\"Join two Datasets\"];\n 0 -->|output| 43;\n 1 -->|output| 43;\n 44[\"Remove beginning\"];\n 2 -->|output| 44;\n 45[\"Sort\"];\n 11 -->|out_file1| 45;\n 46[\"Filter\"];\n 12 -->|out_file1| 46;\n 47[\"Cut\"];\n 28 -->|out_file1| 47;\n 48[\"Unique\"];\n 29 -->|out_file1| 48;\n 49[\"Count\"];\n 41 -->|out_file1| 49;\n 50[\"Datamash\"];\n 41 -->|out_file1| 50;\n 51[\"Concatenate datasets\"];\n 0 -->|output| 51;\n 44 -->|out_file1| 51;\n 52[\"Filter\"];\n 45 -->|outfile| 52;\n 53[\"Sort\"];\n 46 -->|out_file1| 53;\n 54[\"Remove beginning\"];\n 47 -->|out_file1| 54;\n 55[\"Select first\"];\n 47 -->|out_file1| 55;\n 56[\"Sort\"];\n 48 -->|outfile| 56;\n 57[\"Unique\"];\n 54 -->|out_file1| 57;\n 58[\"Concatenate datasets\"];\n 55 -->|out_file1| 58;\n 57 -->|outfile| 58;\n 59[\"Join two Datasets\"];\n 0 -->|output| 59;\n 58 -->|out_file1| 59;\n 60[\"Cut\"];\n 59 -->|out_file1| 60;\n 61[\"Line/Word/Character count\"];\n 60 -->|out_file1| 61;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN Tutorial: Data manipulation Olympics - all steps and exercises", + "outputs": [], + "parent_id": "data-science/data-manipulation-olympics", + "path": "topics/data-science/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.ga", + "tags": [ + "introduction" + ], + "test_results": null, + "tests": false, + "title": "GTN Tutorial: Data manipulation Olympics - all steps and exercises", + "topic_id": "data-science", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/data-science-data-manipulation-olympics/versions/data-manipulation-olympics-with-exercises", + "tutorial_id": "data-manipulation-olympics", + "url": "https://training.galaxyproject.org/training-material/topics/data-science/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/data-science/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.html", + "version": 0, + "wfid": "data-science-data-manipulation-olympics", + "wfname": "data-manipulation-olympics-with-exercises", + "workflow": "data_manipulation_olympics_with_exercises.ga", + "workflow_tools": [ + "Count1", + "Cut1", + "Filter1", + "Remove beginning1", + "Show beginning1", + "cat1", + "join1", + "tabular_to_csv", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0+galaxy2", + "wc_gnu" + ], + "workflowhub_id": "1206" + } + ], + "zenodo_link": "https://zenodo.org/record/6803028" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture1/tutorial.json", + "contributions": { + "authorship": [ + "nekrut" + ] + }, + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/data-science/tutorials/gnmx-lecture1", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/gnmx-lecture1", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Jim Watson did not discover DNA" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "objectives": [ + "Have a basic understanding of history of biology from Darwin to today." + ], + "pageviews": 825832, + "priority": 1, + "pub_date": "2024-01-09", + "questions": [ + "What is this course about?", + "What is the history of genomics?" + ], + "short_id": "T00382", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "gnmx", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "A (very) brief history of genomics", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gnmx-lecture1", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/gnmx-lecture1/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture1/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture1/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 150, + "visitors": 345992 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "0e3cf9594bb7", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 0e3cf9594bb7\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/online-resources-gene/tutorial.json", + "contributions": { + "authorship": [ + "lisanna", + "bebatut", + "teresa-m" + ], + "funding": [ + "biont" + ] + }, + "contributors": [ + { + "email": "lisanna.paladin@gmail.com", + "id": "lisanna", + "joined": "2023-09", + "name": "Lisanna Paladin", + "orcid": "0000-0003-0011-9397", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lisanna/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lisanna.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "teresa-m", + "joined": "2022-09", + "name": "Teresa M\u00fcller", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/teresa-m/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/teresa-m.json" + }, + { + "avatar": "/training-material/assets/images/BioNT_Logo.png", + "funder": true, + "funding_id": "101100604", + "funding_statement": "Co-funded by the European Union", + "funding_system": "cordis", + "github": false, + "id": "biont", + "joined": "2023-09", + "name": "BioNT", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/biont/", + "url": "https://training.galaxyproject.org/training-material/api/funders/biont.json" + } + ], + "dir": "topics/data-science/tutorials/online-resources-gene", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/online-resources-gene", + "inexact_supported_servers": [ + "BF2I-MAP", + "Center for Phage Technology (CPT)", + "GalaxyTrakr", + "PepSimili", + "PhagePromotor", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": 22242, + "mermaid": false + }, + "key_points": [ + "You can search for genes and proteins using specific text on the NCBI genome.", + "Once you find a relevant gene or protein, you can obtain its sequence and annotation in various formats from NCBI.", + "You can also learn about the chromosome location and the exon-intron composition of the gene of interest.", + "NCBI offers a BLAST tool to perform similarity searches with sequences.", + "You can further explore the resources included in this tutorial to learn more about the gene-associated conditions and the variants.", + "You can input a FASTA file containing a sequence of interest for BLAST searches." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Starting from a text search, navigate multiple web resources to examine multiple types of information about a gene, conveyed through multiple file formats." + ], + "pageviews": 1176119, + "pub_date": "2023-09-07", + "questions": [ + "How to employ bioinformatics resources to investigate a specific protein family (opsins)?", + "How to navigate the Genome Data Viewer to find opsins in the human genome?", + "How to identify genes associated with opsins and analyze their chromosome locations?", + "How to explore literature and clinical contexts for the OPN1LW gene?", + "How to use protein sequences files to perform similarity searches using BLAST?" + ], + "short_id": "T00359", + "short_tools": [ + "ncbi_blastp_wrapper" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "BF2I-MAP", + "url": "http://bf2i-galaxy.insa-lyon.fr:8080/", + "usegalaxy": false + }, + { + "name": "Center for Phage Technology (CPT)", + "url": "https://cpt.tamu.edu/galaxy-public/", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "PepSimili", + "url": "http://pepsimili.e-nios.com:8080/", + "usegalaxy": false + }, + { + "name": "PhagePromotor", + "url": "https://galaxy.bio.di.uminho.pt/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1H", + "title": "Learning about one gene across biological resources and formats", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/2.10.1+galaxy2" + ], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "online-resources-gene", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/online-resources-gene/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/online-resources-gene/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/online-resources-gene/tutorial.json" + }, + "version": 3, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 382, + "visitors": 501983, + "zenodo_link": "https://zenodo.org/record/8304465" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-python/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/sql-python", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/sql-python", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "General-purpose languages have libraries for accessing databases.", + "To connect to a database, a program must use a library specific to that database manager.", + "These libraries use a connection-and-cursor model.", + "Programs can read query results in batches or all at once.", + "Queries should be written using parameter substitution, not string formatting." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-16", + "notebook": { + "language": "python" + }, + "objectives": [ + "Write short programs that execute SQL queries.", + "Trace the execution of a program that contains an SQL query.", + "Explain why most database applications are written in a general-purpose language rather than in SQL." + ], + "pageviews": 630, + "pub_date": "2021-10-11", + "questions": [ + "How can I access databases from programs written in Python?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "sql-advanced" + ], + "type": "internal" + } + ], + "short_id": "T00109", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "sql", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "SQL", + "Python" + ], + "time_estimation": "45M", + "title": "SQL with Python", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sql-python", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/sql-python/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-python/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-python/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 25, + "visitors": 449, + "zenodo_link": null + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/git-cli/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/data-science/tutorials/git-cli", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/git-cli", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "While git is extremely powerful, just using it for tracking changes is quite easy!", + "This does not take advantage of any advanced features, nor collaboration, but it is easy to expand into doing that." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-16", + "objectives": [ + "Create a repository", + "Commit a file", + "Make some changes", + "Use the log to view the diff", + "Undo a bad change" + ], + "pageviews": 350, + "pub_date": "2022-06-16", + "questions": [ + "How can I start tracking my changes with git?", + "How do I commit changes?", + "How can I undo a mistake?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "cli-basics" + ], + "type": "internal" + } + ], + "short_id": "T00079", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30m", + "title": "Basics of using Git from the Command Line", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "git-cli", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/git-cli/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/git-cli/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/git-cli/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 23, + "visitors": 108 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/bash-variant-calling/tutorial.json", + "contributions": { + "authorship": [ + "Sofokli5", + "fpsom", + "shiltemann", + "hexylena", + "carpentries" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "email": "sofoskeisaris@gmail.com", + "id": "Sofokli5", + "joined": "2022-05", + "name": "Sofoklis Keisaris", + "orcid": "0000-0002-4833-4726", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Sofokli5/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Sofokli5.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/bash-variant-calling", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/bash-variant-calling", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Bioinformatic command line tools are collections of commands that can be used to carry out bioinformatic analyses.", + "To use most powerful bioinformatic tools, you will need to use the command line.", + "There are many different file formats for storing genomics data. It is important to understand what type of information is contained in each file, and how it was derived." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "objectives": [ + "Understand the steps involved in variant calling.", + "Describe the types of data formats encountered during variant calling.", + "Use command line tools to perform variant calling." + ], + "pageviews": 7493, + "pub_date": "2022-07-07", + "questions": [ + "How do I find sequence variants between my sample and a reference genome?" + ], + "short_id": "T00073", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "50M", + "title": "Variant Calling Workflow", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bash-variant-calling", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/bash-variant-calling/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/bash-variant-calling/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/bash-variant-calling/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 118, + "visitors": 5656 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/bash-git/tutorial.json", + "contributions": { + "authorship": [ + "Sofokli5" + ], + "editing": [ + "fpsom", + "shiltemann", + "hexylena" + ], + "funding": [ + "carpentries", + "gallantries" + ] + }, + "contributors": [ + { + "email": "sofoskeisaris@gmail.com", + "id": "Sofokli5", + "joined": "2022-05", + "name": "Sofoklis Keisaris", + "orcid": "0000-0002-4833-4726", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Sofokli5/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Sofokli5.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/bash-git", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/bash-git", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Version control is like an unlimited 'undo'.", + "Version control also allows many people to work in parallel.", + "Use `git config` with the `--global` option to configure a user name, email address, editor, and other preferences once per machine.", + "`git init` initializes a repository.", + "Git stores all of its repository data in the `.git` directory.", + "`git status` shows the status of a repository.", + "Files can be stored in a project's working directory (which users see), the staging area (where the next commit is being built up) and the local repository (where commits are permanently recorded).", + "`git add` puts files in the staging area.", + "`git commit` saves the staged content as a new commit in the local repository.", + "Write a commit message that accurately describes your changes.", + "`git diff` displays differences between commits.", + "`git checkout` recovers old versions of files." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "objectives": [ + "Understand the benefits of an automated version control system.", + "Understand the basics of how automated version control systems work.", + "Configure `git` the first time it is used on a computer.", + "Understand the meaning of the `--global` configuration flag.", + "Create a local Git repository.", + "Describe the purpose of the `.git` directory.", + "Go through the modify-add-commit cycle for one or more files.", + "Explain where information is stored at each stage of that cycle.", + "Distinguish between descriptive and non-descriptive commit messages.", + "Explain what the HEAD of a repository is and how to use it.", + "Identify and use Git commit numbers.", + "Compare various versions of tracked files.", + "Restore old versions of files." + ], + "pageviews": 403, + "pub_date": "2022-07-06", + "questions": [ + "What is version control and why should I use it?", + "How do I get set up to use Git?", + "Where does Git store information?", + "How do I record changes in Git?", + "How do I check the status of my version control repository?", + "How do I record notes about what changes I made and why?", + "How can I identify old versions of files?", + "How do I review my changes?", + "How can I recover old versions of files?" + ], + "short_id": "T00072", + "short_tools": [ + "interactive_tool_rstudio" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "65M", + "title": "Version Control with Git", + "tools": [ + "interactive_tool_rstudio" + ], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bash-git", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/bash-git/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/bash-git/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/bash-git/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 48, + "visitors": 184 + }, + { + "abbreviations": { + "SQL": "Structured Query Language" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-basic/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/sql-basic", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "data-science", + "tutorials": [ + "sql-advanced" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "data-science/sql-basic", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A relational database stores information in tables, each of which has a fixed set of columns and a variable number of records.", + "A database manager is a program that manipulates information stored in a database.", + "We write queries in a specialized language called SQL to extract information from databases.", + "Use SELECT... FROM... to get values from a database table.", + "SQL is case-insensitive (but data is case-sensitive).", + "The records in a database table are not intrinsically ordered: if we want to display them in some order, we must specify that explicitly with ORDER BY.", + "The values in a database are not guaranteed to be unique: if we want to eliminate duplicates, we must specify that explicitly as well using DISTINCT.", + "Use WHERE to specify conditions that records must meet in order to be included in a query's results.", + "Use AND, OR, and NOT to combine tests.", + "Filtering is done on whole records, so conditions can use fields that are not actually displayed.", + "Write queries incrementally.", + "Queries can do the usual arithmetic operations on values.", + "Use UNION to combine the results of two or more queries.", + "Databases use a special value called NULL to represent missing information.", + "Almost all operations on NULL produce NULL.", + "Queries can test for NULLs using IS NULL and IS NOT NULL." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-16", + "notebook": { + "language": "sql" + }, + "objectives": [ + "Explain the difference between a table, a record, and a field.", + "Explain the difference between a database and a database manager.", + "Write a query to select all values for specific fields from a single table.", + "Write queries that display results in a particular order.", + "Write queries that eliminate duplicate values from data.", + "Write queries that select records that satisfy user-specified conditions.", + "Explain the order in which the clauses in a query are executed.", + "Write queries that calculate new values for each selected record.", + "Explain how databases represent missing information.", + "Explain the three-valued logic databases use when manipulating missing information.", + "Write queries that handle missing information correctly." + ], + "pageviews": 483, + "pub_date": "2021-10-11", + "questions": [ + "How can I get data from a database?", + "How can I sort a query's results?", + "How can I remove duplicate values from a query's results?", + "How can I select subsets of data?", + "How can I calculate new values on the fly?", + "How do databases represent missing information?", + "What special handling does missing information require?" + ], + "quiz": [ + { + "contributors": [ + "hexylena" + ], + "id": "recap.yml", + "path": "topics/data-science/tutorials/sql-basic/quiz/recap.yml", + "title": "SQL Basics Recap" + } + ], + "requirements": [], + "short_id": "T00107", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "sql", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "SQL" + ], + "time_estimation": "3H", + "title": "Introduction to SQL", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sql-basic", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/sql-basic/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-basic/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-basic/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 101, + "visitors": 382, + "zenodo_link": null + }, + { + "abbreviations": { + "SQL": "Structured Query Language" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-advanced/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/sql-advanced", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "data-science", + "tutorials": [ + "sql-python" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "data-science/sql-advanced", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use aggregation functions to combine multiple values.", + "Aggregation functions ignore `null` values.", + "Aggregation happens after filtering.", + "Use GROUP BY to combine subsets separately.", + "If no aggregation function is specified for a field, the query may return an arbitrary value for that field.", + "Use JOIN to combine data from two tables.", + "Use table.field notation to refer to fields when doing joins.", + "Every fact should be represented in a database exactly once.", + "A join produces all combinations of records from one table with records from another.", + "A primary key is a field (or set of fields) whose values uniquely identify the records in a table.", + "A foreign key is a field (or set of fields) in one table whose values are a primary key in another table.", + "We can eliminate meaningless combinations of records by matching primary keys and foreign keys between tables.", + "The most common join condition is matching keys.", + "Every value in a database should be atomic.", + "Every record should have a unique primary key.", + "A database should not contain redundant information.", + "Units and similar metadata should be stored with the data.", + "Use CREATE and DROP to create and delete tables.", + "Use INSERT to add data.", + "Use UPDATE to modify existing data.", + "Use DELETE to remove data.", + "It is simpler and safer to modify data when every record has a unique primary key.", + "Do not create dangling references by deleting records that other records refer to.", + "General-purpose languages have libraries for accessing databases.", + "To connect to a database, a program must use a library specific to that database manager.", + "These libraries use a connection-and-cursor model.", + "Programs can read query results in batches or all at once.", + "Queries should be written using parameter substitution, not string formatting." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2022-10-19", + "notebook": { + "language": "sql" + }, + "objectives": [ + "Define aggregation and give examples of its use.", + "Write queries that compute aggregated values.", + "Trace the execution of a query that performs aggregation.", + "Explain how missing data is handled during aggregation.", + "Explain the operation of a query that joins two tables.", + "Explain how to restrict the output of a query containing a join to only include meaningful combinations of values.", + "Write queries that join tables on equal keys.", + "Explain what primary and foreign keys are, and why they are useful.", + "Explain what an atomic value is.", + "Distinguish between atomic and non-atomic values.", + "Explain why every value in a database should be atomic.", + "Explain what a primary key is and why every record should have one.", + "Identify primary keys in database tables.", + "Explain why database entries should not contain redundant information.", + "Identify redundant information in databases.", + "Write statements that create tables.", + "Write statements to insert, modify, and delete records.", + "Write short programs that execute SQL queries.", + "Trace the execution of a program that contains an SQL query.", + "Explain why most database applications are written in a general-purpose language rather than in SQL." + ], + "pageviews": 1685, + "pub_date": "2021-10-11", + "questions": [ + "How can I calculate sums, averages, and other summary values?", + "How can I combine data from multiple tables?", + "How should I format data in a database, and why?", + "How can I create, modify, and delete tables and data?", + "How can I access databases from programs written in Python?" + ], + "quiz": [ + { + "contributors": [ + "hexylena" + ], + "id": "recap.yml", + "path": "topics/data-science/tutorials/sql-advanced/quiz/recap.yml", + "title": "SQL Advanced Recap" + } + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "sql-basic" + ], + "type": "internal" + } + ], + "short_id": "T00106", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "sql", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "SQL" + ], + "time_estimation": "3H", + "title": "Advanced SQL", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sql-advanced", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/sql-advanced/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-advanced/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-advanced/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 33, + "visitors": 1330, + "zenodo_link": null + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/online-resources-protein/tutorial.json", + "contributions": { + "authorship": [ + "lisanna", + "bebatut" + ], + "funding": [ + "biont" + ] + }, + "contributors": [ + { + "email": "lisanna.paladin@gmail.com", + "id": "lisanna", + "joined": "2023-09", + "name": "Lisanna Paladin", + "orcid": "0000-0003-0011-9397", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lisanna/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lisanna.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "avatar": "/training-material/assets/images/BioNT_Logo.png", + "funder": true, + "funding_id": "101100604", + "funding_statement": "Co-funded by the European Union", + "funding_system": "cordis", + "github": false, + "id": "biont", + "joined": "2023-09", + "name": "BioNT", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/biont/", + "url": "https://training.galaxyproject.org/training-material/api/funders/biont.json" + } + ], + "dir": "topics/data-science/tutorials/online-resources-protein", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/online-resources-protein", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "How to navigate UniProtKB entries, accessing comprehensive details about proteins, such as their functions, taxonomy, and interactions", + "The Variant and Feature viewer are your tools to visually explore protein variants, domains, modifications, and other key sequence features.", + "Expand your understanding by utilizing external links to cross-reference data and uncover complex relationships.", + "Explore the History tab for access to previous versions of entry annotations." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "By exploring protein entries in UniProtKB, interpret protein function, taxonomy, structure, interactions, variants, and more.", + "Use unique identifiers to connect databases, download gene and protein data, visualize and compare sequence features." + ], + "pageviews": 72, + "pub_date": "2023-09-07", + "questions": [ + "How can you search for proteins using text, gene, or protein names?", + "How do you interpret the information at the top of the UniProt entry page?", + "What types of information can you expect from different download formats, such as FASTA and JSON?", + "How is the function of a protein like opsins described in the \"Function\" section?", + "What structured information is found in the \"Names and Taxonomy\", \"Subcellular location\", \"Disease & Variants\", \"PTM/Processing\" sections?", + "How to learn about the protein expression, interactions, structure, family, sequence and similar proteins?", + "How do the \"Variant viewer\" and \"Feature viewer\" tabs assist in mapping protein information along the sequence?", + "What does the \"Publications\" tab list, and how can you filter publications?", + "What is the significance of tracking entry annotation changes over time?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "online-resources-gene" + ], + "type": "internal" + } + ], + "short_id": "T00360", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1H", + "title": "One protein along the UniProt page", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "online-resources-protein", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/online-resources-protein/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/online-resources-protein/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/online-resources-protein/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 77, + "visitors": 66, + "zenodo_link": "" + }, + { + "abbreviations": { + "DAG": "Directed Acyclic Graph", + "SciWMS": "Scientific Workflow Management System" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/snakemake/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/snakemake", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/snakemake", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Make and Snakemake are ways to write pipelines in a declarative format", + "Instead of writing individual actions you wish to take, you describe how to produce each file you need, and the system executes those steps only if they're needed", + "If you're doing scientific research you should use Snakemake", + "Snakemake can significantly speed up your command line pipelines by providing automatic detection of inputs, and not re-creating them if they don't need", + "Snakemake also provides very easy access to paralellisation without complexity.", + "But it is more complex than using Galaxy" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-11", + "objectives": [ + "Write a snakefile that does a simple QC and Mapping workflow" + ], + "pageviews": 3709, + "pub_date": "2021-11-18", + "questions": [ + "What is Make & Snakemake", + "What is a Makefile/Snakefile", + "How do these improve pipelines over simple scripts?", + "Why is Snakemake better for scientific research and how can I use it", + "How do I use conda envs with Snakemake?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "cli-basics", + "cli-advanced" + ], + "type": "internal" + } + ], + "short_id": "T00105", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "sciwms", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "3H", + "title": "Make & Snakemake", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "snakemake", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/snakemake/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/snakemake/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/snakemake/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 58, + "visitors": 2806, + "zenodo_link": "https://zenodo.org/record/5562251" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-basics/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/cli-basics", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "data-science", + "tutorials": [ + "cli-advanced", + "cli-bashcrawl" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "data-science/cli-basics", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A shell is a program whose primary purpose is to read commands and run other programs.", + "This lesson uses Bash, the default shell in many implementations of Unix.", + "Programs can be run in Bash by entering commands at the command-line prompt.", + "The shell's main advantages are its high action-to-keystroke ratio, its support for automating repetitive tasks, and its capacity to access networked machines.", + "The shell's main disadvantages are its primarily textual nature and how cryptic its commands and operation can be.", + "The file system is responsible for managing information on the disk.", + "Information is stored in files, which are stored in directories (folders).", + "Directories can also store other directories, which then form a directory tree.", + "`cd [path]` changes the current working directory.", + "`ls [path]` prints a listing of a specific file or directory; `ls` on its own lists the current working directory.", + "`pwd` prints the user's current working directory.", + "`/` on its own is the root directory of the whole file system.", + "Most commands take options (flags) that begin with a `-`.", + "A relative path specifies a location starting from the current location.", + "An absolute path specifies a location from the root of the file system.", + "Directory names in a path are separated with `/` on Unix, but `\\` on Windows.", + "`..` means 'the directory above the current one'; `.` on its own means 'the current directory'.", + "`cp [old] [new]` copies a file.", + "`mkdir [path]` creates a new directory.", + "`mv [old] [new]` moves (renames) a file or directory.", + "`rm [path]` removes (deletes) a file.", + "`*` matches zero or more characters in a filename, so `*.txt` matches all files ending in `.txt`.", + "`?` matches any single character in a filename, so `?.txt` matches `a.txt` but not `any.txt`.", + "Use of the Control key may be described in many ways, including `Ctrl-X`, `Control-X`, and `^X`.", + "The shell does not have a trash bin: once something is deleted, it's really gone.", + "Most files' names are `something.extension`. The extension isn't required, and doesn't guarantee anything, but is normally used to indicate the type of data in the file.", + "Depending on the type of work you do, you may need a more powerful text editor than Nano." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "notebook": { + "language": "bash" + }, + "objectives": [ + "Explain how the shell relates to the keyboard, the screen, the operating system, and users' programs.", + "Explain when and why command-line interfaces should be used instead of graphical interfaces.", + "Explain the similarities and differences between a file and a directory.", + "Translate an absolute path into a relative path and vice versa.", + "Construct absolute and relative paths that identify specific files and directories.", + "Use options and arguments to change the behaviour of a shell command.", + "Demonstrate the use of tab completion and explain its advantages.", + "Create a directory hierarchy that matches a given diagram.", + "Create files in that hierarchy using an editor or by copying and renaming existing files.", + "Delete, copy and move specified files and/or directories." + ], + "pageviews": 1068, + "pub_date": "2021-09-30", + "questions": [ + "What is a command shell and why would I use one?", + "How can I move around on my computer?", + "How can I see what files and directories I have?", + "How can I specify the location of a file or directory on my computer?", + "How can I create, copy, and delete files and directories?", + "How can I edit files?" + ], + "requirements": [], + "short_id": "T00076", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "bash", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "bash" + ], + "time_estimation": "1H", + "title": "CLI basics", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "cli-basics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/cli-basics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-basics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-basics/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 164, + "visitors": 760, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-basics/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "gr", + "id": "mcmaniou", + "joined": "2021-09", + "name": "Maria Christina Maniou", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcmaniou/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcmaniou.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/python-basics", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "data-science", + "tutorials": [ + "python-plotting", + "python-advanced-np-pd" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "data-science/python-basics", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Python is a fairly easy programming language to learn and use, but be mindful of the indexing.", + "Python has many libraries offering a variety of capabilities, which makes it popular for beginners, as well as, more experienced users" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-02-15", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Learn the fundamentals of programming in Python" + ], + "pageviews": 1181, + "priority": 1, + "pub_date": "2021-11-08", + "questions": [ + "How can I run Python programs?" + ], + "requirements": [], + "short_id": "T00083", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "5H", + "title": "Introduction to Python", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-basics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-basics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-basics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-basics/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 100, + "visitors": 872 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-math/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-math", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-math", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 1547, + "mermaid": false + }, + "key_points": [ + "Converting mathematics equation to python is pretty easy!", + "In real life you'll occasionally need to do this, either converting from a formula you read in a paper, or a description of an algorithm, into code that you'll re-use.", + "Did you forget how a particular module or function works? Try `help()`" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Understand the fundamentals of object assignment and math in python and can write simple statements and execute calcualtions in order to be able to summarize the results of calculations and classify valid and invalid statements.", + "Translate some known math functions (e.g. euclidean distance, root algorithm) into python to transfer concepts from mathematics lessons directly into Python." + ], + "pageviews": 599, + "priority": 1, + "pub_date": "2022-04-25", + "questions": [ + "How do I do math in Python?" + ], + "requirements": [], + "short_id": "T00094", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Python - Math", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-math", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-math/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-math/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-math/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 62, + "visitors": 471 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-advanced/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/cli-advanced", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "data-science", + "tutorials": [ + "cli-bashcrawl" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "data-science/cli-advanced", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "`wc` counts lines, words, and characters in its inputs.", + "`cat` displays the contents of its inputs.", + "`sort` sorts its inputs.", + "`head` displays the first 10 lines of its input.", + "`tail` displays the last 10 lines of its input.", + "`command > [file]` redirects a command's output to a file (overwriting any existing content).", + "`command >> [file]` appends a command's output to a file.", + "`[first] | [second]` is a pipeline: the output of the first command is used as the input to the second.", + "The best way to use the shell is to use pipes to combine simple single-purpose programs (filters).", + "A `for` loop repeats commands once for every thing in a list.", + "Every `for` loop needs a variable to refer to the thing it is currently operating on.", + "Use `$name` to expand a variable (i.e., get its value). `${name}` can also be used.", + "Do not use spaces, quotes, or wildcard characters such as '*' or '?' in filenames, as it complicates variable expansion.", + "Give files consistent names that are easy to match with wildcard patterns to make it easy to select them for looping.", + "Use the up-arrow key to scroll up through previous commands to edit and repeat them.", + "Use Ctrl+R to search through the previously entered commands.", + "Use `history` to display recent commands, and `![number]` to repeat a command by number.", + "`find` finds files with specific properties that match patterns.", + "`grep` selects lines in files that match patterns.", + "`--help` is an option supported by many bash commands, and programs that can be run from within Bash, to display more information on how to use these commands or programs.", + "`man [command]` displays the manual page for a given command.", + "`$([command])` inserts a command's output in place." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "notebook": { + "language": "bash" + }, + "objectives": [ + "Redirect a command's output to a file.", + "Process a file instead of keyboard input using redirection.", + "Construct command pipelines with two or more stages.", + "Explain what usually happens if a program or pipeline isn't given any input to process.", + "Explain Unix's 'small pieces, loosely joined' philosophy.", + "Write a loop that applies one or more commands separately to each file in a set of files.", + "Trace the values taken on by a loop variable during execution of the loop.", + "Explain the difference between a variable's name and its value.", + "Explain why spaces and some punctuation characters shouldn't be used in file names.", + "Demonstrate how to see what commands have recently been executed.", + "Re-run recently executed commands without retyping them.", + "Use `grep` to select lines from text files that match simple patterns.", + "Use `find` to find files and directories whose names match simple patterns.", + "Use the output of one command as the command-line argument(s) to another command.", + "Explain what is meant by 'text' and 'binary' files, and why many common tools don't handle the latter well." + ], + "pageviews": 841, + "pub_date": "2021-09-30", + "questions": [ + "How can I combine existing commands to do new things?", + "How can I perform the same actions on many different files?", + "How can I find files?", + "How can I find things in files?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "cli-basics" + ], + "type": "internal" + } + ], + "short_id": "T00074", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "bash", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "bash" + ], + "time_estimation": "2H", + "title": "Advanced CLI in Galaxy", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "cli-advanced", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/cli-advanced/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-advanced/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-advanced/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 134, + "visitors": 676, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-r/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/sql-r", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/sql-r", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Data analysis languages have libraries for accessing databases.", + "To connect to a database, a program must use a library specific to that database manager.", + "R's libraries can be used to directly query or read from a database.", + "Programs can read query results in batches or all at once.", + "Queries should be written using parameter substitution, not string formatting.", + "R has multiple helper functions to make working with databases easier." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-16", + "notebook": { + "language": "r" + }, + "objectives": [ + "Write short programs that execute SQL queries.", + "Trace the execution of a program that contains an SQL query.", + "Explain why most database applications are written in a general-purpose language rather than in SQL." + ], + "pageviews": 670, + "pub_date": "2021-10-11", + "questions": [ + "How can I access databases from programs written in R?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "r-basics", + "r-advanced" + ], + "type": "internal" + }, + { + "topic_name": "data-science", + "tutorials": [ + "sql-advanced" + ], + "type": "internal" + } + ], + "short_id": "T00110", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "sql", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "SQL", + "R" + ], + "time_estimation": "45M", + "title": "SQL with R", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sql-r", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/sql-r/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-r/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-r/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 35, + "visitors": 512, + "zenodo_link": null + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-bashcrawl/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/cli-bashcrawl", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/cli-bashcrawl", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Learning linux can be fun!" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "notebook": { + "language": "bash" + }, + "objectives": [ + "Explore the bash dungeon and fight monsters", + "Reinforce the learning of CLI basics such as how to change directories, move around, find things, and symlinkings" + ], + "pageviews": 1800, + "pub_date": "2021-09-30", + "questions": [ + "How can I move around on my computer?", + "How can I see what files and directories I have?", + "How can I specify the location of a file or directory on my computer?", + "How can I create, copy, and delete files and directories?", + "How can I edit files?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "cli-basics", + "cli-advanced" + ], + "type": "internal" + } + ], + "short_id": "T00075", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "bash", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "game", + "bash" + ], + "time_estimation": "2H", + "title": "CLI Educational Game - Bashcrawl", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "cli-bashcrawl", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/cli-bashcrawl/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-bashcrawl/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/cli-bashcrawl/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 33, + "visitors": 1566, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-game/tutorial.json", + "contributions": { + "authorship": [ + "NUKnightLab", + "hexylena" + ], + "funding": [ + "gallantries", + "avans-atgm" + ] + }, + "contributors": [ + { + "id": "NUKnightLab", + "joined": "2021-10", + "name": "NU Knight Lab", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/NUKnightLab/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/NUKnightLab.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "copyright": "Copyright (c) 2018 NUKnightLab", + "dir": "topics/data-science/tutorials/sql-game", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/sql-game", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Learning SQL can be fun!" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "MIT", + "mod_date": "2023-11-23", + "notebook": { + "language": "python" + }, + "objectives": [ + "Explore SQL City and discover who committed the murder", + "Reinforce your experiences with SQL such as querying, filtering, and joining data." + ], + "pageviews": 576, + "pub_date": "2021-10-11", + "questions": [ + "Who did the crime?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "sql-basic", + "sql-advanced" + ], + "type": "internal" + } + ], + "short_id": "T00108", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "sql", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "game", + "SQL" + ], + "time_estimation": "2H", + "title": "SQL Educational Game - Murder Mystery", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sql-game", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/sql-game/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-game/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/sql-game/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 19, + "visitors": 533, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-basics/tutorial.json", + "contributions": { + "authorship": [ + "carpentries" + ], + "editing": [ + "bebatut", + "fpsom", + "tobyhodges" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "email": "tbyhdgs@gmail.com", + "id": "tobyhodges", + "joined": "2019-07", + "name": "Toby Hodges", + "orcid": "0000-0003-1766-456X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tobyhodges/", + "twitter": "tbyhdgs", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tobyhodges.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/r-basics", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "data-science", + "tutorials": [ + "r-advanced" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "data-science/r-basics", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 11549, + "mermaid": false + }, + "key_points": [ + "It is important to understand how data are organised by R in a given object type (e.g. numeric, character, logical, etc.) and how the mode of that type determines how R will operate on that data." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Know advantages of analyzing data using R within Galaxy.", + "Compose an R script file containing comments, commands, objects, and functions.", + "Be able to work with objects (i.e. applying mathematical and logical operators, subsetting, retrieving values, etc)." + ], + "pageviews": 2887, + "priority": 1, + "pub_date": "2019-10-08", + "questions": [ + "What are the basic features and objects of the R language?" + ], + "recordings": [ + { + "captioners": [ + "s3by01", + "annefou", + "kxk302" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "50M", + "speakers": [ + "fpsom" + ], + "youtube_id": "MKkQDh5Nguc" + } + ], + "redirect_from": [ + "/topics/introduction/tutorials/r-basics/tutorial", + "/short/data-science/r-basics", + "/short/T00103" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "rstudio" + ], + "type": "internal" + } + ], + "short_id": "T00103", + "short_tools": [ + "interactive_tool_rstudio" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "r", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools", + "R" + ], + "time_estimation": "3H", + "title": "R basics in Galaxy", + "tools": [ + "interactive_tool_rstudio" + ], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "r-basics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/r-basics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-basics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-basics/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 129, + "visitors": 2053, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-advanced/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "email": "tbyhdgs@gmail.com", + "id": "tobyhodges", + "joined": "2019-07", + "name": "Toby Hodges", + "orcid": "0000-0003-1766-456X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tobyhodges/", + "twitter": "tbyhdgs", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tobyhodges.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/r-advanced", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-counts-to-viz-in-r" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "data-science/r-advanced", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 46635, + "mermaid": false + }, + "key_points": [ + "It is easy to import data into R from tabular formats. However, you still need to check that R has imported and interpreted your data correctly.", + "Just like Galaxy, base R's capabilities can be further enhanced by software packages developed by the user community.", + "Use the `dplyr` package to manipulate data frames.", + "Pipes can be used to combine simple operations into complex procedures." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Be able to load and explore the shape and contents of a tabular dataset using base R functions.", + "Understand factors and how they can be used to store and work with categorical data.", + "Apply common `dplyr` functions to manipulate data in R.", + "Employ the \u2018pipe\u2019 operator to link together a sequence of functions." + ], + "pageviews": 2032, + "priority": 2, + "pub_date": "2019-12-09", + "questions": [ + "How can I manipulate data using R in Galaxy?", + "How do I get started with tabular data from Galaxy in R?" + ], + "recordings": [ + { + "captioners": [ + "ksuderman", + "nagoue" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H", + "speakers": [ + "fpsom" + ], + "youtube_id": "_hWBGdlICqg" + } + ], + "redirect_from": [ + "/topics/introduction/tutorials/r-advanced/tutorial", + "/short/data-science/r-advanced", + "/short/T00102" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "rstudio" + ], + "type": "internal" + }, + { + "topic_name": "data-science", + "tutorials": [ + "r-basics" + ], + "type": "internal" + } + ], + "short_id": "T00102", + "short_tools": [ + "interactive_tool_rstudio" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "r", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "R" + ], + "time_estimation": "2H", + "title": "Advanced R in Galaxy", + "tools": [ + "interactive_tool_rstudio" + ], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "r-advanced", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/r-advanced/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-advanced/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-advanced/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 139, + "visitors": 1230, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-advanced-np-pd/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "gr", + "id": "mcmaniou", + "joined": "2021-09", + "name": "Maria Christina Maniou", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcmaniou/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcmaniou.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/python-advanced-np-pd", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-advanced-np-pd", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Python has many libraries offering a variety of capabilities, which makes it popular for beginners, as well as, more experienced users", + "You can use scientific libraries like Numpy and Pandas to perform data analysis." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Use the scientific libraries pandas and numpy to explore tabular datasets", + "Calculate basic statistics about datasets and columns" + ], + "pageviews": 548, + "priority": 2, + "pub_date": "2021-11-08", + "questions": [ + "How can I analyze data using Python with Numpy and Pandas?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "python-basics" + ], + "type": "internal" + } + ], + "short_id": "T00081", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "3H", + "title": "Advanced Python", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-advanced-np-pd", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-advanced-np-pd/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-advanced-np-pd/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-advanced-np-pd/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 79, + "visitors": 395, + "zenodo_link": "https://zenodo.org/record/3477564" + }, + { + "abbreviations": { + "DRY": "Don't Repeat Yourself" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-functions/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-functions", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-functions", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 1872, + "mermaid": false + }, + "key_points": [ + "Functions are foundational in Python", + "Everything you do will require functions", + "Functions keep your code DRY (don't repeat yourself), reducing your copying and pasting or rewriting the same block of code.", + "Deciding what part of your code should, or should not be, a function is something that will come with practice." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Understand the structure of a \"function\" in order to be able to construct their own functions and predict which functions will not work." + ], + "pageviews": 848, + "priority": 2, + "pub_date": "2022-04-25", + "questions": [ + "How do I write functions in Python?", + "What is a function?", + "What do they look like?", + "Fill in the missing part of a function" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "python-math" + ], + "type": "internal" + } + ], + "short_id": "T00089", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Python - Functions", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-functions", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-functions/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-functions/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-functions/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 35, + "visitors": 732 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture2/tutorial.json", + "contributions": { + "authorship": [ + "nekrut" + ] + }, + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/data-science/tutorials/gnmx-lecture2", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/gnmx-lecture2", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 12768, + "mermaid": false + }, + "key_points": [ + "Sanger sequencing is sequencing by synthesis", + "Python is powerful" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Have a basic understanding of the history of sequencing", + "Understand Python basics" + ], + "pageviews": 56, + "priority": 2, + "pub_date": "2024-01-23", + "questions": [ + "What are the origins of Sanger sequencing", + "How did sequencing machines evolve?", + "How can we simulate Sanger sequencing with Python?" + ], + "short_id": "T00397", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "gnmx", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Introduction to sequencing with Python (part one)", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gnmx-lecture2", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/gnmx-lecture2/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture2/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture2/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 133, + "visitors": 49 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-viz-r/tutorial.json", + "contributions": { + "authorship": [ + "carpentries" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "gallantries" + ], + "testing": [ + "shiltemann" + ] + }, + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/data-manipulation-olympics-viz-r", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/data-manipulation-olympics-viz-r", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Plotting is easy with ggplot2.", + "Start small, and build up plots over time." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-05-07", + "notebook": { + "language": "r", + "packages": [ + "tidyverse", + "patchwork", + "hexbin" + ] + }, + "objectives": [ + "Produce scatter plots, boxplots, and time series plots using ggplot.", + "Set universal plot settings.", + "Describe what faceting is and apply faceting in ggplot.", + "Modify the aesthetics of an existing ggplot plot (including axis labels and color).", + "Build complex and customized plots from data in a data frame." + ], + "pageviews": 319, + "priority": 2, + "pub_date": "2023-06-16", + "questions": [ + "How does plotting work in R?", + "How can I facet plots?", + "How do I produce a nice, publication ready plot with ggplot2?" + ], + "short_id": "T00353", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "cyoa", + "R" + ], + "time_estimation": "1h", + "title": "Data visualisation Olympics - Visualization in R", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "data-manipulation-olympics-viz-r", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/data-manipulation-olympics-viz-r/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-viz-r/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-viz-r/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 66, + "visitors": 277, + "zenodo_link": "https://zenodo.org/record/6803028" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-plotting/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "gr", + "id": "mcmaniou", + "joined": "2021-09", + "name": "Maria Christina Maniou", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcmaniou/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcmaniou.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/python-plotting", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-plotting", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Python has many libraries offering a variety of capabilities, which makes it popular for beginners, as well as, more experienced users", + "You can use scientific libraries like Matplotlib to perform exploratory data analysis." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Use the scientific library matplolib to explore tabular datasets" + ], + "pageviews": 546, + "priority": 3, + "pub_date": "2021-11-08", + "questions": [ + "How can I create plots using Python in Galaxy?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "python-basics" + ], + "type": "internal" + } + ], + "short_id": "T00096", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Plotting in Python", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-plotting", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-plotting/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-plotting/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-plotting/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 41, + "visitors": 452, + "zenodo_link": "https://zenodo.org/record/3477564" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-types/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-types", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-types", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Every value has a type.", + "Use the built-in function `type` to find the type of a value.", + "Types control what operations can be done on values.", + "Strings can be added and multiplied.", + "Strings have a length (but numbers don't).", + "Must convert numbers to strings or vice versa when operating on them.", + "Can mix integers and floats freely in operations.", + "Variables only change value when something is assigned to them." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Explain key differences between integers and floating point numbers.", + "Explain key differences between numbers and character strings.", + "Use built-in functions to convert between integers, floating point numbers, and strings." + ], + "pageviews": 203, + "priority": 3, + "pub_date": "2022-04-25", + "questions": [ + "What kinds of data do programs store?", + "How can I convert one type to another?" + ], + "requirements": [], + "short_id": "T00099", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Python - Basic Types & Type Conversion", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-types", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-types/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-types/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-types/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 78, + "visitors": 166 + }, + { + "abbreviations": { + "SQL": "Structured Query Language" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-sql/tutorial.json", + "contributions": { + "authorship": [ + "shiltemann", + "hexylena" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/data-manipulation-olympics-sql", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/data-manipulation-olympics-sql", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 28620, + "mermaid": false + }, + "key_points": [ + "Basic data manipulation is often needed between steps in a larger scientific analysis in order to connect outputs from one tool to input of another.", + "There are often multiple ways/tools to achieve the same end result", + "Having a basic understanding of data manipulation tools will make it easier to do exploratory data analysis", + "Always read the help text of the tool before using it to get a full understanding of its workings", + "Always try to formulate the output you are expecting from a tool. This will make it easier to spot mistakes as soon as possible." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-05-07", + "notebook": { + "language": "sql" + }, + "objectives": [ + "Familiarize yourself with data manipulation in SQL", + "Perform basic SQL query tasks in Galaxy", + "Reason about the expected outcome of tools" + ], + "pageviews": 461, + "priority": 3, + "pub_date": "2023-06-16", + "questions": [ + "How can I do basic data manipulation in SQL?", + "Which functions are available to convert, reformat, filter, sort etc my data stored in a database?" + ], + "short_id": "T00078", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "cyoa", + "sql" + ], + "time_estimation": "1h", + "title": "Data Manipulation Olympics - SQL", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "data-manipulation-olympics-sql", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/data-manipulation-olympics-sql/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-sql/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-sql/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 42, + "visitors": 398, + "zenodo_link": "https://zenodo.org/record/6803028" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture3/tutorial.json", + "contributions": { + "authorship": [ + "nekrut" + ] + }, + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/data-science/tutorials/gnmx-lecture3", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/gnmx-lecture3", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Python can be used to parse FASTQ easily", + "One can readily visualize quality values" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Understand manipulation of FASTQ data in Python", + "Understand quality metrics" + ], + "pageviews": 27, + "priority": 3, + "pub_date": "2024-01-23", + "questions": [ + "What is FASTQ format", + "How do I parse FASTQ format with Python", + "How do I decide whether my data is good or not?" + ], + "short_id": "T00398", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "gnmx", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Introduction to sequencing with Python (part two)", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gnmx-lecture3", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/gnmx-lecture3/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture3/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture3/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 70, + "visitors": 24 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-dplyr/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/r-dplyr", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/r-dplyr", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Dplyr and tidyverse make it a lot easier to process data", + "The functions for selecting data are a lot easier to understand than R's built in alternatives." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "MIT", + "mod_date": "2023-10-23", + "notebook": { + "language": "r" + }, + "objectives": [ + "Read data with the built-in `read.csv`", + "Read data with dplyr's `read_csv`", + "Use dplyr and tidyverse functions to cleanup data." + ], + "pageviews": 649, + "priority": 3, + "pub_date": "2021-10-20", + "questions": [ + "How can I load tabular data into R?", + "How can I slice and dice the data to ask questions?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "r-basics", + "r-advanced" + ], + "type": "internal" + } + ], + "short_id": "T00104", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "r", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "R" + ], + "time_estimation": "1H", + "title": "dplyr & tidyverse for data processing", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "r-dplyr", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/r-dplyr/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-dplyr/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/r-dplyr/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 55, + "visitors": 484, + "zenodo_link": null + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-jq/tutorial.json", + "contributions": { + "authorship": [ + "shiltemann", + "hexylena" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/data-science/tutorials/data-manipulation-olympics-jq", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/data-manipulation-olympics-jq", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 28814, + "mermaid": false + }, + "key_points": [ + "There are a lot of functions available in JQ for performing basic data manipulation tasks", + "Basic data manipulation is often needed between steps in a larger scientific analysis in order to connect outputs from one tool to input of another.", + "There are often multiple ways/tools to achieve the same end result", + "Having a basic understanding of data manipulation tools will make it easier to do exploratory data analysis", + "Always read the help text of the tool before using it to get a full understanding of its workings", + "Always try to formulate the output you are expecting from a tool. This will make it easier to spot mistakes as soon as possible." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-05-07", + "objectives": [ + "Familiarize yourself with data manipulation filters in JQ", + "Perform basic data manipulation tasks in JQ", + "Become comfortable converting JSON-based files in a variety of ways.", + "Reason about the expected outcome of tools" + ], + "pageviews": 254, + "priority": 4, + "pub_date": "2023-06-16", + "questions": [ + "How can I do basic data manipulation with JQ?", + "Which functions are available to convert, reformat, filter, sort etc my JSON-based data?" + ], + "short_id": "T00352", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "cyoa", + "json" + ], + "time_estimation": "1h", + "title": "Data Manipulation Olympics - JQ", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "data-manipulation-olympics-jq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/data-manipulation-olympics-jq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-jq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/data-manipulation-olympics-jq/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 53, + "visitors": 219, + "zenodo_link": "https://zenodo.org/record/6803028" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-iterables/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-iterables", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-iterables", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A list stores many values in a single structure.", + "Use an item's index to fetch it from a list.", + "Lists' values can be replaced by assigning to them.", + "Appending items to a list lengthens it.", + "Use `del` to remove items from a list entirely.", + "The empty list contains no values.", + "Lists may contain values of different types.", + "Character strings can be indexed like lists.", + "Character strings are immutable.", + "Indexing beyond the end of the collection is an error." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Explain why programs need collections of values.", + "Write programs that create flat lists, index them, slice them, and modify them through assignment and method calls." + ], + "pageviews": 1865, + "priority": 4, + "pub_date": "2022-04-25", + "questions": [ + "How can I store multiple values?" + ], + "requirements": [], + "short_id": "T00091", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Python - Lists & Strings & Dictionaries", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-iterables", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-iterables/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-iterables/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-iterables/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 17, + "visitors": 1600 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture4/tutorial.json", + "contributions": { + "authorship": [ + "nekrut" + ] + }, + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/data-science/tutorials/gnmx-lecture4", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/gnmx-lecture4", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 997, + "mermaid": false + }, + "key_points": [ + "Lists and dictionaries are key data structures in Python" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Understanding of lists and dictionaries", + "Learning about dynamic programming", + "Learning about how to translate DNA in Python" + ], + "pageviews": 13, + "priority": 4, + "pub_date": "2024-02-06", + "questions": [ + "Understanding Python lists", + "Understanding Python dictionaries", + "Learnig about dynamic programming" + ], + "short_id": "T00404", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "gnmx", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Introduction to sequencing with Python (part three)", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gnmx-lecture4", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/gnmx-lecture4/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture4/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture4/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 17, + "visitors": 11 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-flow/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-flow", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-flow", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use `if condition` to start a conditional statement, `elif condition` to provide additional tests, and `else` to provide a default.", + "The bodies of the branches of conditional statements must be indented.", + "Use `==` to test for equality.", + "`X and Y` is only true if both `X` and `Y` are true.", + "`X or Y` is true if either `X` or `Y`, or both, are true.", + "Zero, the empty string, and the empty list are considered false; all other numbers, strings, and lists are considered true.", + "`True` and `False` represent truth values.", + "`not` can be used to invert the condition" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Write conditional statements including `if`, `elif`, and `else` branches.", + "Correctly evaluate expressions containing `and` and `or`." + ], + "pageviews": 203, + "priority": 5, + "pub_date": "2022-04-25", + "questions": [ + "How can my programs do different things based on data values?" + ], + "requirements": [], + "short_id": "T00088", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "40M", + "title": "Python - Flow Control", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-flow", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-flow/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-flow/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-flow/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 36, + "visitors": 173 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture5/tutorial.json", + "contributions": { + "authorship": [ + "nekrut" + ] + }, + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/data-science/tutorials/gnmx-lecture5", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/gnmx-lecture5", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Python can be used to read and write files" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Understand manipulation of files in Python" + ], + "pageviews": 19, + "priority": 5, + "pub_date": "2024-02-13", + "questions": [ + "How to manipulate files in Python", + "How to read and write FASTA", + "How to read and write FASTQ", + "How to read and write SAM" + ], + "short_id": "T00411", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "gnmx", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Introduction to sequencing with Python (part four)", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gnmx-lecture5", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/gnmx-lecture5/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture5/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture5/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 29, + "visitors": 19 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-loops/tutorial.json", + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-loops", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-loops", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A *for loop* executes commands once for each value in a collection.", + "A `for` loop is made up of a collection, a loop variable, and a body.", + "The first line of the `for` loop must end with a colon, and the body must be indented.", + "Indentation is always meaningful in Python.", + "Loop variables can be called anything (but it is strongly advised to have a meaningful name to the looping variable).", + "The body of a loop can contain many statements.", + "Use `range` to iterate over a sequence of numbers.", + "The Accumulator pattern turns many values into one." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Explain what for loops are normally used for.", + "Trace the execution of a simple (unnested) loop and correctly state the values of variables in each iteration.", + "Write for loops that use the Accumulator pattern to aggregate values." + ], + "pageviews": 361, + "priority": 6, + "pub_date": "2022-04-25", + "questions": [ + "How can I make a program do many things?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "python-iterables", + "python-flow" + ], + "type": "internal" + } + ], + "short_id": "T00093", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "40M", + "title": "Python - Loops", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-loops", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-loops/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-loops/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-loops/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 108, + "visitors": 301 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture6/tutorial.json", + "contributions": { + "authorship": [ + "nekrut" + ] + }, + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/data-science/tutorials/gnmx-lecture6", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/gnmx-lecture6", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Pandas are an essential tool for data manipulation" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-20", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Understand data manipulation in Pandas" + ], + "pageviews": 11, + "priority": 6, + "pub_date": "2024-02-20", + "questions": [ + "What is Pandas", + "What is a dataframe", + "How to access data in dataframes" + ], + "short_id": "T00419", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "gnmx", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Data manipulation with Pandas", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gnmx-lecture6", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/gnmx-lecture6/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture6/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture6/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 51, + "visitors": 8 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture7/tutorial.json", + "contributions": { + "authorship": [ + "nekrut" + ] + }, + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/data-science/tutorials/gnmx-lecture7", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "data-science/gnmx-lecture7", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "No git, no life" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-12", + "objectives": [ + "Get a basic understanding of git and version control" + ], + "pageviews": 3, + "priority": 7, + "pub_date": "2024-03-12", + "questions": [ + "What is git", + "How is git different from GitHub?", + "What is branch?", + "How to uise git as a time machine" + ], + "short_id": "T00425", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "gnmx", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Versioning your code and data with git", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gnmx-lecture7", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/gnmx-lecture7/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture7/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/gnmx-lecture7/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 3 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-files/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-files", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-files", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "File reading requires a mode: read, write, and append", + "Use the CSV module to parse CSV files.", + "do NOT attempt to do it yourself, it will encounter edge cases that the CSV module handles for you", + "Use a `with` block to open a file." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Read data from a file", + "Write new data to a file", + "Use `with` to ensure the file is closed properly.", + "Use the CSV module to parse comma and tab separated datasets." + ], + "pageviews": 519, + "priority": 7, + "pub_date": "2022-04-25", + "questions": [ + "How can I read from a file?", + "How can I parse a CSV file?", + "How can I write results out" + ], + "requirements": [], + "short_id": "T00087", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1H30M", + "title": "Python - Files & CSV", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-files", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-files/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-files/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-files/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 37, + "visitors": 447 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-exceptions/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-exceptions", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-exceptions", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "raise lets your raise your own `Exception`s", + "This is mostly used by library authors (which you might become!)", + "Use `try`/`except` to catch expected errors and work around them (if possible)", + "finally lets you cleanup your temporary files, if you created some." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "catch an exception", + "raise your own exception" + ], + "pageviews": 423, + "priority": 8, + "pub_date": "2022-04-25", + "questions": [ + "How do I try to execute code, knowing it might fail?", + "What are some situations where this is important?", + "How can I write my own exceptions." + ], + "requirements": [], + "short_id": "T00086", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "20M", + "title": "Python - Try & Except", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-exceptions", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-exceptions/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-exceptions/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-exceptions/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 14, + "visitors": 367 + }, + { + "abbreviations": { + "ORF": "Open Reading Frame" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-basics-recap/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-basics-recap", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-basics-recap", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 8764, + "mermaid": false + }, + "key_points": [], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Recap all previous modules.", + "Use exercises to ensure that all previous knowledge is sufficiently covered." + ], + "pageviews": 204, + "priority": 9, + "pub_date": "2022-04-25", + "questions": [ + "What all did I learn up until now?" + ], + "requirements": [ + { + "topic_name": "data-science", + "tutorials": [ + "python-math", + "python-functions", + "python-types", + "python-iterables", + "python-flow", + "python-loops", + "python-files", + "python-exceptions" + ], + "type": "internal" + } + ], + "short_id": "T00084", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1H30M", + "title": "Python - Introductory Graduation", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-basics-recap", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-basics-recap/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-basics-recap/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-basics-recap/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 83, + "visitors": 169 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-testing/tutorial.json", + "contributions": { + "authorship": [ + "carpentries", + "hexylena" + ], + "editing": [ + "dirowa", + "bazante1" + ], + "funding": [ + "carpentries", + "avans-atgm" + ] + }, + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/python-testing", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-testing", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The three main types of automated tests are **unit tests**, **functional tests** and **regression tests**.", + "We can write unit tests to verify that functions generate expected output given a set of specific inputs.", + "It should be easy to add or change tests, understand and run them, and understand their results.", + "We can use a unit testing framework like `unittest` to structure and simplify the writing of tests.", + "We should test for expected errors in our code.", + "Testing program behaviour against both valid and invalid inputs is important and is known as **data validation**." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Explain the reasons why testing is important", + "Describe the three main types of tests and what each are used for", + "Implement and run unit tests to verify the correct behaviour of program functions" + ], + "pageviews": 173, + "priority": 10, + "pub_date": "2022-10-19", + "questions": [ + "Does the code we develop work the way it should do?", + "Can we (and others) verify these assertions for themselves?", + "To what extent are we confident of the accuracy of results that appear in publications?" + ], + "requirements": [], + "short_id": "T00098", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "45M", + "title": "Python - Testing", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-testing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-testing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-testing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-testing/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 33, + "visitors": 153 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-venv/tutorial.json", + "contributions": { + "authorship": [ + "carpentries", + "hexylena" + ], + "funding": [ + "carpentries", + "avans-atgm" + ] + }, + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/python-venv", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-venv", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Virtual environments keep Python versions and dependencies required by different projects separate.", + "A virtual environment is itself a directory structure.", + "Use `venv` to create and manage Python virtual environments.", + "Use `pip` to install and manage Python external (third-party) libraries.", + "`pip` allows you to declare all dependencies for a project in a separate file (by convention called `requirements.txt`) which can be shared with collaborators/users and used to replicate a virtual environment.", + "Use `pip3 freeze > requirements.txt` to take snapshot of your project's dependencies.", + "Use `pip3 install -r requirements.txt` to replicate someone else's virtual environment on your machine from the `requirements.txt` file." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-05-18", + "notebook": { + "language": "bash" + }, + "objectives": [ + "Set up a Python virtual environment for our software project using `venv` and `pip`.", + "Run our software from the command line." + ], + "pageviews": 108, + "priority": 10, + "pub_date": "2022-10-19", + "questions": [ + "What are virtual environments in software development and why you should use them?", + "How can we manage Python virtual environments and external (third-party) libraries?" + ], + "requirements": [], + "short_id": "T00101", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Virtual Environments For Software Development", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-venv", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-venv/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-venv/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-venv/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 96, + "visitors": 95 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-typing/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "editing": [ + "mvdbeek", + "pvanheus", + "dirowa", + "bazante1" + ], + "funding": [ + "avans-atgm" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "bio": "Research at the South African National Bioinformatics Institute", + "id": "pvanheus", + "joined": "2017-09", + "name": "Peter van Heusden", + "orcid": "0000-0001-6553-5274", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pvanheus/", + "twitter": "pvanheus", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pvanheus.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/python-typing", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-typing", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Typing improves the correctness and quality of your code", + "It can ensure that editor provided hints are better and more accurate." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Understand the utility of annotating types on one's code", + "Understand the limits of type annotations in python" + ], + "pageviews": 478, + "priority": 10, + "pub_date": "2022-10-19", + "questions": [ + "What is typing?", + "How does it improve code?", + "Can it help me?" + ], + "requirements": [], + "short_id": "T00100", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Python - Type annotations", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-typing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-typing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-typing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-typing/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 13, + "visitors": 453 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-conda/tutorial.json", + "contributions": { + "authorship": [ + "carpentries", + "hexylena" + ], + "funding": [ + "carpentries", + "avans-atgm" + ] + }, + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/python-conda", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-conda", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Environments keep Python versions and dependencies required by different projects separate.", + "An environment is itself a directory structure of software and libraries", + "Use `conda create -n ` to create and manage environments.", + "Use `conda install` to install and manage additional external (third-party) libraries.", + "Conda allows you to declare all dependencies for a project in a separate file (by convention called `environment.yml`) which can be shared with collaborators/users and used to replicate an environment.", + "Use `conda env export > environment.yml` to take snapshot of your project's dependencies.", + "Use `conda env create -f environment.yml` to replicate someone else's environment on your machine from the `environment.yml` file." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-05-18", + "notebook": { + "language": "bash" + }, + "objectives": [ + "Set up a Conda environment for our software project using `conda`.", + "Run our software from the command line." + ], + "pageviews": 479, + "priority": 10, + "pub_date": "2022-10-19", + "questions": [ + "What are Conda environments in software development and why you should use them?", + "How can we manage Conda environments and external (third-party) libraries via Conda?" + ], + "requirements": [], + "short_id": "T00085", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "conda" + ], + "time_estimation": "30M", + "title": "Conda Environments For Software Development", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-conda", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-conda/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-conda/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-conda/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 24, + "visitors": 441 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-argparse/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "editing": [ + "bazante1" + ], + "funding": [ + "avans-atgm" + ], + "testing": [ + "dirowa" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/python-argparse", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-argparse", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "If you are writing a command line script, no matter how small, use argparse.", + "`--help` is even written for us, without us writing any special code to handle that case", + "It handles a lot of cases and input validation for you", + "It produces a nice `--help` text that can help you if you've forgotten what your tool does", + "It's nice for users of your scripts! They don't have to read the code to know how it behaves if you document it well." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-01-24", + "objectives": [ + "Learn how sys.argv works", + "Write a simple command line program that sums some numbers", + "Use argparse to make it nicer." + ], + "pageviews": 1230, + "priority": 10, + "pub_date": "2022-04-25", + "questions": [ + "How do I make a proper command line script", + "How do I use argparse?", + "What problems does it solve?" + ], + "requirements": [], + "short_id": "T00082", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Python - Argparse", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-argparse", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-argparse/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-argparse/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-argparse/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 24, + "visitors": 1129 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-glob/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-glob", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-glob", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "If your data is ordering dependent, sort your globs!" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Use glob to collect a list of files", + "Learn about the potential pitfalls of glob" + ], + "pageviews": 418, + "priority": 11, + "pub_date": "2022-04-25", + "questions": [ + "How can I collect a list of files." + ], + "requirements": [], + "short_id": "T00090", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "15M", + "title": "Python - Globbing", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-glob", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-glob/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-glob/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-glob/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 28, + "visitors": 388 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-subprocess/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + } + ], + "dir": "topics/data-science/tutorials/python-subprocess", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-subprocess", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "**DO NOT USE `os.system`**", + "**DO NOT USE shell=True**", + "\ud83d\udc4dUse `subprocess.check_call()` if you don't care about the output, just that it succeeds.", + "\ud83d\udc4dUse `subprocess.check_output()` if you want the output", + "Use `.decode('utf-8')` to read the output of `check_output()`" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-02-13", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Run a command in a subprocess.", + "Learn about `check_call` and `check_output` and when to use each of these.", + "Read it's output." + ], + "pageviews": 1134, + "priority": 12, + "pub_date": "2022-04-25", + "questions": [ + "How can I run another program?" + ], + "requirements": [], + "short_id": "T00097", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "45M", + "title": "Python - Subprocess", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-subprocess", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-subprocess/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-subprocess/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-subprocess/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 17, + "visitors": 956 + }, + { + "abbreviations": { + "PEP": "Python Enhancement Proposal" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-linting/tutorial.json", + "contributions": { + "authorship": [ + "carpentries" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "carpentries", + "avans-atgm" + ] + }, + "contributors": [ + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/python-linting", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-linting", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Just use Black. Don't argue over it. Just use Black.", + "The author personally has been on projects that argued for years over coding style.", + "Stop. Stop now.", + "Use Black.", + "Always assume that someone else will read your code at a later date, including yourself.", + "Community coding conventions help you create more readable software projects that are easier to contribute to.", + "Python Enhancement Proposals (or PEPs) describe a recommended convention or specification for how to do something in Python.", + "Style checking to ensure code conforms to coding conventions is often part of IDEs." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-05-18", + "notebook": { + "language": "bash" + }, + "objectives": [ + "Understand the benefits of following community coding conventions" + ], + "pageviews": 102, + "priority": 13, + "pub_date": "2022-11-03", + "questions": [ + "Why should you follow software code style conventions?", + "Who is setting code style conventions?", + "What code style conventions exist for Python?" + ], + "requirements": [], + "short_id": "T00092", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Python - Coding Style", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-linting", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-linting/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-linting/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-linting/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 69, + "visitors": 90 + }, + { + "abbreviations": { + "GIL": "Global Interpreter Lock" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-multiprocessing/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "editing": [ + "dirowa", + "bazante1" + ], + "funding": [ + "avans-atgm" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "D.vrins@live.nl", + "former_affiliations": [ + "avans-atgm" + ], + "id": "dirowa", + "joined": "2021-10", + "linkedin": "Donny Vrins", + "name": "Donny Vrins", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dirowa/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dirowa.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + } + ], + "dir": "topics/data-science/tutorials/python-multiprocessing", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "data-science/python-multiprocessing", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Code go brrrt." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2023-11-16", + "notebook": { + "language": "python", + "pyolite": true + }, + "objectives": [ + "Understanding how to paralellise code to make it run faster.", + "Identifying how to decompose code into a parallel unit." + ], + "pageviews": 708, + "priority": 20, + "pub_date": "2022-10-19", + "questions": [ + "How can I parallelize code to make it run faster", + "What code is, or is not, a prime target for parallelisation" + ], + "requirements": [], + "short_id": "T00095", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "python-modular", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Python - Multiprocessing", + "tools": [], + "topic_name": "data-science", + "topic_name_human": "Foundations of Data Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "python-multiprocessing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/data-science/tutorials/python-multiprocessing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-multiprocessing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/data-science/tutorials/python-multiprocessing/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 21, + "visitors": 652 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/conda/tutorial.json", + "contributors": [ + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "id": "hmenager", + "joined": "2017-09", + "name": "Herv\u00e9 M\u00e9nager", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hmenager/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hmenager.json" + } + ], + "dir": "topics/dev/tutorials/conda", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "dev/conda", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Conda and Bioconda are Galaxy best practices for connecting Galaxy tools to underlying applications and libraries.", + "Leveraging Conda allows easy installation of your tool's dependencies by Galaxy deployers.", + "The Planemo commands `conda_search`, `conda_init`, `conda_install`, `lint`, `test`, and `serve` make it easy to search and use existing Conda recipes when developing tools.", + "Conda recipe skeletons, `conda build`, and with `planemo conda_install --conda_use_local` allow easy development of new Conda recipes at the same time as Galaxy tools that wrap them.", + "Bioconda is a Galaxy best practice Conda channel for recipe publication.", + "Bioconda has easy to follow contribution guidelines and is very welcoming to new contributors." + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-04-14", + "objectives": [ + "Learn to use existing Conda recipes to enable best practice tool dependency management in Galaxy.", + "Learn the basics of building Conda recipes and contributing to Bioconda.", + "Learn to use Planemo to assist in developing Galaxy tools from existing and new Conda recipes." + ], + "pageviews": 5726881, + "pub_date": "2017-06-20", + "questions": [ + "How can I connect tools to applications and libraries?", + "What are the advantages of declaring dependencies for my tool?", + "What are Conda and Bioconda?", + "What are Conda recipes and environments?", + "How do I find and use existing Conda recipes?", + "How do I develop Conda recipes for use within Galaxy tools?" + ], + "requirements": [ + { + "topic_name": "dev", + "tutorials": [ + "tool-integration", + "conda_sys" + ], + "type": "internal" + } + ], + "short_id": "S00045", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "dependencies", + "supported_servers": [], + "symlink": null, + "time_estimation": "75m", + "title": "Tool Dependencies and Conda", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "conda", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/conda/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/conda/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/conda/slides.json" + }, + "version": 33, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/webhooks/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "email": "blankclemens@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "blankclemens", + "joined": "2017-09", + "name": "Clemens Blank", + "orcid": "0000-0002-1726-2256", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankclemens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankclemens.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "cz", + "email": "marten@bx.psu.edu", + "fediverse": "https://mastodon.world/@martenson", + "fediverse_flavor": "mastodon", + "id": "martenson", + "joined": "2017-09", + "location": { + "country": "USA", + "lat": 37.0, + "lon": -122.0 + }, + "matrix": "martenson:matrix.org", + "name": "Martin \u010cech", + "orcid": "0000-0002-9318-1781", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/martenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/martenson.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/dev/tutorials/webhooks", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/webhooks", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A Galaxy Webhook provides an easy way to customize the Galaxy UI with plugins", + "Right now there are 4 entry points: tool, workflow, masthead, history-menu", + "With a minimal amount of code you can extend Galaxy's user-interace." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-24", + "objectives": [ + "Discover what Galaxy Webhooks are", + "Be able to create Webhooks", + "Be able to add a Galaxy Webhook in a Galaxy instance" + ], + "pageviews": 5727095, + "pub_date": "2017-04-03", + "questions": [ + "What are Galaxy Webhooks?", + "How to create them?" + ], + "short_id": "T00122", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "advanced", + "supported_servers": [], + "symlink": null, + "time_estimation": "1h", + "title": "Galaxy Webhooks", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "webhooks", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/webhooks/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/webhooks/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/webhooks/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 200, + "visitors": 2063912 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-generators/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "ross.lazarus@gmail.com", + "id": "fubar2", + "joined": "2021-02", + "name": "Ross Lazarus", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fubar2.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/dev/tutorials/tool-generators", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "dev", + "tutorials": [ + "tool-generators-advanced" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "dev/tool-generators", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The ToolFactory is an automated Galaxy tool generator for scientists and developers who routinely write command line scripts.", + "It can turn a working command line script into a proper Galaxy tool with a test in a few minutes.", + "It automatically generates simple, complete Galaxy tools from information provided by filling in a normal Galaxy form in the familiar UI.", + "It is installed as a self-configuring development code clone.", + "The Galaxy server is suited any modern Linux workstation or high-end laptop.", + "Useful for learning about system administration or framework code, and for developing tools - all on your own private pop-up server." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn why you might want to use the ToolFactory development server", + "Watch a video demonstration and explore the generated code - Hello Galaxy Training Network!", + "Run it locally in Docker.", + "Install and explore the simple examples provided.", + "Modify and re-generate them to see how the changes affect the tool", + "Generate new simple Galaxy tools using your own scripts" + ], + "pageviews": 4997387, + "pub_date": "2021-05-26", + "questions": [ + "What options exist for new-to-Galaxy developers to convert functioning command line scripts into Galaxy tools?", + "Can any command line script I've written be wrapped as a Galaxy tool?", + "How can I get the ToolFactory working locally, since you tell me it should never be exposed on a public server?", + "What is the difference between a hand-crafted tool and a ToolFactory generated one?" + ], + "recordings": [ + { + "captioners": [ + "fubar2" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "fubar2" + ], + "youtube_id": "8nKBfVM6240" + } + ], + "requirements": [ + { + "topic_name": "introduction", + "tutorials": [ + "galaxy-intro-short", + "galaxy-intro-101-everyone" + ], + "type": "internal" + }, + { + "topic_name": "dev", + "tutorials": [ + "tool-integration", + "interactive-environments" + ], + "type": "internal" + } + ], + "short_id": "T00118", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "tooldev", + "supported_servers": [], + "symlink": null, + "time_estimation": "1H", + "title": "ToolFactory: Generating Tools From Simple Scripts", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "tool-generators", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/tool-generators/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-generators/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-generators/tutorial.json" + }, + "version": 10, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 304, + "visitors": 1850073 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-integration/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "id": "lecorguille", + "joined": "2017-09", + "name": "Gildas Le Corguill\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lecorguille/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lecorguille.json" + } + ], + "dir": "topics/dev/tutorials/tool-integration", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "dev", + "tutorials": [ + "conda" + ], + "type": "internal" + } + ], + "hands_on": "external", + "hands_on_url": "http://planemo.readthedocs.io/en/latest/writing_standalone.html", + "id": "dev/tool-integration", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy Tool Syntax", + "Use Planemo", + "Use Conda", + "Use GitHub", + "Use GitHub Actions", + "No more excuse to develop crappy Galaxy tools" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-04-21", + "objectives": [ + "Learn what a tool is and its structure", + "Use the Planemo utilities to develop a tool", + "Deal with the dependencies", + "Write functional tests", + "Make a tool ready for publishing in a ToolShed" + ], + "pageviews": 5726884, + "pub_date": "2016-09-30", + "questions": [ + "What is a tool for Galaxy?", + "How to write a best-practice tool?", + "How to deal with the tool environment?" + ], + "short_id": "S00051", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "tooldev", + "supported_servers": [], + "symlink": null, + "time_estimation": "6h", + "title": "Tool development and integration into Galaxy", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tool-integration", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/tool-integration/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-integration/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-integration/slides.json" + }, + "version": 29, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063760 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/bioblend-api/tutorial.json", + "contributions": { + "authorship": [ + "nsoranzo" + ], + "editing": [ + "claresloggett", + "nturaga", + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "id": "claresloggett", + "joined": "2018-07", + "name": "Clare Sloggett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/claresloggett/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/claresloggett.json" + }, + { + "id": "nturaga", + "joined": "2017-09", + "name": "Nitesh Turaga", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nturaga/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nturaga.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/dev/tutorials/bioblend-api", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "dev/bioblend-api", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The API allows you to use Galaxy's capabilities programmatically.", + "BioBlend makes using the Galaxy API from Python easier.", + "BioBlend objects is an object-oriented interface for interacting with Galaxy." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-16", + "notebook": { + "language": "python" + }, + "objectives": [ + "Interact with Galaxy via BioBlend." + ], + "pageviews": 5727485, + "pub_date": "2017-01-17", + "questions": [ + "What is a REST API?", + "How to interact with Galaxy programmatically?", + "Why and when should I use BioBlend?" + ], + "requirements": [], + "short_id": "T00111", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "api", + "supported_servers": [], + "symlink": null, + "time_estimation": "2h", + "title": "Scripting Galaxy using the API and BioBlend", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "bioblend-api", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/bioblend-api/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/bioblend-api/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/bioblend-api/tutorial.json" + }, + "version": 22, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 311, + "visitors": 2064202 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-environments/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/dev/tutorials/interactive-environments", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "dev/interactive-environments", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Interactive Environments offer access to third-party applications within Galaxy", + "Interactive Environments run in a docker images for sandboxing and easy dependency management" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-02-17", + "objectives": [ + "Implement a Hello-World Galaxy Interactive Environment" + ], + "pageviews": 5726881, + "pub_date": "2017-02-05", + "questions": [ + "What are Galaxy Interactive Environments (GIEs)?", + "How to enable GIEs in Galaxy?", + "How to develop your own GIE?" + ], + "requirements": [ + { + "title": "Docker basics", + "type": "none" + } + ], + "short_id": "S00048", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "advanced", + "supported_servers": [], + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "90m", + "title": "Galaxy Interactive Environments", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "interactive-environments", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/interactive-environments/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-environments/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-environments/slides.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/containers/tutorial.json", + "contributors": [ + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/dev/tutorials/containers", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "dev/containers", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "It is becoming easier, more advantageous, and more common for Galaxy admins to run all tools within their own container.", + "You can explicitly define a container for your tool - but it is easier and more reproducible to let Galaxy find or build one using your tool's best practice requirements.", + "The Galaxy community will infrastructure to automatically build and/or publish containers for your tool as long as it defines best practice Conda dependencies.", + "Planemo makes it easy to test your tool inside of containers." + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2022-10-18", + "objectives": [ + "Explore the differences between containerizing Galaxy and tool execution.", + "Discuss the advantages of containerizing tools.", + "Learn to build best practice tools ready to be containerized." + ], + "pageviews": 5726881, + "pub_date": "2017-06-20", + "questions": [ + "What are the advantages of running my Galaxy tool inside of a container?", + "How does Galaxy find a container to run my tool in?", + "What are BioContainers and how are they related to Galaxy?" + ], + "requirements": [ + { + "topic_name": "dev", + "tutorials": [ + "tool-integration" + ], + "type": "internal" + } + ], + "short_id": "S00047", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "dependencies", + "supported_servers": [], + "symlink": null, + "time_estimation": "45m", + "title": "Tool Dependencies and Containers", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "containers", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/containers/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/containers/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/containers/slides.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-tours/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/dev/tutorials/interactive-tours", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "dev/interactive-tours", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "An Interactive Tour is easy to create: just a yaml file to fill", + "Use the Developper Tools of find the JQuery Selector", + "Help yourself by using the available web plugins and record an interactive tour" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2021-07-27", + "objectives": [ + "Discover what is a Galaxy Interactive Tour", + "Be able to create a Galaxy Interactive Tour", + "Be able to add a Galaxy Interactive Tour in a Galaxy instance" + ], + "pageviews": 5726881, + "pub_date": "2017-01-12", + "questions": [ + "What is a Galaxy Interactive Tour?", + "How to create a Galaxy Interactive Tour?" + ], + "short_id": "S00049", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "advanced", + "supported_servers": [], + "symlink": null, + "time_estimation": "3h", + "title": "Galaxy Interactive Tours", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "interactive-tours", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/interactive-tours/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-tours/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-tours/slides.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/conda_sys/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "id": "cmonjeau", + "joined": "2017-09", + "name": "Cyril Monjeaud", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cmonjeau/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cmonjeau.json" + } + ], + "dir": "topics/dev/tutorials/conda_sys", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "dev/conda_sys", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "There is a common procedure to compile and install many tools: `./configure && make && make install`", + "Some exotic tools require adjustements to compile or install properly", + "Pay attention to INSTALL and README files, and to documentation" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2021-05-28", + "objectives": [ + "Learn how to compile and install tools using standard procedures.", + "Learn needed tricks to write conda build.sh files." + ], + "pageviews": 5726881, + "pub_date": "2018-02-15", + "questions": [ + "What does 'installing a software' means on a Linux architecture?", + "Why my compilations always fail?", + "How to solve common compiling and installation issues?" + ], + "short_id": "S00046", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "dependencies", + "supported_servers": [], + "symlink": null, + "time_estimation": "1h", + "title": "Prerequisites for building software/conda packages", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "conda_sys", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/conda_sys/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/conda_sys/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/conda_sys/slides.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/architecture/tutorial.json", + "contributors": [ + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/dev/tutorials/architecture", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "dev/architecture", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy runs out of the box and fetches all needed dependencies.", + "Running Galaxy in production requires configuration.", + "The architecture is designed to be pluggable and extensible.", + "Learn more about different Galaxy aspects in our [development section](/topics/dev/)." + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-06-14", + "objectives": [ + "Explore various aspects of the Galaxy codebase.", + "Understand the various top-level files and modules in Galaxy.", + "Understand how dependencies work in Galaxy's frontend and backend." + ], + "pageviews": 5726881, + "pub_date": "2017-06-20", + "questions": [ + "How is the Galaxy code structured?", + "What do the various other projects related to Galaxy do?", + "What happens when I start Galaxy?" + ], + "requirements": null, + "short_id": "S00043", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": [], + "symlink": null, + "time_estimation": "150m", + "title": "Galaxy Code Architecture", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "architecture", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/architecture/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/architecture/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/architecture/slides.json" + }, + "version": 34, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/toolshed/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "id": "loraine-gueguen", + "joined": "2017-09", + "name": "Loraine Gu\u00e9guen", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/loraine-gueguen/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/loraine-gueguen.json" + }, + { + "id": "slegras", + "joined": "2017-09", + "name": "St\u00e9phanie Legras", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slegras/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slegras.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/dev/tutorials/toolshed", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "dev/toolshed", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use Planemo", + "Contribute to the Main Tool Shed" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2022-10-18", + "objectives": [ + "Discover what is a Tool Shed", + "Be able to install tools and workflows from a Tool Shed into a Galaxy instance", + "Be able to publish tools with Planemo" + ], + "pageviews": 5726881, + "pub_date": "2017-06-12", + "questions": [ + "What is a Tool Shed?", + "How to install tools and workflows from a Tool Shed into a Galaxy instance?", + "What are the Tool Shed repository types?", + "How to publish with Planemo?" + ], + "short_id": "S00052", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "tooldev", + "supported_servers": [], + "symlink": null, + "time_estimation": "3h", + "title": "Tool Shed: sharing Galaxy tools", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "toolshed", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/toolshed/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/toolshed/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/toolshed/slides.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/visualization-charts/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "id": "yhoogstrate", + "joined": "2017-09", + "name": "Youri Hoogstrate", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yhoogstrate/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yhoogstrate.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "id": "guerler", + "joined": "2017-09", + "name": "Aysam Guerler", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/guerler/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/guerler.json" + }, + { + "id": "dannon", + "joined": "2017-09", + "name": "Dannon Baker", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dannon/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dannon.json" + } + ], + "dir": "topics/dev/tutorials/visualization-charts", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/visualization-charts", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Demonstrating a pluggable extension system for JavaScript visualizations", + "With three primary files we can integrate any JavaScript visualization into Galaxy" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-08", + "objectives": [ + "Learn how to add JavaScript plugins to Galaxy using the Charts visualization framework" + ], + "pageviews": 5727572, + "pub_date": "2017-06-22", + "questions": [ + "How can I make a custom visualization plugin for Galaxy?" + ], + "short_id": "T00120", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "viz", + "supported_servers": [], + "symlink": null, + "time_estimation": "1h", + "title": "JavaScript plugins", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "visualization-charts", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/visualization-charts/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/visualization-charts/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/visualization-charts/tutorial.json" + }, + "version": 19, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 206, + "visitors": 2064328 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/visualization-generic/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "id": "yhoogstrate", + "joined": "2017-09", + "name": "Youri Hoogstrate", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yhoogstrate/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yhoogstrate.json" + } + ], + "dir": "topics/dev/tutorials/visualization-generic", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/visualization-generic", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Visualizations require a different way of thinking: server and client side; downloading files rather than system level access", + "Interactivity is what makes visualizations different from static tools", + "Requires understanding of both the Galaxy ecosystem as well as HTML5/JS", + "Performance is more important than for static Galaxy tools" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Implement a first Galaxy visualization", + "Understand the client side vs. server side principle" + ], + "pageviews": 5727324, + "pub_date": "2016-09-30", + "questions": [ + "How can visualization plugins benefit science?" + ], + "requirements": [ + { + "title": "Javascript knowledge", + "type": "none" + } + ], + "short_id": "T00121", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "viz", + "supported_servers": [], + "symlink": null, + "time_estimation": "90m", + "title": "Generic plugins", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "visualization-generic", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/visualization-generic/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/visualization-generic/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/visualization-generic/tutorial.json" + }, + "version": 21, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 274, + "visitors": 2064058 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-annotation/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "supernord", + "paulzierep" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "id": "supernord", + "joined": "2024-02", + "name": "Johan Gustafsson", + "orcid": "0000-0002-2977-5032", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/supernord/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/supernord.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + } + ], + "dir": "topics/dev/tutorials/tool-annotation", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/tool-annotation", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy tools can get EDAM ontology terms from bio.tools", + "bio.tools entry can be created and modified to provide the best EDAM annotations", + "An up-to-date bio.tools entry provides readily accessible metadata that can help users find and understand tools that are available on Galaxy", + "bio.tools entry can easily be added to a Galaxy tool" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-24", + "objectives": [ + "Identify Galaxy tools without bio.tools entry", + "Create a bio.tools entry", + "Update a bio.tools entry", + "Add EDAM ontology terms to a bio.tools entry", + "Link a Galaxy tool to its corresponding bio.tools entry" + ], + "pageviews": 99, + "pub_date": "2024-03-06", + "questions": [ + "How are Galaxy tools linked to EDAM ontology?", + "How to connect Galaxy tools to bio.tools?", + "What is bio.tools?", + "How to add, and update, entries in bio.tools?" + ], + "short_id": "T00421", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "tooldev", + "supported_servers": [], + "symlink": null, + "time_estimation": "1H", + "title": "Adding and updating best practice metadata for Galaxy tools using the bio.tools registry", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tool-annotation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/tool-annotation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-annotation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-annotation/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 170, + "visitors": 82 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-tools/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "estelle.ancelet@inrae.fr", + "id": "eancelet", + "joined": "2021-01", + "name": "Estelle Ancelet", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eancelet/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/eancelet.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "email": "c.hyde@qcif.edu.au", + "id": "neoformit", + "joined": "2022-02", + "name": "Cameron Hyde", + "orcid": "0000-0002-5913-9766", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/neoformit/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/neoformit.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "lain.pavot@inrae.fr", + "id": "Lain-inrae", + "joined": "2022-02", + "name": "Lain Pavot", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Lain-inrae/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Lain-inrae.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/dev/tutorials/interactive-tools", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/interactive-tools", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy Interactive Tools (GxIT) provide an interface for external web applications to be embedded in Galaxy", + "GxITs require complex architecture, but most of this is handled by Galaxy core", + "Example GxITs are Jupyter notebooks, RStudio or R Shiny apps", + "GxITs are heavily dependant on container technologies like Docker", + "If a tool is containerized, it can be integrated rapidly into Galaxy as a GxIT", + "In theory, any containerized web application can be wrapped as a GxIT" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-12-20", + "objectives": [ + "Discover what Galaxy Interactive Tools (GxIT) are", + "Understand how GxITs are structured", + "Understand how GxITs work", + "Be able to dockerise a basic web application", + "Be able to wrap a dockerised application as a GxIT", + "Be able to test and debug a new GxIT locally and on a Galaxy server", + "Be able to distribute a new GxIT for others to use" + ], + "pageviews": 1011, + "pub_date": "2022-03-02", + "questions": [ + "What is an Interactive Tool on Galaxy (GxIT)?", + "How to set up a GxIT?" + ], + "requirements": [ + { + "topic_name": "dev", + "tutorials": [ + "tool-integration", + "tool-from-scratch" + ], + "type": "internal" + }, + { + "title": "Docker basics", + "type": "none" + } + ], + "short_id": "T00116", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "tooldev", + "supported_servers": [], + "symlink": null, + "time_estimation": "3h", + "title": "Galaxy Interactive Tools", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "interactive-tools", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/interactive-tools/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-tools/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/interactive-tools/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 170, + "visitors": 729 + }, + { + "abbreviations": { + "API": "Application Programming Interface", + "HDA": "History Dataset Association", + "HDCA": "History Dataset Collection Association", + "LDA": "Library Dataset Association", + "LDCA": "Library Dataset Collection Association", + "PR": "Pull Request" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/bioblend-dev/tutorial.json", + "contributors": [ + { + "id": "rikeshi", + "joined": "2021-05", + "name": "Erik Schill", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/rikeshi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/rikeshi.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/dev/tutorials/bioblend-dev", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/bioblend-dev", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "BioBlend is a Python library that provides methods for easy interaction with the Galaxy API.", + "Implementing BioBlend methods is generally quite an easy process, making it well suited to beginners and a viable stepping stone into Galaxy development." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn the basics behind BioBlend and the Galaxy API from a developer perspective.", + "Learn how to implement a simple method in BioBlend.", + "Learn how to run the BioBlend test suite." + ], + "pageviews": 248, + "pub_date": "2021-05-25", + "questions": [ + "How to get started making contributions to BioBlend?" + ], + "requirements": [ + { + "title": "Basic command line knowledge", + "type": "none" + }, + { + "title": "Familiarity with git and access to a GitHub account", + "type": "none" + }, + { + "title": "Familiarity with the Python programming language", + "type": "none" + }, + { + "title": "Familiarity with HTTP methods and JavaScript Object Notation (JSON)", + "type": "none" + } + ], + "short_id": "T00112", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "api", + "supported_servers": [], + "symlink": null, + "time_estimation": "3h", + "title": "Contributing to BioBlend as a developer", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bioblend-dev", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/bioblend-dev/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/bioblend-dev/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/bioblend-dev/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 208, + "visitors": 171 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/writing_tests/tutorial.json", + "contributors": [ + { + "email": "jdavcs@gmail.com", + "id": "jdavcs", + "joined": "2019-06", + "name": "John Davis", + "orcid": "0000-0002-1363-1245", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jdavcs/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jdavcs.json" + }, + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + } + ], + "dir": "topics/dev/tutorials/writing_tests", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/writing_tests", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Read the Writing Tests for Galaxy documentation article", + "Check for existing examples of similar tests before implementing your own", + "Prefer Galaxy's abstractions to writing low level code whenever possible", + "Write tests that do not depend on each other or the state of the database", + "When testing the API, verify the return status code before checking the response data", + "Refactor the code under test if that's needed to make it testable", + "Move redundant setup code into fixtures", + "Use test doubles (mocks, stubs, etc.) sparingly" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Learn about the different types of automated tests in Galaxy", + "Learn to write API tests", + "Learn to write unit tests" + ], + "pageviews": 605, + "pub_date": "2022-07-15", + "requirements": [ + { + "title": "Familiarity with basic Git commands", + "type": "none" + }, + { + "title": "Basic knowledge of Python and JavaScript", + "type": "none" + }, + { + "title": "Mac OS or Linux that can run Galaxy & your favorite IDE or editor", + "type": "none" + }, + { + "topic_name": "dev", + "tutorials": [ + "architecture" + ], + "type": "internal" + } + ], + "short_id": "T00123", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": [], + "symlink": null, + "time_estimation": "3h", + "title": "Writing Automated Tests for Galaxy", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "writing_tests", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/writing_tests/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/writing_tests/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/writing_tests/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 160, + "visitors": 184 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/data-source-integration/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gmauro", + "joined": "2019-03", + "name": "Gianmauro Cuccuru", + "orcid": "0000-0002-5335-545X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gmauro/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gmauro.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/dev/tutorials/data-source-integration", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/data-source-integration", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "It is possible to couple an external data resource with a Galaxy server", + "The external data resource is accessed through his native interface", + "Data flows from the external data resource to the Galaxy server without the need of \"downloading\" the data" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2022-10-18", + "objectives": null, + "pageviews": 280, + "pub_date": "2016-09-30", + "questions": [ + "How can I write a tool that can import data into Galaxy from an external database?", + "What are \"data sources\" and how do they function?", + "Is there any ready-to-use example?" + ], + "short_id": "T00114", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "advanced", + "supported_servers": [], + "symlink": null, + "time_estimation": "10M", + "title": "Data source integration", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "data-source-integration", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/data-source-integration/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/data-source-integration/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/data-source-integration/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 204, + "visitors": 174 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-from-scratch/tutorial.json", + "contributors": [ + { + "email": "a.ostrovsky@mac.com", + "id": "astrovsky01", + "joined": "2019-06", + "name": "Alex Ostrovsky", + "orcid": "0000-0002-7901-7109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/astrovsky01.json" + }, + { + "id": "davebx", + "joined": "2021-06", + "name": "Dave B.", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/davebx/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/davebx.json" + }, + { + "elixir_node": "de", + "id": "bernt-matthias", + "joined": "2017-09", + "name": "Matthias Bernt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bernt-matthias.json" + } + ], + "dir": "topics/dev/tutorials/tool-from-scratch", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/tool-from-scratch", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy tools are made in 3 parts -- Conda, tool wrappers, and planemo", + "Anyone can write and deploy a tool wrapper!" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn how to make and deploy a conda package", + "Understand how to write a Galaxy tool wrapper", + "Be able to use a tool wrapper locally", + "Be able to test the tool wrapper", + "Learn how to add tools to the Galaxy toolshed and make them available to any user" + ], + "pageviews": 3634, + "pub_date": "2021-06-15", + "questions": [ + "How do you create a conda package used as a dependency in a Galaxy tool wrapper?", + "How do you create a Galaxy tool wrapper and all of its requirements?", + "How do you test a Galaxy tool wrapper after it's written?", + "How do you deploy a Galaxy tool wrapper?", + "How to do you make a Galaxy tool wrapper publicly available?" + ], + "recordings": [ + { + "captioners": [ + "gallardoalba", + "astrovsky01" + ], + "date": "2023-05-18", + "galaxy_version": "22.01", + "length": "50M", + "speakers": [ + "gallardoalba", + "astrovsky01" + ], + "youtube_id": "QRoY1pFUY30" + }, + { + "captioners": [ + "gallardoalba" + ], + "date": "2022-03-11", + "galaxy_version": "22.01", + "length": "40M", + "speakers": [ + "gallardoalba" + ], + "youtube_id": "33L4B9ir0aQ" + }, + { + "captioners": [ + "davebx", + "astrovsky01", + "bernt-matthias" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H40M", + "speakers": [ + "davebx", + "astrovsky01", + "bernt-matthias" + ], + "youtube_id": "videoseries?list=PLNFLKDpdM3B9GhA0FryVV2YX3YL35rENK" + } + ], + "short_id": "T00117", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "tooldev", + "supported_servers": [], + "symlink": null, + "time_estimation": "3H", + "title": "Creating Galaxy tools from Conda Through Deployment", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tool-from-scratch", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/tool-from-scratch/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-from-scratch/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-from-scratch/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 3, + "video_view": 0, + "visit_duration": 168, + "visitors": 2166, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/community-tool-table/tutorial.json", + "contributions": { + "authorship": [ + "bebatut" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/dev/tutorials/community-tool-table", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/community-tool-table", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The Galaxy Codex extracts all Galaxy tools to create interactive tables", + "The tool tables can be filtered by ToolShed categories and community-reviewed lists of tools to keep or exclude", + "The community interactive Galaxy tools table can be embed into any website" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-24", + "objectives": [ + "Create a community reviewed table for Galaxy tools within a specific scientific domain", + "Embed an interactive table in a community page" + ], + "pageviews": 59, + "pub_date": "2024-03-13", + "questions": [ + "Is it possible to have an overview of all Galaxy tools for a specific scientific domain?", + "How can I create a new overview for a specific Galaxy community or domain?" + ], + "short_id": "T00426", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "tooldev", + "supported_servers": [], + "symlink": null, + "tags": [ + "Community", + "SIG" + ], + "time_estimation": "1H", + "title": "Creation of an interactive Galaxy tools table for your community", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "community-tool-table", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/community-tool-table/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/community-tool-table/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/community-tool-table/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 505, + "visitors": 50 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/core-contributing/tutorial.json", + "contributors": [ + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "email": "jdavcs@gmail.com", + "id": "jdavcs", + "joined": "2019-06", + "name": "John Davis", + "orcid": "0000-0002-1363-1245", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jdavcs/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jdavcs.json" + } + ], + "dir": "topics/dev/tutorials/core-contributing", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/core-contributing", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy database interactions are mitigated via SQLAlchemy code in lib/galaxy/model.", + "Galaxy API endpoints are implemented in lib/galaxy/webapps/galaxy, but generally defer to application logic in lib/galaxy/managers.", + "Galaxy client code should do its best to separate API interaction logic from display components." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-30", + "objectives": [ + "Learn to develop extensions to the Galaxy data model", + "Learn to implement new API functionality within Galaxy", + "Learn to extend the Galaxy user interface with VueJS components" + ], + "pageviews": 782, + "pub_date": "2021-06-08", + "questions": [ + "How can I add a new feature to Galaxy that involves modifications to the database, the API, and the UI?" + ], + "requirements": [ + { + "topic_name": "contributing", + "tutorials": [ + "github-command-line-contribution" + ], + "type": "internal" + }, + { + "topic_name": "dev", + "tutorials": [ + "architecture" + ], + "type": "internal" + } + ], + "short_id": "T00113", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": [], + "symlink": null, + "time_estimation": "3H", + "title": "Contributing a New Feature to Galaxy Core", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "core-contributing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/core-contributing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/core-contributing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/core-contributing/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 126, + "visitors": 490 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-generators-advanced/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "ross.lazarus@gmail.com", + "id": "fubar2", + "joined": "2021-02", + "name": "Ross Lazarus", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fubar2/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fubar2.json" + } + ], + "dir": "topics/dev/tutorials/tool-generators-advanced", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/tool-generators-advanced", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The ToolFactory Appliance includes an automated form driven tool generator.", + "It produces new tools as Toolshed ready archives", + "It was designed for scientists and developers who routinely write scripts for their analyses.", + "It can quickly turn a working command line script into a working Galaxy tool.", + "It generates tools from information entered on a Galaxy form in the familiar UI.", + "The new tool is installed in the appliance after generation so can be used and explored immediately.", + "New tools can be adjusted as needed by re-running the job that generated the tool and updating the form settings to suit.", + "Adding a test to the toolshed archive takes a minute or so and is only needed when the new tool is ready to export for sharing.", + "Experimenting with the ToolFactory samples will help acquire insight and skills useful for manual tool building." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Further develop your ToolFactory Skills" + ], + "pageviews": 369, + "pub_date": "2021-05-26", + "questions": [ + "What else can I do with the ToolFactory?" + ], + "recordings": [ + { + "captioners": [ + "fubar2" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "7M", + "speakers": [ + "fubar2" + ], + "youtube_id": "DK1eKz5TRs4" + } + ], + "requirements": [ + { + "topic_name": "introduction", + "tutorials": [ + "galaxy-intro-short", + "galaxy-intro-101-everyone" + ], + "type": "internal" + }, + { + "topic_name": "dev", + "tutorials": [ + "tool-integration", + "interactive-environments", + "tool-generators" + ], + "type": "internal" + } + ], + "short_id": "T00119", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "tooldev", + "supported_servers": [], + "symlink": null, + "time_estimation": "1H", + "title": "ToolFactory: Generating Tools From More Complex Scripts", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tool-generators-advanced", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/tool-generators-advanced/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-generators-advanced/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/tool-generators-advanced/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 133, + "visitors": 302 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/debugging/tutorial.json", + "contributors": [ + { + "email": "assuntad23@gmail.com", + "id": "assuntad23", + "joined": "2021-05", + "name": "Assunta DeSanto", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/assuntad23/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/assuntad23.json" + }, + { + "email": "jdavcs@gmail.com", + "id": "jdavcs", + "joined": "2019-06", + "name": "John Davis", + "orcid": "0000-0002-1363-1245", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jdavcs/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jdavcs.json" + }, + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + } + ], + "dir": "topics/dev/tutorials/debugging", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "dev/debugging", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Always run individual failing tests locally to minimize the feedback loop.", + "To fix a bug, start by looking for the precise location in the code where the unexpected result is being produced, starting from the failing test or the error message in the log. Once the location is identified, finding and correcting the error is often trivial.", + "When debugging an API test failure, first determine what endpoint is being utilized; then look in `lib/galaxy/webapps/galaxy/api/` to locate the controller that handles that enpoint. The controller will point you to a manager module, which is where you're most likely to find the bug.", + "To locate the probable cause of a Selenium test failure, run Selenium with `GALAXY_TEST_SELENIUM_HEADLESS=false` to watch the browser step through the test.", + "When debugging a runtime error, use pdb or any other interactive Python debugger to step through the code to identify the location of the error. Remember to use `GALAXY_CONFIG_DEBUG=1` to enable debugging.", + "If you find a bug in a code block that is not covered by a test, before you fix the bug, write a test exposing the bug; run the test to ensure it fails; then fix the bug; then run the test again to ensure it passes.", + "Write useful and property formatted commit messages.", + "Pdb is your friend." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Fix a broken branch", + "Interpret the results of failed tests on GitHub", + "Run individual tests locally", + "Fix errors identified by failing tests", + "Debug simple runtime errors using the Python debugger", + "Write tests exposing the identified bug" + ], + "pageviews": 1068, + "pub_date": "2021-06-15", + "questions": [ + "How do I debug Galaxy?" + ], + "requirements": [ + { + "title": "Familiarity with basic Git commands", + "type": "none" + }, + { + "title": "Basic knowledge of Python and JavaScript", + "type": "none" + }, + { + "title": "Mac OS or Linux that can run Galaxy & your favorite IDE or editor", + "type": "none" + }, + { + "topic_name": "dev", + "tutorials": [ + "architecture" + ], + "type": "internal" + } + ], + "short_id": "T00115", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": [], + "symlink": null, + "time_estimation": "4h", + "title": "Debugging Galaxy", + "tools": [], + "topic_name": "dev", + "topic_name_human": "Development in Galaxy", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "debugging", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/dev/tutorials/debugging/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/debugging/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/dev/tutorials/debugging/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 183, + "visitors": 472 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "gdal_ogr2ogr", + "owner": "ecology", + "revisions": "e12db3b4d3a6", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "spocc_occ", + "owner": "ecology", + "revisions": "f9d76a46799a", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: gdal_ogr2ogr\n owner: ecology\n revisions: e12db3b4d3a6\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: spocc_occ\n owner: ecology\n revisions: f9d76a46799a\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/gbif_cleaning/tutorial.json", + "contributions": { + "authorship": [ + "yvanlebras", + "sbenateau" + ], + "funding": [ + "pndb" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "simon.benateau@mnhn.fr", + "id": "sbenateau", + "joined": "2019-03", + "name": "Simon Benateau", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sbenateau/", + "twitter": "sbenateau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sbenateau.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/gbif_cleaning", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/gbif_cleaning", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Take the time to look at your data first, manipulate it before analyzing it" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Get occurrence data on a species", + "Visualize the data to understand them", + "Clean GBIF dataset for further analyses" + ], + "pageviews": 488, + "pub_date": "2022-10-28", + "questions": [ + "How can I get ecological data from GBIF?", + "How do I check and clean the data from GBIF?", + "Which ecoinformatics techniques are important to know for this type of data?" + ], + "short_id": "T00129", + "short_tools": [ + "gdal_ogr2ogr", + "Count1", + "spocc_occ", + "Filter1", + "Summary_Statistics1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologypreprocess", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "gbif", + "data management", + "data cleaning" + ], + "time_estimation": "0H30M", + "title": "Cleaning GBIF data for the use in Ecology", + "tools": [ + "Count1", + "Filter1", + "Summary_Statistics1", + "toolshed.g2.bx.psu.edu/repos/ecology/gdal_ogr2ogr/gdal_ogr2ogr/3.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/spocc_occ/spocc_occ/0.9.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gbif_cleaning", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/gbif_cleaning/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/gbif_cleaning/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/gbif_cleaning/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 63, + "visitors": 368, + "workflows": [ + { + "creators": [], + "description": "Cleaning GBIF data for the use in Ecology", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Get species occurrences data\"]\n 1[label=\"Filter\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Count\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Summary Statistics\"]\n 1 -> 3 [label=\"out_file1\"]\n 4[label=\"Summary Statistics\"]\n 1 -> 4 [label=\"out_file1\"]\n 5[label=\"Filter\"]\n 1 -> 5 [label=\"out_file1\"]\n 6[label=\"Filter\"]\n 5 -> 6 [label=\"out_file1\"]\n 7[label=\"Count\"]\n 6 -> 7 [label=\"out_file1\"]\n 8[label=\"Filter\"]\n 6 -> 8 [label=\"out_file1\"]\n 9[label=\"OGR2ogr\"]\n 8 -> 9 [label=\"out_file1\"]\n 10[label=\"OGR2ogr\"]\n 8 -> 10 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "4f2a22c794b9a6b3e68d37324d609279b62f6509", + "message": "add tag and annotation to workflow", + "num": 2, + "short_hash": "4f2a22c79", + "unix": "1666951951" + }, + { + "hash": "9e8153b4eaf77b7737112e800105592c6afb9f2e", + "message": "Add workflow", + "num": 1, + "short_hash": "9e8153b4e", + "unix": "1666950718" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"Get species occurrences data\"];\n 1[\"Filter\"];\n 0 -->|output| 1;\n 2[\"Count\"];\n 0 -->|output| 2;\n 3[\"Summary Statistics\"];\n 1 -->|out_file1| 3;\n 4[\"Summary Statistics\"];\n 1 -->|out_file1| 4;\n 5[\"Filter\"];\n 1 -->|out_file1| 5;\n 6[\"Filter\"];\n 5 -->|out_file1| 6;\n 7[\"Count\"];\n 6 -->|out_file1| 7;\n 8[\"Filter\"];\n 6 -->|out_file1| 8;\n 9[\"OGR2ogr\"];\n 8 -->|out_file1| 9;\n 10[\"OGR2ogr\"];\n 8 -->|out_file1| 10;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "GBIF data Quality check and filtering workflow Feb-2020", + "outputs": [], + "parent_id": "ecology/gbif_cleaning", + "path": "topics/ecology/tutorials/gbif_cleaning/workflows/Galaxy-Workflow-GBIF_data_Quality_check_and_filtering_workflow.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "GBIF data Quality check and filtering workflow Feb-2020", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-gbif_cleaning/versions/galaxy-workflow-gbif-data-quality-check-and-filtering-workflow", + "tutorial_id": "gbif_cleaning", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/gbif_cleaning/workflows/Galaxy-Workflow-GBIF_data_Quality_check_and_filtering_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/gbif_cleaning/workflows/Galaxy-Workflow-GBIF_data_Quality_check_and_filtering_workflow.html", + "version": 1, + "wfid": "ecology-gbif_cleaning", + "wfname": "galaxy-workflow-gbif-data-quality-check-and-filtering-workflow", + "workflow": "Galaxy-Workflow-GBIF_data_Quality_check_and_filtering_workflow.ga", + "workflow_tools": [ + "Count1", + "Filter1", + "Summary_Statistics1", + "toolshed.g2.bx.psu.edu/repos/ecology/gdal_ogr2ogr/gdal_ogr2ogr/3.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/spocc_occ/spocc_occ/0.9.0" + ], + "workflowhub_id": "1268" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "12615d397df7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obis_data", + "owner": "ecology", + "revisions": "1fcd81d65467", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obisindicators", + "owner": "ecology", + "revisions": "1015a0070bac", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obisindicators", + "owner": "ecology", + "revisions": "393957ecc97d", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 12615d397df7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obis_data\n owner: ecology\n revisions: 1fcd81d65467\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obisindicators\n owner: ecology\n revisions: 1015a0070bac\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obisindicators\n owner: ecology\n revisions: 393957ecc97d\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/obisindicators/tutorial.json", + "contributions": { + "authorship": [ + "Marie59", + "yvanlebras" + ], + "funding": [ + "gallantries", + "fairease", + "eurosciencegateway", + "pndb" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/fair_ease_colour.png", + "funder": true, + "funding_id": "101058785", + "funding_statement": "FAIR-EASE is a RIA project funded under HORIZON-INFRA-2021-EOSC-01-04, and it involves a consortium of 25 partners from all over Europe.", + "funding_system": "cordis", + "github": false, + "id": "fairease", + "joined": "2023-10", + "members": [ + "Marie59", + "yvanlebras" + ], + "name": "Fair-Ease", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fairease/", + "url": "https://training.galaxyproject.org/training-material/api/funders/fairease.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/obisindicators", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/obisindicators", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 8847, + "mermaid": false + }, + "key_points": [ + "Marine data", + "Diversity indicators" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Calculating and vizualizing marine biodiversity indicators" + ], + "pageviews": 202, + "pub_date": "2023-04-11", + "questions": [ + "How to retrieve Obis data with Galaxy ?", + "How can you analyse and visualise them ?" + ], + "short_id": "T00332", + "short_tools": [ + "obis_data", + "tp_cut_tool", + "obisindicators" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "earth-system", + "ocean", + "marine omics", + "biodiversity" + ], + "time_estimation": "1H", + "title": "Obis marine indicators", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/obis_data/obis_data/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/obisindicators/obisindicators/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/obisindicators/obisindicators/0.0.2" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "obisindicators", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/obisindicators/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/obisindicators/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/obisindicators/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 136, + "visitors": 164, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0008-0622-604X", + "name": "Marie Joss\u00e9", + "url": "https://github.com/Marie59" + } + ], + "description": "From Obis data to Biodiversity indicators", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"OBIS occurences\"]\n 1[label=\"Advanced Cut\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Ocean biodiversity indicators\"]\n 1 -> 2 [label=\"output\"]\n}", + "history": [ + { + "hash": "00a713cdfff3d5ee4c936e563aac9e9b17fe087e", + "message": "updated workflow", + "num": 3, + "short_hash": "00a713cdf", + "unix": "1710839703" + }, + { + "hash": "ce566378abf7d51f9aee0f33727e8573c71b698f", + "message": "Add files via upload", + "num": 2, + "short_hash": "ce566378a", + "unix": "1680848192" + }, + { + "hash": "5cf36e64c0a8b287d9e108919e23581c6fa4aa5b", + "message": "Add files via upload", + "num": 1, + "short_hash": "5cf36e64c", + "unix": "1680787259" + } + ], + "inputs": [], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"OBIS occurences\"];\n 1[\"Advanced Cut\"];\n 0 -->|output| 1;\n 2[\"Ocean biodiversity indicators\"];\n 1 -->|output| 2;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Marine Omics visualisation", + "outputs": [], + "parent_id": "ecology/obisindicators", + "path": "topics/ecology/tutorials/obisindicators/workflows/Obis-indicators.ga", + "tags": [ + "Ocean", + "Marineomics", + "earth-system" + ], + "test_results": { + "eu": { + "summary": { + "num_errors": 0, + "num_failures": 0, + "num_skips": 0, + "num_tests": 1 + }, + "tests": [ + { + "data": { + "end_datetime": "2023-05-23T13:01:11.109149", + "inputs": { + "Occurrence.csv": { + "class": "File", + "filetype": "csv", + "path": "test-data/Occurrence.csv.csv" + } + }, + "invocation_details": { + "details": { + "error_message": "", + "history_id": "18649784ceeae594", + "history_state": "ok", + "invocation_id": "5416bcf2f590c4c2", + "invocation_state": "scheduled", + "workflow_id": "fbbe3ba09fea56a3" + }, + "steps": { + "0. Occurrence.csv": { + "action": null, + "id": "081be084fdd665d8", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 0, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d867651377ade0c55e4376", + "src": "hda", + "uuid": "0ba0ffa3-b7b6-4f70-a9f5-b635cd06615d" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-23T10:58:01.456172", + "workflow_step_id": "6919056b5db62ca4", + "workflow_step_label": "Occurrence.csv", + "workflow_step_uuid": "cf8be611-fbf7-428b-b1f6-113c1c2e1eae" + }, + "1. Unnamed step": { + "action": null, + "id": "9029b42bf346eab8", + "job_id": "11ac94870d0bb33aaf0d076bb75012e2", + "jobs": [ + { + "command_line": "python '/opt/galaxy/server/lib/galaxy/datatypes/converters/tabular_csv.py' -o '/data/jwd01/main/060/156/60156723/outputs/galaxy_dataset_e3394d0e-14f6-44d6-9752-82710416346b.dat' -i '/data/dnb08/galaxy_db/files/0/b/a/dataset_0ba0ffa3-b7b6-4f70-a9f5-b635cd06615d.dat'", + "command_version": null, + "create_time": "2023-05-23T10:58:01.450496", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__python@3.7", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "python", + "version": "3.7" + } + ], + "exit_code": 0, + "external_id": "43631290", + "galaxy_version": "23.0", + "history_id": "18649784ceeae594", + "id": "11ac94870d0bb33aaf0d076bb75012e2", + "inputs": { + "csv": { + "id": "4838ba20a6d867651377ade0c55e4376", + "src": "hda", + "uuid": "0ba0ffa3-b7b6-4f70-a9f5-b635cd06615d" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m100-6296.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m100-6296.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684839498.0000000", + "title": "Job Start Time", + "value": "2023-05-23 12:58:18" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684839529.0000000", + "title": "Job End Time", + "value": "2023-05-23 12:58:49" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "31.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "31 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "14969322405.0000000", + "title": "CPU Time", + "value": "14.969322405 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "210845696.0000000", + "title": "Max memory usage (MEM)", + "value": "201.1 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4219351040.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "3.9 GB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "210845696.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "201.1 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "tabular": { + "id": "4838ba20a6d867659478aa0f23a27d78", + "src": "hda", + "uuid": "e3394d0e-14f6-44d6-9752-82710416346b" + } + }, + "params": { + "__input_ext": "\"input\"", + "__target_datatype__": "\"tabular\"", + "__workflow_invocation_uuid__": "\"a98238aaf95811ed822c001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "csv_to_tabular", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-23T10:58:53.605766", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 1, + "output_collections": {}, + "outputs": { + "tabular": { + "id": "4838ba20a6d867659478aa0f23a27d78", + "src": "hda", + "uuid": "e3394d0e-14f6-44d6-9752-82710416346b" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-23T10:58:53.286673", + "workflow_step_id": "901c22ecf4799bd6", + "workflow_step_label": null, + "workflow_step_uuid": "68d37ef8-8a10-46ba-8bce-4cda1bdab0e1" + }, + "2. Unnamed step": { + "action": null, + "id": "347cfc8750f2fe94", + "job_id": "11ac94870d0bb33a413dde79a1714548", + "jobs": [ + { + "command_line": "cut -f '1,3,4,9,95' '/data/dnb08/galaxy_db/files/e/3/3/dataset_e3394d0e-14f6-44d6-9752-82710416346b.dat' > '/data/jwd02f/main/060/156/60156724/outputs/galaxy_dataset_c3b48c80-ad5e-4f84-b68d-db94fd9f4ec7.dat'", + "command_version": "cut (GNU coreutils) 8.25", + "create_time": "2023-05-23T10:58:01.530299", + "dependencies": [], + "exit_code": 0, + "external_id": "43631331", + "galaxy_version": "23.0", + "history_id": "18649784ceeae594", + "id": "11ac94870d0bb33a413dde79a1714548", + "inputs": { + "input": { + "id": "4838ba20a6d867659478aa0f23a27d78", + "src": "hda", + "uuid": "e3394d0e-14f6-44d6-9752-82710416346b" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m975-5969.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m975-5969.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684839542.0000000", + "title": "Job Start Time", + "value": "2023-05-23 12:59:02" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684839558.0000000", + "title": "Job End Time", + "value": "2023-05-23 12:59:18" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "16.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "16 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "10210526103.0000000", + "title": "CPU Time", + "value": "10.210526103 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "8.0 EB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "195211264.0000000", + "title": "Max memory usage (MEM)", + "value": "186.2 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "195211264.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "186.2 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory softlimit on cgroup", + "value": "3.9 GB" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d8676581b548fa09109a8c", + "src": "hda", + "uuid": "c3b48c80-ad5e-4f84-b68d-db94fd9f4ec7" + } + }, + "params": { + "__input_ext": "\"tabular\"", + "__workflow_invocation_uuid__": "\"a98238aaf95811ed822c001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "complement": "\"\"", + "cut_type_options": "{\"__current_case__\": 0, \"cut_element\": \"-f\", \"list\": [\"1\", \"3\", \"4\", \"9\", \"95\"]}", + "dbkey": "\"?\"", + "delimiter": "\"\"" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-23T10:59:20.902960", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 2, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d8676581b548fa09109a8c", + "src": "hda", + "uuid": "c3b48c80-ad5e-4f84-b68d-db94fd9f4ec7" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-23T10:59:20.871746", + "workflow_step_id": "8221333250114ef6", + "workflow_step_label": null, + "workflow_step_uuid": "f268a9c2-c603-4746-8f7c-9e06742934b5" + }, + "3. Unnamed step": { + "action": null, + "id": "3d1f5a3044f2e3db", + "job_id": "11ac94870d0bb33a13d697639a952600", + "jobs": [ + { + "command_line": "Rscript '/opt/galaxy/shed_tools/toolshed.g2.bx.psu.edu/repos/ecology/obisindicators/d7b6ff32d072/obisindicators/obisindicators.r' '/data/dnb08/galaxy_db/files/c/3/b/dataset_c3b48c80-ad5e-4f84-b68d-db94fd9f4ec7.dat' 'true' 't' '2' '3' '4' '5' '0' '10' '/opt/galaxy/shed_tools/toolshed.g2.bx.psu.edu/repos/ecology/obisindicators/d7b6ff32d072/obisindicators/analyze.r' '/opt/galaxy/shed_tools/toolshed.g2.bx.psu.edu/repos/ecology/obisindicators/d7b6ff32d072/obisindicators/visualize.r' '/opt/galaxy/shed_tools/toolshed.g2.bx.psu.edu/repos/ecology/obisindicators/d7b6ff32d072/obisindicators/data.r' '/data/jwd05e/main/060/156/60156725/outputs/galaxy_dataset_91bb988c-8725-4295-828d-1ac13db8a60f.dat' ''", + "command_version": null, + "create_time": "2023-05-23T10:58:01.621838", + "dependencies": [], + "exit_code": 0, + "external_id": "43631352", + "galaxy_version": "23.0", + "history_id": "18649784ceeae594", + "id": "11ac94870d0bb33a13d697639a952600", + "inputs": { + "input": { + "id": "4838ba20a6d8676581b548fa09109a8c", + "src": "hda", + "uuid": "c3b48c80-ad5e-4f84-b68d-db94fd9f4ec7" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m975-0315.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m975-0315.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684839564.0000000", + "title": "Job Start Time", + "value": "2023-05-23 12:59:24" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684839655.0000000", + "title": "Job End Time", + "value": "2023-05-23 13:00:55" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "91.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "1 minute" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "28077674459.0000000", + "title": "CPU Time", + "value": "28.077674459 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "8.0 EB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "338599936.0000000", + "title": "Max memory usage (MEM)", + "value": "322.9 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "338599936.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "322.9 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory softlimit on cgroup", + "value": "3.9 GB" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": { + "plots": { + "id": "13968361629db34c", + "src": "hdca" + } + }, + "outputs": { + "__new_primary_file_plots|ES_50__": { + "id": "4838ba20a6d86765eaf3f31461579100", + "src": "hda", + "uuid": "81032c7a-1351-4267-8189-cbc5d2455632" + }, + "__new_primary_file_plots|Maxp__": { + "id": "4838ba20a6d8676574439f4e43ad19ae", + "src": "hda", + "uuid": "c45d82ae-a267-42a9-b1da-0c2aa492f4fc" + }, + "__new_primary_file_plots|Records__": { + "id": "4838ba20a6d867659af91628bbf2fd3d", + "src": "hda", + "uuid": "42320b99-2b25-4b11-b245-2b9e75869619" + }, + "__new_primary_file_plots|Shannon_index__": { + "id": "4838ba20a6d86765d225dba0fa1f54ea", + "src": "hda", + "uuid": "e5e7a500-230d-453b-8f90-1f2fe2aeb17d" + }, + "__new_primary_file_plots|Simpson_index__": { + "id": "4838ba20a6d867653fb9e294c0047986", + "src": "hda", + "uuid": "fdb2f88a-6c14-4382-b955-45f242a7367c" + }, + "output_index": { + "id": "4838ba20a6d86765db55ac8f682db95c", + "src": "hda", + "uuid": "91bb988c-8725-4295-828d-1ac13db8a60f" + } + }, + "params": { + "__input_ext": "\"input\"", + "__workflow_invocation_uuid__": "\"a98238aaf95811ed822c001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "colnames": "true", + "dbkey": "\"?\"", + "latitude": "\"3\"", + "longitude": "\"2\"", + "records": "\"5\"", + "resolution": "\"10\"", + "separator": "\"t\"", + "species": "\"4\"", + "type": "\"0\"" + }, + "state": "ok", + "stderr": "Warning message:\n`aes_string()` was deprecated in ggplot2 3.0.0.\n\u2139 Please use tidy evaluation ideoms with `aes()` \n", + "stdout": "[1] \"ES_50.png\"\n[1] \"Shannon_index.png\"\n[1] \"Simpson_index.png\"\n[1] \"Maxp.png\"\n[1] \"Records.png\"\n", + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/obisindicators/obisindicators/0.0.2", + "tool_stderr": "Warning message:\n`aes_string()` was deprecated in ggplot2 3.0.0.\n\u2139 Please use tidy evaluation ideoms with `aes()` \n", + "tool_stdout": "[1] \"ES_50.png\"\n[1] \"Shannon_index.png\"\n[1] \"Simpson_index.png\"\n[1] \"Maxp.png\"\n[1] \"Records.png\"\n", + "traceback": null, + "update_time": "2023-05-23T11:00:57.908654", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 3, + "output_collections": { + "plots": { + "id": "13968361629db34c", + "src": "hdca" + } + }, + "outputs": { + "output_index": { + "id": "4838ba20a6d86765db55ac8f682db95c", + "src": "hda", + "uuid": "91bb988c-8725-4295-828d-1ac13db8a60f" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-23T11:00:57.878144", + "workflow_step_id": "f05cffad898145a3", + "workflow_step_label": null, + "workflow_step_uuid": "86cf1452-ed27-4ba0-b8cb-e1aa5c5584a5" + } + } + }, + "problem_log": "No log for this engine type.", + "start_datetime": "2023-05-23T12:56:33.104415", + "status": "success" + }, + "doc": "Test outline for Obis-indicators", + "has_data": true, + "id": "Obis-indicators.ga_0", + "test_type": "galaxy_workflow" + } + ], + "version": "0.1" + } + }, + "tests": true, + "title": "Marine Omics visualisation", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-obisindicators/versions/obis-indicators", + "tutorial_id": "obisindicators", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/obisindicators/workflows/Obis-indicators.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/obisindicators/workflows/Obis-indicators.html", + "version": 2, + "wfid": "ecology-obisindicators", + "wfname": "obis-indicators", + "workflow": "Obis-indicators.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/obis_data/obis_data/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/obisindicators/obisindicators/0.0.2" + ], + "workflowhub_id": "1252" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastq_groomer", + "owner": "devteam", + "revisions": "47e5dbc3e790", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "5edc472ec434", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unzip", + "owner": "imgteam", + "revisions": "38eec75fbe9b", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obi_annotate", + "owner": "iuc", + "revisions": "d50dc96e3ce9", + "tool_panel_section_label": "DNA Metabarcoding", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obi_clean", + "owner": "iuc", + "revisions": "08d873cdd5f6", + "tool_panel_section_label": "DNA Metabarcoding", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obi_grep", + "owner": "iuc", + "revisions": "02bab5ff7c37", + "tool_panel_section_label": "DNA Metabarcoding", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obi_illumina_pairend", + "owner": "iuc", + "revisions": "8cb6bd511879", + "tool_panel_section_label": "DNA Metabarcoding", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obi_ngsfilter", + "owner": "iuc", + "revisions": "91a1ed0b486f", + "tool_panel_section_label": "DNA Metabarcoding", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obi_stat", + "owner": "iuc", + "revisions": "5f4544915893", + "tool_panel_section_label": "DNA Metabarcoding", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obi_tab", + "owner": "iuc", + "revisions": "4cf47c504672", + "tool_panel_section_label": "DNA Metabarcoding", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "obi_uniq", + "owner": "iuc", + "revisions": "d4bea99366f9", + "tool_panel_section_label": "DNA Metabarcoding", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seq_filter_by_id", + "owner": "peterjc", + "revisions": "141612f8c3e3", + "tool_panel_section_label": "Filter and Sort", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastq_groomer\n owner: devteam\n revisions: 47e5dbc3e790\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 5edc472ec434\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unzip\n owner: imgteam\n revisions: 38eec75fbe9b\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obi_annotate\n owner: iuc\n revisions: d50dc96e3ce9\n tool_panel_section_label: DNA Metabarcoding\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obi_clean\n owner: iuc\n revisions: '08d873cdd5f6'\n tool_panel_section_label: DNA Metabarcoding\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obi_grep\n owner: iuc\n revisions: 02bab5ff7c37\n tool_panel_section_label: DNA Metabarcoding\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obi_illumina_pairend\n owner: iuc\n revisions: 8cb6bd511879\n tool_panel_section_label: DNA Metabarcoding\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obi_ngsfilter\n owner: iuc\n revisions: 91a1ed0b486f\n tool_panel_section_label: DNA Metabarcoding\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obi_stat\n owner: iuc\n revisions: 5f4544915893\n tool_panel_section_label: DNA Metabarcoding\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obi_tab\n owner: iuc\n revisions: 4cf47c504672\n tool_panel_section_label: DNA Metabarcoding\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: obi_uniq\n owner: iuc\n revisions: d4bea99366f9\n tool_panel_section_label: DNA Metabarcoding\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seq_filter_by_id\n owner: peterjc\n revisions: 141612f8c3e3\n tool_panel_section_label: Filter and Sort\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/Obitools-metabarcoding/tutorial.json", + "contributions": { + "authorship": [ + "colineroyaux", + "onorvez", + "ecoissac", + "fboyer", + "yvanlebras" + ], + "funding": [ + "gallantries", + "pndb" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "coline.royaux@mnhn.fr", + "id": "colineroyaux", + "joined": "2020-11", + "name": "Coline Royaux", + "orcid": "0000-0003-4308-5617", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/colineroyaux/", + "twitter": "ColineRoyaux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/colineroyaux.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "olivier.norvez@mnhn.fr", + "id": "onorvez", + "joined": "2022-02", + "name": "Olivier Norvez", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/onorvez/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/onorvez.json" + }, + { + "github": false, + "id": "ecoissac", + "joined": "2022-02", + "name": "Eric Coissac", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ecoissac/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ecoissac.json" + }, + { + "github": false, + "id": "fboyer", + "joined": "2022-02", + "name": "Fr\u00e9d\u00e9ric Boyer", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fboyer/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fboyer.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/Obitools-metabarcoding", + "edam_operation": [ + "Sequencing quality control", + "Sequence analysis", + "Sequence composition calculation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/Obitools-metabarcoding", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "From raw reads you can process, clean and filter data to obtain a list of species from environmental DNA (eDNA) samples." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Deal with paired-end data to create consensus sequences", + "Clean, filter and anlayse data to obtain strong results" + ], + "pageviews": 4050, + "pub_date": "2022-02-28", + "questions": [ + "how to analyze DNA metabarcoding / eDNA data produced on Illumina sequencers using the OBITools?" + ], + "recordings": [ + { + "captioners": [ + "yvanlebras" + ], + "date": "2022-03-03", + "galaxy_version": "21.09", + "length": "1H15M", + "speakers": [ + "yvanlebras" + ], + "youtube_id": "o2cUvb_lmLs" + } + ], + "short_id": "T00124", + "short_tools": [ + "obi_tab", + "obi_illumina_pairend", + "obi_clean", + "obi_ngsfilter", + "wc_gnu", + "obi_stat", + "Cut1", + "fastqc", + "ncbi_blastn_wrapper", + "unzip", + "Filter1", + "obi_grep", + "obi_uniq", + "seq_filter_by_id", + "fastq_groomer", + "join1", + "obi_annotate" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "Genetic composition EBV class", + "Community composition EBV class", + "EBV dataset", + "EBV workflow", + "eDNA", + "Metabarcoding" + ], + "time_estimation": "1H", + "title": "Metabarcoding/eDNA through Obitools", + "tools": [ + "Cut1", + "Filter1", + "join1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_annotate/obi_annotate/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_clean/obi_clean/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_grep/obi_grep/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_illumina_pairend/obi_illumina_pairend/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_ngsfilter/obi_ngsfilter/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_stat/obi_stat/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_tab/obi_tab/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_uniq/obi_uniq/1.2.13", + "toolshed.g2.bx.psu.edu/repos/peterjc/seq_filter_by_id/seq_filter_by_id/0.2.7", + "wc_gnu" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "Obitools-metabarcoding", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/Obitools-metabarcoding/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/Obitools-metabarcoding/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/Obitools-metabarcoding/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 120, + "visitors": 2814, + "workflows": [ + { + "creators": [], + "description": "Metabarcoding/eDNA through Obitools", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwolf_tutorial.zip?download=1\"]\n 1[label=\"Illuminapairedend\"]\n 2[label=\"Unzip\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"FastQC\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"FASTQ Groomer\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"obigrep\"]\n 4 -> 5 [label=\"output_file\"]\n 6[label=\"Line/Word/Character count\"]\n 4 -> 6 [label=\"output_file\"]\n 7[label=\"Line/Word/Character count\"]\n 5 -> 7 [label=\"output\"]\n 8[label=\"NGSfilter\"]\n 5 -> 8 [label=\"output\"]\n 9[label=\"obiuniq\"]\n 8 -> 9 [label=\"output\"]\n 10[label=\"obiannotate\"]\n 9 -> 10 [label=\"output\"]\n 11[label=\"obistat\"]\n 10 -> 11 [label=\"output\"]\n 12[label=\"obigrep\"]\n 10 -> 12 [label=\"output\"]\n 13[label=\"obigrep\"]\n 12 -> 13 [label=\"output\"]\n 14[label=\"obiclean\"]\n 13 -> 14 [label=\"output\"]\n 15[label=\"NCBI BLAST+ blastn\"]\n 14 -> 15 [label=\"output\"]\n 16[label=\"Filter sequences by ID\"]\n 15 -> 16 [label=\"output1\"]\n 17[label=\"Filter sequences by ID\"]\n 15 -> 17 [label=\"output1\"]\n 14 -> 17 [label=\"output\"]\n 18[label=\"obitab\"]\n 16 -> 18 [label=\"output_pos\"]\n 19[label=\"obitab\"]\n 17 -> 19 [label=\"output_pos\"]\n 20[label=\"Join two Datasets\"]\n 19 -> 20 [label=\"output\"]\n 15 -> 20 [label=\"output1\"]\n 21[label=\"Join two Datasets\"]\n 20 -> 21 [label=\"out_file1\"]\n 18 -> 21 [label=\"output\"]\n 22[label=\"Cut\"]\n 21 -> 22 [label=\"out_file1\"]\n 23[label=\"Filter\"]\n 22 -> 23 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "20d3c8ceff4b1be65ec450a24c19e4541dc1817d", + "message": "fix workflow linting", + "num": 3, + "short_hash": "20d3c8cef", + "unix": "1645781525" + }, + { + "hash": "931fb1735a5b24da90bcaa5a63a23ac4b5abf790", + "message": "update workflow", + "num": 2, + "short_hash": "931fb1735", + "unix": "1645228612" + }, + { + "hash": "45ca3bc6d72f0eb5c43d19929da4730ec9c838db", + "message": "Add files via upload", + "num": 1, + "short_hash": "45ca3bc6d", + "unix": "1643659846" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wolf_tutorial.zip?download=1" + } + ], + "label": "wolf_tutorial.zip?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "427d6f7d-b819-45fc-8d2a-c6d3b52c6aca", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nwolf_tutorial.zip?download=1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Illuminapairedend\"];\n 2[\"Unzip\"];\n 0 -->|output| 2;\n 3[\"FastQC\"];\n 1 -->|output| 3;\n 4[\"FASTQ Groomer\"];\n 1 -->|output| 4;\n 5[\"obigrep\"];\n 4 -->|output_file| 5;\n 6[\"Line/Word/Character count\"];\n 4 -->|output_file| 6;\n 7[\"Line/Word/Character count\"];\n 5 -->|output| 7;\n 8[\"NGSfilter\"];\n 5 -->|output| 8;\n 9[\"obiuniq\"];\n 8 -->|output| 9;\n 10[\"obiannotate\"];\n 9 -->|output| 10;\n 11[\"obistat\"];\n 10 -->|output| 11;\n 12[\"obigrep\"];\n 10 -->|output| 12;\n 13[\"obigrep\"];\n 12 -->|output| 13;\n 14[\"obiclean\"];\n 13 -->|output| 14;\n 15[\"NCBI BLAST+ blastn\"];\n 14 -->|output| 15;\n 16[\"Filter sequences by ID\"];\n 15 -->|output1| 16;\n 17[\"Filter sequences by ID\"];\n 15 -->|output1| 17;\n 14 -->|output| 17;\n 18[\"obitab\"];\n 16 -->|output_pos| 18;\n 19[\"obitab\"];\n 17 -->|output_pos| 19;\n 20[\"Join two Datasets\"];\n 19 -->|output| 20;\n 15 -->|output1| 20;\n 21[\"Join two Datasets\"];\n 20 -->|out_file1| 21;\n 18 -->|output| 21;\n 22[\"Cut\"];\n 21 -->|out_file1| 22;\n 23[\"Filter\"];\n 22 -->|out_file1| 23;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Workflow constructed from history 'Tuto Obitools'", + "outputs": [], + "parent_id": "ecology/Obitools-metabarcoding", + "path": "topics/ecology/tutorials/Obitools-metabarcoding/workflows/main_workflow.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Workflow constructed from history 'Tuto Obitools'", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-Obitools-metabarcoding/versions/main-workflow", + "tutorial_id": "Obitools-metabarcoding", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/Obitools-metabarcoding/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/Obitools-metabarcoding/workflows/main_workflow.html", + "version": 1, + "wfid": "ecology-Obitools-metabarcoding", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "join1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_annotate/obi_annotate/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_clean/obi_clean/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_grep/obi_grep/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_illumina_pairend/obi_illumina_pairend/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_ngsfilter/obi_ngsfilter/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_stat/obi_stat/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_tab/obi_tab/1.2.13", + "toolshed.g2.bx.psu.edu/repos/iuc/obi_uniq/obi_uniq/1.2.13", + "toolshed.g2.bx.psu.edu/repos/peterjc/seq_filter_by_id/seq_filter_by_id/0.2.7", + "wc_gnu" + ], + "workflowhub_id": "1274" + } + ], + "zenodo_link": "https://zenodo.org/record/5932108" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "glimmer_gbk_to_orf", + "owner": "bgruening", + "revisions": "04861c9bbf45", + "tool_panel_section_label": "Ecology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "repeat_masker", + "owner": "bgruening", + "revisions": "39b40a9a6296", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clustalw", + "owner": "devteam", + "revisions": "d6694932c5e0", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "ae8c4b2488e7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "602fb8e63aa7", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_predict", + "owner": "iuc", + "revisions": "2bba2ff070d9", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteinortho", + "owner": "iuc", + "revisions": "4850f0d15f01", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clipkit", + "owner": "padge", + "revisions": "770695339600", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "phykit", + "owner": "padge", + "revisions": "1ac6ee298657", + "tool_panel_section_label": "Ecology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: glimmer_gbk_to_orf\n owner: bgruening\n revisions: '04861c9bbf45'\n tool_panel_section_label: Ecology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: repeat_masker\n owner: bgruening\n revisions: 39b40a9a6296\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clustalw\n owner: devteam\n revisions: d6694932c5e0\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: ae8c4b2488e7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 602fb8e63aa7\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_predict\n owner: iuc\n revisions: 2bba2ff070d9\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteinortho\n owner: iuc\n revisions: 4850f0d15f01\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clipkit\n owner: padge\n revisions: '770695339600'\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: phykit\n owner: padge\n revisions: 1ac6ee298657\n tool_panel_section_label: Ecology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/phylogeny-data-prep/tutorial.json", + "contributors": [ + { + "email": "miguel.roncoroni@elixir-belgium.org", + "id": "roncoronimiguel", + "joined": "2021-08", + "name": "Miguel Roncoroni", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/roncoronimiguel/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/roncoronimiguel.json" + }, + { + "id": "brigidagallone", + "joined": "2022-05", + "name": "Brigida Gallone", + "orcid": "0000-0003-3045-5949", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/brigidagallone/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/brigidagallone.json" + } + ], + "dir": "topics/ecology/tutorials/phylogeny-data-prep", + "edam_operation": [ + "Genetic variation analysis", + "Sequence analysis", + "Genome annotation", + "Sequence assembly validation", + "Multiple sequence alignment", + "Transcriptome assembly", + "Genome assembly", + "Sequence clustering", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/phylogeny-data-prep", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "You now are able to", + "Predict proteins in a nucleotide sequence *de-novo* using **funannotate_predict**", + "Find orthologs across different samples with **orthofinder**", + "Align orthologs with **ClustalW** in preparation for phylogeny reconstruction " + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Mask repetitive elements from a genome", + "Annotate (predict protein-coding genes) the genomes of the samples to compare", + "Find a set of common proteins across the samples (orthologs)", + "Align orthologs across samples" + ], + "pageviews": 2012, + "pub_date": "2022-10-21", + "questions": [ + "How do I find a set of common proteins (orthologs) across related species or strains?", + "How do I organize a set of orthologs to infer evolutionary relations between species or strains (phylogenetic reconstruction)?" + ], + "requirements": [ + { + "topic_name": "assembly", + "tutorials": [ + "general-introduction" + ], + "type": "internal" + } + ], + "short_id": "T00132", + "short_tools": [ + "repeatmasker_wrapper", + "regex1", + "busco", + "clipkit", + "phykit_alignment_based", + "funannotate_predict", + "proteinortho_grab_proteins", + "glimmer_gbk_to_orf", + "Filter1", + "tp_replace_in_line", + "clustalw", + "collapse_dataset", + "proteinortho" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "phylogeny", + "data handling", + "functional annotation" + ], + "time_estimation": "3H", + "title": "Preparing genomic data for phylogeny reconstruction", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/glimmer_gbk_to_orf/glimmer_gbk_to_orf/3.02", + "toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.2-p1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.9+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/proteinortho/proteinortho/6.0.14+galaxy2.9.1", + "toolshed.g2.bx.psu.edu/repos/iuc/proteinortho_grab_proteins/proteinortho_grab_proteins/6.0.14+galaxy2.9.1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "toolshed.g2.bx.psu.edu/repos/padge/clipkit/clipkit/0.1.0", + "toolshed.g2.bx.psu.edu/repos/padge/phykit/phykit_alignment_based/0.1.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "phylogeny-data-prep", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/phylogeny-data-prep/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/phylogeny-data-prep/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/phylogeny-data-prep/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 167, + "visitors": 1478, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "", + "name": "Miguel Roncoroni" + } + ], + "description": "This workflow begins from a set of genome assemblies of different samples, strains, species. The genome is first annotated with Funnanotate. Predicted proteins are furtner annotated with Busco. Next, 'ProteinOrtho' finds orthologs across the samples and makes orthogroups. Orthogroups where all samples are represented are extracted. Orthologs in each orthogroup are aligned with ClustalW. The alignments are cleaned with ClipKIT and the concatenation matrix is built using PhyKit. This can be used for phylogeny reconstruction.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput genomes as collection\"]\n 1[label=\"Replace Text\"]\n 0 -> 1 [label=\"output\"]\n k6a2d3fcdb5574440910db4c537feef20[color=lightseagreen,label=\"Output\\nheaders_shortened\"]\n 1 -> k6a2d3fcdb5574440910db4c537feef20\n 2[label=\"RepeatMasker\"]\n 1 -> 2 [label=\"outfile\"]\n k1db6607a343a4a619a3b43101eb8223b[color=lightseagreen,label=\"Output\\nrepeat_masked\"]\n 2 -> k1db6607a343a4a619a3b43101eb8223b\n 3[label=\"Funannotate predict annotation\"]\n 2 -> 3 [label=\"output_masked_genome\"]\n k642c1c0982f44ef4bd53d14a583044e2[color=lightseagreen,label=\"Output\\nfunannotate_predicted_proteins\"]\n 3 -> k642c1c0982f44ef4bd53d14a583044e2\n 4[label=\"Extract ORF\"]\n 3 -> 4 [label=\"annot_gbk\"]\n k07fb8c04990e4bc7b6079c4161b4786d[color=lightseagreen,label=\"Output\\nextracted_ORFs\"]\n 4 -> k07fb8c04990e4bc7b6079c4161b4786d\n 5[label=\"Regex Find And Replace\"]\n 4 -> 5 [label=\"aa_output\"]\n k8dc378a8d48542df83226cf8230257a0[color=lightseagreen,label=\"Output\\nsample_names_to_headers\"]\n 5 -> k8dc378a8d48542df83226cf8230257a0\n 6[label=\"Collapse Collection\"]\n 5 -> 6 [label=\"out_file1\"]\n ke9a554594a2c42388494e99ec67307ea[color=lightseagreen,label=\"Output\\nproteomes_to_one_file\"]\n 6 -> ke9a554594a2c42388494e99ec67307ea\n 7[label=\"Proteinortho\"]\n 5 -> 7 [label=\"out_file1\"]\n kee688b7a2a9e4480a27adb8cf795b635[color=lightseagreen,label=\"Output\\nProteinortho on input dataset(s): orthology-groups\"]\n 7 -> kee688b7a2a9e4480a27adb8cf795b635\n 8[label=\"Busco\"]\n 5 -> 8 [label=\"out_file1\"]\n 9[label=\"Filter\"]\n 7 -> 9 [label=\"proteinortho\"]\n 10[label=\"Proteinortho grab proteins\"]\n 6 -> 10 [label=\"output\"]\n 9 -> 10 [label=\"out_file1\"]\n k8625e8b1e3af4afabf851a3258cbbfb2[color=lightseagreen,label=\"Output\\nProteinortho_extract_by_orthogroup\"]\n 10 -> k8625e8b1e3af4afabf851a3258cbbfb2\n 11[label=\"Regex Find And Replace\"]\n 10 -> 11 [label=\"listproteinorthograbproteins\"]\n kb072d32ef7254833af0b74f4df526d9a[color=lightseagreen,label=\"Output\\nfasta_header_cleaned\"]\n 11 -> kb072d32ef7254833af0b74f4df526d9a\n 12[label=\"ClustalW\"]\n 11 -> 12 [label=\"out_file1\"]\n kf704b4b2521443938a856274bda27c8c[color=lightseagreen,label=\"Output\\nClustalW on input dataset(s): clustal\"]\n 12 -> kf704b4b2521443938a856274bda27c8c\n 13[label=\"ClipKIT. Alignment trimming software for phylogenetics.\"]\n 12 -> 13 [label=\"output\"]\n k37092981191a44138f6051802dd95f9c[color=lightseagreen,label=\"Output\\nTrimmed alignment.\"]\n 13 -> k37092981191a44138f6051802dd95f9c\n 14[label=\"PhyKit - Alignment-based functions\"]\n 13 -> 14 [label=\"trimmed_output\"]\n k09ad25e3cd684fb49c573e79212b8e01[color=lightseagreen,label=\"Output\\nConcatenated fasta alignment file\"]\n 14 -> k09ad25e3cd684fb49c573e79212b8e01\n k1d546e4c7e3c499d870c4846feb7a46d[color=lightseagreen,label=\"Output\\nA partition file ready for input into RAxML or IQ-tree\"]\n 14 -> k1d546e4c7e3c499d870c4846feb7a46d\n k26846814d43a4ce79f26cfb70f184dce[color=lightseagreen,label=\"Output\\nAn occupancy file that summarizes the taxon occupancy per sequence\"]\n 14 -> k26846814d43a4ce79f26cfb70f184dce\n}", + "history": [ + { + "hash": "f7b9464bb24007d8f974decd05b331b67ff877ab", + "message": "Update main_workflow.ga", + "num": 2, + "short_hash": "f7b9464bb", + "unix": "1656489327" + }, + { + "hash": "d6ad32e2684e4274d081b593df3966220a6e0d55", + "message": "create phylogenetic-data-prep training backbone", + "num": 1, + "short_hash": "d6ad32e26", + "unix": "1651848710" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input genomes as collection" + } + ], + "label": "Input genomes as collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 309.1999969482422, + "height": 82.19999694824219, + "left": 387, + "right": 587, + "top": 227, + "width": 200, + "x": 387, + "y": 227 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "3ae6fd26-b1ef-4339-b84b-82463a3575cf", + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput genomes as collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Replace Text\"];\n 0 -->|output| 1;\n 6a2d3fcd-b557-4440-910d-b4c537feef20[\"Output\\nheaders_shortened\"];\n 1 --> 6a2d3fcd-b557-4440-910d-b4c537feef20;\n style 6a2d3fcd-b557-4440-910d-b4c537feef20 stroke:#2c3143,stroke-width:4px;\n 2[\"RepeatMasker\"];\n 1 -->|outfile| 2;\n 1db6607a-343a-4a61-9a3b-43101eb8223b[\"Output\\nrepeat_masked\"];\n 2 --> 1db6607a-343a-4a61-9a3b-43101eb8223b;\n style 1db6607a-343a-4a61-9a3b-43101eb8223b stroke:#2c3143,stroke-width:4px;\n 3[\"Funannotate predict annotation\"];\n 2 -->|output_masked_genome| 3;\n 642c1c09-82f4-4ef4-bd53-d14a583044e2[\"Output\\nfunannotate_predicted_proteins\"];\n 3 --> 642c1c09-82f4-4ef4-bd53-d14a583044e2;\n style 642c1c09-82f4-4ef4-bd53-d14a583044e2 stroke:#2c3143,stroke-width:4px;\n 4[\"Extract ORF\"];\n 3 -->|annot_gbk| 4;\n 07fb8c04-990e-4bc7-b607-9c4161b4786d[\"Output\\nextracted_ORFs\"];\n 4 --> 07fb8c04-990e-4bc7-b607-9c4161b4786d;\n style 07fb8c04-990e-4bc7-b607-9c4161b4786d stroke:#2c3143,stroke-width:4px;\n 5[\"Regex Find And Replace\"];\n 4 -->|aa_output| 5;\n 8dc378a8-d485-42df-8322-6cf8230257a0[\"Output\\nsample_names_to_headers\"];\n 5 --> 8dc378a8-d485-42df-8322-6cf8230257a0;\n style 8dc378a8-d485-42df-8322-6cf8230257a0 stroke:#2c3143,stroke-width:4px;\n 6[\"Collapse Collection\"];\n 5 -->|out_file1| 6;\n e9a55459-4a2c-4238-8494-e99ec67307ea[\"Output\\nproteomes_to_one_file\"];\n 6 --> e9a55459-4a2c-4238-8494-e99ec67307ea;\n style e9a55459-4a2c-4238-8494-e99ec67307ea stroke:#2c3143,stroke-width:4px;\n 7[\"Proteinortho\"];\n 5 -->|out_file1| 7;\n ee688b7a-2a9e-4480-a27a-db8cf795b635[\"Output\\nProteinortho on input dataset(s): orthology-groups\"];\n 7 --> ee688b7a-2a9e-4480-a27a-db8cf795b635;\n style ee688b7a-2a9e-4480-a27a-db8cf795b635 stroke:#2c3143,stroke-width:4px;\n 8[\"Busco\"];\n 5 -->|out_file1| 8;\n 9[\"Filter\"];\n 7 -->|proteinortho| 9;\n 10[\"Proteinortho grab proteins\"];\n 6 -->|output| 10;\n 9 -->|out_file1| 10;\n 8625e8b1-e3af-4afa-bf85-1a3258cbbfb2[\"Output\\nProteinortho_extract_by_orthogroup\"];\n 10 --> 8625e8b1-e3af-4afa-bf85-1a3258cbbfb2;\n style 8625e8b1-e3af-4afa-bf85-1a3258cbbfb2 stroke:#2c3143,stroke-width:4px;\n 11[\"Regex Find And Replace\"];\n 10 -->|listproteinorthograbproteins| 11;\n b072d32e-f725-4833-af0b-74f4df526d9a[\"Output\\nfasta_header_cleaned\"];\n 11 --> b072d32e-f725-4833-af0b-74f4df526d9a;\n style b072d32e-f725-4833-af0b-74f4df526d9a stroke:#2c3143,stroke-width:4px;\n 12[\"ClustalW\"];\n 11 -->|out_file1| 12;\n f704b4b2-5214-4393-8a85-6274bda27c8c[\"Output\\nClustalW on input dataset(s): clustal\"];\n 12 --> f704b4b2-5214-4393-8a85-6274bda27c8c;\n style f704b4b2-5214-4393-8a85-6274bda27c8c stroke:#2c3143,stroke-width:4px;\n 13[\"ClipKIT. Alignment trimming software for phylogenetics.\"];\n 12 -->|output| 13;\n 37092981-191a-4413-8f60-51802dd95f9c[\"Output\\nTrimmed alignment.\"];\n 13 --> 37092981-191a-4413-8f60-51802dd95f9c;\n style 37092981-191a-4413-8f60-51802dd95f9c stroke:#2c3143,stroke-width:4px;\n 14[\"PhyKit - Alignment-based functions\"];\n 13 -->|trimmed_output| 14;\n 09ad25e3-cd68-4fb4-9c57-3e79212b8e01[\"Output\\nConcatenated fasta alignment file\"];\n 14 --> 09ad25e3-cd68-4fb4-9c57-3e79212b8e01;\n style 09ad25e3-cd68-4fb4-9c57-3e79212b8e01 stroke:#2c3143,stroke-width:4px;\n 1d546e4c-7e3c-499d-870c-4846feb7a46d[\"Output\\nA partition file ready for input into RAxML or IQ-tree\"];\n 14 --> 1d546e4c-7e3c-499d-870c-4846feb7a46d;\n style 1d546e4c-7e3c-499d-870c-4846feb7a46d stroke:#2c3143,stroke-width:4px;\n 26846814-d43a-4ce7-9f26-cfb70f184dce[\"Output\\nAn occupancy file that summarizes the taxon occupancy per sequence\"];\n 14 --> 26846814-d43a-4ce7-9f26-cfb70f184dce;\n style 26846814-d43a-4ce7-9f26-cfb70f184dce stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "preparing genomic data for phylogeny recostruction (GTN)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "errors": null, + "id": 1, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 359.6000061035156, + "height": 113.60000610351562, + "left": 780.5, + "right": 980.5, + "top": 246, + "width": 200, + "x": 780.5, + "y": 246 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "#{infile}" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"find_pattern\": \"(>[^ ]+).+\", \"replace_pattern\": \"\\\\1\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "2192525a-028a-4fb3-a772-5ccface42221", + "workflow_outputs": [ + { + "label": "headers_shortened", + "output_name": "outfile", + "uuid": "6a2d3fcd-b557-4440-910d-b4c537feef20" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.2-p1+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_fasta": { + "id": 1, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RepeatMasker", + "name": "input_fasta" + } + ], + "label": null, + "name": "RepeatMasker", + "outputs": [ + { + "name": "output_masked_genome", + "type": "fasta" + }, + { + "name": "output_log", + "type": "tabular" + }, + { + "name": "output_table", + "type": "txt" + }, + { + "name": "output_repeat_catalog", + "type": "txt" + } + ], + "position": { + "bottom": 669.3999938964844, + "height": 286.3999938964844, + "left": 1078.5, + "right": 1278.5, + "top": 383, + "width": 200, + "x": 1078.5, + "y": 383 + }, + "post_job_actions": { + "HideDatasetActionoutput_log": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_log" + }, + "HideDatasetActionoutput_repeat_catalog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_repeat_catalog" + }, + "HideDatasetActionoutput_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_table" + }, + "RenameDatasetActionoutput_masked_genome": { + "action_arguments": { + "newname": "#{input_fasta}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_masked_genome" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.2-p1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "39b40a9a6296", + "name": "repeat_masker", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"is_only\": \"false\", \"is_clip\": \"false\", \"no_is\": \"false\", \"rodspec\": \"false\", \"primspec\": \"false\", \"nolow\": \"false\", \"noint\": \"false\", \"norna\": \"false\", \"alu\": \"false\", \"div\": \"false\", \"search_speed\": \"\", \"frag\": \"40000\", \"gc\": null, \"gccalc\": \"false\", \"nocut\": \"false\", \"xout\": \"false\", \"keep_alignments\": \"false\", \"invert_alignments\": \"false\", \"xsmall\": \"false\", \"poly\": \"false\"}, \"excln\": \"true\", \"gff\": \"false\", \"input_fasta\": {\"__class__\": \"RuntimeValue\"}, \"repeat_source\": {\"source_type\": \"dfam\", \"__current_case__\": 0, \"species_source\": {\"species_from_list\": \"no\", \"__current_case__\": 1, \"species_name\": \"Saccharomyces cerevisiae\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.2-p1+galaxy0", + "type": "tool", + "uuid": "2c65b372-4d50-46a0-8a41-fc9e903956b8", + "workflow_outputs": [ + { + "label": "repeat_masked", + "output_name": "output_masked_genome", + "uuid": "1db6607a-343a-4a61-9a3b-43101eb8223b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.9+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "output_masked_genome" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "evidences" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "evidences" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "genemark" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "genemark" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "parameters" + } + ], + "label": null, + "name": "Funannotate predict annotation", + "outputs": [ + { + "name": "annot_gbk", + "type": "genbank" + } + ], + "position": { + "bottom": 978.2000122070312, + "height": 591.2000122070312, + "left": 1417.5, + "right": 1617.5, + "top": 387, + "width": 200, + "x": 1417.5, + "y": 387 + }, + "post_job_actions": { + "RenameDatasetActionannot_gbk": { + "action_arguments": { + "newname": "#{input}" + }, + "action_type": "RenameDatasetAction", + "output_name": "annot_gbk" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.9+galaxy2", + "tool_shed_repository": { + "changeset_revision": "2bba2ff070d9", + "name": "funannotate_predict", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"augustus\": {\"augustus_species\": \"none\", \"min_training_models\": \"15\", \"optimize_augustus\": \"false\"}, \"busco\": {\"busco_db\": \"saccharomycetes\", \"busco_seed_species\": \"saccharomyces\"}, \"database\": \"2022-03-24-174412\", \"evidences\": {\"rna_bam\": {\"__class__\": \"RuntimeValue\"}, \"transcript_evidence\": {\"__class__\": \"RuntimeValue\"}, \"prot_evidence\": {\"prot_evidence_source\": \"uniprot\", \"__current_case__\": 0}, \"p2g_pident\": \"80\", \"p2g_prefilter\": \"diamond\"}, \"evm\": {\"repeats2evm\": \"false\", \"evm_partitioning\": {\"evm_partition\": \"yes\", \"__current_case__\": 0, \"evm_partition_interval\": \"1500\"}, \"weights\": \"\"}, \"filtering\": {\"min_intronlen\": \"10\", \"max_intronlen\": \"3000\", \"min_protlen\": \"50\", \"keep_no_stops\": \"false\", \"repeat_filter\": \"overlap blast\"}, \"force\": \"true\", \"genemark\": {\"genemark_license\": {\"__class__\": \"RuntimeValue\"}, \"genemark_mode\": \"ES\", \"genemark_mod\": {\"__class__\": \"RuntimeValue\"}, \"soft_mask\": \"2000\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"organism\": {\"species\": \"Saccharomyces cerevisiae\", \"isolate\": \"\", \"strain\": \"\", \"organism\": \"true\", \"ploidy\": \"1\", \"SeqCenter\": \"CFMR\", \"SeqAccession\": \"12345\", \"name\": \"FUN_\", \"numbering\": \"1\"}, \"other_predictors\": {\"stringtie\": {\"__class__\": \"RuntimeValue\"}, \"maker_gff\": {\"__class__\": \"RuntimeValue\"}, \"pasa_gff\": {\"__class__\": \"RuntimeValue\"}, \"pasa_gff_weight\": \"1\", \"other_gff\": {\"__class__\": \"RuntimeValue\"}, \"other_gff_weight\": \"1\"}, \"outputs\": [\"gbk\"], \"parameters\": {\"__class__\": \"RuntimeValue\"}, \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.9+galaxy2", + "type": "tool", + "uuid": "760b55d2-5e23-41f5-9766-e939fe5e6d9b", + "workflow_outputs": [ + { + "label": "funannotate_predicted_proteins", + "output_name": "annot_gbk", + "uuid": "642c1c09-82f4-4ef4-bd53-d14a583044e2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/glimmer_gbk_to_orf/glimmer_gbk_to_orf/3.02", + "errors": null, + "id": 4, + "input_connections": { + "infile": { + "id": 3, + "output_name": "annot_gbk" + } + }, + "inputs": [], + "label": null, + "name": "Extract ORF", + "outputs": [ + { + "name": "aa_output", + "type": "fasta" + }, + { + "name": "nc_output", + "type": "fasta" + } + ], + "position": { + "bottom": 763.6000061035156, + "height": 123.60000610351562, + "left": 1705.5, + "right": 1905.5, + "top": 640, + "width": 200, + "x": 1705.5, + "y": 640 + }, + "post_job_actions": { + "RenameDatasetActionaa_output": { + "action_arguments": { + "newname": "#{infile}" + }, + "action_type": "RenameDatasetAction", + "output_name": "aa_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/glimmer_gbk_to_orf/glimmer_gbk_to_orf/3.02", + "tool_shed_repository": { + "changeset_revision": "04861c9bbf45", + "name": "glimmer_gbk_to_orf", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.02", + "type": "tool", + "uuid": "ac2baad9-7cdd-4c59-a260-492d4f54bed4", + "workflow_outputs": [ + { + "label": "extracted_ORFs", + "output_name": "aa_output", + "uuid": "07fb8c04-990e-4bc7-b607-9c4161b4786d" + }, + { + "label": null, + "output_name": "nc_output", + "uuid": "3b303171-139b-45dc-943b-8a425f679f46" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "aa_output" + } + }, + "inputs": [], + "label": null, + "name": "Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 794.3999938964844, + "height": 154.39999389648438, + "left": 1992, + "right": 2192, + "top": 640, + "width": 200, + "x": 1992, + "y": 640 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "#{input}" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.1", + "tool_shed_repository": { + "changeset_revision": "ae8c4b2488e7", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \">([^ ]+).+\", \"replacement\": \">#{input_name}_\\\\1\"}], \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "adaf4b62-fe6a-4881-a6af-1e2afb87bfe9", + "workflow_outputs": [ + { + "label": "sample_names_to_headers", + "output_name": "out_file1", + "uuid": "8dc378a8-d485-42df-8322-6cf8230257a0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "errors": null, + "id": 6, + "input_connections": { + "input_list": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 494.3999938964844, + "height": 154.39999389648438, + "left": 2314.966552734375, + "right": 2514.966552734375, + "top": 340, + "width": 200, + "x": 2314.966552734375, + "y": 340 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "tool_shed_repository": { + "changeset_revision": "830961c48e42", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": \"false\", \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2", + "type": "tool", + "uuid": "ae4ddb2f-104b-409f-9d91-07c4410ba00a", + "workflow_outputs": [ + { + "label": "proteomes_to_one_file", + "output_name": "output", + "uuid": "e9a55459-4a2c-4238-8494-e99ec67307ea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/proteinortho/proteinortho/6.0.14+galaxy2.9.1", + "errors": null, + "id": 7, + "input_connections": { + "input_files": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Proteinortho", + "outputs": [ + { + "name": "blastgraph", + "type": "tabular" + }, + { + "name": "proteinortho", + "type": "tabular" + }, + { + "name": "proteinorthograph", + "type": "tabular" + } + ], + "position": { + "bottom": 826.3333129882812, + "height": 296.79998779296875, + "left": 2307.966552734375, + "right": 2507.966552734375, + "top": 529.5333251953125, + "width": 200, + "x": 2307.966552734375, + "y": 529.5333251953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/proteinortho/proteinortho/6.0.14+galaxy2.9.1", + "tool_shed_repository": { + "changeset_revision": "4850f0d15f01", + "name": "proteinortho", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"conn\": \"0.1\", \"evalue\": \"0.001\", \"input_files\": {\"__class__\": \"ConnectedValue\"}, \"more_options\": {\"cov\": \"50\", \"sim\": \"95\", \"identity\": \"25\", \"selfblast\": \"false\", \"singles\": \"false\", \"isoform\": \"no\"}, \"p\": \"diamond\", \"synteny\": {\"synteny_options\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "6.0.14+galaxy2.9.1", + "type": "tool", + "uuid": "2d05e13f-4cb1-4d86-800f-3e743b50fab8", + "workflow_outputs": [ + { + "label": null, + "output_name": "proteinorthograph", + "uuid": "42f51f73-f573-4d2f-a703-04dd329dfd4b" + }, + { + "label": "Proteinortho on input dataset(s): orthology-groups", + "output_name": "proteinortho", + "uuid": "ee688b7a-2a9e-4480-a27a-db8cf795b635" + }, + { + "label": null, + "output_name": "blastgraph", + "uuid": "e2b3b5ba-33ec-4330-bebc-2bb7f3c2b360" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 1122.3999938964844, + "height": 276.3999938964844, + "left": 2316.466552734375, + "right": 2516.466552734375, + "top": 846, + "width": 200, + "x": 2316.466552734375, + "y": 846 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"chromInfo\": \"/srv/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"CM005299.1\", \"lineage_dataset\": \"saccharomycetes_odb10\", \"mode\": \"prot\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "174f50d8-09bd-48b9-afcd-44468e41a0c3", + "workflow_outputs": [ + { + "label": null, + "output_name": "busco_sum", + "uuid": "471d5e9e-db3e-44ee-9936-22f5e9072fd1" + }, + { + "label": null, + "output_name": "busco_missing", + "uuid": "2195fc7f-ae89-43e8-ba1e-d45955b8856e" + }, + { + "label": null, + "output_name": "busco_table", + "uuid": "76879cb7-9b5f-443b-84a4-414e2fe0b14d" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 7, + "output_name": "proteinortho" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 785.7333221435547, + "height": 93.19999694824219, + "left": 2585, + "right": 2785, + "top": 692.5333251953125, + "width": 200, + "x": 2585, + "y": 692.5333251953125 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c1==4 and c2==4\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "b4758296-c3c9-4c3c-bb2d-2f637f8702b5", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "c03839b1-17e0-4fb1-8b53-d3fd2a89aaba" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/proteinortho_grab_proteins/proteinortho_grab_proteins/6.0.14+galaxy2.9.1", + "errors": null, + "id": 10, + "input_connections": { + "input_files": { + "id": 6, + "output_name": "output" + }, + "query|queryfile": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Proteinortho grab proteins", + "outputs": [ + { + "name": "listproteinorthograbproteins", + "type": "input" + } + ], + "position": { + "bottom": 597.8000030517578, + "height": 184.8000030517578, + "left": 2850, + "right": 3050, + "top": 413, + "width": 200, + "x": 2850, + "y": 413 + }, + "post_job_actions": { + "RenameDatasetActionlistproteinorthograbproteins": { + "action_arguments": { + "newname": "#{query.queryfile}" + }, + "action_type": "RenameDatasetAction", + "output_name": "listproteinorthograbproteins" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/proteinortho_grab_proteins/proteinortho_grab_proteins/6.0.14+galaxy2.9.1", + "tool_shed_repository": { + "changeset_revision": "d348c3a151d9", + "name": "proteinortho_grab_proteins", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_files\": {\"__class__\": \"ConnectedValue\"}, \"query\": {\"querytype\": \"file\", \"__current_case__\": 1, \"queryfile\": {\"__class__\": \"ConnectedValue\"}}, \"regex\": \"false\", \"source\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "6.0.14+galaxy2.9.1", + "type": "tool", + "uuid": "78e25a29-21b2-47ab-ac0e-a5b958258086", + "workflow_outputs": [ + { + "label": "Proteinortho_extract_by_orthogroup", + "output_name": "listproteinorthograbproteins", + "uuid": "8625e8b1-e3af-4afa-bf85-1a3258cbbfb2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.1", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 10, + "output_name": "listproteinorthograbproteins" + } + }, + "inputs": [], + "label": null, + "name": "Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 541, + "height": 134, + "left": 3151, + "right": 3351, + "top": 407, + "width": 200, + "x": 3151, + "y": 407 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "#{input}" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.1", + "tool_shed_repository": { + "changeset_revision": "ae8c4b2488e7", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"(>[^_]+).+\", \"replacement\": \"\\\\1\"}], \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "c99a9988-fa6a-4366-8c9f-9195e7f77b19", + "workflow_outputs": [ + { + "label": "fasta_header_cleaned", + "output_name": "out_file1", + "uuid": "b072d32e-f725-4833-af0b-74f4df526d9a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 11, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "ClustalW", + "outputs": [ + { + "name": "output", + "type": "clustal" + }, + { + "name": "dnd", + "type": "nhx" + } + ], + "position": { + "bottom": 593.3333129882812, + "height": 184.79998779296875, + "left": 3431, + "right": 3631, + "top": 408.5333251953125, + "width": 200, + "x": 3431, + "y": 408.5333251953125 + }, + "post_job_actions": { + "HideDatasetActiondnd": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "dnd" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "#{input}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "tool_shed_repository": { + "changeset_revision": "d6694932c5e0", + "name": "clustalw", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dnarna\": \"PROTEIN\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"out_order\": \"ALIGNED\", \"outcontrol\": {\"outform\": \"fasta\", \"__current_case__\": 0}, \"range\": {\"mode\": \"complete\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1", + "type": "tool", + "uuid": "8ead7ee6-fe67-4479-a8dd-722e8247cb0e", + "workflow_outputs": [ + { + "label": "ClustalW on input dataset(s): clustal", + "output_name": "output", + "uuid": "f704b4b2-5214-4393-8a85-6274bda27c8c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/padge/clipkit/clipkit/0.1.0", + "errors": null, + "id": 13, + "input_connections": { + "input1": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "ClipKIT. Alignment trimming software for phylogenetics.", + "outputs": [ + { + "name": "trimmed_output", + "type": "fasta" + }, + { + "name": "log_output", + "type": "txt" + } + ], + "position": { + "bottom": 611.1999969482422, + "height": 205.1999969482422, + "left": 3710, + "right": 3910, + "top": 406, + "width": 200, + "x": 3710, + "y": 406 + }, + "post_job_actions": { + "HideDatasetActionlog_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/padge/clipkit/clipkit/0.1.0", + "tool_shed_repository": { + "changeset_revision": "770695339600", + "name": "clipkit", + "owner": "padge", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"false\", \"gaps\": \"0.9\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"mode_selector\": \"smart-gap\", \"out_format_selector\": \"fasta\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "ee4b18ee-b6df-46ad-a808-cc78783fc773", + "workflow_outputs": [ + { + "label": "Trimmed alignment.", + "output_name": "trimmed_output", + "uuid": "37092981-191a-4413-8f60-51802dd95f9c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/padge/phykit/phykit_alignment_based/0.1.0", + "errors": null, + "id": 14, + "input_connections": { + "tools|input1": { + "id": 13, + "output_name": "trimmed_output" + } + }, + "inputs": [], + "label": null, + "name": "PhyKit - Alignment-based functions", + "outputs": [ + { + "name": "fasta", + "type": "fasta" + }, + { + "name": "partition", + "type": "iqtree" + }, + { + "name": "occupancy", + "type": "tabular" + } + ], + "position": { + "bottom": 806.7999877929688, + "height": 398.79998779296875, + "left": 3990, + "right": 4190, + "top": 408, + "width": 200, + "x": 3990, + "y": 408 + }, + "post_job_actions": { + "RenameDatasetActionfasta": { + "action_arguments": { + "newname": "#{tools.input1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "fasta" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/padge/phykit/phykit_alignment_based/0.1.0", + "tool_shed_repository": { + "changeset_revision": "1ac6ee298657", + "name": "phykit", + "owner": "padge", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"tools\": {\"tool_selector\": \"create_concat\", \"__current_case__\": 0, \"input1\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "9077044b-7125-4381-858c-d7078d37c529", + "workflow_outputs": [ + { + "label": "Concatenated fasta alignment file", + "output_name": "fasta", + "uuid": "09ad25e3-cd68-4fb4-9c57-3e79212b8e01" + }, + { + "label": "A partition file ready for input into RAxML or IQ-tree", + "output_name": "partition", + "uuid": "1d546e4c-7e3c-499d-870c-4846feb7a46d" + }, + { + "label": "An occupancy file that summarizes the taxon occupancy per sequence", + "output_name": "occupancy", + "uuid": "26846814-d43a-4ce7-9f26-cfb70f184dce" + } + ] + } + ], + "parent_id": "ecology/phylogeny-data-prep", + "path": "topics/ecology/tutorials/phylogeny-data-prep/workflows/main_workflow.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "preparing genomic data for phylogeny recostruction (GTN)", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-phylogeny-data-prep/versions/main-workflow", + "tutorial_id": "phylogeny-data-prep", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/phylogeny-data-prep/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/phylogeny-data-prep/workflows/main_workflow.html", + "version": 1, + "wfid": "ecology-phylogeny-data-prep", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/glimmer_gbk_to_orf/glimmer_gbk_to_orf/3.02", + "toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.2-p1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.9+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/proteinortho/proteinortho/6.0.14+galaxy2.9.1", + "toolshed.g2.bx.psu.edu/repos/iuc/proteinortho_grab_proteins/proteinortho_grab_proteins/6.0.14+galaxy2.9.1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "toolshed.g2.bx.psu.edu/repos/padge/clipkit/clipkit/0.1.0", + "toolshed.g2.bx.psu.edu/repos/padge/phykit/phykit_alignment_based/0.1.0" + ], + "workflowhub_id": "1264" + } + ], + "zenodo_link": "https://zenodo.org/record/6610704" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/Metashrimps_tutorial/tutorial.json", + "contributions": { + "authorship": [ + "TanguyGen", + "yvanlebras" + ], + "editing": [ + "yvanlebras", + "hexylena" + ], + "funding": [ + "fnso2019", + "pndb" + ] + }, + "contributors": [ + { + "id": "TanguyGen", + "joined": "2023-06", + "name": "Tanguy Genthon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/TanguyGen/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/TanguyGen.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/fnso.png", + "funder": true, + "funder_name": "National Fund for Open Science", + "funding_id": "AAPFNSO2019OpenMetaPaper-14026", + "funding_statement": "This project (AAPFNSO2019OpenMetaPaper-14026) is funded with the support of the national Fund for Open Science programme of the French Minister of Higher Education, Research and Innovation. Their funding has supported development of data/metadata management tools and related tutorial for Ecology and FAIR topics.\n\"French\n\"FNSO", + "github": false, + "id": "fnso2019", + "joined": "2023-05", + "members": [ + "yvanlebras" + ], + "name": "OpenMetaPaper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fnso2019/", + "short_name": "FNSO", + "url": "https://training.galaxyproject.org/training-material/api/funders/fnso2019.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/Metashrimps_tutorial", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/Metashrimps_tutorial", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "This tool aims to improve FAIR quality of metadata", + "Creating metadata as FAIR as possible is a must", + "Be carefull of the format and standard of metadata used only EML metadata will work" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Learn how to use the interactive tool Metashrimps", + "Understand the challenges MetaShRIMPS is trying to respond to", + "Learn how to create a FAIR Quality assessment report from a metadata using EML standard", + "Understand the concept of Data Paper and learn how to produce it", + "Explain the necessity of using such tools when producing ecological metadata" + ], + "pageviews": 31, + "pub_date": "2024-01-22", + "questions": [ + "How to improve the FAIR quality of an EML metadata ?", + "How to use metadata for machine actionnable processes ?", + "What is the point of having a FAIR metadata ?" + ], + "short_id": "T00399", + "short_tools": [ + "interactive_tool_metashrimps" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologymetadatamgt", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "Metadata", + "EML", + "FAIR", + "Data Paper" + ], + "time_estimation": "30M", + "title": "Creating FAIR Quality assessment reports and draft of Data Papers from EML metadata with MetaShRIMPS", + "tools": [ + "interactive_tool_metashrimps" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "Metashrimps_tutorial", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/Metashrimps_tutorial/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/Metashrimps_tutorial/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/Metashrimps_tutorial/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 160, + "visitors": 30, + "zenodo_link": "https://doi.org/10.5281/zenodo.8130567" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "9ff72e942410", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regionalgam_ab_index", + "owner": "ecology", + "revisions": "d0ee713d4758", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regionalgam_autocor_acf", + "owner": "ecology", + "revisions": "b416a363a2d5", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regionalgam_flight_curve", + "owner": "ecology", + "revisions": "fff507f00b2b", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regionalgam_glmmpql", + "owner": "ecology", + "revisions": "f3e1b6d244a6", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regionalgam_gls", + "owner": "ecology", + "revisions": "a79f5f0f17ad", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regionalgam_plot_trend", + "owner": "ecology", + "revisions": "58ecd15e6836", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "209b7c5ee9d7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_point", + "owner": "iuc", + "revisions": "9cec81e1b90e", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "csv_to_tabular", + "owner": "mnhn65mo", + "revisions": "b735ac78702b", + "tool_panel_section_label": "Ecology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regionalgam", + "owner": "mnhn65mo", + "revisions": "0e7066603eab", + "tool_panel_section_label": "Ecology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_csv", + "owner": "mnhn65mo", + "revisions": "f1b7d0032530", + "tool_panel_section_label": "Ecology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: 9ff72e942410\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regionalgam_ab_index\n owner: ecology\n revisions: d0ee713d4758\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regionalgam_autocor_acf\n owner: ecology\n revisions: b416a363a2d5\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regionalgam_flight_curve\n owner: ecology\n revisions: fff507f00b2b\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regionalgam_glmmpql\n owner: ecology\n revisions: f3e1b6d244a6\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regionalgam_gls\n owner: ecology\n revisions: a79f5f0f17ad\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regionalgam_plot_trend\n owner: ecology\n revisions: 58ecd15e6836\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 209b7c5ee9d7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_point\n owner: iuc\n revisions: 9cec81e1b90e\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: csv_to_tabular\n owner: mnhn65mo\n revisions: b735ac78702b\n tool_panel_section_label: Ecology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regionalgam\n owner: mnhn65mo\n revisions: 0e7066603eab\n tool_panel_section_label: Ecology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_csv\n owner: mnhn65mo\n revisions: f1b7d0032530\n tool_panel_section_label: Ecology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/regionalGAM/tutorial.json", + "contributors": [ + { + "id": "claraurf", + "joined": "2019-03", + "name": "Clara Urfer", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/claraurf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/claraurf.json" + }, + { + "id": "emichn", + "joined": "2019-03", + "name": "Elisa Michon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emichn/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emichn.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "simon.benateau@mnhn.fr", + "id": "sbenateau", + "joined": "2019-03", + "name": "Simon Benateau", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sbenateau/", + "twitter": "sbenateau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sbenateau.json" + } + ], + "dir": "topics/ecology/tutorials/regionalGAM", + "edam_ontology": [ + "topic_0610" + ], + "edam_operation": [ + "Visualisation" + ], + "edam_topic": [ + "Ecology" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/regionalGAM", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 23555, + "mermaid": false + }, + "key_points": [ + "We sequentially computed phenology, abundance index, trend and model this trend", + "We learned how to interpret a trend using modeling and data visualization", + "This tool compute phenology in order to predict missing data, no definitive conclusion can be made on the phenology using this tool" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Obtain and filter/manipulate occurrence data", + "Compute and visualize phenology of a species through the years", + "Compute temporal abundance trends" + ], + "pageviews": 368, + "pub_date": "2019-07-04", + "questions": [ + "What are abundance and trends of a butterfly species?" + ], + "short_id": "T00134", + "short_tools": [ + "tab2csv_R", + "regionalgam_gls", + "regionalgam_glmmpql", + "csv2tab_R", + "Paste1", + "regionalgam_flight_curve", + "tp_awk_tool", + "flight-curve", + "Count1", + "regionalgam_autocor_acf", + "ggplot2_point", + "Filter1", + "regionalgam_ab_index", + "Remove beginning1", + "regionalgam_plot_trend", + "regexColumn1", + "mergeCols1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "Species populations EBV class", + "Species traits EBV class", + "EBV dataset", + "EBV workflow" + ], + "time_estimation": "2h30m", + "title": "Regional GAM", + "tools": [ + "Count1", + "Filter1", + "Paste1", + "Remove beginning1", + "mergeCols1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_ab_index/regionalgam_ab_index/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_autocor_acf/regionalgam_autocor_acf/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_flight_curve/regionalgam_flight_curve/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_glmmpql/regionalgam_glmmpql/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_gls/regionalgam_gls/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_plot_trend/regionalgam_plot_trend/1.5", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/mnhn65mo/csv_to_tabular/csv2tab_R/0.1", + "toolshed.g2.bx.psu.edu/repos/mnhn65mo/regionalgam/flight-curve/1.0.0", + "toolshed.g2.bx.psu.edu/repos/mnhn65mo/tabular_to_csv/tab2csv_R/0.1" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "regionalGAM", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/regionalGAM/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/regionalGAM/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/regionalGAM/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 218, + "visitors": 262, + "workflows": [ + { + "creators": [], + "description": "Regional GAM", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAbundance index file\"]\n 1[label=\"Filter\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Filter\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Filter\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Filter\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Filter\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Paste\"]\n 1 -> 6 [label=\"out_file1\"]\n 2 -> 6 [label=\"out_file1\"]\n 7[label=\"Paste\"]\n 3 -> 7 [label=\"out_file1\"]\n 4 -> 7 [label=\"out_file1\"]\n 8[label=\"Paste\"]\n 6 -> 8 [label=\"out_file1\"]\n 7 -> 8 [label=\"out_file1\"]\n 9[label=\"Paste\"]\n 8 -> 9 [label=\"out_file1\"]\n 5 -> 9 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "113055d0e63ca251b2f9fce28baf9528cbd12528", + "message": "Put regionalgam workflows on right place", + "num": 1, + "short_hash": "113055d0e", + "unix": "1536842408" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Abundance index file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 226, + "top": 390 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "0934ca25-5866-46ac-ac3c-e1e4ce49858d", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAbundance index file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Filter\"];\n 0 -->|output| 1;\n 2[\"Filter\"];\n 0 -->|output| 2;\n 3[\"Filter\"];\n 0 -->|output| 3;\n 4[\"Filter\"];\n 0 -->|output| 4;\n 5[\"Filter\"];\n 0 -->|output| 5;\n 6[\"Paste\"];\n 1 -->|out_file1| 6;\n 2 -->|out_file1| 6;\n 7[\"Paste\"];\n 3 -->|out_file1| 7;\n 4 -->|out_file1| 7;\n 8[\"Paste\"];\n 6 -->|out_file1| 8;\n 7 -->|out_file1| 8;\n 9[\"Paste\"];\n 8 -->|out_file1| 9;\n 5 -->|out_file1| 9;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Abundance Index \"stacked\" Visualization Creation", + "outputs": [], + "parent_id": "ecology/regionalGAM", + "path": "topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Abundance_index__stacked__visualization_creation.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Abundance Index \"stacked\" Visualization Creation", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-regionalGAM/versions/galaxy-workflow-abundance-index--stacked--visualization-creation", + "tutorial_id": "regionalGAM", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Abundance_index__stacked__visualization_creation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Abundance_index__stacked__visualization_creation.html", + "version": 4, + "wfid": "ecology-regionalGAM", + "wfname": "galaxy-workflow-abundance-index--stacked--visualization-creation", + "workflow": "Galaxy-Workflow-Abundance_index__stacked__visualization_creation.ga", + "workflow_tools": [ + "Filter1", + "Paste1" + ], + "workflowhub_id": "1231" + }, + { + "creators": [], + "description": "Regional GAM", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nFlight curve dataset\"]\n 1[label=\"Filter\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Filter\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Paste\"]\n 1 -> 3 [label=\"out_file1\"]\n 2 -> 3 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "113055d0e63ca251b2f9fce28baf9528cbd12528", + "message": "Put regionalgam workflows on right place", + "num": 1, + "short_hash": "113055d0e", + "unix": "1536842408" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Flight curve dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 321.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "b3818227-75db-4863-af80-c732aa543d8d", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nFlight curve dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Filter\"];\n 0 -->|output| 1;\n 2[\"Filter\"];\n 0 -->|output| 2;\n 3[\"Paste\"];\n 1 -->|out_file1| 3;\n 2 -->|out_file1| 3;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Phenology \"stacked\" Visualization Creation", + "outputs": [], + "parent_id": "ecology/regionalGAM", + "path": "topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Phenology__stacked__visualization_creation.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Phenology \"stacked\" Visualization Creation", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-regionalGAM/versions/galaxy-workflow-phenology--stacked--visualization-creation", + "tutorial_id": "regionalGAM", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Phenology__stacked__visualization_creation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Phenology__stacked__visualization_creation.html", + "version": 4, + "wfid": "ecology-regionalGAM", + "wfname": "galaxy-workflow-phenology--stacked--visualization-creation", + "workflow": "Galaxy-Workflow-Phenology__stacked__visualization_creation.ga", + "workflow_tools": [ + "Filter1", + "Paste1" + ], + "workflowhub_id": "1226" + }, + { + "creators": [], + "description": "Regional GAM", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"CSV to Tabular\"]\n 0 -> 1 [label=\"output\"]\n 10[label=\"Count\"]\n 8 -> 10 [label=\"output\"]\n 11[label=\"Column Regex Find And Replace\"]\n 8 -> 11 [label=\"output\"]\n 12[label=\"Count\"]\n 9 -> 12 [label=\"output\"]\n 13[label=\"Column Regex Find And Replace\"]\n 9 -> 13 [label=\"output\"]\n 14[label=\"Merge Columns\"]\n 11 -> 14 [label=\"out_file1\"]\n 15[label=\"Merge Columns\"]\n 13 -> 15 [label=\"out_file1\"]\n 16[label=\"Remove beginning\"]\n 14 -> 16 [label=\"out_file1\"]\n 17[label=\"Remove beginning\"]\n 15 -> 17 [label=\"out_file1\"]\n 18[label=\"Paste\"]\n 16 -> 18 [label=\"out_file1\"]\n 17 -> 18 [label=\"out_file1\"]\n 2[label=\"Column Regex Find And Replace\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Count\"]\n 2 -> 3 [label=\"out_file1\"]\n 4[label=\"Filter\"]\n 2 -> 4 [label=\"out_file1\"]\n 5[label=\"Filter\"]\n 2 -> 5 [label=\"out_file1\"]\n 6[label=\"Tabular to CSV\"]\n 4 -> 6 [label=\"out_file1\"]\n 7[label=\"Tabular to CSV\"]\n 5 -> 7 [label=\"out_file1\"]\n 8[label=\"Flight curve\"]\n 6 -> 8 [label=\"output\"]\n 9[label=\"Flight curve\"]\n 7 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "113055d0e63ca251b2f9fce28baf9528cbd12528", + "message": "Put regionalgam workflows on right place", + "num": 1, + "short_hash": "113055d0e", + "unix": "1536842408" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/1324204/files/Dataset%20multispecies%20Regional%20GAM.csv?download=1" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"https://zenodo.org/record/1324204/files/Dataset%20multispecies%20Regional%20GAM.csv?download=1\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bc1199dc-030f-4c14-82da-23739830f179", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"CSV to Tabular\"];\n 0 -->|output| 1;\n 10[\"Count\"];\n 8 -->|output| 10;\n 11[\"Column Regex Find And Replace\"];\n 8 -->|output| 11;\n 12[\"Count\"];\n 9 -->|output| 12;\n 13[\"Column Regex Find And Replace\"];\n 9 -->|output| 13;\n 14[\"Merge Columns\"];\n 11 -->|out_file1| 14;\n 15[\"Merge Columns\"];\n 13 -->|out_file1| 15;\n 16[\"Remove beginning\"];\n 14 -->|out_file1| 16;\n 17[\"Remove beginning\"];\n 15 -->|out_file1| 17;\n 18[\"Paste\"];\n 16 -->|out_file1| 18;\n 17 -->|out_file1| 18;\n 2[\"Column Regex Find And Replace\"];\n 1 -->|output| 2;\n 3[\"Count\"];\n 2 -->|out_file1| 3;\n 4[\"Filter\"];\n 2 -->|out_file1| 4;\n 5[\"Filter\"];\n 2 -->|out_file1| 5;\n 6[\"Tabular to CSV\"];\n 4 -->|out_file1| 6;\n 7[\"Tabular to CSV\"];\n 5 -->|out_file1| 7;\n 8[\"Flight curve\"];\n 6 -->|output| 8;\n 9[\"Flight curve\"];\n 7 -->|output| 9;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Tutorial regionalGAM Complete Multispecies", + "outputs": [], + "parent_id": "ecology/regionalGAM", + "path": "topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_regionalGAM_complete_Multispecies.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Tutorial regionalGAM Complete Multispecies", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-regionalGAM/versions/galaxy-workflow-tutorial-regionalgam-complete-multispecies", + "tutorial_id": "regionalGAM", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_regionalGAM_complete_Multispecies.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_regionalGAM_complete_Multispecies.html", + "version": 4, + "wfid": "ecology-regionalGAM", + "wfname": "galaxy-workflow-tutorial-regionalgam-complete-multispecies", + "workflow": "Galaxy-Workflow-Tutorial_regionalGAM_complete_Multispecies.ga", + "workflow_tools": [ + "Count1", + "Filter1", + "Paste1", + "Remove beginning1", + "mergeCols1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/mnhn65mo/csv_to_tabular/csv2tab_R/0.1", + "toolshed.g2.bx.psu.edu/repos/mnhn65mo/regionalgam/flight-curve/1.0.0", + "toolshed.g2.bx.psu.edu/repos/mnhn65mo/tabular_to_csv/tab2csv_R/0.1" + ], + "workflowhub_id": "1229" + }, + { + "creators": [], + "description": "Regional GAM", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nregionalGAM.csv\"]\n 1[label=\"Text reformatting\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Count\"]\n 1 -> 2 [label=\"outfile\"]\n 3[label=\"Flight curve\"]\n 2 -> 3 [label=\"out_file1\"]\n 4[label=\"Abundance index\"]\n 2 -> 4 [label=\"out_file1\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"Scatterplot w ggplot2\"]\n 3 -> 5 [label=\"output\"]\n 6[label=\"Expected temporal trend\"]\n 4 -> 6 [label=\"output\"]\n 7[label=\"Model temporal trend\"]\n 4 -> 7 [label=\"output\"]\n 6 -> 7 [label=\"output2\"]\n 8[label=\"Autocorrelation test\"]\n 7 -> 8 [label=\"output2\"]\n 9[label=\"Plot abundance\"]\n 4 -> 9 [label=\"output\"]\n 7 -> 9 [label=\"output2\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 3, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "cc4237b34b795fa70c86279577a51b98d82cc76f", + "message": "Workflow updated", + "num": 2, + "short_hash": "cc4237b34", + "unix": "1562277612" + }, + { + "hash": "113055d0e63ca251b2f9fce28baf9528cbd12528", + "message": "Put regionalgam workflows on right place", + "num": 1, + "short_hash": "113055d0e", + "unix": "1536842408" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "regionalGAM.csv" + } + ], + "label": "regionalGAM.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"regionalGAM.csv\"}", + "tool_version": null, + "type": "data_input", + "uuid": "83dea6ec-6810-4bf2-aebc-96bda6cae9d5", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nregionalGAM.csv\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Text reformatting\"];\n 0 -->|output| 1;\n 2[\"Count\"];\n 1 -->|outfile| 2;\n 3[\"Flight curve\"];\n 2 -->|out_file1| 3;\n 4[\"Abundance index\"];\n 2 -->|out_file1| 4;\n 3 -->|output| 4;\n 5[\"Scatterplot w ggplot2\"];\n 3 -->|output| 5;\n 6[\"Expected temporal trend\"];\n 4 -->|output| 6;\n 7[\"Model temporal trend\"];\n 4 -->|output| 7;\n 6 -->|output2| 7;\n 8[\"Autocorrelation test\"];\n 7 -->|output2| 8;\n 9[\"Plot abundance\"];\n 4 -->|output| 9;\n 7 -->|output2| 9;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Regional GAM Workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_flight_curve/regionalgam_flight_curve/1.5", + "errors": null, + "id": 3, + "input_connections": { + "count_file": { + "id": 2, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Flight curve", + "name": "count_file" + } + ], + "label": null, + "name": "Flight curve", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 647.5, + "top": 353 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_flight_curve/regionalgam_flight_curve/1.5", + "tool_shed_repository": { + "changeset_revision": "fff507f00b2b", + "name": "regionalgam_flight_curve", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"count_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"minoccur\": \"\\\"2\\\"\", \"minvisit\": \"\\\"3\\\"\"}", + "tool_version": "1.5", + "type": "tool", + "uuid": "9888f224-3126-484f-9f4b-d36e84e55661", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "be6e75b5-827e-4df2-ac2c-8ea7be70290e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_ab_index/regionalgam_ab_index/1.5", + "errors": null, + "id": 4, + "input_connections": { + "count_file": { + "id": 2, + "output_name": "out_file1" + }, + "input2": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Abundance index", + "name": "count_file" + }, + { + "description": "runtime parameter for tool Abundance index", + "name": "input2" + } + ], + "label": null, + "name": "Abundance index", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 858.5, + "top": 113 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_ab_index/regionalgam_ab_index/1.5", + "tool_shed_repository": { + "changeset_revision": "d0ee713d4758", + "name": "regionalgam_ab_index", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"count_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"input2\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"__page__\": null}", + "tool_version": "1.5", + "type": "tool", + "uuid": "dc2f9ebc-b152-448d-aa10-59f7a9887b1a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "36b93f0d-fd21-42c6-8a46-9e050494e8b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_glmmpql/regionalgam_glmmpql/1.5", + "errors": null, + "id": 6, + "input_connections": { + "ab_indices": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Expected temporal trend", + "name": "ab_indices" + } + ], + "label": null, + "name": "Expected temporal trend", + "outputs": [ + { + "name": "output", + "type": "png" + }, + { + "name": "output2", + "type": "tabular" + } + ], + "position": { + "left": 1220, + "top": 271 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_glmmpql/regionalgam_glmmpql/1.5", + "tool_shed_repository": { + "changeset_revision": "f3e1b6d244a6", + "name": "regionalgam_glmmpql", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"ab_indices\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"__page__\": null}", + "tool_version": "1.5", + "type": "tool", + "uuid": "ad3dce5b-8b1a-4e59-8958-d78662fead44", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "1644d118-1263-4d3c-82b0-7920f81005a1" + }, + { + "label": null, + "output_name": "output", + "uuid": "823a7af6-9901-4a64-a79b-757f05b210c0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_gls/regionalgam_gls/1.5", + "errors": null, + "id": 7, + "input_connections": { + "ab_indices": { + "id": 4, + "output_name": "output" + }, + "collated_index": { + "id": 6, + "output_name": "output2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Model temporal trend", + "name": "ab_indices" + }, + { + "description": "runtime parameter for tool Model temporal trend", + "name": "collated_index" + } + ], + "label": null, + "name": "Model temporal trend", + "outputs": [ + { + "name": "output", + "type": "txt" + }, + { + "name": "output2", + "type": "rdata" + } + ], + "position": { + "left": 1447.5, + "top": 126 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_gls/regionalgam_gls/1.5", + "tool_shed_repository": { + "changeset_revision": "a79f5f0f17ad", + "name": "regionalgam_gls", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"ab_indices\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"collated_index\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__page__\": null}", + "tool_version": "1.5", + "type": "tool", + "uuid": "55136322-da2c-42df-ad78-cdb3e2d1562e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "e1db80b9-7d64-402c-b6c8-5d0e712648b9" + }, + { + "label": null, + "output_name": "output", + "uuid": "fc01949f-66e0-468d-8732-78ac000b08b4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_autocor_acf/regionalgam_autocor_acf/1.5", + "errors": null, + "id": 8, + "input_connections": { + "gls_model": { + "id": 7, + "output_name": "output2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Autocorrelation test", + "name": "gls_model" + } + ], + "label": null, + "name": "Autocorrelation test", + "outputs": [ + { + "name": "output", + "type": "png" + }, + { + "name": "output_res_values", + "type": "txt" + } + ], + "position": { + "left": 1639.5, + "top": 319 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_autocor_acf/regionalgam_autocor_acf/1.5", + "tool_shed_repository": { + "changeset_revision": "b416a363a2d5", + "name": "regionalgam_autocor_acf", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"gls_model\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "1.5", + "type": "tool", + "uuid": "45087faf-9c32-4504-b1a9-f8848991df0d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_res_values", + "uuid": "5ac64d1e-17f3-4893-b23f-7f93708b4e84" + }, + { + "label": null, + "output_name": "output", + "uuid": "83ccc28e-916a-4085-8ca6-5a3d85882b0f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_plot_trend/regionalgam_plot_trend/1.5", + "errors": null, + "id": 9, + "input_connections": { + "ab_indices": { + "id": 4, + "output_name": "output" + }, + "gls_model": { + "id": 7, + "output_name": "output2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Plot abundance", + "name": "ab_indices" + }, + { + "description": "runtime parameter for tool Plot abundance", + "name": "gls_model" + } + ], + "label": null, + "name": "Plot abundance", + "outputs": [ + { + "name": "output", + "type": "png" + }, + { + "name": "output_tsv", + "type": "tabular" + } + ], + "position": { + "left": 1956.5, + "top": 187 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_plot_trend/regionalgam_plot_trend/1.5", + "tool_shed_repository": { + "changeset_revision": "58ecd15e6836", + "name": "regionalgam_plot_trend", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"ab_indices\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"gls_model\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "1.5", + "type": "tool", + "uuid": "56614a2f-c2fa-4384-b5ba-d74de867452c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2d99abe9-e7de-4dc0-b999-0c696906e3b5" + }, + { + "label": null, + "output_name": "output_tsv", + "uuid": "e7cea5ca-9935-4654-a44f-7a31997234fe" + } + ] + } + ], + "parent_id": "ecology/regionalGAM", + "path": "topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_training_regionalGAM_complete_workflow.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Regional GAM Workflow", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-regionalGAM/versions/galaxy-workflow-tutorial-training-regionalgam-complete-workflow", + "tutorial_id": "regionalGAM", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_training_regionalGAM_complete_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/regionalGAM/workflows/Galaxy-Workflow-Tutorial_training_regionalGAM_complete_workflow.html", + "version": 5, + "wfid": "ecology-regionalGAM", + "wfname": "galaxy-workflow-tutorial-training-regionalgam-complete-workflow", + "workflow": "Galaxy-Workflow-Tutorial_training_regionalGAM_complete_workflow.ga", + "workflow_tools": [ + "Count1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_ab_index/regionalgam_ab_index/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_autocor_acf/regionalgam_autocor_acf/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_flight_curve/regionalgam_flight_curve/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_glmmpql/regionalgam_glmmpql/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_gls/regionalgam_gls/1.5", + "toolshed.g2.bx.psu.edu/repos/ecology/regionalgam_plot_trend/regionalgam_plot_trend/1.5", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1" + ], + "workflowhub_id": "1222" + } + ], + "zenodo_link": "https://zenodo.org/record/1324204" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "74a8bef53a00", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "64f11cf59c6e", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa_wrappers", + "owner": "devteam", + "revisions": "b4427dbb6ced", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "ff9530579d1f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "1c2db0054039", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stacks_populations", + "owner": "iuc", + "revisions": "45db1ba16163", + "tool_panel_section_label": "RAD-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stacks_procrad", + "owner": "iuc", + "revisions": "eded025438db", + "tool_panel_section_label": "RAD-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stacks_refmap", + "owner": "iuc", + "revisions": "d7a482f44e08", + "tool_panel_section_label": "RAD-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_replace", + "owner": "kellrott", + "revisions": "9a77d5fca67c", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: 74a8bef53a00\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 64f11cf59c6e\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa_wrappers\n owner: devteam\n revisions: b4427dbb6ced\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: ff9530579d1f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 1c2db0054039\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stacks_populations\n owner: iuc\n revisions: 45db1ba16163\n tool_panel_section_label: RAD-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stacks_procrad\n owner: iuc\n revisions: eded025438db\n tool_panel_section_label: RAD-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stacks_refmap\n owner: iuc\n revisions: d7a482f44e08\n tool_panel_section_label: RAD-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_replace\n owner: kellrott\n revisions: 9a77d5fca67c\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/ref-based-rad-seq/tutorial.json", + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + } + ], + "dir": "topics/ecology/tutorials/ref-based-rad-seq", + "edam_operation": [ + "Sequencing quality control", + "Genome indexing", + "Sequence alignment", + "Sequence composition calculation", + "Read mapping", + "Generation", + "Data handling", + "Validation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/ref-based-rad-seq", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Analysis of RAD sequencing data using a reference genome", + "SNP calling from RAD sequencing data", + "Calculate population genomics statistics from RAD sequencing data" + ], + "pageviews": 3737, + "pub_date": "2017-02-14", + "questions": [ + "How to analyze RAD sequencing data using a reference genome for a population genomics study?" + ], + "redirect_from": [ + "/topics/sequence-analysis/tutorials/ref-based-rad-seq/tutorial", + "/short/ecology/ref-based-rad-seq", + "/short/T00133" + ], + "short_id": "T00133", + "short_tools": [ + "Grep1", + "stacks_populations", + "cat1", + "multiqc", + "bwa_wrapper", + "stacks_refmap", + "regex_replace", + "Convert characters1", + "Count1", + "stacks_procrad", + "Cut1", + "fastqc", + "Filter1", + "tp_sort_header_tool", + "tp_replace_in_line", + "bwa", + "Summary_Statistics1", + "addValue" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "RAD-seq", + "Genetic composition EBV class", + "Species population EBV class", + "EBV dataset", + "EBV workflow" + ], + "time_estimation": "8h", + "title": "RAD-Seq Reference-based data analysis", + "tools": [ + "Convert characters1", + "Count1", + "Cut1", + "Filter1", + "Grep1", + "Summary_Statistics1", + "addValue", + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa/0.7.17.4", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa_wrappers/bwa_wrapper/1.2.3", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.71", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.6", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_populations/stacks_populations/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_procrad/stacks_procrad/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_refmap/stacks_refmap/1.46.0", + "toolshed.g2.bx.psu.edu/repos/kellrott/regex_replace/regex_replace/1.0.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ref-based-rad-seq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/ref-based-rad-seq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/ref-based-rad-seq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/ref-based-rad-seq/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 106, + "visitors": 2212, + "workflows": [ + { + "creators": [], + "description": "RAD-Seq Reference-based data analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEBI SRA: SRR034310 File: ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR034/SRR034310/SRR034310.fastq.gz\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/1134547/files/Barcode_SRR034310.txt\"]\n 10[label=\"FastQC\"]\n 5 -> 10 [label=\"demultiplexed\"]\n 11[label=\"Map with BWA\"]\n 5 -> 11 [label=\"demultiplexed\"]\n 3 -> 11 [label=\"output\"]\n 12[label=\"Select\"]\n 6 -> 12 [label=\"output_log\"]\n 13[label=\"Select\"]\n 6 -> 13 [label=\"output_log\"]\n 14[label=\"Replace Text\"]\n 7 -> 14 [label=\"outfile\"]\n 15[label=\"Replace Text\"]\n 8 -> 15 [label=\"out_file1\"]\n 16[label=\"Replace Text\"]\n 9 -> 16 [label=\"out_file1\"]\n 17[label=\"MultiQC\"]\n 10 -> 17 [label=\"text_file\"]\n 18[label=\"Replace Text\"]\n 12 -> 18 [label=\"out_file1\"]\n 19[label=\"Replace Text\"]\n 13 -> 19 [label=\"out_file1\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/1134547/files/Details_Barcode_Population_SRR034310.txt\"]\n 20[label=\"Add column\"]\n 14 -> 20 [label=\"outfile\"]\n 21[label=\"Concatenate datasets\"]\n 19 -> 21 [label=\"outfile\"]\n 15 -> 21 [label=\"outfile\"]\n 16 -> 21 [label=\"outfile\"]\n 18 -> 21 [label=\"outfile\"]\n 22[label=\"Cut\"]\n 20 -> 22 [label=\"out_file1\"]\n 23[label=\"Convert\"]\n 21 -> 23 [label=\"out_file1\"]\n 24[label=\"Regex Replace\"]\n 22 -> 24 [label=\"out_file1\"]\n 25[label=\"Stacks: reference map\"]\n 11 -> 25 [label=\"bam_output\"]\n 24 -> 25 [label=\"outfile\"]\n 26[label=\"Stacks: populations\"]\n 25 -> 26 [label=\"all_output\"]\n 24 -> 26 [label=\"outfile\"]\n 27[label=\"Summary Statistics\"]\n 26 -> 27 [label=\"out_fstats\"]\n 28[label=\"Sort\"]\n 26 -> 28 [label=\"out_fstats\"]\n 29[label=\"Count\"]\n 26 -> 29 [label=\"out_fstats\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/1134547/files/Reference_genome_11_chromosomes.fasta\"]\n 30[label=\"Filter\"]\n 26 -> 30 [label=\"out_fstats\"]\n 4[label=\"Stacks: process radtags\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Stacks: process radtags\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Stacks: process radtags\"]\n 1 -> 6 [label=\"output\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Replace Text\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Select\"]\n 4 -> 8 [label=\"output_log\"]\n 9[label=\"Select\"]\n 5 -> 9 [label=\"output_log\"]\n}", + "history": [ + { + "hash": "00cfc1f0873c7eee656d05fd549f5cd3eae6a8da", + "message": "out_fastp\u0125ase", + "num": 5, + "short_hash": "00cfc1f08", + "unix": "1579699186" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "ea197f141d3c4fcf8f8e424604a5d40bf9125ce6", + "message": "small changes", + "num": 3, + "short_hash": "ea197f141", + "unix": "1579091409" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "bfc1c8c3f8660106a468dbfbc3af09af3e48da72", + "message": "Move RAD-Seq tutorials to ecology topic", + "num": 1, + "short_hash": "bfc1c8c3f", + "unix": "1568279010" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "EBI SRA: SRR034310 File: ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR034/SRR034310/SRR034310.fastq.gz" + } + ], + "label": "EBI SRA: SRR034310 File: ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR034/SRR034310/SRR034310.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200.00001525878906, + "top": 200.00001525878906 + }, + "tool_id": null, + "tool_state": "{\"name\": \"EBI SRA: SRR034310 File: ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR034/SRR034310/SRR034310.fastq.gz\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4be2b939-61bf-4ed9-b134-5307c5127fe8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/1134547/files/Barcode_SRR034310.txt" + } + ], + "label": "https://zenodo.org/record/1134547/files/Barcode_SRR034310.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200.00001525878906, + "top": 320.00001525878906 + }, + "tool_id": null, + "tool_state": "{\"name\": \"https://zenodo.org/record/1134547/files/Barcode_SRR034310.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "95b8e56e-433d-4014-9dee-d9310863a20d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/1134547/files/Details_Barcode_Population_SRR034310.txt" + } + ], + "label": "https://zenodo.org/record/1134547/files/Details_Barcode_Population_SRR034310.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200.00001525878906, + "top": 440.0000305175781 + }, + "tool_id": null, + "tool_state": "{\"name\": \"https://zenodo.org/record/1134547/files/Details_Barcode_Population_SRR034310.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "43ca52f2-f60d-4fa6-9608-65ac4cc471b9", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/1134547/files/Reference_genome_11_chromosomes.fasta" + } + ], + "label": "https://zenodo.org/record/1134547/files/Reference_genome_11_chromosomes.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200.00001525878906, + "top": 577.9861450195312 + }, + "tool_id": null, + "tool_state": "{\"name\": \"https://zenodo.org/record/1134547/files/Reference_genome_11_chromosomes.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7c1d53db-b81d-40ab-8a75-221a94eb09ff", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nEBI SRA: SRR034310 File: ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR034/SRR034310/SRR034310.fastq.gz\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/1134547/files/Barcode_SRR034310.txt\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"FastQC\"];\n 5 -->|demultiplexed| 10;\n 11[\"Map with BWA\"];\n 5 -->|demultiplexed| 11;\n 3 -->|output| 11;\n 12[\"Select\"];\n 6 -->|output_log| 12;\n 13[\"Select\"];\n 6 -->|output_log| 13;\n 14[\"Replace Text\"];\n 7 -->|outfile| 14;\n 15[\"Replace Text\"];\n 8 -->|out_file1| 15;\n 16[\"Replace Text\"];\n 9 -->|out_file1| 16;\n 17[\"MultiQC\"];\n 10 -->|text_file| 17;\n 18[\"Replace Text\"];\n 12 -->|out_file1| 18;\n 19[\"Replace Text\"];\n 13 -->|out_file1| 19;\n 2[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/1134547/files/Details_Barcode_Population_SRR034310.txt\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 20[\"Add column\"];\n 14 -->|outfile| 20;\n 21[\"Concatenate datasets\"];\n 19 -->|outfile| 21;\n 15 -->|outfile| 21;\n 16 -->|outfile| 21;\n 18 -->|outfile| 21;\n 22[\"Cut\"];\n 20 -->|out_file1| 22;\n 23[\"Convert\"];\n 21 -->|out_file1| 23;\n 24[\"Regex Replace\"];\n 22 -->|out_file1| 24;\n 25[\"Stacks: reference map\"];\n 11 -->|bam_output| 25;\n 24 -->|outfile| 25;\n 26[\"Stacks: populations\"];\n 25 -->|all_output| 26;\n 24 -->|outfile| 26;\n 27[\"Summary Statistics\"];\n 26 -->|out_fstats| 27;\n 28[\"Sort\"];\n 26 -->|out_fstats| 28;\n 29[\"Count\"];\n 26 -->|out_fstats| 29;\n 3[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/1134547/files/Reference_genome_11_chromosomes.fasta\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 30[\"Filter\"];\n 26 -->|out_fstats| 30;\n 4[\"Stacks: process radtags\"];\n 1 -->|output| 4;\n 0 -->|output| 4;\n 5[\"Stacks: process radtags\"];\n 1 -->|output| 5;\n 0 -->|output| 5;\n 6[\"Stacks: process radtags\"];\n 1 -->|output| 6;\n 0 -->|output| 6;\n 7[\"Replace Text\"];\n 2 -->|output| 7;\n 8[\"Select\"];\n 4 -->|output_log| 8;\n 9[\"Select\"];\n 5 -->|output_log| 9;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Workflow Constructed From History 'STACKS RAD: Population Genomics With Reference Genome'", + "outputs": [], + "parent_id": "ecology/ref-based-rad-seq", + "path": "topics/ecology/tutorials/ref-based-rad-seq/workflows/Galaxy-Workflow-Workflow_constructed_from_history__STACKS_RAD__population_genomics_with_reference_genome_.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Workflow Constructed From History 'STACKS RAD: Population Genomics With Reference Genome'", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-ref-based-rad-seq/versions/galaxy-workflow-workflow-constructed-from-history--stacks-rad--population-genomics-with-reference-genome-", + "tutorial_id": "ref-based-rad-seq", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ref-based-rad-seq/workflows/Galaxy-Workflow-Workflow_constructed_from_history__STACKS_RAD__population_genomics_with_reference_genome_.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ref-based-rad-seq/workflows/Galaxy-Workflow-Workflow_constructed_from_history__STACKS_RAD__population_genomics_with_reference_genome_.html", + "version": 3, + "wfid": "ecology-ref-based-rad-seq", + "wfname": "galaxy-workflow-workflow-constructed-from-history--stacks-rad--population-genomics-with-reference-genome-", + "workflow": "Galaxy-Workflow-Workflow_constructed_from_history__STACKS_RAD__population_genomics_with_reference_genome_.ga", + "workflow_tools": [ + "Convert characters1", + "Count1", + "Cut1", + "Filter1", + "Grep1", + "Summary_Statistics1", + "addValue", + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa/0.7.17.4", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.71", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.6", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_populations/stacks_populations/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_procrad/stacks_procrad/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_refmap/stacks_refmap/1.46.0", + "toolshed.g2.bx.psu.edu/repos/kellrott/regex_replace/regex_replace/1.0.0" + ], + "workflowhub_id": "1250" + }, + { + "creators": [], + "description": "RAD-Seq Reference-based data analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nref_genome_chromFa.tar\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPopulation_map.txt\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBarcodes_SRR034310.tabular\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRR034310.fastq\"]\n 4[label=\"Stacks: process radtags\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"Stacks: process radtags\"]\n 2 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"output\"]\n 6[label=\"Stacks: process radtags\"]\n 2 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Map with BWA for Illumina\"]\n 0 -> 7 [label=\"output\"]\n 4 -> 7 [label=\"demultiplexed\"]\n 8[label=\"Stacks: reference map\"]\n 7 -> 8 [label=\"output\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"Stacks: populations\"]\n 8 -> 9 [label=\"all_output\"]\n 1 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "00cfc1f0873c7eee656d05fd549f5cd3eae6a8da", + "message": "out_fastp\u0125ase", + "num": 5, + "short_hash": "00cfc1f08", + "unix": "1579699186" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "ea197f141d3c4fcf8f8e424604a5d40bf9125ce6", + "message": "small changes", + "num": 3, + "short_hash": "ea197f141", + "unix": "1579091409" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "bfc1c8c3f8660106a468dbfbc3af09af3e48da72", + "message": "Move RAD-Seq tutorials to ecology topic", + "num": 1, + "short_hash": "bfc1c8c3f", + "unix": "1568279010" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ref_genome_chromFa.tar" + } + ], + "label": "ref_genome_chromFa.tar", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200.00001525878906, + "top": 200.00001525878906 + }, + "tool_id": null, + "tool_state": "{\"name\": \"ref_genome_chromFa.tar\"}", + "tool_version": null, + "type": "data_input", + "uuid": "d41b8a08-8893-4fe4-86c1-21caa8e95cb9", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Population_map.txt" + } + ], + "label": "Population_map.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200.00001525878906, + "top": 320.00001525878906 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Population_map.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "59b48fd7-4a76-4683-8e5b-b8db033e4f5d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Barcodes_SRR034310.tabular" + } + ], + "label": "Barcodes_SRR034310.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200.00001525878906, + "top": 440.00001525878906 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Barcodes_SRR034310.tabular\"}", + "tool_version": null, + "type": "data_input", + "uuid": "c7ea916e-f493-4e53-bbf5-1d9b0ab34c18", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR034310.fastq" + } + ], + "label": "SRR034310.fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200.00001525878906, + "top": 560.0000457763672 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR034310.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "8dcf8e48-fc08-4c2c-9aad-477de98b41d1", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nref_genome_chromFa.tar\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nPopulation_map.txt\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nBarcodes_SRR034310.tabular\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nSRR034310.fastq\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Stacks: process radtags\"];\n 2 -->|output| 4;\n 3 -->|output| 4;\n 5[\"Stacks: process radtags\"];\n 2 -->|output| 5;\n 3 -->|output| 5;\n 6[\"Stacks: process radtags\"];\n 2 -->|output| 6;\n 3 -->|output| 6;\n 7[\"Map with BWA for Illumina\"];\n 0 -->|output| 7;\n 4 -->|demultiplexed| 7;\n 8[\"Stacks: reference map\"];\n 7 -->|output| 8;\n 1 -->|output| 8;\n 9[\"Stacks: populations\"];\n 8 -->|all_output| 9;\n 1 -->|output| 9;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Ref Based Rad Seq", + "outputs": [], + "parent_id": "ecology/ref-based-rad-seq", + "path": "topics/ecology/tutorials/ref-based-rad-seq/workflows/workflow.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Ref Based Rad Seq", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-ref-based-rad-seq/versions/workflow", + "tutorial_id": "ref-based-rad-seq", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ref-based-rad-seq/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ref-based-rad-seq/workflows/workflow.html", + "version": 3, + "wfid": "ecology-ref-based-rad-seq", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa_wrappers/bwa_wrapper/1.2.3", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_populations/stacks_populations/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_procrad/stacks_procrad/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_refmap/stacks_refmap/1.46.0" + ], + "workflowhub_id": "1245" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1134547" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bracken", + "owner": "iuc", + "revisions": "1d4bd12f01cf", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "recentrifuge", + "owner": "iuc", + "revisions": "b5407cc2bf51", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bracken\n owner: iuc\n revisions: 1d4bd12f01cf\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: recentrifuge\n owner: iuc\n revisions: b5407cc2bf51\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/tutorial.json", + "contributions": { + "authorship": [ + "bebatut" + ], + "editing": [ + "clsiguret" + ], + "funding": [ + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "ifb", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "clea.siguret@gmail.com", + "id": "clsiguret", + "joined": "2024-04", + "linkedin": "cl\u00e9a-siguret-58423b107", + "matrix": "clsiguret:matrix.org", + "name": "Clea Siguret", + "orcid": "0009-0005-6140-0379", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/clsiguret/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/clsiguret.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/ecology/tutorials/bacterial-isolate-species-contamination-checking", + "edam_ontology": [ + "topic_3673", + "topic_0622", + "topic_3301", + "topic_3697" + ], + "edam_operation": [ + "Cross-assembly", + "Taxonomic classification", + "Expression analysis", + "Statistical calculation" + ], + "edam_topic": [ + "Whole genome sequencing", + "Genomics", + "Microbiology", + "Microbial ecology" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/bacterial-isolate-species-contamination-checking", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Kraken assigns taxons to sequences", + "Bracken extracts species from Kraken assignations", + "Recentrifuge extracts stats and creates visualization from Kraken report" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Run a series of tool to identify species in bacterial isolate sequencing data", + "Visualize the species abundance" + ], + "pageviews": 302, + "pub_date": "2024-03-04", + "questions": [ + "What are the species in bacterial isolate sequencing data?" + ], + "short_id": "T00423", + "short_tools": [ + "est_abundance", + "upload1", + "kraken2", + "recentrifuge" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologypreprocess", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "illumina", + "bacteria", + "microgalaxy" + ], + "time_estimation": "1H", + "title": "Checking expected species and contamination in bacterial isolate", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.12.1+galaxy0", + "upload1" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bacterial-isolate-species-contamination-checking", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 237, + "visitors": 229, + "workflows": [ + { + "creators": [ + { + "alternateName": "pimarin", + "class": "Person", + "email": "mailto:pierre.marin@france-bioinformatique.fr", + "familyName": "MARIN", + "identifier": "0000-0002-8304-138X", + "name": "Pierre" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Checking expected species and contamination in bacterial isolate", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreverse_reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nforward_reads\"]\n 2[label=\"Kraken2\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n ka408a64458cd4f5eaf2515b5ea63aa76[color=lightseagreen,label=\"Output\\nkraken_report_reads\"]\n 2 -> ka408a64458cd4f5eaf2515b5ea63aa76\n k54b85a5372ee4b73b1867fd55e8aab9b[color=lightseagreen,label=\"Output\\nkraken_report_tabular\"]\n 2 -> k54b85a5372ee4b73b1867fd55e8aab9b\n 3[label=\"Bracken\"]\n 2 -> 3 [label=\"report_output\"]\n kae6c6464f5f54e5bb616d38166fc0133[color=lightseagreen,label=\"Output\\nbracken_report_tsv\"]\n 3 -> kae6c6464f5f54e5bb616d38166fc0133\n k8ca52af9f83942b6aa74f1a6a1dfbbc8[color=lightseagreen,label=\"Output\\nbracken_kraken_report\"]\n 3 -> k8ca52af9f83942b6aa74f1a6a1dfbbc8\n 4[label=\"Recentrifuge\"]\n 2 -> 4 [label=\"output\"]\n kb5694f2dc8cd4460bfff74fd0792ecb3[color=lightseagreen,label=\"Output\\nrecentrifuge_stats_tabular\"]\n 4 -> kb5694f2dc8cd4460bfff74fd0792ecb3\n kbd947a1d0443465f86585d76d9ce69f8[color=lightseagreen,label=\"Output\\nrecentrifuge_report_html\"]\n 4 -> kbd947a1d0443465f86585d76d9ce69f8\n kc7457acb41bc4191b3fb6716e15fbe57[color=lightseagreen,label=\"Output\\nrecentrifuge_data_tabular\"]\n 4 -> kc7457acb41bc4191b3fb6716e15fbe57\n k94f6ff070e0647ad88f8a058d0808537[color=lightseagreen,label=\"Output\\nrecentrifuge_logfile\"]\n 4 -> k94f6ff070e0647ad88f8a058d0808537\n}", + "history": [ + { + "hash": "4854483dab21555869c5c49b91fa3113146c07dc", + "message": "Update Bracken version toolshed", + "num": 3, + "short_hash": "4854483da", + "unix": "1712233925" + }, + { + "hash": "96c80b0ad7e5179b3d43364e789efee1adeea130", + "message": "Update workflow creators", + "num": 2, + "short_hash": "96c80b0ad", + "unix": "1706542936" + }, + { + "hash": "96df58f868367e22ade2e451a1d9ecacba822bcc", + "message": "Create new tutorial for checking expected species and contamination in bacterial isolate", + "num": 1, + "short_hash": "96df58f86", + "unix": "1706542439" + } + ], + "inputs": [ + { + "annotation": "reverse_reads", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "reverse_reads", + "name": "reverse_reads" + } + ], + "label": "reverse_reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 56 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fastq\", \"fastq.gz\", \"fastqsanger\", \"fastqsanger.gz\"], \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a39893cf-49cb-4c5c-9e71-0f8004a2a1ee", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "forward_reads", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "forward_reads", + "name": "forward_reads" + } + ], + "label": "forward_reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 179 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fastq\", \"fastq.gz\", \"fastqsanger\", \"fastqsanger.gz\"], \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ca539dfd-e173-42d6-998a-0fc4c5f3d5b8", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nreverse_reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nforward_reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Kraken2\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n a408a644-58cd-4f5e-af25-15b5ea63aa76[\"Output\\nkraken_report_reads\"];\n 2 --> a408a644-58cd-4f5e-af25-15b5ea63aa76;\n style a408a644-58cd-4f5e-af25-15b5ea63aa76 stroke:#2c3143,stroke-width:4px;\n 54b85a53-72ee-4b73-b186-7fd55e8aab9b[\"Output\\nkraken_report_tabular\"];\n 2 --> 54b85a53-72ee-4b73-b186-7fd55e8aab9b;\n style 54b85a53-72ee-4b73-b186-7fd55e8aab9b stroke:#2c3143,stroke-width:4px;\n 3[\"Bracken\"];\n 2 -->|report_output| 3;\n ae6c6464-f5f5-4e5b-b616-d38166fc0133[\"Output\\nbracken_report_tsv\"];\n 3 --> ae6c6464-f5f5-4e5b-b616-d38166fc0133;\n style ae6c6464-f5f5-4e5b-b616-d38166fc0133 stroke:#2c3143,stroke-width:4px;\n 8ca52af9-f839-42b6-aa74-f1a6a1dfbbc8[\"Output\\nbracken_kraken_report\"];\n 3 --> 8ca52af9-f839-42b6-aa74-f1a6a1dfbbc8;\n style 8ca52af9-f839-42b6-aa74-f1a6a1dfbbc8 stroke:#2c3143,stroke-width:4px;\n 4[\"Recentrifuge\"];\n 2 -->|output| 4;\n b5694f2d-c8cd-4460-bfff-74fd0792ecb3[\"Output\\nrecentrifuge_stats_tabular\"];\n 4 --> b5694f2d-c8cd-4460-bfff-74fd0792ecb3;\n style b5694f2d-c8cd-4460-bfff-74fd0792ecb3 stroke:#2c3143,stroke-width:4px;\n bd947a1d-0443-465f-8658-5d76d9ce69f8[\"Output\\nrecentrifuge_report_html\"];\n 4 --> bd947a1d-0443-465f-8658-5d76d9ce69f8;\n style bd947a1d-0443-465f-8658-5d76d9ce69f8 stroke:#2c3143,stroke-width:4px;\n c7457acb-41bc-4191-b3fb-6716e15fbe57[\"Output\\nrecentrifuge_data_tabular\"];\n 4 --> c7457acb-41bc-4191-b3fb-6716e15fbe57;\n style c7457acb-41bc-4191-b3fb-6716e15fbe57 stroke:#2c3143,stroke-width:4px;\n 94f6ff07-0e06-47ad-88f8-a058d0808537[\"Output\\nrecentrifuge_logfile\"];\n 4 --> 94f6ff07-0e06-47ad-88f8-a058d0808537;\n style 94f6ff07-0e06-47ad-88f8-a058d0808537 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Checking expected species and contamination in bacterial isolate", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "single_paired|forward_input": { + "id": 1, + "output_name": "output" + }, + "single_paired|reverse_input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 280, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e674066930b2", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.0\", \"kraken2_database\": \"2023-08-24T153645Z_standard_prebuilt_pluspf_16gb_2022-06-07\", \"min_base_quality\": \"10\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"yes\", \"__current_case__\": 1, \"forward_input\": {\"__class__\": \"ConnectedValue\"}, \"reverse_input\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "75b7f2b8-2b63-4f1a-a877-4babef16a08b", + "when": null, + "workflow_outputs": [ + { + "label": "kraken_report_reads", + "output_name": "output", + "uuid": "a408a644-58cd-4f5e-af25-15b5ea63aa76" + }, + { + "label": "kraken_report_tabular", + "output_name": "report_output", + "uuid": "54b85a53-72ee-4b73-b186-7fd55e8aab9b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.9+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "report_output" + } + }, + "inputs": [], + "label": null, + "name": "Bracken", + "outputs": [ + { + "name": "report", + "type": "tabular" + }, + { + "name": "kraken_report", + "type": "tabular" + } + ], + "position": { + "left": 560, + "top": 40 + }, + "post_job_actions": { + "RenameDatasetActionkraken_report": { + "action_arguments": { + "newname": "bracken_kraken_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "kraken_report" + }, + "RenameDatasetActionreport": { + "action_arguments": { + "newname": "bracken_report_tsv" + }, + "action_type": "RenameDatasetAction", + "output_name": "report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "0357fb68688c419f", + "name": "bracken", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_distr\": \"bf6177af-7f5b-4005-9bec-fc7c89c3cb1c\", \"level\": \"S\", \"logfile_output\": false, \"out_report\": true, \"threshold\": \"10\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.8+galaxy0", + "type": "tool", + "uuid": "53b9c80b-f5f4-4fee-9778-fb4fd6b76165", + "when": null, + "workflow_outputs": [ + { + "label": "bracken_report_tsv", + "output_name": "report", + "uuid": "ae6c6464-f5f5-4e5b-b616-d38166fc0133" + }, + { + "label": "bracken_kraken_report", + "output_name": "kraken_report", + "uuid": "8ca52af9-f839-42b6-aa74-f1a6a1dfbbc8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.12.1+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Recentrifuge", + "outputs": [ + { + "name": "html_report", + "type": "html" + }, + { + "name": "logfile", + "type": "txt" + }, + { + "name": "data_tsv", + "type": "tabular" + }, + { + "name": "stat_tsv", + "type": "tabular" + } + ], + "position": { + "left": 560, + "top": 329 + }, + "post_job_actions": { + "RenameDatasetActiondata_tsv": { + "action_arguments": { + "newname": "recentrifuge_data_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "data_tsv" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "recentrifuge_report_html" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionlogfile": { + "action_arguments": { + "newname": "recentrifuge_logfile" + }, + "action_type": "RenameDatasetAction", + "output_name": "logfile" + }, + "RenameDatasetActionstat_tsv": { + "action_arguments": { + "newname": "recentrifuge_stats_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "stat_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.12.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "b5407cc2bf51", + "name": "recentrifuge", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_option\": {\"controls\": \"0\", \"scoring\": null, \"minscore_value\": \"0\", \"mintaxa\": \"0\", \"exclude_taxa_name\": null, \"include_taxa_name\": null, \"avoidcross\": false}, \"database\": {\"database_name\": \"ncbi-2023-06-27\"}, \"file_type\": {\"filetype\": \"kraken\", \"__current_case__\": 3}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"more_advanced_option\": {\"ctrlminscore\": \"0\", \"ctrlmintaxa\": \"0\", \"summary\": \"ADD\", \"takeoutroot\": false, \"nokollapse\": false, \"strain\": true, \"sequential\": false}, \"output_option\": {\"extra\": \"TSV\", \"nohtml\": false, \"no_logfile\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.12.1+galaxy0", + "type": "tool", + "uuid": "4b3b34ad-2352-4e93-abbc-69da3ab9ee3a", + "when": null, + "workflow_outputs": [ + { + "label": "recentrifuge_stats_tabular", + "output_name": "stat_tsv", + "uuid": "b5694f2d-c8cd-4460-bfff-74fd0792ecb3" + }, + { + "label": "recentrifuge_report_html", + "output_name": "html_report", + "uuid": "bd947a1d-0443-465f-8658-5d76d9ce69f8" + }, + { + "label": "recentrifuge_data_tabular", + "output_name": "data_tsv", + "uuid": "c7457acb-41bc-4191-b3fb-6716e15fbe57" + }, + { + "label": "recentrifuge_logfile", + "output_name": "logfile", + "uuid": "94f6ff07-0e06-47ad-88f8-a058d0808537" + } + ] + } + ], + "parent_id": "ecology/bacterial-isolate-species-contamination-checking", + "path": "topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/workflows/Checking-expected-species-and-contamination-in-bacterial-isolate.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": true, + "title": "Checking expected species and contamination in bacterial isolate", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-bacterial-isolate-species-contamination-checking/versions/checking-expected-species-and-contamination-in-bacterial-isolate", + "tutorial_id": "bacterial-isolate-species-contamination-checking", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/workflows/Checking-expected-species-and-contamination-in-bacterial-isolate.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/workflows/Checking-expected-species-and-contamination-in-bacterial-isolate.html", + "version": 2, + "wfid": "ecology-bacterial-isolate-species-contamination-checking", + "wfname": "checking-expected-species-and-contamination-in-bacterial-isolate", + "workflow": "Checking-expected-species-and-contamination-in-bacterial-isolate.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.12.1+galaxy0" + ], + "workflowhub_id": "1217" + } + ], + "zenodo_link": "https://zenodo.org/record/10572227" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastqc", + "owner": "devteam", + "revisions": "f2e8552cf1d0", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stacks_denovomap", + "owner": "iuc", + "revisions": "fdbcc560c691", + "tool_panel_section_label": "RAD-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stacks_populations", + "owner": "iuc", + "revisions": "45db1ba16163", + "tool_panel_section_label": "RAD-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stacks_procrad", + "owner": "iuc", + "revisions": "eded025438db", + "tool_panel_section_label": "RAD-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastqc\n owner: devteam\n revisions: f2e8552cf1d0\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stacks_denovomap\n owner: iuc\n revisions: fdbcc560c691\n tool_panel_section_label: RAD-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stacks_populations\n owner: iuc\n revisions: 45db1ba16163\n tool_panel_section_label: RAD-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stacks_procrad\n owner: iuc\n revisions: eded025438db\n tool_panel_section_label: RAD-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/de-novo-rad-seq/tutorial.json", + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + } + ], + "dir": "topics/ecology/tutorials/de-novo-rad-seq", + "edam_operation": [ + "Sequencing quality control", + "Data handling", + "Sequence composition calculation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/de-novo-rad-seq", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Analysis of RAD sequencing data without a reference genome", + "SNP calling from RAD sequencing data", + "Calculate population genomics statistics from RAD sequencing data" + ], + "pageviews": 3812, + "pub_date": "2017-02-14", + "questions": [ + "How to analyze RAD sequencing data without a reference genome for a population genomics study?" + ], + "redirect_from": [ + "/topics/sequence-analysis/tutorials/de-novo-rad-seq/tutorial", + "/short/ecology/de-novo-rad-seq", + "/short/T00128" + ], + "short_id": "T00128", + "short_tools": [ + "stacks_denovomap", + "fastqc", + "stacks_populations", + "stacks_procrad" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "RAD-seq", + "Genetic composition EBV class", + "Species populations EBV class", + "EBV dataset", + "EBV workflow" + ], + "time_estimation": "8h", + "title": "RAD-Seq de-novo data analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.69", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_denovomap/stacks_denovomap/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_populations/stacks_populations/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_procrad/stacks_procrad/1.46.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "de-novo-rad-seq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/de-novo-rad-seq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/de-novo-rad-seq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/de-novo-rad-seq/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 130, + "visitors": 2302, + "workflows": [ + { + "creators": [], + "description": "RAD-Seq de-novo data analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPopulation_map.txt\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBarcodes_SRR034310.tabular\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRR034310.fastq\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nref_genome_chromFa.tar\"]\n 4[label=\"Stacks: process radtags\"]\n 1 -> 4 [label=\"output\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Stacks: process radtags\"]\n 1 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Stacks: process radtags\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"FastQC\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Stacks: de novo map\"]\n 4 -> 8 [label=\"demultiplexed\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"Stacks: populations\"]\n 8 -> 9 [label=\"all_output\"]\n 0 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "00cfc1f0873c7eee656d05fd549f5cd3eae6a8da", + "message": "out_fastp\u0125ase", + "num": 5, + "short_hash": "00cfc1f08", + "unix": "1579699186" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "ea197f141d3c4fcf8f8e424604a5d40bf9125ce6", + "message": "small changes", + "num": 3, + "short_hash": "ea197f141", + "unix": "1579091409" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "bfc1c8c3f8660106a468dbfbc3af09af3e48da72", + "message": "Move RAD-Seq tutorials to ecology topic", + "num": 1, + "short_hash": "bfc1c8c3f", + "unix": "1568279010" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Population_map.txt" + } + ], + "label": "Population_map.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Population_map.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "c070e872-bf5b-4690-85f8-20435bce6495", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Barcodes_SRR034310.tabular" + } + ], + "label": "Barcodes_SRR034310.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 320 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Barcodes_SRR034310.tabular\"}", + "tool_version": null, + "type": "data_input", + "uuid": "27073ffe-9a96-4cee-a9c5-a95b9ab1e7c7", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR034310.fastq" + } + ], + "label": "SRR034310.fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 560 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR034310.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "16c3fb88-cdf5-418a-8e32-154bf142cca6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ref_genome_chromFa.tar" + } + ], + "label": "ref_genome_chromFa.tar", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 440 + }, + "tool_id": null, + "tool_state": "{\"name\": \"ref_genome_chromFa.tar\"}", + "tool_version": null, + "type": "data_input", + "uuid": "50b66134-d154-425e-a66f-51e05f5edb58", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPopulation_map.txt\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nBarcodes_SRR034310.tabular\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nSRR034310.fastq\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nref_genome_chromFa.tar\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Stacks: process radtags\"];\n 1 -->|output| 4;\n 2 -->|output| 4;\n 5[\"Stacks: process radtags\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 6[\"Stacks: process radtags\"];\n 1 -->|output| 6;\n 2 -->|output| 6;\n 7[\"FastQC\"];\n 2 -->|output| 7;\n 8[\"Stacks: de novo map\"];\n 4 -->|demultiplexed| 8;\n 0 -->|output| 8;\n 9[\"Stacks: populations\"];\n 8 -->|all_output| 9;\n 0 -->|output| 9;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "de novo Rad Seq", + "outputs": [], + "parent_id": "ecology/de-novo-rad-seq", + "path": "topics/ecology/tutorials/de-novo-rad-seq/workflows/Galaxy-Workflow-de-novo-rad-seq.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "de novo Rad Seq", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-de-novo-rad-seq/versions/galaxy-workflow-de-novo-rad-seq", + "tutorial_id": "de-novo-rad-seq", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/de-novo-rad-seq/workflows/Galaxy-Workflow-de-novo-rad-seq.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/de-novo-rad-seq/workflows/Galaxy-Workflow-de-novo-rad-seq.html", + "version": 3, + "wfid": "ecology-de-novo-rad-seq", + "wfname": "galaxy-workflow-de-novo-rad-seq", + "workflow": "Galaxy-Workflow-de-novo-rad-seq.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.69", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_denovomap/stacks_denovomap/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_populations/stacks_populations/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_procrad/stacks_procrad/1.46.0" + ], + "workflowhub_id": "1286" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1134547" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "stacks_denovomap", + "owner": "iuc", + "revisions": "fdbcc560c691", + "tool_panel_section_label": "RAD-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stacks_genotypes", + "owner": "iuc", + "revisions": "62a4b8e5e139", + "tool_panel_section_label": "RAD-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: stacks_denovomap\n owner: iuc\n revisions: fdbcc560c691\n tool_panel_section_label: RAD-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stacks_genotypes\n owner: iuc\n revisions: 62a4b8e5e139\n tool_panel_section_label: RAD-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/genetic-map-rad-seq/tutorial.json", + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + } + ], + "dir": "topics/ecology/tutorials/genetic-map-rad-seq", + "edam_operation": [ + "Data handling" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/genetic-map-rad-seq", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "SNP calling from RAD sequencing data", + "Find and correct haplotypes", + "Create input files for genetic map building software" + ], + "pageviews": 1088, + "pub_date": "2017-02-14", + "questions": [ + "How to analyze RAD sequencing data for a genetic map study?" + ], + "redirect_from": [ + "/topics/sequence-analysis/tutorials/genetic-map-rad-seq/tutorial", + "/short/ecology/genetic-map-rad-seq", + "/short/T00130" + ], + "short_id": "T00130", + "short_tools": [ + "stacks_denovomap", + "stacks_genotypes" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "RAD-seq", + "Genetic composition EBV class", + "EBV dataset", + "EBV workflow" + ], + "time_estimation": "8h", + "title": "RAD-Seq to construct genetic maps", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_denovomap/stacks_denovomap/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_genotypes/stacks_genotypes/1.46.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "genetic-map-rad-seq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/genetic-map-rad-seq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/genetic-map-rad-seq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/genetic-map-rad-seq/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 83, + "visitors": 747, + "workflows": [ + { + "creators": [], + "description": "RAD-Seq to construct genetic maps", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 10[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 11[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 12[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 13[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 14[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 15[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 16[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 17[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 18[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 19[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 20[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 21[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 22[label=\"Stacks: de novo map\"]\n 1 -> 22 [label=\"output\"]\n 0 -> 22 [label=\"output\"]\n 15 -> 22 [label=\"output\"]\n 14 -> 22 [label=\"output\"]\n 13 -> 22 [label=\"output\"]\n 12 -> 22 [label=\"output\"]\n 11 -> 22 [label=\"output\"]\n 10 -> 22 [label=\"output\"]\n 9 -> 22 [label=\"output\"]\n 8 -> 22 [label=\"output\"]\n 7 -> 22 [label=\"output\"]\n 6 -> 22 [label=\"output\"]\n 5 -> 22 [label=\"output\"]\n 4 -> 22 [label=\"output\"]\n 3 -> 22 [label=\"output\"]\n 2 -> 22 [label=\"output\"]\n 17 -> 22 [label=\"output\"]\n 18 -> 22 [label=\"output\"]\n 19 -> 22 [label=\"output\"]\n 20 -> 22 [label=\"output\"]\n 21 -> 22 [label=\"output\"]\n 16 -> 22 [label=\"output\"]\n 23[label=\"Stacks: genotypes\"]\n 22 -> 23 [label=\"all_output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "bfc1c8c3f8660106a468dbfbc3af09af3e48da72", + "message": "Move RAD-Seq tutorials to ecology topic", + "num": 1, + "short_hash": "bfc1c8c3f", + "unix": "1568279010" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "female.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"female.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2c38288c-adb6-4ac2-99a7-1f2bbb97e366", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "male.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"male.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cfa7a746-2f03-4eca-bea8-2c6a14173e3c", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_1.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_1.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "07615ec4-10af-4a33-a3b4-12cb107ede8f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_2.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_2.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e1ecc352-8a19-409a-a5a6-282721ffd482", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_3.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 490 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_3.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "21648aa0-f3e7-4378-ba1f-f8cdca509d61", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_4.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 610 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_4.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ca90884a-02b6-4685-95c1-62aed3267897", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_5.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 730 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_5.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cb156339-4a67-4539-943a-15de7e5880fc", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_6.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 850 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_6.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dfc34c06-efcc-40d8-a4d5-665629f25a0f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_7.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 970 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_7.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f30601cb-218c-4f1c-a5ec-1d97bea49294", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_8.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 1090 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_8.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bcc298aa-5437-4cca-a8d4-f1414bd70455", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 10, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_9.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 1210 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_9.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0c0ad65a-2df5-4aef-bcd2-db4a570aed81", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 11, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_10.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 1330 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_10.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3de49992-fc60-43c6-a8f5-dd34c29ace1c", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 12, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_11.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 1450 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_11.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "9d20cab4-c732-45bd-9b68-7bf5b0a2c9c0", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 13, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_12.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 1570 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_12.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "c1786041-32ff-4079-b653-5cfe682bc041", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 14, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_13.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 1690 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_13.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "89f8ce6d-21ea-4f07-9b15-58882b39d0ca", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 15, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_14.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 1810 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_14.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "6f7e59de-f796-4c80-a8aa-e70efe9c022b", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 16, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_15.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 1930 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_15.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "91e4dc8a-84a2-4530-aeab-2130270c7514", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 17, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_16.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 2050 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_16.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cb53dbf8-f79a-4374-bef4-8eec9adef44e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 18, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_17.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 2170 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_17.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4a8a8a60-e631-473c-aaaa-e61f627da84d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 19, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_18.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 2290 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_18.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e9235e06-b5ca-432a-8723-41134cc00832", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 20, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_19.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 2410 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_19.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "d6ceab00-6bff-474a-9e4e-21e1a9997756", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 21, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "progeny_20.fa" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 2530 + }, + "tool_id": null, + "tool_state": "{\"name\": \"progeny_20.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "b293304f-da0b-45ef-a2b9-94a9a747bfa5", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 9 stroke:#2c3143,stroke-width:4px;\n 10[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 10 stroke:#2c3143,stroke-width:4px;\n 11[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 11 stroke:#2c3143,stroke-width:4px;\n 12[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 12 stroke:#2c3143,stroke-width:4px;\n 13[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 13 stroke:#2c3143,stroke-width:4px;\n 14[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 14 stroke:#2c3143,stroke-width:4px;\n 15[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 15 stroke:#2c3143,stroke-width:4px;\n 16[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 16 stroke:#2c3143,stroke-width:4px;\n 17[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 17 stroke:#2c3143,stroke-width:4px;\n 18[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 18 stroke:#2c3143,stroke-width:4px;\n 19[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 19 stroke:#2c3143,stroke-width:4px;\n 20[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 20 stroke:#2c3143,stroke-width:4px;\n 21[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 21 stroke:#2c3143,stroke-width:4px;\n 22[\"Stacks: de novo map\"];\n 1 -->|output| 22;\n 0 -->|output| 22;\n 15 -->|output| 22;\n 14 -->|output| 22;\n 13 -->|output| 22;\n 12 -->|output| 22;\n 11 -->|output| 22;\n 10 -->|output| 22;\n 9 -->|output| 22;\n 8 -->|output| 22;\n 7 -->|output| 22;\n 6 -->|output| 22;\n 5 -->|output| 22;\n 4 -->|output| 22;\n 3 -->|output| 22;\n 2 -->|output| 22;\n 17 -->|output| 22;\n 18 -->|output| 22;\n 19 -->|output| 22;\n 20 -->|output| 22;\n 21 -->|output| 22;\n 16 -->|output| 22;\n 23[\"Stacks: genotypes\"];\n 22 -->|all_output| 23;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Genetic Map Rad Seq Workflow", + "outputs": [], + "parent_id": "ecology/genetic-map-rad-seq", + "path": "topics/ecology/tutorials/genetic-map-rad-seq/workflows/genetic-map-rad-seq.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Genetic Map Rad Seq Workflow", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-genetic-map-rad-seq/versions/genetic-map-rad-seq", + "tutorial_id": "genetic-map-rad-seq", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/genetic-map-rad-seq/workflows/genetic-map-rad-seq.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/genetic-map-rad-seq/workflows/genetic-map-rad-seq.html", + "version": 3, + "wfid": "ecology-genetic-map-rad-seq", + "wfname": "genetic-map-rad-seq", + "workflow": "genetic-map-rad-seq.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_denovomap/stacks_denovomap/1.46.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stacks_genotypes/stacks_genotypes/1.46.0" + ], + "workflowhub_id": "1216" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1219888" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "graphicsmagick_image_montage", + "owner": "bgruening", + "revisions": "a0f01c777820", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cdo_operations", + "owner": "climate", + "revisions": "d5355f6fa02b", + "tool_panel_section_label": "Climate Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_coords_info", + "owner": "ecology", + "revisions": "3e73f657a998", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_mapplot", + "owner": "ecology", + "revisions": "dc05bf0af58f", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xarray_metadata_info", + "owner": "ecology", + "revisions": "e8650cdf092f", + "tool_panel_section_label": "GIS Data Handling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: graphicsmagick_image_montage\n owner: bgruening\n revisions: a0f01c777820\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cdo_operations\n owner: climate\n revisions: d5355f6fa02b\n tool_panel_section_label: Climate Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_coords_info\n owner: ecology\n revisions: 3e73f657a998\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_mapplot\n owner: ecology\n revisions: dc05bf0af58f\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xarray_metadata_info\n owner: ecology\n revisions: e8650cdf092f\n tool_panel_section_label: GIS Data Handling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/x-array-map-plot/tutorial.json", + "contributors": [ + { + "id": "Quickbeasts51429", + "joined": "2022-06", + "name": "Soumya Jha", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Quickbeasts51429/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Quickbeasts51429.json" + } + ], + "dir": "topics/ecology/tutorials/x-array-map-plot", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/x-array-map-plot", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "NetCDF xarray climate data visualization", + "NetCDF xarray map plotting projections", + "NetCDF xarray map plotting colormaps" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Learn about plotting Climate Data", + "Learn about NetCDF xarray map plotting tool", + "Learn about visualizing the climate data using NetCDF xarray map plotting using the different kinds of projections and colormap options" + ], + "pageviews": 2253, + "pub_date": "2022-10-26", + "questions": [ + "What is xarray map plotting?", + "How to plot NetCDF data using xarray map plotting tool?", + "What are the different types of projections and colormap options available in the tool?" + ], + "requirements": [ + { + "topic_name": "climate", + "tutorials": [ + "climate-101" + ], + "type": "internal" + } + ], + "short_id": "T00136", + "short_tools": [ + "cdo_operations", + "graphicsmagick_image_montage", + "xarray_coords_info", + "xarray_metadata_info", + "xarray_mapplot" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyviz", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "pangeo" + ], + "time_estimation": "1H", + "title": "Visualization of Climate Data using NetCDF xarray Map Plotting", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_montage/graphicsmagick_image_montage/1.3.31+galaxy1", + "toolshed.g2.bx.psu.edu/repos/climate/cdo_operations/cdo_operations/2.0.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/0.20.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.20.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "x-array-map-plot", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/x-array-map-plot/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/x-array-map-plot/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/x-array-map-plot/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 31, + "visitors": 1924, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "Quickbeasts51429", + "name": "Soumya Jha" + } + ], + "description": "Visualization of Climate Data using NetCDF Xarray Map Plotting", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nair_temperature_at_2_metres.nc\"]\n 1[label=\"NetCDF xarray Coordinate Info\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"NetCDF xarray Metadata Info\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"CDO Operations\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"CDO Operations\"]\n 3 -> 4 [label=\"output_files\"]\n 5[label=\"NetCDF xarray Metadata Info\"]\n 4 -> 5 [label=\"output_files\"]\n 6[label=\"NetCDF xarray map plotting\"]\n 4 -> 6 [label=\"output_files\"]\n 5 -> 6 [label=\"output\"]\n 7[label=\"NetCDF xarray map plotting\"]\n 4 -> 7 [label=\"output_files\"]\n 5 -> 7 [label=\"output\"]\n}", + "history": [ + { + "hash": "ce9cd3e8d3c5487ed4bbce32d5d889ee84e91e9d", + "message": "Tutorial added to ecology folder: \"Visualization of Climate Data using NetCDF Xarray Map Plotting\" (#3481)", + "num": 1, + "short_hash": "ce9cd3e8d", + "unix": "1666808431" + } + ], + "inputs": [ + { + "annotation": "Upload the dataset : air temperatures at 2 metres , from the 'remote datasets'", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Upload the dataset : air temperatures at 2 metres , from the 'remote datasets'", + "name": "air_temperature_at_2_metres.nc" + } + ], + "label": "air_temperature_at_2_metres.nc", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": -16.41666666666667, + "height": 76.96875, + "left": -247.125, + "right": -97.125, + "top": -93.38541666666667, + "width": 150, + "x": -247.125, + "y": -93.38541666666667 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"input\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f1e7e3ca-c219-42e5-ab29-86be86e3a49c", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nair_temperature_at_2_metres.nc\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"NetCDF xarray Coordinate Info\"];\n 0 -->|output| 1;\n 2[\"NetCDF xarray Metadata Info\"];\n 0 -->|output| 2;\n 3[\"CDO Operations\"];\n 0 -->|output| 3;\n 4[\"CDO Operations\"];\n 3 -->|output_files| 4;\n 5[\"NetCDF xarray Metadata Info\"];\n 4 -->|output_files| 5;\n 6[\"NetCDF xarray map plotting\"];\n 4 -->|output_files| 6;\n 5 -->|output| 6;\n 7[\"NetCDF xarray map plotting\"];\n 4 -->|output_files| 7;\n 5 -->|output| 7;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Xarray_Map_Plotting_Workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/0.20.2+galaxy0", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray Coordinate Info", + "outputs": [ + { + "name": "output_dir", + "type": "input" + } + ], + "position": { + "bottom": 112.39583333333333, + "height": 85.21875, + "left": 101.77083333333333, + "right": 251.77083333333331, + "top": 27.177083333333332, + "width": 150, + "x": 101.77083333333333, + "y": 27.177083333333332 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/0.20.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3e73f657a998", + "name": "xarray_coords_info", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.2+galaxy0", + "type": "tool", + "uuid": "6f17f1e4-27d1-49af-a15d-080826d7a36b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_dir", + "uuid": "c60539a8-ee7d-479a-81e9-486d0f8221d9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NetCDF xarray Metadata Info", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "info", + "type": "txt" + } + ], + "position": { + "bottom": -29.4765625, + "height": 108.0234375, + "left": 59.333333333333336, + "right": 209.33333333333334, + "top": -137.5, + "width": 150, + "x": 59.333333333333336, + "y": -137.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "tool_shed_repository": { + "changeset_revision": "e8650cdf092f", + "name": "xarray_metadata_info", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.15.1", + "type": "tool", + "uuid": "a7264ebe-3a2a-4289-a441-6d1c6069c308", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9d7ca599-cbeb-4015-9906-45d3381b5fee" + }, + { + "label": null, + "output_name": "info", + "uuid": "930410e1-a49f-4484-9e71-d8d3a15fde9a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/climate/cdo_operations/cdo_operations/2.0.0+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "section_operators_0|operator|add_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "CDO Operations", + "outputs": [ + { + "name": "output_files", + "type": "input" + } + ], + "position": { + "bottom": 282.34895833333337, + "height": 115.828125, + "left": 119.98958333333333, + "right": 269.9895833333333, + "top": 166.52083333333334, + "width": 150, + "x": 119.98958333333333, + "y": 166.52083333333334 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/climate/cdo_operations/cdo_operations/2.0.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d5355f6fa02b", + "name": "cdo_operations", + "owner": "climate", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"section_operators\": [{\"__index__\": 0, \"operator\": {\"opt\": \"seltimestep\", \"__current_case__\": 27, \"params\": \"594/595\", \"add_file\": {\"__class__\": \"RuntimeValue\"}}}], \"section_option\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0+galaxy0", + "type": "tool", + "uuid": "c0830da8-262f-4ac2-ad4f-c4f283ab344a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_files", + "uuid": "9fb668b7-381d-4af9-9128-8e8d06c18023" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/climate/cdo_operations/cdo_operations/2.0.0+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "section_operators_0|operator|add_file": { + "id": 3, + "output_name": "output_files" + } + }, + "inputs": [], + "label": null, + "name": "CDO Operations", + "outputs": [ + { + "name": "output_files", + "type": "input" + } + ], + "position": { + "bottom": 304.46354166666663, + "height": 115.828125, + "left": 407.3333333333333, + "right": 557.3333333333333, + "top": 188.63541666666666, + "width": 150, + "x": 407.3333333333333, + "y": 188.63541666666666 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/climate/cdo_operations/cdo_operations/2.0.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d5355f6fa02b", + "name": "cdo_operations", + "owner": "climate", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"section_operators\": [{\"__index__\": 0, \"operator\": {\"opt\": \"splithour\", \"__current_case__\": 14, \"add_file\": {\"__class__\": \"RuntimeValue\"}}}], \"section_option\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0+galaxy0", + "type": "tool", + "uuid": "dbd1ef36-61b8-497a-859c-61640ec2c2ac", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_files", + "uuid": "b02a9565-40e3-4042-ae0b-e8dadc595082" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "output_files" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool NetCDF xarray Metadata Info", + "name": "input" + } + ], + "label": null, + "name": "NetCDF xarray Metadata Info", + "outputs": [ + { + "name": "output", + "type": "tabular" + }, + { + "name": "info", + "type": "txt" + } + ], + "position": { + "bottom": 559.6484375, + "height": 108.0234375, + "left": 669.9791666666666, + "right": 819.9791666666666, + "top": 451.625, + "width": 150, + "x": 669.9791666666666, + "y": 451.625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1", + "tool_shed_repository": { + "changeset_revision": "e8650cdf092f", + "name": "xarray_metadata_info", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.15.1", + "type": "tool", + "uuid": "388764c7-3d2f-448f-833e-63520411263e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "eac57113-dab5-4047-9e3e-082aa04375c9" + }, + { + "label": null, + "output_name": "info", + "uuid": "f629b534-e0fb-4dbc-8c4c-72b5f2105119" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.20.2+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 4, + "output_name": "output_files" + }, + "var_tab": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "input" + }, + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "var_tab" + } + ], + "label": null, + "name": "NetCDF xarray map plotting", + "outputs": [ + { + "name": "output_dir", + "type": "input" + }, + { + "name": "version", + "type": "tabular" + } + ], + "position": { + "bottom": 332.015625, + "height": 130.828125, + "left": 1004.7604166666666, + "right": 1154.7604166666665, + "top": 201.1875, + "width": 150, + "x": 1004.7604166666666, + "y": 201.1875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.20.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "dc05bf0af58f", + "name": "xarray_mapplot", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"borders\": \"1.0\", \"cmap\": \"cm.lajolla\", \"coastline\": \"1.0\", \"colorbar_label\": \"\", \"condi_datetime\": {\"datetime\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"land\": null, \"lat_dim\": \"lat\", \"lon_dim\": \"lon\", \"ocean\": \"1.0\", \"proj\": \"{'proj': 'Mercator', 'central_longitude': 12.0}\", \"range\": \"220,320\", \"shift\": \"\", \"threshold\": null, \"title\": \"Projection : Mercator 17:00 UTC \", \"var\": \"air_temperature_at_2_metres\", \"var_tab\": {\"__class__\": \"RuntimeValue\"}, \"xlim\": \"\", \"ylim\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.2+galaxy0", + "type": "tool", + "uuid": "bd88b706-c6b1-4a39-a0f5-24d2d306d3bc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_dir", + "uuid": "7540245d-ebf3-4446-b8f2-71dfa0410b2d" + }, + { + "label": null, + "output_name": "version", + "uuid": "8a0f1cb9-67bc-4554-9473-e10f482d3f79" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.20.2+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 4, + "output_name": "output_files" + }, + "var_tab": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "input" + }, + { + "description": "runtime parameter for tool NetCDF xarray map plotting", + "name": "var_tab" + } + ], + "label": null, + "name": "NetCDF xarray map plotting", + "outputs": [ + { + "name": "output_dir", + "type": "input" + }, + { + "name": "version", + "type": "tabular" + } + ], + "position": { + "bottom": 523.796875, + "height": 130.828125, + "left": 1005.3333333333334, + "right": 1155.3333333333335, + "top": 392.96875, + "width": 150, + "x": 1005.3333333333334, + "y": 392.96875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.20.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "dc05bf0af58f", + "name": "xarray_mapplot", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"borders\": \"1.0\", \"cmap\": \"cm.lajolla\", \"coastline\": \"1.0\", \"colorbar_label\": \"\", \"condi_datetime\": {\"datetime\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"land\": null, \"lat_dim\": \"lat\", \"lon_dim\": \"lon\", \"ocean\": \"1.0\", \"proj\": \"{'proj': 'Mercator', 'central_longitude': 12.0}\", \"range\": \"220,320\", \"shift\": \"\", \"threshold\": null, \"title\": \"Projection : Mercator 18:00 UTC \", \"var\": \"air_temperature_at_2_metres\", \"var_tab\": {\"__class__\": \"RuntimeValue\"}, \"xlim\": \"\", \"ylim\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.2+galaxy0", + "type": "tool", + "uuid": "1ec4337e-4927-4666-b2a7-f4cfe3eec203", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_dir", + "uuid": "d16f3d0e-1319-4534-bf43-e5f2068fb196" + }, + { + "label": null, + "output_name": "version", + "uuid": "040771d9-9700-4457-a50a-44a957fea91f" + } + ] + } + ], + "parent_id": "ecology/x-array-map-plot", + "path": "topics/ecology/tutorials/x-array-map-plot/workflows/main-workflow.ga", + "tags": [ + "ecology", + "climate" + ], + "test_results": null, + "tests": false, + "title": "Xarray_Map_Plotting_Workflow", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-x-array-map-plot/versions/main-workflow", + "tutorial_id": "x-array-map-plot", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/x-array-map-plot/workflows/main-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/x-array-map-plot/workflows/main-workflow.html", + "version": 1, + "wfid": "ecology-x-array-map-plot", + "wfname": "main-workflow", + "workflow": "main-workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/climate/cdo_operations/cdo_operations/2.0.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_coords_info/xarray_coords_info/0.20.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_mapplot/xarray_mapplot/0.20.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ecology/xarray_metadata_info/xarray_metadata_info/0.15.1" + ], + "workflowhub_id": "1260" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.6621460" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "cb_dissim", + "owner": "ecology", + "revisions": "8dc082da41c1", + "tool_panel_section_label": "Compute indicators for turnover boulders fields", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cb_div", + "owner": "ecology", + "revisions": "5b31641e6d30", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cb_ivr", + "owner": "ecology", + "revisions": "bcbad4f83dec", + "tool_panel_section_label": "Compute indicators for turnover boulders fields", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: cb_dissim\n owner: ecology\n revisions: 8dc082da41c1\n tool_panel_section_label: Compute indicators for turnover boulders fields\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cb_div\n owner: ecology\n revisions: 5b31641e6d30\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cb_ivr\n owner: ecology\n revisions: bcbad4f83dec\n tool_panel_section_label: Compute indicators for turnover boulders fields\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/champs-blocs/tutorial.json", + "contributions": { + "authorship": [ + "Marie59", + "yvanlebras" + ], + "funding": [ + "pndb" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/champs-blocs", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/champs-blocs", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Diversity indicators", + "Champs Blocs", + "Boulder Fields" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Calculate IVR (Visual Rollover Indicator)", + "Compute dissimilarity indice", + "Vizualize some diversity indices" + ], + "pageviews": 223, + "pub_date": "2023-01-04", + "questions": [ + "Which biological questions are addressed by the tutorial?", + "Which bioinformatics techniques are important to know for this type of data?" + ], + "short_id": "T00127", + "short_tools": [ + "cb_eco", + "cb_div", + "cb_ivr", + "cb_qecb", + "cb_dissim" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Champs blocs indicators", + "tools": [ + "cb_eco", + "cb_ivr", + "cb_qecb", + "toolshed.g2.bx.psu.edu/repos/ecology/cb_dissim/cb_dissim/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/cb_div/cb_div/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/cb_ivr/cb_ivr/0.0.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [ + "fr" + ], + "video": false + }, + "tutorial_name": "champs-blocs", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/champs-blocs/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/champs-blocs/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/champs-blocs/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 178, + "visitors": 88, + "workflows": [ + { + "creators": [], + "description": "Compute indicators for Champs blocs", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nchampbloc_ivr_val.csv\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nchampbloc_ivr.csv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nficheterrain_val.csv\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nficheterrain.csv\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nchampbloc_qecb_val.csv\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nchampbloc_qecb.csv\"]\n 6[label=\"IVR\"]\n 3 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"QECB\"]\n 3 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 4 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"output\"]\n 8[label=\"Champs blocs indicators\"]\n 7 -> 8 [label=\"output_rds\"]\n}", + "history": [ + { + "hash": "0b6778b7f1da935c60f9d7cbd6e8f2c9993bde5c", + "message": "Add champ bloc tutorial", + "num": 1, + "short_hash": "0b6778b7f", + "unix": "1670507254" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "champbloc_ivr_val.csv" + } + ], + "label": "champbloc_ivr_val.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 217.671875, + "height": 82.171875, + "left": 386, + "right": 586, + "top": 135.5, + "width": 200, + "x": 386, + "y": 135.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "eeb5efda-5d7d-4220-8e0f-2587fdf3ad7d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5fcbefd3-c2d2-4e85-8b90-8f1227afbd62" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "champbloc_ivr.csv" + } + ], + "label": "champbloc_ivr.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 305.671875, + "height": 82.171875, + "left": 383, + "right": 583, + "top": 223.5, + "width": 200, + "x": 383, + "y": 223.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "5a645b0a-9709-45d2-84d2-a334316ca860", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4580be50-8a61-4930-b031-e63701223b3b" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ficheterrain_val.csv" + } + ], + "label": "ficheterrain_val.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 400.671875, + "height": 82.171875, + "left": 380, + "right": 580, + "top": 318.5, + "width": 200, + "x": 380, + "y": 318.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dad7d6cf-b728-4e05-bf85-437bb84d71cd", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "16a16950-c439-4f47-9d23-e433152ac9e3" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ficheterrain.csv" + } + ], + "label": "ficheterrain.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 481.28125, + "height": 61.78125, + "left": 380, + "right": 580, + "top": 419.5, + "width": 200, + "x": 380, + "y": 419.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "82b42eb2-7530-4b90-884e-5f837b027dc7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ba5ad2d3-b368-45ad-8a68-f4150f74b505" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "champbloc_qecb_val.csv" + } + ], + "label": "champbloc_qecb_val.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 579.671875, + "height": 82.171875, + "left": 379, + "right": 579, + "top": 497.5, + "width": 200, + "x": 379, + "y": 497.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "34ec646b-ef25-4263-94db-d082e546a69f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5a2619ce-3765-47c8-9d22-11903e0552a4" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "champbloc_qecb.csv" + } + ], + "label": "champbloc_qecb.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 680.671875, + "height": 82.171875, + "left": 379, + "right": 579, + "top": 598.5, + "width": 200, + "x": 379, + "y": 598.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cb4cf37d-788d-42e5-9810-77b2ca4d190e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b1b2286a-a7af-4b5a-9ea0-c9ea60a48ba0" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nchampbloc_ivr_val.csv\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nchampbloc_ivr.csv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nficheterrain_val.csv\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nficheterrain.csv\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nchampbloc_qecb_val.csv\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nchampbloc_qecb.csv\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"IVR\"];\n 3 -->|output| 6;\n 2 -->|output| 6;\n 0 -->|output| 6;\n 1 -->|output| 6;\n 7[\"QECB\"];\n 3 -->|output| 7;\n 2 -->|output| 7;\n 4 -->|output| 7;\n 5 -->|output| 7;\n 8[\"Champs blocs indicators\"];\n 7 -->|output_rds| 8;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Champs blocs indicators", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "champbloc_ivr_val.csv" + } + ], + "label": "champbloc_ivr_val.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 217.671875, + "height": 82.171875, + "left": 386, + "right": 586, + "top": 135.5, + "width": 200, + "x": 386, + "y": 135.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "eeb5efda-5d7d-4220-8e0f-2587fdf3ad7d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5fcbefd3-c2d2-4e85-8b90-8f1227afbd62" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "champbloc_ivr.csv" + } + ], + "label": "champbloc_ivr.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 305.671875, + "height": 82.171875, + "left": 383, + "right": 583, + "top": 223.5, + "width": 200, + "x": 383, + "y": 223.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "5a645b0a-9709-45d2-84d2-a334316ca860", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4580be50-8a61-4930-b031-e63701223b3b" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ficheterrain_val.csv" + } + ], + "label": "ficheterrain_val.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 400.671875, + "height": 82.171875, + "left": 380, + "right": 580, + "top": 318.5, + "width": 200, + "x": 380, + "y": 318.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dad7d6cf-b728-4e05-bf85-437bb84d71cd", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "16a16950-c439-4f47-9d23-e433152ac9e3" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ficheterrain.csv" + } + ], + "label": "ficheterrain.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 481.28125, + "height": 61.78125, + "left": 380, + "right": 580, + "top": 419.5, + "width": 200, + "x": 380, + "y": 419.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "82b42eb2-7530-4b90-884e-5f837b027dc7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ba5ad2d3-b368-45ad-8a68-f4150f74b505" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "champbloc_qecb_val.csv" + } + ], + "label": "champbloc_qecb_val.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 579.671875, + "height": 82.171875, + "left": 379, + "right": 579, + "top": 497.5, + "width": 200, + "x": 379, + "y": 497.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "34ec646b-ef25-4263-94db-d082e546a69f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5a2619ce-3765-47c8-9d22-11903e0552a4" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "champbloc_qecb.csv" + } + ], + "label": "champbloc_qecb.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 680.671875, + "height": 82.171875, + "left": 379, + "right": 579, + "top": 598.5, + "width": 200, + "x": 379, + "y": 598.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cb4cf37d-788d-42e5-9810-77b2ca4d190e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b1b2286a-a7af-4b5a-9ea0-c9ea60a48ba0" + } + ] + }, + { + "annotation": "", + "content_id": "cb_ivr", + "errors": null, + "id": 6, + "input_connections": { + "fiche_term": { + "id": 3, + "output_name": "output" + }, + "fiche_val": { + "id": 2, + "output_name": "output" + }, + "input_data": { + "id": 0, + "output_name": "output" + }, + "input_data2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool IVR", + "name": "fiche_term" + }, + { + "description": "runtime parameter for tool IVR", + "name": "fiche_val" + }, + { + "description": "runtime parameter for tool IVR", + "name": "input_data" + }, + { + "description": "runtime parameter for tool IVR", + "name": "input_data2" + } + ], + "label": null, + "name": "IVR", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_rds", + "type": "input" + }, + { + "name": "output_ivr", + "type": "tabular" + } + ], + "position": { + "bottom": 392.625, + "height": 245.125, + "left": 1079, + "right": 1279, + "top": 147.5, + "width": 200, + "x": 1079, + "y": 147.5 + }, + "post_job_actions": {}, + "tool_id": "cb_ivr", + "tool_state": "{\"fiche_term\": {\"__class__\": \"RuntimeValue\"}, \"fiche_val\": {\"__class__\": \"RuntimeValue\"}, \"input_data\": {\"__class__\": \"RuntimeValue\"}, \"input_data2\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "7a3c6336-6af4-4122-82a9-2b1476f471bd", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "81408705-3fb8-41af-b329-fc9fbd360f52" + }, + { + "label": null, + "output_name": "output_rds", + "uuid": "e2dc091a-bb27-4132-9196-95a44ef78597" + }, + { + "label": null, + "output_name": "output_ivr", + "uuid": "60b6f4c5-a080-4daf-9f28-0c03132d42f2" + } + ] + }, + { + "annotation": "", + "content_id": "cb_qecb", + "errors": null, + "id": 7, + "input_connections": { + "fiche_term": { + "id": 3, + "output_name": "output" + }, + "fiche_val": { + "id": 2, + "output_name": "output" + }, + "input_data": { + "id": 4, + "output_name": "output" + }, + "input_data2": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool QECB", + "name": "fiche_term" + }, + { + "description": "runtime parameter for tool QECB", + "name": "fiche_val" + }, + { + "description": "runtime parameter for tool QECB", + "name": "input_data" + }, + { + "description": "runtime parameter for tool QECB", + "name": "input_data2" + } + ], + "label": null, + "name": "QECB", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_rds", + "type": "input" + }, + { + "name": "output_qecb", + "type": "tabular" + } + ], + "position": { + "bottom": 663.625, + "height": 245.125, + "left": 1092, + "right": 1292, + "top": 418.5, + "width": 200, + "x": 1092, + "y": 418.5 + }, + "post_job_actions": {}, + "tool_id": "cb_qecb", + "tool_state": "{\"fiche_term\": {\"__class__\": \"RuntimeValue\"}, \"fiche_val\": {\"__class__\": \"RuntimeValue\"}, \"input_data\": {\"__class__\": \"RuntimeValue\"}, \"input_data2\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "615551d9-0f93-4801-9a53-645448ee83db", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "3f823485-3454-4b57-a9f0-5071ae870aa0" + }, + { + "label": null, + "output_name": "output_rds", + "uuid": "6ba691f4-0a10-46c2-8737-1a7405becf8f" + }, + { + "label": null, + "output_name": "output_qecb", + "uuid": "de7b3d96-08d8-4f9e-884a-d1eefde7a670" + } + ] + }, + { + "annotation": "", + "content_id": "cb_eco", + "errors": null, + "id": 8, + "input_connections": { + "input_data": { + "id": 7, + "output_name": "output_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Ecology", + "name": "input_data" + } + ], + "label": "Champs blocs indicators", + "name": "Ecology", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_rds", + "type": "input" + }, + { + "name": "output_eco", + "type": "tabular" + } + ], + "position": { + "bottom": 659.84375, + "height": 174.34375, + "left": 1404, + "right": 1604, + "top": 485.5, + "width": 200, + "x": 1404, + "y": 485.5 + }, + "post_job_actions": {}, + "tool_id": "cb_eco", + "tool_state": "{\"input_data\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "d4897790-0e61-425a-a7d8-3120e653de81", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "6ba51e6e-8183-478d-a1f6-adee124a18aa" + }, + { + "label": null, + "output_name": "output_rds", + "uuid": "14901eab-4866-4d92-ac9e-e79390cd6b4d" + }, + { + "label": null, + "output_name": "output_eco", + "uuid": "ef6de5cf-0d90-47f1-bda9-0f44a7837555" + } + ] + } + ], + "parent_id": "ecology/champs-blocs", + "path": "topics/ecology/tutorials/champs-blocs/workflows/main_workflow.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Champs blocs indicators", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-champs-blocs/versions/main-workflow", + "tutorial_id": "champs-blocs", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/champs-blocs/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/champs-blocs/workflows/main_workflow.html", + "version": 1, + "wfid": "ecology-champs-blocs", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "cb_eco", + "cb_ivr", + "cb_qecb" + ], + "workflowhub_id": "1256" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "srs_diversity_maps", + "owner": "ecology", + "revisions": "9adccd3da70c", + "tool_panel_section_label": "Compute indicators for satellite remote sensing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "srs_global_indices", + "owner": "ecology", + "revisions": "5cae678042ec", + "tool_panel_section_label": "Compute indicators for satellite remote sensing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "srs_pca", + "owner": "ecology", + "revisions": "21e21363a8b4", + "tool_panel_section_label": "Compute indicators for satellite remote sensing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "srs_preprocess_s2", + "owner": "ecology", + "revisions": "33a1e15f7252", + "tool_panel_section_label": "Compute indicators for satellite remote sensing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "srs_process_data", + "owner": "ecology", + "revisions": "cf69ad260611", + "tool_panel_section_label": "Compute indicators for satellite remote sensing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "srs_spectral_indices", + "owner": "ecology", + "revisions": "b40aba3d9e5c", + "tool_panel_section_label": "Compute indicators for satellite remote sensing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: srs_diversity_maps\n owner: ecology\n revisions: 9adccd3da70c\n tool_panel_section_label: Compute indicators for satellite remote sensing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: srs_global_indices\n owner: ecology\n revisions: 5cae678042ec\n tool_panel_section_label: Compute indicators for satellite remote sensing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: srs_pca\n owner: ecology\n revisions: 21e21363a8b4\n tool_panel_section_label: Compute indicators for satellite remote sensing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: srs_preprocess_s2\n owner: ecology\n revisions: 33a1e15f7252\n tool_panel_section_label: Compute indicators for satellite remote sensing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: srs_process_data\n owner: ecology\n revisions: cf69ad260611\n tool_panel_section_label: Compute indicators for satellite remote sensing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: srs_spectral_indices\n owner: ecology\n revisions: b40aba3d9e5c\n tool_panel_section_label: Compute indicators for satellite remote sensing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/remote-sensing/tutorial.json", + "contributions": { + "authorship": [ + "Marie59", + "yvanlebras" + ], + "funding": [ + "pndb" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/remote-sensing", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/remote-sensing", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Remote sensing data can be useful to find hotspots of biodiversity.", + "Spectral indices are of key importance to asset vegetation well-being.", + "Always keep in mind that remote sensing and in-situ data are complementary." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Getting Sentinel 2 data and reformatting them in a generalized way", + "Computing spectral indices such as the NDVI", + "Calculating and visualizing biodiversity indicators", + "Comparing with in-situ data" + ], + "pageviews": 365, + "pub_date": "2023-04-13", + "questions": [ + "How to get spectral and biodiversity indicators from remote sensing data ?", + "Which kind of ecosystem are you studying ? global or canopy data ?" + ], + "short_id": "T00333", + "short_tools": [ + "srs_pca", + "srs_preprocess_s2", + "srs_spectral_indices", + "srs_global_indices", + "srs_diversity_maps", + "srs_process_data" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "Remote sensing" + ], + "time_estimation": "48H", + "title": "Sentinel 2 biodiversity", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/ecology/srs_diversity_maps/srs_diversity_maps/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/srs_global_indices/srs_global_indices/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/srs_pca/srs_pca/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/srs_preprocess_s2/srs_preprocess_s2/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/srs_process_data/srs_process_data/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/srs_spectral_indices/srs_spectral_indices/0.0.1" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "remote-sensing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/remote-sensing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/remote-sensing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/remote-sensing/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 89, + "visitors": 287, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "email": "mailto:marie14.josse@gmail.com", + "identifier": "Marie59", + "name": "Marie Josse" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSENTINEL2A_20230214-105638-781_L2A_T31UET_D.zip\"]\n 1[label=\"Preprocess sentinel 2 data\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Compute spectral indices\"]\n 1 -> 2 [label=\"output_refl\"]\n 3[label=\"Compute biodiversity indices\"]\n 1 -> 3 [label=\"output_refl\"]\n 4[label=\"Map diversity\"]\n 1 -> 4 [label=\"output_refl\"]\n}", + "history": [ + { + "hash": "9ec32f916371d75664d87bfc61c7209b16224f0d", + "message": "Add workflow", + "num": 1, + "short_hash": "9ec32f916", + "unix": "1681207567" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SENTINEL2A_20230214-105638-781_L2A_T31UET_D.zip" + } + ], + "label": "SENTINEL2A_20230214-105638-781_L2A_T31UET_D.zip", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 95.67931487630185 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bcaa7cfd-1850-48f5-9f3c-d476805764b5", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSENTINEL2A_20230214-105638-781_L2A_T31UET_D.zip\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Preprocess sentinel 2 data\"];\n 0 -->|output| 1;\n 2[\"Compute spectral indices\"];\n 1 -->|output_refl| 2;\n 3[\"Compute biodiversity indices\"];\n 1 -->|output_refl| 3;\n 4[\"Map diversity\"];\n 1 -->|output_refl| 4;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Sentinel 2 example", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/srs_preprocess_s2/srs_preprocess_s2/0.0.1", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Preprocess sentinel 2 data", + "name": "input" + } + ], + "label": null, + "name": "Preprocess sentinel 2 data", + "outputs": [ + { + "name": "output", + "type": "csv" + }, + { + "name": "output_refl", + "type": "zip" + }, + { + "name": "output_cloud", + "type": "zip" + } + ], + "position": { + "left": 338.55905768840034, + "top": 133.4050064677535 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/srs_preprocess_s2/srs_preprocess_s2/0.0.1", + "tool_shed_repository": { + "changeset_revision": "33a1e15f7252", + "name": "srs_preprocess_s2", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"source_s2\": \"SAFE\", \"type_s2\": \"2A\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.1", + "type": "tool", + "uuid": "5d5d8bc5-db29-41d5-8c49-ee27a480f5f7", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "77639f71-b4de-4cf7-a753-82ac095f640b" + }, + { + "label": null, + "output_name": "output_refl", + "uuid": "724fb3dc-e0e2-4f6c-a377-ad47c1b6306c" + }, + { + "label": null, + "output_name": "output_cloud", + "uuid": "af28d52b-ef5c-4bd8-817f-6881e4f6bdcc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/srs_spectral_indices/srs_spectral_indices/0.0.1", + "errors": null, + "id": 2, + "input_connections": { + "method|input": { + "id": 1, + "output_name": "output_refl" + } + }, + "inputs": [], + "label": null, + "name": "Compute spectral indices", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_indices", + "type": "tabular" + } + ], + "position": { + "left": 646.041836526378, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/srs_spectral_indices/srs_spectral_indices/0.0.1", + "tool_shed_repository": { + "changeset_revision": "a8dabbf47e15", + "name": "srs_spectral_indices", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"choice\": \"N\", \"input_indice\": [\"NDVI\"], \"method\": {\"type\": \"zipper\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.1", + "type": "tool", + "uuid": "a71dbaa9-14b9-4d71-8dc7-0b8c01da6de1", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_indices", + "uuid": "413c3c32-93a8-42f2-9a5f-515583743c6a" + }, + { + "label": null, + "output_name": "plots", + "uuid": "8156dd15-cabc-46b4-a483-1460e3ff87eb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/srs_global_indices/srs_global_indices/0.0.1", + "errors": null, + "id": 3, + "input_connections": { + "method|input": { + "id": 1, + "output_name": "output_refl" + } + }, + "inputs": [], + "label": null, + "name": "Compute biodiversity indices", + "outputs": [ + { + "name": "plots_png", + "type": "input" + }, + { + "name": "output_indices", + "type": "tabular" + } + ], + "position": { + "left": 643.2986798909894, + "top": 200.60987670512733 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/srs_global_indices/srs_global_indices/0.0.1", + "tool_shed_repository": { + "changeset_revision": "5cae678042ec", + "name": "srs_global_indices", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"2\", \"method\": {\"type\": \"zipper\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.1", + "type": "tool", + "uuid": "5f001f10-d438-408e-b768-6b128fc997b1", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "plots_png", + "uuid": "8a821365-181c-4e39-adda-db360859a4b9" + }, + { + "label": null, + "output_name": "output_indices", + "uuid": "1d529bee-5bda-43f8-9baa-a56ac64dc270" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/srs_diversity_maps/srs_diversity_maps/0.0.1", + "errors": null, + "id": 4, + "input_connections": { + "method|input": { + "id": 1, + "output_name": "output_refl" + } + }, + "inputs": [], + "label": null, + "name": "Map diversity", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_beta", + "type": "tabular" + } + ], + "position": { + "left": 641.2327166372127, + "top": 393.50916884961316 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/srs_diversity_maps/srs_diversity_maps/0.0.1", + "tool_shed_repository": { + "changeset_revision": "9adccd3da70c", + "name": "srs_diversity_maps", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"method\": {\"origin\": \"zipper\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"type\": \"beta\", \"typepca\": \"SPCA\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.1", + "type": "tool", + "uuid": "e2b9f2a3-2feb-4630-881e-7514f6728207", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "95fb8122-582a-4e01-b6b9-beae1920d0b6" + }, + { + "label": null, + "output_name": "output_beta", + "uuid": "6d5a4bb8-6abb-4581-842c-85ea3d05a5ab" + } + ] + } + ], + "parent_id": "ecology/remote-sensing", + "path": "topics/ecology/tutorials/remote-sensing/workflows/Sentinel-2-example.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Sentinel 2 example", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-remote-sensing/versions/sentinel-2-example", + "tutorial_id": "remote-sensing", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/remote-sensing/workflows/Sentinel-2-example.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/remote-sensing/workflows/Sentinel-2-example.html", + "version": 1, + "wfid": "ecology-remote-sensing", + "wfname": "sentinel-2-example", + "workflow": "Sentinel-2-example.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ecology/srs_diversity_maps/srs_diversity_maps/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/srs_global_indices/srs_global_indices/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/srs_preprocess_s2/srs_preprocess_s2/0.0.1", + "toolshed.g2.bx.psu.edu/repos/ecology/srs_spectral_indices/srs_spectral_indices/0.0.1" + ], + "workflowhub_id": "1211" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "0a8c6b61f0f4", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "spocc_occ", + "owner": "ecology", + "revisions": "f9d76a46799a", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 0a8c6b61f0f4\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: spocc_occ\n owner: ecology\n revisions: f9d76a46799a\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/species-distribution-modeling/tutorial.json", + "contributors": [ + { + "id": "emichn", + "joined": "2019-03", + "name": "Elisa Michon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emichn/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emichn.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/ecology/tutorials/species-distribution-modeling", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/species-distribution-modeling", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use 'classical' Galaxy tools in combination with Interactive tools", + "Identify general steps of a species distribution modeling aproach" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Find and download occurrences data from GBIF", + "Find and download environmental data", + "Process both occurrences and environmental data", + "Partition occurrence data", + "Model a theoretical ecological niche and predict species distribution in a future climate scenario by using SDM" + ], + "pageviews": 4127, + "pub_date": "2019-07-04", + "questions": [ + "How to build & evaluate a niche model, visualize and project it?" + ], + "requirements": null, + "short_id": "T00135", + "short_tools": [ + "tp_find_and_replace", + "tp_cut_tool", + "interactive_tool_wallace", + "tabular_to_csv", + "Filter1", + "spocc_occ" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools", + "modeling", + "gbif", + "species populations EBV class" + ], + "time_estimation": "1h", + "title": "Species distribution modeling", + "tools": [ + "Filter1", + "interactive_tool_wallace", + "tabular_to_csv", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.2", + "toolshed.g2.bx.psu.edu/repos/ecology/spocc_occ/spocc_occ/0.9.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "species-distribution-modeling", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/species-distribution-modeling/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/species-distribution-modeling/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/species-distribution-modeling/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 67, + "visitors": 2598, + "workflows": [ + { + "creators": [], + "description": "Species distribution modeling", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Get species occurrences data\"]\n 1[label=\"Wallace\"]\n 2[label=\"Cut\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Filter\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Convert tabular to CSV\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"Replace\"]\n 4 -> 5 [label=\"csv\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "de727da9edf3f1567430727c681c1eba5f4e9c90", + "message": "add SDM ecology.usegalaxy.eu workflow", + "num": 1, + "short_hash": "de727da9e", + "unix": "1575551509" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"Get species occurrences data\"];\n 1[\"Wallace\"];\n 2[\"Cut\"];\n 0 -->|output| 2;\n 3[\"Filter\"];\n 2 -->|output| 3;\n 4[\"Convert tabular to CSV\"];\n 3 -->|out_file1| 4;\n 5[\"Replace\"];\n 4 -->|csv| 5;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Species Distribution Modeling With Wallace From GBIF - Training Material", + "outputs": [ + { + "annotation": "", + "content_id": "interactive_tool_wallace", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Wallace", + "outputs": [ + { + "name": "outfile", + "type": "txt" + } + ], + "position": { + "left": 1077.5, + "top": 400.5 + }, + "post_job_actions": {}, + "tool_id": "interactive_tool_wallace", + "tool_state": "{}", + "tool_version": "0.1", + "type": "tool", + "uuid": "fe5c0b4c-b5ee-4c41-8145-bd9e610fd066", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "c9ce6982-0192-413d-a476-71c45c15ce4b" + } + ] + } + ], + "parent_id": "ecology/species-distribution-modeling", + "path": "topics/ecology/tutorials/species-distribution-modeling/workflows/Galaxy-Workflow-Species_Distribution_Modeling_with_Wallace_from_GBIF_-_Training_material.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Species Distribution Modeling With Wallace From GBIF - Training Material", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-species-distribution-modeling/versions/galaxy-workflow-species-distribution-modeling-with-wallace-from-gbif---training-material", + "tutorial_id": "species-distribution-modeling", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/species-distribution-modeling/workflows/Galaxy-Workflow-Species_Distribution_Modeling_with_Wallace_from_GBIF_-_Training_material.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/species-distribution-modeling/workflows/Galaxy-Workflow-Species_Distribution_Modeling_with_Wallace_from_GBIF_-_Training_material.html", + "version": 4, + "wfid": "ecology-species-distribution-modeling", + "wfname": "galaxy-workflow-species-distribution-modeling-with-wallace-from-gbif---training-material", + "workflow": "Galaxy-Workflow-Species_Distribution_Modeling_with_Wallace_from_GBIF_-_Training_material.ga", + "workflow_tools": [ + "Filter1", + "interactive_tool_wallace", + "tabular_to_csv", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.2", + "toolshed.g2.bx.psu.edu/repos/ecology/spocc_occ/spocc_occ/0.9.0" + ], + "workflowhub_id": "1235" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/MetaShARK_tutorial/tutorial.json", + "contributions": { + "authorship": [ + "yvanlebras", + "ThibaudGlinez" + ], + "editing": [ + "yvanlebras", + "ThibaudGlinez", + "hexylena" + ], + "funding": [ + "fnso2019", + "pndb" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "pndb", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "thibaud.glinez@mnhn.fr", + "id": "ThibaudGlinez", + "joined": "2024-02", + "name": "Glinez Thibaud", + "orcid": "0009-0006-8655-7505", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ThibaudGlinez/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ThibaudGlinez.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "pndb", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "thibaud.glinez@mnhn.fr", + "id": "ThibaudGlinez", + "joined": "2024-02", + "name": "Glinez Thibaud", + "orcid": "0009-0006-8655-7505", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ThibaudGlinez/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ThibaudGlinez.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/fnso.png", + "funder": true, + "funder_name": "National Fund for Open Science", + "funding_id": "AAPFNSO2019OpenMetaPaper-14026", + "funding_statement": "This project (AAPFNSO2019OpenMetaPaper-14026) is funded with the support of the national Fund for Open Science programme of the French Minister of Higher Education, Research and Innovation. Their funding has supported development of data/metadata management tools and related tutorial for Ecology and FAIR topics.\n\"French\n\"FNSO", + "github": false, + "id": "fnso2019", + "joined": "2023-05", + "members": [ + "yvanlebras" + ], + "name": "OpenMetaPaper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fnso2019/", + "short_name": "FNSO", + "url": "https://training.galaxyproject.org/training-material/api/funders/fnso2019.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/MetaShARK_tutorial", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/MetaShARK_tutorial", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "This tool aims to improve FAIR quality of metadata focusing on user exeprience and automatic inferences", + "Creating metadata as FAIR as possible is a must", + "Be carefull of the format and standard of metadata used only EML metadata will work" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Explain the necessity of using such tools when producing ecological metadata", + "Learn how to create rich metadata using Ecological Metadata Language (EML) standard", + "Learn how to update EML metadata" + ], + "pageviews": 83, + "pub_date": "2024-03-04", + "questions": [ + "How to generate detailled metadata easily from biodiversity datasets ?", + "How to use international metadata standard?", + "How to update metadata informations ?" + ], + "short_id": "T00422", + "short_tools": [ + "interactive_tool_metashark" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologymetadatamgt", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "Metadata", + "EML", + "Ecology", + "Biodiversity", + "FAIR", + "Data Paper", + "work-in-progress" + ], + "time_estimation": "30M", + "title": "Creating metadata using Ecological Metadata Language (EML) standard with EML Assembly Line functionalities", + "tools": [ + "interactive_tool_metashark" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "MetaShARK_tutorial", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/MetaShARK_tutorial/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/MetaShARK_tutorial/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/MetaShARK_tutorial/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 159, + "visitors": 57, + "zenodo_link": "https://zenodo.org/records/10663465" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/ndvi_openeo/tutorial.json", + "contributions": { + "authorship": [ + "Marie59" + ], + "funding": [ + "fairease", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "avatar": "/training-material/assets/images/fair_ease_colour.png", + "funder": true, + "funding_id": "101058785", + "funding_statement": "FAIR-EASE is a RIA project funded under HORIZON-INFRA-2021-EOSC-01-04, and it involves a consortium of 25 partners from all over Europe.", + "funding_system": "cordis", + "github": false, + "id": "fairease", + "joined": "2023-10", + "members": [ + "Marie59", + "yvanlebras" + ], + "name": "Fair-Ease", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fairease/", + "url": "https://training.galaxyproject.org/training-material/api/funders/fairease.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/ecology/tutorials/ndvi_openeo", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/ndvi_openeo", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Manage NDVI data", + "Handle jupyterlab tools" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-29", + "objectives": [ + "Use OpenEo technologies and learn how to download data with them", + "Learn to use Holoviz environment to process csv data", + "Create timeseries and visualisation of the NDVI", + "Handle going form one interactive tool to another" + ], + "pageviews": 78, + "pub_date": "2024-01-24", + "questions": [ + "What's the NDVI ?", + "How to evaluate the NDVI through out time ?" + ], + "short_id": "T00400", + "short_tools": [ + "interactive_tool_holoviz", + "interactive_tool_copernicus_notebook" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "earth-system", + "land degradation", + "NDVI", + "copernicus", + "holoviews" + ], + "time_estimation": "1H", + "title": "From NDVI data with OpenEO to time series visualisation with Holoviews", + "tools": [ + "interactive_tool_copernicus_notebook", + "interactive_tool_holoviz" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ndvi_openeo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/ndvi_openeo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/ndvi_openeo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/ndvi_openeo/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 67, + "visitors": 66, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0008-0622-604X", + "name": "Marie Joss\u00e9", + "url": "https://github.com/Marie59" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Copernicus Data Space Ecosystem\"]\n 1[label=\"Holoviz\"]\n 0 -> 1 [label=\"output_collection\"]\n}", + "history": [ + { + "hash": "76cb605583a35eb62c395933f9798887f5dd2164", + "message": "fix license test", + "num": 2, + "short_hash": "76cb60558", + "unix": "1705331890" + }, + { + "hash": "1b86f105a7a072e2405b937e816e682617fe779d", + "message": "add test files", + "num": 1, + "short_hash": "1b86f105a", + "unix": "1705326039" + } + ], + "inputs": [], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"Copernicus Data Space Ecosystem\"];\n 1[\"Holoviz\"];\n 0 -->|output_collection| 1;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "NDVI with OpenEO", + "outputs": [], + "parent_id": "ecology/ndvi_openeo", + "path": "topics/ecology/tutorials/ndvi_openeo/workflows/NDVI-with-OpenEO.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "NDVI with OpenEO", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-ndvi_openeo/versions/ndvi-with-openeo", + "tutorial_id": "ndvi_openeo", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ndvi_openeo/workflows/NDVI-with-OpenEO.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ndvi_openeo/workflows/NDVI-with-OpenEO.html", + "version": 1, + "wfid": "ecology-ndvi_openeo", + "wfname": "ndvi-with-openeo", + "workflow": "NDVI-with-OpenEO.ga", + "workflow_tools": [ + "interactive_tool_copernicus_notebook", + "interactive_tool_holoviz" + ], + "workflowhub_id": "1242" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0008-0622-604X", + "name": "Marie Joss\u00e9", + "url": "https://github.com/Marie59" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Copernicus Data Space Ecosystem\"]\n 1[label=\"Holoviz\"]\n 0 -> 1 [label=\"output_collection\"]\n}", + "history": [ + { + "hash": "c9e46f370f0170707bf194000ba7d81dedb1eb56", + "message": "fix license", + "num": 6, + "short_hash": "c9e46f370", + "unix": "1705331825" + }, + { + "hash": "fb3bcc497acebb64dfa435efd224496615913356", + "message": "add workflow", + "num": 5, + "short_hash": "fb3bcc497", + "unix": "1705324903" + }, + { + "hash": "0f88c406dde20fdb8f822000a7a6f10802d6d644", + "message": "Delete topics/ecology/tutorials/ndvi_openeo/workflows/main_workflow.ga", + "num": 4, + "short_hash": "0f88c406d", + "unix": "1705324823" + }, + { + "hash": "9336c867093f14929f5eeb2f8ac7ca7e3484f4f0", + "message": "add new workflow", + "num": 3, + "short_hash": "9336c8670", + "unix": "1705317870" + }, + { + "hash": "c8b1d5f64271724fb617321c267940f72c1cb062", + "message": "Delete topics/ecology/tutorials/ndvi_openeo/workflows/main_workflow.ga", + "num": 2, + "short_hash": "c8b1d5f64", + "unix": "1705317845" + }, + { + "hash": "9346f227c4a55267bedf0c2a76fb0c2b3fec185b", + "message": "add ndvi openeo tuto", + "num": 1, + "short_hash": "9346f227c", + "unix": "1705076722" + } + ], + "inputs": [], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"Copernicus Data Space Ecosystem\"];\n 1[\"Holoviz\"];\n 0 -->|output_collection| 1;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "NDVI with OpenEO", + "outputs": [], + "parent_id": "ecology/ndvi_openeo", + "path": "topics/ecology/tutorials/ndvi_openeo/workflows/main_workflow.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "NDVI with OpenEO", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-ndvi_openeo/versions/main-workflow", + "tutorial_id": "ndvi_openeo", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ndvi_openeo/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/ndvi_openeo/workflows/main_workflow.html", + "version": 1, + "wfid": "ecology-ndvi_openeo", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "interactive_tool_copernicus_notebook", + "interactive_tool_holoviz" + ], + "workflowhub_id": "1239" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ecology_beta_diversity", + "owner": "ecology", + "revisions": "fb7b2cbd80bb", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ecology_homogeneity_normality", + "owner": "ecology", + "revisions": "3df8937fd6fd", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ecology_link_between_var", + "owner": "ecology", + "revisions": "8e8867bf491a", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ecology_presence_abs_abund", + "owner": "ecology", + "revisions": "4ed07d2d442b", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ecology_stat_presence_abs", + "owner": "ecology", + "revisions": "9a2e0195bb43", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tool_anonymization", + "owner": "ecology", + "revisions": "726a387cfdc2", + "tool_panel_section_label": "Biodiversity data exploration", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "209b7c5ee9d7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ecology_beta_diversity\n owner: ecology\n revisions: fb7b2cbd80bb\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ecology_homogeneity_normality\n owner: ecology\n revisions: 3df8937fd6fd\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ecology_link_between_var\n owner: ecology\n revisions: 8e8867bf491a\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ecology_presence_abs_abund\n owner: ecology\n revisions: 4ed07d2d442b\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ecology_stat_presence_abs\n owner: ecology\n revisions: 9a2e0195bb43\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tool_anonymization\n owner: ecology\n revisions: 726a387cfdc2\n tool_panel_section_label: Biodiversity data exploration\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 209b7c5ee9d7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/biodiversity-data-exploration/tutorial.json", + "contributions": { + "authorship": [ + "onorvez", + "Marie59", + "colineroyaux", + "yvanlebras" + ], + "funding": [ + "pndb", + "gallantries", + "pndb", + "fnso2019" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "olivier.norvez@mnhn.fr", + "id": "onorvez", + "joined": "2022-02", + "name": "Olivier Norvez", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/onorvez/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/onorvez.json" + }, + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "coline.royaux@mnhn.fr", + "id": "colineroyaux", + "joined": "2020-11", + "name": "Coline Royaux", + "orcid": "0000-0003-4308-5617", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/colineroyaux/", + "twitter": "ColineRoyaux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/colineroyaux.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + }, + { + "avatar": "/training-material/shared/images/fnso.png", + "funder": true, + "funder_name": "National Fund for Open Science", + "funding_id": "AAPFNSO2019OpenMetaPaper-14026", + "funding_statement": "This project (AAPFNSO2019OpenMetaPaper-14026) is funded with the support of the national Fund for Open Science programme of the French Minister of Higher Education, Research and Innovation. Their funding has supported development of data/metadata management tools and related tutorial for Ecology and FAIR topics.\n\"French\n\"FNSO", + "github": false, + "id": "fnso2019", + "joined": "2023-05", + "members": [ + "yvanlebras" + ], + "name": "OpenMetaPaper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fnso2019/", + "short_name": "FNSO", + "url": "https://training.galaxyproject.org/training-material/api/funders/fnso2019.json" + } + ], + "dir": "topics/ecology/tutorials/biodiversity-data-exploration", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/biodiversity-data-exploration", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Explore your data before diving into deep analysis" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Explore Biodiversity data with taxonomic, temporal and geographical informations", + "Have an idea about quality content of the data regarding statistical tests like normality or homoscedasticity and coverage like temporal or geographical coverage" + ], + "pageviews": 1665, + "pub_date": "2022-03-01", + "questions": [ + "How to explore biodiversity data?", + "How to look at Homoscedasticity, normality or collinearity of presences-absence or abundance data?", + "How to compare beta diversity taking into account space, time and species components?" + ], + "recordings": [ + { + "captioners": [ + "onorvez" + ], + "date": "2022-03-03", + "galaxy_version": "21.09", + "length": "1H", + "speakers": [ + "onorvez" + ], + "youtube_id": "rWfPr-5F3GQ" + } + ], + "short_id": "T00126", + "short_tools": [ + "ecology_beta_diversity", + "ecology_stat_presence_abs", + "tp_cut_tool", + "ecology_presence_abs_abund", + "ecology_link_between_var", + "tool_anonymization", + "Remove beginning1", + "regexColumn1", + "ecology_homogeneity_normality" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologypreprocess", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "taxonomic data", + "data quality" + ], + "time_estimation": "1H", + "title": "Biodiversity data exploration", + "tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_beta_diversity/ecology_beta_diversity/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_homogeneity_normality/ecology_homogeneity_normality/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_link_between_var/ecology_link_between_var/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_presence_abs_abund/ecology_presence_abs_abund/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_stat_presence_abs/ecology_stat_presence_abs/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/tool_anonymization/tool_anonymization/0.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "biodiversity-data-exploration", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/biodiversity-data-exploration/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/biodiversity-data-exploration/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/biodiversity-data-exploration/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 173, + "visitors": 1133, + "workflows": [ + { + "creators": [], + "description": "Biodiversity data exploration", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReel_life_survey_fish_modif.tabular\"]\n 1[label=\"Spatial coordinates anonymization\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Homoscedasticity and normality\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Variables exploration\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Presence-absence and abundance\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Statistics on presence-absence\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Local Contributions to Beta Diversity LCBD\"]\n 0 -> 6 [label=\"output\"]\n}", + "history": [ + { + "hash": "00c1aaba1d1373e4f148e8312a54ae9cd4a38876", + "message": "Make some renames for the gtn", + "num": 1, + "short_hash": "00c1aaba1", + "unix": "1646129123" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reel_life_survey_fish_modif.tabular" + } + ], + "label": "Reel_life_survey_fish_modif.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 226.44445037841797, + "height": 102.55555725097656, + "left": 393, + "right": 593, + "top": 123.8888931274414, + "width": 200, + "x": 393, + "y": 123.8888931274414 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "01b5e1a1-50d0-46d2-8b68-1cbeaa4a929a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "97fc5a7d-db66-4c7d-8d58-97a167c4867e" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nReel_life_survey_fish_modif.tabular\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Spatial coordinates anonymization\"];\n 0 -->|output| 1;\n 2[\"Homoscedasticity and normality\"];\n 0 -->|output| 2;\n 3[\"Variables exploration\"];\n 0 -->|output| 3;\n 4[\"Presence-absence and abundance\"];\n 0 -->|output| 4;\n 5[\"Statistics on presence-absence\"];\n 0 -->|output| 5;\n 6[\"Local Contributions to Beta Diversity LCBD\"];\n 0 -->|output| 6;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Workflow 'Biodiversity data exploration tuto'", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reel_life_survey_fish_modif.tabular" + } + ], + "label": "Reel_life_survey_fish_modif.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 226.44445037841797, + "height": 102.55555725097656, + "left": 393, + "right": 593, + "top": 123.8888931274414, + "width": 200, + "x": 393, + "y": 123.8888931274414 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "01b5e1a1-50d0-46d2-8b68-1cbeaa4a929a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "97fc5a7d-db66-4c7d-8d58-97a167c4867e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/tool_anonymization/tool_anonymization/0.0.0", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Spatial coordinates anonymization", + "name": "input" + } + ], + "label": null, + "name": "Spatial coordinates anonymization", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 240.44445037841797, + "height": 113.55555725097656, + "left": 610, + "right": 810, + "top": 126.8888931274414, + "width": 200, + "x": 610, + "y": 126.8888931274414 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/tool_anonymization/tool_anonymization/0.0.0", + "tool_shed_repository": { + "changeset_revision": "726a387cfdc2", + "name": "tool_anonymization", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"colnames\": \"true\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"latitude\": \"9\", \"longitude\": \"10\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "c629e167-96eb-48e3-b1fe-a6d1d315acb0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5deea508-0542-4eb8-ac66-84ac0a7162c2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_homogeneity_normality/ecology_homogeneity_normality/0.0.0", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Homoscedasticity and normality", + "name": "input" + } + ], + "label": null, + "name": "Homoscedasticity and normality", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_levene", + "type": "txt" + }, + { + "name": "output_ks", + "type": "txt" + } + ], + "position": { + "bottom": 414.3888854980469, + "height": 235.5, + "left": 617, + "right": 817, + "top": 178.88888549804688, + "width": 200, + "x": 617, + "y": 178.88888549804688 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_homogeneity_normality/ecology_homogeneity_normality/0.0.0", + "tool_shed_repository": { + "changeset_revision": "3df8937fd6fd", + "name": "ecology_homogeneity_normality", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"colnames\": \"true\", \"date\": \"11\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"species\": \"16\", \"variable\": \"18\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "06eb8a3f-1702-4ca5-8124-f501adbb4acc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_levene", + "uuid": "30bc9ecc-c9de-4e74-bc9d-284f2d5a60aa" + }, + { + "label": null, + "output_name": "output_ks", + "uuid": "df48b84c-5bc3-4eca-bbde-dbf21e708959" + }, + { + "label": null, + "output_name": "plots", + "uuid": "08790bfd-cfb2-44cb-a156-a71abcd91369" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_link_between_var/ecology_link_between_var/0.0.0", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Variables exploration", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_coli", + "type": "txt" + } + ], + "position": { + "bottom": 408.2222137451172, + "height": 164.3333282470703, + "left": 613, + "right": 813, + "top": 243.88888549804688, + "width": 200, + "x": 613, + "y": 243.88888549804688 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_link_between_var/ecology_link_between_var/0.0.0", + "tool_shed_repository": { + "changeset_revision": "8e8867bf491a", + "name": "ecology_link_between_var", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"colnames\": \"true\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"method\": {\"type\": \"collinearity\", \"__current_case__\": 0, \"species\": \"16\", \"columns\": [\"12\", \"17\", \"18\"]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "83cdbf22-ac7e-4ddf-a444-3de0b347d613", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_coli", + "uuid": "a8a2bbd3-aedc-4b40-adb1-abdac7e95034" + }, + { + "label": null, + "output_name": "plots", + "uuid": "0f18247b-f4a3-45c5-9053-bfd3fb2ad6a1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_presence_abs_abund/ecology_presence_abs_abund/0.0.0", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Presence-absence and abundance", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_abund", + "type": "txt" + } + ], + "position": { + "bottom": 507.8333282470703, + "height": 143.94444274902344, + "left": 613, + "right": 813, + "top": 363.8888854980469, + "width": 200, + "x": 613, + "y": 363.8888854980469 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_presence_abs_abund/ecology_presence_abs_abund/0.0.0", + "tool_shed_repository": { + "changeset_revision": "4ed07d2d442b", + "name": "ecology_presence_abs_abund", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"abundance\": \"18\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"colnames\": \"true\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"method\": {\"type\": \"abund\", \"__current_case__\": 0, \"latitude\": \"9\", \"longitude\": \"10\", \"individual\": \"fishes\", \"species\": \"16\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "46f4249f-7a72-4d75-8a3f-a1fa62cba536", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_abund", + "uuid": "83036527-2e15-4c84-b521-262c88fe5657" + }, + { + "label": null, + "output_name": "plots", + "uuid": "7ecccacc-3ab4-449e-bb61-5378d14fb42b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_stat_presence_abs/ecology_stat_presence_abs/0.0.0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Statistics on presence-absence", + "outputs": [ + { + "name": "output_md", + "type": "png" + }, + { + "name": "output_0", + "type": "png" + } + ], + "position": { + "bottom": 668.6111145019531, + "height": 184.72222900390625, + "left": 613, + "right": 813, + "top": 483.8888854980469, + "width": 200, + "x": 613, + "y": 483.8888854980469 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_stat_presence_abs/ecology_stat_presence_abs/0.0.0", + "tool_shed_repository": { + "changeset_revision": "9a2e0195bb43", + "name": "ecology_stat_presence_abs", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"colnames\": \"true\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"location\": \"8\", \"species\": \"16\", \"time\": \"11\", \"variable1\": \"18\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "d8d3a4db-e5e3-4453-87e0-592d987987a6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_0", + "uuid": "494e4e8d-93ca-466e-a0ea-3ea83f59d64a" + }, + { + "label": null, + "output_name": "output_md", + "uuid": "74b67cb1-d5d6-418b-a56a-645d0b17f559" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_beta_diversity/ecology_beta_diversity/0.0.0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Local Contributions to Beta Diversity (LCBD)", + "outputs": [ + { + "name": "plots", + "type": "input" + }, + { + "name": "output_lcbd", + "type": "txt" + }, + { + "name": "output_scbd", + "type": "txt" + }, + { + "name": "output_beta", + "type": "Rdata" + } + ], + "position": { + "bottom": 890.1666870117188, + "height": 286.27777099609375, + "left": 613, + "right": 813, + "top": 603.888916015625, + "width": 200, + "x": 613, + "y": 603.888916015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/ecology_beta_diversity/ecology_beta_diversity/0.0.0", + "tool_shed_repository": { + "changeset_revision": "fb7b2cbd80bb", + "name": "ecology_beta_diversity", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"abundance\": \"18\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"colnames\": \"true\", \"date\": \"11\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"location\": \"8\", \"method\": {\"type\": \"Graph\", \"__current_case__\": 0, \"latitude\": \"9\", \"longitude\": \"10\"}, \"rdata\": \"true\", \"species\": \"16\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.0", + "type": "tool", + "uuid": "16c310f1-d14c-4778-a5cf-4798e3eb7043", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "d6465151-e83a-4031-bd96-8a8f3d999bbb" + }, + { + "label": null, + "output_name": "output_lcbd", + "uuid": "418fbdae-1a70-4e8c-a645-9e34b009f976" + }, + { + "label": null, + "output_name": "output_scbd", + "uuid": "dd87eda6-8f3c-4e76-b3ae-f5c464697956" + }, + { + "label": null, + "output_name": "output_beta", + "uuid": "acf06966-78ec-4013-a32b-061b385808cf" + } + ] + } + ], + "parent_id": "ecology/biodiversity-data-exploration", + "path": "topics/ecology/tutorials/biodiversity-data-exploration/workflows/main_workflow.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Workflow 'Biodiversity data exploration tuto'", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-biodiversity-data-exploration/versions/main-workflow", + "tutorial_id": "biodiversity-data-exploration", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/biodiversity-data-exploration/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/biodiversity-data-exploration/workflows/main_workflow.html", + "version": 1, + "wfid": "ecology-biodiversity-data-exploration", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_beta_diversity/ecology_beta_diversity/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_homogeneity_normality/ecology_homogeneity_normality/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_link_between_var/ecology_link_between_var/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_presence_abs_abund/ecology_presence_abs_abund/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/ecology_stat_presence_abs/ecology_stat_presence_abs/0.0.0", + "toolshed.g2.bx.psu.edu/repos/ecology/tool_anonymization/tool_anonymization/0.0.0" + ], + "workflowhub_id": "1278" + } + ], + "zenodo_link": "https://zenodo.org/record/6107457" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "ddf54b12c295", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merge_cols", + "owner": "devteam", + "revisions": "dd40b1e9eebe", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pampa_communitymetrics", + "owner": "ecology", + "revisions": "c67ece97d4b1", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pampa_glmcomm", + "owner": "ecology", + "revisions": "b40fecef616b", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pampa_glmsp", + "owner": "ecology", + "revisions": "7a69e1c8ba46", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pampa_plotglm", + "owner": "ecology", + "revisions": "c448e026f122", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pampa_presabs", + "owner": "ecology", + "revisions": "1ebb70b59037", + "tool_panel_section_label": "Species abundance", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "209b7c5ee9d7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "209b7c5ee9d7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "ae8c4b2488e7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_transpose", + "owner": "iuc", + "revisions": "22c2a1ac7ae3", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: ddf54b12c295\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merge_cols\n owner: devteam\n revisions: dd40b1e9eebe\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pampa_communitymetrics\n owner: ecology\n revisions: c67ece97d4b1\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pampa_glmcomm\n owner: ecology\n revisions: b40fecef616b\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pampa_glmsp\n owner: ecology\n revisions: 7a69e1c8ba46\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pampa_plotglm\n owner: ecology\n revisions: c448e026f122\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pampa_presabs\n owner: ecology\n revisions: 1ebb70b59037\n tool_panel_section_label: Species abundance\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 209b7c5ee9d7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 209b7c5ee9d7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: ae8c4b2488e7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_transpose\n owner: iuc\n revisions: 22c2a1ac7ae3\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/PAMPA-toolsuite-tutorial/tutorial.json", + "contributions": { + "authorship": [ + "colineroyaux", + "yvanlebras", + "dpelletier", + "jbmihoub" + ], + "funding": [ + "gallantries", + "pndb" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "coline.royaux@mnhn.fr", + "id": "colineroyaux", + "joined": "2020-11", + "name": "Coline Royaux", + "orcid": "0000-0003-4308-5617", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/colineroyaux/", + "twitter": "ColineRoyaux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/colineroyaux.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "id": "dpelletier", + "joined": "2022-03", + "name": "Dominique Pelletier", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dpelletier/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dpelletier.json" + }, + { + "email": "jean-baptiste.mihoub@mnhn.fr", + "id": "jbmihoub", + "joined": "2022-03", + "name": "Jean-Baptiste Mihoub", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jbmihoub/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jbmihoub.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/PAMPA-toolsuite-tutorial", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/PAMPA-toolsuite-tutorial", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Pre-process abundance data", + "Compute Community and Population metrics", + "Construct a GL(M)M with common biodiversity metrics", + "Interpret (and correct if needed) GL(M)M results", + "Learn about and interpret common tests to evaluate the quality of your GL(M)M", + "Use an Essential Biodiversity Variables workflow" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Upload data from DATRAS portal of ICES", + "Pre-process population data with Galaxy", + "Learning how to use an ecological analysis workflow from raw data to graphical representations", + "Learning how to construct a Generalized Linear (Mixed) Model from a usual ecological question", + "Learning how to interpret a Generalized Linear (Mixed) Model" + ], + "pageviews": 1262, + "pub_date": "2020-11-19", + "questions": [ + "How to evaluate properly populations and communities biological state with abundance data?", + "How does trawl exploited populations of Baltic sea, Southern Atlantic and Scotland are doing over time?", + "How to compute and analyze biodiversity metrics from abundance data?" + ], + "recordings": [ + { + "captioners": [ + "colineroyaux" + ], + "date": "2022-03-03", + "galaxy_version": "21.09", + "length": "2H", + "speakers": [ + "colineroyaux" + ], + "youtube_id": "leMPC2Ckehc" + } + ], + "short_id": "T00125", + "short_tools": [ + "pampa_plotglm", + "pampa_glmcomm", + "tp_cut_tool", + "tp_cat", + "pampa_presabs", + "tp_easyjoin_tool", + "Count1", + "datamash_transpose", + "Filter1", + "tp_sort_header_tool", + "pampa_communitymetrics", + "regex1", + "regexColumn1", + "pampa_glmsp", + "mergeCols1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyanalysis", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "Species population EBV class", + "Community composition EBV class", + "EBV dataset", + "EBV workflow", + "modeling" + ], + "time_estimation": "2H", + "title": "Compute and analyze biodiversity metrics with PAMPA toolsuite", + "tools": [ + "Count1", + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_communitymetrics/pampa_communitymetrics/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_glmcomm/pampa_glmcomm/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_glmsp/pampa_glmsp/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_plotglm/pampa_plotglm/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_presabs/pampa_presabs/0.0.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "PAMPA-toolsuite-tutorial", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/PAMPA-toolsuite-tutorial/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/PAMPA-toolsuite-tutorial/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/PAMPA-toolsuite-tutorial/tutorial.json" + }, + "version": 21, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 111, + "visitors": 944, + "workflows": [ + { + "creators": [], + "description": "Compute and analyze biodiversity metrics with PAMPA toolsuite", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[label=\"Column Regex Find And Replace\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Column Regex Find And Replace\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Concatenate datasets\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Column Regex Find And Replace\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Merge Columns\"]\n 3 -> 7 [label=\"out_file1\"]\n 8[label=\"Merge Columns\"]\n 4 -> 8 [label=\"out_file1\"]\n 9[label=\"Count\"]\n 5 -> 9 [label=\"out_file1\"]\n 10[label=\"Filter\"]\n 5 -> 10 [label=\"out_file1\"]\n 11[label=\"Merge Columns\"]\n 6 -> 11 [label=\"out_file1\"]\n 12[label=\"Regex Find And Replace\"]\n 7 -> 12 [label=\"out_file1\"]\n 13[label=\"Regex Find And Replace\"]\n 8 -> 13 [label=\"out_file1\"]\n 14[label=\"Column Regex Find And Replace\"]\n 10 -> 14 [label=\"out_file1\"]\n 15[label=\"Regex Find And Replace\"]\n 11 -> 15 [label=\"out_file1\"]\n 16[label=\"Calculate presence absence table\"]\n 12 -> 16 [label=\"out_file1\"]\n 17[label=\"Calculate presence absence table\"]\n 13 -> 17 [label=\"out_file1\"]\n 18[label=\"Merge Columns\"]\n 14 -> 18 [label=\"out_file1\"]\n 19[label=\"Calculate presence absence table\"]\n 15 -> 19 [label=\"out_file1\"]\n 20[label=\"Regex Find And Replace\"]\n 18 -> 20 [label=\"out_file1\"]\n 21[label=\"Calculate community metrics\"]\n 20 -> 21 [label=\"out_file1\"]\n 22[label=\"Column Regex Find And Replace\"]\n 20 -> 22 [label=\"out_file1\"]\n 23[label=\"Merge Columns\"]\n 22 -> 23 [label=\"out_file1\"]\n 24[label=\"Column Regex Find And Replace\"]\n 23 -> 24 [label=\"out_file1\"]\n 25[label=\"Advanced Cut\"]\n 24 -> 25 [label=\"out_file1\"]\n 26[label=\"Sort\"]\n 25 -> 26 [label=\"output\"]\n 27[label=\"Regex Find And Replace\"]\n 26 -> 27 [label=\"outfile\"]\n 28[label=\"Compute GLM on community data\"]\n 21 -> 28 [label=\"output_community\"]\n 27 -> 28 [label=\"out_file1\"]\n 29[label=\"Compute GLM on population data\"]\n 16 -> 29 [label=\"output_presabs\"]\n 27 -> 29 [label=\"out_file1\"]\n 30[label=\"Compute GLM on population data\"]\n 17 -> 30 [label=\"output_presabs\"]\n 27 -> 30 [label=\"out_file1\"]\n 31[label=\"Compute GLM on population data\"]\n 19 -> 31 [label=\"output_presabs\"]\n 27 -> 31 [label=\"out_file1\"]\n 32[label=\"Transpose\"]\n 28 -> 32 [label=\"output_summary\"]\n 33[label=\"Create a plot from GLM data\"]\n 21 -> 33 [label=\"output_community\"]\n 28 -> 33 [label=\"output_summary\"]\n 27 -> 33 [label=\"out_file1\"]\n 34[label=\"Transpose\"]\n 29 -> 34 [label=\"output_summary\"]\n 35[label=\"Create a plot from GLM data\"]\n 16 -> 35 [label=\"output_presabs\"]\n 29 -> 35 [label=\"output_summary\"]\n 27 -> 35 [label=\"out_file1\"]\n 36[label=\"Transpose\"]\n 30 -> 36 [label=\"output_summary\"]\n 37[label=\"Create a plot from GLM data\"]\n 17 -> 37 [label=\"output_presabs\"]\n 30 -> 37 [label=\"output_summary\"]\n 27 -> 37 [label=\"out_file1\"]\n 38[label=\"Transpose\"]\n 31 -> 38 [label=\"output_summary\"]\n 39[label=\"Create a plot from GLM data\"]\n 19 -> 39 [label=\"output_presabs\"]\n 31 -> 39 [label=\"output_summary\"]\n 27 -> 39 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "59d712ff30d5e8f4a5355ce2b2822e412b669f5c", + "message": "Third version with good tag", + "num": 5, + "short_hash": "59d712ff3", + "unix": "1614183047" + }, + { + "hash": "76a4fcec2322203b57409cde43b42061d5342467", + "message": "Delete Galaxy-Workflow-Compute_and_analyze_biodiversity_metrics_with_PAMPA_toolsuite.ga", + "num": 4, + "short_hash": "76a4fcec2", + "unix": "1614183020" + }, + { + "hash": "5dc93ca540b20999ab654de39a3a117ea0e48342", + "message": "Add updated workflow", + "num": 3, + "short_hash": "5dc93ca54", + "unix": "1614182846" + }, + { + "hash": "a4b073fcc3bb5affb1f9bf70f3c659b6a80efdbf", + "message": "Delete Galaxy-Workflow-Compute_and_analyze_biodiversity_metrics_with_PAMPA_toolsuite.ga", + "num": 2, + "short_hash": "a4b073fcc", + "unix": "1614182812" + }, + { + "hash": "87b82c19f54fa91e697b2ecd8b70b61a61e0d57e", + "message": "Add tutorial workflow", + "num": 1, + "short_hash": "87b82c19f", + "unix": "1614181101" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/4264936/files/CPUE%20per%20length%20per%20area_A.csv?download=1" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "07e9c5f6-f826-496c-b900-5c22fd643fb4", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/4264936/files/CPUE%20per%20length%20per%20area_B.csv?download=1" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9ad55992-d9e2-4263-bbe7-31dc551f81fd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/4264936/files/CPUE%20per%20length%20per%20area_C.csv?download=1" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d80371d8-924c-4f37-8081-cc3a9201ba4a", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Column Regex Find And Replace\"];\n 0 -->|output| 3;\n 4[\"Column Regex Find And Replace\"];\n 1 -->|output| 4;\n 5[\"Concatenate datasets\"];\n 2 -->|output| 5;\n 1 -->|output| 5;\n 0 -->|output| 5;\n 6[\"Column Regex Find And Replace\"];\n 2 -->|output| 6;\n 7[\"Merge Columns\"];\n 3 -->|out_file1| 7;\n 8[\"Merge Columns\"];\n 4 -->|out_file1| 8;\n 9[\"Count\"];\n 5 -->|out_file1| 9;\n 10[\"Filter\"];\n 5 -->|out_file1| 10;\n 11[\"Merge Columns\"];\n 6 -->|out_file1| 11;\n 12[\"Regex Find And Replace\"];\n 7 -->|out_file1| 12;\n 13[\"Regex Find And Replace\"];\n 8 -->|out_file1| 13;\n 14[\"Column Regex Find And Replace\"];\n 10 -->|out_file1| 14;\n 15[\"Regex Find And Replace\"];\n 11 -->|out_file1| 15;\n 16[\"Calculate presence absence table\"];\n 12 -->|out_file1| 16;\n 17[\"Calculate presence absence table\"];\n 13 -->|out_file1| 17;\n 18[\"Merge Columns\"];\n 14 -->|out_file1| 18;\n 19[\"Calculate presence absence table\"];\n 15 -->|out_file1| 19;\n 20[\"Regex Find And Replace\"];\n 18 -->|out_file1| 20;\n 21[\"Calculate community metrics\"];\n 20 -->|out_file1| 21;\n 22[\"Column Regex Find And Replace\"];\n 20 -->|out_file1| 22;\n 23[\"Merge Columns\"];\n 22 -->|out_file1| 23;\n 24[\"Column Regex Find And Replace\"];\n 23 -->|out_file1| 24;\n 25[\"Advanced Cut\"];\n 24 -->|out_file1| 25;\n 26[\"Sort\"];\n 25 -->|output| 26;\n 27[\"Regex Find And Replace\"];\n 26 -->|outfile| 27;\n 28[\"Compute GLM on community data\"];\n 21 -->|output_community| 28;\n 27 -->|out_file1| 28;\n 29[\"Compute GLM on population data\"];\n 16 -->|output_presabs| 29;\n 27 -->|out_file1| 29;\n 30[\"Compute GLM on population data\"];\n 17 -->|output_presabs| 30;\n 27 -->|out_file1| 30;\n 31[\"Compute GLM on population data\"];\n 19 -->|output_presabs| 31;\n 27 -->|out_file1| 31;\n 32[\"Transpose\"];\n 28 -->|output_summary| 32;\n 33[\"Create a plot from GLM data\"];\n 21 -->|output_community| 33;\n 28 -->|output_summary| 33;\n 27 -->|out_file1| 33;\n 34[\"Transpose\"];\n 29 -->|output_summary| 34;\n 35[\"Create a plot from GLM data\"];\n 16 -->|output_presabs| 35;\n 29 -->|output_summary| 35;\n 27 -->|out_file1| 35;\n 36[\"Transpose\"];\n 30 -->|output_summary| 36;\n 37[\"Create a plot from GLM data\"];\n 17 -->|output_presabs| 37;\n 30 -->|output_summary| 37;\n 27 -->|out_file1| 37;\n 38[\"Transpose\"];\n 31 -->|output_summary| 38;\n 39[\"Create a plot from GLM data\"];\n 19 -->|output_presabs| 39;\n 31 -->|output_summary| 39;\n 27 -->|out_file1| 39;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Compute and analyze biodiversity metrics with PAMPA toolsuite", + "outputs": [], + "parent_id": "ecology/PAMPA-toolsuite-tutorial", + "path": "topics/ecology/tutorials/PAMPA-toolsuite-tutorial/workflows/Galaxy-Workflow-Compute_and_analyze_biodiversity_metrics_with_PAMPA_toolsuite.ga", + "tags": [ + "ecology" + ], + "test_results": null, + "tests": false, + "title": "Compute and analyze biodiversity metrics with PAMPA toolsuite", + "topic_id": "ecology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/ecology-PAMPA-toolsuite-tutorial/versions/galaxy-workflow-compute-and-analyze-biodiversity-metrics-with-pampa-toolsuite", + "tutorial_id": "PAMPA-toolsuite-tutorial", + "url": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/PAMPA-toolsuite-tutorial/workflows/Galaxy-Workflow-Compute_and_analyze_biodiversity_metrics_with_PAMPA_toolsuite.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/ecology/tutorials/PAMPA-toolsuite-tutorial/workflows/Galaxy-Workflow-Compute_and_analyze_biodiversity_metrics_with_PAMPA_toolsuite.html", + "version": 1, + "wfid": "ecology-PAMPA-toolsuite-tutorial", + "wfname": "galaxy-workflow-compute-and-analyze-biodiversity-metrics-with-pampa-toolsuite", + "workflow": "Galaxy-Workflow-Compute_and_analyze_biodiversity_metrics_with_PAMPA_toolsuite.ga", + "workflow_tools": [ + "Count1", + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_communitymetrics/pampa_communitymetrics/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_glmcomm/pampa_glmcomm/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_glmsp/pampa_glmsp/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_plotglm/pampa_plotglm/0.0.2", + "toolshed.g2.bx.psu.edu/repos/ecology/pampa_presabs/pampa_presabs/0.0.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0" + ], + "workflowhub_id": "1283" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4264936" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/QGIS_Web_Feature_Services/tutorial.json", + "contributions": { + "authorship": [ + "colineroyaux", + "Marie59", + "yvanlebras" + ], + "funding": [ + "gallantries", + "fairease", + "pndb" + ] + }, + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "coline.royaux@mnhn.fr", + "id": "colineroyaux", + "joined": "2020-11", + "name": "Coline Royaux", + "orcid": "0000-0003-4308-5617", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/colineroyaux/", + "twitter": "ColineRoyaux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/colineroyaux.json" + }, + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/fair_ease_colour.png", + "funder": true, + "funding_id": "101058785", + "funding_statement": "FAIR-EASE is a RIA project funded under HORIZON-INFRA-2021-EOSC-01-04, and it involves a consortium of 25 partners from all over Europe.", + "funding_system": "cordis", + "github": false, + "id": "fairease", + "joined": "2023-10", + "members": [ + "Marie59", + "yvanlebras" + ], + "name": "Fair-Ease", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fairease/", + "url": "https://training.galaxyproject.org/training-material/api/funders/fairease.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/QGIS_Web_Feature_Services", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/QGIS_Web_Feature_Services", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "From WFS webservice, you can now access GIS remote data, build a query to select a subpart of the data, and import it to Galaxy through QGIS Galaxy interactive tool." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-29", + "objectives": [ + "Deal with QGIS execution management", + "Access, filter, and import GIS data using WFS webservice" + ], + "pageviews": 141, + "pub_date": "2023-10-11", + "questions": [ + "How to use WFS webservice to access and import GIS data through Galaxy" + ], + "short_id": "T00367", + "short_tools": [ + "interactive_tool_qgis" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyaccess", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "earth-system", + "GIS", + "Geographical Information System", + "WFS", + "Spatial data", + "Maps", + "OGC" + ], + "time_estimation": "0H30M", + "title": "QGIS Web Feature Services", + "tools": [ + "interactive_tool_qgis" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "QGIS_Web_Feature_Services", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/QGIS_Web_Feature_Services/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/QGIS_Web_Feature_Services/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/QGIS_Web_Feature_Services/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 66, + "visitors": 118 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/panoply_ebv/tutorial.json", + "contributions": { + "authorship": [ + "pndb", + "yvanlebras", + "colineroyaux", + "Marie59", + "annefou" + ], + "funding": [ + "gallantries", + "fairease", + "pndb" + ] + }, + "contributors": [ + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "coline.royaux@mnhn.fr", + "id": "colineroyaux", + "joined": "2020-11", + "name": "Coline Royaux", + "orcid": "0000-0003-4308-5617", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/colineroyaux/", + "twitter": "ColineRoyaux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/colineroyaux.json" + }, + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/fair_ease_colour.png", + "funder": true, + "funding_id": "101058785", + "funding_statement": "FAIR-EASE is a RIA project funded under HORIZON-INFRA-2021-EOSC-01-04, and it involves a consortium of 25 partners from all over Europe.", + "funding_system": "cordis", + "github": false, + "id": "fairease", + "joined": "2023-10", + "members": [ + "Marie59", + "yvanlebras" + ], + "name": "Fair-Ease", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fairease/", + "url": "https://training.galaxyproject.org/training-material/api/funders/fairease.json" + }, + { + "avatar": "/training-material/shared/images/PNDB_sub.png", + "github": false, + "id": "pndb", + "members": [ + "colineroyaux", + "Marie59", + "yvanlebras", + "ThibaudGlinez" + ], + "name": "P\u00f4le National de Donn\u00e9es de Biodiversit\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pndb/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/pndb.json" + } + ], + "dir": "topics/ecology/tutorials/panoply_ebv", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "ecology/panoply_ebv", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Inspect and view EBV cube netCDF data with Panoply", + "Interact with Galaxy to save your plots" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-27", + "objectives": [ + "Learn to use Panoply in Galaxy to visuallize EBV cube netCDF geo-referenced data", + "Learn how Panoply plots are exported to Galaxy" + ], + "pageviews": 212, + "pub_date": "2022-10-28", + "questions": [ + "How to start Panoply interactive environment in Galaxy?", + "How to inspect EBV cube netCDF data?", + "How to make a plot with Panoply?", + "Where to save your plots in Panoply?", + "How to customize plots in Panoply?", + "How to generate animation in Panoply?" + ], + "short_id": "T00131", + "short_tools": [ + "interactive_tool_panoply" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "ecologyviz", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools", + "EBV cube", + "Data visualization" + ], + "time_estimation": "1H", + "title": "Visualize EBV cube data with Panoply netCDF viewer", + "tools": [ + "interactive_tool_panoply" + ], + "topic_name": "ecology", + "topic_name_human": "Ecology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "panoply_ebv", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/ecology/tutorials/panoply_ebv/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/panoply_ebv/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/ecology/tutorials/panoply_ebv/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 108, + "visitors": 153 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_bam_compare", + "owner": "bgruening", + "revisions": "de72ba3ed6f2", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "revisions": "12af64f93288", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "revisions": "9470f29702f8", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_multi_bam_summary", + "owner": "bgruening", + "revisions": "004aea905d4d", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_correlation", + "owner": "bgruening", + "revisions": "fd408d755394", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_fingerprint", + "owner": "bgruening", + "revisions": "793665fff0f8", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "revisions": "ba6efa77fb79", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trim_galore", + "owner": "bgruening", + "revisions": "cd7e644cae1d", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "03e9b2fbc005", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_idxstats", + "owner": "devteam", + "revisions": "7def34e6cf4d", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "macs2", + "owner": "iuc", + "revisions": "640d3af5d833", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_bam_compare\n owner: bgruening\n revisions: de72ba3ed6f2\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_bam_coverage\n owner: bgruening\n revisions: 12af64f93288\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_compute_matrix\n owner: bgruening\n revisions: 9470f29702f8\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_multi_bam_summary\n owner: bgruening\n revisions: 004aea905d4d\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_correlation\n owner: bgruening\n revisions: fd408d755394\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_fingerprint\n owner: bgruening\n revisions: 793665fff0f8\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_heatmap\n owner: bgruening\n revisions: ba6efa77fb79\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trim_galore\n owner: bgruening\n revisions: cd7e644cae1d\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: 03e9b2fbc005\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_idxstats\n owner: devteam\n revisions: 7def34e6cf4d\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: macs2\n owner: iuc\n revisions: 640d3af5d833\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/formation_of_super-structures_on_xi/tutorial.json", + "contributors": [ + { + "id": "friedue", + "joined": "2017-09", + "name": "Friederike D\u00fcndar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/friedue/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/friedue.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anikaerxleben@gmail.com", + "id": "erxleben", + "joined": "2017-09", + "name": "Anika Erxleben", + "orcid": "0000-0002-7427-6478", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/erxleben/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/erxleben.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "id": "vivekbhr", + "joined": "2017-09", + "name": "Vivek Bhardwaj", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/vivekbhr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/vivekbhr.json" + }, + { + "id": "fidelram", + "joined": "2017-09", + "name": "Fidel Ramirez", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fidelram/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fidelram.json" + }, + { + "id": "LeilyR", + "joined": "2018-09", + "name": "Leily Rabbani", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/LeilyR/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/LeilyR.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/epigenetics/tutorials/formation_of_super-structures_on_xi", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Peak calling", + "Enrichment analysis", + "Mapping", + "Read mapping", + "Sequence composition calculation", + "Read pre-processing", + "Gene regulatory network analysis", + "Sequence trimming", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "epigenetics/formation_of_super-structures_on_xi", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "ChIP-seq data requires multiple methods of quality assessment to ensure that the data is of high quality.", + "Multiple normalization methods exists depending on the availability of input data.", + "Heatmaps containing all genes of an organism can be easily plotted given a BED file and a coverage file." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Inspect the read quality", + "Trim low quality bases", + "Map reads on a reference genome", + "Assess the quality of a ChIP-seq experiment", + "Extract coverage files", + "Call enriched regions or peaks" + ], + "pageviews": 5736884, + "pub_date": "2018-09-17", + "questions": [ + "Histone modification?", + "How is a raw set of ChIP-seq data processed and analyzed?", + "Where are the enriched regions for H3K27me3, H3K4me3 and CTCF on the chrX?" + ], + "redirect_from": [ + "/topics/chip-seq/tutorials/formation_of_super-structures_on_xi/tutorial", + "/short/epigenetics/formation_of_super-structures_on_xi", + "/short/T00140" + ], + "short_id": "T00140", + "short_tools": [ + "bedtools_mergebed", + "deeptools_plot_correlation", + "deeptools_multi_bam_summary", + "cat1", + "bowtie2", + "deeptools_bam_coverage", + "bedtools_sortbed", + "deeptools_bam_compare", + "deeptools_compute_matrix", + "deeptools_plot_heatmap", + "fastqc", + "samtools_idxstats", + "Filter1", + "deeptools_plot_fingerprint", + "macs2_callpeak", + "trim_galore" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "ChIP-seq" + ], + "time_estimation": "3h", + "title": "Formation of the Super-Structures on the Inactive X", + "tools": [ + "Filter1", + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.5.1.0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.6.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.30.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.7.1+galaxy0" + ], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "formation_of_super-structures_on_xi", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/formation_of_super-structures_on_xi/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/formation_of_super-structures_on_xi/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/formation_of_super-structures_on_xi/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 383, + "visitors": 2068456, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-2301-112X", + "name": "Friederike D\u00fcndar" + }, + { + "class": "Person", + "identifier": "0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0002-5570-9338", + "name": "Vivek Bhardwaj" + }, + { + "class": "Person", + "identifier": "0000-0002-9142-417X", + "name": "Fidel Ramirez" + }, + { + "class": "Person", + "identifier": "0009-0007-0755-3643", + "name": "Leily Rabbani" + }, + { + "class": "Person", + "identifier": "0000-0002-5192-126X", + "name": "Pavankumar Videm" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_H3K4me3_read2.fastq.gz\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_H3K4me3_read1.fastq.gz\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_input_rep1.bam\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_H3K4me3_rep1.bam\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_CTCF_rep1.bam\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_H3K27me3_rep1.bam\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_input_rep2.bam\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_H3K4me3_rep2.bam\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_CTCF_rep2.bam\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nwt_H3K27me3_rep2.bam\"]\n 10[label=\"FastQC\"]\n 0 -> 10 [label=\"output\"]\n k892e22b231944076af80357530c17186[color=lightseagreen,label=\"Output\\nwt_H3K4me3_rep1_read2_fastqc\"]\n 10 -> k892e22b231944076af80357530c17186\n 11[label=\"Trim Galore!\"]\n 1 -> 11 [label=\"output\"]\n 0 -> 11 [label=\"output\"]\n ka66a6432690f4e6688c07eba0a014677[color=lightseagreen,label=\"Output\\nwt_H3K4me3_rep1_trim_galore\"]\n 11 -> ka66a6432690f4e6688c07eba0a014677\n 12[label=\"FastQC\"]\n 1 -> 12 [label=\"output\"]\n kda453096fdd944eeb83be4eca5c800f9[color=lightseagreen,label=\"Output\\nwt_H3K4me3_rep1_read1_fastqc\"]\n 12 -> kda453096fdd944eeb83be4eca5c800f9\n 13[label=\"Samtools idxstats\"]\n 2 -> 13 [label=\"output\"]\n 14[label=\"bamCoverage\"]\n 2 -> 14 [label=\"output\"]\n 15[label=\"bamCoverage\"]\n 3 -> 15 [label=\"output\"]\n 16[label=\"bamCoverage\"]\n 3 -> 16 [label=\"output\"]\n k73e2f018d9e44f748110598b9b43a940[color=lightseagreen,label=\"Output\\nwt_H3K4me3_rep1_bamcoverage\"]\n 16 -> k73e2f018d9e44f748110598b9b43a940\n 17[label=\"Samtools idxstats\"]\n 3 -> 17 [label=\"output\"]\n k09449d6fce8844489928064c729c32d1[color=lightseagreen,label=\"Output\\nwt_H3K4me3_rep1_idxstats\"]\n 17 -> k09449d6fce8844489928064c729c32d1\n 18[label=\"plotFingerprint\"]\n 3 -> 18 [label=\"output\"]\n 2 -> 18 [label=\"output\"]\n 19[label=\"bamCompare\"]\n 3 -> 19 [label=\"output\"]\n 2 -> 19 [label=\"output\"]\n 20[label=\"MACS2 callpeak\"]\n 2 -> 20 [label=\"output\"]\n 3 -> 20 [label=\"output\"]\n ka36b5a6cd9924a2d8fd895e8eac74cbd[color=lightseagreen,label=\"Output\\nwt_H3K4me3_input_rep1_macs2\"]\n 20 -> ka36b5a6cd9924a2d8fd895e8eac74cbd\n 21[label=\"bamCompare\"]\n 3 -> 21 [label=\"output\"]\n 2 -> 21 [label=\"output\"]\n k5174d1aa21f64187893570ba8bd0f6e0[color=lightseagreen,label=\"Output\\nwt_H3K4me3_input_rep1_bamcompare\"]\n 21 -> k5174d1aa21f64187893570ba8bd0f6e0\n 22[label=\"bamCompare\"]\n 4 -> 22 [label=\"output\"]\n 2 -> 22 [label=\"output\"]\n 23[label=\"MACS2 callpeak\"]\n 2 -> 23 [label=\"output\"]\n 4 -> 23 [label=\"output\"]\n 24[label=\"bamCompare\"]\n 4 -> 24 [label=\"output\"]\n 2 -> 24 [label=\"output\"]\n 25[label=\"bamCompare\"]\n 5 -> 25 [label=\"output\"]\n 2 -> 25 [label=\"output\"]\n 26[label=\"MACS2 callpeak\"]\n 2 -> 26 [label=\"output\"]\n 5 -> 26 [label=\"output\"]\n 27[label=\"bamCompare\"]\n 7 -> 27 [label=\"output\"]\n 6 -> 27 [label=\"output\"]\n 28[label=\"MACS2 callpeak\"]\n 6 -> 28 [label=\"output\"]\n 7 -> 28 [label=\"output\"]\n 29[label=\"bamCompare\"]\n 8 -> 29 [label=\"output\"]\n 6 -> 29 [label=\"output\"]\n 30[label=\"MACS2 callpeak\"]\n 6 -> 30 [label=\"output\"]\n 8 -> 30 [label=\"output\"]\n 31[label=\"multiBamSummary\"]\n 2 -> 31 [label=\"output\"]\n 3 -> 31 [label=\"output\"]\n 4 -> 31 [label=\"output\"]\n 5 -> 31 [label=\"output\"]\n 6 -> 31 [label=\"output\"]\n 7 -> 31 [label=\"output\"]\n 8 -> 31 [label=\"output\"]\n 9 -> 31 [label=\"output\"]\n 32[label=\"bamCompare\"]\n 9 -> 32 [label=\"output\"]\n 6 -> 32 [label=\"output\"]\n 33[label=\"MACS2 callpeak\"]\n 6 -> 33 [label=\"output\"]\n 9 -> 33 [label=\"output\"]\n 34[label=\"Bowtie2\"]\n 11 -> 34 [label=\"trimmed_reads_pair1\"]\n 11 -> 34 [label=\"trimmed_reads_pair2\"]\n k4c3ca5b122984bb48d2ff62619f35158[color=lightseagreen,label=\"Output\\nwt_H3K4me3_rep1_bowtie2\"]\n 34 -> k4c3ca5b122984bb48d2ff62619f35158\n 35[label=\"Concatenate datasets\"]\n 20 -> 35 [label=\"output_narrowpeaks\"]\n 23 -> 35 [label=\"output_narrowpeaks\"]\n 36[label=\"plotCorrelation\"]\n 31 -> 36 [label=\"outFile\"]\n 37[label=\"Concatenate datasets\"]\n 20 -> 37 [label=\"output_narrowpeaks\"]\n 23 -> 37 [label=\"output_narrowpeaks\"]\n 26 -> 37 [label=\"output_narrowpeaks\"]\n 28 -> 37 [label=\"output_narrowpeaks\"]\n 30 -> 37 [label=\"output_narrowpeaks\"]\n 33 -> 37 [label=\"output_narrowpeaks\"]\n 38[label=\"bedtools SortBED\"]\n 35 -> 38 [label=\"out_file1\"]\n 39[label=\"bedtools SortBED\"]\n 37 -> 39 [label=\"out_file1\"]\n 40[label=\"bedtools MergeBED\"]\n 38 -> 40 [label=\"output\"]\n k931eb26a0e5d4556b67f1c37372aaf28[color=lightseagreen,label=\"Output\\nwt_H3K4me3_CTCF_rep1_mergebed\"]\n 40 -> k931eb26a0e5d4556b67f1c37372aaf28\n 41[label=\"bedtools MergeBED\"]\n 39 -> 41 [label=\"output\"]\n k9c4c5a1ff2c14e83b1f9ff32ee48baeb[color=lightseagreen,label=\"Output\\nwt_all_mergebed\"]\n 41 -> k9c4c5a1ff2c14e83b1f9ff32ee48baeb\n 42[label=\"computeMatrix\"]\n 19 -> 42 [label=\"outFileName\"]\n 22 -> 42 [label=\"outFileName\"]\n 40 -> 42 [label=\"output\"]\n 43[label=\"computeMatrix\"]\n 19 -> 43 [label=\"outFileName\"]\n 22 -> 43 [label=\"outFileName\"]\n 25 -> 43 [label=\"outFileName\"]\n 27 -> 43 [label=\"outFileName\"]\n 29 -> 43 [label=\"outFileName\"]\n 32 -> 43 [label=\"outFileName\"]\n 41 -> 43 [label=\"output\"]\n 44[label=\"plotHeatmap\"]\n 42 -> 44 [label=\"outFileName\"]\n 45[label=\"plotHeatmap\"]\n 43 -> 45 [label=\"outFileName\"]\n}", + "history": [ + { + "hash": "55233fdd568980af9e12c5c75c13162c13dfa95e", + "message": "Add licence and update author ids", + "num": 7, + "short_hash": "55233fdd5", + "unix": "1689601645" + }, + { + "hash": "9875d8031a73e53432940d052af3e99b40a835f4", + "message": "Update ChIP-Seq tutorial with latest tool versions and links", + "num": 6, + "short_hash": "9875d8031", + "unix": "1689597170" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "a2af3178a6ec6bb20a6bb3098c26fe5314b3462f", + "message": "GTN - ChIP-Seq - formation_of_super", + "num": 3, + "short_hash": "a2af3178a", + "unix": "1578919759" + }, + { + "hash": "ca7c701bf2cbc9d4a3ac9a6133d8235fb0627a66", + "message": "formation_of_super_structures_on_xi.ga", + "num": 2, + "short_hash": "ca7c701bf", + "unix": "1578911815" + }, + { + "hash": "7e63a811ab072be2988ec4df64bc64aed6c2e2bc", + "message": "Move chip-seq tutorials to epigenetics topic", + "num": 1, + "short_hash": "7e63a811a", + "unix": "1568276810" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_H3K4me3_read2.fastq.gz" + } + ], + "label": "wt_H3K4me3_read2.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 14.097048405851638, + "top": 1385.030486033355 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "30ae4a49-ea14-48b1-90f2-99d41e7421b7", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_H3K4me3_read1.fastq.gz" + } + ], + "label": "wt_H3K4me3_read1.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 1624.3716415973954 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "a2b3a1f7-b6b6-454b-8afc-0d5632d69be0", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_input_rep1.bam" + } + ], + "label": "wt_input_rep1.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1119.92281783802, + "top": 1951.3226656668057 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "69e19541-652e-4935-ac03-245167afa21d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_H3K4me3_rep1.bam" + } + ], + "label": "wt_H3K4me3_rep1.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1120.4380456061642, + "top": 2049.3846698368934 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c8f1134f-0326-4c52-99a4-afa7535a9051", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_CTCF_rep1.bam" + } + ], + "label": "wt_CTCF_rep1.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1118.5668106970652, + "top": 2149.2769682545286 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0e97afdd-8227-41da-8f11-89eea68a75dc", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_H3K27me3_rep1.bam" + } + ], + "label": "wt_H3K27me3_rep1.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1120.4048494158149, + "top": 2248.2525150138645 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "95839104-338f-47bc-8d10-f4128fdeac6d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_input_rep2.bam" + } + ], + "label": "wt_input_rep2.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1126.123533370785, + "top": 2618.3662885105628 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "b12c1b83-66b9-4929-adcd-c625fe4d0b9a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_H3K4me3_rep2.bam" + } + ], + "label": "wt_H3K4me3_rep2.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1124.9990957152743, + "top": 2717.193440633773 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5544fa52-889b-42ee-807a-4a2842939b0c", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_CTCF_rep2.bam" + } + ], + "label": "wt_CTCF_rep2.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1125.4212663932283, + "top": 2817.2396672047853 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3a540536-0037-41e9-bf26-f3427fe038fc", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wt_H3K27me3_rep2.bam" + } + ], + "label": "wt_H3K27me3_rep2.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1125.3890851162528, + "top": 2917.213426307645 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "08464745-a882-4cf8-b3c2-c5cfd5bccfe8", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nwt_H3K4me3_read2.fastq.gz\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nwt_H3K4me3_read1.fastq.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nwt_input_rep1.bam\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nwt_H3K4me3_rep1.bam\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nwt_CTCF_rep1.bam\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nwt_H3K27me3_rep1.bam\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nwt_input_rep2.bam\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nwt_H3K4me3_rep2.bam\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nwt_CTCF_rep2.bam\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Dataset\\nwt_H3K27me3_rep2.bam\"];\n style 9 stroke:#2c3143,stroke-width:4px;\n 10[\"FastQC\"];\n 0 -->|output| 10;\n 892e22b2-3194-4076-af80-357530c17186[\"Output\\nwt_H3K4me3_rep1_read2_fastqc\"];\n 10 --> 892e22b2-3194-4076-af80-357530c17186;\n style 892e22b2-3194-4076-af80-357530c17186 stroke:#2c3143,stroke-width:4px;\n 11[\"Trim Galore!\"];\n 1 -->|output| 11;\n 0 -->|output| 11;\n a66a6432-690f-4e66-88c0-7eba0a014677[\"Output\\nwt_H3K4me3_rep1_trim_galore\"];\n 11 --> a66a6432-690f-4e66-88c0-7eba0a014677;\n style a66a6432-690f-4e66-88c0-7eba0a014677 stroke:#2c3143,stroke-width:4px;\n 12[\"FastQC\"];\n 1 -->|output| 12;\n da453096-fdd9-44ee-b83b-e4eca5c800f9[\"Output\\nwt_H3K4me3_rep1_read1_fastqc\"];\n 12 --> da453096-fdd9-44ee-b83b-e4eca5c800f9;\n style da453096-fdd9-44ee-b83b-e4eca5c800f9 stroke:#2c3143,stroke-width:4px;\n 13[\"Samtools idxstats\"];\n 2 -->|output| 13;\n 14[\"bamCoverage\"];\n 2 -->|output| 14;\n 15[\"bamCoverage\"];\n 3 -->|output| 15;\n 16[\"bamCoverage\"];\n 3 -->|output| 16;\n 73e2f018-d9e4-4f74-8110-598b9b43a940[\"Output\\nwt_H3K4me3_rep1_bamcoverage\"];\n 16 --> 73e2f018-d9e4-4f74-8110-598b9b43a940;\n style 73e2f018-d9e4-4f74-8110-598b9b43a940 stroke:#2c3143,stroke-width:4px;\n 17[\"Samtools idxstats\"];\n 3 -->|output| 17;\n 09449d6f-ce88-4448-9928-064c729c32d1[\"Output\\nwt_H3K4me3_rep1_idxstats\"];\n 17 --> 09449d6f-ce88-4448-9928-064c729c32d1;\n style 09449d6f-ce88-4448-9928-064c729c32d1 stroke:#2c3143,stroke-width:4px;\n 18[\"plotFingerprint\"];\n 3 -->|output| 18;\n 2 -->|output| 18;\n 19[\"bamCompare\"];\n 3 -->|output| 19;\n 2 -->|output| 19;\n 20[\"MACS2 callpeak\"];\n 2 -->|output| 20;\n 3 -->|output| 20;\n a36b5a6c-d992-4a2d-8fd8-95e8eac74cbd[\"Output\\nwt_H3K4me3_input_rep1_macs2\"];\n 20 --> a36b5a6c-d992-4a2d-8fd8-95e8eac74cbd;\n style a36b5a6c-d992-4a2d-8fd8-95e8eac74cbd stroke:#2c3143,stroke-width:4px;\n 21[\"bamCompare\"];\n 3 -->|output| 21;\n 2 -->|output| 21;\n 5174d1aa-21f6-4187-8935-70ba8bd0f6e0[\"Output\\nwt_H3K4me3_input_rep1_bamcompare\"];\n 21 --> 5174d1aa-21f6-4187-8935-70ba8bd0f6e0;\n style 5174d1aa-21f6-4187-8935-70ba8bd0f6e0 stroke:#2c3143,stroke-width:4px;\n 22[\"bamCompare\"];\n 4 -->|output| 22;\n 2 -->|output| 22;\n 23[\"MACS2 callpeak\"];\n 2 -->|output| 23;\n 4 -->|output| 23;\n 24[\"bamCompare\"];\n 4 -->|output| 24;\n 2 -->|output| 24;\n 25[\"bamCompare\"];\n 5 -->|output| 25;\n 2 -->|output| 25;\n 26[\"MACS2 callpeak\"];\n 2 -->|output| 26;\n 5 -->|output| 26;\n 27[\"bamCompare\"];\n 7 -->|output| 27;\n 6 -->|output| 27;\n 28[\"MACS2 callpeak\"];\n 6 -->|output| 28;\n 7 -->|output| 28;\n 29[\"bamCompare\"];\n 8 -->|output| 29;\n 6 -->|output| 29;\n 30[\"MACS2 callpeak\"];\n 6 -->|output| 30;\n 8 -->|output| 30;\n 31[\"multiBamSummary\"];\n 2 -->|output| 31;\n 3 -->|output| 31;\n 4 -->|output| 31;\n 5 -->|output| 31;\n 6 -->|output| 31;\n 7 -->|output| 31;\n 8 -->|output| 31;\n 9 -->|output| 31;\n 32[\"bamCompare\"];\n 9 -->|output| 32;\n 6 -->|output| 32;\n 33[\"MACS2 callpeak\"];\n 6 -->|output| 33;\n 9 -->|output| 33;\n 34[\"Bowtie2\"];\n 11 -->|trimmed_reads_pair1| 34;\n 11 -->|trimmed_reads_pair2| 34;\n 4c3ca5b1-2298-4bb4-8d2f-f62619f35158[\"Output\\nwt_H3K4me3_rep1_bowtie2\"];\n 34 --> 4c3ca5b1-2298-4bb4-8d2f-f62619f35158;\n style 4c3ca5b1-2298-4bb4-8d2f-f62619f35158 stroke:#2c3143,stroke-width:4px;\n 35[\"Concatenate datasets\"];\n 20 -->|output_narrowpeaks| 35;\n 23 -->|output_narrowpeaks| 35;\n 36[\"plotCorrelation\"];\n 31 -->|outFile| 36;\n 37[\"Concatenate datasets\"];\n 20 -->|output_narrowpeaks| 37;\n 23 -->|output_narrowpeaks| 37;\n 26 -->|output_narrowpeaks| 37;\n 28 -->|output_narrowpeaks| 37;\n 30 -->|output_narrowpeaks| 37;\n 33 -->|output_narrowpeaks| 37;\n 38[\"bedtools SortBED\"];\n 35 -->|out_file1| 38;\n 39[\"bedtools SortBED\"];\n 37 -->|out_file1| 39;\n 40[\"bedtools MergeBED\"];\n 38 -->|output| 40;\n 931eb26a-0e5d-4556-b67f-1c37372aaf28[\"Output\\nwt_H3K4me3_CTCF_rep1_mergebed\"];\n 40 --> 931eb26a-0e5d-4556-b67f-1c37372aaf28;\n style 931eb26a-0e5d-4556-b67f-1c37372aaf28 stroke:#2c3143,stroke-width:4px;\n 41[\"bedtools MergeBED\"];\n 39 -->|output| 41;\n 9c4c5a1f-f2c1-4e83-b1f9-ff32ee48baeb[\"Output\\nwt_all_mergebed\"];\n 41 --> 9c4c5a1f-f2c1-4e83-b1f9-ff32ee48baeb;\n style 9c4c5a1f-f2c1-4e83-b1f9-ff32ee48baeb stroke:#2c3143,stroke-width:4px;\n 42[\"computeMatrix\"];\n 19 -->|outFileName| 42;\n 22 -->|outFileName| 42;\n 40 -->|output| 42;\n 43[\"computeMatrix\"];\n 19 -->|outFileName| 43;\n 22 -->|outFileName| 43;\n 25 -->|outFileName| 43;\n 27 -->|outFileName| 43;\n 29 -->|outFileName| 43;\n 32 -->|outFileName| 43;\n 41 -->|output| 43;\n 44[\"plotHeatmap\"];\n 42 -->|outFileName| 44;\n 45[\"plotHeatmap\"];\n 43 -->|outFileName| 45;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN - ChIP Seq - Formation Of Super Structures On Xi", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 365.34370837604433, + "top": 1148.1761191744758 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"adapters\": null, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "050de359-8cb9-410e-8c61-af8ab5bb0a2f", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_rep1_read2_fastqc", + "output_name": "text_file", + "uuid": "892e22b2-3194-4076-af80-357530c17186" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.6.7+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "singlePaired|input_mate1": { + "id": 1, + "output_name": "output" + }, + "singlePaired|input_mate2": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Trim Galore!", + "outputs": [ + { + "name": "trimmed_reads_pair1", + "type": "input" + }, + { + "name": "trimmed_reads_pair2", + "type": "input" + }, + { + "name": "report_file", + "type": "txt" + } + ], + "position": { + "left": 354.09815344367166, + "top": 1471.7142097871922 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.6.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "cd7e644cae1d", + "name": "trim_galore", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"params\": {\"settingsType\": \"custom\", \"__current_case__\": 1, \"quality\": \"15\", \"stringency\": \"3\", \"error_rate\": \"0.1\", \"min_length\": \"20\", \"clip_R1\": null, \"clip_R2\": null, \"report\": true, \"retain_unpaired\": {\"retain_unpaired_select\": \"no_output\", \"__current_case__\": 0}}, \"rrbs\": {\"settingsType\": \"default\", \"__current_case__\": 0}, \"singlePaired\": {\"sPaired\": \"paired\", \"__current_case__\": 1, \"input_mate1\": {\"__class__\": \"ConnectedValue\"}, \"input_mate2\": {\"__class__\": \"ConnectedValue\"}, \"trimming\": {\"trimming_select\": \"\", \"__current_case__\": 0}, \"trim1\": false, \"three_prime_clip_R1\": null, \"three_prime_clip_R2\": null}, \"trimming\": {\"settingsType\": \"default\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.6.7+galaxy0", + "type": "tool", + "uuid": "8ba82aa7-e90d-454d-9afe-c91330d88518", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_rep1_trim_galore", + "output_name": "report_file", + "uuid": "a66a6432-690f-4e66-88c0-7eba0a014677" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 367.2275901356544, + "top": 1769.6052605492937 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"adapters\": null, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "520cd22e-8862-4b07-b156-07b50e66e3f1", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_rep1_read1_fastqc", + "output_name": "text_file", + "uuid": "da453096-fdd9-44ee-b83b-e4eca5c800f9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.1.0.0", + "errors": null, + "id": 16, + "input_connections": { + "bamInput": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 2334.2097798601753, + "top": 132.4181186393239 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.1.0.0", + "tool_shed_repository": { + "changeset_revision": "4df95152a39e", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"advancedOpt\": {\"showAdvancedOpt\": \"no\", \"__current_case__\": 0}, \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"25\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"exactScaling\": false, \"outFileFormat\": \"bedgraph\", \"region\": \"chrX\", \"scaling\": {\"type\": \"1x\", \"__current_case__\": 4, \"effectiveGenomeSize\": {\"effectiveGenomeSize_opt\": \"2308125349\", \"__current_case__\": 7}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.5.1.0.0", + "type": "tool", + "uuid": "8f239db8-258c-4c7e-85ae-4b9732665c4a", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_rep1_bamcoverage", + "output_name": "outFileName", + "uuid": "73e2f018-d9e4-4f74-8110-598b9b43a940" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools idxstats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2331.9475870987762, + "top": 258.44845102212514 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "tool_shed_repository": { + "changeset_revision": "7def34e6cf4d", + "name": "samtools_idxstats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.4", + "type": "tool", + "uuid": "8377fd06-d480-42ee-a677-5fd05d73083e", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_rep1_idxstats", + "output_name": "output", + "uuid": "09449d6f-ce88-4448-9928-064c729c32d1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.7.1+galaxy0", + "errors": null, + "id": 20, + "input_connections": { + "control|c_multiple|input_control_file": { + "id": 2, + "output_name": "output" + }, + "treatment|input_treatment_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MACS2 callpeak", + "outputs": [ + { + "name": "output_narrowpeaks", + "type": "bed" + }, + { + "name": "output_extra_files", + "type": "html" + } + ], + "position": { + "left": 2343.048187392398, + "top": 1181.1904266975585 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "640d3af5d833", + "name": "macs2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced_options\": {\"to_large\": false, \"nolambda\": false, \"spmr\": false, \"ratio\": null, \"slocal\": null, \"llocal\": null, \"broad_options\": {\"broad_options_selector\": \"nobroad\", \"__current_case__\": 1, \"call_summits\": false}, \"keep_dup_options\": {\"keep_dup_options_selector\": \"1\", \"__current_case__\": 1}, \"d_min\": \"20\", \"buffer_size\": \"100000\"}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"control\": {\"c_select\": \"Yes\", \"__current_case__\": 0, \"c_multiple\": {\"c_multi_select\": \"No\", \"__current_case__\": 0, \"input_control_file\": {\"__class__\": \"ConnectedValue\"}}}, \"cutoff_options\": {\"cutoff_options_selector\": \"qvalue\", \"__current_case__\": 1, \"qvalue\": \"0.05\"}, \"effective_genome_size_options\": {\"effective_genome_size_options_selector\": \"1870000000\", \"__current_case__\": 1}, \"format\": \"BAMPE\", \"nomodel_type\": {\"nomodel_type_selector\": \"create_model\", \"__current_case__\": 0, \"mfold_lower\": \"5\", \"mfold_upper\": \"50\", \"band_width\": \"300\"}, \"outputs\": [\"html\"], \"treatment\": {\"t_multi_select\": \"No\", \"__current_case__\": 0, \"input_treatment_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.7.1+galaxy0", + "type": "tool", + "uuid": "09aaf86a-b1ce-4f03-8191-5f2b1c52da8e", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_input_rep1_macs2", + "output_name": "output_narrowpeaks", + "uuid": "a36b5a6c-d992-4a2d-8fd8-95e8eac74cbd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/3.5.1.0.0", + "errors": null, + "id": 21, + "input_connections": { + "bamFile1": { + "id": 3, + "output_name": "output" + }, + "bamFile2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "bamCompare", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 2726.525491779179, + "top": 992.0114646765242 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/3.5.1.0.0", + "tool_shed_repository": { + "changeset_revision": "c89b665b45e4", + "name": "deeptools_bam_compare", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"advancedOpt\": {\"showAdvancedOpt\": \"no\", \"__current_case__\": 0}, \"bamFile1\": {\"__class__\": \"ConnectedValue\"}, \"bamFile2\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"50\", \"comparison\": {\"type\": \"log2\", \"__current_case__\": 0, \"pseudocount\": \"1 1\"}, \"exactScaling\": false, \"outFileFormat\": \"bedgraph\", \"region\": \"chrX\", \"scaling\": {\"method\": \"readCount\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.5.1.0.0", + "type": "tool", + "uuid": "f250f272-26ab-4af8-a34a-a7b2e810773c", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_input_rep1_bamcompare", + "output_name": "outFileName", + "uuid": "5174d1aa-21f6-4187-8935-70ba8bd0f6e0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "errors": null, + "id": 34, + "input_connections": { + "library|input_1": { + "id": 11, + "output_name": "trimmed_reads_pair1" + }, + "library|input_2": { + "id": 11, + "output_name": "trimmed_reads_pair2" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 650.951766022549, + "top": 1541.2175313998446 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "03e9b2fbc005", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": false, \"aligned_file\": false, \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"mm10\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.0+galaxy0", + "type": "tool", + "uuid": "9dfaa574-93d3-49ab-a194-4ed47017918a", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_rep1_bowtie2", + "output_name": "mapping_stats", + "uuid": "4c3ca5b1-2298-4bb4-8d2f-f62619f35158" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebed/2.30.0", + "errors": null, + "id": 40, + "input_connections": { + "input": { + "id": 38, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "bedtools MergeBED", + "outputs": [ + { + "name": "output", + "type": "bed" + } + ], + "position": { + "left": 3724.6001255642095, + "top": 1457.2522763074392 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebed/2.30.0", + "tool_shed_repository": { + "changeset_revision": "fe5b4cb8356c", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"c_and_o_argument_repeat\": [], \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"distance\": \"0\", \"header\": false, \"input\": {\"__class__\": \"ConnectedValue\"}, \"strand\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.30.0", + "type": "tool", + "uuid": "944931ba-824d-4976-9990-a3b64b607dca", + "when": null, + "workflow_outputs": [ + { + "label": "wt_H3K4me3_CTCF_rep1_mergebed", + "output_name": "output", + "uuid": "931eb26a-0e5d-4556-b67f-1c37372aaf28" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebed/2.30.0", + "errors": null, + "id": 41, + "input_connections": { + "input": { + "id": 39, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "bedtools MergeBED", + "outputs": [ + { + "name": "output", + "type": "bed" + } + ], + "position": { + "left": 3711.9218919354416, + "top": 2441.6148100915098 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebed/2.30.0", + "tool_shed_repository": { + "changeset_revision": "fe5b4cb8356c", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"c_and_o_argument_repeat\": [], \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"distance\": \"0\", \"header\": false, \"input\": {\"__class__\": \"ConnectedValue\"}, \"strand\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.30.0", + "type": "tool", + "uuid": "b3c82d22-9c6b-4f18-91bf-6a33132232ce", + "when": null, + "workflow_outputs": [ + { + "label": "wt_all_mergebed", + "output_name": "output", + "uuid": "9c4c5a1f-f2c1-4e83-b1f9-ff32ee48baeb" + } + ] + } + ], + "parent_id": "epigenetics/formation_of_super-structures_on_xi", + "path": "topics/epigenetics/tutorials/formation_of_super-structures_on_xi/workflows/formation_of_super_structures_on_xi.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": true, + "title": "GTN - ChIP Seq - Formation Of Super Structures On Xi", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-formation_of_super-structures_on_xi/versions/formation-of-super-structures-on-xi", + "tutorial_id": "formation_of_super-structures_on_xi", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/formation_of_super-structures_on_xi/workflows/formation_of_super_structures_on_xi.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/formation_of_super-structures_on_xi/workflows/formation_of_super_structures_on_xi.html", + "version": 5, + "wfid": "epigenetics-formation_of_super-structures_on_xi", + "wfname": "formation-of-super-structures-on-xi", + "workflow": "formation_of_super_structures_on_xi.ga", + "workflow_tools": [ + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.5.1.0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.6.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_mergebed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.30.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.7.1+galaxy0" + ], + "workflowhub_id": "1153" + } + ], + "zenodo_link": "https://zenodo.org/record/1324070" + }, + { + "abbreviations": { + "CUT&RUN": "Cleavage Under Targets and Release Using Nuclease", + "POI": "protein of interest", + "TF": "transcription factors", + "pA(G)-MNase": "protein A(-protein G hybrid)-micrococcal nuclease" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "revisions": "514fa53b5efb", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "revisions": "a4dfb122e52b", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_filter", + "owner": "devteam", + "revisions": "cb20f99fd45b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_filter", + "owner": "devteam", + "revisions": "1dfd95ee241e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "a6d65b0c67af", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "f6877ad76b00", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "a1f0b3f4b781", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "b502c227b5e6", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "ce3c7f062223", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a68aa6c1204a", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "extract_genomic_dna", + "owner": "iuc", + "revisions": "5cc8e93ee98f", + "tool_panel_section_label": "Fetch Sequences/Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "idr", + "owner": "iuc", + "revisions": "de7795890bc5", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "macs2", + "owner": "iuc", + "revisions": "424aefbd7777", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "macs2", + "owner": "iuc", + "revisions": "640d3af5d833", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meme_chip", + "owner": "iuc", + "revisions": "cc100e0f61f4", + "tool_panel_section_label": "Motif Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pe_histogram", + "owner": "iuc", + "revisions": "bd1416eea1f0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pygenometracks", + "owner": "iuc", + "revisions": "2824d77cd8f8", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "49370cb85f0f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_compute_matrix\n owner: bgruening\n revisions: 514fa53b5efb\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_heatmap\n owner: bgruening\n revisions: a4dfb122e52b\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_filter\n owner: devteam\n revisions: cb20f99fd45b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_filter\n owner: devteam\n revisions: 1dfd95ee241e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: a6d65b0c67af\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: f6877ad76b00\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: a1f0b3f4b781\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: b502c227b5e6\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: ce3c7f062223\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a68aa6c1204a\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: extract_genomic_dna\n owner: iuc\n revisions: 5cc8e93ee98f\n tool_panel_section_label: Fetch Sequences/Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: idr\n owner: iuc\n revisions: de7795890bc5\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: macs2\n owner: iuc\n revisions: 424aefbd7777\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: macs2\n owner: iuc\n revisions: 640d3af5d833\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meme_chip\n owner: iuc\n revisions: cc100e0f61f4\n tool_panel_section_label: Motif Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pe_histogram\n owner: iuc\n revisions: bd1416eea1f0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pygenometracks\n owner: iuc\n revisions: 2824d77cd8f8\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 49370cb85f0f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/cut_and_run/tutorial.json", + "contributions": { + "authorship": [ + "heylf" + ], + "editing": [ + "hexylena", + "lldelisle" + ] + }, + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "heylf", + "joined": "2018-08", + "name": "Florian Heyl", + "orcid": "0000-0002-3651-5685", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/heylf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/heylf.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + } + ], + "dir": "topics/epigenetics/tutorials/cut_and_run", + "draft": true, + "edam_operation": [ + "Visualisation", + "Primer removal", + "Sequencing quality control", + "Peak calling", + "Enrichment analysis", + "Formatting", + "Read mapping", + "Mapping", + "Sequence alignment analysis", + "Read pre-processing", + "Sequence composition calculation", + "Gene regulatory network analysis", + "Data handling", + "Sequence trimming", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "epigenetics/cut_and_run", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "CUT&RUN can be used to identify binding regions for DNA binding proteins.", + "Several filters are applied to the reads, such as removing those mapped to mitochondria", + "Fragment distribution can help determine whether an CUT&RUN experiment has worked well", + "A robust peak detection removes noise from the data" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-06", + "objectives": [ + "Apply appropriate analysis and quality control steps for CUT&RUN", + "Apply an enrichment analysis and a robust peak detection", + "Find protein binding motifs" + ], + "pageviews": 1723, + "pub_date": "2024-03-06", + "questions": [ + "Which binding motif has the transcription factor GATA1?", + "What kind of quality control do I have to do?", + "How to analyse and visualise CUT&RUN data?" + ], + "short_id": "T00424", + "short_tools": [ + "deeptools_compute_matrix", + "__EXTRACT_DATASET__", + "Grep1", + "meme_chip", + "deeptools_plot_heatmap", + "macs2_callpeak", + "wig_to_bigWig", + "trim_galore", + "pygenomeTracks", + "bowtie2", + "Filter1", + "cutadapt", + "picard_MarkDuplicates", + "bedtools_intersectbed", + "bamFilter", + "bedtools_bamtobed", + "fastqc", + "idr", + "pe_histogram", + "Extract genomic DNA 1", + "__FLATTEN__" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "3h", + "title": "CUT&RUN data analysis", + "tools": [ + " https://toolshed.g2.bx.psu.edu/view/bgruening/trim_galore/cd7e644cae1d", + "Filter1", + "Grep1", + "__EXTRACT_DATASET__", + "__FLATTEN__", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/extract_genomic_dna/Extract genomic DNA 1/3.0.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/idr/idr/2.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/meme_chip/meme_chip/4.11.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pe_histogram/pe_histogram/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.6", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "wig_to_bigWig" + ], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "cut_and_run", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/cut_and_run/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/cut_and_run/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/cut_and_run/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 91, + "visitors": 1300, + "workflows": [ + { + "creators": [], + "description": "atac-seq\n", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbed file with genes\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nctcf peaks\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nATAC R2 read in fastq.gz format\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nATAC R1 read in fastq.gz format\"]\n 4[label=\"Filter\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"FastQC\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"ATAC remove nextera adapters with cutadapt\"]\n 3 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"FastQC\"]\n 3 -> 7 [label=\"output\"]\n 8[label=\"bedtools Intersect intervals\"]\n 4 -> 8 [label=\"out_file1\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"FastQC\"]\n 6 -> 9 [label=\"out2\"]\n 10[label=\"Bowtie2\"]\n 6 -> 10 [label=\"out1\"]\n 6 -> 10 [label=\"out2\"]\n 11[label=\"FastQC\"]\n 6 -> 11 [label=\"out1\"]\n 12[label=\"Filter BAM ATAC\"]\n 10 -> 12 [label=\"output\"]\n 13[label=\"MarkDuplicates\"]\n 12 -> 13 [label=\"out_file1\"]\n 14[label=\"bedtools BAM to BED\"]\n 13 -> 14 [label=\"outFile\"]\n 15[label=\"Paired-end histogram\"]\n 13 -> 15 [label=\"outFile\"]\n 16[label=\"MACS2 callpeak\"]\n 14 -> 16 [label=\"output\"]\n 17[label=\"Wig/BedGraph-to-bigWig\"]\n 16 -> 17 [label=\"output_treat_pileup\"]\n 18[label=\"computeMatrix\"]\n 17 -> 18 [label=\"out_file1\"]\n 0 -> 18 [label=\"output\"]\n 19[label=\"pyGenomeTracks\"]\n 17 -> 19 [label=\"out_file1\"]\n 16 -> 19 [label=\"output_narrowpeaks\"]\n 0 -> 19 [label=\"output\"]\n 1 -> 19 [label=\"output\"]\n 20[label=\"computeMatrix\"]\n 17 -> 20 [label=\"out_file1\"]\n 8 -> 20 [label=\"output\"]\n k65159c9c050b406987048f66c0563a98[color=lightseagreen,label=\"Output\\ncomputeMatrix on input dataset(s): Matrix\"]\n 20 -> k65159c9c050b406987048f66c0563a98\n 21[label=\"plotHeatmap\"]\n 18 -> 21 [label=\"outFileName\"]\n 22[label=\"plotHeatmap\"]\n 20 -> 22 [label=\"outFileName\"]\n k74a36643b88f43788f9cc1b20ee2651e[color=lightseagreen,label=\"Output\\nplotHeatmap on input dataset(s): Image\"]\n 22 -> k74a36643b88f43788f9cc1b20ee2651e\n}", + "history": [ + { + "hash": "c32dabaf3de77d6f436f0bc58b0b7735f64767c8", + "message": "Adding cut and run", + "num": 1, + "short_hash": "c32dabaf3", + "unix": "1627297960" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "bed file with genes" + } + ], + "label": "bed file with genes", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 246.6999969482422, + "height": 82.19999694824219, + "left": 225, + "right": 425, + "top": 164.5, + "width": 200, + "x": 225, + "y": 164.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b860d81d-5828-497d-94be-26e1b08065bd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ctcf peaks" + } + ], + "label": "ctcf peaks", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 448.3000030517578, + "height": 61.80000305175781, + "left": -53, + "right": 147, + "top": 386.5, + "width": 200, + "x": -53, + "y": 386.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b356e32f-d1ea-4e32-b607-6d178f184990", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ATAC R2 read in fastq(.gz) format" + } + ], + "label": "ATAC R2 read in fastq(.gz) format", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": -607.3000030517578, + "height": 82.19999694824219, + "left": -1721, + "right": -1521, + "top": -689.5, + "width": 200, + "x": -1721, + "y": -689.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "5c751222-c315-4334-806d-450ab3aabf76", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ATAC R1 read in fastq(.gz) format" + } + ], + "label": "ATAC R1 read in fastq(.gz) format", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": -1069.3000030517578, + "height": 82.19999694824219, + "left": -1721, + "right": -1521, + "top": -1151.5, + "width": 200, + "x": -1721, + "y": -1151.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "28c9e734-a2c3-4fd8-bb0e-0f7cb07b28c0", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nbed file with genes\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nctcf peaks\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nATAC R2 read in fastq.gz format\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nATAC R1 read in fastq.gz format\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Filter\"];\n 1 -->|output| 4;\n 5[\"FastQC\"];\n 2 -->|output| 5;\n 6[\"ATAC remove nextera adapters with cutadapt\"];\n 3 -->|output| 6;\n 2 -->|output| 6;\n 7[\"FastQC\"];\n 3 -->|output| 7;\n 8[\"bedtools Intersect intervals\"];\n 4 -->|out_file1| 8;\n 0 -->|output| 8;\n 9[\"FastQC\"];\n 6 -->|out2| 9;\n 10[\"Bowtie2\"];\n 6 -->|out1| 10;\n 6 -->|out2| 10;\n 11[\"FastQC\"];\n 6 -->|out1| 11;\n 12[\"Filter BAM ATAC\"];\n 10 -->|output| 12;\n 13[\"MarkDuplicates\"];\n 12 -->|out_file1| 13;\n 14[\"bedtools BAM to BED\"];\n 13 -->|outFile| 14;\n 15[\"Paired-end histogram\"];\n 13 -->|outFile| 15;\n 16[\"MACS2 callpeak\"];\n 14 -->|output| 16;\n 17[\"Wig/BedGraph-to-bigWig\"];\n 16 -->|output_treat_pileup| 17;\n 18[\"computeMatrix\"];\n 17 -->|out_file1| 18;\n 0 -->|output| 18;\n 19[\"pyGenomeTracks\"];\n 17 -->|out_file1| 19;\n 16 -->|output_narrowpeaks| 19;\n 0 -->|output| 19;\n 1 -->|output| 19;\n 20[\"computeMatrix\"];\n 17 -->|out_file1| 20;\n 8 -->|output| 20;\n 65159c9c-050b-4069-8704-8f66c0563a98[\"Output\\ncomputeMatrix on input dataset(s): Matrix\"];\n 20 --> 65159c9c-050b-4069-8704-8f66c0563a98;\n style 65159c9c-050b-4069-8704-8f66c0563a98 stroke:#2c3143,stroke-width:4px;\n 21[\"plotHeatmap\"];\n 18 -->|outFileName| 21;\n 22[\"plotHeatmap\"];\n 20 -->|outFileName| 22;\n 74a36643-b88f-4378-8f9c-c1b20ee2651e[\"Output\\nplotHeatmap on input dataset(s): Image\"];\n 22 --> 74a36643-b88f-4378-8f9c-c1b20ee2651e;\n style 74a36643-b88f-4378-8f9c-c1b20ee2651e stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "ATAC-seq GTM", + "outputs": [ + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 663.6999969482422, + "height": 93.19999694824219, + "left": 225, + "right": 425, + "top": 570.5, + "width": 200, + "x": 225, + "y": 570.5 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c1=='chr22'\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "d2b45cbf-3307-43de-bcd2-e846dba1e76e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "e02f0d53-8b7b-4b9f-ab57-a59ff8b6a9e2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "input_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -151.10000610351562, + "height": 296.3999938964844, + "left": -1443, + "right": -1243, + "top": -447.5, + "width": 200, + "x": -1443, + "y": -447.5 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC of #{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "25e770ec-9dc3-49d0-a488-d1b630057530", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "65c34c4c-590e-4753-a35c-baf496f0dc56" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "errors": null, + "id": 6, + "input_connections": { + "library|input_1": { + "id": 3, + "output_name": "output" + }, + "library|input_2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "ATAC remove nextera adapters with cutadapt", + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "out2", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "bottom": -485.29998779296875, + "height": 327.20001220703125, + "left": -1443, + "right": -1243, + "top": -812.5, + "width": 200, + "x": -1443, + "y": -812.5 + }, + "post_job_actions": { + "RenameDatasetActionout1": { + "action_arguments": { + "newname": "cutadapt of #{input_1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "out1" + }, + "RenameDatasetActionout2": { + "action_arguments": { + "newname": "cutadapt of #{input_2}" + }, + "action_type": "RenameDatasetAction", + "output_name": "out2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "tool_shed_repository": { + "changeset_revision": "49370cb85f0f", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"error_rate\": \"0.1\", \"no_indels\": \"false\", \"count\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"no_trim\": \"false\", \"mask_adapter\": \"false\"}, \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"20\", \"max\": \"0\", \"max_n\": null, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Nextera R1\", \"adapter\": \"CTGTCTCTTATACACATCTCCGAGCCCACGAGAC\"}}], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [{\"__index__\": 0, \"adapter_source2\": {\"adapter_source_list2\": \"user\", \"__current_case__\": 0, \"adapter_name2\": \"Nextera R2\", \"adapter2\": \"CTGTCTCTTATACACATCTGACGCTGCCGACGA\"}}], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\", \"multiple_output\": \"false\"}, \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.5", + "type": "tool", + "uuid": "96c9a087-9f0d-4659-9dfe-610d8e8fb91c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out1", + "uuid": "146ad377-c2bf-4df1-bb56-a452cfc32064" + }, + { + "label": null, + "output_name": "out2", + "uuid": "91674697-ed09-4cda-afb0-e49a967f0034" + }, + { + "label": null, + "output_name": "report", + "uuid": "cb2f50aa-d15f-4c7d-8f2b-e2bce3e8064d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -850.1000061035156, + "height": 296.3999938964844, + "left": -1443, + "right": -1243, + "top": -1146.5, + "width": 200, + "x": -1443, + "y": -1146.5 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC of #{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "20823f0a-f9c8-4c0f-87c3-437a6a563788", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "58c3c512-fccf-4959-b5b4-229a52c5ed7d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "errors": null, + "id": 8, + "input_connections": { + "inputA": { + "id": 4, + "output_name": "out_file1" + }, + "reduce_or_iterate|inputB": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "bedtools Intersect intervals", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 657.5, + "height": 144, + "left": 554, + "right": 754, + "top": 513.5, + "width": 200, + "x": 554, + "y": 513.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "tool_shed_repository": { + "changeset_revision": "ce3c7f062223", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"bed\": \"false\", \"count\": \"false\", \"fraction_cond\": {\"fraction_select\": \"default\", \"__current_case__\": 0}, \"header\": \"false\", \"inputA\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"true\", \"once\": \"false\", \"overlap_mode\": [\"-wa\"], \"reduce_or_iterate\": {\"reduce_or_iterate_selector\": \"iterate\", \"__current_case__\": 0, \"inputB\": {\"__class__\": \"ConnectedValue\"}}, \"sorted\": \"false\", \"split\": \"false\", \"strand\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.30.0", + "type": "tool", + "uuid": "1fffdd0c-af23-4b92-9573-e518fbc1a223", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0b4e3662-fc5d-496b-a0fd-afd84e09a77d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "input_file": { + "id": 6, + "output_name": "out2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -119.10000610351562, + "height": 296.3999938964844, + "left": -1165, + "right": -965, + "top": -415.5, + "width": 200, + "x": -1165, + "y": -415.5 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC of #{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "265bed3e-c169-40ba-96ae-44d9b12b9635", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "b8ae7d0b-cfa4-4ac5-a806-80ce7062cc28" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "library|input_1": { + "id": 6, + "output_name": "out1" + }, + "library|input_2": { + "id": 6, + "output_name": "out2" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "bottom": -453.1000061035156, + "height": 276.3999938964844, + "left": -1165, + "right": -965, + "top": -729.5, + "width": 200, + "x": -1165, + "y": -729.5 + }, + "post_job_actions": { + "RenameDatasetActionmapping_stats": { + "action_arguments": { + "newname": "mapping stats of #{input_1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "mapping_stats" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "mapping of #{input_1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "09b2cdb7ace5", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"--very-sensitive\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"yes\", \"__current_case__\": 0, \"I\": \"0\", \"X\": \"1000\", \"fr_rf_ff\": \"--fr\", \"no_mixed\": \"false\", \"no_discordant\": \"false\", \"dovetail\": \"true\", \"no_contain\": \"false\", \"no_overlap\": \"false\"}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"hg38canon\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.2+galaxy0", + "type": "tool", + "uuid": "f6f098e8-9c2e-46a5-a698-6b773fb5851d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0e73a14b-67b4-42c4-b275-b35d5842784b" + }, + { + "label": null, + "output_name": "mapping_stats", + "uuid": "7b77cd14-e67b-4182-8edf-d595cb52d467" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "input_file": { + "id": 6, + "output_name": "out1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -767.1000061035156, + "height": 296.3999938964844, + "left": -1165, + "right": -965, + "top": -1063.5, + "width": 200, + "x": -1165, + "y": -1063.5 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC of #{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "351245fd-2f98-4540-bcf5-1ffc8d859594", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "87625a28-b5ca-490d-a8e7-0c2494cda980" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "errors": null, + "id": 12, + "input_connections": { + "input_bam": { + "id": 10, + "output_name": "output" + } + }, + "inputs": [], + "label": "Filter BAM ATAC", + "name": "Filter", + "outputs": [ + { + "name": "out_file2", + "type": "txt" + }, + { + "name": "out_file1", + "type": "bam" + } + ], + "position": { + "bottom": -465.6999969482422, + "height": 184.8000030517578, + "left": -887, + "right": -687, + "top": -650.5, + "width": 200, + "x": -887, + "y": -650.5 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "#{input_bam} filtered" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "tool_shed_repository": { + "changeset_revision": "cb20f99fd45b", + "name": "bamtools_filter", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"conditions\": [{\"__index__\": 0, \"filters\": [{\"__index__\": 0, \"bam_property\": {\"bam_property_selector\": \"mapQuality\", \"__current_case__\": 14, \"bam_property_value\": \">=30\"}}, {\"__index__\": 1, \"bam_property\": {\"bam_property_selector\": \"isProperPair\", \"__current_case__\": 11, \"bam_property_value\": \"true\"}}, {\"__index__\": 2, \"bam_property\": {\"bam_property_selector\": \"reference\", \"__current_case__\": 20, \"bam_property_value\": \"!chrM\"}}]}], \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"rule_configuration\": {\"rules_selector\": \"false\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.1", + "type": "tool", + "uuid": "f23d0019-e51f-4a2a-ae4c-35cb39fe8462", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "6c31fd95-9c8c-4d7f-b75e-c6d3fedcee88" + }, + { + "label": null, + "output_name": "out_file2", + "uuid": "4ea434e3-2c83-43b2-83b0-b565a5574563" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "errors": null, + "id": 13, + "input_connections": { + "inputFile": { + "id": 12, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "MarkDuplicates", + "outputs": [ + { + "name": "metrics_file", + "type": "txt" + }, + { + "name": "outFile", + "type": "bam" + } + ], + "position": { + "bottom": -390.5, + "height": 246, + "left": -609, + "right": -409, + "top": -636.5, + "width": 200, + "x": -609, + "y": -636.5 + }, + "post_job_actions": { + "RenameDatasetActionoutFile": { + "action_arguments": { + "newname": "#{inputFile} without duplicates" + }, + "action_type": "RenameDatasetAction", + "output_name": "outFile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "tool_shed_repository": { + "changeset_revision": "a1f0b3f4b781", + "name": "picard", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"assume_sorted\": \"true\", \"barcode_tag\": \"\", \"comments\": [], \"duplicate_scoring_strategy\": \"SUM_OF_BASE_QUALITIES\", \"inputFile\": {\"__class__\": \"ConnectedValue\"}, \"optical_duplicate_pixel_distance\": \"100\", \"read_name_regex\": \"\", \"remove_duplicates\": \"true\", \"validation_stringency\": \"LENIENT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.18.2.2", + "type": "tool", + "uuid": "7ce1de9d-b93d-459b-bad5-00c38831d69a", + "workflow_outputs": [ + { + "label": null, + "output_name": "metrics_file", + "uuid": "522efa9e-9b62-4a53-bed5-94a168791793" + }, + { + "label": null, + "output_name": "outFile", + "uuid": "ad6cb3e0-1975-4eda-9695-62faf916b5cb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 13, + "output_name": "outFile" + } + }, + "inputs": [], + "label": null, + "name": "bedtools BAM to BED", + "outputs": [ + { + "name": "output", + "type": "bed" + } + ], + "position": { + "bottom": -229.5, + "height": 134, + "left": -331, + "right": -131, + "top": -363.5, + "width": 200, + "x": -331, + "y": -363.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0", + "tool_shed_repository": { + "changeset_revision": "ce3c7f062223", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"ed_score\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"option\": \"\", \"split\": \"false\", \"tag\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.30.0", + "type": "tool", + "uuid": "f9f3ec61-781c-4853-99a5-5c284319f370", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d84ba56e-6221-4582-987d-136fc0e10cf1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pe_histogram/pe_histogram/1.0.1", + "errors": null, + "id": 15, + "input_connections": { + "input_bam": { + "id": 13, + "output_name": "outFile" + } + }, + "inputs": [], + "label": null, + "name": "Paired-end histogram", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "tabular" + } + ], + "position": { + "bottom": -401.5, + "height": 144, + "left": -331, + "right": -131, + "top": -545.5, + "width": 200, + "x": -331, + "y": -545.5 + }, + "post_job_actions": { + "HideDatasetActionoutput2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pe_histogram/pe_histogram/1.0.1", + "tool_shed_repository": { + "changeset_revision": "bd1416eea1f0", + "name": "pe_histogram", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"lower_limit\": \"0\", \"upper_limit\": \"1000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "d3518ead-a61a-4faa-8ac2-17201a52a5d1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "7e2685fb-f30c-4a31-9667-bb8145e8bc26" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "errors": null, + "id": 16, + "input_connections": { + "treatment|input_treatment_file": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MACS2 callpeak", + "outputs": [ + { + "name": "output_tabular", + "type": "tabular" + }, + { + "name": "output_narrowpeaks", + "type": "bed" + }, + { + "name": "output_summits", + "type": "bed" + }, + { + "name": "output_treat_pileup", + "type": "bedgraph" + }, + { + "name": "output_control_lambda", + "type": "bedgraph" + } + ], + "position": { + "bottom": 60.70001220703125, + "height": 439.20001220703125, + "left": -53, + "right": 147, + "top": -378.5, + "width": 200, + "x": -53, + "y": -378.5 + }, + "post_job_actions": { + "HideDatasetActionoutput_control_lambda": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_control_lambda" + }, + "HideDatasetActionoutput_tabular": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_tabular" + }, + "RenameDatasetActionoutput_narrowpeaks": { + "action_arguments": { + "newname": "macs2 peaks (narrowPeak) from #{input_treatment_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_narrowpeaks" + }, + "RenameDatasetActionoutput_summits": { + "action_arguments": { + "newname": "macs2 summits from #{input_treatment_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_summits" + }, + "RenameDatasetActionoutput_tabular": { + "action_arguments": { + "newname": "macs2 peaks (tabular) from #{input_treatment_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tabular" + }, + "RenameDatasetActionoutput_treat_pileup": { + "action_arguments": { + "newname": "macs2 coverage from #{input_treatment_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_treat_pileup" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "tool_shed_repository": { + "changeset_revision": "424aefbd7777", + "name": "macs2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"to_large\": \"false\", \"nolambda\": \"false\", \"spmr\": \"false\", \"ratio\": null, \"slocal\": null, \"llocal\": null, \"broad_options\": {\"broad_options_selector\": \"nobroad\", \"__current_case__\": 1, \"call_summits\": \"false\"}, \"keep_dup_options\": {\"keep_dup_options_selector\": \"all\", \"__current_case__\": 2}}, \"control\": {\"c_select\": \"No\", \"__current_case__\": 1}, \"cutoff_options\": {\"cutoff_options_selector\": \"qvalue\", \"__current_case__\": 1, \"qvalue\": \"0.05\"}, \"effective_genome_size_options\": {\"effective_genome_size_options_selector\": \"2700000000\", \"__current_case__\": 0}, \"format\": \"BED\", \"nomodel_type\": {\"nomodel_type_selector\": \"nomodel\", \"__current_case__\": 1, \"extsize\": \"200\", \"shift\": \"-100\"}, \"outputs\": [\"peaks_tabular\", \"summits\", \"bdg\"], \"treatment\": {\"t_multi_select\": \"No\", \"__current_case__\": 0, \"input_treatment_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1.20160309.6", + "type": "tool", + "uuid": "f40f146b-e226-4c46-ab8e-f58370cec78a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_summits", + "uuid": "55f74fde-1c10-49a1-b89c-79d39deea065" + }, + { + "label": null, + "output_name": "output_treat_pileup", + "uuid": "3d8b2aa9-9397-41bb-813a-f7612d7840ff" + }, + { + "label": null, + "output_name": "output_narrowpeaks", + "uuid": "1a0e07c9-8e64-4754-b432-2b0c72795b01" + } + ] + }, + { + "annotation": "", + "content_id": "wig_to_bigWig", + "errors": null, + "id": 17, + "input_connections": { + "input1": { + "id": 16, + "output_name": "output_treat_pileup" + } + }, + "inputs": [], + "label": null, + "name": "Wig/BedGraph-to-bigWig", + "outputs": [ + { + "name": "out_file1", + "type": "bigwig" + } + ], + "position": { + "bottom": 398.1000061035156, + "height": 113.60000610351562, + "left": 225, + "right": 425, + "top": 284.5, + "width": 200, + "x": 225, + "y": 284.5 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "bigwig of #{input1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "wig_to_bigWig", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"settings\": {\"settingsType\": \"preset\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "5cce7368-6275-4a9f-9046-3da58745f579", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "337bd211-a2cd-4b2f-b03e-8c53ae5bde2b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "errors": null, + "id": 18, + "input_connections": { + "multibigwig_conditional|bigwigfiles": { + "id": 17, + "output_name": "out_file1" + }, + "regionsFiles_0|regionsFile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool computeMatrix", + "name": "advancedOpt" + }, + { + "description": "runtime parameter for tool computeMatrix", + "name": "multibigwig_conditional" + } + ], + "label": null, + "name": "computeMatrix", + "outputs": [ + { + "name": "outFileName", + "type": "deeptools_compute_matrix_archive" + } + ], + "position": { + "bottom": 479.8999938964844, + "height": 276.3999938964844, + "left": 523, + "right": 723, + "top": 203.5, + "width": 200, + "x": 523, + "y": 203.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "tool_shed_repository": { + "changeset_revision": "514fa53b5efb", + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"binSize\": \"50\", \"sortRegions\": \"keep\", \"sortUsing\": \"mean\", \"averageTypeBins\": \"mean\", \"missingDataAsZero\": \"true\", \"skipZeros\": \"false\", \"minThreshold\": null, \"maxThreshold\": null, \"scale\": null, \"metagene\": \"false\", \"transcriptID\": \"transcript\", \"exonID\": \"exon\", \"transcript_id_designator\": \"transcript_id\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}}, \"custom_sample_labels_conditional\": {\"custom_labels_select\": \"No\", \"__current_case__\": 0}, \"mode\": {\"mode_select\": \"reference-point\", \"__current_case__\": 1, \"referencePoint\": \"TSS\", \"nanAfterEnd\": \"false\", \"beforeRegionStartLength\": \"1000\", \"afterRegionStartLength\": \"1000\"}, \"multibigwig_conditional\": {\"orderMatters\": \"No\", \"__current_case__\": 0, \"bigwigfiles\": {\"__class__\": \"RuntimeValue\"}}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"regionsFiles\": [{\"__index__\": 0, \"regionsFile\": {\"__class__\": \"RuntimeValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.2.0.0", + "type": "tool", + "uuid": "f3718234-e4a2-453b-80d0-27a3f6ee2017", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "fde53a8d-23e7-4b64-90c1-bf443ee6a61c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.6", + "errors": null, + "id": 19, + "input_connections": { + "tracks_0|track_file_style_conditional|track_input_bigwig": { + "id": 17, + "output_name": "out_file1" + }, + "tracks_1|track_file_style_conditional|track_input_narrow_peak": { + "id": 16, + "output_name": "output_narrowpeaks" + }, + "tracks_2|track_file_style_conditional|track_input_bed": { + "id": 0, + "output_name": "output" + }, + "tracks_3|track_file_style_conditional|track_input_narrow_peak": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "pyGenomeTracks", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "bottom": 165.10000610351562, + "height": 459.6000061035156, + "left": 523, + "right": 723, + "top": -294.5, + "width": 200, + "x": 523, + "y": -294.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.6", + "tool_shed_repository": { + "changeset_revision": "2824d77cd8f8", + "name": "pygenometracks", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"global_args\": {\"title\": \"\", \"fontsize\": \"12\", \"dpi\": \"72\", \"width\": \"40.0\", \"plotWidth\": null, \"height\": null, \"trackLabelFraction\": \"0.05\", \"trackLabelHAlign\": \"left\", \"decreasingXAxis\": \"false\"}, \"image_file_format\": \"png\", \"region\": \"chr22:37,193,000-37,252,000\", \"tracks\": [{\"__index__\": 0, \"track_file_style_conditional\": {\"track_file_style_selector\": \"bigwig_track_option\", \"__current_case__\": 6, \"title\": \"Coverage from MACS2 (extended +/-100bp)\", \"track_input_bigwig\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#00b050\", \"alpha\": \"1.0\", \"color_negative\": {\"color_negative_select\": \"false\", \"__current_case__\": 0}, \"min_value\": \"0.0\", \"max_value\": null, \"height_bigwig\": \"5.0\", \"reading_bw_conditional\": {\"summary_method\": \"mean\", \"number_of_bins\": null, \"nans_to_zeros\": \"false\"}, \"type_conditional\": {\"type_selector\": \"fill_option\", \"__current_case__\": 2}, \"logScale_conditional\": {\"transform_selector\": \"no\", \"__current_case__\": 0}, \"op\": {\"operation\": \"file\", \"second_file\": {\"__class__\": \"RuntimeValue\"}}, \"show_data\": \"true\", \"grid\": \"false\", \"invert_orientation\": \"false\", \"overlay_select\": \"no\", \"spacer_height\": null}}, {\"__index__\": 1, \"track_file_style_conditional\": {\"track_file_style_selector\": \"narrow_peak_track_option\", \"__current_case__\": 4, \"title\": \"Peaks from MACS2 (extended +/-100bp)\", \"track_input_narrow_peak\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#00b050\", \"height_narrow_peak\": \"1.5\", \"display\": {\"display_selector\": \"box\", \"__current_case__\": 1, \"use_summit\": \"true\"}, \"line_width\": \"1.0\", \"show_labels\": \"false\", \"fontsize\": null, \"overlay_select\": \"no\", \"invert_orientation\": \"false\", \"spacer_height\": null}}, {\"__index__\": 2, \"track_file_style_conditional\": {\"track_file_style_selector\": \"gene_track_option\", \"__current_case__\": 2, \"title\": \"Genes\", \"track_input_bed\": {\"__class__\": \"ConnectedValue\"}, \"color_bed\": {\"color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}, \"border_color_bed\": {\"border_color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}, \"height_bed\": \"5.0\", \"labels\": {\"plot_labels\": \"true\", \"__current_case__\": 0, \"all_labels_inside\": \"true\", \"labels_in_margin\": \"true\"}, \"display\": \"stacked\", \"fontsize\": null, \"bed_style\": {\"bed_style_select\": \"flybase\", \"__current_case__\": 0, \"arrowhead_included\": \"false\", \"bed_advanced\": {\"height_utr\": \"1.0\", \"color_utr\": {\"color_utr_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#808080\"}, \"global_max_row\": \"false\", \"gene_rows\": null, \"max_labels\": \"60\", \"line_width\": \"0.5\", \"gtf\": {\"prefered_name\": \"transcript_name\", \"merge_transcripts\": \"false\"}}}, \"overlay_select\": \"no\", \"invert_orientation\": \"false\", \"spacer_height\": null}}, {\"__index__\": 3, \"track_file_style_conditional\": {\"track_file_style_selector\": \"narrow_peak_track_option\", \"__current_case__\": 4, \"title\": \"CTCF peaks\", \"track_input_narrow_peak\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#00b0f0\", \"height_narrow_peak\": \"1.5\", \"display\": {\"display_selector\": \"box\", \"__current_case__\": 1, \"use_summit\": \"true\"}, \"line_width\": \"1.0\", \"show_labels\": \"false\", \"fontsize\": null, \"overlay_select\": \"no\", \"invert_orientation\": \"false\", \"spacer_height\": null}}, {\"__index__\": 4, \"track_file_style_conditional\": {\"track_file_style_selector\": \"xaxis_option\", \"__current_case__\": 11, \"title\": \"\", \"fontsize\": null, \"xaxis_where\": \"bottom\", \"spacer_height\": null}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6", + "type": "tool", + "uuid": "1148f33a-ea9f-4575-b8ef-d2fa5d3fdbd4", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "e7e567d7-dd86-40e1-b722-51f8e5b6d51f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "errors": null, + "id": 20, + "input_connections": { + "multibigwig_conditional|bigwigfiles": { + "id": 17, + "output_name": "out_file1" + }, + "regionsFiles_0|regionsFile": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool computeMatrix", + "name": "advancedOpt" + }, + { + "description": "runtime parameter for tool computeMatrix", + "name": "multibigwig_conditional" + } + ], + "label": null, + "name": "computeMatrix", + "outputs": [ + { + "name": "outFileName", + "type": "deeptools_compute_matrix_archive" + } + ], + "position": { + "bottom": 728.8999938964844, + "height": 276.3999938964844, + "left": 801, + "right": 1001, + "top": 452.5, + "width": 200, + "x": 801, + "y": 452.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "tool_shed_repository": { + "changeset_revision": "514fa53b5efb", + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"binSize\": \"50\", \"sortRegions\": \"keep\", \"sortUsing\": \"mean\", \"averageTypeBins\": \"mean\", \"missingDataAsZero\": \"true\", \"skipZeros\": \"false\", \"minThreshold\": null, \"maxThreshold\": null, \"scale\": null, \"metagene\": \"false\", \"transcriptID\": \"transcript\", \"exonID\": \"exon\", \"transcript_id_designator\": \"transcript_id\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}}, \"custom_sample_labels_conditional\": {\"custom_labels_select\": \"No\", \"__current_case__\": 0}, \"mode\": {\"mode_select\": \"reference-point\", \"__current_case__\": 1, \"referencePoint\": \"center\", \"nanAfterEnd\": \"false\", \"beforeRegionStartLength\": \"1000\", \"afterRegionStartLength\": \"1000\"}, \"multibigwig_conditional\": {\"orderMatters\": \"No\", \"__current_case__\": 0, \"bigwigfiles\": {\"__class__\": \"RuntimeValue\"}}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"regionsFiles\": [{\"__index__\": 0, \"regionsFile\": {\"__class__\": \"RuntimeValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.2.0.0", + "type": "tool", + "uuid": "bac792b9-a0d5-4f64-9fc0-33764f85ecd1", + "workflow_outputs": [ + { + "label": "computeMatrix on input dataset(s): Matrix", + "output_name": "outFileName", + "uuid": "65159c9c-050b-4069-8704-8f66c0563a98" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "errors": null, + "id": 21, + "input_connections": { + "matrixFile": { + "id": 18, + "output_name": "outFileName" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool plotHeatmap", + "name": "matrixFile" + } + ], + "label": null, + "name": "plotHeatmap", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "bottom": 434.8999938964844, + "height": 154.39999389648438, + "left": 801, + "right": 1001, + "top": 280.5, + "width": 200, + "x": 801, + "y": 280.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "tool_shed_repository": { + "changeset_revision": "a4dfb122e52b", + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"no\", \"__current_case__\": 0}, \"matrixFile\": {\"__class__\": \"RuntimeValue\"}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.2.0.1", + "type": "tool", + "uuid": "aa15bd05-5d6e-4457-a86f-4d5f9b457ace", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "8eb18610-8bd4-4792-b6bc-30bf53673151" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "errors": null, + "id": 22, + "input_connections": { + "matrixFile": { + "id": 20, + "output_name": "outFileName" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool plotHeatmap", + "name": "matrixFile" + } + ], + "label": null, + "name": "plotHeatmap", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "bottom": 696.8999938964844, + "height": 154.39999389648438, + "left": 1079, + "right": 1279, + "top": 542.5, + "width": 200, + "x": 1079, + "y": 542.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "tool_shed_repository": { + "changeset_revision": "a4dfb122e52b", + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"sortRegions\": \"descend\", \"sortUsing\": \"mean\", \"averageTypeSummaryPlot\": \"mean\", \"plotType\": \"lines\", \"missingDataColor\": \"black\", \"colorMapRepeat\": [{\"__index__\": 0, \"colorMap\": \"Blues\"}], \"alpha\": \"1.0\", \"colorList\": \"\", \"zMin\": \"\", \"zMax\": \"\", \"yMin\": null, \"yMax\": null, \"xAxisLabel\": \"distance from peak center (bp)\", \"yAxisLabel\": \"CTCF peaks\", \"heatmapWidth\": \"7.5\", \"heatmapHeight\": \"25.0\", \"whatToShow\": \"plot, heatmap and colorbar\", \"startLabel\": \"TSS\", \"endLabel\": \"TES\", \"referencePointLabel\": \"peak center\", \"samplesLabel\": \"\", \"regionsLabel\": \"CTCF_peaks\", \"plotTitle\": \"\", \"legendLocation\": \"best\", \"labelRotation\": \"0\", \"perGroup\": \"false\", \"used_multiple_regions\": {\"used_multiple_regions_options\": \"yes\", \"__current_case__\": 1}}, \"matrixFile\": {\"__class__\": \"RuntimeValue\"}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.2.0.1", + "type": "tool", + "uuid": "fb2d6fd1-13a7-4673-950f-40fe57f2b9e1", + "workflow_outputs": [ + { + "label": "plotHeatmap on input dataset(s): Image", + "output_name": "outFileName", + "uuid": "74a36643-b88f-4378-8f9c-c1b20ee2651e" + } + ] + } + ], + "parent_id": "epigenetics/cut_and_run", + "path": "topics/epigenetics/tutorials/cut_and_run/workflows/main_workflow.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": false, + "title": "ATAC-seq GTM", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-cut_and_run/versions/main-workflow", + "tutorial_id": "cut_and_run", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/cut_and_run/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/cut_and_run/workflows/main_workflow.html", + "version": 1, + "wfid": "epigenetics-cut_and_run", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "toolshed.g2.bx.psu.edu/repos/iuc/pe_histogram/pe_histogram/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.6", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "wig_to_bigWig" + ], + "workflowhub_id": "1161" + } + ], + "zenodo_link": "https://zenodo.org/record/3862793" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "chipeakanno_annopeaks", + "owner": "kpbioteam", + "revisions": "104882a2de00", + "tool_panel_section_label": "Test Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clusterprofiler_bitr", + "owner": "kpbioteam", + "revisions": "762c61c71874", + "tool_panel_section_label": "Test Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clusterprofiler_go", + "owner": "kpbioteam", + "revisions": "5299be80cafb", + "tool_panel_section_label": "Test Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ewastools", + "owner": "kpbioteam", + "revisions": "369fef559cfc", + "tool_panel_section_label": "Epigenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: chipeakanno_annopeaks\n owner: kpbioteam\n revisions: 104882a2de00\n tool_panel_section_label: Test Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clusterprofiler_bitr\n owner: kpbioteam\n revisions: 762c61c71874\n tool_panel_section_label: Test Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clusterprofiler_go\n owner: kpbioteam\n revisions: 5299be80cafb\n tool_panel_section_label: Test Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ewastools\n owner: kpbioteam\n revisions: 369fef559cfc\n tool_panel_section_label: Epigenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/ewas-suite/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + } + ], + "dir": "topics/epigenetics/tutorials/ewas-suite", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "epigenetics/ewas-suite", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Infinium Human Methylation BeadChip is an array based technology to generate DNA methylation profiling at individual CpG loci in the human genome based on Illumina\u2019s bead technology.", + "Time and cost efficiency followed by high sample output, and overall quantitative accuracy and reproducibility made Infinium Human Methylation BeadChip one of the most widely used arrays on the market." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-26", + "objectives": [ + "Learn how to perform reproducible Infinium Human Methylation BeadChip analysis", + "Visualise differentially methylated positions using UCSC browser" + ], + "pageviews": 5729674, + "pub_date": "2018-08-27", + "questions": [ + "Which DNA regions and positions are diffrentialy methylated in pre MAPKi treatment and post MAPKi resistance Melanomas GSE65183?", + "How to analyse and visualise Infinium Human Methylation BeadChip's?" + ], + "short_id": "T00139", + "short_tools": [ + "clusterprofiler_go", + "clusterprofiler_bitr", + "Cut1", + "minfi_analysis", + "Remove beginning1", + "chipeakanno_annopeaks" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1h", + "title": "Infinium Human Methylation BeadChip", + "tools": [ + "Cut1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/kpbioteam/chipeakanno_annopeaks/chipeakanno_annopeaks/0.1.0", + "toolshed.g2.bx.psu.edu/repos/kpbioteam/clusterprofiler_bitr/clusterprofiler_bitr/0.1.0", + "toolshed.g2.bx.psu.edu/repos/kpbioteam/clusterprofiler_go/clusterprofiler_go/0.1.0", + "toolshed.g2.bx.psu.edu/repos/kpbioteam/ewastools/minfi_analysis/2.1.0" + ], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ewas-suite", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/ewas-suite/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/ewas-suite/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/ewas-suite/tutorial.json" + }, + "version": 19, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 268, + "visitors": 2065448, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0004-2454-5950", + "name": "Katarzyna Kamieniecka" + }, + { + "class": "Person", + "identifier": "0000-0001-5481-8893", + "name": "Khaled Jum'ah" + }, + { + "class": "Organization", + "name": "poterlowicz-lab", + "url": "https://github.com/ELIXIR-UK-DaSH" + } + ], + "description": "The workflow containes the step to perpare the data for and run Galaxy Infinium Human Methylation BeadChip tool that represents many popular algorithms for detecting somatic genetic alterations from genome and exome data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR01C02_Red.idat\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR02C02_Red.idat\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR05C02_Red.idat\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR06C02_Red.idat\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR01C02_Green.idat\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR02C02_Green.idat\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR05C02_Green.idat\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR06C02_Green.idat\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nphenotype Table txt file\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nUCSC Main on Human\"]\n 10[label=\"Infinium Human Methylation BeadChip\"]\n 4 -> 10 [label=\"output\"]\n 5 -> 10 [label=\"output\"]\n 6 -> 10 [label=\"output\"]\n 7 -> 10 [label=\"output\"]\n 0 -> 10 [label=\"output\"]\n 1 -> 10 [label=\"output\"]\n 2 -> 10 [label=\"output\"]\n 3 -> 10 [label=\"output\"]\n 8 -> 10 [label=\"output\"]\n 9 -> 10 [label=\"output\"]\n k2ac7dd5ded744d58b1cbbe7dcca9154a[color=lightseagreen,label=\"Output\\nSNPInfo Table\"]\n 10 -> k2ac7dd5ded744d58b1cbbe7dcca9154a\n kd1732a9818614612bdaaf68861c22f56[color=lightseagreen,label=\"Output\\nDifferentially Methylated Regions\"]\n 10 -> kd1732a9818614612bdaaf68861c22f56\n k9aa8b4a9611e4a39864f400f17866a9e[color=lightseagreen,label=\"Output\\nDifferentially Methylated Positions\"]\n 10 -> k9aa8b4a9611e4a39864f400f17866a9e\n k14ddb6f7637e4193bfb580aeae4fab64[color=lightseagreen,label=\"Output\\nQuality Control Report\"]\n 10 -> k14ddb6f7637e4193bfb580aeae4fab64\n kc8c37ff8716d4c23a84f7cebcb4b6c9d[color=lightseagreen,label=\"Output\\nQuality Control Plot\"]\n 10 -> kc8c37ff8716d4c23a84f7cebcb4b6c9d\n 11[label=\"ChIPpeakAnno annoPeaks\"]\n 10 -> 11 [label=\"dmp\"]\n kbedf4346da4d4e1abf3ca7d20f3ec3c5[color=lightseagreen,label=\"Output\\nTable of Annotated Peaks\"]\n 11 -> kbedf4346da4d4e1abf3ca7d20f3ec3c5\n 12[label=\"Cut\"]\n 11 -> 12 [label=\"tab\"]\n k0b54dfe5f84a4288b631ae4dc2384a17[color=lightseagreen,label=\"Output\\nCut on Table of Annotated Peaks\"]\n 12 -> k0b54dfe5f84a4288b631ae4dc2384a17\n 13[label=\"Remove beginning\"]\n 12 -> 13 [label=\"out_file1\"]\n k8f65cf8274274273ba0ba6673ee1ff2d[color=lightseagreen,label=\"Output\\nRemove beginning on the cut output\"]\n 13 -> k8f65cf8274274273ba0ba6673ee1ff2d\n 14[label=\"Cluster Profiler Bitr\"]\n 13 -> 14 [label=\"out_file1\"]\n k7989f80a3e794d2fbbe4e4d641eebd6a[color=lightseagreen,label=\"Output\\nTable of Translated Gene ID's\"]\n 14 -> k7989f80a3e794d2fbbe4e4d641eebd6a\n 15[label=\"Cluster Profiler GO\"]\n 14 -> 15 [label=\"translation\"]\n kff6c7018b8214ade9931fa99aeb0a86c[color=lightseagreen,label=\"Output\\nGO Enrichment Analysis of a Gene Set\"]\n 15 -> kff6c7018b8214ade9931fa99aeb0a86c\n k03b88399095b4bd59693528c60338407[color=lightseagreen,label=\"Output\\nGO Enrichment Analysis Visualization\"]\n 15 -> k03b88399095b4bd59693528c60338407\n}", + "history": [ + { + "hash": "4f69ebe91fffffe057c1f187bc83e1562369defd", + "message": "fix workflow", + "num": 4, + "short_hash": "4f69ebe91", + "unix": "1698053430" + }, + { + "hash": "8f19faceda02e93f48bb3fe0e7fffa533685d99d", + "message": "fix", + "num": 3, + "short_hash": "8f19faced", + "unix": "1697725863" + }, + { + "hash": "568e22f2036d5cfb1cd3d3454d0b50e3c6ca54ca", + "message": "add license", + "num": 2, + "short_hash": "568e22f20", + "unix": "1697724380" + }, + { + "hash": "451efca00587e14a69d8df6096d0297e739d1f27", + "message": "remove pictures and add output tests", + "num": 1, + "short_hash": "451efca00", + "unix": "1697723365" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R01C02_Red.idat" + } + ], + "label": "R01C02_Red.idat", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.885486970465422e-05, + "top": 3 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "71c54456-73d3-4af4-8d89-ab81d0feb88d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R02C02_Red.idat" + } + ], + "label": "R02C02_Red.idat", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.885486970465422e-05, + "top": 123 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2521d0ca-a0d8-416f-8735-0a6c441812fc", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R05C02_Red.idat" + } + ], + "label": "R05C02_Red.idat", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.885486970465422e-05, + "top": 243 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f3068f86-caf3-4e26-a51b-3c6c6683ce84", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R06C02_Red.idat" + } + ], + "label": "R06C02_Red.idat", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 362.99997401229103 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ef39313e-8463-444e-8d91-ebebfc16e124", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R01C02_Green.idat" + } + ], + "label": "R01C02_Green.idat", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.885486970465422e-05, + "top": 483 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "738cbcf1-2bc8-438d-b539-bc6e762af030", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R02C02_Green.idat" + } + ], + "label": "R02C02_Green.idat", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.885486970465422e-05, + "top": 603 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4d8bb323-db45-4f9d-b846-fde1c4f08b13", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R05C02_Green.idat" + } + ], + "label": "R05C02_Green.idat", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6.401854712230744, + "top": 721.3996100720306 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "c47087fa-a5df-4ec4-8142-e2352e620e4f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R06C02_Green.idat" + } + ], + "label": "R06C02_Green.idat", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.885486970465422e-05, + "top": 843 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3b510a95-0b47-4d90-b499-4c33e4914954", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "phenotype Table txt file" + } + ], + "label": "phenotype Table txt file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.885486970465422e-05, + "top": 963 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0c5e494f-b987-4f48-a667-b9e8a259794e", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "UCSC Main on Human" + } + ], + "label": "UCSC Main on Human", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.885486970465422e-05, + "top": 1083 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "04bc7d9a-d7ae-46fe-9eaf-85d6c47c57a5", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nR01C02_Red.idat\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nR02C02_Red.idat\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nR05C02_Red.idat\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nR06C02_Red.idat\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nR01C02_Green.idat\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nR02C02_Green.idat\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nR05C02_Green.idat\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nR06C02_Green.idat\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nphenotype Table txt file\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Dataset\\nUCSC Main on Human\"];\n style 9 stroke:#2c3143,stroke-width:4px;\n 10[\"Infinium Human Methylation BeadChip\"];\n 4 -->|output| 10;\n 5 -->|output| 10;\n 6 -->|output| 10;\n 7 -->|output| 10;\n 0 -->|output| 10;\n 1 -->|output| 10;\n 2 -->|output| 10;\n 3 -->|output| 10;\n 8 -->|output| 10;\n 9 -->|output| 10;\n 2ac7dd5d-ed74-4d58-b1cb-be7dcca9154a[\"Output\\nSNPInfo Table\"];\n 10 --> 2ac7dd5d-ed74-4d58-b1cb-be7dcca9154a;\n style 2ac7dd5d-ed74-4d58-b1cb-be7dcca9154a stroke:#2c3143,stroke-width:4px;\n d1732a98-1861-4612-bdaa-f68861c22f56[\"Output\\nDifferentially Methylated Regions\"];\n 10 --> d1732a98-1861-4612-bdaa-f68861c22f56;\n style d1732a98-1861-4612-bdaa-f68861c22f56 stroke:#2c3143,stroke-width:4px;\n 9aa8b4a9-611e-4a39-864f-400f17866a9e[\"Output\\nDifferentially Methylated Positions\"];\n 10 --> 9aa8b4a9-611e-4a39-864f-400f17866a9e;\n style 9aa8b4a9-611e-4a39-864f-400f17866a9e stroke:#2c3143,stroke-width:4px;\n 14ddb6f7-637e-4193-bfb5-80aeae4fab64[\"Output\\nQuality Control Report\"];\n 10 --> 14ddb6f7-637e-4193-bfb5-80aeae4fab64;\n style 14ddb6f7-637e-4193-bfb5-80aeae4fab64 stroke:#2c3143,stroke-width:4px;\n c8c37ff8-716d-4c23-a84f-7cebcb4b6c9d[\"Output\\nQuality Control Plot\"];\n 10 --> c8c37ff8-716d-4c23-a84f-7cebcb4b6c9d;\n style c8c37ff8-716d-4c23-a84f-7cebcb4b6c9d stroke:#2c3143,stroke-width:4px;\n 11[\"ChIPpeakAnno annoPeaks\"];\n 10 -->|dmp| 11;\n bedf4346-da4d-4e1a-bf3c-a7d20f3ec3c5[\"Output\\nTable of Annotated Peaks\"];\n 11 --> bedf4346-da4d-4e1a-bf3c-a7d20f3ec3c5;\n style bedf4346-da4d-4e1a-bf3c-a7d20f3ec3c5 stroke:#2c3143,stroke-width:4px;\n 12[\"Cut\"];\n 11 -->|tab| 12;\n 0b54dfe5-f84a-4288-b631-ae4dc2384a17[\"Output\\nCut on Table of Annotated Peaks\"];\n 12 --> 0b54dfe5-f84a-4288-b631-ae4dc2384a17;\n style 0b54dfe5-f84a-4288-b631-ae4dc2384a17 stroke:#2c3143,stroke-width:4px;\n 13[\"Remove beginning\"];\n 12 -->|out_file1| 13;\n 8f65cf82-7427-4273-ba0b-a6673ee1ff2d[\"Output\\nRemove beginning on the cut output\"];\n 13 --> 8f65cf82-7427-4273-ba0b-a6673ee1ff2d;\n style 8f65cf82-7427-4273-ba0b-a6673ee1ff2d stroke:#2c3143,stroke-width:4px;\n 14[\"Cluster Profiler Bitr\"];\n 13 -->|out_file1| 14;\n 7989f80a-3e79-4d2f-bbe4-e4d641eebd6a[\"Output\\nTable of Translated Gene ID's\"];\n 14 --> 7989f80a-3e79-4d2f-bbe4-e4d641eebd6a;\n style 7989f80a-3e79-4d2f-bbe4-e4d641eebd6a stroke:#2c3143,stroke-width:4px;\n 15[\"Cluster Profiler GO\"];\n 14 -->|translation| 15;\n ff6c7018-b821-4ade-9931-fa99aeb0a86c[\"Output\\nGO Enrichment Analysis of a Gene Set\"];\n 15 --> ff6c7018-b821-4ade-9931-fa99aeb0a86c;\n style ff6c7018-b821-4ade-9931-fa99aeb0a86c stroke:#2c3143,stroke-width:4px;\n 03b88399-095b-4bd5-9693-528c60338407[\"Output\\nGO Enrichment Analysis Visualization\"];\n 15 --> 03b88399-095b-4bd5-9693-528c60338407;\n style 03b88399-095b-4bd5-9693-528c60338407 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Infinium Human Methylation BeadChip", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/kpbioteam/ewastools/minfi_analysis/2.1.0", + "errors": null, + "id": 10, + "input_connections": { + "files_grn": [ + { + "id": 4, + "output_name": "output" + }, + { + "id": 5, + "output_name": "output" + }, + { + "id": 6, + "output_name": "output" + }, + { + "id": 7, + "output_name": "output" + } + ], + "files_red": [ + { + "id": 0, + "output_name": "output" + }, + { + "id": 1, + "output_name": "output" + }, + { + "id": 2, + "output_name": "output" + }, + { + "id": 3, + "output_name": "output" + } + ], + "phenotype_table": { + "id": 8, + "output_name": "output" + }, + "ucsc_genome": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Infinium Human Methylation BeadChip", + "outputs": [ + { + "name": "qctab", + "type": "txt" + }, + { + "name": "qcpng", + "type": "png" + }, + { + "name": "table", + "type": "txt" + }, + { + "name": "dmr", + "type": "bed" + }, + { + "name": "dmp", + "type": "bed" + } + ], + "position": { + "left": 220.0000188548697, + "top": 3 + }, + "post_job_actions": { + "RenameDatasetActiondmp": { + "action_arguments": { + "newname": "Differentially Methylated Positions" + }, + "action_type": "RenameDatasetAction", + "output_name": "dmp" + }, + "RenameDatasetActiondmr": { + "action_arguments": { + "newname": "Differentially Methylated Regions" + }, + "action_type": "RenameDatasetAction", + "output_name": "dmr" + }, + "RenameDatasetActionqcpng": { + "action_arguments": { + "newname": "Quality Control Plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "qcpng" + }, + "RenameDatasetActionqctab": { + "action_arguments": { + "newname": "Quality Control Report" + }, + "action_type": "RenameDatasetAction", + "output_name": "qctab" + }, + "RenameDatasetActiontable": { + "action_arguments": { + "newname": "SNPInfo Table" + }, + "action_type": "RenameDatasetAction", + "output_name": "table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/kpbioteam/ewastools/minfi_analysis/2.1.0", + "tool_shed_repository": { + "changeset_revision": "369fef559cfc", + "name": "ewastools", + "owner": "kpbioteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"idat\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"cutoff_size\": \"0.1\", \"files_grn\": {\"__class__\": \"ConnectedValue\"}, \"files_red\": {\"__class__\": \"ConnectedValue\"}, \"maxgap_size\": \"250\", \"null_method\": \"permutation\", \"number_of_resamples\": \"0\", \"optpp\": \"ppsnp\", \"phenotype\": \"categorical\", \"phenotype_table\": {\"__class__\": \"ConnectedValue\"}, \"q_cutoff\": \"0.5\", \"ucsc_genome\": {\"__class__\": \"ConnectedValue\"}, \"variance_shrinkage\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "99026073-61d1-408d-b7a7-50fe91530aa5", + "when": null, + "workflow_outputs": [ + { + "label": "SNPInfo Table", + "output_name": "table", + "uuid": "2ac7dd5d-ed74-4d58-b1cb-be7dcca9154a" + }, + { + "label": "Differentially Methylated Regions", + "output_name": "dmr", + "uuid": "d1732a98-1861-4612-bdaa-f68861c22f56" + }, + { + "label": "Differentially Methylated Positions", + "output_name": "dmp", + "uuid": "9aa8b4a9-611e-4a39-864f-400f17866a9e" + }, + { + "label": "Quality Control Report", + "output_name": "qctab", + "uuid": "14ddb6f7-637e-4193-bfb5-80aeae4fab64" + }, + { + "label": "Quality Control Plot", + "output_name": "qcpng", + "uuid": "c8c37ff8-716d-4c23-a84f-7cebcb4b6c9d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/kpbioteam/chipeakanno_annopeaks/chipeakanno_annopeaks/0.1.0", + "errors": null, + "id": 11, + "input_connections": { + "dmp": { + "id": 10, + "output_name": "dmp" + } + }, + "inputs": [], + "label": null, + "name": "ChIPpeakAnno annoPeaks", + "outputs": [ + { + "name": "tab", + "type": "tabular" + } + ], + "position": { + "left": 452, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActiontab": { + "action_arguments": { + "newname": "Table of Annotated Peaks" + }, + "action_type": "RenameDatasetAction", + "output_name": "tab" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/kpbioteam/chipeakanno_annopeaks/chipeakanno_annopeaks/0.1.0", + "tool_shed_repository": { + "changeset_revision": "104882a2de00", + "name": "chipeakanno_annopeaks", + "owner": "kpbioteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"dmp\": {\"__class__\": \"ConnectedValue\"}, \"end\": \"3000\", \"score\": \"5\", \"start\": \"-5000\", \"type\": \"startSite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "3a83a9ba-d58c-455a-84b0-8f25e95cc4f3", + "when": null, + "workflow_outputs": [ + { + "label": "Table of Annotated Peaks", + "output_name": "tab", + "uuid": "bedf4346-da4d-4e1a-bf3c-a7d20f3ec3c5" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 11, + "output_name": "tab" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 660.0000188548697, + "top": 3 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Cut on Table of Annotated Peaks" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"columnList\": \"c16\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "6af6eed4-d83b-42de-a72f-67443b9c63ea", + "when": null, + "workflow_outputs": [ + { + "label": "Cut on Table of Annotated Peaks", + "output_name": "out_file1", + "uuid": "0b54dfe5-f84a-4288-b631-ae4dc2384a17" + } + ] + }, + { + "annotation": "", + "content_id": "Remove beginning1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 12, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Remove beginning", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 880.0000188548697, + "top": 3 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Remove beginning on the cut output" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Remove beginning1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"num_lines\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "8eaba4e8-a8a4-4123-80c7-ef822bd19bb3", + "when": null, + "workflow_outputs": [ + { + "label": "Remove beginning on the cut output", + "output_name": "out_file1", + "uuid": "8f65cf82-7427-4273-ba0b-a6673ee1ff2d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/kpbioteam/clusterprofiler_bitr/clusterprofiler_bitr/0.1.0", + "errors": null, + "id": 14, + "input_connections": { + "genelist": { + "id": 13, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cluster Profiler Bitr", + "outputs": [ + { + "name": "translation", + "type": "txt" + } + ], + "position": { + "left": 1100.0000188548697, + "top": 3 + }, + "post_job_actions": { + "RenameDatasetActiontranslation": { + "action_arguments": { + "newname": "Table of Translated Gene ID's" + }, + "action_type": "RenameDatasetAction", + "output_name": "translation" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/kpbioteam/clusterprofiler_bitr/clusterprofiler_bitr/0.1.0", + "tool_shed_repository": { + "changeset_revision": "762c61c71874", + "name": "clusterprofiler_bitr", + "owner": "kpbioteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"fromType\": \"SYMBOL\", \"genelist\": {\"__class__\": \"ConnectedValue\"}, \"toType\": \"ENTREZID\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "2fe5dfd4-a3b7-42c9-9831-13bf2400d2bf", + "when": null, + "workflow_outputs": [ + { + "label": "Table of Translated Gene ID's", + "output_name": "translation", + "uuid": "7989f80a-3e79-4d2f-bbe4-e4d641eebd6a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/kpbioteam/clusterprofiler_go/clusterprofiler_go/0.1.0", + "errors": null, + "id": 15, + "input_connections": { + "entrezid": { + "id": 14, + "output_name": "translation" + } + }, + "inputs": [], + "label": null, + "name": "Cluster Profiler GO", + "outputs": [ + { + "name": "table", + "type": "txt" + }, + { + "name": "plot", + "type": "pdf" + } + ], + "position": { + "left": 1320.0000188548697, + "top": 3 + }, + "post_job_actions": { + "RenameDatasetActionplot": { + "action_arguments": { + "newname": "GO Enrichment Analysis Visualization" + }, + "action_type": "RenameDatasetAction", + "output_name": "plot" + }, + "RenameDatasetActiontable": { + "action_arguments": { + "newname": "GO Enrichment Analysis of a Gene Set" + }, + "action_type": "RenameDatasetAction", + "output_name": "table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/kpbioteam/clusterprofiler_go/clusterprofiler_go/0.1.0", + "tool_shed_repository": { + "changeset_revision": "5299be80cafb", + "name": "clusterprofiler_go", + "owner": "kpbioteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"txt\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"entrezid\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "53573a62-88a2-41f3-b3ed-a2afc511f0dd", + "when": null, + "workflow_outputs": [ + { + "label": "GO Enrichment Analysis of a Gene Set", + "output_name": "table", + "uuid": "ff6c7018-b821-4ade-9931-fa99aeb0a86c" + }, + { + "label": "GO Enrichment Analysis Visualization", + "output_name": "plot", + "uuid": "03b88399-095b-4bd5-9693-528c60338407" + } + ] + } + ], + "parent_id": "epigenetics/ewas-suite", + "path": "topics/epigenetics/tutorials/ewas-suite/workflows/Infinium-Human-Methylation-BeadChip.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": true, + "title": "Infinium Human Methylation BeadChip", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-ewas-suite/versions/infinium-human-methylation-beadchip", + "tutorial_id": "ewas-suite", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/ewas-suite/workflows/Infinium-Human-Methylation-BeadChip.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/ewas-suite/workflows/Infinium-Human-Methylation-BeadChip.html", + "version": 1, + "wfid": "epigenetics-ewas-suite", + "wfname": "infinium-human-methylation-beadchip", + "workflow": "Infinium-Human-Methylation-BeadChip.ga", + "workflow_tools": [ + "Cut1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/kpbioteam/chipeakanno_annopeaks/chipeakanno_annopeaks/0.1.0", + "toolshed.g2.bx.psu.edu/repos/kpbioteam/clusterprofiler_bitr/clusterprofiler_bitr/0.1.0", + "toolshed.g2.bx.psu.edu/repos/kpbioteam/clusterprofiler_go/clusterprofiler_go/0.1.0", + "toolshed.g2.bx.psu.edu/repos/kpbioteam/ewastools/minfi_analysis/2.1.0" + ], + "workflowhub_id": "1165" + } + ], + "zenodo_link": "https://zenodo.org/record/1251211" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "revisions": "fd1275e01605", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_profile", + "owner": "bgruening", + "revisions": "aac8444d6681", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pileometh", + "owner": "bgruening", + "revisions": "906db57d5d65", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "replace_column_by_key_value_file", + "owner": "bgruening", + "revisions": "cc18bac5afdb", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "e39fceb6ab85", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "484e86282f4b", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwameth", + "owner": "iuc", + "revisions": "a6ea26c1f225", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metilene", + "owner": "rnateam", + "revisions": "37abd09a0ae6", + "tool_panel_section_label": "Epigenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_compute_matrix\n owner: bgruening\n revisions: fd1275e01605\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_profile\n owner: bgruening\n revisions: aac8444d6681\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pileometh\n owner: bgruening\n revisions: 906db57d5d65\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: replace_column_by_key_value_file\n owner: bgruening\n revisions: cc18bac5afdb\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: e39fceb6ab85\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 484e86282f4b\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwameth\n owner: iuc\n revisions: a6ea26c1f225\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metilene\n owner: rnateam\n revisions: 37abd09a0ae6\n tool_panel_section_label: Epigenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/methylation-seq/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "email": "wolffj@informatik.uni-freiburg.de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "joachimwolff", + "joined": "2017-09", + "name": "Joachim Wolff", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/joachimwolff/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/joachimwolff.json" + }, + { + "id": "dpryan79", + "joined": "2017-09", + "name": "Devon Ryan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dpryan79/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dpryan79.json" + } + ], + "dir": "topics/epigenetics/tutorials/methylation-seq", + "edam_ontology": [ + "topic_3173" + ], + "edam_operation": [ + "Sequencing quality control", + "Sequence composition calculation", + "Statistical calculation" + ], + "edam_topic": [ + "Epigenomics" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "epigenetics/methylation-seq", + "inexact_supported_servers": [ + "HyPhy HIV NGS Tools", + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The output of a methylation NGS is having a different distribution of the four bases. This is caused by the bisulfite treatment of the DNA.", + "If there is a different level of methylation in the loci of a gene this can be a hint that something is wrong.", + "To get useful results you need -- data, data and data!" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Learn how to analyse methylation data", + "Get a first intuition what are common pitfalls." + ], + "pageviews": 19773, + "pub_date": "2017-02-16", + "questions": [ + "What is methylation and why it cannot be recognised by a normal NGS procedure?", + "Can a different methylation influence the expression of a gene? How?", + "Which tools you can use to analyse methylation data?" + ], + "short_id": "T00142", + "short_tools": [ + "replace_column_with_key_value_file", + "tp_awk_tool", + "bwameth", + "tp_tail_tool", + "deeptools_compute_matrix", + "fastqc", + "pileometh", + "deeptools_plot_profile", + "metilene" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "HyPhy HIV NGS Tools", + "url": "https://galaxy.hyphy.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "3h", + "title": "DNA Methylation data analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_profile/deeptools_plot_profile/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/pileometh/pileometh/0.3.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/replace_column_by_key_value_file/replace_column_with_key_value_file/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.68", + "toolshed.g2.bx.psu.edu/repos/iuc/bwameth/bwameth/0.2.0.3", + "toolshed.g2.bx.psu.edu/repos/rnateam/metilene/metilene/0.2.6.1" + ], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "methylation-seq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/methylation-seq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/methylation-seq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/methylation-seq/tutorial.json" + }, + "version": 23, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 127, + "visitors": 11091, + "workflows": [ + { + "creators": [], + "description": "DNA Methylation data analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 9[label=\"FastQC\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"FastQC\"]\n 1 -> 10 [label=\"output\"]\n 11[label=\"bwameth\"]\n 0 -> 11 [label=\"output\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Replace column\"]\n 3 -> 12 [label=\"output\"]\n 4 -> 12 [label=\"output\"]\n 13[label=\"metilene\"]\n 2 -> 13 [label=\"output\"]\n 5 -> 13 [label=\"output\"]\n 3 -> 13 [label=\"output\"]\n 8 -> 13 [label=\"output\"]\n 7 -> 13 [label=\"output\"]\n 6 -> 13 [label=\"output\"]\n 14[label=\"MethylDackel\"]\n 11 -> 14 [label=\"output\"]\n 15[label=\"MethylDackel\"]\n 11 -> 15 [label=\"output\"]\n 16[label=\"Select last\"]\n 12 -> 16 [label=\"outfile_replace\"]\n 17[label=\"Select last\"]\n 15 -> 17 [label=\"outFileExtractCpGFraction\"]\n 18[label=\"computeMatrix\"]\n 16 -> 18 [label=\"outfile\"]\n 2 -> 18 [label=\"output\"]\n 19[label=\"Text reformatting\"]\n 17 -> 19 [label=\"outfile\"]\n 20[label=\"computeMatrix\"]\n 19 -> 20 [label=\"outfile\"]\n 2 -> 20 [label=\"output\"]\n 21[label=\"plotProfile\"]\n 20 -> 21 [label=\"outFileName\"]\n k5b647979e90244b0a07a262f8044c75d[color=lightseagreen,label=\"Output\\nplot_profile_tabular\"]\n 21 -> k5b647979e90244b0a07a262f8044c75d\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "b97e27513fc304178bc943b201eb773281be0737", + "message": "add methylation workflow test data", + "num": 2, + "short_hash": "b97e27513", + "unix": "1527003391" + }, + { + "hash": "b169a31b9866079e4f951f10ac2ebf53afd5441f", + "message": "add methylation workflow test data", + "num": 1, + "short_hash": "b169a31b9", + "unix": "1527003326" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "subset_1.fastq" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"subset_1.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bacf4c2b-0aa3-4069-bd92-3fd6267505f3", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "subset_2.fastq" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"subset_2.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "1251179d-078d-451f-8f61-75c272bc0c78", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "CpGIslands.bed" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"name\": \"CpGIslands.bed\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e9c54940-b612-40cc-a58e-c14bc3945ed6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "NB1_CpG.meth.bedGraph" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"name\": \"NB1_CpG.meth.bedGraph\"}", + "tool_version": null, + "type": "data_input", + "uuid": "6f1eb0a2-5719-4f24-9933-3b28034e70ab", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GRCh38_ensembl2UCSC.txt" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 490 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GRCh38_ensembl2UCSC.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "c7238557-c79b-41e5-aa38-68b27ca88d2e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "NB2_CpG.meth.bedGraph" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 610 + }, + "tool_id": null, + "tool_state": "{\"name\": \"NB2_CpG.meth.bedGraph\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0cab2494-32bc-4732-86e4-a10cb0edfeff", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "BT089_CpG.meth.bedGraph" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 730 + }, + "tool_id": null, + "tool_state": "{\"name\": \"BT089_CpG.meth.bedGraph\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bbd85ab1-a5cb-4db6-b05f-78c90eb7b0d6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "BT126_CpG.meth.bedGraph" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 850 + }, + "tool_id": null, + "tool_state": "{\"name\": \"BT126_CpG.meth.bedGraph\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ba585cf0-5d2c-4894-ad69-18e7f5a182d4", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "BT198_CpG.meth.bedGraph" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 970 + }, + "tool_id": null, + "tool_state": "{\"name\": \"BT198_CpG.meth.bedGraph\"}", + "tool_version": null, + "type": "data_input", + "uuid": "da460b45-dc16-4806-975c-361ac13e2156", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"FastQC\"];\n 0 -->|output| 9;\n 10[\"FastQC\"];\n 1 -->|output| 10;\n 11[\"bwameth\"];\n 0 -->|output| 11;\n 1 -->|output| 11;\n 12[\"Replace column\"];\n 3 -->|output| 12;\n 4 -->|output| 12;\n 13[\"metilene\"];\n 2 -->|output| 13;\n 5 -->|output| 13;\n 3 -->|output| 13;\n 8 -->|output| 13;\n 7 -->|output| 13;\n 6 -->|output| 13;\n 14[\"MethylDackel\"];\n 11 -->|output| 14;\n 15[\"MethylDackel\"];\n 11 -->|output| 15;\n 16[\"Select last\"];\n 12 -->|outfile_replace| 16;\n 17[\"Select last\"];\n 15 -->|outFileExtractCpGFraction| 17;\n 18[\"computeMatrix\"];\n 16 -->|outfile| 18;\n 2 -->|output| 18;\n 19[\"Text reformatting\"];\n 17 -->|outfile| 19;\n 20[\"computeMatrix\"];\n 19 -->|outfile| 20;\n 2 -->|output| 20;\n 21[\"plotProfile\"];\n 20 -->|outFileName| 21;\n 5b647979-e902-44b0-a07a-262f8044c75d[\"Output\\nplot_profile_tabular\"];\n 21 --> 5b647979-e902-44b0-a07a-262f8044c75d;\n style 5b647979-e902-44b0-a07a-262f8044c75d stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Workflow Methylation Seq", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_profile/deeptools_plot_profile/2.5.1.1.0", + "errors": null, + "id": 21, + "input_connections": { + "matrixFile": { + "id": 20, + "output_name": "outFileName" + } + }, + "inputs": [], + "label": null, + "name": "plotProfile", + "outputs": [ + { + "name": "outFileName", + "type": "png" + }, + { + "name": "outFileSortedRegions", + "type": "bed" + }, + { + "name": "output_outFileNameData", + "type": "tabular" + } + ], + "position": { + "left": 1330, + "top": 10 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_profile/deeptools_plot_profile/2.5.1.1.0", + "tool_shed_repository": { + "changeset_revision": "aac8444d6681", + "name": "deeptools_plot_profile", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"matrixFile\": \"null\", \"scaleRegions\": \"{\\\"showScaleRegionsOpt\\\": \\\"no\\\", \\\"__current_case__\\\": 0}\", \"output\": \"{\\\"showOutputSettings\\\": \\\"no\\\", \\\"__current_case__\\\": 0}\", \"advancedOpt\": \"{\\\"showAdvancedOpt\\\": \\\"no\\\", \\\"__current_case__\\\": 0}\", \"chromInfo\": \"\\\"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/hg38.len\\\"\"}", + "tool_version": "2.5.1.1.0", + "type": "tool", + "uuid": "0f49a7fe-0f63-4ab6-8e70-f9207b5098af", + "workflow_outputs": [ + { + "label": "plot_profile_tabular", + "output_name": "output_outFileNameData", + "uuid": "5b647979-e902-44b0-a07a-262f8044c75d" + } + ] + } + ], + "parent_id": "epigenetics/methylation-seq", + "path": "topics/epigenetics/tutorials/methylation-seq/workflows/methylation-seq.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": true, + "title": "Workflow Methylation Seq", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-methylation-seq/versions/methylation-seq", + "tutorial_id": "methylation-seq", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/methylation-seq/workflows/methylation-seq.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/methylation-seq/workflows/methylation-seq.html", + "version": 3, + "wfid": "epigenetics-methylation-seq", + "wfname": "methylation-seq", + "workflow": "methylation-seq.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_profile/deeptools_plot_profile/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/pileometh/pileometh/0.3.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/replace_column_by_key_value_file/replace_column_with_key_value_file/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.68", + "toolshed.g2.bx.psu.edu/repos/iuc/bwameth/bwameth/0.2.0.3", + "toolshed.g2.bx.psu.edu/repos/rnateam/metilene/metilene/0.2.6.1" + ], + "workflowhub_id": "1157" + } + ], + "zenodo_link": "https://zenodo.org/record/557099" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "hicexplorer_hicbuildmatrix", + "owner": "bgruening", + "revisions": "707f691c974c", + "tool_panel_section_label": "HiCExplorer", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hicexplorer_hiccorrectmatrix", + "owner": "bgruening", + "revisions": "f7d344dacfeb", + "tool_panel_section_label": "HiCExplorer", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hicexplorer_hicfindtads", + "owner": "bgruening", + "revisions": "43332e51a712", + "tool_panel_section_label": "HiCExplorer", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hicexplorer_hicmergematrixbins", + "owner": "bgruening", + "revisions": "8926550196ce", + "tool_panel_section_label": "HiCExplorer", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hicexplorer_hicpca", + "owner": "bgruening", + "revisions": "ea50f7bba657", + "tool_panel_section_label": "HiCExplorer", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hicexplorer_hicplotmatrix", + "owner": "bgruening", + "revisions": "d398f5373c70", + "tool_panel_section_label": "HiCExplorer", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hicexplorer_hicplottads", + "owner": "bgruening", + "revisions": "94fff1a6a899", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: hicexplorer_hicbuildmatrix\n owner: bgruening\n revisions: 707f691c974c\n tool_panel_section_label: HiCExplorer\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hicexplorer_hiccorrectmatrix\n owner: bgruening\n revisions: f7d344dacfeb\n tool_panel_section_label: HiCExplorer\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hicexplorer_hicfindtads\n owner: bgruening\n revisions: 43332e51a712\n tool_panel_section_label: HiCExplorer\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hicexplorer_hicmergematrixbins\n owner: bgruening\n revisions: 8926550196ce\n tool_panel_section_label: HiCExplorer\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hicexplorer_hicpca\n owner: bgruening\n revisions: ea50f7bba657\n tool_panel_section_label: HiCExplorer\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hicexplorer_hicplotmatrix\n owner: bgruening\n revisions: d398f5373c70\n tool_panel_section_label: HiCExplorer\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hicexplorer_hicplottads\n owner: bgruening\n revisions: 94fff1a6a899\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/hicexplorer/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "email": "wolffj@informatik.uni-freiburg.de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "joachimwolff", + "joined": "2017-09", + "name": "Joachim Wolff", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/joachimwolff/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/joachimwolff.json" + }, + { + "id": "fidelram", + "joined": "2017-09", + "name": "Fidel Ramirez", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fidelram/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fidelram.json" + }, + { + "id": "vivekbhr", + "joined": "2017-09", + "name": "Vivek Bhardwaj", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/vivekbhr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/vivekbhr.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "id": "polkhe", + "joined": "2017-09", + "name": "Ekaterina Polkh", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/polkhe/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/polkhe.json" + } + ], + "dir": "topics/epigenetics/tutorials/hicexplorer", + "edam_operation": [ + "Sequence alignment", + "Read mapping", + "Genome indexing", + "Generation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "epigenetics/hicexplorer", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Hi-C helps to investigate the 3D structure of the genome and to uncover folding principles of chromatin.", + "In order to build a Hi-C contact matrix the reads have to be mapped to the reference genome.", + "Based on a contact matrix open and closed chromatin (A/B compartments) and topological associating domains (TADs) can be computed." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "pageviews": 10386, + "pub_date": "2018-02-23", + "questions": [ + "Why is a Hi-C analysis useful?", + "What is 'chromosome conformation capture'?", + "What are main steps in order to generate and plot a Hi-C contact matrix?" + ], + "short_id": "T00141", + "short_tools": [ + "hicexplorer_hicbuildmatrix", + "hicexplorer_hicfindtads", + "hicexplorer_hicpca", + "hicexplorer_hicplottads", + "hicexplorer_hiccorrectmatrix", + "hicexplorer_hicplotmatrix", + "bwa_mem", + "hicexplorer_hicmergematrixbins" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1h", + "title": "Hi-C analysis of Drosophila melanogaster cells using HiCExplorer", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicbuildmatrix/hicexplorer_hicbuildmatrix/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hiccorrectmatrix/hicexplorer_hiccorrectmatrix/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicfindtads/hicexplorer_hicfindtads/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicmergematrixbins/hicexplorer_hicmergematrixbins/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicpca/hicexplorer_hicpca/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicplotmatrix/hicexplorer_hicplotmatrix/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicplottads/hicexplorer_hicplottads/2.1.0", + "toolshed.g2.bx.psu.edu/repos/crs4/bwa_mem/bwa_mem/0.8.0" + ], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "hicexplorer", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/hicexplorer/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/hicexplorer/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/hicexplorer/tutorial.json" + }, + "version": 28, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 96, + "visitors": 5725, + "workflows": [ + { + "creators": [], + "description": "Hi-C analysis of Drosophila melanogaster cells using HiCExplorer", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR1.fastq\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR2.fastq\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nH3K27me3.bw\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nH3K36me3.bw\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nH4K16ac.bw\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ndm3_genes.bed\"]\n 6[label=\"Map with BWA-MEM\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Map with BWA-MEM\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"hicBuildMatrix\"]\n 7 -> 8 [label=\"output\"]\n 6 -> 8 [label=\"output\"]\n 9[label=\"hicMergeMatrixBins\"]\n 8 -> 9 [label=\"outFileName\"]\n 10[label=\"hicCorrectMatrix\"]\n 8 -> 10 [label=\"outFileName\"]\n 11[label=\"hicCorrectMatrix\"]\n 8 -> 11 [label=\"outFileName\"]\n 12[label=\"hicPlotMatrix\"]\n 9 -> 12 [label=\"outFileName\"]\n 13[label=\"hicPlotMatrix\"]\n 11 -> 13 [label=\"outFileName\"]\n 14[label=\"hicFindTADs\"]\n 11 -> 14 [label=\"outFileName\"]\n 15[label=\"hicPCA\"]\n 14 -> 15 [label=\"matrix_output\"]\n 16[label=\"hicPlotTADs\"]\n 14 -> 16 [label=\"domains\"]\n 11 -> 16 [label=\"outFileName\"]\n 14 -> 16 [label=\"tad_score\"]\n 15 -> 16 [label=\"pca1\"]\n 15 -> 16 [label=\"pca2\"]\n 3 -> 16 [label=\"output\"]\n 2 -> 16 [label=\"output\"]\n 4 -> 16 [label=\"output\"]\n 5 -> 16 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 8, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 7, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "8ce8a763bc29ac6140dbc36d23d3e95586756a9c", + "message": "Update Galaxy-Workflow-Galaxy_Hi-C.ga", + "num": 6, + "short_hash": "8ce8a763b", + "unix": "1524506954" + }, + { + "hash": "dcb0524b409abdd411db0fcd07259d1ddd788863", + "message": "corrected things", + "num": 5, + "short_hash": "dcb0524b4", + "unix": "1524481824" + }, + { + "hash": "78b5be24d12dd66ffb6c69e99d8244d30fa04dff", + "message": "updated workflow", + "num": 4, + "short_hash": "78b5be24d", + "unix": "1523703263" + }, + { + "hash": "66bebcc0a596fdac3b31d235b9f1cb11c8f32a5d", + "message": "corrected workflow", + "num": 3, + "short_hash": "66bebcc0a", + "unix": "1519653849" + }, + { + "hash": "ef5551785b47ede2fc2619fbb53aba8203878c51", + "message": "metadata", + "num": 2, + "short_hash": "ef5551785", + "unix": "1519397646" + }, + { + "hash": "59f921d8cd42031d5fa2a0e5d74e6bc706c5273a", + "message": "workflow", + "num": 1, + "short_hash": "59f921d8c", + "unix": "1519397080" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R1.fastq" + } + ], + "label": "R1.fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"R1.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "84ea88a5-b0ba-40a3-aa2b-ee04c8b6b846", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R2.fastq" + } + ], + "label": "R2.fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 285 + }, + "tool_id": null, + "tool_state": "{\"name\": \"R2.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "fc96cbcd-e768-49a2-9789-5ade13b2f10a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "H3K27me3.bw" + } + ], + "label": "H3K27me3.bw", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"name\": \"H3K27me3.bw\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3c23945d-8ea6-4b47-89e0-5c9fa835fe51", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "H3K36me3.bw" + } + ], + "label": "H3K36me3.bw", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 455 + }, + "tool_id": null, + "tool_state": "{\"name\": \"H3K36me3.bw\"}", + "tool_version": null, + "type": "data_input", + "uuid": "83c2f87b-b7f7-4888-a706-7e4dc3d5a395", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "H4K16ac.bw" + } + ], + "label": "H4K16ac.bw", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 540 + }, + "tool_id": null, + "tool_state": "{\"name\": \"H4K16ac.bw\"}", + "tool_version": null, + "type": "data_input", + "uuid": "b206bc1f-6c56-4aa9-a8a7-1a7f7f583943", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "dm3_genes.bed" + } + ], + "label": "dm3_genes.bed", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"dm3_genes.bed\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cb4f872d-8441-4f47-bb1c-a72a41a9979e", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nR1.fastq\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nR2.fastq\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nH3K27me3.bw\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nH3K36me3.bw\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nH4K16ac.bw\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\ndm3_genes.bed\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"Map with BWA-MEM\"];\n 0 -->|output| 6;\n 7[\"Map with BWA-MEM\"];\n 1 -->|output| 7;\n 8[\"hicBuildMatrix\"];\n 7 -->|output| 8;\n 6 -->|output| 8;\n 9[\"hicMergeMatrixBins\"];\n 8 -->|outFileName| 9;\n 10[\"hicCorrectMatrix\"];\n 8 -->|outFileName| 10;\n 11[\"hicCorrectMatrix\"];\n 8 -->|outFileName| 11;\n 12[\"hicPlotMatrix\"];\n 9 -->|outFileName| 12;\n 13[\"hicPlotMatrix\"];\n 11 -->|outFileName| 13;\n 14[\"hicFindTADs\"];\n 11 -->|outFileName| 14;\n 15[\"hicPCA\"];\n 14 -->|matrix_output| 15;\n 16[\"hicPlotTADs\"];\n 14 -->|domains| 16;\n 11 -->|outFileName| 16;\n 14 -->|tad_score| 16;\n 15 -->|pca1| 16;\n 15 -->|pca2| 16;\n 3 -->|output| 16;\n 2 -->|output| 16;\n 4 -->|output| 16;\n 5 -->|output| 16;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Galaxy Workflow Galaxy Hi C", + "outputs": [], + "parent_id": "epigenetics/hicexplorer", + "path": "topics/epigenetics/tutorials/hicexplorer/workflows/Galaxy-Workflow-Galaxy_Hi-C.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": false, + "title": "Galaxy Workflow Galaxy Hi C", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-hicexplorer/versions/galaxy-workflow-galaxy-hi-c", + "tutorial_id": "hicexplorer", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/hicexplorer/workflows/Galaxy-Workflow-Galaxy_Hi-C.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/hicexplorer/workflows/Galaxy-Workflow-Galaxy_Hi-C.html", + "version": 4, + "wfid": "epigenetics-hicexplorer", + "wfname": "galaxy-workflow-galaxy-hi-c", + "workflow": "Galaxy-Workflow-Galaxy_Hi-C.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicbuildmatrix/hicexplorer_hicbuildmatrix/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hiccorrectmatrix/hicexplorer_hiccorrectmatrix/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicfindtads/hicexplorer_hicfindtads/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicmergematrixbins/hicexplorer_hicmergematrixbins/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicpca/hicexplorer_hicpca/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicplotmatrix/hicexplorer_hicplotmatrix/2.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/hicexplorer_hicplottads/hicexplorer_hicplottads/2.1.0", + "toolshed.g2.bx.psu.edu/repos/crs4/bwa_mem/bwa_mem/0.8.0" + ], + "workflowhub_id": "1181" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1183661" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "revisions": "514fa53b5efb", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "revisions": "a4dfb122e52b", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_filter", + "owner": "devteam", + "revisions": "cb20f99fd45b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "a6d65b0c67af", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "a1f0b3f4b781", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_idxstats", + "owner": "devteam", + "revisions": "7a6034296ae9", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "ce3c7f062223", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a68aa6c1204a", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "macs2", + "owner": "iuc", + "revisions": "424aefbd7777", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pe_histogram", + "owner": "iuc", + "revisions": "bd1416eea1f0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pygenometracks", + "owner": "iuc", + "revisions": "2824d77cd8f8", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "49370cb85f0f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_compute_matrix\n owner: bgruening\n revisions: 514fa53b5efb\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_heatmap\n owner: bgruening\n revisions: a4dfb122e52b\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_filter\n owner: devteam\n revisions: cb20f99fd45b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: a6d65b0c67af\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: a1f0b3f4b781\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_idxstats\n owner: devteam\n revisions: 7a6034296ae9\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: ce3c7f062223\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a68aa6c1204a\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: macs2\n owner: iuc\n revisions: 424aefbd7777\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pe_histogram\n owner: iuc\n revisions: bd1416eea1f0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pygenometracks\n owner: iuc\n revisions: 2824d77cd8f8\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 49370cb85f0f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/atac-seq/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + }, + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "heylf", + "joined": "2018-08", + "name": "Florian Heyl", + "orcid": "0000-0002-3651-5685", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/heylf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/heylf.json" + } + ], + "dir": "topics/epigenetics/tutorials/atac-seq", + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Primer removal", + "Peak calling", + "Enrichment analysis", + "Formatting", + "Read mapping", + "Sequence alignment analysis", + "Mapping", + "Sequence composition calculation", + "Read pre-processing", + "Gene regulatory network analysis", + "Data handling", + "Sequence trimming", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "epigenetics/atac-seq", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "ATAC-Seq can be used to identify accessible gene promoters and enhancers", + "Several filters are applied to the reads, such as removing those mapped to mitochondria", + "Fragment distribution can help determine whether an ATAC-Seq experiment has worked well" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Apply appropriate analysis and quality control steps for ATAC-Seq", + "Generate a heatmap of transcription start site accessibility", + "Visualise peaks for specific regions" + ], + "pageviews": 5826101, + "pub_date": "2019-09-02", + "questions": [ + "Which DNA regions are accessible in the human lymphoblastoid cell line GM12878?", + "How to analyse and visualise ATAC-Seq data?" + ], + "recordings": [ + { + "captioners": [ + "hrhotz" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H50M", + "speakers": [ + "heylf" + ], + "youtube_id": "Zc-bl6ZfcX4" + } + ], + "short_id": "T00137", + "short_tools": [ + "Grep1", + "picard_MarkDuplicates", + "pygenomeTracks", + "bedtools_intersectbed", + "bowtie2", + "bamFilter", + "deeptools_compute_matrix", + "Cut1", + "deeptools_plot_heatmap", + "fastqc", + "samtools_idxstats", + "Filter1", + "tp_sort_header_tool", + "bedtools_bamtobed", + "macs2_callpeak", + "pe_histogram", + "wig_to_bigWig", + "cutadapt" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "lldelisle" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "lldelisle" + ], + "youtube_id": "2jPNNd5YJNM" + } + ], + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "3h", + "title": "ATAC-Seq data analysis", + "tools": [ + "Cut1", + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "toolshed.g2.bx.psu.edu/repos/iuc/pe_histogram/pe_histogram/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.6", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "wig_to_bigWig" + ], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "atac-seq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/atac-seq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/atac-seq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/atac-seq/tutorial.json" + }, + "version": 23, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 265, + "visitors": 2115259, + "workflows": [ + { + "creators": [], + "description": "atac-seq\n", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbed file with genes\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nctcf peaks\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nATAC R2 read in fastq.gz format\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nATAC R1 read in fastq.gz format\"]\n 4[label=\"Filter\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"FastQC\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"ATAC remove nextera adapters with cutadapt\"]\n 3 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"FastQC\"]\n 3 -> 7 [label=\"output\"]\n 8[label=\"bedtools Intersect intervals\"]\n 4 -> 8 [label=\"out_file1\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"FastQC\"]\n 6 -> 9 [label=\"out2\"]\n 10[label=\"Bowtie2\"]\n 6 -> 10 [label=\"out1\"]\n 6 -> 10 [label=\"out2\"]\n 11[label=\"FastQC\"]\n 6 -> 11 [label=\"out1\"]\n 12[label=\"Filter BAM ATAC\"]\n 10 -> 12 [label=\"output\"]\n 13[label=\"MarkDuplicates\"]\n 12 -> 13 [label=\"out_file1\"]\n 14[label=\"bedtools BAM to BED\"]\n 13 -> 14 [label=\"outFile\"]\n 15[label=\"Paired-end histogram\"]\n 13 -> 15 [label=\"outFile\"]\n 16[label=\"MACS2 callpeak\"]\n 14 -> 16 [label=\"output\"]\n 17[label=\"Wig/BedGraph-to-bigWig\"]\n 16 -> 17 [label=\"output_treat_pileup\"]\n 18[label=\"computeMatrix\"]\n 17 -> 18 [label=\"out_file1\"]\n 0 -> 18 [label=\"output\"]\n 19[label=\"pyGenomeTracks\"]\n 17 -> 19 [label=\"out_file1\"]\n 16 -> 19 [label=\"output_narrowpeaks\"]\n 0 -> 19 [label=\"output\"]\n 1 -> 19 [label=\"output\"]\n 20[label=\"computeMatrix\"]\n 17 -> 20 [label=\"out_file1\"]\n 8 -> 20 [label=\"output\"]\n k65159c9c050b406987048f66c0563a98[color=lightseagreen,label=\"Output\\ncomputeMatrix on input dataset(s): Matrix\"]\n 20 -> k65159c9c050b406987048f66c0563a98\n 21[label=\"plotHeatmap\"]\n 18 -> 21 [label=\"outFileName\"]\n 22[label=\"plotHeatmap\"]\n 20 -> 22 [label=\"outFileName\"]\n k74a36643b88f43788f9cc1b20ee2651e[color=lightseagreen,label=\"Output\\nplotHeatmap on input dataset(s): Image\"]\n 22 -> k74a36643b88f43788f9cc1b20ee2651e\n}", + "history": [ + { + "hash": "96d212779f2fbe4abf7c850b750ca5e163e88361", + "message": "update deeptools tools + parameters", + "num": 20, + "short_hash": "96d212779", + "unix": "1619713579" + }, + { + "hash": "ba3bf335e18101d6178afceebe7226c14c1153c4", + "message": "use pygenometracks 3.6", + "num": 19, + "short_hash": "ba3bf335e", + "unix": "1618238510" + }, + { + "hash": "af99da9c03f900d2c078b704c84993c64d9cf722", + "message": "update the workflow", + "num": 18, + "short_hash": "af99da9c0", + "unix": "1617381749" + }, + { + "hash": "d5cd0ab560e9922b159174141905919870659041", + "message": "update tutorial", + "num": 17, + "short_hash": "d5cd0ab56", + "unix": "1617118406" + }, + { + "hash": "d4aee8b0dee08824c24db20abb73078b27d46b2e", + "message": "change bedtools to allow to sort encodePeak", + "num": 16, + "short_hash": "d4aee8b0d", + "unix": "1592298126" + }, + { + "hash": "c1cf1143c8c7aa6fbd822761682cd94d95588b82", + "message": "macs2 to MACS2 in figures and workflow", + "num": 15, + "short_hash": "c1cf1143c", + "unix": "1591860137" + }, + { + "hash": "69d703ece4379791461043ed5d78dee4b2a9a724", + "message": "add tag and annotation", + "num": 14, + "short_hash": "69d703ece", + "unix": "1591855841" + }, + { + "hash": "83f254a2b6d7ab6dd0677111eca534d4fd70aa21", + "message": "update new version of pgt", + "num": 13, + "short_hash": "83f254a2b", + "unix": "1591824498" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 12, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 11, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "05fb8eedbed86a986f9bc87a8bdfedd4093acc75", + "message": "New workflows unflattened", + "num": 10, + "short_hash": "05fb8eedb", + "unix": "1576835747" + }, + { + "hash": "2ebad4e591be9976da3c76fac328910cbb532b53", + "message": "rebase", + "num": 9, + "short_hash": "2ebad4e59", + "unix": "1576835604" + }, + { + "hash": "bc9c7ce8a01c0205beb6267bcd866330acc1747f", + "message": "changed awk step", + "num": 8, + "short_hash": "bc9c7ce8a", + "unix": "1576770705" + }, + { + "hash": "1bef60c2de1f1a8f7b43814a18a9b4378a7433ba", + "message": "updated workflow", + "num": 7, + "short_hash": "1bef60c2d", + "unix": "1576768651" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 6, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "397de5ef9638f7e38137e143e575a87e13443089", + "message": "modified version of genrich and pygenometracks", + "num": 5, + "short_hash": "397de5ef9", + "unix": "1566912825" + }, + { + "hash": "93027360bcbac79c5e7d2eec481679d9ab09a159", + "message": "Changes to workflow atac", + "num": 4, + "short_hash": "93027360b", + "unix": "1565856529" + }, + { + "hash": "b2bcfc0d7fbfc45e055185515a5ba99b86ba4b00", + "message": "Add visualisation step to workflow (pygenometracks)", + "num": 3, + "short_hash": "b2bcfc0d7", + "unix": "1562416848" + }, + { + "hash": "7dec9b919382dc05ac8e1a717ca8e70078ea343e", + "message": "Updates to workflow", + "num": 2, + "short_hash": "7dec9b919", + "unix": "1562336122" + }, + { + "hash": "bb008c8c916d026929795969c28763b1cddfbfd1", + "message": "First draft of ATAC-seq tut from CoFest (WIP)", + "num": 1, + "short_hash": "bb008c8c9", + "unix": "1562333044" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "bed file with genes" + } + ], + "label": "bed file with genes", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 246.6999969482422, + "height": 82.19999694824219, + "left": 225, + "right": 425, + "top": 164.5, + "width": 200, + "x": 225, + "y": 164.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b860d81d-5828-497d-94be-26e1b08065bd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ctcf peaks" + } + ], + "label": "ctcf peaks", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 448.3000030517578, + "height": 61.80000305175781, + "left": -53, + "right": 147, + "top": 386.5, + "width": 200, + "x": -53, + "y": 386.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b356e32f-d1ea-4e32-b607-6d178f184990", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ATAC R2 read in fastq(.gz) format" + } + ], + "label": "ATAC R2 read in fastq(.gz) format", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": -607.3000030517578, + "height": 82.19999694824219, + "left": -1721, + "right": -1521, + "top": -689.5, + "width": 200, + "x": -1721, + "y": -689.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "5c751222-c315-4334-806d-450ab3aabf76", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ATAC R1 read in fastq(.gz) format" + } + ], + "label": "ATAC R1 read in fastq(.gz) format", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": -1069.3000030517578, + "height": 82.19999694824219, + "left": -1721, + "right": -1521, + "top": -1151.5, + "width": 200, + "x": -1721, + "y": -1151.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "28c9e734-a2c3-4fd8-bb0e-0f7cb07b28c0", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nbed file with genes\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nctcf peaks\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nATAC R2 read in fastq.gz format\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nATAC R1 read in fastq.gz format\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Filter\"];\n 1 -->|output| 4;\n 5[\"FastQC\"];\n 2 -->|output| 5;\n 6[\"ATAC remove nextera adapters with cutadapt\"];\n 3 -->|output| 6;\n 2 -->|output| 6;\n 7[\"FastQC\"];\n 3 -->|output| 7;\n 8[\"bedtools Intersect intervals\"];\n 4 -->|out_file1| 8;\n 0 -->|output| 8;\n 9[\"FastQC\"];\n 6 -->|out2| 9;\n 10[\"Bowtie2\"];\n 6 -->|out1| 10;\n 6 -->|out2| 10;\n 11[\"FastQC\"];\n 6 -->|out1| 11;\n 12[\"Filter BAM ATAC\"];\n 10 -->|output| 12;\n 13[\"MarkDuplicates\"];\n 12 -->|out_file1| 13;\n 14[\"bedtools BAM to BED\"];\n 13 -->|outFile| 14;\n 15[\"Paired-end histogram\"];\n 13 -->|outFile| 15;\n 16[\"MACS2 callpeak\"];\n 14 -->|output| 16;\n 17[\"Wig/BedGraph-to-bigWig\"];\n 16 -->|output_treat_pileup| 17;\n 18[\"computeMatrix\"];\n 17 -->|out_file1| 18;\n 0 -->|output| 18;\n 19[\"pyGenomeTracks\"];\n 17 -->|out_file1| 19;\n 16 -->|output_narrowpeaks| 19;\n 0 -->|output| 19;\n 1 -->|output| 19;\n 20[\"computeMatrix\"];\n 17 -->|out_file1| 20;\n 8 -->|output| 20;\n 65159c9c-050b-4069-8704-8f66c0563a98[\"Output\\ncomputeMatrix on input dataset(s): Matrix\"];\n 20 --> 65159c9c-050b-4069-8704-8f66c0563a98;\n style 65159c9c-050b-4069-8704-8f66c0563a98 stroke:#2c3143,stroke-width:4px;\n 21[\"plotHeatmap\"];\n 18 -->|outFileName| 21;\n 22[\"plotHeatmap\"];\n 20 -->|outFileName| 22;\n 74a36643-b88f-4378-8f9c-c1b20ee2651e[\"Output\\nplotHeatmap on input dataset(s): Image\"];\n 22 --> 74a36643-b88f-4378-8f9c-c1b20ee2651e;\n style 74a36643-b88f-4378-8f9c-c1b20ee2651e stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "ATAC-seq GTM", + "outputs": [ + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 663.6999969482422, + "height": 93.19999694824219, + "left": 225, + "right": 425, + "top": 570.5, + "width": 200, + "x": 225, + "y": 570.5 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c1=='chr22'\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "d2b45cbf-3307-43de-bcd2-e846dba1e76e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "e02f0d53-8b7b-4b9f-ab57-a59ff8b6a9e2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "input_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -151.10000610351562, + "height": 296.3999938964844, + "left": -1443, + "right": -1243, + "top": -447.5, + "width": 200, + "x": -1443, + "y": -447.5 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC of #{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "25e770ec-9dc3-49d0-a488-d1b630057530", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "65c34c4c-590e-4753-a35c-baf496f0dc56" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "errors": null, + "id": 6, + "input_connections": { + "library|input_1": { + "id": 3, + "output_name": "output" + }, + "library|input_2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "ATAC remove nextera adapters with cutadapt", + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "out2", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "bottom": -485.29998779296875, + "height": 327.20001220703125, + "left": -1443, + "right": -1243, + "top": -812.5, + "width": 200, + "x": -1443, + "y": -812.5 + }, + "post_job_actions": { + "RenameDatasetActionout1": { + "action_arguments": { + "newname": "cutadapt of #{input_1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "out1" + }, + "RenameDatasetActionout2": { + "action_arguments": { + "newname": "cutadapt of #{input_2}" + }, + "action_type": "RenameDatasetAction", + "output_name": "out2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "tool_shed_repository": { + "changeset_revision": "49370cb85f0f", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"error_rate\": \"0.1\", \"no_indels\": \"false\", \"count\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"no_trim\": \"false\", \"mask_adapter\": \"false\"}, \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"20\", \"max\": \"0\", \"max_n\": null, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"Nextera R1\", \"adapter\": \"CTGTCTCTTATACACATCTCCGAGCCCACGAGAC\"}}], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [{\"__index__\": 0, \"adapter_source2\": {\"adapter_source_list2\": \"user\", \"__current_case__\": 0, \"adapter_name2\": \"Nextera R2\", \"adapter2\": \"CTGTCTCTTATACACATCTGACGCTGCCGACGA\"}}], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\", \"multiple_output\": \"false\"}, \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.5", + "type": "tool", + "uuid": "96c9a087-9f0d-4659-9dfe-610d8e8fb91c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out1", + "uuid": "146ad377-c2bf-4df1-bb56-a452cfc32064" + }, + { + "label": null, + "output_name": "out2", + "uuid": "91674697-ed09-4cda-afb0-e49a967f0034" + }, + { + "label": null, + "output_name": "report", + "uuid": "cb2f50aa-d15f-4c7d-8f2b-e2bce3e8064d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -850.1000061035156, + "height": 296.3999938964844, + "left": -1443, + "right": -1243, + "top": -1146.5, + "width": 200, + "x": -1443, + "y": -1146.5 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC of #{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "20823f0a-f9c8-4c0f-87c3-437a6a563788", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "58c3c512-fccf-4959-b5b4-229a52c5ed7d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "errors": null, + "id": 8, + "input_connections": { + "inputA": { + "id": 4, + "output_name": "out_file1" + }, + "reduce_or_iterate|inputB": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "bedtools Intersect intervals", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 657.5, + "height": 144, + "left": 554, + "right": 754, + "top": 513.5, + "width": 200, + "x": 554, + "y": 513.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "tool_shed_repository": { + "changeset_revision": "ce3c7f062223", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"bed\": \"false\", \"count\": \"false\", \"fraction_cond\": {\"fraction_select\": \"default\", \"__current_case__\": 0}, \"header\": \"false\", \"inputA\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"true\", \"once\": \"false\", \"overlap_mode\": [\"-wa\"], \"reduce_or_iterate\": {\"reduce_or_iterate_selector\": \"iterate\", \"__current_case__\": 0, \"inputB\": {\"__class__\": \"ConnectedValue\"}}, \"sorted\": \"false\", \"split\": \"false\", \"strand\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.30.0", + "type": "tool", + "uuid": "1fffdd0c-af23-4b92-9573-e518fbc1a223", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0b4e3662-fc5d-496b-a0fd-afd84e09a77d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "input_file": { + "id": 6, + "output_name": "out2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -119.10000610351562, + "height": 296.3999938964844, + "left": -1165, + "right": -965, + "top": -415.5, + "width": 200, + "x": -1165, + "y": -415.5 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC of #{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "265bed3e-c169-40ba-96ae-44d9b12b9635", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "b8ae7d0b-cfa4-4ac5-a806-80ce7062cc28" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "library|input_1": { + "id": 6, + "output_name": "out1" + }, + "library|input_2": { + "id": 6, + "output_name": "out2" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "bottom": -453.1000061035156, + "height": 276.3999938964844, + "left": -1165, + "right": -965, + "top": -729.5, + "width": 200, + "x": -1165, + "y": -729.5 + }, + "post_job_actions": { + "RenameDatasetActionmapping_stats": { + "action_arguments": { + "newname": "mapping stats of #{input_1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "mapping_stats" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "mapping of #{input_1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "09b2cdb7ace5", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"--very-sensitive\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"yes\", \"__current_case__\": 0, \"I\": \"0\", \"X\": \"1000\", \"fr_rf_ff\": \"--fr\", \"no_mixed\": \"false\", \"no_discordant\": \"false\", \"dovetail\": \"true\", \"no_contain\": \"false\", \"no_overlap\": \"false\"}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"hg38canon\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.2+galaxy0", + "type": "tool", + "uuid": "f6f098e8-9c2e-46a5-a698-6b773fb5851d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0e73a14b-67b4-42c4-b275-b35d5842784b" + }, + { + "label": null, + "output_name": "mapping_stats", + "uuid": "7b77cd14-e67b-4182-8edf-d595cb52d467" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "input_file": { + "id": 6, + "output_name": "out1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -767.1000061035156, + "height": 296.3999938964844, + "left": -1165, + "right": -965, + "top": -1063.5, + "width": 200, + "x": -1165, + "y": -1063.5 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC of #{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "351245fd-2f98-4540-bcf5-1ffc8d859594", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "87625a28-b5ca-490d-a8e7-0c2494cda980" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "errors": null, + "id": 12, + "input_connections": { + "input_bam": { + "id": 10, + "output_name": "output" + } + }, + "inputs": [], + "label": "Filter BAM ATAC", + "name": "Filter", + "outputs": [ + { + "name": "out_file2", + "type": "txt" + }, + { + "name": "out_file1", + "type": "bam" + } + ], + "position": { + "bottom": -465.6999969482422, + "height": 184.8000030517578, + "left": -887, + "right": -687, + "top": -650.5, + "width": 200, + "x": -887, + "y": -650.5 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "#{input_bam} filtered" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "tool_shed_repository": { + "changeset_revision": "cb20f99fd45b", + "name": "bamtools_filter", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"conditions\": [{\"__index__\": 0, \"filters\": [{\"__index__\": 0, \"bam_property\": {\"bam_property_selector\": \"mapQuality\", \"__current_case__\": 14, \"bam_property_value\": \">=30\"}}, {\"__index__\": 1, \"bam_property\": {\"bam_property_selector\": \"isProperPair\", \"__current_case__\": 11, \"bam_property_value\": \"true\"}}, {\"__index__\": 2, \"bam_property\": {\"bam_property_selector\": \"reference\", \"__current_case__\": 20, \"bam_property_value\": \"!chrM\"}}]}], \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"rule_configuration\": {\"rules_selector\": \"false\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.1", + "type": "tool", + "uuid": "f23d0019-e51f-4a2a-ae4c-35cb39fe8462", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "6c31fd95-9c8c-4d7f-b75e-c6d3fedcee88" + }, + { + "label": null, + "output_name": "out_file2", + "uuid": "4ea434e3-2c83-43b2-83b0-b565a5574563" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "errors": null, + "id": 13, + "input_connections": { + "inputFile": { + "id": 12, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "MarkDuplicates", + "outputs": [ + { + "name": "metrics_file", + "type": "txt" + }, + { + "name": "outFile", + "type": "bam" + } + ], + "position": { + "bottom": -390.5, + "height": 246, + "left": -609, + "right": -409, + "top": -636.5, + "width": 200, + "x": -609, + "y": -636.5 + }, + "post_job_actions": { + "RenameDatasetActionoutFile": { + "action_arguments": { + "newname": "#{inputFile} without duplicates" + }, + "action_type": "RenameDatasetAction", + "output_name": "outFile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "tool_shed_repository": { + "changeset_revision": "a1f0b3f4b781", + "name": "picard", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"assume_sorted\": \"true\", \"barcode_tag\": \"\", \"comments\": [], \"duplicate_scoring_strategy\": \"SUM_OF_BASE_QUALITIES\", \"inputFile\": {\"__class__\": \"ConnectedValue\"}, \"optical_duplicate_pixel_distance\": \"100\", \"read_name_regex\": \"\", \"remove_duplicates\": \"true\", \"validation_stringency\": \"LENIENT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.18.2.2", + "type": "tool", + "uuid": "7ce1de9d-b93d-459b-bad5-00c38831d69a", + "workflow_outputs": [ + { + "label": null, + "output_name": "metrics_file", + "uuid": "522efa9e-9b62-4a53-bed5-94a168791793" + }, + { + "label": null, + "output_name": "outFile", + "uuid": "ad6cb3e0-1975-4eda-9695-62faf916b5cb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 13, + "output_name": "outFile" + } + }, + "inputs": [], + "label": null, + "name": "bedtools BAM to BED", + "outputs": [ + { + "name": "output", + "type": "bed" + } + ], + "position": { + "bottom": -229.5, + "height": 134, + "left": -331, + "right": -131, + "top": -363.5, + "width": 200, + "x": -331, + "y": -363.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0", + "tool_shed_repository": { + "changeset_revision": "ce3c7f062223", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"ed_score\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"option\": \"\", \"split\": \"false\", \"tag\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.30.0", + "type": "tool", + "uuid": "f9f3ec61-781c-4853-99a5-5c284319f370", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d84ba56e-6221-4582-987d-136fc0e10cf1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pe_histogram/pe_histogram/1.0.1", + "errors": null, + "id": 15, + "input_connections": { + "input_bam": { + "id": 13, + "output_name": "outFile" + } + }, + "inputs": [], + "label": null, + "name": "Paired-end histogram", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "tabular" + } + ], + "position": { + "bottom": -401.5, + "height": 144, + "left": -331, + "right": -131, + "top": -545.5, + "width": 200, + "x": -331, + "y": -545.5 + }, + "post_job_actions": { + "HideDatasetActionoutput2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pe_histogram/pe_histogram/1.0.1", + "tool_shed_repository": { + "changeset_revision": "bd1416eea1f0", + "name": "pe_histogram", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"lower_limit\": \"0\", \"upper_limit\": \"1000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "d3518ead-a61a-4faa-8ac2-17201a52a5d1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "7e2685fb-f30c-4a31-9667-bb8145e8bc26" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "errors": null, + "id": 16, + "input_connections": { + "treatment|input_treatment_file": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MACS2 callpeak", + "outputs": [ + { + "name": "output_tabular", + "type": "tabular" + }, + { + "name": "output_narrowpeaks", + "type": "bed" + }, + { + "name": "output_summits", + "type": "bed" + }, + { + "name": "output_treat_pileup", + "type": "bedgraph" + }, + { + "name": "output_control_lambda", + "type": "bedgraph" + } + ], + "position": { + "bottom": 60.70001220703125, + "height": 439.20001220703125, + "left": -53, + "right": 147, + "top": -378.5, + "width": 200, + "x": -53, + "y": -378.5 + }, + "post_job_actions": { + "HideDatasetActionoutput_control_lambda": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_control_lambda" + }, + "HideDatasetActionoutput_tabular": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_tabular" + }, + "RenameDatasetActionoutput_narrowpeaks": { + "action_arguments": { + "newname": "macs2 peaks (narrowPeak) from #{input_treatment_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_narrowpeaks" + }, + "RenameDatasetActionoutput_summits": { + "action_arguments": { + "newname": "macs2 summits from #{input_treatment_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_summits" + }, + "RenameDatasetActionoutput_tabular": { + "action_arguments": { + "newname": "macs2 peaks (tabular) from #{input_treatment_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tabular" + }, + "RenameDatasetActionoutput_treat_pileup": { + "action_arguments": { + "newname": "macs2 coverage from #{input_treatment_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_treat_pileup" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "tool_shed_repository": { + "changeset_revision": "424aefbd7777", + "name": "macs2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"to_large\": \"false\", \"nolambda\": \"false\", \"spmr\": \"false\", \"ratio\": null, \"slocal\": null, \"llocal\": null, \"broad_options\": {\"broad_options_selector\": \"nobroad\", \"__current_case__\": 1, \"call_summits\": \"false\"}, \"keep_dup_options\": {\"keep_dup_options_selector\": \"all\", \"__current_case__\": 2}}, \"control\": {\"c_select\": \"No\", \"__current_case__\": 1}, \"cutoff_options\": {\"cutoff_options_selector\": \"qvalue\", \"__current_case__\": 1, \"qvalue\": \"0.05\"}, \"effective_genome_size_options\": {\"effective_genome_size_options_selector\": \"2700000000\", \"__current_case__\": 0}, \"format\": \"BED\", \"nomodel_type\": {\"nomodel_type_selector\": \"nomodel\", \"__current_case__\": 1, \"extsize\": \"200\", \"shift\": \"-100\"}, \"outputs\": [\"peaks_tabular\", \"summits\", \"bdg\"], \"treatment\": {\"t_multi_select\": \"No\", \"__current_case__\": 0, \"input_treatment_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1.20160309.6", + "type": "tool", + "uuid": "f40f146b-e226-4c46-ab8e-f58370cec78a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_summits", + "uuid": "55f74fde-1c10-49a1-b89c-79d39deea065" + }, + { + "label": null, + "output_name": "output_treat_pileup", + "uuid": "3d8b2aa9-9397-41bb-813a-f7612d7840ff" + }, + { + "label": null, + "output_name": "output_narrowpeaks", + "uuid": "1a0e07c9-8e64-4754-b432-2b0c72795b01" + } + ] + }, + { + "annotation": "", + "content_id": "wig_to_bigWig", + "errors": null, + "id": 17, + "input_connections": { + "input1": { + "id": 16, + "output_name": "output_treat_pileup" + } + }, + "inputs": [], + "label": null, + "name": "Wig/BedGraph-to-bigWig", + "outputs": [ + { + "name": "out_file1", + "type": "bigwig" + } + ], + "position": { + "bottom": 398.1000061035156, + "height": 113.60000610351562, + "left": 225, + "right": 425, + "top": 284.5, + "width": 200, + "x": 225, + "y": 284.5 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "bigwig of #{input1}" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "wig_to_bigWig", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"settings\": {\"settingsType\": \"preset\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "5cce7368-6275-4a9f-9046-3da58745f579", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "337bd211-a2cd-4b2f-b03e-8c53ae5bde2b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "errors": null, + "id": 18, + "input_connections": { + "multibigwig_conditional|bigwigfiles": { + "id": 17, + "output_name": "out_file1" + }, + "regionsFiles_0|regionsFile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool computeMatrix", + "name": "advancedOpt" + }, + { + "description": "runtime parameter for tool computeMatrix", + "name": "multibigwig_conditional" + } + ], + "label": null, + "name": "computeMatrix", + "outputs": [ + { + "name": "outFileName", + "type": "deeptools_compute_matrix_archive" + } + ], + "position": { + "bottom": 479.8999938964844, + "height": 276.3999938964844, + "left": 523, + "right": 723, + "top": 203.5, + "width": 200, + "x": 523, + "y": 203.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "tool_shed_repository": { + "changeset_revision": "514fa53b5efb", + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"binSize\": \"50\", \"sortRegions\": \"keep\", \"sortUsing\": \"mean\", \"averageTypeBins\": \"mean\", \"missingDataAsZero\": \"true\", \"skipZeros\": \"false\", \"minThreshold\": null, \"maxThreshold\": null, \"scale\": null, \"metagene\": \"false\", \"transcriptID\": \"transcript\", \"exonID\": \"exon\", \"transcript_id_designator\": \"transcript_id\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}}, \"custom_sample_labels_conditional\": {\"custom_labels_select\": \"No\", \"__current_case__\": 0}, \"mode\": {\"mode_select\": \"reference-point\", \"__current_case__\": 1, \"referencePoint\": \"TSS\", \"nanAfterEnd\": \"false\", \"beforeRegionStartLength\": \"1000\", \"afterRegionStartLength\": \"1000\"}, \"multibigwig_conditional\": {\"orderMatters\": \"No\", \"__current_case__\": 0, \"bigwigfiles\": {\"__class__\": \"RuntimeValue\"}}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"regionsFiles\": [{\"__index__\": 0, \"regionsFile\": {\"__class__\": \"RuntimeValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.2.0.0", + "type": "tool", + "uuid": "f3718234-e4a2-453b-80d0-27a3f6ee2017", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "fde53a8d-23e7-4b64-90c1-bf443ee6a61c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.6", + "errors": null, + "id": 19, + "input_connections": { + "tracks_0|track_file_style_conditional|track_input_bigwig": { + "id": 17, + "output_name": "out_file1" + }, + "tracks_1|track_file_style_conditional|track_input_narrow_peak": { + "id": 16, + "output_name": "output_narrowpeaks" + }, + "tracks_2|track_file_style_conditional|track_input_bed": { + "id": 0, + "output_name": "output" + }, + "tracks_3|track_file_style_conditional|track_input_narrow_peak": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "pyGenomeTracks", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "bottom": 165.10000610351562, + "height": 459.6000061035156, + "left": 523, + "right": 723, + "top": -294.5, + "width": 200, + "x": 523, + "y": -294.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.6", + "tool_shed_repository": { + "changeset_revision": "2824d77cd8f8", + "name": "pygenometracks", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"global_args\": {\"title\": \"\", \"fontsize\": \"12\", \"dpi\": \"72\", \"width\": \"40.0\", \"plotWidth\": null, \"height\": null, \"trackLabelFraction\": \"0.05\", \"trackLabelHAlign\": \"left\", \"decreasingXAxis\": \"false\"}, \"image_file_format\": \"png\", \"region\": \"chr22:37,193,000-37,252,000\", \"tracks\": [{\"__index__\": 0, \"track_file_style_conditional\": {\"track_file_style_selector\": \"bigwig_track_option\", \"__current_case__\": 6, \"title\": \"Coverage from MACS2 (extended +/-100bp)\", \"track_input_bigwig\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#00b050\", \"alpha\": \"1.0\", \"color_negative\": {\"color_negative_select\": \"false\", \"__current_case__\": 0}, \"min_value\": \"0.0\", \"max_value\": null, \"height_bigwig\": \"5.0\", \"reading_bw_conditional\": {\"summary_method\": \"mean\", \"number_of_bins\": null, \"nans_to_zeros\": \"false\"}, \"type_conditional\": {\"type_selector\": \"fill_option\", \"__current_case__\": 2}, \"logScale_conditional\": {\"transform_selector\": \"no\", \"__current_case__\": 0}, \"op\": {\"operation\": \"file\", \"second_file\": {\"__class__\": \"RuntimeValue\"}}, \"show_data\": \"true\", \"grid\": \"false\", \"invert_orientation\": \"false\", \"overlay_select\": \"no\", \"spacer_height\": null}}, {\"__index__\": 1, \"track_file_style_conditional\": {\"track_file_style_selector\": \"narrow_peak_track_option\", \"__current_case__\": 4, \"title\": \"Peaks from MACS2 (extended +/-100bp)\", \"track_input_narrow_peak\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#00b050\", \"height_narrow_peak\": \"1.5\", \"display\": {\"display_selector\": \"box\", \"__current_case__\": 1, \"use_summit\": \"true\"}, \"line_width\": \"1.0\", \"show_labels\": \"false\", \"fontsize\": null, \"overlay_select\": \"no\", \"invert_orientation\": \"false\", \"spacer_height\": null}}, {\"__index__\": 2, \"track_file_style_conditional\": {\"track_file_style_selector\": \"gene_track_option\", \"__current_case__\": 2, \"title\": \"Genes\", \"track_input_bed\": {\"__class__\": \"ConnectedValue\"}, \"color_bed\": {\"color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}, \"border_color_bed\": {\"border_color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}, \"height_bed\": \"5.0\", \"labels\": {\"plot_labels\": \"true\", \"__current_case__\": 0, \"all_labels_inside\": \"true\", \"labels_in_margin\": \"true\"}, \"display\": \"stacked\", \"fontsize\": null, \"bed_style\": {\"bed_style_select\": \"flybase\", \"__current_case__\": 0, \"arrowhead_included\": \"false\", \"bed_advanced\": {\"height_utr\": \"1.0\", \"color_utr\": {\"color_utr_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#808080\"}, \"global_max_row\": \"false\", \"gene_rows\": null, \"max_labels\": \"60\", \"line_width\": \"0.5\", \"gtf\": {\"prefered_name\": \"transcript_name\", \"merge_transcripts\": \"false\"}}}, \"overlay_select\": \"no\", \"invert_orientation\": \"false\", \"spacer_height\": null}}, {\"__index__\": 3, \"track_file_style_conditional\": {\"track_file_style_selector\": \"narrow_peak_track_option\", \"__current_case__\": 4, \"title\": \"CTCF peaks\", \"track_input_narrow_peak\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#00b0f0\", \"height_narrow_peak\": \"1.5\", \"display\": {\"display_selector\": \"box\", \"__current_case__\": 1, \"use_summit\": \"true\"}, \"line_width\": \"1.0\", \"show_labels\": \"false\", \"fontsize\": null, \"overlay_select\": \"no\", \"invert_orientation\": \"false\", \"spacer_height\": null}}, {\"__index__\": 4, \"track_file_style_conditional\": {\"track_file_style_selector\": \"xaxis_option\", \"__current_case__\": 11, \"title\": \"\", \"fontsize\": null, \"xaxis_where\": \"bottom\", \"spacer_height\": null}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6", + "type": "tool", + "uuid": "1148f33a-ea9f-4575-b8ef-d2fa5d3fdbd4", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "e7e567d7-dd86-40e1-b722-51f8e5b6d51f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "errors": null, + "id": 20, + "input_connections": { + "multibigwig_conditional|bigwigfiles": { + "id": 17, + "output_name": "out_file1" + }, + "regionsFiles_0|regionsFile": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool computeMatrix", + "name": "advancedOpt" + }, + { + "description": "runtime parameter for tool computeMatrix", + "name": "multibigwig_conditional" + } + ], + "label": null, + "name": "computeMatrix", + "outputs": [ + { + "name": "outFileName", + "type": "deeptools_compute_matrix_archive" + } + ], + "position": { + "bottom": 728.8999938964844, + "height": 276.3999938964844, + "left": 801, + "right": 1001, + "top": 452.5, + "width": 200, + "x": 801, + "y": 452.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "tool_shed_repository": { + "changeset_revision": "514fa53b5efb", + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"binSize\": \"50\", \"sortRegions\": \"keep\", \"sortUsing\": \"mean\", \"averageTypeBins\": \"mean\", \"missingDataAsZero\": \"true\", \"skipZeros\": \"false\", \"minThreshold\": null, \"maxThreshold\": null, \"scale\": null, \"metagene\": \"false\", \"transcriptID\": \"transcript\", \"exonID\": \"exon\", \"transcript_id_designator\": \"transcript_id\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}}, \"custom_sample_labels_conditional\": {\"custom_labels_select\": \"No\", \"__current_case__\": 0}, \"mode\": {\"mode_select\": \"reference-point\", \"__current_case__\": 1, \"referencePoint\": \"center\", \"nanAfterEnd\": \"false\", \"beforeRegionStartLength\": \"1000\", \"afterRegionStartLength\": \"1000\"}, \"multibigwig_conditional\": {\"orderMatters\": \"No\", \"__current_case__\": 0, \"bigwigfiles\": {\"__class__\": \"RuntimeValue\"}}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"regionsFiles\": [{\"__index__\": 0, \"regionsFile\": {\"__class__\": \"RuntimeValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.2.0.0", + "type": "tool", + "uuid": "bac792b9-a0d5-4f64-9fc0-33764f85ecd1", + "workflow_outputs": [ + { + "label": "computeMatrix on input dataset(s): Matrix", + "output_name": "outFileName", + "uuid": "65159c9c-050b-4069-8704-8f66c0563a98" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "errors": null, + "id": 21, + "input_connections": { + "matrixFile": { + "id": 18, + "output_name": "outFileName" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool plotHeatmap", + "name": "matrixFile" + } + ], + "label": null, + "name": "plotHeatmap", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "bottom": 434.8999938964844, + "height": 154.39999389648438, + "left": 801, + "right": 1001, + "top": 280.5, + "width": 200, + "x": 801, + "y": 280.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "tool_shed_repository": { + "changeset_revision": "a4dfb122e52b", + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"no\", \"__current_case__\": 0}, \"matrixFile\": {\"__class__\": \"RuntimeValue\"}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.2.0.1", + "type": "tool", + "uuid": "aa15bd05-5d6e-4457-a86f-4d5f9b457ace", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "8eb18610-8bd4-4792-b6bc-30bf53673151" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "errors": null, + "id": 22, + "input_connections": { + "matrixFile": { + "id": 20, + "output_name": "outFileName" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool plotHeatmap", + "name": "matrixFile" + } + ], + "label": null, + "name": "plotHeatmap", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "bottom": 696.8999938964844, + "height": 154.39999389648438, + "left": 1079, + "right": 1279, + "top": 542.5, + "width": 200, + "x": 1079, + "y": 542.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "tool_shed_repository": { + "changeset_revision": "a4dfb122e52b", + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"sortRegions\": \"descend\", \"sortUsing\": \"mean\", \"averageTypeSummaryPlot\": \"mean\", \"plotType\": \"lines\", \"missingDataColor\": \"black\", \"colorMapRepeat\": [{\"__index__\": 0, \"colorMap\": \"Blues\"}], \"alpha\": \"1.0\", \"colorList\": \"\", \"zMin\": \"\", \"zMax\": \"\", \"yMin\": null, \"yMax\": null, \"xAxisLabel\": \"distance from peak center (bp)\", \"yAxisLabel\": \"CTCF peaks\", \"heatmapWidth\": \"7.5\", \"heatmapHeight\": \"25.0\", \"whatToShow\": \"plot, heatmap and colorbar\", \"startLabel\": \"TSS\", \"endLabel\": \"TES\", \"referencePointLabel\": \"peak center\", \"samplesLabel\": \"\", \"regionsLabel\": \"CTCF_peaks\", \"plotTitle\": \"\", \"legendLocation\": \"best\", \"labelRotation\": \"0\", \"perGroup\": \"false\", \"used_multiple_regions\": {\"used_multiple_regions_options\": \"yes\", \"__current_case__\": 1}}, \"matrixFile\": {\"__class__\": \"RuntimeValue\"}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.2.0.1", + "type": "tool", + "uuid": "fb2d6fd1-13a7-4673-950f-40fe57f2b9e1", + "workflow_outputs": [ + { + "label": "plotHeatmap on input dataset(s): Image", + "output_name": "outFileName", + "uuid": "74a36643-b88f-4378-8f9c-c1b20ee2651e" + } + ] + } + ], + "parent_id": "epigenetics/atac-seq", + "path": "topics/epigenetics/tutorials/atac-seq/workflows/main_workflow.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": false, + "title": "ATAC-seq GTM", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-atac-seq/versions/main-workflow", + "tutorial_id": "atac-seq", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/atac-seq/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/atac-seq/workflows/main_workflow.html", + "version": 10, + "wfid": "epigenetics-atac-seq", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtobed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "toolshed.g2.bx.psu.edu/repos/iuc/pe_histogram/pe_histogram/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.6", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "wig_to_bigWig" + ], + "workflowhub_id": "1169" + } + ], + "zenodo_link": "https://zenodo.org/record/3862793" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_bam_compare", + "owner": "bgruening", + "revisions": "e821645ef8fc", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_compute_gc_bias", + "owner": "bgruening", + "revisions": "2bc10a9ca58b", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "revisions": "514fa53b5efb", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_correct_gc_bias", + "owner": "bgruening", + "revisions": "2c37ce318bc3", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_multi_bam_summary", + "owner": "bgruening", + "revisions": "78f405266706", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_correlation", + "owner": "bgruening", + "revisions": "32e451def88c", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_fingerprint", + "owner": "bgruening", + "revisions": "2da482e408b8", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "revisions": "a4dfb122e52b", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "64f11cf59c6e", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_idxstats", + "owner": "devteam", + "revisions": "7a6034296ae9", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "b28e0cfa7ba1", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "macs2", + "owner": "iuc", + "revisions": "424aefbd7777", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "898b67846b47", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_bam_compare\n owner: bgruening\n revisions: e821645ef8fc\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_compute_gc_bias\n owner: bgruening\n revisions: 2bc10a9ca58b\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_compute_matrix\n owner: bgruening\n revisions: 514fa53b5efb\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_correct_gc_bias\n owner: bgruening\n revisions: 2c37ce318bc3\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_multi_bam_summary\n owner: bgruening\n revisions: 78f405266706\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_correlation\n owner: bgruening\n revisions: 32e451def88c\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_fingerprint\n owner: bgruening\n revisions: 2da482e408b8\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_heatmap\n owner: bgruening\n revisions: a4dfb122e52b\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 64f11cf59c6e\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_idxstats\n owner: devteam\n revisions: 7a6034296ae9\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: b28e0cfa7ba1\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: macs2\n owner: iuc\n revisions: 424aefbd7777\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: 898b67846b47\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/tal1-binding-site-identification/tutorial.json", + "contributors": [ + { + "id": "malloryfreeberg", + "joined": "2017-09", + "name": "Mallory Freeberg", + "orcid": "0000-0003-2949-3921", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/malloryfreeberg/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/malloryfreeberg.json" + }, + { + "email": "mheydarian@gmail.com", + "id": "moheydarian", + "joined": "2017-09", + "name": "Mo Heydarian", + "orcid": "0000-0001-9449-9364", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/moheydarian/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/moheydarian.json" + }, + { + "id": "vivekbhr", + "joined": "2017-09", + "name": "Vivek Bhardwaj", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/vivekbhr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/vivekbhr.json" + }, + { + "elixir_node": "de", + "email": "wolffj@informatik.uni-freiburg.de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "joachimwolff", + "joined": "2017-09", + "name": "Joachim Wolff", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/joachimwolff/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/joachimwolff.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anikaerxleben@gmail.com", + "id": "erxleben", + "joined": "2017-09", + "name": "Anika Erxleben", + "orcid": "0000-0002-7427-6478", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/erxleben/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/erxleben.json" + } + ], + "dir": "topics/epigenetics/tutorials/tal1-binding-site-identification", + "edam_ontology": [ + "topic_3169" + ], + "edam_operation": [ + "Sequencing quality control", + "Genome indexing", + "Peak calling", + "Sequence alignment", + "Mapping", + "Read mapping", + "Sequence composition calculation", + "Enrichment analysis", + "Gene regulatory network analysis", + "Generation", + "Statistical calculation" + ], + "edam_topic": [ + "ChIP-seq" + ], + "exact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "epigenetics/tal1-binding-site-identification", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Sophisticated analysis of ChIP-seq data is possible using tools hosted by Galaxy.", + "Genomic dataset analyses require multiple methods of quality assessment to ensure that the data are appropriate for answering the biology question of interest.", + "By using the sharable and transparent Galaxy platform, data analyses can easily be shared and reproduced." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Inspect read quality with FastQC", + "Perform read trimming with Trimmomatic", + "Align trimmed reads with BWA", + "Assess quality and reproducibility of experiments", + "Identify TAL1 binding sites with MACS2", + "Determine unique/common TAL1 binding sites from G1E and Megakaryocytes", + "Identify unique/common TAL1 peaks occupying gene promoters", + "Visually inspect TAL1 peaks with Trackster" + ], + "pageviews": 11153, + "pub_date": "2016-12-20", + "questions": [ + "How is raw ChIP-seq data processed and analyzed?", + "What are the binding sites of TAL1?", + "Which genes are regulated by TAL1?" + ], + "redirect_from": [ + "/topics/chip-seq/tutorials/tal1-binding-site-identification/tutorial", + "/short/epigenetics/tal1-binding-site-identification", + "/short/T00143" + ], + "requirements": [ + { + "link": "https://wiki.galaxyproject.org/Learn/Visualization", + "title": "Trackster", + "type": "external" + } + ], + "short_id": "T00143", + "short_tools": [ + "deeptools_plot_correlation", + "deeptools_multi_bam_summary", + "bedtools_intersectbed", + "deeptools_correct_gc_bias", + "bwa", + "deeptools_bam_compare", + "deeptools_compute_matrix", + "deeptools_plot_heatmap", + "fastqc", + "samtools_idxstats", + "macs2_callpeak", + "deeptools_plot_fingerprint", + "deeptools_compute_gc_bias", + "trimmomatic" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "ChIP-seq" + ], + "time_estimation": "3h", + "title": "Identification of the binding sites of the T-cell acute lymphocytic leukemia protein 1 (TAL1)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_gc_bias/deeptools_compute_gc_bias/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_correct_gc_bias/deeptools_correct_gc_bias/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa/0.7.17.4", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.29.0", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.0" + ], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tal1-binding-site-identification", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/tal1-binding-site-identification/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/tal1-binding-site-identification/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/tal1-binding-site-identification/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 202, + "visitors": 5835, + "workflows": [ + { + "creators": [], + "description": "Identification of the binding sites of the T-cell acute lymphocytic leukemia protein 1 (TAL1)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG1E_input_R1_downsampled_SRR507859.fastqsanger\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG1E_input_R2_downsampled_SRR507860.fastqsanger\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG1E_Tal1_R1_downsampled_SRR492444.fastqsanger\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG1E_Tal1_R2_downsampled_SRR492445.fastqsanger\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_input_R1_downsampled_SRR492453.fastqsanger\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_input_R2_downsampled_SRR492454.fastqsanger\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_Tal1_R1_downsampled_SRR549006.fastqsanger\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMegakaryocytes_Tal1_R2_downsampled_SRR549007.fastqsanger\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRefSeq_gene_annotations_mm10.bed\"]\n 9[label=\"FastQC\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Trimmomatic\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"FastQC\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Trimmomatic\"]\n 1 -> 12 [label=\"output\"]\n 13[label=\"FastQC\"]\n 2 -> 13 [label=\"output\"]\n 14[label=\"Trimmomatic\"]\n 2 -> 14 [label=\"output\"]\n 15[label=\"FastQC\"]\n 3 -> 15 [label=\"output\"]\n 16[label=\"Trimmomatic\"]\n 3 -> 16 [label=\"output\"]\n 17[label=\"FastQC\"]\n 4 -> 17 [label=\"output\"]\n 18[label=\"Trimmomatic\"]\n 4 -> 18 [label=\"output\"]\n 19[label=\"FastQC\"]\n 5 -> 19 [label=\"output\"]\n 20[label=\"Trimmomatic\"]\n 5 -> 20 [label=\"output\"]\n 21[label=\"FastQC\"]\n 6 -> 21 [label=\"output\"]\n 22[label=\"Trimmomatic\"]\n 6 -> 22 [label=\"output\"]\n 23[label=\"FastQC\"]\n 7 -> 23 [label=\"output\"]\n 24[label=\"Trimmomatic\"]\n 7 -> 24 [label=\"output\"]\n 25[label=\"FastQC\"]\n 10 -> 25 [label=\"fastq_out\"]\n 26[label=\"Map with BWA\"]\n 10 -> 26 [label=\"fastq_out\"]\n 27[label=\"FastQC\"]\n 12 -> 27 [label=\"fastq_out\"]\n 28[label=\"Map with BWA\"]\n 12 -> 28 [label=\"fastq_out\"]\n 29[label=\"FastQC\"]\n 14 -> 29 [label=\"fastq_out\"]\n 30[label=\"Map with BWA\"]\n 14 -> 30 [label=\"fastq_out\"]\n 31[label=\"FastQC\"]\n 16 -> 31 [label=\"fastq_out\"]\n 32[label=\"Map with BWA\"]\n 16 -> 32 [label=\"fastq_out\"]\n 33[label=\"FastQC\"]\n 18 -> 33 [label=\"fastq_out\"]\n 34[label=\"Map with BWA\"]\n 18 -> 34 [label=\"fastq_out\"]\n 35[label=\"FastQC\"]\n 20 -> 35 [label=\"fastq_out\"]\n 36[label=\"Map with BWA\"]\n 20 -> 36 [label=\"fastq_out\"]\n 37[label=\"FastQC\"]\n 22 -> 37 [label=\"fastq_out\"]\n 38[label=\"Map with BWA\"]\n 22 -> 38 [label=\"fastq_out\"]\n 39[label=\"FastQC\"]\n 24 -> 39 [label=\"fastq_out\"]\n 40[label=\"Map with BWA\"]\n 24 -> 40 [label=\"fastq_out\"]\n 41[label=\"Samtools idxstats\"]\n 26 -> 41 [label=\"bam_output\"]\n 42[label=\"Samtools idxstats\"]\n 28 -> 42 [label=\"bam_output\"]\n 43[label=\"Samtools idxstats\"]\n 30 -> 43 [label=\"bam_output\"]\n 44[label=\"bamCompare\"]\n 30 -> 44 [label=\"bam_output\"]\n 26 -> 44 [label=\"bam_output\"]\n 45[label=\"Samtools idxstats\"]\n 32 -> 45 [label=\"bam_output\"]\n 46[label=\"plotFingerprint\"]\n 26 -> 46 [label=\"bam_output\"]\n 28 -> 46 [label=\"bam_output\"]\n 30 -> 46 [label=\"bam_output\"]\n 32 -> 46 [label=\"bam_output\"]\n 47[label=\"MACS2 callpeak\"]\n 26 -> 47 [label=\"bam_output\"]\n 28 -> 47 [label=\"bam_output\"]\n 30 -> 47 [label=\"bam_output\"]\n 32 -> 47 [label=\"bam_output\"]\n 48[label=\"bamCompare\"]\n 32 -> 48 [label=\"bam_output\"]\n 28 -> 48 [label=\"bam_output\"]\n 49[label=\"Samtools idxstats\"]\n 34 -> 49 [label=\"bam_output\"]\n 50[label=\"Samtools idxstats\"]\n 36 -> 50 [label=\"bam_output\"]\n 51[label=\"Samtools idxstats\"]\n 38 -> 51 [label=\"bam_output\"]\n 52[label=\"bamCompare\"]\n 38 -> 52 [label=\"bam_output\"]\n 34 -> 52 [label=\"bam_output\"]\n 53[label=\"Samtools idxstats\"]\n 40 -> 53 [label=\"bam_output\"]\n 54[label=\"multiBamSummary\"]\n 26 -> 54 [label=\"bam_output\"]\n 28 -> 54 [label=\"bam_output\"]\n 30 -> 54 [label=\"bam_output\"]\n 32 -> 54 [label=\"bam_output\"]\n 34 -> 54 [label=\"bam_output\"]\n 36 -> 54 [label=\"bam_output\"]\n 38 -> 54 [label=\"bam_output\"]\n 40 -> 54 [label=\"bam_output\"]\n 55[label=\"plotFingerprint\"]\n 34 -> 55 [label=\"bam_output\"]\n 36 -> 55 [label=\"bam_output\"]\n 38 -> 55 [label=\"bam_output\"]\n 40 -> 55 [label=\"bam_output\"]\n 56[label=\"MACS2 callpeak\"]\n 34 -> 56 [label=\"bam_output\"]\n 36 -> 56 [label=\"bam_output\"]\n 38 -> 56 [label=\"bam_output\"]\n 40 -> 56 [label=\"bam_output\"]\n 57[label=\"bamCompare\"]\n 40 -> 57 [label=\"bam_output\"]\n 36 -> 57 [label=\"bam_output\"]\n 58[label=\"computeMatrix\"]\n 44 -> 58 [label=\"outFileName\"]\n 48 -> 58 [label=\"outFileName\"]\n 47 -> 58 [label=\"output_narrowpeaks\"]\n 59[label=\"plotCorrelation\"]\n 54 -> 59 [label=\"outFile\"]\n 60[label=\"bedtools Intersect intervals\"]\n 47 -> 60 [label=\"output_narrowpeaks\"]\n 56 -> 60 [label=\"output_narrowpeaks\"]\n k0d2260b8138a4ca99fb22ba391f7517a[color=lightseagreen,label=\"Output\\noutput_overlapping_peaks\"]\n 60 -> k0d2260b8138a4ca99fb22ba391f7517a\n 61[label=\"bedtools Intersect intervals\"]\n 47 -> 61 [label=\"output_narrowpeaks\"]\n 56 -> 61 [label=\"output_narrowpeaks\"]\n k2cd86f4ca1f442a89bbd82ef8f156dac[color=lightseagreen,label=\"Output\\noutput_g1e_peaks\"]\n 61 -> k2cd86f4ca1f442a89bbd82ef8f156dac\n 62[label=\"bedtools Intersect intervals\"]\n 56 -> 62 [label=\"output_narrowpeaks\"]\n 47 -> 62 [label=\"output_narrowpeaks\"]\n kf8a16be5f7ae4fecb67b91c4532a43d2[color=lightseagreen,label=\"Output\\noutput_megakaryocyte_peaks\"]\n 62 -> kf8a16be5f7ae4fecb67b91c4532a43d2\n 63[label=\"computeMatrix\"]\n 52 -> 63 [label=\"outFileName\"]\n 57 -> 63 [label=\"outFileName\"]\n 56 -> 63 [label=\"output_narrowpeaks\"]\n 64[label=\"plotHeatmap\"]\n 58 -> 64 [label=\"outFileName\"]\n 65[label=\"plotHeatmap\"]\n 63 -> 65 [label=\"outFileName\"]\n}", + "history": [ + { + "hash": "818f002190ef7fb261a841024556075ceff1df49", + "message": "Fixed JSON format.", + "num": 5, + "short_hash": "818f00219", + "unix": "1602017176" + }, + { + "hash": "473da245d41207021918c79019a3e5833873c82f", + "message": "Updated outputs in workflow and test.yml.", + "num": 4, + "short_hash": "473da245d", + "unix": "1602015752" + }, + { + "hash": "3bee4c5377363dbf60c059683f0f972a343c3cbc", + "message": "Updated inputs in workflow and test.yml.", + "num": 3, + "short_hash": "3bee4c537", + "unix": "1602012514" + }, + { + "hash": "e9f2fa109479668f2d020a75f3496a3db5fdcedd", + "message": "Updated workflow with tags.", + "num": 2, + "short_hash": "e9f2fa109", + "unix": "1601981292" + }, + { + "hash": "7fe3ca36a9a8b8022922de0f9c2d7385628b2e5c", + "message": "Added workflow.", + "num": 1, + "short_hash": "7fe3ca36a", + "unix": "1601924809" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_input_R1_downsampled_SRR507859.fastqsanger" + } + ], + "label": "G1E_input_R1_downsampled_SRR507859.fastqsanger", + "name": "G1E_input_R1_downsampled_SRR507859.fastqsanger", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"G1E_input_R1_downsampled_SRR507859.fastqsanger\"}", + "tool_version": null, + "type": "data_input", + "uuid": "72908882-dad9-452e-9ed6-42aa567c7b6d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_input_R2_downsampled_SRR507860.fastqsanger" + } + ], + "label": "G1E_input_R2_downsampled_SRR507860.fastqsanger", + "name": "G1E_input_R2_downsampled_SRR507860.fastqsanger", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"G1E_input_R2_downsampled_SRR507860.fastqsanger\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f9264f2a-fd66-40ef-8d19-88de9e5adcf0", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_Tal1_R1_downsampled_SRR492444.fastqsanger" + } + ], + "label": "G1E_Tal1_R1_downsampled_SRR492444.fastqsanger", + "name": "G1E_Tal1_R1_downsampled_SRR492444.fastqsanger", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"name\": \"G1E_Tal1_R1_downsampled_SRR492444.fastqsanger\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2f74715c-df91-46a4-8845-1d4463c4f0c0", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_Tal1_R2_downsampled_SRR492445.fastqsanger" + } + ], + "label": "G1E_Tal1_R2_downsampled_SRR492445.fastqsanger", + "name": "G1E_Tal1_R2_downsampled_SRR492445.fastqsanger", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"name\": \"G1E_Tal1_R2_downsampled_SRR492445.fastqsanger\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0fc34c4d-c3d6-44b4-a683-521d707f06f1", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_input_R1_downsampled_SRR492453.fastqsanger" + } + ], + "label": "Megakaryocyte_input_R1_downsampled_SRR492453.fastqsanger", + "name": "Megakaryocyte_input_R1_downsampled_SRR492453.fastqsanger", + "outputs": [], + "position": { + "left": 10, + "top": 490 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Megakaryocyte_input_R1_downsampled_SRR492453.fastqsanger\"}", + "tool_version": null, + "type": "data_input", + "uuid": "92c034ae-9c9e-4dcc-98a4-556d314a7bba", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_input_R2_downsampled_SRR492454.fastqsanger" + } + ], + "label": "Megakaryocyte_input_R2_downsampled_SRR492454.fastqsanger", + "name": "Megakaryocyte_input_R2_downsampled_SRR492454.fastqsanger", + "outputs": [], + "position": { + "left": 10, + "top": 610 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Megakaryocyte_input_R2_downsampled_SRR492454.fastqsanger\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7bb71d6b-de12-485c-83c9-ed75af5f7fac", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_Tal1_R1_downsampled_SRR549006.fastqsanger" + } + ], + "label": "Megakaryocyte_Tal1_R1_downsampled_SRR549006.fastqsanger", + "name": "Megakaryocyte_Tal1_R1_downsampled_SRR549006.fastqsanger", + "outputs": [], + "position": { + "left": 10, + "top": 730 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Megakaryocyte_Tal1_R1_downsampled_SRR549006.fastqsanger\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dd716dbd-e466-40c8-88bf-88febc0b2119", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocytes_Tal1_R2_downsampled_SRR549007.fastqsanger" + } + ], + "label": "Megakaryocytes_Tal1_R2_downsampled_SRR549007.fastqsanger", + "name": "Megakaryocytes_Tal1_R2_downsampled_SRR549007.fastqsanger", + "outputs": [], + "position": { + "left": 10, + "top": 850 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Megakaryocytes_Tal1_R2_downsampled_SRR549007.fastqsanger\"}", + "tool_version": null, + "type": "data_input", + "uuid": "5695db81-e17a-4242-aa28-c703b2988666", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "RefSeq_gene_annotations_mm10.bed" + } + ], + "label": "RefSeq_gene_annotations_mm10.bed", + "name": "RefSeq_gene_annotations_mm10.bed", + "outputs": [], + "position": { + "left": 10, + "top": 970 + }, + "tool_id": null, + "tool_state": "{\"name\": \"RefSeq_gene_annotations_mm10.bed\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bc0fc125-1b3c-489f-ae71-ef6320c1ccad", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nG1E_input_R1_downsampled_SRR507859.fastqsanger\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nG1E_input_R2_downsampled_SRR507860.fastqsanger\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nG1E_Tal1_R1_downsampled_SRR492444.fastqsanger\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nG1E_Tal1_R2_downsampled_SRR492445.fastqsanger\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_input_R1_downsampled_SRR492453.fastqsanger\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_input_R2_downsampled_SRR492454.fastqsanger\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_Tal1_R1_downsampled_SRR549006.fastqsanger\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nMegakaryocytes_Tal1_R2_downsampled_SRR549007.fastqsanger\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nRefSeq_gene_annotations_mm10.bed\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"FastQC\"];\n 0 -->|output| 9;\n 10[\"Trimmomatic\"];\n 0 -->|output| 10;\n 11[\"FastQC\"];\n 1 -->|output| 11;\n 12[\"Trimmomatic\"];\n 1 -->|output| 12;\n 13[\"FastQC\"];\n 2 -->|output| 13;\n 14[\"Trimmomatic\"];\n 2 -->|output| 14;\n 15[\"FastQC\"];\n 3 -->|output| 15;\n 16[\"Trimmomatic\"];\n 3 -->|output| 16;\n 17[\"FastQC\"];\n 4 -->|output| 17;\n 18[\"Trimmomatic\"];\n 4 -->|output| 18;\n 19[\"FastQC\"];\n 5 -->|output| 19;\n 20[\"Trimmomatic\"];\n 5 -->|output| 20;\n 21[\"FastQC\"];\n 6 -->|output| 21;\n 22[\"Trimmomatic\"];\n 6 -->|output| 22;\n 23[\"FastQC\"];\n 7 -->|output| 23;\n 24[\"Trimmomatic\"];\n 7 -->|output| 24;\n 25[\"FastQC\"];\n 10 -->|fastq_out| 25;\n 26[\"Map with BWA\"];\n 10 -->|fastq_out| 26;\n 27[\"FastQC\"];\n 12 -->|fastq_out| 27;\n 28[\"Map with BWA\"];\n 12 -->|fastq_out| 28;\n 29[\"FastQC\"];\n 14 -->|fastq_out| 29;\n 30[\"Map with BWA\"];\n 14 -->|fastq_out| 30;\n 31[\"FastQC\"];\n 16 -->|fastq_out| 31;\n 32[\"Map with BWA\"];\n 16 -->|fastq_out| 32;\n 33[\"FastQC\"];\n 18 -->|fastq_out| 33;\n 34[\"Map with BWA\"];\n 18 -->|fastq_out| 34;\n 35[\"FastQC\"];\n 20 -->|fastq_out| 35;\n 36[\"Map with BWA\"];\n 20 -->|fastq_out| 36;\n 37[\"FastQC\"];\n 22 -->|fastq_out| 37;\n 38[\"Map with BWA\"];\n 22 -->|fastq_out| 38;\n 39[\"FastQC\"];\n 24 -->|fastq_out| 39;\n 40[\"Map with BWA\"];\n 24 -->|fastq_out| 40;\n 41[\"Samtools idxstats\"];\n 26 -->|bam_output| 41;\n 42[\"Samtools idxstats\"];\n 28 -->|bam_output| 42;\n 43[\"Samtools idxstats\"];\n 30 -->|bam_output| 43;\n 44[\"bamCompare\"];\n 30 -->|bam_output| 44;\n 26 -->|bam_output| 44;\n 45[\"Samtools idxstats\"];\n 32 -->|bam_output| 45;\n 46[\"plotFingerprint\"];\n 26 -->|bam_output| 46;\n 28 -->|bam_output| 46;\n 30 -->|bam_output| 46;\n 32 -->|bam_output| 46;\n 47[\"MACS2 callpeak\"];\n 26 -->|bam_output| 47;\n 28 -->|bam_output| 47;\n 30 -->|bam_output| 47;\n 32 -->|bam_output| 47;\n 48[\"bamCompare\"];\n 32 -->|bam_output| 48;\n 28 -->|bam_output| 48;\n 49[\"Samtools idxstats\"];\n 34 -->|bam_output| 49;\n 50[\"Samtools idxstats\"];\n 36 -->|bam_output| 50;\n 51[\"Samtools idxstats\"];\n 38 -->|bam_output| 51;\n 52[\"bamCompare\"];\n 38 -->|bam_output| 52;\n 34 -->|bam_output| 52;\n 53[\"Samtools idxstats\"];\n 40 -->|bam_output| 53;\n 54[\"multiBamSummary\"];\n 26 -->|bam_output| 54;\n 28 -->|bam_output| 54;\n 30 -->|bam_output| 54;\n 32 -->|bam_output| 54;\n 34 -->|bam_output| 54;\n 36 -->|bam_output| 54;\n 38 -->|bam_output| 54;\n 40 -->|bam_output| 54;\n 55[\"plotFingerprint\"];\n 34 -->|bam_output| 55;\n 36 -->|bam_output| 55;\n 38 -->|bam_output| 55;\n 40 -->|bam_output| 55;\n 56[\"MACS2 callpeak\"];\n 34 -->|bam_output| 56;\n 36 -->|bam_output| 56;\n 38 -->|bam_output| 56;\n 40 -->|bam_output| 56;\n 57[\"bamCompare\"];\n 40 -->|bam_output| 57;\n 36 -->|bam_output| 57;\n 58[\"computeMatrix\"];\n 44 -->|outFileName| 58;\n 48 -->|outFileName| 58;\n 47 -->|output_narrowpeaks| 58;\n 59[\"plotCorrelation\"];\n 54 -->|outFile| 59;\n 60[\"bedtools Intersect intervals\"];\n 47 -->|output_narrowpeaks| 60;\n 56 -->|output_narrowpeaks| 60;\n 0d2260b8-138a-4ca9-9fb2-2ba391f7517a[\"Output\\noutput_overlapping_peaks\"];\n 60 --> 0d2260b8-138a-4ca9-9fb2-2ba391f7517a;\n style 0d2260b8-138a-4ca9-9fb2-2ba391f7517a stroke:#2c3143,stroke-width:4px;\n 61[\"bedtools Intersect intervals\"];\n 47 -->|output_narrowpeaks| 61;\n 56 -->|output_narrowpeaks| 61;\n 2cd86f4c-a1f4-42a8-9bbd-82ef8f156dac[\"Output\\noutput_g1e_peaks\"];\n 61 --> 2cd86f4c-a1f4-42a8-9bbd-82ef8f156dac;\n style 2cd86f4c-a1f4-42a8-9bbd-82ef8f156dac stroke:#2c3143,stroke-width:4px;\n 62[\"bedtools Intersect intervals\"];\n 56 -->|output_narrowpeaks| 62;\n 47 -->|output_narrowpeaks| 62;\n f8a16be5-f7ae-4fec-b67b-91c4532a43d2[\"Output\\noutput_megakaryocyte_peaks\"];\n 62 --> f8a16be5-f7ae-4fec-b67b-91c4532a43d2;\n style f8a16be5-f7ae-4fec-b67b-91c4532a43d2 stroke:#2c3143,stroke-width:4px;\n 63[\"computeMatrix\"];\n 52 -->|outFileName| 63;\n 57 -->|outFileName| 63;\n 56 -->|output_narrowpeaks| 63;\n 64[\"plotHeatmap\"];\n 58 -->|outFileName| 64;\n 65[\"plotHeatmap\"];\n 63 -->|outFileName| 65;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Identification of the binding sites of the T-cell acute lymphocytic leukemia protein 1 (TAL1)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.29.0", + "errors": null, + "id": 60, + "input_connections": { + "inputA": { + "id": 47, + "output_name": "output_narrowpeaks" + }, + "reduce_or_iterate|inputB": { + "id": 56, + "output_name": "output_narrowpeaks" + } + }, + "inputs": [], + "label": null, + "name": "bedtools Intersect intervals", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 890, + "top": 130 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.29.0", + "tool_shed_repository": { + "changeset_revision": "b28e0cfa7ba1", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"bed\": \"false\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/mm10.len\", \"count\": \"false\", \"fraction_cond\": {\"fraction_select\": \"default\", \"__current_case__\": 0}, \"header\": \"false\", \"inputA\": null, \"invert\": \"false\", \"once\": \"false\", \"overlap_mode\": null, \"reduce_or_iterate\": {\"reduce_or_iterate_selector\": \"iterate\", \"__current_case__\": 0, \"inputB\": null}, \"sorted\": \"false\", \"split\": \"false\", \"strand\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.29.0", + "type": "tool", + "uuid": "34bf938f-c70a-4bca-b5ca-cf4ea480bc90", + "workflow_outputs": [ + { + "label": "output_overlapping_peaks", + "output_name": "output", + "uuid": "0d2260b8-138a-4ca9-9fb2-2ba391f7517a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.29.0", + "errors": null, + "id": 61, + "input_connections": { + "inputA": { + "id": 47, + "output_name": "output_narrowpeaks" + }, + "reduce_or_iterate|inputB": { + "id": 56, + "output_name": "output_narrowpeaks" + } + }, + "inputs": [], + "label": null, + "name": "bedtools Intersect intervals", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 890, + "top": 250 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.29.0", + "tool_shed_repository": { + "changeset_revision": "b28e0cfa7ba1", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"bed\": \"false\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/mm10.len\", \"count\": \"false\", \"fraction_cond\": {\"fraction_select\": \"default\", \"__current_case__\": 0}, \"header\": \"false\", \"inputA\": null, \"invert\": \"true\", \"once\": \"false\", \"overlap_mode\": null, \"reduce_or_iterate\": {\"reduce_or_iterate_selector\": \"iterate\", \"__current_case__\": 0, \"inputB\": null}, \"sorted\": \"false\", \"split\": \"false\", \"strand\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.29.0", + "type": "tool", + "uuid": "52bfc6e7-7515-41c3-9d4d-c13a2f754cc6", + "workflow_outputs": [ + { + "label": "output_g1e_peaks", + "output_name": "output", + "uuid": "2cd86f4c-a1f4-42a8-9bbd-82ef8f156dac" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.29.0", + "errors": null, + "id": 62, + "input_connections": { + "inputA": { + "id": 56, + "output_name": "output_narrowpeaks" + }, + "reduce_or_iterate|inputB": { + "id": 47, + "output_name": "output_narrowpeaks" + } + }, + "inputs": [], + "label": null, + "name": "bedtools Intersect intervals", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 890, + "top": 370 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.29.0", + "tool_shed_repository": { + "changeset_revision": "b28e0cfa7ba1", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"bed\": \"false\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/mm10.len\", \"count\": \"false\", \"fraction_cond\": {\"fraction_select\": \"default\", \"__current_case__\": 0}, \"header\": \"false\", \"inputA\": null, \"invert\": \"true\", \"once\": \"false\", \"overlap_mode\": null, \"reduce_or_iterate\": {\"reduce_or_iterate_selector\": \"iterate\", \"__current_case__\": 0, \"inputB\": null}, \"sorted\": \"false\", \"split\": \"false\", \"strand\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.29.0", + "type": "tool", + "uuid": "39089148-e7ee-4b44-8b55-973fb6864d57", + "workflow_outputs": [ + { + "label": "output_megakaryocyte_peaks", + "output_name": "output", + "uuid": "f8a16be5-f7ae-4fec-b67b-91c4532a43d2" + } + ] + } + ], + "parent_id": "epigenetics/tal1-binding-site-identification", + "path": "topics/epigenetics/tutorials/tal1-binding-site-identification/workflows/tal1-binding-site-identification-workflow.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": true, + "title": "Identification of the binding sites of the T-cell acute lymphocytic leukemia protein 1 (TAL1)", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-tal1-binding-site-identification/versions/tal1-binding-site-identification-workflow", + "tutorial_id": "tal1-binding-site-identification", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/tal1-binding-site-identification/workflows/tal1-binding-site-identification-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/tal1-binding-site-identification/workflows/tal1-binding-site-identification-workflow.html", + "version": 1, + "wfid": "epigenetics-tal1-binding-site-identification", + "wfname": "tal1-binding-site-identification-workflow", + "workflow": "tal1-binding-site-identification-workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/3.3.2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa/0.7.17.4", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.29.0", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.0" + ], + "workflowhub_id": "1175" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.197100" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_bam_compare", + "owner": "bgruening", + "revisions": "a1ca9bccc7f2", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "revisions": "5d11599b8a7d", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_compute_gc_bias", + "owner": "bgruening", + "revisions": "29fcfd36e90a", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_compute_matrix", + "owner": "bgruening", + "revisions": "fd1275e01605", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_multi_bam_summary", + "owner": "bgruening", + "revisions": "2d466b530754", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_correlation", + "owner": "bgruening", + "revisions": "f264afa9fa6f", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_fingerprint", + "owner": "bgruening", + "revisions": "f8fc4e5aff9d", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_heatmap", + "owner": "bgruening", + "revisions": "512155688d98", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trim_galore", + "owner": "bgruening", + "revisions": "1bf4789584dc", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bam_to_sam", + "owner": "devteam", + "revisions": "88eedb4abea0", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "66f992977578", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "f2e8552cf1d0", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_idxstats", + "owner": "devteam", + "revisions": "88b8c2916784", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "macs2", + "owner": "iuc", + "revisions": "f5d67c722d67", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_bam_compare\n owner: bgruening\n revisions: a1ca9bccc7f2\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_bam_coverage\n owner: bgruening\n revisions: 5d11599b8a7d\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_compute_gc_bias\n owner: bgruening\n revisions: 29fcfd36e90a\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_compute_matrix\n owner: bgruening\n revisions: fd1275e01605\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_multi_bam_summary\n owner: bgruening\n revisions: 2d466b530754\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_correlation\n owner: bgruening\n revisions: f264afa9fa6f\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_fingerprint\n owner: bgruening\n revisions: f8fc4e5aff9d\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_heatmap\n owner: bgruening\n revisions: 512155688d98\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trim_galore\n owner: bgruening\n revisions: 1bf4789584dc\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bam_to_sam\n owner: devteam\n revisions: 88eedb4abea0\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: 66f992977578\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: f2e8552cf1d0\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_idxstats\n owner: devteam\n revisions: 88b8c2916784\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: macs2\n owner: iuc\n revisions: f5d67c722d67\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/tutorial.json", + "contributors": [ + { + "id": "friedue", + "joined": "2017-09", + "name": "Friederike D\u00fcndar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/friedue/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/friedue.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anikaerxleben@gmail.com", + "id": "erxleben", + "joined": "2017-09", + "name": "Anika Erxleben", + "orcid": "0000-0002-7427-6478", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/erxleben/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/erxleben.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "id": "vivekbhr", + "joined": "2017-09", + "name": "Vivek Bhardwaj", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/vivekbhr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/vivekbhr.json" + }, + { + "id": "fidelram", + "joined": "2017-09", + "name": "Fidel Ramirez", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fidelram/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fidelram.json" + } + ], + "dir": "topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification", + "draft": true, + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Peak calling", + "Enrichment analysis", + "Read mapping", + "Sequence composition calculation", + "Read pre-processing", + "Gene regulatory network analysis", + "Sequence trimming", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "epigenetics/estrogen-receptor-binding-site-identification", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "ChIP-seq data requires multiple methods of quality assessment to ensure that the data is of high quality.", + "Multiple normalization methods exists depending on the availability of input data.", + "Heatmaps containing all genes of an organism can be easily plotted given a BED file and a coverage file." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Inspect read quality with FastQC", + "Map reads with Bowtie2", + "Assess the quality of an ChIP-seq experiments", + "Extract coverage files", + "Call enriched regions or peaks" + ], + "pageviews": 2364, + "pub_date": "2017-09-18", + "questions": [ + "How is raw ChIP-seq data processed and analyzed?", + "What are the binding sites of the Estrogen receptor?" + ], + "redirect_from": [ + "/topics/chip-seq/tutorials/estrogen-receptor-binding-site-identification/tutorial", + "/short/epigenetics/estrogen-receptor-binding-site-identification", + "/short/T00138" + ], + "short_id": "T00138", + "short_tools": [ + "deeptools_plot_correlation", + "deeptools_multi_bam_summary", + "bowtie2", + "deeptools_bam_coverage", + "deeptools_bam_compare", + "deeptools_compute_matrix", + "deeptools_plot_heatmap", + "bam_to_sam", + "fastqc", + "samtools_idxstats", + "deeptools_plot_fingerprint", + "macs2_callpeak", + "deeptools_compute_gc_bias", + "trim_galore" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "ChIP-seq", + "work-in-progress" + ], + "time_estimation": "3h", + "title": "Identification of the binding sites of the Estrogen receptor", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_gc_bias/deeptools_compute_gc_bias/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bam_to_sam/bam_to_sam/2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.69", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.0" + ], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "estrogen-receptor-binding-site-identification", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 168, + "visitors": 1526, + "workflows": [ + { + "creators": [], + "description": "Identification of the binding sites of the Estrogen receptor", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 9[label=\"IdxStats\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"bamCoverage\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"bamCoverage\"]\n 0 -> 11 [label=\"output\"]\n 12[label=\"plotFingerprint\"]\n 4 -> 12 [label=\"output\"]\n 0 -> 12 [label=\"output\"]\n 13[label=\"computeGCBias\"]\n 4 -> 13 [label=\"output\"]\n 14[label=\"IdxStats\"]\n 4 -> 14 [label=\"output\"]\n 15[label=\"bamCoverage\"]\n 4 -> 15 [label=\"output\"]\n 16[label=\"bamCoverage\"]\n 4 -> 16 [label=\"output\"]\n 17[label=\"bamCompare\"]\n 0 -> 17 [label=\"output\"]\n 4 -> 17 [label=\"output\"]\n 18[label=\"bamCompare\"]\n 0 -> 18 [label=\"output\"]\n 4 -> 18 [label=\"output\"]\n 19[label=\"MACS2 callpeak\"]\n 4 -> 19 [label=\"output\"]\n 0 -> 19 [label=\"output\"]\n 20[label=\"multiBamSummary\"]\n 7 -> 20 [label=\"output\"]\n 6 -> 20 [label=\"output\"]\n 5 -> 20 [label=\"output\"]\n 4 -> 20 [label=\"output\"]\n 3 -> 20 [label=\"output\"]\n 2 -> 20 [label=\"output\"]\n 1 -> 20 [label=\"output\"]\n 0 -> 20 [label=\"output\"]\n 21[label=\"computeMatrix\"]\n 18 -> 21 [label=\"outFileName\"]\n 8 -> 21 [label=\"output\"]\n 22[label=\"computeMatrix\"]\n 18 -> 22 [label=\"outFileName\"]\n 8 -> 22 [label=\"output\"]\n 23[label=\"plotCorrelation\"]\n 20 -> 23 [label=\"outFile\"]\n 24[label=\"plotHeatmap\"]\n 21 -> 24 [label=\"outFileName\"]\n 25[label=\"plotHeatmap\"]\n 22 -> 25 [label=\"outFileName\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "7e63a811ab072be2988ec4df64bc64aed6c2e2bc", + "message": "Move chip-seq tutorials to epigenetics topic", + "num": 1, + "short_hash": "7e63a811a", + "unix": "1568276810" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient1_ChIP_ER_good_outcome.bam" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient1_ChIP_ER_good_outcome.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "34c95809-1e3e-4d3d-850c-ca5db0e0d785", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient2_ChIP_ER_good_outcome.bam" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient2_ChIP_ER_good_outcome.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7fb65ace-1eda-4716-a544-628991abb430", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient3_ChIP_ER_poor_outcome.bam" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient3_ChIP_ER_poor_outcome.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "054f505b-0524-43d3-a7fa-541ff13d6eda", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient4_ChIP_ER_poor_outcome.bam" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient4_ChIP_ER_poor_outcome.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "898ddf9b-b3b3-4d11-b494-d216c474f9ec", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient1_input_good_outcome.bam" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 490 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient1_input_good_outcome.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "6d3281b8-ae6a-42ba-85a6-51a0f0198350", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient2_input_good_outcome.bam" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 610 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient2_input_good_outcome.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "66ccb4cb-5b98-4801-9fcb-d77f8cccd9b8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient3_input_poor_outcome.bam" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 730 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient3_input_poor_outcome.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f336276f-05b9-4033-9746-fa51c12c8e8d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient4_input_poor_outcome.bam" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 850 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient4_input_poor_outcome.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ae0c204f-849b-4908-823d-865555c1ba69", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "UCSC Main on Human: refGene (chr11:1-134452384)" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 970 + }, + "tool_id": null, + "tool_state": "{\"name\": \"UCSC Main on Human: refGene (chr11:1-134452384)\"}", + "tool_version": null, + "type": "data_input", + "uuid": "1f618fe0-2f0a-4b0d-a1ff-0d4aa761f051", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"IdxStats\"];\n 0 -->|output| 9;\n 10[\"bamCoverage\"];\n 0 -->|output| 10;\n 11[\"bamCoverage\"];\n 0 -->|output| 11;\n 12[\"plotFingerprint\"];\n 4 -->|output| 12;\n 0 -->|output| 12;\n 13[\"computeGCBias\"];\n 4 -->|output| 13;\n 14[\"IdxStats\"];\n 4 -->|output| 14;\n 15[\"bamCoverage\"];\n 4 -->|output| 15;\n 16[\"bamCoverage\"];\n 4 -->|output| 16;\n 17[\"bamCompare\"];\n 0 -->|output| 17;\n 4 -->|output| 17;\n 18[\"bamCompare\"];\n 0 -->|output| 18;\n 4 -->|output| 18;\n 19[\"MACS2 callpeak\"];\n 4 -->|output| 19;\n 0 -->|output| 19;\n 20[\"multiBamSummary\"];\n 7 -->|output| 20;\n 6 -->|output| 20;\n 5 -->|output| 20;\n 4 -->|output| 20;\n 3 -->|output| 20;\n 2 -->|output| 20;\n 1 -->|output| 20;\n 0 -->|output| 20;\n 21[\"computeMatrix\"];\n 18 -->|outFileName| 21;\n 8 -->|output| 21;\n 22[\"computeMatrix\"];\n 18 -->|outFileName| 22;\n 8 -->|output| 22;\n 23[\"plotCorrelation\"];\n 20 -->|outFile| 23;\n 24[\"plotHeatmap\"];\n 21 -->|outFileName| 24;\n 25[\"plotHeatmap\"];\n 22 -->|outFileName| 25;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Identification Of The Binding Sites Of The Estrogen Receptor - Chip Seq", + "outputs": [], + "parent_id": "epigenetics/estrogen-receptor-binding-site-identification", + "path": "topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/chip_seq.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": false, + "title": "Identification Of The Binding Sites Of The Estrogen Receptor - Chip Seq", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-estrogen-receptor-binding-site-identification/versions/chip-seq", + "tutorial_id": "estrogen-receptor-binding-site-identification", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/chip_seq.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/chip_seq.html", + "version": 4, + "wfid": "epigenetics-estrogen-receptor-binding-site-identification", + "wfname": "chip-seq", + "workflow": "chip_seq.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_compare/deeptools_bam_compare/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_gc_bias/deeptools_compute_gc_bias/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_compute_matrix/deeptools_compute_matrix/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_heatmap/deeptools_plot_heatmap/2.5.1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.0" + ], + "workflowhub_id": "1150" + }, + { + "creators": [], + "description": "Identification of the binding sites of the Estrogen receptor", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"FastQC\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Trim Galore!\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Bowtie2\"]\n 2 -> 3 [label=\"trimmed_reads_single\"]\n 4[label=\"BAM-to-SAM\"]\n 3 -> 4 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "7e63a811ab072be2988ec4df64bc64aed6c2e2bc", + "message": "Move chip-seq tutorials to epigenetics topic", + "num": 1, + "short_hash": "7e63a811a", + "unix": "1568276810" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "patient1_input_good_outcome.fastq.txt" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"patient1_input_good_outcome.fastq.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "8544a44d-a989-4c30-8b54-e18adabf9742", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"FastQC\"];\n 0 -->|output| 1;\n 2[\"Trim Galore!\"];\n 0 -->|output| 2;\n 3[\"Bowtie2\"];\n 2 -->|trimmed_reads_single| 3;\n 4[\"BAM-to-SAM\"];\n 3 -->|output| 4;", + "modified": "2024-08-18 00:06:22 +0000", + "name": "Identification Of The Binding Sites Of The Estrogen Receptor - Qc Mapping", + "outputs": [], + "parent_id": "epigenetics/estrogen-receptor-binding-site-identification", + "path": "topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/qc_mapping.ga", + "tags": [ + "epigenetics" + ], + "test_results": null, + "tests": false, + "title": "Identification Of The Binding Sites Of The Estrogen Receptor - Qc Mapping", + "topic_id": "epigenetics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/epigenetics-estrogen-receptor-binding-site-identification/versions/qc-mapping", + "tutorial_id": "estrogen-receptor-binding-site-identification", + "url": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/qc_mapping.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/epigenetics/tutorials/estrogen-receptor-binding-site-identification/workflows/qc_mapping.html", + "version": 4, + "wfid": "epigenetics-estrogen-receptor-binding-site-identification", + "wfname": "qc-mapping", + "workflow": "qc_mapping.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bam_to_sam/bam_to_sam/2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.3.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.69" + ], + "workflowhub_id": "1152" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.892432" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/introduction-dna-methylation/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "email": "wolffj@informatik.uni-freiburg.de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "joachimwolff", + "joined": "2017-09", + "name": "Joachim Wolff", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/joachimwolff/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/joachimwolff.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + } + ], + "dir": "topics/epigenetics/tutorials/introduction-dna-methylation", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "epigenetics/introduction-dna-methylation", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-03-05", + "pageviews": 5726883, + "priority": 1, + "pub_date": "2016-10-05", + "redirect_from": [ + "/topics/epigenetics/slides/introduction-dna-methylation", + "/short/epigenetics/introduction-dna-methylation/slides", + "/short/S00060" + ], + "short_id": "S00060", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to DNA Methylation data analysis", + "tools": [], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction-dna-methylation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/introduction-dna-methylation/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/introduction-dna-methylation/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/introduction-dna-methylation/slides.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/introduction-chip-seq/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/epigenetics/tutorials/introduction-chip-seq", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "epigenetics/introduction-chip-seq", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-03-05", + "pageviews": 5726883, + "priority": 1, + "pub_date": "2017-06-12", + "redirect_from": [ + "/topics/epigenetics/slides/introduction-chip-seq", + "/short/epigenetics/introduction-chip-seq/slides", + "/short/S00059" + ], + "short_id": "S00059", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to ChIP-Seq data analysis", + "tools": [], + "topic_name": "epigenetics", + "topic_name_human": "Epigenetics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction-chip-seq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/epigenetics/tutorials/introduction-chip-seq/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/introduction-chip-seq/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/epigenetics/tutorials/introduction-chip-seq/slides.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fasttree", + "owner": "iuc", + "revisions": "e005e659ae21", + "tool_panel_section_label": "Genome Diversity", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "iqtree", + "owner": "iuc", + "revisions": "24d024316465", + "tool_panel_section_label": "Evolution", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "newick_utils", + "owner": "iuc", + "revisions": "b4163d2f64ab", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mafft", + "owner": "rnateam", + "revisions": "6f28e90db932", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fasttree\n owner: iuc\n revisions: e005e659ae21\n tool_panel_section_label: Genome Diversity\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: iqtree\n owner: iuc\n revisions: 24d024316465\n tool_panel_section_label: Evolution\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: newick_utils\n owner: iuc\n revisions: b4163d2f64ab\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mafft\n owner: rnateam\n revisions: 6f28e90db932\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo/tutorial.json", + "contributions": { + "authorship": [ + "mcharleston" + ], + "editing": [ + "adamtaranto", + "burkemlou", + "PatCapon39" + ] + }, + "contributors": [ + { + "affiliations": [ + "UTas" + ], + "email": "michael.charleston@utas.edu.au", + "id": "mcharleston", + "joined": "2023-01", + "name": "Michael Charleston", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcharleston/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcharleston.json" + }, + { + "email": "adam.p.taranto@gmail.com", + "id": "adamtaranto", + "joined": "2023-01", + "name": "Adam Taranto", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/adamtaranto/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/adamtaranto.json" + }, + { + "affiliations": [ + "AustralianBioCommons" + ], + "email": "melissa@biocommons.org.au", + "id": "burkemlou", + "joined": "2023-12", + "name": "Melissa Burke", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/burkemlou/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/burkemlou.json" + }, + { + "affiliations": [ + "AustralianBioCommons" + ], + "id": "PatCapon39", + "joined": "2024-02", + "name": "Patrick Capon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/PatCapon39/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/PatCapon39.json" + } + ], + "dir": "topics/evolution/tutorials/abc_intro_phylo", + "edam_operation": [ + "Multiple sequence alignment", + "Phylogenetic tree generation (from molecular sequences)", + "Phylogenetic tree generation", + "Sequence analysis", + "Phylogenetic analysis", + "Phylogenetic tree generation (maximum likelihood and Bayesian methods)", + "Phylogenetic tree analysis", + "Phylogenetic tree reconstruction" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "evolution/abc_intro_phylo", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": 16771, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-05-10", + "objectives": [ + "Describe the basic concepts behind phylogenetic trees and how they are made", + "Read and interrogate a phylogeny encountered in the literature", + "Use standard tools to align a set of molecular sequences", + "Assess the quality of a molecular sequence alignment and be able to modify it appropriately for phylogenetic analysis", + "Use standard tools to estimate a phylogenetic tree based on a set of aligned molecular sequences", + "Assess the reliability of estimated phylogenies with bootstrapping", + "Explore phylogenetic signal using phylogenetic networks" + ], + "pageviews": 967, + "priority": 0, + "pub_date": "2024-05-10", + "questions": [ + "What information can I get from a phylogenetic tree?", + "How do I estimate a phylogeny?", + "How can I tell whether the phylogeny is reliable?", + "How do phylogenetic models work?" + ], + "short_id": "T00440", + "short_tools": [ + "fasttree", + "newick_display", + "rbc_mafft", + "iqtree" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "phylogenetics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "phylogenetics", + "evolution" + ], + "time_estimation": "4H", + "title": "Phylogenetics - Back to basics", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.1.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.508+galaxy1" + ], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "abc_intro_phylo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/abc_intro_phylo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 142, + "visitors": 701, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9760-8992", + "name": "Helena Rasche" + }, + { + "class": "Person", + "identifier": "0000-0001-8385-341X", + "name": "Michael Charleston" + } + ], + "description": "Tree building for \"Phylogenetics - Back to basics\"", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput FASTA Sequence File\"]\n 1[label=\"MAFFT\"]\n 0 -> 1 [label=\"output\"]\n ke5d56101daff420b82e9dc6cc923f7ab[color=lightseagreen,label=\"Output\\noutputAlignment\"]\n 1 -> ke5d56101daff420b82e9dc6cc923f7ab\n 2[label=\"FASTTREE\"]\n 1 -> 2 [label=\"outputAlignment\"]\n k632ce28d3086490ebd97949eb2cb385a[color=lightseagreen,label=\"Output\\noutput\"]\n 2 -> k632ce28d3086490ebd97949eb2cb385a\n 3[label=\"IQ-TREE\"]\n 1 -> 3 [label=\"outputAlignment\"]\n kb8434b2b20014b1abd06faeab18519a4[color=lightseagreen,label=\"Output\\ntreefile\"]\n 3 -> kb8434b2b20014b1abd06faeab18519a4\n}", + "history": [ + { + "hash": "b66d2fb9e0a2bdaf815140819689de95c3b527a5", + "message": "Update tree-building.ga", + "num": 3, + "short_hash": "b66d2fb9e", + "unix": "1713833340" + }, + { + "hash": "04d8111aa27e4e8572f1aff114167f5118833279", + "message": "fix workflow loading, slide linting", + "num": 2, + "short_hash": "04d8111aa", + "unix": "1713772087" + }, + { + "hash": "7fa178fb37c403159227871d0848937022142508", + "message": "Add workflow which matches tutorial", + "num": 1, + "short_hash": "7fa178fb3", + "unix": "1710757864" + } + ], + "inputs": [ + { + "annotation": "This should be a fasta formatted file with multiple sequences.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "This should be a fasta formatted file with multiple sequences.", + "name": "Input FASTA Sequence File" + } + ], + "label": "Input FASTA Sequence File", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "a837ada1-411e-4d6d-ab02-a42b98e29aa1", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput FASTA Sequence File\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"MAFFT\"];\n 0 -->|output| 1;\n e5d56101-daff-420b-82e9-dc6cc923f7ab[\"Output\\noutputAlignment\"];\n 1 --> e5d56101-daff-420b-82e9-dc6cc923f7ab;\n style e5d56101-daff-420b-82e9-dc6cc923f7ab stroke:#2c3143,stroke-width:4px;\n 2[\"FASTTREE\"];\n 1 -->|outputAlignment| 2;\n 632ce28d-3086-490e-bd97-949eb2cb385a[\"Output\\noutput\"];\n 2 --> 632ce28d-3086-490e-bd97-949eb2cb385a;\n style 632ce28d-3086-490e-bd97-949eb2cb385a stroke:#2c3143,stroke-width:4px;\n 3[\"IQ-TREE\"];\n 1 -->|outputAlignment| 3;\n b8434b2b-2001-4b1a-bd06-faeab18519a4[\"Output\\ntreefile\"];\n 3 --> b8434b2b-2001-4b1a-bd06-faeab18519a4;\n style b8434b2b-2001-4b1a-bd06-faeab18519a4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Tree Building (imported from uploaded file)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.508+galaxy1", + "errors": null, + "id": 1, + "input_connections": { + "inputSequences": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MAFFT", + "outputs": [ + { + "name": "outputAlignment", + "type": "fasta" + } + ], + "position": { + "left": 289.0030927438886, + "top": 16.00251063011501 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.508+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6f28e90db932", + "name": "mafft", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond_flavour\": {\"flavourType\": \"mafft-fftns\", \"__current_case__\": 0}, \"datatype\": \"\", \"ep\": \"0.0\", \"getTree\": false, \"inputSequences\": {\"__class__\": \"ConnectedValue\"}, \"matrix_condition\": {\"matrix\": \"\", \"__current_case__\": 0}, \"op\": \"1.53\", \"outputFormat\": \"\", \"reorder\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "7.508+galaxy1", + "type": "tool", + "uuid": "2bfa372f-8eb2-4437-98ca-6884878f21c3", + "when": null, + "workflow_outputs": [ + { + "label": "outputAlignment", + "output_name": "outputAlignment", + "uuid": "e5d56101-daff-420b-82e9-dc6cc923f7ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input_selector|input": { + "id": 1, + "output_name": "outputAlignment" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FASTTREE", + "name": "input_selector" + } + ], + "label": null, + "name": "FASTTREE", + "outputs": [ + { + "name": "output", + "type": "nhx" + } + ], + "position": { + "left": 509.0030927438886, + "top": 16.00251063011501 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e005e659ae21", + "name": "fasttree", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced_selector\": {\"maximize\": \"max\", \"__current_case__\": 1, \"cat_selector\": {\"conrate\": \"yes\", \"__current_case__\": 1}, \"gamma\": false, \"nosupport\": false, \"likelihood\": true, \"fastest\": false, \"pseudo\": false, \"mllen\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_selector\": {\"select_format\": \"fasta\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"quote\": false, \"intree_selector\": {\"intree_format\": \"none\", \"__current_case__\": 0}}, \"model_selector\": {\"format\": \"-nt\", \"__current_case__\": 0, \"model\": \"\"}, \"save_logfile\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.10+galaxy1", + "type": "tool", + "uuid": "c8996284-fbf1-40e4-87b1-2cd56fcd3c0e", + "when": null, + "workflow_outputs": [ + { + "label": "output", + "output_name": "output", + "uuid": "632ce28d-3086-490e-bd97-949eb2cb385a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.1.2+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "general_options|s": { + "id": 1, + "output_name": "outputAlignment" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool IQ-TREE", + "name": "general_options" + }, + { + "description": "runtime parameter for tool IQ-TREE", + "name": "general_options" + }, + { + "description": "runtime parameter for tool IQ-TREE", + "name": "likelihood_mapping" + } + ], + "label": null, + "name": "IQ-TREE", + "outputs": [ + { + "name": "bionj", + "type": "nhx" + }, + { + "name": "treefile", + "type": "nhx" + }, + { + "name": "mldist", + "type": "mldist" + }, + { + "name": "splits", + "type": "nex" + }, + { + "name": "iqtree", + "type": "iqtree" + } + ], + "position": { + "left": 509.0030927438886, + "top": 136.002510630115 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.1.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "24d024316465", + "name": "iqtree", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"bootstrap_parameters\": {\"ultrafast_bootstrap\": {\"ufboot\": \"1000\", \"ufjack\": null, \"jack_prop\": null, \"boot_trees\": false, \"wbtl\": false, \"nmax\": \"1000\", \"bcor\": \"0.99\", \"nstep\": \"100\", \"beps\": \"0.5\", \"sampling\": null, \"bnni\": false}, \"nonparametric_bootstrap\": {\"boot\": null, \"jack\": null, \"jack_prop\": null, \"bcon\": null, \"bonly\": null, \"tbe\": false}}, \"general_options\": {\"s\": {\"__class__\": \"ConnectedValue\"}, \"o\": null, \"short_alignments\": false, \"seqtype\": \"DNA\", \"t\": {\"__class__\": \"RuntimeValue\"}, \"seed\": null, \"keep_ident\": false, \"epsilon\": null, \"safe\": false}, \"likelihood_mapping\": {\"lmap\": null, \"lmclust\": {\"__class__\": \"RuntimeValue\"}, \"quartetlh\": false}, \"miscellaneous_options\": {\"fconst\": null}, \"modelling_parameters\": {\"automatic_model\": {\"cond_model\": {\"opt_custommodel\": \"true\", \"__current_case__\": 0, \"m\": null}, \"merge_strategy\": {\"merge\": \"none\", \"__current_case__\": 0}, \"mset\": null, \"msub\": \"nuclear\", \"mfreq\": null, \"mrate\": null, \"cmin\": \"2\", \"cmax\": \"10\", \"merit\": \"AIC\", \"mtree\": false, \"madd\": null, \"mdef\": {\"__class__\": \"RuntimeValue\"}, \"modelomatic\": false}, \"specifying_substitution\": {\"mix_opt\": false}, \"rate_heterogeneity\": {\"alpha_min\": null, \"gamma_median\": false, \"i\": null, \"opt_gamma_inv\": false, \"rate\": false, \"mlrate\": false}, \"partition_model\": {\"model_selection\": {\"model\": \"none\", \"__current_case__\": 0}}, \"site_specific_frequency\": {\"tree_freq\": {\"__class__\": \"RuntimeValue\"}, \"site_freq\": null, \"freq_max\": false}}, \"time_tree\": {\"date_source\": {\"select_source\": \"none\", \"__current_case__\": 0}, \"date_tip\": null, \"date_root\": null, \"date_ci\": null, \"clock_sd\": null, \"date_no_outgroup\": false, \"date_outlier\": null, \"date_options\": null}, \"tree_parameters\": {\"tree_search\": {\"n\": null, \"ninit\": \"100\", \"ntop\": \"20\", \"nbest\": \"5\", \"nstop\": \"100\", \"radius\": \"6\", \"perturb\": \"0.5\", \"allnni\": false, \"tree_fix\": false, \"g\": {\"__class__\": \"RuntimeValue\"}, \"fast\": false, \"polytomy\": false, \"treels\": false, \"show_lh\": false, \"terrace\": false}, \"single_branch\": {\"alrt\": null, \"abayes\": false, \"lbp\": null}, \"tree_topology\": {\"trees\": {\"__class__\": \"RuntimeValue\"}, \"test\": null, \"test_weight\": false, \"test_au\": false}, \"constructing_consensus\": {\"contree\": false, \"connet\": false, \"sup_min\": \"0.0\", \"burnin\": null, \"support\": {\"__class__\": \"RuntimeValue\"}, \"suptag\": null}, \"computing_robinson_foulds\": {\"tree_dist_all\": false, \"tree_dist\": {\"__class__\": \"RuntimeValue\"}, \"tree_dist2\": {\"__class__\": \"RuntimeValue\"}}, \"generating_random\": {\"r\": null, \"rand\": null, \"branch_min\": null, \"branch_mean\": null, \"branch_max\": null}, \"ancestral_state\": {\"ancestral\": false, \"asr_min\": null}, \"symmetry_test\": {\"symtest\": false, \"symtest_remove_bad\": false, \"symtest_remove_good\": false, \"symtest_type\": null, \"symtest_pval\": null, \"symtest_keep_zero\": false}, \"concordance_factor\": {\"gcf\": {\"__class__\": \"RuntimeValue\"}, \"df_tree\": false, \"scf\": null, \"cf_verbose\": false, \"cf_quartet\": false}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.2+galaxy2", + "type": "tool", + "uuid": "3821c240-8a7f-4e00-94f4-796c1864147d", + "when": null, + "workflow_outputs": [ + { + "label": "treefile", + "output_name": "treefile", + "uuid": "b8434b2b-2001-4b1a-bd06-faeab18519a4" + } + ] + } + ], + "parent_id": "evolution/abc_intro_phylo", + "path": "topics/evolution/tutorials/abc_intro_phylo/workflows/tree-building.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": true, + "title": "Tree Building (imported from uploaded file)", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-abc_intro_phylo/versions/tree-building", + "tutorial_id": "abc_intro_phylo", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/abc_intro_phylo/workflows/tree-building.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/abc_intro_phylo/workflows/tree-building.html", + "version": 1, + "wfid": "evolution-abc_intro_phylo", + "wfname": "tree-building", + "workflow": "tree-building.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.1.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.508+galaxy1" + ], + "workflowhub_id": "1296" + } + ], + "zenodo_link": "https://zenodo.org/records/11089653" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "1171446da5db", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "a87ae767b01d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "0dbf49c414ae", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snippy", + "owner": "iuc", + "revisions": "c9a8ef2aa380", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snippy", + "owner": "iuc", + "revisions": "d220115f882b", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snp_dists", + "owner": "iuc", + "revisions": "1959cc43b414", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snp_dists", + "owner": "iuc", + "revisions": "f78492521996", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snp_sites", + "owner": "iuc", + "revisions": "5804f786060d", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tb_variant_filter", + "owner": "iuc", + "revisions": "3b1e7c170b10", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tb_variant_filter", + "owner": "iuc", + "revisions": "e7aff4a85df5", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tb_variant_filter", + "owner": "iuc", + "revisions": "ee4a90760848", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbprofiler", + "owner": "iuc", + "revisions": "809dfc93d593", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "add_input_name_as_column", + "owner": "mvdbeek", + "revisions": "3284b72eef56", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "d94aff5ee623", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: 1171446da5db\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: a87ae767b01d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 0dbf49c414ae\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snippy\n owner: iuc\n revisions: c9a8ef2aa380\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snippy\n owner: iuc\n revisions: d220115f882b\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snp_dists\n owner: iuc\n revisions: 1959cc43b414\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snp_dists\n owner: iuc\n revisions: f78492521996\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snp_sites\n owner: iuc\n revisions: 5804f786060d\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tb_variant_filter\n owner: iuc\n revisions: 3b1e7c170b10\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tb_variant_filter\n owner: iuc\n revisions: e7aff4a85df5\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tb_variant_filter\n owner: iuc\n revisions: ee4a90760848\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbprofiler\n owner: iuc\n revisions: 809dfc93d593\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: add_input_name_as_column\n owner: mvdbeek\n revisions: 3284b72eef56\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: d94aff5ee623\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_transmission/tutorial.json", + "contributions": { + "authorship": [ + "GaloGS", + "dbrites", + "cstritt" + ], + "editing": [ + "wm75" + ] + }, + "contributors": [ + { + "id": "GaloGS", + "joined": "2022-03", + "name": "Galo A. Goig", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/GaloGS/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/GaloGS.json" + }, + { + "id": "dbrites", + "joined": "2022-03", + "name": "Daniela Brites", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dbrites/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dbrites.json" + }, + { + "id": "cstritt", + "joined": "2022-03", + "name": "Christoph Stritt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cstritt/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cstritt.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/evolution/tutorials/mtb_transmission", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_3324", + "topic_2885" + ], + "edam_operation": [ + "Variant calling", + "Phylogenetic tree visualisation", + "Phylogenetic tree generation", + "Antimicrobial resistance prediction" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Infectious disease", + "DNA polymorphism" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "evolution/mtb_transmission", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Clustering is a useful tool to detect transmission links between patients and oubreak investigation.", + "Clustering can be used to investigate the transmission of certain traits, like drug resistance.", + "Clustering does not provide information about particular transmission events nor their directionality (who infected whom).", + "Clustering is very much influenced by sampling. Lower sampling proportions and shorter sampling timeframes lead to lower clustering rates that shoud not be confounded with lack of transmission." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-07-12", + "objectives": [ + "Create a SNP alignment", + "Calculate pairwise SNP distances between MTB samples", + "Identify transmission clusters based on SNP distances", + "Study the emergence and spread of drug resistance based on transmission analysis." + ], + "pageviews": 2414, + "pub_date": "2022-03-16", + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + }, + { + "topic_name": "variant-analysis", + "tutorials": [ + "tb-variant-analysis" + ], + "type": "internal" + } + ], + "short_id": "T00145", + "short_tools": [ + "Grep1", + "bcftools_consensus", + "tb_variant_filter", + "upload1", + "samtools_view", + "snp_sites", + "tb_profiler_profile", + "tp_grep_tool", + "tp_cat", + "snippy", + "tp_easyjoin_tool", + "addName", + "tp_sed_tool", + "tp_replace_in_line", + "snp_dists", + "collapse_dataset", + "__MERGE_COLLECTION__", + "trimmomatic" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "one-health", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Identifying tuberculosis transmission links: from SNPs to transmission clusters", + "tools": [ + "Grep1", + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.6.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.8.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_sites/snp_sites/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.1.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.5+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/3.0.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName/0.2.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "upload1" + ], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mtb_transmission", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/mtb_transmission/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_transmission/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_transmission/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 188, + "visitors": 1533, + "workflows": [ + { + "creators": [], + "description": "Starting from the BAM files produced by snippy, generate a table that summarizes the drug-resistance profile for each sample", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nMTB single-end BAMs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nMTB paired-end BAMs\"]\n 2[label=\"Merge collections\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Samtools view BAM > SAM\"]\n 2 -> 3 [label=\"output\"]\n kaa2200279d104328b2c2e4d139d5d5bd[color=lightseagreen,label=\"Output\\nSamtools view on input dataset(s): filtered alignments\"]\n 3 -> kaa2200279d104328b2c2e4d139d5d5bd\n 4[label=\"Sed MTB_anc to Chromosome\"]\n 3 -> 4 [label=\"outputsam\"]\n 5[label=\"Samtools view SAM > BAM\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"TB-profiler\"]\n 5 -> 6 [label=\"outputsam\"]\n 7[label=\"Get drug resistance profile\"]\n 6 -> 7 [label=\"output_txt\"]\n 8[label=\"Add Sample Name\"]\n 7 -> 8 [label=\"output\"]\n 9[label=\"Concatenate DR profiles in a single table\"]\n 8 -> 9 [label=\"output\"]\n 10[label=\"Cleanup the table\"]\n 9 -> 10 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "103d419430b5164ef56e7de3bd3ef13e798967cd", + "message": "update tag", + "num": 2, + "short_hash": "103d41943", + "unix": "1647422971" + }, + { + "hash": "2e7ba78522415b81e10f3f5a74144f4f419b218d", + "message": "tweak", + "num": 1, + "short_hash": "2e7ba7852", + "unix": "1647422653" + } + ], + "inputs": [ + { + "annotation": "BAMs obtained from single-end mappings with snippy", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "BAMs obtained from single-end mappings with snippy", + "name": "MTB single-end BAMs" + } + ], + "label": "MTB single-end BAMs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 586.3333282470703, + "height": 89.09999084472656, + "left": -233.6999969482422, + "right": -13.699996948242188, + "top": 497.23333740234375, + "width": 220, + "x": -233.6999969482422, + "y": 497.23333740234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "5befe3e8-ccba-4b78-b7f1-dab039ef1011", + "workflow_outputs": [] + }, + { + "annotation": "BAMs obtained from paired-end mappings with snippy", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "BAMs obtained from paired-end mappings with snippy", + "name": "MTB paired-end BAMs" + } + ], + "label": "MTB paired-end BAMs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 695.3333282470703, + "height": 89.09999084472656, + "left": -234.6999969482422, + "right": -14.699996948242188, + "top": 606.2333374023438, + "width": 220, + "x": -234.6999969482422, + "y": 606.2333374023438 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d6f269d8-66e8-4baf-9b5c-de9e7313c4a0", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nMTB single-end BAMs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nMTB paired-end BAMs\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Merge collections\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"Samtools view BAM > SAM\"];\n 2 -->|output| 3;\n aa220027-9d10-4328-b2c2-e4d139d5d5bd[\"Output\\nSamtools view on input dataset(s): filtered alignments\"];\n 3 --> aa220027-9d10-4328-b2c2-e4d139d5d5bd;\n style aa220027-9d10-4328-b2c2-e4d139d5d5bd stroke:#2c3143,stroke-width:4px;\n 4[\"Sed MTB_anc to Chromosome\"];\n 3 -->|outputsam| 4;\n 5[\"Samtools view SAM > BAM\"];\n 4 -->|output| 5;\n 6[\"TB-profiler\"];\n 5 -->|outputsam| 6;\n 7[\"Get drug resistance profile\"];\n 6 -->|output_txt| 7;\n 8[\"Add Sample Name\"];\n 7 -->|output| 8;\n 9[\"Concatenate DR profiles in a single table\"];\n 8 -->|output| 9;\n 10[\"Cleanup the table\"];\n 9 -->|out_file1| 10;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "From BAMs to drug resistance prediction with TB-profiler", + "outputs": [ + { + "annotation": "Merge single-end and paired-end BAMs in a single collection to be analyzed alltogether", + "content_id": "__MERGE_COLLECTION__", + "errors": null, + "id": 2, + "input_connections": { + "inputs_0|input": { + "id": 0, + "output_name": "output" + }, + "inputs_1|input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Merge collections", + "name": "Merge collections", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 720.5, + "height": 222.26666259765625, + "left": 34.80000305175781, + "right": 254.8000030517578, + "top": 498.23333740234375, + "width": 220, + "x": 34.80000305175781, + "y": 498.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "__MERGE_COLLECTION__", + "tool_state": "{\"advanced\": {\"conflict\": {\"duplicate_options\": \"keep_first\", \"__current_case__\": 3}}, \"inputs\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "2142f124-4731-49fb-8e65-8e050705e001", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "180a1bdf-d552-49b7-93e9-4daf609096a6" + } + ] + }, + { + "annotation": "We want a text (SAM) file to substitute the string \"MTB_anc\" by \"Chromosome\" so it is compatible with TB-profiler", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "Samtools view BAM > SAM", + "name": "Samtools view", + "outputs": [ + { + "name": "outputsam", + "type": "input" + } + ], + "position": { + "bottom": 951.5000152587891, + "height": 189.8333282470703, + "left": 277.6000061035156, + "right": 497.6000061035156, + "top": 761.6666870117188, + "width": 220, + "x": 277.6000061035156, + "y": 761.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "tool_shed_repository": { + "changeset_revision": "0dbf49c414ae", + "name": "samtools_view", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"all_reads\", \"__current_case__\": 0, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"adv_output\": {\"readtags\": [], \"collapsecigar\": \"false\"}, \"output_format\": {\"oformat\": \"sam\", \"__current_case__\": 1, \"with_header\": \"true\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.13+galaxy2", + "type": "tool", + "uuid": "1040a122-5729-41a4-bd45-2406231f8024", + "workflow_outputs": [ + { + "label": "Samtools view on input dataset(s): filtered alignments", + "output_name": "outputsam", + "uuid": "aa220027-9d10-4328-b2c2-e4d139d5d5bd" + } + ] + }, + { + "annotation": "Change the string MTB_anc to \"Chromosome\" so it is compatible with TB-profiler", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "errors": null, + "id": 4, + "input_connections": { + "infile": { + "id": 3, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": "Sed (MTB_anc to Chromosome)", + "name": "Text transformation", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 943.2000122070312, + "height": 122.5333251953125, + "left": 537.5999755859375, + "right": 757.5999755859375, + "top": 820.6666870117188, + "width": 220, + "x": 537.5999755859375, + "y": 820.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"s/MTB_anc/Chromosome/g\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "95fc656b-43fc-4f1e-8850-25489e793376", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c3b3612d-3999-4022-9d6c-49ce6756ba2a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": "Samtools view SAM > BAM", + "name": "Samtools view", + "outputs": [ + { + "name": "outputsam", + "type": "input" + } + ], + "position": { + "bottom": 945.5000152587891, + "height": 189.8333282470703, + "left": 810.5999755859375, + "right": 1030.5999755859375, + "top": 755.6666870117188, + "width": 220, + "x": 810.5999755859375, + "y": 755.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "tool_shed_repository": { + "changeset_revision": "0dbf49c414ae", + "name": "samtools_view", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"all_reads\", \"__current_case__\": 0, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"adv_output\": {\"readtags\": [], \"collapsecigar\": \"false\"}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.13+galaxy2", + "type": "tool", + "uuid": "729169fd-682e-4394-8421-1cde0aa2ac37", + "workflow_outputs": [ + { + "label": null, + "output_name": "outputsam", + "uuid": "67aacaf4-b657-4269-b3eb-5cf22e1e9596" + } + ] + }, + { + "annotation": "Generate TB-profiler reports with drug resistance determinants", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/3.0.8+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "fastq_or_bam|bam_input": { + "id": 5, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": "TB-profiler", + "name": "TB-Profiler Profile", + "outputs": [ + { + "name": "results_json", + "type": "json" + }, + { + "name": "output_vcf", + "type": "vcf" + }, + { + "name": "output_txt", + "type": "txt" + } + ], + "position": { + "bottom": 724.9333343505859, + "height": 254.6999969482422, + "left": 1069.800048828125, + "right": 1289.800048828125, + "top": 470.23333740234375, + "width": 220, + "x": 1069.800048828125, + "y": 470.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/3.0.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "809dfc93d593", + "name": "tbprofiler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"options\": \"no\", \"__current_case__\": 0}, \"fastq_or_bam\": {\"input_select\": \"bam\", \"__current_case__\": 3, \"bam_input\": {\"__class__\": \"ConnectedValue\"}}, \"output_format\": \"txt\", \"platform\": \"illumina\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.8+galaxy0", + "type": "tool", + "uuid": "07d7e2cc-9669-45b5-bc1e-27bda80752c4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_vcf", + "uuid": "89e84a41-76ce-46eb-acec-1563e8d20ef6" + }, + { + "label": null, + "output_name": "output_txt", + "uuid": "c148b074-5e6a-4846-86e7-0193a5ce38b5" + }, + { + "label": null, + "output_name": "results_json", + "uuid": "b22dcd19-5127-4dc3-b329-8a09ab7f5db3" + } + ] + }, + { + "annotation": "From TB profiler, search with `grep` the part of the text that describes the DR profile (e.g Drug-Resistance: MDR) ", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 6, + "output_name": "output_txt" + } + }, + "inputs": [], + "label": "Get drug resistance profile", + "name": "Search in textfiles", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 594.7666625976562, + "height": 122.5333251953125, + "left": 1343.800048828125, + "right": 1563.800048828125, + "top": 472.23333740234375, + "width": 220, + "x": 1343.800048828125, + "y": 472.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"case_sensitive\": \"-i\", \"color\": \"NOCOLOR\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"lines_after\": \"0\", \"lines_before\": \"0\", \"regex_type\": \"-P\", \"url_paste\": \"Drug-Resistance:\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "9b418ac9-364d-4877-a858-b33a1e335900", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b876e27d-6013-4265-ae70-cffad0895db9" + } + ] + }, + { + "annotation": "We have generated one file per sample, that contains the DR profile (e.g Drug-Resistance: MDR) We want to prepend the name of the sample so we have: (Sample_name Drug-Resistance: MDR) ", + "content_id": "toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName/0.2.0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [], + "label": "Add Sample Name", + "name": "Add input name as column", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 596.7666625976562, + "height": 122.5333251953125, + "left": 1605.800048828125, + "right": 1825.800048828125, + "top": 474.23333740234375, + "width": 220, + "x": 1605.800048828125, + "y": 474.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName/0.2.0", + "tool_shed_repository": { + "changeset_revision": "3284b72eef56", + "name": "add_input_name_as_column", + "owner": "mvdbeek", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"header\": {\"contains_header\": \"no\", \"__current_case__\": 1}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"prepend\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.0", + "type": "tool", + "uuid": "d92f5d19-212d-4d8b-a7f7-f249788088ac", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1b9d5610-2f91-450a-a1b9-1718d8afde1a" + } + ] + }, + { + "annotation": "The output will be:\nSample_A DR_profile_A\nSample_B DR_profile_B\nSample_Z DR_profile_Z", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 9, + "input_connections": { + "inputs": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Concatenate datasets", + "name": "inputs" + } + ], + "label": "Concatenate DR profiles in a single table", + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 596.7666625976562, + "height": 122.5333251953125, + "left": 1871.800048828125, + "right": 2091.800048828125, + "top": 474.23333740234375, + "width": 220, + "x": 1871.800048828125, + "y": 474.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"RuntimeValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "44a1faa8-cd48-4a85-96f7-81dcf3041e19", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "8bf7beae-528c-4d8b-abac-827a84a931a8" + } + ] + }, + { + "annotation": "Remove unnecessary text from the table like \".txt\" or \"Drug-resistance:\"", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Replace Text", + "name": "infile" + } + ], + "label": "Cleanup the table", + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 599.8666534423828, + "height": 122.53334045410156, + "left": 2136.300048828125, + "right": 2356.300048828125, + "top": 477.33331298828125, + "width": 220, + "x": 2136.300048828125, + "y": 477.33331298828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"RuntimeValue\"}, \"replacements\": [{\"__index__\": 0, \"find_pattern\": \".txt\", \"replace_pattern\": \"this is my replacement\"}, {\"__index__\": 1, \"find_pattern\": \"Drug-resistance:\", \"replace_pattern\": \"\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "398ccbde-0309-41bb-b348-fc8ecca15cb9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "6b30ef89-359b-4593-a600-40d11d47138b" + } + ] + } + ], + "parent_id": "evolution/mtb_transmission", + "path": "topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": false, + "title": "From BAMs to drug resistance prediction with TB-profiler", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_transmission/versions/galaxy-workflow-from-bams-to-drug-resistance-prediction-with-tb-profiler", + "tutorial_id": "mtb_transmission", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.html", + "version": 1, + "wfid": "evolution-mtb_transmission", + "wfname": "galaxy-workflow-from-bams-to-drug-resistance-prediction-with-tb-profiler", + "workflow": "Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.ga", + "workflow_tools": [ + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/3.0.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName/0.2.0" + ], + "workflowhub_id": "1314" + }, + { + "creators": [], + "description": "From Fastqs to VCFs and BAMs", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nSingle-End FASTQs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nPaired-End FASTQs\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMycobacterium_tuberculosis_ancestral_reference.gbk\"]\n 3[label=\"Trimmomatic\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Trimmomatic\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Mapping and variant calling of SINGLE END FASTQs with snippy\"]\n 3 -> 5 [label=\"fastq_out\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Mapping and variant calling of PAIRED END FASTQs with snippy\"]\n 4 -> 6 [label=\"fastq_out_paired\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Merge PE/SE VCFs in a single collection with all samples\"]\n 5 -> 7 [label=\"snpvcf\"]\n 6 -> 7 [label=\"snpvcf\"]\n 8[label=\"Merge PE/SE BAMs in a single collection with all samples Part the workflow \u201dIdentifying DR with TB-profiler\"]\n 5 -> 8 [label=\"snpsbam\"]\n 6 -> 8 [label=\"snpsbam\"]\n 9[label=\"TB Variant Filter\"]\n 7 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "61e5383633beda63e0c40a41837ccce18db77008", + "message": "update tag", + "num": 2, + "short_hash": "61e538363", + "unix": "1647423011" + }, + { + "hash": "2e7ba78522415b81e10f3f5a74144f4f419b218d", + "message": "tweak", + "num": 1, + "short_hash": "2e7ba7852", + "unix": "1647422653" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Single-End FASTQs" + } + ], + "label": "Single-End FASTQs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 579.2166595458984, + "height": 89.09999084472656, + "left": 689.4000244140625, + "right": 909.4000244140625, + "top": 490.1166687011719, + "width": 220, + "x": 689.4000244140625, + "y": 490.1166687011719 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "30a3c256-5d21-4219-b23e-58c8f3842387", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Paired-End FASTQs" + } + ], + "label": "Paired-End FASTQs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 688.2166900634766, + "height": 89.09999084472656, + "left": 697.4000244140625, + "right": 917.4000244140625, + "top": 599.11669921875, + "width": 220, + "x": 697.4000244140625, + "y": 599.11669921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c04ddfda-2349-4857-8cae-b3d84dcbf9e7", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mycobacterium_tuberculosis_ancestral_reference.gbk" + } + ], + "label": "Mycobacterium_tuberculosis_ancestral_reference.gbk", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 732.6500244140625, + "height": 111.5333251953125, + "left": 1351.4000244140625, + "right": 1571.4000244140625, + "top": 621.11669921875, + "width": 220, + "x": 1351.4000244140625, + "y": 621.11669921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "67484edc-af0a-4a41-8170-c78853b51319", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nSingle-End FASTQs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nPaired-End FASTQs\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nMycobacterium_tuberculosis_ancestral_reference.gbk\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Trimmomatic\"];\n 0 -->|output| 3;\n 4[\"Trimmomatic\"];\n 1 -->|output| 4;\n 5[\"Mapping and variant calling of SINGLE END FASTQs with snippy\"];\n 3 -->|fastq_out| 5;\n 2 -->|output| 5;\n 6[\"Mapping and variant calling of PAIRED END FASTQs with snippy\"];\n 4 -->|fastq_out_paired| 6;\n 2 -->|output| 6;\n 7[\"Merge PE/SE VCFs in a single collection with all samples\"];\n 5 -->|snpvcf| 7;\n 6 -->|snpvcf| 7;\n 8[\"Merge PE/SE BAMs in a single collection with all samples Part the workflow \u201dIdentifying DR with TB-profiler\"];\n 5 -->|snpsbam| 8;\n 6 -->|snpsbam| 8;\n 9[\"TB Variant Filter\"];\n 7 -->|output| 9;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "From Fastqs to VCFs and BAMs", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "errors": null, + "id": 3, + "input_connections": { + "readtype|fastq_in": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Trimmomatic", + "outputs": [ + { + "name": "fastq_out", + "type": "input" + } + ], + "position": { + "bottom": 592.2166595458984, + "height": 100.09999084472656, + "left": 983.4000244140625, + "right": 1203.4000244140625, + "top": 492.1166687011719, + "width": 220, + "x": 983.4000244140625, + "y": 492.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "tool_shed_repository": { + "changeset_revision": "d94aff5ee623", + "name": "trimmomatic", + "owner": "pjbriggs", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"illuminaclip\": {\"do_illuminaclip\": \"false\", \"__current_case__\": 1}, \"operations\": [{\"__index__\": 0, \"operation\": {\"name\": \"SLIDINGWINDOW\", \"__current_case__\": 0, \"window_size\": \"4\", \"required_quality\": \"30\"}}, {\"__index__\": 1, \"operation\": {\"name\": \"MINLEN\", \"__current_case__\": 1, \"minlen\": \"20\"}}], \"output_err\": \"false\", \"output_logs\": \"false\", \"readtype\": {\"single_or_paired\": \"se\", \"__current_case__\": 0, \"fastq_in\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.38.1", + "type": "tool", + "uuid": "91899b6e-1f22-45de-a6bc-acd43adac9fb", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastq_out", + "uuid": "c206129e-10b1-4c90-8404-ee4540c7216a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "errors": null, + "id": 4, + "input_connections": { + "readtype|fastq_pair": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Trimmomatic", + "outputs": [ + { + "name": "fastq_out_paired", + "type": "input" + }, + { + "name": "fastq_out_unpaired", + "type": "input" + } + ], + "position": { + "bottom": 815.9500274658203, + "height": 199.8333282470703, + "left": 986.4000244140625, + "right": 1206.4000244140625, + "top": 616.11669921875, + "width": 220, + "x": 986.4000244140625, + "y": 616.11669921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "tool_shed_repository": { + "changeset_revision": "d94aff5ee623", + "name": "trimmomatic", + "owner": "pjbriggs", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"illuminaclip\": {\"do_illuminaclip\": \"false\", \"__current_case__\": 1}, \"operations\": [{\"__index__\": 0, \"operation\": {\"name\": \"SLIDINGWINDOW\", \"__current_case__\": 0, \"window_size\": \"4\", \"required_quality\": \"30\"}}, {\"__index__\": 1, \"operation\": {\"name\": \"MINLEN\", \"__current_case__\": 1, \"minlen\": \"20\"}}], \"output_err\": \"false\", \"output_logs\": \"false\", \"readtype\": {\"single_or_paired\": \"collection\", \"__current_case__\": 2, \"fastq_pair\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.38.1", + "type": "tool", + "uuid": "ee71335f-30af-4fd7-a121-bf108ffd5e0a", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastq_out_paired", + "uuid": "11fba967-c0af-4c4d-9d25-08edfec51758" + }, + { + "label": null, + "output_name": "fastq_out_unpaired", + "uuid": "b71f679d-b409-4154-9185-533fad7b45b4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "errors": null, + "id": 5, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 3, + "output_name": "fastq_out" + }, + "ref": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "Mapping and variant calling of SINGLE END FASTQs with snippy", + "name": "snippy", + "outputs": [ + { + "name": "snpvcf", + "type": "vcf" + }, + { + "name": "snptab", + "type": "tabular" + }, + { + "name": "snpsbam", + "type": "bam" + } + ], + "position": { + "bottom": 731.1166687011719, + "height": 332, + "left": 1665.4000244140625, + "right": 1885.4000244140625, + "top": 399.1166687011719, + "width": 220, + "x": 1665.4000244140625, + "y": 399.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "tool_shed_repository": { + "changeset_revision": "c9a8ef2aa380", + "name": "snippy", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"mapqual\": \"60\", \"mincov\": \"10\", \"minfrac\": \"0.1\", \"rgid\": \"\", \"bwaopt\": \"\"}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 1, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"outvcf\", \"outtab\", \"outbam\"], \"ref\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.2", + "type": "tool", + "uuid": "e38af720-1ae1-4f32-9e9d-562d0d040a85", + "workflow_outputs": [ + { + "label": null, + "output_name": "snpsbam", + "uuid": "4c15e214-85dd-4c43-b36a-3e482ab62879" + }, + { + "label": null, + "output_name": "snpvcf", + "uuid": "60968620-b9b0-4481-a17d-33229edb91e2" + }, + { + "label": null, + "output_name": "snptab", + "uuid": "128c6ded-1206-4f88-b93d-9254a37f8f25" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "fastq_input|fastq_input": { + "id": 4, + "output_name": "fastq_out_paired" + }, + "reference_source|ref_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "Mapping and variant calling of PAIRED END FASTQs with snippy", + "name": "snippy", + "outputs": [ + { + "name": "snpvcf", + "type": "vcf" + }, + { + "name": "snptab", + "type": "tabular" + }, + { + "name": "snpsbam", + "type": "bam" + } + ], + "position": { + "bottom": 1091.11669921875, + "height": 332, + "left": 1667.4000244140625, + "right": 1887.4000244140625, + "top": 759.11669921875, + "width": 220, + "x": 1667.4000244140625, + "y": 759.11669921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d220115f882b", + "name": "snippy", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"mapqual\": \"60\", \"mincov\": \"10\", \"minfrac\": \"0.1\", \"minqual\": \"100.0\", \"rgid\": \"\", \"bwaopt\": \"\", \"rename_cons\": \"false\"}, \"fastq_input\": {\"fastq_input_selector\": \"paired_collection\", \"__current_case__\": 2, \"fastq_input\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"outvcf\", \"outtab\", \"outbam\"], \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.6.0+galaxy0", + "type": "tool", + "uuid": "18f42bea-16ad-4db6-9c80-26fae71d99de", + "workflow_outputs": [ + { + "label": null, + "output_name": "snptab", + "uuid": "6c7b8b74-395f-4326-bd62-e334cad878ca" + }, + { + "label": null, + "output_name": "snpsbam", + "uuid": "9eb3bc09-5277-48d3-a1d4-cf652d29e0d2" + }, + { + "label": null, + "output_name": "snpvcf", + "uuid": "7df12aa8-7a33-4985-83c4-5aeae5db29fd" + } + ] + }, + { + "annotation": "", + "content_id": "__MERGE_COLLECTION__", + "errors": null, + "id": 7, + "input_connections": { + "inputs_0|input": { + "id": 5, + "output_name": "snpvcf" + }, + "inputs_1|input": { + "id": 6, + "output_name": "snpvcf" + } + }, + "inputs": [], + "label": "Merge PE/SE VCFs in a single collection with all samples", + "name": "Merge collections", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 685.8166656494141, + "height": 244.6999969482422, + "left": 2111.39990234375, + "right": 2331.39990234375, + "top": 441.1166687011719, + "width": 220, + "x": 2111.39990234375, + "y": 441.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "__MERGE_COLLECTION__", + "tool_state": "{\"advanced\": {\"conflict\": {\"duplicate_options\": \"keep_first\", \"__current_case__\": 3}}, \"inputs\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "6110c068-756d-4b45-96e1-5f2334c1cf35", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "351b8679-eea7-4a76-8840-f5e34f6c4162" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.5+galaxy2", + "errors": null, + "id": 9, + "input_connections": { + "input1": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool TB Variant Filter", + "name": "input1" + } + ], + "label": null, + "name": "TB Variant Filter", + "outputs": [ + { + "name": "output1", + "type": "vcf" + } + ], + "position": { + "bottom": 574.6499938964844, + "height": 122.5333251953125, + "left": 2418.39990234375, + "right": 2638.39990234375, + "top": 452.1166687011719, + "width": 220, + "x": 2418.39990234375, + "y": 452.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.5+galaxy2", + "tool_shed_repository": { + "changeset_revision": "e7aff4a85df5", + "name": "tb_variant_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"show_filter_options\": \"no\", \"__current_case__\": 1}, \"filters\": [\"region_filter\", \"close_to_indel_filter\", \"min_depth_filter\"], \"input1\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.5+galaxy2", + "type": "tool", + "uuid": "83df9492-d224-420e-8434-24a1a32b9da8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "682b8412-8ca5-42c6-bcf2-c5795629471d" + } + ] + } + ], + "parent_id": "evolution/mtb_transmission", + "path": "topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": false, + "title": "From Fastqs to VCFs and BAMs", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_transmission/versions/galaxy-workflow-from-fastqs-to-vcfs-and-bams", + "tutorial_id": "mtb_transmission", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.html", + "version": 1, + "wfid": "evolution-mtb_transmission", + "wfname": "galaxy-workflow-from-fastqs-to-vcfs-and-bams", + "workflow": "Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", + "workflow_tools": [ + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.5+galaxy2", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1" + ], + "workflowhub_id": "1305" + }, + { + "creators": [], + "description": "Given a set of VCF files and the reference genome used to do the mapping and SNP calling, create a multifasta file containing the genomes of all samples and calculate the matrix of pairwise SNP distances", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nCollection of VCFs to analyze\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome of the MTBC ancestor\"]\n 2[label=\"Filter TB variants\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Generate the complete genome of each of the samples\"]\n 2 -> 3 [label=\"output1\"]\n 1 -> 3 [label=\"output\"]\n kce5dd7a2c33d46b49f0268c2bdfcf31a[color=lightseagreen,label=\"Output\\n#{input_file}\"]\n 3 -> kce5dd7a2c33d46b49f0268c2bdfcf31a\n 4[label=\"Concatenate genomes to build a MSA\"]\n 3 -> 4 [label=\"output_file\"]\n 5[label=\"Keep only variable positions\"]\n 4 -> 5 [label=\"out_file1\"]\n 6[label=\"Calculate SNP distances\"]\n 5 -> 6 [label=\"output_fasta\"]\n}", + "history": [ + { + "hash": "679ca224ef8e44203f2aec12c805e0e892076d5b", + "message": "update tag", + "num": 2, + "short_hash": "679ca224e", + "unix": "1647423016" + }, + { + "hash": "2e7ba78522415b81e10f3f5a74144f4f419b218d", + "message": "tweak", + "num": 1, + "short_hash": "2e7ba7852", + "unix": "1647422653" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Collection of VCFs to analyze" + } + ], + "label": "Collection of VCFs to analyze", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 602.3000183105469, + "height": 89.10000610351562, + "left": 562.0999755859375, + "right": 782.0999755859375, + "top": 513.2000122070312, + "width": 220, + "x": 562.0999755859375, + "y": 513.2000122070312 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "a3701b5d-9f74-46b4-ae97-51c432933230", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genome of the MTBC ancestor" + } + ], + "label": "Reference genome of the MTBC ancestor", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 789.7333526611328, + "height": 111.53334045410156, + "left": 865.0999755859375, + "right": 1085.0999755859375, + "top": 678.2000122070312, + "width": 220, + "x": 865.0999755859375, + "y": 678.2000122070312 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "899dca08-73f5-4ac1-9d19-313414c90a1e", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nCollection of VCFs to analyze\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference genome of the MTBC ancestor\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Filter TB variants\"];\n 0 -->|output| 2;\n 3[\"Generate the complete genome of each of the samples\"];\n 2 -->|output1| 3;\n 1 -->|output| 3;\n ce5dd7a2-c33d-46b4-9f02-68c2bdfcf31a[\"Output\\n#{input_file}\"];\n 3 --> ce5dd7a2-c33d-46b4-9f02-68c2bdfcf31a;\n style ce5dd7a2-c33d-46b4-9f02-68c2bdfcf31a stroke:#2c3143,stroke-width:4px;\n 4[\"Concatenate genomes to build a MSA\"];\n 3 -->|output_file| 4;\n 5[\"Keep only variable positions\"];\n 4 -->|out_file1| 5;\n 6[\"Calculate SNP distances\"];\n 5 -->|output_fasta| 6;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "From VCFs to SNP distance matrix", + "outputs": [ + { + "annotation": "We will ensure at this step that variants to build the MSA are fixed variants and that we low-confidence filter repetitive regions of the MTB genome", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.1.3+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Filter TB variants", + "name": "TB Variant Filter", + "outputs": [ + { + "name": "output1", + "type": "vcf" + } + ], + "position": { + "bottom": 636.7333526611328, + "height": 122.53334045410156, + "left": 866.0999755859375, + "right": 1086.0999755859375, + "top": 514.2000122070312, + "width": 220, + "x": 866.0999755859375, + "y": 514.2000122070312 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "#{input1}.filter.vcf" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.1.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3b1e7c170b10", + "name": "tb_variant_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"show_filter_options\": \"yes\", \"__current_case__\": 0, \"region_filter\": [\"pe_ppe\", \"uvp\"], \"indel_window_size\": \"5\", \"min_percentage_alt\": \"90.0\", \"min_depth\": \"30\"}, \"filters\": [\"region_filter\", \"close_to_indel_filter\", \"min_percentage_alt_filter\", \"snv_only_filter\"], \"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.3+galaxy0", + "type": "tool", + "uuid": "b6ef7486-0dc1-4f0c-ad2d-038f648670b8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "87f8ad83-d43e-4e44-8bed-33415b7add79" + } + ] + }, + { + "annotation": "The complete genome of each of the samples is generated by inserting the SNPs defined in the respective VCF in the reference genome that was used for mapping and SNP calling", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 2, + "output_name": "output1" + }, + "reference_source|fasta_ref": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools consensus", + "name": "input_file" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "reference_source" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "sec_default" + } + ], + "label": "Generate the complete genome of each of the samples", + "name": "bcftools consensus", + "outputs": [ + { + "name": "output_file", + "type": "fasta" + } + ], + "position": { + "bottom": 734.0333557128906, + "height": 209.83334350585938, + "left": 1144.0999755859375, + "right": 1364.0999755859375, + "top": 524.2000122070312, + "width": 220, + "x": 1144.0999755859375, + "y": 524.2000122070312 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "#{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy2", + "tool_shed_repository": { + "changeset_revision": "a87ae767b01d", + "name": "bcftools_consensus", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chain\": \"false\", \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"RuntimeValue\"}}, \"rename\": \"true\", \"sec_default\": {\"mask\": {\"__class__\": \"RuntimeValue\"}, \"iupac_codes\": \"false\", \"sample\": \"\", \"select_haplotype\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy2", + "type": "tool", + "uuid": "967af052-882a-427c-825e-e88f59ac50b3", + "workflow_outputs": [ + { + "label": "#{input_file}", + "output_name": "output_file", + "uuid": "ce5dd7a2-c33d-46b4-9f02-68c2bdfcf31a" + } + ] + }, + { + "annotation": "All genomes are concatenated in a single multifasta file. Because all o them have the same length, this may be seen as a multiple sequence alignment.", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 4, + "input_connections": { + "inputs": { + "id": 3, + "output_name": "output_file" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Concatenate datasets", + "name": "inputs" + } + ], + "label": "Concatenate genomes to build a MSA", + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 647.7333526611328, + "height": 122.53334045410156, + "left": 1519.0999755859375, + "right": 1739.0999755859375, + "top": 525.2000122070312, + "width": 220, + "x": 1519.0999755859375, + "y": 525.2000122070312 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"RuntimeValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "e0b536e1-c56c-41ed-9600-905d0cf58e97", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "c1fe096c-2693-4128-8139-4285bcd394ad" + } + ] + }, + { + "annotation": "Discard invariant positions from the MSA to simplify the file so only contains positions with at least one SNP in at least one strain.", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snp_sites/snp_sites/2.5.1+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input_fasta": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Finds SNP sites", + "name": "input_fasta" + } + ], + "label": "Keep only variable positions", + "name": "Finds SNP sites", + "outputs": [ + { + "name": "output_fasta", + "type": "fasta" + } + ], + "position": { + "bottom": 647.1666870117188, + "height": 144.9666748046875, + "left": 1843.0999755859375, + "right": 2063.0999755859375, + "top": 502.20001220703125, + "width": 220, + "x": 1843.0999755859375, + "y": 502.20001220703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snp_sites/snp_sites/2.5.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5804f786060d", + "name": "snp_sites", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_fasta\": {\"__class__\": \"RuntimeValue\"}, \"out_type\": {\"ot_select\": \"alignment\", \"__current_case__\": 0, \"formats\": [\"-m\"], \"b\": \"false\", \"c\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.1+galaxy0", + "type": "tool", + "uuid": "3718c889-5f1c-4cc7-977c-eaa564753c9b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_fasta", + "uuid": "2931ef4f-28d7-4701-bee0-292177bf0841" + } + ] + }, + { + "annotation": "From the MSA. Calculate pairwise SNP distances between samples. ", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.6.3+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 5, + "output_name": "output_fasta" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SNP distance matrix", + "name": "input" + } + ], + "label": "Calculate SNP distances", + "name": "SNP distance matrix", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 662.6000213623047, + "height": 167.40000915527344, + "left": 2173.10009765625, + "right": 2393.10009765625, + "top": 495.20001220703125, + "width": 220, + "x": 2173.10009765625, + "y": 495.20001220703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.6.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1959cc43b414", + "name": "snp_dists", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"a\": \"false\", \"b\": \"false\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"k\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.6.3+galaxy0", + "type": "tool", + "uuid": "e5f85c1b-43cc-417e-8e02-79ecc511b4ec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2dff3ea9-ce2d-48eb-b9eb-90b3b6034ae6" + } + ] + } + ], + "parent_id": "evolution/mtb_transmission", + "path": "topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": false, + "title": "From VCFs to SNP distance matrix", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_transmission/versions/main-workflow", + "tutorial_id": "mtb_transmission", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.html", + "version": 1, + "wfid": "evolution-mtb_transmission", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.6.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_sites/snp_sites/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.1.3+galaxy0" + ], + "workflowhub_id": "1309" + } + ], + "zenodo_link": "https://zenodo.org/record/6010176" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "raxml", + "owner": "iuc", + "revisions": "ea30d3089354", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "raxml", + "owner": "iuc", + "revisions": "73a469f7dc96", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: raxml\n owner: iuc\n revisions: ea30d3089354\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: raxml\n owner: iuc\n revisions: 73a469f7dc96\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_phylogeny/tutorial.json", + "contributions": { + "authorship": [ + "cstritt", + "dbrites", + "GaloGS" + ], + "editing": [ + "wm75" + ] + }, + "contributors": [ + { + "id": "cstritt", + "joined": "2022-03", + "name": "Christoph Stritt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cstritt/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cstritt.json" + }, + { + "id": "dbrites", + "joined": "2022-03", + "name": "Daniela Brites", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dbrites/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dbrites.json" + }, + { + "id": "GaloGS", + "joined": "2022-03", + "name": "Galo A. Goig", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/GaloGS/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/GaloGS.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/evolution/tutorials/mtb_phylogeny", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0084", + "topic_3324" + ], + "edam_operation": [ + "Sequence analysis", + "Phylogenetic tree analysis" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Phylogeny", + "Infectious disease" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "evolution/mtb_phylogeny", + "inexact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-12", + "objectives": [ + "Understand the basic concepts behind phylogenetic trees, as applied to *Mycobacterium tuberculosis*", + "Be able to read and interrogate a phylogeny encountered in the literature" + ], + "pageviews": 1983, + "pub_date": "2022-03-16", + "questions": [ + "What information can I get from a phylogenetic tree?", + "How do I estimate a phylogeny?" + ], + "requirements": [ + { + "topic_name": "variant-analysis", + "tutorials": [ + "tb-variant-analysis" + ], + "type": "internal" + }, + { + "topic_name": "evolution", + "tutorials": [ + "mtb_transmission" + ], + "type": "internal" + } + ], + "short_id": "T00144", + "short_tools": [ + "interactive_tool_rstudio", + "upload1", + "raxml" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "one-health", + "phylogenetics", + "microgalaxy" + ], + "time_estimation": "1H", + "title": "Tree thinking for tuberculosis evolution and epidemiology", + "tools": [ + "interactive_tool_rstudio", + "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.12+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.4+galaxy2", + "upload1" + ], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mtb_phylogeny", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/mtb_phylogeny/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_phylogeny/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_phylogeny/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 131, + "visitors": 1308, + "workflows": [ + { + "creators": [], + "description": "Estimate a phylogenetic tree from whole genome sequencing data for M. tuberculosis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput alignment\"]\n 1[label=\"RStudio\"]\n 2[label=\"Estimate phylogeny with RAxML\"]\n 0 -> 2 [label=\"output\"]\n k9f8ae577c5834a2db64d14c25fb859d9[color=lightseagreen,label=\"Output\\nBest-scoring ML Tree\"]\n 2 -> k9f8ae577c5834a2db64d14c25fb859d9\n kbdb8cf2fb5534a968b5538b4b499ab88[color=lightseagreen,label=\"Output\\nInfo\"]\n 2 -> kbdb8cf2fb5534a968b5538b4b499ab88\n}", + "history": [ + { + "hash": "afdd9be4b6e36ae6eafd8b9a9a98e215f1546961", + "message": "add tag", + "num": 3, + "short_hash": "afdd9be4b", + "unix": "1647422954" + }, + { + "hash": "946859f788400ae6b40df5b7a08a07fd6fe44edf", + "message": "prettyprint workflow", + "num": 2, + "short_hash": "946859f78", + "unix": "1647422932" + }, + { + "hash": "2e7ba78522415b81e10f3f5a74144f4f419b218d", + "message": "tweak", + "num": 1, + "short_hash": "2e7ba7852", + "unix": "1647422653" + } + ], + "inputs": [ + { + "annotation": "Alignment in fasta format, containing variable positions from variant calling", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Alignment in fasta format, containing variable positions from variant calling", + "name": "Input alignment" + } + ], + "label": "Input alignment", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 433.31666564941406, + "height": 82.19999694824219, + "left": 392.7166748046875, + "right": 592.7166748046875, + "top": 351.1166687011719, + "width": 200, + "x": 392.7166748046875, + "y": 351.1166687011719 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "94b1ea1c-8a3a-4fb7-9cfe-40a1c1c1833d", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput alignment\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"RStudio\"];\n 2[\"Estimate phylogeny with RAxML\"];\n 0 -->|output| 2;\n 9f8ae577-c583-4a2d-b64d-14c25fb859d9[\"Output\\nBest-scoring ML Tree\"];\n 2 --> 9f8ae577-c583-4a2d-b64d-14c25fb859d9;\n style 9f8ae577-c583-4a2d-b64d-14c25fb859d9 stroke:#2c3143,stroke-width:4px;\n bdb8cf2f-b553-4a96-8b55-38b4b499ab88[\"Output\\nInfo\"];\n 2 --> bdb8cf2f-b553-4a96-8b55-38b4b499ab88;\n style bdb8cf2f-b553-4a96-8b55-38b4b499ab88 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Mtb phylogeny", + "outputs": [ + { + "annotation": "Maximum likelihood-based inference of a phylogenetic tree", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.4+galaxy2", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Phyogenetic reconstruction with RAxML", + "name": "infile" + } + ], + "label": "Estimate phylogeny with RAxML", + "name": "Phyogenetic reconstruction with RAxML", + "outputs": [ + { + "name": "info", + "type": "txt" + }, + { + "name": "logReq", + "type": "txt" + }, + { + "name": "parsimonyTreeReq", + "type": "nhx" + }, + { + "name": "resultReq", + "type": "nhx" + }, + { + "name": "bestTree", + "type": "nhx" + } + ], + "position": { + "bottom": 629.4500122070312, + "height": 276, + "left": 678.2166748046875, + "right": 878.2166748046875, + "top": 353.45001220703125, + "width": 200, + "x": 678.2166748046875, + "y": 353.45001220703125 + }, + "post_job_actions": { + "DeleteIntermediatesActioninfo": { + "action_arguments": {}, + "action_type": "DeleteIntermediatesAction", + "output_name": "info" + }, + "HideDatasetActionlogReq": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "logReq" + }, + "HideDatasetActionparsimonyTreeReq": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "parsimonyTreeReq" + }, + "HideDatasetActionresultReq": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "resultReq" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "73a469f7dc96", + "name": "raxml", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"RuntimeValue\"}, \"random_seed\": \"1234567890\", \"search_model_selector\": {\"model_type\": \"nucleotide\", \"__current_case__\": 0, \"base_model\": \"GTRGAMMA\"}, \"selExtraOpts\": {\"extraOptions\": \"required\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "8.2.4+galaxy2", + "type": "tool", + "uuid": "057bd38a-20c2-4713-ba6f-964f15904b37", + "workflow_outputs": [ + { + "label": "Best-scoring ML Tree", + "output_name": "bestTree", + "uuid": "9f8ae577-c583-4a2d-b64d-14c25fb859d9" + }, + { + "label": "Info", + "output_name": "info", + "uuid": "bdb8cf2f-b553-4a96-8b55-38b4b499ab88" + } + ] + } + ], + "parent_id": "evolution/mtb_phylogeny", + "path": "topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": false, + "title": "Mtb phylogeny", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_phylogeny/versions/main-workflow", + "tutorial_id": "mtb_phylogeny", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.html", + "version": 1, + "wfid": "evolution-mtb_phylogeny", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "interactive_tool_rstudio", + "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.4+galaxy2" + ], + "workflowhub_id": "1300" + } + ], + "zenodo_link": "https://zenodo.org/record/6010176" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-intro/tutorial.json", + "contributors": [ + { + "affiliations": [ + "UTas" + ], + "email": "michael.charleston@utas.edu.au", + "id": "mcharleston", + "joined": "2023-01", + "name": "Michael Charleston", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcharleston/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcharleston.json" + } + ], + "dir": "topics/evolution/tutorials/abc_intro_phylo-intro", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "evolution/abc_intro_phylo-intro", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "shared/images/biocommons-utas.png", + "mod_date": "2024-05-10", + "pageviews": 348186, + "priority": 1, + "pub_date": "2024-05-10", + "short_id": "S00116", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "phylogenetics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Phylogenetics - Back to Basics - Introduction", + "tools": [], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "abc_intro_phylo-intro", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/abc_intro_phylo-intro/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-intro/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-intro/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 153, + "visitors": 142604, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-terminology/tutorial.json", + "contributors": [ + { + "affiliations": [ + "UTas" + ], + "email": "michael.charleston@utas.edu.au", + "id": "mcharleston", + "joined": "2023-01", + "name": "Michael Charleston", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcharleston/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcharleston.json" + } + ], + "dir": "topics/evolution/tutorials/abc_intro_phylo-terminology", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "evolution/abc_intro_phylo-terminology", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "shared/images/biocommons-utas.png", + "mod_date": "2024-05-10", + "pageviews": 348186, + "priority": 2, + "pub_date": "2024-05-10", + "short_id": "S00120", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "phylogenetics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Phylogenetics - Back to Basics - Terminology", + "tools": [], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "abc_intro_phylo-terminology", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/abc_intro_phylo-terminology/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-terminology/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-terminology/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 153, + "visitors": 142604, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-msa/tutorial.json", + "contributors": [ + { + "affiliations": [ + "UTas" + ], + "email": "michael.charleston@utas.edu.au", + "id": "mcharleston", + "joined": "2023-01", + "name": "Michael Charleston", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcharleston/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcharleston.json" + } + ], + "dir": "topics/evolution/tutorials/abc_intro_phylo-msa", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "evolution/abc_intro_phylo-msa", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 14973, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "shared/images/biocommons-utas.png", + "mod_date": "2024-05-10", + "pageviews": 348186, + "priority": 3, + "pub_date": "2024-05-10", + "short_id": "S00118", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "phylogenetics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Phylogenetics - Back to Basics - Multiple Sequence Alignment", + "tools": [], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "abc_intro_phylo-msa", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/abc_intro_phylo-msa/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-msa/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-msa/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 153, + "visitors": 142604, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-trees/tutorial.json", + "contributors": [ + { + "affiliations": [ + "UTas" + ], + "email": "michael.charleston@utas.edu.au", + "id": "mcharleston", + "joined": "2023-01", + "name": "Michael Charleston", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcharleston/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcharleston.json" + } + ], + "dir": "topics/evolution/tutorials/abc_intro_phylo-trees", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "evolution/abc_intro_phylo-trees", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 746, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "shared/images/biocommons-utas.png", + "mod_date": "2024-05-10", + "pageviews": 348186, + "priority": 4, + "pub_date": "2024-05-10", + "short_id": "S00121", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "phylogenetics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Phylogenetics - Back to Basics - Building Trees", + "tools": [], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "abc_intro_phylo-trees", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/abc_intro_phylo-trees/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-trees/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-trees/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 153, + "visitors": 142604, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-mle-trees/tutorial.json", + "contributors": [ + { + "affiliations": [ + "UTas" + ], + "email": "michael.charleston@utas.edu.au", + "id": "mcharleston", + "joined": "2023-01", + "name": "Michael Charleston", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcharleston/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcharleston.json" + } + ], + "dir": "topics/evolution/tutorials/abc_intro_phylo-mle-trees", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "evolution/abc_intro_phylo-mle-trees", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 4916, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "shared/images/biocommons-utas.png", + "mod_date": "2024-05-10", + "pageviews": 348186, + "priority": 5, + "pub_date": "2024-05-10", + "short_id": "S00117", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "phylogenetics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Phylogenetics - Back to Basics - Estimating trees from alignments", + "tools": [], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "abc_intro_phylo-mle-trees", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/abc_intro_phylo-mle-trees/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-mle-trees/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-mle-trees/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 153, + "visitors": 142604, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-networks/tutorial.json", + "contributors": [ + { + "affiliations": [ + "UTas" + ], + "email": "michael.charleston@utas.edu.au", + "id": "mcharleston", + "joined": "2023-01", + "name": "Michael Charleston", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mcharleston/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mcharleston.json" + } + ], + "dir": "topics/evolution/tutorials/abc_intro_phylo-networks", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "evolution/abc_intro_phylo-networks", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "shared/images/biocommons-utas.png", + "mod_date": "2024-05-10", + "pageviews": 348186, + "priority": 6, + "pub_date": "2024-05-10", + "short_id": "S00119", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "phylogenetics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Phylogenetics - Back to Basics - Phylogenetic Networks", + "tools": [], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "abc_intro_phylo-networks", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/abc_intro_phylo-networks/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-networks/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/abc_intro_phylo-networks/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 153, + "visitors": 142604, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "chembl", + "owner": "bgruening", + "revisions": "a446ea7e2bc1", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ctb_im_rxn_maker", + "owner": "bgruening", + "revisions": "8ef5428fb809", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "get_pdb", + "owner": "bgruening", + "revisions": "538790c6c21b", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "e2c36f62e22f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_svg_depiction", + "owner": "bgruening", + "revisions": "7672039a0bb0", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qed", + "owner": "bgruening", + "revisions": "52a8d34dd08f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "md_converter", + "owner": "chemteam", + "revisions": "ba83f0923369", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: chembl\n owner: bgruening\n revisions: a446ea7e2bc1\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ctb_im_rxn_maker\n owner: bgruening\n revisions: 8ef5428fb809\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: get_pdb\n owner: bgruening\n revisions: 538790c6c21b\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: e2c36f62e22f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_svg_depiction\n owner: bgruening\n revisions: 7672039a0bb0\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qed\n owner: bgruening\n revisions: 52a8d34dd08f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: md_converter\n owner: chemteam\n revisions: ba83f0923369\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/med-chem-data/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "kkamieniecka", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/med-chem-data", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "computational-chemistry", + "type": "internal" + } + ], + "hands_on": true, + "id": "fair/med-chem-data", + "inexact_supported_servers": [ + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The power of big data might be useful to shape innovations of the future in the pharmaceutical field.", + "There are many publicly available databases used for drug discovery and development and they might look at the same medicines from different angles and classify them based on various factors.", + "Galaxy provides tools and a platform for medicinal chemistry analyses." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-18", + "objectives": [ + "Learn some terminology from the field of medicinal chemistry", + "Understand the idea of data-driven medicinal chemistry", + "Explore the databases used for drug discovery and development", + "Use Galaxy tools for data management, format conversion and simple analyses" + ], + "pageviews": 0, + "pub_date": "2024-08-18", + "questions": [ + "Why does medicinal chemistry research produce so much data?", + "How can big data be useful for medicinal chemists?", + "What are the current publicly available databases that can be used for drug discovery and development?", + "How to use Galaxy for data management and analysis of chemical data?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "data-management" + ], + "type": "internal" + } + ], + "short_id": "T00429", + "short_tools": [ + "ctb_silicos_qed", + "md_converter", + "get_pdb", + "ctb_im_rxn_maker", + "openbabel_compound_convert", + "chembl", + "openbabel_svg_depiction" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": true, + "tags": [ + "fair", + "data-management", + "medicinal-chemistry", + "computational-chemistry" + ], + "time_estimation": "1H", + "title": "Data management in Medicinal Chemistry", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_im_rxn_maker/ctb_im_rxn_maker/1.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/get_pdb/get_pdb/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/chemteam/md_converter/md_converter/1.9.6+galaxy0" + ], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "med-chem-data", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/med-chem-data/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/med-chem-data/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/med-chem-data/tutorial.json" + }, + "version": 0, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 0, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + } + ], + "description": "Workflow includes data import, format conversion and some basic medicinal chemistry analyses.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBenzenesulfonyl chloride\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEthylamine\"]\n 2[label=\"Compound conversion\"]\n 0 -> 2 [label=\"output\"]\n kaff8fa4fc2544f05956052bad6c7e04a[color=lightseagreen,label=\"Output\\nBenzenesulfonyl chloride SDF\"]\n 2 -> kaff8fa4fc2544f05956052bad6c7e04a\n 3[label=\"Search ChEMBL database\"]\n 0 -> 3 [label=\"output\"]\n k044d2c0892ed45c99868ee802998d92c[color=lightseagreen,label=\"Output\\nSubstructures from ChEMBL database\"]\n 3 -> k044d2c0892ed45c99868ee802998d92c\n 4[label=\"Search ChEMBL database\"]\n 0 -> 4 [label=\"output\"]\n k99274b60732d4276969fccc3673a872a[color=lightseagreen,label=\"Output\\nLipinski substructures from ChEMBL database\"]\n 4 -> k99274b60732d4276969fccc3673a872a\n 5[label=\"Compound conversion\"]\n 1 -> 5 [label=\"output\"]\n k77ad7b99576146a3b9a61dd3d8e2baac[color=lightseagreen,label=\"Output\\nEthylamine SDF\"]\n 5 -> k77ad7b99576146a3b9a61dd3d8e2baac\n 6[label=\"Reaction maker\"]\n 2 -> 6 [label=\"outfile\"]\n 5 -> 6 [label=\"outfile\"]\n kf9d1d7fde854469ba4646811998e058e[color=lightseagreen,label=\"Output\\nReaction product\"]\n 6 -> kf9d1d7fde854469ba4646811998e058e\n kb0bd7ed2a80b44ce994b999e1d472281[color=lightseagreen,label=\"Output\\nReaction maker logfile\"]\n 6 -> kb0bd7ed2a80b44ce994b999e1d472281\n 7[label=\"Visualisation\"]\n 6 -> 7 [label=\"outfile\"]\n kfc618f3f6aa54970841d56f4eabf47b7[color=lightseagreen,label=\"Output\\nVisualisation of reaction product\"]\n 7 -> kfc618f3f6aa54970841d56f4eabf47b7\n 8[label=\"Drug-likeness\"]\n 6 -> 8 [label=\"outfile\"]\n k7ad8c184e10d4fcea4023e79da6e09ac[color=lightseagreen,label=\"Output\\nDrug-likeness of product molecule\"]\n 8 -> k7ad8c184e10d4fcea4023e79da6e09ac\n}", + "history": [], + "inputs": [ + { + "annotation": "First input molecule ", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "First input molecule ", + "name": "Benzenesulfonyl chloride" + } + ], + "label": "Benzenesulfonyl chloride", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.21065309449974406, + "top": 8.775010413544436 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3f0f498c-32b9-4977-bdac-84ebe37c20d1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Second input molecule ", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Second input molecule ", + "name": "Ethylamine" + } + ], + "label": "Ethylamine", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 111.57694234472979 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0dac45d0-117b-4d59-b2e6-6f591b3804f8", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nBenzenesulfonyl chloride\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nEthylamine\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Compound conversion\"];\n 0 -->|output| 2;\n aff8fa4f-c254-4f05-9560-52bad6c7e04a[\"Output\\nBenzenesulfonyl chloride SDF\"];\n 2 --> aff8fa4f-c254-4f05-9560-52bad6c7e04a;\n style aff8fa4f-c254-4f05-9560-52bad6c7e04a stroke:#2c3143,stroke-width:4px;\n 3[\"Search ChEMBL database\"];\n 0 -->|output| 3;\n 044d2c08-92ed-45c9-9868-ee802998d92c[\"Output\\nSubstructures from ChEMBL database\"];\n 3 --> 044d2c08-92ed-45c9-9868-ee802998d92c;\n style 044d2c08-92ed-45c9-9868-ee802998d92c stroke:#2c3143,stroke-width:4px;\n 4[\"Search ChEMBL database\"];\n 0 -->|output| 4;\n 99274b60-732d-4276-969f-ccc3673a872a[\"Output\\nLipinski substructures from ChEMBL database\"];\n 4 --> 99274b60-732d-4276-969f-ccc3673a872a;\n style 99274b60-732d-4276-969f-ccc3673a872a stroke:#2c3143,stroke-width:4px;\n 5[\"Compound conversion\"];\n 1 -->|output| 5;\n 77ad7b99-5761-46a3-b9a6-1dd3d8e2baac[\"Output\\nEthylamine SDF\"];\n 5 --> 77ad7b99-5761-46a3-b9a6-1dd3d8e2baac;\n style 77ad7b99-5761-46a3-b9a6-1dd3d8e2baac stroke:#2c3143,stroke-width:4px;\n 6[\"Reaction maker\"];\n 2 -->|outfile| 6;\n 5 -->|outfile| 6;\n f9d1d7fd-e854-469b-a464-6811998e058e[\"Output\\nReaction product\"];\n 6 --> f9d1d7fd-e854-469b-a464-6811998e058e;\n style f9d1d7fd-e854-469b-a464-6811998e058e stroke:#2c3143,stroke-width:4px;\n b0bd7ed2-a80b-44ce-994b-999e1d472281[\"Output\\nReaction maker logfile\"];\n 6 --> b0bd7ed2-a80b-44ce-994b-999e1d472281;\n style b0bd7ed2-a80b-44ce-994b-999e1d472281 stroke:#2c3143,stroke-width:4px;\n 7[\"Visualisation\"];\n 6 -->|outfile| 7;\n fc618f3f-6aa5-4970-841d-56f4eabf47b7[\"Output\\nVisualisation of reaction product\"];\n 7 --> fc618f3f-6aa5-4970-841d-56f4eabf47b7;\n style fc618f3f-6aa5-4970-841d-56f4eabf47b7 stroke:#2c3143,stroke-width:4px;\n 8[\"Drug-likeness\"];\n 6 -->|outfile| 8;\n 7ad8c184-e10d-4fce-a402-3e79da6e09ac[\"Output\\nDrug-likeness of product molecule\"];\n 8 --> 7ad8c184-e10d-4fce-a402-3e79da6e09ac;\n style 7ad8c184-e10d-4fce-a402-3e79da6e09ac stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Data management in Medicinal Chemistry workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Compound conversion", + "outputs": [ + { + "name": "outfile", + "type": "text" + } + ], + "position": { + "left": 277.9155357077574, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Benzenesulfonyl chloride SDF" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e2c36f62e22f", + "name": "openbabel_compound_convert", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"smi\", \"appendtotitle\": \"\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dative_bonds\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"oformat\": {\"oformat_opts_selector\": \"sdf\", \"__current_case__\": 58, \"sdf_exp_h\": false, \"sdf_no_prop\": false, \"sdf_wedge_bonds\": false, \"sdf_alias_out\": false, \"gen2d\": false, \"gen3d\": false}, \"ph\": \"-1.0\", \"remove_h\": false, \"split\": false, \"unique\": {\"unique_opts_selector\": \"\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.1+galaxy0", + "type": "tool", + "uuid": "d5ad1375-76ba-4fc9-bfcf-3c47c1e6ae34", + "when": null, + "workflow_outputs": [ + { + "label": "Benzenesulfonyl chloride SDF", + "output_name": "outfile", + "uuid": "aff8fa4f-c254-4f05-9560-52bad6c7e04a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "errors": null, + "id": 3, + "input_connections": { + "input|smiles": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Search ChEMBL database", + "outputs": [ + { + "name": "outfile", + "type": "smi" + } + ], + "position": { + "left": 229.7356198344896, + "top": 402.97495753564186 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Benzenesulfonyl chloride substructures" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "a446ea7e2bc1", + "name": "chembl", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"smi\", \"biotherapeutic\": false, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"drugs\": false, \"input\": {\"format\": \"-f\", \"__current_case__\": 1, \"smiles\": {\"__class__\": \"ConnectedValue\"}}, \"natprod\": false, \"ro5\": false, \"search\": {\"type\": \"-s\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.1+galaxy4", + "type": "tool", + "uuid": "35abd340-c8b4-48aa-9758-aaacf7b30d08", + "when": null, + "workflow_outputs": [ + { + "label": "Substructures from ChEMBL database", + "output_name": "outfile", + "uuid": "044d2c08-92ed-45c9-9868-ee802998d92c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "errors": null, + "id": 4, + "input_connections": { + "input|smiles": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Search ChEMBL database", + "outputs": [ + { + "name": "outfile", + "type": "smi" + } + ], + "position": { + "left": 319.97994179389195, + "top": 571.2698718107019 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Benzenesulfonyl chloride Lipinski substructures" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "a446ea7e2bc1", + "name": "chembl", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"smi\", \"biotherapeutic\": false, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"drugs\": false, \"input\": {\"format\": \"-f\", \"__current_case__\": 1, \"smiles\": {\"__class__\": \"ConnectedValue\"}}, \"natprod\": false, \"ro5\": true, \"search\": {\"type\": \"-s\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.1+galaxy4", + "type": "tool", + "uuid": "4c95bb53-414f-42ba-9932-73a42867fccc", + "when": null, + "workflow_outputs": [ + { + "label": "Lipinski substructures from ChEMBL database", + "output_name": "outfile", + "uuid": "99274b60-732d-4276-969f-ccc3673a872a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Compound conversion", + "outputs": [ + { + "name": "outfile", + "type": "text" + } + ], + "position": { + "left": 292.9155357077574, + "top": 222.9874801635741 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Ethylamine SDF" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e2c36f62e22f", + "name": "openbabel_compound_convert", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"smi\", \"appendtotitle\": \"\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dative_bonds\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"oformat\": {\"oformat_opts_selector\": \"sdf\", \"__current_case__\": 58, \"sdf_exp_h\": false, \"sdf_no_prop\": false, \"sdf_wedge_bonds\": false, \"sdf_alias_out\": false, \"gen2d\": false, \"gen3d\": false}, \"ph\": \"-1.0\", \"remove_h\": false, \"split\": false, \"unique\": {\"unique_opts_selector\": \"\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.1+galaxy0", + "type": "tool", + "uuid": "7c407d5d-dd19-4350-a852-bec9ebef7814", + "when": null, + "workflow_outputs": [ + { + "label": "Ethylamine SDF", + "output_name": "outfile", + "uuid": "77ad7b99-5761-46a3-b9a6-1dd3d8e2baac" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_im_rxn_maker/ctb_im_rxn_maker/1.1.4+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 2, + "output_name": "outfile" + }, + "reagent_file": { + "id": 5, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Reaction maker", + "outputs": [ + { + "name": "outfile", + "type": "sdf" + }, + { + "name": "logfile", + "type": "txt" + } + ], + "position": { + "left": 544.9155330206689, + "top": 114.98750994420489 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_im_rxn_maker/ctb_im_rxn_maker/1.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8ef5428fb809", + "name": "ctb_im_rxn_maker", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"sdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"multi\": false, \"reagent_file\": {\"__class__\": \"ConnectedValue\"}, \"reagent_opts\": \"Sulfonamide\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.4+galaxy0", + "type": "tool", + "uuid": "37301a4f-bdfd-44b1-b040-ce64a879a06b", + "when": null, + "workflow_outputs": [ + { + "label": "Reaction product", + "output_name": "outfile", + "uuid": "f9d1d7fd-e854-469b-a464-6811998e058e" + }, + { + "label": "Reaction maker logfile", + "output_name": "logfile", + "uuid": "b0bd7ed2-a80b-44ce-994b-999e1d472281" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Visualisation", + "outputs": [ + { + "name": "outfile", + "type": "png" + } + ], + "position": { + "left": 799.9156856085593, + "top": 70.98751375890217 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "7672039a0bb0", + "name": "openbabel_svg_depiction", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"sdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"display_name\": \"MW\", \"draw_all_carbon_atoms\": false, \"embed_molecule_as_cml\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"oformat\": \"svg\", \"sort\": null, \"thick_lines\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.1+galaxy0", + "type": "tool", + "uuid": "e7e66ae2-821d-41e3-bc2c-d4b46ba4029a", + "when": null, + "workflow_outputs": [ + { + "label": "Visualisation of reaction product", + "output_name": "outfile", + "uuid": "fc618f3f-6aa5-4970-841d-56f4eabf47b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Drug-likeness", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 807.9157161261375, + "top": 234.98750994420482 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "52a8d34dd08f", + "name": "qed", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"sdf\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"header\": true, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"method\": \"unweighted\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2021.03.4+galaxy0", + "type": "tool", + "uuid": "fd355ddb-320d-442d-8b6b-e98e0e91b0d1", + "when": null, + "workflow_outputs": [ + { + "label": "Drug-likeness of product molecule", + "output_name": "outfile", + "uuid": "7ad8c184-e10d-4fce-a402-3e79da6e09ac" + } + ] + } + ], + "parent_id": "fair/med-chem-data", + "path": "topics/fair/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Data management in Medicinal Chemistry workflow", + "topic_id": "fair", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/fair-med-chem-data/versions/data-management-in-medicinal-chemistry-workflow", + "tutorial_id": "med-chem-data", + "url": "https://training.galaxyproject.org/training-material/topics/fair/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/fair/tutorials/med-chem-data/workflows/Data-management-in-Medicinal-Chemistry-workflow.html", + "version": 0, + "wfid": "fair-med-chem-data", + "wfname": "data-management-in-medicinal-chemistry-workflow", + "workflow": "Data-management-in-Medicinal-Chemistry-workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/chembl/chembl/0.10.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_im_rxn_maker/ctb_im_rxn_maker/1.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_svg_depiction/openbabel_svg_depiction/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0" + ], + "workflowhub_id": "1068" + } + ] + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-intro/tutorial.json", + "contributions": { + "authorship": [ + "kkamieniecka", + "poterlowicz-lab" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-intro", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/fair-intro", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "FAIR data are data which meet principles of findability, accessibility, interoperability, and reusability (FAIR).", + "FAIR data are as open as possible, and as closed as necessary.", + "The main objective of FAIR data is to increase data reuse by researchers." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-04-30", + "objectives": [ + "Learn the FAIR principles", + "Recognise the relationship between FAIR and Open data" + ], + "pageviews": 518, + "priority": 1, + "pub_date": "2023-05-30", + "questions": [ + "What do the FAIR principles stand for [Wilkinson et al. 2016](https://www.nature.com/articles/sdata201618)?", + "How to make data FAIR?" + ], + "short_id": "T00351", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "open", + "data stewardship" + ], + "time_estimation": "10M", + "title": "FAIR in a nutshell", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-intro", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-intro/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-intro/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-intro/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 88, + "visitors": 389, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-workflow-run-ro-crate/tutorial.json", + "contributions": { + "authorship": [ + "simleo" + ], + "funding": [ + "by-covid" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "elixir-europe" + ], + "elixir_node": "it", + "id": "simleo", + "joined": "2023-04", + "name": "Simone Leo", + "orcid": "0000-0001-8271-5429", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simleo/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simleo.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + } + ], + "dir": "topics/fair/tutorials/ro-crate-workflow-run-ro-crate", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/ro-crate-workflow-run-ro-crate", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [], + "layout": "tutorial_hands_on", + "license": "Apache-2.0", + "mod_date": "2023-05-11", + "objectives": [], + "pageviews": 239, + "priority": 1, + "pub_date": "2023-05-11", + "questions": [], + "short_id": "T00343", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "ro-crate", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "ro-crate" + ], + "time_estimation": "30M", + "title": "Workflow Run RO-Crate Introduction", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ro-crate-workflow-run-ro-crate", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/ro-crate-workflow-run-ro-crate/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-workflow-run-ro-crate/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-workflow-run-ro-crate/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 79, + "visitors": 181 + }, + { + "abbreviations": { + "DOI": "Digital Object Identifier", + "FAIR": "Findable, Accessible, Interoperable, Reusable" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-clinical/tutorial.json", + "contributions": { + "authorship": [ + "SNG888" + ], + "editing": [ + "kkamieniecka", + "tb143", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "email": "s.ng@qmul.ac.uk", + "id": "SNG888", + "joined": "2023-07", + "name": "Sandra Ng", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/SNG888/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/SNG888.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "id": "tb143", + "joined": "2023-09", + "name": "Tim Beck", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tb143/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tb143.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-clinical", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/fair-clinical", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "FAIR data are data that meet principles of findability, accessibility, interoperability, and reusability (FAIR)." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Learn how to make clinical datasets FAIR", + "Recognise why FAIR datasets are important" + ], + "pageviews": 235, + "priority": 1, + "pub_date": "2023-10-24", + "questions": [ + "Why make clinical data FAIR?", + "How to make clinical data FAIR?", + "test" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro" + ], + "type": "internal" + } + ], + "short_id": "T00368", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "open", + "data stewardship" + ], + "time_estimation": "1H", + "title": "Making clinical datasets FAIR", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-clinical", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-clinical/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-clinical/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-clinical/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 119, + "visitors": 172, + "zenodo_link": "" + }, + { + "abbreviations": { + "ENA": "European Nucleotide Archive" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-ena/tutorial.json", + "contributions": { + "authorship": [ + "sonalhenson" + ], + "editing": [ + "kkamieniecka", + "smza", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "id": "sonalhenson", + "joined": "2023-09", + "name": "Sonal Henson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sonalhenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sonalhenson.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "id": "smza", + "joined": "2023-09", + "name": "Munazah Andrabi", + "orcid": "0000-0002-7718-5109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/smza/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/smza.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-ena", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/fair-ena", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 13181, + "mermaid": false + }, + "key_points": [ + "Use ENA Webin interactive portal to submit metadata", + "Preparation of metadata and sequence data for the submission", + "Use cURL to submit read fastq files" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "To populate ENA metadata objects through the Webin portal", + "To submit raw reads to ENA using FTP" + ], + "pageviews": 242, + "priority": 1, + "pub_date": "2023-11-01", + "questions": [ + "I am new to sequence submission to a repository.", + "How do I submit sequences and metadata to ENA using the Webin portal and cURL?" + ], + "requirements": [ + { + "title": "Web browser", + "type": "none" + }, + { + "title": "A linux-based machine or linux emulator", + "type": "none" + }, + { + "title": "Read data in fastq format", + "type": "none" + } + ], + "short_id": "T00369", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "FAIR", + "ENA" + ], + "time_estimation": "1H", + "title": "Sequence data submission to ENA", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-ena", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-ena/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-ena/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-ena/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 56, + "visitors": 197, + "zenodo_link": "" + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable; a set of principles for publishing research data and metadata", + "JSON": "JavaScript Object Notation, a generic structured text-based data format", + "JSON-LD": "JSON Linked Data, a way to express Linked Data (RDF) using regular JSON", + "RO-Crate": "Research Object Crate; a way to package research data with structured FAIR metadata" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-intro/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "elixir-europe" + ], + "elixir_node": "uk", + "email": "soiland-reyes@manchester.ac.uk", + "fediverse": "https://scholar.social/@soilandreyes", + "fediverse_flavor": "mastodon", + "id": "stain", + "joined": "2023-04", + "location": { + "country": "UK", + "lat": 53.46724379071192, + "lon": -2.233631283105614 + }, + "name": "Stian Soiland-Reyes", + "orcid": "0000-0001-9842-9718", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stain/", + "twitter": "soilandreyes", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stain.json" + }, + { + "id": "ptsefton", + "joined": "2023-04", + "name": "Peter Sefton", + "orcid": "0000-0002-3545-944X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ptsefton/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ptsefton.json" + } + ], + "copyright": "\u00a9 Copyright 2021-2023 University of Technology Sydney, The University of Manchester UK and RO-Crate contributors", + "dir": "topics/fair/tutorials/ro-crate-intro", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [], + "hands_on": true, + "id": "fair/ro-crate-intro", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "RO-Crate provides a structure to make FAIR data packages", + "schema.org in JSON-LD provides a controlled vocabulary for FAIR metadata", + "Each entity of the crate is described separately", + "Cross-references between entities create a graph", + "The RO-Crate specification recommends which types and keys to use" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "Apache-2.0", + "mod_date": "2024-06-14", + "objectives": [ + "Construct an RO-Crate by hand using JSON", + "Describe each part of the Research Object", + "Learn basic JSON-LD to create FAIR metadata", + "Connect different parts of the Research Object using identifiers" + ], + "pageviews": 430, + "priority": 1, + "pub_date": "2023-05-23", + "questions": [ + "How do I package data in a FAIR way?", + "How can I list the authors of individual files?", + "Can I use multiple licenses in the same data package?", + "How can I visualize JSON-LD metadata?" + ], + "recordings": [ + { + "captioners": [ + "stain" + ], + "date": "2023-04-14", + "length": "17M", + "speakers": [ + "stain" + ], + "youtube_id": "5GYdN5B1tc8" + } + ], + "requirements": [ + { + "title": "Files and folder organization", + "type": "none" + }, + { + "title": "Familiarity with JSON file format and editor/IDE", + "type": "none" + }, + { + "link": "https://gallantries.github.io/video-library/videos/ro-crates/intro/slides/", + "title": "An overview of the RO-Crate concept and its implementations", + "type": "external" + }, + { + "topic_name": "data-science", + "tutorials": [ + "cli-basics" + ], + "type": "internal" + } + ], + "short_id": "T00348", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "ro-crate", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "RO-Crate - Introduction", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ro-crate-intro", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/ro-crate-intro/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-intro/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-intro/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 100, + "visitors": 293 + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-origin/tutorial.json", + "contributions": { + "authorship": [ + "robertmand", + "nsjuty", + "smza", + "nsoranzo", + "saramorsy", + "kellsnow", + "khens", + "proccaserra", + "lcooper", + "sitjart", + "asmasonomics", + "bfranicevic", + "saskia-lawson-tovey", + "kkamieniecka", + "khaled196", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "andrewsr9@cardiff.ac.uk", + "id": "robertmand", + "joined": "2021-10", + "name": "Robert Andrews", + "orcid": "0000-0002-3491-2361", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmand/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmand.json" + }, + { + "id": "nsjuty", + "joined": "2024-04", + "name": "Nick Juty", + "orcid": "0000-0002-2036-8350", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsjuty/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsjuty.json" + }, + { + "id": "smza", + "joined": "2023-09", + "name": "Munazah Andrabi", + "orcid": "0000-0002-7718-5109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/smza/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/smza.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "elixir_node": "uk", + "id": "saramorsy", + "joined": "2021-10", + "name": "Sara Morsy", + "orcid": "0000-0002-2477-1139", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saramorsy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saramorsy.json" + }, + { + "id": "kellsnow", + "joined": "2024-03", + "name": "Kellie Snow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kellsnow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kellsnow.json" + }, + { + "github": false, + "id": "khens", + "joined": "2024-03", + "name": "Korneel Hens", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khens.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "proccaserra", + "joined": "2024-03", + "name": "Philippe Rocca-Serra", + "orcid": "0000-0001-9853-5668", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/proccaserra/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/proccaserra.json" + }, + { + "github": false, + "id": "lcooper", + "joined": "2024-03", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lcooper/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lcooper.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "sitjart", + "joined": "2024-03", + "name": "Xenia Perez Sitja", + "orcid": "0000-0002-7166-0183", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sitjart/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sitjart.json" + }, + { + "elixir_node": "uk", + "id": "asmasonomics", + "joined": "2024-02", + "name": "Andrew Mason", + "orcid": "0000-0002-8222-3974", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/asmasonomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/asmasonomics.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "bfranicevic", + "joined": "2021-10", + "name": "Branka Franicevic", + "orcid": "0000-0002-3440-6581", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bfranicevic/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bfranicevic.json" + }, + { + "id": "saskia-lawson-tovey", + "joined": "2024-03", + "name": "Saskia Lawson-Tovey", + "orcid": "0000-0002-8611-162X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saskia-lawson-tovey/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saskia-lawson-tovey.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-origin", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-metadata" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "fair/fair-origin", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "FAIR stands for Findable, Accessible, Interoperable and Reusable.", + "Metadata, Identifiers, Registration and Access are 4 key components in the process of FAIRification.", + "FAIR data is as open as possible, and as closed as necessary." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Identify the FAIR principles and their origin.", + "Explain the difference between FAIR and open data.", + "Contextualise the main principles of FAIR around the common characteristics of identifiers, access, metadata and registration." + ], + "pageviews": 43, + "priority": 1, + "pub_date": "2024-03-26", + "questions": [ + "What is FAIR and the FAIR Guiding Principles?", + "Where does FAIR come from?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro" + ], + "type": "internal" + } + ], + "short_id": "T00433", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pointers", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "dmp", + "data stewardship" + ], + "time_estimation": "40M", + "title": "FAIR and its Origins", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-origin", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-origin/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-origin/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-origin/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 37, + "zenodo_link": "" + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-metadata/tutorial.json", + "contributions": { + "authorship": [ + "robertmand", + "nsjuty", + "smza", + "nsoranzo", + "saramorsy", + "kellsnow", + "khens", + "proccaserra", + "lcooper", + "sitjart", + "asmasonomics", + "bfranicevic", + "saskia-lawson-tovey", + "kkamieniecka", + "khaled196", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "andrewsr9@cardiff.ac.uk", + "id": "robertmand", + "joined": "2021-10", + "name": "Robert Andrews", + "orcid": "0000-0002-3491-2361", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmand/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmand.json" + }, + { + "id": "nsjuty", + "joined": "2024-04", + "name": "Nick Juty", + "orcid": "0000-0002-2036-8350", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsjuty/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsjuty.json" + }, + { + "id": "smza", + "joined": "2023-09", + "name": "Munazah Andrabi", + "orcid": "0000-0002-7718-5109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/smza/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/smza.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "elixir_node": "uk", + "id": "saramorsy", + "joined": "2021-10", + "name": "Sara Morsy", + "orcid": "0000-0002-2477-1139", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saramorsy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saramorsy.json" + }, + { + "id": "kellsnow", + "joined": "2024-03", + "name": "Kellie Snow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kellsnow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kellsnow.json" + }, + { + "github": false, + "id": "khens", + "joined": "2024-03", + "name": "Korneel Hens", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khens.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "proccaserra", + "joined": "2024-03", + "name": "Philippe Rocca-Serra", + "orcid": "0000-0001-9853-5668", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/proccaserra/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/proccaserra.json" + }, + { + "github": false, + "id": "lcooper", + "joined": "2024-03", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lcooper/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lcooper.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "sitjart", + "joined": "2024-03", + "name": "Xenia Perez Sitja", + "orcid": "0000-0002-7166-0183", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sitjart/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sitjart.json" + }, + { + "elixir_node": "uk", + "id": "asmasonomics", + "joined": "2024-02", + "name": "Andrew Mason", + "orcid": "0000-0002-8222-3974", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/asmasonomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/asmasonomics.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "bfranicevic", + "joined": "2021-10", + "name": "Branka Franicevic", + "orcid": "0000-0002-3440-6581", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bfranicevic/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bfranicevic.json" + }, + { + "id": "saskia-lawson-tovey", + "joined": "2024-03", + "name": "Saskia Lawson-Tovey", + "orcid": "0000-0002-8611-162X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saskia-lawson-tovey/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saskia-lawson-tovey.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-metadata", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-data-registration" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "fair/fair-metadata", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Metadata is data about data.", + "Metadata is used to help you find and interpret data.", + "Domain-relevant community standards help researchers write better, interoperable metadata." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Define the term \u2018metadata\u2019.", + "Recall examples of community/domain standards that apply to data and metadata." + ], + "pageviews": 69, + "priority": 2, + "pub_date": "2024-03-26", + "questions": [ + "What is metadata?", + "What is good metadata?", + "Using community standards to write (meta)data" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "fair-origin" + ], + "type": "internal" + } + ], + "short_id": "T00432", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pointers", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "dmp", + "data stewardship" + ], + "time_estimation": "40M", + "title": "Metadata", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-metadata", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-metadata/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-metadata/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-metadata/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 130, + "visitors": 55, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-in-python/tutorial.json", + "contributions": { + "authorship": [ + "simleo", + "kinow" + ], + "editing": [ + "hexylena", + "elichad" + ], + "funding": [ + "by-covid" + ], + "testing": [ + "elichad" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "elixir-europe" + ], + "elixir_node": "it", + "id": "simleo", + "joined": "2023-04", + "name": "Simone Leo", + "orcid": "0000-0001-8271-5429", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simleo/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simleo.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "es", + "id": "kinow", + "joined": "2023-04", + "name": "Bruno P. Kinoshita", + "orcid": "0000-0001-8250-4074", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kinow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kinow.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "eli.chadwick@manchester.ac.uk", + "id": "elichad", + "joined": "2022-11", + "name": "Eli Chadwick", + "orcid": "0000-0002-0035-6475", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elichad/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/elichad.json" + }, + { + "email": "eli.chadwick@manchester.ac.uk", + "id": "elichad", + "joined": "2022-11", + "name": "Eli Chadwick", + "orcid": "0000-0002-0035-6475", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elichad/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/elichad.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + } + ], + "dir": "topics/fair/tutorials/ro-crate-in-python", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/ro-crate-in-python", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "RO-Crates can be created by hand with essentially arbitrary data, using the rocrate python module", + "However the rocrate command line tool adds several commands to make it easier to automatically generate crates based on existing folder structures." + ], + "layout": "tutorial_hands_on", + "license": "Apache-2.0", + "mod_date": "2024-03-27", + "notebook": { + "language": "python" + }, + "objectives": [ + "Create a custom, annotated RO-Crate", + "Use ORCIDs and other linked data to annotate datasets contained within the crate" + ], + "pageviews": 126, + "priority": 2, + "pub_date": "2023-05-11", + "questions": [ + "What data is contained within an RO-Crate", + "How can I create an RO-Crate myself?" + ], + "short_id": "T00341", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "ro-crate", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "ro-crate" + ], + "time_estimation": "30M", + "title": "RO-Crate in Python", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ro-crate-in-python", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/ro-crate-in-python/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-in-python/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-in-python/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 136, + "visitors": 110 + }, + { + "abbreviations": { + "DMP": "Data Management Plan", + "FAIR": "Findable, Accessible, Interoperable, Reusable", + "PID": "Persistent Identifier" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/data-management/tutorial.json", + "contributions": { + "authorship": [ + "kkamieniecka", + "poterlowicz-lab" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/data-management", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/data-management", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "FAIR data management allows machines to automatically find and use the data accordingly." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Learn best practices in data management", + "Learn how to introduce computational reproducibility in your research" + ], + "pageviews": 275, + "priority": 2, + "pub_date": "2023-05-30", + "questions": [ + "Is there a reproducibility crisis?", + "What can go wrong with data analysis?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro" + ], + "type": "internal" + } + ], + "short_id": "T00349", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "dmp", + "data stewardship" + ], + "time_estimation": "10M", + "title": "FAIR data management solutions", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "data-management", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/data-management/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/data-management/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/data-management/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 178, + "visitors": 213, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-in-galaxy/tutorial.json", + "contributions": { + "authorship": [ + "pauldg" + ], + "editing": [ + "Marie59" + ], + "funding": [ + "by-covid", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "vib", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "be", + "id": "pauldg", + "joined": "2023-04", + "matrix": "padge:matrix.org", + "name": "Paul De Geest", + "orcid": "0000-0002-8940-4946", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pauldg/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pauldg.json" + }, + { + "affiliations": [ + "pndb", + "fairease" + ], + "email": "marie.josse@ifremer.fr", + "id": "Marie59", + "joined": "2022-03", + "name": "Marie Josse", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Marie59/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Marie59.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/fair/tutorials/ro-crate-in-galaxy", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/ro-crate-in-galaxy", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy Workflow Run Crates help you keep provenance of a workflow run / invocation.", + "Galaxy Workflow Run Crates give extra context to the standard workflow run export", + "Galaxy Workflow Run Crates can be exported from the top menu, **User -> Workflow Invocations**." + ], + "layout": "tutorial_hands_on", + "license": "Apache-2.0", + "mod_date": "2024-08-14", + "objectives": [ + "Understanding, viewing and creating Galaxy Workflow Run Crates" + ], + "pageviews": 153, + "priority": 2, + "pub_date": "2023-05-11", + "questions": [ + "What is a Workflow Run Crate?", + "How can I export a Galaxy Workflow Run Crate?" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "workflow-editor", + "history-to-workflow" + ], + "type": "internal" + } + ], + "short_id": "T00340", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "ro-crate", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "ro-crate", + "workflows" + ], + "time_estimation": "30m", + "title": "Exporting Workflow Run RO-Crates from Galaxy", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ro-crate-in-galaxy", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/ro-crate-in-galaxy/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-in-galaxy/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-in-galaxy/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 94, + "visitors": 125 + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-data-registration/tutorial.json", + "contributions": { + "authorship": [ + "robertmand", + "nsjuty", + "smza", + "nsoranzo", + "saramorsy", + "kellsnow", + "khens", + "proccaserra", + "lcooper", + "sitjart", + "asmasonomics", + "bfranicevic", + "saskia-lawson-tovey", + "kkamieniecka", + "khaled196", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "andrewsr9@cardiff.ac.uk", + "id": "robertmand", + "joined": "2021-10", + "name": "Robert Andrews", + "orcid": "0000-0002-3491-2361", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmand/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmand.json" + }, + { + "id": "nsjuty", + "joined": "2024-04", + "name": "Nick Juty", + "orcid": "0000-0002-2036-8350", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsjuty/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsjuty.json" + }, + { + "id": "smza", + "joined": "2023-09", + "name": "Munazah Andrabi", + "orcid": "0000-0002-7718-5109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/smza/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/smza.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "elixir_node": "uk", + "id": "saramorsy", + "joined": "2021-10", + "name": "Sara Morsy", + "orcid": "0000-0002-2477-1139", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saramorsy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saramorsy.json" + }, + { + "id": "kellsnow", + "joined": "2024-03", + "name": "Kellie Snow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kellsnow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kellsnow.json" + }, + { + "github": false, + "id": "khens", + "joined": "2024-03", + "name": "Korneel Hens", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khens.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "proccaserra", + "joined": "2024-03", + "name": "Philippe Rocca-Serra", + "orcid": "0000-0001-9853-5668", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/proccaserra/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/proccaserra.json" + }, + { + "github": false, + "id": "lcooper", + "joined": "2024-03", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lcooper/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lcooper.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "sitjart", + "joined": "2024-03", + "name": "Xenia Perez Sitja", + "orcid": "0000-0002-7166-0183", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sitjart/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sitjart.json" + }, + { + "elixir_node": "uk", + "id": "asmasonomics", + "joined": "2024-02", + "name": "Andrew Mason", + "orcid": "0000-0002-8222-3974", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/asmasonomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/asmasonomics.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "bfranicevic", + "joined": "2021-10", + "name": "Branka Franicevic", + "orcid": "0000-0002-3440-6581", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bfranicevic/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bfranicevic.json" + }, + { + "id": "saskia-lawson-tovey", + "joined": "2024-03", + "name": "Saskia Lawson-Tovey", + "orcid": "0000-0002-8611-162X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saskia-lawson-tovey/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saskia-lawson-tovey.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-data-registration", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-access" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "fair/fair-data-registration", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A good way to FAIRify your (meta)data is through submission to a public repository if it indexes and exposes the appropriate level of metadata to serve your specific use case or serve your envisaged users.", + "Use Repositories that support controlled access to data if necessary.", + "FAIRsharing is a useful resource to locate relevant public repositories." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Describe why indexed data repositories are important.", + "Summarise resources enabling you to choose a searchable repository." + ], + "pageviews": 18, + "priority": 3, + "pub_date": "2024-03-26", + "questions": [ + "What is data registration?", + "Why should you upload your data to a data repository?", + "What types of data repositories are there?", + "How to choose the right repository for your dataset?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "fair-origin", + "fair-metadata" + ], + "type": "internal" + } + ], + "short_id": "T00431", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pointers", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "dmp", + "data stewardship" + ], + "time_estimation": "40M", + "title": "Data Registration", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-data-registration", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-data-registration/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-data-registration/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-data-registration/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 15, + "zenodo_link": "" + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable", + "GTN": "Galaxy Training Network" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-gtn/tutorial.json", + "contributions": { + "authorship": [ + "kkamieniecka", + "poterlowicz-lab" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-gtn", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/fair-gtn", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "FAIR principles in Galaxy training development and content creation." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Learn about metadata and findability", + "Learn how to support system and content curation" + ], + "pageviews": 118, + "priority": 3, + "pub_date": "2023-05-30", + "questions": [ + "What are the FAIR training materials?", + "How to test, reproduce and share your content?", + "How to collaborate and don\u2019t duplicate?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro" + ], + "type": "internal" + } + ], + "short_id": "T00350", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "gtn", + "training" + ], + "time_estimation": "30M", + "title": "FAIR Galaxy Training Material", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-gtn", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-gtn/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-gtn/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-gtn/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 175, + "visitors": 101, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-galaxy-best-practices/tutorial.json", + "contributions": { + "authorship": [ + "simleo" + ], + "funding": [ + "by-covid" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "elixir-europe" + ], + "elixir_node": "it", + "id": "simleo", + "joined": "2023-04", + "name": "Simone Leo", + "orcid": "0000-0001-8271-5429", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simleo/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simleo.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + } + ], + "dir": "topics/fair/tutorials/ro-crate-galaxy-best-practices", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/ro-crate-galaxy-best-practices", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "repo2rocrate lets you easily generate templated out metadata for your workflow", + "Generating tests is easy and something everyone should do." + ], + "layout": "tutorial_hands_on", + "license": "Apache-2.0", + "mod_date": "2023-06-02", + "notebook": { + "language": "bash" + }, + "objectives": [ + "Generate a workflow test using Planemo", + "Understand how testing can be automated with GitHub Actions" + ], + "pageviews": 199, + "priority": 3, + "pub_date": "2023-05-11", + "questions": [ + "What are Workflow Best Practices", + "How does RO-Crate help?" + ], + "short_id": "T00339", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "ro-crate", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "ro-crate" + ], + "time_estimation": "30M", + "title": "Best practices for workflows in GitHub repositories", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ro-crate-galaxy-best-practices", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/ro-crate-galaxy-best-practices/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-galaxy-best-practices/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-galaxy-best-practices/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 65, + "visitors": 179 + }, + { + "abbreviations": { + "LM": "Life Monitor" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-submitting-life-monitor/tutorial.json", + "contributions": { + "authorship": [ + "ilveroluca", + "simleo", + "kikkomep" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "by-covid" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid" + ], + "id": "ilveroluca", + "joined": "2023-04", + "name": "Luca Pireddu", + "orcid": "0000-0002-4663-5613", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ilveroluca/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ilveroluca.json" + }, + { + "affiliations": [ + "by-covid", + "elixir-europe" + ], + "elixir_node": "it", + "id": "simleo", + "joined": "2023-04", + "name": "Simone Leo", + "orcid": "0000-0001-8271-5429", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simleo/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simleo.json" + }, + { + "affiliations": [ + "by-covid", + "elixir-europe" + ], + "elixir_node": "it", + "id": "kikkomep", + "joined": "2023-04", + "name": "Marco Enrico Piras", + "orcid": "0000-0002-5207-0030", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kikkomep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kikkomep.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + } + ], + "dir": "topics/fair/tutorials/ro-crate-submitting-life-monitor", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/ro-crate-submitting-life-monitor", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Automation helps us keep workflows re-usable and reproducible.", + "LifeMonitor helps you monitor and periodically test your workflow.", + "New workflow releases will automatically be propagated to WorkflowHub, saving you time." + ], + "layout": "tutorial_hands_on", + "license": "Apache-2.0", + "mod_date": "2023-06-02", + "objectives": [ + "Setup Life Monitor" + ], + "pageviews": 32, + "priority": 4, + "pub_date": "2023-05-11", + "questions": [ + "What is LifeMonitor?", + "How is it useful to me?", + "How can I automate things?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "ro-crate-galaxy-best-practices" + ], + "type": "internal" + } + ], + "short_id": "T00342", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "ro-crate", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "ro-crate" + ], + "time_estimation": "30M", + "title": "Submitting workflows to LifeMonitor", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ro-crate-submitting-life-monitor", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/ro-crate-submitting-life-monitor/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-submitting-life-monitor/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/ro-crate-submitting-life-monitor/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 657, + "visitors": 27 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/bioimage-metadata/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "Laura190", + "kkamieniecka", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "email": "L.Cooper.5@warwick.ac.uk", + "id": "Laura190", + "joined": "2023-08", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Laura190/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Laura190.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/bioimage-metadata", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "fair", + "tutorials": [ + "bioimage-REMBI" + ], + "type": "internal" + }, + { + "topic_name": "imaging", + "type": "internal" + } + ], + "hands_on": true, + "id": "fair/bioimage-metadata", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Data repositories such as BioImage Archive, Electron Microscopy Public Image Archive (EMPIAR) and Image Data Repository (IDR) are available to help make bioimaging data FAIR.", + "Find out what are the repository's requirements to help decide which is suitable for your data.", + "All repositories require some metadata, so collecting the metadata alongside data acquisition will make this process easier." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Locate bioimage data repositories", + "Compare repositories to find which are suitable for your data", + "Find out what the requirements are for submitting" + ], + "pageviews": 150, + "priority": 4, + "pub_date": "2023-09-13", + "questions": [ + "What are the commonly used repositories for bioimaging data?", + "Which repositories are suitable for my data?", + "What are the requirements for submitting?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "data-management" + ], + "type": "internal" + } + ], + "short_id": "T00362", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "data management", + "bioimaging" + ], + "time_estimation": "15m", + "title": "FAIR Bioimage Metadata", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bioimage-metadata", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/bioimage-metadata/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/bioimage-metadata/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/bioimage-metadata/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 176, + "visitors": 118, + "zenodo_link": "" + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-access/tutorial.json", + "contributions": { + "authorship": [ + "robertmand", + "nsjuty", + "smza", + "nsoranzo", + "saramorsy", + "kellsnow", + "khens", + "proccaserra", + "lcooper", + "sitjart", + "asmasonomics", + "bfranicevic", + "saskia-lawson-tovey", + "kkamieniecka", + "khaled196", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "andrewsr9@cardiff.ac.uk", + "id": "robertmand", + "joined": "2021-10", + "name": "Robert Andrews", + "orcid": "0000-0002-3491-2361", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmand/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmand.json" + }, + { + "id": "nsjuty", + "joined": "2024-04", + "name": "Nick Juty", + "orcid": "0000-0002-2036-8350", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsjuty/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsjuty.json" + }, + { + "id": "smza", + "joined": "2023-09", + "name": "Munazah Andrabi", + "orcid": "0000-0002-7718-5109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/smza/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/smza.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "elixir_node": "uk", + "id": "saramorsy", + "joined": "2021-10", + "name": "Sara Morsy", + "orcid": "0000-0002-2477-1139", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saramorsy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saramorsy.json" + }, + { + "id": "kellsnow", + "joined": "2024-03", + "name": "Kellie Snow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kellsnow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kellsnow.json" + }, + { + "github": false, + "id": "khens", + "joined": "2024-03", + "name": "Korneel Hens", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khens.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "proccaserra", + "joined": "2024-03", + "name": "Philippe Rocca-Serra", + "orcid": "0000-0001-9853-5668", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/proccaserra/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/proccaserra.json" + }, + { + "github": false, + "id": "lcooper", + "joined": "2024-03", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lcooper/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lcooper.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "sitjart", + "joined": "2024-03", + "name": "Xenia Perez Sitja", + "orcid": "0000-0002-7166-0183", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sitjart/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sitjart.json" + }, + { + "elixir_node": "uk", + "id": "asmasonomics", + "joined": "2024-02", + "name": "Andrew Mason", + "orcid": "0000-0002-8222-3974", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/asmasonomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/asmasonomics.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "bfranicevic", + "joined": "2021-10", + "name": "Branka Franicevic", + "orcid": "0000-0002-3440-6581", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bfranicevic/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bfranicevic.json" + }, + { + "id": "saskia-lawson-tovey", + "joined": "2024-03", + "name": "Saskia Lawson-Tovey", + "orcid": "0000-0002-8611-162X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saskia-lawson-tovey/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saskia-lawson-tovey.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-access", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-persistent-identifiers" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "fair/fair-access", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Data access is supported by standardised communication protocols allowing for authentication where appropriate.", + "Metadata must be available even if data are deleted.", + "Data usage licences are applied to (meta)data detailing terms of use.", + "Sensitive data can be subject to restricted access and/or de-identification." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "To illustrate data access in terms of the FAIR Principles using companion terms including communications protocol and authentication.", + "To interpret the data usage licence associated with different data sets." + ], + "pageviews": 22, + "priority": 4, + "pub_date": "2024-03-26", + "questions": [ + "What is data access in the context of FAIR", + "What are the different types of data access?", + "What is a data usage licence?", + "How can you share sensitive data?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "fair-origin", + "fair-metadata", + "fair-data-registration" + ], + "type": "internal" + } + ], + "short_id": "T00430", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pointers", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "dmp", + "data stewardship" + ], + "time_estimation": "50M", + "title": "Access", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-access", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-access/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-access/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-access/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 414, + "visitors": 17, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/bioimage-REMBI/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "Laura190", + "kkamieniecka", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "email": "L.Cooper.5@warwick.ac.uk", + "id": "Laura190", + "joined": "2023-08", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Laura190/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Laura190.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/bioimage-REMBI", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "imaging", + "type": "internal" + } + ], + "hands_on": true, + "id": "fair/bioimage-REMBI", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "REMBI describes useful guidelines for bioimaging that can help unification and FARIfication of the data." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-05-07", + "objectives": [ + "Organise bioimage metadata", + "Find out what REMBI is and why it is useful", + "Categorise what metadata belongs to each of the submodules of REMBI", + "Gather the metadata for an example bioimage dataset" + ], + "pageviews": 144, + "priority": 5, + "pub_date": "2023-09-13", + "questions": [ + "What is REMBI and why should I use it?", + "What information should be included when collecting bioimage data?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "data-management", + "bioimage-metadata" + ], + "type": "internal" + } + ], + "short_id": "T00361", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "data management", + "bioimaging" + ], + "time_estimation": "15m", + "title": "REMBI - Recommended Metadata for Biological Images \u2013 metadata guidelines for bioimaging data", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bioimage-REMBI", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/bioimage-REMBI/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/bioimage-REMBI/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/bioimage-REMBI/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 206, + "visitors": 126, + "zenodo_link": "" + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-persistent-identifiers/tutorial.json", + "contributions": { + "authorship": [ + "robertmand", + "nsjuty", + "smza", + "nsoranzo", + "saramorsy", + "kellsnow", + "khens", + "proccaserra", + "lcooper", + "sitjart", + "asmasonomics", + "bfranicevic", + "saskia-lawson-tovey", + "kkamieniecka", + "khaled196", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "andrewsr9@cardiff.ac.uk", + "id": "robertmand", + "joined": "2021-10", + "name": "Robert Andrews", + "orcid": "0000-0002-3491-2361", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmand/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmand.json" + }, + { + "id": "nsjuty", + "joined": "2024-04", + "name": "Nick Juty", + "orcid": "0000-0002-2036-8350", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsjuty/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsjuty.json" + }, + { + "id": "smza", + "joined": "2023-09", + "name": "Munazah Andrabi", + "orcid": "0000-0002-7718-5109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/smza/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/smza.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "elixir_node": "uk", + "id": "saramorsy", + "joined": "2021-10", + "name": "Sara Morsy", + "orcid": "0000-0002-2477-1139", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saramorsy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saramorsy.json" + }, + { + "id": "kellsnow", + "joined": "2024-03", + "name": "Kellie Snow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kellsnow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kellsnow.json" + }, + { + "github": false, + "id": "khens", + "joined": "2024-03", + "name": "Korneel Hens", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khens.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "proccaserra", + "joined": "2024-03", + "name": "Philippe Rocca-Serra", + "orcid": "0000-0001-9853-5668", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/proccaserra/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/proccaserra.json" + }, + { + "github": false, + "id": "lcooper", + "joined": "2024-03", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lcooper/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lcooper.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "sitjart", + "joined": "2024-03", + "name": "Xenia Perez Sitja", + "orcid": "0000-0002-7166-0183", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sitjart/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sitjart.json" + }, + { + "elixir_node": "uk", + "id": "asmasonomics", + "joined": "2024-02", + "name": "Andrew Mason", + "orcid": "0000-0002-8222-3974", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/asmasonomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/asmasonomics.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "bfranicevic", + "joined": "2021-10", + "name": "Branka Franicevic", + "orcid": "0000-0002-3440-6581", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bfranicevic/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bfranicevic.json" + }, + { + "id": "saskia-lawson-tovey", + "joined": "2024-03", + "name": "Saskia Lawson-Tovey", + "orcid": "0000-0002-8611-162X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saskia-lawson-tovey/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saskia-lawson-tovey.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-persistent-identifiers", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/fair-persistent-identifiers", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "PIDs are eternal and unique.", + "PIDs are commonly URLs in the Life Sciences." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "Explain the definition and importance of using identifiers.", + "Illustrate what are the persistent identifiers.", + "Give examples of the structure of persistent identifiers." + ], + "pageviews": 47, + "priority": 5, + "pub_date": "2024-03-26", + "questions": [ + "What is a persistent identifier?", + "What is the structure of identifiers?", + "Why does your dataset need to have an identifier?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "fair-origin", + "fair-metadata", + "fair-data-registration", + "fair-access" + ], + "type": "internal" + } + ], + "short_id": "T00434", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pointers", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "dmp", + "data stewardship" + ], + "time_estimation": "30M", + "title": "Persistent Identifiers", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-persistent-identifiers", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-persistent-identifiers/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-persistent-identifiers/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-persistent-identifiers/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 36, + "visitors": 40, + "zenodo_link": "" + }, + { + "abbreviations": { + "FAIR": "Findable, Accessible, Interoperable, Reusable" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-rna/tutorial.json", + "contributions": { + "authorship": [ + "robertmand", + "asmasonomics", + "saramorsy", + "proccaserra", + "sitjart", + "bfranicevic", + "kkamieniecka", + "khaled196", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "andrewsr9@cardiff.ac.uk", + "id": "robertmand", + "joined": "2021-10", + "name": "Robert Andrews", + "orcid": "0000-0002-3491-2361", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmand/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmand.json" + }, + { + "elixir_node": "uk", + "id": "asmasonomics", + "joined": "2024-02", + "name": "Andrew Mason", + "orcid": "0000-0002-8222-3974", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/asmasonomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/asmasonomics.json" + }, + { + "elixir_node": "uk", + "id": "saramorsy", + "joined": "2021-10", + "name": "Sara Morsy", + "orcid": "0000-0002-2477-1139", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/saramorsy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/saramorsy.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "proccaserra", + "joined": "2024-03", + "name": "Philippe Rocca-Serra", + "orcid": "0000-0001-9853-5668", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/proccaserra/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/proccaserra.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "sitjart", + "joined": "2024-03", + "name": "Xenia Perez Sitja", + "orcid": "0000-0002-7166-0183", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sitjart/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sitjart.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "bfranicevic", + "joined": "2021-10", + "name": "Branka Franicevic", + "orcid": "0000-0002-3440-6581", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bfranicevic/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bfranicevic.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/fair/tutorials/fair-rna", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "fair/fair-rna", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "FAIR principles in Galaxy training development and content creation." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-27", + "objectives": [ + "To be able to map each of the FAIR principles to a dataset in the public domain" + ], + "pageviews": 97, + "priority": 6, + "pub_date": "2024-03-27", + "questions": [ + "How can an RNAseq dataset be made FAIR?", + "How are the FAIR principles put into practice with a data-type used commonly in the Life Sciences?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-origin", + "fair-metadata", + "fair-data-registration", + "fair-access", + "fair-persistent-identifiers" + ], + "type": "internal" + } + ], + "short_id": "T00435", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "fair", + "dmp", + "data stewardship" + ], + "time_estimation": "1H", + "title": "FAIRification of an RNAseq dataset", + "tools": [], + "topic_name": "fair", + "topic_name_human": "FAIR Data, Workflows, and Research", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fair-rna", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/fair/tutorials/fair-rna/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-rna/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/fair/tutorials/fair-rna/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 74, + "visitors": 74, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "e522022137f6", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "compose_text_param", + "owner": "iuc", + "revisions": "e188c9826e0f", + "tool_panel_section_label": "Expression Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pangolin", + "owner": "iuc", + "revisions": "b6abccb1f25b", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bcftools_consensus\n owner: iuc\n revisions: e522022137f6\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: compose_text_param\n owner: iuc\n revisions: e188c9826e0f\n tool_panel_section_label: Expression Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pangolin\n owner: iuc\n revisions: b6abccb1f25b\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-automation/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/workflow-automation", + "edam_operation": [ + "Variant classification", + "Tree-based sequence alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/workflow-automation", + "inexact_supported_servers": [ + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Workflows can be executed not only through the web browser, but also via the command line.", + "Executing workflows programmatically allows automation of analyses." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn to use the `planemo run` subcommand to run workflows from the command line.", + "Be able to write simple shell scripts for running multiple workflows concurrently or sequentially.", + "Learn how to use Pangolin to assign annotated variants to lineages." + ], + "pageviews": 2720, + "pub_date": "2021-06-08", + "questions": [ + "How can I schedule and run tens or hundreds of Galaxy workflows easily?", + "How can I automate my analyses when large amounts of data are being produced daily?" + ], + "recordings": [ + { + "captioners": [ + "simonbray" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "simonbray" + ], + "youtube_id": "o39QjVnLG68" + } + ], + "requirements": [ + { + "title": "Familiarity with Galaxy and basic associated concepts, in particular workflows", + "type": "none" + }, + { + "title": "Basic knowledge of the command line", + "type": "none" + } + ], + "short_id": "T00162", + "short_tools": [ + "bcftools_consensus", + "compose_text_param", + "pangolin", + "snpSift_filter", + "collapse_dataset" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "workflows", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "workflows", + "variant-analysis", + "covid19" + ], + "time_estimation": "2h", + "title": "Automating Galaxy workflows using the command line", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.10", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/2.3.8", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "workflow-automation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/workflow-automation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-automation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-automation/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 118, + "visitors": 2200, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-9464-6640", + "name": "Wolfgang Maier" + } + ], + "description": "workflow-automation", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nVariant calls\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nmin-AF for consensus variant\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome\"]\n 3[label=\"Compose text parameter value\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"SnpSift Filter\"]\n 3 -> 4 [label=\"out1\"]\n 0 -> 4 [label=\"output\"]\n kee67c5edff7c404bad2019259edbc671[color=lightseagreen,label=\"Output\\nconsensus_variants\"]\n 4 -> kee67c5edff7c404bad2019259edbc671\n 5[label=\"bcftools consensus\"]\n 4 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n k9028f80e411240d89a49f671677d304f[color=lightseagreen,label=\"Output\\nconsensus\"]\n 5 -> k9028f80e411240d89a49f671677d304f\n 6[label=\"Collapse Collection\"]\n 5 -> 6 [label=\"output_file\"]\n k1dd7978eb90742d68fc4f6fadeefcad1[color=lightseagreen,label=\"Output\\nmultisample_consensus_fasta\"]\n 6 -> k1dd7978eb90742d68fc4f6fadeefcad1\n 7[label=\"Pangolin\"]\n 6 -> 7 [label=\"output\"]\n ke02d2cfb98424069957c6cf4ec197056[color=lightseagreen,label=\"Output\\npangolin_results\"]\n 7 -> ke02d2cfb98424069957c6cf4ec197056\n}", + "history": [ + { + "hash": "486585510e665c834a43668e2a769dd69654b9d6", + "message": "add WF automation tutorial", + "num": 1, + "short_hash": "486585510", + "unix": "1622197006" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Variant calls" + } + ], + "label": "Variant calls", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 425.43333435058594, + "height": 61.80000305175781, + "left": 297, + "right": 497, + "top": 363.6333312988281, + "width": 200, + "x": 297, + "y": 363.6333312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "fca4e710-87a7-4cb6-9ff1-f9a8dc84ca37", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "min-AF for consensus variant" + } + ], + "label": "min-AF for consensus variant", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 619.1000061035156, + "height": 102.60000610351562, + "left": 295.45001220703125, + "right": 495.45001220703125, + "top": 516.5, + "width": 200, + "x": 295.45001220703125, + "y": 516.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 0.7, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "52664bd7-b500-40a1-935b-8ac6df7003e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5db03aa3-a62d-4a39-8712-d48911abf2bb" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genome" + } + ], + "label": "Reference genome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 734.8500366210938, + "height": 82.20001220703125, + "left": 749.816650390625, + "right": 949.816650390625, + "top": 652.6500244140625, + "width": 200, + "x": 749.816650390625, + "y": 652.6500244140625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4a2c6df2-fb1e-42d8-96d5-6765ca85c214", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nVariant calls\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nmin-AF for consensus variant\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nReference genome\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Compose text parameter value\"];\n 1 -->|output| 3;\n 4[\"SnpSift Filter\"];\n 3 -->|out1| 4;\n 0 -->|output| 4;\n ee67c5ed-ff7c-404b-ad20-19259edbc671[\"Output\\nconsensus_variants\"];\n 4 --> ee67c5ed-ff7c-404b-ad20-19259edbc671;\n style ee67c5ed-ff7c-404b-ad20-19259edbc671 stroke:#2c3143,stroke-width:4px;\n 5[\"bcftools consensus\"];\n 4 -->|output| 5;\n 2 -->|output| 5;\n 9028f80e-4112-40d8-9a49-f671677d304f[\"Output\\nconsensus\"];\n 5 --> 9028f80e-4112-40d8-9a49-f671677d304f;\n style 9028f80e-4112-40d8-9a49-f671677d304f stroke:#2c3143,stroke-width:4px;\n 6[\"Collapse Collection\"];\n 5 -->|output_file| 6;\n 1dd7978e-b907-42d6-8fc4-f6fadeefcad1[\"Output\\nmultisample_consensus_fasta\"];\n 6 --> 1dd7978e-b907-42d6-8fc4-f6fadeefcad1;\n style 1dd7978e-b907-42d6-8fc4-f6fadeefcad1 stroke:#2c3143,stroke-width:4px;\n 7[\"Pangolin\"];\n 6 -->|output| 7;\n e02d2cfb-9842-4069-957c-6cf4ec197056[\"Output\\npangolin_results\"];\n 7 --> e02d2cfb-9842-4069-957c-6cf4ec197056;\n style e02d2cfb-9842-4069-957c-6cf4ec197056 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "vcf2lineage", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "min-AF for consensus variant" + } + ], + "label": "min-AF for consensus variant", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 619.1000061035156, + "height": 102.60000610351562, + "left": 295.45001220703125, + "right": 495.45001220703125, + "top": 516.5, + "width": 200, + "x": 295.45001220703125, + "y": 516.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 0.7, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "52664bd7-b500-40a1-935b-8ac6df7003e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5db03aa3-a62d-4a39-8712-d48911abf2bb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "filter_expression|expr": { + "id": 3, + "output_name": "out1" + }, + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Filter", + "outputs": [ + { + "name": "output", + "type": "vcf" + } + ], + "position": { + "bottom": 506.5, + "height": 144, + "left": 750.2833251953125, + "right": 950.2833251953125, + "top": 362.5, + "width": 200, + "x": 750.2833251953125, + "y": 362.5 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Consensus variants" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "tool_shed_repository": { + "changeset_revision": "2e497a770bca", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_expression\": {\"type\": \"simple\", \"__current_case__\": 0, \"expr\": {\"__class__\": \"ConnectedValue\"}}, \"filtering\": {\"mode\": \"entries\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"inverse\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy1", + "type": "tool", + "uuid": "3673b687-1ba0-42f2-ba13-fa3130462079", + "workflow_outputs": [ + { + "label": "consensus_variants", + "output_name": "output", + "uuid": "ee67c5ed-ff7c-404b-ad20-19259edbc671" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.10", + "errors": null, + "id": 5, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "output" + }, + "reference_source|fasta_ref": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools consensus", + "name": "input_file" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "reference_source" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "sec_default" + } + ], + "label": null, + "name": "bcftools consensus", + "outputs": [ + { + "name": "output_file", + "type": "fasta" + } + ], + "position": { + "bottom": 535.5666809082031, + "height": 174.39999389648438, + "left": 993.8333129882812, + "right": 1193.8333129882812, + "top": 361.16668701171875, + "width": 200, + "x": 993.8333129882812, + "y": 361.16668701171875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "Consensus sequences" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.10", + "tool_shed_repository": { + "changeset_revision": "e522022137f6", + "name": "bcftools_consensus", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chain\": \"false\", \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"RuntimeValue\"}}, \"rename\": \"true\", \"sec_default\": {\"mask\": {\"__class__\": \"RuntimeValue\"}, \"iupac_codes\": \"false\", \"sample\": \"\", \"select_haplotype\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.10", + "type": "tool", + "uuid": "5d2e8bea-3e75-4453-9494-b5fd52b2f528", + "workflow_outputs": [ + { + "label": "consensus", + "output_name": "output_file", + "uuid": "9028f80e-4112-40d8-9a49-f671677d304f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "errors": null, + "id": 6, + "input_connections": { + "input_list": { + "id": 5, + "output_name": "output_file" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 537.8000030517578, + "height": 174.8000030517578, + "left": 1223.5, + "right": 1423.5, + "top": 363, + "width": 200, + "x": 1223.5, + "y": 363 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Multisample consensus FASTA" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "tool_shed_repository": { + "changeset_revision": "830961c48e42", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": \"false\", \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2", + "type": "tool", + "uuid": "acae0f3e-448b-483e-a44a-3e09ce9b3e77", + "workflow_outputs": [ + { + "label": "multisample_consensus_fasta", + "output_name": "output", + "uuid": "1dd7978e-b907-42d6-8fc4-f6fadeefcad1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/2.3.8", + "errors": null, + "id": 7, + "input_connections": { + "input1": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Pangolin", + "name": "input1" + } + ], + "label": null, + "name": "Pangolin", + "outputs": [ + { + "name": "output1", + "type": "tabular" + } + ], + "position": { + "bottom": 512.1999969482422, + "height": 93.19999694824219, + "left": 1451, + "right": 1651, + "top": 419, + "width": 200, + "x": 1451, + "y": 419 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "Pangolin lineage assignments" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/2.3.8", + "tool_shed_repository": { + "changeset_revision": "b6abccb1f25b", + "name": "pangolin", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment\": \"false\", \"db\": {\"source\": \"builtin\", \"__current_case__\": 1, \"db_release\": \"2021-05-11\"}, \"input1\": {\"__class__\": \"RuntimeValue\"}, \"max_ambig\": \"0.5\", \"min_length\": \"10000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.3.8", + "type": "tool", + "uuid": "bf8893e0-d08c-46c9-b384-a8ad0fc88185", + "workflow_outputs": [ + { + "label": "pangolin_results", + "output_name": "output1", + "uuid": "e02d2cfb-9842-4069-957c-6cf4ec197056" + } + ] + } + ], + "parent_id": "galaxy-interface/workflow-automation", + "path": "topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.ga", + "tags": [ + "variant-analysis", + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "vcf2lineage", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-automation/versions/main-workflow", + "tutorial_id": "workflow-automation", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-automation/workflows/main_workflow.html", + "version": 1, + "wfid": "galaxy-interface-workflow-automation", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.10", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/2.3.8", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "workflowhub_id": "1293" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "intermine_galaxy_exchange", + "owner": "iuc", + "revisions": "c24014d80001", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: intermine_galaxy_exchange\n owner: iuc\n revisions: c24014d80001\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/intermine/tutorial.json", + "contributions": { + "authorship": [ + "danielabutano", + "yochannah" + ] + }, + "contributors": [ + { + "id": "danielabutano", + "joined": "2019-09", + "name": "Daniela Butano", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/danielabutano/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/danielabutano.json" + }, + { + "id": "yochannah", + "joined": "2019-09", + "name": "Yo Yehudi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yochannah/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yochannah.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/intermine", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/intermine", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Learn how to import/export data from/to InterMine instances", + "Understand the InterMine Interchange Dataset" + ], + "pageviews": 185, + "pub_date": "2020-12-09", + "questions": [ + "How to export your query results from your InterMine of choice to Galaxy?", + "How to export a list of identifiers from Galaxy to your InterMine of choice?" + ], + "short_id": "T00152", + "short_tools": [ + "intermine", + "galaxy_intermine_exchange" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "analyse", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "gmod", + "intermine" + ], + "time_estimation": "1h", + "title": "InterMine integration with Galaxy", + "tools": [ + "intermine", + "toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange/0.0.1" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "intermine", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/intermine/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/intermine/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/intermine/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 149, + "visitors": 134, + "workflows": [ + { + "creators": [], + "description": "Intermine import/export", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"Create InterMine Interchange\"]\n 0 -> 1 [label=\"output\"]\n}", + "history": [ + { + "hash": "6a3063bce6a3990aefa6facf94d34a08bf4eea6f", + "message": "more small edits", + "num": 2, + "short_hash": "6a3063bce", + "unix": "1607081036" + }, + { + "hash": "de251b5d774f97b4dcb70121c68ea01eba22536d", + "message": "move folder", + "num": 1, + "short_hash": "de251b5d7", + "unix": "1607080170" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 257, + "top": 403.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "13261ad4-770b-4728-9068-d9941d07abf7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3df15ab7-6fb7-4a90-81e9-f25868067b8e" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Create InterMine Interchange\"];\n 0 -->|output| 1;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Intermine import/export", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 257, + "top": 403.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "13261ad4-770b-4728-9068-d9941d07abf7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3df15ab7-6fb7-4a90-81e9-f25868067b8e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange/0.0.1", + "errors": null, + "id": 1, + "input_connections": { + "input_tabular": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create InterMine Interchange", + "name": "input_tabular" + } + ], + "label": null, + "name": "Create InterMine Interchange", + "outputs": [ + { + "name": "intermine_output", + "type": "intermine_tabular" + } + ], + "position": { + "left": 509, + "top": 402.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange/0.0.1", + "tool_shed_repository": { + "changeset_revision": "c24014d80001", + "name": "intermine_galaxy_exchange", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"feature_id_column\": \"\\\"2\\\"\", \"feature_id_text\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"feature_column\": \"\\\"1\\\"\", \"input_tabular\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"feature_text\": \"\\\"Gene\\\"\", \"organism_text\": \"\\\"\\\"\", \"organism_column\": \"\\\"3\\\"\"}", + "tool_version": "0.0.1", + "type": "tool", + "uuid": "8e5e0134-7b2a-43c4-b1d4-4d4b62b6af3c", + "workflow_outputs": [ + { + "label": null, + "output_name": "intermine_output", + "uuid": "bfa0f275-4aee-4d3f-8b7c-4e32e8cc9710" + } + ] + } + ], + "parent_id": "galaxy-interface/intermine", + "path": "topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "Intermine import/export", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-intermine/versions/main-workflow", + "tutorial_id": "intermine", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.html", + "version": 1, + "wfid": "galaxy-interface-intermine", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange/0.0.1" + ], + "workflowhub_id": "1290" + } + ], + "zenodo_link": "https://zenodo.org/record/3407174" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-editor/tutorial.json", + "contributors": [ + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/workflow-editor", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/workflow-editor", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Creating powerful workflows is easy in the Workflow Editor" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Understand key aspects of workflows", + "Create clean, non-repetitive workflows" + ], + "pageviews": 5647, + "pub_date": "2020-07-17", + "questions": [ + "How can you construct Galaxy workflows from scratch?", + "How can you label outputs?", + "How can you include workflows in workflows?", + "How can you tag workflows?", + "How can you manage tool versions?", + "How can you manage workflow versions?" + ], + "short_id": "T00163", + "short_tools": [ + "Paste1", + "tp_tac", + "Show beginning1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "workflows", + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "workflows" + ], + "time_estimation": "30m", + "title": "Creating, Editing and Importing Galaxy Workflows", + "tools": [ + "Paste1", + "Show beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tac/1.1.0" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "workflow-editor", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/workflow-editor/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-editor/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-editor/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 177, + "visitors": 4433, + "workflows": [ + { + "creators": [], + "description": "workflow-editor", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 1[label=\"Reverse dataset\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Select first lines\"]\n 1 -> 2 [label=\"outfile\"]\n kdaf1abd9a5c84b25add15475e594f187[color=lightseagreen,label=\"Output\\nFirst lines\"]\n 2 -> kdaf1abd9a5c84b25add15475e594f187\n}", + "history": [ + { + "hash": "9ce50a5ba08b6eacabb187f9698b675f058dcf96", + "message": "Could have sworn I added those tags already ...", + "num": 3, + "short_hash": "9ce50a5ba", + "unix": "1595000133" + }, + { + "hash": "b3873844edf8870a120b674787ebbed01591c0d0", + "message": "Add workflow with annotation", + "num": 2, + "short_hash": "b3873844e", + "unix": "1594998946" + }, + { + "hash": "e745bce9786aa956419687b3ba68d51bc1a552de", + "message": "WIP Tutorial on workflows", + "num": 1, + "short_hash": "e745bce97", + "unix": "1594909029" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 594.9005355834961, + "height": 80.96590423583984, + "left": 716.5056762695312, + "right": 916.5056762695312, + "top": 513.9346313476562, + "width": 200, + "x": 716.5056762695312, + "y": 513.9346313476562 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "0bfe552c-0ac2-4eed-8565-8d14c61275c0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1f0fc6bc-e12e-4328-b7dd-a6514ee5e1a8" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Reverse dataset\"];\n 0 -->|output| 1;\n 2[\"Select first lines\"];\n 1 -->|outfile| 2;\n daf1abd9-a5c8-4b25-add1-5475e594f187[\"Output\\nFirst lines\"];\n 2 --> daf1abd9-a5c8-4b25-add1-5475e594f187;\n style daf1abd9-a5c8-4b25-add1-5475e594f187 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Tutorial workflow", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 594.9005355834961, + "height": 80.96590423583984, + "left": 716.5056762695312, + "right": 916.5056762695312, + "top": 513.9346313476562, + "width": 200, + "x": 716.5056762695312, + "y": 513.9346313476562 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "0bfe552c-0ac2-4eed-8565-8d14c61275c0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1f0fc6bc-e12e-4328-b7dd-a6514ee5e1a8" + } + ] + }, + { + "annotation": "", + "content_id": "Show beginning1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 1, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Select first lines", + "name": "Select first", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 611.1363677978516, + "height": 91.96022033691406, + "left": 1175.3125, + "right": 1375.3125, + "top": 519.1761474609375, + "width": 200, + "x": 1175.3125, + "y": 519.1761474609375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Last lines" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "name:first" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Show beginning1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"lineNum\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "486eca04-1479-4770-bd0a-e5f378e44d42", + "workflow_outputs": [ + { + "label": "First lines", + "output_name": "out_file1", + "uuid": "daf1abd9-a5c8-4b25-add1-5475e594f187" + } + ] + } + ], + "parent_id": "galaxy-interface/workflow-editor", + "path": "topics/galaxy-interface/tutorials/workflow-editor/workflows/main_workflow.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "Tutorial workflow", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-editor/versions/main-workflow", + "tutorial_id": "workflow-editor", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-editor/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-editor/workflows/main_workflow.html", + "version": 1, + "wfid": "galaxy-interface-workflow-editor", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Show beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tac/1.1.0" + ], + "workflowhub_id": "1336" + }, + { + "creators": [], + "description": "workflow-editor", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 1[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nworkflow 1\"]\n 0 -> 1 [label=\"output\"]\n k8816092601a6490387371f3d65449e12[color=lightseagreen,label=\"Output\\nFirst lines\"]\n 1 -> k8816092601a6490387371f3d65449e12\n 2[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nworkflow 2\"]\n 0 -> 2 [label=\"output\"]\n kf18ca9d2a8bb431786cbbad2ef3d2fba[color=lightseagreen,label=\"Output\\nFirst lines\"]\n 2 -> kf18ca9d2a8bb431786cbbad2ef3d2fba\n 3[label=\"Paste\"]\n 1 -> 3 [label=\"First lines\"]\n 2 -> 3 [label=\"First lines\"]\n}", + "history": [ + { + "hash": "9ce50a5ba08b6eacabb187f9698b675f058dcf96", + "message": "Could have sworn I added those tags already ...", + "num": 2, + "short_hash": "9ce50a5ba", + "unix": "1595000133" + }, + { + "hash": "b3873844edf8870a120b674787ebbed01591c0d0", + "message": "Add workflow with annotation", + "num": 1, + "short_hash": "b3873844e", + "unix": "1594998946" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 521.9460067749023, + "height": 80.96590423583984, + "left": 714.9431762695312, + "right": 914.9431762695312, + "top": 440.9801025390625, + "width": 200, + "x": 714.9431762695312, + "y": 440.9801025390625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "04b2dd36-a4a2-45ea-8a42-5543b7b78b5f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9f031818-b9f1-479b-b5e4-064c9f21af40" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\ud83d\udee0\ufe0f Subworkflow\\nworkflow 1\"];\n style 1 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 1;\n 88160926-01a6-4903-8737-1f3d65449e12[\"Output\\nFirst lines\"];\n 1 --> 88160926-01a6-4903-8737-1f3d65449e12;\n style 88160926-01a6-4903-8737-1f3d65449e12 stroke:#2c3143,stroke-width:4px;\n 2[\"\ud83d\udee0\ufe0f Subworkflow\\nworkflow 2\"];\n style 2 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 2;\n f18ca9d2-a8bb-4317-86cb-bad2ef3d2fba[\"Output\\nFirst lines\"];\n 2 --> f18ca9d2-a8bb-4317-86cb-bad2ef3d2fba;\n style f18ca9d2-a8bb-4317-86cb-bad2ef3d2fba stroke:#2c3143,stroke-width:4px;\n 3[\"Paste\"];\n 1 -->|First lines| 3;\n 2 -->|First lines| 3;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Subworkflow", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 521.9460067749023, + "height": 80.96590423583984, + "left": 714.9431762695312, + "right": 914.9431762695312, + "top": 440.9801025390625, + "width": 200, + "x": 714.9431762695312, + "y": 440.9801025390625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "04b2dd36-a4a2-45ea-8a42-5543b7b78b5f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9f031818-b9f1-479b-b5e4-064c9f21af40" + } + ] + }, + { + "annotation": "", + "id": 1, + "input_connections": { + "0:Input dataset collection": { + "id": 0, + "input_subworkflow_step_id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "", + "name": "workflow 1" + } + ], + "label": "workflow 1", + "name": "Tutorial workflow", + "outputs": [], + "position": { + "bottom": 524.9147491455078, + "height": 91.96022033691406, + "left": 981.960205078125, + "right": 1181.960205078125, + "top": 432.95452880859375, + "width": 200, + "x": 981.960205078125, + "y": 432.95452880859375 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "format-version": "0.1", + "name": "Tutorial workflow", + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 594.9005355834961, + "height": 80.96590423583984, + "left": 716.5056762695312, + "right": 916.5056762695312, + "top": 513.9346313476562, + "width": 200, + "x": 716.5056762695312, + "y": 513.9346313476562 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "0bfe552c-0ac2-4eed-8565-8d14c61275c0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1f0fc6bc-e12e-4328-b7dd-a6514ee5e1a8" + } + ] + }, + "1": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tac/1.1.0", + "errors": null, + "id": 1, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Reverse dataset", + "name": "tac", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 604.1051177978516, + "height": 91.96022033691406, + "left": 945.9090576171875, + "right": 1145.9090576171875, + "top": 512.1448974609375, + "width": 200, + "x": 945.9090576171875, + "y": 512.1448974609375 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "name:reverse" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tac/1.1.0", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"separator\": {\"separator_select\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "ba7c2986-a652-419f-9295-de6a32e4da1e", + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": "Show beginning1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 1, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Select first lines", + "name": "Select first", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 611.1363677978516, + "height": 91.96022033691406, + "left": 1175.3125, + "right": 1375.3125, + "top": 519.1761474609375, + "width": 200, + "x": 1175.3125, + "y": 519.1761474609375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Last lines" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "name:first" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Show beginning1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"lineNum\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "486eca04-1479-4770-bd0a-e5f378e44d42", + "workflow_outputs": [ + { + "label": "First lines", + "output_name": "out_file1", + "uuid": "daf1abd9-a5c8-4b25-add1-5475e594f187" + } + ] + } + }, + "tags": "", + "uuid": "93bfe747-6f39-4260-b836-fd102446a559" + }, + "tool_id": "25cb3a27446df7a6", + "type": "subworkflow", + "uuid": "97c98f36-55c3-4d30-ac12-2c664e87491f", + "workflow_outputs": [ + { + "label": "First lines", + "output_name": "First lines", + "uuid": "88160926-01a6-4903-8737-1f3d65449e12" + } + ] + }, + { + "annotation": "", + "id": 2, + "input_connections": { + "0:Input dataset collection": { + "id": 0, + "input_subworkflow_step_id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "", + "name": "workflow 2" + } + ], + "label": "workflow 2", + "name": "Tutorial workflow", + "outputs": [], + "position": { + "bottom": 671.9459991455078, + "height": 91.96022033691406, + "left": 978.9772338867188, + "right": 1178.9772338867188, + "top": 579.9857788085938, + "width": 200, + "x": 978.9772338867188, + "y": 579.9857788085938 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "format-version": "0.1", + "name": "Tutorial workflow", + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 594.9005355834961, + "height": 80.96590423583984, + "left": 716.5056762695312, + "right": 916.5056762695312, + "top": 513.9346313476562, + "width": 200, + "x": 716.5056762695312, + "y": 513.9346313476562 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "0bfe552c-0ac2-4eed-8565-8d14c61275c0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1f0fc6bc-e12e-4328-b7dd-a6514ee5e1a8" + } + ] + }, + "1": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tac/1.1.0", + "errors": null, + "id": 1, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Reverse dataset", + "name": "tac", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 604.1051177978516, + "height": 91.96022033691406, + "left": 945.9090576171875, + "right": 1145.9090576171875, + "top": 512.1448974609375, + "width": 200, + "x": 945.9090576171875, + "y": 512.1448974609375 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "name:reverse" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tac/1.1.0", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"separator\": {\"separator_select\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "ba7c2986-a652-419f-9295-de6a32e4da1e", + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": "Show beginning1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 1, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Select first lines", + "name": "Select first", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 611.1363677978516, + "height": 91.96022033691406, + "left": 1175.3125, + "right": 1375.3125, + "top": 519.1761474609375, + "width": 200, + "x": 1175.3125, + "y": 519.1761474609375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Last lines" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "name:first" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Show beginning1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"lineNum\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "486eca04-1479-4770-bd0a-e5f378e44d42", + "workflow_outputs": [ + { + "label": "First lines", + "output_name": "out_file1", + "uuid": "daf1abd9-a5c8-4b25-add1-5475e594f187" + } + ] + } + }, + "tags": "", + "uuid": "93bfe747-6f39-4260-b836-fd102446a559" + }, + "tool_id": "25cb3a27446df7a6", + "type": "subworkflow", + "uuid": "87480457-e30c-4869-be75-a3b60d5a898e", + "workflow_outputs": [ + { + "label": "First lines", + "output_name": "First lines", + "uuid": "f18ca9d2-a8bb-4317-86cb-bad2ef3d2fba" + } + ] + }, + { + "annotation": "", + "content_id": "Paste1", + "errors": null, + "id": 3, + "input_connections": { + "input1": { + "id": 1, + "output_name": "First lines" + }, + "input2": { + "id": 2, + "output_name": "First lines" + } + }, + "inputs": [], + "label": null, + "name": "Paste", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 617.9119110107422, + "height": 121.96022033691406, + "left": 1326.960205078125, + "right": 1526.960205078125, + "top": 495.9516906738281, + "width": 200, + "x": 1326.960205078125, + "y": 495.9516906738281 + }, + "post_job_actions": {}, + "tool_id": "Paste1", + "tool_state": "{\"delimiter\": \"T\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "aa96e52b-7c25-41c3-9ebc-57f1bb4ef40e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "91e2e281-37c0-4af8-baba-94f775e37a02" + } + ] + } + ], + "parent_id": "galaxy-interface/workflow-editor", + "path": "topics/galaxy-interface/tutorials/workflow-editor/workflows/subworkflow.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "Subworkflow", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-editor/versions/subworkflow", + "tutorial_id": "workflow-editor", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-editor/workflows/subworkflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-editor/workflows/subworkflow.html", + "version": 1, + "wfid": "galaxy-interface-workflow-editor", + "wfname": "subworkflow", + "workflow": "subworkflow.ga", + "workflow_tools": [ + "Paste1", + "Show beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tac/1.1.0" + ], + "workflowhub_id": "1289" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-parameters/tutorial.json", + "contributors": [ + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/workflow-parameters", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "HyPhy HIV NGS Tools", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/workflow-parameters", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use Workflow Parameters to make your Workflows more versatile" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn how to use Workflow Parameters to improve your Workflows" + ], + "pageviews": 2009, + "pub_date": "2019-06-27", + "questions": [ + "What are Workflow Parameters", + "How can I define and use Workflow Parameters", + "How can I read Parameters from Datasets" + ], + "recordings": [ + { + "captioners": [ + "mvdbeek" + ], + "date": "2022-07-06", + "length": "30M", + "speakers": [ + "mvdbeek" + ], + "youtube_id": "otvEuDlCye0" + } + ], + "redirect_from": [ + "/topics/galaxy-ui/tutorials/workflow-parameters/tutorial", + "/short/galaxy-interface/workflow-parameters", + "/short/T00164" + ], + "short_id": "T00164", + "short_tools": [ + "tp_head_tool" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "workflows", + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "HyPhy HIV NGS Tools", + "url": "https://galaxy.hyphy.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "workflows" + ], + "time_estimation": "30m", + "title": "Using Workflow Parameters", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/1.1.0" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "workflow-parameters", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/workflow-parameters/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-parameters/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-parameters/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 129, + "visitors": 1553, + "workflows": [ + { + "creators": [], + "description": "Workflows: Using Workflow Parameters", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"Select first\"]\n 0 -> 1 [label=\"output\"]\n}", + "history": [ + { + "hash": "dfe28b422df8f2d253c12f50c87ac20353493eea", + "message": "Completely merge topics", + "num": 1, + "short_hash": "dfe28b422", + "unix": "1592211035" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 162.9609375, + "top": 199.9921875 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "ac600c9c-04f0-4e2d-9bd7-636de8a7ae56", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3e5ff777-86d7-4510-8f63-d0c6379656fe" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Select first\"];\n 0 -->|output| 1;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Select First N Lines", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 162.9609375, + "top": 199.9921875 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "ac600c9c-04f0-4e2d-9bd7-636de8a7ae56", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3e5ff777-86d7-4510-8f63-d0c6379656fe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/1.1.0", + "errors": null, + "id": 1, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select first", + "name": "infile" + } + ], + "label": null, + "name": "Select first", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 463.9453125, + "top": 197.9765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "0a8c6b61f0f4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"\\\"\\\"\", \"count\": \"\\\"10\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "6ef9506c-cf7b-48c9-889f-db7dfb97389a", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "6f9509ee-42cd-4c3d-81fc-22c3a95de600" + } + ] + } + ], + "parent_id": "galaxy-interface/workflow-parameters", + "path": "topics/galaxy-interface/tutorials/workflow-parameters/workflows/cut_n_lines.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "Select First N Lines", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-parameters/versions/cut-n-lines", + "tutorial_id": "workflow-parameters", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-parameters/workflows/cut_n_lines.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-parameters/workflows/cut_n_lines.html", + "version": 1, + "wfid": "galaxy-interface-workflow-parameters", + "wfname": "cut-n-lines", + "workflow": "cut_n_lines.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/1.1.0" + ], + "workflowhub_id": "1304" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "ena_upload", + "owner": "iuc", + "revisions": "9e2df763086c", + "tool_panel_section_label": "Send Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: ena_upload\n owner: iuc\n revisions: 9e2df763086c\n tool_panel_section_label: Send Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-data-to-ena/tutorial.json", + "contributors": [ + { + "email": "miguel.roncoroni@elixir-belgium.org", + "id": "roncoronimiguel", + "joined": "2021-08", + "name": "Miguel Roncoroni", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/roncoronimiguel/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/roncoronimiguel.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "be", + "email": "bert.droesbeke@vib.be", + "id": "bedroesb", + "joined": "2019-12", + "matrix": "bedroesb:matrix.org", + "name": "Bert Droesbeke", + "orcid": "0000-0003-0522-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bedroesb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bedroesb.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "be", + "email": "boris.depoortere99@gmail.com", + "id": "B0r1sD", + "joined": "2024-04", + "linkedin": "borisdepoortere", + "location": { + "country": "BE", + "lat": 51.054, + "lon": 3.723 + }, + "matrix": "b0r1sd:matrix.org", + "name": "Boris Depoortere", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/B0r1sD/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/B0r1sD.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/upload-data-to-ena", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/upload-data-to-ena", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use Galaxy's 'ENA Upload tool' to submit raw reads to ENA", + "Use Galaxy's 'Submit consensus sequence to ENA' tool", + "You need to include your ENA Webin credentials in Galaxy", + "For small submission use 'ENA Upload tool' interactive metadata forms feature", + "For bulk submissions use a spreadsheet metadata template" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-04-04", + "objectives": [ + "Submit raw sequencing reads and metadata to ENA's test server", + "Submit consensus sequence and metadata to ENA's test server" + ], + "pageviews": 4636021, + "pub_date": "2021-08-10", + "questions": [ + "How do you submit raw sequence reads and assembled genomes to the European Nucleotide Archive?" + ], + "requirements": [ + { + "topic_name": "sequence-analysis", + "tutorials": [ + "human-reads-removal" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + } + ], + "short_id": "T00159", + "short_tools": [ + "ena_webin_cli", + "ena_upload" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "covid19" + ], + "time_estimation": "1h", + "title": "Submitting sequence data to ENA", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/ieguinoa/ena_webin_cli/ena_webin_cli/7d751b5943b0", + "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.7.1" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "upload-data-to-ena", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/upload-data-to-ena/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-data-to-ena/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-data-to-ena/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 238, + "visitors": 1741666, + "workflows": [ + { + "creators": [], + "description": "Submitting SARS-CoV-2 sequences to ENA", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"ENA Upload tool\"]\n 1[label=\"ENA Upload tool\"]\n}", + "history": [ + { + "hash": "f6670f581c4629118c7087a0794564387afeb2e3", + "message": "rename", + "num": 1, + "short_hash": "f6670f581", + "unix": "1628583615" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"ENA Upload tool\"];\n 1[\"ENA Upload tool\"];", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN_ENA_upload_workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.3.2", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "ENA Upload tool", + "outputs": [ + { + "name": "output", + "type": "txt" + }, + { + "name": "studies_table_out", + "type": "tabular" + }, + { + "name": "samples_table_out", + "type": "tabular" + }, + { + "name": "experiments_table_out", + "type": "tabular" + }, + { + "name": "runs_table_out", + "type": "tabular" + } + ], + "position": { + "bottom": 656.2166748046875, + "height": 318.7166748046875, + "left": 701.25, + "right": 861.25, + "top": 337.5, + "width": 160, + "x": 701.25, + "y": 337.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.3.2", + "tool_shed_repository": { + "changeset_revision": "9e2df763086c", + "name": "ena_upload", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action_options\": {\"action\": \"add\", \"__current_case__\": 0, \"test_submit_parameters\": {\"submit_dev\": \"true\", \"dry_run\": \"true\"}, \"test_submit\": \"False\", \"input_format_conditional\": {\"input_format\": \"build_tables\", \"__current_case__\": 2, \"conditional_viral_metadata\": {\"viral_sample\": \"false\", \"__current_case__\": 1, \"rep_study\": [{\"__index__\": 0, \"study_title\": \"\", \"study_abstract\": \"\", \"study_type\": \"Whole Genome Sequencing\", \"study_pubmed_id\": \"\", \"rep_sample\": [{\"__index__\": 0, \"sample_title\": \"\", \"sample_description\": \"\", \"scientific_name\": \"\", \"tax_id\": \"\", \"rep_experiment\": [{\"__index__\": 0, \"experiment_title\": \"\", \"experiment_design\": \"\", \"library_strategy\": \"WGS\", \"library_source\": \"GENOMIC\", \"library_selection\": \"RANDOM\", \"library_layout\": \"SINGLE\", \"insert_size\": \"0\", \"library_construction_protocol\": \"\", \"platform\": \"ILLUMINA\", \"instrument_model\": \"minION\", \"rep_runs\": [{\"__index__\": 0, \"run_base_name\": \"\", \"upload_files\": {\"__class__\": \"RuntimeValue\"}}]}]}]}]}}, \"center\": \"ELIXIR_BE\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.2", + "type": "tool", + "uuid": "40e72cfd-122f-4bef-a4ed-064ff7e14009", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f04d309c-8267-432b-8e43-769c51e8f96a" + }, + { + "label": null, + "output_name": "runs_table_out", + "uuid": "33795505-1bfa-4a96-995e-1a989fa5e404" + }, + { + "label": null, + "output_name": "experiments_table_out", + "uuid": "b140a301-fac3-4be5-b1bc-652862fb2b3b" + }, + { + "label": null, + "output_name": "samples_table_out", + "uuid": "6285b2f0-2646-404d-9711-a94288c11140" + }, + { + "label": null, + "output_name": "studies_table_out", + "uuid": "54f2d83c-8dd8-4d3a-be1c-e40f6e567053" + } + ] + } + ], + "parent_id": "galaxy-interface/upload-data-to-ena", + "path": "topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "GTN_ENA_upload_workflow", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-upload-data-to-ena/versions/main-workflow", + "tutorial_id": "upload-data-to-ena", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/upload-data-to-ena/workflows/main_workflow.html", + "version": 1, + "wfid": "galaxy-interface-upload-data-to-ena", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/ena_upload/ena_upload/0.3.2" + ], + "workflowhub_id": "1334" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.5163611" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_point", + "owner": "iuc", + "revisions": "1acf88921176", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_point\n owner: iuc\n revisions: 1acf88921176\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-reports/tutorial.json", + "contributions": { + "authorship": [ + "shiltemann" + ], + "funding": [ + "gallantries" + ], + "infrastructure": [ + "jmchilton", + "guerler", + "mvdbeek" + ], + "testing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "id": "guerler", + "joined": "2017-09", + "name": "Aysam Guerler", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/guerler/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/guerler.json" + }, + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/workflow-reports", + "edam_operation": [ + "Visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/workflow-reports", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Workflow reports help you display the most important results of a workflow in an organized fashion.", + "Workflow reports are configured as part of the workflow definition, for every run of the workflow, a report will be automatically created", + "Workflow reports can be viewed from the top menu, **User -> Workflow Invocations**.", + "Labels must be added to workflow outputs before they can be included", + "Many different components can be added to a workflow report (datasets, images, links to datasets, job metrics, text and sections, visualisations, and much more!)", + "Workflow reports can be shared as Galaxy Pages." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understanding, viewing and creating workflow reports" + ], + "pageviews": 864, + "pub_date": "2022-06-02", + "questions": [ + "What are workflow reports?", + "How can I view a workflow report?", + "How can I customize a workflow report?", + "How can I share a workflow report with others?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2022-07-06", + "length": "30M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "hrZhpsiGaPM" + } + ], + "short_id": "T00165", + "short_tools": [ + "Grouping1", + "datamash_ops", + "ggplot2_point", + "Cut1", + "csv_to_tabular", + "Remove beginning1", + "tp_sorted_uniq", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "workflows", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "workflows" + ], + "time_estimation": "30m", + "title": "Workflow Reports", + "tools": [ + "Cut1", + "Grouping1", + "Remove beginning1", + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "upload1" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "workflow-reports", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/workflow-reports/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-reports/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-reports/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 179, + "visitors": 597, + "workflows": [ + { + "creators": [], + "description": "introduction", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIris Dataset\"]\n 1[label=\"Convert CSV to tabular\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Datamash\"]\n 1 -> 2 [label=\"tabular\"]\n k5fc8c705b9e24008aa85e84504b8395f[color=lightseagreen,label=\"Output\\ndatamash_output\"]\n 2 -> k5fc8c705b9e24008aa85e84504b8395f\n 3[label=\"Remove beginning\"]\n 1 -> 3 [label=\"tabular\"]\n 4[label=\"Cut\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"Group\"]\n 3 -> 5 [label=\"out_file1\"]\n k7e07839ce8ca46928b8e6eb3607066de[color=lightseagreen,label=\"Output\\ngroup1\"]\n 5 -> k7e07839ce8ca46928b8e6eb3607066de\n 6[label=\"Group\"]\n 3 -> 6 [label=\"out_file1\"]\n k9cb98227aa5b4b77933cffba1e98566e[color=lightseagreen,label=\"Output\\ngroup2\"]\n 6 -> k9cb98227aa5b4b77933cffba1e98566e\n 7[label=\"Scatterplot with ggplot2\"]\n 3 -> 7 [label=\"out_file1\"]\n 8[label=\"Scatterplot with ggplot2\"]\n 3 -> 8 [label=\"out_file1\"]\n 9[label=\"Unique\"]\n 4 -> 9 [label=\"out_file1\"]\n kfc73409c78784391bc91f99a5be0ba06[color=lightseagreen,label=\"Output\\nunique_output\"]\n 9 -> kfc73409c78784391bc91f99a5be0ba06\n}", + "history": [ + { + "hash": "bffad533763a3daa41aa8d7d083c978f46598355", + "message": "update worfklow to not hide png output", + "num": 3, + "short_hash": "bffad5337", + "unix": "1657113550" + }, + { + "hash": "56ef1bde9ab0a1e9493989335f23daecaf16510d", + "message": "update topic tag on workflow", + "num": 2, + "short_hash": "56ef1bde9", + "unix": "1654089632" + }, + { + "hash": "b200300b458fdfb7d025ece2746ec08134e8ccbd", + "message": "start workflow reports tutorial", + "num": 1, + "short_hash": "b200300b4", + "unix": "1654074124" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Iris Dataset" + } + ], + "label": "Iris Dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 205.8000030517578, + "height": 61.80000305175781, + "left": 292, + "right": 492, + "top": 144, + "width": 200, + "x": 292, + "y": 144 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "6a8d8ca9-8bb9-414b-af8f-50d07721b363", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIris Dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Convert CSV to tabular\"];\n 0 -->|output| 1;\n 2[\"Datamash\"];\n 1 -->|tabular| 2;\n 5fc8c705-b9e2-4008-aa85-e84504b8395f[\"Output\\ndatamash_output\"];\n 2 --> 5fc8c705-b9e2-4008-aa85-e84504b8395f;\n style 5fc8c705-b9e2-4008-aa85-e84504b8395f stroke:#2c3143,stroke-width:4px;\n 3[\"Remove beginning\"];\n 1 -->|tabular| 3;\n 4[\"Cut\"];\n 3 -->|out_file1| 4;\n 5[\"Group\"];\n 3 -->|out_file1| 5;\n 7e07839c-e8ca-4692-8b8e-6eb3607066de[\"Output\\ngroup1\"];\n 5 --> 7e07839c-e8ca-4692-8b8e-6eb3607066de;\n style 7e07839c-e8ca-4692-8b8e-6eb3607066de stroke:#2c3143,stroke-width:4px;\n 6[\"Group\"];\n 3 -->|out_file1| 6;\n 9cb98227-aa5b-4b77-933c-ffba1e98566e[\"Output\\ngroup2\"];\n 6 --> 9cb98227-aa5b-4b77-933c-ffba1e98566e;\n style 9cb98227-aa5b-4b77-933c-ffba1e98566e stroke:#2c3143,stroke-width:4px;\n 7[\"Scatterplot with ggplot2\"];\n 3 -->|out_file1| 7;\n 8[\"Scatterplot with ggplot2\"];\n 3 -->|out_file1| 8;\n 9[\"Unique\"];\n 4 -->|out_file1| 9;\n fc73409c-7878-4391-bc91-f99a5be0ba06[\"Output\\nunique_output\"];\n 9 --> fc73409c-7878-4391-bc91-f99a5be0ba06;\n style fc73409c-7878-4391-bc91-f99a5be0ba06 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN Training: Workflow Reports - Galaxy 101 For Everyone", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "errors": null, + "id": 2, + "input_connections": { + "in_file": { + "id": 1, + "output_name": "tabular" + } + }, + "inputs": [], + "label": null, + "name": "Datamash", + "outputs": [ + { + "name": "out_file", + "type": "tabular" + } + ], + "position": { + "bottom": 52.600006103515625, + "height": 113.60000610351562, + "left": 639, + "right": 839, + "top": -61, + "width": 200, + "x": 639, + "y": -61 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "tool_shed_repository": { + "changeset_revision": "562f3c677828", + "name": "datamash_ops", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"grouping\": \"5\", \"header_in\": \"true\", \"header_out\": \"true\", \"ignore_case\": \"true\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"need_sort\": \"true\", \"operations\": [{\"__index__\": 0, \"op_name\": \"mean\", \"op_column\": \"1\"}, {\"__index__\": 1, \"op_name\": \"sstdev\", \"op_column\": \"1\"}, {\"__index__\": 2, \"op_name\": \"mean\", \"op_column\": \"2\"}, {\"__index__\": 3, \"op_name\": \"sstdev\", \"op_column\": \"2\"}, {\"__index__\": 4, \"op_name\": \"mean\", \"op_column\": \"3\"}, {\"__index__\": 5, \"op_name\": \"sstdev\", \"op_column\": \"3\"}, {\"__index__\": 6, \"op_name\": \"mean\", \"op_column\": \"4\"}, {\"__index__\": 7, \"op_name\": \"sstdev\", \"op_column\": \"4\"}], \"print_full_line\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "e1a58a79-5102-450e-bfe0-200f0e64139d", + "workflow_outputs": [ + { + "label": "datamash_output", + "output_name": "out_file", + "uuid": "5fc8c705-b9e2-4008-aa85-e84504b8395f" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 496.1999969482422, + "height": 93.19999694824219, + "left": 1059, + "right": 1259, + "top": 403, + "width": 200, + "x": 1059, + "y": 403 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"groupcol\": \"5\", \"ignorecase\": \"false\", \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "dcd3ddc6-d871-45dd-94ed-3eae56dd56db", + "workflow_outputs": [ + { + "label": "group1", + "output_name": "out_file1", + "uuid": "7e07839c-e8ca-4692-8b8e-6eb3607066de" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 6, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 616.1999969482422, + "height": 93.19999694824219, + "left": 1059, + "right": 1259, + "top": 523, + "width": 200, + "x": 1059, + "y": 523 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"groupcol\": \"5\", \"ignorecase\": \"false\", \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [{\"__index__\": 0, \"optype\": \"length\", \"opcol\": \"1\", \"opround\": \"no\", \"opdefault\": null}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "285a3852-71cb-4137-be1d-b0ec0a59d9e9", + "workflow_outputs": [ + { + "label": "group2", + "output_name": "out_file1", + "uuid": "9cb98227-aa5b-4b77-933c-ffba1e98566e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scatterplot with ggplot2", + "name": "input1" + } + ], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "bottom": 889, + "height": 246, + "left": 1059, + "right": 1259, + "top": 643, + "width": 200, + "x": 1059, + "y": 643 + }, + "post_job_actions": { + "HideDatasetActionoutput2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1acf88921176", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"type_conditional\": {\"type_options\": \"points\", \"__current_case__\": 0, \"points\": {\"pointoptions\": \"default\", \"__current_case__\": 0}}, \"factor\": {\"factoring\": \"Single\", \"__current_case__\": 1, \"factorcol\": \"5\", \"colors\": \"Set2\", \"colororder\": \"1\"}, \"axis_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"axis_text_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"plot_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"gridlinecust\": \"default\", \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"legend\": \"yes\"}, \"input1\": {\"__class__\": \"RuntimeValue\"}, \"out\": {\"unit_output_dim\": \"in\", \"width_output_dim\": \"7.0\", \"height_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"additional_output_format\": \"pdf\"}, \"title\": \"Sepal length as a function of sepal width\", \"xlab\": \"Sepal length\", \"xplot\": \"1\", \"ylab\": \"Sepal width\", \"yplot\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.5+galaxy0", + "type": "tool", + "uuid": "fa412209-5e3a-448e-8b0b-fa88870e19c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "edb75294-0687-433e-821e-cffc03c7c103" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scatterplot with ggplot2", + "name": "input1" + } + ], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "bottom": 1009, + "height": 246, + "left": 1059, + "right": 1259, + "top": 763, + "width": 200, + "x": 1059, + "y": 763 + }, + "post_job_actions": { + "HideDatasetActionoutput2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1acf88921176", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"type_conditional\": {\"type_options\": \"points\", \"__current_case__\": 0, \"points\": {\"pointoptions\": \"default\", \"__current_case__\": 0}}, \"factor\": {\"factoring\": \"Single\", \"__current_case__\": 1, \"factorcol\": \"5\", \"colors\": \"Set2\", \"colororder\": \"1\"}, \"axis_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"axis_text_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"plot_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"gridlinecust\": \"default\", \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"legend\": \"yes\"}, \"input1\": {\"__class__\": \"RuntimeValue\"}, \"out\": {\"unit_output_dim\": \"in\", \"width_output_dim\": \"7.0\", \"height_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"additional_output_format\": \"pdf\"}, \"title\": \"Petal length as a function of petal width\", \"xlab\": \"Petal length\", \"xplot\": \"3\", \"ylab\": \"Petal width\", \"yplot\": \"4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.5+galaxy0", + "type": "tool", + "uuid": "8e7b3f8d-2b8b-46cb-93d4-0d74bf54441e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "9e55c569-0443-4b96-b34a-e37a8416cd22" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "errors": null, + "id": 9, + "input_connections": { + "infile": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 276.6000061035156, + "height": 113.60000610351562, + "left": 1279, + "right": 1479, + "top": 163, + "width": 200, + "x": 1279, + "y": 163 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "3e2d84e9-2fff-4321-9db6-41af99367162", + "workflow_outputs": [ + { + "label": "unique_output", + "output_name": "outfile", + "uuid": "fc73409c-7878-4391-bc91-f99a5be0ba06" + } + ] + } + ], + "parent_id": "galaxy-interface/workflow-reports", + "path": "topics/galaxy-interface/tutorials/workflow-reports/workflows/galaxy-101-everyone.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "GTN Training: Workflow Reports - Galaxy 101 For Everyone", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-reports/versions/galaxy-101-everyone", + "tutorial_id": "workflow-reports", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-reports/workflows/galaxy-101-everyone.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-reports/workflows/galaxy-101-everyone.html", + "version": 2, + "wfid": "galaxy-interface-workflow-reports", + "wfname": "galaxy-101-everyone", + "workflow": "galaxy-101-everyone.ga", + "workflow_tools": [ + "Cut1", + "Grouping1", + "Remove beginning1", + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0" + ], + "workflowhub_id": "1301" + }, + { + "creators": [], + "description": "introduction", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "# Iris Analysis\n\nBelow are the results for the Iris analysis workflow.\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n# Results\n\n## Species detected\n\ndisplay:\n```galaxy\nhistory_dataset_display(output=\"Iris Species\")\n```\n\n## Sepal plot\n\n```galaxy\nhistory_dataset_as_image(output=\"Sepal Plot (PNG)\")\n```\n\n## Petal Plot\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Petal Plot (PNG)\")\n```\n\n\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIris Dataset\"]\n 1[label=\"Convert CSV to tabular\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Datamash\"]\n 1 -> 2 [label=\"tabular\"]\n k5381f9b05170484c828e4469ec27ab3e[color=lightseagreen,label=\"Output\\ndatamash_output\"]\n 2 -> k5381f9b05170484c828e4469ec27ab3e\n 3[label=\"Remove beginning\"]\n 1 -> 3 [label=\"tabular\"]\n 4[label=\"Cut\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"Group\"]\n 3 -> 5 [label=\"out_file1\"]\n k836a57b33657435bb396869af7e2f35e[color=lightseagreen,label=\"Output\\ngroup1\"]\n 5 -> k836a57b33657435bb396869af7e2f35e\n 6[label=\"Group\"]\n 3 -> 6 [label=\"out_file1\"]\n k82e163a48fc54b8e81869fc66cd75b1d[color=lightseagreen,label=\"Output\\ngroup2\"]\n 6 -> k82e163a48fc54b8e81869fc66cd75b1d\n 7[label=\"Scatterplot with ggplot2\"]\n 3 -> 7 [label=\"out_file1\"]\n kbbbac6ca64fb46ad87986c7c5369ccaf[color=lightseagreen,label=\"Output\\nSepal Plot (PNG)\"]\n 7 -> kbbbac6ca64fb46ad87986c7c5369ccaf\n 8[label=\"Scatterplot with ggplot2\"]\n 3 -> 8 [label=\"out_file1\"]\n k74ee0c3c53c244cfb0e82a10c24166c9[color=lightseagreen,label=\"Output\\nPetal Plot (PNG)\"]\n 8 -> k74ee0c3c53c244cfb0e82a10c24166c9\n 9[label=\"Unique\"]\n 4 -> 9 [label=\"out_file1\"]\n k6bcc2f96255e48f5a37b7d6a2c123493[color=lightseagreen,label=\"Output\\nIris Species\"]\n 9 -> k6bcc2f96255e48f5a37b7d6a2c123493\n}", + "history": [ + { + "hash": "a8cea912fc5b649e72e07b366c1a53299559c901", + "message": "add final workflow with report", + "num": 1, + "short_hash": "a8cea912f", + "unix": "1654092494" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Iris Dataset" + } + ], + "label": "Iris Dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 383.8000030517578, + "height": 61.80000305175781, + "left": -119.5, + "right": 80.5, + "top": 322, + "width": 200, + "x": -119.5, + "y": 322 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "6a8d8ca9-8bb9-414b-af8f-50d07721b363", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIris Dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Convert CSV to tabular\"];\n 0 -->|output| 1;\n 2[\"Datamash\"];\n 1 -->|tabular| 2;\n 5381f9b0-5170-484c-828e-4469ec27ab3e[\"Output\\ndatamash_output\"];\n 2 --> 5381f9b0-5170-484c-828e-4469ec27ab3e;\n style 5381f9b0-5170-484c-828e-4469ec27ab3e stroke:#2c3143,stroke-width:4px;\n 3[\"Remove beginning\"];\n 1 -->|tabular| 3;\n 4[\"Cut\"];\n 3 -->|out_file1| 4;\n 5[\"Group\"];\n 3 -->|out_file1| 5;\n 836a57b3-3657-435b-b396-869af7e2f35e[\"Output\\ngroup1\"];\n 5 --> 836a57b3-3657-435b-b396-869af7e2f35e;\n style 836a57b3-3657-435b-b396-869af7e2f35e stroke:#2c3143,stroke-width:4px;\n 6[\"Group\"];\n 3 -->|out_file1| 6;\n 82e163a4-8fc5-4b8e-8186-9fc66cd75b1d[\"Output\\ngroup2\"];\n 6 --> 82e163a4-8fc5-4b8e-8186-9fc66cd75b1d;\n style 82e163a4-8fc5-4b8e-8186-9fc66cd75b1d stroke:#2c3143,stroke-width:4px;\n 7[\"Scatterplot with ggplot2\"];\n 3 -->|out_file1| 7;\n bbbac6ca-64fb-46ad-8798-6c7c5369ccaf[\"Output\\nSepal Plot (PNG)\"];\n 7 --> bbbac6ca-64fb-46ad-8798-6c7c5369ccaf;\n style bbbac6ca-64fb-46ad-8798-6c7c5369ccaf stroke:#2c3143,stroke-width:4px;\n 8[\"Scatterplot with ggplot2\"];\n 3 -->|out_file1| 8;\n 74ee0c3c-53c2-44cf-b0e8-2a10c24166c9[\"Output\\nPetal Plot (PNG)\"];\n 8 --> 74ee0c3c-53c2-44cf-b0e8-2a10c24166c9;\n style 74ee0c3c-53c2-44cf-b0e8-2a10c24166c9 stroke:#2c3143,stroke-width:4px;\n 9[\"Unique\"];\n 4 -->|out_file1| 9;\n 6bcc2f96-255e-48f5-a37b-7d6a2c123493[\"Output\\nIris Species\"];\n 9 --> 6bcc2f96-255e-48f5-a37b-7d6a2c123493;\n style 6bcc2f96-255e-48f5-a37b-7d6a2c123493 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN Training: Workflow Reports", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "errors": null, + "id": 2, + "input_connections": { + "in_file": { + "id": 1, + "output_name": "tabular" + } + }, + "inputs": [], + "label": null, + "name": "Datamash", + "outputs": [ + { + "name": "out_file", + "type": "tabular" + } + ], + "position": { + "bottom": 278.6000061035156, + "height": 113.60000610351562, + "left": 372.5, + "right": 572.5, + "top": 165, + "width": 200, + "x": 372.5, + "y": 165 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "tool_shed_repository": { + "changeset_revision": "562f3c677828", + "name": "datamash_ops", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"grouping\": \"5\", \"header_in\": \"true\", \"header_out\": \"true\", \"ignore_case\": \"true\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"need_sort\": \"true\", \"operations\": [{\"__index__\": 0, \"op_name\": \"mean\", \"op_column\": \"1\"}, {\"__index__\": 1, \"op_name\": \"sstdev\", \"op_column\": \"1\"}, {\"__index__\": 2, \"op_name\": \"mean\", \"op_column\": \"2\"}, {\"__index__\": 3, \"op_name\": \"sstdev\", \"op_column\": \"2\"}, {\"__index__\": 4, \"op_name\": \"mean\", \"op_column\": \"3\"}, {\"__index__\": 5, \"op_name\": \"sstdev\", \"op_column\": \"3\"}, {\"__index__\": 6, \"op_name\": \"mean\", \"op_column\": \"4\"}, {\"__index__\": 7, \"op_name\": \"sstdev\", \"op_column\": \"4\"}], \"print_full_line\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "e1a58a79-5102-450e-bfe0-200f0e64139d", + "workflow_outputs": [ + { + "label": "datamash_output", + "output_name": "out_file", + "uuid": "5381f9b0-5170-484c-828e-4469ec27ab3e" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 538.1999969482422, + "height": 93.19999694824219, + "left": 668.5, + "right": 868.5, + "top": 445, + "width": 200, + "x": 668.5, + "y": 445 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"groupcol\": \"5\", \"ignorecase\": \"false\", \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "dcd3ddc6-d871-45dd-94ed-3eae56dd56db", + "workflow_outputs": [ + { + "label": "group1", + "output_name": "out_file1", + "uuid": "836a57b3-3657-435b-b396-869af7e2f35e" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 6, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 683.1999969482422, + "height": 93.19999694824219, + "left": 667.5, + "right": 867.5, + "top": 590, + "width": 200, + "x": 667.5, + "y": 590 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"groupcol\": \"5\", \"ignorecase\": \"false\", \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [{\"__index__\": 0, \"optype\": \"length\", \"opcol\": \"1\", \"opround\": \"no\", \"opdefault\": null}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "285a3852-71cb-4137-be1d-b0ec0a59d9e9", + "workflow_outputs": [ + { + "label": "group2", + "output_name": "out_file1", + "uuid": "82e163a4-8fc5-4b8e-8186-9fc66cd75b1d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "bottom": 924.1999969482422, + "height": 205.1999969482422, + "left": 971.5, + "right": 1171.5, + "top": 719, + "width": 200, + "x": 971.5, + "y": 719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1acf88921176", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"type_conditional\": {\"type_options\": \"points\", \"__current_case__\": 0, \"points\": {\"pointoptions\": \"default\", \"__current_case__\": 0}}, \"factor\": {\"factoring\": \"Single\", \"__current_case__\": 1, \"factorcol\": \"5\", \"colors\": \"Set2\", \"colororder\": \"1\"}, \"axis_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"axis_text_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"plot_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"gridlinecust\": \"default\", \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"legend\": \"yes\"}, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"out\": {\"unit_output_dim\": \"in\", \"width_output_dim\": \"7.0\", \"height_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"additional_output_format\": \"pdf\"}, \"title\": \"Sepal length as a function of sepal width\", \"xlab\": \"Sepal length\", \"xplot\": \"1\", \"ylab\": \"Sepal width\", \"yplot\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.5+galaxy0", + "type": "tool", + "uuid": "fa412209-5e3a-448e-8b0b-fa88870e19c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "d8dd48e7-e9e0-4b5c-8d9f-4b47be570e31" + }, + { + "label": "Sepal Plot (PNG)", + "output_name": "output1", + "uuid": "bbbac6ca-64fb-46ad-8798-6c7c5369ccaf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "bottom": 1210.1999969482422, + "height": 205.1999969482422, + "left": 677.5, + "right": 877.5, + "top": 1005, + "width": 200, + "x": 677.5, + "y": 1005 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1acf88921176", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"type_conditional\": {\"type_options\": \"points\", \"__current_case__\": 0, \"points\": {\"pointoptions\": \"default\", \"__current_case__\": 0}}, \"factor\": {\"factoring\": \"Single\", \"__current_case__\": 1, \"factorcol\": \"5\", \"colors\": \"Set2\", \"colororder\": \"1\"}, \"axis_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"axis_text_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"plot_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"gridlinecust\": \"default\", \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"legend\": \"yes\"}, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"out\": {\"unit_output_dim\": \"in\", \"width_output_dim\": \"7.0\", \"height_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"additional_output_format\": \"pdf\"}, \"title\": \"Petal length as a function of petal width\", \"xlab\": \"Petal length\", \"xplot\": \"3\", \"ylab\": \"Petal width\", \"yplot\": \"4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.5+galaxy0", + "type": "tool", + "uuid": "8e7b3f8d-2b8b-46cb-93d4-0d74bf54441e", + "workflow_outputs": [ + { + "label": "Petal Plot (PNG)", + "output_name": "output1", + "uuid": "74ee0c3c-53c2-44cf-b0e8-2a10c24166c9" + }, + { + "label": null, + "output_name": "output2", + "uuid": "54f6cc43-48a3-495d-9f11-4f03e19d56ef" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "errors": null, + "id": 9, + "input_connections": { + "infile": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 382.6000061035156, + "height": 113.60000610351562, + "left": 922.5, + "right": 1122.5, + "top": 269, + "width": 200, + "x": 922.5, + "y": 269 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "3e2d84e9-2fff-4321-9db6-41af99367162", + "workflow_outputs": [ + { + "label": "Iris Species", + "output_name": "outfile", + "uuid": "6bcc2f96-255e-48f5-a37b-7d6a2c123493" + } + ] + } + ], + "parent_id": "galaxy-interface/workflow-reports", + "path": "topics/galaxy-interface/tutorials/workflow-reports/workflows/workflow_reports_final_workflow.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "GTN Training: Workflow Reports", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-workflow-reports/versions/workflow-reports-final-workflow", + "tutorial_id": "workflow-reports", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-reports/workflows/workflow_reports_final_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/workflow-reports/workflows/workflow_reports_final_workflow.html", + "version": 1, + "wfid": "galaxy-interface-workflow-reports", + "wfname": "workflow-reports-final-workflow", + "workflow": "workflow_reports_final_workflow.ga", + "workflow_tools": [ + "Cut1", + "Grouping1", + "Remove beginning1", + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0" + ], + "workflowhub_id": "1297" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "ddf54b12c295", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqtofasta", + "owner": "devteam", + "revisions": "297962e79f39", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jq", + "owner": "iuc", + "revisions": "5ff75eb1a893", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "33d61c89fb8d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "revisions": "2a3a00c1fa0a", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "69ebb7f46e45", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "83c7d564b128", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: ddf54b12c295\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqtofasta\n owner: devteam\n revisions: 297962e79f39\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jq\n owner: iuc\n revisions: 5ff75eb1a893\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: 33d61c89fb8d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff_sars_cov_2\n owner: iuc\n revisions: 2a3a00c1fa0a\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 69ebb7f46e45\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 83c7d564b128\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/ncbi-sarf/tutorial.json", + "contributors": [ + { + "github": false, + "id": "jontrow", + "joined": "2021-05", + "name": "Jon Trow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jontrow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jontrow.json" + }, + { + "id": "RareSeas", + "joined": "2021-05", + "name": "Adelaide Rhodes", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/RareSeas/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/RareSeas.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/ncbi-sarf", + "edam_operation": [ + "Data handling", + "SNP detection" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/ncbi-sarf", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "NCBI Publishes datasets in the cloud that you can easily process with Galaxy", + "The Rule Based Uploader simplifies processing and downloading large numbers of files" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn about SRA aligned read format and vcf files for Runs containing SARS-CoV-2 content", + "Understand how to search the metadata for these Runs to find your dataset of interest and then import that data in your preferred format" + ], + "pageviews": 4971885, + "pub_date": "2021-05-31", + "questions": [ + "How can I search SRA SARS-CoV-2 metadata from within Galaxy?", + "How can I import SRA aligned read files and extract the data in my format of choice?", + "How can I import vcf files into Galaxy that have been generated for these Runs?" + ], + "recordings": [ + { + "captioners": [ + "prodromus" + ], + "date": "2021-05-15", + "galaxy_version": "21.01", + "length": "40M", + "speakers": [ + "prodromus" + ], + "youtube_id": "ogu-NBTP-DM" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "upload-rules" + ], + "type": "internal" + } + ], + "short_id": "T00155", + "short_tools": [ + "fastq_to_fasta_python", + "tp_cat", + "fasterq_dump", + "query_tabular", + "fastq_dump", + "jq", + "snpeff_sars_cov_2" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "prodromus" + ], + "date": "2021-05-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "prodromus" + ], + "youtube_id": "siLP71B9gm4" + } + ], + "subtopic": "upload", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "ncbi", + "covid19" + ], + "time_estimation": "30m", + "title": "SRA Aligned Read Format to Speed Up SARS-CoV-2 data Analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqtofasta/fastq_to_fasta_python/1.1.5", + "toolshed.g2.bx.psu.edu/repos/iuc/jq/jq/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.11.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fastq_dump/2.11.0+galaxy0" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ncbi-sarf", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/ncbi-sarf/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/ncbi-sarf/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/ncbi-sarf/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 266, + "visitors": 1842342 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/get-data/tutorial.json", + "contributors": [ + { + "id": "pajanne", + "joined": "2017-09", + "name": "Anne Pajon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pajanne/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pajanne.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + }, + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/get-data", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "galaxy-interface/get-data", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2022-10-18", + "objectives": null, + "pageviews": 5726883, + "pub_date": "2017-05-24", + "questions": [ + "How do I get my data into Galaxy?", + "How do I get public data into Galaxy?" + ], + "redirect_from": [ + "/topics/galaxy-data-manipulation/tutorials/get-data/slides", + "/short/galaxy-interface/get-data/slides", + "/short/S00062" + ], + "short_id": "S00062", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "upload", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": null, + "title": "Getting data into Galaxy", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "get-data", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/get-data/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/get-data/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/get-data/slides.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/galaxy-on-dockstore/tutorial.json", + "contributors": [ + { + "email": "akhadilk@ucsc.edu", + "id": "avani-k", + "joined": "2021-12", + "name": "Avani Khadilkar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avani-k/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/avani-k.json" + }, + { + "email": "esheets@ucsc.edu", + "id": "bethsheets", + "joined": "2021-12", + "name": "Elizabeth Sheets", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bethsheets/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bethsheets.json" + }, + { + "email": "coverbec@ucsc.edu", + "id": "coverbeck", + "joined": "2021-12", + "name": "Charles Overbeck", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/coverbeck/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/coverbeck.json" + }, + { + "id": "afgane", + "joined": "2018-06", + "name": "Enis Afgan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/afgane/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/afgane.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/galaxy-on-dockstore", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "galaxy-interface/galaxy-on-dockstore", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2022-10-27", + "objectives": [ + "What is Dockstore?", + "Why use Dockstore?", + "How to find workflows on Dockstore?", + "How to launch workflows from Dockstore?", + "Getting started with Galaxy workflows on Dockstore", + "Register your Galaxy workflow on Dockstore" + ], + "pageviews": 3890903, + "pub_date": "2022-01-14", + "short_id": "S00061", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "workflows", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Galaxy workflows in Dockstore", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-on-dockstore", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/galaxy-on-dockstore/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/galaxy-on-dockstore/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/galaxy-on-dockstore/slides.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 148, + "visitors": 1513885 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/history/tutorial.json", + "contributions": { + "authorship": [ + "nekrut" + ], + "editing": [ + "polkhe", + "martenson", + "gallardoalba", + "shiltemann", + "bebatut", + "bgruening", + "hexylena" + ] + }, + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "id": "polkhe", + "joined": "2017-09", + "name": "Ekaterina Polkh", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/polkhe/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/polkhe.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "cz", + "email": "marten@bx.psu.edu", + "fediverse": "https://mastodon.world/@martenson", + "fediverse_flavor": "mastodon", + "id": "martenson", + "joined": "2017-09", + "location": { + "country": "USA", + "lat": 37.0, + "lon": -122.0 + }, + "matrix": "martenson:matrix.org", + "name": "Martin \u010cech", + "orcid": "0000-0002-9318-1781", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/martenson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/martenson.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/history", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/history", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "In Galaxy, data is stored in datasets and organized in histories", + "The right pane shows the current history. It displays the name of the history, the tags and annotations assigned to it, and the size of the data in it", + "The datasets are shown differently depending on their status: queued, running, ok, error, or paused", + "The summary view for each dataset can be expanded to show additional information", + "Datasets deleted are hidden from history. They can be restored to the history, or permanently deleted from the server, or purged. Purged files cannot be restored", + "Histories can also be deleted and purged, similar to datasets", + "Datasets can be organized into collections within a history with search and multi-select. Jobs applied to collections use the same settings for each dataset in the collection" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-07-02", + "objectives": [ + "Gain understanding on navigating and manipulating histories" + ], + "pageviews": 5096, + "pub_date": "2017-02-20", + "questions": [ + "How do Galaxy histories work?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2023-05-19", + "galaxy_version": "23.01", + "length": "18M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "C3_HSgbbDWc" + } + ], + "redirect_from": [ + "/topics/galaxy-ui/tutorials/history/tutorial", + "/short/galaxy-interface/history", + "/short/T00150" + ], + "short_id": "T00150", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "histories", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30m", + "title": "Understanding Galaxy history system", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "history", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/history/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/history/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/history/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 161, + "visitors": 3886, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/rstudio/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "email": "tbyhdgs@gmail.com", + "id": "tobyhodges", + "joined": "2019-07", + "name": "Toby Hodges", + "orcid": "0000-0003-1766-456X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tobyhodges/", + "twitter": "tbyhdgs", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tobyhodges.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/rstudio", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "data-science", + "tutorials": [ + "r-basics" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "galaxy-interface/rstudio", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Why it's helpful to be able to work with R interactively within Galaxy" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Launch RStudio in Galaxy" + ], + "pageviews": 6706, + "pub_date": "2019-10-08", + "questions": [ + "How can I manipulate data using R in Galaxy?" + ], + "redirect_from": [ + "/topics/galaxy-ui/tutorials/rstudio/tutorial", + "/short/galaxy-interface/rstudio", + "/short/T00157" + ], + "short_id": "T00157", + "short_tools": [ + "interactive_tool_rstudio" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "analyse", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "3H", + "title": "RStudio in Galaxy", + "tools": [ + "interactive_tool_rstudio" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rstudio", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/rstudio/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/rstudio/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/rstudio/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 125, + "visitors": 4124, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/jupyterlab/tutorial.json", + "contributions": { + "authorship": [ + "annefou" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/jupyterlab", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/jupyterlab", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "How to work with JupyterLab interactively within Galaxy" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2022-10-18", + "objectives": [ + "Launch JupyterLab in Galaxy", + "Start a notebook", + "Import libraries", + "Use get() to import datasets from your history to the notebook", + "Use put() to export datasets from the notebook to your history", + "Save your notebook into your history" + ], + "pageviews": 2642, + "pub_date": "2020-03-05", + "questions": [ + "How can I manipulate data using JupyterLab in Galaxy?", + "How can I start a notebook in JupyterLab?", + "How can I import/export dataset from/to my history to/from the notebook?", + "How can I save my notebook to my history?" + ], + "redirect_from": [ + "/topics/galaxy-ui/tutorials/jupyterlab/tutorial", + "/short/galaxy-interface/jupyterlab", + "/short/T00153" + ], + "short_id": "T00153", + "short_tools": [ + "interactive_tool_jupyter_notebook" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "analyse", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "1H", + "title": "JupyterLab in Galaxy", + "tools": [ + "interactive_tool_jupyter_notebook" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "jupyterlab", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/jupyterlab/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/jupyterlab/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/jupyterlab/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 148, + "visitors": 1537, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "graphicsmagick_image_convert", + "owner": "bgruening", + "revisions": "5376a7767fb3", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: graphicsmagick_image_convert\n owner: bgruening\n revisions: 5376a7767fb3\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-posters/tutorial.json", + "contributions": { + "authorship": [ + "ElectronicBlueberry" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "id": "ElectronicBlueberry", + "joined": "2023-04", + "name": "Laila Los", + "orcid": "0000-0002-2362-9720", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ElectronicBlueberry/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ElectronicBlueberry.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/workflow-posters", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/workflow-posters", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Print ready screenshots", + "Basic image compression" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-02-05", + "objectives": [ + "Create a high resolution image of your Workflow, ready for a poster", + "Learn how to utilize external tools to make high resolution images of your Workflow", + "Learn how to compress high resolution Workflow images to share them in the web" + ], + "pageviews": 76, + "pub_date": "2024-02-05", + "questions": [ + "How can I print or screenshot my Workflow in high resolution for a poster or presentation?", + "How can I share high detail images of my Workflows?" + ], + "requirements": [ + { + "link": "https://www.mozilla.org/en-US/firefox/new/", + "title": "The Firefox Browser (this will not work in Chrome)", + "type": "external" + } + ], + "short_id": "T00405", + "short_tools": [ + "graphicsmagick_image_convert" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "workflows", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "workflows" + ], + "time_estimation": "30M", + "title": "Creating high resolution images of Galaxy Workflows", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/graphicsmagick_image_convert/graphicsmagick_image_convert/1.3.40+galaxy0" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "workflow-posters", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/workflow-posters/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-posters/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/workflow-posters/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 182, + "visitors": 61 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/name-tags/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/name-tags", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/name-tags", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Naming your datasets clearly is good practice, but name tags provide an easier alternative to the amount of effort required to rename 100s of datasets.", + "Name tags allow you to follow the flow of data throughout your history" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn how to set name tags", + "Learn how they are propagated" + ], + "pageviews": 1779, + "pub_date": "2019-04-08", + "questions": [ + "What are name tags or hash tags?", + "How can I use them to keep track of my data?" + ], + "redirect_from": [ + "/topics/galaxy-data-manipulation/tutorials/name-tags/tutorial", + "/short/galaxy-interface/name-tags", + "/short/T00154" + ], + "short_id": "T00154", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "manage", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "20m", + "title": "Name tags for following complex histories", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "name-tags", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/name-tags/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/name-tags/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/name-tags/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 176, + "visitors": 1277, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-rules/tutorial.json", + "contributors": [ + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/upload-rules", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "upload-rules-advanced" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "galaxy-interface/upload-rules", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn about the Rule Based Uploader" + ], + "pageviews": 3832, + "pub_date": "2020-07-04", + "questions": [ + "How to use the rule based uploader to create complex collections" + ], + "recordings": [ + { + "captioners": [ + "assuntad23" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "22M", + "speakers": [ + "assuntad23" + ], + "youtube_id": "1MWHVRWXpyA" + } + ], + "redirect_from": [ + "/topics/galaxy-data-manipulation/tutorials/upload-rules/tutorial", + "/short/galaxy-interface/upload-rules", + "/short/T00160" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + } + ], + "short_id": "T00160", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "upload", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "collections", + "tags" + ], + "time_estimation": "20m", + "title": "Rule Based Uploader", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "upload-rules", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/upload-rules/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-rules/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-rules/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 273, + "visitors": 2735, + "zenodo_link": "https://zenodo.org/records/3263975" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/processing-many-samples-at-once/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "id": "pajanne", + "joined": "2017-09", + "name": "Anne Pajon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pajanne/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pajanne.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/processing-many-samples-at-once", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/processing-many-samples-at-once", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": null, + "pageviews": 1697, + "pub_date": "2016-07-11", + "questions": null, + "redirect_from": [ + "/topics/galaxy-data-manipulation/tutorials/processing-many-samples-at-once/tutorial", + "/short/galaxy-interface/processing-many-samples-at-once", + "/short/T00156" + ], + "short_id": "T00156", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "manage", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "collections" + ], + "time_estimation": "1h", + "title": "Multisample Analysis", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "processing-many-samples-at-once", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/processing-many-samples-at-once/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/processing-many-samples-at-once/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/processing-many-samples-at-once/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 161, + "visitors": 1220, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/search/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/search", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/search", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Searching is easy and powerful", + "It will help you manage large histories with complex analyses" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-16", + "objectives": [ + "Feel confident in searching your history" + ], + "pageviews": 518, + "pub_date": "2020-07-15", + "questions": [ + "How can you find your datasets?", + "How to search by file type?", + "What filters are available to you?" + ], + "short_id": "T00158", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "histories", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "5m", + "title": "Searching Your History", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "search", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/search/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/search/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/search/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 153, + "visitors": 318, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/galaxy-intro-jupyter/tutorial.json", + "contributors": [ + { + "email": "delphine.lariviere@galaxy.org", + "id": "delphine-l", + "joined": "2017-09", + "name": "Delphine Lariviere", + "orcid": "0000-0001-6421-3484", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/delphine-l/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/delphine-l.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/galaxy-intro-jupyter", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/galaxy-intro-jupyter", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Start Jupyter from the Visualize tab or from a dataset", + "Install Libraries with pip or Conda", + "Use get() to import datasets from your history to the notebook", + "Use put() to export datasets from the notebook to your history", + "Save your notebook into your history" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Learn about the Jupyter Interactive Environment" + ], + "pageviews": 2189, + "pub_date": "2018-07-02", + "questions": [ + "How to use a Jupyter Notebook in Galaxy" + ], + "redirect_from": [ + "/topics/galaxy-ui/tutorials/galaxy-intro-jupyter/tutorial", + "/short/galaxy-interface/galaxy-intro-jupyter", + "/short/T00148" + ], + "short_id": "T00148", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "analyse", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30m", + "title": "Use Jupyter notebooks in Galaxy", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-intro-jupyter", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/galaxy-intro-jupyter/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/galaxy-intro-jupyter/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/galaxy-intro-jupyter/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 131, + "visitors": 1617, + "zenodo_link": "https://zenodo.org/record/1185122" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/group-tags/tutorial.json", + "contributors": [ + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/group-tags", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/group-tags", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Group tags allow complex analyses without reshaping or unhiding datasets in a collection" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn how to set group tags", + "Learn how to select group tags in tools" + ], + "pageviews": 3314, + "pub_date": "2019-03-06", + "questions": [ + "What are group tags?", + "How can I use group tags to perform multi-factor analyses with collections" + ], + "redirect_from": [ + "/topics/galaxy-data-manipulation/tutorials/group-tags/tutorial", + "/short/galaxy-interface/group-tags", + "/short/T00149" + ], + "short_id": "T00149", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "manage", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "10m", + "title": "Group tags for complex experimental designs", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "group-tags", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/group-tags/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/group-tags/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/group-tags/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 199, + "visitors": 2412, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/history-to-workflow/tutorial.json", + "contributors": [ + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/history-to-workflow", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/history-to-workflow", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Workflows allow you to easily repeat your analyses on different input datasets", + "Workflows can be automatically extracted from your analysis history", + "You can perform your analysis manually once, then automatically extract the recipe for repeating this analysis on other datasets", + "Workflows capture all the tools and parameter settings needed to perform an analysis", + "Workflows can be edited or created from scratch using the workflow editor" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-02-03", + "objectives": [ + "Learn how to extract a workflow from a Galaxy history", + "Learn how to change a workflow using the workflow editor" + ], + "pageviews": 3344, + "pub_date": "2017-10-18", + "questions": [ + "What is a workflow?", + "How can I create a workflow based on my analysis history?" + ], + "redirect_from": [ + "/topics/galaxy-ui/tutorials/history-to-workflow/tutorial", + "/short/galaxy-interface/history-to-workflow", + "/short/T00151" + ], + "short_id": "T00151", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "workflows", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "workflows" + ], + "time_estimation": "30m", + "title": "Extracting Workflows from Histories", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "history-to-workflow", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/history-to-workflow/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/history-to-workflow/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/history-to-workflow/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 228, + "visitors": 2550, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_call", + "owner": "iuc", + "revisions": "e1461b5c52a0", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "25136a2b0cfe", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_call\n owner: iuc\n revisions: e1461b5c52a0\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 25136a2b0cfe\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/collections/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/collections", + "edam_operation": [ + "Sequence alignment", + "Read mapping", + "Genome indexing", + "Generation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/collections", + "inexact_supported_servers": [ + "GalaxyTrakr", + "HyPhy HIV NGS Tools", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Multiple datasets can be combined in a collection.", + "This significantly simplifies the analysis.", + "This tutorial showed how to (1) create collection, (2) run tools on a collection, (3) combine collection elements into a final analysis results.", + "There is a variety of **Collection operation** tools allowing to perform a variety of transformations." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand and master dataset collections" + ], + "pageviews": 16178, + "pub_date": "2016-09-30", + "questions": [ + "How to manipulate large numbers of datasets at once?" + ], + "recordings": [ + { + "captioners": [ + "delphine-l" + ], + "date": "2023-05-09", + "length": "13M", + "speakers": [ + "delphine-l" + ], + "youtube_id": "uN6nP3I7QLE" + }, + { + "captioners": [ + "annefou", + "mariipia10" + ], + "date": "2021-08-09", + "length": "11M", + "speakers": [ + "nekrut" + ], + "youtube_id": "uZUt9XIHUQo" + } + ], + "redirect_from": [ + "/topics/galaxy-data-manipulation/tutorials/collections/tutorial", + "/short/galaxy-interface/collections", + "/short/T00146" + ], + "short_id": "T00146", + "short_tools": [ + "snpSift_extractFields", + "bwa_mem", + "collapse_dataset", + "lofreq_call" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "manage", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "HyPhy HIV NGS Tools", + "url": "https://galaxy.hyphy.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "collections" + ], + "time_estimation": "30m", + "title": "Using dataset collections", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "collections", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/collections/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/collections/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/collections/tutorial.json" + }, + "version": 19, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 173, + "visitors": 11542, + "zenodo_link": "https://doi.org/10.5281/zenodo.5119008" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-rules-advanced/tutorial.json", + "contributors": [ + { + "email": "jmchilton@gmail.com", + "id": "jmchilton", + "joined": "2017-09", + "matrix": "jmchilton:matrix.org", + "name": "John Chilton", + "orcid": "0000-0002-6794-0756", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jmchilton/", + "twitter": "jmchilton", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jmchilton.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/upload-rules-advanced", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/upload-rules-advanced", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn even more about the Rule Based Uploader" + ], + "pageviews": 816, + "pub_date": "2018-05-25", + "questions": [ + "How to use the rule based uploader to create complex collections" + ], + "recordings": [ + { + "captioners": [ + "assuntad23" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "22M", + "speakers": [ + "assuntad23" + ], + "youtube_id": "1MWHVRWXpyA" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections", + "upload-rules" + ], + "type": "internal" + } + ], + "short_id": "T00161", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "upload", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "collections", + "tags" + ], + "time_estimation": "20m", + "title": "Rule Based Uploader: Advanced", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "upload-rules-advanced", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/upload-rules-advanced/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-rules-advanced/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/upload-rules-advanced/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 365, + "visitors": 592, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/download-delete-data/tutorial.json", + "contributors": [ + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/download-delete-data", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/download-delete-data", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "There are three ways to download data - by individual files, collections of files or entire histories", + "Data deletion in Galaxy is a two step process, deletion followed by purging from disk" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Have a greater knowledge of how Galaxy handles data downloads and deletions", + "Be able to successfully download and delete their own data" + ], + "pageviews": 8319, + "pub_date": "2019-10-17", + "questions": [ + "How can I efficiently download my data from Galaxy once I've completed my analyses?", + "How do I delete old data to make more room in my quota?" + ], + "redirect_from": [ + "/topics/galaxy-data-manipulation/tutorials/download-delete-data/tutorial", + "/short/galaxy-interface/download-delete-data", + "/short/T00147" + ], + "short_id": "T00147", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "cleanup", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "20M", + "title": "Downloading and Deleting Data in Galaxy", + "tools": [], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "download-delete-data", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/download-delete-data/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/download-delete-data/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/download-delete-data/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 92, + "visitors": 6149, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "prokka", + "owner": "crs4", + "revisions": "bf68eb663bc3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "prokka", + "owner": "crs4", + "revisions": "111884f0d912", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: prokka\n owner: crs4\n revisions: bf68eb663bc3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: prokka\n owner: crs4\n revisions: 111884f0d912\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.json", + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "id": "tseemann", + "joined": "2018-06", + "name": "Torsten Seemann", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tseemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tseemann.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + } + ], + "dir": "topics/genome-annotation/tutorials/annotation-with-prokka", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0623", + "topic_0080" + ], + "edam_operation": [ + "Genome visualisation", + "Genome annotation", + "Gene prediction", + "Coding region prediction" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Gene and protein families", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "apollo" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/annotation-with-prokka", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Prokka is a useful tool to annotate a bacterial genome.", + "JBrowse can be used to inspect the annotation of a genome." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Load genome into Galaxy", + "Annotate genome with Prokka", + "View annotations in JBrowse" + ], + "pageviews": 5754405, + "pub_date": "2018-03-06", + "questions": [ + "How can we annotate a bacterial genome?", + "How can we visualize annotated genomic features?" + ], + "recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "20M", + "speakers": [ + "abretaud" + ], + "youtube_id": "B8pIQZPf21Y" + } + ], + "short_id": "T00168", + "short_tools": [ + "prokka", + "jbrowse" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "3M", + "speakers": [ + "awspolly" + ], + "youtube_id": "eqHy-Cc7k4Q" + } + ], + "subtopic": "prokaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "prokaryote", + "microgalaxy", + "jbrowse1" + ], + "time_estimation": "1h", + "title": "Genome annotation with Prokka", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "annotation-with-prokka", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.json" + }, + "version": 25, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 260, + "visitors": 2079352, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + }, + { + "class": "Person", + "identifier": "0000-0001-6046-610X", + "name": "Torsten Seemann" + }, + { + "class": "Person", + "identifier": "0000-0002-6100-4385", + "name": "Simon Gladman" + } + ], + "description": "Genome annotation with Prokka", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncontigs.fasta\"]\n 1[label=\"Prokka\"]\n 0 -> 1 [label=\"output\"]\n ka336c364e69e47ebace6a7fe46d285fe[color=lightseagreen,label=\"Output\\ngff_output\"]\n 1 -> ka336c364e69e47ebace6a7fe46d285fe\n 2[label=\"JBrowse\"]\n 1 -> 2 [label=\"out_fna\"]\n 1 -> 2 [label=\"out_gff\"]\n}", + "history": [ + { + "hash": "70a555355ed2ebc563a4388cd1da50f7f1a5952f", + "message": "Update topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "num": 10, + "short_hash": "70a555355", + "unix": "1715074163" + }, + { + "hash": "466b451a082b7d2d5e60777a45289874bbbde721", + "message": "Add creators and license to workflow", + "num": 9, + "short_hash": "466b451a0", + "unix": "1714990318" + }, + { + "hash": "499e257dee992b4645adf4c79844b8cc89e68c24", + "message": "update prokka workflow", + "num": 8, + "short_hash": "499e257de", + "unix": "1714456964" + }, + { + "hash": "56413bab75ab75be269668d70e3929e01bbaa5fb", + "message": "Add workflow test.", + "num": 7, + "short_hash": "56413bab7", + "unix": "1603310943" + }, + { + "hash": "a3829a12322232647926a394b1ecae3af17a858b", + "message": "Update Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "num": 6, + "short_hash": "a3829a123", + "unix": "1580832292" + }, + { + "hash": "bab7ab72c6a4436a3ac3e6745b364696332399b5", + "message": "prokka@1.14.5 jbrowse@1.16.5+galaxy7", + "num": 5, + "short_hash": "bab7ab72c", + "unix": "1580433748" + }, + { + "hash": "c69f09dd0cb211d5621af293fe400892e343f78e", + "message": "Adding tag", + "num": 4, + "short_hash": "c69f09dd0", + "unix": "1579796672" + }, + { + "hash": "920732bc2295d6120b075934b758290ad56f5759", + "message": "Updated prokka workflow to newest tool versions", + "num": 3, + "short_hash": "920732bc2", + "unix": "1579634888" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "b9a6072964bce056112a36326600e4c80bd133ec", + "message": "move tutorials to new topic", + "num": 1, + "short_hash": "b9a607296", + "unix": "1528898987" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "contigs.fasta" + } + ], + "label": "contigs.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 76.845458984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "79e73b85-8d44-413f-83b7-c0e668ec963c", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ncontigs.fasta\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Prokka\"];\n 0 -->|output| 1;\n a336c364-e69e-47eb-ace6-a7fe46d285fe[\"Output\\ngff_output\"];\n 1 --> a336c364-e69e-47eb-ace6-a7fe46d285fe;\n style a336c364-e69e-47eb-ace6-a7fe46d285fe stroke:#2c3143,stroke-width:4px;\n 2[\"JBrowse\"];\n 1 -->|out_fna| 2;\n 1 -->|out_gff| 2;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Genome Annotation with Prokka ", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Prokka", + "outputs": [ + { + "name": "out_gff", + "type": "gff" + }, + { + "name": "out_gbk", + "type": "txt" + }, + { + "name": "out_fna", + "type": "fasta" + }, + { + "name": "out_faa", + "type": "fasta" + }, + { + "name": "out_ffn", + "type": "fasta" + }, + { + "name": "out_sqn", + "type": "asn1" + }, + { + "name": "out_fsa", + "type": "fasta" + }, + { + "name": "out_tbl", + "type": "txt" + }, + { + "name": "out_err", + "type": "txt" + }, + { + "name": "out_txt", + "type": "txt" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 254.117919921875, + "top": 0.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "tool_shed_repository": { + "changeset_revision": "bf68eb663bc3", + "name": "prokka", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"__workflow_invocation_uuid__\": \"5dc31c9443c711eabead005056ba55fb\", \"centre\": \"V\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"compliant\": {\"compliant_select\": \"no\", \"__current_case__\": 0, \"addgenes\": false, \"mincontig\": \"200\"}, \"evalue\": \"1e-06\", \"fast\": false, \"genus\": \"Staphylococcus\", \"gffver\": \"3\", \"increment\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"kingdom\": {\"kingdom_select\": \"Bacteria\", \"__current_case__\": 1, \"gcode\": \"11\"}, \"locustag\": \"P\", \"metagenome\": false, \"norrna\": false, \"notrna\": false, \"outputs\": [\"gff\", \"gbk\", \"fna\", \"faa\", \"ffn\", \"sqn\", \"fsa\", \"tbl\", \"err\", \"txt\"], \"plasmid\": \"\", \"proteins\": null, \"rfam\": false, \"species\": \"aureus\", \"strain\": \"\", \"usegenus\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.14.5", + "type": "tool", + "uuid": "28efec53-71bb-4aaa-993d-03b78d493570", + "when": null, + "workflow_outputs": [ + { + "label": "gff_output", + "output_name": "out_gff", + "uuid": "a336c364-e69e-47eb-ace6-a7fe46d285fe" + } + ] + } + ], + "parent_id": "genome-annotation/annotation-with-prokka", + "path": "topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "tags": [ + "genome-annotation", + "GTN" + ], + "test_results": null, + "tests": true, + "title": "Genome Annotation with Prokka ", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-prokka/versions/galaxy-workflow-workflow-constructed-from-history--prokka-workflow-", + "tutorial_id": "annotation-with-prokka", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.html", + "version": 6, + "wfid": "genome-annotation-annotation-with-prokka", + "wfname": "galaxy-workflow-workflow-constructed-from-history--prokka-workflow-", + "workflow": "Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "workflowhub_id": "1186" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1156405" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clustalw", + "owner": "devteam", + "revisions": "d6694932c5e0", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chromeister", + "owner": "iuc", + "revisions": "e483be1014b6", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gecko", + "owner": "iuc", + "revisions": "5efbd15675ca", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clustalw\n owner: devteam\n revisions: d6694932c5e0\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chromeister\n owner: iuc\n revisions: e483be1014b6\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gecko\n owner: iuc\n revisions: 5efbd15675ca\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/hpc-for-lsgc/tutorial.json", + "contributors": [ + { + "elixir_node": "es", + "email": "estebanpw@uma.es", + "id": "estebanpw", + "joined": "2020-11", + "name": "Esteban Perez-Wohlfeil", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/estebanpw/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/estebanpw.json" + } + ], + "dir": "topics/genome-annotation/tutorials/hpc-for-lsgc", + "edam_operation": [ + "Multiple sequence alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/hpc-for-lsgc", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": 10229, + "mermaid": false + }, + "key_points": [ + "We learnt that sequence comparison is a demanding problem and that there are several ways to approach it", + "We learnt how to run sequence comparisons in Galaxy with different levels of precision, particularly fine-grained and coarse-grained sequence comparison using GECKO and CHROMEISTER for smaller and larger sequences, respectively", + "We learnt how to post-process our comparison by extracting alignments, fine-tuning with multiple sequence alignment, detecting rearrangements, etc." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Learn the basics of pairwise sequence comparison", + "Learn how to run different tools in Galaxy to perform sequence comparison at fine and coarse-grained levels", + "Learn how to post-process your sequence comparisons" + ], + "pageviews": 5565092, + "pub_date": "2021-02-08", + "questions": [ + "How can we run pairwise genome comparisons using Galaxy?", + "How can we run massive chromosome comparisons in Galaxy?", + "How can we quickly visualize genome comparisons in Galaxy?" + ], + "requirements": [ + { + "topic_name": "introduction", + "tutorials": [ + "galaxy-intro-101" + ], + "type": "internal" + } + ], + "short_id": "T00176", + "short_tools": [ + "clustalw", + "gecko", + "tp_awk_tool", + "chromeister" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "plants", + "prokaryote" + ], + "time_estimation": "2H", + "title": "From small to large-scale genome comparison", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a", + "toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "hpc-for-lsgc", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/hpc-for-lsgc/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/hpc-for-lsgc/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/hpc-for-lsgc/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 282, + "visitors": 2016344, + "workflows": [ + { + "creators": [], + "description": "A workflow designed to compare chromosomes and study large-scale rearrangements using CHROMEISTER", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQuery chromosome\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference chromosome\"]\n 2[label=\"Chromeister\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n k58cf0c0c92004ba497276d908ccdfa9a[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Detected events\"]\n 2 -> k58cf0c0c92004ba497276d908ccdfa9a\n k2afd0e7cd1cf4bfdbec66cc237ff3e2c[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Comparison metainformation\"]\n 2 -> k2afd0e7cd1cf4bfdbec66cc237ff3e2c\n kc248576c1c39416c99d040c520e3da67[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Comparison dotplot\"]\n 2 -> kc248576c1c39416c99d040c520e3da67\n k5f9aad77f9ee4932ab22bb5fd83f416c[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Comparison matrix\"]\n 2 -> k5f9aad77f9ee4932ab22bb5fd83f416c\n kdea450c2712643dcaf7a9f2b704c76dd[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Comparison score\"]\n 2 -> kdea450c2712643dcaf7a9f2b704c76dd\n k9a03f72255884a3fb70e0ec9979c16dd[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Detected events plot\"]\n 2 -> k9a03f72255884a3fb70e0ec9979c16dd\n}", + "history": [ + { + "hash": "ae7dbf55cc79f67b32661f650f26d5baad4779b3", + "message": "added workflow for chromeister", + "num": 1, + "short_hash": "ae7dbf55c", + "unix": "1612266607" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query chromosome" + } + ], + "label": "Query chromosome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 345.1999969482422, + "height": 82.19999694824219, + "left": 446, + "right": 646, + "top": 263, + "width": 200, + "x": 446, + "y": 263 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "fdde703b-e59f-403b-be56-28b4fde66d17", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e6b6ae7f-73c3-450e-a997-103138788bc6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference chromosome" + } + ], + "label": "Reference chromosome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 445.1999969482422, + "height": 82.19999694824219, + "left": 448, + "right": 648, + "top": 363, + "width": 200, + "x": 448, + "y": 363 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "43a48ede-1c2e-4b0d-bf74-da212443a7de", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1007eb1e-be5f-4f22-9d42-046f5e695dc4" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQuery chromosome\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference chromosome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Chromeister\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 58cf0c0c-9200-4ba4-9727-6d908ccdfa9a[\"Output\\nChromeister on input dataset(s): Detected events\"];\n 2 --> 58cf0c0c-9200-4ba4-9727-6d908ccdfa9a;\n style 58cf0c0c-9200-4ba4-9727-6d908ccdfa9a stroke:#2c3143,stroke-width:4px;\n 2afd0e7c-d1cf-4bfd-bec6-6cc237ff3e2c[\"Output\\nChromeister on input dataset(s): Comparison metainformation\"];\n 2 --> 2afd0e7c-d1cf-4bfd-bec6-6cc237ff3e2c;\n style 2afd0e7c-d1cf-4bfd-bec6-6cc237ff3e2c stroke:#2c3143,stroke-width:4px;\n c248576c-1c39-416c-99d0-40c520e3da67[\"Output\\nChromeister on input dataset(s): Comparison dotplot\"];\n 2 --> c248576c-1c39-416c-99d0-40c520e3da67;\n style c248576c-1c39-416c-99d0-40c520e3da67 stroke:#2c3143,stroke-width:4px;\n 5f9aad77-f9ee-4932-ab22-bb5fd83f416c[\"Output\\nChromeister on input dataset(s): Comparison matrix\"];\n 2 --> 5f9aad77-f9ee-4932-ab22-bb5fd83f416c;\n style 5f9aad77-f9ee-4932-ab22-bb5fd83f416c stroke:#2c3143,stroke-width:4px;\n dea450c2-7126-43dc-af7a-9f2b704c76dd[\"Output\\nChromeister on input dataset(s): Comparison score\"];\n 2 --> dea450c2-7126-43dc-af7a-9f2b704c76dd;\n style dea450c2-7126-43dc-af7a-9f2b704c76dd stroke:#2c3143,stroke-width:4px;\n 9a03f722-5588-4a3f-b70e-0ec9979c16dd[\"Output\\nChromeister on input dataset(s): Detected events plot\"];\n 2 --> 9a03f722-5588-4a3f-b70e-0ec9979c16dd;\n style 9a03f722-5588-4a3f-b70e-0ec9979c16dd stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "CHROMEISTER chromosome comparison", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query chromosome" + } + ], + "label": "Query chromosome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 345.1999969482422, + "height": 82.19999694824219, + "left": 446, + "right": 646, + "top": 263, + "width": 200, + "x": 446, + "y": 263 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "fdde703b-e59f-403b-be56-28b4fde66d17", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e6b6ae7f-73c3-450e-a997-103138788bc6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference chromosome" + } + ], + "label": "Reference chromosome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 445.1999969482422, + "height": 82.19999694824219, + "left": 448, + "right": 648, + "top": 363, + "width": 200, + "x": 448, + "y": 363 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "43a48ede-1c2e-4b0d-bf74-da212443a7de", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1007eb1e-be5f-4f22-9d42-046f5e695dc4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a", + "errors": null, + "id": 2, + "input_connections": { + "db": { + "id": 1, + "output_name": "output" + }, + "query": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Chromeister", + "name": "db" + }, + { + "description": "runtime parameter for tool Chromeister", + "name": "query" + } + ], + "label": null, + "name": "Chromeister", + "outputs": [ + { + "name": "output", + "type": "txt" + }, + { + "name": "output_imagen", + "type": "png" + }, + { + "name": "output_csv", + "type": "csv" + }, + { + "name": "output_events", + "type": "txt" + }, + { + "name": "output_events_png", + "type": "png" + }, + { + "name": "output_score", + "type": "txt" + } + ], + "position": { + "bottom": 793.4000244140625, + "height": 520.4000244140625, + "left": 851, + "right": 1051, + "top": 273, + "width": 200, + "x": 851, + "y": 273 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a", + "tool_shed_repository": { + "changeset_revision": "a6d1f83c46b4", + "name": "chromeister", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"db\": {\"__class__\": \"RuntimeValue\"}, \"diffuse\": \"4\", \"dimension\": \"1000\", \"grid\": \"true\", \"kmer\": \"32\", \"pngevents\": \"true\", \"query\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.a", + "type": "tool", + "uuid": "79507815-b059-4f21-b74e-8e390fbb4bf2", + "workflow_outputs": [ + { + "label": "Chromeister on input dataset(s): Detected events", + "output_name": "output_events", + "uuid": "58cf0c0c-9200-4ba4-9727-6d908ccdfa9a" + }, + { + "label": "Chromeister on input dataset(s): Comparison metainformation", + "output_name": "output_csv", + "uuid": "2afd0e7c-d1cf-4bfd-bec6-6cc237ff3e2c" + }, + { + "label": "Chromeister on input dataset(s): Comparison dotplot", + "output_name": "output_imagen", + "uuid": "c248576c-1c39-416c-99d0-40c520e3da67" + }, + { + "label": "Chromeister on input dataset(s): Comparison matrix", + "output_name": "output", + "uuid": "5f9aad77-f9ee-4932-ab22-bb5fd83f416c" + }, + { + "label": "Chromeister on input dataset(s): Comparison score", + "output_name": "output_score", + "uuid": "dea450c2-7126-43dc-af7a-9f2b704c76dd" + }, + { + "label": "Chromeister on input dataset(s): Detected events plot", + "output_name": "output_events_png", + "uuid": "9a03f722-5588-4a3f-b70e-0ec9979c16dd" + } + ] + } + ], + "parent_id": "genome-annotation/hpc-for-lsgc", + "path": "topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/CHROMEISTER_chromosome_comparison.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "CHROMEISTER chromosome comparison", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-hpc-for-lsgc/versions/chromeister-chromosome-comparison", + "tutorial_id": "hpc-for-lsgc", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/CHROMEISTER_chromosome_comparison.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/CHROMEISTER_chromosome_comparison.html", + "version": 1, + "wfid": "genome-annotation-hpc-for-lsgc", + "wfname": "chromeister-chromosome-comparison", + "workflow": "CHROMEISTER_chromosome_comparison.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a" + ], + "workflowhub_id": "1156" + }, + { + "creators": [], + "description": "A workflow designed to compare two sequences using GECKO, extract repeats and perform multiple sequence alignment", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQuery sequence\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference sequence\"]\n 2[label=\"Gecko\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n k6275abc1d74e45a7b8ab3c88426cc488[color=lightseagreen,label=\"Output\\nGecko on input dataset(s): CSV\"]\n 2 -> k6275abc1d74e45a7b8ab3c88426cc488\n 3[label=\"Text reformatting\"]\n 2 -> 3 [label=\"alignments2\"]\n 4[label=\"ClustalW\"]\n 3 -> 4 [label=\"outfile\"]\n kd63c1172a5914bf6b307052ca19e7098[color=lightseagreen,label=\"Output\\nClustalW on input dataset(s): clustal\"]\n 4 -> kd63c1172a5914bf6b307052ca19e7098\n kd7758e3a522d44398c9a03f784284ebd[color=lightseagreen,label=\"Output\\nClustalW on input dataset(s): dnd\"]\n 4 -> kd7758e3a522d44398c9a03f784284ebd\n}", + "history": [ + { + "hash": "ae7dbf55cc79f67b32661f650f26d5baad4779b3", + "message": "added workflow for chromeister", + "num": 2, + "short_hash": "ae7dbf55c", + "unix": "1612266607" + }, + { + "hash": "42c257d5c78780b24fb384627c26488a90eeda4f", + "message": "changed topic to genome-annotation", + "num": 1, + "short_hash": "42c257d5c", + "unix": "1612264525" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query sequence" + } + ], + "label": "Query sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 473.1999969482422, + "height": 82.19999694824219, + "left": 481, + "right": 681, + "top": 391, + "width": 200, + "x": 481, + "y": 391 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "63490a28-7edf-4e4f-8697-5cbf621b0768", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f1c8c4bf-126f-4c4b-8e5a-512cd0d270cd" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference sequence" + } + ], + "label": "Reference sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 598.1999969482422, + "height": 82.19999694824219, + "left": 482, + "right": 682, + "top": 516, + "width": 200, + "x": 482, + "y": 516 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "f49e63f9-977e-4a1f-bf43-9a50cfa14ee3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0867afff-2445-4a26-b21c-2476606adb88" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQuery sequence\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference sequence\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Gecko\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 6275abc1-d74e-45a7-b8ab-3c88426cc488[\"Output\\nGecko on input dataset(s): CSV\"];\n 2 --> 6275abc1-d74e-45a7-b8ab-3c88426cc488;\n style 6275abc1-d74e-45a7-b8ab-3c88426cc488 stroke:#2c3143,stroke-width:4px;\n 3[\"Text reformatting\"];\n 2 -->|alignments2| 3;\n 4[\"ClustalW\"];\n 3 -->|outfile| 4;\n d63c1172-a591-4bf6-b307-052ca19e7098[\"Output\\nClustalW on input dataset(s): clustal\"];\n 4 --> d63c1172-a591-4bf6-b307-052ca19e7098;\n style d63c1172-a591-4bf6-b307-052ca19e7098 stroke:#2c3143,stroke-width:4px;\n d7758e3a-522d-4439-8c9a-03f784284ebd[\"Output\\nClustalW on input dataset(s): dnd\"];\n 4 --> d7758e3a-522d-4439-8c9a-03f784284ebd;\n style d7758e3a-522d-4439-8c9a-03f784284ebd stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GECKO pairwise comparison", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query sequence" + } + ], + "label": "Query sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 473.1999969482422, + "height": 82.19999694824219, + "left": 481, + "right": 681, + "top": 391, + "width": 200, + "x": 481, + "y": 391 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "63490a28-7edf-4e4f-8697-5cbf621b0768", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f1c8c4bf-126f-4c4b-8e5a-512cd0d270cd" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference sequence" + } + ], + "label": "Reference sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 598.1999969482422, + "height": 82.19999694824219, + "left": 482, + "right": 682, + "top": 516, + "width": 200, + "x": 482, + "y": 516 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "f49e63f9-977e-4a1f-bf43-9a50cfa14ee3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0867afff-2445-4a26-b21c-2476606adb88" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2", + "errors": null, + "id": 2, + "input_connections": { + "db": { + "id": 1, + "output_name": "output" + }, + "query": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Gecko", + "outputs": [ + { + "name": "csv_output1", + "type": "csv" + }, + { + "name": "alignments2", + "type": "txt" + } + ], + "position": { + "bottom": 709.8000030517578, + "height": 194.8000030517578, + "left": 841, + "right": 1041, + "top": 515, + "width": 200, + "x": 841, + "y": 515 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2", + "tool_shed_repository": { + "changeset_revision": "5efbd15675ca", + "name": "gecko", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"db\": {\"__class__\": \"ConnectedValue\"}, \"kmer\": \"16\", \"minlen\": \"50\", \"options\": {\"selection_mode\": \"alignments\", \"__current_case__\": 0}, \"query\": {\"__class__\": \"ConnectedValue\"}, \"similarity\": \"60\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2", + "type": "tool", + "uuid": "217b825b-dfa8-4443-95cb-ea55dd499397", + "workflow_outputs": [ + { + "label": "Gecko on input dataset(s): CSV", + "output_name": "csv_output1", + "uuid": "6275abc1-d74e-45a7-b8ab-3c88426cc488" + }, + { + "label": null, + "output_name": "alignments2", + "uuid": "643f73a5-9648-4b78-8b39-4643a0f4438a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 3, + "input_connections": { + "infile": { + "id": 2, + "output_name": "alignments2" + } + }, + "inputs": [], + "label": null, + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 740.6000061035156, + "height": 113.60000610351562, + "left": 1162, + "right": 1362, + "top": 627, + "width": 200, + "x": 1162, + "y": 627 + }, + "post_job_actions": { + "ChangeDatatypeActionoutfile": { + "action_arguments": { + "newtype": "fasta" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"BEGIN{FS=\\\" \\\"} /@\\\\(196[0-9][0-9]/ { printf(\\\">sequence%s%s\\\\n\\\", $(NF-1), $NF); getline; while(substr($0,1,1) != \\\">\\\"){ if(substr($0,1,1) ==\\\"Y\\\"){ print $2; } getline; } } \", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "ac13faf0-b6dc-48fa-b5b4-31fec9a4733f", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "789a050e-0ab3-4296-b64d-9b7ad67af768" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "ClustalW", + "outputs": [ + { + "name": "output", + "type": "clustal" + }, + { + "name": "dnd", + "type": "nhx" + } + ], + "position": { + "bottom": 864.8000030517578, + "height": 184.8000030517578, + "left": 1536, + "right": 1736, + "top": 680, + "width": 200, + "x": 1536, + "y": 680 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "tool_shed_repository": { + "changeset_revision": "d6694932c5e0", + "name": "clustalw", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dnarna\": \"DNA\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"out_order\": \"ALIGNED\", \"outcontrol\": {\"outform\": \"clustal\", \"__current_case__\": 2, \"out_seqnos\": \"false\"}, \"range\": {\"mode\": \"complete\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1", + "type": "tool", + "uuid": "b95c1c44-a967-47fd-a85c-3a3121163486", + "workflow_outputs": [ + { + "label": "ClustalW on input dataset(s): clustal", + "output_name": "output", + "uuid": "d63c1172-a591-4bf6-b307-052ca19e7098" + }, + { + "label": "ClustalW on input dataset(s): dnd", + "output_name": "dnd", + "uuid": "d7758e3a-522d-4439-8c9a-03f784284ebd" + } + ] + } + ], + "parent_id": "genome-annotation/hpc-for-lsgc", + "path": "topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/GECKO_pairwise_comparison.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "GECKO pairwise comparison", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-hpc-for-lsgc/versions/gecko-pairwise-comparison", + "tutorial_id": "hpc-for-lsgc", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/GECKO_pairwise_comparison.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/GECKO_pairwise_comparison.html", + "version": 1, + "wfid": "genome-annotation-hpc-for-lsgc", + "wfname": "gecko-pairwise-comparison", + "workflow": "GECKO_pairwise_comparison.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2" + ], + "workflowhub_id": "1160" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4485547" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "antismash", + "owner": "bgruening", + "revisions": "bc88856eddab", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chemfp", + "owner": "bgruening", + "revisions": "73de2fe4bf92", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "natural_product_likeness", + "owner": "bgruening", + "revisions": "6052dd3fa475", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_remduplicates", + "owner": "bgruening", + "revisions": "b2569e22b40c", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qed", + "owner": "bgruening", + "revisions": "52a8d34dd08f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "simsearch", + "owner": "bgruening", + "revisions": "0892f7ced10c", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cpt_gbk_to_gff", + "owner": "cpt", + "revisions": "a921d6148d88", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bp_genbank2gff3", + "owner": "iuc", + "revisions": "11c3eb512633", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_acc_download", + "owner": "iuc", + "revisions": "e063168e0a81", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: antismash\n owner: bgruening\n revisions: bc88856eddab\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chemfp\n owner: bgruening\n revisions: 73de2fe4bf92\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: natural_product_likeness\n owner: bgruening\n revisions: 6052dd3fa475\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_remduplicates\n owner: bgruening\n revisions: b2569e22b40c\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qed\n owner: bgruening\n revisions: 52a8d34dd08f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: simsearch\n owner: bgruening\n revisions: '0892f7ced10c'\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cpt_gbk_to_gff\n owner: cpt\n revisions: a921d6148d88\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bp_genbank2gff3\n owner: iuc\n revisions: 11c3eb512633\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_acc_download\n owner: iuc\n revisions: e063168e0a81\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/secondary-metabolite-discovery/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + } + ], + "dir": "topics/genome-annotation/tutorials/secondary-metabolite-discovery", + "draft": true, + "edam_operation": [ + "Gene prediction", + "Service invocation", + "Data handling", + "Differential gene expression analysis", + "Sequence clustering" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/secondary-metabolite-discovery", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Gene cluster prediction that can be performed for any assembly or genome of microorganisms (procaryotes and fungi).", + "Bridging of gene annotation and cheminformatics.", + "Usage of custom script to bridge workflow steps." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-21", + "objectives": [ + "Gene cluster prediction using antiSMAHS.", + "Extraction of gene cluster products using a custom script.", + "Query of the products in compound libraries using cheminformatic tools." + ], + "pageviews": 233, + "pub_date": "2024-02-21", + "questions": [ + "How to discover secondary metabolites produced by microorganisms ?", + "How to identify the discovered secondary metabolites in compound libraries ?", + "How to bridge workflow steps using custom scripts ?" + ], + "short_id": "T00420", + "short_tools": [ + "ctb_silicos_qed", + "interactive_tool_jupyter_notebook", + "tp_awk_tool", + "ctb_np-likeness-calculator", + "antismash", + "ctb_simsearch", + "edu.tamu.cpt.gff3.customGbkToGff", + "ncbi_acc_download", + "Remove beginning1", + "bp_genbank2gff3", + "collapse_dataset", + "openbabel_remDuplicates", + "ctb_chemfp_mol2fps" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "3H", + "title": "Secondary metabolite discovery", + "tools": [ + "Remove beginning1", + "interactive_tool_jupyter_notebook", + "toolshed.g2.bx.psu.edu/repos/bgruening/antismash/antismash/6.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_mol2fps/1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/natural_product_likeness/ctb_np-likeness-calculator/2.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_remduplicates/openbabel_remDuplicates/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/simsearch/ctb_simsearch/0.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/cpt/cpt_gbk_to_gff/edu.tamu.cpt.gff3.customGbkToGff/20.1.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bp_genbank2gff3/bp_genbank2gff3/1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_acc_download/ncbi_acc_download/0.2.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "secondary-metabolite-discovery", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/secondary-metabolite-discovery/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/secondary-metabolite-discovery/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/secondary-metabolite-discovery/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 51, + "visitors": 179, + "workflows": [ + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nQuery Genomes\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nJupyter Notebook Genbank2Features\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTarget Molecules Natural Compound Library\"]\n 3[label=\"NCBI Accession Download\"]\n 0 -> 3 [label=\"output\"]\n kfaecdec3711d43babb9138a4b4b3932d[color=lightseagreen,label=\"Output\\nNCBI Accession Download on input dataset(s): Log\"]\n 3 -> kfaecdec3711d43babb9138a4b4b3932d\n kc8857c6fec994d298c98be7a63a9f029[color=lightseagreen,label=\"Output\\nNCBI Accession Download on input dataset(s): Downloaded Files\"]\n 3 -> kc8857c6fec994d298c98be7a63a9f029\n 4[label=\"Molecule to fingerprint\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Antismash\"]\n 3 -> 5 [label=\"output\"]\n kcc813ad7f4234cb8ba798201abab206a[color=lightseagreen,label=\"Output\\nAntismash on input dataset(s): HTML report\"]\n 5 -> kcc813ad7f4234cb8ba798201abab206a\n 6[label=\"Collapse clusters in one Genbank entry\"]\n 5 -> 6 [label=\"genbank\"]\n 7[label=\"Extract SMILES qualifiers\"]\n 1 -> 7 [label=\"output\"]\n 6 -> 7 [label=\"output\"]\n 8[label=\"Convert table to smi format\"]\n 7 -> 8 [label=\"output_collection\"]\n 9[label=\"Remove beginning\"]\n 8 -> 9 [label=\"outfile\"]\n 10[label=\"Remove duplicated molecules\"]\n 9 -> 10 [label=\"out_file1\"]\n 11[label=\"Molecule to fingerprint\"]\n 10 -> 11 [label=\"outfile\"]\n 12[label=\"Natural Product\"]\n 10 -> 12 [label=\"outfile\"]\n 13[label=\"Drug-likeness\"]\n 10 -> 13 [label=\"outfile\"]\n 14[label=\"Similarity Search\"]\n 11 -> 14 [label=\"outfile\"]\n 4 -> 14 [label=\"outfile\"]\n}", + "history": [ + { + "hash": "af81c1a8eee9601fc595b636e052099a41c98493", + "message": "init", + "num": 1, + "short_hash": "af81c1a8e", + "unix": "1707812500" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query Genomes" + } + ], + "label": "Query Genomes", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.0, + "top": 138.68778864733008 + }, + "tool_id": null, + "tool_state": "{\"default\": \"AL645882.2\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "34c92bcf-3ff2-4364-8dd8-0320ea449c09", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Jupyter Notebook Genbank2Features" + } + ], + "label": "Jupyter Notebook Genbank2Features", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1000.13886850544, + "top": 967.9040340744108 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5abb2d68-5c14-43af-9878-bf2b51bda3c5", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Target Molecules (Natural Compound Library)" + } + ], + "label": "Target Molecules (Natural Compound Library)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 999.7029249019243, + "top": 1102.574230607614 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "41f458be-660b-40f7-abef-c57489b3099c", + "when": null, + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nQuery Genomes\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nJupyter Notebook Genbank2Features\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTarget Molecules Natural Compound Library\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"NCBI Accession Download\"];\n 0 -->|output| 3;\n faecdec3-711d-43ba-bb91-38a4b4b3932d[\"Output\\nNCBI Accession Download on input dataset(s): Log\"];\n 3 --> faecdec3-711d-43ba-bb91-38a4b4b3932d;\n style faecdec3-711d-43ba-bb91-38a4b4b3932d stroke:#2c3143,stroke-width:4px;\n c8857c6f-ec99-4d29-8c98-be7a63a9f029[\"Output\\nNCBI Accession Download on input dataset(s): Downloaded Files\"];\n 3 --> c8857c6f-ec99-4d29-8c98-be7a63a9f029;\n style c8857c6f-ec99-4d29-8c98-be7a63a9f029 stroke:#2c3143,stroke-width:4px;\n 4[\"Molecule to fingerprint\"];\n 2 -->|output| 4;\n 5[\"Antismash\"];\n 3 -->|output| 5;\n cc813ad7-f423-4cb8-ba79-8201abab206a[\"Output\\nAntismash on input dataset(s): HTML report\"];\n 5 --> cc813ad7-f423-4cb8-ba79-8201abab206a;\n style cc813ad7-f423-4cb8-ba79-8201abab206a stroke:#2c3143,stroke-width:4px;\n 6[\"Collapse clusters in one Genbank entry\"];\n 5 -->|genbank| 6;\n 7[\"Extract SMILES qualifiers\"];\n 1 -->|output| 7;\n 6 -->|output| 7;\n 8[\"Convert table to smi format\"];\n 7 -->|output_collection| 8;\n 9[\"Remove beginning\"];\n 8 -->|outfile| 9;\n 10[\"Remove duplicated molecules\"];\n 9 -->|out_file1| 10;\n 11[\"Molecule to fingerprint\"];\n 10 -->|outfile| 11;\n 12[\"Natural Product\"];\n 10 -->|outfile| 12;\n 13[\"Drug-likeness\"];\n 10 -->|outfile| 13;\n 14[\"Similarity Search\"];\n 11 -->|outfile| 14;\n 4 -->|outfile| 14;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Gene Cluster Product Similarity Search ", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_acc_download/ncbi_acc_download/0.2.8+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "query_source|accession_list": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NCBI Accession Download", + "outputs": [ + { + "name": "output", + "type": "input" + }, + { + "name": "error_log", + "type": "txt" + } + ], + "position": { + "left": 295.1263437181945, + "top": 125.66098683332416 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_acc_download/ncbi_acc_download/0.2.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e063168e0a81", + "name": "ncbi_acc_download", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"ignore_failed\": \"0\", \"molecule\": {\"select\": \"nucleotide\", \"__current_case__\": 0, \"format\": \"fasta\"}, \"query_source\": {\"select\": \"accession_list\", \"__current_case__\": 1, \"accession_list\": {\"__class__\": \"ConnectedValue\"}}, \"range\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.8+galaxy0", + "type": "tool", + "uuid": "5586d5e9-ea6f-4e01-8e41-c3fe790535a3", + "when": null, + "workflow_outputs": [ + { + "label": "NCBI Accession Download on input dataset(s): Log", + "output_name": "error_log", + "uuid": "faecdec3-711d-43ba-bb91-38a4b4b3932d" + }, + { + "label": "NCBI Accession Download on input dataset(s): Downloaded Files", + "output_name": "output", + "uuid": "c8857c6f-ec99-4d29-8c98-be7a63a9f029" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/antismash/antismash/6.1.1+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Antismash", + "name": "genefinding_gff3" + }, + { + "description": "runtime parameter for tool Antismash", + "name": "sideload" + } + ], + "label": null, + "name": "Antismash", + "outputs": [ + { + "name": "genecluster_tabular", + "type": "input" + }, + { + "name": "genbank", + "type": "input" + }, + { + "name": "embl", + "type": "input" + }, + { + "name": "archive", + "type": "input" + }, + { + "name": "html", + "type": "html" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 639.6596780017987, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/antismash/antismash/6.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "bc88856eddab", + "name": "antismash", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"advanced_options\": {\"minlength\": \"1000\", \"hmmdetection_strictness\": \"relaxed\", \"cb_nclusters\": \"10\", \"cb_min_homology_scale\": \"0.0\", \"rre_cutoff\": \"25.0\", \"rre_minlength\": \"50\"}, \"asf\": true, \"cb_general\": false, \"cb_knownclusters\": true, \"cb_subclusters\": true, \"cc_mibig\": false, \"clusterhmmer\": false, \"cond_taxon\": {\"taxon\": \"bacteria\", \"__current_case__\": 0, \"genefinding_tool\": \"prodigal\", \"tigrfam\": false}, \"fullhmmer\": false, \"genefinding_gff3\": {\"__class__\": \"RuntimeValue\"}, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"outputs\": [\"html\", \"all\", \"embl\", \"gb\", \"genecluster_tabular\", \"log\"], \"pfam2go\": true, \"rre\": true, \"sideload\": {\"file\": {\"__class__\": \"RuntimeValue\"}, \"format\": \"harmonize\"}, \"smcog_trees\": true, \"tta_threshold\": \"0.65\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "6.1.1+galaxy1", + "type": "tool", + "uuid": "0f476190-2ca9-4b60-b6af-9c6ac4e12d0b", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "log", + "uuid": "26f7288b-d497-4680-af57-169bf7d8a22a" + }, + { + "label": null, + "output_name": "genbank", + "uuid": "607063ee-4d4c-40d0-b355-cff12b9de2a9" + }, + { + "label": "Antismash on input dataset(s): HTML report", + "output_name": "html", + "uuid": "cc813ad7-f423-4cb8-ba79-8201abab206a" + }, + { + "label": null, + "output_name": "archive", + "uuid": "a8a9e6d6-652d-44b5-ba4f-60aff9c9999f" + }, + { + "label": null, + "output_name": "embl", + "uuid": "7c948135-1c3a-43eb-9a40-a5fe28334f58" + }, + { + "label": null, + "output_name": "genecluster_tabular", + "uuid": "5bfc66a2-bec6-4818-9fa8-ad42b3b73dc8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 6, + "input_connections": { + "input_list": { + "id": 5, + "output_name": "genbank" + } + }, + "inputs": [], + "label": "Collapse clusters in one Genbank entry", + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 963.0516444199695, + "top": 145.633549188099 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": true, \"__current_case__\": 0, \"place_name\": \"above\"}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "fe07e889-e6a5-48bc-9f61-1676b3cc6641", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dc73d9e2-5338-4fa7-90c0-6b03b4181457" + } + ] + } + ], + "parent_id": "genome-annotation/secondary-metabolite-discovery", + "path": "topics/genome-annotation/tutorials/secondary-metabolite-discovery/workflows/main_workflow.ga", + "tags": [ + "sempi3" + ], + "test_results": null, + "tests": false, + "title": "Gene Cluster Product Similarity Search ", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-secondary-metabolite-discovery/versions/main-workflow", + "tutorial_id": "secondary-metabolite-discovery", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/secondary-metabolite-discovery/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/secondary-metabolite-discovery/workflows/main_workflow.html", + "version": 1, + "wfid": "genome-annotation-secondary-metabolite-discovery", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Remove beginning1", + "interactive_tool_jupyter_notebook", + "toolshed.g2.bx.psu.edu/repos/bgruening/antismash/antismash/6.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/chemfp/ctb_chemfp_mol2fps/1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/natural_product_likeness/ctb_np-likeness-calculator/2.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_remduplicates/openbabel_remDuplicates/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/qed/ctb_silicos_qed/2021.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/simsearch/ctb_simsearch/0.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_acc_download/ncbi_acc_download/0.2.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1145" + } + ], + "zenodo_link": "https://zenodo.org/records/10652998" + }, + { + "abbreviations": { + "OGS": "Official Gene Set" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "apollo_create_account", + "owner": "gga", + "revisions": "e80d29fd2a33", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "apollo_create_or_update", + "owner": "gga", + "revisions": "4abaab60f9e1", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "apollo_iframe", + "owner": "gga", + "revisions": "f4e3f9480307", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "apollo_list_organism", + "owner": "gga", + "revisions": "2c749ed310da", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: apollo_create_account\n owner: gga\n revisions: e80d29fd2a33\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: apollo_create_or_update\n owner: gga\n revisions: 4abaab60f9e1\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: apollo_iframe\n owner: gga\n revisions: f4e3f9480307\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: apollo_list_organism\n owner: gga\n revisions: 2c749ed310da\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo/tutorial.json", + "contributions": { + "authorship": [ + "abretaud", + "hexylena", + "nathandunn", + "mboudet" + ], + "funding": [ + "gallantries", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "nathandunn@lbl.gov", + "id": "nathandunn", + "joined": "2019-07", + "name": "Nathan Dunn", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nathandunn/", + "twitter": "precogincog", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nathandunn.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "mateo.boudet@inrae.fr", + "id": "mboudet", + "joined": "2021-05", + "name": "Mateo Boudet", + "orcid": "0000-0002-7028-7620", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mboudet/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mboudet.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/genome-annotation/tutorials/apollo", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0623", + "topic_0080" + ], + "edam_operation": [ + "Genome visualisation" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Gene and protein families", + "Sequence analysis" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/apollo", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Apollo is the Google Docs of the genome annotation world, real-time collaborative genome annotation.", + "Apollo allows a group to view and manually refine predicted genome annotations", + "Use Apollo to edit annotations within your group.", + "Export manual annotations as GFF3." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Load a genome into Galaxy", + "View annotations in JBrowse", + "Learn how to load JBrowse data into Apollo", + "Learn how to manually refine genome annotations within Apollo", + "Export refined genome annotations" + ], + "pageviews": 4949160, + "pub_date": "2021-06-04", + "questions": [ + "How to visualize your genome after automated annotations have been performed?", + "How to manually annotate genome after automated annotations have been performed?", + "How to evaluate and visualize annotated genomic features?", + "How do I collaborate when doing genome annotation?" + ], + "recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H", + "speakers": [ + "abretaud" + ], + "youtube_id": "ywK1fhM-QFU" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "upload-rules" + ], + "type": "internal" + }, + { + "topic_name": "genome-annotation", + "tutorials": [ + "annotation-with-prokka" + ], + "type": "internal" + } + ], + "short_id": "T00169", + "short_tools": [ + "jbrowse", + "create_or_update", + "list_organism", + "iframe", + "create_account" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "5M", + "speakers": [ + "awspolly" + ], + "youtube_id": "ailUycRVHtE" + } + ], + "subtopic": "prokaryote", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "prokaryote", + "microgalaxy", + "jbrowse1", + "apollo2" + ], + "time_estimation": "3h", + "title": "Refining Genome Annotations with Apollo (prokaryotes)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_account/create_account/3.1", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_list_organism/list_organism/3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "apollo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/apollo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo/tutorial.json" + }, + "version": 20, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 297, + "visitors": 1836817, + "workflows": [ + { + "creators": [], + "description": "Refining Genome Annotations with Apollo", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/forager.bw\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam\"]\n 4[label=\"Register Account\"]\n 5[label=\"List Organisms\"]\n 6[label=\"JBrowse\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Create or Update Organism\"]\n 6 -> 7 [label=\"output\"]\n 8[label=\"Annotate\"]\n 7 -> 8 [label=\"output\"]\n}", + "history": [ + { + "hash": "6bc77b7441375cd57ea1d73e9fe2f80ef550891a", + "message": "wf annotation", + "num": 3, + "short_hash": "6bc77b744", + "unix": "1622101979" + }, + { + "hash": "9ced3a95cd725623c7c1f2664b0174a14cd59337", + "message": "update workflow", + "num": 2, + "short_hash": "9ced3a95c", + "unix": "1622043687" + }, + { + "hash": "32f41f6fe47606c12d4574551233e4a2583df189", + "message": "rewrite bits v2", + "num": 1, + "short_hash": "32f41f6fe", + "unix": "1571055596" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1" + } + ], + "label": "https://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 354.8999938964844, + "height": 143.39999389648438, + "left": 488, + "right": 688, + "top": 211.5, + "width": 200, + "x": 488, + "y": 211.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "fa88b9bb-b87e-457b-a836-a8f1b25e520b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "82c708ee-87a4-45a2-abf0-911309e218fd" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1" + } + ], + "label": "https://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 527.8999938964844, + "height": 143.39999389648438, + "left": 510, + "right": 710, + "top": 384.5, + "width": 200, + "x": 510, + "y": 384.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1afd430b-6250-4eb2-8cf2-a83adf022e4b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbbb4914-0c3d-4857-8c3a-f43b3f0c39f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/forager.bw" + } + ], + "label": "https://zenodo.org/record/3270822/files/forager.bw", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 659.1000061035156, + "height": 102.60000610351562, + "left": 493, + "right": 693, + "top": 556.5, + "width": 200, + "x": 493, + "y": 556.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "091ca713-0096-419c-8cb7-7e83a41aab37", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f4c19cc0-5099-4514-af29-52a3933b28f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam" + } + ], + "label": "https://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 858.8999938964844, + "height": 143.39999389648438, + "left": 563, + "right": 763, + "top": 715.5, + "width": 200, + "x": 563, + "y": 715.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "13d26450-8b30-42d4-9822-f697217818b1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "464904cb-5608-4f5d-b282-a09be9d3dbbb" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/forager.bw\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Register Account\"];\n 5[\"List Organisms\"];\n 6[\"JBrowse\"];\n 0 -->|output| 6;\n 1 -->|output| 6;\n 3 -->|output| 6;\n 2 -->|output| 6;\n 7[\"Create or Update Organism\"];\n 6 -->|output| 7;\n 8[\"Annotate\"];\n 7 -->|output| 8;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Apollo Load Test", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1" + } + ], + "label": "https://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 354.8999938964844, + "height": 143.39999389648438, + "left": 488, + "right": 688, + "top": 211.5, + "width": 200, + "x": 488, + "y": 211.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "fa88b9bb-b87e-457b-a836-a8f1b25e520b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "82c708ee-87a4-45a2-abf0-911309e218fd" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1" + } + ], + "label": "https://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 527.8999938964844, + "height": 143.39999389648438, + "left": 510, + "right": 710, + "top": 384.5, + "width": 200, + "x": 510, + "y": 384.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1afd430b-6250-4eb2-8cf2-a83adf022e4b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbbb4914-0c3d-4857-8c3a-f43b3f0c39f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/forager.bw" + } + ], + "label": "https://zenodo.org/record/3270822/files/forager.bw", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 659.1000061035156, + "height": 102.60000610351562, + "left": 493, + "right": 693, + "top": 556.5, + "width": 200, + "x": 493, + "y": 556.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "091ca713-0096-419c-8cb7-7e83a41aab37", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f4c19cc0-5099-4514-af29-52a3933b28f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam" + } + ], + "label": "https://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 858.8999938964844, + "height": 143.39999389648438, + "left": 563, + "right": 763, + "top": 715.5, + "width": 200, + "x": 563, + "y": 715.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "13d26450-8b30-42d4-9822-f697217818b1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "464904cb-5608-4f5d-b282-a09be9d3dbbb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_account/create_account/3.1", + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Register Account", + "outputs": [ + { + "name": "output", + "type": "txt" + } + ], + "position": { + "bottom": 1038.6999969482422, + "height": 82.19999694824219, + "left": 644, + "right": 844, + "top": 956.5, + "width": 200, + "x": 644, + "y": 956.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_account/create_account/3.1", + "tool_shed_repository": { + "changeset_revision": "e80d29fd2a33", + "name": "apollo_create_account", + "owner": "gga", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"first\": \"Nathan\", \"last\": \"Dunn\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1", + "type": "tool", + "uuid": "82f0b666-8743-4cdc-9682-feb10c35b0c6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dc1e2c2f-c566-48e0-95c7-327adb229fb5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_list_organism/list_organism/3.1", + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "List Organisms", + "outputs": [ + { + "name": "output", + "type": "json" + } + ], + "position": { + "bottom": 1158.6999969482422, + "height": 82.19999694824219, + "left": 644, + "right": 844, + "top": 1076.5, + "width": 200, + "x": 644, + "y": 1076.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_list_organism/list_organism/3.1", + "tool_shed_repository": { + "changeset_revision": "2c749ed310da", + "name": "apollo_list_organism", + "owner": "gga", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\"}", + "tool_version": "3.1", + "type": "tool", + "uuid": "3fc26308-b331-4286-863a-d31ac5b6fb03", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d7cc17cb-e3e2-4adf-857c-8d3583e57fdd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "reference_genome|genome": { + "id": 0, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 1, + "output_name": "output" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 3, + "output_name": "output" + }, + "track_groups_1|data_tracks_1|data_format|annotation": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool JBrowse", + "name": "reference_genome" + } + ], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 650.2999877929688, + "height": 306.79998779296875, + "left": 821, + "right": 1021, + "top": 343.5, + "width": 200, + "x": 821, + "y": 343.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a6e57ff585c0", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"RuntimeValue\"}}, \"standalone\": \"true\", \"track_groups\": [{\"__index__\": 0, \"category\": \"OGS 3.2\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_on\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"Reads\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"auto_snp\": \"true\", \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}, {\"__index__\": 1, \"data_format\": {\"data_format_select\": \"wiggle\", \"__current_case__\": 4, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"xyplot\": \"false\", \"var_band\": \"false\", \"scaling\": {\"scale_select\": \"auto_local\", \"__current_case__\": 0}, \"scale_select2\": \"linear\", \"MultiBigWig\": \"false\", \"jbcolor\": {\"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}, \"bicolor_pivot\": {\"bicolor_pivot_select\": \"zero\", \"__current_case__\": 0}}, \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.11+galaxy1", + "type": "tool", + "uuid": "2e2723bf-9597-4c96-9980-33220e3b849a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9514c32e-2376-44ee-b368-beb25bf77ad7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "errors": null, + "id": 7, + "input_connections": { + "jbrowse": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create or Update Organism", + "name": "jbrowse" + } + ], + "label": null, + "name": "Create or Update Organism", + "outputs": [ + { + "name": "output", + "type": "json" + } + ], + "position": { + "bottom": 506.1000061035156, + "height": 113.60000610351562, + "left": 1405, + "right": 1605, + "top": 392.5, + "width": 200, + "x": 1405, + "y": 392.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "tool_shed_repository": { + "changeset_revision": "4abaab60f9e1", + "name": "apollo_create_or_update", + "owner": "gga", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"genus\": \"Apis\", \"group\": null, \"jbrowse\": {\"__class__\": \"RuntimeValue\"}, \"no_reload_sequences\": \"false\", \"org_source\": {\"source_select\": \"direct\", \"__current_case__\": 1, \"org_raw\": \"Honeybee\"}, \"public\": \"true\", \"remove_old_directory\": \"true\", \"species\": \"Mellifera\", \"test_hack\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2.5", + "type": "tool", + "uuid": "72c53f14-4e91-40c1-a4e9-325b6c2a3105", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "10c77447-f92c-44b0-8a04-151eef670244" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "errors": null, + "id": 8, + "input_connections": { + "json_file": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Annotate", + "name": "json_file" + } + ], + "label": null, + "name": "Annotate", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 502.6999969482422, + "height": 93.19999694824219, + "left": 1703, + "right": 1903, + "top": 409.5, + "width": 200, + "x": 1703, + "y": 409.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "tool_shed_repository": { + "changeset_revision": "f4e3f9480307", + "name": "apollo_iframe", + "owner": "gga", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"json_file\": {\"__class__\": \"RuntimeValue\"}, \"tracklist\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2.5", + "type": "tool", + "uuid": "2cfe94b1-f9cb-4df6-a3fd-b9356ea2423f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4eaf137c-b5fd-4cdd-9fa7-ed973e2302f3" + } + ] + } + ], + "parent_id": "genome-annotation/apollo", + "path": "topics/genome-annotation/tutorials/apollo/workflows/main_workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Apollo Load Test", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-apollo/versions/main-workflow", + "tutorial_id": "apollo", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/apollo/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/apollo/workflows/main_workflow.html", + "version": 1, + "wfid": "genome-annotation-apollo", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_account/create_account/3.1", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_list_organism/list_organism/3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "workflowhub_id": "1190" + } + ], + "zenodo_link": "https://zenodo.org/record/4889110" + }, + { + "abbreviations": { + "LINEs": "Long Interspersed Nuclear Elements", + "SINEs": "Short Interspersed Nuclear Elements" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "repeat_masker", + "owner": "bgruening", + "revisions": "ba6d2c32f797", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "repeatmodeler", + "owner": "csbl", + "revisions": "8661b2607b7e", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "red", + "owner": "iuc", + "revisions": "db57bc3b57af", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: repeat_masker\n owner: bgruening\n revisions: ba6d2c32f797\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: repeatmodeler\n owner: csbl\n revisions: 8661b2607b7e\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: red\n owner: iuc\n revisions: db57bc3b57af\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/repeatmasker/tutorial.json", + "contributions": { + "authorship": [ + "abretaud", + "alexcorm", + "lleroi", + "r1corre", + "stephanierobin", + "jkreplak" + ], + "funding": [ + "gallantries", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "email": "alexandre.cormier@ifremer.fr", + "id": "alexcorm", + "joined": "2021-11", + "name": "Alexandre Cormier", + "orcid": "0000-0002-7775-8413", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alexcorm/", + "twitter": "allanssx", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alexcorm.json" + }, + { + "email": "laura.leroi@ifremer.fr", + "id": "lleroi", + "joined": "2021-11", + "name": "Laura Leroi", + "orcid": "0000-0003-3748-4179", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lleroi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lleroi.json" + }, + { + "email": "erwan.corre@sb-roscoff.fr", + "id": "r1corre", + "joined": "2019-04", + "name": "Erwan Corre", + "orcid": "0000-0001-6354-2278", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/r1corre/", + "twitter": "r1corre", + "url": "https://training.galaxyproject.org/training-material/api/contributors/r1corre.json" + }, + { + "email": "stephanie.robin@inrae.fr", + "id": "stephanierobin", + "joined": "2021-11", + "name": "St\u00e9phanie Robin", + "orcid": "0000-0001-7379-9173", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stephanierobin/", + "twitter": "robinstphanie1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stephanierobin.json" + }, + { + "email": "jonathan.kreplak@inrae.fr", + "id": "jkreplak", + "joined": "2020-09", + "name": "Jonathan Kreplak", + "orcid": "0000-0001-5563-1932", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jkreplak/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jkreplak.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/genome-annotation/tutorials/repeatmasker", + "edam_operation": [ + "Editing", + "RNA-Seq analysis", + "Genome annotation", + "Mapping", + "Repeat sequence detection" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "funannotate" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/repeatmasker", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "RepeatMasker can be used to soft-mask a genome", + "It is an essential first step before running structural annotation pipelines" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Use Red and RepeatMasker to soft-mask a newly assembled genome" + ], + "pageviews": 9312, + "priority": 1, + "pub_date": "2021-11-29", + "questions": [ + "How to mask repeats in a genome?", + "What is the difference between hard and soft-masking?" + ], + "recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2023-05-10", + "galaxy_version": "23.01", + "length": "18M", + "speakers": [ + "abretaud" + ], + "youtube_id": "7tYEDmAvHD4" + }, + { + "captioners": [ + "abretaud" + ], + "date": "2022-03-03", + "galaxy_version": "21.09", + "length": "16M", + "speakers": [ + "abretaud" + ], + "youtube_id": "AYAvjwm4cnM" + } + ], + "short_id": "T00178", + "short_tools": [ + "bedtools_maskfastabed", + "repeatmodeler", + "repeatmasker_wrapper", + "red" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "eukaryote" + ], + "time_estimation": "1H", + "title": "Masking repeats with RepeatMasker", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/csbl/repeatmodeler/repeatmodeler/2.0.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_maskfastabed/2.30.0", + "toolshed.g2.bx.psu.edu/repos/iuc/red/red/2018.09.10+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "repeatmasker", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/repeatmasker/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/repeatmasker/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/repeatmasker/tutorial.json" + }, + "version": 20, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 83, + "visitors": 7110, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-0914-2470", + "name": "Anthony Bretaudeau" + } + ], + "description": "Masking repeats in a genome using RepeatMasker", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRaw genome sequence\"]\n 1[label=\"Red\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"RepeatMasker\"]\n 0 -> 2 [label=\"output\"]\n k3d7a51a241f9426fb9e8082fab12d6e2[color=lightseagreen,label=\"Output\\nRepeatMasker repeat catalogue on input dataset(s)\"]\n 2 -> k3d7a51a241f9426fb9e8082fab12d6e2\n k3f0c419c7bd24378b174fe11e52bbf61[color=lightseagreen,label=\"Output\\nRepeatMasker masked sequence on input dataset(s)\"]\n 2 -> k3f0c419c7bd24378b174fe11e52bbf61\n k342d5065122b437a8f78a636c5f2b7f6[color=lightseagreen,label=\"Output\\nRepeatMasker output log on input dataset(s)\"]\n 2 -> k342d5065122b437a8f78a636c5f2b7f6\n k4a157f800d75425b858d49c4a12f91a0[color=lightseagreen,label=\"Output\\nRepeatMasker repeat statistics on input dataset(s)\"]\n 2 -> k4a157f800d75425b858d49c4a12f91a0\n}", + "history": [ + { + "hash": "c62f8399d7c3d6e04e1f8db85543ba9162e902d8", + "message": "workflow test", + "num": 1, + "short_hash": "c62f8399d", + "unix": "1682350616" + } + ], + "inputs": [ + { + "annotation": "The raw (not masked) genome sequence in fasta format", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "The raw (not masked) genome sequence in fasta format", + "name": "Raw genome sequence" + } + ], + "label": "Raw genome sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 77.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c26e06b1-39a6-43f4-a83f-7daeba257011", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nRaw genome sequence\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Red\"];\n 0 -->|output| 1;\n 2[\"RepeatMasker\"];\n 0 -->|output| 2;\n 3d7a51a2-41f9-426f-b9e8-082fab12d6e2[\"Output\\nRepeatMasker repeat catalogue on input dataset(s)\"];\n 2 --> 3d7a51a2-41f9-426f-b9e8-082fab12d6e2;\n style 3d7a51a2-41f9-426f-b9e8-082fab12d6e2 stroke:#2c3143,stroke-width:4px;\n 3f0c419c-7bd2-4378-b174-fe11e52bbf61[\"Output\\nRepeatMasker masked sequence on input dataset(s)\"];\n 2 --> 3f0c419c-7bd2-4378-b174-fe11e52bbf61;\n style 3f0c419c-7bd2-4378-b174-fe11e52bbf61 stroke:#2c3143,stroke-width:4px;\n 342d5065-122b-437a-8f78-a636c5f2b7f6[\"Output\\nRepeatMasker output log on input dataset(s)\"];\n 2 --> 342d5065-122b-437a-8f78-a636c5f2b7f6;\n style 342d5065-122b-437a-8f78-a636c5f2b7f6 stroke:#2c3143,stroke-width:4px;\n 4a157f80-0d75-425b-858d-49c4a12f91a0[\"Output\\nRepeatMasker repeat statistics on input dataset(s)\"];\n 2 --> 4a157f80-0d75-425b-858d-49c4a12f91a0;\n style 4a157f80-0d75-425b-858d-49c4a12f91a0 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "RepeatMasker", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/red/red/2018.09.10+galaxy1", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Red", + "name": "input" + } + ], + "label": null, + "name": "Red", + "outputs": [ + { + "name": "masked", + "type": "fasta" + }, + { + "name": "bed", + "type": "bed" + } + ], + "position": { + "left": 354, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/red/red/2018.09.10+galaxy1", + "tool_shed_repository": { + "changeset_revision": "18a46265455b", + "name": "red", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2018.09.10+galaxy1", + "type": "tool", + "uuid": "8e20207e-cee6-42fc-afd0-6bed48afe669", + "workflow_outputs": [ + { + "label": null, + "output_name": "masked", + "uuid": "344db107-2ffa-4389-91d8-bd1505707369" + }, + { + "label": null, + "output_name": "bed", + "uuid": "6414050e-9640-490a-a39b-26c582bd8f91" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.5+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RepeatMasker", + "name": "input_fasta" + } + ], + "label": null, + "name": "RepeatMasker", + "outputs": [ + { + "name": "output_masked_genome", + "type": "fasta" + }, + { + "name": "output_log", + "type": "tabular" + }, + { + "name": "output_table", + "type": "txt" + }, + { + "name": "output_repeat_catalog", + "type": "txt" + } + ], + "position": { + "left": 355, + "top": 144.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ba6d2c32f797", + "name": "repeat_masker", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"is_only\": \"false\", \"is_clip\": \"false\", \"no_is\": \"false\", \"rodspec\": \"false\", \"primspec\": \"false\", \"nolow\": \"false\", \"noint\": \"false\", \"norna\": \"false\", \"alu\": \"false\", \"div\": \"false\", \"search_speed\": \"\", \"frag\": \"40000\", \"gc\": null, \"gccalc\": \"false\", \"nocut\": \"false\", \"xout\": \"false\", \"keep_alignments\": \"false\", \"invert_alignments\": \"false\", \"poly\": \"false\"}, \"excln\": \"true\", \"gff\": \"false\", \"input_fasta\": {\"__class__\": \"RuntimeValue\"}, \"repeat_source\": {\"source_type\": \"dfam\", \"__current_case__\": 0, \"species_source\": {\"species_from_list\": \"yes\", \"__current_case__\": 0, \"species_list\": \"human\"}}, \"xsmall\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.5+galaxy0", + "type": "tool", + "uuid": "f7ef7c85-b782-468b-94a2-076efc91920c", + "workflow_outputs": [ + { + "label": "RepeatMasker repeat catalogue on input dataset(s)", + "output_name": "output_repeat_catalog", + "uuid": "3d7a51a2-41f9-426f-b9e8-082fab12d6e2" + }, + { + "label": "RepeatMasker masked sequence on input dataset(s)", + "output_name": "output_masked_genome", + "uuid": "3f0c419c-7bd2-4378-b174-fe11e52bbf61" + }, + { + "label": "RepeatMasker output log on input dataset(s)", + "output_name": "output_log", + "uuid": "342d5065-122b-437a-8f78-a636c5f2b7f6" + }, + { + "label": "RepeatMasker repeat statistics on input dataset(s)", + "output_name": "output_table", + "uuid": "4a157f80-0d75-425b-858d-49c4a12f91a0" + } + ] + } + ], + "parent_id": "genome-annotation/repeatmasker", + "path": "topics/genome-annotation/tutorials/repeatmasker/workflows/RepeatMasker.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": true, + "title": "RepeatMasker", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-repeatmasker/versions/repeatmasker", + "tutorial_id": "repeatmasker", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/repeatmasker/workflows/RepeatMasker.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/repeatmasker/workflows/RepeatMasker.html", + "version": 1, + "wfid": "genome-annotation-repeatmasker", + "wfname": "repeatmasker", + "workflow": "RepeatMasker.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/repeat_masker/repeatmasker_wrapper/4.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/red/red/2018.09.10+galaxy1" + ], + "workflowhub_id": "1198" + } + ], + "zenodo_link": "https://zenodo.org/record/7085837" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "03e9b2fbc005", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bakta", + "owner": "iuc", + "revisions": "728dacaf08a9", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbl2gff3", + "owner": "iuc", + "revisions": "4a7f4b0cc0a3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "staramr", + "owner": "nml", + "revisions": "3b22de20bd4b", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bowtie2\n owner: devteam\n revisions: 03e9b2fbc005\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bakta\n owner: iuc\n revisions: 728dacaf08a9\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbl2gff3\n owner: iuc\n revisions: 4a7f4b0cc0a3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: staramr\n owner: nml\n revisions: 3b22de20bd4b\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json", + "contributions": { + "authorship": [ + "bazante1", + "bebatut" + ], + "editing": [ + "hexylena", + "bazante1", + "shiltemann", + "miaomiaozhou88" + ], + "funding": [ + "avans-atgm", + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "email": "m.zhou1@avans.nl", + "id": "miaomiaozhou88", + "joined": "2020-12", + "name": "Miaomiao Zhou", + "orcid": "0000-0003-4426-1758", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/miaomiaozhou88/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/miaomiaozhou88.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/genome-annotation/tutorials/amr-gene-detection", + "edam_ontology": [ + "topic_3673", + "topic_3305", + "topic_0622", + "topic_3301", + "topic_0080", + "topic_3324", + "topic_4013" + ], + "edam_operation": [ + "Genome visualisation", + "Genome annotation", + "Read mapping" + ], + "edam_topic": [ + "Whole genome sequencing", + "Public health and epidemiology", + "Genomics", + "Microbiology", + "Sequence analysis", + "Infectious disease", + "Antimicrobial Resistance" + ], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "visualisation", + "tutorials": [ + "jbrowse" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/amr-gene-detection", + "inexact_supported_servers": [ + "Galaxy@AuBi" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "staramr is a powerful tool to predict ARGs and plasmid genes", + "Visualization of the ARGs and plasmid genes in their genomic context helps to make sense of the data" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-13", + "objectives": [ + "Run a series of tool to assess the presence of antimicrobial resistance genes (ARG)", + "Get information about ARGs", + "Visualize the ARGs and plasmid genes in their genomic context" + ], + "pageviews": 1368, + "pub_date": "2024-01-23", + "questions": [ + "Which resistance genes are on a bacterial genome?", + "Where are the genes located on the genome?" + ], + "short_id": "T00401", + "short_tools": [ + "Grep1", + "jbrowse", + "bowtie2", + "tbl2gff3", + "bakta", + "staramr_search", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "prokaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "illumina", + "amr", + "one-health", + "jbrowse1", + "microgalaxy" + ], + "time_estimation": "2h", + "title": "Identification of AMR genes in an assembled bacterial genome", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "upload1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "amr-gene-detection", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 176, + "visitors": 967, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2255-1631", + "name": "Bazante Sanders" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Identification of AMR genes in an assembled bacterial genome", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncontigs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nforward_reads\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreverse_reads\"]\n 3[label=\"staramr\"]\n 0 -> 3 [label=\"output\"]\n k7a18df3cf28045aa92e427b79f10a005[color=lightseagreen,label=\"Output\\nstararm_detailed_summary\"]\n 3 -> k7a18df3cf28045aa92e427b79f10a005\n 4[label=\"Bakta\"]\n 0 -> 4 [label=\"output\"]\n kead94d4086b04cf0aee2cf72a8f47933[color=lightseagreen,label=\"Output\\nbakta_annotation_summary\"]\n 4 -> kead94d4086b04cf0aee2cf72a8f47933\n 5[label=\"Bowtie2\"]\n 1 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n k0639b4672e624a52b72f35bf9f46f6a3[color=lightseagreen,label=\"Output\\nbowtie_mapping_stats\"]\n 5 -> k0639b4672e624a52b72f35bf9f46f6a3\n 6[label=\"Select\"]\n 3 -> 6 [label=\"detailed_summary\"]\n 7[label=\"Table to GFF3\"]\n 6 -> 7 [label=\"out_file1\"]\n 8[label=\"JBrowse\"]\n 4 -> 8 [label=\"annotation_gff3\"]\n 7 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"output\"]\n k910a35522a224279b15930379b31496f[color=lightseagreen,label=\"Output\\njbrowse_output\"]\n 8 -> k910a35522a224279b15930379b31496f\n}", + "history": [ + { + "hash": "597f8ce954083c7cd4e43765b6c4709619637e6a", + "message": "Add Bazante's ORCID", + "num": 4, + "short_hash": "597f8ce95", + "unix": "1706018263" + }, + { + "hash": "03e4290900ade23b2dffb3f61ea2875a64f2c396", + "message": "Fix workflows", + "num": 3, + "short_hash": "03e429090", + "unix": "1706004257" + }, + { + "hash": "c88bcbb6f04ad1847e0747f7fb9256ee0ec858de", + "message": "Add license and creator to workflows", + "num": 2, + "short_hash": "c88bcbb6f", + "unix": "1705678137" + }, + { + "hash": "6d6129376b624fe20278f8df09b13cae881c5484", + "message": "Expand the AMR detection tutorial", + "num": 1, + "short_hash": "6d6129376", + "unix": "1705334494" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "contigs" + } + ], + "label": "contigs", + "name": "contigs", + "outputs": [], + "position": { + "left": 0, + "top": 258 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"contigs\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a18c5e52-124f-4480-80b4-ea5936618bc6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "forward_reads" + } + ], + "label": "forward_reads", + "name": "forward_reads", + "outputs": [], + "position": { + "left": 0.003423507807786663, + "top": 600.9912432161087 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"forward_reads\"}", + "tool_version": null, + "type": "data_input", + "uuid": "edd7c009-b0f1-403d-9438-f675bd61d30a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reverse_reads" + } + ], + "label": "reverse_reads", + "name": "reverse_reads", + "outputs": [], + "position": { + "left": 0, + "top": 724 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"reverse_reads\"}", + "tool_version": null, + "type": "data_input", + "uuid": "595db730-f37d-4314-85a3-e10dfb11e209", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ncontigs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nforward_reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nreverse_reads\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"staramr\"];\n 0 -->|output| 3;\n 7a18df3c-f280-45aa-92e4-27b79f10a005[\"Output\\nstararm_detailed_summary\"];\n 3 --> 7a18df3c-f280-45aa-92e4-27b79f10a005;\n style 7a18df3c-f280-45aa-92e4-27b79f10a005 stroke:#2c3143,stroke-width:4px;\n 4[\"Bakta\"];\n 0 -->|output| 4;\n ead94d40-86b0-4cf0-aee2-cf72a8f47933[\"Output\\nbakta_annotation_summary\"];\n 4 --> ead94d40-86b0-4cf0-aee2-cf72a8f47933;\n style ead94d40-86b0-4cf0-aee2-cf72a8f47933 stroke:#2c3143,stroke-width:4px;\n 5[\"Bowtie2\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 0 -->|output| 5;\n 0639b467-2e62-4a52-b72f-35bf9f46f6a3[\"Output\\nbowtie_mapping_stats\"];\n 5 --> 0639b467-2e62-4a52-b72f-35bf9f46f6a3;\n style 0639b467-2e62-4a52-b72f-35bf9f46f6a3 stroke:#2c3143,stroke-width:4px;\n 6[\"Select\"];\n 3 -->|detailed_summary| 6;\n 7[\"Table to GFF3\"];\n 6 -->|out_file1| 7;\n 8[\"JBrowse\"];\n 4 -->|annotation_gff3| 8;\n 7 -->|output| 8;\n 5 -->|output| 8;\n 910a3552-2a22-4279-b159-30379b31496f[\"Output\\njbrowse_output\"];\n 8 --> 910a3552-2a22-4279-b159-30379b31496f;\n style 910a3552-2a22-4279-b159-30379b31496f stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "mrsa AMR gene detection", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "genomes": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "staramr", + "outputs": [ + { + "name": "blast_hits", + "type": "input" + }, + { + "name": "mlst", + "type": "tabular" + }, + { + "name": "summary", + "type": "tabular" + }, + { + "name": "detailed_summary", + "type": "tabular" + }, + { + "name": "resfinder", + "type": "tabular" + }, + { + "name": "plasmidfinder", + "type": "tabular" + }, + { + "name": "settings", + "type": "txt" + }, + { + "name": "excel", + "type": "xlsx" + } + ], + "position": { + "left": 290.00083115418806, + "top": 261 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3b22de20bd4b", + "name": "staramr", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"pid_threshold\": \"98.0\", \"plength_resfinder\": \"60.0\", \"plength_pointfinder\": \"95.0\", \"plength_plasmidfinder\": \"60.0\", \"genome_size_lower_bound\": \"4000000\", \"genome_size_upper_bound\": \"6000000\", \"minimum_N50_value\": \"10000\", \"minimum_contig_length\": \"300\", \"unacceptable_number_contigs\": \"1000\", \"report_all_blast\": false, \"exclude_negatives\": false, \"exclude_resistance_phenotypes\": false, \"mlst_scheme\": \"auto\", \"exclude_genes\": {\"exclude_genes_condition\": \"default\", \"__current_case__\": 0}, \"complex_mutations\": {\"complex_mutations_condition\": \"default\", \"__current_case__\": 0}, \"plasmidfinder_type\": \"include_all\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"genomes\": {\"__class__\": \"ConnectedValue\"}, \"pointfinder_db\": {\"use_pointfinder\": \"disabled\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.0+galaxy1", + "type": "tool", + "uuid": "2554da56-e9f9-4e65-98b6-25b4a2861df9", + "when": null, + "workflow_outputs": [ + { + "label": "stararm_detailed_summary", + "output_name": "detailed_summary", + "uuid": "7a18df3c-f280-45aa-92e4-27b79f10a005" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_option|input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "input_option" + } + ], + "label": null, + "name": "Bakta", + "outputs": [ + { + "name": "annotation_tsv", + "type": "tabular" + }, + { + "name": "annotation_gff3", + "type": "gff3" + }, + { + "name": "annotation_ffn", + "type": "fasta" + }, + { + "name": "annotation_plot", + "type": "svg" + } + ], + "position": { + "left": 570.0016623083761, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "728dacaf08a9", + "name": "bakta", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation\": {\"complete\": false, \"prodigal\": {\"__class__\": \"RuntimeValue\"}, \"translation_table\": \"11\", \"keep_contig_headers\": true, \"replicons\": {\"__class__\": \"RuntimeValue\"}, \"compliant\": false, \"proteins\": {\"__class__\": \"RuntimeValue\"}, \"meta\": false}, \"input_option\": {\"bakta_db_select\": \"V5.0_2023-02-20\", \"amrfinder_db_select\": \"amrfinderplus_V3.11_2022-12-19.1\", \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"min_contig_length\": null}, \"organism\": {\"genus\": null, \"species\": null, \"strain\": null, \"plasmid\": null}, \"output_files\": {\"output_selection\": [\"file_tsv\", \"file_gff3\", \"file_ffn\", \"file_plot\"]}, \"workflow\": {\"skip_analysis\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.2+galaxy0", + "type": "tool", + "uuid": "0b92601d-5b78-438c-998d-f9f4dc61c52d", + "when": null, + "workflow_outputs": [ + { + "label": "bakta_annotation_summary", + "output_name": "annotation_tsv", + "uuid": "ead94d40-86b0-4cf0-aee2-cf72a8f47933" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "library|input_1": { + "id": 1, + "output_name": "output" + }, + "library|input_2": { + "id": 2, + "output_name": "output" + }, + "reference_genome|own_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 290.00083115418806, + "top": 628 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "03e9b2fbc005", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": false, \"aligned_file\": false, \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.0+galaxy0", + "type": "tool", + "uuid": "7e8f9570-3d8b-4a82-b109-09bc04b82c64", + "when": null, + "workflow_outputs": [ + { + "label": "bowtie_mapping_stats", + "output_name": "mapping_stats", + "uuid": "0639b467-2e62-4a52-b72f-35bf9f46f6a3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 4, + "output_name": "annotation_gff3" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 7, + "output_name": "output" + }, + "track_groups_2|data_tracks_0|data_format|annotation": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1130.0033246167523, + "top": 325 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a6e57ff585c0", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": true, \"aboutDescription\": \"\", \"show_tracklist\": true, \"show_nav\": true, \"show_overview\": true, \"show_menu\": true, \"hideGenomeOptions\": false}, \"plugins\": {\"BlastView\": true, \"ComboTrackSelector\": false, \"GCContent\": false}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Bakta\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": false, \"__current_case__\": 1}, \"index\": false, \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": null}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"ARGs and plasmid genes\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": false, \"__current_case__\": 1}, \"index\": false, \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": null}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 2, \"category\": \"Coverage\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"auto_snp\": false, \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.11+galaxy1", + "type": "tool", + "uuid": "9f973678-ce81-458a-a5d0-575d93d61429", + "when": null, + "workflow_outputs": [ + { + "label": "jbrowse_output", + "output_name": "output", + "uuid": "910a3552-2a22-4279-b159-30379b31496f" + } + ] + } + ], + "parent_id": "genome-annotation/amr-gene-detection", + "path": "topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", + "tags": [ + "genome-annotation", + "microgalaxy" + ], + "test_results": null, + "tests": true, + "title": "mrsa AMR gene detection", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-amr-gene-detection/versions/main-workflow", + "tutorial_id": "amr-gene-detection", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.html", + "version": 1, + "wfid": "genome-annotation-amr-gene-detection", + "wfname": "main-workflow", + "workflow": "main-workflow.ga", + "workflow_tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1" + ], + "workflowhub_id": "1168" + } + ], + "zenodo_link": "https://zenodo.org/record/10572227" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bakta", + "owner": "iuc", + "revisions": "ba6990f72184", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "integron_finder", + "owner": "iuc", + "revisions": "bfd290fe1588", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "isescan", + "owner": "iuc", + "revisions": "9e776e7fab4f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "plasmidfinder", + "owner": "iuc", + "revisions": "7075b7a5441b", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbl2gff3", + "owner": "iuc", + "revisions": "4a7f4b0cc0a3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bakta\n owner: iuc\n revisions: ba6990f72184\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: integron_finder\n owner: iuc\n revisions: bfd290fe1588\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: isescan\n owner: iuc\n revisions: 9e776e7fab4f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: plasmidfinder\n owner: iuc\n revisions: 7075b7a5441b\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbl2gff3\n owner: iuc\n revisions: 4a7f4b0cc0a3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.json", + "contributions": { + "authorship": [ + "bebatut" + ], + "funding": [ + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/genome-annotation/tutorials/bacterial-genome-annotation", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0623", + "topic_0080", + "topic_3673", + "topic_0085", + "topic_0798" + ], + "edam_operation": [ + "Genome assembly", + "Sequence motif recognition", + "Genome annotation", + "Nucleic acid feature detection", + "Structural variation detection", + "Multilocus sequence typing", + "Genome visualisation", + "Protein feature detection", + "Scaffolding" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Gene and protein families", + "Sequence analysis", + "Whole genome sequencing", + "Functional genomics", + "Mobile genetic elements" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "apollo" + ], + "type": "internal" + }, + { + "topic_name": "visualisation", + "tutorials": [ + "circos", + "jbrowse" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/bacterial-genome-annotation", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Bakta is a powerful tool to annotate a bacterial genome", + "Annotation can be easily visualized to understand the genomic context and help making sense of the annotations" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-01", + "objectives": [ + "Run a series of tool to annotate a draft bacterial genome for different types of genomic components", + "Evaluate the annotation", + "Process the outputs to formate them for visualization needs", + "Visualize a draft bacterial genome and its annotations" + ], + "pageviews": 2378, + "pub_date": "2024-02-01", + "questions": [ + "Which genes are on a draft bacterial genome?", + "Which other genomic components can be found on a draft bacterial genome?" + ], + "short_id": "T00403", + "short_tools": [ + "Grouping1", + "jbrowse", + "upload1", + "integron_finder", + "isescan", + "tp_tail_tool", + "plasmidfinder", + "tbl2gff3", + "bakta", + "tp_replace_in_column" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "prokaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "illumina", + "bacteria", + "microgalaxy", + "jbrowse1" + ], + "time_estimation": "3H", + "title": "Bacterial Genome Annotation", + "tools": [ + "Grouping1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/plasmidfinder/plasmidfinder/2.1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2", + "upload1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bacterial-genome-annotation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 140, + "visitors": 1800, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-8304-138X", + "name": "Pierre Marin" + } + ], + "description": "Bacterial Genome Annotation", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncontigs\"]\n 1[label=\"ISEScan\"]\n 0 -> 1 [label=\"output\"]\n k2bb672cb453646b08a228590a0ca36c7[color=lightseagreen,label=\"Output\\nisescan_results\"]\n 1 -> k2bb672cb453646b08a228590a0ca36c7\n 2[label=\"PlasmidFinder\"]\n 0 -> 2 [label=\"output\"]\n k614064e64b0f4e38b04ee3f61ba41b46[color=lightseagreen,label=\"Output\\nplasmidfinder_results\"]\n 2 -> k614064e64b0f4e38b04ee3f61ba41b46\n 3[label=\"Integron Finder\"]\n 0 -> 3 [label=\"output\"]\n kd26788cf24414f29ac39b6be96f192eb[color=lightseagreen,label=\"Output\\nintegronfinder_summary\"]\n 3 -> kd26788cf24414f29ac39b6be96f192eb\n 4[label=\"Bakta\"]\n 0 -> 4 [label=\"output\"]\n kd3a40a8b1bd142b6a91e756379b86d94[color=lightseagreen,label=\"Output\\nbakta_summary\"]\n 4 -> kd3a40a8b1bd142b6a91e756379b86d94\n 5[label=\"Group\"]\n 1 -> 5 [label=\"all_results\"]\n 6[label=\"Group\"]\n 1 -> 6 [label=\"all_results\"]\n 7[label=\"Replace Text\"]\n 2 -> 7 [label=\"result_file\"]\n 8[label=\"Select last\"]\n 7 -> 8 [label=\"outfile\"]\n 9[label=\"Table to GFF3\"]\n 8 -> 9 [label=\"outfile\"]\n 10[label=\"JBrowse\"]\n 0 -> 10 [label=\"output\"]\n 4 -> 10 [label=\"annotation_gff3\"]\n 9 -> 10 [label=\"output\"]\n 1 -> 10 [label=\"annotation\"]\n}", + "history": [ + { + "hash": "87968f9a6953ebf322d9fb0fae3a4193b6222288", + "message": "Update tool versions", + "num": 2, + "short_hash": "87968f9a6", + "unix": "1722510143" + }, + { + "hash": "217f251aaa898a91dbb18b5cec3daebaf582c712", + "message": "Update worklow and add tests", + "num": 1, + "short_hash": "217f251aa", + "unix": "1706526984" + } + ], + "inputs": [ + { + "annotation": "contigs", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "contigs", + "name": "contigs" + } + ], + "label": "contigs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 424 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "8cde8af1-c277-4b9f-97f7-54f5997f2c5d", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ncontigs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"ISEScan\"];\n 0 -->|output| 1;\n 2bb672cb-4536-46b0-8a22-8590a0ca36c7[\"Output\\nisescan_results\"];\n 1 --> 2bb672cb-4536-46b0-8a22-8590a0ca36c7;\n style 2bb672cb-4536-46b0-8a22-8590a0ca36c7 stroke:#2c3143,stroke-width:4px;\n 2[\"PlasmidFinder\"];\n 0 -->|output| 2;\n 614064e6-4b0f-4e38-b04e-e3f61ba41b46[\"Output\\nplasmidfinder_results\"];\n 2 --> 614064e6-4b0f-4e38-b04e-e3f61ba41b46;\n style 614064e6-4b0f-4e38-b04e-e3f61ba41b46 stroke:#2c3143,stroke-width:4px;\n 3[\"Integron Finder\"];\n 0 -->|output| 3;\n d26788cf-2441-4f29-ac39-b6be96f192eb[\"Output\\nintegronfinder_summary\"];\n 3 --> d26788cf-2441-4f29-ac39-b6be96f192eb;\n style d26788cf-2441-4f29-ac39-b6be96f192eb stroke:#2c3143,stroke-width:4px;\n 4[\"Bakta\"];\n 0 -->|output| 4;\n d3a40a8b-1bd1-42b6-a91e-756379b86d94[\"Output\\nbakta_summary\"];\n 4 --> d3a40a8b-1bd1-42b6-a91e-756379b86d94;\n style d3a40a8b-1bd1-42b6-a91e-756379b86d94 stroke:#2c3143,stroke-width:4px;\n 5[\"Group\"];\n 1 -->|all_results| 5;\n 6[\"Group\"];\n 1 -->|all_results| 6;\n 7[\"Replace Text\"];\n 2 -->|result_file| 7;\n 8[\"Select last\"];\n 7 -->|outfile| 8;\n 9[\"Table to GFF3\"];\n 8 -->|outfile| 9;\n 10[\"JBrowse\"];\n 0 -->|output| 10;\n 4 -->|annotation_gff3| 10;\n 9 -->|output| 10;\n 1 -->|annotation| 10;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Bacterial Genome Annotation", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy1", + "errors": null, + "id": 1, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "ISEScan", + "outputs": [ + { + "name": "summary", + "type": "tabular" + }, + { + "name": "all_results", + "type": "tabular" + }, + { + "name": "annotation", + "type": "gff" + }, + { + "name": "is_fasta", + "type": "fasta" + }, + { + "name": "orf_fna", + "type": "fasta" + }, + { + "name": "orf_faa", + "type": "fasta" + } + ], + "position": { + "left": 280, + "top": 133 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "19f42b3ea391", + "name": "isescan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"log_activate\": false, \"remove_short_is\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.2.3+galaxy1", + "type": "tool", + "uuid": "334b327f-be00-4e75-ae01-c3ba674dbc9b", + "when": null, + "workflow_outputs": [ + { + "label": "isescan_results", + "output_name": "all_results", + "uuid": "2bb672cb-4536-46b0-8a22-8590a0ca36c7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/plasmidfinder/plasmidfinder/2.1.6+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input|input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PlasmidFinder", + "outputs": [ + { + "name": "hit_file", + "type": "fasta" + }, + { + "name": "plasmid_file", + "type": "fasta" + }, + { + "name": "result_file", + "type": "tabular" + }, + { + "name": "raw_file", + "type": "txt" + } + ], + "position": { + "left": 280, + "top": 420 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/plasmidfinder/plasmidfinder/2.1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "7075b7a5441b", + "name": "plasmidfinder", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"database_name\": \"plasmidfinder_1307168_2019_08_28\"}, \"options\": {\"min_cov\": \"0.6\", \"threshold\": \"0.95\"}, \"output_files\": {\"output_selection\": [\"hit_fasta\", \"plasmid_fasta\", \"result_tsv\", \"result_txt\"]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.6+galaxy1", + "type": "tool", + "uuid": "484ea537-4097-4097-b19c-84fef6c7de9a", + "when": null, + "workflow_outputs": [ + { + "label": "plasmidfinder_results", + "output_name": "result_file", + "uuid": "614064e6-4b0f-4e38-b04e-e3f61ba41b46" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.5+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "sequence": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Integron Finder", + "outputs": [ + { + "name": "integrons_table", + "type": "tsv" + }, + { + "name": "summary", + "type": "tsv" + } + ], + "position": { + "left": 280, + "top": 665 + }, + "post_job_actions": { + "ChangeDatatypeActionintegrons_table": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "integrons_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "4768f7f8e93f", + "name": "integron_finder", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"gbk\": false, \"local_max\": true, \"no_logfile\": true, \"pdf\": false, \"promoter_attI\": true, \"sequence\": {\"__class__\": \"ConnectedValue\"}, \"settings\": {\"attc_settings\": {\"dist_thresh\": \"4000\", \"calin_threshold\": \"2\", \"max_attc_size\": \"200\", \"min_attc_size\": \"40\", \"keep_palindromes\": false, \"covar_matrix\": null}, \"protein_settings\": {\"no_proteins\": false, \"union_integrases\": false, \"func_annot\": false}}, \"topology_file\": null, \"type_replicon\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.5+galaxy0", + "type": "tool", + "uuid": "29a9252c-5c3b-4024-99ff-637d0572320a", + "when": null, + "workflow_outputs": [ + { + "label": "integronfinder_summary", + "output_name": "summary", + "uuid": "d26788cf-2441-4f29-ac39-b6be96f192eb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_option|input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bakta", + "outputs": [ + { + "name": "annotation_tsv", + "type": "tabular" + }, + { + "name": "annotation_gff3", + "type": "gff3" + }, + { + "name": "annotation_ffn", + "type": "fasta" + }, + { + "name": "summary_txt", + "type": "txt" + }, + { + "name": "annotation_plot", + "type": "svg" + } + ], + "position": { + "left": 850, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "728dacaf08a9", + "name": "bakta", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"annotation\": {\"complete\": false, \"prodigal\": null, \"translation_table\": \"11\", \"keep_contig_headers\": true, \"replicons\": null, \"compliant\": false, \"proteins\": null, \"meta\": false}, \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"input_option\": {\"bakta_db_select\": \"V5.0_2023-02-20\", \"amrfinder_db_select\": \"amrfinderplus_V3.11_2022-12-19.1\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"min_contig_length\": null}, \"organism\": {\"genus\": null, \"species\": null, \"strain\": null, \"plasmid\": null}, \"output_files\": {\"output_selection\": [\"file_tsv\", \"file_gff3\", \"file_ffn\", \"file_plot\", \"sum_txt\"]}, \"workflow\": {\"skip_analysis\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.3+galaxy0", + "type": "tool", + "uuid": "181220e7-9082-48bc-b855-f10baf78fc2a", + "when": null, + "workflow_outputs": [ + { + "label": "bakta_summary", + "output_name": "summary_txt", + "uuid": "d3a40a8b-1bd1-42b6-a91e-756379b86d94" + } + ] + } + ], + "parent_id": "genome-annotation/bacterial-genome-annotation", + "path": "topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": true, + "title": "Bacterial Genome Annotation", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-bacterial-genome-annotation/versions/bacterial-genome-annotation", + "tutorial_id": "bacterial-genome-annotation", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.html", + "version": 2, + "wfid": "genome-annotation-bacterial-genome-annotation", + "wfname": "bacterial-genome-annotation", + "workflow": "Bacterial-Genome-Annotation.ga", + "workflow_tools": [ + "Grouping1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/plasmidfinder/plasmidfinder/2.1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2" + ], + "workflowhub_id": "1136" + } + ], + "zenodo_link": "https://zenodo.org/record/10572227" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/genome-annotation/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "genome-annotation/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "level": "Intermediate", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-05-31", + "pageviews": 5726884, + "priority": 1, + "pub_date": "2019-05-13", + "redirect_from": [ + "/topics/genome-annotation/slides/introduction", + "/short/genome-annotation/introduction/slides", + "/short/S00069" + ], + "short_id": "S00069", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "intro", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to Genome Annotation", + "tools": [], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/introduction/slides.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/official-gene-set/tutorial.json", + "contributions": { + "authorship": [ + "abretaud" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/genome-annotation/tutorials/official-gene-set", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/official-gene-set", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Genoest' OGS Tools makes it easy to validate and release a build of your genome and its annotations." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Validate your genes and create an official gene set from them." + ], + "pageviews": 9, + "pub_date": "2023-11-02", + "questions": [ + "I have several genomes assemblies that are not annotated (or I do not trust annotations)", + "I am interested to compare structure of a particular gene across these genome assemblies", + "How do I do that?" + ], + "short_id": "T00370", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "apollo2", + "work-in-progress" + ], + "time_estimation": "30M", + "title": "Creating an Official Gene Set", + "tools": [], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "official-gene-set", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/official-gene-set/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/official-gene-set/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/official-gene-set/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 7, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/genome-annotation/tutorial.json", + "contributors": [ + { + "affiliations": [ + "eurosciencegateway", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anikaerxleben@gmail.com", + "id": "erxleben", + "joined": "2017-09", + "name": "Anika Erxleben", + "orcid": "0000-0002-7427-6478", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/erxleben/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/erxleben.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/genome-annotation/tutorials/genome-annotation", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/genome-annotation", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": null, + "pageviews": 61166, + "pub_date": "2015-06-29", + "questions": null, + "short_id": "T00175", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "prokaryote", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "work-in-progress" + ], + "time_estimation": "2H", + "title": "Genome Annotation", + "tools": [], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "genome-annotation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/genome-annotation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/genome-annotation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/genome-annotation/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 85, + "visitors": 32874, + "zenodo_link": "https://doi.org/10.5281/zenodo.1250793" + }, + { + "abbreviations": { + "NMDS": "Non-metric multidimensional scaling" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "interproscan", + "owner": "bgruening", + "revisions": "74810db257cc", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "f9242e01365a", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "eggnog_mapper", + "owner": "galaxyp", + "revisions": "844fa988236b", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "aegean_parseval", + "owner": "iuc", + "revisions": "1b52f0c8ad7f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "94170eee0ad8", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_annotate", + "owner": "iuc", + "revisions": "9feee7fc49a1", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_annotate", + "owner": "iuc", + "revisions": "582fd74dc2a1", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_compare", + "owner": "iuc", + "revisions": "a7ce2601500c", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_compare", + "owner": "iuc", + "revisions": "30f08d74024f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_predict", + "owner": "iuc", + "revisions": "51b6ee65ef7f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_predict", + "owner": "iuc", + "revisions": "f31125bb85ea", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "3ea5a2a63fa2", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "4074fc1940e2", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: interproscan\n owner: bgruening\n revisions: 74810db257cc\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: f9242e01365a\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: eggnog_mapper\n owner: galaxyp\n revisions: 844fa988236b\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: aegean_parseval\n owner: iuc\n revisions: 1b52f0c8ad7f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 94170eee0ad8\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_annotate\n owner: iuc\n revisions: 9feee7fc49a1\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_annotate\n owner: iuc\n revisions: 582fd74dc2a1\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_compare\n owner: iuc\n revisions: a7ce2601500c\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_compare\n owner: iuc\n revisions: 30f08d74024f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_predict\n owner: iuc\n revisions: 51b6ee65ef7f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_predict\n owner: iuc\n revisions: f31125bb85ea\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 3ea5a2a63fa2\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 4074fc1940e2\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/funannotate/tutorial.json", + "contributions": { + "authorship": [ + "abretaud" + ], + "editing": [ + "alexcorm", + "lleroi", + "r1corre", + "stephanierobin" + ], + "funding": [ + "gallantries", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "email": "alexandre.cormier@ifremer.fr", + "id": "alexcorm", + "joined": "2021-11", + "name": "Alexandre Cormier", + "orcid": "0000-0002-7775-8413", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alexcorm/", + "twitter": "allanssx", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alexcorm.json" + }, + { + "email": "laura.leroi@ifremer.fr", + "id": "lleroi", + "joined": "2021-11", + "name": "Laura Leroi", + "orcid": "0000-0003-3748-4179", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lleroi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lleroi.json" + }, + { + "email": "erwan.corre@sb-roscoff.fr", + "id": "r1corre", + "joined": "2019-04", + "name": "Erwan Corre", + "orcid": "0000-0001-6354-2278", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/r1corre/", + "twitter": "r1corre", + "url": "https://training.galaxyproject.org/training-material/api/contributors/r1corre.json" + }, + { + "email": "stephanie.robin@inrae.fr", + "id": "stephanierobin", + "joined": "2021-11", + "name": "St\u00e9phanie Robin", + "orcid": "0000-0001-7379-9173", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stephanierobin/", + "twitter": "robinstphanie1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stephanierobin.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/genome-annotation/tutorials/funannotate", + "edam_operation": [ + "Sequence motif recognition", + "Sequence alignment", + "Genome annotation", + "Sequence assembly validation", + "Homology-based gene prediction", + "Fold recognition", + "Formatting", + "Information extraction", + "Genome visualisation", + "Transcriptome assembly", + "Sequence annotation", + "Genome assembly", + "Protein feature detection", + "Query and retrieval", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "apollo" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/funannotate", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Funannotate allows to perform structural annotation of an eukaryotic genome.", + "Functional annotation can be performed using EggNOG-mapper and InterProScan.", + "BUSCO and JBrowse allow to inspect the quality of an annotation.", + "Funannotate allows to format an annotation for sumission at NCBI." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Load genome into Galaxy", + "Annotate genome with Funannotate", + "Perform functional annotation using EggNOG-mapper and InterProScan", + "Evaluate annotation quality with BUSCO", + "View annotations in JBrowse" + ], + "pageviews": 10392, + "priority": 2, + "pub_date": "2021-11-29", + "questions": [ + "How to annotate an eukaryotic genome with Funannotate?", + "How to perform functional annotation?", + "How to evaluate and visualize annotated genomic features?", + "How to format the annotation for submission at NCBI?" + ], + "recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2023-05-12", + "galaxy_version": "23.01", + "length": "1H10M", + "speakers": [ + "abretaud" + ], + "youtube_id": "p0NBxZk5964" + }, + { + "captioners": [ + "abretaud" + ], + "date": "2022-03-03", + "galaxy_version": "21.09", + "length": "1H10M", + "speakers": [ + "abretaud" + ], + "youtube_id": "r-wU6BhqIpk" + } + ], + "requirements": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "repeatmasker" + ], + "type": "internal" + } + ], + "short_id": "T00172", + "short_tools": [ + "jbrowse", + "busco", + "eggnog_mapper", + "picard_MergeSamFiles", + "funannotate_annotate", + "funannotate_predict", + "aegean_parseval", + "funannotate_compare", + "interproscan", + "rna_star" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "eukaryote", + "jbrowse1" + ], + "time_estimation": "8h", + "title": "Genome annotation with Funannotate", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MergeSamFiles/2.18.2.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/aegean_parseval/aegean_parseval/0.16.0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.8a+galaxy0" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "funannotate", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/funannotate/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/funannotate/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/funannotate/tutorial.json" + }, + "version": 22, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 129, + "visitors": 6817, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-0914-2470", + "name": "Anthony Bretaudeau" + } + ], + "description": "Structural and functional genome annotation with Funannotate", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome assembly\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRNASeq reads forward\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRNASeq reads reverse\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProtein evidence sequences\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNCBI submission template\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAlternate annotation gbk\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAlternate annotation gff3\"]\n 7[label=\"RNA STAR\"]\n 0 -> 7 [label=\"output\"]\n 1 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n k79cf59ea3aef4cb89c705b42e03a5da9[color=lightseagreen,label=\"Output\\nMapped RNASeq\"]\n 7 -> k79cf59ea3aef4cb89c705b42e03a5da9\n 8[label=\"Funannotate predict annotation\"]\n 3 -> 8 [label=\"output\"]\n 7 -> 8 [label=\"mapped_reads\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"eggNOG Mapper\"]\n 8 -> 9 [label=\"fasta_proteins\"]\n 10[label=\"InterProScan\"]\n 8 -> 10 [label=\"fasta_proteins\"]\n 11[label=\"Funannotate functional\"]\n 9 -> 11 [label=\"annotations\"]\n 8 -> 11 [label=\"annot_gbk\"]\n 10 -> 11 [label=\"outfile_xml\"]\n 4 -> 11 [label=\"output\"]\n kd0694cd16d814d7283b994cb57dc1502[color=lightseagreen,label=\"Output\\nFinal annotation (genbank)\"]\n 11 -> kd0694cd16d814d7283b994cb57dc1502\n k9a1e7b70109041ed863765b7372a9f6c[color=lightseagreen,label=\"Output\\nFinal annotation (CDS sequences)\"]\n 11 -> k9a1e7b70109041ed863765b7372a9f6c\n k99fffa402196491d9a66559ebf2d9561[color=lightseagreen,label=\"Output\\nFinal annotation (mRNA sequences)\"]\n 11 -> k99fffa402196491d9a66559ebf2d9561\n k17b03b7704854176b2b303bfa2d3bcb0[color=lightseagreen,label=\"Output\\nFinal annotation (protein sequences)\"]\n 11 -> k17b03b7704854176b2b303bfa2d3bcb0\n k4a0602fce6d243fc9957344707c22c05[color=lightseagreen,label=\"Output\\nFinal annotation (GFF3)\"]\n 11 -> k4a0602fce6d243fc9957344707c22c05\n 12[label=\"JBrowse\"]\n 0 -> 12 [label=\"output\"]\n 11 -> 12 [label=\"gff3\"]\n 7 -> 12 [label=\"mapped_reads\"]\n kac4d8805f12344d2b30f8ac906cc471f[color=lightseagreen,label=\"Output\\nJBrowse\"]\n 12 -> kac4d8805f12344d2b30f8ac906cc471f\n 13[label=\"Funannotate compare\"]\n 5 -> 13 [label=\"output\"]\n 11 -> 13 [label=\"gbk\"]\n ke531c81ff6b74c82a712c562873ff714[color=lightseagreen,label=\"Output\\nFunannotate compare report\"]\n 13 -> ke531c81ff6b74c82a712c562873ff714\n 14[label=\"AEGeAn ParsEval\"]\n 6 -> 14 [label=\"output\"]\n 11 -> 14 [label=\"gff3\"]\n k0d776b462c1c40839f9da213fa62eb81[color=lightseagreen,label=\"Output\\nAEGeAN report\"]\n 14 -> k0d776b462c1c40839f9da213fa62eb81\n 15[label=\"Busco\"]\n 11 -> 15 [label=\"fa_proteins\"]\n k57a619f5b3314ca68e6e72eb61860032[color=lightseagreen,label=\"Output\\nBusco summary\"]\n 15 -> k57a619f5b3314ca68e6e72eb61860032\n k97d23764ad4a4d69948cc81afb76fbaf[color=lightseagreen,label=\"Output\\nBusco image\"]\n 15 -> k97d23764ad4a4d69948cc81afb76fbaf\n}", + "history": [ + { + "hash": "ed3325d60843b30358cdb704f83ad9ea4b6c149f", + "message": "update funannotate tuto", + "num": 1, + "short_hash": "ed3325d60", + "unix": "1682519007" + } + ], + "inputs": [ + { + "annotation": "The genome sequence that you wish to annotate, in fasta format. It needs to be soft masked beforehand.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "The genome sequence that you wish to annotate, in fasta format. It needs to be soft masked beforehand.", + "name": "Genome assembly" + } + ], + "label": "Genome assembly", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 7.75 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "cca15c08-8dd9-424a-8260-4c02a94c2612", + "workflow_outputs": [] + }, + { + "annotation": "Some RNASeq data, forward reads, in fastq format", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Some RNASeq data, forward reads, in fastq format", + "name": "RNASeq reads forward" + } + ], + "label": "RNASeq reads forward", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3.45001220703125, + "top": 164.33334350585938 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "6681e7b9-68f6-46e4-811f-60473d23fe0f", + "workflow_outputs": [] + }, + { + "annotation": "Some RNASeq data, reverse reads, in fastq format", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Some RNASeq data, reverse reads, in fastq format", + "name": "RNASeq reads reverse" + } + ], + "label": "RNASeq reads reverse", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6, + "top": 310.6666564941406 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "160023e3-250f-424d-abe5-f7e3978768f0", + "workflow_outputs": [] + }, + { + "annotation": "Some protein sequences to align on the genome to help annotation", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Some protein sequences to align on the genome to help annotation", + "name": "Protein evidence sequences" + } + ], + "label": "Protein evidence sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 7.116668701171875, + "top": 441.4166564941406 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "abb56aaf-5988-4fb8-a68f-0edaee00f445", + "workflow_outputs": [] + }, + { + "annotation": "A submission template retrieved from NCBI (generate it on https://submit.ncbi.nlm.nih.gov/genbank/template/submission/)", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "A submission template retrieved from NCBI (generate it on https://submit.ncbi.nlm.nih.gov/genbank/template/submission/)", + "name": "NCBI submission template" + } + ], + "label": "NCBI submission template", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.45001220703125, + "top": 580.4833068847656 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "537f8bb4-4986-4d8d-a49b-1842dfaa739a", + "workflow_outputs": [] + }, + { + "annotation": "The genbank output of an alternate annotation (for comparison)", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "The genbank output of an alternate annotation (for comparison)", + "name": "Alternate annotation gbk" + } + ], + "label": "Alternate annotation gbk", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 727.7333068847656 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "51a62e82-d478-45c3-bcbc-f38f1fd85974", + "workflow_outputs": [] + }, + { + "annotation": "The gff3 output of an alternate annotation (for comparison)", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "The gff3 output of an alternate annotation (for comparison)", + "name": "Alternate annotation gff3" + } + ], + "label": "Alternate annotation gff3", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.4666748046875, + "top": 845.7500305175781 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e4367779-3fc7-4eec-8e45-86158b3950bc", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGenome assembly\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nRNASeq reads forward\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nRNASeq reads reverse\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nProtein evidence sequences\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nNCBI submission template\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nAlternate annotation gbk\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nAlternate annotation gff3\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"RNA STAR\"];\n 0 -->|output| 7;\n 1 -->|output| 7;\n 2 -->|output| 7;\n 79cf59ea-3aef-4cb8-9c70-5b42e03a5da9[\"Output\\nMapped RNASeq\"];\n 7 --> 79cf59ea-3aef-4cb8-9c70-5b42e03a5da9;\n style 79cf59ea-3aef-4cb8-9c70-5b42e03a5da9 stroke:#2c3143,stroke-width:4px;\n 8[\"Funannotate predict annotation\"];\n 3 -->|output| 8;\n 7 -->|mapped_reads| 8;\n 0 -->|output| 8;\n 9[\"eggNOG Mapper\"];\n 8 -->|fasta_proteins| 9;\n 10[\"InterProScan\"];\n 8 -->|fasta_proteins| 10;\n 11[\"Funannotate functional\"];\n 9 -->|annotations| 11;\n 8 -->|annot_gbk| 11;\n 10 -->|outfile_xml| 11;\n 4 -->|output| 11;\n d0694cd1-6d81-4d72-83b9-94cb57dc1502[\"Output\\nFinal annotation (genbank)\"];\n 11 --> d0694cd1-6d81-4d72-83b9-94cb57dc1502;\n style d0694cd1-6d81-4d72-83b9-94cb57dc1502 stroke:#2c3143,stroke-width:4px;\n 9a1e7b70-1090-41ed-8637-65b7372a9f6c[\"Output\\nFinal annotation (CDS sequences)\"];\n 11 --> 9a1e7b70-1090-41ed-8637-65b7372a9f6c;\n style 9a1e7b70-1090-41ed-8637-65b7372a9f6c stroke:#2c3143,stroke-width:4px;\n 99fffa40-2196-491d-9a66-559ebf2d9561[\"Output\\nFinal annotation (mRNA sequences)\"];\n 11 --> 99fffa40-2196-491d-9a66-559ebf2d9561;\n style 99fffa40-2196-491d-9a66-559ebf2d9561 stroke:#2c3143,stroke-width:4px;\n 17b03b77-0485-4176-b2b3-03bfa2d3bcb0[\"Output\\nFinal annotation (protein sequences)\"];\n 11 --> 17b03b77-0485-4176-b2b3-03bfa2d3bcb0;\n style 17b03b77-0485-4176-b2b3-03bfa2d3bcb0 stroke:#2c3143,stroke-width:4px;\n 4a0602fc-e6d2-43fc-9957-344707c22c05[\"Output\\nFinal annotation (GFF3)\"];\n 11 --> 4a0602fc-e6d2-43fc-9957-344707c22c05;\n style 4a0602fc-e6d2-43fc-9957-344707c22c05 stroke:#2c3143,stroke-width:4px;\n 12[\"JBrowse\"];\n 0 -->|output| 12;\n 11 -->|gff3| 12;\n 7 -->|mapped_reads| 12;\n ac4d8805-f123-44d2-b30f-8ac906cc471f[\"Output\\nJBrowse\"];\n 12 --> ac4d8805-f123-44d2-b30f-8ac906cc471f;\n style ac4d8805-f123-44d2-b30f-8ac906cc471f stroke:#2c3143,stroke-width:4px;\n 13[\"Funannotate compare\"];\n 5 -->|output| 13;\n 11 -->|gbk| 13;\n e531c81f-f6b7-4c82-a712-c562873ff714[\"Output\\nFunannotate compare report\"];\n 13 --> e531c81f-f6b7-4c82-a712-c562873ff714;\n style e531c81f-f6b7-4c82-a712-c562873ff714 stroke:#2c3143,stroke-width:4px;\n 14[\"AEGeAn ParsEval\"];\n 6 -->|output| 14;\n 11 -->|gff3| 14;\n 0d776b46-2c1c-4083-9f9d-a213fa62eb81[\"Output\\nAEGeAN report\"];\n 14 --> 0d776b46-2c1c-4083-9f9d-a213fa62eb81;\n style 0d776b46-2c1c-4083-9f9d-a213fa62eb81 stroke:#2c3143,stroke-width:4px;\n 15[\"Busco\"];\n 11 -->|fa_proteins| 15;\n 57a619f5-b331-4ca6-8e6e-72eb61860032[\"Output\\nBusco summary\"];\n 15 --> 57a619f5-b331-4ca6-8e6e-72eb61860032;\n style 57a619f5-b331-4ca6-8e6e-72eb61860032 stroke:#2c3143,stroke-width:4px;\n 97d23764-ad4a-4d69-948c-c81afb76fbaf[\"Output\\nBusco image\"];\n 15 --> 97d23764-ad4a-4d69-948c-c81afb76fbaf;\n style 97d23764-ad4a-4d69-948c-c81afb76fbaf stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Funannotate", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "errors": null, + "id": 7, + "input_connections": { + "refGenomeSource|genomeFastaFiles": { + "id": 0, + "output_name": "output" + }, + "singlePaired|input1": { + "id": 1, + "output_name": "output" + }, + "singlePaired|input2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RNA STAR", + "name": "refGenomeSource" + }, + { + "description": "runtime parameter for tool RNA STAR", + "name": "singlePaired" + }, + { + "description": "runtime parameter for tool RNA STAR", + "name": "singlePaired" + } + ], + "label": null, + "name": "RNA STAR", + "outputs": [ + { + "name": "output_log", + "type": "txt" + }, + { + "name": "splice_junctions", + "type": "interval" + }, + { + "name": "mapped_reads", + "type": "bam" + } + ], + "position": { + "left": 766.699951171875, + "top": 239.0 + }, + "post_job_actions": { + "HideDatasetActionoutput_log": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_log" + }, + "HideDatasetActionsplice_junctions": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "splice_junctions" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "tool_shed_repository": { + "changeset_revision": "3ea5a2a63fa2", + "name": "rgrnastar", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"algo\": {\"params\": {\"settingsType\": \"default\", \"__current_case__\": 0}}, \"chimOutType\": \"\", \"filter\": {\"basic_filters\": [\"exclude_unmapped\"], \"output_params2\": {\"output_select2\": \"no\", \"__current_case__\": 1}}, \"oformat\": {\"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\", \"ch\"], \"HI_offset\": \"1\", \"outSAMprimaryFlag\": \"OneBestScore\", \"outSAMmapqUnique\": \"60\"}, \"outWig\": {\"outWigType\": \"None\", \"__current_case__\": 0, \"outWigStrand\": \"false\"}, \"perf\": {\"outBAMsortingBinsN\": \"50\", \"winAnchorMultimapNmax\": \"50\"}, \"refGenomeSource\": {\"geneSource\": \"history\", \"__current_case__\": 1, \"genomeFastaFiles\": {\"__class__\": \"RuntimeValue\"}, \"genomeSAindexNbases\": \"11\", \"GTFconditional\": {\"GTFselect\": \"without-gtf\", \"__current_case__\": 1, \"quantmode_output\": {\"quantMode\": \"-\", \"__current_case__\": 0}}}, \"singlePaired\": {\"sPaired\": \"paired\", \"__current_case__\": 1, \"input1\": {\"__class__\": \"RuntimeValue\"}, \"input2\": {\"__class__\": \"RuntimeValue\"}}, \"twopass\": {\"twopassMode\": \"None\", \"__current_case__\": 0, \"twopass_read_subset\": \"\", \"sj_precalculated\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.7.10b+galaxy3", + "type": "tool", + "uuid": "269a3794-e421-4826-a5de-8a328fd194bd", + "workflow_outputs": [ + { + "label": "Mapped RNASeq", + "output_name": "mapped_reads", + "uuid": "79cf59ea-3aef-4cb8-9c70-5b42e03a5da9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "evidences|prot_evidence|protein_evidence": { + "id": 3, + "output_name": "output" + }, + "evidences|rna_bam": { + "id": 7, + "output_name": "mapped_reads" + }, + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "database" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "evidences" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "evidences" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "genemark" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "genemark" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "input" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "parameters" + } + ], + "label": null, + "name": "Funannotate predict annotation", + "outputs": [ + { + "name": "annot_gbk", + "type": "genbank" + }, + { + "name": "annot_tbl", + "type": "txt" + }, + { + "name": "annot_gff3", + "type": "gff3" + }, + { + "name": "fasta_proteins", + "type": "fasta" + }, + { + "name": "fasta_transcripts_mrna", + "type": "fasta" + }, + { + "name": "fasta_transcripts_cds", + "type": "fasta" + }, + { + "name": "tbl2asn_report", + "type": "txt" + }, + { + "name": "tbl2asn_error", + "type": "txt" + }, + { + "name": "tbl2asn_validation", + "type": "txt" + }, + { + "name": "stats", + "type": "json" + } + ], + "position": { + "left": 1055.2666015625, + "top": 65.88333129882812 + }, + "post_job_actions": { + "HideDatasetActionannot_gbk": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "annot_gbk" + }, + "HideDatasetActionannot_gff3": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "annot_gff3" + }, + "HideDatasetActionannot_tbl": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "annot_tbl" + }, + "HideDatasetActionfasta_transcripts_cds": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fasta_transcripts_cds" + }, + "HideDatasetActionfasta_transcripts_mrna": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fasta_transcripts_mrna" + }, + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "HideDatasetActiontbl2asn_error": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "tbl2asn_error" + }, + "HideDatasetActiontbl2asn_report": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "tbl2asn_report" + }, + "HideDatasetActiontbl2asn_validation": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "tbl2asn_validation" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy0", + "tool_shed_repository": { + "changeset_revision": "51b6ee65ef7f", + "name": "funannotate_predict", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"augustus\": {\"augustus_species\": \"none\", \"min_training_models\": \"200\", \"optimize_augustus\": \"false\"}, \"busco\": {\"busco_db\": \"mucorales_odb10\", \"busco_seed_species\": \"rhizopus_oryzae\"}, \"database\": {\"__class__\": \"RuntimeValue\"}, \"evidences\": {\"rna_bam\": {\"__class__\": \"RuntimeValue\"}, \"transcript_evidence\": {\"__class__\": \"RuntimeValue\"}, \"prot_evidence\": {\"prot_evidence_source\": \"custom\", \"__current_case__\": 1, \"protein_evidence\": {\"__class__\": \"RuntimeValue\"}}, \"p2g_pident\": \"80\", \"p2g_prefilter\": \"diamond\"}, \"evm\": {\"repeats2evm\": \"false\", \"evm_partitioning\": {\"evm_partition\": \"yes\", \"__current_case__\": 0, \"evm_partition_interval\": \"1500\"}, \"weights\": \"\"}, \"filtering\": {\"min_intronlen\": \"10\", \"max_intronlen\": \"3000\", \"min_protlen\": \"50\", \"keep_no_stops\": \"false\", \"repeat_filter\": \"overlap blast\"}, \"force\": \"true\", \"genemark\": {\"genemark_license\": {\"__class__\": \"RuntimeValue\"}, \"genemark_mode\": \"ES\", \"genemark_mod\": {\"__class__\": \"RuntimeValue\"}, \"soft_mask\": \"2000\"}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"organism\": {\"species\": \"Mucor mucedo\", \"isolate\": \"\", \"strain\": \"muc1\", \"organism\": \"false\", \"ploidy\": \"1\", \"SeqCenter\": \"CFMR\", \"SeqAccession\": \"12345\", \"name\": \"FUN_\", \"numbering\": \"1\"}, \"other_predictors\": {\"stringtie\": {\"__class__\": \"RuntimeValue\"}, \"maker_gff\": {\"__class__\": \"RuntimeValue\"}, \"pasa_gff\": {\"__class__\": \"RuntimeValue\"}, \"pasa_gff_weight\": \"1\", \"other_gff\": {\"__class__\": \"RuntimeValue\"}, \"other_gff_weight\": \"1\"}, \"outputs\": [\"gbk\", \"tbl\", \"gff3\", \"proteins_fa\", \"mrna_transcripts_fa\", \"cds_transcripts_fa\", \"tbl2asn_report\", \"tbl2asn_error\", \"tbl2asn_validation\", \"stats\"], \"parameters\": {\"__class__\": \"RuntimeValue\"}, \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.15+galaxy0", + "type": "tool", + "uuid": "aefc0275-b611-4ede-9650-2e16553a7352", + "workflow_outputs": [ + { + "label": null, + "output_name": "fasta_proteins", + "uuid": "aa7fb986-b7db-4353-a83b-3f1591911388" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "errors": null, + "id": 9, + "input_connections": { + "ortho_method|input": { + "id": 8, + "output_name": "fasta_proteins" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool eggNOG Mapper", + "name": "ortho_method" + } + ], + "label": null, + "name": "eggNOG Mapper", + "outputs": [ + { + "name": "seed_orthologs", + "type": "tabular" + }, + { + "name": "annotations", + "type": "tabular" + } + ], + "position": { + "left": 1444.9666748046875, + "top": 418.7333068847656 + }, + "post_job_actions": { + "HideDatasetActionseed_orthologs": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "seed_orthologs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "tool_shed_repository": { + "changeset_revision": "9d1fbff733cf", + "name": "eggnog_mapper", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation_options\": {\"no_annot\": \"\", \"__current_case__\": 0, \"seed_ortholog_evalue\": \"0.001\", \"seed_ortholog_score\": null, \"tax_scope\": null, \"target_orthologs\": \"all\", \"go_evidence\": \"non-electronic\"}, \"eggnog_data\": \"5.0.2\", \"ortho_method\": {\"m\": \"diamond\", \"__current_case__\": 0, \"input\": {\"__class__\": \"RuntimeValue\"}, \"input_trans\": {\"itype\": \"proteins\", \"__current_case__\": 0}, \"matrix_gapcosts\": {\"matrix\": \"BLOSUM62\", \"__current_case__\": 2, \"gap_costs\": \"--gapopen 11 --gapextend 1\"}, \"sensmode\": \"sensitive\", \"dmnd_iterate\": \"false\", \"dmnd_ignore_warnings\": \"false\", \"query_cover\": null, \"subject_cover\": null, \"pident\": null, \"evalue\": null, \"score\": \"0.001\"}, \"output_options\": {\"no_file_comments\": \"false\", \"report_orthologs\": \"false\", \"md5\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.8+galaxy3", + "type": "tool", + "uuid": "0d9f93f0-88b3-406b-b8f9-ecb2d74c61e9", + "workflow_outputs": [ + { + "label": null, + "output_name": "annotations", + "uuid": "521fe026-4958-4965-9414-e7074aea7860" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "fasta_proteins" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool InterProScan", + "name": "input" + } + ], + "label": null, + "name": "InterProScan", + "outputs": [ + { + "name": "outfile_tsv", + "type": "tabular" + }, + { + "name": "outfile_xml", + "type": "xml" + } + ], + "position": { + "left": 1475.8499755859375, + "top": 817.8666687011719 + }, + "post_job_actions": { + "HideDatasetActionoutfile_xml": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile_xml" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "tool_shed_repository": { + "changeset_revision": "74810db257cc", + "name": "interproscan", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"applications\": [\"TIGRFAM\", \"SFLD\", \"SUPERFAMILY\", \"PANTHER\", \"Gene3D\", \"Hamap\", \"PrositeProfiles\", \"Coils\", \"SMART\", \"CDD\", \"PRINTS\", \"PIRSR\", \"PrositePatterns\", \"Pfam\", \"MobiDBLite\", \"PIRSF\"], \"database\": \"5.59-91.0\", \"goterms\": \"true\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"iprlookup\": \"false\", \"licensed\": {\"use\": \"true\", \"__current_case__\": 1, \"applications_licensed\": [\"Phobius\", \"SignalP_EUK\", \"TMHMM\"]}, \"oformat\": [\"TSV\", \"XML\"], \"pathways\": \"true\", \"seqtype\": \"p\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.59-91.0+galaxy3", + "type": "tool", + "uuid": "cb7a1910-3c31-47d9-835b-f1bd16a1c3ff", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_tsv", + "uuid": "65e267a7-d3c6-410d-9b44-f655d70d7d9a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "eggnog": { + "id": 9, + "output_name": "annotations" + }, + "input|genbank": { + "id": 8, + "output_name": "annot_gbk" + }, + "iprscan": { + "id": 10, + "output_name": "outfile_xml" + }, + "sbt": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Funannotate functional", + "name": "annotations" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "antismash" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "database" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "eggnog" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "fix" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "input" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "iprscan" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "phobius" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "remove" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "sbt" + } + ], + "label": null, + "name": "Funannotate functional", + "outputs": [ + { + "name": "gbk", + "type": "genbank" + }, + { + "name": "annot", + "type": "tabular" + }, + { + "name": "contigs_fsa", + "type": "fasta" + }, + { + "name": "agp", + "type": "tabular" + }, + { + "name": "tbl", + "type": "txt" + }, + { + "name": "sqn", + "type": "txt" + }, + { + "name": "fa_scaffolds", + "type": "fasta" + }, + { + "name": "fa_proteins", + "type": "fasta" + }, + { + "name": "fa_transcripts_mrna", + "type": "fasta" + }, + { + "name": "fa_transcripts_cds", + "type": "fasta" + }, + { + "name": "gff3", + "type": "gff3" + }, + { + "name": "tbl2asn_report", + "type": "txt" + }, + { + "name": "stats", + "type": "json" + }, + { + "name": "must_fix", + "type": "json" + }, + { + "name": "need_curating", + "type": "json" + }, + { + "name": "new_names_passed", + "type": "json" + } + ], + "position": { + "left": 1877.11669921875, + "top": 101.59999084472656 + }, + "post_job_actions": { + "HideDatasetActionagp": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "agp" + }, + "HideDatasetActionannot": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "annot" + }, + "HideDatasetActioncontigs_fsa": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "contigs_fsa" + }, + "HideDatasetActionfa_scaffolds": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fa_scaffolds" + }, + "HideDatasetActionmust_fix": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "must_fix" + }, + "HideDatasetActionneed_curating": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "need_curating" + }, + "HideDatasetActionnew_names_passed": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "new_names_passed" + }, + "HideDatasetActionsqn": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "sqn" + }, + "HideDatasetActiontbl": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "tbl" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy0", + "tool_shed_repository": { + "changeset_revision": "9feee7fc49a1", + "name": "funannotate_annotate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotations\": {\"__class__\": \"RuntimeValue\"}, \"antismash\": {\"__class__\": \"RuntimeValue\"}, \"busco_db\": \"mucorales_odb10\", \"database\": {\"__class__\": \"RuntimeValue\"}, \"eggnog\": {\"__class__\": \"RuntimeValue\"}, \"fix\": {\"__class__\": \"RuntimeValue\"}, \"input\": {\"input_type\": \"gbk\", \"__current_case__\": 0, \"genbank\": {\"__class__\": \"RuntimeValue\"}}, \"iprscan\": {\"__class__\": \"RuntimeValue\"}, \"isolate\": \"\", \"outputs\": [\"gbk\", \"annotations\", \"contigs_fsa\", \"agp\", \"tbl\", \"sqn\", \"scaffolds_fa\", \"proteins_fa\", \"mrna_transcripts_fa\", \"cds_transcripts_fa\", \"gff3\", \"discrepency\", \"stats\", \"must_fix\", \"need_curating\", \"new_names_passed\"], \"phobius\": {\"__class__\": \"RuntimeValue\"}, \"remove\": {\"__class__\": \"RuntimeValue\"}, \"rename\": \"\", \"sbt\": {\"__class__\": \"RuntimeValue\"}, \"strain\": \"muc1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.15+galaxy0", + "type": "tool", + "uuid": "e07de1e0-8f91-4477-b951-7d97dba2e397", + "workflow_outputs": [ + { + "label": "Final annotation (genbank)", + "output_name": "gbk", + "uuid": "d0694cd1-6d81-4d72-83b9-94cb57dc1502" + }, + { + "label": "Final annotation (CDS sequences)", + "output_name": "fa_transcripts_cds", + "uuid": "9a1e7b70-1090-41ed-8637-65b7372a9f6c" + }, + { + "label": "Final annotation (mRNA sequences)", + "output_name": "fa_transcripts_mrna", + "uuid": "99fffa40-2196-491d-9a66-559ebf2d9561" + }, + { + "label": "Final annotation (protein sequences)", + "output_name": "fa_proteins", + "uuid": "17b03b77-0485-4176-b2b3-03bfa2d3bcb0" + }, + { + "label": null, + "output_name": "tbl2asn_report", + "uuid": "d3d4daec-75fe-4071-af37-c2907e46f5c1" + }, + { + "label": null, + "output_name": "stats", + "uuid": "4a682ab6-8a6f-4a0f-bb0e-ba796f587ddc" + }, + { + "label": "Final annotation (GFF3)", + "output_name": "gff3", + "uuid": "4a0602fc-e6d2-43fc-9957-344707c22c05" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "reference_genome|genome": { + "id": 0, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 11, + "output_name": "gff3" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 7, + "output_name": "mapped_reads" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool JBrowse", + "name": "reference_genome" + } + ], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 2152.60009765625, + "top": 0.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a6e57ff585c0", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"RuntimeValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Annotation\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"RNASeq\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"auto_snp\": \"true\", \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.11+galaxy1", + "type": "tool", + "uuid": "e6d0e687-1a13-482b-a00a-28c7304d59ac", + "workflow_outputs": [ + { + "label": "JBrowse", + "output_name": "output", + "uuid": "ac4d8805-f123-44d2-b30f-8ac906cc471f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "input": [ + { + "id": 5, + "output_name": "output" + }, + { + "id": 11, + "output_name": "gbk" + } + ] + }, + "inputs": [ + { + "description": "runtime parameter for tool Funannotate compare", + "name": "database" + }, + { + "description": "runtime parameter for tool Funannotate compare", + "name": "proteinortho" + } + ], + "label": null, + "name": "Funannotate compare", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 2318, + "top": 403.7333068847656 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a7ce2601500c", + "name": "funannotate_compare", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"database\": {\"__class__\": \"RuntimeValue\"}, \"go_fdr\": \"0.05\", \"heatmap_stdev\": \"1.0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"ml\": {\"ml_method\": \"iqtree\", \"__current_case__\": 0}, \"num_orthos\": \"500\", \"proteinortho\": {\"__class__\": \"RuntimeValue\"}, \"run_dnds\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.15+galaxy0", + "type": "tool", + "uuid": "750137e5-2cac-4bec-8337-03dab562a7a5", + "workflow_outputs": [ + { + "label": "Funannotate compare report", + "output_name": "output", + "uuid": "e531c81f-f6b7-4c82-a712-c562873ff714" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/aegean_parseval/aegean_parseval/0.16.0", + "errors": null, + "id": 14, + "input_connections": { + "predictiongff3": { + "id": 6, + "output_name": "output" + }, + "referencegff3": { + "id": 11, + "output_name": "gff3" + } + }, + "inputs": [], + "label": null, + "name": "AEGeAn ParsEval", + "outputs": [ + { + "name": "output_html", + "type": "html" + } + ], + "position": { + "left": 2318.5, + "top": 643.7333068847656 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/aegean_parseval/aegean_parseval/0.16.0", + "tool_shed_repository": { + "changeset_revision": "1b52f0c8ad7f", + "name": "aegean_parseval", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"delta\": \"0\", \"maxtrans\": \"32\", \"output_type\": \"html\", \"predictiongff3\": {\"__class__\": \"ConnectedValue\"}, \"predlabel\": \"\", \"referencegff3\": {\"__class__\": \"ConnectedValue\"}, \"refrlabel\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.16.0", + "type": "tool", + "uuid": "b5870c4b-d799-4da0-83cc-7dd5a0b049e4", + "workflow_outputs": [ + { + "label": "AEGeAN report", + "output_name": "output_html", + "uuid": "0d776b46-2c1c-4083-9f9d-a213fa62eb81" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 11, + "output_name": "fa_proteins" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Busco", + "name": "input" + } + ], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "summary_image", + "type": "png" + } + ], + "position": { + "left": 2252.2666015625, + "top": 1072.0666809082031 + }, + "post_job_actions": { + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "94170eee0ad8", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\"}, \"busco_mode\": {\"mode\": \"prot\", \"__current_case__\": 2}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": \"mucorales_odb10\"}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"image\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.4.6+galaxy0", + "type": "tool", + "uuid": "bec3d4d9-88e6-4ea0-beb6-219d5c727290", + "workflow_outputs": [ + { + "label": "Busco summary", + "output_name": "busco_sum", + "uuid": "57a619f5-b331-4ca6-8e6e-72eb61860032" + }, + { + "label": "Busco image", + "output_name": "summary_image", + "uuid": "97d23764-ad4a-4d69-948c-c81afb76fbaf" + } + ] + } + ], + "parent_id": "genome-annotation/funannotate", + "path": "topics/genome-annotation/tutorials/funannotate/workflows/funannotate.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": true, + "title": "Funannotate", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-funannotate/versions/funannotate", + "tutorial_id": "funannotate", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/funannotate/workflows/funannotate.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/funannotate/workflows/funannotate.html", + "version": 1, + "wfid": "genome-annotation-funannotate", + "wfname": "funannotate", + "workflow": "funannotate.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/aegean_parseval/aegean_parseval/0.16.0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3" + ], + "workflowhub_id": "1202" + } + ], + "zenodo_link": "https://zenodo.org/record/7867921" + }, + { + "abbreviations": { + "ORF": "Open Reading Frame" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "diamond", + "owner": "bgruening", + "revisions": "e8ac2b53f262", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "diamond", + "owner": "bgruening", + "revisions": "e8ac2b53f262", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "diamond", + "owner": "bgruening", + "revisions": "e8ac2b53f262", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_on_column", + "owner": "bgruening", + "revisions": "37a53100b67e", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "02026300aa45", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "intersect", + "owner": "devteam", + "revisions": "69c10b56f46d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_fasta", + "owner": "devteam", + "revisions": "0a7799698fe5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "ae8c4b2488e7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "orfipy", + "owner": "iuc", + "revisions": "c147914c9f02", + "tool_panel_section_label": "Extract Features", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rapidnj", + "owner": "iuc", + "revisions": "9f4a66e22580", + "tool_panel_section_label": "Evolution", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mafft", + "owner": "rnateam", + "revisions": "f1a5908ea2cb", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: diamond\n owner: bgruening\n revisions: e8ac2b53f262\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: diamond\n owner: bgruening\n revisions: e8ac2b53f262\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: diamond\n owner: bgruening\n revisions: e8ac2b53f262\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_on_column\n owner: bgruening\n revisions: 37a53100b67e\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 02026300aa45\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: intersect\n owner: devteam\n revisions: 69c10b56f46d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_fasta\n owner: devteam\n revisions: 0a7799698fe5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: ae8c4b2488e7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: orfipy\n owner: iuc\n revisions: c147914c9f02\n tool_panel_section_label: Extract Features\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rapidnj\n owner: iuc\n revisions: 9f4a66e22580\n tool_panel_section_label: Evolution\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mafft\n owner: rnateam\n revisions: f1a5908ea2cb\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/gene-centric/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/genome-annotation/tutorials/gene-centric", + "edam_ontology": [ + "topic_0622", + "topic_0623", + "topic_0080", + "topic_0084" + ], + "edam_operation": [ + "Multiple sequence alignment", + "Database search", + "Transcriptome assembly", + "Coding region prediction", + "De-novo assembly", + "Sequence alignment analysis", + "Phylogenetic tree generation" + ], + "edam_topic": [ + "Genomics", + "Gene and protein families", + "Sequence analysis", + "Phylogeny" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/gene-centric", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "You can locate gene of interest in unannotated genomes and compare its structure across multiple species" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-18", + "objectives": [ + "Provide a quick method for identifying genes of interest in unannotated or newly assembled genomes" + ], + "pageviews": 1476, + "priority": 2, + "pub_date": "2022-09-08", + "questions": [ + "I have several genomes assemblies that are not annotated (or I do not trust annotations)", + "I am interested to compare structure of a particular gene across these genome assemblies", + "How do I do that?" + ], + "requirements": [ + { + "topic_name": "introduction", + "tutorials": [ + "galaxy-intro-101" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + } + ], + "short_id": "T00174", + "short_tools": [ + "tab2fasta", + "cat1", + "orfipy", + "Add_a_column1", + "rbc_mafft", + "rapidnj", + "bg_diamond_view", + "regexColumn1", + "Cut1", + "bg_diamond_makedb", + "Filter1", + "bg_diamond", + "tp_split_on_column", + "join1", + "gops_intersect_1", + "collapse_dataset" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "evolution", + "annotation", + "vgp", + "cookbook", + "eukaryote", + "prokaryote", + "microgalaxy" + ], + "time_estimation": "30M", + "title": "Comparative gene analysis in unannotated genomes", + "tools": [ + "Cut1", + "Filter1", + "cat1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond_makedb/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond_view/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.4", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/intersect/gops_intersect_1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/orfipy/orfipy/0.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/rapidnj/rapidnj/2.3.2", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.489+galaxy0" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gene-centric", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/gene-centric/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/gene-centric/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/gene-centric/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 186, + "visitors": 974, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-5987-8032", + "name": "Anton Nekrutenko" + } + ], + "description": "Workflows for comparison of genes in annotated genomes", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nExons\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nDiamond makedb\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nORFipy BED\"]\n 3[label=\"Diamond: Find hits in ORFs\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Column Regex Find And Replace\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Alignments\"]\n 3 -> 5 [label=\"daa_output\"]\n 6[label=\"Cut\"]\n 4 -> 6 [label=\"out_file1\"]\n 7[label=\"Alignments + BED\"]\n 6 -> 7 [label=\"out_file1\"]\n 5 -> 7 [label=\"blast_tabular\"]\n 8[label=\"Cut\"]\n 7 -> 8 [label=\"out_file1\"]\n 9[label=\"Collapse Collection\"]\n 7 -> 9 [label=\"out_file1\"]\n 10[label=\"Intersect\"]\n 6 -> 10 [label=\"out_file1\"]\n 8 -> 10 [label=\"out_file1\"]\n 11[label=\"Filter\"]\n 9 -> 11 [label=\"output\"]\n 12[label=\"Overlapping ORFs\"]\n 10 -> 12 [label=\"output\"]\n 13[label=\"Cut\"]\n 11 -> 13 [label=\"out_file1\"]\n 14[label=\"Compute\"]\n 12 -> 14 [label=\"output\"]\n 15[label=\"Compute\"]\n 13 -> 15 [label=\"out_file1\"]\n 16[label=\"Split file\"]\n 15 -> 16 [label=\"out_file1\"]\n 17[label=\"Report\"]\n 15 -> 17 [label=\"out_file1\"]\n 18[label=\"Tabular-to-FASTA\"]\n 16 -> 18 [label=\"split_output\"]\n 19[label=\"Cut\"]\n 17 -> 19 [label=\"out_file1\"]\n 20[label=\"MAFFT\"]\n 18 -> 20 [label=\"output\"]\n 21[label=\"Filter: Plus strand matches\"]\n 19 -> 21 [label=\"out_file1\"]\n 22[label=\"Filter: Minus strand matches\"]\n 19 -> 22 [label=\"out_file1\"]\n 23[label=\"Join neighbors\"]\n 20 -> 23 [label=\"outputAlignment\"]\n k54ea37cc63d1422a9f5e124b8d39e6bd[color=lightseagreen,label=\"Output\\nJoin neighbors on input dataset(s): Calculated distances\"]\n 23 -> k54ea37cc63d1422a9f5e124b8d39e6bd\n 24[label=\"Compute\"]\n 21 -> 24 [label=\"out_file1\"]\n 25[label=\"Compute\"]\n 22 -> 25 [label=\"out_file1\"]\n 26[label=\"Concatenate datasets\"]\n 24 -> 26 [label=\"out_file1\"]\n 25 -> 26 [label=\"out_file1\"]\n 27[label=\"Compute\"]\n 26 -> 27 [label=\"out_file1\"]\n 28[label=\"Cut\"]\n 27 -> 28 [label=\"out_file1\"]\n 29[label=\"Compute\"]\n 28 -> 29 [label=\"out_file1\"]\n 30[label=\"Join two Datasets\"]\n 14 -> 30 [label=\"out_file1\"]\n 29 -> 30 [label=\"out_file1\"]\n 31[label=\"Mapping report\"]\n 30 -> 31 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "476d3d57ff2b0ce249879b60aa03500ab62685d6", + "message": "workflow update", + "num": 1, + "short_hash": "476d3d57f", + "unix": "1662055154" + } + ], + "inputs": [ + { + "annotation": "Amino acid sequences of CDS exons from the gene of interest", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Amino acid sequences of CDS exons from the gene of interest", + "name": "Exons" + } + ], + "label": "Exons", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.90625, + "top": 74.21875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"], \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "107c06e7-51a6-41a1-a026-45a9dddf29a9", + "workflow_outputs": [] + }, + { + "annotation": "Diamond DB created from ORF predicted from genomes used in the analysis", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Diamond DB created from ORF predicted from genomes used in the analysis", + "name": "Diamond makedb" + } + ], + "label": "Diamond makedb", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 185.71875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "0acc2c20-91fb-4470-80ac-2eeb7e2f32ae", + "workflow_outputs": [] + }, + { + "annotation": "BED dataset containing information about ORFs predicted in genomes of interest", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "BED dataset containing information about ORFs predicted in genomes of interest", + "name": "ORFipy BED" + } + ], + "label": "ORFipy BED", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 1.90625, + "top": 313.203125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"bed\"], \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "329b3c07-f0ee-4882-abf7-1215062a0fec", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nExons\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nDiamond makedb\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nORFipy BED\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Diamond: Find hits in ORFs\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Column Regex Find And Replace\"];\n 2 -->|output| 4;\n 5[\"Alignments\"];\n 3 -->|daa_output| 5;\n 6[\"Cut\"];\n 4 -->|out_file1| 6;\n 7[\"Alignments + BED\"];\n 6 -->|out_file1| 7;\n 5 -->|blast_tabular| 7;\n 8[\"Cut\"];\n 7 -->|out_file1| 8;\n 9[\"Collapse Collection\"];\n 7 -->|out_file1| 9;\n 10[\"Intersect\"];\n 6 -->|out_file1| 10;\n 8 -->|out_file1| 10;\n 11[\"Filter\"];\n 9 -->|output| 11;\n 12[\"Overlapping ORFs\"];\n 10 -->|output| 12;\n 13[\"Cut\"];\n 11 -->|out_file1| 13;\n 14[\"Compute\"];\n 12 -->|output| 14;\n 15[\"Compute\"];\n 13 -->|out_file1| 15;\n 16[\"Split file\"];\n 15 -->|out_file1| 16;\n 17[\"Report\"];\n 15 -->|out_file1| 17;\n 18[\"Tabular-to-FASTA\"];\n 16 -->|split_output| 18;\n 19[\"Cut\"];\n 17 -->|out_file1| 19;\n 20[\"MAFFT\"];\n 18 -->|output| 20;\n 21[\"Filter: Plus strand matches\"];\n 19 -->|out_file1| 21;\n 22[\"Filter: Minus strand matches\"];\n 19 -->|out_file1| 22;\n 23[\"Join neighbors\"];\n 20 -->|outputAlignment| 23;\n 54ea37cc-63d1-422a-9f5e-124b8d39e6bd[\"Output\\nJoin neighbors on input dataset(s): Calculated distances\"];\n 23 --> 54ea37cc-63d1-422a-9f5e-124b8d39e6bd;\n style 54ea37cc-63d1-422a-9f5e-124b8d39e6bd stroke:#2c3143,stroke-width:4px;\n 24[\"Compute\"];\n 21 -->|out_file1| 24;\n 25[\"Compute\"];\n 22 -->|out_file1| 25;\n 26[\"Concatenate datasets\"];\n 24 -->|out_file1| 26;\n 25 -->|out_file1| 26;\n 27[\"Compute\"];\n 26 -->|out_file1| 27;\n 28[\"Cut\"];\n 27 -->|out_file1| 28;\n 29[\"Compute\"];\n 28 -->|out_file1| 29;\n 30[\"Join two Datasets\"];\n 14 -->|out_file1| 30;\n 29 -->|out_file1| 30;\n 31[\"Mapping report\"];\n 30 -->|out_file1| 31;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Comparative gene analysis", + "outputs": [ + { + "annotation": "Compute NJ phylogenetic trees", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rapidnj/rapidnj/2.3.2", + "errors": null, + "id": 23, + "input_connections": { + "alignments": { + "id": 20, + "output_name": "outputAlignment" + } + }, + "inputs": [], + "label": null, + "name": "Join neighbors", + "outputs": [ + { + "name": "distances", + "type": "nhx" + } + ], + "position": { + "left": 2200.03125, + "top": 0 + }, + "post_job_actions": { + "TagDatasetActiondistances": { + "action_arguments": { + "tags": "Trees" + }, + "action_type": "TagDatasetAction", + "output_name": "distances" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rapidnj/rapidnj/2.3.2", + "tool_shed_repository": { + "changeset_revision": "9f4a66e22580", + "name": "rapidnj", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"alignment_type\": \"p\", \"alignments\": {\"__class__\": \"ConnectedValue\"}, \"bootstrap\": null, \"evolution_model\": \"kim\", \"no_negative_length\": \"false\", \"output_format\": \"t\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.3.2", + "type": "tool", + "uuid": "a9f1ebbf-4a88-4ddb-aec7-6a1c3a3921db", + "workflow_outputs": [ + { + "label": "Join neighbors on input dataset(s): Calculated distances", + "output_name": "distances", + "uuid": "54ea37cc-63d1-422a-9f5e-124b8d39e6bd" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 31, + "input_connections": { + "input": { + "id": 30, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Mapping report", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 3450.75, + "top": 1309.90625 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Mapping report" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "PlottingData" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c2,c3,c4,c5,c6,c7,c11,c12,c13,c14,c15\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "341c7257-c027-421b-afc1-a8dc11d2f6cd", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "bb199f1a-1402-4f00-9a02-e5743a8662b6" + } + ] + } + ], + "parent_id": "genome-annotation/gene-centric", + "path": "topics/genome-annotation/tutorials/gene-centric/workflows/Comparative-gene-analysis.ga", + "tags": [ + "vgp", + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Comparative gene analysis", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-gene-centric/versions/comparative-gene-analysis", + "tutorial_id": "gene-centric", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/gene-centric/workflows/Comparative-gene-analysis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/gene-centric/workflows/Comparative-gene-analysis.html", + "version": 1, + "wfid": "genome-annotation-gene-centric", + "wfname": "comparative-gene-analysis", + "workflow": "Comparative-gene-analysis.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "cat1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond_view/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.4", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/intersect/gops_intersect_1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/rapidnj/rapidnj/2.3.2", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.489+galaxy0" + ], + "workflowhub_id": "1173" + } + ], + "zenodo_link": "https://zenodo.org/record/7034885" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "gffread", + "owner": "devteam", + "revisions": "0232f19d300f", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "1440ae06552f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "2bb2e07a7a21", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jcvi_gff_stats", + "owner": "iuc", + "revisions": "8cffbd184762", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maker", + "owner": "iuc", + "revisions": "96ac930d84fa", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maker_map_ids", + "owner": "iuc", + "revisions": "326f9c294b09", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "simon-gladman", + "revisions": "20ca2574216a", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: gffread\n owner: devteam\n revisions: 0232f19d300f\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 1440ae06552f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 2bb2e07a7a21\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jcvi_gff_stats\n owner: iuc\n revisions: 8cffbd184762\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maker\n owner: iuc\n revisions: 96ac930d84fa\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maker_map_ids\n owner: iuc\n revisions: 326f9c294b09\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: simon-gladman\n revisions: 20ca2574216a\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker-short/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + } + ], + "dir": "topics/genome-annotation/tutorials/annotation-with-maker-short", + "edam_operation": [ + "Genome assembly", + "Sequence annotation", + "Transcriptome assembly", + "Genome visualisation", + "Genome annotation", + "Sequence assembly validation", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/annotation-with-maker-short", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Maker allows to annotate a eukaryotic genome.", + "BUSCO and JBrowse allow to inspect the quality of an annotation." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Load genome into Galaxy", + "Annotate genome with Maker", + "Evaluate annotation quality with BUSCO", + "View annotations in JBrowse" + ], + "pageviews": 4070, + "priority": 3, + "pub_date": "2021-01-12", + "questions": [ + "How to annotate an eukaryotic genome?", + "How to evaluate and visualize annotated genomic features?" + ], + "short_id": "T00167", + "short_tools": [ + "jcvi_gff_stats", + "gffread", + "jbrowse", + "busco", + "fasta-stats", + "maker", + "maker_map_ids" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "gmod", + "eukaryote", + "maker", + "jbrowse1" + ], + "time_estimation": "2h", + "title": "Genome annotation with Maker (short)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.10", + "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.10", + "toolshed.g2.bx.psu.edu/repos/simon-gladman/fasta_stats/fasta-stats/1.0.0" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "annotation-with-maker-short", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-maker-short/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker-short/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker-short/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 192, + "visitors": 2763, + "workflows": [ + { + "creators": [], + "description": "Genome annotation with Maker (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome sequence\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEST and/or cDNA\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProteins\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSNAP model\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAugustus model\"]\n 5[label=\"Fasta Statistics\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Busco\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Maker\"]\n 4 -> 7 [label=\"output\"]\n 3 -> 7 [label=\"output\"]\n 1 -> 7 [label=\"output\"]\n 0 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Map annotation ids\"]\n 7 -> 8 [label=\"output_gff\"]\n 9[label=\"Genome annotation statistics\"]\n 8 -> 9 [label=\"renamed\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"gffread\"]\n 8 -> 10 [label=\"renamed\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"JBrowse\"]\n 0 -> 11 [label=\"output\"]\n 8 -> 11 [label=\"renamed\"]\n 7 -> 11 [label=\"output_evidences\"]\n 12[label=\"Busco\"]\n 10 -> 12 [label=\"output_exons\"]\n k6951417bee0b4e0398e467d262e086dc[color=lightseagreen,label=\"Output\\nBusco summary final round\"]\n 12 -> k6951417bee0b4e0398e467d262e086dc\n}", + "history": [ + { + "hash": "005d964a2e8cb80f8d1bf0b304adc8f9d7c9ff76", + "message": "fix workflows", + "num": 2, + "short_hash": "005d964a2", + "unix": "1609752597" + }, + { + "hash": "774f2aa374452d48fd29ee85513c3dc3a7f137f5", + "message": "update maker tutorial and add a short version", + "num": 1, + "short_hash": "774f2aa37", + "unix": "1609431273" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome sequence" + } + ], + "label": "Genome sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 94.08332824707031, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 11.883331298828125, + "width": 200, + "x": -313.33331298828125, + "y": 11.883331298828125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a361a75e-5fa4-44ca-a4b7-cc9054a73054", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a09d16c-18af-4605-8416-4966fe918677" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "EST and/or cDNA" + } + ], + "label": "EST and/or cDNA", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 214.0833282470703, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 131.88333129882812, + "width": 200, + "x": -313.33331298828125, + "y": 131.88333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "6b3edbe9-085d-46ae-9ae3-96e876c003e0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c5c5fb8f-9932-499c-b404-c142aedd1aa5" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Proteins" + } + ], + "label": "Proteins", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 313.68333435058594, + "height": 61.80000305175781, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 251.88333129882812, + "width": 200, + "x": -313.33331298828125, + "y": 251.88333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ce4ee756-1713-4e6a-898c-b85a834712bc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbbe9e59-ccd5-4925-a7a3-e1d094284fca" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SNAP model" + } + ], + "label": "SNAP model", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 413.68333435058594, + "height": 61.80000305175781, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 351.8833312988281, + "width": 200, + "x": -313.33331298828125, + "y": 351.8833312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ebf1f01c-e804-462a-92cf-670012b103b3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ecfd7af4-f95c-4b2d-9f06-8e851a0c4d9e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Augustus model" + } + ], + "label": "Augustus model", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 554.0833282470703, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 471.8833312988281, + "width": 200, + "x": -313.33331298828125, + "y": 471.8833312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "586af078-09ce-476b-9eb7-55e443a8eeaf", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7259eb8b-9c2d-4eff-a49d-1b447e905314" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGenome sequence\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nEST and/or cDNA\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nProteins\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nSNAP model\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nAugustus model\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Fasta Statistics\"];\n 0 -->|output| 5;\n 6[\"Busco\"];\n 0 -->|output| 6;\n 7[\"Maker\"];\n 4 -->|output| 7;\n 3 -->|output| 7;\n 1 -->|output| 7;\n 0 -->|output| 7;\n 2 -->|output| 7;\n 8[\"Map annotation ids\"];\n 7 -->|output_gff| 8;\n 9[\"Genome annotation statistics\"];\n 8 -->|renamed| 9;\n 0 -->|output| 9;\n 10[\"gffread\"];\n 8 -->|renamed| 10;\n 0 -->|output| 10;\n 11[\"JBrowse\"];\n 0 -->|output| 11;\n 8 -->|renamed| 11;\n 7 -->|output_evidences| 11;\n 12[\"Busco\"];\n 10 -->|output_exons| 12;\n 6951417b-ee0b-4e03-98e4-67d262e086dc[\"Output\\nBusco summary final round\"];\n 12 --> 6951417b-ee0b-4e03-98e4-67d262e086dc;\n style 6951417b-ee0b-4e03-98e4-67d262e086dc stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Genome annotation with Maker (short)", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome sequence" + } + ], + "label": "Genome sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 94.08332824707031, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 11.883331298828125, + "width": 200, + "x": -313.33331298828125, + "y": 11.883331298828125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a361a75e-5fa4-44ca-a4b7-cc9054a73054", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a09d16c-18af-4605-8416-4966fe918677" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "EST and/or cDNA" + } + ], + "label": "EST and/or cDNA", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 214.0833282470703, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 131.88333129882812, + "width": 200, + "x": -313.33331298828125, + "y": 131.88333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "6b3edbe9-085d-46ae-9ae3-96e876c003e0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c5c5fb8f-9932-499c-b404-c142aedd1aa5" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Proteins" + } + ], + "label": "Proteins", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 313.68333435058594, + "height": 61.80000305175781, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 251.88333129882812, + "width": 200, + "x": -313.33331298828125, + "y": 251.88333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ce4ee756-1713-4e6a-898c-b85a834712bc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbbe9e59-ccd5-4925-a7a3-e1d094284fca" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SNAP model" + } + ], + "label": "SNAP model", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 413.68333435058594, + "height": 61.80000305175781, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 351.8833312988281, + "width": 200, + "x": -313.33331298828125, + "y": 351.8833312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ebf1f01c-e804-462a-92cf-670012b103b3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ecfd7af4-f95c-4b2d-9f06-8e851a0c4d9e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Augustus model" + } + ], + "label": "Augustus model", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 554.0833282470703, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 471.8833312988281, + "width": 200, + "x": -313.33331298828125, + "y": 471.8833312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "586af078-09ce-476b-9eb7-55e443a8eeaf", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7259eb8b-9c2d-4eff-a49d-1b447e905314" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/simon-gladman/fasta_stats/fasta-stats/1.0.0", + "errors": null, + "id": 5, + "input_connections": { + "dataset": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats", + "type": "tabular" + } + ], + "position": { + "bottom": 34.28334045410156, + "height": 154.40000915527344, + "left": -15.350006103515625, + "right": 184.64999389648438, + "top": -120.11666870117188, + "width": 200, + "x": -15.350006103515625, + "y": -120.11666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/simon-gladman/fasta_stats/fasta-stats/1.0.0", + "tool_shed_repository": { + "changeset_revision": "20ca2574216a", + "name": "fasta_stats", + "owner": "simon-gladman", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "43cab601-f700-4278-bd0a-7f0997cf75cf", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "7840b5e6-2a7e-4b3c-bea3-4a0d70fea21b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": -157.71664428710938, + "height": 276.4000244140625, + "left": -15.350006103515625, + "right": 184.64999389648438, + "top": -434.1166687011719, + "width": 200, + "x": -15.350006103515625, + "y": -434.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"geno\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "876334be-d7e5-4504-bb1b-727472839c02", + "workflow_outputs": [ + { + "label": null, + "output_name": "busco_sum", + "uuid": "59ce9dc8-762f-4c38-aded-5d031db50609" + }, + { + "label": null, + "output_name": "busco_missing", + "uuid": "9b000535-1702-4888-951c-4cc8e782a511" + }, + { + "label": null, + "output_name": "busco_table", + "uuid": "76c0d8fc-4e81-4ba0-b8b2-ebfda0ba5786" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.10", + "errors": null, + "id": 8, + "input_connections": { + "maker_gff": { + "id": 7, + "output_name": "output_gff" + } + }, + "inputs": [], + "label": null, + "name": "Map annotation ids", + "outputs": [ + { + "name": "renamed", + "type": "gff" + }, + { + "name": "id_map", + "type": "tabular" + } + ], + "position": { + "bottom": 318.8833312988281, + "height": 246, + "left": 272.66668701171875, + "right": 472.66668701171875, + "top": 72.88333129882812, + "width": 200, + "x": 272.66668701171875, + "y": 72.88333129882812 + }, + "post_job_actions": { + "ChangeDatatypeActionrenamed": { + "action_arguments": { + "newtype": "gff3" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "renamed" + }, + "HideDatasetActionid_map": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "id_map" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.10", + "tool_shed_repository": { + "changeset_revision": "f1912d5575df", + "name": "maker_map_ids", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"justify\": \"6\", \"maker_gff\": {\"__class__\": \"ConnectedValue\"}, \"prefix\": \"TEST\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.31.11", + "type": "tool", + "uuid": "b1127093-0aae-4bfa-b474-042b838a8299", + "workflow_outputs": [ + { + "label": null, + "output_name": "renamed", + "uuid": "e8686326-b443-402b-bb0e-b4a02a8815a7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "errors": null, + "id": 9, + "input_connections": { + "gff": { + "id": 8, + "output_name": "renamed" + }, + "ref_genome|genome": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Genome annotation statistics", + "outputs": [ + { + "name": "summary", + "type": "txt" + }, + { + "name": "graphs", + "type": "pdf" + } + ], + "position": { + "bottom": 363.2833557128906, + "height": 276.4000244140625, + "left": 560.6500244140625, + "right": 760.6500244140625, + "top": 86.88333129882812, + "width": 200, + "x": 560.6500244140625, + "y": 86.88333129882812 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "tool_shed_repository": { + "changeset_revision": "8cffbd184762", + "name": "jcvi_gff_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gff\": {\"__class__\": \"ConnectedValue\"}, \"ref_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.4", + "type": "tool", + "uuid": "14236032-ec57-4beb-ab0a-e44bf845643c", + "workflow_outputs": [ + { + "label": null, + "output_name": "graphs", + "uuid": "782e21db-4be6-4230-92b5-3ea9004dda04" + }, + { + "label": null, + "output_name": "summary", + "uuid": "a4dff39c-0479-4a25-ac62-b132c1083604" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "renamed" + }, + "reference_genome|genome_fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool gffread", + "name": "chr_replace" + } + ], + "label": null, + "name": "gffread", + "outputs": [ + { + "name": "output_exons", + "type": "fasta" + }, + { + "name": "output_cds", + "type": "fasta" + }, + { + "name": "output_pep", + "type": "fasta" + } + ], + "position": { + "bottom": 48.683319091796875, + "height": 316.79998779296875, + "left": 560.6500244140625, + "right": 760.6500244140625, + "top": -268.1166687011719, + "width": 200, + "x": 560.6500244140625, + "y": -268.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.1", + "tool_shed_repository": { + "changeset_revision": "0232f19d300f", + "name": "gffread", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chr_replace\": {\"__class__\": \"RuntimeValue\"}, \"decode_url\": \"false\", \"expose\": \"false\", \"filtering\": null, \"full_gff_attribute_preservation\": \"false\", \"gffs\": {\"gff_fmt\": \"none\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"maxintron\": \"\", \"merging\": {\"merge_sel\": \"none\", \"__current_case__\": 0}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 2, \"genome_fasta\": {\"__class__\": \"ConnectedValue\"}, \"ref_filtering\": null, \"fa_outputs\": [\"-w exons.fa\", \"-x cds.fa\", \"-y pep.fa\"]}, \"region\": {\"region_filter\": \"none\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.1.1", + "type": "tool", + "uuid": "3b5ecaf4-2d08-42f8-a6f0-f05ad9e5fe92", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_cds", + "uuid": "0df7b9b5-1ed1-4cf4-b483-a604862f4540" + }, + { + "label": null, + "output_name": "output_exons", + "uuid": "f485f8fe-0d63-49ba-a88d-dfc8e03db553" + }, + { + "label": null, + "output_name": "output_pep", + "uuid": "7430528c-9af5-4e05-ba6c-bbf95f19ad7e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "errors": null, + "id": 11, + "input_connections": { + "reference_genome|genome": { + "id": 0, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 8, + "output_name": "renamed" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 7, + "output_name": "output_evidences" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool JBrowse", + "name": "reference_genome" + } + ], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 677.2833557128906, + "height": 276.4000244140625, + "left": 560.6500244140625, + "right": 760.6500244140625, + "top": 400.8833312988281, + "width": 200, + "x": 560.6500244140625, + "y": 400.8833312988281 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "tool_shed_repository": { + "changeset_revision": "8774b28235bb", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"RuntimeValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Maker annotation\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"Maker evidences\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"match_part\": {\"match_part_select\": \"true\", \"__current_case__\": 0, \"name\": {\"__class__\": \"RuntimeValue\"}}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.10+galaxy0", + "type": "tool", + "uuid": "5a978f9d-7adc-4e30-8b20-dcfa27f18dfa", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c7432de7-b6b4-457a-8c0a-69c44418234d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "output_exons" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 100.88333129882812, + "height": 256, + "left": 838.6666870117188, + "right": 1038.6666870117188, + "top": -155.11666870117188, + "width": 200, + "x": 838.6666870117188, + "y": -155.11666870117188 + }, + "post_job_actions": { + "HideDatasetActionbusco_missing": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_missing" + }, + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"tran\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "dee27b5d-de92-4e99-898c-3bf3fea6ee72", + "workflow_outputs": [ + { + "label": "Busco summary final round", + "output_name": "busco_sum", + "uuid": "6951417b-ee0b-4e03-98e4-67d262e086dc" + } + ] + } + ], + "parent_id": "genome-annotation/annotation-with-maker-short", + "path": "topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Genome annotation with Maker (short)", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-maker-short/versions/main-workflow", + "tutorial_id": "annotation-with-maker-short", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.html", + "version": 1, + "wfid": "genome-annotation-annotation-with-maker-short", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.10", + "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.10", + "toolshed.g2.bx.psu.edu/repos/simon-gladman/fasta_stats/fasta-stats/1.0.0" + ], + "workflowhub_id": "1194" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4406623" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "revisions": "bb1e4f63e0e6", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "find_subsequences", + "owner": "bgruening", + "revisions": "d882a0a75759", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie_wrappers", + "owner": "devteam", + "revisions": "b46e7d48076a", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "be25c075ed54", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gff_to_prot", + "owner": "iuc", + "revisions": "07d7991bf205", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "transit_gumbel", + "owner": "iuc", + "revisions": "f50807720df1", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "49370cb85f0f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_bam_coverage\n owner: bgruening\n revisions: bb1e4f63e0e6\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: find_subsequences\n owner: bgruening\n revisions: d882a0a75759\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie_wrappers\n owner: devteam\n revisions: b46e7d48076a\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: be25c075ed54\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gff_to_prot\n owner: iuc\n revisions: 07d7991bf205\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: transit_gumbel\n owner: iuc\n revisions: f50807720df1\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 49370cb85f0f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/tnseq/tutorial.json", + "contributors": [ + { + "email": "delphine.lariviere@galaxy.org", + "id": "delphine-l", + "joined": "2017-09", + "name": "Delphine Lariviere", + "orcid": "0000-0001-6421-3484", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/delphine-l/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/delphine-l.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/genome-annotation/tutorials/tnseq", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0080", + "topic_0798" + ], + "edam_operation": [ + "Transposon prediction", + "Primer removal", + "Sequence trimming", + "Read pre-processing" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Sequence analysis", + "Mobile genetic elements" + ], + "exact_supported_servers": [ + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/tnseq", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "TnSeq is a useful analysis to detect essential genes and conditional essential genes", + "The saturation of the library must be sufficient so that every gene must have been impacted at least once", + "Be sure you have removed every transposon sequence before starting your analysis", + "Verify the results manually do separate domain essential and essential genes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-18", + "objectives": [ + "Understand the read structure of TnSeq analyses", + "Predict Essential genes with Transit", + "Compare gene essentiality in control sample and an different experimental condition" + ], + "pageviews": 5739476, + "priority": 4, + "pub_date": "2019-07-02", + "questions": [ + "What is Transposon insertion Sequencing?", + "How to get TA sites Coverage ? ", + "How to predict essential genes ?" + ], + "short_id": "T00179", + "short_tools": [ + "transit_gumbel", + "Add_a_column1", + "deeptools_bam_coverage", + "tp_easyjoin_tool", + "bg_find_subsequences", + "Cut1", + "Filter1", + "tp_sort_header_tool", + "bowtie_wrapper", + "gff_to_prot", + "cutadapt", + "__EXTRACT_DATASET__" + ], + "slides": true, + "slides_recordings": false, + "subtopic": "prokaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "bacteria", + "tnseq", + "essential genes", + "microgalaxy" + ], + "time_estimation": "7H", + "title": "Essential genes detection with Transposon insertion sequencing", + "tools": [ + "Cut1", + "Filter1", + "__EXTRACT_DATASET__", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/find_subsequences/bg_find_subsequences/0.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie_wrappers/bowtie_wrapper/1.2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gff_to_prot/gff_to_prot/3.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/transit_gumbel/transit_gumbel/3.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tnseq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/tnseq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/tnseq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/tnseq/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 255, + "visitors": 2070408, + "workflows": [ + { + "creators": [], + "description": "Essential genes detection with Transposon insertion sequencing", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTnseq-Tutorial-reads.fastqsanger.gz\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncondition_barcodes.fasta\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nconstruct_barcodes.fasta\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nstaph_aur.fasta\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nstaph_aur.gff3\"]\n 5[label=\"Cutadapt\"]\n 0 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Nucleotide subsequence search\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Convert GFF3\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Cutadapt\"]\n 5 -> 8 [label=\"split_output\"]\n 9[label=\"Cut\"]\n 6 -> 9 [label=\"output\"]\n 10[label=\"Cut\"]\n 6 -> 10 [label=\"output\"]\n 11[label=\"Cutadapt\"]\n 8 -> 11 [label=\"out1\"]\n 12[label=\"Compute\"]\n 10 -> 12 [label=\"out_file1\"]\n 13[label=\"Cutadapt\"]\n 11 -> 13 [label=\"out1\"]\n 2 -> 13 [label=\"output\"]\n 14[label=\"Cut\"]\n 12 -> 14 [label=\"out_file1\"]\n 15[label=\"Cutadapt\"]\n 13 -> 15 [label=\"split_output\"]\n 16[label=\"Map with Bowtie for Illumina\"]\n 3 -> 16 [label=\"output\"]\n 15 -> 16 [label=\"out1\"]\n 17[label=\"bamCoverage\"]\n 16 -> 17 [label=\"output\"]\n 18[label=\"Join\"]\n 17 -> 18 [label=\"outFileName\"]\n 9 -> 18 [label=\"out_file1\"]\n 19[label=\"Join\"]\n 17 -> 19 [label=\"outFileName\"]\n 14 -> 19 [label=\"out_file1\"]\n 20[label=\"Cut\"]\n 18 -> 20 [label=\"output\"]\n 21[label=\"Cut\"]\n 19 -> 21 [label=\"output\"]\n 22[label=\"Sort\"]\n 20 -> 22 [label=\"out_file1\"]\n 23[label=\"Compute\"]\n 21 -> 23 [label=\"out_file1\"]\n 24[label=\"Cut\"]\n 23 -> 24 [label=\"out_file1\"]\n 25[label=\"Sort\"]\n 24 -> 25 [label=\"out_file1\"]\n 26[label=\"Join\"]\n 22 -> 26 [label=\"outfile\"]\n 25 -> 26 [label=\"outfile\"]\n 27[label=\"Compute\"]\n 26 -> 27 [label=\"output\"]\n 28[label=\"Cut\"]\n 27 -> 28 [label=\"out_file1\"]\n 29[label=\"Sort\"]\n 28 -> 29 [label=\"out_file1\"]\n 30[label=\"Gumbel\"]\n 7 -> 30 [label=\"output\"]\n 29 -> 30 [label=\"outfile\"]\n 31[label=\"Filter\"]\n 30 -> 31 [label=\"sites\"]\n 32[label=\"Extract Dataset\"]\n 31 -> 32 [label=\"out_file1\"]\n k8796f62f46764ad2b0857597f894c32c[color=lightseagreen,label=\"Output\\ncontrol\"]\n 32 -> k8796f62f46764ad2b0857597f894c32c\n 33[label=\"Extract Dataset\"]\n 31 -> 33 [label=\"out_file1\"]\n kbd014de4708e419cbd1e8bf350661aad[color=lightseagreen,label=\"Output\\ncondition\"]\n 33 -> kbd014de4708e419cbd1e8bf350661aad\n 34[label=\"Join\"]\n 32 -> 34 [label=\"output\"]\n 33 -> 34 [label=\"output\"]\n k5cdfb5c9c67741dca838c4a61d62f5be[color=lightseagreen,label=\"Output\\nessential_both\"]\n 34 -> k5cdfb5c9c67741dca838c4a61d62f5be\n 35[label=\"Join\"]\n 32 -> 35 [label=\"output\"]\n 33 -> 35 [label=\"output\"]\n k8b2b65ea37c343d2b41638f8f920fbd9[color=lightseagreen,label=\"Output\\nessential_control\"]\n 35 -> k8b2b65ea37c343d2b41638f8f920fbd9\n 36[label=\"Join\"]\n 32 -> 36 [label=\"output\"]\n 33 -> 36 [label=\"output\"]\n k37639319b0534fbcbf61fd3e38263502[color=lightseagreen,label=\"Output\\nessential_condition\"]\n 36 -> k37639319b0534fbcbf61fd3e38263502\n}", + "history": [ + { + "hash": "bc41adb9e901759a7013cebea286e631df2325e9", + "message": "Rename workflow.", + "num": 3, + "short_hash": "bc41adb9e", + "unix": "1603052556" + }, + { + "hash": "50c52377ea0c134e400a00e0d89e1973c203fa6c", + "message": "Update workflow test.", + "num": 2, + "short_hash": "50c52377e", + "unix": "1603048372" + }, + { + "hash": "708ae9c5d8f8a740f948382c3fd5e7c935685d64", + "message": "Updated workflow and test.", + "num": 1, + "short_hash": "708ae9c5d", + "unix": "1603017659" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tnseq-Tutorial-reads.fastqsanger.gz" + } + ], + "label": "Tnseq-Tutorial-reads.fastqsanger.gz", + "name": "Tnseq-Tutorial-reads.fastqsanger.gz", + "outputs": [], + "position": { + "left": 204, + "top": 204 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Tnseq-Tutorial-reads.fastqsanger.gz\"}", + "tool_version": null, + "type": "data_input", + "uuid": "299514db-9c70-4ef6-8414-a343c9721121", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a01ba0a-25c6-4bed-9ead-21b9298585d9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "condition_barcodes.fasta" + } + ], + "label": "condition_barcodes.fasta", + "name": "condition_barcodes.fasta", + "outputs": [], + "position": { + "left": 202, + "top": 326 + }, + "tool_id": null, + "tool_state": "{\"name\": \"condition_barcodes.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2e5a56b4-93d7-4fba-b165-5feb86deb7c2", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "51bba64c-6acc-4ebf-971d-b1f2ee9adcc6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "construct_barcodes.fasta" + } + ], + "label": "construct_barcodes.fasta", + "name": "construct_barcodes.fasta", + "outputs": [], + "position": { + "left": 200, + "top": 440 + }, + "tool_id": null, + "tool_state": "{\"name\": \"construct_barcodes.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7af899e7-676b-46ef-8c15-ff7b73b0fe76", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e850fc22-c77f-4bbe-968f-ba44dea4caaf" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "staph_aur.fasta" + } + ], + "label": "staph_aur.fasta", + "name": "staph_aur.fasta", + "outputs": [], + "position": { + "left": 183, + "top": 550 + }, + "tool_id": null, + "tool_state": "{\"name\": \"staph_aur.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "b522e8dc-3f8f-4e6d-9a2d-c970e25bf6f9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "793cf25f-49a3-4afa-8165-c5c54e581864" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "staph_aur.gff3" + } + ], + "label": "staph_aur.gff3", + "name": "staph_aur.gff3", + "outputs": [], + "position": { + "left": 183, + "top": 694 + }, + "tool_id": null, + "tool_state": "{\"name\": \"staph_aur.gff3\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e523846f-d4bf-43a8-a6f6-5763dba67f8f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2e39f099-2536-4a11-add0-9cf3576f1d68" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nTnseq-Tutorial-reads.fastqsanger.gz\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ncondition_barcodes.fasta\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nconstruct_barcodes.fasta\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nstaph_aur.fasta\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nstaph_aur.gff3\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Cutadapt\"];\n 0 -->|output| 5;\n 1 -->|output| 5;\n 6[\"Nucleotide subsequence search\"];\n 3 -->|output| 6;\n 7[\"Convert GFF3\"];\n 4 -->|output| 7;\n 8[\"Cutadapt\"];\n 5 -->|split_output| 8;\n 9[\"Cut\"];\n 6 -->|output| 9;\n 10[\"Cut\"];\n 6 -->|output| 10;\n 11[\"Cutadapt\"];\n 8 -->|out1| 11;\n 12[\"Compute\"];\n 10 -->|out_file1| 12;\n 13[\"Cutadapt\"];\n 11 -->|out1| 13;\n 2 -->|output| 13;\n 14[\"Cut\"];\n 12 -->|out_file1| 14;\n 15[\"Cutadapt\"];\n 13 -->|split_output| 15;\n 16[\"Map with Bowtie for Illumina\"];\n 3 -->|output| 16;\n 15 -->|out1| 16;\n 17[\"bamCoverage\"];\n 16 -->|output| 17;\n 18[\"Join\"];\n 17 -->|outFileName| 18;\n 9 -->|out_file1| 18;\n 19[\"Join\"];\n 17 -->|outFileName| 19;\n 14 -->|out_file1| 19;\n 20[\"Cut\"];\n 18 -->|output| 20;\n 21[\"Cut\"];\n 19 -->|output| 21;\n 22[\"Sort\"];\n 20 -->|out_file1| 22;\n 23[\"Compute\"];\n 21 -->|out_file1| 23;\n 24[\"Cut\"];\n 23 -->|out_file1| 24;\n 25[\"Sort\"];\n 24 -->|out_file1| 25;\n 26[\"Join\"];\n 22 -->|outfile| 26;\n 25 -->|outfile| 26;\n 27[\"Compute\"];\n 26 -->|output| 27;\n 28[\"Cut\"];\n 27 -->|out_file1| 28;\n 29[\"Sort\"];\n 28 -->|out_file1| 29;\n 30[\"Gumbel\"];\n 7 -->|output| 30;\n 29 -->|outfile| 30;\n 31[\"Filter\"];\n 30 -->|sites| 31;\n 32[\"Extract Dataset\"];\n 31 -->|out_file1| 32;\n 8796f62f-4676-4ad2-b085-7597f894c32c[\"Output\\ncontrol\"];\n 32 --> 8796f62f-4676-4ad2-b085-7597f894c32c;\n style 8796f62f-4676-4ad2-b085-7597f894c32c stroke:#2c3143,stroke-width:4px;\n 33[\"Extract Dataset\"];\n 31 -->|out_file1| 33;\n bd014de4-708e-419c-bd1e-8bf350661aad[\"Output\\ncondition\"];\n 33 --> bd014de4-708e-419c-bd1e-8bf350661aad;\n style bd014de4-708e-419c-bd1e-8bf350661aad stroke:#2c3143,stroke-width:4px;\n 34[\"Join\"];\n 32 -->|output| 34;\n 33 -->|output| 34;\n 5cdfb5c9-c677-41dc-a838-c4a61d62f5be[\"Output\\nessential_both\"];\n 34 --> 5cdfb5c9-c677-41dc-a838-c4a61d62f5be;\n style 5cdfb5c9-c677-41dc-a838-c4a61d62f5be stroke:#2c3143,stroke-width:4px;\n 35[\"Join\"];\n 32 -->|output| 35;\n 33 -->|output| 35;\n 8b2b65ea-37c3-43d2-b416-38f8f920fbd9[\"Output\\nessential_control\"];\n 35 --> 8b2b65ea-37c3-43d2-b416-38f8f920fbd9;\n style 8b2b65ea-37c3-43d2-b416-38f8f920fbd9 stroke:#2c3143,stroke-width:4px;\n 36[\"Join\"];\n 32 -->|output| 36;\n 33 -->|output| 36;\n 37639319-b053-4fbc-bf61-fd3e38263502[\"Output\\nessential_condition\"];\n 36 --> 37639319-b053-4fbc-bf61-fd3e38263502;\n style 37639319-b053-4fbc-bf61-fd3e38263502 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Essential genes detection with Transposon insertion sequencing", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tnseq-Tutorial-reads.fastqsanger.gz" + } + ], + "label": "Tnseq-Tutorial-reads.fastqsanger.gz", + "name": "Tnseq-Tutorial-reads.fastqsanger.gz", + "outputs": [], + "position": { + "left": 204, + "top": 204 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Tnseq-Tutorial-reads.fastqsanger.gz\"}", + "tool_version": null, + "type": "data_input", + "uuid": "299514db-9c70-4ef6-8414-a343c9721121", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a01ba0a-25c6-4bed-9ead-21b9298585d9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "condition_barcodes.fasta" + } + ], + "label": "condition_barcodes.fasta", + "name": "condition_barcodes.fasta", + "outputs": [], + "position": { + "left": 202, + "top": 326 + }, + "tool_id": null, + "tool_state": "{\"name\": \"condition_barcodes.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2e5a56b4-93d7-4fba-b165-5feb86deb7c2", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "51bba64c-6acc-4ebf-971d-b1f2ee9adcc6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "construct_barcodes.fasta" + } + ], + "label": "construct_barcodes.fasta", + "name": "construct_barcodes.fasta", + "outputs": [], + "position": { + "left": 200, + "top": 440 + }, + "tool_id": null, + "tool_state": "{\"name\": \"construct_barcodes.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7af899e7-676b-46ef-8c15-ff7b73b0fe76", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e850fc22-c77f-4bbe-968f-ba44dea4caaf" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "staph_aur.fasta" + } + ], + "label": "staph_aur.fasta", + "name": "staph_aur.fasta", + "outputs": [], + "position": { + "left": 183, + "top": 550 + }, + "tool_id": null, + "tool_state": "{\"name\": \"staph_aur.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "b522e8dc-3f8f-4e6d-9a2d-c970e25bf6f9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "793cf25f-49a3-4afa-8165-c5c54e581864" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "staph_aur.gff3" + } + ], + "label": "staph_aur.gff3", + "name": "staph_aur.gff3", + "outputs": [], + "position": { + "left": 183, + "top": 694 + }, + "tool_id": null, + "tool_state": "{\"name\": \"staph_aur.gff3\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e523846f-d4bf-43a8-a6f6-5763dba67f8f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2e39f099-2536-4a11-add0-9cf3576f1d68" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "errors": null, + "id": 5, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "library|r1|front_adapters_0|front_adapter_source|front_adapter_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "split_output", + "type": "input" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 442, + "top": 190 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "tool_shed_repository": { + "changeset_revision": "49370cb85f0f", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adapter_options\": {\"error_rate\": \"0.15\", \"no_indels\": \"false\", \"count\": \"3\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"no_trim\": \"false\", \"mask_adapter\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"0\", \"max\": \"0\", \"max_n\": \"\", \"pair_filter\": \"any\"}, \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [{\"__index__\": 0, \"front_adapter_source\": {\"front_adapter_source_list\": \"file\", \"__current_case__\": 2, \"front_adapter_file\": {\"__class__\": \"ConnectedValue\"}}}], \"anywhere_adapters\": [], \"cut\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\", \"multiple_output\": \"true\"}, \"read_mod_options\": {\"quality_cutoff\": \"0\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "88a0eb99-bd98-4016-b0ee-6fca1043db7b", + "workflow_outputs": [ + { + "label": null, + "output_name": "split_output", + "uuid": "292be5db-6a3d-4ccd-b766-8c2348f59a46" + }, + { + "label": null, + "output_name": "report", + "uuid": "8ae622ce-4da5-43f7-8f45-ba95ff557050" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/find_subsequences/bg_find_subsequences/0.2", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Nucleotide subsequence search", + "outputs": [ + { + "name": "output", + "type": "bed" + } + ], + "position": { + "left": 437, + "top": 534 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/find_subsequences/bg_find_subsequences/0.2", + "tool_shed_repository": { + "changeset_revision": "d882a0a75759", + "name": "find_subsequences", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"pattern_conditional\": {\"pattern_conditional_select\": \"user\", \"__current_case__\": 1, \"pattern\": \"TA\"}, \"strand\": \"forward\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "d72aa8a7-e558-4c97-9ccf-6f7cce88105c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "12e30ef1-fe37-47f5-9879-ed7e375d4bb2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gff_to_prot/gff_to_prot/3.0.2+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Convert GFF3", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 3582, + "top": 443 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gff_to_prot/gff_to_prot/3.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2aea122fbd25", + "name": "gff_to_prot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "3db46674-95fe-4285-a23a-a5cbeb185cf8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "eb959619-62d7-4e16-b5f4-067851b05581" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "errors": null, + "id": 8, + "input_connections": { + "library|input_1": { + "id": 5, + "output_name": "split_output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 673, + "top": 184 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "tool_shed_repository": { + "changeset_revision": "49370cb85f0f", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adapter_options\": {\"error_rate\": \"0.1\", \"no_indels\": \"false\", \"count\": \"3\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"no_trim\": \"false\", \"mask_adapter\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"0\", \"max\": \"0\", \"max_n\": \"\", \"pair_filter\": \"any\"}, \"input_1|__identifier__\": \"control\", \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"\", \"adapter\": \"CGTTATGGCACGC\"}}], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\", \"multiple_output\": \"false\"}, \"read_mod_options\": {\"quality_cutoff\": \"0\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "4fd67900-a4a7-4f36-b738-310f413fcbc7", + "workflow_outputs": [ + { + "label": null, + "output_name": "out1", + "uuid": "d3d7c441-23c8-4a69-b893-08ae55da0989" + }, + { + "label": null, + "output_name": "report", + "uuid": "0d77a42f-4f4e-40ab-928c-42f616ca87e2" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 683, + "top": 443 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"bed\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c2\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "a5312714-814a-4c22-a56d-ac5eb6056443", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "c84ab194-b4ca-462b-9aca-b9e0c679cfda" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 730, + "top": 581 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"bed\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "db5bcbb6-8922-4189-9a27-5785442cd08f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "a8d013af-90a3-4838-a328-9c9ebc308c91" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "errors": null, + "id": 11, + "input_connections": { + "library|input_1": { + "id": 8, + "output_name": "out1" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 906, + "top": 186 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "tool_shed_repository": { + "changeset_revision": "49370cb85f0f", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adapter_options\": {\"error_rate\": \"0.1\", \"no_indels\": \"false\", \"count\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"no_trim\": \"false\", \"mask_adapter\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"64\", \"max\": \"70\", \"max_n\": \"\", \"pair_filter\": \"any\"}, \"input_1|__identifier__\": \"control\", \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\", \"multiple_output\": \"false\"}, \"read_mod_options\": {\"quality_cutoff\": \"0\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "43159e62-7eda-4f71-a6be-9c5a46222c51", + "workflow_outputs": [ + { + "label": null, + "output_name": "report", + "uuid": "15e3858e-5c79-4d31-a76b-423be5855479" + }, + { + "label": null, + "output_name": "out1", + "uuid": "e9511fc9-50b9-4a63-be4a-3022031091de" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Compute", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 997, + "top": 511 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "tool_shed_repository": { + "changeset_revision": "be25c075ed54", + "name": "column_maker", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"avoid_scientific_notation\": \"no\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c2-1\", \"header_lines_conditional\": {\"header_lines_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"round\": \"yes\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "862f354c-4fd7-41df-88a9-47e3cea4227b", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "7ecdf545-74b5-423a-ac04-8dff265fb11e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "errors": null, + "id": 13, + "input_connections": { + "library|input_1": { + "id": 11, + "output_name": "out1" + }, + "library|r1|adapters_0|adapter_source|adapter_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "split_output", + "type": "input" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 1129, + "top": 214 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "tool_shed_repository": { + "changeset_revision": "49370cb85f0f", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adapter_options\": {\"error_rate\": \"0.1\", \"no_indels\": \"false\", \"count\": \"3\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"no_trim\": \"false\", \"mask_adapter\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"0\", \"max\": \"0\", \"max_n\": \"\", \"pair_filter\": \"any\"}, \"input_1|__identifier__\": \"control\", \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"file\", \"__current_case__\": 2, \"adapter_file\": {\"__class__\": \"ConnectedValue\"}}}], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\", \"multiple_output\": \"true\"}, \"read_mod_options\": {\"quality_cutoff\": \"0\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "f27ae319-a997-42ed-856b-13c6a687f3b3", + "workflow_outputs": [ + { + "label": null, + "output_name": "split_output", + "uuid": "8b9cd027-9d39-43ae-b31e-089210c7208f" + }, + { + "label": null, + "output_name": "report", + "uuid": "7818fffe-b449-4ec9-9d9c-54400e921a1d" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 12, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1279, + "top": 512 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "5e32b04b-a6a7-409c-855c-706188e4ce13", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "48313713-24eb-4d80-9683-914b90b56f74" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "errors": null, + "id": 15, + "input_connections": { + "library|input_1": { + "id": 13, + "output_name": "split_output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 1361, + "top": 199 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "tool_shed_repository": { + "changeset_revision": "49370cb85f0f", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adapter_options\": {\"error_rate\": \"0.15\", \"no_indels\": \"false\", \"count\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"no_trim\": \"false\", \"mask_adapter\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"0\", \"max\": \"0\", \"max_n\": \"\", \"pair_filter\": \"any\"}, \"input_1|__identifier__\": \"unknown\", \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"\", \"adapter\": \"ACAGGTTGGATGATAAGTCCCCGGTCTATATTGAGAGTAACTACATTT\"}}], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\", \"multiple_output\": \"false\"}, \"read_mod_options\": {\"quality_cutoff\": \"0\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "c4379b3f-de3d-4eca-96ca-cdaba4006736", + "workflow_outputs": [ + { + "label": null, + "output_name": "out1", + "uuid": "8acb6fcd-1665-4269-8170-203c3e04f6c0" + }, + { + "label": null, + "output_name": "report", + "uuid": "83580f2a-2641-4127-9152-69a2ac1e044f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie_wrappers/bowtie_wrapper/1.2.0", + "errors": null, + "id": 16, + "input_connections": { + "refGenomeSource|ownFile": { + "id": 3, + "output_name": "output" + }, + "singlePaired|sInput1": { + "id": 15, + "output_name": "out1" + } + }, + "inputs": [], + "label": null, + "name": "Map with Bowtie for Illumina", + "outputs": [ + { + "name": "output", + "type": "sam" + } + ], + "position": { + "left": 1594, + "top": 201 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie_wrappers/bowtie_wrapper/1.2.0", + "tool_shed_repository": { + "changeset_revision": "b46e7d48076a", + "name": "bowtie_wrappers", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"refGenomeSource\": {\"genomeSource\": \"history\", \"__current_case__\": 1, \"ownFile\": {\"__class__\": \"ConnectedValue\"}, \"indexParams\": {\"indexSettings\": \"indexPreSet\", \"__current_case__\": 0}}, \"save_mapping_stats\": \"false\", \"singlePaired\": {\"sPaired\": \"single\", \"__current_case__\": 0, \"sInput1\": {\"__class__\": \"ConnectedValue\"}, \"sParams\": {\"sSettingsType\": \"full\", \"__current_case__\": 1, \"sSkip\": \"0\", \"sAlignLimit\": \"-1\", \"sTrimH\": \"0\", \"sTrimL\": \"0\", \"alignModeOption\": {\"alignMode\": \"nMode\", \"__current_case__\": 0, \"sMismatchSeed\": \"0\", \"sMismatchQual\": \"70\", \"sSeedLen\": \"17\", \"sRounding\": \"round\"}, \"sForwardAlign\": \"forward\", \"sReverseAlign\": \"reverse\", \"sBestOption\": {\"sBest\": \"doBest\", \"__current_case__\": 1, \"sdStrata\": \"noStrata\", \"sTryHardOption\": {\"sTryHard\": \"doTryHard\", \"__current_case__\": 1}}, \"sAllValAlignsOption\": {\"sAllValAligns\": \"noAllValAligns\", \"__current_case__\": 0, \"sValAlign\": \"1\"}, \"sSuppressAlign\": \"-1\", \"sMaxFile\": \"false\", \"sUnmappedFile\": \"false\", \"sOffrate\": \"-1\", \"sSeed\": \"-1\"}}, \"suppressHeader\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "9cd2e25c-9bc6-4136-9a10-3192c9e41841", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7e683afc-5d1f-48f9-a4f1-daedee314672" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.2.0.0", + "errors": null, + "id": 17, + "input_connections": { + "bamInput": { + "id": 16, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 1846, + "top": 196 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.2.0.0", + "tool_shed_repository": { + "changeset_revision": "bb1e4f63e0e6", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"advancedOpt\": {\"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"scaleFactor\": \"1.0\", \"smoothLength\": \"\", \"ignoreForNormalization\": \"\", \"skipNAs\": \"true\", \"doExtendCustom\": {\"doExtend\": \"no\", \"__current_case__\": 0}, \"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"minMappingQuality\": \"1\", \"samFlagInclude\": \"\", \"samFlagExclude\": \"\", \"minFragmentLength\": \"0\", \"maxFragmentLength\": \"0\", \"MNase\": \"false\", \"Offset\": \"-1\", \"filterRNAstrand\": \"no\", \"blackListFileName\": null}, \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"1\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"exactScaling\": \"false\", \"outFileFormat\": \"bedgraph\", \"region\": \"\", \"scaling\": {\"type\": \"no\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "8355bf16-b3bf-4361-b2f1-f1504154a4ee", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "63663acf-5780-492b-8b01-e958cf47617f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 18, + "input_connections": { + "infile1": { + "id": 17, + "output_name": "outFileName" + }, + "infile2": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 2113, + "top": 204 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bedgraph\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"column1\": \"2\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": \"false\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile1|__identifier__\": \"unknown\", \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \"-a 2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "095dd2dd-5082-419a-9743-0b6ac031392d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "89f48391-502f-4bc1-8755-fd3faf3245dc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 19, + "input_connections": { + "infile1": { + "id": 17, + "output_name": "outFileName" + }, + "infile2": { + "id": 14, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 2137, + "top": 366 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bedgraph\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"column1\": \"2\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": \"false\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile1|__identifier__\": \"unknown\", \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \"-a 2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "fc70f1e1-17dd-4287-8dfb-c7f86b71d645", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bf190ec2-215f-4404-b3e3-c230f84c6939" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2443, + "top": 205 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"bedgraph\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c1,c4\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"unknown\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "43459cad-a7b6-412f-8975-bc73f9127e12", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "205cebe3-e508-4a9b-8429-78d624b27028" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 21, + "input_connections": { + "input": { + "id": 19, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2311, + "top": 537 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"bedgraph\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c1,c4\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"unknown\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "b9d313a5-f9c1-4209-9235-1c7ba2aa6e2c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "be1284e3-bc3c-40c9-98cd-f3489b5addbf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 22, + "input_connections": { + "infile": { + "id": 20, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2731, + "top": 189 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "74a8bef53a00", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"header\": \"0\", \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"infile|__identifier__\": \"unknown\", \"sortkeys\": [{\"__index__\": 0, \"column\": \"1\", \"order\": \"\", \"style\": \"n\"}], \"unique\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "5bd821e2-8e48-4bc5-b7ce-6e4d9459764b", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "95ac6ae6-6620-4809-9fcf-90f2ffe0ef90" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "errors": null, + "id": 23, + "input_connections": { + "input": { + "id": 21, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Compute", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2504, + "top": 384 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "tool_shed_repository": { + "changeset_revision": "be25c075ed54", + "name": "column_maker", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"avoid_scientific_notation\": \"no\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c1-1\", \"header_lines_conditional\": {\"header_lines_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"unknown\", \"round\": \"yes\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "55059dd9-d9e5-4ec2-8756-af9ec8239924", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9efd613c-1f50-4e3c-b007-4196b9eefc69" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 24, + "input_connections": { + "input": { + "id": 23, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2641, + "top": 523 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c3,c2\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"unknown\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "54b3489e-f6ec-44de-8bbb-493c972e3666", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "48b2b3cd-45f4-43fe-aaaf-83ca18b7bf9d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 25, + "input_connections": { + "infile": { + "id": 24, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2841, + "top": 389 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "74a8bef53a00", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"header\": \"0\", \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"infile|__identifier__\": \"unknown\", \"sortkeys\": [{\"__index__\": 0, \"column\": \"1\", \"order\": \"\", \"style\": \"n\"}], \"unique\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "06aa9c94-2850-41d2-bc52-a7a954d2ca70", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "3b7302f9-16c5-464f-866b-df392abe0fbf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 26, + "input_connections": { + "infile1": { + "id": 22, + "output_name": "outfile" + }, + "infile2": { + "id": 25, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 3185, + "top": 209 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \".\", \"header\": \"false\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile1|__identifier__\": \"unknown\", \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"infile2|__identifier__\": \"unknown\", \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "4668ac5e-a567-4107-80e4-b6fe91f762ce", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fa45da27-d946-4d8c-8ef6-339d95e8b183" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "errors": null, + "id": 27, + "input_connections": { + "input": { + "id": 26, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Compute", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 3438, + "top": 151 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "tool_shed_repository": { + "changeset_revision": "be25c075ed54", + "name": "column_maker", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"avoid_scientific_notation\": \"no\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c2+c3\", \"header_lines_conditional\": {\"header_lines_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"unknown\", \"round\": \"yes\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "8ea3f455-800b-423d-99dd-827b8a91d079", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9d672d8f-f57f-49df-a2fb-0bc9daae2591" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 28, + "input_connections": { + "input": { + "id": 27, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 3597, + "top": 319 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c1,c4\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"unknown\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "b57d2009-2255-4aba-89dd-edd902fa21c4", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "f6051684-f77b-4895-8424-361bd399da4b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 29, + "input_connections": { + "infile": { + "id": 28, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 3811, + "top": 161 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "74a8bef53a00", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"header\": \"0\", \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"infile|__identifier__\": \"unknown\", \"sortkeys\": [{\"__index__\": 0, \"column\": \"1\", \"order\": \"\", \"style\": \"n\"}], \"unique\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "180421e5-45e7-4d88-be28-15d682f5e392", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "8543b2f7-cf8e-43f5-a06a-a7a20f180946" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/transit_gumbel/transit_gumbel/3.0.2+galaxy0", + "errors": null, + "id": 30, + "input_connections": { + "annotation": { + "id": 7, + "output_name": "output" + }, + "mode|inputs": { + "id": 29, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Gumbel", + "outputs": [ + { + "name": "sites", + "type": "tabular" + } + ], + "position": { + "left": 4067, + "top": 266 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/transit_gumbel/transit_gumbel/3.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "f50807720df1", + "name": "transit_gumbel", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation\": {\"__class__\": \"ConnectedValue\"}, \"burnin\": \"500\", \"cterm\": \"0.1\", \"handle_replicates\": \"Sum\", \"mode\": {\"replicates\": \"Replicates\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"normalization\": \"TTR\", \"nterm\": \"0.1\", \"samples\": \"10000\", \"smallest\": \"2\", \"trim\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "70b9679b-e15b-4756-8ae7-0457944dabbc", + "workflow_outputs": [ + { + "label": null, + "output_name": "sites", + "uuid": "a46ddc5a-f542-49ac-bb67-f23f734dabf4" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 31, + "input_connections": { + "input": { + "id": 30, + "output_name": "sites" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 4335, + "top": 269 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c9=='E'\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "42633d45-79c3-48ba-810d-5fe839a621d6", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "cb86d7f5-8c93-40bc-9836-1e68756c0e5e" + } + ] + }, + { + "annotation": "", + "content_id": "__EXTRACT_DATASET__", + "errors": null, + "id": 32, + "input_connections": { + "input": { + "id": 31, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Extract Dataset", + "outputs": [ + { + "name": "output", + "type": "data" + } + ], + "position": { + "left": 4607, + "top": 266 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "#control" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "__EXTRACT_DATASET__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_index\", \"__current_case__\": 2, \"index\": \"1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "886a7aec-fa32-410d-b82a-02f2c0722ff4", + "workflow_outputs": [ + { + "label": "control", + "output_name": "output", + "uuid": "8796f62f-4676-4ad2-b085-7597f894c32c" + } + ] + }, + { + "annotation": "", + "content_id": "__EXTRACT_DATASET__", + "errors": null, + "id": 33, + "input_connections": { + "input": { + "id": 31, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Extract Dataset", + "outputs": [ + { + "name": "output", + "type": "data" + } + ], + "position": { + "left": 4607, + "top": 465 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "#condition" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "__EXTRACT_DATASET__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"which\": {\"which_dataset\": \"by_index\", \"__current_case__\": 2, \"index\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "7b09fd71-c2d4-48a8-ba5a-ef9acba7e6b8", + "workflow_outputs": [ + { + "label": "condition", + "output_name": "output", + "uuid": "bd014de4-708e-419c-bd1e-8bf350661aad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 34, + "input_connections": { + "infile1": { + "id": 32, + "output_name": "output" + }, + "infile2": { + "id": 33, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Join", + "name": "infile1" + }, + { + "description": "runtime parameter for tool Join", + "name": "infile2" + } + ], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 4890, + "top": 254 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Essential genes in both" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \".\", \"header\": \"false\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"RuntimeValue\"}, \"infile2\": {\"__class__\": \"RuntimeValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "e3079b53-7fa1-43d1-820c-dbcded909b75", + "workflow_outputs": [ + { + "label": "essential_both", + "output_name": "output", + "uuid": "5cdfb5c9-c677-41dc-a838-c4a61d62f5be" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 35, + "input_connections": { + "infile1": { + "id": 32, + "output_name": "output" + }, + "infile2": { + "id": 33, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Join", + "name": "infile1" + }, + { + "description": "runtime parameter for tool Join", + "name": "infile2" + } + ], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 4895, + "top": 412 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Essential genes only in control" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \".\", \"header\": \"false\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"RuntimeValue\"}, \"infile2\": {\"__class__\": \"RuntimeValue\"}, \"jointype\": \"-v 1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "10ed907c-d126-47f8-b91a-ddf45f0e0c9e", + "workflow_outputs": [ + { + "label": "essential_control", + "output_name": "output", + "uuid": "8b2b65ea-37c3-43d2-b416-38f8f920fbd9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 36, + "input_connections": { + "infile1": { + "id": 32, + "output_name": "output" + }, + "infile2": { + "id": 33, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Join", + "name": "infile1" + }, + { + "description": "runtime parameter for tool Join", + "name": "infile2" + } + ], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 4896, + "top": 566 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Essential genes only in condition" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "9ff72e942410", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \".\", \"header\": \"false\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"RuntimeValue\"}, \"infile2\": {\"__class__\": \"RuntimeValue\"}, \"jointype\": \"-v 2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "c1e1e08c-c12a-4ea0-a166-0e45c1044463", + "workflow_outputs": [ + { + "label": "essential_condition", + "output_name": "output", + "uuid": "37639319-b053-4fbc-bf61-fd3e38263502" + } + ] + } + ], + "parent_id": "genome-annotation/tnseq", + "path": "topics/genome-annotation/tutorials/tnseq/workflows/essential-genes-detection-transposon-insertion-sequencing-workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": true, + "title": "Essential genes detection with Transposon insertion sequencing", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-tnseq/versions/essential-genes-detection-transposon-insertion-sequencing-workflow", + "tutorial_id": "tnseq", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/tnseq/workflows/essential-genes-detection-transposon-insertion-sequencing-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/tnseq/workflows/essential-genes-detection-transposon-insertion-sequencing-workflow.html", + "version": 1, + "wfid": "genome-annotation-tnseq", + "wfname": "essential-genes-detection-transposon-insertion-sequencing-workflow", + "workflow": "essential-genes-detection-transposon-insertion-sequencing-workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "__EXTRACT_DATASET__", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.2.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/find_subsequences/bg_find_subsequences/0.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie_wrappers/bowtie_wrapper/1.2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gff_to_prot/gff_to_prot/3.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/transit_gumbel/transit_gumbel/3.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5" + ], + "workflowhub_id": "1149" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.2579335" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "augustus_training", + "owner": "bgruening", + "revisions": "6519ebe25019", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gffread", + "owner": "devteam", + "revisions": "69e0806b63a4", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "602fb8e63aa7", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "9c620a950d3a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "6cd09d7b5f37", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jcvi_gff_stats", + "owner": "iuc", + "revisions": "8cffbd184762", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maker", + "owner": "iuc", + "revisions": "d46d803ca6cc", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maker_map_ids", + "owner": "iuc", + "revisions": "e906fa778440", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snap_training", + "owner": "iuc", + "revisions": "2a598c0aa042", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: augustus_training\n owner: bgruening\n revisions: 6519ebe25019\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gffread\n owner: devteam\n revisions: 69e0806b63a4\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 602fb8e63aa7\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 9c620a950d3a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 6cd09d7b5f37\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jcvi_gff_stats\n owner: iuc\n revisions: 8cffbd184762\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maker\n owner: iuc\n revisions: d46d803ca6cc\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maker_map_ids\n owner: iuc\n revisions: e906fa778440\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snap_training\n owner: iuc\n revisions: 2a598c0aa042\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + } + ], + "dir": "topics/genome-annotation/tutorials/annotation-with-maker", + "edam_operation": [ + "Ab-initio gene prediction", + "Genome annotation", + "Sequence assembly validation", + "Homology-based gene prediction", + "Genome visualisation", + "Operation", + "Transcriptome assembly", + "Sequence annotation", + "Genome assembly", + "Gene prediction", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/annotation-with-maker", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Maker allows to annotate a eukaryotic genome.", + "BUSCO and JBrowse allow to inspect the quality of an annotation." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Load genome into Galaxy", + "Annotate genome with Maker", + "Evaluate annotation quality with BUSCO", + "View annotations in JBrowse" + ], + "pageviews": 21535, + "priority": 4, + "pub_date": "2018-09-24", + "questions": [ + "How to annotate an eukaryotic genome?", + "How to evaluate and visualize annotated genomic features?" + ], + "short_id": "T00166", + "short_tools": [ + "jcvi_gff_stats", + "gffread", + "jbrowse", + "busco", + "fasta-stats", + "snap_training", + "maker", + "augustus_training", + "maker_map_ids" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "eukaryote", + "jbrowse1", + "maker" + ], + "time_estimation": "4h", + "title": "Genome annotation with Maker", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/augustus_training/augustus_training/3.3.3", + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.10+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.11", + "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.11", + "toolshed.g2.bx.psu.edu/repos/iuc/snap_training/snap_training/2013_11_29+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "annotation-with-maker", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-maker/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 114, + "visitors": 11527, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0003-0914-2470", + "name": "Anthony Bretaudeau" + }, + { + "class": "Organization", + "name": "French National Institute for Agriculture, Food, and Environment (INRAE)" + } + ], + "description": "Genome annotation with Maker", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEST and/or cDNA\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProtein sequences\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome sequence\"]\n 3[label=\"Maker\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Fasta Statistics\"]\n 2 -> 4 [label=\"output\"]\n k2d3829e6f5b946d183e317efff814e09[color=lightseagreen,label=\"Output\\nFasta Statistics on input dataset(s): Fasta summary stats\"]\n 4 -> k2d3829e6f5b946d183e317efff814e09\n 5[label=\"Busco\"]\n 2 -> 5 [label=\"output\"]\n ka15e121423a2484b9c751635fcd61fe3[color=lightseagreen,label=\"Output\\nBUSCO: short summary\"]\n 5 -> ka15e121423a2484b9c751635fcd61fe3\n k7806088df65743899d546a3bdfa233b2[color=lightseagreen,label=\"Output\\nBUSCO: list of missing ortholog genes\"]\n 5 -> k7806088df65743899d546a3bdfa233b2\n k6a27d0f6d83c42b1a7af5f99ba5debe2[color=lightseagreen,label=\"Output\\nBUSCO: full table\"]\n 5 -> k6a27d0f6d83c42b1a7af5f99ba5debe2\n 6[label=\"Train Augustus\"]\n 2 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output_gff\"]\n 7[label=\"Genome annotation statistics\"]\n 3 -> 7 [label=\"output_gff\"]\n 2 -> 7 [label=\"output\"]\n k2bed9aa65f22494d9caaf0ece8464f15[color=lightseagreen,label=\"Output\\nGenome annotation statistics: graphs (first round)\"]\n 7 -> k2bed9aa65f22494d9caaf0ece8464f15\n k71d41ce2e90d435b9b64ab4320524770[color=lightseagreen,label=\"Output\\nGenome annotation statistics: summary (first round)\"]\n 7 -> k71d41ce2e90d435b9b64ab4320524770\n 8[label=\"gffread\"]\n 3 -> 8 [label=\"output_gff\"]\n 2 -> 8 [label=\"output\"]\n 9[label=\"Train SNAP\"]\n 2 -> 9 [label=\"output\"]\n 3 -> 9 [label=\"output_gff\"]\n 10[label=\"Busco\"]\n 8 -> 10 [label=\"output_exons\"]\n ka79ab19d980242ca8ffa8c197a16c8b8[color=lightseagreen,label=\"Output\\nBusco summary first round\"]\n 10 -> ka79ab19d980242ca8ffa8c197a16c8b8\n 11[label=\"Maker\"]\n 6 -> 11 [label=\"output_tar\"]\n 9 -> 11 [label=\"output\"]\n 2 -> 11 [label=\"output\"]\n 3 -> 11 [label=\"output_full\"]\n 12[label=\"gffread\"]\n 11 -> 12 [label=\"output_gff\"]\n 2 -> 12 [label=\"output\"]\n 13[label=\"Train Augustus\"]\n 2 -> 13 [label=\"output\"]\n 11 -> 13 [label=\"output_gff\"]\n k42d5aadd3a8c441d913fee8745a99b0b[color=lightseagreen,label=\"Output\\nAugus: trained model\"]\n 13 -> k42d5aadd3a8c441d913fee8745a99b0b\n 14[label=\"Genome annotation statistics\"]\n 11 -> 14 [label=\"output_gff\"]\n 2 -> 14 [label=\"output\"]\n k9def2c6efd3c4969b5d4d13c187c1144[color=lightseagreen,label=\"Output\\nGenome annotation statistics: graphs (second round)\"]\n 14 -> k9def2c6efd3c4969b5d4d13c187c1144\n k61f7a150a4a246b189f52170d466656e[color=lightseagreen,label=\"Output\\nGenome annotation statistics: summary (second round)\"]\n 14 -> k61f7a150a4a246b189f52170d466656e\n 15[label=\"Train SNAP\"]\n 2 -> 15 [label=\"output\"]\n 11 -> 15 [label=\"output_gff\"]\n k458887f706614bdeab1a875aac6caed8[color=lightseagreen,label=\"Output\\nSNAP: trained model\"]\n 15 -> k458887f706614bdeab1a875aac6caed8\n 16[label=\"Busco\"]\n 12 -> 16 [label=\"output_exons\"]\n kf52b1b410ea54384bd434927273c909c[color=lightseagreen,label=\"Output\\nBusco summary second round\"]\n 16 -> kf52b1b410ea54384bd434927273c909c\n 17[label=\"Maker\"]\n 13 -> 17 [label=\"output_tar\"]\n 15 -> 17 [label=\"output\"]\n 2 -> 17 [label=\"output\"]\n 11 -> 17 [label=\"output_full\"]\n 18[label=\"Map annotation ids\"]\n 17 -> 18 [label=\"output_gff\"]\n k63575dcf54d14cb1b5fba2810b4da807[color=lightseagreen,label=\"Output\\nMap annotation ids: renamed GFF\"]\n 18 -> k63575dcf54d14cb1b5fba2810b4da807\n 19[label=\"JBrowse\"]\n 2 -> 19 [label=\"output\"]\n 3 -> 19 [label=\"output_gff\"]\n 18 -> 19 [label=\"renamed\"]\n 11 -> 19 [label=\"output_gff\"]\n 3 -> 19 [label=\"output_evidences\"]\n 11 -> 19 [label=\"output_evidences\"]\n 17 -> 19 [label=\"output_evidences\"]\n k5a38ae83e17745f3aa9f4c1844584fa5[color=lightseagreen,label=\"Output\\nJBrowse: report\"]\n 19 -> k5a38ae83e17745f3aa9f4c1844584fa5\n 20[label=\"gffread\"]\n 18 -> 20 [label=\"renamed\"]\n 2 -> 20 [label=\"output\"]\n k52fcac23b6124377a19a2e3b667a23e3[color=lightseagreen,label=\"Output\\nGffread: exons\"]\n 20 -> k52fcac23b6124377a19a2e3b667a23e3\n k5c47c25e0ddb4adea5d0873ff4add28c[color=lightseagreen,label=\"Output\\nGffread: translation of cds\"]\n 20 -> k5c47c25e0ddb4adea5d0873ff4add28c\n k84d9183b9589464b9f824dae7f87133e[color=lightseagreen,label=\"Output\\nGffread: cds\"]\n 20 -> k84d9183b9589464b9f824dae7f87133e\n 21[label=\"Genome annotation statistics\"]\n 18 -> 21 [label=\"renamed\"]\n 2 -> 21 [label=\"output\"]\n kf5d4a6bf1ff8435a80847921e25bff3a[color=lightseagreen,label=\"Output\\nGenome annotation statistics: graphs (third round)\"]\n 21 -> kf5d4a6bf1ff8435a80847921e25bff3a\n k5a863bd410f24ac881b6ce8b7f663e42[color=lightseagreen,label=\"Output\\nGenome annotation statistics: summary (third round)\"]\n 21 -> k5a863bd410f24ac881b6ce8b7f663e42\n 22[label=\"Busco\"]\n 20 -> 22 [label=\"output_exons\"]\n k0bc78676eecc4168894d34c4ca07cdf3[color=lightseagreen,label=\"Output\\nBusco summary final round\"]\n 22 -> k0bc78676eecc4168894d34c4ca07cdf3\n}", + "history": [ + { + "hash": "e61e9eba49f4c255dd46e1094355f61a770ba14e", + "message": "Fix workflow", + "num": 12, + "short_hash": "e61e9eba4", + "unix": "1625849450" + }, + { + "hash": "106af0888f3f8cbc7040c20b62adbf52ddfe2186", + "message": "Update maker workflow", + "num": 11, + "short_hash": "106af0888", + "unix": "1625842677" + }, + { + "hash": "005d964a2e8cb80f8d1bf0b304adc8f9d7c9ff76", + "message": "fix workflows", + "num": 10, + "short_hash": "005d964a2", + "unix": "1609752597" + }, + { + "hash": "774f2aa374452d48fd29ee85513c3dc3a7f137f5", + "message": "update maker tutorial and add a short version", + "num": 9, + "short_hash": "774f2aa37", + "unix": "1609431273" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 8, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 7, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "1a3049ca861744336a01f79b6ae1bc8bc46e2b12", + "message": "typos + update workflow", + "num": 6, + "short_hash": "1a3049ca8", + "unix": "1558343672" + }, + { + "hash": "2318b970d421c42bbced1799cfca63ce056ad01f", + "message": "udpate workflow", + "num": 5, + "short_hash": "2318b970d", + "unix": "1557415647" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 4, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "6eef55b7e8306d8ce46ac08e7799f6f65ae106aa", + "message": "Updated install_tutorial_requirements.sh + minor fixes (#1275)", + "num": 3, + "short_hash": "6eef55b7e", + "unix": "1551293676" + }, + { + "hash": "bc6d0ddca2ce262deb405fd92e0dab955488eb49", + "message": "jbrowse part", + "num": 2, + "short_hash": "bc6d0ddca", + "unix": "1536669505" + }, + { + "hash": "7b73f26f84bc0e9dc9e771f7dd89be3e6daddd66", + "message": "update wf", + "num": 1, + "short_hash": "7b73f26f8", + "unix": "1536594667" + } + ], + "inputs": [ + { + "annotation": "It contains the sequences used by Maker to construct gene models.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "It contains the sequences used by Maker to construct gene models.", + "name": "EST and/or cDNA" + } + ], + "label": "EST and/or cDNA", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 287.875, + "height": 81, + "left": 661.46875, + "right": 861.46875, + "top": 206.875, + "width": 200, + "x": 661.46875, + "y": 206.875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "397d1af7-4d12-43d6-955c-e3122978fc92", + "workflow_outputs": [] + }, + { + "annotation": "A set of protein sequences, usually from closely related species or from a curated sequence database like UniProt/SwissProt.", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "A set of protein sequences, usually from closely related species or from a curated sequence database like UniProt/SwissProt.", + "name": "Protein sequences" + } + ], + "label": "Protein sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 459, + "height": 81, + "left": 659.5, + "right": 859.5, + "top": 378, + "width": 200, + "x": 659.5, + "y": 378 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "418c68b0-b726-4f5e-b53c-480f1e7d43b5", + "workflow_outputs": [] + }, + { + "annotation": "This file corresponds to the sequence to be annotated.", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "This file corresponds to the sequence to be annotated.", + "name": "Genome sequence" + } + ], + "label": "Genome sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 1797.03125, + "height": 81, + "left": 661.46875, + "right": 861.46875, + "top": 1716.03125, + "width": 200, + "x": 661.46875, + "y": 1716.03125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "e03b5775-bd22-4528-9f21-20cd396dc6cc", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nEST and/or cDNA\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nProtein sequences\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nGenome sequence\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Maker\"];\n 0 -->|output| 3;\n 2 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Fasta Statistics\"];\n 2 -->|output| 4;\n 2d3829e6-f5b9-46d1-83e3-17efff814e09[\"Output\\nFasta Statistics on input dataset(s): Fasta summary stats\"];\n 4 --> 2d3829e6-f5b9-46d1-83e3-17efff814e09;\n style 2d3829e6-f5b9-46d1-83e3-17efff814e09 stroke:#2c3143,stroke-width:4px;\n 5[\"Busco\"];\n 2 -->|output| 5;\n a15e1214-23a2-484b-9c75-1635fcd61fe3[\"Output\\nBUSCO: short summary\"];\n 5 --> a15e1214-23a2-484b-9c75-1635fcd61fe3;\n style a15e1214-23a2-484b-9c75-1635fcd61fe3 stroke:#2c3143,stroke-width:4px;\n 7806088d-f657-4389-9d54-6a3bdfa233b2[\"Output\\nBUSCO: list of missing ortholog genes\"];\n 5 --> 7806088d-f657-4389-9d54-6a3bdfa233b2;\n style 7806088d-f657-4389-9d54-6a3bdfa233b2 stroke:#2c3143,stroke-width:4px;\n 6a27d0f6-d83c-42b1-a7af-5f99ba5debe2[\"Output\\nBUSCO: full table\"];\n 5 --> 6a27d0f6-d83c-42b1-a7af-5f99ba5debe2;\n style 6a27d0f6-d83c-42b1-a7af-5f99ba5debe2 stroke:#2c3143,stroke-width:4px;\n 6[\"Train Augustus\"];\n 2 -->|output| 6;\n 3 -->|output_gff| 6;\n 7[\"Genome annotation statistics\"];\n 3 -->|output_gff| 7;\n 2 -->|output| 7;\n 2bed9aa6-5f22-494d-9caa-f0ece8464f15[\"Output\\nGenome annotation statistics: graphs (first round)\"];\n 7 --> 2bed9aa6-5f22-494d-9caa-f0ece8464f15;\n style 2bed9aa6-5f22-494d-9caa-f0ece8464f15 stroke:#2c3143,stroke-width:4px;\n 71d41ce2-e90d-435b-9b64-ab4320524770[\"Output\\nGenome annotation statistics: summary (first round)\"];\n 7 --> 71d41ce2-e90d-435b-9b64-ab4320524770;\n style 71d41ce2-e90d-435b-9b64-ab4320524770 stroke:#2c3143,stroke-width:4px;\n 8[\"gffread\"];\n 3 -->|output_gff| 8;\n 2 -->|output| 8;\n 9[\"Train SNAP\"];\n 2 -->|output| 9;\n 3 -->|output_gff| 9;\n 10[\"Busco\"];\n 8 -->|output_exons| 10;\n a79ab19d-9802-42ca-8ffa-8c197a16c8b8[\"Output\\nBusco summary first round\"];\n 10 --> a79ab19d-9802-42ca-8ffa-8c197a16c8b8;\n style a79ab19d-9802-42ca-8ffa-8c197a16c8b8 stroke:#2c3143,stroke-width:4px;\n 11[\"Maker\"];\n 6 -->|output_tar| 11;\n 9 -->|output| 11;\n 2 -->|output| 11;\n 3 -->|output_full| 11;\n 12[\"gffread\"];\n 11 -->|output_gff| 12;\n 2 -->|output| 12;\n 13[\"Train Augustus\"];\n 2 -->|output| 13;\n 11 -->|output_gff| 13;\n 42d5aadd-3a8c-441d-913f-ee8745a99b0b[\"Output\\nAugus: trained model\"];\n 13 --> 42d5aadd-3a8c-441d-913f-ee8745a99b0b;\n style 42d5aadd-3a8c-441d-913f-ee8745a99b0b stroke:#2c3143,stroke-width:4px;\n 14[\"Genome annotation statistics\"];\n 11 -->|output_gff| 14;\n 2 -->|output| 14;\n 9def2c6e-fd3c-4969-b5d4-d13c187c1144[\"Output\\nGenome annotation statistics: graphs (second round)\"];\n 14 --> 9def2c6e-fd3c-4969-b5d4-d13c187c1144;\n style 9def2c6e-fd3c-4969-b5d4-d13c187c1144 stroke:#2c3143,stroke-width:4px;\n 61f7a150-a4a2-46b1-89f5-2170d466656e[\"Output\\nGenome annotation statistics: summary (second round)\"];\n 14 --> 61f7a150-a4a2-46b1-89f5-2170d466656e;\n style 61f7a150-a4a2-46b1-89f5-2170d466656e stroke:#2c3143,stroke-width:4px;\n 15[\"Train SNAP\"];\n 2 -->|output| 15;\n 11 -->|output_gff| 15;\n 458887f7-0661-4bde-ab1a-875aac6caed8[\"Output\\nSNAP: trained model\"];\n 15 --> 458887f7-0661-4bde-ab1a-875aac6caed8;\n style 458887f7-0661-4bde-ab1a-875aac6caed8 stroke:#2c3143,stroke-width:4px;\n 16[\"Busco\"];\n 12 -->|output_exons| 16;\n f52b1b41-0ea5-4384-bd43-4927273c909c[\"Output\\nBusco summary second round\"];\n 16 --> f52b1b41-0ea5-4384-bd43-4927273c909c;\n style f52b1b41-0ea5-4384-bd43-4927273c909c stroke:#2c3143,stroke-width:4px;\n 17[\"Maker\"];\n 13 -->|output_tar| 17;\n 15 -->|output| 17;\n 2 -->|output| 17;\n 11 -->|output_full| 17;\n 18[\"Map annotation ids\"];\n 17 -->|output_gff| 18;\n 63575dcf-54d1-4cb1-b5fb-a2810b4da807[\"Output\\nMap annotation ids: renamed GFF\"];\n 18 --> 63575dcf-54d1-4cb1-b5fb-a2810b4da807;\n style 63575dcf-54d1-4cb1-b5fb-a2810b4da807 stroke:#2c3143,stroke-width:4px;\n 19[\"JBrowse\"];\n 2 -->|output| 19;\n 3 -->|output_gff| 19;\n 18 -->|renamed| 19;\n 11 -->|output_gff| 19;\n 3 -->|output_evidences| 19;\n 11 -->|output_evidences| 19;\n 17 -->|output_evidences| 19;\n 5a38ae83-e177-45f3-aa9f-4c1844584fa5[\"Output\\nJBrowse: report\"];\n 19 --> 5a38ae83-e177-45f3-aa9f-4c1844584fa5;\n style 5a38ae83-e177-45f3-aa9f-4c1844584fa5 stroke:#2c3143,stroke-width:4px;\n 20[\"gffread\"];\n 18 -->|renamed| 20;\n 2 -->|output| 20;\n 52fcac23-b612-4377-a19a-2e3b667a23e3[\"Output\\nGffread: exons\"];\n 20 --> 52fcac23-b612-4377-a19a-2e3b667a23e3;\n style 52fcac23-b612-4377-a19a-2e3b667a23e3 stroke:#2c3143,stroke-width:4px;\n 5c47c25e-0ddb-4ade-a5d0-873ff4add28c[\"Output\\nGffread: translation of cds\"];\n 20 --> 5c47c25e-0ddb-4ade-a5d0-873ff4add28c;\n style 5c47c25e-0ddb-4ade-a5d0-873ff4add28c stroke:#2c3143,stroke-width:4px;\n 84d9183b-9589-464b-9f82-4dae7f87133e[\"Output\\nGffread: cds\"];\n 20 --> 84d9183b-9589-464b-9f82-4dae7f87133e;\n style 84d9183b-9589-464b-9f82-4dae7f87133e stroke:#2c3143,stroke-width:4px;\n 21[\"Genome annotation statistics\"];\n 18 -->|renamed| 21;\n 2 -->|output| 21;\n f5d4a6bf-1ff8-435a-8084-7921e25bff3a[\"Output\\nGenome annotation statistics: graphs (third round)\"];\n 21 --> f5d4a6bf-1ff8-435a-8084-7921e25bff3a;\n style f5d4a6bf-1ff8-435a-8084-7921e25bff3a stroke:#2c3143,stroke-width:4px;\n 5a863bd4-10f2-4ac8-81b6-ce8b7f663e42[\"Output\\nGenome annotation statistics: summary (third round)\"];\n 21 --> 5a863bd4-10f2-4ac8-81b6-ce8b7f663e42;\n style 5a863bd4-10f2-4ac8-81b6-ce8b7f663e42 stroke:#2c3143,stroke-width:4px;\n 22[\"Busco\"];\n 20 -->|output_exons| 22;\n 0bc78676-eecc-4168-894d-34c4ca07cdf3[\"Output\\nBusco summary final round\"];\n 22 --> 0bc78676-eecc-4168-894d-34c4ca07cdf3;\n style 0bc78676-eecc-4168-894d-34c4ca07cdf3 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Genome annotation with Maker ", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "errors": null, + "id": 4, + "input_connections": { + "dataset": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats", + "type": "tabular" + } + ], + "position": { + "bottom": 1526.4375, + "height": 152, + "left": 722.921875, + "right": 922.921875, + "top": 1374.4375, + "width": 200, + "x": 722.921875, + "y": 1374.4375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "tool_shed_repository": { + "changeset_revision": "9c620a950d3a", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "9cd9564b-b447-4a93-9445-ae3583137010", + "workflow_outputs": [ + { + "label": "Fasta Statistics on input dataset(s): Fasta summary stats", + "output_name": "stats", + "uuid": "2d3829e6-f5b9-46d1-83e3-17efff814e09" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 1989.015625, + "height": 212, + "left": 939.484375, + "right": 1139.484375, + "top": 1777.015625, + "width": 200, + "x": 939.484375, + "y": 1777.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"geno\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "2e99d9de-b48b-4f0f-99da-5f727ad023cc", + "workflow_outputs": [ + { + "label": "BUSCO: short summary", + "output_name": "busco_sum", + "uuid": "a15e1214-23a2-484b-9c75-1635fcd61fe3" + }, + { + "label": "BUSCO: list of missing ortholog genes", + "output_name": "busco_missing", + "uuid": "7806088d-f657-4389-9d54-6a3bdfa233b2" + }, + { + "label": "BUSCO: full table", + "output_name": "busco_table", + "uuid": "6a27d0f6-d83c-42b1-a7af-5f99ba5debe2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "errors": null, + "id": 7, + "input_connections": { + "gff": { + "id": 3, + "output_name": "output_gff" + }, + "ref_genome|genome": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Genome annotation statistics", + "outputs": [ + { + "name": "summary", + "type": "txt" + }, + { + "name": "graphs", + "type": "pdf" + } + ], + "position": { + "bottom": 1247.015625, + "height": 272, + "left": 1247.5, + "right": 1447.5, + "top": 975.015625, + "width": 200, + "x": 1247.5, + "y": 975.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "tool_shed_repository": { + "changeset_revision": "8cffbd184762", + "name": "jcvi_gff_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gff\": {\"__class__\": \"ConnectedValue\"}, \"ref_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.4", + "type": "tool", + "uuid": "af60c4d9-58f2-4f41-a2a3-6458cdcfd404", + "workflow_outputs": [ + { + "label": "Genome annotation statistics: graphs (first round)", + "output_name": "graphs", + "uuid": "2bed9aa6-5f22-494d-9caa-f0ece8464f15" + }, + { + "label": "Genome annotation statistics: summary (first round)", + "output_name": "summary", + "uuid": "71d41ce2-e90d-435b-9b64-ab4320524770" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "output_exons" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 1738.03125, + "height": 252, + "left": 1545.5, + "right": 1745.5, + "top": 1486.03125, + "width": 200, + "x": 1545.5, + "y": 1486.03125 + }, + "post_job_actions": { + "HideDatasetActionbusco_missing": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_missing" + }, + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"tran\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "a83a2b48-7787-4b53-a592-339f5134e168", + "workflow_outputs": [ + { + "label": "Busco summary first round", + "output_name": "busco_sum", + "uuid": "a79ab19d-9802-42ca-8ffa-8c197a16c8b8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/augustus_training/augustus_training/3.3.3", + "errors": null, + "id": 13, + "input_connections": { + "genome": { + "id": 2, + "output_name": "output" + }, + "maker_gff": { + "id": 11, + "output_name": "output_gff" + } + }, + "inputs": [], + "label": null, + "name": "Train Augustus", + "outputs": [ + { + "name": "output_tar", + "type": "augustus" + } + ], + "position": { + "bottom": 1259.03125, + "height": 182, + "left": 1863.5, + "right": 2063.5, + "top": 1077.03125, + "width": 200, + "x": 1863.5, + "y": 1077.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/augustus_training/augustus_training/3.3.3", + "tool_shed_repository": { + "changeset_revision": "6519ebe25019", + "name": "augustus_training", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"genome\": {\"__class__\": \"ConnectedValue\"}, \"maker_gff\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.3", + "type": "tool", + "uuid": "b347da09-05a2-4d30-a103-dbeb5853efcd", + "workflow_outputs": [ + { + "label": "Augus: trained model", + "output_name": "output_tar", + "uuid": "42d5aadd-3a8c-441d-913f-ee8745a99b0b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "errors": null, + "id": 14, + "input_connections": { + "gff": { + "id": 11, + "output_name": "output_gff" + }, + "ref_genome|genome": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Genome annotation statistics", + "outputs": [ + { + "name": "summary", + "type": "txt" + }, + { + "name": "graphs", + "type": "pdf" + } + ], + "position": { + "bottom": 1569.03125, + "height": 272, + "left": 1863.5, + "right": 2063.5, + "top": 1297.03125, + "width": 200, + "x": 1863.5, + "y": 1297.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "tool_shed_repository": { + "changeset_revision": "8cffbd184762", + "name": "jcvi_gff_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gff\": {\"__class__\": \"ConnectedValue\"}, \"ref_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.4", + "type": "tool", + "uuid": "5a3899b6-a669-4a36-990e-01e6cac6410d", + "workflow_outputs": [ + { + "label": "Genome annotation statistics: graphs (second round)", + "output_name": "graphs", + "uuid": "9def2c6e-fd3c-4969-b5d4-d13c187c1144" + }, + { + "label": "Genome annotation statistics: summary (second round)", + "output_name": "summary", + "uuid": "61f7a150-a4a2-46b1-89f5-2170d466656e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snap_training/snap_training/2013_11_29+galaxy1", + "errors": null, + "id": 15, + "input_connections": { + "genome": { + "id": 2, + "output_name": "output" + }, + "maker_gff": { + "id": 11, + "output_name": "output_gff" + } + }, + "inputs": [], + "label": null, + "name": "Train SNAP", + "outputs": [ + { + "name": "output", + "type": "snaphmm" + } + ], + "position": { + "bottom": 1770.03125, + "height": 162, + "left": 1863.5, + "right": 2063.5, + "top": 1608.03125, + "width": 200, + "x": 1863.5, + "y": 1608.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snap_training/snap_training/2013_11_29+galaxy1", + "tool_shed_repository": { + "changeset_revision": "2a598c0aa042", + "name": "snap_training", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gene_num\": \"1000\", \"genome\": {\"__class__\": \"ConnectedValue\"}, \"maker_gff\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2013_11_29+galaxy1", + "type": "tool", + "uuid": "97cec0ac-e731-4b55-859d-773a7c88bc26", + "workflow_outputs": [ + { + "label": "SNAP: trained model", + "output_name": "output", + "uuid": "458887f7-0661-4bde-ab1a-875aac6caed8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 12, + "output_name": "output_exons" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 870.03125, + "height": 252, + "left": 2161.484375, + "right": 2361.484375, + "top": 618.03125, + "width": 200, + "x": 2161.484375, + "y": 618.03125 + }, + "post_job_actions": { + "HideDatasetActionbusco_missing": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_missing" + }, + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"tran\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "9b04f806-0275-4939-bf74-b8c58ae2bffa", + "workflow_outputs": [ + { + "label": "Busco summary second round", + "output_name": "busco_sum", + "uuid": "f52b1b41-0ea5-4384-bd43-4927273c909c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.11", + "errors": null, + "id": 18, + "input_connections": { + "maker_gff": { + "id": 17, + "output_name": "output_gff" + } + }, + "inputs": [], + "label": null, + "name": "Map annotation ids", + "outputs": [ + { + "name": "renamed", + "type": "gff" + }, + { + "name": "id_map", + "type": "tabular" + } + ], + "position": { + "bottom": 1637.03125, + "height": 222, + "left": 2439.5, + "right": 2639.5, + "top": 1415.03125, + "width": 200, + "x": 2439.5, + "y": 1415.03125 + }, + "post_job_actions": { + "ChangeDatatypeActionrenamed": { + "action_arguments": { + "newtype": "gff3" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "renamed" + }, + "HideDatasetActionid_map": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "id_map" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.11", + "tool_shed_repository": { + "changeset_revision": "2e3535db1bfa", + "name": "maker_map_ids", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"justify\": \"6\", \"maker_gff\": {\"__class__\": \"ConnectedValue\"}, \"prefix\": \"TEST\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.31.11", + "type": "tool", + "uuid": "d7101291-76ac-48ec-9fb3-89ca5554e8ea", + "workflow_outputs": [ + { + "label": "Map annotation ids: renamed GFF", + "output_name": "renamed", + "uuid": "63575dcf-54d1-4cb1-b5fb-a2810b4da807" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.10+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "reference_genome|genome": { + "id": 2, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": [ + { + "id": 3, + "output_name": "output_gff" + }, + { + "id": 18, + "output_name": "renamed" + }, + { + "id": 11, + "output_name": "output_gff" + } + ], + "track_groups_1|data_tracks_0|data_format|annotation": [ + { + "id": 3, + "output_name": "output_evidences" + }, + { + "id": 11, + "output_name": "output_evidences" + }, + { + "id": 17, + "output_name": "output_evidences" + } + ] + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 775.015625, + "height": 292, + "left": 2747.5, + "right": 2947.5, + "top": 483.015625, + "width": 200, + "x": 2747.5, + "y": 483.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.10+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6cd09d7b5f37", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Maker annotation\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"Maker evidences\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": \"true\", \"__current_case__\": 0, \"name\": {\"__class__\": \"RuntimeValue\"}}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.10+galaxy0", + "type": "tool", + "uuid": "4585ada8-27ac-4632-8ac4-76f452316f21", + "workflow_outputs": [ + { + "label": "JBrowse: report", + "output_name": "output", + "uuid": "5a38ae83-e177-45f3-aa9f-4c1844584fa5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.2", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "renamed" + }, + "reference_genome|genome_fasta": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool gffread", + "name": "chr_replace" + } + ], + "label": null, + "name": "gffread", + "outputs": [ + { + "name": "output_exons", + "type": "fasta" + }, + { + "name": "output_cds", + "type": "fasta" + }, + { + "name": "output_pep", + "type": "fasta" + } + ], + "position": { + "bottom": 1085.015625, + "height": 272, + "left": 2747.5, + "right": 2947.5, + "top": 813.015625, + "width": 200, + "x": 2747.5, + "y": 813.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.2", + "tool_shed_repository": { + "changeset_revision": "69e0806b63a4", + "name": "gffread", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chr_replace\": {\"__class__\": \"RuntimeValue\"}, \"decode_url\": \"false\", \"expose\": \"false\", \"filtering\": null, \"full_gff_attribute_preservation\": \"false\", \"gffs\": {\"gff_fmt\": \"none\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"maxintron\": null, \"merging\": {\"merge_sel\": \"none\", \"__current_case__\": 0}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 2, \"genome_fasta\": {\"__class__\": \"ConnectedValue\"}, \"ref_filtering\": null, \"fa_outputs\": [\"-w exons.fa\", \"-x cds.fa\", \"-y pep.fa\"]}, \"region\": {\"region_filter\": \"none\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.1.2", + "type": "tool", + "uuid": "51674c8f-f50e-430f-b0ff-49b1b96887aa", + "workflow_outputs": [ + { + "label": "Gffread: exons", + "output_name": "output_exons", + "uuid": "52fcac23-b612-4377-a19a-2e3b667a23e3" + }, + { + "label": "Gffread: translation of cds", + "output_name": "output_pep", + "uuid": "5c47c25e-0ddb-4ade-a5d0-873ff4add28c" + }, + { + "label": "Gffread: cds", + "output_name": "output_cds", + "uuid": "84d9183b-9589-464b-9f82-4dae7f87133e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "errors": null, + "id": 21, + "input_connections": { + "gff": { + "id": 18, + "output_name": "renamed" + }, + "ref_genome|genome": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Genome annotation statistics", + "outputs": [ + { + "name": "summary", + "type": "txt" + }, + { + "name": "graphs", + "type": "pdf" + } + ], + "position": { + "bottom": 1954.03125, + "height": 272, + "left": 2747.5, + "right": 2947.5, + "top": 1682.03125, + "width": 200, + "x": 2747.5, + "y": 1682.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "tool_shed_repository": { + "changeset_revision": "8cffbd184762", + "name": "jcvi_gff_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gff\": {\"__class__\": \"ConnectedValue\"}, \"ref_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.4", + "type": "tool", + "uuid": "d5c389a7-0746-49da-ad3d-e206b5506acc", + "workflow_outputs": [ + { + "label": "Genome annotation statistics: graphs (third round)", + "output_name": "graphs", + "uuid": "f5d4a6bf-1ff8-435a-8084-7921e25bff3a" + }, + { + "label": "Genome annotation statistics: summary (third round)", + "output_name": "summary", + "uuid": "5a863bd4-10f2-4ac8-81b6-ce8b7f663e42" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 22, + "input_connections": { + "input": { + "id": 20, + "output_name": "output_exons" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 1156.03125, + "height": 252, + "left": 3025.5, + "right": 3225.5, + "top": 904.03125, + "width": 200, + "x": 3025.5, + "y": 904.03125 + }, + "post_job_actions": { + "HideDatasetActionbusco_missing": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_missing" + }, + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"tran\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "94dac116-5e62-487c-912a-a63ca53c17e7", + "workflow_outputs": [ + { + "label": "Busco summary final round", + "output_name": "busco_sum", + "uuid": "0bc78676-eecc-4168-894d-34c4ca07cdf3" + } + ] + } + ], + "parent_id": "genome-annotation/annotation-with-maker", + "path": "topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Genome annotation with Maker ", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-maker/versions/main-workflow", + "tutorial_id": "annotation-with-maker", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.html", + "version": 10, + "wfid": "genome-annotation-annotation-with-maker", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/augustus_training/augustus_training/3.3.3", + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.10+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.11", + "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.11", + "toolshed.g2.bx.psu.edu/repos/iuc/snap_training/snap_training/2013_11_29+galaxy1" + ], + "workflowhub_id": "1164" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4406623" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "diamond", + "owner": "bgruening", + "revisions": "e8ac2b53f262", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "interproscan", + "owner": "bgruening", + "revisions": "74810db257cc", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "0e3cf9594bb7", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "eggnog_mapper", + "owner": "galaxyp", + "revisions": "844fa988236b", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: diamond\n owner: bgruening\n revisions: e8ac2b53f262\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: interproscan\n owner: bgruening\n revisions: 74810db257cc\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 0e3cf9594bb7\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: eggnog_mapper\n owner: galaxyp\n revisions: 844fa988236b\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/functional/tutorial.json", + "contributions": { + "authorship": [ + "abretaud" + ], + "funding": [ + "gallantries", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/genome-annotation/tutorials/functional", + "edam_operation": [ + "Information extraction", + "Sequence alignment analysis", + "Sequence motif recognition", + "Genome annotation", + "Protein feature detection", + "Homology-based gene prediction", + "Query and retrieval", + "Fold recognition" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/functional", + "inexact_supported_servers": [ + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "EggNOG Mapper compares sequences to a database of annotated orthologous sequences", + "InterProScan detects known motifs in protein sequences" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-01-09", + "objectives": [ + "Perform functional annotation using EggNOG-mapper and InterProScan" + ], + "pageviews": 3302, + "priority": 6, + "pub_date": "2022-07-20", + "questions": [ + "How to perform functional annotation on protein sequences?" + ], + "short_id": "T00173", + "short_tools": [ + "eggnog_mapper", + "interproscan", + "ncbi_blastp_wrapper", + "bg_diamond" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "eukaryote" + ], + "time_estimation": "1h", + "title": "Functional annotation of protein sequences", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/2.10.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "functional", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/functional/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/functional/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/functional/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 106, + "visitors": 2227, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-0914-2470", + "name": "Anthony Bretaudeau" + } + ], + "description": "Functional annotation of protein sequences", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProtein sequences\"]\n 1[label=\"eggNOG Mapper\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"InterProScan\"]\n 0 -> 2 [label=\"output\"]\n}", + "history": [ + { + "hash": "f618c506c91dba9edce85bd76d1fb1d4a1c45eda", + "message": "rename wf", + "num": 1, + "short_hash": "f618c506c", + "unix": "1683023161" + } + ], + "inputs": [ + { + "annotation": "Some protein sequences to functionally annotate", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Some protein sequences to functionally annotate", + "name": "Protein sequences" + } + ], + "label": "Protein sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 315.5999984741211, + "height": 65.76666259765625, + "left": 726.3958740234375, + "right": 886.3958740234375, + "top": 249.83333587646484, + "width": 160, + "x": 726.3958740234375, + "y": 249.83333587646484 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "abb56aaf-5988-4fb8-a68f-0edaee00f445", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nProtein sequences\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"eggNOG Mapper\"];\n 0 -->|output| 1;\n 2[\"InterProScan\"];\n 0 -->|output| 2;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Functional annotation", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool eggNOG Mapper", + "name": "input" + } + ], + "label": null, + "name": "eggNOG Mapper", + "outputs": [ + { + "name": "seed_orthologs", + "type": "tabular" + }, + { + "name": "annotations", + "type": "tabular" + } + ], + "position": { + "bottom": 435.17499923706055, + "height": 196.8000030517578, + "left": 1194.4791412353516, + "right": 1354.4791412353516, + "top": 238.37499618530273, + "width": 160, + "x": 1194.4791412353516, + "y": 238.37499618530273 + }, + "post_job_actions": { + "HideDatasetActionseed_orthologs": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "seed_orthologs" + }, + "RenameDatasetActionannotations": { + "action_arguments": { + "newname": "EggNOG Mapper annotations" + }, + "action_type": "RenameDatasetAction", + "output_name": "annotations" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "tool_shed_repository": { + "changeset_revision": "5a30ae278db0", + "name": "eggnog_mapper", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation_options\": {\"tax_scope\": null, \"target_orthologs\": \"all\", \"go_evidence\": \"non-electronic\"}, \"eggnog_data\": \"5.0.2\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"input_trans\": {\"itype\": \"proteins\", \"__current_case__\": 0}, \"output_options\": {\"no_file_comments\": \"false\", \"no_annot\": \"false\", \"report_orthologs\": \"false\"}, \"seed_ortho_options\": {\"ortho_method\": {\"m\": \"diamond\", \"__current_case__\": 0, \"matrix_gapcosts\": {\"matrix\": \"BLOSUM62\", \"__current_case__\": 2, \"gap_costs\": \"--gapopen 11 --gapextend 1\"}, \"sensmode\": \"sensitive\", \"dmnd_iterate\": \"false\", \"dmnd_ignore_warnings\": \"false\"}, \"query_cover\": null, \"subject_cover\": null, \"pident\": null}, \"seed_ortholog_options\": {\"seed_ortholog_evalue\": \"0.001\", \"seed_ortholog_score\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.8+galaxy3", + "type": "tool", + "uuid": "0d9f93f0-88b3-406b-b8f9-ecb2d74c61e9", + "workflow_outputs": [ + { + "label": null, + "output_name": "annotations", + "uuid": "bc64d801-036f-4608-8ba1-74f16fddb574" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool InterProScan", + "name": "input" + } + ], + "label": null, + "name": "InterProScan", + "outputs": [ + { + "name": "outfile_tsv", + "type": "tabular" + }, + { + "name": "outfile_xml", + "type": "xml" + } + ], + "position": { + "bottom": 646.2666473388672, + "height": 131.51666259765625, + "left": 1197.1041870117188, + "right": 1357.1041870117188, + "top": 514.7499847412109, + "width": 160, + "x": 1197.1041870117188, + "y": 514.7499847412109 + }, + "post_job_actions": { + "HideDatasetActionoutfile_xml": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile_xml" + }, + "RenameDatasetActionoutfile_tsv": { + "action_arguments": { + "newname": "InterProScan annotations (tsv)" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "tool_shed_repository": { + "changeset_revision": "98cafcbd2578", + "name": "interproscan", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"applications\": [\"TIGRFAM\", \"SFLD\", \"SUPERFAMILY\", \"PANTHER\", \"Gene3D\", \"Hamap\", \"PrositeProfiles\", \"Coils\", \"SMART\", \"CDD\", \"PRINTS\", \"PIRSR\", \"PrositePatterns\", \"Pfam\", \"MobiDBLite\", \"PIRSF\"], \"database\": \"5.59-91.0\", \"goterms\": \"true\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"iprlookup\": \"false\", \"licensed\": {\"use\": \"true\", \"__current_case__\": 1, \"applications_licensed\": [\"Phobius\", \"SignalP_EUK\", \"TMHMM\"]}, \"oformat\": [\"TSV\", \"XML\"], \"pathways\": \"true\", \"seqtype\": \"p\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.59-91.0+galaxy3", + "type": "tool", + "uuid": "cb7a1910-3c31-47d9-835b-f1bd16a1c3ff", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_tsv", + "uuid": "b5a0e608-3bed-4fb2-9d47-d6bd521aee14" + } + ] + } + ], + "parent_id": "genome-annotation/functional", + "path": "topics/genome-annotation/tutorials/functional/workflows/functional.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": true, + "title": "Functional annotation", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-functional/versions/functional", + "tutorial_id": "functional", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/functional/workflows/functional.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/functional/workflows/functional.html", + "version": 1, + "wfid": "genome-annotation-functional", + "wfname": "functional", + "workflow": "functional.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3" + ], + "workflowhub_id": "1183" + } + ], + "zenodo_link": "https://zenodo.org/record/6861851" + }, + { + "abbreviations": { + "OGS": "Official Gene Set" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "apollo_create_or_update", + "owner": "gga", + "revisions": "4abaab60f9e1", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "apollo_iframe", + "owner": "gga", + "revisions": "f4e3f9480307", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: apollo_create_or_update\n owner: gga\n revisions: 4abaab60f9e1\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: apollo_iframe\n owner: gga\n revisions: f4e3f9480307\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo-euk/tutorial.json", + "contributions": { + "authorship": [ + "abretaud" + ], + "funding": [ + "gallantries", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/genome-annotation/tutorials/apollo-euk", + "edam_operation": [ + "Genome visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.no" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/apollo-euk", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Apollo is the Google Docs of the genome annotation world, real-time collaborative genome annotation.", + "Apollo allows a group to view and manually refine predicted genome annotations", + "Use Apollo to edit annotations within your group.", + "Export manual annotations as GFF3." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Load a genome into Galaxy", + "View annotations in JBrowse", + "Learn how to load JBrowse data into Apollo", + "Learn how to manually refine genome annotations within Apollo", + "Export refined genome annotations" + ], + "pageviews": 1546, + "priority": 6, + "pub_date": "2022-08-22", + "questions": [ + "How to visualize your genome after automated annotations have been performed?", + "How to manually annotate genome after automated annotations have been performed?", + "How to evaluate and visualize annotated genomic features?", + "How do I collaborate when doing genome annotation?" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "upload-rules" + ], + "type": "internal" + }, + { + "topic_name": "genome-annotation", + "tutorials": [ + "funannotate" + ], + "type": "internal" + } + ], + "short_id": "T00170", + "short_tools": [ + "create_or_update", + "iframe", + "jbrowse" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "eukaryote", + "cyoa", + "jbrowse1", + "apollo2" + ], + "time_estimation": "3h", + "title": "Refining Genome Annotations with Apollo (eukaryotes)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "apollo-euk", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/apollo-euk/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo-euk/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo-euk/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 158, + "visitors": 871, + "zenodo_link": "https://zenodo.org/record/3270822" + }, + { + "abbreviations": { + "LncRNAs": "Long non-coding RNAs", + "lncRNAs": "long non-coding RNAs", + "mRNAs": "Messenger RNAs" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gffread", + "owner": "devteam", + "revisions": "154d00cbbf2d", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "feelnc", + "owner": "iuc", + "revisions": "67af24676bd6", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stringtie", + "owner": "iuc", + "revisions": "eba36e001f45", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stringtie", + "owner": "iuc", + "revisions": "cef79931dda5", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gffread\n owner: devteam\n revisions: 154d00cbbf2d\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: feelnc\n owner: iuc\n revisions: 67af24676bd6\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stringtie\n owner: iuc\n revisions: eba36e001f45\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stringtie\n owner: iuc\n revisions: cef79931dda5\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/lncrna/tutorial.json", + "contributions": { + "authorship": [ + "stephanierobin" + ], + "editing": [ + "abretaud" + ] + }, + "contributors": [ + { + "email": "stephanie.robin@inrae.fr", + "id": "stephanierobin", + "joined": "2021-11", + "name": "St\u00e9phanie Robin", + "orcid": "0000-0001-7379-9173", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stephanierobin/", + "twitter": "robinstphanie1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stephanierobin.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + } + ], + "dir": "topics/genome-annotation/tutorials/lncrna", + "edam_operation": [ + "Classification", + "Transcriptome assembly", + "Sequence annotation", + "RNA-Seq analysis", + "Annotation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/lncrna", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "StringTie allows to perform a transcriptome assembly using mapped RNASeq data and provides an annotation file containing trancripts description.", + "FEELnc pipeline allows to perform annotation of long non-coding RNAs (lncRNAs).", + "Annotation is based on reconstructed transcripts from RNA-seq data (either with or without a reference genome)", + "Annotation can be performed without any training set of non-coding RNAs.", + "FEELnc provides the localisation and the direction of transcription of proximal RNA transcripts of lncRNAs." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-03", + "objectives": [ + "Load data (genome assembly, annotation and mapped RNASeq) into Galaxy", + "Perform a transcriptome assembly with StringTie", + "Annotate lncRNAs with FEELnc", + "Classify lncRNAs according to their location", + "Update genome annotation with lncRNAs" + ], + "pageviews": 1242, + "priority": 7, + "pub_date": "2022-09-23", + "questions": [ + "How to annotate lncRNAs with FEELnc?", + "How to classify lncRNAs according to their localisation and direction of transcription of proximal RNA transcripts?", + "How to update genome annotation with these annotated lncRNAs?" + ], + "requirements": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "funannotate" + ], + "type": "internal" + } + ], + "short_id": "T00177", + "short_tools": [ + "gffread", + "tp_cat", + "Extract_features1", + "stringtie", + "feelnc" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "eukaryote" + ], + "time_estimation": "2h", + "title": "Long non-coding RNAs (lncRNAs) annotation with FEELnc", + "tools": [ + "Extract_features1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/feelnc/feelnc/0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.1.7+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "lncrna", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/lncrna/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/lncrna/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/lncrna/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 128, + "visitors": 913, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-7379-9173", + "name": "St\u00e9phanie Robin" + } + ], + "description": "Long non-coding RNAs (lncRNAs) annotation with FEELnc", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmapped_RNASeq.bam\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ngenome_annotation.gff3\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ngenome_assembly.fasta\"]\n 3[label=\"StringTie\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"gffread\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"FEELnc\"]\n 3 -> 5 [label=\"output_gtf\"]\n 2 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"output_gtf\"]\n k4055b259173c492d86a45e662b663421[color=lightseagreen,label=\"Output\\nmRNAs\"]\n 5 -> k4055b259173c492d86a45e662b663421\n kabc029bab7ba458688b45e5d758c2f39[color=lightseagreen,label=\"Output\\nlncRNAs\"]\n 5 -> kabc029bab7ba458688b45e5d758c2f39\n k93ff3464d1bb405986af3e703da3e542[color=lightseagreen,label=\"Output\\nClassifier output\"]\n 5 -> k93ff3464d1bb405986af3e703da3e542\n 6[label=\"Concatenate datasets\"]\n 4 -> 6 [label=\"output_gtf\"]\n 5 -> 6 [label=\"candidate_lncRNA\"]\n k7b91b6a4ef6743599c93eabcc021b0fc[color=lightseagreen,label=\"Output\\nfinal_annotation\"]\n 6 -> k7b91b6a4ef6743599c93eabcc021b0fc\n}", + "history": [ + { + "hash": "8b70507229249bc44854bb8f23a50a6448cdd517", + "message": "Add a new tutorial about lncRNAs annotation (with FEELnc) (#3623)", + "num": 1, + "short_hash": "8b7050722", + "unix": "1663943586" + } + ], + "inputs": [ + { + "annotation": "RNASeq data mapped on the genome", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "RNASeq data mapped on the genome", + "name": "mapped_RNASeq.bam" + } + ], + "label": "mapped_RNASeq.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 342.40000915527344, + "height": 82.19999694824219, + "left": 297.5, + "right": 497.5, + "top": 260.20001220703125, + "width": 200, + "x": 297.5, + "y": 260.20001220703125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"bam\"], \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0d6d7a64-f5f5-4d80-8e76-72859ae6fa1b", + "workflow_outputs": [] + }, + { + "annotation": "Original structural annotation", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Original structural annotation", + "name": "genome_annotation.gff3" + } + ], + "label": "genome_annotation.gff3", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 448.40000915527344, + "height": 82.19999694824219, + "left": 297, + "right": 497, + "top": 366.20001220703125, + "width": 200, + "x": 297, + "y": 366.20001220703125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"gff3\"], \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4cc3b4aa-b54d-4652-bd14-9611bece1ca8", + "workflow_outputs": [] + }, + { + "annotation": "Genome sequence", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Genome sequence", + "name": "genome_assembly.fasta" + } + ], + "label": "genome_assembly.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 546.4000091552734, + "height": 82.19999694824219, + "left": 298, + "right": 498, + "top": 464.20001220703125, + "width": 200, + "x": 298, + "y": 464.20001220703125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "580a4505-ee23-4a3a-ac37-7e83cef79a0a", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nmapped_RNASeq.bam\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ngenome_annotation.gff3\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ngenome_assembly.fasta\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"StringTie\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 4[\"gffread\"];\n 1 -->|output| 4;\n 5[\"FEELnc\"];\n 3 -->|output_gtf| 5;\n 2 -->|output| 5;\n 4 -->|output_gtf| 5;\n 4055b259-173c-492d-86a4-5e662b663421[\"Output\\nmRNAs\"];\n 5 --> 4055b259-173c-492d-86a4-5e662b663421;\n style 4055b259-173c-492d-86a4-5e662b663421 stroke:#2c3143,stroke-width:4px;\n abc029ba-b7ba-4586-88b4-5e5d758c2f39[\"Output\\nlncRNAs\"];\n 5 --> abc029ba-b7ba-4586-88b4-5e5d758c2f39;\n style abc029ba-b7ba-4586-88b4-5e5d758c2f39 stroke:#2c3143,stroke-width:4px;\n 93ff3464-d1bb-4059-86af-3e703da3e542[\"Output\\nClassifier output\"];\n 5 --> 93ff3464-d1bb-4059-86af-3e703da3e542;\n style 93ff3464-d1bb-4059-86af-3e703da3e542 stroke:#2c3143,stroke-width:4px;\n 6[\"Concatenate datasets\"];\n 4 -->|output_gtf| 6;\n 5 -->|candidate_lncRNA| 6;\n 7b91b6a4-ef67-4359-9c93-eabcc021b0fc[\"Output\\nfinal_annotation\"];\n 6 --> 7b91b6a4-ef67-4359-9c93-eabcc021b0fc;\n style 7b91b6a4-ef67-4359-9c93-eabcc021b0fc stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Long non-coding RNAs (lncRNAs) annotation with FEELnc", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/feelnc/feelnc/0.2", + "errors": null, + "id": 5, + "input_connections": { + "candidate": { + "id": 3, + "output_name": "output_gtf" + }, + "genome": { + "id": 2, + "output_name": "output" + }, + "reference": { + "id": 4, + "output_name": "output_gtf" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FEELnc", + "name": "candidate" + }, + { + "description": "runtime parameter for tool FEELnc", + "name": "genome" + }, + { + "description": "runtime parameter for tool FEELnc", + "name": "reference" + } + ], + "label": null, + "name": "FEELnc", + "outputs": [ + { + "name": "candidate_lncRNA", + "type": "gtf" + }, + { + "name": "candidate_mRNA", + "type": "gtf" + }, + { + "name": "classifier", + "type": "txt" + } + ], + "position": { + "bottom": 529.0000152587891, + "height": 214.8000030517578, + "left": 922, + "right": 1122, + "top": 314.20001220703125, + "width": 200, + "x": 922, + "y": 314.20001220703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/feelnc/feelnc/0.2", + "tool_shed_repository": { + "changeset_revision": "67af24676bd6", + "name": "feelnc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"candidate\": {\"__class__\": \"RuntimeValue\"}, \"genome\": {\"__class__\": \"RuntimeValue\"}, \"reference\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2", + "type": "tool", + "uuid": "74ebae55-e16d-4884-bd59-0d6775bb731a", + "workflow_outputs": [ + { + "label": "mRNAs", + "output_name": "candidate_mRNA", + "uuid": "4055b259-173c-492d-86a4-5e662b663421" + }, + { + "label": "lncRNAs", + "output_name": "candidate_lncRNA", + "uuid": "abc029ba-b7ba-4586-88b4-5e5d758c2f39" + }, + { + "label": "Classifier output", + "output_name": "classifier", + "uuid": "93ff3464-d1bb-4059-86af-3e703da3e542" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 6, + "input_connections": { + "inputs": { + "id": 4, + "output_name": "output_gtf" + }, + "queries_0|inputs2": { + "id": 5, + "output_name": "candidate_lncRNA" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Concatenate datasets", + "name": "inputs" + } + ], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 758.2000122070312, + "height": 144, + "left": 1234, + "right": 1434, + "top": 614.2000122070312, + "width": 200, + "x": 1234, + "y": 614.2000122070312 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "final_annotation" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"RuntimeValue\"}, \"queries\": [{\"__index__\": 0, \"inputs2\": {\"__class__\": \"RuntimeValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "d6f07c9d-56db-43f9-b0e3-09db582015fd", + "workflow_outputs": [ + { + "label": "final_annotation", + "output_name": "out_file1", + "uuid": "7b91b6a4-ef67-4359-9c93-eabcc021b0fc" + } + ] + } + ], + "parent_id": "genome-annotation/lncrna", + "path": "topics/genome-annotation/tutorials/lncrna/workflows/main_workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Long non-coding RNAs (lncRNAs) annotation with FEELnc", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-lncrna/versions/main-workflow", + "tutorial_id": "lncrna", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/lncrna/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/lncrna/workflows/main_workflow.html", + "version": 1, + "wfid": "genome-annotation-lncrna", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/feelnc/feelnc/0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6" + ], + "workflowhub_id": "1141" + } + ], + "zenodo_link": "https://zenodo.org/records/11367439" + }, + { + "abbreviations": { + "CRISPR": "Clustered Regularly Interspaced Short Palindromic Repeats", + "MAGeCK": "Model-based Analysis of Genome-wide CRISPR-Cas9 Knockout" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mageck_count", + "owner": "iuc", + "revisions": "e329d44424d7", + "tool_panel_section_label": "Genome Editing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mageck_mle", + "owner": "iuc", + "revisions": "26126538a86f", + "tool_panel_section_label": "Genome Editing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mageck_test", + "owner": "iuc", + "revisions": "9b4f4533c9ee", + "tool_panel_section_label": "Genome Editing", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "9a913cdee30e", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "75c93c70d094", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "volcanoplot", + "owner": "iuc", + "revisions": "83c573f2e73c", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "4e5056fefd88", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "de6cebe3c043", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mageck_count\n owner: iuc\n revisions: e329d44424d7\n tool_panel_section_label: Genome Editing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mageck_mle\n owner: iuc\n revisions: 26126538a86f\n tool_panel_section_label: Genome Editing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mageck_test\n owner: iuc\n revisions: 9b4f4533c9ee\n tool_panel_section_label: Genome Editing\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 9a913cdee30e\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 75c93c70d094\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: volcanoplot\n owner: iuc\n revisions: 83c573f2e73c\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 4e5056fefd88\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: de6cebe3c043\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/crispr-screen/tutorial.json", + "contributors": [ + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + }, + { + "github": false, + "id": "kenjifujihara", + "joined": "2021-10", + "name": "Kenji Fujihara", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kenjifujihara/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kenjifujihara.json" + }, + { + "github": false, + "id": "twishigulati", + "joined": "2021-11", + "name": "Twishi Gulati", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/twishigulati/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/twishigulati.json" + } + ], + "dir": "topics/genome-annotation/tutorials/crispr-screen", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Validation", + "Genetic variation analysis", + "Sequence trimming", + "Sequence composition calculation", + "Read pre-processing", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/crispr-screen", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "CRISPR screen data can be analysed using MAGeCK and standard read quality tools" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Apply appropriate analysis and quality control steps for CRISPR screen data", + "Identify differentially enriched genes across conditions", + "Generate volcano plot to visualise results" + ], + "pageviews": 4353732, + "priority": 8, + "pub_date": "2021-10-15", + "questions": [ + "What are the steps to process CRISPR screen data?", + "How to identify essential genes across experimental conditions?" + ], + "recordings": [ + { + "captioners": [ + "mblue9" + ], + "date": "2022-03-10", + "galaxy_version": "21.09", + "length": "45M", + "speakers": [ + "mblue9" + ], + "youtube_id": "wavAf_2ytWg" + } + ], + "redirect_from": [ + "/topics/genome-editing/tutorials/crispr-screen/tutorial", + "/short/genome-annotation/crispr-screen", + "/short/T00171" + ], + "requirements": [ + { + "topic_name": "sequence-analysis", + "tutorials": [ + "quality-control" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections", + "upload-rules" + ], + "type": "internal" + } + ], + "short_id": "T00171", + "short_tools": [ + "multiqc", + "mageck_count", + "mageck_test", + "tp_awk_tool", + "mageck_mle", + "fastqc", + "volcanoplot", + "cutadapt" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "mblue9" + ], + "date": "2022-03-10", + "galaxy_version": "21.09", + "length": "3M", + "speakers": [ + "awspolly" + ], + "youtube_id": "MNT9gB5_RMg" + } + ], + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "genome editing", + "CRISPR", + "essential genes", + "cell line" + ], + "time_estimation": "2H", + "title": "CRISPR screen analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/mageck_count/mageck_count/0.5.9.2.4", + "toolshed.g2.bx.psu.edu/repos/iuc/mageck_mle/mageck_mle/0.5.9.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mageck_test/mageck_test/0.5.9.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/volcanoplot/volcanoplot/0.0.5", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/3.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/3.5+galaxy0" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "crispr-screen", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/crispr-screen/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/crispr-screen/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/crispr-screen/tutorial.json" + }, + "version": 12, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 274, + "visitors": 1660992, + "workflows": [ + { + "creators": [], + "description": "CRISPR screen analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbroadgpp-brunello-library-contents.csv\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCalabrese_SetA_Guides_Reference.csv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 3[label=\"FastQC\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Cutadapt\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"MultiQC\"]\n 3 -> 5 [label=\"text_file\"]\n 6[label=\"MAGeCK count\"]\n 4 -> 6 [label=\"out1\"]\n 7[label=\"MAGeCKs test\"]\n 6 -> 7 [label=\"counts\"]\n}", + "history": [ + { + "hash": "6de3720bca01013738f2c7a888d8f801b152cad0", + "message": "fix tagging", + "num": 2, + "short_hash": "6de3720bc", + "unix": "1646669939" + }, + { + "hash": "25fe77f9e08a7d086221d60a37e4e538db380c29", + "message": "Migrate to GA", + "num": 1, + "short_hash": "25fe77f9e", + "unix": "1646669586" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "broadgpp-brunello-library-contents.csv" + } + ], + "label": "broadgpp-brunello-library-contents.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "2d894130-2416-4418-98bd-0f62d0ce3288", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Calabrese_SetA_Guides_Reference.csv" + } + ], + "label": "Calabrese_SetA_Guides_Reference.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "f79b3850-c8b6-4ca7-8406-c795702195ae", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "699e7c6b-5248-484a-a06c-bae15497e74e", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nbroadgpp-brunello-library-contents.csv\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCalabrese_SetA_Guides_Reference.csv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"FastQC\"];\n 2 -->|output| 3;\n 4[\"Cutadapt\"];\n 2 -->|output| 4;\n 5[\"MultiQC\"];\n 3 -->|text_file| 5;\n 6[\"MAGeCK count\"];\n 4 -->|out1| 6;\n 7[\"MAGeCKs test\"];\n 6 -->|counts| 7;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Workflow constructed from history 'CRISPR tutorial Kenji'", + "outputs": [], + "parent_id": "genome-annotation/crispr-screen", + "path": "topics/genome-annotation/tutorials/crispr-screen/workflows/main_workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Workflow constructed from history 'CRISPR tutorial Kenji'", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-crispr-screen/versions/main-workflow", + "tutorial_id": "crispr-screen", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/crispr-screen/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/crispr-screen/workflows/main_workflow.html", + "version": 1, + "wfid": "genome-annotation-crispr-screen", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/mageck_count/mageck_count/0.5.9.2.4", + "toolshed.g2.bx.psu.edu/repos/iuc/mageck_test/mageck_test/0.5.9.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/3.4+galaxy1" + ], + "workflowhub_id": "1179" + } + ], + "zenodo_link": "https://zenodo.org/record/5750854" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "prokka", + "owner": "crs4", + "revisions": "bf68eb663bc3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "prokka", + "owner": "crs4", + "revisions": "111884f0d912", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: prokka\n owner: crs4\n revisions: bf68eb663bc3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: prokka\n owner: crs4\n revisions: 111884f0d912\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.json", + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "id": "tseemann", + "joined": "2018-06", + "name": "Torsten Seemann", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tseemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tseemann.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + } + ], + "dir": "topics/genome-annotation/tutorials/annotation-with-prokka", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0623", + "topic_0080" + ], + "edam_operation": [ + "Genome visualisation", + "Genome annotation", + "Gene prediction", + "Coding region prediction" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Gene and protein families", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "apollo" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/annotation-with-prokka", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Prokka is a useful tool to annotate a bacterial genome.", + "JBrowse can be used to inspect the annotation of a genome." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Load genome into Galaxy", + "Annotate genome with Prokka", + "View annotations in JBrowse" + ], + "pageviews": 5754405, + "pub_date": "2018-03-06", + "questions": [ + "How can we annotate a bacterial genome?", + "How can we visualize annotated genomic features?" + ], + "recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "20M", + "speakers": [ + "abretaud" + ], + "youtube_id": "B8pIQZPf21Y" + } + ], + "short_id": "T00168", + "short_tools": [ + "prokka", + "jbrowse" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "3M", + "speakers": [ + "awspolly" + ], + "youtube_id": "eqHy-Cc7k4Q" + } + ], + "subtopic": "prokaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "prokaryote", + "microgalaxy", + "jbrowse1" + ], + "time_estimation": "1h", + "title": "Genome annotation with Prokka", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "annotation-with-prokka", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.json" + }, + "version": 25, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 260, + "visitors": 2079352, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + }, + { + "class": "Person", + "identifier": "0000-0001-6046-610X", + "name": "Torsten Seemann" + }, + { + "class": "Person", + "identifier": "0000-0002-6100-4385", + "name": "Simon Gladman" + } + ], + "description": "Genome annotation with Prokka", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncontigs.fasta\"]\n 1[label=\"Prokka\"]\n 0 -> 1 [label=\"output\"]\n ka336c364e69e47ebace6a7fe46d285fe[color=lightseagreen,label=\"Output\\ngff_output\"]\n 1 -> ka336c364e69e47ebace6a7fe46d285fe\n 2[label=\"JBrowse\"]\n 1 -> 2 [label=\"out_fna\"]\n 1 -> 2 [label=\"out_gff\"]\n}", + "history": [ + { + "hash": "70a555355ed2ebc563a4388cd1da50f7f1a5952f", + "message": "Update topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "num": 10, + "short_hash": "70a555355", + "unix": "1715074163" + }, + { + "hash": "466b451a082b7d2d5e60777a45289874bbbde721", + "message": "Add creators and license to workflow", + "num": 9, + "short_hash": "466b451a0", + "unix": "1714990318" + }, + { + "hash": "499e257dee992b4645adf4c79844b8cc89e68c24", + "message": "update prokka workflow", + "num": 8, + "short_hash": "499e257de", + "unix": "1714456964" + }, + { + "hash": "56413bab75ab75be269668d70e3929e01bbaa5fb", + "message": "Add workflow test.", + "num": 7, + "short_hash": "56413bab7", + "unix": "1603310943" + }, + { + "hash": "a3829a12322232647926a394b1ecae3af17a858b", + "message": "Update Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "num": 6, + "short_hash": "a3829a123", + "unix": "1580832292" + }, + { + "hash": "bab7ab72c6a4436a3ac3e6745b364696332399b5", + "message": "prokka@1.14.5 jbrowse@1.16.5+galaxy7", + "num": 5, + "short_hash": "bab7ab72c", + "unix": "1580433748" + }, + { + "hash": "c69f09dd0cb211d5621af293fe400892e343f78e", + "message": "Adding tag", + "num": 4, + "short_hash": "c69f09dd0", + "unix": "1579796672" + }, + { + "hash": "920732bc2295d6120b075934b758290ad56f5759", + "message": "Updated prokka workflow to newest tool versions", + "num": 3, + "short_hash": "920732bc2", + "unix": "1579634888" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "b9a6072964bce056112a36326600e4c80bd133ec", + "message": "move tutorials to new topic", + "num": 1, + "short_hash": "b9a607296", + "unix": "1528898987" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "contigs.fasta" + } + ], + "label": "contigs.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 76.845458984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "79e73b85-8d44-413f-83b7-c0e668ec963c", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ncontigs.fasta\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Prokka\"];\n 0 -->|output| 1;\n a336c364-e69e-47eb-ace6-a7fe46d285fe[\"Output\\ngff_output\"];\n 1 --> a336c364-e69e-47eb-ace6-a7fe46d285fe;\n style a336c364-e69e-47eb-ace6-a7fe46d285fe stroke:#2c3143,stroke-width:4px;\n 2[\"JBrowse\"];\n 1 -->|out_fna| 2;\n 1 -->|out_gff| 2;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Genome Annotation with Prokka ", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Prokka", + "outputs": [ + { + "name": "out_gff", + "type": "gff" + }, + { + "name": "out_gbk", + "type": "txt" + }, + { + "name": "out_fna", + "type": "fasta" + }, + { + "name": "out_faa", + "type": "fasta" + }, + { + "name": "out_ffn", + "type": "fasta" + }, + { + "name": "out_sqn", + "type": "asn1" + }, + { + "name": "out_fsa", + "type": "fasta" + }, + { + "name": "out_tbl", + "type": "txt" + }, + { + "name": "out_err", + "type": "txt" + }, + { + "name": "out_txt", + "type": "txt" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 254.117919921875, + "top": 0.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "tool_shed_repository": { + "changeset_revision": "bf68eb663bc3", + "name": "prokka", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"__workflow_invocation_uuid__\": \"5dc31c9443c711eabead005056ba55fb\", \"centre\": \"V\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"compliant\": {\"compliant_select\": \"no\", \"__current_case__\": 0, \"addgenes\": false, \"mincontig\": \"200\"}, \"evalue\": \"1e-06\", \"fast\": false, \"genus\": \"Staphylococcus\", \"gffver\": \"3\", \"increment\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"kingdom\": {\"kingdom_select\": \"Bacteria\", \"__current_case__\": 1, \"gcode\": \"11\"}, \"locustag\": \"P\", \"metagenome\": false, \"norrna\": false, \"notrna\": false, \"outputs\": [\"gff\", \"gbk\", \"fna\", \"faa\", \"ffn\", \"sqn\", \"fsa\", \"tbl\", \"err\", \"txt\"], \"plasmid\": \"\", \"proteins\": null, \"rfam\": false, \"species\": \"aureus\", \"strain\": \"\", \"usegenus\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.14.5", + "type": "tool", + "uuid": "28efec53-71bb-4aaa-993d-03b78d493570", + "when": null, + "workflow_outputs": [ + { + "label": "gff_output", + "output_name": "out_gff", + "uuid": "a336c364-e69e-47eb-ace6-a7fe46d285fe" + } + ] + } + ], + "parent_id": "genome-annotation/annotation-with-prokka", + "path": "topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "tags": [ + "genome-annotation", + "GTN" + ], + "test_results": null, + "tests": true, + "title": "Genome Annotation with Prokka ", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-prokka/versions/galaxy-workflow-workflow-constructed-from-history--prokka-workflow-", + "tutorial_id": "annotation-with-prokka", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-prokka/workflows/Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.html", + "version": 6, + "wfid": "genome-annotation-annotation-with-prokka", + "wfname": "galaxy-workflow-workflow-constructed-from-history--prokka-workflow-", + "workflow": "Galaxy-Workflow-Workflow_constructed_from_history__prokka-workflow_.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "workflowhub_id": "1186" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1156405" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "intermine_galaxy_exchange", + "owner": "iuc", + "revisions": "c24014d80001", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: intermine_galaxy_exchange\n owner: iuc\n revisions: c24014d80001\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/intermine/tutorial.json", + "contributions": { + "authorship": [ + "danielabutano", + "yochannah" + ] + }, + "contributors": [ + { + "id": "danielabutano", + "joined": "2019-09", + "name": "Daniela Butano", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/danielabutano/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/danielabutano.json" + }, + { + "id": "yochannah", + "joined": "2019-09", + "name": "Yo Yehudi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yochannah/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yochannah.json" + } + ], + "dir": "topics/galaxy-interface/tutorials/intermine", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "galaxy-interface/intermine", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Learn how to import/export data from/to InterMine instances", + "Understand the InterMine Interchange Dataset" + ], + "pageviews": 185, + "pub_date": "2020-12-09", + "questions": [ + "How to export your query results from your InterMine of choice to Galaxy?", + "How to export a list of identifiers from Galaxy to your InterMine of choice?" + ], + "short_id": "T00152", + "short_tools": [ + "intermine", + "galaxy_intermine_exchange" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "analyse", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "gmod", + "intermine" + ], + "time_estimation": "1h", + "title": "InterMine integration with Galaxy", + "tools": [ + "intermine", + "toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange/0.0.1" + ], + "topic_name": "galaxy-interface", + "topic_name_human": "Using Galaxy and Managing your Data", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "intermine", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/galaxy-interface/tutorials/intermine/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/intermine/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/galaxy-interface/tutorials/intermine/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 149, + "visitors": 134, + "workflows": [ + { + "creators": [], + "description": "Intermine import/export", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"Create InterMine Interchange\"]\n 0 -> 1 [label=\"output\"]\n}", + "history": [ + { + "hash": "6a3063bce6a3990aefa6facf94d34a08bf4eea6f", + "message": "more small edits", + "num": 2, + "short_hash": "6a3063bce", + "unix": "1607081036" + }, + { + "hash": "de251b5d774f97b4dcb70121c68ea01eba22536d", + "message": "move folder", + "num": 1, + "short_hash": "de251b5d7", + "unix": "1607080170" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 257, + "top": 403.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "13261ad4-770b-4728-9068-d9941d07abf7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3df15ab7-6fb7-4a90-81e9-f25868067b8e" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Create InterMine Interchange\"];\n 0 -->|output| 1;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Intermine import/export", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 257, + "top": 403.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "13261ad4-770b-4728-9068-d9941d07abf7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3df15ab7-6fb7-4a90-81e9-f25868067b8e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange/0.0.1", + "errors": null, + "id": 1, + "input_connections": { + "input_tabular": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create InterMine Interchange", + "name": "input_tabular" + } + ], + "label": null, + "name": "Create InterMine Interchange", + "outputs": [ + { + "name": "intermine_output", + "type": "intermine_tabular" + } + ], + "position": { + "left": 509, + "top": 402.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange/0.0.1", + "tool_shed_repository": { + "changeset_revision": "c24014d80001", + "name": "intermine_galaxy_exchange", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"feature_id_column\": \"\\\"2\\\"\", \"feature_id_text\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"feature_column\": \"\\\"1\\\"\", \"input_tabular\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"feature_text\": \"\\\"Gene\\\"\", \"organism_text\": \"\\\"\\\"\", \"organism_column\": \"\\\"3\\\"\"}", + "tool_version": "0.0.1", + "type": "tool", + "uuid": "8e5e0134-7b2a-43c4-b1d4-4d4b62b6af3c", + "workflow_outputs": [ + { + "label": null, + "output_name": "intermine_output", + "uuid": "bfa0f275-4aee-4d3f-8b7c-4e32e8cc9710" + } + ] + } + ], + "parent_id": "galaxy-interface/intermine", + "path": "topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.ga", + "tags": [ + "galaxy-interface" + ], + "test_results": null, + "tests": false, + "title": "Intermine import/export", + "topic_id": "galaxy-interface", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/galaxy-interface-intermine/versions/main-workflow", + "tutorial_id": "intermine", + "url": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/galaxy-interface/tutorials/intermine/workflows/main_workflow.html", + "version": 1, + "wfid": "galaxy-interface-intermine", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/intermine_galaxy_exchange/galaxy_intermine_exchange/0.0.1" + ], + "workflowhub_id": "1290" + } + ], + "zenodo_link": "https://zenodo.org/record/3407174" + }, + { + "abbreviations": { + "SVs": "Structural Variations" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "flye", + "owner": "bgruening", + "revisions": "cb8dfd28c16f", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa_mem2", + "owner": "iuc", + "revisions": "bfaa0d22c2e4", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filtlong", + "owner": "iuc", + "revisions": "8880fb74ef56", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filtlong", + "owner": "iuc", + "revisions": "1f296803dfa3", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "0f1c34698076", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "polypolish", + "owner": "iuc", + "revisions": "f355085dd2aa", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "93d623d9979c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: flye\n owner: bgruening\n revisions: cb8dfd28c16f\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa_mem2\n owner: iuc\n revisions: bfaa0d22c2e4\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filtlong\n owner: iuc\n revisions: 8880fb74ef56\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filtlong\n owner: iuc\n revisions: 1f296803dfa3\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: 0f1c34698076\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: polypolish\n owner: iuc\n revisions: f355085dd2aa\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 93d623d9979c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-nanopore/tutorial.json", + "contributions": { + "authorship": [ + "bazante1", + "bebatut" + ], + "editing": [ + "hexylena", + "bazante1", + "shiltemann", + "miaomiaozhou88" + ], + "funding": [ + "avans-atgm", + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "email": "m.zhou1@avans.nl", + "id": "miaomiaozhou88", + "joined": "2020-12", + "name": "Miaomiao Zhou", + "orcid": "0000-0003-4426-1758", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/miaomiaozhou88/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/miaomiaozhou88.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/assembly/tutorials/mrsa-nanopore", + "edam_ontology": [ + "topic_0196", + "topic_3673", + "topic_3305", + "topic_0622", + "topic_3301", + "topic_4013" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence contamination filtering", + "Genome assembly", + "De-novo assembly", + "Sequence alignment", + "Box-Whisker plot plotting", + "Sequence assembly validation", + "Sequence composition calculation", + "Read mapping", + "Scatter plot plotting", + "Mapping assembly", + "Sequencing error detection", + "Sequence assembly visualisation", + "Cross-assembly", + "Filtering", + "Statistical calculation" + ], + "edam_topic": [ + "Sequence assembly", + "Whole genome sequencing", + "Public health and epidemiology", + "Genomics", + "Microbiology", + "Antimicrobial Resistance" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "amr-gene-detection" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "assembly/mrsa-nanopore", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": 11271, + "mermaid": false + }, + "key_points": [ + "Nanopore produces fantastic assemblies but with low quality data", + "Annotation with Prokka is very easy" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-13", + "objectives": [ + "Run tools to evaluate sequencing data on quality and quantity", + "Process the output of quality control tools", + "Improve the quality of sequencing data", + "Run a tool to assemble a bacterial genome using short reads", + "Run tools to assess the quality of an assembly", + "Understand the outputs of tools to assess the quality of an assembly" + ], + "pageviews": 10571, + "pub_date": "2021-03-24", + "questions": [ + "How to check the quality of the MinION data (together with Illumina data)?", + "How to perform an assembly of a bacterial genome with MinION data?", + "How to check the quality of an assembly?" + ], + "short_id": "T00037", + "short_tools": [ + "nanoplot", + "fastp", + "CONVERTER_bz2_to_uncompressed", + "filtlong", + "flye", + "bwa_mem2", + "quast", + "fastqc", + "polypolish", + "bandage_image", + "upload1", + "porechop" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "nanopore", + "assembly", + "amr", + "gmod", + "jbrowse1", + "microgalaxy" + ], + "time_estimation": "2h", + "title": "Genome Assembly of MRSA from Oxford Nanopore MinION data (and optionally Illumina data)", + "tools": [ + "CONVERTER_bz2_to_uncompressed", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong/0.2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong/0.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/polypolish/polypolish/0.5.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.3", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "upload1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mrsa-nanopore", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/mrsa-nanopore/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-nanopore/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/mrsa-nanopore/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 206, + "visitors": 6851, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2255-1631", + "name": "Bazante Sanders" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Genome Assembly of MRSA from Oxford Nanopore MinION data (and optionally Illumina data)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNanopore raw reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina forward raw reads\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reverse raw reads\"]\n 3[label=\"Convert compressed file to uncompressed.\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"FastQC\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"fastp\"]\n 1 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"NanoPlot\"]\n 3 -> 6 [label=\"output1\"]\n ka97e6f3381824a3386dd6cfbb83a842d[color=lightseagreen,label=\"Output\\nnanoplot_before_filtering\"]\n 6 -> ka97e6f3381824a3386dd6cfbb83a842d\n 7[label=\"filtlong\"]\n 5 -> 7 [label=\"out1\"]\n 5 -> 7 [label=\"out2\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Flye\"]\n 7 -> 8 [label=\"outfile\"]\n kf12e718f1bd5490dbd41f0747aaa41a6[color=lightseagreen,label=\"Output\\nflye_assembly_info\"]\n 8 -> kf12e718f1bd5490dbd41f0747aaa41a6\n 9[label=\"NanoPlot\"]\n 7 -> 9 [label=\"outfile\"]\n k89524090f590434d89e266f0b1a23c7c[color=lightseagreen,label=\"Output\\nnanoplot_after_filtering\"]\n 9 -> k89524090f590434d89e266f0b1a23c7c\n 10[label=\"Bandage Image\"]\n 8 -> 10 [label=\"assembly_gfa\"]\n 11[label=\"BWA-MEM2\"]\n 5 -> 11 [label=\"out2\"]\n 8 -> 11 [label=\"consensus\"]\n 12[label=\"Quast\"]\n 8 -> 12 [label=\"consensus\"]\n kdabfb8fd87914959a9dc9b3c1e57a69c[color=lightseagreen,label=\"Output\\nquast_report_before_polishing\"]\n 12 -> kdabfb8fd87914959a9dc9b3c1e57a69c\n 13[label=\"BWA-MEM2\"]\n 5 -> 13 [label=\"out1\"]\n 8 -> 13 [label=\"consensus\"]\n 14[label=\"Polypolish\"]\n 8 -> 14 [label=\"consensus\"]\n 13 -> 14 [label=\"bam_output\"]\n 11 -> 14 [label=\"bam_output\"]\n 15[label=\"Quast\"]\n 14 -> 15 [label=\"polished_fasta\"]\n 8 -> 15 [label=\"consensus\"]\n k4e465b5168bf42039a7c897f46c70277[color=lightseagreen,label=\"Output\\nquast_report_after_polishing\"]\n 15 -> k4e465b5168bf42039a7c897f46c70277\n}", + "history": [ + { + "hash": "96393a7fcb4d6dc37d86866cf8a61c931293502f", + "message": "Add MRSA Nanopore assembly tutorial to AMR learning pathway", + "num": 1, + "short_hash": "96393a7fc", + "unix": "1709135526" + } + ], + "inputs": [ + { + "annotation": "Nanopore raw reads", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Nanopore raw reads", + "name": "Nanopore raw reads" + } + ], + "label": "Nanopore raw reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 65.66800632871802, + "top": 217.27323322511424 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "cd4fd302-af94-4771-9b80-7c7acb6619d4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Illumina forward raw reads", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Illumina forward raw reads", + "name": "Illumina forward raw reads" + } + ], + "label": "Illumina forward raw reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 479 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "b3fe89da-544c-4066-abcb-b33d4f005796", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Illumina reverse raw reads", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Illumina reverse raw reads", + "name": "Illumina reverse raw reads" + } + ], + "label": "Illumina reverse raw reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 602 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "16545abc-0513-4a32-9ea5-4a168875a854", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nNanopore raw reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nIllumina forward raw reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nIllumina reverse raw reads\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Convert compressed file to uncompressed.\"];\n 0 -->|output| 3;\n 4[\"FastQC\"];\n 0 -->|output| 4;\n 5[\"fastp\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 6[\"NanoPlot\"];\n 3 -->|output1| 6;\n a97e6f33-8182-4a33-86dd-6cfbb83a842d[\"Output\\nnanoplot_before_filtering\"];\n 6 --> a97e6f33-8182-4a33-86dd-6cfbb83a842d;\n style a97e6f33-8182-4a33-86dd-6cfbb83a842d stroke:#2c3143,stroke-width:4px;\n 7[\"filtlong\"];\n 5 -->|out1| 7;\n 5 -->|out2| 7;\n 0 -->|output| 7;\n 8[\"Flye\"];\n 7 -->|outfile| 8;\n f12e718f-1bd5-490d-bd41-f0747aaa41a6[\"Output\\nflye_assembly_info\"];\n 8 --> f12e718f-1bd5-490d-bd41-f0747aaa41a6;\n style f12e718f-1bd5-490d-bd41-f0747aaa41a6 stroke:#2c3143,stroke-width:4px;\n 9[\"NanoPlot\"];\n 7 -->|outfile| 9;\n 89524090-f590-434d-89e2-66f0b1a23c7c[\"Output\\nnanoplot_after_filtering\"];\n 9 --> 89524090-f590-434d-89e2-66f0b1a23c7c;\n style 89524090-f590-434d-89e2-66f0b1a23c7c stroke:#2c3143,stroke-width:4px;\n 10[\"Bandage Image\"];\n 8 -->|assembly_gfa| 10;\n 11[\"BWA-MEM2\"];\n 5 -->|out2| 11;\n 8 -->|consensus| 11;\n 12[\"Quast\"];\n 8 -->|consensus| 12;\n dabfb8fd-8791-4959-a9dc-9b3c1e57a69c[\"Output\\nquast_report_before_polishing\"];\n 12 --> dabfb8fd-8791-4959-a9dc-9b3c1e57a69c;\n style dabfb8fd-8791-4959-a9dc-9b3c1e57a69c stroke:#2c3143,stroke-width:4px;\n 13[\"BWA-MEM2\"];\n 5 -->|out1| 13;\n 8 -->|consensus| 13;\n 14[\"Polypolish\"];\n 8 -->|consensus| 14;\n 13 -->|bam_output| 14;\n 11 -->|bam_output| 14;\n 15[\"Quast\"];\n 14 -->|polished_fasta| 15;\n 8 -->|consensus| 15;\n 4e465b51-68bf-4203-9a7c-897f46c70277[\"Output\\nquast_report_after_polishing\"];\n 15 --> 4e465b51-68bf-4203-9a7c-897f46c70277;\n style 4e465b51-68bf-4203-9a7c-897f46c70277 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Genome Assembly of MRSA using Oxford Nanopore MinION (and Illumina data if available)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "mode|reads|files": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 598.8807084399002, + "top": 268.83097889129806 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "0f1c34698076", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"customization\": {\"color\": null, \"plots\": null, \"N50\": true}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.41.0+galaxy0", + "type": "tool", + "uuid": "ad46f297-04f2-4959-aa09-db88cd91cc27", + "when": null, + "workflow_outputs": [ + { + "label": "nanoplot_before_filtering", + "output_name": "nanostats", + "uuid": "a97e6f33-8182-4a33-86dd-6cfbb83a842d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "inputs": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Flye", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + } + ], + "position": { + "left": 850.0098909589506, + "top": 593 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "cb8dfd28c16f", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"asm\": {\"asm_select\": \"false\", \"__current_case__\": 1}, \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"generate_log\": false, \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"iterations\": \"1\", \"keep_haplotypes\": false, \"meta\": false, \"min_overlap\": null, \"mode_conditional\": {\"mode\": \"--nano-corr\", \"__current_case__\": 1}, \"no_alt_contigs\": false, \"scaffold\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.9.1+galaxy0", + "type": "tool", + "uuid": "8cf7ff30-4007-49cb-a959-e25c337f05be", + "when": null, + "workflow_outputs": [ + { + "label": "flye_assembly_info", + "output_name": "assembly_info", + "uuid": "f12e718f-1bd5-490d-bd41-f0747aaa41a6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "mode|reads|files": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 850.0098909589506, + "top": 859 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "0f1c34698076", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"customization\": {\"color\": null, \"plots\": null, \"N50\": true}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.41.0+galaxy0", + "type": "tool", + "uuid": "467fca53-715f-4717-ab4c-c4410d321086", + "when": null, + "workflow_outputs": [ + { + "label": "nanoplot_after_filtering", + "output_name": "nanostats", + "uuid": "89524090-f590-434d-89e2-66f0b1a23c7c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "mode|in|inputs": { + "id": 8, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 1140.0069535390257, + "top": 767 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"false\", \"__current_case__\": 1, \"est_ref_size\": null}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"large\": false, \"min_contig\": \"500\", \"mode\": {\"mode\": \"co\", \"__current_case__\": 1, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"split_scaffolds\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "6949cf20-419e-4cee-86fa-3b08ab60cb9f", + "when": null, + "workflow_outputs": [ + { + "label": "quast_report_before_polishing", + "output_name": "report_html", + "uuid": "dabfb8fd-8791-4959-a9dc-9b3c1e57a69c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 15, + "input_connections": { + "mode|in|inputs": [ + { + "id": 14, + "output_name": "polished_fasta" + }, + { + "id": 8, + "output_name": "consensus" + } + ] + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 1700.001078699176, + "top": 853 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"false\", \"__current_case__\": 1, \"est_ref_size\": null}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"large\": false, \"min_contig\": \"500\", \"mode\": {\"mode\": \"co\", \"__current_case__\": 1, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"split_scaffolds\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "866187e0-dd7c-40d5-b121-a8ef4a281c80", + "when": null, + "workflow_outputs": [ + { + "label": "quast_report_after_polishing", + "output_name": "report_html", + "uuid": "4e465b51-68bf-4203-9a7c-897f46c70277" + } + ] + } + ], + "parent_id": "assembly/mrsa-nanopore", + "path": "topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.ga", + "tags": [ + "Assembly" + ], + "test_results": null, + "tests": true, + "title": "Genome Assembly of MRSA using Oxford Nanopore MinION (and Illumina data if available)", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-mrsa-nanopore/versions/main-workflow", + "tutorial_id": "mrsa-nanopore", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/mrsa-nanopore/workflows/main-workflow.html", + "version": 1, + "wfid": "assembly-mrsa-nanopore", + "wfname": "main-workflow", + "workflow": "main-workflow.ga", + "workflow_tools": [ + "CONVERTER_bz2_to_uncompressed", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/filtlong/filtlong/0.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/polypolish/polypolish/0.5.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "workflowhub_id": "1178" + } + ], + "zenodo_link": "https://zenodo.org/record/10669812" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "ddf54b12c295", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "add_value", + "owner": "devteam", + "revisions": "745871c0b055", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_compute_length", + "owner": "devteam", + "revisions": "de2db1bdfbf8", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_filter_by_length", + "owner": "devteam", + "revisions": "e626b3ff9922", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_filter_by_length", + "owner": "devteam", + "revisions": "8cacfcf96a52", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lastz", + "owner": "devteam", + "revisions": "e7f19d6a9af8", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merge_cols", + "owner": "devteam", + "revisions": "f2aac0c5c60d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "e19bebe96cd2", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "e19bebe96cd2", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "e19bebe96cd2", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "df7356989ac1", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "df7356989ac1", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "fd5dbf0f732e", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "25136a2b0cfe", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: ddf54b12c295\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: add_value\n owner: devteam\n revisions: 745871c0b055\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_compute_length\n owner: devteam\n revisions: de2db1bdfbf8\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_filter_by_length\n owner: devteam\n revisions: e626b3ff9922\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_filter_by_length\n owner: devteam\n revisions: 8cacfcf96a52\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lastz\n owner: devteam\n revisions: e7f19d6a9af8\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merge_cols\n owner: devteam\n revisions: f2aac0c5c60d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: e19bebe96cd2\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: e19bebe96cd2\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: e19bebe96cd2\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: df7356989ac1\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: df7356989ac1\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: fd5dbf0f732e\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 25136a2b0cfe\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ecoli_comparison/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "email": "delphine.lariviere@galaxy.org", + "id": "delphine-l", + "joined": "2017-09", + "name": "Delphine Lariviere", + "orcid": "0000-0001-6421-3484", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/delphine-l/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/delphine-l.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/assembly/tutorials/ecoli_comparison", + "edam_ontology": [ + "topic_0196", + "topic_0622", + "topic_3301" + ], + "edam_operation": [ + "Genome visualisation", + "Sequence alignment", + "Mapping", + "Read mapping", + "Sequence visualisation" + ], + "edam_topic": [ + "Sequence assembly", + "Genomics", + "Microbiology" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/ecoli_comparison", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We learned how to download large sets of completed genomes from NCBI", + "We learned how to use Galaxy's rule-based collection builder", + "We learned how to use a combination of Galaxy tools to create complex views of genome comparisons", + "We learned about idiosyncrasies of data formats and how to deal with them using Galaxy tools" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-24", + "objectives": [ + "Identification of the most closely related genome to my new assembly", + "Perform sequence comparison to locate rearrangements", + "Identify genes located in deletions" + ], + "pageviews": 12067, + "pub_date": "2018-06-14", + "questions": [ + "I just assembled a genome. How does it compare with already sequenced genomes?", + "How do I find rearranged, inserted, or deleted regions?" + ], + "requirements": [ + { + "topic_name": "assembly", + "tutorials": [ + "unicycler-assembly" + ], + "type": "internal" + } + ], + "short_id": "T00032", + "short_tools": [ + "circos", + "lastz_wrapper_2", + "random_lines1", + "Cut1", + "circos_interval_to_tiles", + "addValue", + "collapse_dataset", + "Grep1", + "datamash_ops", + "bedtools_sortbed", + "tp_sort_header_tool", + "bedtools_complementbed", + "tp_replace_in_column", + "circos_aln_to_links", + "cat1", + "tp_cat", + "fasta_filter_by_length", + "Filter1", + "tp_sed_tool", + "fasta_compute_length", + "tp_replace_in_line", + "join1", + "upload1", + "jbrowse", + "bedtools_intersectbed", + "tp_grep_tool", + "mergeCols1" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "gmod", + "prokaryote", + "microgalaxy", + "jbrowse1" + ], + "time_estimation": "4h", + "title": "Making sense of a newly assembled genome", + "tools": [ + "Cut1", + "Filter1", + "Grep1", + "cat1", + "join1", + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/lastz/lastz_wrapper_2/1.3.2", + "toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_complementbed/2.27.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.27.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.27.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy7", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_aln_to_links/0.69.8+galaxy7", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_interval_to_tiles/0.69.8+galaxy7", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "upload1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ecoli_comparison", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/ecoli_comparison/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ecoli_comparison/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ecoli_comparison/tutorial.json" + }, + "version": 29, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 182, + "visitors": 5938, + "workflows": [ + { + "creators": [], + "description": "Making sense of a newly assembled genome", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 10[label=\"Collapse Collection\"]\n 6 -> 10 [label=\"output\"]\n 11[label=\"Text transformation\"]\n 7 -> 11 [label=\"output\"]\n 12[label=\"Add column\"]\n 8 -> 12 [label=\"out_file1\"]\n 13[label=\"LASTZ\"]\n 9 -> 13 [label=\"output\"]\n 3 -> 13 [label=\"output\"]\n 14[label=\"random_lines1\"]\n 10 -> 14 [label=\"output\"]\n 15[label=\"Filter\"]\n 10 -> 15 [label=\"output\"]\n 16[label=\"Search in textfiles\"]\n 11 -> 16 [label=\"output\"]\n 17[label=\"Concatenate datasets\"]\n 11 -> 17 [label=\"output\"]\n 9 -> 17 [label=\"output\"]\n 18[label=\"Cut\"]\n 12 -> 18 [label=\"out_file1\"]\n 19[label=\"Text transformation\"]\n 13 -> 19 [label=\"output\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 20[label=\"Datamash\"]\n 15 -> 20 [label=\"out_file1\"]\n 21[label=\"Compute sequence length\"]\n 17 -> 21 [label=\"out_file1\"]\n 22[label=\"Collapse Collection\"]\n 18 -> 22 [label=\"out_file1\"]\n 23[label=\"Merge Columns\"]\n 19 -> 23 [label=\"output\"]\n 24[label=\"Select\"]\n 20 -> 24 [label=\"out_file\"]\n 25[label=\"Sort\"]\n 21 -> 25 [label=\"output\"]\n 26[label=\"Collapse Collection\"]\n 23 -> 26 [label=\"out_file1\"]\n 27[label=\"Cut\"]\n 26 -> 27 [label=\"output\"]\n 28[label=\"Cut\"]\n 26 -> 28 [label=\"output\"]\n 29[label=\"Concatenate datasets\"]\n 27 -> 29 [label=\"out_file1\"]\n 28 -> 29 [label=\"out_file1\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 30[label=\"SortBED\"]\n 29 -> 30 [label=\"out_file1\"]\n 31[label=\"ComplementBed\"]\n 25 -> 31 [label=\"outfile\"]\n 30 -> 31 [label=\"output\"]\n 32[label=\"Filter\"]\n 31 -> 32 [label=\"output\"]\n 33[label=\"Filter\"]\n 32 -> 33 [label=\"out_file1\"]\n 34[label=\"Intersect intervals\"]\n 33 -> 34 [label=\"out_file1\"]\n 22 -> 34 [label=\"output\"]\n 35[label=\"Join two Datasets\"]\n 34 -> 35 [label=\"output\"]\n 1 -> 35 [label=\"output\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 5[label=\"Filter sequences by length\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"LASTZ\"]\n 2 -> 6 [label=\"output\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Collapse Collection\"]\n 3 -> 7 [label=\"output\"]\n 8[label=\"Select\"]\n 4 -> 8 [label=\"output\"]\n 9[label=\"Text transformation\"]\n 5 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "48cf52ea88fe32cfc059494bc1b464c4b202bf99", + "message": "on purpose mistake fixed", + "num": 6, + "short_hash": "48cf52ea8", + "unix": "1579772724" + }, + { + "hash": "b3f79801438efc81c5f2a3f0af17a26f82e6913e", + "message": "test", + "num": 5, + "short_hash": "b3f798014", + "unix": "1579714684" + }, + { + "hash": "230f6e12fc9de41c8cb554a353e0b816eb656724", + "message": "linting fix", + "num": 4, + "short_hash": "230f6e12f", + "unix": "1579705852" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "485411d09f88e53fb83bc584da92afa171aed32a", + "message": "workflow for ecoli_comparison", + "num": 1, + "short_hash": "485411d09", + "unix": "1546963139" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Ecoli_C_assembly.fna" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Ecoli_C_assembly.fna\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2eb3a31a-f5ec-4ce0-a4db-f421ab573412", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "inline-supplementary-material-7 - Table_S4_Essential genes identi.tsv" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"inline-supplementary-material-7 - Table_S4_Essential genes identi.tsv\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ac567420-400d-4a74-adb5-cdaed90cebd6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8cc3e0ac-13bd-4e29-83dc-8411490fc85d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "6bc17455-70a4-48bb-a511-e484016e9ad8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 490 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "04145efc-b9a4-4bd4-9a72-7cdf0e98e752", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Collapse Collection\"];\n 6 -->|output| 10;\n 11[\"Text transformation\"];\n 7 -->|output| 11;\n 12[\"Add column\"];\n 8 -->|out_file1| 12;\n 13[\"LASTZ\"];\n 9 -->|output| 13;\n 3 -->|output| 13;\n 14[\"random_lines1\"];\n 10 -->|output| 14;\n 15[\"Filter\"];\n 10 -->|output| 15;\n 16[\"Search in textfiles\"];\n 11 -->|output| 16;\n 17[\"Concatenate datasets\"];\n 11 -->|output| 17;\n 9 -->|output| 17;\n 18[\"Cut\"];\n 12 -->|out_file1| 18;\n 19[\"Text transformation\"];\n 13 -->|output| 19;\n 2[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 20[\"Datamash\"];\n 15 -->|out_file1| 20;\n 21[\"Compute sequence length\"];\n 17 -->|out_file1| 21;\n 22[\"Collapse Collection\"];\n 18 -->|out_file1| 22;\n 23[\"Merge Columns\"];\n 19 -->|output| 23;\n 24[\"Select\"];\n 20 -->|out_file| 24;\n 25[\"Sort\"];\n 21 -->|output| 25;\n 26[\"Collapse Collection\"];\n 23 -->|out_file1| 26;\n 27[\"Cut\"];\n 26 -->|output| 27;\n 28[\"Cut\"];\n 26 -->|output| 28;\n 29[\"Concatenate datasets\"];\n 27 -->|out_file1| 29;\n 28 -->|out_file1| 29;\n 3[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 30[\"SortBED\"];\n 29 -->|out_file1| 30;\n 31[\"ComplementBed\"];\n 25 -->|outfile| 31;\n 30 -->|output| 31;\n 32[\"Filter\"];\n 31 -->|output| 32;\n 33[\"Filter\"];\n 32 -->|out_file1| 33;\n 34[\"Intersect intervals\"];\n 33 -->|out_file1| 34;\n 22 -->|output| 34;\n 35[\"Join two Datasets\"];\n 34 -->|output| 35;\n 1 -->|output| 35;\n 4[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Filter sequences by length\"];\n 0 -->|output| 5;\n 6[\"LASTZ\"];\n 2 -->|output| 6;\n 0 -->|output| 6;\n 7[\"Collapse Collection\"];\n 3 -->|output| 7;\n 8[\"Select\"];\n 4 -->|output| 8;\n 9[\"Text transformation\"];\n 5 -->|output| 9;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Ecoli Comparison", + "outputs": [], + "parent_id": "assembly/ecoli_comparison", + "path": "topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": false, + "title": "Ecoli Comparison", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-ecoli_comparison/versions/ecoli-comparison", + "tutorial_id": "ecoli_comparison", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ecoli_comparison/workflows/ecoli-comparison.html", + "version": 3, + "wfid": "assembly-ecoli_comparison", + "wfname": "ecoli-comparison", + "workflow": "ecoli-comparison.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "Grep1", + "cat1", + "join1", + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_filter_by_length/fasta_filter_by_length/1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/lastz/lastz_wrapper_2/1.3.2", + "toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_complementbed/2.27.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.27.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.27.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0" + ], + "workflowhub_id": "1113" + } + ], + "zenodo_link": "https://zenodo.org/record/3382053" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "836d1aa3e89a", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snippy", + "owner": "iuc", + "revisions": "c9a8ef2aa380", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: jbrowse\n owner: iuc\n revisions: 836d1aa3e89a\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snippy\n owner: iuc\n revisions: c9a8ef2aa380\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/microbial-variants/tutorial.json", + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "id": "tseemann", + "joined": "2018-06", + "name": "Torsten Seemann", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tseemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tseemann.json" + } + ], + "dir": "topics/variant-analysis/tutorials/microbial-variants", + "edam_ontology": [ + "topic_0622", + "topic_0196", + "topic_2885", + "topic_3301", + "topic_0080", + "topic_0199" + ], + "edam_operation": [ + "Genome visualisation", + "Variant calling", + "Phylogenetic tree generation", + "Phylogenetic tree visualisation" + ], + "edam_topic": [ + "Genomics", + "Sequence assembly", + "DNA polymorphism", + "Microbiology", + "Sequence analysis", + "Genetic variation" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/microbial-variants", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We used a tool called Snippy to call variants between our reads and our reference genome.", + "As our reference genome had annotations, we could see what effect the changes have on the features as annotated in the reference and therefore make inferences on the possible changes to the phenotype.", + "We used the JBrowse genome browser to visualise what these changes look like." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-15", + "objectives": [ + "Find variants between a reference genome and a set of reads", + "Visualise the SNP in context of the reads aligned to the genome", + "Determine the effect of those variants on genomic features", + "Understand if the SNP is potentially affecting the phenotype" + ], + "pageviews": 20322, + "pub_date": "2018-02-26", + "questions": [ + "How do we detect differences between a set of reads from a microorganism and a reference genome" + ], + "short_id": "T00313", + "short_tools": [ + "jbrowse", + "snippy" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "introduction", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "microgalaxy", + "gmod", + "jbrowse1" + ], + "time_estimation": "45m", + "title": "Microbial Variant Calling", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/0.7.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "microbial-variants", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/microbial-variants/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/microbial-variants/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/microbial-variants/tutorial.json" + }, + "version": 23, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 120, + "visitors": 12166, + "workflows": [ + { + "creators": [], + "description": "Microbial Variant Calling", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 5[label=\"snippy\"]\n 0 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"output\"]\n k58cbabf03a3c4ec5b16a40d19fc82aae[color=lightseagreen,label=\"Output\\nsnippy_fasta\"]\n 5 -> k58cbabf03a3c4ec5b16a40d19fc82aae\n k4002677b75f248f49d5332ab4dd44165[color=lightseagreen,label=\"Output\\nsnippy_tabular\"]\n 5 -> k4002677b75f248f49d5332ab4dd44165\n 6[label=\"JBrowse\"]\n 5 -> 6 [label=\"snpgff\"]\n 4 -> 6 [label=\"output\"]\n 5 -> 6 [label=\"snpsbam\"]\n 2 -> 6 [label=\"output\"]\n kadfd738e00464e26a338254cdcb175af[color=lightseagreen,label=\"Output\\njbrowse_html\"]\n 6 -> kadfd738e00464e26a338254cdcb175af\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "dfb97360348d32210f7c4bae68f1154a2336e520", + "message": "annotate workflow outputs", + "num": 3, + "short_hash": "dfb973603", + "unix": "1526109637" + }, + { + "hash": "8803cca01f5e6e62243a1cefbe21e701e89151af", + "message": "pretty'fy workflow", + "num": 2, + "short_hash": "8803cca01", + "unix": "1526109452" + }, + { + "hash": "5a1bff42297572d14d33b4e41de89694a6957676", + "message": "Add some love to microbial variant calling tutorial (#732)", + "num": 1, + "short_hash": "5a1bff422", + "unix": "1523043969" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R1" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mutant_R1\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f78a5562-288a-49fa-a8e4-a6facf09bffe", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R2" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mutant_R2\"}", + "tool_version": null, + "type": "data_input", + "uuid": "9f0aa29d-da56-4535-96ce-696a721d1d76", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wildtype.fna" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"name\": \"wildtype.fna\"}", + "tool_version": null, + "type": "data_input", + "uuid": "1ad30281-3ee6-4725-8515-8db4936de0ff", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wildtype.gbk" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"name\": \"wildtype.gbk\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3c0c913a-7106-4ac7-b653-a0a0da1d14f8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wildtype.gff" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 490 + }, + "tool_id": null, + "tool_state": "{\"name\": \"wildtype.gff\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0a4f5c3d-4f34-4461-8114-98f3bb0a4cf8", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"snippy\"];\n 0 -->|output| 5;\n 1 -->|output| 5;\n 3 -->|output| 5;\n 58cbabf0-3a3c-4ec5-b16a-40d19fc82aae[\"Output\\nsnippy_fasta\"];\n 5 --> 58cbabf0-3a3c-4ec5-b16a-40d19fc82aae;\n style 58cbabf0-3a3c-4ec5-b16a-40d19fc82aae stroke:#2c3143,stroke-width:4px;\n 4002677b-75f2-48f4-9d53-32ab4dd44165[\"Output\\nsnippy_tabular\"];\n 5 --> 4002677b-75f2-48f4-9d53-32ab4dd44165;\n style 4002677b-75f2-48f4-9d53-32ab4dd44165 stroke:#2c3143,stroke-width:4px;\n 6[\"JBrowse\"];\n 5 -->|snpgff| 6;\n 4 -->|output| 6;\n 5 -->|snpsbam| 6;\n 2 -->|output| 6;\n adfd738e-0046-4e26-a338-254cdcb175af[\"Output\\njbrowse_html\"];\n 6 --> adfd738e-0046-4e26-a338-254cdcb175af;\n style adfd738e-0046-4e26-a338-254cdcb175af stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Microbial Variant Calling", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "errors": null, + "id": 5, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 0, + "output_name": "output" + }, + "fastq_input|fastq_input2": { + "id": 1, + "output_name": "output" + }, + "ref": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "snippy", + "outputs": [ + { + "name": "snpvcf", + "type": "vcf" + }, + { + "name": "snpgff", + "type": "gff3" + }, + { + "name": "snptab", + "type": "tabular" + }, + { + "name": "snpsum", + "type": "tabular" + }, + { + "name": "snplog", + "type": "txt" + }, + { + "name": "snpalign", + "type": "fasta" + }, + { + "name": "snpconsensus", + "type": "fasta" + }, + { + "name": "snpsdepth", + "type": "tabular" + }, + { + "name": "snpsbam", + "type": "bam" + }, + { + "name": "outdir", + "type": "zip" + } + ], + "position": { + "left": 230, + "top": 10 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "tool_shed_repository": { + "changeset_revision": "c9a8ef2aa380", + "name": "snippy", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"mapqual\\\": \\\"60\\\", \\\"bwaopt\\\": \\\"\\\", \\\"minfrac\\\": \\\"0.9\\\", \\\"rgid\\\": \\\"\\\", \\\"mincov\\\": \\\"10\\\"}\", \"__page__\": null, \"outputs\": \"[\\\"outvcf\\\", \\\"outgff\\\", \\\"outtab\\\", \\\"outsum\\\", \\\"outlog\\\", \\\"outaln\\\", \\\"outcon\\\", \\\"outdep\\\", \\\"outbam\\\", \\\"outzip\\\"]\", \"__rerun_remap_job_id__\": null, \"fastq_input\": \"{\\\"fastq_input2\\\": null, \\\"__current_case__\\\": 0, \\\"fastq_input_selector\\\": \\\"paired\\\", \\\"fastq_input1\\\": null}\", \"chromInfo\": \"\\\"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\\\"\", \"ref\": \"null\"}", + "tool_version": "3.2", + "type": "tool", + "uuid": "5f5638b5-3553-4522-9cfa-d47dd45e8c42", + "workflow_outputs": [ + { + "label": "snippy_fasta", + "output_name": "snpconsensus", + "uuid": "58cbabf0-3a3c-4ec5-b16a-40d19fc82aae" + }, + { + "label": "snippy_tabular", + "output_name": "snpsum", + "uuid": "4002677b-75f2-48f4-9d53-32ab4dd44165" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/0.7.0.3", + "errors": null, + "id": 6, + "input_connections": { + "reference_genome|genomes": { + "id": 2, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 5, + "output_name": "snpsbam" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 5, + "output_name": "snpgff" + }, + "track_groups_2|data_tracks_0|data_format|annotation": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 450, + "top": 10 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/0.7.0.3", + "tool_shed_repository": { + "changeset_revision": "836d1aa3e89a", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"standalone\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null, \"reference_genome\": \"{\\\"genomes\\\": null, \\\"__current_case__\\\": 1, \\\"genome_type_select\\\": \\\"history\\\"}\", \"track_groups\": \"[{\\\"category\\\": \\\"sequence reads\\\", \\\"__index__\\\": 0, \\\"data_tracks\\\": [{\\\"__index__\\\": 0, \\\"data_format\\\": {\\\"auto_snp\\\": \\\"true\\\", \\\"track_visibility\\\": \\\"default_on\\\", \\\"override_apollo_drag\\\": \\\"False\\\", \\\"__current_case__\\\": 3, \\\"override_apollo_plugins\\\": \\\"False\\\", \\\"annotation\\\": null, \\\"data_format_select\\\": \\\"pileup\\\"}}]}, {\\\"category\\\": \\\"variants\\\", \\\"__index__\\\": 1, \\\"data_tracks\\\": [{\\\"__index__\\\": 0, \\\"data_format\\\": {\\\"index\\\": \\\"false\\\", \\\"match_part\\\": {\\\"match_part_select\\\": \\\"false\\\", \\\"__current_case__\\\": 1}, \\\"jbstyle\\\": {\\\"style_classname\\\": \\\"feature\\\", \\\"style_description\\\": \\\"note,description\\\", \\\"style_height\\\": \\\"10px\\\", \\\"max_height\\\": \\\"600\\\", \\\"style_label\\\": \\\"product,name,id\\\"}, \\\"track_visibility\\\": \\\"default_on\\\", \\\"track_config\\\": {\\\"track_class\\\": \\\"JBrowse/View/Track/CanvasFeatures\\\", \\\"canvas_options\\\": {\\\"transcriptType\\\": \\\"\\\", \\\"subParts\\\": \\\"\\\", \\\"impliedUTRs\\\": \\\"false\\\"}, \\\"__current_case__\\\": 0}, \\\"jbcolor_scale\\\": {\\\"color_score\\\": {\\\"color\\\": {\\\"color_select\\\": \\\"automatic\\\", \\\"__current_case__\\\": 0}, \\\"__current_case__\\\": 0, \\\"color_score_select\\\": \\\"none\\\"}}, \\\"override_apollo_drag\\\": \\\"False\\\", \\\"__current_case__\\\": 2, \\\"override_apollo_plugins\\\": \\\"False\\\", \\\"jbmenu\\\": {\\\"track_menu\\\": []}, \\\"annotation\\\": null, \\\"data_format_select\\\": \\\"gene_calls\\\"}}]}, {\\\"category\\\": \\\"annotated reference\\\", \\\"__index__\\\": 2, \\\"data_tracks\\\": [{\\\"__index__\\\": 0, \\\"data_format\\\": {\\\"index\\\": \\\"false\\\", \\\"match_part\\\": {\\\"match_part_select\\\": \\\"false\\\", \\\"__current_case__\\\": 1}, \\\"jbstyle\\\": {\\\"style_classname\\\": \\\"feature\\\", \\\"style_description\\\": \\\"product\\\", \\\"style_height\\\": \\\"10px\\\", \\\"max_height\\\": \\\"600\\\", \\\"style_label\\\": \\\"product\\\"}, \\\"track_visibility\\\": \\\"default_on\\\", \\\"track_config\\\": {\\\"track_class\\\": \\\"JBrowse/View/Track/CanvasFeatures\\\", \\\"canvas_options\\\": {\\\"transcriptType\\\": \\\"\\\", \\\"subParts\\\": \\\"\\\", \\\"impliedUTRs\\\": \\\"false\\\"}, \\\"__current_case__\\\": 0}, \\\"jbcolor_scale\\\": {\\\"color_score\\\": {\\\"color\\\": {\\\"color_select\\\": \\\"automatic\\\", \\\"__current_case__\\\": 0}, \\\"__current_case__\\\": 0, \\\"color_score_select\\\": \\\"none\\\"}}, \\\"override_apollo_drag\\\": \\\"False\\\", \\\"__current_case__\\\": 2, \\\"override_apollo_plugins\\\": \\\"False\\\", \\\"jbmenu\\\": {\\\"track_menu\\\": []}, \\\"annotation\\\": null, \\\"data_format_select\\\": \\\"gene_calls\\\"}}]}]\", \"plugins\": \"{\\\"GCContent\\\": \\\"false\\\", \\\"Bookmarks\\\": \\\"false\\\", \\\"theme\\\": \\\"\\\", \\\"ComboTrackSelector\\\": \\\"false\\\"}\", \"action\": \"{\\\"action_select\\\": \\\"create\\\", \\\"__current_case__\\\": 0}\", \"gencode\": \"\\\"11\\\"\", \"uglyTestingHack\": \"\\\"\\\"\", \"chromInfo\": \"\\\"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\\\"\", \"jbgen\": \"{\\\"trackPadding\\\": \\\"20\\\", \\\"show_tracklist\\\": \\\"true\\\", \\\"show_overview\\\": \\\"true\\\", \\\"show_nav\\\": \\\"true\\\", \\\"aboutDescription\\\": \\\"\\\", \\\"defaultLocation\\\": \\\"\\\", \\\"hideGenomeOptions\\\": \\\"false\\\", \\\"shareLink\\\": \\\"true\\\", \\\"show_menu\\\": \\\"true\\\"}\"}", + "tool_version": "0.7.0.3", + "type": "tool", + "uuid": "2a2aad62-4281-4bd1-bb5c-cd8bc078ec85", + "workflow_outputs": [ + { + "label": "jbrowse_html", + "output_name": "output", + "uuid": "adfd738e-0046-4e26-a338-254cdcb175af" + } + ] + } + ], + "parent_id": "variant-analysis/microbial-variants", + "path": "topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "Microbial Variant Calling", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-microbial-variants/versions/microbial-variant-calling", + "tutorial_id": "microbial-variants", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.html", + "version": 4, + "wfid": "variant-analysis-microbial-variants", + "wfname": "microbial-variant-calling", + "workflow": "microbial_variant_calling.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/0.7.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2" + ], + "workflowhub_id": "1093" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.582600" + }, + { + "abbreviations": { + "OGS": "Official Gene Set" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "apollo_create_account", + "owner": "gga", + "revisions": "e80d29fd2a33", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "apollo_create_or_update", + "owner": "gga", + "revisions": "4abaab60f9e1", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "apollo_iframe", + "owner": "gga", + "revisions": "f4e3f9480307", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "apollo_list_organism", + "owner": "gga", + "revisions": "2c749ed310da", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: apollo_create_account\n owner: gga\n revisions: e80d29fd2a33\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: apollo_create_or_update\n owner: gga\n revisions: 4abaab60f9e1\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: apollo_iframe\n owner: gga\n revisions: f4e3f9480307\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: apollo_list_organism\n owner: gga\n revisions: 2c749ed310da\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo/tutorial.json", + "contributions": { + "authorship": [ + "abretaud", + "hexylena", + "nathandunn", + "mboudet" + ], + "funding": [ + "gallantries", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "nathandunn@lbl.gov", + "id": "nathandunn", + "joined": "2019-07", + "name": "Nathan Dunn", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nathandunn/", + "twitter": "precogincog", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nathandunn.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "mateo.boudet@inrae.fr", + "id": "mboudet", + "joined": "2021-05", + "name": "Mateo Boudet", + "orcid": "0000-0002-7028-7620", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mboudet/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mboudet.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/genome-annotation/tutorials/apollo", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0623", + "topic_0080" + ], + "edam_operation": [ + "Genome visualisation" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Gene and protein families", + "Sequence analysis" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/apollo", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Apollo is the Google Docs of the genome annotation world, real-time collaborative genome annotation.", + "Apollo allows a group to view and manually refine predicted genome annotations", + "Use Apollo to edit annotations within your group.", + "Export manual annotations as GFF3." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Load a genome into Galaxy", + "View annotations in JBrowse", + "Learn how to load JBrowse data into Apollo", + "Learn how to manually refine genome annotations within Apollo", + "Export refined genome annotations" + ], + "pageviews": 4949160, + "pub_date": "2021-06-04", + "questions": [ + "How to visualize your genome after automated annotations have been performed?", + "How to manually annotate genome after automated annotations have been performed?", + "How to evaluate and visualize annotated genomic features?", + "How do I collaborate when doing genome annotation?" + ], + "recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H", + "speakers": [ + "abretaud" + ], + "youtube_id": "ywK1fhM-QFU" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "upload-rules" + ], + "type": "internal" + }, + { + "topic_name": "genome-annotation", + "tutorials": [ + "annotation-with-prokka" + ], + "type": "internal" + } + ], + "short_id": "T00169", + "short_tools": [ + "jbrowse", + "create_or_update", + "list_organism", + "iframe", + "create_account" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "5M", + "speakers": [ + "awspolly" + ], + "youtube_id": "ailUycRVHtE" + } + ], + "subtopic": "prokaryote", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "prokaryote", + "microgalaxy", + "jbrowse1", + "apollo2" + ], + "time_estimation": "3h", + "title": "Refining Genome Annotations with Apollo (prokaryotes)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_account/create_account/3.1", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_list_organism/list_organism/3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "apollo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/apollo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo/tutorial.json" + }, + "version": 20, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 297, + "visitors": 1836817, + "workflows": [ + { + "creators": [], + "description": "Refining Genome Annotations with Apollo", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/forager.bw\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam\"]\n 4[label=\"Register Account\"]\n 5[label=\"List Organisms\"]\n 6[label=\"JBrowse\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Create or Update Organism\"]\n 6 -> 7 [label=\"output\"]\n 8[label=\"Annotate\"]\n 7 -> 8 [label=\"output\"]\n}", + "history": [ + { + "hash": "6bc77b7441375cd57ea1d73e9fe2f80ef550891a", + "message": "wf annotation", + "num": 3, + "short_hash": "6bc77b744", + "unix": "1622101979" + }, + { + "hash": "9ced3a95cd725623c7c1f2664b0174a14cd59337", + "message": "update workflow", + "num": 2, + "short_hash": "9ced3a95c", + "unix": "1622043687" + }, + { + "hash": "32f41f6fe47606c12d4574551233e4a2583df189", + "message": "rewrite bits v2", + "num": 1, + "short_hash": "32f41f6fe", + "unix": "1571055596" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1" + } + ], + "label": "https://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 354.8999938964844, + "height": 143.39999389648438, + "left": 488, + "right": 688, + "top": 211.5, + "width": 200, + "x": 488, + "y": 211.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "fa88b9bb-b87e-457b-a836-a8f1b25e520b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "82c708ee-87a4-45a2-abf0-911309e218fd" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1" + } + ], + "label": "https://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 527.8999938964844, + "height": 143.39999389648438, + "left": 510, + "right": 710, + "top": 384.5, + "width": 200, + "x": 510, + "y": 384.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1afd430b-6250-4eb2-8cf2-a83adf022e4b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbbb4914-0c3d-4857-8c3a-f43b3f0c39f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/forager.bw" + } + ], + "label": "https://zenodo.org/record/3270822/files/forager.bw", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 659.1000061035156, + "height": 102.60000610351562, + "left": 493, + "right": 693, + "top": 556.5, + "width": 200, + "x": 493, + "y": 556.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "091ca713-0096-419c-8cb7-7e83a41aab37", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f4c19cc0-5099-4514-af29-52a3933b28f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam" + } + ], + "label": "https://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 858.8999938964844, + "height": 143.39999389648438, + "left": 563, + "right": 763, + "top": 715.5, + "width": 200, + "x": 563, + "y": 715.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "13d26450-8b30-42d4-9822-f697217818b1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "464904cb-5608-4f5d-b282-a09be9d3dbbb" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/forager.bw\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nhttps://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Register Account\"];\n 5[\"List Organisms\"];\n 6[\"JBrowse\"];\n 0 -->|output| 6;\n 1 -->|output| 6;\n 3 -->|output| 6;\n 2 -->|output| 6;\n 7[\"Create or Update Organism\"];\n 6 -->|output| 7;\n 8[\"Annotate\"];\n 7 -->|output| 8;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Apollo Load Test", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1" + } + ], + "label": "https://zenodo.org/record/3270822/files/Amel_4.5_scaffolds.fa.gz?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 354.8999938964844, + "height": 143.39999389648438, + "left": 488, + "right": 688, + "top": 211.5, + "width": 200, + "x": 488, + "y": 211.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "fa88b9bb-b87e-457b-a836-a8f1b25e520b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "82c708ee-87a4-45a2-abf0-911309e218fd" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1" + } + ], + "label": "https://zenodo.org/record/3270822/files/amel_OGSv3.2.gff3.gz?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 527.8999938964844, + "height": 143.39999389648438, + "left": 510, + "right": 710, + "top": 384.5, + "width": 200, + "x": 510, + "y": 384.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1afd430b-6250-4eb2-8cf2-a83adf022e4b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbbb4914-0c3d-4857-8c3a-f43b3f0c39f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/forager.bw" + } + ], + "label": "https://zenodo.org/record/3270822/files/forager.bw", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 659.1000061035156, + "height": 102.60000610351562, + "left": 493, + "right": 693, + "top": 556.5, + "width": 200, + "x": 493, + "y": 556.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "091ca713-0096-419c-8cb7-7e83a41aab37", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f4c19cc0-5099-4514-af29-52a3933b28f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "https://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam" + } + ], + "label": "https://zenodo.org/record/3270822/files/forager_Amel4.5_accepted_hits.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 858.8999938964844, + "height": 143.39999389648438, + "left": 563, + "right": 763, + "top": 715.5, + "width": 200, + "x": 563, + "y": 715.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "13d26450-8b30-42d4-9822-f697217818b1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "464904cb-5608-4f5d-b282-a09be9d3dbbb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_account/create_account/3.1", + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Register Account", + "outputs": [ + { + "name": "output", + "type": "txt" + } + ], + "position": { + "bottom": 1038.6999969482422, + "height": 82.19999694824219, + "left": 644, + "right": 844, + "top": 956.5, + "width": 200, + "x": 644, + "y": 956.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_account/create_account/3.1", + "tool_shed_repository": { + "changeset_revision": "e80d29fd2a33", + "name": "apollo_create_account", + "owner": "gga", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"first\": \"Nathan\", \"last\": \"Dunn\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1", + "type": "tool", + "uuid": "82f0b666-8743-4cdc-9682-feb10c35b0c6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dc1e2c2f-c566-48e0-95c7-327adb229fb5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_list_organism/list_organism/3.1", + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "List Organisms", + "outputs": [ + { + "name": "output", + "type": "json" + } + ], + "position": { + "bottom": 1158.6999969482422, + "height": 82.19999694824219, + "left": 644, + "right": 844, + "top": 1076.5, + "width": 200, + "x": 644, + "y": 1076.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_list_organism/list_organism/3.1", + "tool_shed_repository": { + "changeset_revision": "2c749ed310da", + "name": "apollo_list_organism", + "owner": "gga", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\"}", + "tool_version": "3.1", + "type": "tool", + "uuid": "3fc26308-b331-4286-863a-d31ac5b6fb03", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d7cc17cb-e3e2-4adf-857c-8d3583e57fdd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "reference_genome|genome": { + "id": 0, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 1, + "output_name": "output" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 3, + "output_name": "output" + }, + "track_groups_1|data_tracks_1|data_format|annotation": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool JBrowse", + "name": "reference_genome" + } + ], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 650.2999877929688, + "height": 306.79998779296875, + "left": 821, + "right": 1021, + "top": 343.5, + "width": 200, + "x": 821, + "y": 343.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a6e57ff585c0", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"RuntimeValue\"}}, \"standalone\": \"true\", \"track_groups\": [{\"__index__\": 0, \"category\": \"OGS 3.2\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_on\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"Reads\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"auto_snp\": \"true\", \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}, {\"__index__\": 1, \"data_format\": {\"data_format_select\": \"wiggle\", \"__current_case__\": 4, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"xyplot\": \"false\", \"var_band\": \"false\", \"scaling\": {\"scale_select\": \"auto_local\", \"__current_case__\": 0}, \"scale_select2\": \"linear\", \"MultiBigWig\": \"false\", \"jbcolor\": {\"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}, \"bicolor_pivot\": {\"bicolor_pivot_select\": \"zero\", \"__current_case__\": 0}}, \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.11+galaxy1", + "type": "tool", + "uuid": "2e2723bf-9597-4c96-9980-33220e3b849a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9514c32e-2376-44ee-b368-beb25bf77ad7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "errors": null, + "id": 7, + "input_connections": { + "jbrowse": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create or Update Organism", + "name": "jbrowse" + } + ], + "label": null, + "name": "Create or Update Organism", + "outputs": [ + { + "name": "output", + "type": "json" + } + ], + "position": { + "bottom": 506.1000061035156, + "height": 113.60000610351562, + "left": 1405, + "right": 1605, + "top": 392.5, + "width": 200, + "x": 1405, + "y": 392.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "tool_shed_repository": { + "changeset_revision": "4abaab60f9e1", + "name": "apollo_create_or_update", + "owner": "gga", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"genus\": \"Apis\", \"group\": null, \"jbrowse\": {\"__class__\": \"RuntimeValue\"}, \"no_reload_sequences\": \"false\", \"org_source\": {\"source_select\": \"direct\", \"__current_case__\": 1, \"org_raw\": \"Honeybee\"}, \"public\": \"true\", \"remove_old_directory\": \"true\", \"species\": \"Mellifera\", \"test_hack\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2.5", + "type": "tool", + "uuid": "72c53f14-4e91-40c1-a4e9-325b6c2a3105", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "10c77447-f92c-44b0-8a04-151eef670244" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "errors": null, + "id": 8, + "input_connections": { + "json_file": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Annotate", + "name": "json_file" + } + ], + "label": null, + "name": "Annotate", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 502.6999969482422, + "height": 93.19999694824219, + "left": 1703, + "right": 1903, + "top": 409.5, + "width": 200, + "x": 1703, + "y": 409.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "tool_shed_repository": { + "changeset_revision": "f4e3f9480307", + "name": "apollo_iframe", + "owner": "gga", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"json_file\": {\"__class__\": \"RuntimeValue\"}, \"tracklist\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2.5", + "type": "tool", + "uuid": "2cfe94b1-f9cb-4df6-a3fd-b9356ea2423f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4eaf137c-b5fd-4cdd-9fa7-ed973e2302f3" + } + ] + } + ], + "parent_id": "genome-annotation/apollo", + "path": "topics/genome-annotation/tutorials/apollo/workflows/main_workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Apollo Load Test", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-apollo/versions/main-workflow", + "tutorial_id": "apollo", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/apollo/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/apollo/workflows/main_workflow.html", + "version": 1, + "wfid": "genome-annotation-apollo", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_account/create_account/3.1", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_list_organism/list_organism/3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "workflowhub_id": "1190" + } + ], + "zenodo_link": "https://zenodo.org/record/4889110" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "03e9b2fbc005", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bakta", + "owner": "iuc", + "revisions": "728dacaf08a9", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbl2gff3", + "owner": "iuc", + "revisions": "4a7f4b0cc0a3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "staramr", + "owner": "nml", + "revisions": "3b22de20bd4b", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bowtie2\n owner: devteam\n revisions: 03e9b2fbc005\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bakta\n owner: iuc\n revisions: 728dacaf08a9\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbl2gff3\n owner: iuc\n revisions: 4a7f4b0cc0a3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: staramr\n owner: nml\n revisions: 3b22de20bd4b\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json", + "contributions": { + "authorship": [ + "bazante1", + "bebatut" + ], + "editing": [ + "hexylena", + "bazante1", + "shiltemann", + "miaomiaozhou88" + ], + "funding": [ + "avans-atgm", + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "email": "m.zhou1@avans.nl", + "id": "miaomiaozhou88", + "joined": "2020-12", + "name": "Miaomiao Zhou", + "orcid": "0000-0003-4426-1758", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/miaomiaozhou88/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/miaomiaozhou88.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/genome-annotation/tutorials/amr-gene-detection", + "edam_ontology": [ + "topic_3673", + "topic_3305", + "topic_0622", + "topic_3301", + "topic_0080", + "topic_3324", + "topic_4013" + ], + "edam_operation": [ + "Genome visualisation", + "Genome annotation", + "Read mapping" + ], + "edam_topic": [ + "Whole genome sequencing", + "Public health and epidemiology", + "Genomics", + "Microbiology", + "Sequence analysis", + "Infectious disease", + "Antimicrobial Resistance" + ], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "visualisation", + "tutorials": [ + "jbrowse" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/amr-gene-detection", + "inexact_supported_servers": [ + "Galaxy@AuBi" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "staramr is a powerful tool to predict ARGs and plasmid genes", + "Visualization of the ARGs and plasmid genes in their genomic context helps to make sense of the data" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-13", + "objectives": [ + "Run a series of tool to assess the presence of antimicrobial resistance genes (ARG)", + "Get information about ARGs", + "Visualize the ARGs and plasmid genes in their genomic context" + ], + "pageviews": 1368, + "pub_date": "2024-01-23", + "questions": [ + "Which resistance genes are on a bacterial genome?", + "Where are the genes located on the genome?" + ], + "short_id": "T00401", + "short_tools": [ + "Grep1", + "jbrowse", + "bowtie2", + "tbl2gff3", + "bakta", + "staramr_search", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "prokaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "illumina", + "amr", + "one-health", + "jbrowse1", + "microgalaxy" + ], + "time_estimation": "2h", + "title": "Identification of AMR genes in an assembled bacterial genome", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "upload1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "amr-gene-detection", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 176, + "visitors": 967, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2255-1631", + "name": "Bazante Sanders" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Identification of AMR genes in an assembled bacterial genome", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncontigs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nforward_reads\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreverse_reads\"]\n 3[label=\"staramr\"]\n 0 -> 3 [label=\"output\"]\n k7a18df3cf28045aa92e427b79f10a005[color=lightseagreen,label=\"Output\\nstararm_detailed_summary\"]\n 3 -> k7a18df3cf28045aa92e427b79f10a005\n 4[label=\"Bakta\"]\n 0 -> 4 [label=\"output\"]\n kead94d4086b04cf0aee2cf72a8f47933[color=lightseagreen,label=\"Output\\nbakta_annotation_summary\"]\n 4 -> kead94d4086b04cf0aee2cf72a8f47933\n 5[label=\"Bowtie2\"]\n 1 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n k0639b4672e624a52b72f35bf9f46f6a3[color=lightseagreen,label=\"Output\\nbowtie_mapping_stats\"]\n 5 -> k0639b4672e624a52b72f35bf9f46f6a3\n 6[label=\"Select\"]\n 3 -> 6 [label=\"detailed_summary\"]\n 7[label=\"Table to GFF3\"]\n 6 -> 7 [label=\"out_file1\"]\n 8[label=\"JBrowse\"]\n 4 -> 8 [label=\"annotation_gff3\"]\n 7 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"output\"]\n k910a35522a224279b15930379b31496f[color=lightseagreen,label=\"Output\\njbrowse_output\"]\n 8 -> k910a35522a224279b15930379b31496f\n}", + "history": [ + { + "hash": "597f8ce954083c7cd4e43765b6c4709619637e6a", + "message": "Add Bazante's ORCID", + "num": 4, + "short_hash": "597f8ce95", + "unix": "1706018263" + }, + { + "hash": "03e4290900ade23b2dffb3f61ea2875a64f2c396", + "message": "Fix workflows", + "num": 3, + "short_hash": "03e429090", + "unix": "1706004257" + }, + { + "hash": "c88bcbb6f04ad1847e0747f7fb9256ee0ec858de", + "message": "Add license and creator to workflows", + "num": 2, + "short_hash": "c88bcbb6f", + "unix": "1705678137" + }, + { + "hash": "6d6129376b624fe20278f8df09b13cae881c5484", + "message": "Expand the AMR detection tutorial", + "num": 1, + "short_hash": "6d6129376", + "unix": "1705334494" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "contigs" + } + ], + "label": "contigs", + "name": "contigs", + "outputs": [], + "position": { + "left": 0, + "top": 258 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"contigs\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a18c5e52-124f-4480-80b4-ea5936618bc6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "forward_reads" + } + ], + "label": "forward_reads", + "name": "forward_reads", + "outputs": [], + "position": { + "left": 0.003423507807786663, + "top": 600.9912432161087 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"forward_reads\"}", + "tool_version": null, + "type": "data_input", + "uuid": "edd7c009-b0f1-403d-9438-f675bd61d30a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reverse_reads" + } + ], + "label": "reverse_reads", + "name": "reverse_reads", + "outputs": [], + "position": { + "left": 0, + "top": 724 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"reverse_reads\"}", + "tool_version": null, + "type": "data_input", + "uuid": "595db730-f37d-4314-85a3-e10dfb11e209", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ncontigs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nforward_reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nreverse_reads\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"staramr\"];\n 0 -->|output| 3;\n 7a18df3c-f280-45aa-92e4-27b79f10a005[\"Output\\nstararm_detailed_summary\"];\n 3 --> 7a18df3c-f280-45aa-92e4-27b79f10a005;\n style 7a18df3c-f280-45aa-92e4-27b79f10a005 stroke:#2c3143,stroke-width:4px;\n 4[\"Bakta\"];\n 0 -->|output| 4;\n ead94d40-86b0-4cf0-aee2-cf72a8f47933[\"Output\\nbakta_annotation_summary\"];\n 4 --> ead94d40-86b0-4cf0-aee2-cf72a8f47933;\n style ead94d40-86b0-4cf0-aee2-cf72a8f47933 stroke:#2c3143,stroke-width:4px;\n 5[\"Bowtie2\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 0 -->|output| 5;\n 0639b467-2e62-4a52-b72f-35bf9f46f6a3[\"Output\\nbowtie_mapping_stats\"];\n 5 --> 0639b467-2e62-4a52-b72f-35bf9f46f6a3;\n style 0639b467-2e62-4a52-b72f-35bf9f46f6a3 stroke:#2c3143,stroke-width:4px;\n 6[\"Select\"];\n 3 -->|detailed_summary| 6;\n 7[\"Table to GFF3\"];\n 6 -->|out_file1| 7;\n 8[\"JBrowse\"];\n 4 -->|annotation_gff3| 8;\n 7 -->|output| 8;\n 5 -->|output| 8;\n 910a3552-2a22-4279-b159-30379b31496f[\"Output\\njbrowse_output\"];\n 8 --> 910a3552-2a22-4279-b159-30379b31496f;\n style 910a3552-2a22-4279-b159-30379b31496f stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "mrsa AMR gene detection", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "genomes": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "staramr", + "outputs": [ + { + "name": "blast_hits", + "type": "input" + }, + { + "name": "mlst", + "type": "tabular" + }, + { + "name": "summary", + "type": "tabular" + }, + { + "name": "detailed_summary", + "type": "tabular" + }, + { + "name": "resfinder", + "type": "tabular" + }, + { + "name": "plasmidfinder", + "type": "tabular" + }, + { + "name": "settings", + "type": "txt" + }, + { + "name": "excel", + "type": "xlsx" + } + ], + "position": { + "left": 290.00083115418806, + "top": 261 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3b22de20bd4b", + "name": "staramr", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"pid_threshold\": \"98.0\", \"plength_resfinder\": \"60.0\", \"plength_pointfinder\": \"95.0\", \"plength_plasmidfinder\": \"60.0\", \"genome_size_lower_bound\": \"4000000\", \"genome_size_upper_bound\": \"6000000\", \"minimum_N50_value\": \"10000\", \"minimum_contig_length\": \"300\", \"unacceptable_number_contigs\": \"1000\", \"report_all_blast\": false, \"exclude_negatives\": false, \"exclude_resistance_phenotypes\": false, \"mlst_scheme\": \"auto\", \"exclude_genes\": {\"exclude_genes_condition\": \"default\", \"__current_case__\": 0}, \"complex_mutations\": {\"complex_mutations_condition\": \"default\", \"__current_case__\": 0}, \"plasmidfinder_type\": \"include_all\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"genomes\": {\"__class__\": \"ConnectedValue\"}, \"pointfinder_db\": {\"use_pointfinder\": \"disabled\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.0+galaxy1", + "type": "tool", + "uuid": "2554da56-e9f9-4e65-98b6-25b4a2861df9", + "when": null, + "workflow_outputs": [ + { + "label": "stararm_detailed_summary", + "output_name": "detailed_summary", + "uuid": "7a18df3c-f280-45aa-92e4-27b79f10a005" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_option|input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "input_option" + } + ], + "label": null, + "name": "Bakta", + "outputs": [ + { + "name": "annotation_tsv", + "type": "tabular" + }, + { + "name": "annotation_gff3", + "type": "gff3" + }, + { + "name": "annotation_ffn", + "type": "fasta" + }, + { + "name": "annotation_plot", + "type": "svg" + } + ], + "position": { + "left": 570.0016623083761, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "728dacaf08a9", + "name": "bakta", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation\": {\"complete\": false, \"prodigal\": {\"__class__\": \"RuntimeValue\"}, \"translation_table\": \"11\", \"keep_contig_headers\": true, \"replicons\": {\"__class__\": \"RuntimeValue\"}, \"compliant\": false, \"proteins\": {\"__class__\": \"RuntimeValue\"}, \"meta\": false}, \"input_option\": {\"bakta_db_select\": \"V5.0_2023-02-20\", \"amrfinder_db_select\": \"amrfinderplus_V3.11_2022-12-19.1\", \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"min_contig_length\": null}, \"organism\": {\"genus\": null, \"species\": null, \"strain\": null, \"plasmid\": null}, \"output_files\": {\"output_selection\": [\"file_tsv\", \"file_gff3\", \"file_ffn\", \"file_plot\"]}, \"workflow\": {\"skip_analysis\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.2+galaxy0", + "type": "tool", + "uuid": "0b92601d-5b78-438c-998d-f9f4dc61c52d", + "when": null, + "workflow_outputs": [ + { + "label": "bakta_annotation_summary", + "output_name": "annotation_tsv", + "uuid": "ead94d40-86b0-4cf0-aee2-cf72a8f47933" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "library|input_1": { + "id": 1, + "output_name": "output" + }, + "library|input_2": { + "id": 2, + "output_name": "output" + }, + "reference_genome|own_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 290.00083115418806, + "top": 628 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "03e9b2fbc005", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": false, \"aligned_file\": false, \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.0+galaxy0", + "type": "tool", + "uuid": "7e8f9570-3d8b-4a82-b109-09bc04b82c64", + "when": null, + "workflow_outputs": [ + { + "label": "bowtie_mapping_stats", + "output_name": "mapping_stats", + "uuid": "0639b467-2e62-4a52-b72f-35bf9f46f6a3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 4, + "output_name": "annotation_gff3" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 7, + "output_name": "output" + }, + "track_groups_2|data_tracks_0|data_format|annotation": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1130.0033246167523, + "top": 325 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a6e57ff585c0", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": true, \"aboutDescription\": \"\", \"show_tracklist\": true, \"show_nav\": true, \"show_overview\": true, \"show_menu\": true, \"hideGenomeOptions\": false}, \"plugins\": {\"BlastView\": true, \"ComboTrackSelector\": false, \"GCContent\": false}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Bakta\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": false, \"__current_case__\": 1}, \"index\": false, \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": null}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"ARGs and plasmid genes\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": false, \"__current_case__\": 1}, \"index\": false, \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": null}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 2, \"category\": \"Coverage\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"auto_snp\": false, \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.11+galaxy1", + "type": "tool", + "uuid": "9f973678-ce81-458a-a5d0-575d93d61429", + "when": null, + "workflow_outputs": [ + { + "label": "jbrowse_output", + "output_name": "output", + "uuid": "910a3552-2a22-4279-b159-30379b31496f" + } + ] + } + ], + "parent_id": "genome-annotation/amr-gene-detection", + "path": "topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", + "tags": [ + "genome-annotation", + "microgalaxy" + ], + "test_results": null, + "tests": true, + "title": "mrsa AMR gene detection", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-amr-gene-detection/versions/main-workflow", + "tutorial_id": "amr-gene-detection", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.html", + "version": 1, + "wfid": "genome-annotation-amr-gene-detection", + "wfname": "main-workflow", + "workflow": "main-workflow.ga", + "workflow_tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1" + ], + "workflowhub_id": "1168" + } + ], + "zenodo_link": "https://zenodo.org/record/10572227" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bakta", + "owner": "iuc", + "revisions": "ba6990f72184", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "integron_finder", + "owner": "iuc", + "revisions": "bfd290fe1588", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "isescan", + "owner": "iuc", + "revisions": "9e776e7fab4f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "plasmidfinder", + "owner": "iuc", + "revisions": "7075b7a5441b", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbl2gff3", + "owner": "iuc", + "revisions": "4a7f4b0cc0a3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bakta\n owner: iuc\n revisions: ba6990f72184\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: integron_finder\n owner: iuc\n revisions: bfd290fe1588\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: isescan\n owner: iuc\n revisions: 9e776e7fab4f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: plasmidfinder\n owner: iuc\n revisions: 7075b7a5441b\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbl2gff3\n owner: iuc\n revisions: 4a7f4b0cc0a3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.json", + "contributions": { + "authorship": [ + "bebatut" + ], + "funding": [ + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/genome-annotation/tutorials/bacterial-genome-annotation", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0623", + "topic_0080", + "topic_3673", + "topic_0085", + "topic_0798" + ], + "edam_operation": [ + "Genome assembly", + "Sequence motif recognition", + "Genome annotation", + "Nucleic acid feature detection", + "Structural variation detection", + "Multilocus sequence typing", + "Genome visualisation", + "Protein feature detection", + "Scaffolding" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Gene and protein families", + "Sequence analysis", + "Whole genome sequencing", + "Functional genomics", + "Mobile genetic elements" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "apollo" + ], + "type": "internal" + }, + { + "topic_name": "visualisation", + "tutorials": [ + "circos", + "jbrowse" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/bacterial-genome-annotation", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Bakta is a powerful tool to annotate a bacterial genome", + "Annotation can be easily visualized to understand the genomic context and help making sense of the annotations" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-01", + "objectives": [ + "Run a series of tool to annotate a draft bacterial genome for different types of genomic components", + "Evaluate the annotation", + "Process the outputs to formate them for visualization needs", + "Visualize a draft bacterial genome and its annotations" + ], + "pageviews": 2378, + "pub_date": "2024-02-01", + "questions": [ + "Which genes are on a draft bacterial genome?", + "Which other genomic components can be found on a draft bacterial genome?" + ], + "short_id": "T00403", + "short_tools": [ + "Grouping1", + "jbrowse", + "upload1", + "integron_finder", + "isescan", + "tp_tail_tool", + "plasmidfinder", + "tbl2gff3", + "bakta", + "tp_replace_in_column" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "prokaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "illumina", + "bacteria", + "microgalaxy", + "jbrowse1" + ], + "time_estimation": "3H", + "title": "Bacterial Genome Annotation", + "tools": [ + "Grouping1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/plasmidfinder/plasmidfinder/2.1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2", + "upload1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bacterial-genome-annotation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 140, + "visitors": 1800, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-8304-138X", + "name": "Pierre Marin" + } + ], + "description": "Bacterial Genome Annotation", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncontigs\"]\n 1[label=\"ISEScan\"]\n 0 -> 1 [label=\"output\"]\n k2bb672cb453646b08a228590a0ca36c7[color=lightseagreen,label=\"Output\\nisescan_results\"]\n 1 -> k2bb672cb453646b08a228590a0ca36c7\n 2[label=\"PlasmidFinder\"]\n 0 -> 2 [label=\"output\"]\n k614064e64b0f4e38b04ee3f61ba41b46[color=lightseagreen,label=\"Output\\nplasmidfinder_results\"]\n 2 -> k614064e64b0f4e38b04ee3f61ba41b46\n 3[label=\"Integron Finder\"]\n 0 -> 3 [label=\"output\"]\n kd26788cf24414f29ac39b6be96f192eb[color=lightseagreen,label=\"Output\\nintegronfinder_summary\"]\n 3 -> kd26788cf24414f29ac39b6be96f192eb\n 4[label=\"Bakta\"]\n 0 -> 4 [label=\"output\"]\n kd3a40a8b1bd142b6a91e756379b86d94[color=lightseagreen,label=\"Output\\nbakta_summary\"]\n 4 -> kd3a40a8b1bd142b6a91e756379b86d94\n 5[label=\"Group\"]\n 1 -> 5 [label=\"all_results\"]\n 6[label=\"Group\"]\n 1 -> 6 [label=\"all_results\"]\n 7[label=\"Replace Text\"]\n 2 -> 7 [label=\"result_file\"]\n 8[label=\"Select last\"]\n 7 -> 8 [label=\"outfile\"]\n 9[label=\"Table to GFF3\"]\n 8 -> 9 [label=\"outfile\"]\n 10[label=\"JBrowse\"]\n 0 -> 10 [label=\"output\"]\n 4 -> 10 [label=\"annotation_gff3\"]\n 9 -> 10 [label=\"output\"]\n 1 -> 10 [label=\"annotation\"]\n}", + "history": [ + { + "hash": "87968f9a6953ebf322d9fb0fae3a4193b6222288", + "message": "Update tool versions", + "num": 2, + "short_hash": "87968f9a6", + "unix": "1722510143" + }, + { + "hash": "217f251aaa898a91dbb18b5cec3daebaf582c712", + "message": "Update worklow and add tests", + "num": 1, + "short_hash": "217f251aa", + "unix": "1706526984" + } + ], + "inputs": [ + { + "annotation": "contigs", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "contigs", + "name": "contigs" + } + ], + "label": "contigs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 424 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "8cde8af1-c277-4b9f-97f7-54f5997f2c5d", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ncontigs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"ISEScan\"];\n 0 -->|output| 1;\n 2bb672cb-4536-46b0-8a22-8590a0ca36c7[\"Output\\nisescan_results\"];\n 1 --> 2bb672cb-4536-46b0-8a22-8590a0ca36c7;\n style 2bb672cb-4536-46b0-8a22-8590a0ca36c7 stroke:#2c3143,stroke-width:4px;\n 2[\"PlasmidFinder\"];\n 0 -->|output| 2;\n 614064e6-4b0f-4e38-b04e-e3f61ba41b46[\"Output\\nplasmidfinder_results\"];\n 2 --> 614064e6-4b0f-4e38-b04e-e3f61ba41b46;\n style 614064e6-4b0f-4e38-b04e-e3f61ba41b46 stroke:#2c3143,stroke-width:4px;\n 3[\"Integron Finder\"];\n 0 -->|output| 3;\n d26788cf-2441-4f29-ac39-b6be96f192eb[\"Output\\nintegronfinder_summary\"];\n 3 --> d26788cf-2441-4f29-ac39-b6be96f192eb;\n style d26788cf-2441-4f29-ac39-b6be96f192eb stroke:#2c3143,stroke-width:4px;\n 4[\"Bakta\"];\n 0 -->|output| 4;\n d3a40a8b-1bd1-42b6-a91e-756379b86d94[\"Output\\nbakta_summary\"];\n 4 --> d3a40a8b-1bd1-42b6-a91e-756379b86d94;\n style d3a40a8b-1bd1-42b6-a91e-756379b86d94 stroke:#2c3143,stroke-width:4px;\n 5[\"Group\"];\n 1 -->|all_results| 5;\n 6[\"Group\"];\n 1 -->|all_results| 6;\n 7[\"Replace Text\"];\n 2 -->|result_file| 7;\n 8[\"Select last\"];\n 7 -->|outfile| 8;\n 9[\"Table to GFF3\"];\n 8 -->|outfile| 9;\n 10[\"JBrowse\"];\n 0 -->|output| 10;\n 4 -->|annotation_gff3| 10;\n 9 -->|output| 10;\n 1 -->|annotation| 10;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Bacterial Genome Annotation", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy1", + "errors": null, + "id": 1, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "ISEScan", + "outputs": [ + { + "name": "summary", + "type": "tabular" + }, + { + "name": "all_results", + "type": "tabular" + }, + { + "name": "annotation", + "type": "gff" + }, + { + "name": "is_fasta", + "type": "fasta" + }, + { + "name": "orf_fna", + "type": "fasta" + }, + { + "name": "orf_faa", + "type": "fasta" + } + ], + "position": { + "left": 280, + "top": 133 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "19f42b3ea391", + "name": "isescan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"log_activate\": false, \"remove_short_is\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.2.3+galaxy1", + "type": "tool", + "uuid": "334b327f-be00-4e75-ae01-c3ba674dbc9b", + "when": null, + "workflow_outputs": [ + { + "label": "isescan_results", + "output_name": "all_results", + "uuid": "2bb672cb-4536-46b0-8a22-8590a0ca36c7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/plasmidfinder/plasmidfinder/2.1.6+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input|input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PlasmidFinder", + "outputs": [ + { + "name": "hit_file", + "type": "fasta" + }, + { + "name": "plasmid_file", + "type": "fasta" + }, + { + "name": "result_file", + "type": "tabular" + }, + { + "name": "raw_file", + "type": "txt" + } + ], + "position": { + "left": 280, + "top": 420 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/plasmidfinder/plasmidfinder/2.1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "7075b7a5441b", + "name": "plasmidfinder", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"database_name\": \"plasmidfinder_1307168_2019_08_28\"}, \"options\": {\"min_cov\": \"0.6\", \"threshold\": \"0.95\"}, \"output_files\": {\"output_selection\": [\"hit_fasta\", \"plasmid_fasta\", \"result_tsv\", \"result_txt\"]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.6+galaxy1", + "type": "tool", + "uuid": "484ea537-4097-4097-b19c-84fef6c7de9a", + "when": null, + "workflow_outputs": [ + { + "label": "plasmidfinder_results", + "output_name": "result_file", + "uuid": "614064e6-4b0f-4e38-b04e-e3f61ba41b46" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.5+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "sequence": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Integron Finder", + "outputs": [ + { + "name": "integrons_table", + "type": "tsv" + }, + { + "name": "summary", + "type": "tsv" + } + ], + "position": { + "left": 280, + "top": 665 + }, + "post_job_actions": { + "ChangeDatatypeActionintegrons_table": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "integrons_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "4768f7f8e93f", + "name": "integron_finder", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"gbk\": false, \"local_max\": true, \"no_logfile\": true, \"pdf\": false, \"promoter_attI\": true, \"sequence\": {\"__class__\": \"ConnectedValue\"}, \"settings\": {\"attc_settings\": {\"dist_thresh\": \"4000\", \"calin_threshold\": \"2\", \"max_attc_size\": \"200\", \"min_attc_size\": \"40\", \"keep_palindromes\": false, \"covar_matrix\": null}, \"protein_settings\": {\"no_proteins\": false, \"union_integrases\": false, \"func_annot\": false}}, \"topology_file\": null, \"type_replicon\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.5+galaxy0", + "type": "tool", + "uuid": "29a9252c-5c3b-4024-99ff-637d0572320a", + "when": null, + "workflow_outputs": [ + { + "label": "integronfinder_summary", + "output_name": "summary", + "uuid": "d26788cf-2441-4f29-ac39-b6be96f192eb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_option|input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bakta", + "outputs": [ + { + "name": "annotation_tsv", + "type": "tabular" + }, + { + "name": "annotation_gff3", + "type": "gff3" + }, + { + "name": "annotation_ffn", + "type": "fasta" + }, + { + "name": "summary_txt", + "type": "txt" + }, + { + "name": "annotation_plot", + "type": "svg" + } + ], + "position": { + "left": 850, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "728dacaf08a9", + "name": "bakta", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"annotation\": {\"complete\": false, \"prodigal\": null, \"translation_table\": \"11\", \"keep_contig_headers\": true, \"replicons\": null, \"compliant\": false, \"proteins\": null, \"meta\": false}, \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"input_option\": {\"bakta_db_select\": \"V5.0_2023-02-20\", \"amrfinder_db_select\": \"amrfinderplus_V3.11_2022-12-19.1\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"min_contig_length\": null}, \"organism\": {\"genus\": null, \"species\": null, \"strain\": null, \"plasmid\": null}, \"output_files\": {\"output_selection\": [\"file_tsv\", \"file_gff3\", \"file_ffn\", \"file_plot\", \"sum_txt\"]}, \"workflow\": {\"skip_analysis\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.3+galaxy0", + "type": "tool", + "uuid": "181220e7-9082-48bc-b855-f10baf78fc2a", + "when": null, + "workflow_outputs": [ + { + "label": "bakta_summary", + "output_name": "summary_txt", + "uuid": "d3a40a8b-1bd1-42b6-a91e-756379b86d94" + } + ] + } + ], + "parent_id": "genome-annotation/bacterial-genome-annotation", + "path": "topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": true, + "title": "Bacterial Genome Annotation", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-bacterial-genome-annotation/versions/bacterial-genome-annotation", + "tutorial_id": "bacterial-genome-annotation", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/bacterial-genome-annotation/workflows/Bacterial-Genome-Annotation.html", + "version": 2, + "wfid": "genome-annotation-bacterial-genome-annotation", + "wfname": "bacterial-genome-annotation", + "workflow": "Bacterial-Genome-Annotation.ga", + "workflow_tools": [ + "Grouping1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/integron_finder/integron_finder/2.0.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/isescan/isescan/1.7.2.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/plasmidfinder/plasmidfinder/2.1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2" + ], + "workflowhub_id": "1136" + } + ], + "zenodo_link": "https://zenodo.org/record/10572227" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "17359b808b01", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: jbrowse\n owner: iuc\n revisions: 17359b808b01\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/jbrowse/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/visualisation/tutorials/jbrowse", + "edam_operation": [ + "Genome visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "visualisation/jbrowse", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "This tutorial can not exhaustively cover every data type, but maybe it provides inspiration for your own analyses", + "JBrowse is a great, workflow-compatible alternative to other genome browsers", + "You can build visualisations that summarise dozens of analyses in one visualisation" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Build several visualisations in JBrowse", + "Have basic familiarity with moving around JBrowse, and loading several data tracks" + ], + "pageviews": 5732004, + "pub_date": "2020-01-10", + "questions": [ + "How can I visualise features or blast data?", + "How can I visualise sequencing data in a workflow" + ], + "short_id": "T00322", + "short_tools": [ + "jbrowse" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "jbrowse1" + ], + "time_estimation": "1h", + "title": "Genomic Data Visualisation with JBrowse", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0" + ], + "topic_name": "visualisation", + "topic_name_human": "Visualisation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "jbrowse", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/visualisation/tutorials/jbrowse/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/jbrowse/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/jbrowse/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 287, + "visitors": 2067558, + "zenodo_link": "https://doi.org/10.5281/zenodo.3591856" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/official-gene-set/tutorial.json", + "contributions": { + "authorship": [ + "abretaud" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/genome-annotation/tutorials/official-gene-set", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/official-gene-set", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Genoest' OGS Tools makes it easy to validate and release a build of your genome and its annotations." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Validate your genes and create an official gene set from them." + ], + "pageviews": 9, + "pub_date": "2023-11-02", + "questions": [ + "I have several genomes assemblies that are not annotated (or I do not trust annotations)", + "I am interested to compare structure of a particular gene across these genome assemblies", + "How do I do that?" + ], + "short_id": "T00370", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "apollo2", + "work-in-progress" + ], + "time_estimation": "30M", + "title": "Creating an Official Gene Set", + "tools": [], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "official-gene-set", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/official-gene-set/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/official-gene-set/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/official-gene-set/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 7, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "17359b808b01", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 17359b808b01\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json", + "contributions": { + "authorship": [ + "nakucher", + "avahoffman", + "robertmeller" + ], + "editing": [ + "katherinecox", + "cutsort", + "nakucher" + ], + "funding": [ + "nhgri-gdscn", + "nhgri-anvil" + ], + "infrastructure": [ + "cansavvy", + "avahoffman", + "katherinecox", + "ehumph", + "cutsort" + ] + }, + "contributors": [ + { + "email": "nkucher3@jhu.edu", + "id": "nakucher", + "joined": "2023-06", + "name": "Natalie Kucher", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nakucher/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nakucher.json" + }, + { + "id": "avahoffman", + "joined": "2023-06", + "name": "Ava Hoffman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avahoffman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/avahoffman.json" + }, + { + "id": "robertmeller", + "joined": "2023-06", + "name": "Robert Meller", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmeller/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmeller.json" + }, + { + "id": "katherinecox", + "joined": "2023-06", + "name": "Katherine Cox", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherinecox/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherinecox.json" + }, + { + "id": "cutsort", + "joined": "2023-06", + "name": "Frederick Tan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cutsort/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cutsort.json" + }, + { + "email": "nkucher3@jhu.edu", + "id": "nakucher", + "joined": "2023-06", + "name": "Natalie Kucher", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nakucher/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nakucher.json" + }, + { + "id": "cansavvy", + "joined": "2023-06", + "name": "Candace Savonen", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cansavvy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cansavvy.json" + }, + { + "id": "avahoffman", + "joined": "2023-06", + "name": "Ava Hoffman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avahoffman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/avahoffman.json" + }, + { + "id": "katherinecox", + "joined": "2023-06", + "name": "Katherine Cox", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherinecox/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherinecox.json" + }, + { + "id": "ehumph", + "joined": "2023-06", + "name": "Elizabeth Humphries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ehumph/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ehumph.json" + }, + { + "id": "cutsort", + "joined": "2023-06", + "name": "Frederick Tan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cutsort/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cutsort.json" + }, + { + "avatar": "https://www.ashg.org/wp-content/uploads/2021/07/nhgri-logo-800x167-1.png", + "funder": true, + "funding_id": "75N92022P00232", + "github": false, + "id": "nhgri-gdscn", + "joined": "2023-06", + "name": "National Human Genome Research Institute Genomic Data Science Community Network", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nhgri-gdscn/", + "short_name": "NHGRI GDS Community Network", + "url": "https://training.galaxyproject.org/training-material/api/funders/nhgri-gdscn.json" + }, + { + "avatar": "https://www.ashg.org/wp-content/uploads/2021/07/nhgri-logo-800x167-1.png", + "funder": true, + "funding_id": "U24HG010263", + "github": false, + "id": "nhgri-anvil", + "joined": "2023-06", + "name": "National Human Genome Research Institute Genomic Data Science Analysis, Visualization, and Informatics Lab-Space", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nhgri-anvil/", + "short_name": "NHGRI ANVIL", + "url": "https://training.galaxyproject.org/training-material/api/funders/nhgri-anvil.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil", + "edam_operation": [ + "Sequencing quality control", + "Generation", + "Read mapping", + "Genome visualisation", + "Genome indexing", + "Sequence alignment", + "Sequence composition calculation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/sars-with-galaxy-on-anvil", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use Galaxy on the AnVIL cloud computing resource to check data, perform an alignment, and visualize the results." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Gather and evaluate experimental evidence, including qualitative and quantitative data", + "Generate and interpret graphs displaying experimental results", + "Critique large data sets and use bioinformatics to assess genetics data", + "Tap into the interdisciplinary nature of science" + ], + "pageviews": 899, + "pub_date": "2023-07-10", + "questions": [ + "How do I check my data quality?", + "How do I put together my dataset of fragmented sequences into a full sequence?", + "How do I visually explore the variants in my SARS-CoV-2 sample?" + ], + "short_id": "T00356", + "short_tools": [ + "fastqc", + "bwa_mem", + "jbrowse" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "covid19", + "gmod", + "jbrowse1" + ], + "time_estimation": "1H", + "title": "SARS-CoV-2 Viral Sample Alignment and Variant Visualization", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-with-galaxy-on-anvil", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 283, + "visitors": 691, + "zenodo_link": "https://doi.org/10.5281/zenodo.8115178" + }, + { + "abbreviations": { + "NMDS": "Non-metric multidimensional scaling" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "interproscan", + "owner": "bgruening", + "revisions": "74810db257cc", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "f9242e01365a", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "eggnog_mapper", + "owner": "galaxyp", + "revisions": "844fa988236b", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "aegean_parseval", + "owner": "iuc", + "revisions": "1b52f0c8ad7f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "94170eee0ad8", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_annotate", + "owner": "iuc", + "revisions": "9feee7fc49a1", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_annotate", + "owner": "iuc", + "revisions": "582fd74dc2a1", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_compare", + "owner": "iuc", + "revisions": "a7ce2601500c", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_compare", + "owner": "iuc", + "revisions": "30f08d74024f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_predict", + "owner": "iuc", + "revisions": "51b6ee65ef7f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "funannotate_predict", + "owner": "iuc", + "revisions": "f31125bb85ea", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "3ea5a2a63fa2", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "4074fc1940e2", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: interproscan\n owner: bgruening\n revisions: 74810db257cc\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: f9242e01365a\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: eggnog_mapper\n owner: galaxyp\n revisions: 844fa988236b\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: aegean_parseval\n owner: iuc\n revisions: 1b52f0c8ad7f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 94170eee0ad8\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_annotate\n owner: iuc\n revisions: 9feee7fc49a1\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_annotate\n owner: iuc\n revisions: 582fd74dc2a1\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_compare\n owner: iuc\n revisions: a7ce2601500c\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_compare\n owner: iuc\n revisions: 30f08d74024f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_predict\n owner: iuc\n revisions: 51b6ee65ef7f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: funannotate_predict\n owner: iuc\n revisions: f31125bb85ea\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 3ea5a2a63fa2\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 4074fc1940e2\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/funannotate/tutorial.json", + "contributions": { + "authorship": [ + "abretaud" + ], + "editing": [ + "alexcorm", + "lleroi", + "r1corre", + "stephanierobin" + ], + "funding": [ + "gallantries", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "email": "alexandre.cormier@ifremer.fr", + "id": "alexcorm", + "joined": "2021-11", + "name": "Alexandre Cormier", + "orcid": "0000-0002-7775-8413", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alexcorm/", + "twitter": "allanssx", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alexcorm.json" + }, + { + "email": "laura.leroi@ifremer.fr", + "id": "lleroi", + "joined": "2021-11", + "name": "Laura Leroi", + "orcid": "0000-0003-3748-4179", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lleroi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lleroi.json" + }, + { + "email": "erwan.corre@sb-roscoff.fr", + "id": "r1corre", + "joined": "2019-04", + "name": "Erwan Corre", + "orcid": "0000-0001-6354-2278", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/r1corre/", + "twitter": "r1corre", + "url": "https://training.galaxyproject.org/training-material/api/contributors/r1corre.json" + }, + { + "email": "stephanie.robin@inrae.fr", + "id": "stephanierobin", + "joined": "2021-11", + "name": "St\u00e9phanie Robin", + "orcid": "0000-0001-7379-9173", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stephanierobin/", + "twitter": "robinstphanie1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stephanierobin.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/genome-annotation/tutorials/funannotate", + "edam_operation": [ + "Sequence motif recognition", + "Sequence alignment", + "Genome annotation", + "Sequence assembly validation", + "Homology-based gene prediction", + "Fold recognition", + "Formatting", + "Information extraction", + "Genome visualisation", + "Transcriptome assembly", + "Sequence annotation", + "Genome assembly", + "Protein feature detection", + "Query and retrieval", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "apollo" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/funannotate", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Funannotate allows to perform structural annotation of an eukaryotic genome.", + "Functional annotation can be performed using EggNOG-mapper and InterProScan.", + "BUSCO and JBrowse allow to inspect the quality of an annotation.", + "Funannotate allows to format an annotation for sumission at NCBI." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Load genome into Galaxy", + "Annotate genome with Funannotate", + "Perform functional annotation using EggNOG-mapper and InterProScan", + "Evaluate annotation quality with BUSCO", + "View annotations in JBrowse" + ], + "pageviews": 10392, + "priority": 2, + "pub_date": "2021-11-29", + "questions": [ + "How to annotate an eukaryotic genome with Funannotate?", + "How to perform functional annotation?", + "How to evaluate and visualize annotated genomic features?", + "How to format the annotation for submission at NCBI?" + ], + "recordings": [ + { + "captioners": [ + "abretaud" + ], + "date": "2023-05-12", + "galaxy_version": "23.01", + "length": "1H10M", + "speakers": [ + "abretaud" + ], + "youtube_id": "p0NBxZk5964" + }, + { + "captioners": [ + "abretaud" + ], + "date": "2022-03-03", + "galaxy_version": "21.09", + "length": "1H10M", + "speakers": [ + "abretaud" + ], + "youtube_id": "r-wU6BhqIpk" + } + ], + "requirements": [ + { + "topic_name": "genome-annotation", + "tutorials": [ + "repeatmasker" + ], + "type": "internal" + } + ], + "short_id": "T00172", + "short_tools": [ + "jbrowse", + "busco", + "eggnog_mapper", + "picard_MergeSamFiles", + "funannotate_annotate", + "funannotate_predict", + "aegean_parseval", + "funannotate_compare", + "interproscan", + "rna_star" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "eukaryote", + "jbrowse1" + ], + "time_estimation": "8h", + "title": "Genome annotation with Funannotate", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MergeSamFiles/2.18.2.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/aegean_parseval/aegean_parseval/0.16.0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.8a+galaxy0" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "funannotate", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/funannotate/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/funannotate/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/funannotate/tutorial.json" + }, + "version": 22, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 129, + "visitors": 6817, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-0914-2470", + "name": "Anthony Bretaudeau" + } + ], + "description": "Structural and functional genome annotation with Funannotate", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome assembly\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRNASeq reads forward\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRNASeq reads reverse\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProtein evidence sequences\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNCBI submission template\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAlternate annotation gbk\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAlternate annotation gff3\"]\n 7[label=\"RNA STAR\"]\n 0 -> 7 [label=\"output\"]\n 1 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n k79cf59ea3aef4cb89c705b42e03a5da9[color=lightseagreen,label=\"Output\\nMapped RNASeq\"]\n 7 -> k79cf59ea3aef4cb89c705b42e03a5da9\n 8[label=\"Funannotate predict annotation\"]\n 3 -> 8 [label=\"output\"]\n 7 -> 8 [label=\"mapped_reads\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"eggNOG Mapper\"]\n 8 -> 9 [label=\"fasta_proteins\"]\n 10[label=\"InterProScan\"]\n 8 -> 10 [label=\"fasta_proteins\"]\n 11[label=\"Funannotate functional\"]\n 9 -> 11 [label=\"annotations\"]\n 8 -> 11 [label=\"annot_gbk\"]\n 10 -> 11 [label=\"outfile_xml\"]\n 4 -> 11 [label=\"output\"]\n kd0694cd16d814d7283b994cb57dc1502[color=lightseagreen,label=\"Output\\nFinal annotation (genbank)\"]\n 11 -> kd0694cd16d814d7283b994cb57dc1502\n k9a1e7b70109041ed863765b7372a9f6c[color=lightseagreen,label=\"Output\\nFinal annotation (CDS sequences)\"]\n 11 -> k9a1e7b70109041ed863765b7372a9f6c\n k99fffa402196491d9a66559ebf2d9561[color=lightseagreen,label=\"Output\\nFinal annotation (mRNA sequences)\"]\n 11 -> k99fffa402196491d9a66559ebf2d9561\n k17b03b7704854176b2b303bfa2d3bcb0[color=lightseagreen,label=\"Output\\nFinal annotation (protein sequences)\"]\n 11 -> k17b03b7704854176b2b303bfa2d3bcb0\n k4a0602fce6d243fc9957344707c22c05[color=lightseagreen,label=\"Output\\nFinal annotation (GFF3)\"]\n 11 -> k4a0602fce6d243fc9957344707c22c05\n 12[label=\"JBrowse\"]\n 0 -> 12 [label=\"output\"]\n 11 -> 12 [label=\"gff3\"]\n 7 -> 12 [label=\"mapped_reads\"]\n kac4d8805f12344d2b30f8ac906cc471f[color=lightseagreen,label=\"Output\\nJBrowse\"]\n 12 -> kac4d8805f12344d2b30f8ac906cc471f\n 13[label=\"Funannotate compare\"]\n 5 -> 13 [label=\"output\"]\n 11 -> 13 [label=\"gbk\"]\n ke531c81ff6b74c82a712c562873ff714[color=lightseagreen,label=\"Output\\nFunannotate compare report\"]\n 13 -> ke531c81ff6b74c82a712c562873ff714\n 14[label=\"AEGeAn ParsEval\"]\n 6 -> 14 [label=\"output\"]\n 11 -> 14 [label=\"gff3\"]\n k0d776b462c1c40839f9da213fa62eb81[color=lightseagreen,label=\"Output\\nAEGeAN report\"]\n 14 -> k0d776b462c1c40839f9da213fa62eb81\n 15[label=\"Busco\"]\n 11 -> 15 [label=\"fa_proteins\"]\n k57a619f5b3314ca68e6e72eb61860032[color=lightseagreen,label=\"Output\\nBusco summary\"]\n 15 -> k57a619f5b3314ca68e6e72eb61860032\n k97d23764ad4a4d69948cc81afb76fbaf[color=lightseagreen,label=\"Output\\nBusco image\"]\n 15 -> k97d23764ad4a4d69948cc81afb76fbaf\n}", + "history": [ + { + "hash": "ed3325d60843b30358cdb704f83ad9ea4b6c149f", + "message": "update funannotate tuto", + "num": 1, + "short_hash": "ed3325d60", + "unix": "1682519007" + } + ], + "inputs": [ + { + "annotation": "The genome sequence that you wish to annotate, in fasta format. It needs to be soft masked beforehand.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "The genome sequence that you wish to annotate, in fasta format. It needs to be soft masked beforehand.", + "name": "Genome assembly" + } + ], + "label": "Genome assembly", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 7.75 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "cca15c08-8dd9-424a-8260-4c02a94c2612", + "workflow_outputs": [] + }, + { + "annotation": "Some RNASeq data, forward reads, in fastq format", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Some RNASeq data, forward reads, in fastq format", + "name": "RNASeq reads forward" + } + ], + "label": "RNASeq reads forward", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3.45001220703125, + "top": 164.33334350585938 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "6681e7b9-68f6-46e4-811f-60473d23fe0f", + "workflow_outputs": [] + }, + { + "annotation": "Some RNASeq data, reverse reads, in fastq format", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Some RNASeq data, reverse reads, in fastq format", + "name": "RNASeq reads reverse" + } + ], + "label": "RNASeq reads reverse", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6, + "top": 310.6666564941406 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "160023e3-250f-424d-abe5-f7e3978768f0", + "workflow_outputs": [] + }, + { + "annotation": "Some protein sequences to align on the genome to help annotation", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Some protein sequences to align on the genome to help annotation", + "name": "Protein evidence sequences" + } + ], + "label": "Protein evidence sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 7.116668701171875, + "top": 441.4166564941406 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "abb56aaf-5988-4fb8-a68f-0edaee00f445", + "workflow_outputs": [] + }, + { + "annotation": "A submission template retrieved from NCBI (generate it on https://submit.ncbi.nlm.nih.gov/genbank/template/submission/)", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "A submission template retrieved from NCBI (generate it on https://submit.ncbi.nlm.nih.gov/genbank/template/submission/)", + "name": "NCBI submission template" + } + ], + "label": "NCBI submission template", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.45001220703125, + "top": 580.4833068847656 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "537f8bb4-4986-4d8d-a49b-1842dfaa739a", + "workflow_outputs": [] + }, + { + "annotation": "The genbank output of an alternate annotation (for comparison)", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "The genbank output of an alternate annotation (for comparison)", + "name": "Alternate annotation gbk" + } + ], + "label": "Alternate annotation gbk", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 727.7333068847656 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "51a62e82-d478-45c3-bcbc-f38f1fd85974", + "workflow_outputs": [] + }, + { + "annotation": "The gff3 output of an alternate annotation (for comparison)", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "The gff3 output of an alternate annotation (for comparison)", + "name": "Alternate annotation gff3" + } + ], + "label": "Alternate annotation gff3", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.4666748046875, + "top": 845.7500305175781 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e4367779-3fc7-4eec-8e45-86158b3950bc", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGenome assembly\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nRNASeq reads forward\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nRNASeq reads reverse\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nProtein evidence sequences\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nNCBI submission template\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nAlternate annotation gbk\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nAlternate annotation gff3\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"RNA STAR\"];\n 0 -->|output| 7;\n 1 -->|output| 7;\n 2 -->|output| 7;\n 79cf59ea-3aef-4cb8-9c70-5b42e03a5da9[\"Output\\nMapped RNASeq\"];\n 7 --> 79cf59ea-3aef-4cb8-9c70-5b42e03a5da9;\n style 79cf59ea-3aef-4cb8-9c70-5b42e03a5da9 stroke:#2c3143,stroke-width:4px;\n 8[\"Funannotate predict annotation\"];\n 3 -->|output| 8;\n 7 -->|mapped_reads| 8;\n 0 -->|output| 8;\n 9[\"eggNOG Mapper\"];\n 8 -->|fasta_proteins| 9;\n 10[\"InterProScan\"];\n 8 -->|fasta_proteins| 10;\n 11[\"Funannotate functional\"];\n 9 -->|annotations| 11;\n 8 -->|annot_gbk| 11;\n 10 -->|outfile_xml| 11;\n 4 -->|output| 11;\n d0694cd1-6d81-4d72-83b9-94cb57dc1502[\"Output\\nFinal annotation (genbank)\"];\n 11 --> d0694cd1-6d81-4d72-83b9-94cb57dc1502;\n style d0694cd1-6d81-4d72-83b9-94cb57dc1502 stroke:#2c3143,stroke-width:4px;\n 9a1e7b70-1090-41ed-8637-65b7372a9f6c[\"Output\\nFinal annotation (CDS sequences)\"];\n 11 --> 9a1e7b70-1090-41ed-8637-65b7372a9f6c;\n style 9a1e7b70-1090-41ed-8637-65b7372a9f6c stroke:#2c3143,stroke-width:4px;\n 99fffa40-2196-491d-9a66-559ebf2d9561[\"Output\\nFinal annotation (mRNA sequences)\"];\n 11 --> 99fffa40-2196-491d-9a66-559ebf2d9561;\n style 99fffa40-2196-491d-9a66-559ebf2d9561 stroke:#2c3143,stroke-width:4px;\n 17b03b77-0485-4176-b2b3-03bfa2d3bcb0[\"Output\\nFinal annotation (protein sequences)\"];\n 11 --> 17b03b77-0485-4176-b2b3-03bfa2d3bcb0;\n style 17b03b77-0485-4176-b2b3-03bfa2d3bcb0 stroke:#2c3143,stroke-width:4px;\n 4a0602fc-e6d2-43fc-9957-344707c22c05[\"Output\\nFinal annotation (GFF3)\"];\n 11 --> 4a0602fc-e6d2-43fc-9957-344707c22c05;\n style 4a0602fc-e6d2-43fc-9957-344707c22c05 stroke:#2c3143,stroke-width:4px;\n 12[\"JBrowse\"];\n 0 -->|output| 12;\n 11 -->|gff3| 12;\n 7 -->|mapped_reads| 12;\n ac4d8805-f123-44d2-b30f-8ac906cc471f[\"Output\\nJBrowse\"];\n 12 --> ac4d8805-f123-44d2-b30f-8ac906cc471f;\n style ac4d8805-f123-44d2-b30f-8ac906cc471f stroke:#2c3143,stroke-width:4px;\n 13[\"Funannotate compare\"];\n 5 -->|output| 13;\n 11 -->|gbk| 13;\n e531c81f-f6b7-4c82-a712-c562873ff714[\"Output\\nFunannotate compare report\"];\n 13 --> e531c81f-f6b7-4c82-a712-c562873ff714;\n style e531c81f-f6b7-4c82-a712-c562873ff714 stroke:#2c3143,stroke-width:4px;\n 14[\"AEGeAn ParsEval\"];\n 6 -->|output| 14;\n 11 -->|gff3| 14;\n 0d776b46-2c1c-4083-9f9d-a213fa62eb81[\"Output\\nAEGeAN report\"];\n 14 --> 0d776b46-2c1c-4083-9f9d-a213fa62eb81;\n style 0d776b46-2c1c-4083-9f9d-a213fa62eb81 stroke:#2c3143,stroke-width:4px;\n 15[\"Busco\"];\n 11 -->|fa_proteins| 15;\n 57a619f5-b331-4ca6-8e6e-72eb61860032[\"Output\\nBusco summary\"];\n 15 --> 57a619f5-b331-4ca6-8e6e-72eb61860032;\n style 57a619f5-b331-4ca6-8e6e-72eb61860032 stroke:#2c3143,stroke-width:4px;\n 97d23764-ad4a-4d69-948c-c81afb76fbaf[\"Output\\nBusco image\"];\n 15 --> 97d23764-ad4a-4d69-948c-c81afb76fbaf;\n style 97d23764-ad4a-4d69-948c-c81afb76fbaf stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Funannotate", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "errors": null, + "id": 7, + "input_connections": { + "refGenomeSource|genomeFastaFiles": { + "id": 0, + "output_name": "output" + }, + "singlePaired|input1": { + "id": 1, + "output_name": "output" + }, + "singlePaired|input2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RNA STAR", + "name": "refGenomeSource" + }, + { + "description": "runtime parameter for tool RNA STAR", + "name": "singlePaired" + }, + { + "description": "runtime parameter for tool RNA STAR", + "name": "singlePaired" + } + ], + "label": null, + "name": "RNA STAR", + "outputs": [ + { + "name": "output_log", + "type": "txt" + }, + { + "name": "splice_junctions", + "type": "interval" + }, + { + "name": "mapped_reads", + "type": "bam" + } + ], + "position": { + "left": 766.699951171875, + "top": 239.0 + }, + "post_job_actions": { + "HideDatasetActionoutput_log": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_log" + }, + "HideDatasetActionsplice_junctions": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "splice_junctions" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "tool_shed_repository": { + "changeset_revision": "3ea5a2a63fa2", + "name": "rgrnastar", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"algo\": {\"params\": {\"settingsType\": \"default\", \"__current_case__\": 0}}, \"chimOutType\": \"\", \"filter\": {\"basic_filters\": [\"exclude_unmapped\"], \"output_params2\": {\"output_select2\": \"no\", \"__current_case__\": 1}}, \"oformat\": {\"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\", \"ch\"], \"HI_offset\": \"1\", \"outSAMprimaryFlag\": \"OneBestScore\", \"outSAMmapqUnique\": \"60\"}, \"outWig\": {\"outWigType\": \"None\", \"__current_case__\": 0, \"outWigStrand\": \"false\"}, \"perf\": {\"outBAMsortingBinsN\": \"50\", \"winAnchorMultimapNmax\": \"50\"}, \"refGenomeSource\": {\"geneSource\": \"history\", \"__current_case__\": 1, \"genomeFastaFiles\": {\"__class__\": \"RuntimeValue\"}, \"genomeSAindexNbases\": \"11\", \"GTFconditional\": {\"GTFselect\": \"without-gtf\", \"__current_case__\": 1, \"quantmode_output\": {\"quantMode\": \"-\", \"__current_case__\": 0}}}, \"singlePaired\": {\"sPaired\": \"paired\", \"__current_case__\": 1, \"input1\": {\"__class__\": \"RuntimeValue\"}, \"input2\": {\"__class__\": \"RuntimeValue\"}}, \"twopass\": {\"twopassMode\": \"None\", \"__current_case__\": 0, \"twopass_read_subset\": \"\", \"sj_precalculated\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.7.10b+galaxy3", + "type": "tool", + "uuid": "269a3794-e421-4826-a5de-8a328fd194bd", + "workflow_outputs": [ + { + "label": "Mapped RNASeq", + "output_name": "mapped_reads", + "uuid": "79cf59ea-3aef-4cb8-9c70-5b42e03a5da9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "evidences|prot_evidence|protein_evidence": { + "id": 3, + "output_name": "output" + }, + "evidences|rna_bam": { + "id": 7, + "output_name": "mapped_reads" + }, + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "database" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "evidences" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "evidences" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "genemark" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "genemark" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "input" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "other_predictors" + }, + { + "description": "runtime parameter for tool Funannotate predict annotation", + "name": "parameters" + } + ], + "label": null, + "name": "Funannotate predict annotation", + "outputs": [ + { + "name": "annot_gbk", + "type": "genbank" + }, + { + "name": "annot_tbl", + "type": "txt" + }, + { + "name": "annot_gff3", + "type": "gff3" + }, + { + "name": "fasta_proteins", + "type": "fasta" + }, + { + "name": "fasta_transcripts_mrna", + "type": "fasta" + }, + { + "name": "fasta_transcripts_cds", + "type": "fasta" + }, + { + "name": "tbl2asn_report", + "type": "txt" + }, + { + "name": "tbl2asn_error", + "type": "txt" + }, + { + "name": "tbl2asn_validation", + "type": "txt" + }, + { + "name": "stats", + "type": "json" + } + ], + "position": { + "left": 1055.2666015625, + "top": 65.88333129882812 + }, + "post_job_actions": { + "HideDatasetActionannot_gbk": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "annot_gbk" + }, + "HideDatasetActionannot_gff3": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "annot_gff3" + }, + "HideDatasetActionannot_tbl": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "annot_tbl" + }, + "HideDatasetActionfasta_transcripts_cds": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fasta_transcripts_cds" + }, + "HideDatasetActionfasta_transcripts_mrna": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fasta_transcripts_mrna" + }, + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "HideDatasetActiontbl2asn_error": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "tbl2asn_error" + }, + "HideDatasetActiontbl2asn_report": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "tbl2asn_report" + }, + "HideDatasetActiontbl2asn_validation": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "tbl2asn_validation" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy0", + "tool_shed_repository": { + "changeset_revision": "51b6ee65ef7f", + "name": "funannotate_predict", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"augustus\": {\"augustus_species\": \"none\", \"min_training_models\": \"200\", \"optimize_augustus\": \"false\"}, \"busco\": {\"busco_db\": \"mucorales_odb10\", \"busco_seed_species\": \"rhizopus_oryzae\"}, \"database\": {\"__class__\": \"RuntimeValue\"}, \"evidences\": {\"rna_bam\": {\"__class__\": \"RuntimeValue\"}, \"transcript_evidence\": {\"__class__\": \"RuntimeValue\"}, \"prot_evidence\": {\"prot_evidence_source\": \"custom\", \"__current_case__\": 1, \"protein_evidence\": {\"__class__\": \"RuntimeValue\"}}, \"p2g_pident\": \"80\", \"p2g_prefilter\": \"diamond\"}, \"evm\": {\"repeats2evm\": \"false\", \"evm_partitioning\": {\"evm_partition\": \"yes\", \"__current_case__\": 0, \"evm_partition_interval\": \"1500\"}, \"weights\": \"\"}, \"filtering\": {\"min_intronlen\": \"10\", \"max_intronlen\": \"3000\", \"min_protlen\": \"50\", \"keep_no_stops\": \"false\", \"repeat_filter\": \"overlap blast\"}, \"force\": \"true\", \"genemark\": {\"genemark_license\": {\"__class__\": \"RuntimeValue\"}, \"genemark_mode\": \"ES\", \"genemark_mod\": {\"__class__\": \"RuntimeValue\"}, \"soft_mask\": \"2000\"}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"organism\": {\"species\": \"Mucor mucedo\", \"isolate\": \"\", \"strain\": \"muc1\", \"organism\": \"false\", \"ploidy\": \"1\", \"SeqCenter\": \"CFMR\", \"SeqAccession\": \"12345\", \"name\": \"FUN_\", \"numbering\": \"1\"}, \"other_predictors\": {\"stringtie\": {\"__class__\": \"RuntimeValue\"}, \"maker_gff\": {\"__class__\": \"RuntimeValue\"}, \"pasa_gff\": {\"__class__\": \"RuntimeValue\"}, \"pasa_gff_weight\": \"1\", \"other_gff\": {\"__class__\": \"RuntimeValue\"}, \"other_gff_weight\": \"1\"}, \"outputs\": [\"gbk\", \"tbl\", \"gff3\", \"proteins_fa\", \"mrna_transcripts_fa\", \"cds_transcripts_fa\", \"tbl2asn_report\", \"tbl2asn_error\", \"tbl2asn_validation\", \"stats\"], \"parameters\": {\"__class__\": \"RuntimeValue\"}, \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.15+galaxy0", + "type": "tool", + "uuid": "aefc0275-b611-4ede-9650-2e16553a7352", + "workflow_outputs": [ + { + "label": null, + "output_name": "fasta_proteins", + "uuid": "aa7fb986-b7db-4353-a83b-3f1591911388" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "errors": null, + "id": 9, + "input_connections": { + "ortho_method|input": { + "id": 8, + "output_name": "fasta_proteins" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool eggNOG Mapper", + "name": "ortho_method" + } + ], + "label": null, + "name": "eggNOG Mapper", + "outputs": [ + { + "name": "seed_orthologs", + "type": "tabular" + }, + { + "name": "annotations", + "type": "tabular" + } + ], + "position": { + "left": 1444.9666748046875, + "top": 418.7333068847656 + }, + "post_job_actions": { + "HideDatasetActionseed_orthologs": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "seed_orthologs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "tool_shed_repository": { + "changeset_revision": "9d1fbff733cf", + "name": "eggnog_mapper", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation_options\": {\"no_annot\": \"\", \"__current_case__\": 0, \"seed_ortholog_evalue\": \"0.001\", \"seed_ortholog_score\": null, \"tax_scope\": null, \"target_orthologs\": \"all\", \"go_evidence\": \"non-electronic\"}, \"eggnog_data\": \"5.0.2\", \"ortho_method\": {\"m\": \"diamond\", \"__current_case__\": 0, \"input\": {\"__class__\": \"RuntimeValue\"}, \"input_trans\": {\"itype\": \"proteins\", \"__current_case__\": 0}, \"matrix_gapcosts\": {\"matrix\": \"BLOSUM62\", \"__current_case__\": 2, \"gap_costs\": \"--gapopen 11 --gapextend 1\"}, \"sensmode\": \"sensitive\", \"dmnd_iterate\": \"false\", \"dmnd_ignore_warnings\": \"false\", \"query_cover\": null, \"subject_cover\": null, \"pident\": null, \"evalue\": null, \"score\": \"0.001\"}, \"output_options\": {\"no_file_comments\": \"false\", \"report_orthologs\": \"false\", \"md5\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.8+galaxy3", + "type": "tool", + "uuid": "0d9f93f0-88b3-406b-b8f9-ecb2d74c61e9", + "workflow_outputs": [ + { + "label": null, + "output_name": "annotations", + "uuid": "521fe026-4958-4965-9414-e7074aea7860" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "fasta_proteins" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool InterProScan", + "name": "input" + } + ], + "label": null, + "name": "InterProScan", + "outputs": [ + { + "name": "outfile_tsv", + "type": "tabular" + }, + { + "name": "outfile_xml", + "type": "xml" + } + ], + "position": { + "left": 1475.8499755859375, + "top": 817.8666687011719 + }, + "post_job_actions": { + "HideDatasetActionoutfile_xml": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile_xml" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "tool_shed_repository": { + "changeset_revision": "74810db257cc", + "name": "interproscan", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"applications\": [\"TIGRFAM\", \"SFLD\", \"SUPERFAMILY\", \"PANTHER\", \"Gene3D\", \"Hamap\", \"PrositeProfiles\", \"Coils\", \"SMART\", \"CDD\", \"PRINTS\", \"PIRSR\", \"PrositePatterns\", \"Pfam\", \"MobiDBLite\", \"PIRSF\"], \"database\": \"5.59-91.0\", \"goterms\": \"true\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"iprlookup\": \"false\", \"licensed\": {\"use\": \"true\", \"__current_case__\": 1, \"applications_licensed\": [\"Phobius\", \"SignalP_EUK\", \"TMHMM\"]}, \"oformat\": [\"TSV\", \"XML\"], \"pathways\": \"true\", \"seqtype\": \"p\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.59-91.0+galaxy3", + "type": "tool", + "uuid": "cb7a1910-3c31-47d9-835b-f1bd16a1c3ff", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_tsv", + "uuid": "65e267a7-d3c6-410d-9b44-f655d70d7d9a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "eggnog": { + "id": 9, + "output_name": "annotations" + }, + "input|genbank": { + "id": 8, + "output_name": "annot_gbk" + }, + "iprscan": { + "id": 10, + "output_name": "outfile_xml" + }, + "sbt": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Funannotate functional", + "name": "annotations" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "antismash" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "database" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "eggnog" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "fix" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "input" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "iprscan" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "phobius" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "remove" + }, + { + "description": "runtime parameter for tool Funannotate functional", + "name": "sbt" + } + ], + "label": null, + "name": "Funannotate functional", + "outputs": [ + { + "name": "gbk", + "type": "genbank" + }, + { + "name": "annot", + "type": "tabular" + }, + { + "name": "contigs_fsa", + "type": "fasta" + }, + { + "name": "agp", + "type": "tabular" + }, + { + "name": "tbl", + "type": "txt" + }, + { + "name": "sqn", + "type": "txt" + }, + { + "name": "fa_scaffolds", + "type": "fasta" + }, + { + "name": "fa_proteins", + "type": "fasta" + }, + { + "name": "fa_transcripts_mrna", + "type": "fasta" + }, + { + "name": "fa_transcripts_cds", + "type": "fasta" + }, + { + "name": "gff3", + "type": "gff3" + }, + { + "name": "tbl2asn_report", + "type": "txt" + }, + { + "name": "stats", + "type": "json" + }, + { + "name": "must_fix", + "type": "json" + }, + { + "name": "need_curating", + "type": "json" + }, + { + "name": "new_names_passed", + "type": "json" + } + ], + "position": { + "left": 1877.11669921875, + "top": 101.59999084472656 + }, + "post_job_actions": { + "HideDatasetActionagp": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "agp" + }, + "HideDatasetActionannot": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "annot" + }, + "HideDatasetActioncontigs_fsa": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "contigs_fsa" + }, + "HideDatasetActionfa_scaffolds": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fa_scaffolds" + }, + "HideDatasetActionmust_fix": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "must_fix" + }, + "HideDatasetActionneed_curating": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "need_curating" + }, + "HideDatasetActionnew_names_passed": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "new_names_passed" + }, + "HideDatasetActionsqn": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "sqn" + }, + "HideDatasetActiontbl": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "tbl" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy0", + "tool_shed_repository": { + "changeset_revision": "9feee7fc49a1", + "name": "funannotate_annotate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotations\": {\"__class__\": \"RuntimeValue\"}, \"antismash\": {\"__class__\": \"RuntimeValue\"}, \"busco_db\": \"mucorales_odb10\", \"database\": {\"__class__\": \"RuntimeValue\"}, \"eggnog\": {\"__class__\": \"RuntimeValue\"}, \"fix\": {\"__class__\": \"RuntimeValue\"}, \"input\": {\"input_type\": \"gbk\", \"__current_case__\": 0, \"genbank\": {\"__class__\": \"RuntimeValue\"}}, \"iprscan\": {\"__class__\": \"RuntimeValue\"}, \"isolate\": \"\", \"outputs\": [\"gbk\", \"annotations\", \"contigs_fsa\", \"agp\", \"tbl\", \"sqn\", \"scaffolds_fa\", \"proteins_fa\", \"mrna_transcripts_fa\", \"cds_transcripts_fa\", \"gff3\", \"discrepency\", \"stats\", \"must_fix\", \"need_curating\", \"new_names_passed\"], \"phobius\": {\"__class__\": \"RuntimeValue\"}, \"remove\": {\"__class__\": \"RuntimeValue\"}, \"rename\": \"\", \"sbt\": {\"__class__\": \"RuntimeValue\"}, \"strain\": \"muc1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.15+galaxy0", + "type": "tool", + "uuid": "e07de1e0-8f91-4477-b951-7d97dba2e397", + "workflow_outputs": [ + { + "label": "Final annotation (genbank)", + "output_name": "gbk", + "uuid": "d0694cd1-6d81-4d72-83b9-94cb57dc1502" + }, + { + "label": "Final annotation (CDS sequences)", + "output_name": "fa_transcripts_cds", + "uuid": "9a1e7b70-1090-41ed-8637-65b7372a9f6c" + }, + { + "label": "Final annotation (mRNA sequences)", + "output_name": "fa_transcripts_mrna", + "uuid": "99fffa40-2196-491d-9a66-559ebf2d9561" + }, + { + "label": "Final annotation (protein sequences)", + "output_name": "fa_proteins", + "uuid": "17b03b77-0485-4176-b2b3-03bfa2d3bcb0" + }, + { + "label": null, + "output_name": "tbl2asn_report", + "uuid": "d3d4daec-75fe-4071-af37-c2907e46f5c1" + }, + { + "label": null, + "output_name": "stats", + "uuid": "4a682ab6-8a6f-4a0f-bb0e-ba796f587ddc" + }, + { + "label": "Final annotation (GFF3)", + "output_name": "gff3", + "uuid": "4a0602fc-e6d2-43fc-9957-344707c22c05" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "reference_genome|genome": { + "id": 0, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 11, + "output_name": "gff3" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 7, + "output_name": "mapped_reads" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool JBrowse", + "name": "reference_genome" + } + ], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 2152.60009765625, + "top": 0.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a6e57ff585c0", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"RuntimeValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Annotation\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"RNASeq\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"auto_snp\": \"true\", \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.11+galaxy1", + "type": "tool", + "uuid": "e6d0e687-1a13-482b-a00a-28c7304d59ac", + "workflow_outputs": [ + { + "label": "JBrowse", + "output_name": "output", + "uuid": "ac4d8805-f123-44d2-b30f-8ac906cc471f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "input": [ + { + "id": 5, + "output_name": "output" + }, + { + "id": 11, + "output_name": "gbk" + } + ] + }, + "inputs": [ + { + "description": "runtime parameter for tool Funannotate compare", + "name": "database" + }, + { + "description": "runtime parameter for tool Funannotate compare", + "name": "proteinortho" + } + ], + "label": null, + "name": "Funannotate compare", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 2318, + "top": 403.7333068847656 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a7ce2601500c", + "name": "funannotate_compare", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"database\": {\"__class__\": \"RuntimeValue\"}, \"go_fdr\": \"0.05\", \"heatmap_stdev\": \"1.0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"ml\": {\"ml_method\": \"iqtree\", \"__current_case__\": 0}, \"num_orthos\": \"500\", \"proteinortho\": {\"__class__\": \"RuntimeValue\"}, \"run_dnds\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.15+galaxy0", + "type": "tool", + "uuid": "750137e5-2cac-4bec-8337-03dab562a7a5", + "workflow_outputs": [ + { + "label": "Funannotate compare report", + "output_name": "output", + "uuid": "e531c81f-f6b7-4c82-a712-c562873ff714" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/aegean_parseval/aegean_parseval/0.16.0", + "errors": null, + "id": 14, + "input_connections": { + "predictiongff3": { + "id": 6, + "output_name": "output" + }, + "referencegff3": { + "id": 11, + "output_name": "gff3" + } + }, + "inputs": [], + "label": null, + "name": "AEGeAn ParsEval", + "outputs": [ + { + "name": "output_html", + "type": "html" + } + ], + "position": { + "left": 2318.5, + "top": 643.7333068847656 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/aegean_parseval/aegean_parseval/0.16.0", + "tool_shed_repository": { + "changeset_revision": "1b52f0c8ad7f", + "name": "aegean_parseval", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"delta\": \"0\", \"maxtrans\": \"32\", \"output_type\": \"html\", \"predictiongff3\": {\"__class__\": \"ConnectedValue\"}, \"predlabel\": \"\", \"referencegff3\": {\"__class__\": \"ConnectedValue\"}, \"refrlabel\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.16.0", + "type": "tool", + "uuid": "b5870c4b-d799-4da0-83cc-7dd5a0b049e4", + "workflow_outputs": [ + { + "label": "AEGeAN report", + "output_name": "output_html", + "uuid": "0d776b46-2c1c-4083-9f9d-a213fa62eb81" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 11, + "output_name": "fa_proteins" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Busco", + "name": "input" + } + ], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "summary_image", + "type": "png" + } + ], + "position": { + "left": 2252.2666015625, + "top": 1072.0666809082031 + }, + "post_job_actions": { + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "94170eee0ad8", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\"}, \"busco_mode\": {\"mode\": \"prot\", \"__current_case__\": 2}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"lineage\": {\"lineage_mode\": \"select_lineage\", \"__current_case__\": 1, \"lineage_dataset\": \"mucorales_odb10\"}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"outputs\": [\"short_summary\", \"image\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.4.6+galaxy0", + "type": "tool", + "uuid": "bec3d4d9-88e6-4ea0-beb6-219d5c727290", + "workflow_outputs": [ + { + "label": "Busco summary", + "output_name": "busco_sum", + "uuid": "57a619f5-b331-4ca6-8e6e-72eb61860032" + }, + { + "label": "Busco image", + "output_name": "summary_image", + "uuid": "97d23764-ad4a-4d69-948c-c81afb76fbaf" + } + ] + } + ], + "parent_id": "genome-annotation/funannotate", + "path": "topics/genome-annotation/tutorials/funannotate/workflows/funannotate.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": true, + "title": "Funannotate", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-funannotate/versions/funannotate", + "tutorial_id": "funannotate", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/funannotate/workflows/funannotate.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/funannotate/workflows/funannotate.html", + "version": 1, + "wfid": "genome-annotation-funannotate", + "wfname": "funannotate", + "workflow": "funannotate.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/interproscan/interproscan/5.59-91.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/eggnog_mapper/eggnog_mapper/2.1.8+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/aegean_parseval/aegean_parseval/0.16.0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_annotate/funannotate_annotate/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_compare/funannotate_compare/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/funannotate_predict/funannotate_predict/1.8.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3" + ], + "workflowhub_id": "1202" + } + ], + "zenodo_link": "https://zenodo.org/record/7867921" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "gffread", + "owner": "devteam", + "revisions": "0232f19d300f", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "1440ae06552f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "2bb2e07a7a21", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jcvi_gff_stats", + "owner": "iuc", + "revisions": "8cffbd184762", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maker", + "owner": "iuc", + "revisions": "96ac930d84fa", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maker_map_ids", + "owner": "iuc", + "revisions": "326f9c294b09", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "simon-gladman", + "revisions": "20ca2574216a", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: gffread\n owner: devteam\n revisions: 0232f19d300f\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 1440ae06552f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 2bb2e07a7a21\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jcvi_gff_stats\n owner: iuc\n revisions: 8cffbd184762\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maker\n owner: iuc\n revisions: 96ac930d84fa\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maker_map_ids\n owner: iuc\n revisions: 326f9c294b09\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: simon-gladman\n revisions: 20ca2574216a\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker-short/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + } + ], + "dir": "topics/genome-annotation/tutorials/annotation-with-maker-short", + "edam_operation": [ + "Genome assembly", + "Sequence annotation", + "Transcriptome assembly", + "Genome visualisation", + "Genome annotation", + "Sequence assembly validation", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/annotation-with-maker-short", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Maker allows to annotate a eukaryotic genome.", + "BUSCO and JBrowse allow to inspect the quality of an annotation." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Load genome into Galaxy", + "Annotate genome with Maker", + "Evaluate annotation quality with BUSCO", + "View annotations in JBrowse" + ], + "pageviews": 4070, + "priority": 3, + "pub_date": "2021-01-12", + "questions": [ + "How to annotate an eukaryotic genome?", + "How to evaluate and visualize annotated genomic features?" + ], + "short_id": "T00167", + "short_tools": [ + "jcvi_gff_stats", + "gffread", + "jbrowse", + "busco", + "fasta-stats", + "maker", + "maker_map_ids" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "gmod", + "eukaryote", + "maker", + "jbrowse1" + ], + "time_estimation": "2h", + "title": "Genome annotation with Maker (short)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.10", + "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.10", + "toolshed.g2.bx.psu.edu/repos/simon-gladman/fasta_stats/fasta-stats/1.0.0" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "annotation-with-maker-short", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-maker-short/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker-short/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker-short/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 192, + "visitors": 2763, + "workflows": [ + { + "creators": [], + "description": "Genome annotation with Maker (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome sequence\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEST and/or cDNA\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProteins\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSNAP model\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAugustus model\"]\n 5[label=\"Fasta Statistics\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Busco\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Maker\"]\n 4 -> 7 [label=\"output\"]\n 3 -> 7 [label=\"output\"]\n 1 -> 7 [label=\"output\"]\n 0 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Map annotation ids\"]\n 7 -> 8 [label=\"output_gff\"]\n 9[label=\"Genome annotation statistics\"]\n 8 -> 9 [label=\"renamed\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"gffread\"]\n 8 -> 10 [label=\"renamed\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"JBrowse\"]\n 0 -> 11 [label=\"output\"]\n 8 -> 11 [label=\"renamed\"]\n 7 -> 11 [label=\"output_evidences\"]\n 12[label=\"Busco\"]\n 10 -> 12 [label=\"output_exons\"]\n k6951417bee0b4e0398e467d262e086dc[color=lightseagreen,label=\"Output\\nBusco summary final round\"]\n 12 -> k6951417bee0b4e0398e467d262e086dc\n}", + "history": [ + { + "hash": "005d964a2e8cb80f8d1bf0b304adc8f9d7c9ff76", + "message": "fix workflows", + "num": 2, + "short_hash": "005d964a2", + "unix": "1609752597" + }, + { + "hash": "774f2aa374452d48fd29ee85513c3dc3a7f137f5", + "message": "update maker tutorial and add a short version", + "num": 1, + "short_hash": "774f2aa37", + "unix": "1609431273" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome sequence" + } + ], + "label": "Genome sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 94.08332824707031, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 11.883331298828125, + "width": 200, + "x": -313.33331298828125, + "y": 11.883331298828125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a361a75e-5fa4-44ca-a4b7-cc9054a73054", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a09d16c-18af-4605-8416-4966fe918677" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "EST and/or cDNA" + } + ], + "label": "EST and/or cDNA", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 214.0833282470703, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 131.88333129882812, + "width": 200, + "x": -313.33331298828125, + "y": 131.88333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "6b3edbe9-085d-46ae-9ae3-96e876c003e0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c5c5fb8f-9932-499c-b404-c142aedd1aa5" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Proteins" + } + ], + "label": "Proteins", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 313.68333435058594, + "height": 61.80000305175781, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 251.88333129882812, + "width": 200, + "x": -313.33331298828125, + "y": 251.88333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ce4ee756-1713-4e6a-898c-b85a834712bc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbbe9e59-ccd5-4925-a7a3-e1d094284fca" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SNAP model" + } + ], + "label": "SNAP model", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 413.68333435058594, + "height": 61.80000305175781, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 351.8833312988281, + "width": 200, + "x": -313.33331298828125, + "y": 351.8833312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ebf1f01c-e804-462a-92cf-670012b103b3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ecfd7af4-f95c-4b2d-9f06-8e851a0c4d9e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Augustus model" + } + ], + "label": "Augustus model", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 554.0833282470703, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 471.8833312988281, + "width": 200, + "x": -313.33331298828125, + "y": 471.8833312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "586af078-09ce-476b-9eb7-55e443a8eeaf", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7259eb8b-9c2d-4eff-a49d-1b447e905314" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGenome sequence\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nEST and/or cDNA\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nProteins\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nSNAP model\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nAugustus model\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Fasta Statistics\"];\n 0 -->|output| 5;\n 6[\"Busco\"];\n 0 -->|output| 6;\n 7[\"Maker\"];\n 4 -->|output| 7;\n 3 -->|output| 7;\n 1 -->|output| 7;\n 0 -->|output| 7;\n 2 -->|output| 7;\n 8[\"Map annotation ids\"];\n 7 -->|output_gff| 8;\n 9[\"Genome annotation statistics\"];\n 8 -->|renamed| 9;\n 0 -->|output| 9;\n 10[\"gffread\"];\n 8 -->|renamed| 10;\n 0 -->|output| 10;\n 11[\"JBrowse\"];\n 0 -->|output| 11;\n 8 -->|renamed| 11;\n 7 -->|output_evidences| 11;\n 12[\"Busco\"];\n 10 -->|output_exons| 12;\n 6951417b-ee0b-4e03-98e4-67d262e086dc[\"Output\\nBusco summary final round\"];\n 12 --> 6951417b-ee0b-4e03-98e4-67d262e086dc;\n style 6951417b-ee0b-4e03-98e4-67d262e086dc stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Genome annotation with Maker (short)", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome sequence" + } + ], + "label": "Genome sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 94.08332824707031, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 11.883331298828125, + "width": 200, + "x": -313.33331298828125, + "y": 11.883331298828125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a361a75e-5fa4-44ca-a4b7-cc9054a73054", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a09d16c-18af-4605-8416-4966fe918677" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "EST and/or cDNA" + } + ], + "label": "EST and/or cDNA", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 214.0833282470703, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 131.88333129882812, + "width": 200, + "x": -313.33331298828125, + "y": 131.88333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "6b3edbe9-085d-46ae-9ae3-96e876c003e0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c5c5fb8f-9932-499c-b404-c142aedd1aa5" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Proteins" + } + ], + "label": "Proteins", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 313.68333435058594, + "height": 61.80000305175781, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 251.88333129882812, + "width": 200, + "x": -313.33331298828125, + "y": 251.88333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ce4ee756-1713-4e6a-898c-b85a834712bc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cbbe9e59-ccd5-4925-a7a3-e1d094284fca" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SNAP model" + } + ], + "label": "SNAP model", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 413.68333435058594, + "height": 61.80000305175781, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 351.8833312988281, + "width": 200, + "x": -313.33331298828125, + "y": 351.8833312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ebf1f01c-e804-462a-92cf-670012b103b3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ecfd7af4-f95c-4b2d-9f06-8e851a0c4d9e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Augustus model" + } + ], + "label": "Augustus model", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 554.0833282470703, + "height": 82.19999694824219, + "left": -313.33331298828125, + "right": -113.33331298828125, + "top": 471.8833312988281, + "width": 200, + "x": -313.33331298828125, + "y": 471.8833312988281 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "586af078-09ce-476b-9eb7-55e443a8eeaf", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7259eb8b-9c2d-4eff-a49d-1b447e905314" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/simon-gladman/fasta_stats/fasta-stats/1.0.0", + "errors": null, + "id": 5, + "input_connections": { + "dataset": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats", + "type": "tabular" + } + ], + "position": { + "bottom": 34.28334045410156, + "height": 154.40000915527344, + "left": -15.350006103515625, + "right": 184.64999389648438, + "top": -120.11666870117188, + "width": 200, + "x": -15.350006103515625, + "y": -120.11666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/simon-gladman/fasta_stats/fasta-stats/1.0.0", + "tool_shed_repository": { + "changeset_revision": "20ca2574216a", + "name": "fasta_stats", + "owner": "simon-gladman", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "43cab601-f700-4278-bd0a-7f0997cf75cf", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "7840b5e6-2a7e-4b3c-bea3-4a0d70fea21b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": -157.71664428710938, + "height": 276.4000244140625, + "left": -15.350006103515625, + "right": 184.64999389648438, + "top": -434.1166687011719, + "width": 200, + "x": -15.350006103515625, + "y": -434.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"geno\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "876334be-d7e5-4504-bb1b-727472839c02", + "workflow_outputs": [ + { + "label": null, + "output_name": "busco_sum", + "uuid": "59ce9dc8-762f-4c38-aded-5d031db50609" + }, + { + "label": null, + "output_name": "busco_missing", + "uuid": "9b000535-1702-4888-951c-4cc8e782a511" + }, + { + "label": null, + "output_name": "busco_table", + "uuid": "76c0d8fc-4e81-4ba0-b8b2-ebfda0ba5786" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.10", + "errors": null, + "id": 8, + "input_connections": { + "maker_gff": { + "id": 7, + "output_name": "output_gff" + } + }, + "inputs": [], + "label": null, + "name": "Map annotation ids", + "outputs": [ + { + "name": "renamed", + "type": "gff" + }, + { + "name": "id_map", + "type": "tabular" + } + ], + "position": { + "bottom": 318.8833312988281, + "height": 246, + "left": 272.66668701171875, + "right": 472.66668701171875, + "top": 72.88333129882812, + "width": 200, + "x": 272.66668701171875, + "y": 72.88333129882812 + }, + "post_job_actions": { + "ChangeDatatypeActionrenamed": { + "action_arguments": { + "newtype": "gff3" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "renamed" + }, + "HideDatasetActionid_map": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "id_map" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.10", + "tool_shed_repository": { + "changeset_revision": "f1912d5575df", + "name": "maker_map_ids", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"justify\": \"6\", \"maker_gff\": {\"__class__\": \"ConnectedValue\"}, \"prefix\": \"TEST\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.31.11", + "type": "tool", + "uuid": "b1127093-0aae-4bfa-b474-042b838a8299", + "workflow_outputs": [ + { + "label": null, + "output_name": "renamed", + "uuid": "e8686326-b443-402b-bb0e-b4a02a8815a7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "errors": null, + "id": 9, + "input_connections": { + "gff": { + "id": 8, + "output_name": "renamed" + }, + "ref_genome|genome": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Genome annotation statistics", + "outputs": [ + { + "name": "summary", + "type": "txt" + }, + { + "name": "graphs", + "type": "pdf" + } + ], + "position": { + "bottom": 363.2833557128906, + "height": 276.4000244140625, + "left": 560.6500244140625, + "right": 760.6500244140625, + "top": 86.88333129882812, + "width": 200, + "x": 560.6500244140625, + "y": 86.88333129882812 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "tool_shed_repository": { + "changeset_revision": "8cffbd184762", + "name": "jcvi_gff_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gff\": {\"__class__\": \"ConnectedValue\"}, \"ref_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.4", + "type": "tool", + "uuid": "14236032-ec57-4beb-ab0a-e44bf845643c", + "workflow_outputs": [ + { + "label": null, + "output_name": "graphs", + "uuid": "782e21db-4be6-4230-92b5-3ea9004dda04" + }, + { + "label": null, + "output_name": "summary", + "uuid": "a4dff39c-0479-4a25-ac62-b132c1083604" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "renamed" + }, + "reference_genome|genome_fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool gffread", + "name": "chr_replace" + } + ], + "label": null, + "name": "gffread", + "outputs": [ + { + "name": "output_exons", + "type": "fasta" + }, + { + "name": "output_cds", + "type": "fasta" + }, + { + "name": "output_pep", + "type": "fasta" + } + ], + "position": { + "bottom": 48.683319091796875, + "height": 316.79998779296875, + "left": 560.6500244140625, + "right": 760.6500244140625, + "top": -268.1166687011719, + "width": 200, + "x": 560.6500244140625, + "y": -268.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.1", + "tool_shed_repository": { + "changeset_revision": "0232f19d300f", + "name": "gffread", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chr_replace\": {\"__class__\": \"RuntimeValue\"}, \"decode_url\": \"false\", \"expose\": \"false\", \"filtering\": null, \"full_gff_attribute_preservation\": \"false\", \"gffs\": {\"gff_fmt\": \"none\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"maxintron\": \"\", \"merging\": {\"merge_sel\": \"none\", \"__current_case__\": 0}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 2, \"genome_fasta\": {\"__class__\": \"ConnectedValue\"}, \"ref_filtering\": null, \"fa_outputs\": [\"-w exons.fa\", \"-x cds.fa\", \"-y pep.fa\"]}, \"region\": {\"region_filter\": \"none\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.1.1", + "type": "tool", + "uuid": "3b5ecaf4-2d08-42f8-a6f0-f05ad9e5fe92", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_cds", + "uuid": "0df7b9b5-1ed1-4cf4-b483-a604862f4540" + }, + { + "label": null, + "output_name": "output_exons", + "uuid": "f485f8fe-0d63-49ba-a88d-dfc8e03db553" + }, + { + "label": null, + "output_name": "output_pep", + "uuid": "7430528c-9af5-4e05-ba6c-bbf95f19ad7e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "errors": null, + "id": 11, + "input_connections": { + "reference_genome|genome": { + "id": 0, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 8, + "output_name": "renamed" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 7, + "output_name": "output_evidences" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool JBrowse", + "name": "reference_genome" + } + ], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 677.2833557128906, + "height": 276.4000244140625, + "left": 560.6500244140625, + "right": 760.6500244140625, + "top": 400.8833312988281, + "width": 200, + "x": 560.6500244140625, + "y": 400.8833312988281 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "tool_shed_repository": { + "changeset_revision": "8774b28235bb", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"RuntimeValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Maker annotation\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"Maker evidences\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"match_part\": {\"match_part_select\": \"true\", \"__current_case__\": 0, \"name\": {\"__class__\": \"RuntimeValue\"}}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.10+galaxy0", + "type": "tool", + "uuid": "5a978f9d-7adc-4e30-8b20-dcfa27f18dfa", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c7432de7-b6b4-457a-8c0a-69c44418234d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "output_exons" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 100.88333129882812, + "height": 256, + "left": 838.6666870117188, + "right": 1038.6666870117188, + "top": -155.11666870117188, + "width": 200, + "x": 838.6666870117188, + "y": -155.11666870117188 + }, + "post_job_actions": { + "HideDatasetActionbusco_missing": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_missing" + }, + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"tran\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "dee27b5d-de92-4e99-898c-3bf3fea6ee72", + "workflow_outputs": [ + { + "label": "Busco summary final round", + "output_name": "busco_sum", + "uuid": "6951417b-ee0b-4e03-98e4-67d262e086dc" + } + ] + } + ], + "parent_id": "genome-annotation/annotation-with-maker-short", + "path": "topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Genome annotation with Maker (short)", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-maker-short/versions/main-workflow", + "tutorial_id": "annotation-with-maker-short", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker-short/workflows/main_workflow.html", + "version": 1, + "wfid": "genome-annotation-annotation-with-maker-short", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/3.0.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.10", + "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.10", + "toolshed.g2.bx.psu.edu/repos/simon-gladman/fasta_stats/fasta-stats/1.0.0" + ], + "workflowhub_id": "1194" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4406623" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "augustus_training", + "owner": "bgruening", + "revisions": "6519ebe25019", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gffread", + "owner": "devteam", + "revisions": "69e0806b63a4", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "602fb8e63aa7", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "9c620a950d3a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "6cd09d7b5f37", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jcvi_gff_stats", + "owner": "iuc", + "revisions": "8cffbd184762", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maker", + "owner": "iuc", + "revisions": "d46d803ca6cc", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maker_map_ids", + "owner": "iuc", + "revisions": "e906fa778440", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snap_training", + "owner": "iuc", + "revisions": "2a598c0aa042", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: augustus_training\n owner: bgruening\n revisions: 6519ebe25019\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gffread\n owner: devteam\n revisions: 69e0806b63a4\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: 602fb8e63aa7\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 9c620a950d3a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 6cd09d7b5f37\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jcvi_gff_stats\n owner: iuc\n revisions: 8cffbd184762\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maker\n owner: iuc\n revisions: d46d803ca6cc\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maker_map_ids\n owner: iuc\n revisions: e906fa778440\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snap_training\n owner: iuc\n revisions: 2a598c0aa042\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + } + ], + "dir": "topics/genome-annotation/tutorials/annotation-with-maker", + "edam_operation": [ + "Ab-initio gene prediction", + "Genome annotation", + "Sequence assembly validation", + "Homology-based gene prediction", + "Genome visualisation", + "Operation", + "Transcriptome assembly", + "Sequence annotation", + "Genome assembly", + "Gene prediction", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/annotation-with-maker", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Maker allows to annotate a eukaryotic genome.", + "BUSCO and JBrowse allow to inspect the quality of an annotation." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Load genome into Galaxy", + "Annotate genome with Maker", + "Evaluate annotation quality with BUSCO", + "View annotations in JBrowse" + ], + "pageviews": 21535, + "priority": 4, + "pub_date": "2018-09-24", + "questions": [ + "How to annotate an eukaryotic genome?", + "How to evaluate and visualize annotated genomic features?" + ], + "short_id": "T00166", + "short_tools": [ + "jcvi_gff_stats", + "gffread", + "jbrowse", + "busco", + "fasta-stats", + "snap_training", + "maker", + "augustus_training", + "maker_map_ids" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "eukaryote", + "jbrowse1", + "maker" + ], + "time_estimation": "4h", + "title": "Genome annotation with Maker", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/augustus_training/augustus_training/3.3.3", + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.10+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.11", + "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.11", + "toolshed.g2.bx.psu.edu/repos/iuc/snap_training/snap_training/2013_11_29+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "annotation-with-maker", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-maker/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/annotation-with-maker/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 114, + "visitors": 11527, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0003-0914-2470", + "name": "Anthony Bretaudeau" + }, + { + "class": "Organization", + "name": "French National Institute for Agriculture, Food, and Environment (INRAE)" + } + ], + "description": "Genome annotation with Maker", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEST and/or cDNA\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProtein sequences\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome sequence\"]\n 3[label=\"Maker\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Fasta Statistics\"]\n 2 -> 4 [label=\"output\"]\n k2d3829e6f5b946d183e317efff814e09[color=lightseagreen,label=\"Output\\nFasta Statistics on input dataset(s): Fasta summary stats\"]\n 4 -> k2d3829e6f5b946d183e317efff814e09\n 5[label=\"Busco\"]\n 2 -> 5 [label=\"output\"]\n ka15e121423a2484b9c751635fcd61fe3[color=lightseagreen,label=\"Output\\nBUSCO: short summary\"]\n 5 -> ka15e121423a2484b9c751635fcd61fe3\n k7806088df65743899d546a3bdfa233b2[color=lightseagreen,label=\"Output\\nBUSCO: list of missing ortholog genes\"]\n 5 -> k7806088df65743899d546a3bdfa233b2\n k6a27d0f6d83c42b1a7af5f99ba5debe2[color=lightseagreen,label=\"Output\\nBUSCO: full table\"]\n 5 -> k6a27d0f6d83c42b1a7af5f99ba5debe2\n 6[label=\"Train Augustus\"]\n 2 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output_gff\"]\n 7[label=\"Genome annotation statistics\"]\n 3 -> 7 [label=\"output_gff\"]\n 2 -> 7 [label=\"output\"]\n k2bed9aa65f22494d9caaf0ece8464f15[color=lightseagreen,label=\"Output\\nGenome annotation statistics: graphs (first round)\"]\n 7 -> k2bed9aa65f22494d9caaf0ece8464f15\n k71d41ce2e90d435b9b64ab4320524770[color=lightseagreen,label=\"Output\\nGenome annotation statistics: summary (first round)\"]\n 7 -> k71d41ce2e90d435b9b64ab4320524770\n 8[label=\"gffread\"]\n 3 -> 8 [label=\"output_gff\"]\n 2 -> 8 [label=\"output\"]\n 9[label=\"Train SNAP\"]\n 2 -> 9 [label=\"output\"]\n 3 -> 9 [label=\"output_gff\"]\n 10[label=\"Busco\"]\n 8 -> 10 [label=\"output_exons\"]\n ka79ab19d980242ca8ffa8c197a16c8b8[color=lightseagreen,label=\"Output\\nBusco summary first round\"]\n 10 -> ka79ab19d980242ca8ffa8c197a16c8b8\n 11[label=\"Maker\"]\n 6 -> 11 [label=\"output_tar\"]\n 9 -> 11 [label=\"output\"]\n 2 -> 11 [label=\"output\"]\n 3 -> 11 [label=\"output_full\"]\n 12[label=\"gffread\"]\n 11 -> 12 [label=\"output_gff\"]\n 2 -> 12 [label=\"output\"]\n 13[label=\"Train Augustus\"]\n 2 -> 13 [label=\"output\"]\n 11 -> 13 [label=\"output_gff\"]\n k42d5aadd3a8c441d913fee8745a99b0b[color=lightseagreen,label=\"Output\\nAugus: trained model\"]\n 13 -> k42d5aadd3a8c441d913fee8745a99b0b\n 14[label=\"Genome annotation statistics\"]\n 11 -> 14 [label=\"output_gff\"]\n 2 -> 14 [label=\"output\"]\n k9def2c6efd3c4969b5d4d13c187c1144[color=lightseagreen,label=\"Output\\nGenome annotation statistics: graphs (second round)\"]\n 14 -> k9def2c6efd3c4969b5d4d13c187c1144\n k61f7a150a4a246b189f52170d466656e[color=lightseagreen,label=\"Output\\nGenome annotation statistics: summary (second round)\"]\n 14 -> k61f7a150a4a246b189f52170d466656e\n 15[label=\"Train SNAP\"]\n 2 -> 15 [label=\"output\"]\n 11 -> 15 [label=\"output_gff\"]\n k458887f706614bdeab1a875aac6caed8[color=lightseagreen,label=\"Output\\nSNAP: trained model\"]\n 15 -> k458887f706614bdeab1a875aac6caed8\n 16[label=\"Busco\"]\n 12 -> 16 [label=\"output_exons\"]\n kf52b1b410ea54384bd434927273c909c[color=lightseagreen,label=\"Output\\nBusco summary second round\"]\n 16 -> kf52b1b410ea54384bd434927273c909c\n 17[label=\"Maker\"]\n 13 -> 17 [label=\"output_tar\"]\n 15 -> 17 [label=\"output\"]\n 2 -> 17 [label=\"output\"]\n 11 -> 17 [label=\"output_full\"]\n 18[label=\"Map annotation ids\"]\n 17 -> 18 [label=\"output_gff\"]\n k63575dcf54d14cb1b5fba2810b4da807[color=lightseagreen,label=\"Output\\nMap annotation ids: renamed GFF\"]\n 18 -> k63575dcf54d14cb1b5fba2810b4da807\n 19[label=\"JBrowse\"]\n 2 -> 19 [label=\"output\"]\n 3 -> 19 [label=\"output_gff\"]\n 18 -> 19 [label=\"renamed\"]\n 11 -> 19 [label=\"output_gff\"]\n 3 -> 19 [label=\"output_evidences\"]\n 11 -> 19 [label=\"output_evidences\"]\n 17 -> 19 [label=\"output_evidences\"]\n k5a38ae83e17745f3aa9f4c1844584fa5[color=lightseagreen,label=\"Output\\nJBrowse: report\"]\n 19 -> k5a38ae83e17745f3aa9f4c1844584fa5\n 20[label=\"gffread\"]\n 18 -> 20 [label=\"renamed\"]\n 2 -> 20 [label=\"output\"]\n k52fcac23b6124377a19a2e3b667a23e3[color=lightseagreen,label=\"Output\\nGffread: exons\"]\n 20 -> k52fcac23b6124377a19a2e3b667a23e3\n k5c47c25e0ddb4adea5d0873ff4add28c[color=lightseagreen,label=\"Output\\nGffread: translation of cds\"]\n 20 -> k5c47c25e0ddb4adea5d0873ff4add28c\n k84d9183b9589464b9f824dae7f87133e[color=lightseagreen,label=\"Output\\nGffread: cds\"]\n 20 -> k84d9183b9589464b9f824dae7f87133e\n 21[label=\"Genome annotation statistics\"]\n 18 -> 21 [label=\"renamed\"]\n 2 -> 21 [label=\"output\"]\n kf5d4a6bf1ff8435a80847921e25bff3a[color=lightseagreen,label=\"Output\\nGenome annotation statistics: graphs (third round)\"]\n 21 -> kf5d4a6bf1ff8435a80847921e25bff3a\n k5a863bd410f24ac881b6ce8b7f663e42[color=lightseagreen,label=\"Output\\nGenome annotation statistics: summary (third round)\"]\n 21 -> k5a863bd410f24ac881b6ce8b7f663e42\n 22[label=\"Busco\"]\n 20 -> 22 [label=\"output_exons\"]\n k0bc78676eecc4168894d34c4ca07cdf3[color=lightseagreen,label=\"Output\\nBusco summary final round\"]\n 22 -> k0bc78676eecc4168894d34c4ca07cdf3\n}", + "history": [ + { + "hash": "e61e9eba49f4c255dd46e1094355f61a770ba14e", + "message": "Fix workflow", + "num": 12, + "short_hash": "e61e9eba4", + "unix": "1625849450" + }, + { + "hash": "106af0888f3f8cbc7040c20b62adbf52ddfe2186", + "message": "Update maker workflow", + "num": 11, + "short_hash": "106af0888", + "unix": "1625842677" + }, + { + "hash": "005d964a2e8cb80f8d1bf0b304adc8f9d7c9ff76", + "message": "fix workflows", + "num": 10, + "short_hash": "005d964a2", + "unix": "1609752597" + }, + { + "hash": "774f2aa374452d48fd29ee85513c3dc3a7f137f5", + "message": "update maker tutorial and add a short version", + "num": 9, + "short_hash": "774f2aa37", + "unix": "1609431273" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 8, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 7, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "1a3049ca861744336a01f79b6ae1bc8bc46e2b12", + "message": "typos + update workflow", + "num": 6, + "short_hash": "1a3049ca8", + "unix": "1558343672" + }, + { + "hash": "2318b970d421c42bbced1799cfca63ce056ad01f", + "message": "udpate workflow", + "num": 5, + "short_hash": "2318b970d", + "unix": "1557415647" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 4, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "6eef55b7e8306d8ce46ac08e7799f6f65ae106aa", + "message": "Updated install_tutorial_requirements.sh + minor fixes (#1275)", + "num": 3, + "short_hash": "6eef55b7e", + "unix": "1551293676" + }, + { + "hash": "bc6d0ddca2ce262deb405fd92e0dab955488eb49", + "message": "jbrowse part", + "num": 2, + "short_hash": "bc6d0ddca", + "unix": "1536669505" + }, + { + "hash": "7b73f26f84bc0e9dc9e771f7dd89be3e6daddd66", + "message": "update wf", + "num": 1, + "short_hash": "7b73f26f8", + "unix": "1536594667" + } + ], + "inputs": [ + { + "annotation": "It contains the sequences used by Maker to construct gene models.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "It contains the sequences used by Maker to construct gene models.", + "name": "EST and/or cDNA" + } + ], + "label": "EST and/or cDNA", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 287.875, + "height": 81, + "left": 661.46875, + "right": 861.46875, + "top": 206.875, + "width": 200, + "x": 661.46875, + "y": 206.875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "397d1af7-4d12-43d6-955c-e3122978fc92", + "workflow_outputs": [] + }, + { + "annotation": "A set of protein sequences, usually from closely related species or from a curated sequence database like UniProt/SwissProt.", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "A set of protein sequences, usually from closely related species or from a curated sequence database like UniProt/SwissProt.", + "name": "Protein sequences" + } + ], + "label": "Protein sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 459, + "height": 81, + "left": 659.5, + "right": 859.5, + "top": 378, + "width": 200, + "x": 659.5, + "y": 378 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "418c68b0-b726-4f5e-b53c-480f1e7d43b5", + "workflow_outputs": [] + }, + { + "annotation": "This file corresponds to the sequence to be annotated.", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "This file corresponds to the sequence to be annotated.", + "name": "Genome sequence" + } + ], + "label": "Genome sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 1797.03125, + "height": 81, + "left": 661.46875, + "right": 861.46875, + "top": 1716.03125, + "width": 200, + "x": 661.46875, + "y": 1716.03125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "e03b5775-bd22-4528-9f21-20cd396dc6cc", + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nEST and/or cDNA\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nProtein sequences\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nGenome sequence\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Maker\"];\n 0 -->|output| 3;\n 2 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Fasta Statistics\"];\n 2 -->|output| 4;\n 2d3829e6-f5b9-46d1-83e3-17efff814e09[\"Output\\nFasta Statistics on input dataset(s): Fasta summary stats\"];\n 4 --> 2d3829e6-f5b9-46d1-83e3-17efff814e09;\n style 2d3829e6-f5b9-46d1-83e3-17efff814e09 stroke:#2c3143,stroke-width:4px;\n 5[\"Busco\"];\n 2 -->|output| 5;\n a15e1214-23a2-484b-9c75-1635fcd61fe3[\"Output\\nBUSCO: short summary\"];\n 5 --> a15e1214-23a2-484b-9c75-1635fcd61fe3;\n style a15e1214-23a2-484b-9c75-1635fcd61fe3 stroke:#2c3143,stroke-width:4px;\n 7806088d-f657-4389-9d54-6a3bdfa233b2[\"Output\\nBUSCO: list of missing ortholog genes\"];\n 5 --> 7806088d-f657-4389-9d54-6a3bdfa233b2;\n style 7806088d-f657-4389-9d54-6a3bdfa233b2 stroke:#2c3143,stroke-width:4px;\n 6a27d0f6-d83c-42b1-a7af-5f99ba5debe2[\"Output\\nBUSCO: full table\"];\n 5 --> 6a27d0f6-d83c-42b1-a7af-5f99ba5debe2;\n style 6a27d0f6-d83c-42b1-a7af-5f99ba5debe2 stroke:#2c3143,stroke-width:4px;\n 6[\"Train Augustus\"];\n 2 -->|output| 6;\n 3 -->|output_gff| 6;\n 7[\"Genome annotation statistics\"];\n 3 -->|output_gff| 7;\n 2 -->|output| 7;\n 2bed9aa6-5f22-494d-9caa-f0ece8464f15[\"Output\\nGenome annotation statistics: graphs (first round)\"];\n 7 --> 2bed9aa6-5f22-494d-9caa-f0ece8464f15;\n style 2bed9aa6-5f22-494d-9caa-f0ece8464f15 stroke:#2c3143,stroke-width:4px;\n 71d41ce2-e90d-435b-9b64-ab4320524770[\"Output\\nGenome annotation statistics: summary (first round)\"];\n 7 --> 71d41ce2-e90d-435b-9b64-ab4320524770;\n style 71d41ce2-e90d-435b-9b64-ab4320524770 stroke:#2c3143,stroke-width:4px;\n 8[\"gffread\"];\n 3 -->|output_gff| 8;\n 2 -->|output| 8;\n 9[\"Train SNAP\"];\n 2 -->|output| 9;\n 3 -->|output_gff| 9;\n 10[\"Busco\"];\n 8 -->|output_exons| 10;\n a79ab19d-9802-42ca-8ffa-8c197a16c8b8[\"Output\\nBusco summary first round\"];\n 10 --> a79ab19d-9802-42ca-8ffa-8c197a16c8b8;\n style a79ab19d-9802-42ca-8ffa-8c197a16c8b8 stroke:#2c3143,stroke-width:4px;\n 11[\"Maker\"];\n 6 -->|output_tar| 11;\n 9 -->|output| 11;\n 2 -->|output| 11;\n 3 -->|output_full| 11;\n 12[\"gffread\"];\n 11 -->|output_gff| 12;\n 2 -->|output| 12;\n 13[\"Train Augustus\"];\n 2 -->|output| 13;\n 11 -->|output_gff| 13;\n 42d5aadd-3a8c-441d-913f-ee8745a99b0b[\"Output\\nAugus: trained model\"];\n 13 --> 42d5aadd-3a8c-441d-913f-ee8745a99b0b;\n style 42d5aadd-3a8c-441d-913f-ee8745a99b0b stroke:#2c3143,stroke-width:4px;\n 14[\"Genome annotation statistics\"];\n 11 -->|output_gff| 14;\n 2 -->|output| 14;\n 9def2c6e-fd3c-4969-b5d4-d13c187c1144[\"Output\\nGenome annotation statistics: graphs (second round)\"];\n 14 --> 9def2c6e-fd3c-4969-b5d4-d13c187c1144;\n style 9def2c6e-fd3c-4969-b5d4-d13c187c1144 stroke:#2c3143,stroke-width:4px;\n 61f7a150-a4a2-46b1-89f5-2170d466656e[\"Output\\nGenome annotation statistics: summary (second round)\"];\n 14 --> 61f7a150-a4a2-46b1-89f5-2170d466656e;\n style 61f7a150-a4a2-46b1-89f5-2170d466656e stroke:#2c3143,stroke-width:4px;\n 15[\"Train SNAP\"];\n 2 -->|output| 15;\n 11 -->|output_gff| 15;\n 458887f7-0661-4bde-ab1a-875aac6caed8[\"Output\\nSNAP: trained model\"];\n 15 --> 458887f7-0661-4bde-ab1a-875aac6caed8;\n style 458887f7-0661-4bde-ab1a-875aac6caed8 stroke:#2c3143,stroke-width:4px;\n 16[\"Busco\"];\n 12 -->|output_exons| 16;\n f52b1b41-0ea5-4384-bd43-4927273c909c[\"Output\\nBusco summary second round\"];\n 16 --> f52b1b41-0ea5-4384-bd43-4927273c909c;\n style f52b1b41-0ea5-4384-bd43-4927273c909c stroke:#2c3143,stroke-width:4px;\n 17[\"Maker\"];\n 13 -->|output_tar| 17;\n 15 -->|output| 17;\n 2 -->|output| 17;\n 11 -->|output_full| 17;\n 18[\"Map annotation ids\"];\n 17 -->|output_gff| 18;\n 63575dcf-54d1-4cb1-b5fb-a2810b4da807[\"Output\\nMap annotation ids: renamed GFF\"];\n 18 --> 63575dcf-54d1-4cb1-b5fb-a2810b4da807;\n style 63575dcf-54d1-4cb1-b5fb-a2810b4da807 stroke:#2c3143,stroke-width:4px;\n 19[\"JBrowse\"];\n 2 -->|output| 19;\n 3 -->|output_gff| 19;\n 18 -->|renamed| 19;\n 11 -->|output_gff| 19;\n 3 -->|output_evidences| 19;\n 11 -->|output_evidences| 19;\n 17 -->|output_evidences| 19;\n 5a38ae83-e177-45f3-aa9f-4c1844584fa5[\"Output\\nJBrowse: report\"];\n 19 --> 5a38ae83-e177-45f3-aa9f-4c1844584fa5;\n style 5a38ae83-e177-45f3-aa9f-4c1844584fa5 stroke:#2c3143,stroke-width:4px;\n 20[\"gffread\"];\n 18 -->|renamed| 20;\n 2 -->|output| 20;\n 52fcac23-b612-4377-a19a-2e3b667a23e3[\"Output\\nGffread: exons\"];\n 20 --> 52fcac23-b612-4377-a19a-2e3b667a23e3;\n style 52fcac23-b612-4377-a19a-2e3b667a23e3 stroke:#2c3143,stroke-width:4px;\n 5c47c25e-0ddb-4ade-a5d0-873ff4add28c[\"Output\\nGffread: translation of cds\"];\n 20 --> 5c47c25e-0ddb-4ade-a5d0-873ff4add28c;\n style 5c47c25e-0ddb-4ade-a5d0-873ff4add28c stroke:#2c3143,stroke-width:4px;\n 84d9183b-9589-464b-9f82-4dae7f87133e[\"Output\\nGffread: cds\"];\n 20 --> 84d9183b-9589-464b-9f82-4dae7f87133e;\n style 84d9183b-9589-464b-9f82-4dae7f87133e stroke:#2c3143,stroke-width:4px;\n 21[\"Genome annotation statistics\"];\n 18 -->|renamed| 21;\n 2 -->|output| 21;\n f5d4a6bf-1ff8-435a-8084-7921e25bff3a[\"Output\\nGenome annotation statistics: graphs (third round)\"];\n 21 --> f5d4a6bf-1ff8-435a-8084-7921e25bff3a;\n style f5d4a6bf-1ff8-435a-8084-7921e25bff3a stroke:#2c3143,stroke-width:4px;\n 5a863bd4-10f2-4ac8-81b6-ce8b7f663e42[\"Output\\nGenome annotation statistics: summary (third round)\"];\n 21 --> 5a863bd4-10f2-4ac8-81b6-ce8b7f663e42;\n style 5a863bd4-10f2-4ac8-81b6-ce8b7f663e42 stroke:#2c3143,stroke-width:4px;\n 22[\"Busco\"];\n 20 -->|output_exons| 22;\n 0bc78676-eecc-4168-894d-34c4ca07cdf3[\"Output\\nBusco summary final round\"];\n 22 --> 0bc78676-eecc-4168-894d-34c4ca07cdf3;\n style 0bc78676-eecc-4168-894d-34c4ca07cdf3 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Genome annotation with Maker ", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "errors": null, + "id": 4, + "input_connections": { + "dataset": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats", + "type": "tabular" + } + ], + "position": { + "bottom": 1526.4375, + "height": 152, + "left": 722.921875, + "right": 922.921875, + "top": 1374.4375, + "width": 200, + "x": 722.921875, + "y": 1374.4375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "tool_shed_repository": { + "changeset_revision": "9c620a950d3a", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "9cd9564b-b447-4a93-9445-ae3583137010", + "workflow_outputs": [ + { + "label": "Fasta Statistics on input dataset(s): Fasta summary stats", + "output_name": "stats", + "uuid": "2d3829e6-f5b9-46d1-83e3-17efff814e09" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 1989.015625, + "height": 212, + "left": 939.484375, + "right": 1139.484375, + "top": 1777.015625, + "width": 200, + "x": 939.484375, + "y": 1777.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"geno\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "2e99d9de-b48b-4f0f-99da-5f727ad023cc", + "workflow_outputs": [ + { + "label": "BUSCO: short summary", + "output_name": "busco_sum", + "uuid": "a15e1214-23a2-484b-9c75-1635fcd61fe3" + }, + { + "label": "BUSCO: list of missing ortholog genes", + "output_name": "busco_missing", + "uuid": "7806088d-f657-4389-9d54-6a3bdfa233b2" + }, + { + "label": "BUSCO: full table", + "output_name": "busco_table", + "uuid": "6a27d0f6-d83c-42b1-a7af-5f99ba5debe2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "errors": null, + "id": 7, + "input_connections": { + "gff": { + "id": 3, + "output_name": "output_gff" + }, + "ref_genome|genome": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Genome annotation statistics", + "outputs": [ + { + "name": "summary", + "type": "txt" + }, + { + "name": "graphs", + "type": "pdf" + } + ], + "position": { + "bottom": 1247.015625, + "height": 272, + "left": 1247.5, + "right": 1447.5, + "top": 975.015625, + "width": 200, + "x": 1247.5, + "y": 975.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "tool_shed_repository": { + "changeset_revision": "8cffbd184762", + "name": "jcvi_gff_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gff\": {\"__class__\": \"ConnectedValue\"}, \"ref_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.4", + "type": "tool", + "uuid": "af60c4d9-58f2-4f41-a2a3-6458cdcfd404", + "workflow_outputs": [ + { + "label": "Genome annotation statistics: graphs (first round)", + "output_name": "graphs", + "uuid": "2bed9aa6-5f22-494d-9caa-f0ece8464f15" + }, + { + "label": "Genome annotation statistics: summary (first round)", + "output_name": "summary", + "uuid": "71d41ce2-e90d-435b-9b64-ab4320524770" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "output_exons" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 1738.03125, + "height": 252, + "left": 1545.5, + "right": 1745.5, + "top": 1486.03125, + "width": 200, + "x": 1545.5, + "y": 1486.03125 + }, + "post_job_actions": { + "HideDatasetActionbusco_missing": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_missing" + }, + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"tran\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "a83a2b48-7787-4b53-a592-339f5134e168", + "workflow_outputs": [ + { + "label": "Busco summary first round", + "output_name": "busco_sum", + "uuid": "a79ab19d-9802-42ca-8ffa-8c197a16c8b8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/augustus_training/augustus_training/3.3.3", + "errors": null, + "id": 13, + "input_connections": { + "genome": { + "id": 2, + "output_name": "output" + }, + "maker_gff": { + "id": 11, + "output_name": "output_gff" + } + }, + "inputs": [], + "label": null, + "name": "Train Augustus", + "outputs": [ + { + "name": "output_tar", + "type": "augustus" + } + ], + "position": { + "bottom": 1259.03125, + "height": 182, + "left": 1863.5, + "right": 2063.5, + "top": 1077.03125, + "width": 200, + "x": 1863.5, + "y": 1077.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/augustus_training/augustus_training/3.3.3", + "tool_shed_repository": { + "changeset_revision": "6519ebe25019", + "name": "augustus_training", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"genome\": {\"__class__\": \"ConnectedValue\"}, \"maker_gff\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.3", + "type": "tool", + "uuid": "b347da09-05a2-4d30-a103-dbeb5853efcd", + "workflow_outputs": [ + { + "label": "Augus: trained model", + "output_name": "output_tar", + "uuid": "42d5aadd-3a8c-441d-913f-ee8745a99b0b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "errors": null, + "id": 14, + "input_connections": { + "gff": { + "id": 11, + "output_name": "output_gff" + }, + "ref_genome|genome": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Genome annotation statistics", + "outputs": [ + { + "name": "summary", + "type": "txt" + }, + { + "name": "graphs", + "type": "pdf" + } + ], + "position": { + "bottom": 1569.03125, + "height": 272, + "left": 1863.5, + "right": 2063.5, + "top": 1297.03125, + "width": 200, + "x": 1863.5, + "y": 1297.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "tool_shed_repository": { + "changeset_revision": "8cffbd184762", + "name": "jcvi_gff_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gff\": {\"__class__\": \"ConnectedValue\"}, \"ref_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.4", + "type": "tool", + "uuid": "5a3899b6-a669-4a36-990e-01e6cac6410d", + "workflow_outputs": [ + { + "label": "Genome annotation statistics: graphs (second round)", + "output_name": "graphs", + "uuid": "9def2c6e-fd3c-4969-b5d4-d13c187c1144" + }, + { + "label": "Genome annotation statistics: summary (second round)", + "output_name": "summary", + "uuid": "61f7a150-a4a2-46b1-89f5-2170d466656e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snap_training/snap_training/2013_11_29+galaxy1", + "errors": null, + "id": 15, + "input_connections": { + "genome": { + "id": 2, + "output_name": "output" + }, + "maker_gff": { + "id": 11, + "output_name": "output_gff" + } + }, + "inputs": [], + "label": null, + "name": "Train SNAP", + "outputs": [ + { + "name": "output", + "type": "snaphmm" + } + ], + "position": { + "bottom": 1770.03125, + "height": 162, + "left": 1863.5, + "right": 2063.5, + "top": 1608.03125, + "width": 200, + "x": 1863.5, + "y": 1608.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snap_training/snap_training/2013_11_29+galaxy1", + "tool_shed_repository": { + "changeset_revision": "2a598c0aa042", + "name": "snap_training", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gene_num\": \"1000\", \"genome\": {\"__class__\": \"ConnectedValue\"}, \"maker_gff\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2013_11_29+galaxy1", + "type": "tool", + "uuid": "97cec0ac-e731-4b55-859d-773a7c88bc26", + "workflow_outputs": [ + { + "label": "SNAP: trained model", + "output_name": "output", + "uuid": "458887f7-0661-4bde-ab1a-875aac6caed8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 12, + "output_name": "output_exons" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 870.03125, + "height": 252, + "left": 2161.484375, + "right": 2361.484375, + "top": 618.03125, + "width": 200, + "x": 2161.484375, + "y": 618.03125 + }, + "post_job_actions": { + "HideDatasetActionbusco_missing": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_missing" + }, + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"tran\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "9b04f806-0275-4939-bf74-b8c58ae2bffa", + "workflow_outputs": [ + { + "label": "Busco summary second round", + "output_name": "busco_sum", + "uuid": "f52b1b41-0ea5-4384-bd43-4927273c909c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.11", + "errors": null, + "id": 18, + "input_connections": { + "maker_gff": { + "id": 17, + "output_name": "output_gff" + } + }, + "inputs": [], + "label": null, + "name": "Map annotation ids", + "outputs": [ + { + "name": "renamed", + "type": "gff" + }, + { + "name": "id_map", + "type": "tabular" + } + ], + "position": { + "bottom": 1637.03125, + "height": 222, + "left": 2439.5, + "right": 2639.5, + "top": 1415.03125, + "width": 200, + "x": 2439.5, + "y": 1415.03125 + }, + "post_job_actions": { + "ChangeDatatypeActionrenamed": { + "action_arguments": { + "newtype": "gff3" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "renamed" + }, + "HideDatasetActionid_map": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "id_map" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.11", + "tool_shed_repository": { + "changeset_revision": "2e3535db1bfa", + "name": "maker_map_ids", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"justify\": \"6\", \"maker_gff\": {\"__class__\": \"ConnectedValue\"}, \"prefix\": \"TEST\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.31.11", + "type": "tool", + "uuid": "d7101291-76ac-48ec-9fb3-89ca5554e8ea", + "workflow_outputs": [ + { + "label": "Map annotation ids: renamed GFF", + "output_name": "renamed", + "uuid": "63575dcf-54d1-4cb1-b5fb-a2810b4da807" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.10+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "reference_genome|genome": { + "id": 2, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": [ + { + "id": 3, + "output_name": "output_gff" + }, + { + "id": 18, + "output_name": "renamed" + }, + { + "id": 11, + "output_name": "output_gff" + } + ], + "track_groups_1|data_tracks_0|data_format|annotation": [ + { + "id": 3, + "output_name": "output_evidences" + }, + { + "id": 11, + "output_name": "output_evidences" + }, + { + "id": 17, + "output_name": "output_evidences" + } + ] + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 775.015625, + "height": 292, + "left": 2747.5, + "right": 2947.5, + "top": 483.015625, + "width": 200, + "x": 2747.5, + "y": 483.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.10+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6cd09d7b5f37", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Maker annotation\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"Maker evidences\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": \"true\", \"__current_case__\": 0, \"name\": {\"__class__\": \"RuntimeValue\"}}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.10+galaxy0", + "type": "tool", + "uuid": "4585ada8-27ac-4632-8ac4-76f452316f21", + "workflow_outputs": [ + { + "label": "JBrowse: report", + "output_name": "output", + "uuid": "5a38ae83-e177-45f3-aa9f-4c1844584fa5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.2", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "renamed" + }, + "reference_genome|genome_fasta": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool gffread", + "name": "chr_replace" + } + ], + "label": null, + "name": "gffread", + "outputs": [ + { + "name": "output_exons", + "type": "fasta" + }, + { + "name": "output_cds", + "type": "fasta" + }, + { + "name": "output_pep", + "type": "fasta" + } + ], + "position": { + "bottom": 1085.015625, + "height": 272, + "left": 2747.5, + "right": 2947.5, + "top": 813.015625, + "width": 200, + "x": 2747.5, + "y": 813.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.2", + "tool_shed_repository": { + "changeset_revision": "69e0806b63a4", + "name": "gffread", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chr_replace\": {\"__class__\": \"RuntimeValue\"}, \"decode_url\": \"false\", \"expose\": \"false\", \"filtering\": null, \"full_gff_attribute_preservation\": \"false\", \"gffs\": {\"gff_fmt\": \"none\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"maxintron\": null, \"merging\": {\"merge_sel\": \"none\", \"__current_case__\": 0}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 2, \"genome_fasta\": {\"__class__\": \"ConnectedValue\"}, \"ref_filtering\": null, \"fa_outputs\": [\"-w exons.fa\", \"-x cds.fa\", \"-y pep.fa\"]}, \"region\": {\"region_filter\": \"none\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.1.2", + "type": "tool", + "uuid": "51674c8f-f50e-430f-b0ff-49b1b96887aa", + "workflow_outputs": [ + { + "label": "Gffread: exons", + "output_name": "output_exons", + "uuid": "52fcac23-b612-4377-a19a-2e3b667a23e3" + }, + { + "label": "Gffread: translation of cds", + "output_name": "output_pep", + "uuid": "5c47c25e-0ddb-4ade-a5d0-873ff4add28c" + }, + { + "label": "Gffread: cds", + "output_name": "output_cds", + "uuid": "84d9183b-9589-464b-9f82-4dae7f87133e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "errors": null, + "id": 21, + "input_connections": { + "gff": { + "id": 18, + "output_name": "renamed" + }, + "ref_genome|genome": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Genome annotation statistics", + "outputs": [ + { + "name": "summary", + "type": "txt" + }, + { + "name": "graphs", + "type": "pdf" + } + ], + "position": { + "bottom": 1954.03125, + "height": 272, + "left": 2747.5, + "right": 2947.5, + "top": 1682.03125, + "width": 200, + "x": 2747.5, + "y": 1682.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "tool_shed_repository": { + "changeset_revision": "8cffbd184762", + "name": "jcvi_gff_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gff\": {\"__class__\": \"ConnectedValue\"}, \"ref_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.4", + "type": "tool", + "uuid": "d5c389a7-0746-49da-ad3d-e206b5506acc", + "workflow_outputs": [ + { + "label": "Genome annotation statistics: graphs (third round)", + "output_name": "graphs", + "uuid": "f5d4a6bf-1ff8-435a-8084-7921e25bff3a" + }, + { + "label": "Genome annotation statistics: summary (third round)", + "output_name": "summary", + "uuid": "5a863bd4-10f2-4ac8-81b6-ce8b7f663e42" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "errors": null, + "id": 22, + "input_connections": { + "input": { + "id": 20, + "output_name": "output_exons" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + }, + { + "name": "busco_missing", + "type": "tabular" + } + ], + "position": { + "bottom": 1156.03125, + "height": 252, + "left": 3025.5, + "right": 3225.5, + "top": 904.03125, + "width": 200, + "x": 3025.5, + "y": 904.03125 + }, + "post_job_actions": { + "HideDatasetActionbusco_missing": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_missing" + }, + "HideDatasetActionbusco_table": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "busco_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "tool_shed_repository": { + "changeset_revision": "602fb8e63aa7", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__current_case__\": 0, \"__job_resource__select\": \"no\"}, \"adv\": {\"evalue\": \"0.01\", \"limit\": \"3\", \"aug_prediction\": {\"augustus_mode\": \"no\", \"__current_case__\": 0}, \"long\": \"false\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage_dataset\": \"fungi_odb10\", \"mode\": \"tran\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.1.4", + "type": "tool", + "uuid": "94dac116-5e62-487c-912a-a63ca53c17e7", + "workflow_outputs": [ + { + "label": "Busco summary final round", + "output_name": "busco_sum", + "uuid": "0bc78676-eecc-4168-894d-34c4ca07cdf3" + } + ] + } + ], + "parent_id": "genome-annotation/annotation-with-maker", + "path": "topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "Genome annotation with Maker ", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-annotation-with-maker/versions/main-workflow", + "tutorial_id": "annotation-with-maker", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/annotation-with-maker/workflows/main_workflow.html", + "version": 10, + "wfid": "genome-annotation-annotation-with-maker", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/augustus_training/augustus_training/3.3.3", + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/4.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.10+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jcvi_gff_stats/jcvi_gff_stats/0.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/maker/maker/2.31.11", + "toolshed.g2.bx.psu.edu/repos/iuc/maker_map_ids/maker_map_ids/2.31.11", + "toolshed.g2.bx.psu.edu/repos/iuc/snap_training/snap_training/2013_11_29+galaxy1" + ], + "workflowhub_id": "1164" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4406623" + }, + { + "abbreviations": { + "OGS": "Official Gene Set" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "apollo_create_or_update", + "owner": "gga", + "revisions": "4abaab60f9e1", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "apollo_iframe", + "owner": "gga", + "revisions": "f4e3f9480307", + "tool_panel_section_label": "Apollo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: apollo_create_or_update\n owner: gga\n revisions: 4abaab60f9e1\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: apollo_iframe\n owner: gga\n revisions: f4e3f9480307\n tool_panel_section_label: Apollo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo-euk/tutorial.json", + "contributions": { + "authorship": [ + "abretaud" + ], + "funding": [ + "gallantries", + "eurosciencegateway" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/genome-annotation/tutorials/apollo-euk", + "edam_operation": [ + "Genome visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.no" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/apollo-euk", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Apollo is the Google Docs of the genome annotation world, real-time collaborative genome annotation.", + "Apollo allows a group to view and manually refine predicted genome annotations", + "Use Apollo to edit annotations within your group.", + "Export manual annotations as GFF3." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Load a genome into Galaxy", + "View annotations in JBrowse", + "Learn how to load JBrowse data into Apollo", + "Learn how to manually refine genome annotations within Apollo", + "Export refined genome annotations" + ], + "pageviews": 1546, + "priority": 6, + "pub_date": "2022-08-22", + "questions": [ + "How to visualize your genome after automated annotations have been performed?", + "How to manually annotate genome after automated annotations have been performed?", + "How to evaluate and visualize annotated genomic features?", + "How do I collaborate when doing genome annotation?" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "upload-rules" + ], + "type": "internal" + }, + { + "topic_name": "genome-annotation", + "tutorials": [ + "funannotate" + ], + "type": "internal" + } + ], + "short_id": "T00170", + "short_tools": [ + "create_or_update", + "iframe", + "jbrowse" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "eukaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "eukaryote", + "cyoa", + "jbrowse1", + "apollo2" + ], + "time_estimation": "3h", + "title": "Refining Genome Annotations with Apollo (eukaryotes)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/gga/apollo_create_or_update/create_or_update/4.2.5", + "toolshed.g2.bx.psu.edu/repos/gga/apollo_iframe/iframe/4.2.5", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "apollo-euk", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/apollo-euk/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo-euk/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/apollo-euk/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 158, + "visitors": 871, + "zenodo_link": "https://zenodo.org/record/3270822" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "2d_auto_threshold", + "owner": "imgteam", + "revisions": "0c777d708acc", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_auto_threshold", + "owner": "imgteam", + "revisions": "3df9f0a4bf34", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_histogram_equalization", + "owner": "imgteam", + "revisions": "70316d792fc9", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_histogram_equalization", + "owner": "imgteam", + "revisions": "77f7159d775a", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_simple_filter", + "owner": "imgteam", + "revisions": "dba87c4b32d3", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_simple_filter", + "owner": "imgteam", + "revisions": "f70b215d155c", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bfconvert", + "owner": "imgteam", + "revisions": "10eed33aa9b2", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bfconvert", + "owner": "imgteam", + "revisions": "85edbb7a436b", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "binary2labelimage", + "owner": "imgteam", + "revisions": "6e65fd971e13", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "binary2labelimage", + "owner": "imgteam", + "revisions": "9bb446db4a1e", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "count_objects", + "owner": "imgteam", + "revisions": "5bf8eb50b280", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "count_objects", + "owner": "imgteam", + "revisions": "b58447a2eed2", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "image_info", + "owner": "imgteam", + "revisions": "7b6d9412c7f8", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "overlay_images", + "owner": "imgteam", + "revisions": "b74693340624", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "overlay_images", + "owner": "imgteam", + "revisions": "22ff7c705a83", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unzip", + "owner": "imgteam", + "revisions": "57f0914ddb7b", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: 2d_auto_threshold\n owner: imgteam\n revisions: 0c777d708acc\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_auto_threshold\n owner: imgteam\n revisions: 3df9f0a4bf34\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_histogram_equalization\n owner: imgteam\n revisions: 70316d792fc9\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_histogram_equalization\n owner: imgteam\n revisions: 77f7159d775a\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_simple_filter\n owner: imgteam\n revisions: dba87c4b32d3\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_simple_filter\n owner: imgteam\n revisions: f70b215d155c\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bfconvert\n owner: imgteam\n revisions: 10eed33aa9b2\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bfconvert\n owner: imgteam\n revisions: 85edbb7a436b\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: binary2labelimage\n owner: imgteam\n revisions: 6e65fd971e13\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: binary2labelimage\n owner: imgteam\n revisions: 9bb446db4a1e\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: count_objects\n owner: imgteam\n revisions: 5bf8eb50b280\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: count_objects\n owner: imgteam\n revisions: b58447a2eed2\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: image_info\n owner: imgteam\n revisions: 7b6d9412c7f8\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: overlay_images\n owner: imgteam\n revisions: b74693340624\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: overlay_images\n owner: imgteam\n revisions: 22ff7c705a83\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unzip\n owner: imgteam\n revisions: 57f0914ddb7b\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/imaging-introduction/tutorial.json", + "contributors": [ + { + "former_affiliations": [ + "deNBI", + "elixir-europe" + ], + "id": "thomaswollmann", + "joined": "2019-08", + "name": "Thomas Wollmann", + "orcid": "0000-0002-4741-3844", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/thomaswollmann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/thomaswollmann.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "elixir-europe", + "deNBI" + ], + "elixir_node": "de", + "email": "leonid.kostrykin@bioquant.uni-heidelberg.de", + "id": "kostrykin", + "joined": "2023-08", + "linkedin": "kostrykin", + "name": "Leonid Kostrykin", + "orcid": "0000-0003-1323-3762", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kostrykin/", + "twitter": "l_kostrykin", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kostrykin.json" + } + ], + "dir": "topics/imaging/tutorials/imaging-introduction", + "edam_operation": [ + "Visualisation", + "Image analysis", + "Image annotation", + "Data handling" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "imaging", + "tutorials": [ + "hela-screen-analysis" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "imaging/imaging-introduction", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The **Image Info** tool can provide valuable metadata information of an image.", + "TIFF files cannot viewed directly in most web browser, but have to be converted.", + "For visualization, images with a bit-depth more than 8-bit have to be histogram equalized." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-14", + "objectives": [ + "How to handle images in Galaxy.", + "How to perform basic image processing in Galaxy." + ], + "pageviews": 2880, + "pub_date": "2019-08-13", + "questions": [ + "How do I use Galaxy with imaging data?", + "How do I convert images using Galaxy?", + "How do I display images in Galaxy?", + "How do I filter images in Galaxy?", + "How do I segment simple images in Galaxy?" + ], + "short_id": "T00181", + "short_tools": [ + "ip_convertimage", + "ip_filter_standard", + "ip_histogram_equalization", + "ip_count_objects", + "ip_threshold", + "ip_overlay_images", + "unzip", + "ip_imageinfo", + "ip_binary_to_labelimage" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "HeLa" + ], + "time_estimation": "1H", + "title": "Introduction to image analysis using Galaxy", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_auto_threshold/ip_threshold/0.0.5", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_auto_threshold/ip_threshold/0.0.5-2", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_histogram_equalization/ip_histogram_equalization/0.0.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_histogram_equalization/ip_histogram_equalization/0.0.1-2", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_simple_filter/ip_filter_standard/0.0.3", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_simple_filter/ip_filter_standard/0.0.3-2", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_simple_filter/ip_filter_standard/0.0.3-3", + "toolshed.g2.bx.psu.edu/repos/imgteam/bfconvert/ip_convertimage/6.7.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/imgteam/bfconvert/ip_convertimage/6.7.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/imgteam/binary2labelimage/ip_binary_to_labelimage/0.4", + "toolshed.g2.bx.psu.edu/repos/imgteam/binary2labelimage/ip_binary_to_labelimage/0.4-2", + "toolshed.g2.bx.psu.edu/repos/imgteam/count_objects/ip_count_objects/0.0.5", + "toolshed.g2.bx.psu.edu/repos/imgteam/count_objects/ip_count_objects/0.0.5-2", + "toolshed.g2.bx.psu.edu/repos/imgteam/image_info/ip_imageinfo/0.2", + "toolshed.g2.bx.psu.edu/repos/imgteam/overlay_images/ip_overlay_images/0.0.3", + "toolshed.g2.bx.psu.edu/repos/imgteam/overlay_images/ip_overlay_images/0.0.3-3", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/6.0+galaxy0" + ], + "topic_name": "imaging", + "topic_name_human": "Imaging", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "imaging-introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/imaging/tutorials/imaging-introduction/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/imaging-introduction/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/imaging-introduction/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 98, + "visitors": 1978, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-2315-9247", + "name": "Till Korten", + "url": "https://github.com/thawn/" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ninput_image\"]\n 1[label=\"Histogram equalization\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Image Info\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Filter Image\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Filter Image\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Convert image\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Convert image\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Auto Threshold\"]\n 3 -> 7 [label=\"output\"]\n 8[label=\"Histogram equalization\"]\n 3 -> 8 [label=\"output\"]\n 9[label=\"Binary 2 Label\"]\n 7 -> 9 [label=\"output\"]\n 10[label=\"Convert image\"]\n 8 -> 10 [label=\"output\"]\n 11[label=\"Overlay Images\"]\n 6 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"output\"]\n k85029ccbebb34a919ba3d1daefd13efc[color=lightseagreen,label=\"Output\\nout\"]\n 11 -> k85029ccbebb34a919ba3d1daefd13efc\n 12[label=\"Convert image\"]\n 9 -> 12 [label=\"output\"]\n 13[label=\"Count Objects\"]\n 9 -> 13 [label=\"output\"]\n k1446f4bfb031405a84f088acc1a5c8a3[color=lightseagreen,label=\"Output\\noutput\"]\n 13 -> k1446f4bfb031405a84f088acc1a5c8a3\n}", + "history": [ + { + "hash": "417cff2ccf2bd267e63d478bec4fec85b8fc04b1", + "message": "fixed json syntax", + "num": 8, + "short_hash": "417cff2cc", + "unix": "1699440926" + }, + { + "hash": "9fd3cf532f4cbe3feff9ee7561ccc45fca40e4ea", + "message": "added `creator` and `license` fields", + "num": 7, + "short_hash": "9fd3cf532", + "unix": "1699440835" + }, + { + "hash": "f1edf310368eae3320d7cad61b45da646dcb24f8", + "message": "updated ga file", + "num": 6, + "short_hash": "f1edf3103", + "unix": "1699371738" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 3, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "5eca26d3a4b208e631bbf18232cb1a6727ec99db", + "message": "update images, workflow, and final hands on box", + "num": 2, + "short_hash": "5eca26d3a", + "unix": "1565346764" + }, + { + "hash": "2e42bf8893d877437f600ea4e849c169cbcbb263", + "message": "add workflow", + "num": 1, + "short_hash": "2e42bf889", + "unix": "1565003060" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "input_image" + } + ], + "label": "input_image", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 184.22997472088954 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3414473c-85fe-41b7-9492-61afc45dd847", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ninput_image\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Histogram equalization\"];\n 0 -->|output| 1;\n 2[\"Image Info\"];\n 0 -->|output| 2;\n 3[\"Filter Image\"];\n 0 -->|output| 3;\n 4[\"Filter Image\"];\n 0 -->|output| 4;\n 5[\"Convert image\"];\n 0 -->|output| 5;\n 6[\"Convert image\"];\n 1 -->|output| 6;\n 7[\"Auto Threshold\"];\n 3 -->|output| 7;\n 8[\"Histogram equalization\"];\n 3 -->|output| 8;\n 9[\"Binary 2 Label\"];\n 7 -->|output| 9;\n 10[\"Convert image\"];\n 8 -->|output| 10;\n 11[\"Overlay Images\"];\n 6 -->|output| 11;\n 9 -->|output| 11;\n 85029ccb-ebb3-4a91-9ba3-d1daefd13efc[\"Output\\nout\"];\n 11 --> 85029ccb-ebb3-4a91-9ba3-d1daefd13efc;\n style 85029ccb-ebb3-4a91-9ba3-d1daefd13efc stroke:#2c3143,stroke-width:4px;\n 12[\"Convert image\"];\n 9 -->|output| 12;\n 13[\"Count Objects\"];\n 9 -->|output| 13;\n 1446f4bf-b031-405a-84f0-88acc1a5c8a3[\"Output\\noutput\"];\n 13 --> 1446f4bf-b031-405a-84f0-88acc1a5c8a3;\n style 1446f4bf-b031-405a-84f0-88acc1a5c8a3 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Workflow constructed from Tutorial 'Introduction to image analysis using Galaxy'", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/imgteam/overlay_images/ip_overlay_images/0.0.3", + "errors": null, + "id": 11, + "input_connections": { + "method_option|im1": { + "id": 6, + "output_name": "output" + }, + "method_option|im2": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Overlay Images", + "outputs": [ + { + "name": "out", + "type": "tiff" + } + ], + "position": { + "left": 1103.1565029542078, + "top": 4.927314536610737 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/imgteam/overlay_images/ip_overlay_images/0.0.3", + "tool_shed_repository": { + "changeset_revision": "b74693340624", + "name": "overlay_images", + "owner": "imgteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"method_option\": {\"method\": \"seg_contour\", \"__current_case__\": 2, \"im1\": {\"__class__\": \"ConnectedValue\"}, \"im2\": {\"__class__\": \"ConnectedValue\"}, \"thickness\": \"2\", \"color\": \"#ff0000\", \"show_label\": true, \"label_color\": \"#ffff00\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.3", + "type": "tool", + "uuid": "e6920848-10eb-406c-939e-6bfae3041346", + "when": null, + "workflow_outputs": [ + { + "label": "out", + "output_name": "out", + "uuid": "85029ccb-ebb3-4a91-9ba3-d1daefd13efc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/imgteam/count_objects/ip_count_objects/0.0.5", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Count Objects", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1172.3462617863868, + "top": 500.229868675786 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/imgteam/count_objects/ip_count_objects/0.0.5", + "tool_shed_repository": { + "changeset_revision": "5bf8eb50b280", + "name": "count_objects", + "owner": "imgteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tiff\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.5", + "type": "tool", + "uuid": "3c7f2b09-2fd6-452a-983d-ca120067c1a4", + "when": null, + "workflow_outputs": [ + { + "label": "output", + "output_name": "output", + "uuid": "1446f4bf-b031-405a-84f0-88acc1a5c8a3" + } + ] + } + ], + "parent_id": "imaging/imaging-introduction", + "path": "topics/imaging/tutorials/imaging-introduction/workflows/Galaxy-Workflow-GTN_Tutorial__Introduction_to_Imaging.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Workflow constructed from Tutorial 'Introduction to image analysis using Galaxy'", + "topic_id": "imaging", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-imaging-introduction/versions/galaxy-workflow-gtn-tutorial--introduction-to-imaging", + "tutorial_id": "imaging-introduction", + "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/imaging-introduction/workflows/Galaxy-Workflow-GTN_Tutorial__Introduction_to_Imaging.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/imaging-introduction/workflows/Galaxy-Workflow-GTN_Tutorial__Introduction_to_Imaging.html", + "version": 5, + "wfid": "imaging-imaging-introduction", + "wfname": "galaxy-workflow-gtn-tutorial--introduction-to-imaging", + "workflow": "Galaxy-Workflow-GTN_Tutorial__Introduction_to_Imaging.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_auto_threshold/ip_threshold/0.0.5", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_histogram_equalization/ip_histogram_equalization/0.0.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_simple_filter/ip_filter_standard/0.0.3", + "toolshed.g2.bx.psu.edu/repos/imgteam/bfconvert/ip_convertimage/6.7.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/imgteam/binary2labelimage/ip_binary_to_labelimage/0.4", + "toolshed.g2.bx.psu.edu/repos/imgteam/count_objects/ip_count_objects/0.0.5", + "toolshed.g2.bx.psu.edu/repos/imgteam/image_info/ip_imageinfo/0.2", + "toolshed.g2.bx.psu.edu/repos/imgteam/overlay_images/ip_overlay_images/0.0.3" + ], + "workflowhub_id": "1258" + } + ], + "zenodo_link": "https://zenodo.org/record/3362976" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "cp_cellprofiler", + "owner": "bgruening", + "revisions": "e917a2424690", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_common", + "owner": "bgruening", + "revisions": "e7273daa5ae2", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_convert_objects_to_image", + "owner": "bgruening", + "revisions": "df3ad3ba5c6f", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_display_data_on_image", + "owner": "bgruening", + "revisions": "2484086dee41", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_enhance_or_suppress_features", + "owner": "bgruening", + "revisions": "f2ed92b011a9", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_export_to_spreadsheet", + "owner": "bgruening", + "revisions": "f8fa0f6718a3", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_gray_to_color", + "owner": "bgruening", + "revisions": "31d195bedf6d", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_identify_primary_objects", + "owner": "bgruening", + "revisions": "993faa34333b", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_image_math", + "owner": "bgruening", + "revisions": "c09dcda1143f", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_mask_image", + "owner": "bgruening", + "revisions": "3a05117669cf", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_granularity", + "owner": "bgruening", + "revisions": "a1a961c46d4b", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_image_area_occupied", + "owner": "bgruening", + "revisions": "20dbb1f7ec7b", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_image_intensity", + "owner": "bgruening", + "revisions": "5499dc6f8ac1", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_image_quality", + "owner": "bgruening", + "revisions": "e972e07c7845", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_object_intensity", + "owner": "bgruening", + "revisions": "980aed9e8fd5", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_object_size_shape", + "owner": "bgruening", + "revisions": "79e10d12d90a", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_texture", + "owner": "bgruening", + "revisions": "035a58c7f54a", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_relate_objects", + "owner": "bgruening", + "revisions": "8083a87d2fdf", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_save_images", + "owner": "bgruening", + "revisions": "4ecf93628f97", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "idr_download_by_ids", + "owner": "iuc", + "revisions": "e08b1dc0480c", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: cp_cellprofiler\n owner: bgruening\n revisions: e917a2424690\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_common\n owner: bgruening\n revisions: e7273daa5ae2\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_convert_objects_to_image\n owner: bgruening\n revisions: df3ad3ba5c6f\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_display_data_on_image\n owner: bgruening\n revisions: 2484086dee41\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_enhance_or_suppress_features\n owner: bgruening\n revisions: f2ed92b011a9\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_export_to_spreadsheet\n owner: bgruening\n revisions: f8fa0f6718a3\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_gray_to_color\n owner: bgruening\n revisions: 31d195bedf6d\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_identify_primary_objects\n owner: bgruening\n revisions: 993faa34333b\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_image_math\n owner: bgruening\n revisions: c09dcda1143f\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_mask_image\n owner: bgruening\n revisions: 3a05117669cf\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_granularity\n owner: bgruening\n revisions: a1a961c46d4b\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_image_area_occupied\n owner: bgruening\n revisions: 20dbb1f7ec7b\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_image_intensity\n owner: bgruening\n revisions: 5499dc6f8ac1\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_image_quality\n owner: bgruening\n revisions: e972e07c7845\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_object_intensity\n owner: bgruening\n revisions: 980aed9e8fd5\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_object_size_shape\n owner: bgruening\n revisions: 79e10d12d90a\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_texture\n owner: bgruening\n revisions: 035a58c7f54a\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_relate_objects\n owner: bgruening\n revisions: 8083a87d2fdf\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_save_images\n owner: bgruening\n revisions: 4ecf93628f97\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: idr_download_by_ids\n owner: iuc\n revisions: e08b1dc0480c\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/tutorial-CP/tutorial.json", + "contributors": [ + { + "email": "beatrizserrano.galaxy@gmail.com", + "id": "beatrizserrano", + "joined": "2020-07", + "linkedin": "beatriz-serrano", + "matrix": "beatrizserrano:matrix.org", + "name": "Beatriz Serrano-Solano", + "orcid": "0000-0002-5862-6132", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/beatrizserrano/", + "twitter": "BSerranoSolano", + "url": "https://training.galaxyproject.org/training-material/api/contributors/beatrizserrano.json" + }, + { + "id": "jkh1", + "joined": "2020-07", + "name": "Jean-Karim H\u00e9rich\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jkh1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jkh1.json" + } + ], + "dir": "topics/imaging/tutorials/tutorial-CP", + "edam_operation": [ + "Parsing", + "Image analysis", + "Quantification" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "imaging/tutorial-CP", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy workflows can download images from the IDR, selecting specific channels, time points, z-stack positions and crop the image in different ways.", + "CellProfiler in Galaxy can segment and extract features of any object of interest.", + "The features and masks can be exported for further analysis." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "How to download images from a public image repository.", + "How to segment cell nuclei using CellProfiler in Galaxy.", + "How to segment cell nucleoli using CellProfiler in Galaxy.", + "How to extract features for images, nuclei and nucleoli." + ], + "pageviews": 5731803, + "pub_date": "2020-07-01", + "questions": [ + "How do I run an image analysis pipeline on public data using CellProfiler?", + "How do I analyse the DNA channel of fluorescence siRNA screens?", + "How do I download public image data into my history?", + "How do I segment and label cell nuclei?", + "How do I segment nucleoli (as the absence of DNA)?", + "How do I combine nuclei and nucleoli into one segmentation mask?", + "How do I extract the background of an image?", + "How do I relate the nucleoli to their parent nucleus?", + "How do I measure the image and object features?", + "How do I measure the image quality?" + ], + "short_id": "T00183", + "short_tools": [ + "cp_display_data_on_image", + "cp_gray_to_color", + "cp_identify_primary_objects", + "idr_download_by_ids", + "cp_measure_image_intensity", + "cp_measure_image_area_occupied", + "cp_measure_image_quality", + "cp_common", + "cp_measure_granularity", + "cp_enhance_or_suppress_features", + "cp_measure_texture", + "cp_convert_objects_to_image", + "cp_cellprofiler", + "cp_measure_object_intensity", + "cp_export_to_spreadsheet", + "cp_relate_objects", + "cp_measure_object_size_shape", + "cp_save_images", + "cp_mask_image", + "cp_image_math" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "4H", + "title": "Nucleoli segmentation and feature extraction using CellProfiler", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_cellprofiler/cp_cellprofiler/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_common/cp_common/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_convert_objects_to_image/cp_convert_objects_to_image/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_display_data_on_image/cp_display_data_on_image/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_enhance_or_suppress_features/cp_enhance_or_suppress_features/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_export_to_spreadsheet/cp_export_to_spreadsheet/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_gray_to_color/cp_gray_to_color/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_image_math/cp_image_math/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_mask_image/cp_mask_image/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_granularity/cp_measure_granularity/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_area_occupied/cp_measure_image_area_occupied/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_intensity/cp_measure_image_intensity/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_quality/cp_measure_image_quality/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_intensity/cp_measure_object_intensity/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_size_shape/cp_measure_object_size_shape/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_texture/cp_measure_texture/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_relate_objects/cp_relate_objects/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9", + "toolshed.g2.bx.psu.edu/repos/iuc/idr_download_by_ids/idr_download_by_ids/0.41" + ], + "topic_name": "imaging", + "topic_name_human": "Imaging", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tutorial-CP", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/imaging/tutorials/tutorial-CP/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/tutorial-CP/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/tutorial-CP/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 229, + "visitors": 2067019, + "workflows": [ + { + "creators": [], + "description": "Nucleoli segmentation and feature extraction using CellProfiler", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Starting modules\"]\n 1[label=\"Download images\"]\n 2[label=\"Segment complete nuclei\"]\n 0 -> 2 [label=\"output_pipeline\"]\n 3[label=\"Segmentation mask complete nuclei\"]\n 2 -> 3 [label=\"output_pipeline\"]\n 4[label=\"Label nuclei\"]\n 3 -> 4 [label=\"output_pipeline\"]\n 5[label=\"Save labelled nuclei\"]\n 4 -> 5 [label=\"output_pipeline\"]\n 6[label=\"Detect dark holes in nuclei\"]\n 5 -> 6 [label=\"output_pipeline\"]\n 7[label=\"Segment nucleoli that fall inside nuclei\"]\n 6 -> 7 [label=\"output_pipeline\"]\n 8[label=\"Segment nucleoli\"]\n 7 -> 8 [label=\"output_pipeline\"]\n 9[label=\"Convert the segmented nucleoli into an image\"]\n 8 -> 9 [label=\"output_pipeline\"]\n 10[label=\"Combine masks nuclei + nucleoli\"]\n 9 -> 10 [label=\"output_pipeline\"]\n 11[label=\"Save combined segmentation masks\"]\n 10 -> 11 [label=\"output_pipeline\"]\n 12[label=\"Segment all nuclei\"]\n 11 -> 12 [label=\"output_pipeline\"]\n 13[label=\"Segmentation mask nucleoli including cells touching borders\"]\n 12 -> 13 [label=\"output_pipeline\"]\n 14[label=\"Extract background\"]\n 13 -> 14 [label=\"output_pipeline\"]\n 15[label=\"Measure the image granularity\"]\n 14 -> 15 [label=\"output_pipeline\"]\n 16[label=\"Measure the nuclei texture\"]\n 15 -> 16 [label=\"output_pipeline\"]\n 17[label=\"Measure the nuclei intensity\"]\n 16 -> 17 [label=\"output_pipeline\"]\n 18[label=\"Measure size and shape of nuclei and nucleoli\"]\n 17 -> 18 [label=\"output_pipeline\"]\n 19[label=\"Relate nucleoli with their parent nuclei\"]\n 18 -> 19 [label=\"output_pipeline\"]\n 20[label=\"Measure the image quality\"]\n 19 -> 20 [label=\"output_pipeline\"]\n 21[label=\"Measure the area occupied by nuclei and nucleoli\"]\n 20 -> 21 [label=\"output_pipeline\"]\n 22[label=\"Measure the image intensity\"]\n 21 -> 22 [label=\"output_pipeline\"]\n 23[label=\"Export measurements\"]\n 22 -> 23 [label=\"output_pipeline\"]\n 24[label=\"Run CellProfiler\"]\n 1 -> 24 [label=\"output_tar\"]\n 23 -> 24 [label=\"output_pipeline\"]\n}", + "history": [ + { + "hash": "bd719212c3b71090065923e9941d9f5efbb4e3e3", + "message": "Update main_workflow.ga", + "num": 7, + "short_hash": "bd719212c", + "unix": "1604492160" + }, + { + "hash": "e060051254138ba425caa5775fc10bc5ac93c33e", + "message": "add missing annotation field", + "num": 6, + "short_hash": "e06005125", + "unix": "1604488703" + }, + { + "hash": "ceef3fe076a86ac8ecc50eba9b77ff192385ab60", + "message": "add tag imaging", + "num": 5, + "short_hash": "ceef3fe07", + "unix": "1604444072" + }, + { + "hash": "28a7fb28b785ae9b4804700a389d2334dc0eeb63", + "message": "Update main_workflow.ga", + "num": 4, + "short_hash": "28a7fb28b", + "unix": "1604443613" + }, + { + "hash": "a3a14fb9052dfae1f59ddec213fe4850779b2f1e", + "message": "add annotation and tags to the wf", + "num": 3, + "short_hash": "a3a14fb90", + "unix": "1593000970" + }, + { + "hash": "8fdf6cf2d432e514ebb2fd0a79ede703f2f36efb", + "message": "format wf", + "num": 2, + "short_hash": "8fdf6cf2d", + "unix": "1592999030" + }, + { + "hash": "82051aef73313659e45e3e3fa243c84ca022dce4", + "message": "training_init", + "num": 1, + "short_hash": "82051aef7", + "unix": "1592558689" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"Starting modules\"];\n 1[\"Download images\"];\n 2[\"Segment complete nuclei\"];\n 0 -->|output_pipeline| 2;\n 3[\"Segmentation mask complete nuclei\"];\n 2 -->|output_pipeline| 3;\n 4[\"Label nuclei\"];\n 3 -->|output_pipeline| 4;\n 5[\"Save labelled nuclei\"];\n 4 -->|output_pipeline| 5;\n 6[\"Detect dark holes in nuclei\"];\n 5 -->|output_pipeline| 6;\n 7[\"Segment nucleoli that fall inside nuclei\"];\n 6 -->|output_pipeline| 7;\n 8[\"Segment nucleoli\"];\n 7 -->|output_pipeline| 8;\n 9[\"Convert the segmented nucleoli into an image\"];\n 8 -->|output_pipeline| 9;\n 10[\"Combine masks nuclei + nucleoli\"];\n 9 -->|output_pipeline| 10;\n 11[\"Save combined segmentation masks\"];\n 10 -->|output_pipeline| 11;\n 12[\"Segment all nuclei\"];\n 11 -->|output_pipeline| 12;\n 13[\"Segmentation mask nucleoli including cells touching borders\"];\n 12 -->|output_pipeline| 13;\n 14[\"Extract background\"];\n 13 -->|output_pipeline| 14;\n 15[\"Measure the image granularity\"];\n 14 -->|output_pipeline| 15;\n 16[\"Measure the nuclei texture\"];\n 15 -->|output_pipeline| 16;\n 17[\"Measure the nuclei intensity\"];\n 16 -->|output_pipeline| 17;\n 18[\"Measure size and shape of nuclei and nucleoli\"];\n 17 -->|output_pipeline| 18;\n 19[\"Relate nucleoli with their parent nuclei\"];\n 18 -->|output_pipeline| 19;\n 20[\"Measure the image quality\"];\n 19 -->|output_pipeline| 20;\n 21[\"Measure the area occupied by nuclei and nucleoli\"];\n 20 -->|output_pipeline| 21;\n 22[\"Measure the image intensity\"];\n 21 -->|output_pipeline| 22;\n 23[\"Export measurements\"];\n 22 -->|output_pipeline| 23;\n 24[\"Run CellProfiler\"];\n 1 -->|output_tar| 24;\n 23 -->|output_pipeline| 24;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "CP_pipeline_IDR_training", + "outputs": [ + { + "annotation": "Detail the metadata associated to the images that will be processed", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_common/cp_common/3.1.9", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Starting modules", + "name": "Starting Modules", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 200, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_common/cp_common/3.1.9", + "tool_shed_repository": { + "changeset_revision": "27396311a314", + "name": "cp_common", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"groups\": {\"con_groups\": {\"group_images\": \"Yes\", \"__current_case__\": 0, \"group_category\": \"field1\"}}, \"images\": {\"filter_images\": \"Images only\"}, \"metadata\": {\"con_metadata_extraction\": {\"extract\": \"Yes\", \"__current_case__\": 0, \"extraction_method\": [{\"__index__\": 0, \"metadata_extraction_method\": \"Extract from file/folder names\", \"con_metadata_source\": {\"metadata_source\": \"File name\", \"__current_case__\": 0, \"file_name_regex\": \"(?P.*)__(?P[a-zA-Z0-9]+)__(?P[a-zA-Z0-9]+)__(?P[a-zA-Z0-9]+)__(?P[a-zA-Z0-9]+)__(?P[a-zA-Z0-9]+)\"}, \"con_metadata_extract_from\": {\"extract_metadata_from\": \"All images\", \"__current_case__\": 1}}]}}, \"nameandtypes\": {\"pixel_space\": {\"process_3d\": \"No\", \"__current_case__\": 1}, \"con_assign_a_name_to\": {\"assign_a_name_to\": \"All images\", \"__current_case__\": 0, \"name_to_assign\": \"DNA\", \"con_select_image_type\": {\"select_image_type\": \"Grayscale image\", \"__current_case__\": 0, \"con_set_intensity\": {\"set_intensity_range_from\": \"Image metadata\", \"__current_case__\": 1}}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "9cb7aa2c-b60c-4a5b-9653-fa41ab465e94", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "6e8dc853-a475-401f-b276-c6ab024681fc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/idr_download_by_ids/idr_download_by_ids/0.41", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Download images", + "name": "IDR Download", + "outputs": [ + { + "name": "out_log", + "type": "txt" + }, + { + "name": "output_tar", + "type": "tar" + } + ], + "position": { + "left": 200, + "top": 241.25 + }, + "post_job_actions": { + "EmailActionout_log": { + "action_arguments": {}, + "action_type": "EmailAction", + "output_name": "out_log" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/idr_download_by_ids/idr_download_by_ids/0.41", + "tool_shed_repository": { + "changeset_revision": "e08b1dc0480c", + "name": "idr_download_by_ids", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"channel\": \"Cy3\", \"clip_image\": {\"select\": \"\", \"__current_case__\": 0}, \"download_tar\": \"true\", \"frame\": \"0\", \"image_ids\": {\"source\": \"link\", \"__current_case__\": 0, \"id_spec\": \"http://idr.openmicroscopy.org/webclient/?show=image-295900|image-295905|image-295910|image-295918|image-295928|image-295934\"}, \"skip_failed\": \"true\", \"z_section\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.41", + "type": "tool", + "uuid": "682880bc-d35f-4f77-996e-7600de735da6", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_log", + "uuid": "ff013d1c-7570-4720-8b15-6689021807d5" + }, + { + "label": null, + "output_name": "output_tar", + "uuid": "b94d5196-23db-4340-aa58-c082fc5ca449" + } + ] + }, + { + "annotation": "Incomplete nuclei that are touching the borders of the image are ignored and therefore, not segmented. It doesn't include the nuclei outside the diameter range either.", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9", + "errors": null, + "id": 2, + "input_connections": { + "input_pipeline": { + "id": 0, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Segment complete nuclei", + "name": "IdentifyPrimaryObjects", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 272.75, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9", + "tool_shed_repository": { + "changeset_revision": "52c01fb29b2a", + "name": "cp_identify_primary_objects", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_advanced\": {\"advanced\": \"Yes\", \"__current_case__\": 1, \"input_from_nat\": \"DNA\", \"name_to_be_identified\": \"Nuclei\", \"min_diameter\": \"15\", \"max_diameter\": \"200\", \"discard_outside_border\": \"Yes\", \"discard_touching_border\": \"Yes\", \"con_threshold_strategy\": {\"threshold_strategy\": \"Global\", \"__current_case__\": 1, \"con_threshold_method\": {\"threshold_method\": \"Otsu\", \"__current_case__\": 0, \"con_threshold_class\": {\"threshold_class\": \"Two classes\", \"__current_case__\": 1}, \"threshold_smoothing_scale\": \"1.3488\", \"threshold_correction_factor\": \"0.9\", \"threshold_lower\": \"0.0\", \"threshold_upper\": \"1.0\"}}, \"con_distinguish_clumped_objects\": {\"distinguish_clumped_objects\": \"Shape\", \"__current_case__\": 0, \"con_dividing_lines\": {\"dividing_lines\": \"Shape\", \"__current_case__\": 0, \"con_smoothing_filter\": {\"smoothing_filter\": \"Yes\", \"__current_case__\": 1}, \"con_min_distance\": {\"min_distance\": \"Yes\", \"__current_case__\": 1}, \"speed_up\": \"Yes\"}}, \"fill_hole\": \"After both thresholding and declumping\", \"con_handling_excessive\": {\"excessive_handling\": \"Continue\", \"__current_case__\": 1}}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "1614fb83-6565-4534-9a42-03e9d5c21a75", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "efff5d2f-aa7d-406a-8927-f373feb57837" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_convert_objects_to_image/cp_convert_objects_to_image/3.1.9", + "errors": null, + "id": 3, + "input_connections": { + "input_pipeline": { + "id": 2, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Segmentation mask complete nuclei", + "name": "ConvertObjectsToImage", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 353.5, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_convert_objects_to_image/cp_convert_objects_to_image/3.1.9", + "tool_shed_repository": { + "changeset_revision": "2690da374874", + "name": "cp_convert_objects_to_image", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_color_format\": {\"color_format\": \"Binary (black & white)\", \"__current_case__\": 0}, \"input_object\": \"Nuclei\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_output_image\": \"MaskNuclei\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "dc500b23-6fb7-4daa-85f1-53f66b034826", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "3c7575e4-4094-4e19-9778-801325f82df9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_display_data_on_image/cp_display_data_on_image/3.1.9", + "errors": null, + "id": 4, + "input_connections": { + "input_pipeline": { + "id": 3, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Label nuclei", + "name": "DisplayDataOnImage", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 434.25, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_display_data_on_image/cp_display_data_on_image/3.1.9", + "tool_shed_repository": { + "changeset_revision": "4e12ef887a2a", + "name": "cp_display_data_on_image", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_display_mode\": {\"display_mode\": \"Text\", \"__current_case__\": 0, \"text_color\": \"#ff0000\", \"font_size\": \"11\", \"number_of_decimals\": \"0\", \"annotation_offset\": \"0\"}, \"con_display_obj_image\": {\"display_obj_image\": \"Object\", \"__current_case__\": 0, \"select_input_obj\": \"Nuclei\", \"con_obj_measurement_category\": {\"measurement_category\": \"Number\", \"__current_case__\": 0, \"measurement\": \"Object_Number\"}}, \"display_background_image\": \"Yes\", \"element_to_save\": \"Image\", \"image_to_display_measurements\": \"DNA\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_output_image\": \"ImageDisplay\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "d74959c7-b1f5-47a4-8272-b3de8adaf04a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "113e8d23-a9e2-45a1-9d40-1e26d4f23456" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9", + "errors": null, + "id": 5, + "input_connections": { + "input_pipeline": { + "id": 4, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Save labelled nuclei", + "name": "SaveImages", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 515, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9", + "tool_shed_repository": { + "changeset_revision": "a45d360ae9d9", + "name": "cp_save_images", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_method_for_constructing\": {\"method_for_constructing\": \"From image filename\", \"__current_case__\": 0, \"name_for_file_prefix\": \"DNA\", \"con_append_suffix\": {\"append_suffix\": \"Yes\", \"__current_case__\": 0, \"text_to_append\": \"_nucleiNumbers\"}}, \"con_type_of_image\": {\"type_of_image\": \"Image\", \"__current_case__\": 0, \"con_save_file_format\": {\"file_format\": \"tiff\", \"__current_case__\": 0, \"bit_depth\": \"8-bit integer\"}}, \"image_to_save\": \"ImageDisplay\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"overwrite_without_warning\": \"Yes\", \"record_info\": \"No\", \"when_to_save\": \"Every cycle\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "32d4b134-e681-484b-a46d-6fb511358a39", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "b1aa7814-3057-4f2f-8c8d-48aa7c1a7fa5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_enhance_or_suppress_features/cp_enhance_or_suppress_features/3.1.9", + "errors": null, + "id": 6, + "input_connections": { + "input_pipeline": { + "id": 5, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Detect dark holes in nuclei", + "name": "EnhanceOrSuppressFeatures", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 595.75, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_enhance_or_suppress_features/cp_enhance_or_suppress_features/3.1.9", + "tool_shed_repository": { + "changeset_revision": "3f9747bda8c4", + "name": "cp_enhance_or_suppress_features", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_enhance_suppress\": {\"select_operation\": \"Enhance\", \"__current_case__\": 0, \"con_feature_type\": {\"feature_type\": \"Dark holes\", \"__current_case__\": 2, \"min_hole_size\": \"1\", \"max_hole_size\": \"15\"}}, \"input_image\": \"DNA\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_output_image\": \"DNAdarkholes\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "2704e748-66d4-4a32-a9eb-459f65f58eb0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "fd53651d-06fb-4d6a-b65b-dd686dcb0fcc" + } + ] + }, + { + "annotation": "The dark holes enhanced in the previous step are segmented only if they are inside a nuclei", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_mask_image/cp_mask_image/3.1.9", + "errors": null, + "id": 7, + "input_connections": { + "input_pipeline": { + "id": 6, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Segment nucleoli that fall inside nuclei", + "name": "MaskImage", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 677.75, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_mask_image/cp_mask_image/3.1.9", + "tool_shed_repository": { + "changeset_revision": "ca1421f7e3ed", + "name": "cp_mask_image", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_img_obj\": {\"img_obj\": \"Objects\", \"__current_case__\": 0, \"select_obj\": \"Nuclei\"}, \"input_image\": \"DNAdarkholes\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"invert_mask\": \"No\", \"name_output_image\": \"MaskDNAdarkholes\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "32492729-4cd6-419e-9429-4fdf91410591", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "da3978ac-fb7a-4095-80d8-df2fad05b747" + } + ] + }, + { + "annotation": "The segmentation only affects those inside the nuclei", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9", + "errors": null, + "id": 8, + "input_connections": { + "input_pipeline": { + "id": 7, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Segment nucleoli", + "name": "IdentifyPrimaryObjects", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 758.5, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9", + "tool_shed_repository": { + "changeset_revision": "52c01fb29b2a", + "name": "cp_identify_primary_objects", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_advanced\": {\"advanced\": \"Yes\", \"__current_case__\": 1, \"input_from_nat\": \"MaskDNAdarkholes\", \"name_to_be_identified\": \"Nucleoli\", \"min_diameter\": \"2\", \"max_diameter\": \"15\", \"discard_outside_border\": \"Yes\", \"discard_touching_border\": \"No\", \"con_threshold_strategy\": {\"threshold_strategy\": \"Global\", \"__current_case__\": 1, \"con_threshold_method\": {\"threshold_method\": \"Otsu\", \"__current_case__\": 0, \"con_threshold_class\": {\"threshold_class\": \"Two classes\", \"__current_case__\": 1}, \"threshold_smoothing_scale\": \"1.3488\", \"threshold_correction_factor\": \"0.9\", \"threshold_lower\": \"0.0\", \"threshold_upper\": \"1.0\"}}, \"con_distinguish_clumped_objects\": {\"distinguish_clumped_objects\": \"Shape\", \"__current_case__\": 0, \"con_dividing_lines\": {\"dividing_lines\": \"Shape\", \"__current_case__\": 0, \"con_smoothing_filter\": {\"smoothing_filter\": \"Yes\", \"__current_case__\": 1}, \"con_min_distance\": {\"min_distance\": \"Yes\", \"__current_case__\": 1}, \"speed_up\": \"Yes\"}}, \"fill_hole\": \"After both thresholding and declumping\", \"con_handling_excessive\": {\"excessive_handling\": \"Continue\", \"__current_case__\": 1}}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "d9cd434a-3fca-4e45-8e73-6c8791af8304", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "dbf37c30-6e43-4d38-9584-b40946194283" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_convert_objects_to_image/cp_convert_objects_to_image/3.1.9", + "errors": null, + "id": 9, + "input_connections": { + "input_pipeline": { + "id": 8, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Convert the segmented nucleoli into an image", + "name": "ConvertObjectsToImage", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 839.25, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_convert_objects_to_image/cp_convert_objects_to_image/3.1.9", + "tool_shed_repository": { + "changeset_revision": "2690da374874", + "name": "cp_convert_objects_to_image", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_color_format\": {\"color_format\": \"Binary (black & white)\", \"__current_case__\": 0}, \"input_object\": \"Nucleoli\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_output_image\": \"MaskNucleoli\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "549c3604-1951-49d5-b170-de37f295f3ac", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "9082f1cc-35ee-4993-975e-592fe84143a9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_gray_to_color/cp_gray_to_color/3.1.9", + "errors": null, + "id": 10, + "input_connections": { + "input_pipeline": { + "id": 9, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Combine masks (nuclei + nucleoli)", + "name": "GrayToColor", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 920, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_gray_to_color/cp_gray_to_color/3.1.9", + "tool_shed_repository": { + "changeset_revision": "bbf1ef17c01b", + "name": "cp_gray_to_color", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_color_scheme\": {\"color_scheme\": \"RGB\", \"__current_case__\": 0, \"rgb_red\": \"MaskNucleoli\", \"rgb_red_weight\": \"0.8\", \"rgb_green\": \"Leave this black\", \"rgb_green_weight\": \"1.0\", \"rgb_blue\": \"MaskNuclei\", \"rgb_blue_weight\": \"0.5\"}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_output_image\": \"CombinedMask\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "0e09f485-e2ff-4610-bf71-31cf1168ee6d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "1a8affd0-4d20-4335-845a-367f12879a2f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9", + "errors": null, + "id": 11, + "input_connections": { + "input_pipeline": { + "id": 10, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Save combined segmentation masks", + "name": "SaveImages", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1000.75, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9", + "tool_shed_repository": { + "changeset_revision": "a45d360ae9d9", + "name": "cp_save_images", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_method_for_constructing\": {\"method_for_constructing\": \"From image filename\", \"__current_case__\": 0, \"name_for_file_prefix\": \"DNA\", \"con_append_suffix\": {\"append_suffix\": \"Yes\", \"__current_case__\": 0, \"text_to_append\": \"_combinedMask\"}}, \"con_type_of_image\": {\"type_of_image\": \"Image\", \"__current_case__\": 0, \"con_save_file_format\": {\"file_format\": \"tiff\", \"__current_case__\": 0, \"bit_depth\": \"8-bit integer\"}}, \"image_to_save\": \"CombinedMask\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"overwrite_without_warning\": \"Yes\", \"record_info\": \"No\", \"when_to_save\": \"Every cycle\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "46a80d5c-29ee-45ae-9e5b-93099e8eadc2", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "5888c4cd-9a64-40f9-82c6-629f211fb04f" + } + ] + }, + { + "annotation": "Incomplete nuclei that are touching the borders of the image are segmented, also the nuclei outside the diameter range.", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9", + "errors": null, + "id": 12, + "input_connections": { + "input_pipeline": { + "id": 11, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Segment all nuclei", + "name": "IdentifyPrimaryObjects", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1081.5, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9", + "tool_shed_repository": { + "changeset_revision": "52c01fb29b2a", + "name": "cp_identify_primary_objects", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_advanced\": {\"advanced\": \"Yes\", \"__current_case__\": 1, \"input_from_nat\": \"DNA\", \"name_to_be_identified\": \"NucleiIncludingTouchingBorders\", \"min_diameter\": \"15\", \"max_diameter\": \"200\", \"discard_outside_border\": \"No\", \"discard_touching_border\": \"No\", \"con_threshold_strategy\": {\"threshold_strategy\": \"Global\", \"__current_case__\": 1, \"con_threshold_method\": {\"threshold_method\": \"Otsu\", \"__current_case__\": 0, \"con_threshold_class\": {\"threshold_class\": \"Two classes\", \"__current_case__\": 1}, \"threshold_smoothing_scale\": \"1.3488\", \"threshold_correction_factor\": \"0.9\", \"threshold_lower\": \"0.0\", \"threshold_upper\": \"1.0\"}}, \"con_distinguish_clumped_objects\": {\"distinguish_clumped_objects\": \"Shape\", \"__current_case__\": 0, \"con_dividing_lines\": {\"dividing_lines\": \"Shape\", \"__current_case__\": 0, \"con_smoothing_filter\": {\"smoothing_filter\": \"Yes\", \"__current_case__\": 1}, \"con_min_distance\": {\"min_distance\": \"Yes\", \"__current_case__\": 1}, \"speed_up\": \"Yes\"}}, \"fill_hole\": \"After both thresholding and declumping\", \"con_handling_excessive\": {\"excessive_handling\": \"Continue\", \"__current_case__\": 1}}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "b6f8fb6c-4278-4b17-ba76-c949f87fee51", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "c96b7030-c091-4961-801c-dc3e72b4a357" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_convert_objects_to_image/cp_convert_objects_to_image/3.1.9", + "errors": null, + "id": 13, + "input_connections": { + "input_pipeline": { + "id": 12, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Segmentation mask nucleoli including cells touching borders", + "name": "ConvertObjectsToImage", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1162.25, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_convert_objects_to_image/cp_convert_objects_to_image/3.1.9", + "tool_shed_repository": { + "changeset_revision": "2690da374874", + "name": "cp_convert_objects_to_image", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_color_format\": {\"color_format\": \"Binary (black & white)\", \"__current_case__\": 0}, \"input_object\": \"NucleiIncludingTouchingBorders\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_output_image\": \"Image_NucleiIncludingTouchingBorders\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "adc8a062-58ee-4285-a4f2-fcf423f30bdd", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "a9f1d26d-ad3d-4984-b15b-76d1e3309833" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_image_math/cp_image_math/0.1.0", + "errors": null, + "id": 14, + "input_connections": { + "input_pipeline": { + "id": 13, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Extract background", + "name": "ImageMath", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1243, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_image_math/cp_image_math/0.1.0", + "tool_shed_repository": { + "changeset_revision": "6d3851ac885f", + "name": "cp_image_math", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"ignore_the_image_masks\": \"No\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_output_image\": \"BG\", \"operation\": {\"operation\": \"subtract\", \"__current_case__\": 1, \"first_image\": {\"image_or_measurement_first\": {\"image_or_measurement_first\": \"Image\", \"__current_case__\": 0, \"select_the_first_image\": \"DNA\"}, \"multiply_the_first_image_by\": \"1.0\"}, \"second_image\": {\"image_or_measurement_second\": {\"image_or_measurement_second\": \"Image\", \"__current_case__\": 0, \"select_the_second_image\": \"Image_NucleiIncludingTouchingBorders\"}, \"multiply_the_second_image_by\": \"1.0\"}, \"op_results\": {\"raise_the_power_of_the_result_by\": \"1.0\", \"multiply_the_result_by\": \"1.0\", \"add_to_result\": \"0.0\", \"set_values_less_than_0_equal_to_0\": \"Yes\", \"set_values_greater_than_1_equal_to_1\": \"Yes\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "549ce202-f817-48e7-90cb-2e3766c67e4b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "b64b6fc5-593f-4755-9531-3d4b2d47cc61" + } + ] + }, + { + "annotation": "This step measures the granularity of the original image", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_granularity/cp_measure_granularity/3.1.9", + "errors": null, + "id": 15, + "input_connections": { + "input_pipeline": { + "id": 14, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Measure the image granularity", + "name": "MeasureGranularity", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1323.75, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_granularity/cp_measure_granularity/3.1.9", + "tool_shed_repository": { + "changeset_revision": "382413f8ec1d", + "name": "cp_measure_granularity", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"rpt_image\": [{\"__index__\": 0, \"image_to_measure\": \"DNA\", \"subsampling_factor_granularity\": \"0.25\", \"subsampling_factor_background_reduction\": \"0.25\", \"radius\": \"10\", \"range_granular_spectrum\": \"16\", \"rpt_object\": []}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "facc511c-7f3e-48bc-8330-e9bb5b4a6b1e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "b157d712-698d-46e6-b042-913748e44f89" + } + ] + }, + { + "annotation": "This step measures the texture of the original image and nuclei in it", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_texture/cp_measure_texture/3.1.9", + "errors": null, + "id": 16, + "input_connections": { + "input_pipeline": { + "id": 15, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Measure the nuclei texture", + "name": "MeasureTexture", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1404.5, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_texture/cp_measure_texture/3.1.9", + "tool_shed_repository": { + "changeset_revision": "658a2a451aec", + "name": "cp_measure_texture", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_img_obj\": {\"img_obj\": \"Objects\", \"__current_case__\": 0, \"rpt_obj_to_measure\": [{\"__index__\": 0, \"obj_to_measure\": \"Nuclei\"}]}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"rpt_image_to_measure\": [{\"__index__\": 0, \"image_to_measure\": \"DNA\"}], \"rpt_scale_to_measure\": [{\"__index__\": 0, \"scale_to_measure\": \"3\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "ae3973f7-8c6e-410e-828a-633b59839fe6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "5d4d6e55-44cf-4611-bcd8-bda8a9df7286" + } + ] + }, + { + "annotation": "This step measures the intensity of the original image and the nuclei", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_intensity/cp_measure_object_intensity/3.1.9", + "errors": null, + "id": 17, + "input_connections": { + "input_pipeline": { + "id": 16, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Measure the nuclei intensity", + "name": "MeasureObjectIntensity", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1485.25, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_intensity/cp_measure_object_intensity/3.1.9", + "tool_shed_repository": { + "changeset_revision": "b867e9317a06", + "name": "cp_measure_object_intensity", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"rpt_image\": [{\"__index__\": 0, \"image_to_measure\": \"DNA\"}], \"rpt_object\": [{\"__index__\": 0, \"objects_to_measure\": \"Nuclei\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "0ac29831-ed29-4294-95b5-ba2400408dab", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "d26c927d-f6c3-4c53-873b-015d8fe59d0f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_size_shape/cp_measure_object_size_shape/3.1.9", + "errors": null, + "id": 18, + "input_connections": { + "input_pipeline": { + "id": 17, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Measure size and shape of nuclei and nucleoli", + "name": "MeasureObjectSizeShape", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1566, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_size_shape/cp_measure_object_size_shape/3.1.9", + "tool_shed_repository": { + "changeset_revision": "5c9549983af8", + "name": "cp_measure_object_size_shape", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"rpt_object\": [{\"__index__\": 0, \"objects_to_measure\": \"Nuclei\"}, {\"__index__\": 1, \"objects_to_measure\": \"Nucleoli\"}], \"zernike_feature\": \"Yes\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "580e3cc4-48f3-48d2-9d69-8bb6c3d79be9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "289985e1-f94e-4223-bc1b-64ac4eadf40e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_relate_objects/cp_relate_objects/3.1.9", + "errors": null, + "id": 19, + "input_connections": { + "input_pipeline": { + "id": 18, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Relate nucleoli with their parent nuclei", + "name": "RelateObjects", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1648, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_relate_objects/cp_relate_objects/3.1.9", + "tool_shed_repository": { + "changeset_revision": "f3f45c42bc36", + "name": "cp_relate_objects", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"child_objects\": \"Nucleoli\", \"con_dist\": {\"calc_dist\": \"Both\", \"__current_case__\": 2, \"con_other_parent_dist\": {\"calc_dist_to_others\": \"No\", \"__current_case__\": 1}}, \"con_save_child\": {\"save_child_as_new\": \"Yes\", \"__current_case__\": 0, \"name_output\": \"RelateObjects\"}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"means_for_all\": \"Yes\", \"parent_objects\": \"Nuclei\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "d776a7aa-7154-401d-8ff5-15e986f29597", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "48df535c-abd3-423e-b6c4-e3e6a2579eb7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_quality/cp_measure_image_quality/3.1.9", + "errors": null, + "id": 20, + "input_connections": { + "input_pipeline": { + "id": 19, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Measure the image quality", + "name": "MeasureImageQuality", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1728.75, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_quality/cp_measure_image_quality/3.1.9", + "tool_shed_repository": { + "changeset_revision": "08a2cf887a44", + "name": "cp_measure_image_quality", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"calc_for_images\": \"All loaded images\", \"calc_intensity_metrics\": \"Yes\", \"calc_saturation_metrics\": \"Yes\", \"con_calc_blur_metrics\": {\"calc_blur_metrics\": \"Yes\", \"__current_case__\": 0, \"rpt_blur_measurements\": [{\"__index__\": 0, \"blur_measurements\": \"20\"}]}, \"con_calc_threshold\": {\"calc_threshold\": \"Yes\", \"__current_case__\": 0, \"con_use_all_methods\": {\"use_all_methods\": \"No\", \"__current_case__\": 1, \"rpt_threshold_method\": [{\"__index__\": 0, \"con_threshold_methods\": {\"select_threshold_method\": \"Otsu\", \"__current_case__\": 0, \"otsu_weighted_entropy\": \"Weighted variance\", \"con_threshold_classes\": {\"threshold_classes\": \"Two classes\", \"__current_case__\": 1}}}]}}, \"include_rescaling_value\": \"Yes\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "3b81db10-c6dd-4ff0-8b2d-58ab00f80260", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "db6c90c4-44cd-405d-94f2-00f9c93a120c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_area_occupied/cp_measure_image_area_occupied/3.1.9", + "errors": null, + "id": 21, + "input_connections": { + "input_pipeline": { + "id": 20, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Measure the area occupied by nuclei and nucleoli", + "name": "MeasureImageAreaOccupied", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1809.5, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_area_occupied/cp_measure_image_area_occupied/3.1.9", + "tool_shed_repository": { + "changeset_revision": "7a08edbc790e", + "name": "cp_measure_image_area_occupied", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"rpt_area\": [{\"__index__\": 0, \"con_area\": {\"objects_or_image\": \"Objects\", \"__current_case__\": 0, \"objects_to_measure\": \"Nuclei\"}}, {\"__index__\": 1, \"con_area\": {\"objects_or_image\": \"Objects\", \"__current_case__\": 0, \"objects_to_measure\": \"Nucleoli\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "3df981d5-142e-4cb5-b897-05afcb201811", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "58cdfb31-71f2-44ef-a385-f62188f8d2a3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_intensity/cp_measure_image_intensity/3.1.9", + "errors": null, + "id": 22, + "input_connections": { + "input_pipeline": { + "id": 21, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Measure the image intensity", + "name": "MeasureImageIntensity", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1891.5, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_intensity/cp_measure_image_intensity/3.1.9", + "tool_shed_repository": { + "changeset_revision": "2681008d726f", + "name": "cp_measure_image_intensity", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"rpt_intensity\": [{\"__index__\": 0, \"image_to_measure\": \"DNA\", \"con_intensity\": {\"only_from_objects\": \"No\", \"__current_case__\": 1}}, {\"__index__\": 1, \"image_to_measure\": \"DNA\", \"con_intensity\": {\"only_from_objects\": \"Yes\", \"__current_case__\": 0, \"input_objects\": \"Nuclei\"}}, {\"__index__\": 2, \"image_to_measure\": \"BG\", \"con_intensity\": {\"only_from_objects\": \"No\", \"__current_case__\": 1}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "5aa9619d-a11a-4b22-8d13-0b39eff4f665", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "64333743-a286-4ecb-85be-4203f31d566c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_export_to_spreadsheet/cp_export_to_spreadsheet/3.1.9", + "errors": null, + "id": 23, + "input_connections": { + "input_pipeline": { + "id": 22, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Export measurements", + "name": "ExportToSpreadsheet", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "left": 1972.25, + "top": 219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_export_to_spreadsheet/cp_export_to_spreadsheet/3.1.9", + "tool_shed_repository": { + "changeset_revision": "72a7f23f3a79", + "name": "cp_export_to_spreadsheet", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_metadata_column_to_object\": \"Yes\", \"calc_mean\": \"Yes\", \"calc_median\": \"Yes\", \"calc_standard_deviation\": \"Yes\", \"con_create_gene_pattern\": {\"create_gene_pattern\": \"No\", \"__current_case__\": 1}, \"con_export_all_measurements\": {\"export_all_measurements\": \"Yes\", \"__current_case__\": 1}, \"con_prefix\": {\"add_prefix\": \"No\", \"__current_case__\": 1}, \"delimiter\": \"Tab\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"overwrite_existing_file\": \"Yes\", \"represent_nan\": \"NaN\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "fe3256bd-e219-48ba-9588-87ccd061ce46", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "70625d77-224f-405a-ab93-3f55d644d9bd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_cellprofiler/cp_cellprofiler/3.1.9", + "errors": null, + "id": 24, + "input_connections": { + "con_input_type|input_images": { + "id": 1, + "output_name": "output_tar" + }, + "pipeline": { + "id": 23, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": "Run CellProfiler", + "name": "CellProfiler", + "outputs": [ + { + "name": "pipeline_output", + "type": "input" + }, + { + "name": "logs", + "type": "txt" + } + ], + "position": { + "left": 2053, + "top": 219 + }, + "post_job_actions": { + "EmailActionpipeline_output": { + "action_arguments": {}, + "action_type": "EmailAction", + "output_name": "pipeline_output" + }, + "HideDatasetActionlogs": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "logs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_cellprofiler/cp_cellprofiler/3.1.9", + "tool_shed_repository": { + "changeset_revision": "fca368c99299", + "name": "cp_cellprofiler", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_input_type\": {\"input_type\": \"yes\", \"__current_case__\": 1, \"input_images\": {\"__class__\": \"ConnectedValue\"}}, \"detailed_output\": \"true\", \"pipeline\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9", + "type": "tool", + "uuid": "5e893441-7a89-44ce-afe8-29959465f0ee", + "workflow_outputs": [ + { + "label": null, + "output_name": "pipeline_output", + "uuid": "30778509-8776-4c05-8d4e-6823532a9c41" + } + ] + } + ], + "parent_id": "imaging/tutorial-CP", + "path": "topics/imaging/tutorials/tutorial-CP/workflows/main_workflow.ga", + "tags": [ + "CellProfiler", + "imaging" + ], + "test_results": null, + "tests": false, + "title": "CP_pipeline_IDR_training", + "topic_id": "imaging", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-tutorial-CP/versions/main-workflow", + "tutorial_id": "tutorial-CP", + "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/tutorial-CP/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/tutorial-CP/workflows/main_workflow.html", + "version": 3, + "wfid": "imaging-tutorial-CP", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_cellprofiler/cp_cellprofiler/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_common/cp_common/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_convert_objects_to_image/cp_convert_objects_to_image/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_display_data_on_image/cp_display_data_on_image/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_enhance_or_suppress_features/cp_enhance_or_suppress_features/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_export_to_spreadsheet/cp_export_to_spreadsheet/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_gray_to_color/cp_gray_to_color/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_image_math/cp_image_math/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_mask_image/cp_mask_image/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_granularity/cp_measure_granularity/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_area_occupied/cp_measure_image_area_occupied/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_intensity/cp_measure_image_intensity/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_image_quality/cp_measure_image_quality/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_intensity/cp_measure_object_intensity/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_size_shape/cp_measure_object_size_shape/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_texture/cp_measure_texture/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_relate_objects/cp_relate_objects/3.1.9", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9", + "toolshed.g2.bx.psu.edu/repos/iuc/idr_download_by_ids/idr_download_by_ids/0.41" + ], + "workflowhub_id": "1262" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "cp_cellprofiler", + "owner": "bgruening", + "revisions": "0e4dccaafef5", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_color_to_gray", + "owner": "bgruening", + "revisions": "e8f822eeb9fd", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_common", + "owner": "bgruening", + "revisions": "670975e92458", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_export_to_spreadsheet", + "owner": "bgruening", + "revisions": "d0178bdcd00e", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_identify_primary_objects", + "owner": "bgruening", + "revisions": "b6eec6087271", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_object_intensity", + "owner": "bgruening", + "revisions": "407925835dd9", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_measure_object_size_shape", + "owner": "bgruening", + "revisions": "acf3aa487283", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_overlay_outlines", + "owner": "bgruening", + "revisions": "91560258e972", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_save_images", + "owner": "bgruening", + "revisions": "33f4fa1413fb", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_tile", + "owner": "bgruening", + "revisions": "443638c10c61", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cp_track_objects", + "owner": "bgruening", + "revisions": "1fd453cd757b", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unzip", + "owner": "imgteam", + "revisions": "38eec75fbe9b", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: cp_cellprofiler\n owner: bgruening\n revisions: 0e4dccaafef5\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_color_to_gray\n owner: bgruening\n revisions: e8f822eeb9fd\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_common\n owner: bgruening\n revisions: 670975e92458\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_export_to_spreadsheet\n owner: bgruening\n revisions: d0178bdcd00e\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_identify_primary_objects\n owner: bgruening\n revisions: b6eec6087271\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_object_intensity\n owner: bgruening\n revisions: 407925835dd9\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_measure_object_size_shape\n owner: bgruening\n revisions: acf3aa487283\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_overlay_outlines\n owner: bgruening\n revisions: 91560258e972\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_save_images\n owner: bgruening\n revisions: 33f4fa1413fb\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_tile\n owner: bgruening\n revisions: 443638c10c61\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cp_track_objects\n owner: bgruening\n revisions: 1fd453cd757b\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unzip\n owner: imgteam\n revisions: 38eec75fbe9b\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/object-tracking-using-cell-profiler/tutorial.json", + "contributors": [ + { + "email": "yi.sun@embl.de", + "id": "sunyi000", + "joined": "2021-03", + "name": "Yi Sun", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sunyi000/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sunyi000.json" + }, + { + "email": "beatrizserrano.galaxy@gmail.com", + "id": "beatrizserrano", + "joined": "2020-07", + "linkedin": "beatriz-serrano", + "matrix": "beatrizserrano:matrix.org", + "name": "Beatriz Serrano-Solano", + "orcid": "0000-0002-5862-6132", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/beatrizserrano/", + "twitter": "BSerranoSolano", + "url": "https://training.galaxyproject.org/training-material/api/contributors/beatrizserrano.json" + }, + { + "id": "jkh1", + "joined": "2020-07", + "name": "Jean-Karim H\u00e9rich\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jkh1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jkh1.json" + } + ], + "dir": "topics/imaging/tutorials/object-tracking-using-cell-profiler", + "edam_operation": [ + "Parsing", + "Image analysis", + "Quantification" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "imaging/object-tracking-using-cell-profiler", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "CellProfiler in Galaxy can be used to track objects in time-lapse microscopy images" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Segment fluorescent objects using CellProfiler in Galaxy", + "Track objects over multiple frames using CellProfiler in Galaxy" + ], + "pageviews": 2270, + "pub_date": "2021-03-17", + "questions": [ + "How to segment and track objects in fluorescence time-lapse microscopy images?" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "workflow-editor" + ], + "type": "internal" + } + ], + "short_id": "T00182", + "short_tools": [ + "cp_color_to_gray", + "cp_common", + "cp_identify_primary_objects", + "cp_measure_object_size_shape", + "cp_cellprofiler", + "cp_save_images", + "cp_tile", + "unzip", + "cp_track_objects", + "cp_overlay_outlines", + "cp_measure_object_intensity", + "cp_export_to_spreadsheet" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Object tracking using CellProfiler", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_cellprofiler/cp_cellprofiler/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_color_to_gray/cp_color_to_gray/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_common/cp_common/3.1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_export_to_spreadsheet/cp_export_to_spreadsheet/3.1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_intensity/cp_measure_object_intensity/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_size_shape/cp_measure_object_size_shape/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_overlay_outlines/cp_overlay_outlines/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_tile/cp_tile/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_track_objects/cp_track_objects/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/0.2" + ], + "topic_name": "imaging", + "topic_name_human": "Imaging", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "object-tracking-using-cell-profiler", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/imaging/tutorials/object-tracking-using-cell-profiler/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/object-tracking-using-cell-profiler/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/object-tracking-using-cell-profiler/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 61, + "visitors": 1802, + "workflows": [ + { + "creators": [], + "description": "example cellprofiler pipeline", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Starting Modules\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[label=\"ColorToGray\"]\n 0 -> 2 [label=\"output_pipeline\"]\n 3[label=\"Unzip\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"IdentifyPrimaryObjects\"]\n 2 -> 4 [label=\"output_pipeline\"]\n 5[label=\"MeasureObjectSizeShape\"]\n 4 -> 5 [label=\"output_pipeline\"]\n 6[label=\"MeasureObjectIntensity\"]\n 5 -> 6 [label=\"output_pipeline\"]\n 7[label=\"TrackObjects\"]\n 6 -> 7 [label=\"output_pipeline\"]\n 8[label=\"OverlayOutlines\"]\n 7 -> 8 [label=\"output_pipeline\"]\n 9[label=\"Tile\"]\n 8 -> 9 [label=\"output_pipeline\"]\n 10[label=\"SaveImages\"]\n 9 -> 10 [label=\"output_pipeline\"]\n 11[label=\"ExportToSpreadsheet\"]\n 10 -> 11 [label=\"output_pipeline\"]\n 12[label=\"CellProfiler\"]\n 3 -> 12 [label=\"unzipped\"]\n 11 -> 12 [label=\"output_pipeline\"]\n kdab4a9eefb534c7493f58a0c7f7eb13e[color=lightseagreen,label=\"Output\\nCellProfiler pipeline output files\"]\n 12 -> kdab4a9eefb534c7493f58a0c7f7eb13e\n}", + "history": [ + { + "hash": "df4b9d4a414cc912f4eeb955923a660a34b9d0a5", + "message": "add imaging tag to wf", + "num": 4, + "short_hash": "df4b9d4a4", + "unix": "1615762262" + }, + { + "hash": "02ed9f7276f43c0fedfa5c7e10e72b49f930f69f", + "message": "Tutorial completed and workflow tested.", + "num": 3, + "short_hash": "02ed9f727", + "unix": "1615564873" + }, + { + "hash": "9ebd4b5305f4369f208beddc168d3310ecb7f528", + "message": "update workflow file", + "num": 2, + "short_hash": "9ebd4b530", + "unix": "1614676803" + }, + { + "hash": "e7abfe33423597ddcd26882e1a4a1a076fa9a0ac", + "message": "first skeleton of the tutorial", + "num": 1, + "short_hash": "e7abfe334", + "unix": "1614377732" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 731.7833251953125, + "height": 82.20001220703125, + "left": 656.36669921875, + "right": 856.36669921875, + "top": 649.5833129882812, + "width": 200, + "x": 656.36669921875, + "y": 649.5833129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ce4f26d4-cd5c-49a8-a434-31ff911bb1f6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3a620fc2-51b9-4d8a-b1c9-621e9cd47a0d" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"Starting Modules\"];\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"ColorToGray\"];\n 0 -->|output_pipeline| 2;\n 3[\"Unzip\"];\n 1 -->|output| 3;\n 4[\"IdentifyPrimaryObjects\"];\n 2 -->|output_pipeline| 4;\n 5[\"MeasureObjectSizeShape\"];\n 4 -->|output_pipeline| 5;\n 6[\"MeasureObjectIntensity\"];\n 5 -->|output_pipeline| 6;\n 7[\"TrackObjects\"];\n 6 -->|output_pipeline| 7;\n 8[\"OverlayOutlines\"];\n 7 -->|output_pipeline| 8;\n 9[\"Tile\"];\n 8 -->|output_pipeline| 9;\n 10[\"SaveImages\"];\n 9 -->|output_pipeline| 10;\n 11[\"ExportToSpreadsheet\"];\n 10 -->|output_pipeline| 11;\n 12[\"CellProfiler\"];\n 3 -->|unzipped| 12;\n 11 -->|output_pipeline| 12;\n dab4a9ee-fb53-4c74-93f5-8a0c7f7eb13e[\"Output\\nCellProfiler pipeline output files\"];\n 12 --> dab4a9ee-fb53-4c74-93f5-8a0c7f7eb13e;\n style dab4a9ee-fb53-4c74-93f5-8a0c7f7eb13e stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "CP_object_tracking_example", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_common/cp_common/3.1.9+galaxy1", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Starting Modules", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": -322.8000030517578, + "height": 82.19999694824219, + "left": -391.5, + "right": -191.5, + "top": -405, + "width": 200, + "x": -391.5, + "y": -405 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_common/cp_common/3.1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "670975e92458", + "name": "cp_common", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"groups\": {\"con_groups\": {\"group_images\": \"Yes\", \"__current_case__\": 0, \"group_category\": \"field1\"}}, \"images\": {\"filter_images\": \"Images only\"}, \"metadata\": {\"con_metadata_extraction\": {\"extract\": \"Yes\", \"__current_case__\": 0, \"extraction_method\": [{\"__index__\": 0, \"metadata_extraction_method\": \"Extract from file/folder names\", \"con_metadata_source\": {\"metadata_source\": \"File name\", \"__current_case__\": 0, \"file_name_regex\": \"(?P.*)_(?P[a-zA-Z0-9]+)_(?P[a-zA-Z0-9]+)\"}, \"con_metadata_extract_from\": {\"extract_metadata_from\": \"Images matching a rule\", \"__current_case__\": 0, \"match_all_any\": \"and\", \"r_match\": [{\"__index__\": 0, \"con_match\": {\"rule_type\": \"file\", \"__current_case__\": 0, \"operator\": \"does\", \"contain\": \"containregexp\", \"match_value\": \"GFPHistone\"}}]}}]}}, \"nameandtypes\": {\"pixel_space\": {\"process_3d\": \"No\", \"__current_case__\": 1}, \"con_assign_a_name_to\": {\"assign_a_name_to\": \"Images matching rules\", \"__current_case__\": 1, \"r_match_rule\": [{\"__index__\": 0, \"match_all_any\": \"and\", \"r_match\": [{\"__index__\": 0, \"con_match\": {\"rule_type\": \"file\", \"__current_case__\": 0, \"operator\": \"does\", \"contain\": \"containregexp\", \"match_value\": \"GFPHistone\"}}], \"con_select_image_type\": {\"select_image_type\": \"Color image\", \"__current_case__\": 1, \"name_to_assign\": \"OrigColor\", \"con_set_intensity\": {\"set_intensity_range_from\": \"Image metadata\", \"__current_case__\": 1}}}], \"matching_method\": \"Metadata\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy1", + "type": "tool", + "uuid": "fb741c06-b744-4a07-882f-ebf3839bdd3d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "92a5ca6d-448d-4ed4-bd6d-0cd0a2802749" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 731.7833251953125, + "height": 82.20001220703125, + "left": 656.36669921875, + "right": 856.36669921875, + "top": 649.5833129882812, + "width": 200, + "x": 656.36669921875, + "y": 649.5833129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ce4f26d4-cd5c-49a8-a434-31ff911bb1f6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3a620fc2-51b9-4d8a-b1c9-621e9cd47a0d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_color_to_gray/cp_color_to_gray/3.1.9+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_pipeline": { + "id": 0, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "ColorToGray", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": -282.9833221435547, + "height": 113.59999084472656, + "left": -160.5833282470703, + "right": 39.41667175292969, + "top": -396.58331298828125, + "width": 200, + "x": -160.5833282470703, + "y": -396.58331298828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_color_to_gray/cp_color_to_gray/3.1.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e8f822eeb9fd", + "name": "cp_color_to_gray", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_conversion_method\": {\"conversion_method\": \"Combine\", \"__current_case__\": 0, \"name_output_image\": \"OrigGray\", \"con_image_type\": {\"image_type\": \"RGB\", \"__current_case__\": 0, \"weight_red_channel\": \"1.0\", \"weight_green_channel\": \"1.0\", \"weight_blue_channel\": \"1.0\"}}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_input_image\": \"OrigColor\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy0", + "type": "tool", + "uuid": "a5cde14c-48f9-491e-a78c-296432463a67", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "37c9eb1f-cbc8-4a52-9f8a-fe8857f3240e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/0.2", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unzip", + "outputs": [ + { + "name": "unzipped", + "type": "input" + } + ], + "position": { + "bottom": 756.3500061035156, + "height": 113.60000610351562, + "left": 931.6500244140625, + "right": 1131.6500244140625, + "top": 642.75, + "width": 200, + "x": 931.6500244140625, + "y": 642.75 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/0.2", + "tool_shed_repository": { + "changeset_revision": "38eec75fbe9b", + "name": "unzip", + "owner": "imgteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"extract_options\": {\"extract_all\": \"True\", \"__current_case__\": 0}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2", + "type": "tool", + "uuid": "616a5cfd-46bc-4f69-8f62-fb14f5e63ae9", + "workflow_outputs": [ + { + "label": null, + "output_name": "unzipped", + "uuid": "0cd4640a-a52b-45aa-996f-75dbdaf29d46" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input_pipeline": { + "id": 2, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "IdentifyPrimaryObjects", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": -91.13333129882812, + "height": 134, + "left": -62.100006103515625, + "right": 137.89999389648438, + "top": -225.13333129882812, + "width": 200, + "x": -62.100006103515625, + "y": -225.13333129882812 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b6eec6087271", + "name": "cp_identify_primary_objects", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_advanced\": {\"advanced\": \"Yes\", \"__current_case__\": 1, \"input_from_nat\": \"OrigGray\", \"name_to_be_identified\": \"Nuclei\", \"min_diameter\": \"30\", \"max_diameter\": \"9999\", \"discard_outside_border\": \"Yes\", \"discard_touching_border\": \"Yes\", \"con_threshold_strategy\": {\"threshold_strategy\": \"Global\", \"__current_case__\": 1, \"con_threshold_method\": {\"threshold_method\": \"Otsu\", \"__current_case__\": 0, \"con_threshold_class\": {\"threshold_class\": \"Three classes\", \"__current_case__\": 0, \"assign_pixel\": \"Background\"}, \"threshold_smoothing_scale\": \"1.3488\", \"threshold_correction_factor\": \"1.0\", \"threshold_lower\": \"0.01\", \"threshold_upper\": \"1.0\"}}, \"con_distinguish_clumped_objects\": {\"distinguish_clumped_objects\": \"Intensity\", \"__current_case__\": 1, \"con_dividing_lines\": {\"dividing_lines\": \"Intensity\", \"__current_case__\": 1, \"con_smoothing_filter\": {\"smoothing_filter\": \"Yes\", \"__current_case__\": 1}, \"con_min_distance\": {\"min_distance\": \"Yes\", \"__current_case__\": 1}, \"speed_up\": \"Yes\"}}, \"fill_hole\": \"After both thresholding and declumping\", \"con_handling_excessive\": {\"excessive_handling\": \"Continue\", \"__current_case__\": 1}}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy1", + "type": "tool", + "uuid": "8b8c952e-c9f2-483b-84b9-365162987b51", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "1988a994-a7f4-4abf-b7dc-3cffcd7d0331" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_size_shape/cp_measure_object_size_shape/3.1.9+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input_pipeline": { + "id": 4, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "MeasureObjectSizeShape", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": 87.66667175292969, + "height": 134, + "left": 75.30000305175781, + "right": 275.3000030517578, + "top": -46.33332824707031, + "width": 200, + "x": 75.30000305175781, + "y": -46.33332824707031 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_size_shape/cp_measure_object_size_shape/3.1.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "acf3aa487283", + "name": "cp_measure_object_size_shape", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"rpt_object\": [{\"__index__\": 0, \"objects_to_measure\": \"Nuclei\"}], \"zernike_feature\": \"No\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy0", + "type": "tool", + "uuid": "9366dc9d-f4aa-4930-b50d-e1bffe20da6e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "a4fc756b-790d-42e8-8637-2ac9a54caa01" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_intensity/cp_measure_object_intensity/3.1.9+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input_pipeline": { + "id": 5, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "MeasureObjectIntensity", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": 94.5, + "height": 134, + "left": 314.1166687011719, + "right": 514.1166687011719, + "top": -39.5, + "width": 200, + "x": 314.1166687011719, + "y": -39.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_intensity/cp_measure_object_intensity/3.1.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "407925835dd9", + "name": "cp_measure_object_intensity", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"rpt_image\": [{\"__index__\": 0, \"image_to_measure\": \"OrigGray\"}], \"rpt_object\": [{\"__index__\": 0, \"objects_to_measure\": \"Nuclei\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy0", + "type": "tool", + "uuid": "47e32310-e656-411a-a34b-a80ef90b4596", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "83dd3bbf-cf0b-4581-a73e-dedf91383a61" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_track_objects/cp_track_objects/3.1.9+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input_pipeline": { + "id": 6, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "TrackObjects", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": 265.75, + "height": 134, + "left": 469.6333312988281, + "right": 669.6333312988281, + "top": 131.75, + "width": 200, + "x": 469.6333312988281, + "y": 131.75 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_track_objects/cp_track_objects/3.1.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1fd453cd757b", + "name": "cp_track_objects", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_tracking_method\": {\"tracking_method\": \"Overlap\", \"__current_case__\": 0, \"max_distance\": \"50\", \"con_filter_by_lifetime\": {\"filter_by_lifetime\": \"No\", \"__current_case__\": 1}, \"display_option\": \"Color and Number\", \"con_save_coded_img\": {\"save_coded_img\": \"Yes\", \"__current_case__\": 0, \"name_output_img\": \"TrackedCells\"}}, \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"object_to_track\": \"Nuclei\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy0", + "type": "tool", + "uuid": "39cf58a1-e5e5-4fd4-abc7-12fa772877e7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "327ce30c-a4c9-4dff-99f1-cdcc82ce101d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_overlay_outlines/cp_overlay_outlines/3.1.9+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input_pipeline": { + "id": 7, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "OverlayOutlines", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": 443.04998779296875, + "height": 134, + "left": 595.9666748046875, + "right": 795.9666748046875, + "top": 309.04998779296875, + "width": 200, + "x": 595.9666748046875, + "y": 309.04998779296875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_overlay_outlines/cp_overlay_outlines/3.1.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "91560258e972", + "name": "cp_overlay_outlines", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_blank_img\": {\"blank_img\": \"No\", \"__current_case__\": 1, \"image_to_outline\": \"OrigGray\", \"con_display_mode\": {\"display_mode\": \"Color\", \"__current_case__\": 0, \"rpt_obj_to_display\": [{\"__index__\": 0, \"obj_to_display\": \"Nuclei\", \"outline_color\": \"#ff0000\"}]}}, \"howto_outline\": \"Inner\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"name_output_image\": \"OutlineImage\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy0", + "type": "tool", + "uuid": "725e19a9-31dc-463f-ba04-9704626e6077", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "c0550e15-158b-4a4d-a1cc-a4877e1bb77a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_tile/cp_tile/3.1.9+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input_pipeline": { + "id": 8, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "Tile", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": 431.0166778564453, + "height": 113.59999084472656, + "left": 829.0999755859375, + "right": 1029.0999755859375, + "top": 317.41668701171875, + "width": 200, + "x": 829.0999755859375, + "y": 317.41668701171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_tile/cp_tile/3.1.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "878bafb411dd", + "name": "cp_tile", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_assembly_method\": {\"assembly_method\": \"Within cycles\", \"__current_case__\": 0, \"con_calc_no_row\": {\"calc_no_row\": \"No\", \"__current_case__\": 1, \"no_of_row\": \"1\"}, \"con_calc_no_cols\": {\"calc_no_cols\": \"Yes\", \"__current_case__\": 0}, \"corner_to_begin\": \"top left\", \"direction\": \"row\", \"meander_mode\": \"No\", \"rpt_additional_image\": [{\"__index__\": 0, \"additional_img\": \"OutlineImage\"}, {\"__index__\": 1, \"additional_img\": \"TrackedCells\"}]}, \"input_image\": \"OrigColor\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"output_image_name\": \"TiledImages\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy0", + "type": "tool", + "uuid": "210b3d0d-1139-4934-886b-805c1fcfa3de", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "83dbb3d1-3126-4e95-a2ea-d8f9a6ed5722" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "input_pipeline": { + "id": 9, + "output_name": "output_pipeline" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SaveImages", + "name": "input_pipeline" + } + ], + "label": null, + "name": "SaveImages", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": 591.4833374023438, + "height": 113.60000610351562, + "left": 887.566650390625, + "right": 1087.566650390625, + "top": 477.8833312988281, + "width": 200, + "x": 887.566650390625, + "y": 477.8833312988281 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "33f4fa1413fb", + "name": "cp_save_images", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_method_for_constructing\": {\"method_for_constructing\": \"From image filename\", \"__current_case__\": 0, \"name_for_file_prefix\": \"OrigColor\", \"con_append_suffix\": {\"append_suffix\": \"Yes\", \"__current_case__\": 0, \"text_to_append\": \"\"}}, \"con_type_of_image\": {\"type_of_image\": \"Image\", \"__current_case__\": 0, \"con_save_file_format\": {\"file_format\": \"png\", \"__current_case__\": 3}}, \"image_to_save\": \"TiledImages\", \"input_pipeline\": {\"__class__\": \"RuntimeValue\"}, \"overwrite_without_warning\": \"Yes\", \"record_info\": \"No\", \"when_to_save\": \"Every cycle\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy1", + "type": "tool", + "uuid": "86647f83-5316-4577-be99-1d966eb2f92a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "1c29a3c6-ebb0-4ece-b2cf-aeeb0cdf6e1e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_export_to_spreadsheet/cp_export_to_spreadsheet/3.1.9+galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "input_pipeline": { + "id": 10, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "ExportToSpreadsheet", + "outputs": [ + { + "name": "output_pipeline", + "type": "txt" + } + ], + "position": { + "bottom": 586.816650390625, + "height": 134, + "left": 1144.7833251953125, + "right": 1344.7833251953125, + "top": 452.816650390625, + "width": 200, + "x": 1144.7833251953125, + "y": 452.816650390625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_export_to_spreadsheet/cp_export_to_spreadsheet/3.1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "d0178bdcd00e", + "name": "cp_export_to_spreadsheet", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_metadata_column_to_object\": \"Yes\", \"calc_mean\": \"Yes\", \"calc_median\": \"No\", \"calc_standard_deviation\": \"No\", \"con_create_gene_pattern\": {\"create_gene_pattern\": \"No\", \"__current_case__\": 1}, \"con_export_all_measurements\": {\"__current_case__\": 1, \"export_all_measurements\": \"Yes\"}, \"con_prefix\": {\"add_prefix\": \"No\", \"__current_case__\": 1}, \"delimiter\": \"Comma (\\\",\\\")\", \"input_pipeline\": {\"__class__\": \"ConnectedValue\"}, \"overwrite_existing_file\": \"Yes\", \"represent_nan\": \"NaN\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy1", + "type": "tool", + "uuid": "c08309b4-101c-4150-bb88-c2856bb2636e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pipeline", + "uuid": "52f72fd2-726e-40b1-b168-7396a64f7a16" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_cellprofiler/cp_cellprofiler/3.1.9+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "con_input_type|input_images": { + "id": 3, + "output_name": "unzipped" + }, + "pipeline": { + "id": 11, + "output_name": "output_pipeline" + } + }, + "inputs": [], + "label": null, + "name": "CellProfiler", + "outputs": [ + { + "name": "pipeline_output", + "type": "input" + }, + { + "name": "logs", + "type": "txt" + } + ], + "position": { + "bottom": 808.9333190917969, + "height": 174.39999389648438, + "left": 1371.8333740234375, + "right": 1571.8333740234375, + "top": 634.5333251953125, + "width": 200, + "x": 1371.8333740234375, + "y": 634.5333251953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/cp_cellprofiler/cp_cellprofiler/3.1.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "0e4dccaafef5", + "name": "cp_cellprofiler", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"con_input_type\": {\"input_type\": \"no\", \"__current_case__\": 0, \"input_images\": {\"__class__\": \"ConnectedValue\"}}, \"detailed_output\": \"true\", \"pipeline\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.9+galaxy0", + "type": "tool", + "uuid": "da0bad08-2691-40e5-b2ae-24890ea16e7b", + "workflow_outputs": [ + { + "label": null, + "output_name": "logs", + "uuid": "ca4a668b-b33c-41fa-a427-ad3b83c2d07f" + }, + { + "label": "CellProfiler pipeline output files", + "output_name": "pipeline_output", + "uuid": "dab4a9ee-fb53-4c74-93f5-8a0c7f7eb13e" + } + ] + } + ], + "parent_id": "imaging/object-tracking-using-cell-profiler", + "path": "topics/imaging/tutorials/object-tracking-using-cell-profiler/workflows/main_workflow.ga", + "tags": [ + "CellProfiler", + "imaging" + ], + "test_results": null, + "tests": false, + "title": "CP_object_tracking_example", + "topic_id": "imaging", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-object-tracking-using-cell-profiler/versions/main-workflow", + "tutorial_id": "object-tracking-using-cell-profiler", + "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/object-tracking-using-cell-profiler/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/object-tracking-using-cell-profiler/workflows/main_workflow.html", + "version": 1, + "wfid": "imaging-object-tracking-using-cell-profiler", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_cellprofiler/cp_cellprofiler/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_color_to_gray/cp_color_to_gray/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_common/cp_common/3.1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_export_to_spreadsheet/cp_export_to_spreadsheet/3.1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_identify_primary_objects/cp_identify_primary_objects/3.1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_intensity/cp_measure_object_intensity/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_measure_object_size_shape/cp_measure_object_size_shape/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_overlay_outlines/cp_overlay_outlines/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_save_images/cp_save_images/3.1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_tile/cp_tile/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/cp_track_objects/cp_track_objects/3.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/0.2" + ], + "workflowhub_id": "1254" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4567084" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "mesmer", + "owner": "goeckslab", + "revisions": "187918c47051", + "tool_panel_section_label": "Spatial Omics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rename_tiff_channels", + "owner": "goeckslab", + "revisions": "09e240a12897", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scimap_mcmicro_to_anndata", + "owner": "goeckslab", + "revisions": "8ca435ec19be", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scimap_phenotyping", + "owner": "goeckslab", + "revisions": "dcfcad35e847", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "vitessce_spatial", + "owner": "goeckslab", + "revisions": "9f60ef2d586e", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bfconvert", + "owner": "imgteam", + "revisions": "f3360fbeda64", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ashlar", + "owner": "perssond", + "revisions": "33ab2058c6d9", + "tool_panel_section_label": "Spatial Omics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "basic_illumination", + "owner": "perssond", + "revisions": "acc6f509968c", + "tool_panel_section_label": "Spatial Omics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "coreograph", + "owner": "perssond", + "revisions": "ee92746d141a", + "tool_panel_section_label": "Spatial Omics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quantification", + "owner": "perssond", + "revisions": "3a916c4e9f5f", + "tool_panel_section_label": "Spatial Omics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: mesmer\n owner: goeckslab\n revisions: 187918c47051\n tool_panel_section_label: Spatial Omics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rename_tiff_channels\n owner: goeckslab\n revisions: '09e240a12897'\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scimap_mcmicro_to_anndata\n owner: goeckslab\n revisions: 8ca435ec19be\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scimap_phenotyping\n owner: goeckslab\n revisions: dcfcad35e847\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: vitessce_spatial\n owner: goeckslab\n revisions: 9f60ef2d586e\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bfconvert\n owner: imgteam\n revisions: f3360fbeda64\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ashlar\n owner: perssond\n revisions: 33ab2058c6d9\n tool_panel_section_label: Spatial Omics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: basic_illumination\n owner: perssond\n revisions: acc6f509968c\n tool_panel_section_label: Spatial Omics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: coreograph\n owner: perssond\n revisions: ee92746d141a\n tool_panel_section_label: Spatial Omics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quantification\n owner: perssond\n revisions: 3a916c4e9f5f\n tool_panel_section_label: Spatial Omics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/multiplex-tissue-imaging-TMA/tutorial.json", + "contributors": [ + { + "email": "watsocam@ohsu.edu", + "id": "CameronFRWatson", + "joined": "2022-07", + "name": "Cameron Watson", + "orcid": "0000-0002-6942-2469", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/CameronFRWatson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/CameronFRWatson.json" + }, + { + "email": "creason@ohsu.edu", + "id": "alliecreason", + "joined": "2023-02", + "name": "Allison Creason", + "orcid": "0000-0001-5724-1276", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alliecreason/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alliecreason.json" + } + ], + "dir": "topics/imaging/tutorials/multiplex-tissue-imaging-TMA", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "imaging/multiplex-tissue-imaging-TMA", + "inexact_supported_servers": [ + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy has tools and workflows that can be used to process and analyze multiplex tissue images", + "Cell feature tables produced by the Galaxy TMA workflow can be used for downstream single-cell and spatial analyses", + "There are powerful interactive visualization tools available in Galaxy that can combine the real images with associated data", + "Tissue Microarray data can be analyzed using workflows that invoke MTI tools in batch", + "Segmentation quality can vary significantly depending on features of the input image, tool used, and parameters" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Understand the tools available in Galaxy for multiplex tissue imaging analysis", + "Analyze and visualize publicly available TMA data using Galaxy" + ], + "pageviews": 1005, + "pub_date": "2023-02-14", + "questions": [ + "What tools are available for pre-processing multiplex tissue images in Galaxy?", + "What tools are available for downstream analysis of multiplex tissue images in Galaxy?", + "How do I pre-process and analyze Tissue Microarray data?", + "How can I visualize multiplex tissue images and associated data?", + "How can I assign phenotypes to cells in an MTI dataset?" + ], + "short_id": "T00334", + "short_tools": [ + "basic_illumination", + "ip_convertimage", + "vitessce_spatial", + "scimap_mcmicro_to_anndata", + "unet_coreograph", + "rename_tiff_channels", + "mesmer", + "quantification", + "ashlar", + "scimap_phenotyping" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "3H", + "title": "End-to-End Tissue Microarray Image Analysis with Galaxy-ME", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/goeckslab/mesmer/mesmer/0.12.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/goeckslab/rename_tiff_channels/rename_tiff_channels/0.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/goeckslab/scimap_mcmicro_to_anndata/scimap_mcmicro_to_anndata/0.17.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/goeckslab/scimap_phenotyping/scimap_phenotyping/0.17.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/goeckslab/vitessce_spatial/vitessce_spatial/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/imgteam/bfconvert/ip_convertimage/6.7.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/perssond/ashlar/ashlar/1.14.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/perssond/basic_illumination/basic_illumination/1.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/perssond/coreograph/unet_coreograph/2.2.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/perssond/quantification/quantification/1.5.3+galaxy1" + ], + "topic_name": "imaging", + "topic_name_human": "Imaging", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "multiplex-tissue-imaging-TMA", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/imaging/tutorials/multiplex-tissue-imaging-TMA/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/multiplex-tissue-imaging-TMA/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/multiplex-tissue-imaging-TMA/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 110, + "visitors": 729, + "workflows": [ + { + "creators": [], + "description": "End-to-End Tissue Microarray Analysis with Galaxy-ME", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmarkers.csv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPhenotypeWorkflow\"]\n 3[label=\"BaSiC Illumination\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"ASHLAR\"]\n 3 -> 4 [label=\"output_dfp\"]\n 3 -> 4 [label=\"output_ffp\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"UNetCoreograph\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"Mesmer\"]\n 5 -> 6 [label=\"tma_sections\"]\n kee73bee359e74e1c87fd197b8eac7e15[color=lightseagreen,label=\"Output\\nMesmer on input dataset(s): Mask\"]\n 6 -> kee73bee359e74e1c87fd197b8eac7e15\n 7[label=\"Convert image\"]\n 5 -> 7 [label=\"tma_sections\"]\n 8[label=\"MCQUANT\"]\n 1 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"tma_sections\"]\n 6 -> 8 [label=\"mask\"]\n kfe28534a2b3f4ecc8ba9a106b2d1425c[color=lightseagreen,label=\"Output\\nPrimary Mask Quantification\"]\n 8 -> kfe28534a2b3f4ecc8ba9a106b2d1425c\n 9[label=\"Rename OME-TIFF Channels\"]\n 1 -> 9 [label=\"output\"]\n 7 -> 9 [label=\"output\"]\n 10[label=\"Convert McMicro Output to Anndata\"]\n 8 -> 10 [label=\"cellmask\"]\n 11[label=\"Single Cell Phenotyping\"]\n 10 -> 11 [label=\"outfile\"]\n 2 -> 11 [label=\"output\"]\n 12[label=\"Vitessce Visualization\"]\n 11 -> 12 [label=\"output\"]\n 9 -> 12 [label=\"renamed_image\"]\n 6 -> 12 [label=\"mask\"]\n}", + "history": [ + { + "hash": "74c571972f6c9c00bca6242b05cab50a0c947af0", + "message": "update tool IDs, params to tutorial; add updated workflow; add hands-on avivator example to tutorial", + "num": 3, + "short_hash": "74c571972", + "unix": "1675987355" + }, + { + "hash": "b0bac741569e5790eca8b5f21619220cea4ab902", + "message": "update tool IDs in MTI workflow for linting", + "num": 2, + "short_hash": "b0bac7415", + "unix": "1657213046" + }, + { + "hash": "aa2aba190643cbb000c0c2916d4c3656c1988e2d", + "message": "Multiplex Imaging tutorial - initial push", + "num": 1, + "short_hash": "aa2aba190", + "unix": "1656910720" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 371.28125, + "height": 82.1953125, + "left": -742, + "right": -542, + "top": 289.0859375, + "width": 200, + "x": -742, + "y": 289.0859375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "df4b5b73-b816-4362-b95b-f4571766abfe", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "markers.csv" + } + ], + "label": "markers.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 760.8828125, + "height": 61.796875, + "left": -408, + "right": -208, + "top": 699.0859375, + "width": 200, + "x": -408, + "y": 699.0859375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "8d2425da-b96c-4955-81c3-9303bec9cf9a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "PhenotypeWorkflow" + } + ], + "label": "PhenotypeWorkflow", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 704.28125, + "height": 82.1953125, + "left": 911, + "right": 1111, + "top": 622.0859375, + "width": 200, + "x": 911, + "y": 622.0859375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"csv\"], \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "9748c022-951a-40b6-9371-fc35ee908110", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nmarkers.csv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nPhenotypeWorkflow\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"BaSiC Illumination\"];\n 0 -->|output| 3;\n 4[\"ASHLAR\"];\n 3 -->|output_dfp| 4;\n 3 -->|output_ffp| 4;\n 0 -->|output| 4;\n 1 -->|output| 4;\n 5[\"UNetCoreograph\"];\n 4 -->|output| 5;\n 6[\"Mesmer\"];\n 5 -->|tma_sections| 6;\n ee73bee3-59e7-4e1c-87fd-197b8eac7e15[\"Output\\nMesmer on input dataset(s): Mask\"];\n 6 --> ee73bee3-59e7-4e1c-87fd-197b8eac7e15;\n style ee73bee3-59e7-4e1c-87fd-197b8eac7e15 stroke:#2c3143,stroke-width:4px;\n 7[\"Convert image\"];\n 5 -->|tma_sections| 7;\n 8[\"MCQUANT\"];\n 1 -->|output| 8;\n 5 -->|tma_sections| 8;\n 6 -->|mask| 8;\n fe28534a-2b3f-4ecc-8ba9-a106b2d1425c[\"Output\\nPrimary Mask Quantification\"];\n 8 --> fe28534a-2b3f-4ecc-8ba9-a106b2d1425c;\n style fe28534a-2b3f-4ecc-8ba9-a106b2d1425c stroke:#2c3143,stroke-width:4px;\n 9[\"Rename OME-TIFF Channels\"];\n 1 -->|output| 9;\n 7 -->|output| 9;\n 10[\"Convert McMicro Output to Anndata\"];\n 8 -->|cellmask| 10;\n 11[\"Single Cell Phenotyping\"];\n 10 -->|outfile| 11;\n 2 -->|output| 11;\n 12[\"Vitessce Visualization\"];\n 11 -->|output| 12;\n 9 -->|renamed_image| 12;\n 6 -->|mask| 12;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN_Exemplar_002_TMA_workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/perssond/basic_illumination/basic_illumination/1.0.3+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "in_files": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool BaSiC Illumination", + "name": "in_files" + } + ], + "label": null, + "name": "BaSiC Illumination", + "outputs": [ + { + "name": "output_dfp", + "type": "tiff" + }, + { + "name": "output_ffp", + "type": "tiff" + } + ], + "position": { + "bottom": 475.875, + "height": 184.7890625, + "left": -430, + "right": -230, + "top": 291.0859375, + "width": 200, + "x": -430, + "y": 291.0859375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/perssond/basic_illumination/basic_illumination/1.0.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "acc6f509968c", + "name": "basic_illumination", + "owner": "perssond", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_files\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "d8dcb396-6420-4fd4-9ac8-8b4a86bc1767", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_dfp", + "uuid": "1c6a93d0-6f2b-442a-a255-bfea77cb9c4f" + }, + { + "label": null, + "output_name": "output_ffp", + "uuid": "b30ada0d-9d98-4cb4-aeac-570d42683135" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/perssond/ashlar/ashlar/1.14.0+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "ldfp": { + "id": 3, + "output_name": "output_dfp" + }, + "lffp": { + "id": 3, + "output_name": "output_ffp" + }, + "lraw": { + "id": 0, + "output_name": "output" + }, + "upgrade|markers_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool ASHLAR", + "name": "ldfp" + }, + { + "description": "runtime parameter for tool ASHLAR", + "name": "lffp" + }, + { + "description": "runtime parameter for tool ASHLAR", + "name": "lraw" + }, + { + "description": "runtime parameter for tool ASHLAR", + "name": "upgrade" + } + ], + "label": null, + "name": "ASHLAR", + "outputs": [ + { + "name": "output", + "type": "ome.tiff" + } + ], + "position": { + "bottom": 493.875, + "height": 204.7890625, + "left": -168, + "right": 32, + "top": 289.0859375, + "width": 200, + "x": -168, + "y": 289.0859375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/perssond/ashlar/ashlar/1.14.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "33ab2058c6d9", + "name": "ashlar", + "owner": "perssond", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"align_channel\": \"0\", \"filter_sigma\": null, \"tile_size\": null, \"flip_mosaic_x\": \"false\", \"flip_mosaic_y\": \"false\", \"pyramid\": \"true\"}, \"flip_x\": \"false\", \"flip_y\": \"false\", \"ldfp\": {\"__class__\": \"RuntimeValue\"}, \"lffp\": {\"__class__\": \"RuntimeValue\"}, \"lraw\": {\"__class__\": \"RuntimeValue\"}, \"max_shift\": \"30\", \"upgrade\": {\"decide\": \"do_upgrade\", \"__current_case__\": 0, \"markers_file\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "01551249-f885-48f6-95de-45d12c255066", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d86f47ed-259c-47f9-b61c-1538653c0733" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/perssond/coreograph/unet_coreograph/2.2.8+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "source_image": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool UNetCoreograph", + "name": "source_image" + } + ], + "label": null, + "name": "UNetCoreograph", + "outputs": [ + { + "name": "tma_sections", + "type": "input" + }, + { + "name": "masks", + "type": "input" + }, + { + "name": "TMA_MAP", + "type": "tiff" + } + ], + "position": { + "bottom": 585.8671875, + "height": 296.78125, + "left": 81, + "right": 281, + "top": 289.0859375, + "width": 200, + "x": 81, + "y": 289.0859375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/perssond/coreograph/unet_coreograph/2.2.8+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee92746d141a", + "name": "coreograph", + "owner": "perssond", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"buffer\": \"2.0\", \"channel\": \"0\", \"cluster\": \"false\", \"downsamplefactor\": \"5\", \"sensitivity\": \"0.3\", \"source_image\": {\"__class__\": \"RuntimeValue\"}, \"tissue\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "307e61ea-1b23-41dc-82c8-3df1988179c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "masks", + "uuid": "69ca4dab-bd1f-49bc-84c5-71360be56577" + }, + { + "label": null, + "output_name": "TMA_MAP", + "uuid": "e4f74e11-7d44-4cea-a065-8c15af8171df" + }, + { + "label": null, + "output_name": "tma_sections", + "uuid": "b031e518-f1cc-4bef-9b90-429d36234b1b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/mesmer/mesmer/0.12.3+galaxy2", + "errors": null, + "id": 6, + "input_connections": { + "image": { + "id": 5, + "output_name": "tma_sections" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Mesmer", + "name": "image" + } + ], + "label": null, + "name": "Mesmer", + "outputs": [ + { + "name": "mask", + "type": "tiff" + } + ], + "position": { + "bottom": 422.9921875, + "height": 133.9921875, + "left": 371, + "right": 571, + "top": 289, + "width": 200, + "x": 371, + "y": 289 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/mesmer/mesmer/0.12.3+galaxy2", + "tool_shed_repository": { + "changeset_revision": "187918c47051", + "name": "mesmer", + "owner": "goeckslab", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"compartment_select\": {\"compartment\": \"nuclear\", \"__current_case__\": 0, \"nuclear_options\": {\"pixel_expansion\": null, \"maxima_threshold\": \"0.1\", \"adv_options\": {\"maxima_smooth\": \"0\", \"interior_threshold\": \"0.2\", \"interior_smooth\": \"2\", \"small_objects_threshold\": \"15\", \"fill_holes_threshold\": \"15\", \"radius\": \"1\"}}}, \"image\": {\"__class__\": \"RuntimeValue\"}, \"image_mpp\": \"0.65\", \"nuclear_channels\": \"0\", \"squeeze\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "d15a2489-42d5-47f2-8da2-a4d86c293af0", + "workflow_outputs": [ + { + "label": "Mesmer on input dataset(s): Mask", + "output_name": "mask", + "uuid": "ee73bee3-59e7-4e1c-87fd-197b8eac7e15" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/imgteam/bfconvert/ip_convertimage/6.7.0+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "tma_sections" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Convert image", + "name": "input_file" + } + ], + "label": null, + "name": "Convert image", + "outputs": [ + { + "name": "output", + "type": "tiff" + } + ], + "position": { + "bottom": 729.59375, + "height": 113.59375, + "left": 345, + "right": 545, + "top": 616, + "width": 200, + "x": 345, + "y": 616 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/imgteam/bfconvert/ip_convertimage/6.7.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "f3360fbeda64", + "name": "bfconvert", + "owner": "imgteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"bigtiff\": \"false\", \"channel_options\": {\"extract\": \"False\", \"__current_case__\": 0}, \"compression\": \"False\", \"crop_options\": {\"extract\": \"False\", \"__current_case__\": 0}, \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"noflat\": \"true\", \"out_format\": \"ome.tiff\", \"pyramid_options\": {\"generate\": \"True\", \"__current_case__\": 0, \"pyramid_resolutions\": \"4\", \"pyramid_scale\": \"2\"}, \"range_options\": {\"extract\": \"False\", \"__current_case__\": 0}, \"series_options\": {\"extract\": \"False\", \"__current_case__\": 0}, \"tile_options\": {\"extract\": \"True\", \"__current_case__\": 1, \"tile_x\": \"512\", \"tile_y\": \"512\"}, \"timepoint_options\": {\"extract\": \"False\", \"__current_case__\": 0}, \"z_options\": {\"extract\": \"False\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "0bb1cbe2-35ee-4711-a37c-8ffe769a953a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e4bd4c1a-00b4-47f9-8e75-7968b5824e19" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/perssond/quantification/quantification/1.5.3+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "channel_names": { + "id": 1, + "output_name": "output" + }, + "image": { + "id": 5, + "output_name": "tma_sections" + }, + "primary_mask": { + "id": 6, + "output_name": "mask" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MCQUANT", + "name": "channel_names" + }, + { + "description": "runtime parameter for tool MCQUANT", + "name": "image" + }, + { + "description": "runtime parameter for tool MCQUANT", + "name": "primary_mask" + }, + { + "description": "runtime parameter for tool MCQUANT", + "name": "supp_mask" + } + ], + "label": null, + "name": "MCQUANT", + "outputs": [ + { + "name": "cellmask", + "type": "csv" + }, + { + "name": "suppmask", + "type": "csv" + } + ], + "position": { + "bottom": 544.5859375, + "height": 255.5859375, + "left": 638, + "right": 838, + "top": 289, + "width": 200, + "x": 638, + "y": 289 + }, + "post_job_actions": { + "HideDatasetActionsuppmask": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "suppmask" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/perssond/quantification/quantification/1.5.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3a916c4e9f5f", + "name": "quantification", + "owner": "perssond", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"channel_names\": {\"__class__\": \"RuntimeValue\"}, \"image\": {\"__class__\": \"RuntimeValue\"}, \"intensity_props\": \"\", \"mask_props\": \"\", \"primary_mask\": {\"__class__\": \"RuntimeValue\"}, \"supp_mask\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "e743e3d4-538c-475c-95be-94af7805246c", + "workflow_outputs": [ + { + "label": "Primary Mask Quantification", + "output_name": "cellmask", + "uuid": "fe28534a-2b3f-4ecc-8ba9-a106b2d1425c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/rename_tiff_channels/rename_tiff_channels/0.0.1+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "channel_csv": { + "id": 1, + "output_name": "output" + }, + "image": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Rename OME-TIFF Channels", + "name": "channel_csv" + }, + { + "description": "runtime parameter for tool Rename OME-TIFF Channels", + "name": "image" + } + ], + "label": null, + "name": "Rename OME-TIFF Channels", + "outputs": [ + { + "name": "renamed_image", + "type": "ome.tiff" + } + ], + "position": { + "bottom": 825.1875, + "height": 205.1875, + "left": 651, + "right": 851, + "top": 620, + "width": 200, + "x": 651, + "y": 620 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/rename_tiff_channels/rename_tiff_channels/0.0.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "09e240a12897", + "name": "rename_tiff_channels", + "owner": "goeckslab", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"channel_csv\": {\"__class__\": \"RuntimeValue\"}, \"image\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "48533f44-e13e-4dc2-aa36-c8b2ab7fc18f", + "workflow_outputs": [ + { + "label": null, + "output_name": "renamed_image", + "uuid": "4d9e9fea-2636-4b36-9b8c-d8db49dedb23" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/scimap_mcmicro_to_anndata/scimap_mcmicro_to_anndata/0.17.7+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "image_path": { + "id": 8, + "output_name": "cellmask" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Convert McMicro Output to Anndata", + "name": "image_path" + } + ], + "label": null, + "name": "Convert McMicro Output to Anndata", + "outputs": [ + { + "name": "outfile", + "type": "h5ad" + } + ], + "position": { + "bottom": 423.9921875, + "height": 133.9921875, + "left": 929, + "right": 1129, + "top": 290, + "width": 200, + "x": 929, + "y": 290 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/scimap_mcmicro_to_anndata/scimap_mcmicro_to_anndata/0.17.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8ca435ec19be", + "name": "scimap_mcmicro_to_anndata", + "owner": "goeckslab", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"drop_markers\": \"\", \"image_path\": {\"__class__\": \"RuntimeValue\"}, \"options\": {\"remove_dna\": \"false\", \"remove_string_from_name\": \"\", \"log\": \"true\", \"random_sample\": null, \"CellId\": \"CellID\", \"unique_CellId\": \"false\", \"split\": \"X_centroid\", \"custom_imageid\": \"\", \"min_cells\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "9d492127-f07a-4d1b-8e0f-f40ddcdc657a", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "f798992e-0612-4a4d-9e33-8ee4075eb74a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/scimap_phenotyping/scimap_phenotyping/0.17.7+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "anndata": { + "id": 10, + "output_name": "outfile" + }, + "gating_workflow": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Single Cell Phenotyping", + "name": "anndata" + }, + { + "description": "runtime parameter for tool Single Cell Phenotyping", + "name": "gating_workflow" + }, + { + "description": "runtime parameter for tool Single Cell Phenotyping", + "name": "manual_gates" + } + ], + "label": null, + "name": "Single Cell Phenotyping", + "outputs": [ + { + "name": "gmm_plots", + "type": "input" + }, + { + "name": "output", + "type": "h5ad" + } + ], + "position": { + "bottom": 581.3828125, + "height": 286.3828125, + "left": 1192, + "right": 1392, + "top": 295, + "width": 200, + "x": 1192, + "y": 295 + }, + "post_job_actions": { + "HideDatasetActiongmm_plots": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "gmm_plots" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/scimap_phenotyping/scimap_phenotyping/0.17.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "dcfcad35e847", + "name": "scimap_phenotyping", + "owner": "goeckslab", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"anndata\": {\"__class__\": \"RuntimeValue\"}, \"gating_workflow\": {\"__class__\": \"RuntimeValue\"}, \"manual_gates\": {\"__class__\": \"RuntimeValue\"}, \"rescale_plots\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "c0617ff6-1681-4ab2-a217-b61d71e50e5d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2e53afc6-9a31-43fd-8795-92889b92bcea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/vitessce_spatial/vitessce_spatial/1.0.4+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "do_phenotyping|anndata": { + "id": 11, + "output_name": "output" + }, + "image": { + "id": 9, + "output_name": "renamed_image" + }, + "masks": { + "id": 6, + "output_name": "mask" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Vitessce Visualization", + "name": "do_phenotyping" + }, + { + "description": "runtime parameter for tool Vitessce Visualization", + "name": "image" + }, + { + "description": "runtime parameter for tool Vitessce Visualization", + "name": "masks" + } + ], + "label": null, + "name": "Vitessce Visualization", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 533.5859375, + "height": 235.5859375, + "left": 1455, + "right": 1655, + "top": 298, + "width": 200, + "x": 1455, + "y": 298 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/goeckslab/vitessce_spatial/vitessce_spatial/1.0.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "9f60ef2d586e", + "name": "vitessce_spatial", + "owner": "goeckslab", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"do_phenotyping\": {\"phenotyping_choice\": \"true\", \"__current_case__\": 0, \"anndata\": {\"__class__\": \"RuntimeValue\"}, \"scatterplot_embeddings\": {\"embedding\": \"umap\", \"__current_case__\": 0, \"options\": {\"n_neighbors\": \"30\", \"n_pcs\": \"10\", \"knn\": \"true\", \"random_state\": \"0\"}}, \"phenotype_factory\": {\"phenotype_mode\": \"choices\", \"__current_case__\": 0, \"phenotypes\": [\"phenotype\"]}}, \"image\": {\"__class__\": \"RuntimeValue\"}, \"masks\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "8f4881b5-437e-4ef5-a10f-7ae2275fe758", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8f6096d5-f5ae-4eb5-a8bd-d1f79b9b2e47" + } + ] + } + ], + "parent_id": "imaging/multiplex-tissue-imaging-TMA", + "path": "topics/imaging/tutorials/multiplex-tissue-imaging-TMA/workflows/main_workflow.ga", + "tags": [ + "imaging" + ], + "test_results": null, + "tests": false, + "title": "GTN_Exemplar_002_TMA_workflow", + "topic_id": "imaging", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-multiplex-tissue-imaging-TMA/versions/main-workflow", + "tutorial_id": "multiplex-tissue-imaging-TMA", + "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/multiplex-tissue-imaging-TMA/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/multiplex-tissue-imaging-TMA/workflows/main_workflow.html", + "version": 1, + "wfid": "imaging-multiplex-tissue-imaging-TMA", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/goeckslab/mesmer/mesmer/0.12.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/goeckslab/rename_tiff_channels/rename_tiff_channels/0.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/goeckslab/scimap_mcmicro_to_anndata/scimap_mcmicro_to_anndata/0.17.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/goeckslab/scimap_phenotyping/scimap_phenotyping/0.17.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/goeckslab/vitessce_spatial/vitessce_spatial/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/imgteam/bfconvert/ip_convertimage/6.7.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/perssond/ashlar/ashlar/1.14.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/perssond/basic_illumination/basic_illumination/1.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/perssond/coreograph/unet_coreograph/2.2.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/perssond/quantification/quantification/1.5.3+galaxy1" + ], + "workflowhub_id": "1267" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.7622545" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "2d_auto_threshold", + "owner": "imgteam", + "revisions": "0c777d708acc", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_auto_threshold", + "owner": "imgteam", + "revisions": "3df9f0a4bf34", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_feature_extraction", + "owner": "imgteam", + "revisions": "5791a7f65275", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_feature_extraction", + "owner": "imgteam", + "revisions": "0a53256b48c6", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_filter_segmentation_by_features", + "owner": "imgteam", + "revisions": "e576b73a2e2f", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_simple_filter", + "owner": "imgteam", + "revisions": "dba87c4b32d3", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_simple_filter", + "owner": "imgteam", + "revisions": "f70b215d155c", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "2d_split_binaryimage_by_watershed", + "owner": "imgteam", + "revisions": "f8f7987586b7", + "tool_panel_section_label": "Imaging", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unzip", + "owner": "imgteam", + "revisions": "57f0914ddb7b", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: 2d_auto_threshold\n owner: imgteam\n revisions: 0c777d708acc\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_auto_threshold\n owner: imgteam\n revisions: 3df9f0a4bf34\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_feature_extraction\n owner: imgteam\n revisions: 5791a7f65275\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_feature_extraction\n owner: imgteam\n revisions: 0a53256b48c6\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_filter_segmentation_by_features\n owner: imgteam\n revisions: e576b73a2e2f\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_simple_filter\n owner: imgteam\n revisions: dba87c4b32d3\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_simple_filter\n owner: imgteam\n revisions: f70b215d155c\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: 2d_split_binaryimage_by_watershed\n owner: imgteam\n revisions: f8f7987586b7\n tool_panel_section_label: Imaging\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unzip\n owner: imgteam\n revisions: 57f0914ddb7b\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/hela-screen-analysis/tutorial.json", + "contributors": [ + { + "former_affiliations": [ + "deNBI", + "elixir-europe" + ], + "id": "thomaswollmann", + "joined": "2019-08", + "name": "Thomas Wollmann", + "orcid": "0000-0002-4741-3844", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/thomaswollmann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/thomaswollmann.json" + }, + { + "affiliations": [ + "elixir-europe", + "deNBI" + ], + "elixir_node": "de", + "email": "leonid.kostrykin@bioquant.uni-heidelberg.de", + "id": "kostrykin", + "joined": "2023-08", + "linkedin": "kostrykin", + "name": "Leonid Kostrykin", + "orcid": "0000-0003-1323-3762", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kostrykin/", + "twitter": "l_kostrykin", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kostrykin.json" + } + ], + "dir": "topics/imaging/tutorials/hela-screen-analysis", + "edam_operation": [ + "Visualisation", + "Image analysis", + "Image annotation", + "Data handling" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "statistics", + "tutorials": [ + "machinelearning" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "imaging/hela-screen-analysis", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy workflows can be used to scale image analysis pipelines to whole screens.", + "Segmented objects can be filtered using the **Filter label map by rules** tool.", + "Galaxy charts can be used to compare features extracted from screens showing cells with different treatments." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-14", + "objectives": [ + "How to segment cell nuclei in Galaxy.", + "How to extract features from segmentations in Galaxy.", + "How to filter segmentations by morphological features in Galaxy.", + "How to extract features from an imaging screen in Galaxy.", + "How to analyse extracted features from an imaging screen in Galaxy." + ], + "pageviews": 713, + "pub_date": "2019-08-13", + "questions": [ + "How do I analyze a HeLa fluorescence siRNA screen?", + "How do I segment cell nuclei?", + "How do I extract features from segmentations?", + "How do I filter segmentations by morphological features?", + "How do I apply a feature extraction workflow to a screen?", + "How do I visualize feature extraction results?" + ], + "requirements": [ + { + "topic_name": "imaging", + "tutorials": [ + "imaging-introduction" + ], + "type": "internal" + } + ], + "short_id": "T00180", + "short_tools": [ + "ip_filter_standard", + "ip_threshold", + "unzip", + "ip_2d_filter_segmentation_by_features", + "ip_2d_split_binaryimage_by_watershed", + "collapse_dataset", + "ip_2d_feature_extraction" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "HeLa" + ], + "time_estimation": "1H", + "title": "Analyse HeLa fluorescence siRNA screen", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_auto_threshold/ip_threshold/0.0.5", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_auto_threshold/ip_threshold/0.0.5-2", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_feature_extraction/ip_2d_feature_extraction/0.1.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_feature_extraction/ip_2d_feature_extraction/0.1.1-2", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_filter_segmentation_by_features/ip_2d_filter_segmentation_by_features/0.0.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_simple_filter/ip_filter_standard/0.0.3", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_simple_filter/ip_filter_standard/0.0.3-3", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_split_binaryimage_by_watershed/ip_2d_split_binaryimage_by_watershed/0.0.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_split_binaryimage_by_watershed/ip_2d_split_binaryimage_by_watershed/0.0.1-2", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "topic_name": "imaging", + "topic_name_human": "Imaging", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "hela-screen-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/imaging/tutorials/hela-screen-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/hela-screen-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/hela-screen-analysis/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 167, + "visitors": 547, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-2315-9247", + "name": "Till Korten", + "url": "https://github.com/thawn/" + } + ], + "description": "Analyse HeLa fluorescence siRNA screen", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ninput images\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nrules\"]\n 2[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nfeature_extraction\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"merge_table\"]\n 2 -> 3 [label=\"output\"]\n k3fc2324d233b47859fb79c30b2daaef4[color=lightseagreen,label=\"Output\\noutput\"]\n 3 -> k3fc2324d233b47859fb79c30b2daaef4\n}", + "history": [ + { + "hash": "d1e807a669d4a58fee5b1db2eceb8d4e4468fc21", + "message": "fixed json syntax", + "num": 7, + "short_hash": "d1e807a66", + "unix": "1699440970" + }, + { + "hash": "e34767b4ad7f4a1965ce15499e19fac5928806e0", + "message": "added `creator` and `license` fields", + "num": 6, + "short_hash": "e34767b4a", + "unix": "1699440539" + }, + { + "hash": "fab15d8bfc051c7ef280ef9aa08572543b5b24bf", + "message": "updated analyze_screen.ga", + "num": 5, + "short_hash": "fab15d8bf", + "unix": "1699376551" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "96462d6dcda154df6515addd109fdad1489cbe86", + "message": "added second tutorial", + "num": 1, + "short_hash": "96462d6dc", + "unix": "1565095814" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "input images" + } + ], + "label": "input images", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "f021a2d0-b90b-4f1e-830c-127af3741b90", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "rules" + } + ], + "label": "rules", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3.140430845923717, + "top": 127.71085440089814 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "8040611c-247d-4339-b8be-3858f01a0d6c", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\ninput images\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nrules\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\ud83d\udee0\ufe0f Subworkflow\\nfeature_extraction\"];\n style 2 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"merge_table\"];\n 2 -->|output| 3;\n 3fc2324d-233b-4785-9fb7-9c30b2daaef4[\"Output\\noutput\"];\n 3 --> 3fc2324d-233b-4785-9fb7-9c30b2daaef4;\n style 3fc2324d-233b-4785-9fb7-9c30b2daaef4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "analyze_screen", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 3, + "input_connections": { + "input_list": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Collapse Collection", + "name": "input_list" + } + ], + "label": "merge_table", + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 573.742905824752, + "top": 29.554536267952393 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": false, \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"RuntimeValue\"}, \"one_header\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "f48f5037-e4ab-4b8c-bd15-059546203e0e", + "when": null, + "workflow_outputs": [ + { + "label": "output", + "output_name": "output", + "uuid": "3fc2324d-233b-4785-9fb7-9c30b2daaef4" + } + ] + } + ], + "parent_id": "imaging/hela-screen-analysis", + "path": "topics/imaging/tutorials/hela-screen-analysis/workflows/analyze_screen.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "analyze_screen", + "topic_id": "imaging", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-hela-screen-analysis/versions/analyze-screen", + "tutorial_id": "hela-screen-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/hela-screen-analysis/workflows/analyze_screen.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/hela-screen-analysis/workflows/analyze_screen.html", + "version": 5, + "wfid": "imaging-hela-screen-analysis", + "wfname": "analyze-screen", + "workflow": "analyze_screen.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_auto_threshold/ip_threshold/0.0.5", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_feature_extraction/ip_2d_feature_extraction/0.1.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_filter_segmentation_by_features/ip_2d_filter_segmentation_by_features/0.0.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_simple_filter/ip_filter_standard/0.0.3", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_split_binaryimage_by_watershed/ip_2d_split_binaryimage_by_watershed/0.0.1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1271" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-2315-9247", + "name": "Till Korten", + "url": "https://github.com/thawn/" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ninput image\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nrules\"]\n 2[label=\"Filter Image\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Auto Threshold\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Split objects\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"2D Feature Extraction\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"Filter segmentation\"]\n 5 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n kb90cbc9433fd460096b58cf0bcaf2e94[color=lightseagreen,label=\"Output\\noutput\"]\n 6 -> kb90cbc9433fd460096b58cf0bcaf2e94\n 7[label=\"2D Feature Extraction\"]\n 6 -> 7 [label=\"output\"]\n 0 -> 7 [label=\"output\"]\n k3d3c037a50ef443ba6f88a37db6bfb36[color=lightseagreen,label=\"Output\\noutput\"]\n 7 -> k3d3c037a50ef443ba6f88a37db6bfb36\n}", + "history": [ + { + "hash": "d1e807a669d4a58fee5b1db2eceb8d4e4468fc21", + "message": "fixed json syntax", + "num": 7, + "short_hash": "d1e807a66", + "unix": "1699440970" + }, + { + "hash": "e34767b4ad7f4a1965ce15499e19fac5928806e0", + "message": "added `creator` and `license` fields", + "num": 6, + "short_hash": "e34767b4a", + "unix": "1699440539" + }, + { + "hash": "574ce45a0c0a6defc6795bb6bd67d3e2fd98d4ca", + "message": "updated feature_extraction.ga", + "num": 5, + "short_hash": "574ce45a0", + "unix": "1699376568" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "96462d6dcda154df6515addd109fdad1489cbe86", + "message": "added second tutorial", + "num": 1, + "short_hash": "96462d6dc", + "unix": "1565095814" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "input image" + } + ], + "label": "input image", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10.46055506794869, + "top": 133.99089344526203 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "15544dd3-65e5-4fdb-8648-3d8425bc77a8", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "rules" + } + ], + "label": "rules", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 648.1594953805964 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "39010bc8-dd57-4777-a325-c6d04c9f8eb6", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ninput image\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nrules\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Filter Image\"];\n 0 -->|output| 2;\n 3[\"Auto Threshold\"];\n 2 -->|output| 3;\n 4[\"Split objects\"];\n 3 -->|output| 4;\n 5[\"2D Feature Extraction\"];\n 4 -->|output| 5;\n 6[\"Filter segmentation\"];\n 5 -->|output| 6;\n 4 -->|output| 6;\n 1 -->|output| 6;\n b90cbc94-33fd-4600-96b5-8cf0bcaf2e94[\"Output\\noutput\"];\n 6 --> b90cbc94-33fd-4600-96b5-8cf0bcaf2e94;\n style b90cbc94-33fd-4600-96b5-8cf0bcaf2e94 stroke:#2c3143,stroke-width:4px;\n 7[\"2D Feature Extraction\"];\n 6 -->|output| 7;\n 0 -->|output| 7;\n 3d3c037a-50ef-443b-a6f8-8a37db6bfb36[\"Output\\noutput\"];\n 7 --> 3d3c037a-50ef-443b-a6f8-8a37db6bfb36;\n style 3d3c037a-50ef-443b-a6f8-8a37db6bfb36 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "feature_extraction", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/imgteam/2d_filter_segmentation_by_features/ip_2d_filter_segmentation_by_features/0.0.1", + "errors": null, + "id": 6, + "input_connections": { + "feature_file": { + "id": 5, + "output_name": "output" + }, + "input": { + "id": 4, + "output_name": "output" + }, + "rule_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter segmentation", + "outputs": [ + { + "name": "output", + "type": "tiff" + } + ], + "position": { + "left": 934.6383840869061, + "top": 550.5509793890867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/imgteam/2d_filter_segmentation_by_features/ip_2d_filter_segmentation_by_features/0.0.1", + "tool_shed_repository": { + "changeset_revision": "e576b73a2e2f", + "name": "2d_filter_segmentation_by_features", + "owner": "imgteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tiff\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"feature_file\": {\"__class__\": \"ConnectedValue\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"rule_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.1", + "type": "tool", + "uuid": "4b253c14-4315-431e-baa2-92773c53e8ea", + "when": null, + "workflow_outputs": [ + { + "label": "output", + "output_name": "output", + "uuid": "b90cbc94-33fd-4600-96b5-8cf0bcaf2e94" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/imgteam/2d_feature_extraction/ip_2d_feature_extraction/0.1.1", + "errors": null, + "id": 7, + "input_connections": { + "input_label": { + "id": 6, + "output_name": "output" + }, + "use_raw_option|input_raw": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "2D Feature Extraction", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 316.54453978928655, + "top": 839.7316069939548 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/imgteam/2d_feature_extraction/ip_2d_feature_extraction/0.1.1", + "tool_shed_repository": { + "changeset_revision": "5791a7f65275", + "name": "2d_feature_extraction", + "owner": "imgteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tiff\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"feature_options\": {\"features\": \"select\", \"__current_case__\": 1, \"selected_features\": [\"--mean_intensity\", \"--area\", \"--major_axis_length\"]}, \"input_label\": {\"__class__\": \"ConnectedValue\"}, \"use_raw_option\": {\"use_raw\": \"raw_image\", \"__current_case__\": 1, \"input_raw\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "40d50f9c-ac41-4a34-8212-6c0b67fcc409", + "when": null, + "workflow_outputs": [ + { + "label": "output", + "output_name": "output", + "uuid": "3d3c037a-50ef-443b-a6f8-8a37db6bfb36" + } + ] + } + ], + "parent_id": "imaging/hela-screen-analysis", + "path": "topics/imaging/tutorials/hela-screen-analysis/workflows/feature_extraction.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "feature_extraction", + "topic_id": "imaging", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/imaging-hela-screen-analysis/versions/feature-extraction", + "tutorial_id": "hela-screen-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/hela-screen-analysis/workflows/feature_extraction.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/imaging/tutorials/hela-screen-analysis/workflows/feature_extraction.html", + "version": 5, + "wfid": "imaging-hela-screen-analysis", + "wfname": "feature-extraction", + "workflow": "feature_extraction.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_auto_threshold/ip_threshold/0.0.5", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_feature_extraction/ip_2d_feature_extraction/0.1.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_filter_segmentation_by_features/ip_2d_filter_segmentation_by_features/0.0.1", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_simple_filter/ip_filter_standard/0.0.3", + "toolshed.g2.bx.psu.edu/repos/imgteam/2d_split_binaryimage_by_watershed/ip_2d_split_binaryimage_by_watershed/0.0.1" + ], + "workflowhub_id": "1270" + } + ], + "zenodo_link": "https://zenodo.org/record/3362976" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/bioimage-metadata/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "Laura190", + "kkamieniecka", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "email": "L.Cooper.5@warwick.ac.uk", + "id": "Laura190", + "joined": "2023-08", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Laura190/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Laura190.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/imaging/tutorials/bioimage-metadata", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "fair", + "tutorials": [ + "bioimage-REMBI" + ], + "type": "internal" + }, + { + "topic_name": "imaging", + "type": "internal" + } + ], + "hands_on": true, + "id": "imaging/bioimage-metadata", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Data repositories such as BioImage Archive, Electron Microscopy Public Image Archive (EMPIAR) and Image Data Repository (IDR) are available to help make bioimaging data FAIR.", + "Find out what are the repository's requirements to help decide which is suitable for your data.", + "All repositories require some metadata, so collecting the metadata alongside data acquisition will make this process easier." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-18", + "objectives": [ + "Locate bioimage data repositories", + "Compare repositories to find which are suitable for your data", + "Find out what the requirements are for submitting" + ], + "pageviews": 0, + "priority": 4, + "pub_date": "2024-08-18", + "questions": [ + "What are the commonly used repositories for bioimaging data?", + "Which repositories are suitable for my data?", + "What are the requirements for submitting?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "data-management" + ], + "type": "internal" + } + ], + "short_id": "T00365", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": true, + "tags": [ + "fair", + "data management", + "bioimaging" + ], + "time_estimation": "15m", + "title": "FAIR Bioimage Metadata", + "tools": [], + "topic_name": "imaging", + "topic_name_human": "Imaging", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bioimage-metadata", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/imaging/tutorials/bioimage-metadata/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/bioimage-metadata/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/bioimage-metadata/tutorial.json" + }, + "version": 0, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 0, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/bioimage-REMBI/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "Laura190", + "kkamieniecka", + "poterlowicz-lab" + ], + "funding": [ + "elixir-uk-dash" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "email": "L.Cooper.5@warwick.ac.uk", + "id": "Laura190", + "joined": "2023-08", + "name": "Laura Cooper", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Laura190/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Laura190.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + }, + { + "avatar": "/training-material/shared/images/dash.png", + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This Fellowship was funded through the ELIXIR-UK DaSH project as part of the UKRI Innovation Scholars: Data Science Training in Health and Bioscience call (DaSH). (MR/V038966/1). The project aims to embed Research Data Management (RDM) know-how into UK universities and institutes by producing and delivering training in FAIR data stewardship using ELIXIR-UK knowledge and resources.", + "funding_system": "ukri", + "github": false, + "id": "elixir-uk-dash", + "joined": "2023-10", + "name": "DASH UK", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-uk-dash/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-uk-dash.json" + } + ], + "dir": "topics/imaging/tutorials/bioimage-REMBI", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "imaging", + "type": "internal" + } + ], + "hands_on": true, + "id": "imaging/bioimage-REMBI", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "REMBI describes useful guidelines for bioimaging that can help unification and FARIfication of the data." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-18", + "objectives": [ + "Organise bioimage metadata", + "Find out what REMBI is and why it is useful", + "Categorise what metadata belongs to each of the submodules of REMBI", + "Gather the metadata for an example bioimage dataset" + ], + "pageviews": 0, + "priority": 5, + "pub_date": "2024-08-18", + "questions": [ + "What is REMBI and why should I use it?", + "What information should be included when collecting bioimage data?" + ], + "requirements": [ + { + "topic_name": "fair", + "tutorials": [ + "fair-intro", + "data-management", + "bioimage-metadata" + ], + "type": "internal" + } + ], + "short_id": "T00364", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "fair-data", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": true, + "tags": [ + "fair", + "data management", + "bioimaging" + ], + "time_estimation": "15m", + "title": "REMBI - Recommended Metadata for Biological Images \u2013 metadata guidelines for bioimaging data", + "tools": [], + "topic_name": "imaging", + "topic_name_human": "Imaging", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bioimage-REMBI", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/imaging/tutorials/bioimage-REMBI/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/bioimage-REMBI/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/imaging/tutorials/bioimage-REMBI/tutorial.json" + }, + "version": 0, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 0, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "get_flanks", + "owner": "devteam", + "revisions": "077f404ae1bb", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "intersect", + "owner": "devteam", + "revisions": "69c10b56f46d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: get_flanks\n owner: devteam\n revisions: 077f404ae1bb\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: intersect\n owner: devteam\n revisions: 69c10b56f46d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-peaks2genes/tutorial.json", + "contributors": [ + { + "id": "pajanne", + "joined": "2017-09", + "name": "Anne Pajon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pajanne/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pajanne.json" + }, + { + "elixir_node": "de", + "email": "blankclemens@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "blankclemens", + "joined": "2017-09", + "name": "Clemens Blank", + "orcid": "0000-0002-1726-2256", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankclemens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankclemens.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "id": "dyusuf", + "joined": "2017-09", + "name": "Dilmurat Yusuf", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dyusuf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dyusuf.json" + }, + { + "id": "sarah-peter", + "joined": "2018-09", + "name": "Sarah Peter", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sarah-peter/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sarah-peter.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/introduction/tutorials/galaxy-intro-peaks2genes", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/galaxy-intro-peaks2genes", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy provides an easy-to-use graphical user interface for often complex commandline tools", + "Galaxy keeps a full record of your analysis in a history", + "Workflows enable you to repeat your analysis on different data", + "Galaxy can connect to external sources for data import and visualization purposes", + "Galaxy provides ways to share your results and methods with others" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-07-09", + "objectives": [ + "Familiarize yourself with the basics of Galaxy", + "Learn how to obtain data from external sources", + "Learn how to run tools", + "Learn how histories work", + "Learn how to create a workflow", + "Learn how to share your work" + ], + "pageviews": 29838, + "pub_date": "2016-03-29", + "questions": [ + "How to use Galaxy?", + "How to get from peak regions to a list of gene names?" + ], + "short_id": "T00189", + "short_tools": [ + "Grouping1", + "upload1", + "CONVERTER_interval_to_bed_0", + "get_flanks1", + "tp_tail_tool", + "Cut1", + "tp_sort_header_tool", + "Add_a_column1", + "gops_intersect_1", + "tp_replace_in_column" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "3H", + "title": "From peaks to genes", + "tools": [ + "CONVERTER_interval_to_bed_0", + "Cut1", + "Grouping1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/get_flanks/get_flanks1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/intersect/gops_intersect_1/1.0.0", + "upload1" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-intro-peaks2genes", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/galaxy-intro-peaks2genes/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-peaks2genes/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-peaks2genes/tutorial.json" + }, + "version": 59, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 201, + "visitors": 17762, + "workflows": [ + { + "creators": [], + "description": "Galaxy Introduction Peaks2Genes - Part 1", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPeaks\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenes\"]\n 2[label=\"Select last\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Replace Text\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Get flanks\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Replace Text\"]\n 3 -> 5 [label=\"outfile\"]\n 6[label=\"Replace Text\"]\n 5 -> 6 [label=\"outfile\"]\n 7[label=\"Convert Genomic Intervals To BED\"]\n 6 -> 7 [label=\"outfile\"]\n 8[label=\"Intersect\"]\n 4 -> 8 [label=\"out_file1\"]\n 7 -> 8 [label=\"output1\"]\n 9[label=\"Group\"]\n 8 -> 9 [label=\"output\"]\n k19fb851fb203406da6d7a9e709e66459[color=lightseagreen,label=\"Output\\nchr_count\"]\n 9 -> k19fb851fb203406da6d7a9e709e66459\n}", + "history": [ + { + "hash": "48c2e99e6ac6b3f944b81c5725182a61c3a85d81", + "message": "Add workflow test yml.", + "num": 1, + "short_hash": "48c2e99e6", + "unix": "1603135863" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Peaks", + "name": "Peaks" + } + ], + "label": "Peaks", + "name": "Peaks", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Peaks\"}", + "tool_version": null, + "type": "data_input", + "uuid": "5827089b-d62d-47ad-bd3c-94bb09db46d2", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Genes", + "name": "Genes" + } + ], + "label": "Genes", + "name": "Genes", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Genes\"}", + "tool_version": null, + "type": "data_input", + "uuid": "671479f6-42c1-4cc2-9136-90542c00b4f3", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPeaks\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGenes\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Select last\"];\n 0 -->|output| 2;\n 3[\"Replace Text\"];\n 0 -->|output| 3;\n 4[\"Get flanks\"];\n 1 -->|output| 4;\n 5[\"Replace Text\"];\n 3 -->|outfile| 5;\n 6[\"Replace Text\"];\n 5 -->|outfile| 6;\n 7[\"Convert Genomic Intervals To BED\"];\n 6 -->|outfile| 7;\n 8[\"Intersect\"];\n 4 -->|out_file1| 8;\n 7 -->|output1| 8;\n 9[\"Group\"];\n 8 -->|output| 9;\n 19fb851f-b203-406d-a6d7-a9e709e66459[\"Output\\nchr_count\"];\n 9 --> 19fb851f-b203-406d-a6d7-a9e709e66459;\n style 19fb851f-b203-406d-a6d7-a9e709e66459 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Galaxy Introduction Peaks2Genes - Part 1", + "outputs": [ + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 9, + "input_connections": { + "input1": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1330, + "top": 10 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"__input_ext\": \"bed\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/mm9.len\", \"groupcol\": \"1\", \"ignorecase\": \"false\", \"ignorelines\": null, \"input1\": null, \"operations\": [{\"__index__\": 0, \"optype\": \"length\", \"opcol\": \"1\", \"opround\": \"no\", \"opdefault\": \"\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "5e50ede1-709c-4140-a6a4-456258797b9c", + "workflow_outputs": [ + { + "label": "chr_count", + "output_name": "out_file1", + "uuid": "19fb851f-b203-406d-a6d7-a9e709e66459" + } + ] + } + ], + "parent_id": "introduction/galaxy-intro-peaks2genes", + "path": "topics/introduction/tutorials/galaxy-intro-peaks2genes/workflows/Galaxy-Introduction-Peaks2Genes-Part-1-Workflow.ga", + "tags": [ + "introduction" + ], + "test_results": null, + "tests": true, + "title": "Galaxy Introduction Peaks2Genes - Part 1", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-peaks2genes/versions/galaxy-introduction-peaks2genes-part-1-workflow", + "tutorial_id": "galaxy-intro-peaks2genes", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-peaks2genes/workflows/Galaxy-Introduction-Peaks2Genes-Part-1-Workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-peaks2genes/workflows/Galaxy-Introduction-Peaks2Genes-Part-1-Workflow.html", + "version": 1, + "wfid": "introduction-galaxy-intro-peaks2genes", + "wfname": "galaxy-introduction-peaks2genes-part-1-workflow", + "workflow": "Galaxy-Introduction-Peaks2Genes-Part-1-Workflow.ga", + "workflow_tools": [ + "CONVERTER_interval_to_bed_0", + "Grouping1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/get_flanks/get_flanks1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/intersect/gops_intersect_1/1.0.0" + ], + "workflowhub_id": "1102" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1025586" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "a1f0b3f4b781", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "145f6d74ff5e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_call", + "owner": "iuc", + "revisions": "e1461b5c52a0", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_indelqual", + "owner": "iuc", + "revisions": "426d707dfc47", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_viterbi", + "owner": "iuc", + "revisions": "aa35ee7f3ab2", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "5e33b465d8d5", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "bf328cec6a42", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "revisions": "2a3a00c1fa0a", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "653e89d73fc4", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "e08a7ad4378b", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "25136a2b0cfe", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: a1f0b3f4b781\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 145f6d74ff5e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_call\n owner: iuc\n revisions: e1461b5c52a0\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_indelqual\n owner: iuc\n revisions: 426d707dfc47\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_viterbi\n owner: iuc\n revisions: aa35ee7f3ab2\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 5e33b465d8d5\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: bf328cec6a42\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff_sars_cov_2\n owner: iuc\n revisions: 2a3a00c1fa0a\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 653e89d73fc4\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: e08a7ad4378b\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 25136a2b0cfe\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-ngs-data-managment/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + } + ], + "dir": "topics/introduction/tutorials/galaxy-intro-ngs-data-managment", + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Genome indexing", + "SNP detection", + "Sequence alignment", + "Formatting", + "Read mapping", + "Generation", + "Data handling", + "Validation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/galaxy-intro-ngs-data-managment", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": 7097, + "mermaid": false + }, + "key_points": [ + "FASTQ Sanger version of the format is considered to be the standard form of FASTQ.", + "Paired end data can be provided as two files or as an interleaved one.", + "FastqQC is a tool allowing to check the quality of FASTQ datasets.", + "The most common tools for mapping are Bowtie, BWA, BWA-MEM. You can use in-built genome to map against or upload one if it is missing.", + "The standard format for storing aligned reads is SAM/BAM. The major toolsets to process these datasets are DeepTools, SAMtools, BAMtools and Picard.", + "Data can be uploaded directly from a computer, from EBI SRA and from NCBI SRA, also using FTP or URL.", + "One can retrieve NGS data from Sequence Read Archive", + "Galaxy can analyze massive amounts of data and make them suitable for secondary analysis" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand most common types of NGS-related datatypes", + "Learn about how Galaxy handles NGS data using Illumina data derived from patients infected with SARS-CoV-2" + ], + "pageviews": 28913, + "pub_date": "2017-02-22", + "questions": [ + "How to manipulate and process NGS data" + ], + "recordings": [ + { + "captioners": [ + "nekrut" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "nekrut" + ], + "youtube_id": "9mIL0tIfZ_o" + } + ], + "short_id": "T00188", + "short_tools": [ + "Grep1", + "picard_MarkDuplicates", + "samtools_stats", + "fastp", + "samtools_view", + "multiqc", + "tp_cut_tool", + "fasterq_dump", + "snpSift_extractFields", + "lofreq_indelqual", + "lofreq_call", + "lofreq_viterbi", + "bwa_mem", + "collapse_dataset", + "snpeff_sars_cov_2" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "1H30M", + "title": "NGS data logistics", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-intro-ngs-data-managment", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/galaxy-intro-ngs-data-managment/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-ngs-data-managment/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-ngs-data-managment/tutorial.json" + }, + "version": 33, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 198, + "visitors": 16208, + "workflows": [ + { + "creators": [], + "description": "NGS data logistics", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAccessions\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome\"]\n 2[label=\"Faster Download and Extract Reads in FASTQ\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"fastp\"]\n 2 -> 3 [label=\"list_paired\"]\n 4[label=\"Map with BWA-MEM\"]\n 3 -> 4 [label=\"output_paired_coll\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Samtools view\"]\n 4 -> 5 [label=\"bam_output\"]\n 6[label=\"MarkDuplicates\"]\n 5 -> 6 [label=\"outputsam\"]\n 7[label=\"Samtools stats\"]\n 6 -> 7 [label=\"outFile\"]\n 8[label=\"Realign reads\"]\n 6 -> 8 [label=\"outFile\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"MultiQC\"]\n 3 -> 9 [label=\"report_json\"]\n 6 -> 9 [label=\"metrics_file\"]\n 7 -> 9 [label=\"output\"]\n 10[label=\"Insert indel qualities\"]\n 8 -> 10 [label=\"realigned\"]\n 1 -> 10 [label=\"output\"]\n 11[label=\"Call variants\"]\n 10 -> 11 [label=\"output\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"SnpEff eff:\"]\n 11 -> 12 [label=\"variants\"]\n 13[label=\"SnpSift Extract Fields\"]\n 12 -> 13 [label=\"snpeff_output\"]\n 14[label=\"Collapse Collection\"]\n 13 -> 14 [label=\"output\"]\n}", + "history": [ + { + "hash": "ca2265825aa1725a8d5fdc3d1c02282878db2c96", + "message": "workflow changes", + "num": 2, + "short_hash": "ca2265825", + "unix": "1613070101" + }, + { + "hash": "211e2c843aeb6d1e8aeaa48571e4ec363466f5fe", + "message": "Updated NGS tutorial for GTN Sm\u00f6rg\u00e5sbord", + "num": 1, + "short_hash": "211e2c843", + "unix": "1613069503" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Accessions" + } + ], + "label": "Accessions", + "name": "Accessions", + "outputs": [], + "position": { + "bottom": 287.5, + "height": 61, + "left": -457, + "right": -257, + "top": 226.5, + "width": 200, + "x": -457, + "y": 226.5 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Accessions\"}", + "tool_version": null, + "type": "data_input", + "uuid": "66230eb7-5666-4a09-8aaa-b8881161a81b", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome" + } + ], + "label": "Genome", + "name": "Genome", + "outputs": [], + "position": { + "bottom": 453.5, + "height": 61, + "left": -505, + "right": -305, + "top": 392.5, + "width": 200, + "x": -505, + "y": 392.5 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Genome\"}", + "tool_version": null, + "type": "data_input", + "uuid": "9880eb10-5648-4c94-89d3-095661f6027b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAccessions\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGenome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Faster Download and Extract Reads in FASTQ\"];\n 0 -->|output| 2;\n 3[\"fastp\"];\n 2 -->|list_paired| 3;\n 4[\"Map with BWA-MEM\"];\n 3 -->|output_paired_coll| 4;\n 1 -->|output| 4;\n 5[\"Samtools view\"];\n 4 -->|bam_output| 5;\n 6[\"MarkDuplicates\"];\n 5 -->|outputsam| 6;\n 7[\"Samtools stats\"];\n 6 -->|outFile| 7;\n 8[\"Realign reads\"];\n 6 -->|outFile| 8;\n 1 -->|output| 8;\n 9[\"MultiQC\"];\n 3 -->|report_json| 9;\n 6 -->|metrics_file| 9;\n 7 -->|output| 9;\n 10[\"Insert indel qualities\"];\n 8 -->|realigned| 10;\n 1 -->|output| 10;\n 11[\"Call variants\"];\n 10 -->|output| 11;\n 1 -->|output| 11;\n 12[\"SnpEff eff:\"];\n 11 -->|variants| 12;\n 13[\"SnpSift Extract Fields\"];\n 12 -->|snpeff_output| 13;\n 14[\"Collapse Collection\"];\n 13 -->|output| 14;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "NGS_tutorial", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.8+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input|file_list": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "bottom": 412.5, + "height": 262, + "left": -98, + "right": 102, + "top": 150.5, + "width": 200, + "x": -98, + "y": 150.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "653e89d73fc4", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adv\": {\"minlen\": null, \"split\": \"--split-3\", \"skip_technical\": \"true\"}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"input\": {\"input_select\": \"file_list\", \"__current_case__\": 2, \"file_list\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.10.8+galaxy0", + "type": "tool", + "uuid": "4fff5f79-2a87-48e4-a9d1-514807dbf145", + "workflow_outputs": [ + { + "label": null, + "output_name": "list_paired", + "uuid": "bfc8e1d1-aa46-44ce-ac20-203bec142d7f" + }, + { + "label": null, + "output_name": "output_collection", + "uuid": "75c35a09-2a2c-450c-8d39-1e7b0c27643f" + }, + { + "label": null, + "output_name": "output_collection_other", + "uuid": "02be9121-528a-451a-8db1-7e447281fd27" + }, + { + "label": null, + "output_name": "log", + "uuid": "56f06d1a-5221-40c3-a861-09f7cb2d0307" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "single_paired|paired_input": { + "id": 2, + "output_name": "list_paired" + } + }, + "inputs": [], + "label": null, + "name": "fastp", + "outputs": [ + { + "name": "output_paired_coll", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "bottom": 893.5, + "height": 212, + "left": -118, + "right": 82, + "top": 681.5, + "width": 200, + "x": -118, + "y": 681.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "dbf9c561ef29", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": \"false\", \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": \"false\", \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": \"false\", \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": \"true\", \"report_json\": \"true\"}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": \"false\", \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": \"false\", \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": \"false\", \"cut_by_quality3\": \"false\", \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": \"false\"}}, \"single_paired\": {\"single_paired_selector\": \"paired_collection\", \"__current_case__\": 2, \"paired_input\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": \"false\", \"adapter_sequence1\": \"\", \"adapter_sequence2\": \"\"}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.1+galaxy0", + "type": "tool", + "uuid": "d9327c31-29cf-4227-897d-5a2be3cf8382", + "workflow_outputs": [ + { + "label": null, + "output_name": "report_json", + "uuid": "f7f03895-44d9-40f1-9bef-7ba34c9b7c1e" + }, + { + "label": null, + "output_name": "output_paired_coll", + "uuid": "e8e2c50e-bd56-4717-9cc5-83263f63a3aa" + }, + { + "label": null, + "output_name": "report_html", + "uuid": "95e080c0-8cc7-406a-b470-6f8630111cd9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 4, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 3, + "output_name": "output_paired_coll" + }, + "reference_source|ref_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "bottom": 354.5, + "height": 202, + "left": 285, + "right": 485, + "top": 152.5, + "width": 200, + "x": 285, + "y": 152.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "3fe632431b68", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"fastq_input\": {\"fastq_input_selector\": \"paired_collection\", \"__current_case__\": 2, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"iset_stats\": \"\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}, \"index_a\": \"auto\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "f06a5bce-2611-4eba-aaf9-d8cc063acaf7", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "88953a9e-a48a-4f60-8854-09b04e8c5052" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy2", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "bam_output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools view", + "outputs": [ + { + "name": "outputsam", + "type": "input" + } + ], + "position": { + "bottom": 297.5, + "height": 152, + "left": 614, + "right": 814, + "top": 145.5, + "width": 200, + "x": 614, + "y": 145.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy2", + "tool_shed_repository": { + "changeset_revision": "bf328cec6a42", + "name": "samtools_view", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"SRR12733957\", \"mode\": {\"outtype\": \"selected_reads\", \"__current_case__\": 1, \"filter_config\": {\"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cond_rg\": {\"select_rg\": \"no\", \"__current_case__\": 0}, \"quality\": \"20\", \"library\": \"\", \"cigarcons\": null, \"inclusive_filter\": [\"1\", \"2\"], \"exclusive_filter\": null, \"exclusive_filter_all\": null}, \"subsample_config\": {\"subsampling_mode\": {\"select_subsample\": \"fraction\", \"__current_case__\": 0, \"factor\": \"10.0\", \"seed\": \"1\"}}, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"complementary_output\": \"false\", \"adv_output\": {\"readtags\": [], \"collapsecigar\": \"false\"}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy2", + "type": "tool", + "uuid": "352c0b12-e4e5-409c-96ff-321de1076e56", + "workflow_outputs": [ + { + "label": null, + "output_name": "outputsam", + "uuid": "884d1918-7037-4108-bd34-3ae703992031" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "errors": null, + "id": 6, + "input_connections": { + "inputFile": { + "id": 5, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": null, + "name": "MarkDuplicates", + "outputs": [ + { + "name": "metrics_file", + "type": "txt" + }, + { + "name": "outFile", + "type": "bam" + } + ], + "position": { + "bottom": 1017.5, + "height": 222, + "left": 435, + "right": 635, + "top": 795.5, + "width": 200, + "x": 435, + "y": 795.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "tool_shed_repository": { + "changeset_revision": "a1f0b3f4b781", + "name": "picard", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"assume_sorted\": \"true\", \"barcode_tag\": \"\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"comments\": [], \"duplicate_scoring_strategy\": \"SUM_OF_BASE_QUALITIES\", \"inputFile\": {\"__class__\": \"ConnectedValue\"}, \"inputFile|__identifier__\": \"SRR12733957\", \"optical_duplicate_pixel_distance\": \"100\", \"read_name_regex\": \"\", \"remove_duplicates\": \"true\", \"validation_stringency\": \"LENIENT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.18.2.2", + "type": "tool", + "uuid": "8073c99c-1b22-4495-aa2e-35590ea8a27a", + "workflow_outputs": [ + { + "label": null, + "output_name": "metrics_file", + "uuid": "72b65822-0933-4ef0-af4b-7b863e79efa2" + }, + { + "label": null, + "output_name": "outFile", + "uuid": "5919b29b-d3eb-4ba5-9a77-b800e27d6a7d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 6, + "output_name": "outFile" + } + }, + "inputs": [], + "label": null, + "name": "Samtools stats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 237.5, + "height": 112, + "left": 957, + "right": 1157, + "top": 125.5, + "width": 200, + "x": 957, + "y": 125.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "145f6d74ff5e", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cov_threshold\": null, \"coverage_cond\": {\"coverage_select\": \"no\", \"__current_case__\": 0}, \"filter_by_flags\": {\"filter_flags\": \"nofilter\", \"__current_case__\": 1}, \"gc_depth\": null, \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"SRR12733957\", \"insert_size\": null, \"most_inserts\": null, \"read_length\": null, \"remove_dups\": \"false\", \"remove_overlaps\": \"false\", \"sparse\": \"false\", \"split_output_cond\": {\"split_output_selector\": \"no\", \"__current_case__\": 0}, \"trim_quality\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy2", + "type": "tool", + "uuid": "199dba34-fd3a-4a8c-9af8-96e51503689f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d9708b0c-194c-455a-ab8a-b99f09eed498" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "reads": { + "id": 6, + "output_name": "outFile" + }, + "reference_source|ref": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Realign reads", + "outputs": [ + { + "name": "realigned", + "type": "bam" + } + ], + "position": { + "bottom": 1035.5, + "height": 162, + "left": 907, + "right": 1107, + "top": 873.5, + "width": 200, + "x": 907, + "y": 873.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "aa35ee7f3ab2", + "name": "lofreq_viterbi", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adv_options\": {\"keepflags\": \"false\", \"bq2_handling\": {\"replace_bq2\": \"keep\", \"__current_case__\": 0, \"defqual\": \"2\"}}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"reads|__identifier__\": \"SRR12733957\", \"reference_source\": {\"ref_selector\": \"history\", \"__current_case__\": 1, \"ref\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.5+galaxy0", + "type": "tool", + "uuid": "53f949ab-b512-49a9-ac05-2ae2665431c2", + "workflow_outputs": [ + { + "label": null, + "output_name": "realigned", + "uuid": "7140df66-cd64-48aa-a7d4-ac916164a821" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "results_0|software_cond|input": { + "id": 3, + "output_name": "report_json" + }, + "results_1|software_cond|output_0|input": { + "id": 6, + "output_name": "metrics_file" + }, + "results_2|software_cond|output_0|type|input": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "plots", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "bottom": 973.5, + "height": 312, + "left": 1329, + "right": 1529, + "top": 661.5, + "width": 200, + "x": 1329, + "y": 661.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "tool_shed_repository": { + "changeset_revision": "5e33b465d8d5", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"json\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"comment\": \"\", \"flat\": \"false\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastp\", \"__current_case__\": 7, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"samtools\", \"__current_case__\": 23, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"stats\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8+galaxy1", + "type": "tool", + "uuid": "69debef6-a98f-4c07-925b-37372e8be51e", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "c2a695c7-b2ee-4331-89e4-82e23045d870" + }, + { + "label": null, + "output_name": "plots", + "uuid": "2f5d878b-2876-4784-822e-82b438993704" + }, + { + "label": null, + "output_name": "html_report", + "uuid": "e534aca7-9f10-4060-bbb7-e2b5e8717038" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "reads": { + "id": 8, + "output_name": "realigned" + }, + "strategy|reference_source|ref": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Insert indel qualities", + "outputs": [ + { + "name": "output", + "type": "bam" + } + ], + "position": { + "bottom": 314.5, + "height": 142, + "left": 1265, + "right": 1465, + "top": 172.5, + "width": 200, + "x": 1265, + "y": 172.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "426d707dfc47", + "name": "lofreq_indelqual", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"reads|__identifier__\": \"SRR12733957\", \"strategy\": {\"selector\": \"dindel\", \"__current_case__\": 1, \"reference_source\": {\"ref_selector\": \"history\", \"__current_case__\": 1, \"ref\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.5+galaxy0", + "type": "tool", + "uuid": "cd5db03f-7831-426f-b76d-c285751a9e02", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "543fdf07-db60-437c-99fe-c06bfd010081" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "reads": { + "id": 10, + "output_name": "output" + }, + "reference_source|ref": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Call variants", + "outputs": [ + { + "name": "variants", + "type": "vcf" + } + ], + "position": { + "bottom": 462.5, + "height": 122, + "left": 1470, + "right": 1670, + "top": 340.5, + "width": 200, + "x": 1470, + "y": 340.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e1461b5c52a0", + "name": "lofreq_call", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"call_control\": {\"set_call_options\": \"yes\", \"__current_case__\": 1, \"coverage\": {\"min_cov\": \"10\", \"max_depth\": \"1000000\"}, \"pe\": {\"use_orphan\": \"false\"}, \"bc_quals\": {\"min_bq\": \"20\", \"min_alt_bq\": \"20\", \"alt_bq\": {\"modify\": \"\", \"__current_case__\": 0}}, \"align_quals\": {\"alnqual\": {\"use_alnqual\": \"\", \"__current_case__\": 0, \"alnqual_choice\": {\"alnquals_to_use\": \"\", \"__current_case__\": 1, \"extended_baq\": \"true\"}}}, \"map_quals\": {\"min_mq\": \"20\", \"use_mq\": {\"no_mq\": \"\", \"__current_case__\": 0, \"max_mq\": \"255\"}}, \"source_qual\": {\"use_src_qual\": {\"src_qual\": \"\", \"__current_case__\": 0}}, \"joint_qual\": {\"min_jq\": \"0\", \"min_alt_jq\": \"0\", \"def_alt_jq\": \"0\"}}, \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"filter_control\": {\"filter_type\": \"set_lofreq_standard\", \"__current_case__\": 2, \"sig\": \"0.01\", \"bonf\": \"dynamic\", \"others\": \"\"}, \"reads\": {\"__class__\": \"ConnectedValue\"}, \"reads|__identifier__\": \"SRR12733957\", \"reference_source\": {\"ref_selector\": \"history\", \"__current_case__\": 1, \"ref\": {\"__class__\": \"ConnectedValue\"}}, \"regions\": {\"restrict_to_region\": \"genome\", \"__current_case__\": 0}, \"variant_types\": \"--call-indels\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.5+galaxy1", + "type": "tool", + "uuid": "d332f810-2a7c-41bf-b458-05470d3ae6b5", + "workflow_outputs": [ + { + "label": null, + "output_name": "variants", + "uuid": "395a308b-d1ba-4c67-8b66-4e206c727a3c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 11, + "output_name": "variants" + } + }, + "inputs": [], + "label": null, + "name": "SnpEff eff:", + "outputs": [ + { + "name": "snpeff_output", + "type": "vcf" + }, + { + "name": "statsFile", + "type": "html" + } + ], + "position": { + "bottom": 774.5, + "height": 282, + "left": 1624, + "right": 1824, + "top": 492.5, + "width": 200, + "x": 1624, + "y": 492.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "tool_shed_repository": { + "changeset_revision": "2a3a00c1fa0a", + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"vcf\", \"annotations\": [\"-formatEff\", \"-classic\"], \"chr\": \"\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"csvStats\": \"false\", \"filter\": {\"specificEffects\": \"no\", \"__current_case__\": 0}, \"filterOut\": null, \"generate_stats\": \"true\", \"genome_version\": \"NC_045512.2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inputFormat\": \"vcf\", \"input|__identifier__\": \"SRR12733957\", \"intervals\": null, \"noLog\": \"true\", \"offset\": \"default\", \"outputConditional\": {\"outputFormat\": \"vcf\", \"__current_case__\": 0}, \"transcripts\": null, \"udLength\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.5covid19", + "type": "tool", + "uuid": "29a0aa67-7bce-4358-a349-cc58d9824dad", + "workflow_outputs": [ + { + "label": null, + "output_name": "snpeff_output", + "uuid": "69e5622c-db07-4e3c-8224-ed511d3ca7c7" + }, + { + "label": null, + "output_name": "statsFile", + "uuid": "dafcfa74-d4d9-4d37-ae00-88ebce9acc14" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 12, + "output_name": "snpeff_output" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Extract Fields", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 919.5, + "height": 132, + "left": 1768, + "right": 1968, + "top": 787.5, + "width": 200, + "x": 1768, + "y": 787.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "tool_shed_repository": { + "changeset_revision": "2e497a770bca", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"vcf\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"empty_text\": \"\", \"extract\": \"CHROM POS FILTER REF ALT QUAL DP AF SB DP4 EFF[*].IMPACT EFF[*].FUNCLASS EFF[*].EFFECT EFF[*].GENE EFF[*].CODON\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"SRR12733957\", \"one_effect_per_line\": \"true\", \"separator\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy0", + "type": "tool", + "uuid": "b4c123bb-5bf2-481b-ab0c-f23be0d7f0d3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "971988f2-f007-4394-b749-45996031dc5e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 14, + "input_connections": { + "input_list": { + "id": 13, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 1125.5, + "height": 132, + "left": 1928, + "right": 2128, + "top": 993.5, + "width": 200, + "x": 1928, + "y": 993.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"filename\": {\"add_name\": \"true\", \"__current_case__\": 0, \"place_name\": \"same_multiple\"}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "be8eb89a-e88f-431c-9bd9-be2aa33b1671", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "756bd26f-ad93-4187-b294-358bdd455962" + } + ] + } + ], + "parent_id": "introduction/galaxy-intro-ngs-data-managment", + "path": "topics/introduction/tutorials/galaxy-intro-ngs-data-managment/workflows/ngs_intro_workflow.ga", + "tags": [ + "introductions" + ], + "test_results": null, + "tests": false, + "title": "NGS_tutorial", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-ngs-data-managment/versions/ngs-intro-workflow", + "tutorial_id": "galaxy-intro-ngs-data-managment", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-ngs-data-managment/workflows/ngs_intro_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-ngs-data-managment/workflows/ngs_intro_workflow.html", + "version": 1, + "wfid": "introduction-galaxy-intro-ngs-data-managment", + "wfname": "ngs-intro-workflow", + "workflow": "ngs_intro_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1115" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "split_file_on_column", + "owner": "bgruening", + "revisions": "37a53100b67e", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "02026300aa45", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "ae8c4b2488e7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "746e8e4bf929", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: split_file_on_column\n owner: bgruening\n revisions: 37a53100b67e\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 02026300aa45\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: ae8c4b2488e7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 746e8e4bf929\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/data-manipulation-olympics/tutorial.json", + "contributions": { + "authorship": [ + "shiltemann", + "lybCNU" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "id": "lybCNU", + "joined": "2024-08", + "name": "Yongbin Li", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lybCNU/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lybCNU.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/introduction/tutorials/data-manipulation-olympics", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/data-manipulation-olympics", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 61358, + "mermaid": false + }, + "key_points": [ + "There are a lot of tools available in Galaxy for performing basic data manipulation tasks", + "Basic data manipulation is often needed between steps in a larger scientific analysis in order to connect outputs from one tool to input of another.", + "There are often multiple ways/tools to achieve the same end result", + "Having a basic understanding of data manipulation tools will make it easier to do exploratory data analysis", + "Always read the help text of the tool before using it to get a full understanding of its workings", + "Always try to formulate the output you are expecting from a tool. This will make it easier to spot mistakes as soon as possible." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-07", + "objectives": [ + "Familiarize yourself with data manipulation tools in Galaxy", + "Perform basic text manipulation tasks in Galaxy", + "Become comfortable converting text-based files in a variety of ways.", + "Reason about the expected outcome of tools" + ], + "pageviews": 4896, + "pub_date": "2022-07-20", + "questions": [ + "How can I do basic data manipulation in Galaxy?", + "Which tools are available to convert, reformat, filter, sort etc my text-based data?" + ], + "short_id": "T00184", + "short_tools": [ + "", + "Count1", + "Cut1", + "Remove beginning1", + "Grouping1", + "datamash_ops", + "Show beginning1", + "tp_sort_header_tool", + "tp_sorted_uniq", + "cat1", + "tp_cat", + "wc_gnu", + "Filter1", + "tp_split_on_column", + "join1", + "regexColumn1", + "upload1", + "tabular_to_csv", + "Add_a_column1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "cyoa" + ], + "time_estimation": "1h", + "title": "Data Manipulation Olympics", + "tools": [ + "Count1", + "Cut1", + "Filter1", + "Grouping1", + "Remove beginning1", + "Show beginning1", + "cat1", + "join1", + "tabular_to_csv", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0+galaxy2", + "upload1", + "wc_gnu", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "data-manipulation-olympics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/data-manipulation-olympics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/data-manipulation-olympics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/data-manipulation-olympics/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 211, + "visitors": 3135, + "workflows": [ + { + "creators": [], + "description": "Data Manipulation Olympics", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nolympics.tsv\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncountry-information.tsv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nolympics_2022.tsv\"]\n 3[label=\"Line/Word/Character count\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"tabular-to-csv\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Sort\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Sort\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Sort\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Sort\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"Sort\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Sort\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"Filter\"]\n 0 -> 11 [label=\"output\"]\n 12[label=\"Filter\"]\n 0 -> 12 [label=\"output\"]\n 13[label=\"Count\"]\n 0 -> 13 [label=\"output\"]\n 14[label=\"Count\"]\n 0 -> 14 [label=\"output\"]\n 15[label=\"Count\"]\n 0 -> 15 [label=\"output\"]\n 16[label=\"Count\"]\n 0 -> 16 [label=\"output\"]\n 17[label=\"Datamash\"]\n 0 -> 17 [label=\"output\"]\n 18[label=\"Count\"]\n 0 -> 18 [label=\"output\"]\n 19[label=\"Datamash\"]\n 0 -> 19 [label=\"output\"]\n 20[label=\"Filter\"]\n 0 -> 20 [label=\"output\"]\n 21[label=\"Filter\"]\n 0 -> 21 [label=\"output\"]\n 22[label=\"Filter\"]\n 0 -> 22 [label=\"output\"]\n 23[label=\"Filter\"]\n 0 -> 23 [label=\"output\"]\n 24[label=\"Filter\"]\n 0 -> 24 [label=\"output\"]\n 25[label=\"Filter\"]\n 0 -> 25 [label=\"output\"]\n 26[label=\"Filter\"]\n 0 -> 26 [label=\"output\"]\n 27[label=\"Compute\"]\n 0 -> 27 [label=\"output\"]\n 28[label=\"Compute\"]\n 0 -> 28 [label=\"output\"]\n 29[label=\"Cut\"]\n 0 -> 29 [label=\"output\"]\n 30[label=\"Column Regex Find And Replace\"]\n 0 -> 30 [label=\"output\"]\n 31[label=\"Column Regex Find And Replace\"]\n 0 -> 31 [label=\"output\"]\n 32[label=\"Column Regex Find And Replace\"]\n 0 -> 32 [label=\"output\"]\n 33[label=\"Cut\"]\n 0 -> 33 [label=\"output\"]\n 34[label=\"Cut\"]\n 0 -> 34 [label=\"output\"]\n 35[label=\"Datamash\"]\n 0 -> 35 [label=\"output\"]\n 36[label=\"Datamash\"]\n 0 -> 36 [label=\"output\"]\n 37[label=\"Datamash\"]\n 0 -> 37 [label=\"output\"]\n 38[label=\"Datamash\"]\n 0 -> 38 [label=\"output\"]\n 39[label=\"Datamash\"]\n 0 -> 39 [label=\"output\"]\n 40[label=\"Count\"]\n 0 -> 40 [label=\"output\"]\n 41[label=\"Column Regex Find And Replace\"]\n 0 -> 41 [label=\"output\"]\n 42[label=\"Split file\"]\n 0 -> 42 [label=\"output\"]\n 43[label=\"Join two Datasets\"]\n 0 -> 43 [label=\"output\"]\n 1 -> 43 [label=\"output\"]\n 44[label=\"Remove beginning\"]\n 2 -> 44 [label=\"output\"]\n 45[label=\"Sort\"]\n 11 -> 45 [label=\"out_file1\"]\n 46[label=\"Filter\"]\n 12 -> 46 [label=\"out_file1\"]\n 47[label=\"Cut\"]\n 28 -> 47 [label=\"out_file1\"]\n 48[label=\"Unique\"]\n 29 -> 48 [label=\"out_file1\"]\n 49[label=\"Count\"]\n 41 -> 49 [label=\"out_file1\"]\n 50[label=\"Datamash\"]\n 41 -> 50 [label=\"out_file1\"]\n 51[label=\"Concatenate datasets\"]\n 0 -> 51 [label=\"output\"]\n 44 -> 51 [label=\"out_file1\"]\n 52[label=\"Filter\"]\n 45 -> 52 [label=\"outfile\"]\n 53[label=\"Sort\"]\n 46 -> 53 [label=\"out_file1\"]\n 54[label=\"Remove beginning\"]\n 47 -> 54 [label=\"out_file1\"]\n 55[label=\"Select first\"]\n 47 -> 55 [label=\"out_file1\"]\n 56[label=\"Sort\"]\n 48 -> 56 [label=\"outfile\"]\n 57[label=\"Unique\"]\n 54 -> 57 [label=\"out_file1\"]\n 58[label=\"Concatenate datasets\"]\n 55 -> 58 [label=\"out_file1\"]\n 57 -> 58 [label=\"outfile\"]\n 59[label=\"Join two Datasets\"]\n 0 -> 59 [label=\"output\"]\n 58 -> 59 [label=\"out_file1\"]\n 60[label=\"Cut\"]\n 59 -> 60 [label=\"out_file1\"]\n 61[label=\"Line/Word/Character count\"]\n 60 -> 61 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "195fb90f3cb0f6d446d1dc200ae11795735d0bc5", + "message": "update workflow", + "num": 3, + "short_hash": "195fb90f3", + "unix": "1658327856" + }, + { + "hash": "6908a9a8092d32a2ee24f5d61463f41d83498750", + "message": "add tag and annotation", + "num": 2, + "short_hash": "6908a9a80", + "unix": "1657815002" + }, + { + "hash": "68183fdf9f2b84177b8c374291cd50b8c9a5f0b2", + "message": "add workflow", + "num": 1, + "short_hash": "68183fdf9", + "unix": "1657814320" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "olympics.tsv" + } + ], + "label": "olympics.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "749981b6-9589-48a3-b1fe-3830a019aac3", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "country-information.tsv" + } + ], + "label": "country-information.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4dd01f90-d214-419c-b685-187c4c7e0236", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "olympics_2022.tsv" + } + ], + "label": "olympics_2022.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "8caf40e8-4c72-48c5-92cb-50fef0a9da1c", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nolympics.tsv\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ncountry-information.tsv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nolympics_2022.tsv\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Line/Word/Character count\"];\n 0 -->|output| 3;\n 4[\"tabular-to-csv\"];\n 0 -->|output| 4;\n 5[\"Sort\"];\n 0 -->|output| 5;\n 6[\"Sort\"];\n 0 -->|output| 6;\n 7[\"Sort\"];\n 0 -->|output| 7;\n 8[\"Sort\"];\n 0 -->|output| 8;\n 9[\"Sort\"];\n 0 -->|output| 9;\n 10[\"Sort\"];\n 0 -->|output| 10;\n 11[\"Filter\"];\n 0 -->|output| 11;\n 12[\"Filter\"];\n 0 -->|output| 12;\n 13[\"Count\"];\n 0 -->|output| 13;\n 14[\"Count\"];\n 0 -->|output| 14;\n 15[\"Count\"];\n 0 -->|output| 15;\n 16[\"Count\"];\n 0 -->|output| 16;\n 17[\"Datamash\"];\n 0 -->|output| 17;\n 18[\"Count\"];\n 0 -->|output| 18;\n 19[\"Datamash\"];\n 0 -->|output| 19;\n 20[\"Filter\"];\n 0 -->|output| 20;\n 21[\"Filter\"];\n 0 -->|output| 21;\n 22[\"Filter\"];\n 0 -->|output| 22;\n 23[\"Filter\"];\n 0 -->|output| 23;\n 24[\"Filter\"];\n 0 -->|output| 24;\n 25[\"Filter\"];\n 0 -->|output| 25;\n 26[\"Filter\"];\n 0 -->|output| 26;\n 27[\"Compute\"];\n 0 -->|output| 27;\n 28[\"Compute\"];\n 0 -->|output| 28;\n 29[\"Cut\"];\n 0 -->|output| 29;\n 30[\"Column Regex Find And Replace\"];\n 0 -->|output| 30;\n 31[\"Column Regex Find And Replace\"];\n 0 -->|output| 31;\n 32[\"Column Regex Find And Replace\"];\n 0 -->|output| 32;\n 33[\"Cut\"];\n 0 -->|output| 33;\n 34[\"Cut\"];\n 0 -->|output| 34;\n 35[\"Datamash\"];\n 0 -->|output| 35;\n 36[\"Datamash\"];\n 0 -->|output| 36;\n 37[\"Datamash\"];\n 0 -->|output| 37;\n 38[\"Datamash\"];\n 0 -->|output| 38;\n 39[\"Datamash\"];\n 0 -->|output| 39;\n 40[\"Count\"];\n 0 -->|output| 40;\n 41[\"Column Regex Find And Replace\"];\n 0 -->|output| 41;\n 42[\"Split file\"];\n 0 -->|output| 42;\n 43[\"Join two Datasets\"];\n 0 -->|output| 43;\n 1 -->|output| 43;\n 44[\"Remove beginning\"];\n 2 -->|output| 44;\n 45[\"Sort\"];\n 11 -->|out_file1| 45;\n 46[\"Filter\"];\n 12 -->|out_file1| 46;\n 47[\"Cut\"];\n 28 -->|out_file1| 47;\n 48[\"Unique\"];\n 29 -->|out_file1| 48;\n 49[\"Count\"];\n 41 -->|out_file1| 49;\n 50[\"Datamash\"];\n 41 -->|out_file1| 50;\n 51[\"Concatenate datasets\"];\n 0 -->|output| 51;\n 44 -->|out_file1| 51;\n 52[\"Filter\"];\n 45 -->|outfile| 52;\n 53[\"Sort\"];\n 46 -->|out_file1| 53;\n 54[\"Remove beginning\"];\n 47 -->|out_file1| 54;\n 55[\"Select first\"];\n 47 -->|out_file1| 55;\n 56[\"Sort\"];\n 48 -->|outfile| 56;\n 57[\"Unique\"];\n 54 -->|out_file1| 57;\n 58[\"Concatenate datasets\"];\n 55 -->|out_file1| 58;\n 57 -->|outfile| 58;\n 59[\"Join two Datasets\"];\n 0 -->|output| 59;\n 58 -->|out_file1| 59;\n 60[\"Cut\"];\n 59 -->|out_file1| 60;\n 61[\"Line/Word/Character count\"];\n 60 -->|out_file1| 61;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN Tutorial: Data manipulation Olympics - all steps and exercises", + "outputs": [], + "parent_id": "introduction/data-manipulation-olympics", + "path": "topics/introduction/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.ga", + "tags": [ + "introduction" + ], + "test_results": null, + "tests": false, + "title": "GTN Tutorial: Data manipulation Olympics - all steps and exercises", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-data-manipulation-olympics/versions/data-manipulation-olympics-with-exercises", + "tutorial_id": "data-manipulation-olympics", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/data-manipulation-olympics/workflows/data_manipulation_olympics_with_exercises.html", + "version": 1, + "wfid": "introduction-data-manipulation-olympics", + "wfname": "data-manipulation-olympics-with-exercises", + "workflow": "data_manipulation_olympics_with_exercises.ga", + "workflow_tools": [ + "Count1", + "Cut1", + "Filter1", + "Remove beginning1", + "Show beginning1", + "cat1", + "join1", + "tabular_to_csv", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0+galaxy2", + "wc_gnu" + ], + "workflowhub_id": "1090" + } + ], + "zenodo_link": "https://zenodo.org/record/6803028" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_point", + "owner": "iuc", + "revisions": "9cec81e1b90e", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_point\n owner: iuc\n revisions: 9cec81e1b90e\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-reproduce/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + }, + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + } + ], + "dir": "topics/introduction/tutorials/galaxy-reproduce", + "edam_operation": [ + "Visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/galaxy-reproduce", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy provides an easy way to load published data into a Galaxy history", + "Galaxy allows to re-run a published Galaxy workflow!", + "Galaxy provides ways to inspect and re-use Galaxy histories", + "Galaxy provides an easy way to re-run tasks from histories" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Learn how to load published data into Galaxy", + "Learn how to run a published Galaxy workflow", + "Learn how histories can be inspected and re-used." + ], + "pageviews": 2336, + "pub_date": "2021-08-25", + "questions": [ + "How to reproduce published Galaxy results (workflows and histories)" + ], + "short_id": "T00192", + "short_tools": [ + "Grouping1", + "datamash_ops", + "ggplot2_point", + "Cut1", + "csv_to_tabular", + "Remove beginning1", + "tp_sorted_uniq", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "How to reproduce published Galaxy analyses", + "tools": [ + "Cut1", + "Grouping1", + "Remove beginning1", + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1", + "upload1" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-reproduce", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/galaxy-reproduce/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-reproduce/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-reproduce/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 277, + "visitors": 1696, + "workflows": [ + { + "creators": [], + "description": "introduction", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\niris\"]\n 1[label=\"Convert CSV to tabular\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Datamash\"]\n 1 -> 2 [label=\"tabular\"]\n k9745329a9e7c4e3090caa26f20bbe0b0[color=lightseagreen,label=\"Output\\ndatamash_output\"]\n 2 -> k9745329a9e7c4e3090caa26f20bbe0b0\n 3[label=\"Remove beginning\"]\n 1 -> 3 [label=\"tabular\"]\n 4[label=\"Cut\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"Group\"]\n 3 -> 5 [label=\"out_file1\"]\n kd8fd233a5e6540ba908aa7d38b8a0755[color=lightseagreen,label=\"Output\\ngroup1\"]\n 5 -> kd8fd233a5e6540ba908aa7d38b8a0755\n 6[label=\"Group\"]\n 3 -> 6 [label=\"out_file1\"]\n kd245986ecda741ae980538aa87a27d1f[color=lightseagreen,label=\"Output\\ngroup2\"]\n 6 -> kd245986ecda741ae980538aa87a27d1f\n 7[label=\"Scatterplot w ggplot2\"]\n 3 -> 7 [label=\"out_file1\"]\n 8[label=\"Scatterplot w ggplot2\"]\n 3 -> 8 [label=\"out_file1\"]\n 9[label=\"Unique\"]\n 4 -> 9 [label=\"out_file1\"]\n kec39c0adeb2647d6b9a7c2e5ffa043c6[color=lightseagreen,label=\"Output\\nunique_output\"]\n 9 -> kec39c0adeb2647d6b9a7c2e5ffa043c6\n}", + "history": [ + { + "hash": "03bdb9f97f1f07b25cb24c182fce72381d420781", + "message": "Adding new GTN how to reproduce Galaxy analyses", + "num": 1, + "short_hash": "03bdb9f97", + "unix": "1625935434" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "iris" + } + ], + "label": "iris", + "name": "iris", + "outputs": [], + "position": { + "left": 200, + "top": 405 + }, + "tool_id": null, + "tool_state": "{\"name\": \"iris\"}", + "tool_version": null, + "type": "data_input", + "uuid": "6a8d8ca9-8bb9-414b-af8f-50d07721b363", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\niris\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Convert CSV to tabular\"];\n 0 -->|output| 1;\n 2[\"Datamash\"];\n 1 -->|tabular| 2;\n 9745329a-9e7c-4e30-90ca-a26f20bbe0b0[\"Output\\ndatamash_output\"];\n 2 --> 9745329a-9e7c-4e30-90ca-a26f20bbe0b0;\n style 9745329a-9e7c-4e30-90ca-a26f20bbe0b0 stroke:#2c3143,stroke-width:4px;\n 3[\"Remove beginning\"];\n 1 -->|tabular| 3;\n 4[\"Cut\"];\n 3 -->|out_file1| 4;\n 5[\"Group\"];\n 3 -->|out_file1| 5;\n d8fd233a-5e65-40ba-908a-a7d38b8a0755[\"Output\\ngroup1\"];\n 5 --> d8fd233a-5e65-40ba-908a-a7d38b8a0755;\n style d8fd233a-5e65-40ba-908a-a7d38b8a0755 stroke:#2c3143,stroke-width:4px;\n 6[\"Group\"];\n 3 -->|out_file1| 6;\n d245986e-cda7-41ae-9805-38aa87a27d1f[\"Output\\ngroup2\"];\n 6 --> d245986e-cda7-41ae-9805-38aa87a27d1f;\n style d245986e-cda7-41ae-9805-38aa87a27d1f stroke:#2c3143,stroke-width:4px;\n 7[\"Scatterplot w ggplot2\"];\n 3 -->|out_file1| 7;\n 8[\"Scatterplot w ggplot2\"];\n 3 -->|out_file1| 8;\n 9[\"Unique\"];\n 4 -->|out_file1| 9;\n ec39c0ad-eb26-47d6-b9a7-c2e5ffa043c6[\"Output\\nunique_output\"];\n 9 --> ec39c0ad-eb26-47d6-b9a7-c2e5ffa043c6;\n style ec39c0ad-eb26-47d6-b9a7-c2e5ffa043c6 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN Training: Galaxy 101 For Everyone", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "errors": null, + "id": 2, + "input_connections": { + "in_file": { + "id": 1, + "output_name": "tabular" + } + }, + "inputs": [], + "label": null, + "name": "Datamash", + "outputs": [ + { + "name": "out_file", + "type": "tabular" + } + ], + "position": { + "left": 547, + "top": 200 + }, + "post_job_actions": { + "HideDatasetActionout_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "tool_shed_repository": { + "changeset_revision": "562f3c677828", + "name": "datamash_ops", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"operations\": [{\"__index__\": 0, \"op_name\": \"mean\", \"op_column\": \"1\"}, {\"__index__\": 1, \"op_name\": \"sstdev\", \"op_column\": \"1\"}, {\"__index__\": 2, \"op_name\": \"mean\", \"op_column\": \"2\"}, {\"__index__\": 3, \"op_name\": \"sstdev\", \"op_column\": \"2\"}, {\"__index__\": 4, \"op_name\": \"mean\", \"op_column\": \"3\"}, {\"__index__\": 5, \"op_name\": \"sstdev\", \"op_column\": \"3\"}, {\"__index__\": 6, \"op_name\": \"mean\", \"op_column\": \"4\"}, {\"__index__\": 7, \"op_name\": \"sstdev\", \"op_column\": \"4\"}], \"__page__\": null, \"ignore_case\": \"true\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"__rerun_remap_job_id__\": null, \"header_in\": \"true\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"need_sort\": \"true\", \"print_full_line\": \"false\", \"header_out\": \"true\", \"grouping\": \"5\"}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "e1a58a79-5102-450e-bfe0-200f0e64139d", + "workflow_outputs": [ + { + "label": "datamash_output", + "output_name": "out_file", + "uuid": "9745329a-9e7c-4e30-90ca-a26f20bbe0b0" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 967, + "top": 664 + }, + "post_job_actions": { + "HideDatasetActionout_file1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grouping1", + "tool_state": "{\"operations\": [], \"__page__\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"ignorelines\": null, \"groupcol\": \"5\", \"__rerun_remap_job_id__\": null, \"ignorecase\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "dcd3ddc6-d871-45dd-94ed-3eae56dd56db", + "workflow_outputs": [ + { + "label": "group1", + "output_name": "out_file1", + "uuid": "d8fd233a-5e65-40ba-908a-a7d38b8a0755" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 6, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 967, + "top": 784 + }, + "post_job_actions": { + "HideDatasetActionout_file1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grouping1", + "tool_state": "{\"operations\": [{\"opcol\": \"1\", \"__index__\": 0, \"optype\": \"length\", \"opround\": \"no\", \"opdefault\": \"\"}], \"__page__\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"ignorelines\": null, \"groupcol\": \"5\", \"__rerun_remap_job_id__\": null, \"ignorecase\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "285a3852-71cb-4137-be1d-b0ec0a59d9e9", + "workflow_outputs": [ + { + "label": "group2", + "output_name": "out_file1", + "uuid": "d245986e-cda7-41ae-9805-38aa87a27d1f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scatterplot w ggplot2", + "name": "input1" + } + ], + "label": null, + "name": "Scatterplot w ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "left": 967, + "top": 904 + }, + "post_job_actions": { + "HideDatasetActionoutput1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9cec81e1b90e", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"axis_title_customization\": {\"__current_case__\": 0, \"axis_customization\": \"default\"}, \"plot_title_customization\": {\"__current_case__\": 0, \"axis_customization\": \"default\"}, \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"points\": {\"pointcolor\": \"black\", \"alpha\": \"1.0\", \"pointoptions\": \"defined\", \"__current_case__\": 1, \"size\": \"2.0\"}, \"factor\": {\"factorcol\": \"5\", \"colororder\": \"1\", \"colors\": \"Set2\", \"__current_case__\": 1, \"factoring\": \"Single\"}, \"axis_text_customization\": {\"__current_case__\": 0, \"axis_customization\": \"default\"}, \"type\": \"points\", \"legend\": \"yes\", \"gridlinecust\": \"default\"}, \"xlab\": \"Sepal length\", \"input1\": {\"__class__\": \"RuntimeValue\"}, \"title\": \"Sepal length as a function of sepal width\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"1\", \"yplot\": \"2\", \"ylab\": \"Sepal width\", \"out\": {\"additional_output_format\": \"pdf\", \"width_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"height_output_dim\": \"7.0\", \"unit_output_dim\": \"in\"}}", + "tool_version": "2.2.1+galaxy1", + "type": "tool", + "uuid": "fa412209-5e3a-448e-8b0b-fa88870e19c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "adcb2e3f-ee9a-41c5-9b5a-ceb2afcb5e7f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scatterplot w ggplot2", + "name": "input1" + } + ], + "label": null, + "name": "Scatterplot w ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "left": 967, + "top": 1024 + }, + "post_job_actions": { + "HideDatasetActionoutput1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9cec81e1b90e", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"axis_title_customization\": {\"__current_case__\": 0, \"axis_customization\": \"default\"}, \"plot_title_customization\": {\"__current_case__\": 0, \"axis_customization\": \"default\"}, \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"points\": {\"pointcolor\": \"black\", \"alpha\": \"1.0\", \"pointoptions\": \"defined\", \"__current_case__\": 1, \"size\": \"2.0\"}, \"factor\": {\"factorcol\": \"5\", \"colororder\": \"1\", \"colors\": \"Set2\", \"__current_case__\": 1, \"factoring\": \"Single\"}, \"axis_text_customization\": {\"__current_case__\": 0, \"axis_customization\": \"default\"}, \"type\": \"points\", \"legend\": \"yes\", \"gridlinecust\": \"default\"}, \"xlab\": \"Petal length\", \"input1\": {\"__class__\": \"RuntimeValue\"}, \"title\": \"Petal length as a function of petal width\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"3\", \"yplot\": \"4\", \"ylab\": \"Petal width\", \"out\": {\"additional_output_format\": \"pdf\", \"width_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"height_output_dim\": \"7.0\", \"unit_output_dim\": \"in\"}}", + "tool_version": "2.2.1+galaxy1", + "type": "tool", + "uuid": "8e7b3f8d-2b8b-46cb-93d4-0d74bf54441e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "a39df0d2-253a-4db2-b86d-9cbf0e5c1822" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "errors": null, + "id": 9, + "input_connections": { + "infile": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 1187, + "top": 424 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "tool_shed_repository": { + "changeset_revision": "0a8c6b61f0f4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"ignore_case\": \"false\", \"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"__rerun_remap_job_id__\": null, \"is_numeric\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "3e2d84e9-2fff-4321-9db6-41af99367162", + "workflow_outputs": [ + { + "label": "unique_output", + "output_name": "outfile", + "uuid": "ec39c0ad-eb26-47d6-b9a7-c2e5ffa043c6" + } + ] + } + ], + "parent_id": "introduction/galaxy-reproduce", + "path": "topics/introduction/tutorials/galaxy-reproduce/workflows/main_workflow.ga", + "tags": [ + "introduction" + ], + "test_results": null, + "tests": false, + "title": "GTN Training: Galaxy 101 For Everyone", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-reproduce/versions/main-workflow", + "tutorial_id": "galaxy-reproduce", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-reproduce/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-reproduce/workflows/main_workflow.html", + "version": 1, + "wfid": "introduction-galaxy-reproduce", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Grouping1", + "Remove beginning1", + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy1" + ], + "workflowhub_id": "1098" + } + ], + "zenodo_link": "https://zenodo.org/record/1319069" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "ddf54b12c295", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "intersect", + "owner": "devteam", + "revisions": "69c10b56f46d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: ddf54b12c295\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: intersect\n owner: devteam\n revisions: 69c10b56f46d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-strands/tutorial.json", + "contributors": [ + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + } + ], + "dir": "topics/introduction/tutorials/galaxy-intro-strands", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/galaxy-intro-strands", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy provides an easy-to-use graphical user interface for often complex command-line tools", + "Galaxy keeps a full record of your analysis in a history", + "Workflows enable you to repeat your analysis on different data", + "Galaxy can connect to external sources for data import and visualization purposes", + "Galaxy provides ways to share your results and methods with others" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-07-09", + "objectives": [ + "Learn some of the basic concepts of genomics and bioinformatics", + "Familiarize yourself with the basics of Galaxy" + ], + "pageviews": 27760, + "pub_date": "2017-10-18", + "questions": [ + "Do genes on opposite strands ever overlap? If so, how often?" + ], + "recordings": [ + { + "captioners": [ + "nakucher" + ], + "date": "2023-05-18", + "galaxy_version": "23.01", + "length": "1H30M", + "speakers": [ + "nakucher" + ], + "youtube_id": "P1mEWZ_tAgQ" + }, + { + "captioners": [ + "tnabtaf" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H30M", + "speakers": [ + "tnabtaf" + ], + "youtube_id": "1UPCrQxGwcU" + } + ], + "short_id": "T00191", + "short_tools": [ + "cat1", + "tp_cat", + "Filter1", + "gene2exon1", + "gops_intersect_1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "2H30M", + "title": "Introduction to Genomics and Galaxy", + "tools": [ + "Filter1", + "cat1", + "gene2exon1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/intersect/gops_intersect_1/1.0.0" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-intro-strands", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/galaxy-intro-strands/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-strands/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-strands/tutorial.json" + }, + "version": 40, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 211, + "visitors": 17075, + "workflows": [ + { + "creators": [], + "description": "Introduction to Genomics and Galaxy", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"Gene BED To Exon/Intron/Codon BED\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Filter\"]\n 1 -> 2 [label=\"out_file1\"]\n 3[label=\"Filter\"]\n 1 -> 3 [label=\"out_file1\"]\n 4[label=\"Intersect\"]\n 2 -> 4 [label=\"out_file1\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"Intersect\"]\n 3 -> 5 [label=\"out_file1\"]\n 2 -> 5 [label=\"out_file1\"]\n 6[label=\"Concatenate datasets\"]\n 5 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "8654b300bee12fde5cdb5392424e592b34757373", + "message": "added workflows", + "num": 1, + "short_hash": "8654b300b", + "unix": "1536320594" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genes" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Genes\"}", + "tool_version": null, + "type": "data_input", + "uuid": "286c5925-431f-432d-a658-515befa7c6d3", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Gene BED To Exon/Intron/Codon BED\"];\n 0 -->|output| 1;\n 2[\"Filter\"];\n 1 -->|out_file1| 2;\n 3[\"Filter\"];\n 1 -->|out_file1| 3;\n 4[\"Intersect\"];\n 2 -->|out_file1| 4;\n 3 -->|out_file1| 4;\n 5[\"Intersect\"];\n 3 -->|out_file1| 5;\n 2 -->|out_file1| 5;\n 6[\"Concatenate datasets\"];\n 5 -->|output| 6;\n 4 -->|output| 6;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Galaxy Intro Strands 2", + "outputs": [], + "parent_id": "introduction/galaxy-intro-strands", + "path": "topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands-2.ga", + "tags": [ + "introduction" + ], + "test_results": null, + "tests": false, + "title": "Galaxy Intro Strands 2", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-strands/versions/galaxy-workflowlaxy-intro-strands-2", + "tutorial_id": "galaxy-intro-strands", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands-2.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands-2.html", + "version": 4, + "wfid": "introduction-galaxy-intro-strands", + "wfname": "galaxy-workflowlaxy-intro-strands-2", + "workflow": "Galaxy-Workflow-galaxy-intro-strands-2.ga", + "workflow_tools": [ + "Filter1", + "gene2exon1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/intersect/gops_intersect_1/1.0.0" + ], + "workflowhub_id": "1111" + }, + { + "creators": [], + "description": "Introduction to Genomics and Galaxy", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"Filter\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Filter\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Filter\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Intersect\"]\n 2 -> 4 [label=\"out_file1\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"Intersect\"]\n 3 -> 5 [label=\"out_file1\"]\n 2 -> 5 [label=\"out_file1\"]\n 6[label=\"Concatenate datasets\"]\n 5 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "8654b300bee12fde5cdb5392424e592b34757373", + "message": "added workflows", + "num": 1, + "short_hash": "8654b300b", + "unix": "1536320594" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genes" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Genes\"}", + "tool_version": null, + "type": "data_input", + "uuid": "d69a6248-140c-4b97-bc0f-ce88a4452c75", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Filter\"];\n 0 -->|output| 1;\n 2[\"Filter\"];\n 0 -->|output| 2;\n 3[\"Filter\"];\n 0 -->|output| 3;\n 4[\"Intersect\"];\n 2 -->|out_file1| 4;\n 3 -->|out_file1| 4;\n 5[\"Intersect\"];\n 3 -->|out_file1| 5;\n 2 -->|out_file1| 5;\n 6[\"Concatenate datasets\"];\n 5 -->|output| 6;\n 4 -->|output| 6;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Galaxy Intro Strands", + "outputs": [], + "parent_id": "introduction/galaxy-intro-strands", + "path": "topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands.ga", + "tags": [ + "introduction" + ], + "test_results": null, + "tests": false, + "title": "Galaxy Intro Strands", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-strands/versions/galaxy-workflowlaxy-intro-strands", + "tutorial_id": "galaxy-intro-strands", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-strands/workflows/Galaxy-Workflow-galaxy-intro-strands.html", + "version": 4, + "wfid": "introduction-galaxy-intro-strands", + "wfname": "galaxy-workflowlaxy-intro-strands", + "workflow": "Galaxy-Workflow-galaxy-intro-strands.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/intersect/gops_intersect_1/1.0.0" + ], + "workflowhub_id": "1110" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/introduction/tutorial.json", + "contributors": [ + { + "email": "andrea.bagnacani@gmail.com", + "id": "bagnacan", + "joined": "2017-10", + "name": "Andrea Bagnacani", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bagnacan/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bagnacan.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "id": "pajanne", + "joined": "2017-09", + "name": "Anne Pajon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pajanne/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pajanne.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "chrisbarnettster", + "joined": "2019-05", + "name": "Christopher Barnett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/chrisbarnettster/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/chrisbarnettster.json" + }, + { + "id": "michelemaroni89", + "joined": "2019-07", + "name": "Michele Maroni", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/michelemaroni89/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/michelemaroni89.json" + }, + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + }, + { + "email": "nadia.goue@uca.fr", + "id": "nagoue", + "joined": "2019-07", + "name": "Nadia Gou\u00e9", + "orcid": "0000-0003-2750-1473", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nagoue/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nagoue.json" + }, + { + "id": "olanag1", + "joined": "2019-07", + "name": "Olha Nahorna", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/olanag1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/olanag1.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + } + ], + "dir": "topics/introduction/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "introduction/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-05-07", + "pageviews": 5726884, + "priority": 1, + "pub_date": "2016-09-30", + "redirect_from": [ + "/topics/introduction/slides/introduction", + "/short/introduction/introduction/slides", + "/short/S00073" + ], + "short_id": "S00073", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "first", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to Galaxy", + "tools": [], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/introduction/slides.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/options-for-using-galaxy/tutorial.json", + "contributors": [ + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "id": "pajanne", + "joined": "2017-09", + "name": "Anne Pajon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pajanne/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pajanne.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "id": "alaaelghamry", + "joined": "2021-11", + "name": "Alaa Elghamry", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alaaelghamry/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alaaelghamry.json" + } + ], + "dir": "topics/introduction/tutorials/options-for-using-galaxy", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "introduction/options-for-using-galaxy", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2022-09-23", + "objectives": null, + "pageviews": 5726884, + "pub_date": "2017-05-24", + "questions": [ + "Which Galaxy instance should I use?" + ], + "short_id": "S00075", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": null, + "title": "Options for using Galaxy", + "tools": [], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "options-for-using-galaxy", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/options-for-using-galaxy/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/options-for-using-galaxy/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/options-for-using-galaxy/slides.json" + }, + "version": 14, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/igv-introduction/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "elixir_node": "de", + "email": "wolffj@informatik.uni-freiburg.de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "joachimwolff", + "joined": "2017-09", + "name": "Joachim Wolff", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/joachimwolff/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/joachimwolff.json" + }, + { + "id": "pajanne", + "joined": "2017-09", + "name": "Anne Pajon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pajanne/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pajanne.json" + } + ], + "dir": "topics/introduction/tutorials/igv-introduction", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/igv-introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-02-17", + "objectives": null, + "pageviews": 9960, + "pub_date": "2016-03-30", + "questions": null, + "short_id": "T00193", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "next-steps", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "2H", + "title": "IGV Introduction", + "tools": [], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "igv-introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/igv-introduction/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/igv-introduction/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/igv-introduction/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 93, + "visitors": 6800, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/dummy/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/introduction/tutorials/dummy", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/dummy", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "There are several ways to get data into Galaxy", + "you can upload a file by pasting in a web address, you can upload a file from your computer, and you can import an entire history." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn how to upload a file by pasting in a URL", + "Learn how to import data from a shared library", + "Determine the best strategy to get data into Galaxy" + ], + "pageviews": 312, + "pub_date": "2022-09-23", + "questions": [ + "How to upload data to Galaxy" + ], + "short_id": "T00185", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "40m", + "title": "Upload data to Galaxy", + "tools": [], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "dummy", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/dummy/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/dummy/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/dummy/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 209, + "visitors": 265 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastq_quality_filter", + "owner": "devteam", + "revisions": "43a7370aa010", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_quality_filter", + "owner": "devteam", + "revisions": "64e9a6afdd0c", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "9da02be9c6cc", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "2c64fded1286", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastq_quality_filter\n owner: devteam\n revisions: 43a7370aa010\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_quality_filter\n owner: devteam\n revisions: 64e9a6afdd0c\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 9da02be9c6cc\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 2c64fded1286\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-short/tutorial.json", + "contributions": { + "authorship": [ + "annasyme", + "nsoranzo" + ], + "editing": [ + "bebatut", + "ahmedhamidawan" + ] + }, + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "email": "aawan7@jhu.edu", + "id": "ahmedhamidawan", + "joined": "2024-08", + "linkedin": "ahmed-awan-70a20919a", + "matrix": "ahmedhamidawan:matrix.org", + "name": "Ahmed Hamid Awan", + "orcid": "0009-0003-2600-6152", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ahmedhamidawan/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ahmedhamidawan.json" + } + ], + "dir": "topics/introduction/tutorials/galaxy-intro-short", + "edam_operation": [ + "Sequencing quality control", + "Sequence composition calculation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/galaxy-intro-short", + "inexact_supported_servers": [ + "Galaxy@Pasteur", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The Galaxy interface has an activity bar on the left, a tool (or other activated) panel next to it (if expanded), viewing pane in the middle, and a history of your data analysis on the right.", + "You can create a new history for each analysis. All your histories are saved.", + "To get data into Galaxy, you can upload a file by pasting in a web address. There are other ways to get data into Galaxy (not covered in this tutorial): you can upload a file from your computer, and you can import an entire history.", + "Choose a tool and change any settings for your analysis.", + "Run the tool. The output files will be saved at the top of your history.", + "View the output files by clicking on the eye icon.", + "View all your histories and move files between them. Switch to a different history.", + "Log out of your Galaxy server. When you log back in (to the same server), your histories will all be there." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-15", + "objectives": [ + "Learn how to upload a file", + "Learn how to use a tool", + "Learn how to view results", + "Learn how to view histories", + "Learn how to extract and run a workflow", + "Learn how to share a history" + ], + "pageviews": 5786269, + "priority": 2, + "pub_date": "2018-08-27", + "questions": [ + "How to get started in Galaxy" + ], + "short_id": "T00190", + "short_tools": [ + "fastqc", + "cshl_fastq_quality_filter" + ], + "slides": true, + "slides_recordings": false, + "subtopic": "first", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@Pasteur", + "url": "https://galaxy.pasteur.fr/", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "espa\u00f1ol" + ], + "time_estimation": "40m", + "title": "A short introduction to Galaxy", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_filter/cshl_fastq_quality_filter/1.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_filter/cshl_fastq_quality_filter/1.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy1" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [ + "es" + ], + "tutorial": [ + "es" + ], + "video": true + }, + "tutorial_name": "galaxy-intro-short", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/galaxy-intro-short/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-short/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-short/tutorial.json" + }, + "version": 36, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 420, + "visitors": 2101490, + "workflows": [ + { + "creators": [], + "description": "A short introduction to Galaxy", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmutant_R1\"]\n 1[label=\"FastQC\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Filter by quality\"]\n 0 -> 2 [label=\"output\"]\n k24271408b2cc4e229bf92071f41bd991[color=lightseagreen,label=\"Output\\nfilter1\"]\n 2 -> k24271408b2cc4e229bf92071f41bd991\n 3[label=\"Filter by quality\"]\n 0 -> 3 [label=\"output\"]\n k86ed7ac57a924c1caf49eecb6baeaa9d[color=lightseagreen,label=\"Output\\nfilter2\"]\n 3 -> k86ed7ac57a924c1caf49eecb6baeaa9d\n}", + "history": [ + { + "hash": "bcd92cb059319065ea797c48e5e68c47ceae2dbd", + "message": "Add workflow test.", + "num": 5, + "short_hash": "bcd92cb05", + "unix": "1603316821" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "6aded48bd1b611fb111ac2818450c00dafd7d1f3", + "message": "added workflow for intro-short", + "num": 1, + "short_hash": "6aded48bd", + "unix": "1537905266" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R1" + } + ], + "label": "mutant_R1", + "name": "mutant_R1", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mutant_R1\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e271eee4-bfb8-40b4-b691-a25cb9932327", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nmutant_R1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"FastQC\"];\n 0 -->|output| 1;\n 2[\"Filter by quality\"];\n 0 -->|output| 2;\n 24271408-b2cc-4e22-9bf9-2071f41bd991[\"Output\\nfilter1\"];\n 2 --> 24271408-b2cc-4e22-9bf9-2071f41bd991;\n style 24271408-b2cc-4e22-9bf9-2071f41bd991 stroke:#2c3143,stroke-width:4px;\n 3[\"Filter by quality\"];\n 0 -->|output| 3;\n 86ed7ac5-7a92-4c1c-af49-eecb6baeaa9d[\"Output\\nfilter2\"];\n 3 --> 86ed7ac5-7a92-4c1c-af49-eecb6baeaa9d;\n style 86ed7ac5-7a92-4c1c-af49-eecb6baeaa9d stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Galaxy Intro Short", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_filter/cshl_fastq_quality_filter/1.0.1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter by quality", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 230, + "top": 130 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_filter/cshl_fastq_quality_filter/1.0.1", + "tool_shed_repository": { + "changeset_revision": "43a7370aa010", + "name": "fastq_quality_filter", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"chromInfo\": \"\\\"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\\\"\", \"__rerun_remap_job_id__\": null, \"percent\": \"\\\"80\\\"\", \"input\": \"null\", \"quality\": \"\\\"35\\\"\"}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "3a3ec769-355d-488a-984b-78462a794ef9", + "workflow_outputs": [ + { + "label": "filter1", + "output_name": "output", + "uuid": "24271408-b2cc-4e22-9bf9-2071f41bd991" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_filter/cshl_fastq_quality_filter/1.0.1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter by quality", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 230, + "top": 250 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_filter/cshl_fastq_quality_filter/1.0.1", + "tool_shed_repository": { + "changeset_revision": "43a7370aa010", + "name": "fastq_quality_filter", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"chromInfo\": \"\\\"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\\\"\", \"__rerun_remap_job_id__\": null, \"percent\": \"\\\"80\\\"\", \"input\": \"null\", \"quality\": \"\\\"36\\\"\"}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "df2f009c-d3e5-4ccc-bf0f-10b8e44947da", + "workflow_outputs": [ + { + "label": "filter2", + "output_name": "output", + "uuid": "86ed7ac5-7a92-4c1c-af49-eecb6baeaa9d" + } + ] + } + ], + "parent_id": "introduction/galaxy-intro-short", + "path": "topics/introduction/tutorials/galaxy-intro-short/workflows/Galaxy-Workflow-galaxy-intro-short.ga", + "tags": [ + "introduction" + ], + "test_results": null, + "tests": false, + "title": "Galaxy Intro Short", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-short/versions/galaxy-workflowlaxy-intro-short", + "tutorial_id": "galaxy-intro-short", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-short/workflows/Galaxy-Workflow-galaxy-intro-short.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-short/workflows/Galaxy-Workflow-galaxy-intro-short.html", + "version": 5, + "wfid": "introduction-galaxy-intro-short", + "wfname": "galaxy-workflowlaxy-intro-short", + "workflow": "Galaxy-Workflow-galaxy-intro-short.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_quality_filter/cshl_fastq_quality_filter/1.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72" + ], + "workflowhub_id": "1094" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.582600" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "4c07ddedc198", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 4c07ddedc198\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-101/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "elixir_node": "de", + "email": "blankclemens@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "blankclemens", + "joined": "2017-09", + "name": "Clemens Blank", + "orcid": "0000-0002-1726-2256", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankclemens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankclemens.json" + }, + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "id": "pajanne", + "joined": "2017-09", + "name": "Anne Pajon", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pajanne/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pajanne.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/introduction/tutorials/galaxy-intro-101", + "edam_operation": [ + "Mapping" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/galaxy-intro-101", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy provides an easy-to-use graphical user interface for often complex command-line tools", + "Galaxy keeps a full record of your analysis in a history", + "Workflows enable you to repeat your analysis on different data", + "Galaxy can connect to external sources for data import and visualization purposes", + "Galaxy provides ways to share your results and methods with others" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Familiarize yourself with the basics of Galaxy", + "Learn how to obtain data from external sources", + "Learn how to run tools", + "Learn how histories work", + "Learn how to create a workflow", + "Learn how to share your work" + ], + "pageviews": 52424, + "priority": 2, + "pub_date": "2016-12-19", + "questions": [ + "Which coding exon has the highest number of single nucleotide polymorphisms (SNPs) on human chromosome 22?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-07-21", + "length": "13M", + "speakers": [ + "nekrut" + ], + "youtube_id": "D5HgJWdfOWw" + } + ], + "short_id": "T00186", + "short_tools": [ + "bedtools_intersectbed", + "datamash_ops", + "tp_sort_header_tool", + "comp1", + "tp_head_tool", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Galaxy Basics for genomics", + "tools": [ + "comp1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1sort1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.8+galaxy0", + "upload1" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-intro-101", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/galaxy-intro-101/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-101/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-101/tutorial.json" + }, + "version": 63, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 199, + "visitors": 30914, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-5987-8032", + "name": "Anton Nekrutenko" + }, + { + "class": "Person", + "identifier": "0000-0001-9760-8992", + "name": "Helena Rasche" + } + ], + "description": "Galaxy 101", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nExons\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nFeatures\"]\n 2[label=\"bedtools Intersect intervals\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Datamash\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Sort\"]\n 3 -> 4 [label=\"out_file\"]\n 5[label=\"Select first\"]\n 4 -> 5 [label=\"outfile\"]\n 6[label=\"Compare two Datasets\"]\n 0 -> 6 [label=\"output\"]\n 5 -> 6 [label=\"outfile\"]\n k565e3d7602304a5e87c19c36ce0b7df8[color=lightseagreen,label=\"Output\\ntop_5_exons\"]\n 6 -> k565e3d7602304a5e87c19c36ce0b7df8\n}", + "history": [ + { + "hash": "a448d335638114ae05668d8f3872a8316d8d49b0", + "message": "added modified workflow", + "num": 8, + "short_hash": "a448d3356", + "unix": "1710952427" + }, + { + "hash": "f90859e9d8100f4efa53007414e2b3849d6e1951", + "message": "Fix workflow for planemo", + "num": 7, + "short_hash": "f90859e9d", + "unix": "1684430714" + }, + { + "hash": "553ea8e510cd1e7d8a93a0a8d88dbbe0595c5619", + "message": "Rename workflow", + "num": 6, + "short_hash": "553ea8e51", + "unix": "1649867205" + }, + { + "hash": "a49d7d1a4431174af35c82ea03d9b1dd28251691", + "message": "Include modifications", + "num": 5, + "short_hash": "a49d7d1a4", + "unix": "1649867088" + }, + { + "hash": "222c554dbb9d76aaec3132c109dd701889750a94", + "message": "workflow annotation wteaks", + "num": 4, + "short_hash": "222c554db", + "unix": "1626799656" + }, + { + "hash": "43d15ed0ca2f2c0abbe58769cca667d978e48b4b", + "message": "Refresh for galaxy101", + "num": 3, + "short_hash": "43d15ed0c", + "unix": "1626797332" + }, + { + "hash": "d0f7b80091932c1f6d78357d7d4229942faf76e6", + "message": "Added workflow test.", + "num": 2, + "short_hash": "d0f7b8009", + "unix": "1603042314" + }, + { + "hash": "bffe460ee012428019957f7ba57d7f5f3050a99a", + "message": "Added workflow.", + "num": 1, + "short_hash": "bffe460ee", + "unix": "1603039367" + } + ], + "inputs": [ + { + "annotation": "Input exons file", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Input exons file", + "name": "Exons" + } + ], + "label": "Exons", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 187.2359999999986 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bd3df190-bc2c-4432-a534-7b1b21cd58c9", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Input features file", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Input features file", + "name": "Features" + } + ], + "label": "Features", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 49, + "top": 430.2359999999986 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "b7b8e25f-8db4-4707-bfb9-9e5a527e28c3", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nExons\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nFeatures\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"bedtools Intersect intervals\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"Datamash\"];\n 2 -->|output| 3;\n 4[\"Sort\"];\n 3 -->|out_file| 4;\n 5[\"Select first\"];\n 4 -->|outfile| 5;\n 6[\"Compare two Datasets\"];\n 0 -->|output| 6;\n 5 -->|outfile| 6;\n 565e3d76-0230-4a5e-87c1-9c36ce0b7df8[\"Output\\ntop_5_exons\"];\n 6 --> 565e3d76-0230-4a5e-87c1-9c36ce0b7df8;\n style 565e3d76-0230-4a5e-87c1-9c36ce0b7df8 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Find exons with the highest number of features", + "outputs": [ + { + "annotation": "", + "content_id": "comp1", + "errors": null, + "id": 6, + "input_connections": { + "input1": { + "id": 0, + "output_name": "output" + }, + "input2": { + "id": 5, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Compare two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1133, + "top": 208.2359999999986 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Top 5 exon IDs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "comp1", + "tool_state": "{\"field1\": \"4\", \"field2\": \"1\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"N\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "52698c72-b6cc-4ca4-84b0-c84dd018e389", + "when": null, + "workflow_outputs": [ + { + "label": "top_5_exons", + "output_name": "out_file1", + "uuid": "565e3d76-0230-4a5e-87c1-9c36ce0b7df8" + } + ] + } + ], + "parent_id": "introduction/galaxy-intro-101", + "path": "topics/introduction/tutorials/galaxy-intro-101/workflows/galaxy-intro-101-workflow.ga", + "tags": [ + "introduction" + ], + "test_results": { + "eu": { + "summary": { + "num_errors": 0, + "num_failures": 0, + "num_skips": 0, + "num_tests": 1 + }, + "tests": [ + { + "data": { + "end_datetime": "2023-05-18T19:40:47.480254", + "inputs": { + "Exons": { + "class": "File", + "filetype": "bed", + "location": "https://zenodo.org/record/4104428/files/UCSC-hg38-chr22-Coding-Exons.bed" + }, + "Features": { + "class": "File", + "filetype": "bed", + "location": "https://zenodo.org/record/4104428/files/UCSC-hg38-chr22-dbSNP153-Whole-Gene-SNPs.bed" + } + }, + "invocation_details": { + "details": { + "error_message": "", + "history_id": "a7e26bbbb0830b20", + "history_state": "ok", + "invocation_id": "4e6187ae89df9163", + "invocation_state": "scheduled", + "workflow_id": "b9fe010bdb910e56" + }, + "steps": { + "0. Exons": { + "action": null, + "id": "137fffe5e92f37af", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 0, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d86765828ccbcc3eb28a4b", + "src": "hda", + "uuid": "cfb71055-95ff-4a95-9e0b-7a48161d5d0c" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-18T17:34:36.117311", + "workflow_step_id": "47c79ce5a092d365", + "workflow_step_label": "Exons", + "workflow_step_uuid": "bd3df190-bc2c-4432-a534-7b1b21cd58c9" + }, + "1. Features": { + "action": null, + "id": "3ea99854c46ce445", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 1, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d867653f5bd69298cf67f1", + "src": "hda", + "uuid": "f94e7844-204e-42a8-83e0-23adc4ca038b" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-18T17:34:36.117314", + "workflow_step_id": "7624b0f83c340c3d", + "workflow_step_label": "Features", + "workflow_step_uuid": "b7b8e25f-8db4-4707-bfb9-9e5a527e28c3" + }, + "2. Unnamed step": { + "action": null, + "id": "53d44f7f08b165d4", + "job_id": "11ac94870d0bb33a3743b59ce7fc28ea", + "jobs": [ + { + "command_line": "bedtools intersect -a '/data/dnb08/galaxy_db/files/c/f/b/dataset_cfb71055-95ff-4a95-9e0b-7a48161d5d0c.dat' -b '/data/dnb08/galaxy_db/files/f/9/4/dataset_f94e7844-204e-42a8-83e0-23adc4ca038b.dat' -wb > '/data/jwd05e/main/060/036/60036240/outputs/galaxy_dataset_1dbd5467-7362-4279-8f9f-225c450392c4.dat'", + "command_version": "bedtools v2.30.0", + "create_time": "2023-05-18T17:34:36.114094", + "dependencies": [], + "exit_code": 0, + "external_id": "43511676", + "galaxy_version": "23.0", + "history_id": "a7e26bbbb0830b20", + "id": "11ac94870d0bb33a3743b59ce7fc28ea", + "inputs": { + "inputA": { + "id": "4838ba20a6d86765828ccbcc3eb28a4b", + "src": "hda", + "uuid": "cfb71055-95ff-4a95-9e0b-7a48161d5d0c" + }, + "inputB": { + "id": "4838ba20a6d867653f5bd69298cf67f1", + "src": "hda", + "uuid": "f94e7844-204e-42a8-83e0-23adc4ca038b" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m975-6047.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m975-6047.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "40960.0000000", + "title": "Memory Allocated (MB)", + "value": "40960" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684431305.0000000", + "title": "Job Start Time", + "value": "2023-05-18 19:35:05" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684431327.0000000", + "title": "Job End Time", + "value": "2023-05-18 19:35:27" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "22.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "22 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "10840959112.0000000", + "title": "CPU Time", + "value": "10.840959112 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "41201008640.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "38.4 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "200916992.0000000", + "title": "Max memory usage (MEM)", + "value": "191.6 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "41201012736.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "38.4 GB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "200916992.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "191.6 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "42949672960.0000000", + "title": "Memory softlimit on cgroup", + "value": "40.0 GB" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d86765192446f033baed74", + "src": "hda", + "uuid": "1dbd5467-7362-4279-8f9f-225c450392c4" + } + }, + "params": { + "__input_ext": "\"input\"", + "__workflow_invocation_uuid__": "\"389e354ef5a211eda9c3001e67d2ec02\"", + "bed": "false", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "count": "false", + "dbkey": "\"?\"", + "fraction_cond": "{\"__current_case__\": 0, \"fraction_select\": \"default\"}", + "genome_file_opts": "{\"__current_case__\": 0, \"genome\": null, \"genome_file_opts_selector\": \"loc\"}", + "header": "false", + "invert": "false", + "once": "false", + "overlap_mode": "[\"-wb\"]", + "reduce_or_iterate": "{\"__current_case__\": 0, \"inputB\": {\"values\": [{\"id\": 137365408, \"src\": \"hda\"}]}, \"reduce_or_iterate_selector\": \"iterate\"}", + "sorted": "false", + "split": "false", + "strand": "\"\"" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-18T17:35:28.719729", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 2, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d86765192446f033baed74", + "src": "hda", + "uuid": "1dbd5467-7362-4279-8f9f-225c450392c4" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-18T17:35:28.700947", + "workflow_step_id": "0fe8e8a22ac078c9", + "workflow_step_label": null, + "workflow_step_uuid": "4fc2b17c-64d8-4c1c-a2d3-743f2ea9bcaf" + }, + "3. Unnamed step": { + "action": null, + "id": "e6d3f79a3a3a71b2", + "job_id": "11ac94870d0bb33a8e9e3c167a533b1b", + "jobs": [ + { + "command_line": "datamash --group '4' countunique 10 < /data/dnb08/galaxy_db/files/1/d/b/dataset_1dbd5467-7362-4279-8f9f-225c450392c4.dat > '/data/jwd02f/main/060/036/60036241/outputs/galaxy_dataset_599c420f-e56b-4499-bf0e-16044fafff18.dat'", + "command_version": null, + "create_time": "2023-05-18T17:34:36.233576", + "dependencies": [], + "exit_code": 0, + "external_id": "43511710", + "galaxy_version": "23.0", + "history_id": "a7e26bbbb0830b20", + "id": "11ac94870d0bb33a8e9e3c167a533b1b", + "inputs": { + "in_file": { + "id": "4838ba20a6d86765192446f033baed74", + "src": "hda", + "uuid": "1dbd5467-7362-4279-8f9f-225c450392c4" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m100-0658.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m100-0658.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684431348.0000000", + "title": "Job Start Time", + "value": "2023-05-18 19:35:48" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684431390.0000000", + "title": "Job End Time", + "value": "2023-05-18 19:36:30" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "42.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "42 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "9364859094.0000000", + "title": "CPU Time", + "value": "9.364859094 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "191201280.0000000", + "title": "Max memory usage (MEM)", + "value": "182.3 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4219351040.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "3.9 GB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "191201280.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "182.3 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "out_file": { + "id": "4838ba20a6d86765a402038d0b9964e3", + "src": "hda", + "uuid": "599c420f-e56b-4499-bf0e-16044fafff18" + } + }, + "params": { + "__input_ext": "\"bed\"", + "__workflow_invocation_uuid__": "\"389e354ef5a211eda9c3001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"", + "grouping": "\"4\"", + "header_in": "false", + "header_out": "false", + "ignore_case": "false", + "need_sort": "false", + "operations": "[{\"__index__\": 0, \"op_column\": \"10\", \"op_name\": \"countunique\"}]", + "print_full_line": "false" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-18T17:36:33.513106", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 3, + "output_collections": {}, + "outputs": { + "out_file": { + "id": "4838ba20a6d86765a402038d0b9964e3", + "src": "hda", + "uuid": "599c420f-e56b-4499-bf0e-16044fafff18" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-18T17:36:33.486731", + "workflow_step_id": "fcac47089ebdfbc2", + "workflow_step_label": null, + "workflow_step_uuid": "d6710e24-dbfb-4aef-8a63-2836cdc831e4" + }, + "4. Unnamed step": { + "action": null, + "id": "0a5ce27d3453ffc8", + "job_id": "11ac94870d0bb33aa0e24ffdcb66ba6f", + "jobs": [ + { + "command_line": "python '/opt/galaxy/server/tools/filters/sorter.py' --input='/data/dnb08/galaxy_db/files/5/9/9/dataset_599c420f-e56b-4499-bf0e-16044fafff18.dat' --output='/data/jwd05e/main/060/036/60036242/outputs/galaxy_dataset_c8b6796e-41f3-41de-9a94-82a3e7c388b7.dat' --key=2,2nr --header 0", + "command_version": null, + "create_time": "2023-05-18T17:34:36.326397", + "dependencies": [], + "exit_code": 0, + "external_id": "43511741", + "galaxy_version": "23.0", + "history_id": "a7e26bbbb0830b20", + "id": "11ac94870d0bb33aa0e24ffdcb66ba6f", + "inputs": { + "input": { + "id": "4838ba20a6d86765a402038d0b9964e3", + "src": "hda", + "uuid": "599c420f-e56b-4499-bf0e-16044fafff18" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m100-0658.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m100-0658.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684431414.0000000", + "title": "Job Start Time", + "value": "2023-05-18 19:36:54" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684431461.0000000", + "title": "Job End Time", + "value": "2023-05-18 19:37:41" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "47.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "47 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "9815575101.0000000", + "title": "CPU Time", + "value": "9.815575101 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "196067328.0000000", + "title": "Max memory usage (MEM)", + "value": "187.0 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4219351040.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "3.9 GB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "196067328.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "187.0 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "out_file1": { + "id": "4838ba20a6d867650b679d679c1fbabd", + "src": "hda", + "uuid": "c8b6796e-41f3-41de-9a94-82a3e7c388b7" + } + }, + "params": { + "__input_ext": "\"tabular\"", + "__workflow_invocation_uuid__": "\"389e354ef5a211eda9c3001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "column": "\"2\"", + "column_set": "[]", + "dbkey": "\"?\"", + "header_lines": "\"0\"", + "order": "\"DESC\"", + "style": "\"num\"" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "sort1", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-18T17:37:45.740051", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 4, + "output_collections": {}, + "outputs": { + "out_file1": { + "id": "4838ba20a6d867650b679d679c1fbabd", + "src": "hda", + "uuid": "c8b6796e-41f3-41de-9a94-82a3e7c388b7" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-18T17:37:45.722567", + "workflow_step_id": "e42696dd961f95d2", + "workflow_step_label": null, + "workflow_step_uuid": "4dd35991-4996-4f7d-8690-bde783f6fa6a" + }, + "5. Unnamed step": { + "action": null, + "id": "06226aff05ce5d1f", + "job_id": "11ac94870d0bb33ad12002ce0209213b", + "jobs": [ + { + "command_line": "head --lines 5 '/data/dnb08/galaxy_db/files/c/8/b/dataset_c8b6796e-41f3-41de-9a94-82a3e7c388b7.dat' > '/data/jwd05e/main/060/036/60036243/outputs/galaxy_dataset_2828298d-dc7b-431b-bf03-3f6955f19dc1.dat'", + "command_version": "head (GNU coreutils) 8.25", + "create_time": "2023-05-18T17:34:36.414517", + "dependencies": [], + "exit_code": 0, + "external_id": "43511785", + "galaxy_version": "23.0", + "history_id": "a7e26bbbb0830b20", + "id": "11ac94870d0bb33ad12002ce0209213b", + "inputs": { + "infile": { + "id": "4838ba20a6d867650b679d679c1fbabd", + "src": "hda", + "uuid": "c8b6796e-41f3-41de-9a94-82a3e7c388b7" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c28m475-9359.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c28m475-9359.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684431479.0000000", + "title": "Job Start Time", + "value": "2023-05-18 19:37:59" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684431577.0000000", + "title": "Job End Time", + "value": "2023-05-18 19:39:37" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "98.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "1 minute" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "160336864240.0000000", + "title": "CPU Time", + "value": "2 minutes" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "106968.0000000", + "title": "Failed to allocate memory count", + "value": 106968.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Max memory usage (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "4160880640.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "3.9 GB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "outfile": { + "id": "4838ba20a6d86765d96edf23a7ca38c5", + "src": "hda", + "uuid": "2828298d-dc7b-431b-bf03-3f6955f19dc1" + } + }, + "params": { + "__input_ext": "\"tabular\"", + "__workflow_invocation_uuid__": "\"389e354ef5a211eda9c3001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "complement": "\"\"", + "count": "\"5\"", + "dbkey": "\"?\"" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/1.1.0", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-18T17:39:41.632086", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 5, + "output_collections": {}, + "outputs": { + "outfile": { + "id": "4838ba20a6d86765d96edf23a7ca38c5", + "src": "hda", + "uuid": "2828298d-dc7b-431b-bf03-3f6955f19dc1" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-18T17:39:41.615934", + "workflow_step_id": "4c5e84542536cc7c", + "workflow_step_label": null, + "workflow_step_uuid": "820fd964-2460-4b50-8491-968d796500fc" + }, + "6. Unnamed step": { + "action": null, + "id": "9869e0dcfb157198", + "job_id": "11ac94870d0bb33a1d0bbfc0189b52a3", + "jobs": [ + { + "command_line": "python /opt/galaxy/server/tools/filters/joinWrapper.py /data/dnb08/galaxy_db/files/c/f/b/dataset_cfb71055-95ff-4a95-9e0b-7a48161d5d0c.dat /data/dnb08/galaxy_db/files/2/8/2/dataset_2828298d-dc7b-431b-bf03-3f6955f19dc1.dat 4 1 N /data/jwd02f/main/060/036/60036244/outputs/galaxy_dataset_1c27a522-57c3-4dd6-a98b-2978def89473.dat", + "command_version": null, + "create_time": "2023-05-18T17:34:36.507964", + "dependencies": [], + "exit_code": 0, + "external_id": "43511832", + "galaxy_version": "23.0", + "history_id": "a7e26bbbb0830b20", + "id": "11ac94870d0bb33a1d0bbfc0189b52a3", + "inputs": { + "input1": { + "id": "4838ba20a6d86765828ccbcc3eb28a4b", + "src": "hda", + "uuid": "cfb71055-95ff-4a95-9e0b-7a48161d5d0c" + }, + "input2": { + "id": "4838ba20a6d86765d96edf23a7ca38c5", + "src": "hda", + "uuid": "2828298d-dc7b-431b-bf03-3f6955f19dc1" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m100-0658.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m100-0658.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684431607.0000000", + "title": "Job Start Time", + "value": "2023-05-18 19:40:07" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684431645.0000000", + "title": "Job End Time", + "value": "2023-05-18 19:40:45" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "38.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "38 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "9278612295.0000000", + "title": "CPU Time", + "value": "9.278612295 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "191029248.0000000", + "title": "Max memory usage (MEM)", + "value": "182.2 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4219351040.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "3.9 GB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "191029248.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "182.2 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "out_file1": { + "id": "4838ba20a6d8676569e7a7744709f3b7", + "src": "hda", + "uuid": "1c27a522-57c3-4dd6-a98b-2978def89473" + } + }, + "params": { + "__input_ext": "\"bed\"", + "__workflow_invocation_uuid__": "\"389e354ef5a211eda9c3001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"", + "field1": "\"4\"", + "field2": "\"1\"", + "mode": "\"N\"" + }, + "state": "ok", + "stderr": "", + "stdout": "join (GNU coreutils) 8.30\nCopyright (C) 2018 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL version 3 or later .\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\nWritten by Mike Haertel.\n", + "tool_id": "comp1", + "tool_stderr": "", + "tool_stdout": "join (GNU coreutils) 8.30\nCopyright (C) 2018 Free Software Foundation, Inc.\nLicense GPLv3+: GNU GPL version 3 or later .\nThis is free software: you are free to change and redistribute it.\nThere is NO WARRANTY, to the extent permitted by law.\n\nWritten by Mike Haertel.\n", + "traceback": null, + "update_time": "2023-05-18T17:40:47.707639", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 6, + "output_collections": {}, + "outputs": { + "out_file1": { + "id": "4838ba20a6d8676569e7a7744709f3b7", + "src": "hda", + "uuid": "1c27a522-57c3-4dd6-a98b-2978def89473" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-18T17:40:47.686290", + "workflow_step_id": "70e011a3c2da60d6", + "workflow_step_label": null, + "workflow_step_uuid": "52698c72-b6cc-4ca4-84b0-c84dd018e389" + } + } + }, + "problem_log": "No log for this engine type.", + "start_datetime": "2023-05-18T19:32:20.395205", + "status": "success" + }, + "doc": "Test sample data for the workflow", + "has_data": true, + "id": "galaxy-intro-101-workflow.ga_0", + "test_type": "galaxy_workflow" + } + ], + "version": "0.1" + } + }, + "tests": true, + "title": "Find exons with the highest number of features", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-101/versions/galaxy-intro-101-workflow", + "tutorial_id": "galaxy-intro-101", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-101/workflows/galaxy-intro-101-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-101/workflows/galaxy-intro-101-workflow.html", + "version": 5, + "wfid": "introduction-galaxy-intro-101", + "wfname": "galaxy-intro-101-workflow", + "workflow": "galaxy-intro-101-workflow.ga", + "workflow_tools": [ + "comp1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_intersectbed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0" + ], + "workflowhub_id": "1106" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4104428" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_point", + "owner": "iuc", + "revisions": "1acf88921176", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_point\n owner: iuc\n revisions: 1acf88921176\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-101-everyone/tutorial.json", + "contributors": [ + { + "elixir_node": "no", + "id": "annefou", + "joined": "2019-07", + "name": "Anne Fouilloux", + "orcid": "0000-0002-1784-2920", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annefou/", + "twitter": "AnneFouilloux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annefou.json" + }, + { + "email": "nadia.goue@uca.fr", + "id": "nagoue", + "joined": "2019-07", + "name": "Nadia Gou\u00e9", + "orcid": "0000-0003-2750-1473", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nagoue/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nagoue.json" + }, + { + "id": "chrisbarnettster", + "joined": "2019-05", + "name": "Christopher Barnett", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/chrisbarnettster/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/chrisbarnettster.json" + }, + { + "id": "michelemaroni89", + "joined": "2019-07", + "name": "Michele Maroni", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/michelemaroni89/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/michelemaroni89.json" + }, + { + "id": "olanag1", + "joined": "2019-07", + "name": "Olha Nahorna", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/olanag1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/olanag1.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/introduction/tutorials/galaxy-intro-101-everyone", + "edam_operation": [ + "Visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/galaxy-intro-101-everyone", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy provides an easy-to-use graphical user interface for often complex command-line tools", + "Galaxy keeps a full record of your analysis in a history", + "Workflows enable you to repeat your analysis on different data", + "Galaxy can connect to external sources for data import and visualization purposes", + "Galaxy provides ways to share your results and methods with others" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Familiarize yourself with the basics of Galaxy", + "Learn how to obtain data from external sources", + "Learn how to tag datasets", + "Learn how to run tools", + "Learn how histories work", + "Learn how to create a workflow", + "Learn how to share your work" + ], + "pageviews": 24410, + "priority": 2, + "pub_date": "2019-11-14", + "questions": [ + "What are the differences between the Iris species?" + ], + "recordings": [ + { + "captioners": [ + "astrovsky01" + ], + "date": "2023-05-01", + "galaxy_version": "23.0", + "length": "20M", + "speakers": [ + "astrovsky01" + ], + "youtube_id": "64oS5uXVRV0" + }, + { + "captioners": [ + "tnabtaf" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H15M", + "speakers": [ + "annefou", + "rwinand" + ], + "youtube_id": "dguN6Xw2Azs" + } + ], + "short_id": "T00187", + "short_tools": [ + "Grouping1", + "datamash_ops", + "ggplot2_point", + "Cut1", + "csv_to_tabular", + "Remove beginning1", + "tp_sorted_uniq", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "1H30M", + "title": "Galaxy Basics for everyone", + "tools": [ + "Cut1", + "Grouping1", + "Remove beginning1", + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "upload1" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-intro-101-everyone", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/galaxy-intro-101-everyone/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-101-everyone/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/galaxy-intro-101-everyone/tutorial.json" + }, + "version": 32, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 252, + "visitors": 14550, + "workflows": [ + { + "creators": [], + "description": "introduction", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\niris\"]\n 1[label=\"Convert CSV to tabular\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Datamash\"]\n 1 -> 2 [label=\"tabular\"]\n k254f1b4bd4664f0e8c460e97bbedae4d[color=lightseagreen,label=\"Output\\ndatamash_output\"]\n 2 -> k254f1b4bd4664f0e8c460e97bbedae4d\n 3[label=\"Remove beginning\"]\n 1 -> 3 [label=\"tabular\"]\n 4[label=\"Cut\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"Group\"]\n 3 -> 5 [label=\"out_file1\"]\n ka689bddf14d04a72b1f9c34d8f50d2b3[color=lightseagreen,label=\"Output\\ngroup1\"]\n 5 -> ka689bddf14d04a72b1f9c34d8f50d2b3\n 6[label=\"Group\"]\n 3 -> 6 [label=\"out_file1\"]\n kac7c73b258dd4c6e85ceddf49323b206[color=lightseagreen,label=\"Output\\ngroup2\"]\n 6 -> kac7c73b258dd4c6e85ceddf49323b206\n 7[label=\"Scatterplot with ggplot2\"]\n 3 -> 7 [label=\"out_file1\"]\n 8[label=\"Scatterplot with ggplot2\"]\n 3 -> 8 [label=\"out_file1\"]\n 9[label=\"Unique\"]\n 4 -> 9 [label=\"out_file1\"]\n k8a2b5e30d42a401996744b4af00c820a[color=lightseagreen,label=\"Output\\nunique_output\"]\n 9 -> k8a2b5e30d42a401996744b4af00c820a\n}", + "history": [ + { + "hash": "f5ec1c92ee0b0329a1ad5c6d52aa0e3fe82d9583", + "message": "Update ggplot2 tool in galaxy101 for everyone", + "num": 14, + "short_hash": "f5ec1c92e", + "unix": "1647276023" + }, + { + "hash": "2d1282226e93ab129a1459e45f1d26a3ba9d2411", + "message": "Add workflow test.", + "num": 13, + "short_hash": "2d1282226", + "unix": "1603313786" + }, + { + "hash": "4117bd414ffc93a9c46fe312804b63f3018d9fc4", + "message": "Update tutorial workflow and data-library record", + "num": 12, + "short_hash": "4117bd414", + "unix": "1594838956" + }, + { + "hash": "e0df2c97232b8455db1d38f63ffdfb69bb8d6389", + "message": "annotation added", + "num": 11, + "short_hash": "e0df2c972", + "unix": "1581629210" + }, + { + "hash": "232ce03723ab9acbd124828954705c1cd2679abd", + "message": "removed name label bit", + "num": 10, + "short_hash": "232ce0372", + "unix": "1581615057" + }, + { + "hash": "cccd85216e3d9baaca787eb7ae8808bd5f3fa2dc", + "message": "minor tweaks and files unhidden", + "num": 9, + "short_hash": "cccd85216", + "unix": "1581613998" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 8, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 7, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "de5e2cb89a0a9f4c3ed598c448cd9cd784a706db", + "message": "csv_to_tabular", + "num": 6, + "short_hash": "de5e2cb89", + "unix": "1578923859" + }, + { + "hash": "495f4d8d3dd2309d3780edef4c3b449ae5f871f4", + "message": "Workflows fix", + "num": 5, + "short_hash": "495f4d8d3", + "unix": "1578666747" + }, + { + "hash": "a38709a415104f50fc1cbd4ac2fedccc82a0919d", + "message": "workflow: update title and remove duplicate datamash step", + "num": 4, + "short_hash": "a38709a41", + "unix": "1573571116" + }, + { + "hash": "156b6c7efa1ef3240e2118d38611650ad5a340fe", + "message": "fix formatting issues, images and replace workflow", + "num": 3, + "short_hash": "156b6c7ef", + "unix": "1568975444" + }, + { + "hash": "4fdfd40a0df85861f6b4f05762663b07b6602a87", + "message": "fix format workflow in intro for everyone", + "num": 2, + "short_hash": "4fdfd40a0", + "unix": "1568360318" + }, + { + "hash": "d90d12a047f0362c6aeb9490791f69c0aaee43b4", + "message": "draft galaxy 101 for everyone with Iris dataset. - added introduction, workflow, data library.", + "num": 1, + "short_hash": "d90d12a04", + "unix": "1562484318" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "iris" + } + ], + "label": "iris", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 210.20000839233398, + "height": 61.79999923706055, + "left": 296.5, + "right": 496.5, + "top": 148.40000915527344, + "width": 200, + "x": 296.5, + "y": 148.40000915527344 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "6a8d8ca9-8bb9-414b-af8f-50d07721b363", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\niris\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Convert CSV to tabular\"];\n 0 -->|output| 1;\n 2[\"Datamash\"];\n 1 -->|tabular| 2;\n 254f1b4b-d466-4f0e-8c46-0e97bbedae4d[\"Output\\ndatamash_output\"];\n 2 --> 254f1b4b-d466-4f0e-8c46-0e97bbedae4d;\n style 254f1b4b-d466-4f0e-8c46-0e97bbedae4d stroke:#2c3143,stroke-width:4px;\n 3[\"Remove beginning\"];\n 1 -->|tabular| 3;\n 4[\"Cut\"];\n 3 -->|out_file1| 4;\n 5[\"Group\"];\n 3 -->|out_file1| 5;\n a689bddf-14d0-4a72-b1f9-c34d8f50d2b3[\"Output\\ngroup1\"];\n 5 --> a689bddf-14d0-4a72-b1f9-c34d8f50d2b3;\n style a689bddf-14d0-4a72-b1f9-c34d8f50d2b3 stroke:#2c3143,stroke-width:4px;\n 6[\"Group\"];\n 3 -->|out_file1| 6;\n ac7c73b2-58dd-4c6e-85ce-ddf49323b206[\"Output\\ngroup2\"];\n 6 --> ac7c73b2-58dd-4c6e-85ce-ddf49323b206;\n style ac7c73b2-58dd-4c6e-85ce-ddf49323b206 stroke:#2c3143,stroke-width:4px;\n 7[\"Scatterplot with ggplot2\"];\n 3 -->|out_file1| 7;\n 8[\"Scatterplot with ggplot2\"];\n 3 -->|out_file1| 8;\n 9[\"Unique\"];\n 4 -->|out_file1| 9;\n 8a2b5e30-d42a-4019-9674-4b4af00c820a[\"Output\\nunique_output\"];\n 9 --> 8a2b5e30-d42a-4019-9674-4b4af00c820a;\n style 8a2b5e30-d42a-4019-9674-4b4af00c820a stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GTN Training: Galaxy 101 For Everyone", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "errors": null, + "id": 2, + "input_connections": { + "in_file": { + "id": 1, + "output_name": "tabular" + } + }, + "inputs": [], + "label": null, + "name": "Datamash", + "outputs": [ + { + "name": "out_file", + "type": "tabular" + } + ], + "position": { + "bottom": 56.99374771118164, + "height": 113.5999984741211, + "left": 643.5, + "right": 843.5, + "top": -56.60625076293945, + "width": 200, + "x": 643.5, + "y": -56.60625076293945 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "tool_shed_repository": { + "changeset_revision": "562f3c677828", + "name": "datamash_ops", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"grouping\": \"5\", \"header_in\": \"true\", \"header_out\": \"true\", \"ignore_case\": \"true\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"need_sort\": \"true\", \"operations\": [{\"__index__\": 0, \"op_name\": \"mean\", \"op_column\": \"1\"}, {\"__index__\": 1, \"op_name\": \"sstdev\", \"op_column\": \"1\"}, {\"__index__\": 2, \"op_name\": \"mean\", \"op_column\": \"2\"}, {\"__index__\": 3, \"op_name\": \"sstdev\", \"op_column\": \"2\"}, {\"__index__\": 4, \"op_name\": \"mean\", \"op_column\": \"3\"}, {\"__index__\": 5, \"op_name\": \"sstdev\", \"op_column\": \"3\"}, {\"__index__\": 6, \"op_name\": \"mean\", \"op_column\": \"4\"}, {\"__index__\": 7, \"op_name\": \"sstdev\", \"op_column\": \"4\"}], \"print_full_line\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "e1a58a79-5102-450e-bfe0-200f0e64139d", + "workflow_outputs": [ + { + "label": "datamash_output", + "output_name": "out_file", + "uuid": "254f1b4b-d466-4f0e-8c46-0e97bbedae4d" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 500.5999984741211, + "height": 93.20000457763672, + "left": 1063.5, + "right": 1263.5, + "top": 407.3999938964844, + "width": 200, + "x": 1063.5, + "y": 407.3999938964844 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"groupcol\": \"5\", \"ignorecase\": \"false\", \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "dcd3ddc6-d871-45dd-94ed-3eae56dd56db", + "workflow_outputs": [ + { + "label": "group1", + "output_name": "out_file1", + "uuid": "a689bddf-14d0-4a72-b1f9-c34d8f50d2b3" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 6, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 620.6000289916992, + "height": 93.20000457763672, + "left": 1063.5, + "right": 1263.5, + "top": 527.4000244140625, + "width": 200, + "x": 1063.5, + "y": 527.4000244140625 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"groupcol\": \"5\", \"ignorecase\": \"false\", \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [{\"__index__\": 0, \"optype\": \"length\", \"opcol\": \"1\", \"opround\": \"no\", \"opdefault\": null}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "285a3852-71cb-4137-be1d-b0ec0a59d9e9", + "workflow_outputs": [ + { + "label": "group2", + "output_name": "out_file1", + "uuid": "ac7c73b2-58dd-4c6e-85ce-ddf49323b206" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "bottom": 873.0000305175781, + "height": 225.60000610351562, + "left": 1063.5, + "right": 1263.5, + "top": 647.4000244140625, + "width": 200, + "x": 1063.5, + "y": 647.4000244140625 + }, + "post_job_actions": { + "HideDatasetActionoutput1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1acf88921176", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"type_conditional\": {\"type_options\": \"points\", \"__current_case__\": 0, \"points\": {\"pointoptions\": \"default\", \"__current_case__\": 0}}, \"factor\": {\"factoring\": \"Single\", \"__current_case__\": 1, \"factorcol\": \"5\", \"colors\": \"Set2\", \"colororder\": \"1\"}, \"axis_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"axis_text_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"plot_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"gridlinecust\": \"default\", \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"legend\": \"yes\"}, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"out\": {\"unit_output_dim\": \"in\", \"width_output_dim\": \"7.0\", \"height_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"additional_output_format\": \"pdf\"}, \"title\": \"Sepal length as a function of sepal width\", \"xlab\": \"Sepal length\", \"xplot\": \"1\", \"ylab\": \"Sepal width\", \"yplot\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.5+galaxy0", + "type": "tool", + "uuid": "fa412209-5e3a-448e-8b0b-fa88870e19c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "08954537-18c1-4fa5-8093-b2ec90c0eb5c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input1": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "bottom": 993.0000305175781, + "height": 225.60000610351562, + "left": 1063.5, + "right": 1263.5, + "top": 767.4000244140625, + "width": 200, + "x": 1063.5, + "y": 767.4000244140625 + }, + "post_job_actions": { + "HideDatasetActionoutput1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1acf88921176", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"type_conditional\": {\"type_options\": \"points\", \"__current_case__\": 0, \"points\": {\"pointoptions\": \"default\", \"__current_case__\": 0}}, \"factor\": {\"factoring\": \"Single\", \"__current_case__\": 1, \"factorcol\": \"5\", \"colors\": \"Set2\", \"colororder\": \"1\"}, \"axis_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"axis_text_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"plot_title_customization\": {\"axis_customization\": \"default\", \"__current_case__\": 0}, \"gridlinecust\": \"default\", \"transform\": \"none\", \"scaling\": {\"plot_scaling\": \"Automatic\", \"__current_case__\": 0}, \"theme\": \"bw\", \"legend\": \"yes\"}, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"out\": {\"unit_output_dim\": \"in\", \"width_output_dim\": \"7.0\", \"height_output_dim\": \"7.0\", \"dpi_output_dim\": \"300.0\", \"additional_output_format\": \"pdf\"}, \"title\": \"Petal length as a function of petal width\", \"xlab\": \"Petal length\", \"xplot\": \"3\", \"ylab\": \"Petal width\", \"yplot\": \"4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.5+galaxy0", + "type": "tool", + "uuid": "8e7b3f8d-2b8b-46cb-93d4-0d74bf54441e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "cc4e1426-f444-4fcd-960c-a868d98147ac" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "errors": null, + "id": 9, + "input_connections": { + "infile": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 281.00000762939453, + "height": 113.5999984741211, + "left": 1283.5, + "right": 1483.5, + "top": 167.40000915527344, + "width": 200, + "x": 1283.5, + "y": 167.40000915527344 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "3e2d84e9-2fff-4321-9db6-41af99367162", + "workflow_outputs": [ + { + "label": "unique_output", + "output_name": "outfile", + "uuid": "8a2b5e30-d42a-4019-9674-4b4af00c820a" + } + ] + } + ], + "parent_id": "introduction/galaxy-intro-101-everyone", + "path": "topics/introduction/tutorials/galaxy-intro-101-everyone/workflows/main_workflow.ga", + "tags": [ + "introduction" + ], + "test_results": null, + "tests": true, + "title": "GTN Training: Galaxy 101 For Everyone", + "topic_id": "introduction", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/introduction-galaxy-intro-101-everyone/versions/main-workflow", + "tutorial_id": "galaxy-intro-101-everyone", + "url": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-101-everyone/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/introduction/tutorials/galaxy-intro-101-everyone/workflows/main_workflow.html", + "version": 8, + "wfid": "introduction-galaxy-intro-101-everyone", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Grouping1", + "Remove beginning1", + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/3.3.5+galaxy0" + ], + "workflowhub_id": "1085" + } + ], + "zenodo_link": "https://zenodo.org/record/1319069/" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/vsi_qc/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/introduction/tutorials/vsi_qc", + "draft": true, + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Validation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "HyPhy HIV NGS Tools", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "introduction/vsi_qc", + "inexact_supported_servers": [ + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": 7091, + "mermaid": false + }, + "key_points": [ + "Galaxy is an excellent tool for quickly QCing your data" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Learn about QCing Illumina and Element data", + "Learn about fastp", + "Learn about multiqc" + ], + "pageviews": 151, + "priority": 10, + "pub_date": "2024-03-26", + "questions": [ + "How do I know my sequencing data is good?" + ], + "short_id": "T00436", + "short_tools": [ + "fastp", + "multiqc" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "core", + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "HyPhy HIV NGS Tools", + "url": "https://galaxy.hyphy.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "30M", + "title": "Very Short Introductions: QC", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1" + ], + "topic_name": "introduction", + "topic_name_human": "Introduction to Galaxy Analyses", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "vsi_qc", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/introduction/tutorials/vsi_qc/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/vsi_qc/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/introduction/tutorials/vsi_qc/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 254, + "visitors": 106, + "zenodo_link": "https://zenodo.org/records/10870107" + }, + { + "abbreviations": { + "AIRSS": "Ab Initio Random Structure Search", + "DFT": "Density Functional Theory", + "UEP": "Unperturbed Electrostatic Potential" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "pm_muairss_read", + "owner": "muon-spectroscopy-computational-project", + "revisions": "40071ff77285", + "tool_panel_section_label": "Muon Spectroscopy", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pm_uep_opt", + "owner": "muon-spectroscopy-computational-project", + "revisions": "eea73e1f65cb", + "tool_panel_section_label": "Muon Spectroscopy", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: pm_muairss_read\n owner: muon-spectroscopy-computational-project\n revisions: 40071ff77285\n tool_panel_section_label: Muon Spectroscopy\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pm_uep_opt\n owner: muon-spectroscopy-computational-project\n revisions: eea73e1f65cb\n tool_panel_section_label: Muon Spectroscopy\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/tutorial.json", + "contributions": { + "authorship": [ + "leandro-liborio", + "elichad", + "patrick-austin" + ], + "editing": [ + "leandro-liborio" + ], + "funding": [ + "eurosciencegateway" + ] + }, + "contributors": [ + { + "email": "leandro.liborio@stfc.ac.uk", + "id": "leandro-liborio", + "joined": "2022-11", + "name": "Leandro Liborio", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/leandro-liborio/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/leandro-liborio.json" + }, + { + "email": "eli.chadwick@manchester.ac.uk", + "id": "elichad", + "joined": "2022-11", + "name": "Eli Chadwick", + "orcid": "0000-0002-0035-6475", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elichad/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/elichad.json" + }, + { + "email": "patrick.austin@stfc.ac.uk", + "id": "patrick-austin", + "joined": "2022-11", + "name": "Patrick Austin", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/patrick-austin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/patrick-austin.json" + }, + { + "email": "leandro.liborio@stfc.ac.uk", + "id": "leandro-liborio", + "joined": "2022-11", + "name": "Leandro Liborio", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/leandro-liborio/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/leandro-liborio.json" + }, + { + "avatar": "/training-material/assets/images/eurosciencegateway.png", + "funder": true, + "funding_id": "101057388", + "funding_statement": "EuroScienceGateway was funded by the European Union programme Horizon Europe (HORIZON-INFRA-2021-EOSC-01-04) under grant agreement number 101057388 and by UK Research and Innovation (UKRI) under the UK government\u2019s Horizon Europe funding guarantee grant number 10038963.", + "funding_system": "cordis", + "github": false, + "id": "eurosciencegateway", + "joined": "2023-10", + "members": [ + "abretaud", + "anuprulez", + "bgruening", + "erxleben", + "pauldg", + "rlibouba" + ], + "name": "EuroScienceGateway", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eurosciencegateway/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eurosciencegateway.json" + } + ], + "dir": "topics/materials-science/tutorials/muon-stopping-sites-muairss-uep", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "materials-science/muon-stopping-sites-muairss-uep", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy supports multiple PyMuonSuite tools which can be used together to find muon stopping sites", + "The workflow for finding the stopping site involves three stages - structure generation, structure optimisation, and structure clustering", + "Within the UEP, the optimisation stage is based on analytically calculating the electrostatic forces applied to the muon, which can be performed via Galaxy.", + "The approach requires a CASTEP DFT calculation to be completed as a starting point" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand why finding stopping sites is useful", + "Use pymuon-suite in Galaxy to find stopping sites", + "Understand the limitations of these tools and techniques" + ], + "pageviews": 166, + "priority": 2, + "pub_date": "2024-01-22", + "questions": [ + "What are stopping sites and why is finding them important?", + "What computational techniques can be used to find stopping sites?", + "How can Galaxy help me with my analysis?" + ], + "recordings": [ + { + "captioners": [ + "leandro-liborio" + ], + "date": "2024-01-26", + "length": "22M", + "speakers": [ + "leandro-liborio" + ], + "youtube_id": "rFPtDmq7uO8" + } + ], + "short_id": "T00402", + "short_tools": [ + "pm_muairss_read", + "pm_uep_opt" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "muon-spectroscopy", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Finding the muon stopping site with pymuon-suite in Galaxy", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/muon-spectroscopy-computational-project/pm_muairss_read/pm_muairss_read/0.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/muon-spectroscopy-computational-project/pm_uep_opt/pm_uep_opt/0.3.0+galaxy1" + ], + "topic_name": "materials-science", + "topic_name_human": "Materials Science", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "muon-stopping-sites-muairss-uep", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 139, + "visitors": 112, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "name": "Muon Spectroscopy Computational Project", + "url": "https://muon-spectroscopy-computational-project.github.io/" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCopper-out.cell\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCopper.den_fmt\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCopper.castep\"]\n 3[label=\"PyMuonSuite AIRSS UEP Optimise\"]\n 2 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n kf3be7cd2397449f2aa0e96c79b4ab34c[color=lightseagreen,label=\"Output\\nAll muons in host material\"]\n 3 -> kf3be7cd2397449f2aa0e96c79b4ab34c\n 4[label=\"PyMuonSuite AIRSS Cluster\"]\n 3 -> 4 [label=\"uep_results\"]\n}", + "history": [ + { + "hash": "cd4b1f827bc53928da8d0afb85d1c83590fc2638", + "message": "Changes for linting and remove MuSpinSim content #1", + "num": 3, + "short_hash": "cd4b1f827", + "unix": "1702051023" + }, + { + "hash": "5b3763af3729dbb2092e0757bd3aea5714960f71", + "message": "Updated tutorial for finding the muon stopping site with Galaxy", + "num": 2, + "short_hash": "5b3763af3", + "unix": "1701764649" + }, + { + "hash": "593f4002b4d9ecce6f6a8a91d700dea075c3662f", + "message": "Address various review comments", + "num": 1, + "short_hash": "593f4002b", + "unix": "1673882604" + } + ], + "inputs": [ + { + "annotation": "CASTEP structural file for the relaxed host material", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "CASTEP structural file for the relaxed host material", + "name": "Copper-out.cell" + } + ], + "label": "Copper-out.cell", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.0965249510338584, + "top": 0.08734987455441257 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0a1cc8d8-c2d9-48f6-9a92-9d96778249dc", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "CASTEP charge density file", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "CASTEP charge density file", + "name": "Copper.den_fmt" + } + ], + "label": "Copper.den_fmt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.0965249510338584, + "top": 86.09728918976163 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "73e18b25-ebb9-4835-933c-1b8c1feb74cb", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "main CASTEP output file ", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "main CASTEP output file ", + "name": "Copper.castep" + } + ], + "label": "Copper.castep", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 173.59228833890583 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2ac4de9c-0f0a-4bdb-971a-cd471c08111e", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nCopper-out.cell\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCopper.den_fmt\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nCopper.castep\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"PyMuonSuite AIRSS UEP Optimise\"];\n 2 -->|output| 3;\n 1 -->|output| 3;\n 0 -->|output| 3;\n f3be7cd2-3974-49f2-aa0e-96c79b4ab34c[\"Output\\nAll muons in host material\"];\n 3 --> f3be7cd2-3974-49f2-aa0e-96c79b4ab34c;\n style f3be7cd2-3974-49f2-aa0e-96c79b4ab34c stroke:#2c3143,stroke-width:4px;\n 4[\"PyMuonSuite AIRSS Cluster\"];\n 3 -->|uep_results| 4;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Finding the Muon Stopping Site: pymuon-suite in Galaxy", + "outputs": [ + { + "annotation": "Galaxy tool used to: load the CASTEP files; complete the Generation parameters to set up the creation of randomly populated muonated structures; and complete the Optimisation parameters to set up the relaxation the electrostatic forces of the muon in each of the randomly populated muonated structures.", + "content_id": "toolshed.g2.bx.psu.edu/repos/muon-spectroscopy-computational-project/pm_uep_opt/pm_uep_opt/0.3.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "castep_log": { + "id": 2, + "output_name": "output" + }, + "charge_density": { + "id": 1, + "output_name": "output" + }, + "structure": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "PyMuonSuite AIRSS UEP Optimise", + "name": "PyMuonSuite AIRSS UEP Optimise", + "outputs": [ + { + "name": "uep_results", + "type": "zip" + }, + { + "name": "allpos_file", + "type": "_sniff_" + } + ], + "position": { + "left": 345.2278179241512, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/muon-spectroscopy-computational-project/pm_uep_opt/pm_uep_opt/0.3.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "eea73e1f65cb", + "name": "pm_uep_opt", + "owner": "muon-spectroscopy-computational-project", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"castep_log\": {\"__class__\": \"ConnectedValue\"}, \"charge_density\": {\"__class__\": \"ConnectedValue\"}, \"chromInfo\": \"/srv/galaxy/var/tool_data/shared/ucsc/chrom/?.len\", \"generation_params\": {\"poisson_r\": \"0.6\", \"vdw_scale\": \"0.5\", \"random_seed\": null, \"allpos_ext\": \"cif\"}, \"optimisation_params\": {\"geom_steps\": \"30\", \"geom_force_tol\": \"0.05\", \"uep_gw_factor\": \"5.0\"}, \"structure\": {\"__class__\": \"ConnectedValue\"}, \"testing\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.0+galaxy1", + "type": "tool", + "uuid": "22131f07-c4c4-4ec0-9a45-5c8c8069600c", + "when": null, + "workflow_outputs": [ + { + "label": "All muons in host material", + "output_name": "allpos_file", + "uuid": "f3be7cd2-3974-49f2-aa0e-96c79b4ab34c" + } + ] + } + ], + "parent_id": "materials-science/muon-stopping-sites-muairss-uep", + "path": "topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/workflows/muairss-uep.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Finding the Muon Stopping Site: pymuon-suite in Galaxy", + "topic_id": "materials-science", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/materials-science-muon-stopping-sites-muairss-uep/versions/muairss-uep", + "tutorial_id": "muon-stopping-sites-muairss-uep", + "url": "https://training.galaxyproject.org/training-material/topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/workflows/muairss-uep.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/materials-science/tutorials/muon-stopping-sites-muairss-uep/workflows/muairss-uep.html", + "version": 1, + "wfid": "materials-science-muon-stopping-sites-muairss-uep", + "wfname": "muairss-uep", + "workflow": "muairss-uep.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/muon-spectroscopy-computational-project/pm_muairss_read/pm_muairss_read/0.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/muon-spectroscopy-computational-project/pm_uep_opt/pm_uep_opt/0.3.0+galaxy1" + ], + "workflowhub_id": "1109" + } + ], + "zenodo_link": "https://zenodo.org/records/10219558" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "join_files_on_column_fuzzy", + "owner": "bgruening", + "revisions": "22ec3c1a20cd", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_classification", + "owner": "galaxyp", + "revisions": "b574b84afc4d", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_combine", + "owner": "galaxyp", + "revisions": "48c07268f341", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_mz_images", + "owner": "galaxyp", + "revisions": "25b83cbd596a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_preprocessing", + "owner": "galaxyp", + "revisions": "ed9ed1e6cca2", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_quality_report", + "owner": "galaxyp", + "revisions": "3b7a35d50ebf", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_segmentations", + "owner": "galaxyp", + "revisions": "82f6c2f4332d", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maldi_quant_peak_detection", + "owner": "galaxyp", + "revisions": "e9300ef37403", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maldi_quant_preprocessing", + "owner": "galaxyp", + "revisions": "71411ac28268", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: join_files_on_column_fuzzy\n owner: bgruening\n revisions: 22ec3c1a20cd\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_classification\n owner: galaxyp\n revisions: b574b84afc4d\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_combine\n owner: galaxyp\n revisions: 48c07268f341\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_mz_images\n owner: galaxyp\n revisions: 25b83cbd596a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_preprocessing\n owner: galaxyp\n revisions: ed9ed1e6cca2\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_quality_report\n owner: galaxyp\n revisions: 3b7a35d50ebf\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_segmentations\n owner: galaxyp\n revisions: 82f6c2f4332d\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maldi_quant_peak_detection\n owner: galaxyp\n revisions: e9300ef37403\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maldi_quant_preprocessing\n owner: galaxyp\n revisions: 71411ac28268\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/msi-finding-nglycans/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + } + ], + "dir": "topics/metabolomics/tutorials/msi-finding-nglycans", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "metabolomics/msi-finding-nglycans", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Several files can be combined and the spectra used to obtain the annotation of their original file.", + "Preprocessing reduces the file size and can improve further analysis steps.", + "Unsupervised and supervised statistical analysis can reveal analytes with different abundances.", + "The spatial distribution of N-glycans in a tissue section can be measured by MALDI imaging.", + "Additional LC-MS/MS experiments enable the identification of N-glycans measured by MSI.", + "Some N-glycans are located to specific kidney compartments." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Combining MSI datasets while using the information about each subfile in further steps.", + "Preprocessing raw MSI data.", + "Performing supervised and unsupervised statistical analysis." + ], + "pageviews": 2426, + "pub_date": "2019-04-13", + "questions": [ + "Can N-linked glycans from FFPE tissues be detected by MALDI imaging?", + "Can potential N-linked glycans be identified by an additional LC-MS/MS experiment?", + "Do specific kidney compartments have different N-linked glycan compositions?" + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "mass-spectrometry-imaging-loading-exploring-data" + ], + "type": "internal" + } + ], + "short_id": "T00199", + "short_tools": [ + "Grep1", + "cardinal_combine", + "cardinal_mz_images", + "cardinal_preprocessing", + "join_files_on_column_fuzzy", + "cardinal_quality_report", + "cardinal_segmentations", + "cardinal_classification", + "Filter1", + "maldi_quant_peak_detection", + "maldi_quant_preprocessing", + "Summary_Statistics1" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Mass spectrometry imaging: Finding differential analytes", + "tools": [ + "Filter1", + "Grep1", + "Summary_Statistics1", + "toolshed.g2.bx.psu.edu/repos/bgruening/join_files_on_column_fuzzy/join_files_on_column_fuzzy/1.0.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_classification/cardinal_classification/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_combine/cardinal_combine/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/1.12.1.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_preprocessing/cardinal_preprocessing/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_segmentations/cardinal_segmentations/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maldi_quant_peak_detection/maldi_quant_peak_detection/1.18.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maldi_quant_preprocessing/maldi_quant_preprocessing/1.18.0.3" + ], + "topic_name": "metabolomics", + "topic_name_human": "Metabolomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "msi-finding-nglycans", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/metabolomics/tutorials/msi-finding-nglycans/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/msi-finding-nglycans/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/msi-finding-nglycans/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 112, + "visitors": 1648, + "workflows": [ + { + "creators": [], + "description": "Mass spectrometry imaging: Finding differential analytes", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntreated\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncontrol\"]\n 10[label=\"MSI classification\"]\n 9 -> 10 [label=\"outfile_imzml\"]\n 4 -> 10 [label=\"pixel_annotations\"]\n 11[label=\"MSI segmentation\"]\n 9 -> 11 [label=\"outfile_imzml\"]\n 12[label=\"Filter\"]\n 10 -> 12 [label=\"mzfeatures\"]\n 13[label=\"Join two files\"]\n 12 -> 13 [label=\"out_file1\"]\n 2 -> 13 [label=\"output\"]\n 14[label=\"Summary Statistics\"]\n 13 -> 14 [label=\"merged_file\"]\n 15[label=\"MSI mz images\"]\n 13 -> 15 [label=\"merged_file\"]\n 3 -> 15 [label=\"output\"]\n 16[label=\"Select\"]\n 13 -> 16 [label=\"merged_file\"]\n 17[label=\"MSI mz images\"]\n 16 -> 17 [label=\"out_file1\"]\n 3 -> 17 [label=\"output\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGlycan_IDs\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nall_files\"]\n 4[label=\"MSI combine\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"MSI preprocessing\"]\n 4 -> 5 [label=\"outfile_imzml\"]\n 6[label=\"MSI Qualitycontrol\"]\n 4 -> 6 [label=\"outfile_imzml\"]\n 4 -> 6 [label=\"pixel_annotations\"]\n 7[label=\"MALDIquant preprocessing\"]\n 5 -> 7 [label=\"outfile_imzml\"]\n 8[label=\"MALDIquant peak detection\"]\n 7 -> 8 [label=\"outfile_imzml\"]\n 4 -> 8 [label=\"pixel_annotations\"]\n 9[label=\"MSI preprocessing\"]\n 5 -> 9 [label=\"outfile_imzml\"]\n 8 -> 9 [label=\"intensity_matrix\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "6b3331c232d6cad52bbb091eb603f290ffbc6b99", + "message": "Adding MSI N-glycan training and small updates for the other MSI trainings (#1333)", + "num": 1, + "short_hash": "6b3331c23", + "unix": "1555170721" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "treated", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 445.683349609375, + "top": 324.8666687011719 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "337046f2-275b-4fc6-a661-16de8e6be533", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "924c77fb-2ed6-4cb2-81bc-dea777294df0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "control", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 442.95001220703125, + "top": 407.2833251953125 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "e5ee3457-2418-42ca-855e-b033b15d1eec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "78357d0f-3571-45a2-9c8c-a06ca31a1c9f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Glycan_IDs" + } + ], + "label": "Glycan_IDs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 449.91668701171875, + "top": 1052.3666687011719 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Glycan_IDs\"}", + "tool_version": null, + "type": "data_input", + "uuid": "78e307cf-92b5-4d1b-89d7-0ebeb7c845b7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a028d3d6-38e3-43f7-a023-321178108dc7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "all_files", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 447, + "top": 1146.7167053222656 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "1f30f371-a9c5-4638-a9bd-a69d7a7ee1ec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "07af2e13-4f7d-4454-8644-4d8cda30eb70" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ntreated\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ncontrol\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"MSI classification\"];\n 9 -->|outfile_imzml| 10;\n 4 -->|pixel_annotations| 10;\n 11[\"MSI segmentation\"];\n 9 -->|outfile_imzml| 11;\n 12[\"Filter\"];\n 10 -->|mzfeatures| 12;\n 13[\"Join two files\"];\n 12 -->|out_file1| 13;\n 2 -->|output| 13;\n 14[\"Summary Statistics\"];\n 13 -->|merged_file| 14;\n 15[\"MSI mz images\"];\n 13 -->|merged_file| 15;\n 3 -->|output| 15;\n 16[\"Select\"];\n 13 -->|merged_file| 16;\n 17[\"MSI mz images\"];\n 16 -->|out_file1| 17;\n 3 -->|output| 17;\n 2[\"\u2139\ufe0f Input Dataset\\nGlycan_IDs\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nall_files\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"MSI combine\"];\n 1 -->|output| 4;\n 0 -->|output| 4;\n 5[\"MSI preprocessing\"];\n 4 -->|outfile_imzml| 5;\n 6[\"MSI Qualitycontrol\"];\n 4 -->|outfile_imzml| 6;\n 4 -->|pixel_annotations| 6;\n 7[\"MALDIquant preprocessing\"];\n 5 -->|outfile_imzml| 7;\n 8[\"MALDIquant peak detection\"];\n 7 -->|outfile_imzml| 8;\n 4 -->|pixel_annotations| 8;\n 9[\"MSI preprocessing\"];\n 5 -->|outfile_imzml| 9;\n 8 -->|intensity_matrix| 9;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "MSI Finding Diff Analytes", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "treated", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 445.683349609375, + "top": 324.8666687011719 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "337046f2-275b-4fc6-a661-16de8e6be533", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "924c77fb-2ed6-4cb2-81bc-dea777294df0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "control", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 442.95001220703125, + "top": 407.2833251953125 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "e5ee3457-2418-42ca-855e-b033b15d1eec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "78357d0f-3571-45a2-9c8c-a06ca31a1c9f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_classification/cardinal_classification/1.12.1.3", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 9, + "output_name": "outfile_imzml" + }, + "type_cond|annotation_file": { + "id": 4, + "output_name": "pixel_annotations" + } + }, + "inputs": [], + "label": null, + "name": "MSI classification", + "outputs": [ + { + "name": "classification_images", + "type": "pdf" + }, + { + "name": "mzfeatures", + "type": "tabular" + }, + { + "name": "pixeloutput", + "type": "tabular" + } + ], + "position": { + "left": 1704.300048828125, + "top": 659.8166809082031 + }, + "post_job_actions": { + "HideDatasetActionpixeloutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "pixeloutput" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_classification/cardinal_classification/1.12.1.3", + "tool_shed_repository": { + "changeset_revision": "47fc5b518ffc", + "name": "cardinal_classification", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"output_rdata\": \"\\\"false\\\"\", \"__page__\": null, \"type_cond\": \"{\\\"__current_case__\\\": 0, \\\"annotation_file\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"column_fold\\\": null, \\\"column_response\\\": \\\"3\\\", \\\"column_x\\\": \\\"1\\\", \\\"column_y\\\": \\\"2\\\", \\\"method_cond\\\": {\\\"__current_case__\\\": 2, \\\"class_method\\\": \\\"spatialShrunkenCentroids\\\", \\\"ssc_analysis_cond\\\": {\\\"__current_case__\\\": 1, \\\"ssc_method\\\": \\\"ssc_analysis\\\"}, \\\"ssc_kernel_method\\\": \\\"adaptive\\\", \\\"ssc_r\\\": \\\"2\\\", \\\"ssc_s\\\": \\\"0\\\"}, \\\"tabular_header\\\": \\\"true\\\", \\\"type_method\\\": \\\"training\\\"}\", \"__rerun_remap_job_id__\": null, \"centroids\": \"\\\"true\\\"\", \"processed_cond\": \"{\\\"__current_case__\\\": 0, \\\"processed_file\\\": \\\"no_processed\\\"}\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": null, + "type": "tool", + "uuid": "95932b54-da4a-4625-b22e-0e0ff9bdd5bc", + "workflow_outputs": [ + { + "label": null, + "output_name": "mzfeatures", + "uuid": "59b45729-bf4b-44ab-8544-c8c1cb4cbcdf" + }, + { + "label": null, + "output_name": "classification_images", + "uuid": "4576bca8-6d7b-4a63-a368-da7ac4982a48" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_segmentations/cardinal_segmentations/1.12.1.3", + "errors": null, + "id": 11, + "input_connections": { + "infile": { + "id": 9, + "output_name": "outfile_imzml" + } + }, + "inputs": [], + "label": null, + "name": "MSI segmentation", + "outputs": [ + { + "name": "segmentationimages", + "type": "pdf" + }, + { + "name": "mzfeatures", + "type": "tabular" + }, + { + "name": "pixeloutput", + "type": "tabular" + } + ], + "position": { + "left": 1991.316650390625, + "top": 255.76666259765625 + }, + "post_job_actions": { + "HideDatasetActionmzfeatures": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "mzfeatures" + }, + "HideDatasetActionpixeloutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "pixeloutput" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_segmentations/cardinal_segmentations/1.12.1.3", + "tool_shed_repository": { + "changeset_revision": "9f7d1ec01767", + "name": "cardinal_segmentations", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"output_rdata\": \"\\\"false\\\"\", \"setseed\": \"\\\"1\\\"\", \"__page__\": null, \"image_type\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null, \"svg_pixelimage\": \"\\\"false\\\"\", \"centroids\": \"\\\"true\\\"\", \"colours\": \"[{\\\"__index__\\\": 0, \\\"feature_color\\\": \\\"#4f81bd\\\"}, {\\\"__index__\\\": 1, \\\"feature_color\\\": \\\"#f79646\\\"}, {\\\"__index__\\\": 2, \\\"feature_color\\\": \\\"#92d050\\\"}, {\\\"__index__\\\": 3, \\\"feature_color\\\": \\\"#c00000\\\"}]\", \"processed_cond\": \"{\\\"__current_case__\\\": 0, \\\"processed_file\\\": \\\"no_processed\\\"}\", \"segm_cond\": \"{\\\"__current_case__\\\": 0, \\\"pca_method\\\": \\\"irlba\\\", \\\"pca_ncomp\\\": \\\"2\\\", \\\"pca_scale\\\": \\\"false\\\", \\\"segmentationtool\\\": \\\"pca\\\"}\", \"infile\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": null, + "type": "tool", + "uuid": "68ad8111-fad2-4642-889b-ab9c3a59f427", + "workflow_outputs": [ + { + "label": null, + "output_name": "segmentationimages", + "uuid": "dcc9a3e6-e63d-450b-bea1-636e9ddc091d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/join_files_on_column_fuzzy/join_files_on_column_fuzzy/1.0.1", + "errors": null, + "id": 13, + "input_connections": { + "f1": { + "id": 12, + "output_name": "out_file1" + }, + "f2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Join two files", + "outputs": [ + { + "name": "merged_file", + "type": "tabular" + } + ], + "position": { + "left": 1086.88330078125, + "top": 952.0666809082031 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/join_files_on_column_fuzzy/join_files_on_column_fuzzy/1.0.1", + "tool_shed_repository": { + "changeset_revision": "22ec3c1a20cd", + "name": "join_files_on_column_fuzzy", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"distance\": \"\\\"300.0\\\"\", \"f2\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"__page__\": null, \"f1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"merge_mode_select\": \"\\\"closest\\\"\", \"add_distance\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null, \"header\": \"\\\"true\\\"\", \"units\": \"\\\"ppm\\\"\", \"c2\": \"\\\"1\\\"\", \"c1\": \"\\\"1\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\"}", + "tool_version": null, + "type": "tool", + "uuid": "5b9259e3-b894-4889-8ace-b6fe932770aa", + "workflow_outputs": [ + { + "label": null, + "output_name": "merged_file", + "uuid": "3fd228c9-f759-4668-a883-e9f5fa11b7c0" + } + ] + }, + { + "annotation": "", + "content_id": "Summary_Statistics1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 13, + "output_name": "merged_file" + } + }, + "inputs": [], + "label": null, + "name": "Summary Statistics", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1328.0999755859375, + "top": 927.6166687011719 + }, + "post_job_actions": {}, + "tool_id": "Summary_Statistics1", + "tool_state": "{\"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"__rerun_remap_job_id__\": null, \"cond\": \"\\\"c12\\\"\", \"__page__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "510cfc59-bf52-4f8a-920f-d5437da29f78", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "c76d062a-6f36-4e88-a02a-8951f7b4c17e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/1.12.1.2", + "errors": null, + "id": 15, + "input_connections": { + "calibrant_file": { + "id": 13, + "output_name": "merged_file" + }, + "infile": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MSI mz images", + "outputs": [ + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "left": 1334.066650390625, + "top": 1030.4666442871094 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/1.12.1.2", + "tool_shed_repository": { + "changeset_revision": "56b3b7d5f2b5", + "name": "cardinal_mz_images", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"calibrant_header\": \"\\\"true\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"image_contrast\": \"\\\"suppression\\\"\", \"image_smoothing\": \"\\\"none\\\"\", \"image_type\": \"\\\"true\\\"\", \"name_column\": \"\\\"11\\\"\", \"__rerun_remap_job_id__\": null, \"svg_pixelimage\": \"\\\"false\\\"\", \"calibrant_file\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"centroids\": \"\\\"false\\\"\", \"filename\": \"\\\"\\\"\", \"colorkey\": \"\\\"true\\\"\", \"processed_cond\": \"{\\\"__current_case__\\\": 0, \\\"processed_file\\\": \\\"no_processed\\\"}\", \"strip\": \"\\\"true\\\"\", \"__page__\": null, \"overlay_cond\": \"{\\\"__current_case__\\\": 0, \\\"overlay_selection\\\": \\\"no_overlay\\\"}\", \"plusminus_dalton\": \"\\\"0.25\\\"\", \"mz_column\": \"\\\"1\\\"\"}", + "tool_version": null, + "type": "tool", + "uuid": "d2ef59b6-ad5f-46ed-9342-2f49a2f98920", + "workflow_outputs": [ + { + "label": null, + "output_name": "svg_output", + "uuid": "a3d13a98-d1d8-452d-9427-82745744f53a" + }, + { + "label": null, + "output_name": "plots", + "uuid": "61a511da-3c35-45e2-a23e-d34ce4626297" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 13, + "output_name": "merged_file" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1258.36669921875, + "top": 1172.8166809082031 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__page__\": null, \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"invert\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null, \"pattern\": \"\\\"(1663\\\\\\\\.)|(1905\\\\\\\\.)|(2304\\\\\\\\.)\\\"\"}", + "tool_version": null, + "type": "tool", + "uuid": "28905577-0117-4139-9071-350eacf4ccfa", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "783b4618-d785-43a8-a190-de80a699272f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/1.12.1.2", + "errors": null, + "id": 17, + "input_connections": { + "calibrant_file": { + "id": 16, + "output_name": "out_file1" + }, + "infile": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MSI mz images", + "outputs": [ + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "left": 1462.9666748046875, + "top": 1160.4166564941406 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/1.12.1.2", + "tool_shed_repository": { + "changeset_revision": "56b3b7d5f2b5", + "name": "cardinal_mz_images", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"calibrant_header\": \"\\\"false\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"image_contrast\": \"\\\"suppression\\\"\", \"image_smoothing\": \"\\\"none\\\"\", \"image_type\": \"\\\"true\\\"\", \"name_column\": \"\\\"11\\\"\", \"__rerun_remap_job_id__\": null, \"svg_pixelimage\": \"\\\"false\\\"\", \"calibrant_file\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"centroids\": \"\\\"false\\\"\", \"filename\": \"\\\"\\\"\", \"colorkey\": \"\\\"true\\\"\", \"processed_cond\": \"{\\\"__current_case__\\\": 0, \\\"processed_file\\\": \\\"no_processed\\\"}\", \"strip\": \"\\\"true\\\"\", \"__page__\": null, \"overlay_cond\": \"{\\\"__current_case__\\\": 1, \\\"colours\\\": [{\\\"__index__\\\": 0, \\\"feature_color\\\": \\\"#1f497d\\\"}, {\\\"__index__\\\": 1, \\\"feature_color\\\": \\\"#00b050\\\"}, {\\\"__index__\\\": 2, \\\"feature_color\\\": \\\"#ff0000\\\"}], \\\"overlay_selection\\\": \\\"yes_overlay\\\"}\", \"plusminus_dalton\": \"\\\"0.25\\\"\", \"mz_column\": \"\\\"1\\\"\"}", + "tool_version": null, + "type": "tool", + "uuid": "16498e12-6e7a-415c-9b34-9f4b1c64131d", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "bf27c260-9168-498e-ab18-9324b74fedad" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Glycan_IDs" + } + ], + "label": "Glycan_IDs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 449.91668701171875, + "top": 1052.3666687011719 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Glycan_IDs\"}", + "tool_version": null, + "type": "data_input", + "uuid": "78e307cf-92b5-4d1b-89d7-0ebeb7c845b7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a028d3d6-38e3-43f7-a023-321178108dc7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "all_files", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 447, + "top": 1146.7167053222656 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "1f30f371-a9c5-4638-a9bd-a69d7a7ee1ec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "07af2e13-4f7d-4454-8644-4d8cda30eb70" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_combine/cardinal_combine/1.12.1.3", + "errors": null, + "id": 4, + "input_connections": { + "infiles": [ + { + "id": 1, + "output_name": "output" + }, + { + "id": 0, + "output_name": "output" + } + ] + }, + "inputs": [], + "label": null, + "name": "MSI combine", + "outputs": [ + { + "name": "outfile_imzml", + "type": "imzml" + }, + { + "name": "QC_overview", + "type": "pdf" + }, + { + "name": "pixel_annotations", + "type": "tabular" + } + ], + "position": { + "left": 637.4666748046875, + "top": 337.5500030517578 + }, + "post_job_actions": { + "HideDatasetActionQC_overview": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "QC_overview" + }, + "HideDatasetActionpixel_annotations": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "pixel_annotations" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_combine/cardinal_combine/1.12.1.3", + "tool_shed_repository": { + "changeset_revision": "48c07268f341", + "name": "cardinal_combine", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"infiles\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"annotation_cond\": \"{\\\"__current_case__\\\": 0, \\\"annotation_tabular\\\": \\\"no_annotation\\\"}\", \"__rerun_remap_job_id__\": null, \"combine_conditional\": \"{\\\"__current_case__\\\": 0, \\\"combine_method\\\": \\\"automatic_combine\\\"}\", \"centroids\": \"\\\"false\\\"\", \"processed_cond\": \"{\\\"__current_case__\\\": 0, \\\"processed_file\\\": \\\"no_processed\\\"}\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"imzml_output\": \"\\\"imzml_format\\\"\"}", + "tool_version": null, + "type": "tool", + "uuid": "57b0fcdb-c511-43bf-b8af-7aafdaff0d6d", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_imzml", + "uuid": "cdc8f02b-39b1-465b-b725-b0c2b69a5b74" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_preprocessing/cardinal_preprocessing/1.12.1.3", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 4, + "output_name": "outfile_imzml" + } + }, + "inputs": [], + "label": null, + "name": "MSI preprocessing", + "outputs": [ + { + "name": "outfile_imzml", + "type": "imzml" + }, + { + "name": "QC_overview", + "type": "pdf" + } + ], + "position": { + "left": 886.0499877929688, + "top": 199.98333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_preprocessing/cardinal_preprocessing/1.12.1.3", + "tool_shed_repository": { + "changeset_revision": "141a9288be9c", + "name": "cardinal_preprocessing", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"methods\": \"[{\\\"__index__\\\": 0, \\\"methods_conditional\\\": {\\\"__current_case__\\\": 0, \\\"preprocessing_method\\\": \\\"Normalization\\\"}}, {\\\"__index__\\\": 1, \\\"methods_conditional\\\": {\\\"__current_case__\\\": 2, \\\"methods_for_smoothing\\\": {\\\"__current_case__\\\": 0, \\\"sd_gaussian\\\": \\\"1.0\\\", \\\"smoothing_method\\\": \\\"gaussian\\\"}, \\\"preprocessing_method\\\": \\\"Smoothing\\\", \\\"window_smoothing\\\": \\\"4.0\\\"}}, {\\\"__index__\\\": 2, \\\"methods_conditional\\\": {\\\"__current_case__\\\": 1, \\\"blocks_baseline\\\": \\\"500\\\", \\\"preprocessing_method\\\": \\\"Baseline_reduction\\\", \\\"spar_baseline\\\": \\\"1.0\\\"}}]\", \"__rerun_remap_job_id__\": null, \"centroids\": \"\\\"false\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"processed_cond\": \"{\\\"__current_case__\\\": 0, \\\"processed_file\\\": \\\"no_processed\\\"}\", \"imzml_output\": \"\\\"imzml_format\\\"\"}", + "tool_version": null, + "type": "tool", + "uuid": "93149694-469a-4a76-8690-ddf691665e55", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_rdata", + "uuid": "613b051e-88d7-46b0-9532-a118b3adb4aa" + }, + { + "label": null, + "output_name": "outfile_imzml", + "uuid": "8718b21e-a330-4a57-9548-e9257819bb45" + }, + { + "label": null, + "output_name": "QC_overview", + "uuid": "3c709575-ac09-47d3-a750-2b3082805e72" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/1.12.1.3", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 4, + "output_name": "outfile_imzml" + }, + "tabular_annotation|annotation_file": { + "id": 4, + "output_name": "pixel_annotations" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSI Qualitycontrol", + "name": "calibrant_file" + } + ], + "label": null, + "name": "MSI Qualitycontrol", + "outputs": [ + { + "name": "QC_report", + "type": "pdf" + } + ], + "position": { + "left": 899.6666870117188, + "top": 552.4833374023438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/1.12.1.3", + "tool_shed_repository": { + "changeset_revision": "3b7a35d50ebf", + "name": "cardinal_quality_report", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"calibrant_header\": \"\\\"false\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"calibrantratio\": \"[]\", \"__page__\": null, \"name_column\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"tabular_annotation\": \"{\\\"__current_case__\\\": 0, \\\"annotation_file\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"column_names\\\": \\\"3\\\", \\\"column_x\\\": \\\"1\\\", \\\"column_y\\\": \\\"2\\\", \\\"load_annotation\\\": \\\"yes_annotation\\\", \\\"tabular_header\\\": \\\"true\\\"}\", \"centroids\": \"\\\"false\\\"\", \"calibrant_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"processed_cond\": \"{\\\"__current_case__\\\": 0, \\\"processed_file\\\": \\\"no_processed\\\"}\", \"do_pca\": \"\\\"true\\\"\", \"filename\": \"\\\"\\\"\", \"plusminus_ppm\": \"\\\"200.0\\\"\", \"mz_column\": \"\\\"\\\"\"}", + "tool_version": null, + "type": "tool", + "uuid": "238e69ed-38e9-451b-84c1-cdd050930672", + "workflow_outputs": [ + { + "label": null, + "output_name": "QC_report", + "uuid": "64239ff1-1dea-4482-80c7-648aa899f3ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maldi_quant_preprocessing/maldi_quant_preprocessing/1.18.0.3", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 5, + "output_name": "outfile_imzml" + } + }, + "inputs": [], + "label": null, + "name": "MALDIquant preprocessing", + "outputs": [ + { + "name": "outfile_imzml", + "type": "imzml" + }, + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "left": 1155.5999755859375, + "top": 299.2833251953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maldi_quant_preprocessing/maldi_quant_preprocessing/1.18.0.3", + "tool_shed_repository": { + "changeset_revision": "71411ac28268", + "name": "maldi_quant_preprocessing", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"methods\": \"[{\\\"__index__\\\": 0, \\\"methods_conditional\\\": {\\\"__current_case__\\\": 4, \\\"allow_nomatch\\\": \\\"true\\\", \\\"empty_nomatch\\\": \\\"true\\\", \\\"halfWindowSize\\\": \\\"4\\\", \\\"method\\\": \\\"Align\\\", \\\"peak_method\\\": \\\"MAD\\\", \\\"reference_for_alignment\\\": {\\\"__current_case__\\\": 0, \\\"align_ref\\\": \\\"no_reference\\\", \\\"min_frequency\\\": \\\"0.8\\\"}, \\\"remove_empty\\\": \\\"true\\\", \\\"snr\\\": \\\"5\\\", \\\"tolerance\\\": \\\"0.0002\\\", \\\"warping_method\\\": \\\"lowess\\\"}}]\", \"__rerun_remap_job_id__\": null, \"export_processed\": \"\\\"true\\\"\", \"restriction_conditional\": \"{\\\"__current_case__\\\": 1, \\\"restriction\\\": \\\"no_restriction\\\"}\", \"infile\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": null, + "type": "tool", + "uuid": "683d836c-d991-45e6-8c31-fc93ecda0e84", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_imzml", + "uuid": "75b9894a-95d8-4f18-b65a-f4f679b0fa57" + }, + { + "label": null, + "output_name": "plots", + "uuid": "eedcbadd-90f2-420c-bfcc-7aaaca296813" + } + ] + } + ], + "parent_id": "metabolomics/msi-finding-nglycans", + "path": "topics/metabolomics/tutorials/msi-finding-nglycans/workflows/msi-finding-diff-analytes.ga", + "tags": [ + "metabolomics" + ], + "test_results": null, + "tests": false, + "title": "MSI Finding Diff Analytes", + "topic_id": "metabolomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/metabolomics-msi-finding-nglycans/versions/msi-finding-diff-analytes", + "tutorial_id": "msi-finding-nglycans", + "url": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/msi-finding-nglycans/workflows/msi-finding-diff-analytes.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/msi-finding-nglycans/workflows/msi-finding-diff-analytes.html", + "version": 4, + "wfid": "metabolomics-msi-finding-nglycans", + "wfname": "msi-finding-diff-analytes", + "workflow": "msi-finding-diff-analytes.ga", + "workflow_tools": [ + "Filter1", + "Grep1", + "Summary_Statistics1", + "toolshed.g2.bx.psu.edu/repos/bgruening/join_files_on_column_fuzzy/join_files_on_column_fuzzy/1.0.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_classification/cardinal_classification/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_combine/cardinal_combine/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/1.12.1.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_preprocessing/cardinal_preprocessing/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_segmentations/cardinal_segmentations/1.12.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maldi_quant_peak_detection/maldi_quant_peak_detection/1.18.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maldi_quant_preprocessing/maldi_quant_preprocessing/1.18.0.3" + ], + "workflowhub_id": "1123" + } + ], + "zenodo_link": "https://zenodo.org/record/2628280" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "cardinal_data_exporter", + "owner": "galaxyp", + "revisions": "4fbffddde8cd", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_filtering", + "owner": "galaxyp", + "revisions": "b8c79e70516d", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_mz_images", + "owner": "galaxyp", + "revisions": "daf2ee9127fd", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_mz_images", + "owner": "galaxyp", + "revisions": "59e85306eae5", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_quality_report", + "owner": "galaxyp", + "revisions": "5a35e3a8d013", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_spectra_plots", + "owner": "galaxyp", + "revisions": "d2596e1be091", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_spectra_plots", + "owner": "galaxyp", + "revisions": "1693b2126f30", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: cardinal_data_exporter\n owner: galaxyp\n revisions: 4fbffddde8cd\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_filtering\n owner: galaxyp\n revisions: b8c79e70516d\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_mz_images\n owner: galaxyp\n revisions: daf2ee9127fd\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_mz_images\n owner: galaxyp\n revisions: 59e85306eae5\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_quality_report\n owner: galaxyp\n revisions: 5a35e3a8d013\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_spectra_plots\n owner: galaxyp\n revisions: d2596e1be091\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_spectra_plots\n owner: galaxyp\n revisions: 1693b2126f30\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/msi-analyte-distribution/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "id": "MarenStillger", + "joined": "2020-10", + "name": "Maren Stillger", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/MarenStillger/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/MarenStillger.json" + } + ], + "dir": "topics/metabolomics/tutorials/msi-analyte-distribution", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "metabolomics/msi-analyte-distribution", + "inexact_supported_servers": [ + "HyPhy HIV NGS Tools", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Average and annotated mass spectra show the relevant m/z range of the dataset and different compartment-specific peaks.", + "MSI data can be filtered for m/z ranges of interest to speed up analysis time.", + "Distribution images for many analytes can be automatically generated with the MSI m/z image tool.", + "The MSI m/z image tools allow overlaying the distribution images for several analytes." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Plot average mass spectra and overlaid mass spectra of single spectra.", + "Filter MSI data for a specific m/z range.", + "Automatic generation of many m/z images.", + "Overlay the distribution of several m/z in one image." + ], + "pageviews": 3623, + "pub_date": "2019-02-21", + "questions": [ + "What is the typical mass range of VOCs?", + "In which compartments of the chilli are the measured VOCs located?", + "In which compartment of the chilli is the capsaicin located?" + ], + "short_id": "T00198", + "short_tools": [ + "cardinal_mz_images", + "cardinal_filtering", + "cardinal_spectra_plots", + "cardinal_data_exporter", + "cardinal_quality_report", + "Filter1" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "HyPhy HIV NGS Tools", + "url": "https://galaxy.hyphy.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Mass spectrometry imaging: Examining the spatial distribution of analytes", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_data_exporter/cardinal_data_exporter/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_filtering/cardinal_filtering/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/2.6.0.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/2.6.0.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_spectra_plots/cardinal_spectra_plots/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_spectra_plots/cardinal_spectra_plots/2.6.0.3" + ], + "topic_name": "metabolomics", + "topic_name_human": "Metabolomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "msi-analyte-distribution", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/metabolomics/tutorials/msi-analyte-distribution/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/msi-analyte-distribution/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/msi-analyte-distribution/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 105, + "visitors": 2488, + "workflows": [ + { + "creators": [], + "description": "Mass spectrometry imaging: Examining the spatial distribution of analytes", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nUploaded Composite Dataset imzml\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnotation\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nm/z features\"]\n 3[label=\"MSI Qualitycontrol\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"MSI plot spectra\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"MSI filtering\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"MSI plot spectra\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"MSI data exporter\"]\n 5 -> 7 [label=\"outfile_imzml\"]\n 8[label=\"MSI mz images\"]\n 2 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"outfile_imzml\"]\n 9[label=\"Filter\"]\n 7 -> 9 [label=\"feature_output\"]\n 10[label=\"MSI mz images\"]\n 9 -> 10 [label=\"out_file1\"]\n 5 -> 10 [label=\"outfile_imzml\"]\n}", + "history": [ + { + "hash": "a46d3c7f2d648b7c17d3daaf18cc951d5da8d5f8", + "message": "small updates in figures, tutorial and workflow", + "num": 1, + "short_hash": "a46d3c7f2", + "unix": "1604172185" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Uploaded Composite Dataset (imzml)" + } + ], + "label": "Uploaded Composite Dataset (imzml)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 409.6999969482422, + "height": 82.19999694824219, + "left": 375, + "right": 575, + "top": 327.5, + "width": 200, + "x": 375, + "y": 327.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d6fee109-e1af-4064-b014-051fbcede1d0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c5922e0d-d30d-4c15-84c9-7b97bc5aa93e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Annotation" + } + ], + "label": "Annotation", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 522.3000030517578, + "height": 61.80000305175781, + "left": 377, + "right": 577, + "top": 460.5, + "width": 200, + "x": 377, + "y": 460.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d0be9936-9e28-45f6-ac65-08d037ab9dc3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d826e468-2c46-4a28-9a24-bff61b41b35b" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "m/z features" + } + ], + "label": "m/z features", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 866.3000030517578, + "height": 61.80000305175781, + "left": 385, + "right": 585, + "top": 804.5, + "width": 200, + "x": 385, + "y": 804.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "02d90f0d-2375-47a8-9a7b-5c8ee43592c3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2d72fda0-0ccd-46b5-9011-a62a9c4f5e8e" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nUploaded Composite Dataset imzml\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nAnnotation\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nm/z features\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"MSI Qualitycontrol\"];\n 0 -->|output| 3;\n 4[\"MSI plot spectra\"];\n 0 -->|output| 4;\n 5[\"MSI filtering\"];\n 0 -->|output| 5;\n 6[\"MSI plot spectra\"];\n 0 -->|output| 6;\n 1 -->|output| 6;\n 7[\"MSI data exporter\"];\n 5 -->|outfile_imzml| 7;\n 8[\"MSI mz images\"];\n 2 -->|output| 8;\n 5 -->|outfile_imzml| 8;\n 9[\"Filter\"];\n 7 -->|feature_output| 9;\n 10[\"MSI mz images\"];\n 9 -->|out_file1| 10;\n 5 -->|outfile_imzml| 10;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "MSI Workflow: spatial distribution", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Uploaded Composite Dataset (imzml)" + } + ], + "label": "Uploaded Composite Dataset (imzml)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 409.6999969482422, + "height": 82.19999694824219, + "left": 375, + "right": 575, + "top": 327.5, + "width": 200, + "x": 375, + "y": 327.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d6fee109-e1af-4064-b014-051fbcede1d0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c5922e0d-d30d-4c15-84c9-7b97bc5aa93e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Annotation" + } + ], + "label": "Annotation", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 522.3000030517578, + "height": 61.80000305175781, + "left": 377, + "right": 577, + "top": 460.5, + "width": 200, + "x": 377, + "y": 460.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d0be9936-9e28-45f6-ac65-08d037ab9dc3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d826e468-2c46-4a28-9a24-bff61b41b35b" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "m/z features" + } + ], + "label": "m/z features", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 866.3000030517578, + "height": 61.80000305175781, + "left": 385, + "right": 585, + "top": 804.5, + "width": 200, + "x": 385, + "y": 804.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "02d90f0d-2375-47a8-9a7b-5c8ee43592c3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2d72fda0-0ccd-46b5-9011-a62a9c4f5e8e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/2.6.0.1", + "errors": null, + "id": 3, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSI Qualitycontrol", + "name": "calibrant_file" + }, + { + "description": "runtime parameter for tool MSI Qualitycontrol", + "name": "infile" + } + ], + "label": null, + "name": "MSI Qualitycontrol", + "outputs": [ + { + "name": "QC_report", + "type": "pdf" + } + ], + "position": { + "bottom": 312.6999969482422, + "height": 205.1999969482422, + "left": 669, + "right": 869, + "top": 107.5, + "width": 200, + "x": 669, + "y": 107.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/2.6.0.1", + "tool_shed_repository": { + "changeset_revision": "ecaebe7c7b54", + "name": "cardinal_quality_report", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"calibrant_file\": {\"__class__\": \"RuntimeValue\"}, \"calibrant_header\": \"false\", \"calibrantratio\": [], \"centroids\": \"true\", \"do_pca\": \"true\", \"filename\": \"\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"mz_column\": \"\", \"name_column\": \"\", \"plusminus_ppm\": \"200.0\", \"processed_cond\": {\"processed_file\": \"processed\", \"__current_case__\": 1, \"accuracy\": \"0.2\", \"units\": \"mz\"}, \"tabular_annotation\": {\"load_annotation\": \"no_annotation\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.0.1", + "type": "tool", + "uuid": "2ee50695-f822-4b88-b753-04722aa2ffca", + "workflow_outputs": [ + { + "label": null, + "output_name": "QC_report", + "uuid": "adaa90d0-760d-4605-9076-d76e35d3e03f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_spectra_plots/cardinal_spectra_plots/2.6.0.0", + "errors": null, + "id": 4, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSI plot spectra", + "name": "infile" + } + ], + "label": null, + "name": "MSI plot spectra", + "outputs": [ + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "bottom": 456.5, + "height": 134, + "left": 669, + "right": 869, + "top": 322.5, + "width": 200, + "x": 669, + "y": 322.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_spectra_plots/cardinal_spectra_plots/2.6.0.0", + "tool_shed_repository": { + "changeset_revision": "d2596e1be091", + "name": "cardinal_spectra_plots", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"centroids\": \"true\", \"filename\": \"\", \"fullmz\": \"true\", \"grid_variable\": \"false\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"mz_range\": {\"mz_range_options\": \"manual_mz\", \"__current_case__\": 2, \"zoomed_sample\": [{\"__index__\": 0, \"xlimmin\": \"10.0\", \"xlimmax\": \"200.0\"}, {\"__index__\": 1, \"xlimmin\": \"200.0\", \"xlimmax\": \"500.0\"}, {\"__index__\": 2, \"xlimmin\": \"500.0\", \"xlimmax\": \"1000.0\"}, {\"__index__\": 3, \"xlimmin\": \"1000.0\", \"xlimmax\": \"1500.0\"}, {\"__index__\": 4, \"xlimmin\": \"1500.0\", \"xlimmax\": \"2000.0\"}]}, \"pixel_conditional\": {\"pixel_type\": \"all_pixel\", \"__current_case__\": 1}, \"processed_cond\": {\"processed_file\": \"processed\", \"__current_case__\": 1, \"accuracy\": \"0.2\", \"units\": \"mz\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.0.0", + "type": "tool", + "uuid": "afd04232-7e33-418c-8409-524d2331fc65", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "9468b2d2-782c-41d9-a2f4-2ec7c838c47f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_filtering/cardinal_filtering/2.6.0.0", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSI filtering", + "name": "infile" + } + ], + "label": null, + "name": "MSI filtering", + "outputs": [ + { + "name": "outfile_imzml", + "type": "imzml" + }, + { + "name": "QC_overview", + "type": "pdf" + } + ], + "position": { + "bottom": 824.8999938964844, + "height": 164.39999389648438, + "left": 672, + "right": 872, + "top": 660.5, + "width": 200, + "x": 672, + "y": 660.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_filtering/cardinal_filtering/2.6.0.0", + "tool_shed_repository": { + "changeset_revision": "2aefa66e48e5", + "name": "cardinal_filtering", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"centroids\": \"true\", \"features_cond\": {\"features_filtering\": \"features_range\", \"__current_case__\": 2, \"min_mz\": \"15.0\", \"max_mz\": \"1000.0\"}, \"infile\": {\"__class__\": \"RuntimeValue\"}, \"pixels_cond\": {\"pixel_filtering\": \"none\", \"__current_case__\": 0}, \"processed_cond\": {\"processed_file\": \"processed\", \"__current_case__\": 1, \"accuracy\": \"0.2\", \"units\": \"mz\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.0.0", + "type": "tool", + "uuid": "69f61159-f6e3-4dc9-a8f7-b5f1a1334fc6", + "workflow_outputs": [ + { + "label": null, + "output_name": "QC_overview", + "uuid": "7fc1700f-e7b5-45eb-b9d8-dd1bf6594385" + }, + { + "label": null, + "output_name": "outfile_imzml", + "uuid": "45f6e115-e334-4ea7-9c8a-7bc36735affa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_spectra_plots/cardinal_spectra_plots/2.6.0.0", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + }, + "pixel_conditional|pixel_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSI plot spectra", + "name": "infile" + }, + { + "description": "runtime parameter for tool MSI plot spectra", + "name": "pixel_conditional" + } + ], + "label": null, + "name": "MSI plot spectra", + "outputs": [ + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "bottom": 649.3000030517578, + "height": 184.8000030517578, + "left": 669, + "right": 869, + "top": 464.5, + "width": 200, + "x": 669, + "y": 464.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_spectra_plots/cardinal_spectra_plots/2.6.0.0", + "tool_shed_repository": { + "changeset_revision": "d2596e1be091", + "name": "cardinal_spectra_plots", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"centroids\": \"true\", \"filename\": \"\", \"fullmz\": \"true\", \"grid_variable\": \"false\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"mz_range\": {\"mz_range_options\": \"manual_mz\", \"__current_case__\": 2, \"zoomed_sample\": [{\"__index__\": 0, \"xlimmin\": \"10.0\", \"xlimmax\": \"200.0\"}, {\"__index__\": 1, \"xlimmin\": \"200.0\", \"xlimmax\": \"500.0\"}, {\"__index__\": 2, \"xlimmin\": \"500.0\", \"xlimmax\": \"1000.0\"}, {\"__index__\": 3, \"xlimmin\": \"1000.0\", \"xlimmax\": \"1500.0\"}, {\"__index__\": 4, \"xlimmin\": \"1500.0\", \"xlimmax\": \"2000.0\"}]}, \"pixel_conditional\": {\"pixel_type\": \"tabular_pixel\", \"__current_case__\": 0, \"pixel_file\": {\"__class__\": \"RuntimeValue\"}, \"column_pixel_x\": \"1\", \"column_pixel_y\": \"2\", \"column_pixel_annotation\": \"3\", \"tabular_pixel_header\": \"true\"}, \"processed_cond\": {\"processed_file\": \"processed\", \"__current_case__\": 1, \"accuracy\": \"0.2\", \"units\": \"mz\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.0.0", + "type": "tool", + "uuid": "27e49459-5afa-49d9-a357-811fbe90650c", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "69cb29ad-3b9e-4c7c-b1f7-01c78525e6a6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_data_exporter/cardinal_data_exporter/2.6.0.0", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 5, + "output_name": "outfile_imzml" + } + }, + "inputs": [], + "label": null, + "name": "MSI data exporter", + "outputs": [ + { + "name": "intensity_matrix", + "type": "tabular" + }, + { + "name": "feature_output", + "type": "tabular" + } + ], + "position": { + "bottom": 540.1000061035156, + "height": 225.60000610351562, + "left": 940, + "right": 1140, + "top": 314.5, + "width": 200, + "x": 940, + "y": 314.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_data_exporter/cardinal_data_exporter/2.6.0.0", + "tool_shed_repository": { + "changeset_revision": "137bfc63e758", + "name": "cardinal_data_exporter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"imzml\", \"centroids\": \"true\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"counting_calibrants\": {\"pixel_with_calibrants\": \"no_calibrants\", \"__current_case__\": 0}, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"output_options\": [\"int_matrix\", \"mz_tabular\"], \"processed_cond\": {\"processed_file\": \"no_processed\", \"__current_case__\": 0}, \"tabular_annotation\": {\"load_annotation\": \"no_annotation\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.0.0", + "type": "tool", + "uuid": "f1647eea-23ca-4713-ae2e-7f68e6388aa7", + "workflow_outputs": [ + { + "label": null, + "output_name": "intensity_matrix", + "uuid": "eadf7793-dbdc-4691-b9ed-b359229b35c7" + }, + { + "label": null, + "output_name": "feature_output", + "uuid": "ea4d3b0c-8b42-45c2-adaa-65fc0ce368f9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/2.6.0.0", + "errors": null, + "id": 8, + "input_connections": { + "calibrant_file": { + "id": 2, + "output_name": "output" + }, + "infile": { + "id": 5, + "output_name": "outfile_imzml" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSI mz images", + "name": "calibrant_file" + }, + { + "description": "runtime parameter for tool MSI mz images", + "name": "infile" + } + ], + "label": null, + "name": "MSI mz images", + "outputs": [ + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "bottom": 940.3000030517578, + "height": 184.8000030517578, + "left": 933, + "right": 1133, + "top": 755.5, + "width": 200, + "x": 933, + "y": 755.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/2.6.0.0", + "tool_shed_repository": { + "changeset_revision": "a95a82eb4d50", + "name": "cardinal_mz_images", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"calibrant_file\": {\"__class__\": \"RuntimeValue\"}, \"calibrant_header\": \"false\", \"centroids\": \"true\", \"colorkey\": \"true\", \"colorscale\": \"viridis\", \"filename\": \"\", \"image_contrast\": \"suppression\", \"image_smoothing\": \"none\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"mz_column\": \"1\", \"name_column\": \"1\", \"normalize_image\": \"false\", \"overlay_cond\": {\"overlay_selection\": \"yes_overlay\", \"__current_case__\": 1, \"colours\": [{\"__index__\": 0, \"feature_color\": \"#c00000\"}, {\"__index__\": 1, \"feature_color\": \"#0070c0\"}, {\"__index__\": 2, \"feature_color\": \"#92d050\"}], \"legend_position\": \"topright\"}, \"plusminus_dalton\": \"0.4\", \"processed_cond\": {\"processed_file\": \"no_processed\", \"__current_case__\": 0}, \"svg_pixelimage\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.0.1", + "type": "tool", + "uuid": "34143b6c-d77e-4dc8-8c5e-18cc685fdc74", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "a8a97f8e-6bfa-4376-8c5f-a3305f8af429" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 7, + "output_name": "feature_output" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 570.6999969482422, + "height": 93.19999694824219, + "left": 1176, + "right": 1376, + "top": 477.5, + "width": 200, + "x": 1176, + "y": 477.5 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c2>=55 and c2<=65 or c2>=75 and c2<=85\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "8b864289-7691-4045-b6c2-ad191a86a6f9", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "59998a93-7244-4c6b-b2c3-be3cc5f44458" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/2.6.0.0", + "errors": null, + "id": 10, + "input_connections": { + "calibrant_file": { + "id": 9, + "output_name": "out_file1" + }, + "infile": { + "id": 5, + "output_name": "outfile_imzml" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSI mz images", + "name": "calibrant_file" + }, + { + "description": "runtime parameter for tool MSI mz images", + "name": "infile" + } + ], + "label": null, + "name": "MSI mz images", + "outputs": [ + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "bottom": 791.3000030517578, + "height": 184.8000030517578, + "left": 1410, + "right": 1610, + "top": 606.5, + "width": 200, + "x": 1410, + "y": 606.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/2.6.0.0", + "tool_shed_repository": { + "changeset_revision": "a95a82eb4d50", + "name": "cardinal_mz_images", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"calibrant_file\": {\"__class__\": \"RuntimeValue\"}, \"calibrant_header\": \"true\", \"centroids\": \"true\", \"colorkey\": \"true\", \"colorscale\": \"viridis\", \"filename\": \"\", \"image_contrast\": \"suppression\", \"image_smoothing\": \"none\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"mz_column\": \"2\", \"name_column\": \"1\", \"normalize_image\": \"false\", \"overlay_cond\": {\"overlay_selection\": \"no_overlay\", \"__current_case__\": 0}, \"plusminus_dalton\": \"0.4\", \"processed_cond\": {\"processed_file\": \"no_processed\", \"__current_case__\": 0}, \"svg_pixelimage\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.0.1", + "type": "tool", + "uuid": "24081ed2-7205-45c8-a3ea-9de110785398", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "095a38a2-99e1-42f1-a3d0-57c54f242c2e" + } + ] + } + ], + "parent_id": "metabolomics/msi-analyte-distribution", + "path": "topics/metabolomics/tutorials/msi-analyte-distribution/workflows/wf_MSI_distribution.ga", + "tags": [ + "metabolomics" + ], + "test_results": null, + "tests": false, + "title": "MSI Workflow: spatial distribution", + "topic_id": "metabolomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/metabolomics-msi-analyte-distribution/versions/wf-msi-distribution", + "tutorial_id": "msi-analyte-distribution", + "url": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/msi-analyte-distribution/workflows/wf_MSI_distribution.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/msi-analyte-distribution/workflows/wf_MSI_distribution.html", + "version": 1, + "wfid": "metabolomics-msi-analyte-distribution", + "wfname": "wf-msi-distribution", + "workflow": "wf_MSI_distribution.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_data_exporter/cardinal_data_exporter/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_filtering/cardinal_filtering/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_mz_images/cardinal_mz_images/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/2.6.0.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_spectra_plots/cardinal_spectra_plots/2.6.0.0" + ], + "workflowhub_id": "1061" + } + ], + "zenodo_link": "https://zenodo.org/record/484496" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "msconvert", + "owner": "galaxyp", + "revisions": "6153e8ada1ee", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msnbase_readmsdata", + "owner": "lecorguille", + "revisions": "11ab2081bd4a", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_fillpeaks", + "owner": "lecorguille", + "revisions": "26d77e9ceb49", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_group", + "owner": "lecorguille", + "revisions": "d45a786cbc40", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_merge", + "owner": "lecorguille", + "revisions": "5bd125a3f3b0", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_retcor", + "owner": "lecorguille", + "revisions": "aa252eec9229", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_xcmsset", + "owner": "lecorguille", + "revisions": "b02d1992a43a", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "matchms_filtering", + "owner": "recetox", + "revisions": "357df6c47d92", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "matchms_formatter", + "owner": "recetox", + "revisions": "1b09315a3f87", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "matchms_similarity", + "owner": "recetox", + "revisions": "e5010b19d64d", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ramclustr", + "owner": "recetox", + "revisions": "2ec9253a647e", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ramclustr", + "owner": "recetox", + "revisions": "050cfef6ba65", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ramclustr_define_experiment", + "owner": "recetox", + "revisions": "25625114618e", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "riassigner", + "owner": "recetox", + "revisions": "c702620c22b1", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "waveica", + "owner": "recetox", + "revisions": "b77023c41c76", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: msconvert\n owner: galaxyp\n revisions: 6153e8ada1ee\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msnbase_readmsdata\n owner: lecorguille\n revisions: 11ab2081bd4a\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_fillpeaks\n owner: lecorguille\n revisions: 26d77e9ceb49\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_group\n owner: lecorguille\n revisions: d45a786cbc40\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_merge\n owner: lecorguille\n revisions: 5bd125a3f3b0\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_retcor\n owner: lecorguille\n revisions: aa252eec9229\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_xcmsset\n owner: lecorguille\n revisions: b02d1992a43a\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: matchms_filtering\n owner: recetox\n revisions: 357df6c47d92\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: matchms_formatter\n owner: recetox\n revisions: 1b09315a3f87\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: matchms_similarity\n owner: recetox\n revisions: e5010b19d64d\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ramclustr\n owner: recetox\n revisions: 2ec9253a647e\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ramclustr\n owner: recetox\n revisions: 050cfef6ba65\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ramclustr_define_experiment\n owner: recetox\n revisions: 25625114618e\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: riassigner\n owner: recetox\n revisions: c702620c22b1\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: waveica\n owner: recetox\n revisions: b77023c41c76\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/gc_ms_with_xcms/tutorial.json", + "contributions": { + "authorship": [ + "xtrojak", + "hechth", + "maximskorik" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "email": "trojak@mail.muni.cz", + "id": "xtrojak", + "joined": "2021-06", + "name": "Matej Troj\u00e1k", + "orcid": "0000-0003-0841-2707", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/xtrojak/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/xtrojak.json" + }, + { + "email": "helge.hecht@recetox.muni.cz", + "id": "hechth", + "joined": "2020-01", + "name": "Helge Hecht", + "orcid": "0000-0001-6744-996X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hechth/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hechth.json" + }, + { + "email": "maximskoryk@gmail.com", + "id": "maximskorik", + "joined": "2023-03", + "name": "Maxim Skoryk", + "orcid": "0000-0003-2056-8018", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/maximskorik/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/maximskorik.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/metabolomics/tutorials/gc_ms_with_xcms", + "edam_operation": [ + "Imputation", + "Chromatogram visualisation", + "Formatting", + "Format validation", + "Validation", + "Filtering", + "Chromatographic alignment", + "Peak detection", + "Label-free quantification", + "Standardisation and normalisation", + "Clustering", + "Correlation", + "Spectral library search", + "Mass spectrum visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "metabolomics/gc_ms_with_xcms", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": 27731, + "mermaid": false + }, + "key_points": [ + "The processing of untargeted GC-MS metabolomic data can be done using open-source tools.", + "This processing workflow is complementary to CAMERA and metaMS." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "To learn about the key steps in the preprocessing and analysis of untargeted GC-MS metabolomics data.", + "To explore what open-source alternative tools can be used in the analysis of GC-MS data, learn about their possible parametrisations.", + "To analyse authentic data samples and compare them with a data library of human metabolome, composed from a collection of mostly endogenous compounds." + ], + "pageviews": 1848, + "pub_date": "2023-05-08", + "questions": [ + "What are the main steps of gas chromatography-mass spectrometry (GC-MS) data processing for metabolomic analysis?", + "What similarity metrics can be used to compare a pair of mass spectra and what are the differences between them?", + "Do you know any alternative tools that can be used in place of the individual steps of this workflow?" + ], + "requirements": [ + { + "topic_name": "metabolomics", + "tutorials": [ + "lcms-preprocessing" + ], + "type": "internal" + } + ], + "short_id": "T00344", + "short_tools": [ + "msconvert", + "matchms_filtering", + "abims_xcms_fillPeaks", + "matchms_formatter", + "riassigner", + "abims_xcms_xcmsSet", + "xcms_merge", + "abims_xcms_retcor", + "ramclustr_define_experiment", + "abims_xcms_group", + "waveica", + "matchms_similarity", + "msnbase_readmsdata", + "ramclustr" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Mass spectrometry: GC-MS data processing (with XCMS, RAMClustR, RIAssigner, and matchms)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2", + "toolshed.g2.bx.psu.edu/repos/lecorguille/msnbase_readmsdata/msnbase_readmsdata/2.16.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_group/abims_xcms_group/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_merge/xcms_merge/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_retcor/abims_xcms_retcor/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_xcmsset/abims_xcms_xcmsSet/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/recetox/matchms_filtering/matchms_filtering/0.17.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/recetox/matchms_formatter/matchms_formatter/0.20.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/recetox/matchms_similarity/matchms_similarity/0.20.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/recetox/ramclustr/ramclustr/1.2.4+galaxy2", + "toolshed.g2.bx.psu.edu/repos/recetox/ramclustr/ramclustr/1.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/recetox/ramclustr_define_experiment/ramclustr_define_experiment/1.0.2", + "toolshed.g2.bx.psu.edu/repos/recetox/riassigner/riassigner/0.3.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/recetox/waveica/waveica/0.2.0+galaxy2" + ], + "topic_name": "metabolomics", + "topic_name_human": "Metabolomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gc_ms_with_xcms", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/metabolomics/tutorials/gc_ms_with_xcms/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/gc_ms_with_xcms/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/gc_ms_with_xcms/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 103, + "visitors": 1358, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "email": "mailto:GalaxyToolsDevelopmentandDeployment@space.muni.cz", + "name": "RECETOX" + } + ], + "description": "XCMS and RAMClustR based workflow for data processing and annotation using library matching via matchms.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference compound list alkanes\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference spectra\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsample_metadata.tsv\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 4[label=\"msconvert\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"MSnbase readMSData\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"xcms findChromPeaks xcmsSet\"]\n 5 -> 6 [label=\"xsetRData\"]\n 7[label=\"xcms findChromPeaks Merger\"]\n 6 -> 7 [label=\"xsetRData\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"xcms groupChromPeaks group\"]\n 7 -> 8 [label=\"xsetRData\"]\n 9[label=\"xcms adjustRtime retcor\"]\n 8 -> 9 [label=\"xsetRData\"]\n 10[label=\"xcms groupChromPeaks group\"]\n 9 -> 10 [label=\"xsetRData\"]\n 11[label=\"xcms fillChromPeaks fillPeaks\"]\n 10 -> 11 [label=\"xsetRData\"]\n k940c75491bae4ddd9e9275fc7d2c8eef[color=lightseagreen,label=\"Output\\nFeature (peak) intensities\"]\n 11 -> k940c75491bae4ddd9e9275fc7d2c8eef\n k9f910e82e7a54201b9441845ba6aa2e9[color=lightseagreen,label=\"Output\\nFeature (peak) metadata (mz, rt, ...)\"]\n 11 -> k9f910e82e7a54201b9441845ba6aa2e9\n k5bab8f284df14397af04168546bd0e52[color=lightseagreen,label=\"Output\\nxcmsObj (XCMSnExp)\"]\n 11 -> k5bab8f284df14397af04168546bd0e52\n 12[label=\"RAMClustR\"]\n 11 -> 12 [label=\"xsetRData\"]\n k92fac5e615784e52ac9d2982e19a5b88[color=lightseagreen,label=\"Output\\nDeconvoluted spectra\"]\n 12 -> k92fac5e615784e52ac9d2982e19a5b88\n kf7657c1762934fbbb01428009d495de7[color=lightseagreen,label=\"Output\\nFeature (spectra) intensities\"]\n 12 -> kf7657c1762934fbbb01428009d495de7\n 13[label=\"RIAssigner\"]\n 12 -> 13 [label=\"mass_spectra_merged\"]\n 0 -> 13 [label=\"output\"]\n k7ec6ce025d8348abba0a94976db297e5[color=lightseagreen,label=\"Output\\nRetention indexed spectra\"]\n 13 -> k7ec6ce025d8348abba0a94976db297e5\n 14[label=\"matchms similarity\"]\n 13 -> 14 [label=\"output\"]\n 1 -> 14 [label=\"output\"]\n k024327f713b84ce987089f430d7ceedf[color=lightseagreen,label=\"Output\\nCosineGreedy scores of input dataset(s)\"]\n 14 -> k024327f713b84ce987089f430d7ceedf\n 15[label=\"matchms scores formatter\"]\n 14 -> 15 [label=\"similarity_scores\"]\n k8a7670064b3c41babea518fd100ce930[color=lightseagreen,label=\"Output\\nmatchms_scores\"]\n 15 -> k8a7670064b3c41babea518fd100ce930\n}", + "history": [ + { + "hash": "9ed3f9ed83554a79f083624b4070b85877845e17", + "message": "Update test", + "num": 5, + "short_hash": "9ed3f9ed8", + "unix": "1689330096" + }, + { + "hash": "727d0600a2d08ad3a489b57f6bf5c08807af1e47", + "message": "Update workflow and tests", + "num": 4, + "short_hash": "727d0600a", + "unix": "1688998300" + }, + { + "hash": "a726fb0c2af4a24843f6a50c6f522a629b43f6dd", + "message": "Update RIAssginer tool version", + "num": 3, + "short_hash": "a726fb0c2", + "unix": "1683106380" + }, + { + "hash": "41eb746c708ea13d1fb5aeac6ef6d7a4ccae1890", + "message": "Consistency in parameter values in workflow and tutorial", + "num": 2, + "short_hash": "41eb746c7", + "unix": "1683104559" + }, + { + "hash": "1503b9315e3fb1918a8554b3d2814fedda96e4c0", + "message": "Initial commit adding GC-MS tutorial", + "num": 1, + "short_hash": "1503b9315", + "unix": "1677491681" + } + ], + "inputs": [ + { + "annotation": "List of retention indexed reference compounds. Either a table with columns `rt` and `ri` or an MSP with retention time and index metadata.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "List of retention indexed reference compounds. Either a table with columns `rt` and `ri` or an MSP with retention time and index metadata.", + "name": "Reference compound list (alkanes)" + } + ], + "label": "Reference compound list (alkanes)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 511.8500061035156, + "height": 82.20001220703125, + "left": 160.0833282470703, + "right": 360.0833282470703, + "top": 429.6499938964844, + "width": 200, + "x": 160.0833282470703, + "y": 429.6499938964844 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "6f1c04f5-126f-4ad2-bc25-b1c4b6efce5d", + "workflow_outputs": [] + }, + { + "annotation": "Spectral library to use for annotation in MSP or MGF format.", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Spectral library to use for annotation in MSP or MGF format.", + "name": "Reference spectra" + } + ], + "label": "Reference spectra", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 616.8332977294922, + "height": 82.19999694824219, + "left": 482.1000061035156, + "right": 682.1000061035156, + "top": 534.63330078125, + "width": 200, + "x": 482.1000061035156, + "y": 534.63330078125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "64a5eec1-54ef-4fc2-93c5-f6ab70ce1614", + "workflow_outputs": [] + }, + { + "annotation": "Sample metadata sheet, containing sample name, type (QC, blank, sample, etc.), batch number and injection order.", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Sample metadata sheet, containing sample name, type (QC, blank, sample, etc.), batch number and injection order.", + "name": "sample_metadata.tsv" + } + ], + "label": "sample_metadata.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 489.8500061035156, + "height": 82.20001220703125, + "left": -1541.933349609375, + "right": -1341.933349609375, + "top": 407.6499938964844, + "width": 200, + "x": -1541.933349609375, + "y": 407.6499938964844 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "494c83fe-4407-4123-b56e-0a211f97fea2", + "workflow_outputs": [] + }, + { + "annotation": "Mass spectrometry data to be processed in the workflow. Please ensure the format is supported by msconvert and only use the peak picking option if the input data was acquired in profile mode.", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Mass spectrometry data to be processed in the workflow. Please ensure the format is supported by msconvert and only use the peak picking option if the input data was acquired in profile mode.", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 105.85000610351562, + "height": 82.20001220703125, + "left": -2407, + "right": -2207, + "top": 23.649993896484375, + "width": 200, + "x": -2407, + "y": 23.649993896484375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2e362408-24c5-46e1-861c-74b825a5feaf", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nReference compound list alkanes\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference spectra\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nsample_metadata.tsv\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"msconvert\"];\n 3 -->|output| 4;\n 5[\"MSnbase readMSData\"];\n 4 -->|output| 5;\n 6[\"xcms findChromPeaks xcmsSet\"];\n 5 -->|xsetRData| 6;\n 7[\"xcms findChromPeaks Merger\"];\n 6 -->|xsetRData| 7;\n 2 -->|output| 7;\n 8[\"xcms groupChromPeaks group\"];\n 7 -->|xsetRData| 8;\n 9[\"xcms adjustRtime retcor\"];\n 8 -->|xsetRData| 9;\n 10[\"xcms groupChromPeaks group\"];\n 9 -->|xsetRData| 10;\n 11[\"xcms fillChromPeaks fillPeaks\"];\n 10 -->|xsetRData| 11;\n 940c7549-1bae-4ddd-9e92-75fc7d2c8eef[\"Output\\nFeature (peak) intensities\"];\n 11 --> 940c7549-1bae-4ddd-9e92-75fc7d2c8eef;\n style 940c7549-1bae-4ddd-9e92-75fc7d2c8eef stroke:#2c3143,stroke-width:4px;\n 9f910e82-e7a5-4201-b944-1845ba6aa2e9[\"Output\\nFeature (peak) metadata (mz, rt, ...)\"];\n 11 --> 9f910e82-e7a5-4201-b944-1845ba6aa2e9;\n style 9f910e82-e7a5-4201-b944-1845ba6aa2e9 stroke:#2c3143,stroke-width:4px;\n 5bab8f28-4df1-4397-af04-168546bd0e52[\"Output\\nxcmsObj (XCMSnExp)\"];\n 11 --> 5bab8f28-4df1-4397-af04-168546bd0e52;\n style 5bab8f28-4df1-4397-af04-168546bd0e52 stroke:#2c3143,stroke-width:4px;\n 12[\"RAMClustR\"];\n 11 -->|xsetRData| 12;\n 92fac5e6-1578-4e52-ac9d-2982e19a5b88[\"Output\\nDeconvoluted spectra\"];\n 12 --> 92fac5e6-1578-4e52-ac9d-2982e19a5b88;\n style 92fac5e6-1578-4e52-ac9d-2982e19a5b88 stroke:#2c3143,stroke-width:4px;\n f7657c17-6293-4fbb-b014-28009d495de7[\"Output\\nFeature (spectra) intensities\"];\n 12 --> f7657c17-6293-4fbb-b014-28009d495de7;\n style f7657c17-6293-4fbb-b014-28009d495de7 stroke:#2c3143,stroke-width:4px;\n 13[\"RIAssigner\"];\n 12 -->|mass_spectra_merged| 13;\n 0 -->|output| 13;\n 7ec6ce02-5d83-48ab-ba0a-94976db297e5[\"Output\\nRetention indexed spectra\"];\n 13 --> 7ec6ce02-5d83-48ab-ba0a-94976db297e5;\n style 7ec6ce02-5d83-48ab-ba0a-94976db297e5 stroke:#2c3143,stroke-width:4px;\n 14[\"matchms similarity\"];\n 13 -->|output| 14;\n 1 -->|output| 14;\n 024327f7-13b8-4ce9-8708-9f430d7ceedf[\"Output\\nCosineGreedy scores of input dataset(s)\"];\n 14 --> 024327f7-13b8-4ce9-8708-9f430d7ceedf;\n style 024327f7-13b8-4ce9-8708-9f430d7ceedf stroke:#2c3143,stroke-width:4px;\n 15[\"matchms scores formatter\"];\n 14 -->|similarity_scores| 15;\n 8a767006-4b3c-41ba-bea5-18fd100ce930[\"Output\\nmatchms_scores\"];\n 15 --> 8a767006-4b3c-41ba-bea5-18fd100ce930;\n style 8a767006-4b3c-41ba-bea5-18fd100ce930 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GC MS using XCMS", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.12.0+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "image": { + "id": 10, + "output_name": "xsetRData" + } + }, + "inputs": [], + "label": null, + "name": "xcms fillChromPeaks (fillPeaks)", + "outputs": [ + { + "name": "xsetRData", + "type": "rdata.xcms.fillpeaks" + }, + { + "name": "variableMetadata", + "type": "tabular" + }, + { + "name": "dataMatrix", + "type": "tabular" + } + ], + "position": { + "bottom": 357.25, + "height": 235.60000610351562, + "left": -122.89999389648438, + "right": 77.10000610351562, + "top": 121.64999389648438, + "width": 200, + "x": -122.89999389648438, + "y": 121.64999389648438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.12.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "26d77e9ceb49", + "name": "xcms_fillpeaks", + "owner": "lecorguille", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"Adv\": {\"expandMz\": \"0\", \"expandRt\": \"0\", \"ppm\": \"0\"}, \"file_load_section\": {\"file_load_conditional\": {\"file_load_select\": \"no\", \"__current_case__\": 0}}, \"image\": {\"__class__\": \"ConnectedValue\"}, \"peaklist\": {\"peaklistBool\": \"True\", \"convertRTMinute\": \"true\", \"numDigitsMZ\": \"4\", \"numDigitsRT\": \"0\", \"intval\": \"into\", \"naTOzero\": \"true\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.12.0+galaxy0", + "type": "tool", + "uuid": "fae0d093-7931-4f4c-97da-09a93087d66d", + "workflow_outputs": [ + { + "label": "Feature (peak) intensities", + "output_name": "dataMatrix", + "uuid": "940c7549-1bae-4ddd-9e92-75fc7d2c8eef" + }, + { + "label": "Feature (peak) metadata (mz, rt, ...)", + "output_name": "variableMetadata", + "uuid": "9f910e82-e7a5-4201-b944-1845ba6aa2e9" + }, + { + "label": "xcmsObj (XCMSnExp)", + "output_name": "xsetRData", + "uuid": "5bab8f28-4df1-4397-af04-168546bd0e52" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/recetox/ramclustr/ramclustr/1.2.4+galaxy2", + "errors": null, + "id": 12, + "input_connections": { + "filetype|xcms|input_xcms": { + "id": 11, + "output_name": "xsetRData" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RAMClustR", + "name": "extras" + } + ], + "label": null, + "name": "RAMClustR", + "outputs": [ + { + "name": "spec_abundance", + "type": "csv" + }, + { + "name": "mass_spectra_merged", + "type": "msp" + } + ], + "position": { + "bottom": 333.8500061035156, + "height": 215.20001220703125, + "left": 152.10000610351562, + "right": 352.1000061035156, + "top": 118.64999389648438, + "width": 200, + "x": 152.10000610351562, + "y": 118.64999389648438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/recetox/ramclustr/ramclustr/1.2.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "2ec9253a647e", + "name": "ramclustr", + "owner": "recetox", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"clustering\": {\"linkage\": \"average\", \"minModuleSize\": \"5\", \"hmax\": \"0.9\", \"deepSplit\": \"false\"}, \"extras\": {\"rt_only_low_n\": \"true\", \"replace_zeros\": \"true\", \"ExpDes\": {\"__class__\": \"RuntimeValue\"}}, \"filetype\": {\"type_choice\": \"xcms\", \"__current_case__\": 0, \"xcms\": {\"input_xcms\": {\"__class__\": \"ConnectedValue\"}, \"usePheno\": \"true\"}, \"required\": {\"st\": null, \"sr\": \"0.7\", \"cor_method\": \"pearson\", \"maxt\": \"10.0\"}}, \"msp_output_details\": {\"merge_msp\": \"true\", \"mzdec\": \"6\"}, \"normalisation\": {\"normalisation_method\": {\"normalize\": \"none\", \"__current_case__\": 3}}, \"performance\": {\"blocksize\": \"2000\", \"mult\": \"5\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.4+galaxy2", + "type": "tool", + "uuid": "2410e8b8-d629-4798-950d-e3d865a6aa72", + "workflow_outputs": [ + { + "label": "Deconvoluted spectra", + "output_name": "mass_spectra_merged", + "uuid": "92fac5e6-1578-4e52-ac9d-2982e19a5b88" + }, + { + "label": "Feature (spectra) intensities", + "output_name": "spec_abundance", + "uuid": "f7657c17-6293-4fbb-b014-28009d495de7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/recetox/riassigner/riassigner/0.3.4+galaxy1", + "errors": null, + "id": 13, + "input_connections": { + "query_section|query": { + "id": 12, + "output_name": "mass_spectra_merged" + }, + "reference_section|reference": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "RIAssigner", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 466.6499938964844, + "height": 144, + "left": 450.08331298828125, + "right": 650.0833129882812, + "top": 322.6499938964844, + "width": 200, + "x": 450.08331298828125, + "y": 322.6499938964844 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/recetox/riassigner/riassigner/0.3.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "c702620c22b1", + "name": "riassigner", + "owner": "recetox", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"method\": \"kovats\", \"query_section\": {\"query\": {\"__class__\": \"ConnectedValue\"}, \"query_rt_units\": \"seconds\"}, \"reference_section\": {\"reference\": {\"__class__\": \"ConnectedValue\"}, \"reference_rt_units\": \"seconds\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.4+galaxy1", + "type": "tool", + "uuid": "e626eac6-354c-4117-bd98-2203cb2d177b", + "workflow_outputs": [ + { + "label": "Retention indexed spectra", + "output_name": "output", + "uuid": "7ec6ce02-5d83-48ab-ba0a-94976db297e5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/recetox/matchms_similarity/matchms_similarity/0.20.0+galaxy0", + "errors": null, + "id": 14, + "input_connections": { + "queries": { + "id": 13, + "output_name": "output" + }, + "symmetric|references": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool matchms similarity", + "name": "queries" + }, + { + "description": "runtime parameter for tool matchms similarity", + "name": "symmetric" + } + ], + "label": null, + "name": "matchms similarity", + "outputs": [ + { + "name": "similarity_scores", + "type": "json" + } + ], + "position": { + "bottom": 534.3999938964844, + "height": 164.39999389648438, + "left": 805, + "right": 1005, + "top": 370, + "width": 200, + "x": 805, + "y": 370 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/recetox/matchms_similarity/matchms_similarity/0.20.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e5010b19d64d", + "name": "matchms_similarity", + "owner": "recetox", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"array_type\": \"numpy\", \"metric\": {\"similarity_metric\": \"CosineGreedy\", \"__current_case__\": 0, \"algorithm\": {\"tolerance\": \"0.03\", \"mz_power\": \"0.0\", \"intensity_power\": \"1.0\"}}, \"queries\": {\"__class__\": \"RuntimeValue\"}, \"ri_filtering\": {\"is_true\": \"true\", \"__current_case__\": 0, \"tolerance\": \"20.0\"}, \"symmetric\": {\"is_symmetric\": \"false\", \"__current_case__\": 0, \"references\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.0+galaxy0", + "type": "tool", + "uuid": "2c42471c-f9e2-43e7-977c-2207bedbf416", + "workflow_outputs": [ + { + "label": "CosineGreedy scores of input dataset(s)", + "output_name": "similarity_scores", + "uuid": "024327f7-13b8-4ce9-8708-9f430d7ceedf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/recetox/matchms_formatter/matchms_formatter/0.20.0+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "scores": { + "id": 14, + "output_name": "similarity_scores" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool matchms scores formatter", + "name": "scores" + } + ], + "label": null, + "name": "matchms scores formatter", + "outputs": [ + { + "name": "output", + "type": "tsv" + } + ], + "position": { + "bottom": 506.3999938964844, + "height": 154.39999389648438, + "left": 1175, + "right": 1375, + "top": 352, + "width": 200, + "x": 1175, + "y": 352 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/recetox/matchms_formatter/matchms_formatter/0.20.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1b09315a3f87", + "name": "matchms_formatter", + "owner": "recetox", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"scores\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.0+galaxy0", + "type": "tool", + "uuid": "64da39ef-4625-4598-978d-e38bbbc2f007", + "workflow_outputs": [ + { + "label": "matchms_scores", + "output_name": "output", + "uuid": "8a767006-4b3c-41ba-bea5-18fd100ce930" + } + ] + } + ], + "parent_id": "metabolomics/gc_ms_with_xcms", + "path": "topics/metabolomics/tutorials/gc_ms_with_xcms/workflows/main_workflow.ga", + "tags": [ + "GC-MS", + "Metabolomics", + "Expospomics" + ], + "test_results": null, + "tests": true, + "title": "GC MS using XCMS", + "topic_id": "metabolomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/metabolomics-gc_ms_with_xcms/versions/main-workflow", + "tutorial_id": "gc_ms_with_xcms", + "url": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/gc_ms_with_xcms/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/gc_ms_with_xcms/workflows/main_workflow.html", + "version": 2, + "wfid": "metabolomics-gc_ms_with_xcms", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2", + "toolshed.g2.bx.psu.edu/repos/lecorguille/msnbase_readmsdata/msnbase_readmsdata/2.16.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_group/abims_xcms_group/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_merge/xcms_merge/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_retcor/abims_xcms_retcor/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_xcmsset/abims_xcms_xcmsSet/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/recetox/matchms_formatter/matchms_formatter/0.20.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/recetox/matchms_similarity/matchms_similarity/0.20.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/recetox/ramclustr/ramclustr/1.2.4+galaxy2", + "toolshed.g2.bx.psu.edu/repos/recetox/riassigner/riassigner/0.3.4+galaxy1" + ], + "workflowhub_id": "1119" + } + ], + "zenodo_link": "https://zenodo.org/record/7890956" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "qualitymetrics", + "owner": "ethevenot", + "revisions": "acdf51018708", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "univariate", + "owner": "ethevenot", + "revisions": "5687435b182c", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hmdb_ms_search", + "owner": "fgiacomoni", + "revisions": "49f87ddb2c78", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "camera_annotate", + "owner": "lecorguille", + "revisions": "73d82de36369", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msnbase_readmsdata", + "owner": "lecorguille", + "revisions": "86a20118e743", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_fillpeaks", + "owner": "lecorguille", + "revisions": "3bc94c3abb28", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_group", + "owner": "lecorguille", + "revisions": "fe4002ac5193", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_merge", + "owner": "lecorguille", + "revisions": "a301f001835c", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_plot_chromatogram", + "owner": "lecorguille", + "revisions": "271c9d5f0d10", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_retcor", + "owner": "lecorguille", + "revisions": "7faadba7c625", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_xcmsset", + "owner": "lecorguille", + "revisions": "378ddb410225", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "batchcorrection", + "owner": "melpetera", + "revisions": "73892ef177e3", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "generic_filter", + "owner": "melpetera", + "revisions": "b1fa45bd2b44", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: qualitymetrics\n owner: ethevenot\n revisions: acdf51018708\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: univariate\n owner: ethevenot\n revisions: 5687435b182c\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hmdb_ms_search\n owner: fgiacomoni\n revisions: 49f87ddb2c78\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: camera_annotate\n owner: lecorguille\n revisions: 73d82de36369\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msnbase_readmsdata\n owner: lecorguille\n revisions: 86a20118e743\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_fillpeaks\n owner: lecorguille\n revisions: 3bc94c3abb28\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_group\n owner: lecorguille\n revisions: fe4002ac5193\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_merge\n owner: lecorguille\n revisions: a301f001835c\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_plot_chromatogram\n owner: lecorguille\n revisions: 271c9d5f0d10\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_retcor\n owner: lecorguille\n revisions: 7faadba7c625\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_xcmsset\n owner: lecorguille\n revisions: 378ddb410225\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: batchcorrection\n owner: melpetera\n revisions: 73892ef177e3\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: generic_filter\n owner: melpetera\n revisions: b1fa45bd2b44\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms/tutorial.json", + "contributors": [ + { + "id": "melpetera", + "joined": "2019-06", + "name": "M\u00e9lanie Petera", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/melpetera/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/melpetera.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "id": "lecorguille", + "joined": "2017-09", + "name": "Gildas Le Corguill\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lecorguille/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lecorguille.json" + }, + { + "id": "jfrancoismartin", + "joined": "2019-06", + "name": "Jean-Fran\u00e7ois Martin", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jfrancoismartin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jfrancoismartin.json" + }, + { + "id": "yguitton", + "joined": "2019-06", + "name": "Yann Guitton", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yguitton/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yguitton.json" + }, + { + "id": "workflow4metabolomics", + "joined": "2019-06", + "name": "Workflow4Metabolomics core team", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/workflow4metabolomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/workflow4metabolomics.json" + } + ], + "dir": "topics/metabolomics/tutorials/lcms", + "edam_operation": [ + "Label-free quantification", + "Chromatogram visualisation", + "Validation", + "Filtering", + "Chromatographic alignment", + "Mass spectrum visualisation", + "Peak detection" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "metabolomics/lcms", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "To process untargeted LC-MS metabolomic data, you need a large variety of steps and tools.", + "Although main steps are standard, various ways to combined tools exist, depending on your data.", + "Resources are available in Galaxy, but do not forget that you need appropriate knowledge to perform a relevant analysis." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "To comprehend the diversity of LC-MS metabolomic data analysis.", + "To get familiar with the main steps constituting a metabolomic workflow for untargeted LC-MS analysis.", + "To evaluate the potential of a workflow approach when dealing with LC-MS metabolomic data." + ], + "pageviews": 18038, + "pub_date": "2019-07-02", + "questions": [ + "What are the main steps of untargeted LC-MS data processing for metabolomic analysis?", + "How to conduct metabolomic data analysis from preprocessing to annotation using Galaxy?" + ], + "short_id": "T00195", + "short_tools": [ + "wsdl_hmdb", + "abims_xcms_fillPeaks", + "quality_metrics", + "Univariate", + "abims_xcms_xcmsSet", + "xcms_merge", + "xcms_plot_chromatogram", + "abims_xcms_retcor", + "abims_CAMERA_annotateDiffreport", + "Batch_correction", + "abims_xcms_group", + "generic_filter", + "msnbase_readmsdata" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "3h", + "title": "Mass spectrometry: LC-MS analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/ethevenot/qualitymetrics/quality_metrics/2.2.8", + "toolshed.g2.bx.psu.edu/repos/ethevenot/univariate/Univariate/2.2.4", + "toolshed.g2.bx.psu.edu/repos/fgiacomoni/hmdb_ms_search/wsdl_hmdb/2018-10-01", + "toolshed.g2.bx.psu.edu/repos/lecorguille/camera_annotate/abims_CAMERA_annotateDiffreport/2.2.4", + "toolshed.g2.bx.psu.edu/repos/lecorguille/msnbase_readmsdata/msnbase_readmsdata/2.8.2.1", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.4.4.0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_group/abims_xcms_group/3.4.4.0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_merge/xcms_merge/3.4.4.0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_plot_chromatogram/xcms_plot_chromatogram/3.4.4.0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_retcor/abims_xcms_retcor/3.4.4.1", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_xcmsset/abims_xcms_xcmsSet/3.4.4.1", + "toolshed.g2.bx.psu.edu/repos/melpetera/batchcorrection/Batch_correction/2.1.2", + "toolshed.g2.bx.psu.edu/repos/melpetera/generic_filter/generic_filter/2017.04" + ], + "topic_name": "metabolomics", + "topic_name_human": "Metabolomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "lcms", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/metabolomics/tutorials/lcms/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 96, + "visitors": 10615, + "workflows": [ + { + "creators": [], + "description": "Mass spectrometry: LC-MS analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHU_neg_048.mzML\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 10[label=\"xcms fillChromPeaks fillPeaks\"]\n 9 -> 10 [label=\"xsetRData\"]\n 11[label=\"CAMERA.annotate\"]\n 10 -> 11 [label=\"xsetRData\"]\n 12[label=\"Batch_correction\"]\n 10 -> 12 [label=\"dataMatrix\"]\n 0 -> 12 [label=\"output\"]\n 11 -> 12 [label=\"variableMetadata\"]\n 13[label=\"Quality Metrics\"]\n 10 -> 13 [label=\"dataMatrix\"]\n 0 -> 13 [label=\"output\"]\n 11 -> 13 [label=\"variableMetadata\"]\n 14[label=\"Quality Metrics\"]\n 12 -> 14 [label=\"dataMatrix_out\"]\n 0 -> 14 [label=\"output\"]\n 12 -> 14 [label=\"variableMetadata_out\"]\n 15[label=\"Generic_Filter\"]\n 12 -> 15 [label=\"dataMatrix_out\"]\n 14 -> 15 [label=\"sampleMetadata_out\"]\n 14 -> 15 [label=\"variableMetadata_out\"]\n 16[label=\"Univariate\"]\n 15 -> 16 [label=\"dataMatrix_out\"]\n 15 -> 16 [label=\"sampleMetadata_out\"]\n 15 -> 16 [label=\"variableMetadata_out\"]\n 17[label=\"Generic_Filter\"]\n 15 -> 17 [label=\"dataMatrix_out\"]\n 15 -> 17 [label=\"sampleMetadata_out\"]\n 16 -> 17 [label=\"variableMetadata_out\"]\n 18[label=\"HMDB MS search\"]\n 17 -> 18 [label=\"variableMetadata_out\"]\n 2[label=\"MSnbase readMSData\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"xcms findChromPeaks xcmsSet\"]\n 2 -> 3 [label=\"xsetRData\"]\n 4[label=\"xcms plot chromatogram\"]\n 3 -> 4 [label=\"xsetRData\"]\n 5[label=\"xcms findChromPeaks Merger\"]\n 3 -> 5 [label=\"xsetRData\"]\n 6[label=\"xcms groupChromPeaks group\"]\n 5 -> 6 [label=\"xsetRData\"]\n 7[label=\"xcms adjustRtime retcor\"]\n 6 -> 7 [label=\"xsetRData\"]\n 8[label=\"xcms plot chromatogram\"]\n 7 -> 8 [label=\"xsetRData\"]\n 9[label=\"xcms groupChromPeaks group\"]\n 7 -> 9 [label=\"xsetRData\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "f03a103c9169255a7c663abd9d6823bc4fe43f55", + "message": "metabo - lcms - init tutorial from workflow", + "num": 1, + "short_hash": "f03a103c9", + "unix": "1559851449" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "HU_neg_048.mzML" + } + ], + "label": "HU_neg_048.mzML", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 368 + }, + "tool_id": null, + "tool_state": "{\"name\": \"HU_neg_048.mzML\"}", + "tool_version": null, + "type": "data_input", + "uuid": "efe7b8e1-b3ba-4ca8-b29d-fc2c2e30be6e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 200, + "top": 474 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "55fd4029-b619-4d84-9bc7-5e3d4e480d34", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nHU_neg_048.mzML\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"xcms fillChromPeaks fillPeaks\"];\n 9 -->|xsetRData| 10;\n 11[\"CAMERA.annotate\"];\n 10 -->|xsetRData| 11;\n 12[\"Batch_correction\"];\n 10 -->|dataMatrix| 12;\n 0 -->|output| 12;\n 11 -->|variableMetadata| 12;\n 13[\"Quality Metrics\"];\n 10 -->|dataMatrix| 13;\n 0 -->|output| 13;\n 11 -->|variableMetadata| 13;\n 14[\"Quality Metrics\"];\n 12 -->|dataMatrix_out| 14;\n 0 -->|output| 14;\n 12 -->|variableMetadata_out| 14;\n 15[\"Generic_Filter\"];\n 12 -->|dataMatrix_out| 15;\n 14 -->|sampleMetadata_out| 15;\n 14 -->|variableMetadata_out| 15;\n 16[\"Univariate\"];\n 15 -->|dataMatrix_out| 16;\n 15 -->|sampleMetadata_out| 16;\n 15 -->|variableMetadata_out| 16;\n 17[\"Generic_Filter\"];\n 15 -->|dataMatrix_out| 17;\n 15 -->|sampleMetadata_out| 17;\n 16 -->|variableMetadata_out| 17;\n 18[\"HMDB MS search\"];\n 17 -->|variableMetadata_out| 18;\n 2[\"MSnbase readMSData\"];\n 1 -->|output| 2;\n 3[\"xcms findChromPeaks xcmsSet\"];\n 2 -->|xsetRData| 3;\n 4[\"xcms plot chromatogram\"];\n 3 -->|xsetRData| 4;\n 5[\"xcms findChromPeaks Merger\"];\n 3 -->|xsetRData| 5;\n 6[\"xcms groupChromPeaks group\"];\n 5 -->|xsetRData| 6;\n 7[\"xcms adjustRtime retcor\"];\n 6 -->|xsetRData| 7;\n 8[\"xcms plot chromatogram\"];\n 7 -->|xsetRData| 8;\n 9[\"xcms groupChromPeaks group\"];\n 7 -->|xsetRData| 9;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Workflow Constructed From History 'imported: testpourGCC'", + "outputs": [], + "parent_id": "metabolomics/lcms", + "path": "topics/metabolomics/tutorials/lcms/workflows/main_workflow.ga", + "tags": [ + "metabolomics" + ], + "test_results": null, + "tests": false, + "title": "Workflow Constructed From History 'imported: testpourGCC'", + "topic_id": "metabolomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/metabolomics-lcms/versions/main-workflow", + "tutorial_id": "lcms", + "url": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/lcms/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/metabolomics/tutorials/lcms/workflows/main_workflow.html", + "version": 4, + "wfid": "metabolomics-lcms", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ethevenot/qualitymetrics/quality_metrics/2.2.8", + "toolshed.g2.bx.psu.edu/repos/ethevenot/univariate/Univariate/2.2.4", + "toolshed.g2.bx.psu.edu/repos/fgiacomoni/hmdb_ms_search/wsdl_hmdb/2018-10-01", + "toolshed.g2.bx.psu.edu/repos/lecorguille/camera_annotate/abims_CAMERA_annotateDiffreport/2.2.4", + "toolshed.g2.bx.psu.edu/repos/lecorguille/msnbase_readmsdata/msnbase_readmsdata/2.8.2.1", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.4.4.0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_group/abims_xcms_group/3.4.4.0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_merge/xcms_merge/3.4.4.0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_plot_chromatogram/xcms_plot_chromatogram/3.4.4.0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_retcor/abims_xcms_retcor/3.4.4.1", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_xcmsset/abims_xcms_xcmsSet/3.4.4.1", + "toolshed.g2.bx.psu.edu/repos/melpetera/batchcorrection/Batch_correction/2.1.2", + "toolshed.g2.bx.psu.edu/repos/melpetera/generic_filter/generic_filter/2017.04" + ], + "workflowhub_id": "1065" + } + ], + "zenodo_link": "https://zenodo.org/record/3244991" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "camera_annotate", + "owner": "lecorguille", + "revisions": "512c2b701d96", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msnbase_readmsdata", + "owner": "lecorguille", + "revisions": "11ab2081bd4a", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_export_samplemetadata", + "owner": "lecorguille", + "revisions": "94eb263cfab4", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_fillpeaks", + "owner": "lecorguille", + "revisions": "26d77e9ceb49", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_group", + "owner": "lecorguille", + "revisions": "d45a786cbc40", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_merge", + "owner": "lecorguille", + "revisions": "5bd125a3f3b0", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_plot_chromatogram", + "owner": "lecorguille", + "revisions": "024974037c4e", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_retcor", + "owner": "lecorguille", + "revisions": "aa252eec9229", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_summary", + "owner": "lecorguille", + "revisions": "018a9771de28", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_xcmsset", + "owner": "lecorguille", + "revisions": "b02d1992a43a", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "idchoice", + "owner": "melpetera", + "revisions": "bb19b1d15732", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "intensity_checks", + "owner": "melpetera", + "revisions": "a31f3f802b2b", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: camera_annotate\n owner: lecorguille\n revisions: 512c2b701d96\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msnbase_readmsdata\n owner: lecorguille\n revisions: 11ab2081bd4a\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_export_samplemetadata\n owner: lecorguille\n revisions: 94eb263cfab4\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_fillpeaks\n owner: lecorguille\n revisions: 26d77e9ceb49\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_group\n owner: lecorguille\n revisions: d45a786cbc40\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_merge\n owner: lecorguille\n revisions: 5bd125a3f3b0\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_plot_chromatogram\n owner: lecorguille\n revisions: '024974037c4e'\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_retcor\n owner: lecorguille\n revisions: aa252eec9229\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_summary\n owner: lecorguille\n revisions: '018a9771de28'\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_xcmsset\n owner: lecorguille\n revisions: b02d1992a43a\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: idchoice\n owner: melpetera\n revisions: bb19b1d15732\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: intensity_checks\n owner: melpetera\n revisions: a31f3f802b2b\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms-preprocessing/tutorial.json", + "contributors": [ + { + "id": "melpetera", + "joined": "2019-06", + "name": "M\u00e9lanie Petera", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/melpetera/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/melpetera.json" + }, + { + "id": "jfrancoismartin", + "joined": "2019-06", + "name": "Jean-Fran\u00e7ois Martin", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jfrancoismartin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jfrancoismartin.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "id": "lecorguille", + "joined": "2017-09", + "name": "Gildas Le Corguill\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lecorguille/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lecorguille.json" + }, + { + "id": "workflow4metabolomics", + "joined": "2019-06", + "name": "Workflow4Metabolomics core team", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/workflow4metabolomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/workflow4metabolomics.json" + } + ], + "dir": "topics/metabolomics/tutorials/lcms-preprocessing", + "edam_operation": [ + "Label-free quantification", + "Chromatogram visualisation", + "Validation", + "Filtering", + "Chromatographic alignment", + "Mass spectrum visualisation", + "Peak detection" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "metabolomics/lcms-preprocessing", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "To process untargeted LC-MS metabolomic data preprocessing, you need a large variety of steps and tools.", + "Although main steps are standard, various ways to combine and to set parameters for tools exist, depending on your data.", + "Resources are available in Galaxy, but do not forget that you need appropriate knowledge to perform a relevant analysis." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "To comprehend the diversity of steps necessary to perform untargeted LC-MS metabolomic preprocessing.", + "To get familiar with the way to use XCMS-based Galaxy modules dedicated to LC-MS data preprocessing.", + "To evaluate the potential of a workflow approach when dealing with LC-MS preprocessing." + ], + "pageviews": 5734777, + "pub_date": "2020-02-04", + "questions": [ + "What are the main steps of untargeted LC-MS data preprocessing for metabolomic analyses?", + "How to conduct metabolomic data preprocessing using Galaxy?" + ], + "short_id": "T00197", + "short_tools": [ + "intens_check", + "abims_xcms_fillPeaks", + "msnbase_readmsdata", + "abims_xcms_summary", + "abims_xcms_xcmsSet", + "idchoice", + "xcms_merge", + "xcms_plot_chromatogram", + "abims_xcms_retcor", + "abims_CAMERA_annotateDiffreport", + "abims_xcms_group", + "xcms_export_samplemetadata" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "3h", + "title": "Mass spectrometry: LC-MS preprocessing with XCMS", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/lecorguille/camera_annotate/abims_CAMERA_annotateDiffreport/2.2.6+camera1.48.0-galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/msnbase_readmsdata/msnbase_readmsdata/2.16.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_export_samplemetadata/xcms_export_samplemetadata/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_group/abims_xcms_group/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_merge/xcms_merge/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_plot_chromatogram/xcms_plot_chromatogram/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_retcor/abims_xcms_retcor/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_summary/abims_xcms_summary/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_xcmsset/abims_xcms_xcmsSet/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/melpetera/idchoice/idchoice/19.12", + "toolshed.g2.bx.psu.edu/repos/melpetera/intensity_checks/intens_check/1.2.8" + ], + "topic_name": "metabolomics", + "topic_name_human": "Metabolomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "lcms-preprocessing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/metabolomics/tutorials/lcms-preprocessing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms-preprocessing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms-preprocessing/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 294, + "visitors": 2068539, + "zenodo_link": "https://zenodo.org/record/3757956" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "id": "lecorguille", + "joined": "2017-09", + "name": "Gildas Le Corguill\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lecorguille/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lecorguille.json" + }, + { + "github": false, + "id": "cecilecanlet", + "joined": "2018-09", + "name": "C\u00e9cile Canlet", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cecilecanlet/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cecilecanlet.json" + } + ], + "dir": "topics/metabolomics/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "metabolomics/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-01-12", + "pageviews": 5726884, + "priority": 1, + "pub_date": "2018-11-20", + "redirect_from": [ + "/topics/metabolomics/slides/introduction", + "/short/metabolomics/introduction/slides", + "/short/S00076" + ], + "short_id": "S00076", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to Metabolomics", + "tools": [], + "topic_name": "metabolomics", + "topic_name_human": "Metabolomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/metabolomics/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/introduction/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "multivariate", + "owner": "ethevenot", + "revisions": "5526f8258e8a", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qualitymetrics", + "owner": "ethevenot", + "revisions": "acdf51018708", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "normalization", + "owner": "marie-tremblay-metatoul", + "revisions": "221cbd549c40", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "batchcorrection", + "owner": "melpetera", + "revisions": "23314e1192d4", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "generic_filter", + "owner": "melpetera", + "revisions": "cfd7c4aa5c26", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "intensity_checks", + "owner": "melpetera", + "revisions": "a31f3f802b2b", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: multivariate\n owner: ethevenot\n revisions: 5526f8258e8a\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qualitymetrics\n owner: ethevenot\n revisions: acdf51018708\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: normalization\n owner: marie-tremblay-metatoul\n revisions: 221cbd549c40\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: batchcorrection\n owner: melpetera\n revisions: 23314e1192d4\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: generic_filter\n owner: melpetera\n revisions: cfd7c4aa5c26\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: intensity_checks\n owner: melpetera\n revisions: a31f3f802b2b\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms-dataprocessing/tutorial.json", + "contributors": [ + { + "id": "melpetera", + "joined": "2019-06", + "name": "M\u00e9lanie Petera", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/melpetera/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/melpetera.json" + }, + { + "id": "workflow4metabolomics", + "joined": "2019-06", + "name": "Workflow4Metabolomics core team", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/workflow4metabolomics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/workflow4metabolomics.json" + } + ], + "dir": "topics/metabolomics/tutorials/lcms-dataprocessing", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "metabolomics/lcms-dataprocessing", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Data processing is a key step in untargeted Metabolomics analyses. The question of data filtering and correction must be addressed in all projects, even thought in some cases it may lead to the decision of no action on data. In particular, blank filtering, pool variation study and signal drift correction are common aspects to consider when dealing with LC-MS.", + "Although some main steps are standard, various ways to combine tools exist. Remember that depending on your context (type of samples, protocol specificities...) specific filters/normalisations may be needed, independently of standards ones.", + "A variety of tools is available in Galaxy, but do not forget that you need appropriate knowledge to decide what to use depending on your data." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "To comprehend the key role of data processing.", + "To comprehend the diversity of steps necessary to perform untargeted LC-MS metabolomic data processing.", + "To be familiar with the \"identify then perform\" approach necessary to deploy relevant data processing strategies." + ], + "pageviews": 2652, + "pub_date": "2021-12-14", + "questions": [ + "Why should one consider performing data processing steps when dealing with Metabolomics data?", + "How to conduct LCMS-based untargeted metabolomic data processing using Galaxy?" + ], + "short_id": "T00196", + "short_tools": [ + "normalization", + "intens_check", + "quality_metrics", + "generic_filter", + "Batch_correction", + "Multivariate" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Mass spectrometry: LC-MS data processing", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/ethevenot/multivariate/Multivariate/2.3.10", + "toolshed.g2.bx.psu.edu/repos/ethevenot/qualitymetrics/quality_metrics/2.2.8", + "toolshed.g2.bx.psu.edu/repos/marie-tremblay-metatoul/normalization/normalization/1.0.7", + "toolshed.g2.bx.psu.edu/repos/melpetera/batchcorrection/Batch_correction/3.0.0", + "toolshed.g2.bx.psu.edu/repos/melpetera/generic_filter/generic_filter/2020.01", + "toolshed.g2.bx.psu.edu/repos/melpetera/intensity_checks/intens_check/1.2.8" + ], + "topic_name": "metabolomics", + "topic_name_human": "Metabolomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "lcms-dataprocessing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/metabolomics/tutorials/lcms-dataprocessing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms-dataprocessing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/lcms-dataprocessing/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 115, + "visitors": 1918, + "zenodo_link": "https://zenodo.org/record/5179809" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "msnbase_readmsdata", + "owner": "lecorguille", + "revisions": "11ab2081bd4a", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_fillpeaks", + "owner": "lecorguille", + "revisions": "26d77e9ceb49", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_group", + "owner": "lecorguille", + "revisions": "d45a786cbc40", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_merge", + "owner": "lecorguille", + "revisions": "5bd125a3f3b0", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xcms_xcmsset", + "owner": "lecorguille", + "revisions": "b02d1992a43a", + "tool_panel_section_label": "Metabolomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: msnbase_readmsdata\n owner: lecorguille\n revisions: 11ab2081bd4a\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_fillpeaks\n owner: lecorguille\n revisions: 26d77e9ceb49\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_group\n owner: lecorguille\n revisions: d45a786cbc40\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_merge\n owner: lecorguille\n revisions: 5bd125a3f3b0\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xcms_xcmsset\n owner: lecorguille\n revisions: b02d1992a43a\n tool_panel_section_label: Metabolomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/gcms/tutorial.json", + "contributors": [ + { + "id": "jsaintvanne", + "joined": "2020-01", + "name": "Julien Saint-Vanne", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jsaintvanne/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jsaintvanne.json" + } + ], + "dir": "topics/metabolomics/tutorials/gcms", + "draft": true, + "edam_operation": [ + "Label-free quantification", + "Chromatogram visualisation", + "Validation", + "Filtering", + "Chromatographic alignment", + "Mass spectrum visualisation", + "Peak detection" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "metabolomics/gcms", + "inexact_supported_servers": [ + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Have a good file containing all your peaks during the first stopover", + "Find all your unknowns in your datas", + "Find your stanards if you have some" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "To be sure you have already comprehend the diversity of MS pre-processing analysis.", + "To learn the principal functions of metaMS package through Galaxy.", + "To evaluate the potential of this new GC-MS workflow for GC-MS metabolomic analysis." + ], + "pageviews": 2025, + "pub_date": "2021-09-22", + "questions": [ + "What are the main steps of GC-MS datas processing for metabolomic analysis ?", + "How te be able to annotate the maximum of unknowns using Galaxy ?" + ], + "requirements": [ + { + "topic_name": "metabolomics", + "tutorials": [ + "lcms" + ], + "type": "internal" + } + ], + "short_id": "T00194", + "short_tools": [ + "abims_xcms_fillPeaks", + "abims_xcms_xcmsSet", + "xcms_merge", + "abims_xcms_group", + "msnbase_readmsdata" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "2H", + "title": "Mass spectrometry : GC-MS analysis with metaMS package", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/lecorguille/msnbase_readmsdata/msnbase_readmsdata/2.16.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_fillpeaks/abims_xcms_fillPeaks/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_group/abims_xcms_group/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_merge/xcms_merge/3.12.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lecorguille/xcms_xcmsset/abims_xcms_xcmsSet/3.12.0+galaxy0" + ], + "topic_name": "metabolomics", + "topic_name_human": "Metabolomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gcms", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/metabolomics/tutorials/gcms/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/gcms/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/metabolomics/tutorials/gcms/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 105, + "visitors": 1175, + "zenodo_link": "https://zenodo.org/record/3244991" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/microbiome/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "microbiome/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-08-08", + "pageviews": 5726884, + "priority": 0, + "pub_date": "2017-06-22", + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "9OY1mklWuK0" + } + ], + "redirect_from": [ + "/topics/metagenomics/slides/introduction", + "/topics/microbiome/slides/introduction", + "/topics/metagenomics/tutorials/introduction/slides", + "/short/microbiome/introduction/slides", + "/short/S00078", + "/short/S00114" + ], + "short_id": "S00114", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "9OY1mklWuK0" + } + ], + "subtopic": "intro", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to Microbiome Analysis", + "tools": [], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/introduction/slides.json" + }, + "version": 5, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "73486cc6170e", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann2", + "owner": "iuc", + "revisions": "1ab06263e083", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann2_regroup_table", + "owner": "iuc", + "revisions": "a1747df2bc21", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann2_renorm_table", + "owner": "iuc", + "revisions": "ba4dfbdc1295", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan2", + "owner": "iuc", + "revisions": "8c82c4d90cc6", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan2krona", + "owner": "iuc", + "revisions": "ebb74774457e", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_align_seqs", + "owner": "iuc", + "revisions": "2692b3107533", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_otu", + "owner": "iuc", + "revisions": "e664787de3ab", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_seqs", + "owner": "iuc", + "revisions": "cc9c7b550c29", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster_split", + "owner": "iuc", + "revisions": "a29ac7993cb0", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_seqs", + "owner": "iuc", + "revisions": "ecbd9ed733e6", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_filter_seqs", + "owner": "iuc", + "revisions": "bf20a30c263a", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_biom", + "owner": "iuc", + "revisions": "5dc4d49a238a", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_group", + "owner": "iuc", + "revisions": "8c964d119da8", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_shared", + "owner": "iuc", + "revisions": "83dabeeadb55", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_merge_files", + "owner": "iuc", + "revisions": "a70b25374a23", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_pre_cluster", + "owner": "iuc", + "revisions": "58d0fe3cc0f2", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_screen_seqs", + "owner": "iuc", + "revisions": "8743aecd26a9", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_seqs", + "owner": "iuc", + "revisions": "e4a4cb8b6bbf", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_unique_seqs", + "owner": "iuc", + "revisions": "1f72d9a3d09f", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krona_text", + "owner": "saskia-hiltemann", + "revisions": "b14f1444e464", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: 73486cc6170e\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann2\n owner: iuc\n revisions: 1ab06263e083\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann2_regroup_table\n owner: iuc\n revisions: a1747df2bc21\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann2_renorm_table\n owner: iuc\n revisions: ba4dfbdc1295\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan2\n owner: iuc\n revisions: 8c82c4d90cc6\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan2krona\n owner: iuc\n revisions: ebb74774457e\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_align_seqs\n owner: iuc\n revisions: 2692b3107533\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_otu\n owner: iuc\n revisions: e664787de3ab\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_seqs\n owner: iuc\n revisions: cc9c7b550c29\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster_split\n owner: iuc\n revisions: a29ac7993cb0\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_seqs\n owner: iuc\n revisions: ecbd9ed733e6\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_filter_seqs\n owner: iuc\n revisions: bf20a30c263a\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_biom\n owner: iuc\n revisions: 5dc4d49a238a\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_group\n owner: iuc\n revisions: 8c964d119da8\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_shared\n owner: iuc\n revisions: 83dabeeadb55\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_merge_files\n owner: iuc\n revisions: a70b25374a23\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_pre_cluster\n owner: iuc\n revisions: 58d0fe3cc0f2\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_screen_seqs\n owner: iuc\n revisions: 8743aecd26a9\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_seqs\n owner: iuc\n revisions: e4a4cb8b6bbf\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_unique_seqs\n owner: iuc\n revisions: 1f72d9a3d09f\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krona_text\n owner: saskia-hiltemann\n revisions: b14f1444e464\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/general-tutorial/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/microbiome/tutorials/general-tutorial", + "edam_ontology": [ + "topic_3174", + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Phylogenetic analysis", + "Taxonomic classification", + "Sequence read processing", + "DNA barcoding", + "Sequence clustering" + ], + "edam_topic": [ + "Metagenomics", + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/general-tutorial", + "inexact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "With amplicon data, we can extract information about the studied community structure", + "With shotgun data, we can extract information about the studied community structure and also the functions realised by the community", + "The tools used to analyze amplicon and shotgun data are different, except for the visualisation", + "Metagenomics data analyses are complex and time-consuming" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Choosing the best approach to analyze metagenomics data", + "Selection of tools to analyze amplicon data or shotgun data", + "Visualisation of a community structure" + ], + "pageviews": 4081, + "pub_date": "2017-06-22", + "questions": [ + "How to analyze metagenomics data?", + "What information can be extracted of metagenomics data?", + "What is the difference between amplicon and shotgun data?", + "What are the difference in the analyses of amplicon and shotgun data?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/general-tutorial/tutorial", + "/short/microbiome/general-tutorial", + "/short/T00201", + "/short/T00385" + ], + "short_id": "T00385", + "short_tools": [ + "mothur_cluster_split", + "mothur_count_seqs", + "mothur_classify_otu", + "mothur_merge_files", + "mothur_pre_cluster", + "humann2_regroup_table", + "mothur_make_biom", + "mothur_make_group", + "mothur_screen_seqs", + "mothur_unique_seqs", + "mothur_summary_seqs", + "metaphlan2", + "humann2", + "krona-text", + "mothur_make_shared", + "taxonomy_krona_chart", + "mothur_align_seqs", + "humann2_renorm_table", + "mothur_classify_seqs", + "mothur_filter_seqs", + "metaphlan2krona" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "intro", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "microgalaxy" + ], + "time_estimation": "2H30M", + "title": "Analyses of metagenomics data - The global picture", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.6.1", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2/humann2/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2_regroup_table/humann2_regroup_table/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2_renorm_table/humann2_renorm_table/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan2/metaphlan2/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan2krona/metaphlan2krona/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_biom/mothur_make_biom/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_group/mothur_make_group/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/saskia-hiltemann/krona_text/krona-text/1" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "general-tutorial", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/general-tutorial/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/general-tutorial/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/general-tutorial/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 165, + "visitors": 3013, + "workflows": [ + { + "creators": [], + "description": "Analyses of metagenomics data - The global picture", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSILVA Reference\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnguil Soil Sample\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPampa Soil Sample\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTrainset PDS alignment\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTrainset PDS taxonomy\"]\n 5[label=\"Merge.files\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Make.group\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Unique.seqs\"]\n 5 -> 7 [label=\"output\"]\n 8[label=\"Count.seqs\"]\n 6 -> 8 [label=\"output\"]\n 7 -> 8 [label=\"out_names\"]\n 9[label=\"Summary.seqs\"]\n 8 -> 9 [label=\"seq_count\"]\n 7 -> 9 [label=\"out_fasta\"]\n 10[label=\"Screen.seqs\"]\n 7 -> 10 [label=\"out_fasta\"]\n 8 -> 10 [label=\"seq_count\"]\n 11[label=\"Align.seqs\"]\n 0 -> 11 [label=\"output\"]\n 10 -> 11 [label=\"fasta_out\"]\n 12[label=\"Summary.seqs\"]\n 10 -> 12 [label=\"count_out\"]\n 11 -> 12 [label=\"out_file\"]\n 13[label=\"Screen.seqs\"]\n 11 -> 13 [label=\"out_file\"]\n 10 -> 13 [label=\"count_out\"]\n 14[label=\"Filter.seqs\"]\n 13 -> 14 [label=\"fasta_out\"]\n 15[label=\"Pre.cluster\"]\n 14 -> 15 [label=\"filteredfasta\"]\n 13 -> 15 [label=\"count_out\"]\n 16[label=\"Classify.seqs\"]\n 15 -> 16 [label=\"count_out\"]\n 3 -> 16 [label=\"output\"]\n 15 -> 16 [label=\"fasta_out\"]\n 4 -> 16 [label=\"output\"]\n 17[label=\"Cluster.split\"]\n 16 -> 17 [label=\"taxonomy_out\"]\n 15 -> 17 [label=\"fasta_out\"]\n 15 -> 17 [label=\"count_out\"]\n 18[label=\"Make.shared\"]\n 15 -> 18 [label=\"count_out\"]\n 17 -> 18 [label=\"otulist\"]\n k6ccdf4c57f914ba1ace4ad3efc649be2[color=lightseagreen,label=\"Output\\nmothur_make_shared_shared\"]\n 18 -> k6ccdf4c57f914ba1ace4ad3efc649be2\n 19[label=\"Classify.otu\"]\n 15 -> 19 [label=\"count_out\"]\n 16 -> 19 [label=\"taxonomy_out\"]\n 17 -> 19 [label=\"otulist\"]\n 20[label=\"Make.biom\"]\n 18 -> 20 [label=\"shared\"]\n 19 -> 20 [label=\"taxonomies\"]\n 21[label=\"Visualize with Krona\"]\n 19 -> 21 [label=\"taxonomies\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "silva" + } + ], + "label": "SILVA Reference", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 463 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "372b68d9-2f00-4275-a372-ffe89cca2a63", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "anguil_soil_sample" + } + ], + "label": "Anguil Soil Sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 209, + "top": 746.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "3beec7e9-acbe-4c92-85b3-62d6ab3cd83d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "pampa_soil_sample" + } + ], + "label": "Pampa Soil Sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 212, + "top": 866.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "e23834b7-d5be-44b1-bbca-7bdea6884022", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "trainset_alignment" + } + ], + "label": "Trainset PDS alignment", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2468.5, + "top": 280.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "7368ffb8-03bd-42b4-bb81-53d147cd419b", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "trainset_taxonomy" + } + ], + "label": "Trainset PDS taxonomy", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2476.5, + "top": 389.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "31d8b02c-9ecc-4d55-ac86-8930adb5abc8", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSILVA Reference\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nAnguil Soil Sample\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nPampa Soil Sample\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nTrainset PDS alignment\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nTrainset PDS taxonomy\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Merge.files\"];\n 2 -->|output| 5;\n 1 -->|output| 5;\n 6[\"Make.group\"];\n 1 -->|output| 6;\n 2 -->|output| 6;\n 7[\"Unique.seqs\"];\n 5 -->|output| 7;\n 8[\"Count.seqs\"];\n 6 -->|output| 8;\n 7 -->|out_names| 8;\n 9[\"Summary.seqs\"];\n 8 -->|seq_count| 9;\n 7 -->|out_fasta| 9;\n 10[\"Screen.seqs\"];\n 7 -->|out_fasta| 10;\n 8 -->|seq_count| 10;\n 11[\"Align.seqs\"];\n 0 -->|output| 11;\n 10 -->|fasta_out| 11;\n 12[\"Summary.seqs\"];\n 10 -->|count_out| 12;\n 11 -->|out_file| 12;\n 13[\"Screen.seqs\"];\n 11 -->|out_file| 13;\n 10 -->|count_out| 13;\n 14[\"Filter.seqs\"];\n 13 -->|fasta_out| 14;\n 15[\"Pre.cluster\"];\n 14 -->|filteredfasta| 15;\n 13 -->|count_out| 15;\n 16[\"Classify.seqs\"];\n 15 -->|count_out| 16;\n 3 -->|output| 16;\n 15 -->|fasta_out| 16;\n 4 -->|output| 16;\n 17[\"Cluster.split\"];\n 16 -->|taxonomy_out| 17;\n 15 -->|fasta_out| 17;\n 15 -->|count_out| 17;\n 18[\"Make.shared\"];\n 15 -->|count_out| 18;\n 17 -->|otulist| 18;\n 6ccdf4c5-7f91-4ba1-ace4-ad3efc649be2[\"Output\\nmothur_make_shared_shared\"];\n 18 --> 6ccdf4c5-7f91-4ba1-ace4-ad3efc649be2;\n style 6ccdf4c5-7f91-4ba1-ace4-ad3efc649be2 stroke:#2c3143,stroke-width:4px;\n 19[\"Classify.otu\"];\n 15 -->|count_out| 19;\n 16 -->|taxonomy_out| 19;\n 17 -->|otulist| 19;\n 20[\"Make.biom\"];\n 18 -->|shared| 20;\n 19 -->|taxonomies| 20;\n 21[\"Visualize with Krona\"];\n 19 -->|taxonomies| 21;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Amplicon Tutorial", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.36.1.0", + "errors": null, + "id": 18, + "input_connections": { + "intype|group": { + "id": 15, + "output_name": "count_out" + }, + "intype|otu": { + "id": 17, + "output_name": "otulist" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Make.shared", + "name": "intype" + }, + { + "description": "runtime parameter for tool Make.shared", + "name": "intype" + } + ], + "label": null, + "name": "Make.shared", + "outputs": [ + { + "name": "labelshares", + "type": "input" + }, + { + "name": "logfile", + "type": "txt" + }, + { + "name": "shared", + "type": "mothur.shared" + }, + { + "name": "groupout", + "type": "mothur.groups" + } + ], + "position": { + "left": 3069, + "top": 265 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.36.1.0", + "tool_shed_repository": { + "changeset_revision": "83dabeeadb55", + "name": "mothur_make_shared", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"intype\": \"{\\\"group\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"__current_case__\\\": 0, \\\"label\\\": [\\\"0.03\\\"], \\\"groups\\\": null, \\\"infile\\\": \\\"otulist\\\", \\\"otu\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\", \"chromInfo\": \"\\\"/data/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\\\"\"}", + "tool_version": "1.36.1.0", + "type": "tool", + "uuid": "d554ed42-8658-47c5-952f-9dc73834f267", + "workflow_outputs": [ + { + "label": "mothur_make_shared_shared", + "output_name": "shared", + "uuid": "6ccdf4c5-7f91-4ba1-ace4-ad3efc649be2" + } + ] + } + ], + "parent_id": "microbiome/general-tutorial", + "path": "topics/microbiome/tutorials/general-tutorial/workflows/amplicon.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": true, + "title": "Amplicon Tutorial", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-general-tutorial/versions/amplicon", + "tutorial_id": "general-tutorial", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/amplicon.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/amplicon.html", + "version": 1, + "wfid": "microbiome-general-tutorial", + "wfname": "amplicon", + "workflow": "amplicon.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_biom/mothur_make_biom/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_group/mothur_make_group/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/saskia-hiltemann/krona_text/krona-text/1" + ], + "workflowhub_id": "1070" + }, + { + "creators": [], + "description": "Analyses of metagenomics data - The global picture", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"MetaPhlAn2\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Format MetaPhlAn2\"]\n 1 -> 2 [label=\"output_file\"]\n 3[label=\"HUMAnN2\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output_file\"]\n 4[label=\"Krona pie chart\"]\n 2 -> 4 [label=\"krona\"]\n 5[label=\"Renormalize\"]\n 3 -> 5 [label=\"gene_families_tsv\"]\n 6[label=\"Regroup\"]\n 3 -> 6 [label=\"gene_families_tsv\"]\n 7[label=\"Renormalize\"]\n 6 -> 7 [label=\"output_table\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR606451_pampa.fasta" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR606451_pampa.fasta\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2b9a76e9-f7fc-451a-a6f7-16d87f96547b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"MetaPhlAn2\"];\n 0 -->|output| 1;\n 2[\"Format MetaPhlAn2\"];\n 1 -->|output_file| 2;\n 3[\"HUMAnN2\"];\n 0 -->|output| 3;\n 1 -->|output_file| 3;\n 4[\"Krona pie chart\"];\n 2 -->|krona| 4;\n 5[\"Renormalize\"];\n 3 -->|gene_families_tsv| 5;\n 6[\"Regroup\"];\n 3 -->|gene_families_tsv| 6;\n 7[\"Renormalize\"];\n 6 -->|output_table| 7;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "WGS Part In \"Analyses Of Metagenomics Data - The Global Picture\"", + "outputs": [], + "parent_id": "microbiome/general-tutorial", + "path": "topics/microbiome/tutorials/general-tutorial/workflows/wgs-worklow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "WGS Part In \"Analyses Of Metagenomics Data - The Global Picture\"", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-general-tutorial/versions/wgs-worklow", + "tutorial_id": "general-tutorial", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/wgs-worklow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/general-tutorial/workflows/wgs-worklow.html", + "version": 1, + "wfid": "microbiome-general-tutorial", + "wfname": "wgs-worklow", + "workflow": "wgs-worklow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.6.1", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2/humann2/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2_regroup_table/humann2_regroup_table/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann2_renorm_table/humann2_renorm_table/0.9.9.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan2/metaphlan2/2.6.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan2krona/metaphlan2krona/2.6.0.0" + ], + "workflowhub_id": "1067" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.815875" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "racon", + "owner": "bgruening", + "revisions": "aa39b19ca11e", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "racon", + "owner": "bgruening", + "revisions": "a199cd7ac344", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "067592b6b312", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "b2860df42e16", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfa_to_fa", + "owner": "iuc", + "revisions": "49d6f8ef63b3", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfa_to_fa", + "owner": "iuc", + "revisions": "8e9d604e92f4", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "miniasm", + "owner": "iuc", + "revisions": "8b6d0d85252b", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "miniasm", + "owner": "iuc", + "revisions": "8dee0218ac7d", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "3f4d6399997b", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "8c6cd2650d1f", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "645159bcee2d", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "edbb6c5028f5", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "plasflow", + "owner": "iuc", + "revisions": "bda6012394f7", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unicycler", + "owner": "iuc", + "revisions": "0a3a602cd1e3", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unicycler", + "owner": "iuc", + "revisions": "9e3e80cc4ad4", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "staramr", + "owner": "nml", + "revisions": "da787fc8b740", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "staramr", + "owner": "nml", + "revisions": "2fd4d4c9c5c2", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: racon\n owner: bgruening\n revisions: aa39b19ca11e\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: racon\n owner: bgruening\n revisions: a199cd7ac344\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: '067592b6b312'\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: b2860df42e16\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfa_to_fa\n owner: iuc\n revisions: 49d6f8ef63b3\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfa_to_fa\n owner: iuc\n revisions: 8e9d604e92f4\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: miniasm\n owner: iuc\n revisions: 8b6d0d85252b\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: miniasm\n owner: iuc\n revisions: 8dee0218ac7d\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 3f4d6399997b\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 8c6cd2650d1f\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: 645159bcee2d\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: edbb6c5028f5\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: plasflow\n owner: iuc\n revisions: bda6012394f7\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unicycler\n owner: iuc\n revisions: 0a3a602cd1e3\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unicycler\n owner: iuc\n revisions: 9e3e80cc4ad4\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: staramr\n owner: nml\n revisions: da787fc8b740\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: staramr\n owner: nml\n revisions: 2fd4d4c9c5c2\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "nl", + "id": "willemdek11", + "joined": "2018-09", + "name": "Willem de Koning", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/willemdek11/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/willemdek11.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/microbiome/tutorials/plasmid-metagenomics-nanopore", + "edam_ontology": [ + "topic_3837", + "topic_3305", + "topic_3174", + "topic_3301", + "topic_3324", + "topic_0080", + "topic_4013" + ], + "edam_operation": [ + "De-novo assembly", + "Sequence analysis", + "Box-Whisker plot plotting", + "Pairwise sequence alignment", + "Scatter plot plotting", + "Mapping assembly", + "Sequence assembly visualisation", + "Genome assembly", + "Aggregation" + ], + "edam_topic": [ + "Metagenomic sequencing", + "Public health and epidemiology", + "Metagenomics", + "Microbiology", + "Infectious disease", + "Sequence analysis", + "Antimicrobial Resistance" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/plasmid-metagenomics-nanopore", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Minimap2, Miniasm, and Racon can be used for quickly assembling Nanopore data", + "Unicycler can be used to optimize settings of assembly tools", + "Nanopore sequencing is useful for reconstruction of genomes", + "Antimicrobial resistance genes are detectable after fast assembly", + "The CARD database is a useful resource describing antibiotic resistance genes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Perform Quality control on your reads", + "Assemble a genome with Minimap2/Miniasm/Racon", + "Determine the structure of the genome(s)", + "Scan for antimicrobial resistance genes with Staramr" + ], + "pageviews": 1752, + "pub_date": "2019-06-25", + "questions": [ + "How do I assemble a genome with Nanopore data?", + "How do I get more information about the structure of the genomes?", + "How do I get more information about the antimicrobial resistance genes?" + ], + "recordings": [ + { + "captioners": [ + "bebatut" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "45M", + "speakers": [ + "willemdek11" + ], + "youtube_id": "ECIl8ZU1Wko" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/plasmid-metagenomics-nanopore/tutorial", + "/short/microbiome/plasmid-metagenomics-nanopore", + "/short/T00209", + "/short/T00394" + ], + "short_id": "T00394", + "short_tools": [ + "nanoplot", + "gfa_to_fa", + "racon", + "PlasFlow", + "miniasm", + "minimap2", + "staramr_search", + "bandage_image", + "unicycler" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "nanopore", + "plasmids", + "assembly", + "amr", + "microgalaxy" + ], + "time_estimation": "3h", + "title": "Antibiotic resistance detection", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.3.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.4.13", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa/0.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/miniasm/miniasm/0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/miniasm/miniasm/0.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/plasflow/PlasFlow/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.7.0", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.8.0", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.5.1", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.7.1+galaxy2" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "plasmid-metagenomics-nanopore", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 241, + "visitors": 1130, + "workflows": [ + { + "creators": [], + "description": "Antibiotic resistance detection", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nPlasmids\"]\n 1[label=\"NanoPlot\"]\n 0 -> 1 [label=\"output\"]\n 10[label=\"NanoPlot\"]\n 9 -> 10 [label=\"out_fa\"]\n 11[label=\"Map with minimap2\"]\n 0 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"out_fa\"]\n 12[label=\"Racon\"]\n 9 -> 12 [label=\"out_fa\"]\n 11 -> 12 [label=\"alignment_output\"]\n 0 -> 12 [label=\"output\"]\n 2[label=\"Map with minimap2\"]\n 0 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Create assemblies with Unicycler\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"miniasm\"]\n 2 -> 4 [label=\"alignment_output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Bandage Image\"]\n 3 -> 5 [label=\"assembly_graph\"]\n 6[label=\"PlasFlow\"]\n 3 -> 6 [label=\"assembly\"]\n 7[label=\"staramr\"]\n 3 -> 7 [label=\"assembly\"]\n 8[label=\"Bandage Image\"]\n 4 -> 8 [label=\"gfa\"]\n 9[label=\"GFA to FASTA\"]\n 4 -> 9 [label=\"gfa\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Plasmids", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 173, + "top": 696 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "348dcd93-2d40-4bdd-90f4-b321a1bd901d", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nPlasmids\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"NanoPlot\"];\n 0 -->|output| 1;\n 10[\"NanoPlot\"];\n 9 -->|out_fa| 10;\n 11[\"Map with minimap2\"];\n 0 -->|output| 11;\n 9 -->|out_fa| 11;\n 12[\"Racon\"];\n 9 -->|out_fa| 12;\n 11 -->|alignment_output| 12;\n 0 -->|output| 12;\n 2[\"Map with minimap2\"];\n 0 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Create assemblies with Unicycler\"];\n 0 -->|output| 3;\n 4[\"miniasm\"];\n 2 -->|alignment_output| 4;\n 0 -->|output| 4;\n 5[\"Bandage Image\"];\n 3 -->|assembly_graph| 5;\n 6[\"PlasFlow\"];\n 3 -->|assembly| 6;\n 7[\"staramr\"];\n 3 -->|assembly| 7;\n 8[\"Bandage Image\"];\n 4 -->|gfa| 8;\n 9[\"GFA to FASTA\"];\n 4 -->|gfa| 9;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Copy Of GTN Training - Antibiotic Resistance Detection", + "outputs": [], + "parent_id": "microbiome/plasmid-metagenomics-nanopore", + "path": "topics/microbiome/tutorials/plasmid-metagenomics-nanopore/workflows/Workflow-plasmid-metagenomics-nanopore.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Copy Of GTN Training - Antibiotic Resistance Detection", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-plasmid-metagenomics-nanopore/versions/workflow-plasmid-metagenomics-nanopore", + "tutorial_id": "plasmid-metagenomics-nanopore", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/workflows/Workflow-plasmid-metagenomics-nanopore.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/plasmid-metagenomics-nanopore/workflows/Workflow-plasmid-metagenomics-nanopore.html", + "version": 1, + "wfid": "microbiome-plasmid-metagenomics-nanopore", + "wfname": "workflow-plasmid-metagenomics-nanopore", + "workflow": "Workflow-plasmid-metagenomics-nanopore.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.3.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/gfa_to_fa/gfa_to_fa/0.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/miniasm/miniasm/0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.17", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.25.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/plasflow/PlasFlow/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/unicycler/unicycler/0.4.7.0", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.5.1" + ], + "workflowhub_id": "1107" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.3247504" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "1334cb4c6b68", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bracken", + "owner": "iuc", + "revisions": "79450f7fd718", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken_biom", + "owner": "iuc", + "revisions": "b582a159bb10", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_kreport2krona", + "owner": "iuc", + "revisions": "88d274322340", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan", + "owner": "iuc", + "revisions": "1a6cdf55390f", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: 1334cb4c6b68\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bracken\n owner: iuc\n revisions: 79450f7fd718\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken_biom\n owner: iuc\n revisions: b582a159bb10\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_kreport2krona\n owner: iuc\n revisions: 88d274322340\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan\n owner: iuc\n revisions: 1a6cdf55390f\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/taxonomic-profiling/tutorial.json", + "contributions": { + "authorship": [ + "sophia120199", + "bebatut", + "paulzierep" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "id": "sophia120199", + "joined": "2023-04", + "name": "Sophia Hampe", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sophia120199/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sophia120199.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/microbiome/tutorials/taxonomic-profiling", + "edam_ontology": [ + "topic_3174", + "topic_3697", + "topic_0637", + "topic_0080" + ], + "edam_operation": [ + "Visualisation", + "Nucleic acid sequence analysis", + "Taxonomic classification", + "Phylogenetic tree analysis", + "Statistical calculation", + "Aggregation" + ], + "edam_topic": [ + "Metagenomics", + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/taxonomic-profiling", + "inexact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": 4920, + "mermaid": false + }, + "key_points": [ + "There are 3 different types of taxonomic assignment (genome, gene or k-mer based)", + "Kraken or MetaPhlAn can be used in Galaxy for taxonomic assignment", + "Visualization of community profiles can be done using Krona or Pavian", + "The taxonomic classification tool to use depends on the data" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Explain what taxonomic assignment is", + "Explain how taxonomic assignment works", + "Apply Kraken and MetaPhlAn to assign taxonomic labels", + "Apply Krona and Pavian to visualize results of assignment and understand the output", + "Identify taxonomic classification tool that fits best depending on their data" + ], + "pageviews": 4993, + "pub_date": "2023-05-03", + "questions": [ + "Which species (or genera, families, ...) are present in my sample?", + "What are the different approaches and tools to get the community profile of my sample?", + "How can we visualize and compare community profiles?" + ], + "recordings": [ + { + "captioners": [ + "sophia120199" + ], + "date": "2023-05-16", + "galaxy_version": "23.01", + "length": "1H15M", + "speakers": [ + "bebatut" + ], + "youtube_id": "jszMnBKm6ig" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/taxonomic-profiling/tutorial", + "/short/microbiome/taxonomic-profiling", + "/short/T00338", + "/short/T00395" + ], + "short_id": "T00395", + "short_tools": [ + "est_abundance", + "krakentools_kreport2krona", + "__UNZIP_COLLECTION__", + "interactive_tool_phinch", + "taxonomy_krona_chart", + "interactive_tool_pavian", + "kraken2", + "metaphlan", + "kraken_biom" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metagenomics", + "taxonomic profiling", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Taxonomic Profiling and Visualization of Metagenomic Data", + "tools": [ + "__UNZIP_COLLECTION__", + "interactive_tool_pavian", + "interactive_tool_phinch", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken_biom/kraken_biom/1.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "taxonomic-profiling", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/taxonomic-profiling/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/taxonomic-profiling/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/taxonomic-profiling/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 117, + "visitors": 3655, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Taxonomic Profiling and Visualization of Metagenomic Data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nraw-reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmetadata\"]\n 2[label=\"Unzip collection\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Kraken2\"]\n 0 -> 3 [label=\"output\"]\n k3cc726a3208649859cf97bbbb13e18c5[color=lightseagreen,label=\"Output\\nkraken_report\"]\n 3 -> k3cc726a3208649859cf97bbbb13e18c5\n 4[label=\"MetaPhlAn\"]\n 2 -> 4 [label=\"forward\"]\n 2 -> 4 [label=\"reverse\"]\n k97a89be1a9f647ecb5f19ccb068b4a57[color=lightseagreen,label=\"Output\\nmetaphlan_output\"]\n 4 -> k97a89be1a9f647ecb5f19ccb068b4a57\n 5[label=\"Krakentools: Convert kraken report file\"]\n 3 -> 5 [label=\"report_output\"]\n ke610aa6c87e049a9978d2dc3ff38bb75[color=lightseagreen,label=\"Output\\nkrakentool_report\"]\n 5 -> ke610aa6c87e049a9978d2dc3ff38bb75\n 6[label=\"Kraken-biom\"]\n 3 -> 6 [label=\"report_output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Pavian\"]\n 3 -> 7 [label=\"report_output\"]\n 8[label=\"Estimate Abundance at Taxonomic Level\"]\n 3 -> 8 [label=\"report_output\"]\n 9[label=\"Krona pie chart\"]\n 4 -> 9 [label=\"krona_output_file\"]\n 10[label=\"Krona pie chart\"]\n 5 -> 10 [label=\"output\"]\n 11[label=\"Phinch Visualisation\"]\n 6 -> 11 [label=\"biomOutput\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw-reads" + } + ], + "label": "raw-reads", + "name": "raw-reads", + "outputs": [], + "position": { + "left": 0, + "top": 32 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw-reads\",\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8ceaae85-1ed7-4488-b839-53d36e642378", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "metadata" + } + ], + "label": "metadata", + "name": "metadata", + "outputs": [], + "position": { + "left": 35.48228574271107, + "top": 575.2289046420843 + }, + "tool_id": null, + "tool_state": "{\"name\": \"metadata\", \"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "715bbeb3-cb9a-49dd-a9c5-1f184f3eb34a", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nraw-reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nmetadata\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Unzip collection\"];\n 0 -->|output| 2;\n 3[\"Kraken2\"];\n 0 -->|output| 3;\n 3cc726a3-2086-4985-9cf9-7bbbb13e18c5[\"Output\\nkraken_report\"];\n 3 --> 3cc726a3-2086-4985-9cf9-7bbbb13e18c5;\n style 3cc726a3-2086-4985-9cf9-7bbbb13e18c5 stroke:#2c3143,stroke-width:4px;\n 4[\"MetaPhlAn\"];\n 2 -->|forward| 4;\n 2 -->|reverse| 4;\n 97a89be1-a9f6-47ec-b5f1-9ccb068b4a57[\"Output\\nmetaphlan_output\"];\n 4 --> 97a89be1-a9f6-47ec-b5f1-9ccb068b4a57;\n style 97a89be1-a9f6-47ec-b5f1-9ccb068b4a57 stroke:#2c3143,stroke-width:4px;\n 5[\"Krakentools: Convert kraken report file\"];\n 3 -->|report_output| 5;\n e610aa6c-87e0-49a9-978d-2dc3ff38bb75[\"Output\\nkrakentool_report\"];\n 5 --> e610aa6c-87e0-49a9-978d-2dc3ff38bb75;\n style e610aa6c-87e0-49a9-978d-2dc3ff38bb75 stroke:#2c3143,stroke-width:4px;\n 6[\"Kraken-biom\"];\n 3 -->|report_output| 6;\n 1 -->|output| 6;\n 7[\"Pavian\"];\n 3 -->|report_output| 7;\n 8[\"Estimate Abundance at Taxonomic Level\"];\n 3 -->|report_output| 8;\n 9[\"Krona pie chart\"];\n 4 -->|krona_output_file| 9;\n 10[\"Krona pie chart\"];\n 5 -->|output| 10;\n 11[\"Phinch Visualisation\"];\n 6 -->|biomOutput| 11;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Taxonomic Profiling and Visualization of Metagenomic Data", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "single_paired|input_pair": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 279.9980390107984, + "top": 464 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e674066930b2", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.1\", \"kraken2_database\": \"2022-09-04T165121Z_standard_prebuilt_pluspf_2022-06-07\", \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"collection\", \"__current_case__\": 0, \"input_pair\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "ec3d15fe-c551-4986-b56b-6f92fe781a4e", + "when": null, + "workflow_outputs": [ + { + "label": "kraken_report", + "output_name": "report_output", + "uuid": "3cc726a3-2086-4985-9cf9-7bbbb13e18c5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "inputs|in|raw_in|in_f": { + "id": 2, + "output_name": "forward" + }, + "inputs|in|raw_in|in_r": { + "id": 2, + "output_name": "reverse" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MetaPhlAn", + "name": "analysis" + } + ], + "label": null, + "name": "MetaPhlAn", + "outputs": [ + { + "name": "output_file", + "type": "tabular" + }, + { + "name": "bowtie2out", + "type": "tabular" + }, + { + "name": "sam_output_file", + "type": "sam" + }, + { + "name": "biom_output_file", + "type": "biom1" + }, + { + "name": "krona_output_file", + "type": "tabular" + } + ], + "position": { + "left": 559.9960780215968, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "1a6cdf55390f", + "name": "metaphlan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis\": {\"analysis_type\": {\"t\": \"rel_ab\", \"__current_case__\": 0, \"tax_lev\": {\"tax_lev\": \"a\", \"__current_case__\": 0, \"split_levels\": false}}, \"min_cu_len\": \"2000\", \"min_alignment_len\": null, \"organism_profiling\": [\"add_viruses\"], \"stat\": \"tavg_g\", \"stat_q\": \"0.2\", \"perc_nonzero\": \"0.33\", \"ignore_markers\": {\"__class__\": \"RuntimeValue\"}, \"avoid_disqm\": true}, \"inputs\": {\"in\": {\"selector\": \"raw\", \"__current_case__\": 0, \"raw_in\": {\"selector\": \"paired\", \"__current_case__\": 2, \"in_f\": {\"__class__\": \"ConnectedValue\"}, \"in_r\": {\"__class__\": \"ConnectedValue\"}}, \"read_min_len\": \"70\", \"mapping\": {\"bt2_ps\": \"very-sensitive\", \"min_mapq_val\": \"5\"}}, \"db\": {\"db_selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": \"mpa_vOct22_CHOCOPhlAnSGB_202212-03042023\"}}, \"out\": {\"sample_id_key\": \"SampleID\", \"sample_id\": \"Metaphlan_Analysis\", \"use_group_representative\": false, \"legacy_output\": false, \"CAMI_format_output\": false, \"unknown_estimation\": false, \"krona_output\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0.6+galaxy1", + "type": "tool", + "uuid": "12d35121-341e-46da-aa4c-c48d4318bf6d", + "when": null, + "workflow_outputs": [ + { + "label": "metaphlan_output", + "output_name": "output_file", + "uuid": "97a89be1-a9f6-47ec-b5f1-9ccb068b4a57" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "report": { + "id": 3, + "output_name": "report_output" + } + }, + "inputs": [], + "label": null, + "name": "Krakentools: Convert kraken report file", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 559.9960852997306, + "top": 459 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "88d274322340", + "name": "krakentools_kreport2krona", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"intermediate_ranks\": false, \"report\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2+galaxy0", + "type": "tool", + "uuid": "5de62f93-4e3a-4ea6-92c6-c3afcc088bdc", + "when": null, + "workflow_outputs": [ + { + "label": "krakentool_report", + "output_name": "output", + "uuid": "e610aa6c-87e0-49a9-978d-2dc3ff38bb75" + } + ] + } + ], + "parent_id": "microbiome/taxonomic-profiling", + "path": "topics/microbiome/tutorials/taxonomic-profiling/workflows/main-workflow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": true, + "title": "Taxonomic Profiling and Visualization of Metagenomic Data", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-taxonomic-profiling/versions/main-workflow", + "tutorial_id": "taxonomic-profiling", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/taxonomic-profiling/workflows/main-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/taxonomic-profiling/workflows/main-workflow.html", + "version": 1, + "wfid": "microbiome-taxonomic-profiling", + "wfname": "main-workflow", + "workflow": "main-workflow.ga", + "workflow_tools": [ + "__UNZIP_COLLECTION__", + "interactive_tool_pavian", + "interactive_tool_phinch", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken_biom/kraken_biom/1.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy1" + ], + "workflowhub_id": "1095" + } + ], + "zenodo_link": "https://zenodo.org/record/7871630" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "krakentools_alpha_diversity", + "owner": "iuc", + "revisions": "bab112ba9d62", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_beta_diversity", + "owner": "iuc", + "revisions": "c254d75b8b67", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: krakentools_alpha_diversity\n owner: iuc\n revisions: bab112ba9d62\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_beta_diversity\n owner: iuc\n revisions: c254d75b8b67\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/diversity/tutorial.json", + "contributions": { + "authorship": [ + "sophia120199", + "bebatut", + "paulzierep" + ] + }, + "contributors": [ + { + "id": "sophia120199", + "joined": "2023-04", + "name": "Sophia Hampe", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sophia120199/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sophia120199.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + } + ], + "dir": "topics/microbiome/tutorials/diversity", + "draft": false, + "edam_operation": [ + "Visualisation", + "Aggregation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@Pasteur", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/diversity", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 8337, + "mermaid": false + }, + "key_points": [ + "There are 2 different types of diversity metrics (\u03b1 and \u03b2 diversity)", + "Krakentools can be used in Galaxy for calculating the diversity" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-06", + "objectives": [ + "Explain what taxonomic diversity is", + "Explain different metrics to calculate \u03b1 and \u03b2 diversity", + "Apply Krakentools to calculate \u03b1 and \u03b2 diversity and understand the output" + ], + "pageviews": 52, + "pub_date": "2024-08-01", + "questions": [ + "How many different taxons are present in my sample? How do I additionally take their relative abundance into account?", + "How similar or how dissimilar are my samples in term of taxonomic diversity?", + "What are the different metrics used to calculate the taxonomic diversity of my samples?" + ], + "short_id": "T00447", + "short_tools": [ + "krakentools_beta_diversity", + "krakentools_alpha_diversity" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "Galaxy@Pasteur", + "url": "https://galaxy.pasteur.fr/", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "metagenomics", + "diversity" + ], + "time_estimation": "20M", + "title": "Calculating \u03b1 and \u03b2 diversity from microbiome taxonomic data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_alpha_diversity/krakentools_alpha_diversity/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_beta_diversity/krakentools_beta_diversity/1.2+galaxy1" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "diversity", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/diversity/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/diversity/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/diversity/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 289, + "visitors": 40, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + }, + { + "class": "Person", + "identifier": "NA", + "name": "Sophia Hampe" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Calculating diversity from bracken output", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow Inputs\n```galaxy\ninvocation_inputs()\n```\n\n## Workflow Outputs\n```galaxy\ninvocation_outputs()\n```\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Krakentools: Calculates alpha diversity\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Krakentools: calculates beta diversity Bray-Curtis dissimilarity\"]\n 0 -> 6 [label=\"output\"]\n}", + "history": [ + { + "hash": "e548ec8fcbcdf6978839bbd7fb0cbad8724978af", + "message": "add orcid to WF", + "num": 5, + "short_hash": "e548ec8fc", + "unix": "1722843023" + }, + { + "hash": "7e39380705c94841458f4826b03705b6aaf891e0", + "message": "add license, fix alpha div formula, add subsections", + "num": 4, + "short_hash": "7e3938070", + "unix": "1722841724" + }, + { + "hash": "d448f8052a7b897e44d2afb4a2ffe9053ab8b316", + "message": "update wf creator", + "num": 3, + "short_hash": "d448f8052", + "unix": "1722839579" + }, + { + "hash": "c0ff830e1929507fb3ad36b646990b1bcca4e748", + "message": "fix workflow", + "num": 2, + "short_hash": "c0ff830e1", + "unix": "1722519174" + }, + { + "hash": "cd4066fc9a27c98bc2f6273e8cd7d2672163a425", + "message": "add workflow", + "num": 1, + "short_hash": "cd4066fc9", + "unix": "1722518283" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 340.098225676056 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "41ce4f24-4b0b-4431-bbf4-7262199838db", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 1;\n 2[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 2;\n 3[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 3;\n 4[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 4;\n 5[\"Krakentools: Calculates alpha diversity\"];\n 0 -->|output| 5;\n 6[\"Krakentools: calculates beta diversity Bray-Curtis dissimilarity\"];\n 0 -->|output| 6;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Calculating diversity from microbiome taxonomic data", + "outputs": [], + "parent_id": "microbiome/diversity", + "path": "topics/microbiome/tutorials/diversity/workflows/workflow.ga", + "tags": [ + "name:GTN" + ], + "test_results": null, + "tests": true, + "title": "Calculating diversity from microbiome taxonomic data", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-diversity/versions/workflow", + "tutorial_id": "diversity", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/diversity/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/diversity/workflows/workflow.html", + "version": 1, + "wfid": "microbiome-diversity", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_alpha_diversity/krakentools_alpha_diversity/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_beta_diversity/krakentools_beta_diversity/1.2+galaxy1" + ], + "workflowhub_id": "1349" + } + ], + "zenodo_link": "https://zenodo.org/records/13150694" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unique", + "owner": "bgruening", + "revisions": "7ce75adb93be", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools", + "owner": "devteam", + "revisions": "befc9dad4ca8", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "f6877ad76b00", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "03e9b2fbc005", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "21e491ad532a", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "21e491ad532a", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "coverm_contig", + "owner": "iuc", + "revisions": "6941d0d453ba", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filter_tabular", + "owner": "iuc", + "revisions": "34d29339abab", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "megahit", + "owner": "iuc", + "revisions": "14ddfc8ffb93", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "megahit_contig2fastg", + "owner": "iuc", + "revisions": "4ec5b3777508", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ngsutils_bam_filter", + "owner": "iuc", + "revisions": "2e957d4c4b95", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "3061c8b029e5", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "5915ea1ec9b1", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaspades", + "owner": "nml", + "revisions": "fd128c111ab0", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unique\n owner: bgruening\n revisions: 7ce75adb93be\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools\n owner: devteam\n revisions: befc9dad4ca8\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: f6877ad76b00\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: 03e9b2fbc005\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 21e491ad532a\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 21e491ad532a\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: coverm_contig\n owner: iuc\n revisions: 6941d0d453ba\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filter_tabular\n owner: iuc\n revisions: 34d29339abab\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: megahit\n owner: iuc\n revisions: 14ddfc8ffb93\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: megahit_contig2fastg\n owner: iuc\n revisions: 4ec5b3777508\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ngsutils_bam_filter\n owner: iuc\n revisions: 2e957d4c4b95\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 3061c8b029e5\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 5915ea1ec9b1\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaspades\n owner: nml\n revisions: fd128c111ab0\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-assembly/tutorial.json", + "contributions": { + "authorship": [ + "plushz", + "bebatut" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "id": "plushz", + "joined": "2022-03", + "name": "Polina Polunina", + "orcid": "0000-0002-0507-4602", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/plushz/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/plushz.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/microbiome/tutorials/metagenomics-assembly", + "edam_ontology": [ + "topic_3174", + "topic_0196" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Primer removal", + "Sequence file editing", + "Formatting", + "Read mapping", + "Sequence assembly validation", + "Sequence composition calculation", + "Sequence assembly visualisation", + "Local alignment", + "Genome assembly", + "Sequence trimming", + "Statistical calculation", + "Sequence contamination filtering", + "Sequence alignment analysis", + "Read pre-processing", + "Data handling", + "Variant calling" + ], + "edam_topic": [ + "Metagenomics", + "Sequence assembly" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/metagenomics-assembly", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "js_requirements": { + "mathjax": 25185, + "mermaid": false + }, + "key_points": [ + "Assembly groups reads into contigs and scafolds.", + "De Brujin Graphs use k-mers to assembly reads", + "MetaSPAdes and MEGAHIT are assemblers", + "Quast is the tool to assess the assembly quality" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Describe what an assembly is", + "Describe what de-replication is", + "Explain the difference between co-assembly and individual assembly", + "Explain the difference between reads, contigs and scaffolds", + "Explain how tools based on De Bruijn graph work", + "Apply appropriate tools for analyzing the quality of metagenomic data", + "Construct and apply simple assembly pipelines on short read data", + "Apply appropriate tools for analyzing the quality of metagenomic assembly", + "Evaluate the Quality of the Assembly with Quast, Bowtie2, and CoverM-Genome" + ], + "pageviews": 1931, + "pub_date": "2022-12-05", + "questions": [ + "Why metagenomic data should be assembled?", + "What is the difference between co-assembly and individual assembly?", + "What is the difference between reads, contigs and scaffolds?", + "How tools based on De Bruijn graph work?", + "How to assess the quality of metagenomic data assembly?" + ], + "recordings": [ + { + "captioners": [ + "bebatut", + "sophia120199" + ], + "date": "2023-05-02", + "galaxy_version": "23.01", + "length": "1H", + "speakers": [ + "bebatut" + ], + "youtube_id": "1ZYGy85Im7w" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metagenomics-assembly/tutorial", + "/short/microbiome/metagenomics-assembly", + "/short/T00202", + "/short/T00386" + ], + "short_id": "T00386", + "short_tools": [ + "bg_uniq", + "megahit_contig2fastg", + "ngsutils_bam_filter", + "megahit", + "bowtie2", + "tp_cat", + "quast", + "random_lines1", + "collection_column_join", + "filter_tabular", + "seqtk_subseq", + "fastqc", + "bandage_info", + "coverm_contig", + "bandage_image", + "bamtools", + "cutadapt", + "metaspades" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "assembly", + "metagenomics", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Assembly of metagenomic sequencing data", + "tools": [ + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/coverm_contig/coverm_contig/0.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy10", + "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metagenomics-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-assembly/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 152, + "visitors": 1376, + "workflows": [ + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[label=\"metaSPAdes\"]\n 0 -> 1 [label=\"output\"]\n k833d79ffe16f414c9c41db8dbfa8ed6b[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Scaffolds\"]\n 1 -> k833d79ffe16f414c9c41db8dbfa8ed6b\n k10319152d2f947d8be41f956a57e86d3[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Assembly graph\"]\n 1 -> k10319152d2f947d8be41f956a57e86d3\n kb1ffc3a48e394255ac57fd7cfb9c1633[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Assembly graph with scaffolds\"]\n 1 -> kb1ffc3a48e394255ac57fd7cfb9c1633\n kb6b74c9d5a164725a1d111c1f05ee909[color=lightseagreen,label=\"Output\\nmetaSPAdes on input dataset(s): Contigs\"]\n 1 -> kb6b74c9d5a164725a1d111c1f05ee909\n 2[label=\"MEGAHIT\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Bowtie2\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"megahit contig2fastg\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Quast\"]\n 2 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Bandage Image\"]\n 4 -> 6 [label=\"fastg\"]\n 7[label=\"Bandage Info\"]\n 4 -> 7 [label=\"fastg\"]\n 8[label=\"Column join\"]\n 7 -> 8 [label=\"outfile\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 480 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cdb65097-d956-4715-9cd4-fadc9b0c07c5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c8ca2f5f-b0f4-4d90-8259-9e4796c4a35f" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"metaSPAdes\"];\n 0 -->|output| 1;\n 833d79ff-e16f-414c-9c41-db8dbfa8ed6b[\"Output\\nmetaSPAdes on input dataset(s): Scaffolds\"];\n 1 --> 833d79ff-e16f-414c-9c41-db8dbfa8ed6b;\n style 833d79ff-e16f-414c-9c41-db8dbfa8ed6b stroke:#2c3143,stroke-width:4px;\n 10319152-d2f9-47d8-be41-f956a57e86d3[\"Output\\nmetaSPAdes on input dataset(s): Assembly graph\"];\n 1 --> 10319152-d2f9-47d8-be41-f956a57e86d3;\n style 10319152-d2f9-47d8-be41-f956a57e86d3 stroke:#2c3143,stroke-width:4px;\n b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633[\"Output\\nmetaSPAdes on input dataset(s): Assembly graph with scaffolds\"];\n 1 --> b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633;\n style b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633 stroke:#2c3143,stroke-width:4px;\n b6b74c9d-5a16-4725-a1d1-11c1f05ee909[\"Output\\nmetaSPAdes on input dataset(s): Contigs\"];\n 1 --> b6b74c9d-5a16-4725-a1d1-11c1f05ee909;\n style b6b74c9d-5a16-4725-a1d1-11c1f05ee909 stroke:#2c3143,stroke-width:4px;\n 2[\"MEGAHIT\"];\n 0 -->|output| 2;\n 3[\"Bowtie2\"];\n 0 -->|output| 3;\n 2 -->|output| 3;\n 4[\"megahit contig2fastg\"];\n 2 -->|output| 4;\n 5[\"Quast\"];\n 2 -->|output| 5;\n 0 -->|output| 5;\n 6[\"Bandage Image\"];\n 4 -->|fastg| 6;\n 7[\"Bandage Info\"];\n 4 -->|fastg| 7;\n 8[\"Column join\"];\n 7 -->|outfile| 8;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Metagenomics assembly tutorial workflow", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 480 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cdb65097-d956-4715-9cd4-fadc9b0c07c5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c8ca2f5f-b0f4-4d90-8259-9e4796c4a35f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2", + "errors": null, + "id": 1, + "input_connections": { + "singlePaired|input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool metaSPAdes", + "name": "arf" + }, + { + "description": "runtime parameter for tool metaSPAdes", + "name": "arf" + }, + { + "description": "runtime parameter for tool metaSPAdes", + "name": "singlePaired" + } + ], + "label": null, + "name": "metaSPAdes", + "outputs": [ + { + "name": "out_ag", + "type": "fastg" + }, + { + "name": "out_ags", + "type": "txt" + }, + { + "name": "out_cn", + "type": "fasta" + }, + { + "name": "out_sc", + "type": "fasta" + } + ], + "position": { + "left": 247.0, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "fd128c111ab0", + "name": "metaspades", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"additional_reads\": {\"selector\": \"false\", \"__current_case__\": 1}, \"arf\": {\"nanopore\": {\"__class__\": \"RuntimeValue\"}, \"pacbio\": {\"__class__\": \"RuntimeValue\"}}, \"kmer_cond\": {\"kmer_sel\": \"manual\", \"__current_case__\": 1, \"manual\": \"21,33,55,77\"}, \"library_number\": \"true\", \"mode_sel\": null, \"optional_output\": [\"ag\", \"ags\", \"cn\", \"sc\"], \"phred_offset\": \"auto\", \"singlePaired\": {\"sPaired\": \"paired_collection\", \"__current_case__\": 2, \"input\": {\"__class__\": \"RuntimeValue\"}, \"type_paired\": \"pe\", \"orientation\": \"fr\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.15.4+galaxy2", + "type": "tool", + "uuid": "7dc08460-f398-4f1d-9f30-1736cf636a13", + "workflow_outputs": [ + { + "label": "metaSPAdes on input dataset(s): Scaffolds", + "output_name": "out_sc", + "uuid": "833d79ff-e16f-414c-9c41-db8dbfa8ed6b" + }, + { + "label": "metaSPAdes on input dataset(s): Assembly graph", + "output_name": "out_ag", + "uuid": "10319152-d2f9-47d8-be41-f956a57e86d3" + }, + { + "label": "metaSPAdes on input dataset(s): Assembly graph with scaffolds", + "output_name": "out_ags", + "uuid": "b1ffc3a4-8e39-4255-ac57-fd7cfb9c1633" + }, + { + "label": "metaSPAdes on input dataset(s): Contigs", + "output_name": "out_cn", + "uuid": "b6b74c9d-5a16-4725-a1d1-11c1f05ee909" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_option|batchmode|pair_input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MEGAHIT", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 278.0, + "top": 464 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "14ddfc8ffb93", + "name": "megahit", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"advanced_section\": {\"nomercy\": \"false\", \"bubble_level\": \"2\", \"merge_level\": \"20,0.95\", \"prune_level\": \"2\", \"prune_depth\": \"2\", \"disconnect_ratio\": \"0.1\", \"low_local_ratio\": \"0.2\", \"cleaning_rounds\": \"5\", \"nolocal\": \"false\", \"kmin1pass\": \"false\"}, \"basic_section\": {\"min_count\": \"2\", \"k_mer\": {\"k_mer_method\": \"klim_method\", \"__current_case__\": 1, \"k_min\": \"21\", \"k_max\": \"91\", \"k_step\": \"12\"}}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_option\": {\"choice\": \"paired_collection\", \"__current_case__\": 3, \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"pair_input\": {\"__class__\": \"ConnectedValue\"}}}, \"output_section\": {\"min_contig_len\": \"200\", \"show_intermediate_contigs\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.9+galaxy0", + "type": "tool", + "uuid": "ffbb16f2-580a-4832-8b6d-e67932e24b27", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "061ac8dd-de43-467d-9c15-a4f46a125103" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "reference_genome|own_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 556.0, + "top": 130 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "03e9b2fbc005", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"own_file|__identifier__\": \"ERR2231567\", \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.0+galaxy0", + "type": "tool", + "uuid": "9f445c6b-31c9-4ff0-b559-6be00fb0fc17", + "workflow_outputs": [ + { + "label": null, + "output_name": "mapping_stats", + "uuid": "ff350260-91cd-4f01-a82f-f64e8eddd4ed" + }, + { + "label": null, + "output_name": "output", + "uuid": "2fa389b6-088a-4686-94e9-de884f86e1b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "contigs": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "megahit contig2fastg", + "outputs": [ + { + "name": "fastg", + "type": "fastg" + } + ], + "position": { + "left": 556.0, + "top": 444 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "4ec5b3777508", + "name": "megahit_contig2fastg", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contigs\": {\"__class__\": \"ConnectedValue\"}, \"contigs|__identifier__\": \"ERR2231567\", \"kmer\": \"91\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3+galaxy1", + "type": "tool", + "uuid": "c839a8b8-c719-474d-957e-d94614491f13", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastg", + "uuid": "91718981-2ae5-4cdd-8007-0ce9cc3c68f6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "in|inputs": { + "id": 2, + "output_name": "output" + }, + "reads|input_1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Quast", + "outputs": [ + { + "name": "metrics_tabular", + "type": "input" + }, + { + "name": "metrics_pdf", + "type": "input" + }, + { + "name": "report_tabular_meta", + "type": "tabular" + }, + { + "name": "report_html_meta", + "type": "html" + }, + { + "name": "log_meta", + "type": "txt" + }, + { + "name": "krona", + "type": "html" + } + ], + "position": { + "left": 556.0, + "top": 636 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3061c8b029e5", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": \"false\", \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": \"true\", \"fragmented_max_indent\": null, \"report_all_metrics\": \"false\", \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": \"false\", \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": \"false\", \"upper_bound_assembly\": \"false\", \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"metagenome\", \"__current_case__\": 1, \"ref\": {\"origin\": \"none\", \"__current_case__\": 3}, \"reuse_combined_alignments\": \"false\", \"min_identity\": \"90.0\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": \"false\", \"conserved_genes_finding\": \"false\"}, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"large\": \"false\", \"min_contig\": \"500\", \"output_files\": [\"html\", \"pdf\", \"tabular\", \"log\", \"summary\", \"krona\"], \"reads\": {\"reads_option\": \"paired_collection\", \"__current_case__\": 3, \"input_1\": {\"__class__\": \"ConnectedValue\"}}, \"split_scaffolds\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy0", + "type": "tool", + "uuid": "12072d4c-8ad5-4de1-bbe2-3b081b8373be", + "workflow_outputs": [ + { + "label": null, + "output_name": "log_meta", + "uuid": "33c6424f-fceb-45d1-9462-ea3e7cda79ea" + }, + { + "label": null, + "output_name": "krona", + "uuid": "44457a4b-760c-4080-b552-dc4724906b2c" + }, + { + "label": null, + "output_name": "metrics_tabular", + "uuid": "9b2b72ac-a297-46a2-883f-8f1704664cf3" + }, + { + "label": null, + "output_name": "report_tabular_meta", + "uuid": "1259f3a1-4952-48f1-be69-0fde3b6be9de" + }, + { + "label": null, + "output_name": "report_html_meta", + "uuid": "b8f1b46c-1421-4952-9e87-1790bdd076df" + }, + { + "label": null, + "output_name": "metrics_pdf", + "uuid": "ac4aa63b-5dc1-4b4c-bbb0-6afce689f0d2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "errors": null, + "id": 6, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "fastg" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 834.0, + "top": 466 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "21e491ad532a", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"input_file|__identifier__\": \"ERR2231567\", \"lengths\": \"false\", \"names\": \"false\", \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy4", + "type": "tool", + "uuid": "31b35530-ae7f-4e9c-8021-6983cf3f3401", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "e02c022d-3067-40ce-8bb6-4cc258d8523a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "fastg" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 834.0, + "top": 679 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b9e31c5c01c7", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"input_file|__identifier__\": \"ERR2231567\", \"tsv\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "b63e03dc-b9be-4a72-ac81-64b63ddf99f2", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "6bd3194a-9e8c-4677-b42c-2fb3bd1116f3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "errors": null, + "id": 8, + "input_connections": { + "input_tabular": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Column join", + "outputs": [ + { + "name": "tabular_output", + "type": "tabular" + } + ], + "position": { + "left": 1112.0, + "top": 732 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "tool_shed_repository": { + "changeset_revision": "3ddd99c7efee", + "name": "collection_column_join", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fill_char\": \".\", \"has_header\": \"0\", \"identifier_column\": \"1\", \"include_outputs\": null, \"input_tabular\": {\"__class__\": \"ConnectedValue\"}, \"old_col_in_header\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.3", + "type": "tool", + "uuid": "e9dc42b2-c638-4b9c-af5f-ce84f6b0d654", + "workflow_outputs": [ + { + "label": null, + "output_name": "tabular_output", + "uuid": "fe5b4460-6fa0-48a8-84e7-b3b8270e9b8f" + } + ] + } + ], + "parent_id": "microbiome/metagenomics-assembly", + "path": "topics/microbiome/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "Metagenomics assembly tutorial workflow", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metagenomics-assembly/versions/metagenomics-assembly-tutorial-workflow", + "tutorial_id": "metagenomics-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/metagenomics_assembly_tutorial_workflow.html", + "version": 1, + "wfid": "microbiome-metagenomics-assembly", + "wfname": "metagenomics-assembly-tutorial-workflow", + "workflow": "metagenomics_assembly_tutorial_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit_contig2fastg/megahit_contig2fastg/1.1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/metaspades/metaspades/3.15.4+galaxy2" + ], + "workflowhub_id": "1103" + }, + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nERR2231567_1.fastq.gz\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nERR2231567_2.fastq.gz\"]\n 2[label=\"Cutadapt\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"MEGAHIT\"]\n 2 -> 3 [label=\"out1\"]\n 2 -> 3 [label=\"out2\"]\n 4[label=\"Bowtie2\"]\n 2 -> 4 [label=\"out1\"]\n 2 -> 4 [label=\"out2\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"BAM filter\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"BAM filter\"]\n 4 -> 6 [label=\"output\"]\n 7[label=\"Convert, Merge, Randomize\"]\n 5 -> 7 [label=\"outfile\"]\n 8[label=\"Convert, Merge, Randomize\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"Select random lines\"]\n 7 -> 9 [label=\"out_file1\"]\n 10[label=\"Select random lines\"]\n 8 -> 10 [label=\"out_file1\"]\n 11[label=\"Filter Tabular\"]\n 9 -> 11 [label=\"out_file1\"]\n 12[label=\"Filter Tabular\"]\n 10 -> 12 [label=\"out_file1\"]\n 13[label=\"Unique\"]\n 11 -> 13 [label=\"output\"]\n 14[label=\"Unique\"]\n 12 -> 14 [label=\"output\"]\n 15[label=\"Concatenate datasets\"]\n 13 -> 15 [label=\"outfile\"]\n 14 -> 15 [label=\"outfile\"]\n 16[label=\"seqtk_subseq\"]\n 2 -> 16 [label=\"out1\"]\n 15 -> 16 [label=\"out_file1\"]\n 17[label=\"seqtk_subseq\"]\n 2 -> 17 [label=\"out2\"]\n 15 -> 17 [label=\"out_file1\"]\n 18[label=\"FastQC\"]\n 16 -> 18 [label=\"default\"]\n 19[label=\"FastQC\"]\n 17 -> 19 [label=\"default\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ERR2231567_1.fastq.gz" + } + ], + "label": "ERR2231567_1.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 174.98046875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ac2a7e31-6a0c-43f0-b39f-6764ae421dea", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ERR2231567_2.fastq.gz" + } + ], + "label": "ERR2231567_2.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.03515625, + "top": 365.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2e1fd5bf-3b01-49dd-a091-75c7215eb3f9", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nERR2231567_1.fastq.gz\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nERR2231567_2.fastq.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Cutadapt\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"MEGAHIT\"];\n 2 -->|out1| 3;\n 2 -->|out2| 3;\n 4[\"Bowtie2\"];\n 2 -->|out1| 4;\n 2 -->|out2| 4;\n 3 -->|output| 4;\n 5[\"BAM filter\"];\n 4 -->|output| 5;\n 6[\"BAM filter\"];\n 4 -->|output| 6;\n 7[\"Convert, Merge, Randomize\"];\n 5 -->|outfile| 7;\n 8[\"Convert, Merge, Randomize\"];\n 6 -->|outfile| 8;\n 9[\"Select random lines\"];\n 7 -->|out_file1| 9;\n 10[\"Select random lines\"];\n 8 -->|out_file1| 10;\n 11[\"Filter Tabular\"];\n 9 -->|out_file1| 11;\n 12[\"Filter Tabular\"];\n 10 -->|out_file1| 12;\n 13[\"Unique\"];\n 11 -->|output| 13;\n 14[\"Unique\"];\n 12 -->|output| 14;\n 15[\"Concatenate datasets\"];\n 13 -->|outfile| 15;\n 14 -->|outfile| 15;\n 16[\"seqtk_subseq\"];\n 2 -->|out1| 16;\n 15 -->|out_file1| 16;\n 17[\"seqtk_subseq\"];\n 2 -->|out2| 17;\n 15 -->|out_file1| 17;\n 18[\"FastQC\"];\n 16 -->|default| 18;\n 19[\"FastQC\"];\n 17 -->|default| 19;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "workflow-generate-dataset-for-assembly-tutorial", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "library|input_2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "out2", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 248.0078125, + "top": 260.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5915ea1ec9b1", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"internal\": \"\", \"error_rate\": \"0.1\", \"no_indels\": \"false\", \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"revcomp\": \"false\"}, \"filter_options\": {\"discard_trimmed\": \"false\", \"discard_untrimmed\": \"false\", \"minimum_length\": \"200\", \"maximum_length\": null, \"length_R2_options\": {\"length_R2_status\": \"False\", \"__current_case__\": 1}, \"max_n\": null, \"pair_filter\": \"any\", \"max_expected_errors\": null, \"discard_cassava\": \"false\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\", \"quality_cutoff2\": \"\"}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"strip_suffix\": \"\", \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0+galaxy0", + "type": "tool", + "uuid": "67ddef5c-cde3-462d-a189-77028682a357", + "workflow_outputs": [ + { + "label": null, + "output_name": "out1", + "uuid": "7b3621e4-5077-4ac8-95d3-61a94a6ee664" + }, + { + "label": null, + "output_name": "out2", + "uuid": "f7db5a96-f4e7-4caf-8e78-093d4e6b007c" + }, + { + "label": null, + "output_name": "report", + "uuid": "ff6985ad-6afe-4cf7-9def-223fdd5e5f62" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input_option|fastq_input1": { + "id": 2, + "output_name": "out1" + }, + "input_option|fastq_input2": { + "id": 2, + "output_name": "out2" + } + }, + "inputs": [], + "label": null, + "name": "MEGAHIT", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 735.9765625, + "top": 301.97265625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "14ddfc8ffb93", + "name": "megahit", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_section\": {\"nomercy\": \"false\", \"bubble_level\": \"2\", \"merge_level\": \"20,0.95\", \"prune_level\": \"2\", \"prune_depth\": \"2\", \"disconnect_ratio\": \"0.1\", \"low_local_ratio\": \"0.2\", \"cleaning_rounds\": \"5\", \"nolocal\": \"false\", \"kmin1pass\": \"false\"}, \"basic_section\": {\"min_count\": \"2\", \"k_mer\": {\"k_mer_method\": \"klist_method\", \"__current_case__\": 0, \"k_list\": \"21,29,39,59,79,99,119,141\"}}, \"input_option\": {\"choice\": \"paired\", \"__current_case__\": 2, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"fastq_input2\": {\"__class__\": \"ConnectedValue\"}}, \"output_section\": {\"min_contig_len\": \"200\", \"show_intermediate_contigs\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.9+galaxy0", + "type": "tool", + "uuid": "0e1e0ffb-4536-4802-b886-5f5f391255d1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7a0e5487-3923-46e0-9976-d3fdc3fe7e09" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "library|input_1": { + "id": 2, + "output_name": "out1" + }, + "library|input_2": { + "id": 2, + "output_name": "out2" + }, + "reference_genome|own_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 979.00390625, + "top": 40.9765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "f6877ad76b00", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.5+galaxy1", + "type": "tool", + "uuid": "cd8574f0-da3e-4dc1-848e-6f21c57831e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "mapping_stats", + "uuid": "cf119c49-eee7-448a-bfff-0f1053f87821" + }, + { + "label": null, + "output_name": "output", + "uuid": "44b0908f-2158-4ea2-be6f-65c0dd803bcb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool BAM filter", + "name": "excludebed" + }, + { + "description": "runtime parameter for tool BAM filter", + "name": "includebed" + } + ], + "label": null, + "name": "BAM filter", + "outputs": [ + { + "name": "outfile", + "type": "bam" + } + ], + "position": { + "left": 1265.01953125, + "top": 0.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "tool_shed_repository": { + "changeset_revision": "2e957d4c4b95", + "name": "ngsutils_bam_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"excludebed\": {\"__class__\": \"RuntimeValue\"}, \"excluderef\": \"\", \"ignore_strand\": \"false\", \"includebed\": {\"__class__\": \"RuntimeValue\"}, \"includeref\": \"\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mapped\": \"false\", \"mask\": \"\", \"maximum_mismatch_ratio\": null, \"maxlen\": null, \"minlen\": null, \"mismatch\": null, \"nopcrdup\": \"false\", \"noproperpair\": \"false\", \"noqcfail\": \"false\", \"nosecondary\": \"false\", \"properpair\": \"false\", \"uniq\": \"-1\", \"uniq_start\": \"false\", \"unmapped\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.9", + "type": "tool", + "uuid": "e2b45ca6-2a67-4b95-a454-5c67fa87bccb", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "c1c6c99c-c810-41f4-84f3-5998c50b1422" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool BAM filter", + "name": "excludebed" + }, + { + "description": "runtime parameter for tool BAM filter", + "name": "includebed" + } + ], + "label": null, + "name": "BAM filter", + "outputs": [ + { + "name": "outfile", + "type": "bam" + } + ], + "position": { + "left": 1268.0078125, + "top": 354.00390625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "tool_shed_repository": { + "changeset_revision": "2e957d4c4b95", + "name": "ngsutils_bam_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"excludebed\": {\"__class__\": \"RuntimeValue\"}, \"excluderef\": \"\", \"ignore_strand\": \"false\", \"includebed\": {\"__class__\": \"RuntimeValue\"}, \"includeref\": \"\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mapped\": \"true\", \"mask\": \"\", \"maximum_mismatch_ratio\": null, \"maxlen\": null, \"minlen\": null, \"mismatch\": null, \"nopcrdup\": \"false\", \"noproperpair\": \"false\", \"noqcfail\": \"false\", \"nosecondary\": \"false\", \"properpair\": \"false\", \"uniq\": \"-1\", \"uniq_start\": \"false\", \"unmapped\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.9", + "type": "tool", + "uuid": "eb538482-dcf6-4509-b4b0-3da71ac6c600", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "b7c08a3a-296d-4352-90a6-423897d8cc74" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input_bams": { + "id": 5, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Convert, Merge, Randomize", + "outputs": [ + { + "name": "out_file1", + "type": "txt" + } + ], + "position": { + "left": 1559.00390625, + "top": 110.9765625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "befc9dad4ca8", + "name": "bamtools", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"convert\", \"__current_case__\": 0, \"format_type\": {\"format_type_selector\": \"sam\", \"__current_case__\": 6, \"noheader\": \"false\"}}, \"input_bams\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.1+galaxy0", + "type": "tool", + "uuid": "8dc250e9-c89b-40be-8432-08a7330d6e27", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "8ad07a76-7793-43b2-add3-7e236a696172" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input_bams": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Convert, Merge, Randomize", + "outputs": [ + { + "name": "out_file1", + "type": "txt" + } + ], + "position": { + "left": 1548.0078125, + "top": 462.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "befc9dad4ca8", + "name": "bamtools", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"convert\", \"__current_case__\": 0, \"format_type\": {\"format_type_selector\": \"sam\", \"__current_case__\": 6, \"noheader\": \"false\"}}, \"input_bams\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.1+galaxy0", + "type": "tool", + "uuid": "b5c1bcac-9624-477c-998f-a0988b110a26", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9801f8ee-e700-4e9b-bbfc-7ccf7aa99372" + } + ] + }, + { + "annotation": "", + "content_id": "random_lines1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 7, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select random lines", + "name": "input" + } + ], + "label": null, + "name": "Select random lines", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1823.0078125, + "top": 182.98828125 + }, + "post_job_actions": {}, + "tool_id": "random_lines1", + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"num_lines\": \"210000\", \"seed_source\": {\"seed_source_selector\": \"no_seed\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2", + "type": "tool", + "uuid": "88f4ed97-5899-48f1-a5de-256be6e58862", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "69da2900-e66d-4d95-9bdb-1d9f801097e3" + } + ] + }, + { + "annotation": "", + "content_id": "random_lines1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select random lines", + "name": "input" + } + ], + "label": null, + "name": "Select random lines", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1826.9921875, + "top": 535.99609375 + }, + "post_job_actions": {}, + "tool_id": "random_lines1", + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"num_lines\": \"1000000\", \"seed_source\": {\"seed_source_selector\": \"no_seed\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2", + "type": "tool", + "uuid": "9064c0e8-fdc9-4347-99c2-bd6d97104fc9", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "fd4f3605-1f48-4583-b11a-91a9869e7946" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2081.015625, + "top": 212.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "34d29339abab", + "name": "filter_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "302a62bb-98f7-4998-b290-281bb52e3c70", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e83fbb91-742e-448f-8592-bdf37ce3cbdf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2085, + "top": 566.97265625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "34d29339abab", + "name": "filter_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "ab1a4102-7bb2-4ba7-80d1-2a532b410201", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2701a2bd-2ec9-433a-9f26-7f35410ec018" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2330, + "top": 265.99609375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "tool_shed_repository": { + "changeset_revision": "7ce75adb93be", + "name": "unique", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"ignore_case\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3", + "type": "tool", + "uuid": "2a68a6a4-4d3d-4de3-bc64-35edc63287f9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "b2bb66d7-fe76-4ce3-bb5b-72c979a755d1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2331.97265625, + "top": 617.94921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "tool_shed_repository": { + "changeset_revision": "7ce75adb93be", + "name": "unique", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"ignore_case\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"is_numeric\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3", + "type": "tool", + "uuid": "c2d1dc5c-4d14-45e5-9bb9-bdab787ea5f3", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "df0bbae1-b735-4cf4-a5a3-ef4f8b525a4e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 15, + "input_connections": { + "inputs": [ + { + "id": 13, + "output_name": "outfile" + }, + { + "id": 14, + "output_name": "outfile" + } + ] + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2575, + "top": 417.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "bf2ba224-25ae-4ec3-9a1f-7cb1afd0aef2", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "53ae320a-b570-4985-ae2a-8344e15e43f9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 16, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "out1" + }, + "source|name_list": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2847.98828125, + "top": 819.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"l\": \"0\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "478adb2b-4910-4aed-af4e-2a66e9a1922c", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "b47e4af0-c185-4b6f-a529-6f0ef96a14ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 17, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "out2" + }, + "source|name_list": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 2836.97265625, + "top": 1019.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"l\": \"0\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "81ae5423-c7d0-4ceb-a6e4-168ab1f3fd35", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "c7de5bbe-f941-4772-bb32-15aeff98678a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "input_file": { + "id": 16, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 3135.9765625, + "top": 775.99609375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "6d6cee2a-b879-463b-81d1-7ab4f72ca04b", + "workflow_outputs": [ + { + "label": null, + "output_name": "text_file", + "uuid": "ca3ea14a-b1cc-481d-b1a3-2b46b8d24809" + }, + { + "label": null, + "output_name": "html_file", + "uuid": "6849e3f4-33bc-47a9-8ef5-b7cbbdfe0d93" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "input_file": { + "id": 17, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 3133.984375, + "top": 1104.98046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "54fc20b8-5520-4b93-a7d8-ed447df19b3c", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "a85a4180-b2ab-4cac-9c71-76aee3df673f" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "65e24721-ec93-4648-9310-c3c2609b7818" + } + ] + } + ], + "parent_id": "microbiome/metagenomics-assembly", + "path": "topics/microbiome/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "workflow-generate-dataset-for-assembly-tutorial", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metagenomics-assembly/versions/workflow-generate-dataset-for-assembly-tutorial", + "tutorial_id": "metagenomics-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metagenomics-assembly/workflows/workflow-generate-dataset-for-assembly-tutorial.html", + "version": 1, + "wfid": "microbiome-metagenomics-assembly", + "wfname": "workflow-generate-dataset-for-assembly-tutorial", + "workflow": "workflow-generate-dataset-for-assembly-tutorial.ga", + "workflow_tools": [ + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools/bamtools/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ngsutils_bam_filter/ngsutils_bam_filter/0.5.9", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy0" + ], + "workflowhub_id": "1099" + } + ], + "zenodo_link": "https://zenodo.org/record/7818827" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_element_identifiers", + "owner": "iuc", + "revisions": "d3c07d270a50", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_assigntaxonomyaddspecies", + "owner": "iuc", + "revisions": "7c2100246a2f", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_assigntaxonomyaddspecies", + "owner": "iuc", + "revisions": "65db807336bc", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_dada", + "owner": "iuc", + "revisions": "96336c6a2bb7", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_dada", + "owner": "iuc", + "revisions": "00f5005840fa", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_filterandtrim", + "owner": "iuc", + "revisions": "addaf9d22850", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_filterandtrim", + "owner": "iuc", + "revisions": "e8fba04706d3", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_learnerrors", + "owner": "iuc", + "revisions": "75403243703a", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_learnerrors", + "owner": "iuc", + "revisions": "5fe3edf19b9c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_makesequencetable", + "owner": "iuc", + "revisions": "43c99742158b", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_makesequencetable", + "owner": "iuc", + "revisions": "75c8945b0da2", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_mergepairs", + "owner": "iuc", + "revisions": "5c865a382933", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_mergepairs", + "owner": "iuc", + "revisions": "35176674168c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_plotqualityprofile", + "owner": "iuc", + "revisions": "7b8cb2b02978", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_plotqualityprofile", + "owner": "iuc", + "revisions": "cae017b76acb", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_removebimeradenovo", + "owner": "iuc", + "revisions": "7136e9ab70db", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_removebimeradenovo", + "owner": "iuc", + "revisions": "073608a50ac3", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_seqcounts", + "owner": "iuc", + "revisions": "19299bb1c6af", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dada2_seqcounts", + "owner": "iuc", + "revisions": "a7817705348e", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "phyloseq_from_dada2", + "owner": "iuc", + "revisions": "87064cb77a52", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_element_identifiers\n owner: iuc\n revisions: d3c07d270a50\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_assigntaxonomyaddspecies\n owner: iuc\n revisions: 7c2100246a2f\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_assigntaxonomyaddspecies\n owner: iuc\n revisions: 65db807336bc\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_dada\n owner: iuc\n revisions: 96336c6a2bb7\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_dada\n owner: iuc\n revisions: 00f5005840fa\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_filterandtrim\n owner: iuc\n revisions: addaf9d22850\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_filterandtrim\n owner: iuc\n revisions: e8fba04706d3\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_learnerrors\n owner: iuc\n revisions: 75403243703a\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_learnerrors\n owner: iuc\n revisions: 5fe3edf19b9c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_makesequencetable\n owner: iuc\n revisions: 43c99742158b\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_makesequencetable\n owner: iuc\n revisions: 75c8945b0da2\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_mergepairs\n owner: iuc\n revisions: 5c865a382933\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_mergepairs\n owner: iuc\n revisions: 35176674168c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_plotqualityprofile\n owner: iuc\n revisions: 7b8cb2b02978\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_plotqualityprofile\n owner: iuc\n revisions: cae017b76acb\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_removebimeradenovo\n owner: iuc\n revisions: 7136e9ab70db\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_removebimeradenovo\n owner: iuc\n revisions: '073608a50ac3'\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_seqcounts\n owner: iuc\n revisions: 19299bb1c6af\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dada2_seqcounts\n owner: iuc\n revisions: a7817705348e\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: phyloseq_from_dada2\n owner: iuc\n revisions: 87064cb77a52\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/dada-16S/tutorial.json", + "contributions": { + "authorship": [ + "bebatut" + ], + "editing": [ + "bernt-matthias", + "clsiguret" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "elixir_node": "de", + "id": "bernt-matthias", + "joined": "2017-09", + "name": "Matthias Bernt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bernt-matthias/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bernt-matthias.json" + }, + { + "affiliations": [ + "ifb", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "clea.siguret@gmail.com", + "id": "clsiguret", + "joined": "2024-04", + "linkedin": "cl\u00e9a-siguret-58423b107", + "matrix": "clsiguret:matrix.org", + "name": "Clea Siguret", + "orcid": "0009-0005-6140-0379", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/clsiguret/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/clsiguret.json" + } + ], + "dir": "topics/microbiome/tutorials/dada-16S", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Visualisation", + "Analysis", + "Variant calling", + "DNA barcoding", + "Deposition" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/dada-16S", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 14594, + "mermaid": false + }, + "key_points": [ + "DADA2 allows for the generation of precise ASV tables, providing higher resolution and more accurate representation of microbial communities compared to traditional OTU-based methods.", + "Key steps such as quality filtering, error rate learning, and chimera removal are essential in the DADA2 pipeline to ensure the reliability and accuracy of the resulting ASV data.", + "Tools like phyloseq can be effectively used to explore and visualize ASV tables, facilitating deeper ecological and evolutionary insights into microbial diversity and community structure." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Identify the key steps in the DADA2 workflow for generating an ASV table from 16S rRNA gene sequencing data", + "Explain the importance of quality filtering, error rate learning, and chimera removal in ensuring accurate microbial community analysis", + "Execute the DADA2 pipeline to process raw 16S sequencing data and produce a high-resolution ASV table", + "Compare the advantages of ASV-based methods over traditional OTU-based approaches in terms of accuracy and resolution", + "Assess the effectiveness of using phyloseq for exploring and visualizing ASV data to gain ecological and evolutionary insights" + ], + "pageviews": 840, + "pub_date": "2024-06-05", + "questions": [ + "What are the primary steps involved in generating an ASV table using DADA2 from 16S rRNA gene sequencing data?", + "How does DADA2 improve the accuracy of microbial community analysis compared to traditional OTU-based methods?", + "What is the importance of quality filtering in the DADA2 workflow, and how does it impact downstream analyses?", + "How does the error rate learning process contribute to the identification of true biological sequences in DADA2?", + "What role does chimera removal play in the DADA2 pipeline, and why is it crucial for obtaining reliable ASV data?", + "How can phyloseq be used to explore and visualize the ASV table generated by DADA2, and what types of ecological insights can it provide?" + ], + "short_id": "T00441", + "short_tools": [ + "__UNZIP_COLLECTION__", + "phyloseq_from_dada2", + "interactive_tool_phyloseq", + "dada2_filterAndTrim", + "Grouping1", + "__SORTLIST__", + "dada2_learnErrors", + "dada2_dada", + "dada2_plotQualityProfile", + "tp_replace_in_column", + "dada2_removeBimeraDenovo", + "cat1", + "dada2_assignTaxonomyAddspecies", + "dada2_mergePairs", + "dada2_makeSequenceTable", + "collection_element_identifiers", + "dada2_seqCounts", + "tp_replace_in_line", + "Add_a_column1", + "tp_head_tool" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "microgalaxy" + ], + "time_estimation": "3H", + "title": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", + "tools": [ + "Grouping1", + "__SORTLIST__", + "__UNZIP_COLLECTION__", + "cat1", + "interactive_tool_phyloseq", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_dada/dada2_dada/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_dada/dada2_dada/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_filterandtrim/dada2_filterAndTrim/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_filterandtrim/dada2_filterAndTrim/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_learnerrors/dada2_learnErrors/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_learnerrors/dada2_learnErrors/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_mergepairs/dada2_mergePairs/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_mergepairs/dada2_mergePairs/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_plotqualityprofile/dada2_plotQualityProfile/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_plotqualityprofile/dada2_plotQualityProfile/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_removebimeradenovo/dada2_removeBimeraDenovo/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_removebimeradenovo/dada2_removeBimeraDenovo/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/phyloseq_from_dada2/phyloseq_from_dada2/1.46.0+galaxy0" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "dada-16S", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/dada-16S/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/dada-16S/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/dada-16S/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 124, + "visitors": 614, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "isNew": true, + "name": "" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nRaw reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nheader\"]\n 2[label=\"Sort collection\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"dada2: filterAndTrim\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"dada2: plotQualityProfile\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Unzip collection\"]\n 3 -> 5 [label=\"paired_output\"]\n 6[label=\"dada2: plotQualityProfile\"]\n 3 -> 6 [label=\"paired_output\"]\n 7[label=\"dada2: learnErrors\"]\n 5 -> 7 [label=\"forward\"]\n 8[label=\"dada2: learnErrors\"]\n 5 -> 8 [label=\"reverse\"]\n 9[label=\"dada2: dada\"]\n 5 -> 9 [label=\"forward\"]\n 7 -> 9 [label=\"errors\"]\n 10[label=\"dada2: dada\"]\n 5 -> 10 [label=\"reverse\"]\n 8 -> 10 [label=\"errors\"]\n 11[label=\"dada2: mergePairs\"]\n 9 -> 11 [label=\"data_collection\"]\n 10 -> 11 [label=\"data_collection\"]\n 5 -> 11 [label=\"forward\"]\n 5 -> 11 [label=\"reverse\"]\n 12[label=\"Extract element identifiers\"]\n 11 -> 12 [label=\"merged\"]\n 13[label=\"dada2: makeSequenceTable\"]\n 11 -> 13 [label=\"merged\"]\n k3fd2597939df4698bad1aabfccbb7bd2[color=lightseagreen,label=\"Output\\nsequence_table\"]\n 13 -> k3fd2597939df4698bad1aabfccbb7bd2\n 14[label=\"Replace Text\"]\n 12 -> 14 [label=\"output\"]\n 15[label=\"dada2: removeBimeraDenovo\"]\n 13 -> 15 [label=\"stable\"]\n 16[label=\"Select first\"]\n 14 -> 16 [label=\"outfile\"]\n 17[label=\"dada2: sequence counts\"]\n 3 -> 17 [label=\"outtab\"]\n 9 -> 17 [label=\"data_collection\"]\n 10 -> 17 [label=\"data_collection\"]\n 11 -> 17 [label=\"merged\"]\n 15 -> 17 [label=\"stable_sequencetable\"]\n kc758f86144bc4208b1f71f5106cb678e[color=lightseagreen,label=\"Output\\nsequence_counts\"]\n 17 -> kc758f86144bc4208b1f71f5106cb678e\n 18[label=\"dada2: assignTaxonomy and addSpecies\"]\n 15 -> 18 [label=\"stable_sequencetable\"]\n k904fe0a2832945ca8493fc688fb216c3[color=lightseagreen,label=\"Output\\ntaxons\"]\n 18 -> k904fe0a2832945ca8493fc688fb216c3\n 19[label=\"Compute\"]\n 16 -> 19 [label=\"outfile\"]\n 20[label=\"Replace Text\"]\n 19 -> 20 [label=\"out_file1\"]\n 21[label=\"Concatenate datasets\"]\n 1 -> 21 [label=\"output\"]\n 20 -> 21 [label=\"outfile\"]\n k5479d3203e8247a9a92b6ed5959459cf[color=lightseagreen,label=\"Output\\nmetada_table\"]\n 21 -> k5479d3203e8247a9a92b6ed5959459cf\n 22[label=\"Create phyloseq object\"]\n 21 -> 22 [label=\"out_file1\"]\n 15 -> 22 [label=\"stable_sequencetable\"]\n 18 -> 22 [label=\"output\"]\n}", + "history": [ + { + "hash": "97f8a3d0b5448245415db5a9d9e8ab2182f3cce8", + "message": "Fix Matthias' comments", + "num": 2, + "short_hash": "97f8a3d0b", + "unix": "1717577403" + }, + { + "hash": "c1470a165d4a76032ae6f7eec76b94a40b7930bb", + "message": "Finalize tuto, add workflow+test, rename tuto folder", + "num": 1, + "short_hash": "c1470a165", + "unix": "1717074187" + } + ], + "inputs": [ + { + "annotation": "raw_reads", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "raw_reads", + "name": "Raw reads" + } + ], + "label": "Raw reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 72 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2b66bb2a-4ae5-436a-9428-11ac08ab9e39", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "header", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "header", + "name": "header" + } + ], + "label": "header", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3019, + "top": 196 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"tabular\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "582c8937-b1cb-4f01-977f-93d4ccc631b8", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nRaw reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nheader\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Sort collection\"];\n 0 -->|output| 2;\n 3[\"dada2: filterAndTrim\"];\n 2 -->|output| 3;\n 4[\"dada2: plotQualityProfile\"];\n 2 -->|output| 4;\n 5[\"Unzip collection\"];\n 3 -->|paired_output| 5;\n 6[\"dada2: plotQualityProfile\"];\n 3 -->|paired_output| 6;\n 7[\"dada2: learnErrors\"];\n 5 -->|forward| 7;\n 8[\"dada2: learnErrors\"];\n 5 -->|reverse| 8;\n 9[\"dada2: dada\"];\n 5 -->|forward| 9;\n 7 -->|errors| 9;\n 10[\"dada2: dada\"];\n 5 -->|reverse| 10;\n 8 -->|errors| 10;\n 11[\"dada2: mergePairs\"];\n 9 -->|data_collection| 11;\n 10 -->|data_collection| 11;\n 5 -->|forward| 11;\n 5 -->|reverse| 11;\n 12[\"Extract element identifiers\"];\n 11 -->|merged| 12;\n 13[\"dada2: makeSequenceTable\"];\n 11 -->|merged| 13;\n 3fd25979-39df-4698-bad1-aabfccbb7bd2[\"Output\\nsequence_table\"];\n 13 --> 3fd25979-39df-4698-bad1-aabfccbb7bd2;\n style 3fd25979-39df-4698-bad1-aabfccbb7bd2 stroke:#2c3143,stroke-width:4px;\n 14[\"Replace Text\"];\n 12 -->|output| 14;\n 15[\"dada2: removeBimeraDenovo\"];\n 13 -->|stable| 15;\n 16[\"Select first\"];\n 14 -->|outfile| 16;\n 17[\"dada2: sequence counts\"];\n 3 -->|outtab| 17;\n 9 -->|data_collection| 17;\n 10 -->|data_collection| 17;\n 11 -->|merged| 17;\n 15 -->|stable_sequencetable| 17;\n c758f861-44bc-4208-b1f7-1f5106cb678e[\"Output\\nsequence_counts\"];\n 17 --> c758f861-44bc-4208-b1f7-1f5106cb678e;\n style c758f861-44bc-4208-b1f7-1f5106cb678e stroke:#2c3143,stroke-width:4px;\n 18[\"dada2: assignTaxonomy and addSpecies\"];\n 15 -->|stable_sequencetable| 18;\n 904fe0a2-8329-45ca-8493-fc688fb216c3[\"Output\\ntaxons\"];\n 18 --> 904fe0a2-8329-45ca-8493-fc688fb216c3;\n style 904fe0a2-8329-45ca-8493-fc688fb216c3 stroke:#2c3143,stroke-width:4px;\n 19[\"Compute\"];\n 16 -->|outfile| 19;\n 20[\"Replace Text\"];\n 19 -->|out_file1| 20;\n 21[\"Concatenate datasets\"];\n 1 -->|output| 21;\n 20 -->|outfile| 21;\n 5479d320-3e82-47a9-a92b-6ed5959459cf[\"Output\\nmetada_table\"];\n 21 --> 5479d320-3e82-47a9-a92b-6ed5959459cf;\n style 5479d320-3e82-47a9-a92b-6ed5959459cf stroke:#2c3143,stroke-width:4px;\n 22[\"Create phyloseq object\"];\n 21 -->|out_file1| 22;\n 15 -->|stable_sequencetable| 22;\n 18 -->|output| 22;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.30.0+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "samples": { + "id": 11, + "output_name": "merged" + } + }, + "inputs": [], + "label": null, + "name": "dada2: makeSequenceTable", + "outputs": [ + { + "name": "stable", + "type": "dada2_sequencetable" + }, + { + "name": "plot_output", + "type": "pdf" + } + ], + "position": { + "left": 1970.000125527473, + "top": 273.99367961852937 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.30.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "75c8945b0da2", + "name": "dada2_makesequencetable", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_cond\": {\"filter_select\": \"no\", \"__current_case__\": 0}, \"orderBy\": \"abundance\", \"plot\": true, \"samples\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.30.0+galaxy0", + "type": "tool", + "uuid": "609d25ec-eea3-4893-9d8f-1de0bd185664", + "when": null, + "workflow_outputs": [ + { + "label": "sequence_table", + "output_name": "stable", + "uuid": "3fd25979-39df-4698-bad1-aabfccbb7bd2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.30.0+galaxy0", + "errors": null, + "id": 17, + "input_connections": { + "inrep_0|input": { + "id": 3, + "output_name": "outtab" + }, + "inrep_1|input": { + "id": 9, + "output_name": "data_collection" + }, + "inrep_2|input": { + "id": 10, + "output_name": "data_collection" + }, + "inrep_3|input": { + "id": 11, + "output_name": "merged" + }, + "inrep_4|input": { + "id": 15, + "output_name": "stable_sequencetable" + } + }, + "inputs": [], + "label": null, + "name": "dada2: sequence counts", + "outputs": [ + { + "name": "counts", + "type": "tabular" + } + ], + "position": { + "left": 2550, + "top": 154 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.30.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a7817705348e", + "name": "dada2_seqcounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"inrep\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"FiltTrim\"}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"Dada Forward\"}, {\"__index__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"Dada Reverse\"}, {\"__index__\": 3, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"SeqTab\"}, {\"__index__\": 4, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": \"Bimera\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.30.0+galaxy0", + "type": "tool", + "uuid": "e749677d-de5a-4cf8-93de-e709b42b38f7", + "when": null, + "workflow_outputs": [ + { + "label": "sequence_counts", + "output_name": "counts", + "uuid": "c758f861-44bc-4208-b1f7-1f5106cb678e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "seqs": { + "id": 15, + "output_name": "stable_sequencetable" + } + }, + "inputs": [], + "label": null, + "name": "dada2: assignTaxonomy and addSpecies", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2830, + "top": 431 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "65db807336bc", + "name": "dada2_assigntaxonomyaddspecies", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"addSpecies_cond\": {\"addSpecies_select\": \"TRUE\", \"__current_case__\": 1, \"speciesreference_cond\": {\"speciesreference_select\": \"builtin\", \"__current_case__\": 0, \"speciesrefFasta\": \"silva_132\"}, \"allowMultiple_cond\": {\"allowMultiple\": \"FALSE\", \"__current_case__\": 0}, \"tryRC\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"minBoot\": \"50\", \"outputBootstraps\": false, \"reference_cond\": {\"reference_select\": \"builtin\", \"__current_case__\": 0, \"refFasta\": \"silva_132\"}, \"seed\": null, \"seqs\": {\"__class__\": \"ConnectedValue\"}, \"tryRC\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.30.0+galaxy0", + "type": "tool", + "uuid": "984044aa-daa8-4082-9a48-623bd5e6f448", + "when": null, + "workflow_outputs": [ + { + "label": "taxons", + "output_name": "output", + "uuid": "904fe0a2-8329-45ca-8493-fc688fb216c3" + } + ] + }, + { + "annotation": "", + "content_id": "cat1", + "errors": null, + "id": 21, + "input_connections": { + "input1": { + "id": 1, + "output_name": "output" + }, + "queries_0|input2": { + "id": 20, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 3390, + "top": 12 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Metadata table" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "cat1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [{\"__index__\": 0, \"input2\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "708b9c3c-9de6-4722-9852-39c1b82310b6", + "when": null, + "workflow_outputs": [ + { + "label": "metada_table", + "output_name": "out_file1", + "uuid": "5479d320-3e82-47a9-a92b-6ed5959459cf" + } + ] + } + ], + "parent_id": "microbiome/dada-16S", + "path": "topics/microbiome/tutorials/dada-16S/workflows/workflow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": true, + "title": "Building an amplicon sequence variant (ASV) table from 16S data using DADA2", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-dada-16S/versions/workflow", + "tutorial_id": "dada-16S", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/dada-16S/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/dada-16S/workflows/workflow.html", + "version": 1, + "wfid": "microbiome-dada-16S", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "__SORTLIST__", + "__UNZIP_COLLECTION__", + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_assigntaxonomyaddspecies/dada2_assignTaxonomyAddspecies/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_dada/dada2_dada/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_filterandtrim/dada2_filterAndTrim/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_learnerrors/dada2_learnErrors/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_makesequencetable/dada2_makeSequenceTable/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_mergepairs/dada2_mergePairs/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_plotqualityprofile/dada2_plotQualityProfile/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_removebimeradenovo/dada2_removeBimeraDenovo/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dada2_seqcounts/dada2_seqCounts/1.30.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/phyloseq_from_dada2/phyloseq_from_dada2/1.46.0+galaxy0" + ], + "workflowhub_id": "1105" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.800651" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "add_line_to_file", + "owner": "bgruening", + "revisions": "8e251055b1a9", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "flye", + "owner": "bgruening", + "revisions": "276f5d8712d5", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "flye", + "owner": "bgruening", + "revisions": "cb8dfd28c16f", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_on_column", + "owner": "bgruening", + "revisions": "ff2a81aa3f08", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "6cbe2f30c2d7", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clustalw", + "owner": "devteam", + "revisions": "5b097fde95dd", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_to_tabular", + "owner": "devteam", + "revisions": "e7ed3c310b74", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_fasta", + "owner": "devteam", + "revisions": "0a7799698fe5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "revisions": "f546e7278f04", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "503bcd6ebe4b", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "503bcd6ebe4b", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "abricate", + "owner": "iuc", + "revisions": "c2ef298da409", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_split_mapped", + "owner": "iuc", + "revisions": "fa7b5520ae53", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "b2860df42e16", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "1171446da5db", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "f867422772d6", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_norm", + "owner": "iuc", + "revisions": "da6fc9f4a367", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clair3", + "owner": "iuc", + "revisions": "63e02ef6e153", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_element_identifiers", + "owner": "iuc", + "revisions": "d3c07d270a50", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "compose_text_param", + "owner": "iuc", + "revisions": "e188c9826e0f", + "tool_panel_section_label": "Expression Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "c59d48774d03", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasttree", + "owner": "iuc", + "revisions": "e005e659ae21", + "tool_panel_section_label": "Genome Diversity", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_heatmap", + "owner": "iuc", + "revisions": "10515715c940", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_extract_kraken_reads", + "owner": "iuc", + "revisions": "f329328da134", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_kreport2krona", + "owner": "iuc", + "revisions": "2deaada69b14", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "revisions": "79e9a869f40e", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "11a0d50a54e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "5cc34c3f440d", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mlst", + "owner": "iuc", + "revisions": "31812e7a1315", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "9a913cdee30e", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "edbb6c5028f5", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "a02b8b3f5a0c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "newick_utils", + "owner": "iuc", + "revisions": "b4163d2f64ab", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "5f76b20953e5", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "543cbeef3949", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_coverage", + "owner": "iuc", + "revisions": "c4ff13d2aab3", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_depth", + "owner": "iuc", + "revisions": "971dc85e9441", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_fastx", + "owner": "iuc", + "revisions": "66e23b11feae", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "table_compute", + "owner": "iuc", + "revisions": "3bf5661c0280", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: add_line_to_file\n owner: bgruening\n revisions: 8e251055b1a9\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: flye\n owner: bgruening\n revisions: 276f5d8712d5\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: flye\n owner: bgruening\n revisions: cb8dfd28c16f\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_on_column\n owner: bgruening\n revisions: ff2a81aa3f08\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: 6cbe2f30c2d7\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clustalw\n owner: devteam\n revisions: 5b097fde95dd\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_to_tabular\n owner: devteam\n revisions: e7ed3c310b74\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_fasta\n owner: devteam\n revisions: 0a7799698fe5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_merge_files_and_filter_unique_sequences\n owner: galaxyp\n revisions: f546e7278f04\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 503bcd6ebe4b\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 503bcd6ebe4b\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: abricate\n owner: iuc\n revisions: c2ef298da409\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_split_mapped\n owner: iuc\n revisions: fa7b5520ae53\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: b2860df42e16\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: 1171446da5db\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: f867422772d6\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_norm\n owner: iuc\n revisions: da6fc9f4a367\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clair3\n owner: iuc\n revisions: 63e02ef6e153\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_element_identifiers\n owner: iuc\n revisions: d3c07d270a50\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: compose_text_param\n owner: iuc\n revisions: e188c9826e0f\n tool_panel_section_label: Expression Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: c59d48774d03\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasttree\n owner: iuc\n revisions: e005e659ae21\n tool_panel_section_label: Genome Diversity\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_heatmap\n owner: iuc\n revisions: 10515715c940\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_extract_kraken_reads\n owner: iuc\n revisions: f329328da134\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_kreport2krona\n owner: iuc\n revisions: 2deaada69b14\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: medaka_consensus_pipeline\n owner: iuc\n revisions: 79e9a869f40e\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 11a0d50a54e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: 5cc34c3f440d\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mlst\n owner: iuc\n revisions: 31812e7a1315\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 9a913cdee30e\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: edbb6c5028f5\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: a02b8b3f5a0c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: newick_utils\n owner: iuc\n revisions: b4163d2f64ab\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 5f76b20953e5\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 543cbeef3949\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_coverage\n owner: iuc\n revisions: c4ff13d2aab3\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_depth\n owner: iuc\n revisions: 971dc85e9441\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_fastx\n owner: iuc\n revisions: 66e23b11feae\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: table_compute\n owner: iuc\n revisions: 3bf5661c0280\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "EngyNasr", + "paulzierep" + ], + "editing": [ + "hrhotz", + "wm75" + ], + "funding": [ + "gallantries", + "eosc-life" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "engynasr94@gmail.com", + "id": "EngyNasr", + "joined": "2021-05", + "matrix": "EngyNasr:matrix.org", + "name": "Engy Nasr", + "orcid": "0000-0001-9047-4215", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/EngyNasr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/EngyNasr.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "hrhotz@googlemail.com", + "fediverse": "https://genomic.social/@hrhotz", + "fediverse_flavor": "mastodon", + "id": "hrhotz", + "joined": "2017-09", + "linkedin": "hans-rudolf-hotz-542b31", + "location": { + "country": "CH", + "lat": 47.57, + "lon": 7.6 + }, + "matrix": "hrhotz:matrix.org", + "name": "Hans-Rudolf Hotz", + "orcid": "0000-0002-2799-424X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hrhotz/", + "twitter": "hrhotz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hrhotz.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "avatar": "https://www.eosc-life.eu/wp-content/themes/eosc-life-v2/assets/images/eosclogo.png", + "funder": true, + "funding_id": "824087", + "funding_statement": "EOSC-Life has received funding from the European Union\u2019s Horizon 2020 programme under grant agreement number 824087", + "funding_system": "cordis", + "github": false, + "id": "eosc-life", + "joined": "2023-04", + "members": [ + "bgruening" + ], + "name": "EOSC-Life", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eosc-life/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eosc-life.json" + } + ], + "dir": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data", + "edam_ontology": [ + "topic_3174", + "topic_3305", + "topic_0637", + "topic_0196", + "topic_0634", + "topic_0080" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence composition calculation", + "Taxonomic classification", + "Phylogenetic tree generation (maximum likelihood and Bayesian methods)", + "Phylogenetic tree generation", + "Phylogenetic tree generation (from molecular sequences)", + "Pairwise sequence alignment", + "Sequence assembly visualisation", + "Multilocus sequence typing", + "Cross-assembly", + "Genome assembly", + "Base-calling", + "Validation", + "Sequence assembly", + "Statistical calculation", + "Phylogenetic tree reconstruction", + "Sequence contamination filtering", + "De-novo assembly", + "Mapping", + "Box-Whisker plot plotting", + "Phylogenetic tree analysis", + "Sequence alignment analysis", + "Scatter plot plotting", + "Mapping assembly", + "Multiple sequence alignment", + "Data handling", + "Variant calling", + "Antimicrobial resistance prediction", + "Aggregation" + ], + "edam_topic": [ + "Metagenomics", + "Public health and epidemiology", + "Taxonomy", + "Sequence assembly", + "Pathology", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-07-26", + "objectives": [ + "Check quality reports generated by FastQC and NanoPlot for metagenomics Nanopore data", + "Preprocess the sequencing data to remove adapters, poor quality base content and host/contaminating reads", + "Perform taxonomy profiling indicating and visualizing up to species level in the samples", + "Identify pathogens based on the found virulence factor gene products via assembly, identify strains and indicate all antimicrobial resistance genes in samples", + "Identify pathogens via SNP calling and build the consensus gemone of the samples", + "Relate all samples' pathogenic genes for tracking pathogens via phylogenetic trees and heatmaps" + ], + "pageviews": 2521, + "pub_date": "2023-01-26", + "questions": [ + "What are the preprocessing steps to prepare ONT sequencing data for further analysis?", + "How to identify pathogens using sequencing data?", + "How to track the found pathogens through all your samples datasets?" + ], + "recordings": [ + { + "captioners": [ + "EngyNasr" + ], + "date": "2023-05-01", + "galaxy_version": "23.01", + "length": "1H45M", + "speakers": [ + "EngyNasr" + ], + "youtube_id": "gQHb_jkj-Z0" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial", + "/short/microbiome/pathogen-detection-from-nanopore-foodborne-data", + "/short/T00208", + "/short/T00393" + ], + "short_id": "T00393", + "short_tools": [ + "__BUILD_LIST__", + "__FILTER_FAILED_DATASETS__", + "abricate", + "newick_display", + "krakentools_extract_kraken_reads", + "Count1", + "Cut1", + "snpSift_extractFields", + "kraken2", + "table_compute", + "fasta2tab", + "Remove beginning1", + "fasttree", + "add_line_to_file", + "collapse_dataset", + "Grep1", + "Grouping1", + "bcftools_consensus", + "bcftools_norm", + "ggplot2_heatmap", + "collection_column_join", + "clair3", + "tp_sorted_uniq", + "fasta_merge_files_and_filter_unique_sequences", + "tp_replace_in_column", + "CONVERTER_gz_to_uncompressed", + "regex1", + "porechop", + "tab2fasta", + "__FILTER_EMPTY_DATASETS__", + "taxonomy_krona_chart", + "tp_find_and_replace", + "tp_cut_tool", + "Paste1", + "flye", + "mlst", + "bedtools_getfastabed", + "collection_element_identifiers", + "bandage_image", + "tp_split_on_column", + "clustalw", + "regexColumn1", + "medaka_consensus_pipeline", + "samtools_coverage", + "krakentools_kreport2krona", + "barchart_gnuplot", + "nanoplot", + "param_value_from_file", + "compose_text_param", + "fastp", + "tp_multijoin_tool", + "multiqc", + "samtools_fastx", + "bamtools_split_mapped", + "snpSift_filter", + "samtools_depth", + "fastqc", + "minimap2", + "split_file_to_collection", + "Add_a_column1", + "tp_head_tool" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "microgalaxy", + "Nanopore data analysis", + "Pathogens detection", + "Phylogenetic tree", + "Heatmap", + "cyoa" + ], + "time_estimation": "4h", + "title": "Pathogen detection from (direct Nanopore) sequencing data using Galaxy - Foodborne Edition", + "tools": [ + "CONVERTER_gz_to_uncompressed", + "Count1", + "Cut1", + "Grep1", + "Grouping1", + "Paste1", + "Remove beginning1", + "__BUILD_LIST__", + "__FILTER_EMPTY_DATASETS__", + "__FILTER_FAILED_DATASETS__", + "barchart_gnuplot", + "param_value_from_file", + "toolshed.g2.bx.psu.edu/repos/bgruening/add_line_to_file/add_line_to_file/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.6", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_multijoin_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped/2.5.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/clair3/clair3/0.1.12+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap/ggplot2_heatmap/3.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/mlst/mlst/2.22.0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_coverage/samtools_coverage/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_depth/samtools_depth/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "pathogen-detection-from-nanopore-foodborne-data", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 181, + "visitors": 1680, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Microbiome - Variant calling and Consensus Building", + "features": { + "comments": true, + "parameters": true, + "report": { + "markdown": "# Allele based Pathogen Identification Workflow Report\nBelow are the results for the Allele based Pathogenic Identification Workflow\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Workflow Inputs\nThe Perprocessing workflow main output (Collection of all samples reads after quality retaining and hosts filtering), and a FASTA file of the reference genome of the main Pathogen identified in the Gene based Pathogen Identification workflow, or per-known to the user.\n\n## Workflow Output: \n\n### All variants found per sample against the reference genome\n\n```galaxy\nhistory_dataset_display(output=\"extracted_fields_from_the_vcf_output\")\n```\n\n### Number of variants per sample\n\n```galaxy\nhistory_dataset_display(output=\"number_of_variants_per_sample\")\n```\n\n### Mapping mean depth per sample\n\n```galaxy\nhistory_dataset_display(output=\"mapping_mean_depth_per_sample\")\n```\n\n### Mapping coverage per sample\n\n```galaxy\nhistory_dataset_display(output=\"mapping_coverage_percentage_per_sample\")\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nsamples_profile\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreference_genome_of_tested_strain\"]\n 3[label=\"Convert compressed file to uncompressed.\"]\n 2 -> 3 [label=\"output\"]\n k9d6bde4a718040979ffd6992111a617c[color=lightseagreen,label=\"Output\\ndecompressed_rg_file\"]\n 3 -> k9d6bde4a718040979ffd6992111a617c\n 4[label=\"Map with minimap2\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output1\"]\n k31779c234f26418e94182551e883dbe7[color=lightseagreen,label=\"Output\\nmap_with_minimap2\"]\n 4 -> k31779c234f26418e94182551e883dbe7\n 5[label=\"Clair3\"]\n 4 -> 5 [label=\"alignment_output\"]\n 3 -> 5 [label=\"output1\"]\n k1cf1ee6c4cb745e39c7b88a1b678dd53[color=lightseagreen,label=\"Output\\nclair3_pileup_vcf\"]\n 5 -> k1cf1ee6c4cb745e39c7b88a1b678dd53\n k987f914583ab44f1801ab0d527ecbce8[color=lightseagreen,label=\"Output\\nclair3_full_alignment_vcf\"]\n 5 -> k987f914583ab44f1801ab0d527ecbce8\n kfab82215f59a43b192d737629a1fdb65[color=lightseagreen,label=\"Output\\nclair3_merged_output\"]\n 5 -> kfab82215f59a43b192d737629a1fdb65\n 6[label=\"Samtools depth\"]\n 4 -> 6 [label=\"alignment_output\"]\n 7[label=\"Samtools coverage\"]\n 4 -> 7 [label=\"alignment_output\"]\n 8[label=\"bcftools norm\"]\n 5 -> 8 [label=\"merge_output\"]\n 3 -> 8 [label=\"output1\"]\n k22553aa1f5db4d3787c41164dbb3d2d5[color=lightseagreen,label=\"Output\\nnormalized_vcf_output\"]\n 8 -> k22553aa1f5db4d3787c41164dbb3d2d5\n 9[label=\"Advanced Cut\"]\n 6 -> 9 [label=\"output\"]\n 10[label=\"Remove beginning\"]\n 7 -> 10 [label=\"output\"]\n 11[label=\"SnpSift Filter\"]\n 8 -> 11 [label=\"output_file\"]\n k3e7981ec2205457193eb10c0dd14b288[color=lightseagreen,label=\"Output\\nquality_filtered_vcf_output\"]\n 11 -> k3e7981ec2205457193eb10c0dd14b288\n 12[label=\"Table Compute\"]\n 9 -> 12 [label=\"output\"]\n 13[label=\"Cut\"]\n 10 -> 13 [label=\"out_file1\"]\n 14[label=\"SnpSift Extract Fields\"]\n 11 -> 14 [label=\"output\"]\n k1b0f4f2c471745beb580fe10cba78c35[color=lightseagreen,label=\"Output\\nextracted_fields_from_the_vcf_output\"]\n 14 -> k1b0f4f2c471745beb580fe10cba78c35\n 15[label=\"bcftools consensus\"]\n 11 -> 15 [label=\"output\"]\n 3 -> 15 [label=\"output1\"]\n k49497f3c93324924bcfdcb71788ad2c2[color=lightseagreen,label=\"Output\\nbcftools_consensus\"]\n 15 -> k49497f3c93324924bcfdcb71788ad2c2\n 16[label=\"Select first\"]\n 13 -> 16 [label=\"out_file1\"]\n 17[label=\"Remove beginning\"]\n 14 -> 17 [label=\"output\"]\n 18[label=\"Collapse Collection\"]\n 16 -> 18 [label=\"outfile\"]\n k5ee1c1581a8545ca9abdb30632b3092c[color=lightseagreen,label=\"Output\\nmapping_coverage_percentage_per_sample\"]\n 18 -> k5ee1c1581a8545ca9abdb30632b3092c\n 19[label=\"Count\"]\n 17 -> 19 [label=\"out_file1\"]\n 20[label=\"Advanced Cut\"]\n 18 -> 20 [label=\"output\"]\n 21[label=\"Cut\"]\n 19 -> 21 [label=\"out_file1\"]\n 22[label=\"Paste\"]\n 20 -> 22 [label=\"output\"]\n 12 -> 22 [label=\"table\"]\n k25b7b87b5ef1487f90cc81351a2f81ce[color=lightseagreen,label=\"Output\\nmapping_mean_depth_per_sample\"]\n 22 -> k25b7b87b5ef1487f90cc81351a2f81ce\n 23[label=\"Select first\"]\n 21 -> 23 [label=\"out_file1\"]\n 24[label=\"Collapse Collection\"]\n 23 -> 24 [label=\"outfile\"]\n 25[label=\"Column Regex Find And Replace\"]\n 24 -> 25 [label=\"output\"]\n k2852c4ee24ea4df7b59e54eb6e2f470b[color=lightseagreen,label=\"Output\\nnumber_of_variants_per_sample\"]\n 25 -> k2852c4ee24ea4df7b59e54eb6e2f470b\n}", + "history": [ + { + "hash": "fea16c6949ebaafe1f872bfe3a5f05958a15e7f9", + "message": "updating to include all previous comments", + "num": 1, + "short_hash": "fea16c694", + "unix": "1718833675" + } + ], + "inputs": [ + { + "annotation": "Output collection from the Nanopore Preprocessing workflow", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Output collection from the Nanopore Preprocessing workflow", + "name": "collection_of_preprocessed_samples" + } + ], + "label": "collection_of_preprocessed_samples", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 6, + "top": 205 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "7aaa03a4-2647-411b-863d-90f28ed01f32", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "based on the lab preparation of the samples during sequencing, there should be a sample profile better than the other, to be chosen as an optional input to Minimap2. e.g. PacBio/Oxford Nanpore\n\nFor more details check: https://github.com/lh3/minimap2?tab=readme-ov-file#use-cases", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "based on the lab preparation of the samples during sequencing, there should be a sample profile better than the other, to be chosen as an optional input to Minimap2. e.g. PacBio/Oxford Nanpore\n\nFor more details check: https://github.com/lh3/minimap2?tab=readme-ov-file#use-cases", + "name": "samples_profile" + } + ], + "label": "samples_profile", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 260, + "top": 35 + }, + "tool_id": null, + "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "d28b9bed-c674-406c-b58b-165bcc8eec17", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Can be built in the tool later", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Can be built in the tool later", + "name": "reference_genome_of_tested_strain" + } + ], + "label": "reference_genome_of_tested_strain", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 374 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "773b7592-d66c-4a85-92ba-06c0ab0f843f", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nsamples_profile\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nreference_genome_of_tested_strain\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Convert compressed file to uncompressed.\"];\n 2 -->|output| 3;\n 9d6bde4a-7180-4097-9ffd-6992111a617c[\"Output\\ndecompressed_rg_file\"];\n 3 --> 9d6bde4a-7180-4097-9ffd-6992111a617c;\n style 9d6bde4a-7180-4097-9ffd-6992111a617c stroke:#2c3143,stroke-width:4px;\n 4[\"Map with minimap2\"];\n 1 -->|output| 4;\n 0 -->|output| 4;\n 3 -->|output1| 4;\n 31779c23-4f26-418e-9418-2551e883dbe7[\"Output\\nmap_with_minimap2\"];\n 4 --> 31779c23-4f26-418e-9418-2551e883dbe7;\n style 31779c23-4f26-418e-9418-2551e883dbe7 stroke:#2c3143,stroke-width:4px;\n 5[\"Clair3\"];\n 4 -->|alignment_output| 5;\n 3 -->|output1| 5;\n 1cf1ee6c-4cb7-45e3-9c7b-88a1b678dd53[\"Output\\nclair3_pileup_vcf\"];\n 5 --> 1cf1ee6c-4cb7-45e3-9c7b-88a1b678dd53;\n style 1cf1ee6c-4cb7-45e3-9c7b-88a1b678dd53 stroke:#2c3143,stroke-width:4px;\n 987f9145-83ab-44f1-801a-b0d527ecbce8[\"Output\\nclair3_full_alignment_vcf\"];\n 5 --> 987f9145-83ab-44f1-801a-b0d527ecbce8;\n style 987f9145-83ab-44f1-801a-b0d527ecbce8 stroke:#2c3143,stroke-width:4px;\n fab82215-f59a-43b1-92d7-37629a1fdb65[\"Output\\nclair3_merged_output\"];\n 5 --> fab82215-f59a-43b1-92d7-37629a1fdb65;\n style fab82215-f59a-43b1-92d7-37629a1fdb65 stroke:#2c3143,stroke-width:4px;\n 6[\"Samtools depth\"];\n 4 -->|alignment_output| 6;\n 7[\"Samtools coverage\"];\n 4 -->|alignment_output| 7;\n 8[\"bcftools norm\"];\n 5 -->|merge_output| 8;\n 3 -->|output1| 8;\n 22553aa1-f5db-4d37-87c4-1164dbb3d2d5[\"Output\\nnormalized_vcf_output\"];\n 8 --> 22553aa1-f5db-4d37-87c4-1164dbb3d2d5;\n style 22553aa1-f5db-4d37-87c4-1164dbb3d2d5 stroke:#2c3143,stroke-width:4px;\n 9[\"Advanced Cut\"];\n 6 -->|output| 9;\n 10[\"Remove beginning\"];\n 7 -->|output| 10;\n 11[\"SnpSift Filter\"];\n 8 -->|output_file| 11;\n 3e7981ec-2205-4571-93eb-10c0dd14b288[\"Output\\nquality_filtered_vcf_output\"];\n 11 --> 3e7981ec-2205-4571-93eb-10c0dd14b288;\n style 3e7981ec-2205-4571-93eb-10c0dd14b288 stroke:#2c3143,stroke-width:4px;\n 12[\"Table Compute\"];\n 9 -->|output| 12;\n 13[\"Cut\"];\n 10 -->|out_file1| 13;\n 14[\"SnpSift Extract Fields\"];\n 11 -->|output| 14;\n 1b0f4f2c-4717-45be-b580-fe10cba78c35[\"Output\\nextracted_fields_from_the_vcf_output\"];\n 14 --> 1b0f4f2c-4717-45be-b580-fe10cba78c35;\n style 1b0f4f2c-4717-45be-b580-fe10cba78c35 stroke:#2c3143,stroke-width:4px;\n 15[\"bcftools consensus\"];\n 11 -->|output| 15;\n 3 -->|output1| 15;\n 49497f3c-9332-4924-bcfd-cb71788ad2c2[\"Output\\nbcftools_consensus\"];\n 15 --> 49497f3c-9332-4924-bcfd-cb71788ad2c2;\n style 49497f3c-9332-4924-bcfd-cb71788ad2c2 stroke:#2c3143,stroke-width:4px;\n 16[\"Select first\"];\n 13 -->|out_file1| 16;\n 17[\"Remove beginning\"];\n 14 -->|output| 17;\n 18[\"Collapse Collection\"];\n 16 -->|outfile| 18;\n 5ee1c158-1a85-45ca-9abd-b30632b3092c[\"Output\\nmapping_coverage_percentage_per_sample\"];\n 18 --> 5ee1c158-1a85-45ca-9abd-b30632b3092c;\n style 5ee1c158-1a85-45ca-9abd-b30632b3092c stroke:#2c3143,stroke-width:4px;\n 19[\"Count\"];\n 17 -->|out_file1| 19;\n 20[\"Advanced Cut\"];\n 18 -->|output| 20;\n 21[\"Cut\"];\n 19 -->|out_file1| 21;\n 22[\"Paste\"];\n 20 -->|output| 22;\n 12 -->|table| 22;\n 25b7b87b-5ef1-487f-90cc-81351a2f81ce[\"Output\\nmapping_mean_depth_per_sample\"];\n 22 --> 25b7b87b-5ef1-487f-90cc-81351a2f81ce;\n style 25b7b87b-5ef1-487f-90cc-81351a2f81ce stroke:#2c3143,stroke-width:4px;\n 23[\"Select first\"];\n 21 -->|out_file1| 23;\n 24[\"Collapse Collection\"];\n 23 -->|outfile| 24;\n 25[\"Column Regex Find And Replace\"];\n 24 -->|output| 25;\n 2852c4ee-24ea-4df7-b59e-54eb6e2f470b[\"Output\\nnumber_of_variants_per_sample\"];\n 25 --> 2852c4ee-24ea-4df7-b59e-54eb6e2f470b;\n style 2852c4ee-24ea-4df7-b59e-54eb6e2f470b stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Allele-based Pathogen Identification", + "outputs": [ + { + "annotation": "", + "content_id": "CONVERTER_gz_to_uncompressed", + "errors": null, + "id": 3, + "input_connections": { + "input1": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Convert compressed file to uncompressed.", + "outputs": [ + { + "name": "output1", + "type": "auto" + } + ], + "position": { + "left": 233, + "top": 346 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput1": { + "action_arguments": { + "newtype": "fasta" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output1" + }, + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "decompressed_rg_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "CONVERTER_gz_to_uncompressed", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "1ce51556-5526-4c7e-9b94-9634e8e25ed0", + "when": null, + "workflow_outputs": [ + { + "label": "decompressed_rg_file", + "output_name": "output1", + "uuid": "9d6bde4a-7180-4097-9ffd-6992111a617c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 1, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 0, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": null, + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 573, + "top": 40 + }, + "post_job_actions": { + "RenameDatasetActionalignment_output": { + "action_arguments": { + "newname": "map_with_minimap2" + }, + "action_type": "RenameDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "tool_shed_repository": { + "changeset_revision": "11a0d50a54e6", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"BAM\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.24+galaxy0", + "type": "tool", + "uuid": "6da37636-966d-4975-bce3-d650feaeb17c", + "when": null, + "workflow_outputs": [ + { + "label": "map_with_minimap2", + "output_name": "alignment_output", + "uuid": "31779c23-4f26-418e-9418-2551e883dbe7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/clair3/clair3/0.1.12+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "bam_input": { + "id": 4, + "output_name": "alignment_output" + }, + "ref_source|ref_fasta": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Clair3", + "name": "ref_source" + } + ], + "label": null, + "name": "Clair3", + "outputs": [ + { + "name": "merge_output", + "type": "vcf_bgzip" + }, + { + "name": "pileup", + "type": "vcf_bgzip" + }, + { + "name": "full_alignment", + "type": "vcf_bgzip" + } + ], + "position": { + "left": 853, + "top": 46 + }, + "post_job_actions": { + "RenameDatasetActionfull_alignment": { + "action_arguments": { + "newname": "clair3_full_alignment_vcf" + }, + "action_type": "RenameDatasetAction", + "output_name": "full_alignment" + }, + "RenameDatasetActionmerge_output": { + "action_arguments": { + "newname": "clair3_merged_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "merge_output" + }, + "RenameDatasetActionpileup": { + "action_arguments": { + "newname": "clair3_pileup_vcf" + }, + "action_type": "RenameDatasetAction", + "output_name": "pileup" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/clair3/clair3/0.1.12+galaxy0", + "tool_shed_repository": { + "changeset_revision": "63e02ef6e153", + "name": "clair3", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"qual\": \"0\", \"snp_min_af\": \"0.08\", \"indel_min_af\": \"0.15\", \"enable_phasing\": false, \"no_phasing_for_fa\": false, \"print_ref_calls\": false, \"ploidity_model\": \"--haploid_precise\", \"chunk_size\": \"5000000\"}, \"bam_input\": {\"__class__\": \"ConnectedValue\"}, \"bed_or_vcf\": {\"bed_or_vcf_selector\": \"unrestricted\", \"__current_case__\": 2, \"include_all_ctgs\": true}, \"gvcf\": false, \"model_source\": {\"source\": \"built-in\", \"__current_case__\": 0, \"select_built_in\": \"r941_prom_hac_g360+g422\"}, \"output_files\": [\"full_alignment\", \"pileup\"], \"ref_source\": {\"source\": \"history\", \"__current_case__\": 0, \"ref_fasta\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.12+galaxy0", + "type": "tool", + "uuid": "ffbad354-41de-488d-bb37-929926bbfb31", + "when": null, + "workflow_outputs": [ + { + "label": "clair3_pileup_vcf", + "output_name": "pileup", + "uuid": "1cf1ee6c-4cb7-45e3-9c7b-88a1b678dd53" + }, + { + "label": "clair3_full_alignment_vcf", + "output_name": "full_alignment", + "uuid": "987f9145-83ab-44f1-801a-b0d527ecbce8" + }, + { + "label": "clair3_merged_output", + "output_name": "merge_output", + "uuid": "fab82215-f59a-43b1-92d7-37629a1fdb65" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "merge_output" + }, + "reference_source|fasta_ref": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools norm", + "name": "reference_source" + } + ], + "label": null, + "name": "bcftools norm", + "outputs": [ + { + "name": "output_file", + "type": "vcf" + } + ], + "position": { + "left": 1089, + "top": 48 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "normalized_vcf_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "da6fc9f4a367", + "name": "bcftools_norm", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"check_ref\": \"w\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"multiallelics\": {\"mode\": \"\", \"__current_case__\": 0}, \"normalize_indels\": false, \"output_type\": \"v\", \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"ConnectedValue\"}}, \"rm_dup\": \"\", \"sec_default\": {\"site_win\": \"1000\"}, \"sec_restrict\": {\"regions\": {\"regions_src\": \"__none__\", \"__current_case__\": 0}, \"targets\": {\"targets_src\": \"__none__\", \"__current_case__\": 0}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "9a34ec91-725e-49b2-973b-1c508e4bdc5d", + "when": null, + "workflow_outputs": [ + { + "label": "normalized_vcf_output", + "output_name": "output_file", + "uuid": "22553aa1-f5db-4d37-87c4-1164dbb3d2d5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 8, + "output_name": "output_file" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Filter", + "outputs": [ + { + "name": "output", + "type": "vcf" + } + ], + "position": { + "left": 1317, + "top": 46 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "quality_filtered_vcf_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "tool_shed_repository": { + "changeset_revision": "5fab4f81391d", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_expression\": {\"type\": \"simple\", \"__current_case__\": 0, \"expr\": \"(QUAL > 2)\"}, \"filtering\": {\"mode\": \"entries\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"inverse\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy1", + "type": "tool", + "uuid": "9a9a0e61-4966-496a-85df-c3a137abe8d3", + "when": null, + "workflow_outputs": [ + { + "label": "quality_filtered_vcf_output", + "output_name": "output", + "uuid": "3e7981ec-2205-4571-93eb-10c0dd14b288" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Extract Fields", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1559, + "top": 45 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "extracted_fields_from_the_vcf_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "extracted_fields_from_the_vcf_output" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "tool_shed_repository": { + "changeset_revision": "5fab4f81391d", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"empty_text\": \"\", \"extract\": \"CHROM POS ID REF ALT FILTER\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"one_effect_per_line\": false, \"separator\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy0", + "type": "tool", + "uuid": "c9d51e45-9c09-438e-ab4b-c280a91dd2bc", + "when": null, + "workflow_outputs": [ + { + "label": "extracted_fields_from_the_vcf_output", + "output_name": "output", + "uuid": "1b0f4f2c-4717-45be-b580-fe10cba78c35" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy1", + "errors": null, + "id": 15, + "input_connections": { + "input_file": { + "id": 11, + "output_name": "output" + }, + "reference_source|fasta_ref": { + "id": 3, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools consensus", + "name": "reference_source" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "sec_default" + } + ], + "label": null, + "name": "bcftools consensus", + "outputs": [ + { + "name": "output_file", + "type": "fasta" + } + ], + "position": { + "left": 1565, + "top": 248 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "bcftools_consensus" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "f867422772d6", + "name": "bcftools_consensus", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chain\": false, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"ConnectedValue\"}}, \"sec_default\": {\"mask\": {\"__class__\": \"RuntimeValue\"}, \"iupac_codes\": false, \"sample\": \"\", \"select_haplotype\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "872ba641-1909-43ea-b3c2-62e6773583a6", + "when": null, + "workflow_outputs": [ + { + "label": "bcftools_consensus", + "output_name": "output_file", + "uuid": "49497f3c-9332-4924-bcfd-cb71788ad2c2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 18, + "input_connections": { + "input_list": { + "id": 16, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1861.2076226643767, + "top": 940.9587935676732 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "mapping_coverage_percentage_per_sample" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "mapping_coverage_percentage_per_sample" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": true, \"__current_case__\": 0, \"place_name\": \"same_once\"}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "bc05695c-433b-44df-9c94-d345f66be3cd", + "when": null, + "workflow_outputs": [ + { + "label": "mapping_coverage_percentage_per_sample", + "output_name": "output", + "uuid": "5ee1c158-1a85-45ca-9abd-b30632b3092c" + } + ] + }, + { + "annotation": "", + "content_id": "Paste1", + "errors": null, + "id": 22, + "input_connections": { + "input1": { + "id": 20, + "output_name": "output" + }, + "input2": { + "id": 12, + "output_name": "table" + } + }, + "inputs": [], + "label": null, + "name": "Paste", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2249.0333251953125, + "top": 620.8999938964844 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "mapping_mean_depth_per_sample" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "mapping_mean_depth_per_sample" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Paste1", + "tool_state": "{\"delimiter\": \"T\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "38616748-2327-49f3-a53e-c204a356d97b", + "when": null, + "workflow_outputs": [ + { + "label": "mapping_mean_depth_per_sample", + "output_name": "out_file1", + "uuid": "25b7b87b-5ef1-487f-90cc-81351a2f81ce" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 25, + "input_connections": { + "input": { + "id": 24, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2961.5528311718776, + "top": 47.899993896484375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "number_of_variants_per_sample" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "number_of_variants_per_sample" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^$\", \"replacement\": \"0\"}], \"field\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "dfa6d815-9c8a-4a04-8862-00a6f83789dc", + "when": null, + "workflow_outputs": [ + { + "label": "number_of_variants_per_sample", + "output_name": "out_file1", + "uuid": "2852c4ee-24ea-4df7-b59e-54eb6e2f470b" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/allele_based_pathogen_identification.ga", + "tags": [ + "name:Collection", + "name:microGalaxy", + "name:PathoGFAIR", + "name:IWC" + ], + "test_results": null, + "tests": true, + "title": "Allele-based Pathogen Identification", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/allele-based-pathogen-identification", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/allele_based_pathogen_identification.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/allele_based_pathogen_identification.html", + "version": 1, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "allele-based-pathogen-identification", + "workflow": "allele_based_pathogen_identification.ga", + "workflow_tools": [ + "CONVERTER_gz_to_uncompressed", + "Count1", + "Cut1", + "Paste1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/clair3/clair3/0.1.12+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.24+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_coverage/samtools_coverage/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_depth/samtools_depth/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_filter/4.3+t.galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1083" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Nanopore datasets analysis - Phylogenetic Identification - antibiotic resistance genes detection and contigs building", + "features": { + "comments": true, + "parameters": false, + "report": { + "markdown": "# Gene based Pathogen Identification Workflow Report\n\nBelow are the results for the Gene based Pathogen Identification Workflow\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Workflow Inputs\nThe Perprocessing workflow main output (Collection of all samples reads after quality retaining and hosts filtering)\n\n## Workflow Output\n\n### Identified contigs per sample\n\n```galaxy\nhistory_dataset_display(output=\"contigs\")\n```\n\n### Identified pathogenic genes per sample\n\n```galaxy\nhistory_dataset_display(output=\"vfs\")\n```\n\n### Identified Antimicrobial Resistance genes per sample\n\n```galaxy\nhistory_dataset_display(output=\"amrs\")\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"]\n 1[label=\"Extract element identifiers\"]\n 0 -> 1 [label=\"output\"]\n kd82a93c623a94f85879cecd759a31087[color=lightseagreen,label=\"Output\\nextracted_samples_IDs\"]\n 1 -> kd82a93c623a94f85879cecd759a31087\n 2[label=\"Build list\"]\n 0 -> 2 [label=\"output\"]\n kf5b5b2568ddf4da88111b1f6d3025a0d[color=lightseagreen,label=\"Output\\nlist_of_lists_of_preprocessed_samples\"]\n 2 -> kf5b5b2568ddf4da88111b1f6d3025a0d\n 3[label=\"Split file\"]\n 1 -> 3 [label=\"output\"]\n keb5317bd4bad4cad92193ac379221d6e[color=lightseagreen,label=\"Output\\nsplitted_extracted_samples_IDs\"]\n 3 -> keb5317bd4bad4cad92193ac379221d6e\n 4[label=\"Flye\"]\n 2 -> 4 [label=\"output\"]\n kff0d8c7b2ac74c6da110f71418dad938[color=lightseagreen,label=\"Output\\nflye_consensus_fasta\"]\n 4 -> kff0d8c7b2ac74c6da110f71418dad938\n k2385436ffbe84d77a40b27a097d02941[color=lightseagreen,label=\"Output\\nflye_assembly_graph\"]\n 4 -> k2385436ffbe84d77a40b27a097d02941\n k0e42ce51c46b45d8baa445c0e98ac712[color=lightseagreen,label=\"Output\\nflye_assembly_gfa\"]\n 4 -> k0e42ce51c46b45d8baa445c0e98ac712\n k3f297aed7cee4999bbf469d84de6b64f[color=lightseagreen,label=\"Output\\nflye_assembly_info_tabular\"]\n 4 -> k3f297aed7cee4999bbf469d84de6b64f\n 5[label=\"Parse parameter value\"]\n 3 -> 5 [label=\"list_output_txt\"]\n k3608e170c46242a28003f3f65baa3834[color=lightseagreen,label=\"Output\\nparsed_extracted_samples_IDs_to_text\"]\n 5 -> k3608e170c46242a28003f3f65baa3834\n 6[label=\"medaka consensus pipeline\"]\n 4 -> 6 [label=\"consensus\"]\n 0 -> 6 [label=\"output\"]\n k9e5ad6ecb4084132ba07dec9fa626923[color=lightseagreen,label=\"Output\\nmedaka_gaps_in_draft_bed_file\"]\n 6 -> k9e5ad6ecb4084132ba07dec9fa626923\n kfcbd3e3f2e934798b696dad7db9f2efd[color=lightseagreen,label=\"Output\\nmedaka_log_file\"]\n 6 -> kfcbd3e3f2e934798b696dad7db9f2efd\n k60656aacad2a4c9b9a68b9fb18ae5595[color=lightseagreen,label=\"Output\\nmedaka_propability_h5_file\"]\n 6 -> k60656aacad2a4c9b9a68b9fb18ae5595\n kc790d4348e784df0a0d48f9da0692158[color=lightseagreen,label=\"Output\\nmedaka_calls_of_draft_bam_file\"]\n 6 -> kc790d4348e784df0a0d48f9da0692158\n kdf361e19b6d1405b96ccb48c1ab7c604[color=lightseagreen,label=\"Output\\nsample_all_contigs\"]\n 6 -> kdf361e19b6d1405b96ccb48c1ab7c604\n 7[label=\"Bandage Image\"]\n 4 -> 7 [label=\"assembly_gfa\"]\n k9612a8511f944d54b0015d082bcc9055[color=lightseagreen,label=\"Output\\nbandage_assembly_graph_image\"]\n 7 -> k9612a8511f944d54b0015d082bcc9055\n 8[label=\"Compose text parameter value\"]\n 5 -> 8 [label=\"text_param\"]\n 9[label=\"FASTA-to-Tabular\"]\n 6 -> 9 [label=\"out_consensus\"]\n kde06c3625b0a4c29956efbf02539789a[color=lightseagreen,label=\"Output\\nsample_specific_contigs_tabular_file_preparation\"]\n 9 -> kde06c3625b0a4c29956efbf02539789a\n 10[label=\"ABRicate\"]\n 6 -> 10 [label=\"out_consensus\"]\n k8f227fc72d924c6faf64e841c1315b4f[color=lightseagreen,label=\"Output\\nabricate_with_vfdb_to_identify_genes_with_VFs\"]\n 10 -> k8f227fc72d924c6faf64e841c1315b4f\n 11[label=\"ABRicate\"]\n 6 -> 11 [label=\"out_consensus\"]\n kfa021d98d8854834ac62f30d5792260e[color=lightseagreen,label=\"Output\\nabricate_report_using_ncbi_database_to_indentify_amr\"]\n 11 -> kfa021d98d8854834ac62f30d5792260e\n 12[label=\"Replace\"]\n 8 -> 12 [label=\"out1\"]\n 9 -> 12 [label=\"output\"]\n k174cb2c3ed28453c8afb85150e0b51ad[color=lightseagreen,label=\"Output\\nsample_specific_contigs_tabular_file\"]\n 12 -> k174cb2c3ed28453c8afb85150e0b51ad\n 13[label=\"Replace\"]\n 8 -> 13 [label=\"out1\"]\n 10 -> 13 [label=\"report\"]\n k19e56e006eef4a4e9cc6d93dbf9420ad[color=lightseagreen,label=\"Output\\nvfs\"]\n 13 -> k19e56e006eef4a4e9cc6d93dbf9420ad\n 14[label=\"Replace\"]\n 8 -> 14 [label=\"out1\"]\n 11 -> 14 [label=\"report\"]\n ka8eb74a5362b4f0fa944672e27981a41[color=lightseagreen,label=\"Output\\namrs\"]\n 14 -> ka8eb74a5362b4f0fa944672e27981a41\n 15[label=\"Tabular-to-FASTA\"]\n 12 -> 15 [label=\"outfile\"]\n ka5bb1cbe1bde49a1ad866d57b1319fbe[color=lightseagreen,label=\"Output\\ncontigs\"]\n 15 -> ka5bb1cbe1bde49a1ad866d57b1319fbe\n}", + "history": [ + { + "hash": "cdd93376adc6ce80742881c25d6810bcce85fc05", + "message": "adding tags to some of the workflow outputs, updating the training with the latest PathoGFAIR workflows updates", + "num": 2, + "short_hash": "cdd93376a", + "unix": "1717675229" + }, + { + "hash": "c63ce23c7a7a631f1256b8e733defce3ca4e009b", + "message": "updating workflows file names", + "num": 1, + "short_hash": "c63ce23c7", + "unix": "1716726587" + } + ], + "inputs": [ + { + "annotation": "Output collection from the Nanopore Preprocessing workflow", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Output collection from the Nanopore Preprocessing workflow", + "name": "collection_of_preprocessed_samples" + } + ], + "label": "collection_of_preprocessed_samples", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 316.35 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "fb7f7c4b-70a7-4d6d-8b20-a3bfdc4380ff", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Extract element identifiers\"];\n 0 -->|output| 1;\n d82a93c6-23a9-4f85-879c-ecd759a31087[\"Output\\nextracted_samples_IDs\"];\n 1 --> d82a93c6-23a9-4f85-879c-ecd759a31087;\n style d82a93c6-23a9-4f85-879c-ecd759a31087 stroke:#2c3143,stroke-width:4px;\n 2[\"Build list\"];\n 0 -->|output| 2;\n f5b5b256-8ddf-4da8-8111-b1f6d3025a0d[\"Output\\nlist_of_lists_of_preprocessed_samples\"];\n 2 --> f5b5b256-8ddf-4da8-8111-b1f6d3025a0d;\n style f5b5b256-8ddf-4da8-8111-b1f6d3025a0d stroke:#2c3143,stroke-width:4px;\n 3[\"Split file\"];\n 1 -->|output| 3;\n eb5317bd-4bad-4cad-9219-3ac379221d6e[\"Output\\nsplitted_extracted_samples_IDs\"];\n 3 --> eb5317bd-4bad-4cad-9219-3ac379221d6e;\n style eb5317bd-4bad-4cad-9219-3ac379221d6e stroke:#2c3143,stroke-width:4px;\n 4[\"Flye\"];\n 2 -->|output| 4;\n ff0d8c7b-2ac7-4c6d-a110-f71418dad938[\"Output\\nflye_consensus_fasta\"];\n 4 --> ff0d8c7b-2ac7-4c6d-a110-f71418dad938;\n style ff0d8c7b-2ac7-4c6d-a110-f71418dad938 stroke:#2c3143,stroke-width:4px;\n 2385436f-fbe8-4d77-a40b-27a097d02941[\"Output\\nflye_assembly_graph\"];\n 4 --> 2385436f-fbe8-4d77-a40b-27a097d02941;\n style 2385436f-fbe8-4d77-a40b-27a097d02941 stroke:#2c3143,stroke-width:4px;\n 0e42ce51-c46b-45d8-baa4-45c0e98ac712[\"Output\\nflye_assembly_gfa\"];\n 4 --> 0e42ce51-c46b-45d8-baa4-45c0e98ac712;\n style 0e42ce51-c46b-45d8-baa4-45c0e98ac712 stroke:#2c3143,stroke-width:4px;\n 3f297aed-7cee-4999-bbf4-69d84de6b64f[\"Output\\nflye_assembly_info_tabular\"];\n 4 --> 3f297aed-7cee-4999-bbf4-69d84de6b64f;\n style 3f297aed-7cee-4999-bbf4-69d84de6b64f stroke:#2c3143,stroke-width:4px;\n 5[\"Parse parameter value\"];\n 3 -->|list_output_txt| 5;\n 3608e170-c462-42a2-8003-f3f65baa3834[\"Output\\nparsed_extracted_samples_IDs_to_text\"];\n 5 --> 3608e170-c462-42a2-8003-f3f65baa3834;\n style 3608e170-c462-42a2-8003-f3f65baa3834 stroke:#2c3143,stroke-width:4px;\n 6[\"medaka consensus pipeline\"];\n 4 -->|consensus| 6;\n 0 -->|output| 6;\n 9e5ad6ec-b408-4132-ba07-dec9fa626923[\"Output\\nmedaka_gaps_in_draft_bed_file\"];\n 6 --> 9e5ad6ec-b408-4132-ba07-dec9fa626923;\n style 9e5ad6ec-b408-4132-ba07-dec9fa626923 stroke:#2c3143,stroke-width:4px;\n fcbd3e3f-2e93-4798-b696-dad7db9f2efd[\"Output\\nmedaka_log_file\"];\n 6 --> fcbd3e3f-2e93-4798-b696-dad7db9f2efd;\n style fcbd3e3f-2e93-4798-b696-dad7db9f2efd stroke:#2c3143,stroke-width:4px;\n 60656aac-ad2a-4c9b-9a68-b9fb18ae5595[\"Output\\nmedaka_propability_h5_file\"];\n 6 --> 60656aac-ad2a-4c9b-9a68-b9fb18ae5595;\n style 60656aac-ad2a-4c9b-9a68-b9fb18ae5595 stroke:#2c3143,stroke-width:4px;\n c790d434-8e78-4df0-a0d4-8f9da0692158[\"Output\\nmedaka_calls_of_draft_bam_file\"];\n 6 --> c790d434-8e78-4df0-a0d4-8f9da0692158;\n style c790d434-8e78-4df0-a0d4-8f9da0692158 stroke:#2c3143,stroke-width:4px;\n df361e19-b6d1-405b-96cc-b48c1ab7c604[\"Output\\nsample_all_contigs\"];\n 6 --> df361e19-b6d1-405b-96cc-b48c1ab7c604;\n style df361e19-b6d1-405b-96cc-b48c1ab7c604 stroke:#2c3143,stroke-width:4px;\n 7[\"Bandage Image\"];\n 4 -->|assembly_gfa| 7;\n 9612a851-1f94-4d54-b001-5d082bcc9055[\"Output\\nbandage_assembly_graph_image\"];\n 7 --> 9612a851-1f94-4d54-b001-5d082bcc9055;\n style 9612a851-1f94-4d54-b001-5d082bcc9055 stroke:#2c3143,stroke-width:4px;\n 8[\"Compose text parameter value\"];\n 5 -->|text_param| 8;\n 9[\"FASTA-to-Tabular\"];\n 6 -->|out_consensus| 9;\n de06c362-5b0a-4c29-956e-fbf02539789a[\"Output\\nsample_specific_contigs_tabular_file_preparation\"];\n 9 --> de06c362-5b0a-4c29-956e-fbf02539789a;\n style de06c362-5b0a-4c29-956e-fbf02539789a stroke:#2c3143,stroke-width:4px;\n 10[\"ABRicate\"];\n 6 -->|out_consensus| 10;\n 8f227fc7-2d92-4c6f-af64-e841c1315b4f[\"Output\\nabricate_with_vfdb_to_identify_genes_with_VFs\"];\n 10 --> 8f227fc7-2d92-4c6f-af64-e841c1315b4f;\n style 8f227fc7-2d92-4c6f-af64-e841c1315b4f stroke:#2c3143,stroke-width:4px;\n 11[\"ABRicate\"];\n 6 -->|out_consensus| 11;\n fa021d98-d885-4834-ac62-f30d5792260e[\"Output\\nabricate_report_using_ncbi_database_to_indentify_amr\"];\n 11 --> fa021d98-d885-4834-ac62-f30d5792260e;\n style fa021d98-d885-4834-ac62-f30d5792260e stroke:#2c3143,stroke-width:4px;\n 12[\"Replace\"];\n 8 -->|out1| 12;\n 9 -->|output| 12;\n 174cb2c3-ed28-453c-8afb-85150e0b51ad[\"Output\\nsample_specific_contigs_tabular_file\"];\n 12 --> 174cb2c3-ed28-453c-8afb-85150e0b51ad;\n style 174cb2c3-ed28-453c-8afb-85150e0b51ad stroke:#2c3143,stroke-width:4px;\n 13[\"Replace\"];\n 8 -->|out1| 13;\n 10 -->|report| 13;\n 19e56e00-6eef-4a4e-9cc6-d93dbf9420ad[\"Output\\nvfs\"];\n 13 --> 19e56e00-6eef-4a4e-9cc6-d93dbf9420ad;\n style 19e56e00-6eef-4a4e-9cc6-d93dbf9420ad stroke:#2c3143,stroke-width:4px;\n 14[\"Replace\"];\n 8 -->|out1| 14;\n 11 -->|report| 14;\n a8eb74a5-362b-4f0f-a944-672e27981a41[\"Output\\namrs\"];\n 14 --> a8eb74a5-362b-4f0f-a944-672e27981a41;\n style a8eb74a5-362b-4f0f-a944-672e27981a41 stroke:#2c3143,stroke-width:4px;\n 15[\"Tabular-to-FASTA\"];\n 12 -->|outfile| 15;\n a5bb1cbe-1bde-49a1-ad86-6d57b1319fbe[\"Output\\ncontigs\"];\n 15 --> a5bb1cbe-1bde-49a1-ad86-6d57b1319fbe;\n style a5bb1cbe-1bde-49a1-ad86-6d57b1319fbe stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Gene-based Pathogen Identification", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "errors": null, + "id": 1, + "input_connections": { + "input_collection": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Extract element identifiers", + "outputs": [ + { + "name": "output", + "type": "txt" + } + ], + "position": { + "left": 322.37152236646415, + "top": 59.69265140673434 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "extracted_samples_IDs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "tool_shed_repository": { + "changeset_revision": "d3c07d270a50", + "name": "collection_element_identifiers", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_collection\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.2", + "type": "tool", + "uuid": "80a87744-c9fa-498c-9412-b59346fb7904", + "when": null, + "workflow_outputs": [ + { + "label": "extracted_samples_IDs", + "output_name": "output", + "uuid": "d82a93c6-23a9-4f85-879c-ecd759a31087" + } + ] + }, + { + "annotation": "", + "content_id": "__BUILD_LIST__", + "errors": null, + "id": 2, + "input_connections": { + "datasets_0|input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Build list", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 330, + "top": 597.5999771118164 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "list_of_lists_of_preprocessed_samples" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "__BUILD_LIST__", + "tool_state": "{\"datasets\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"id_cond\": {\"id_select\": \"idx\", \"__current_case__\": 0}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "38bc82a3-b563-44cf-b0db-9e3311fe99bb", + "when": null, + "workflow_outputs": [ + { + "label": "list_of_lists_of_preprocessed_samples", + "output_name": "output", + "uuid": "f5b5b256-8ddf-4da8-8111-b1f6d3025a0d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "errors": null, + "id": 3, + "input_connections": { + "split_parms|input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Split file", + "name": "split_parms" + } + ], + "label": null, + "name": "Split file", + "outputs": [ + { + "name": "list_output_txt", + "type": "input" + } + ], + "position": { + "left": 608.6215223664642, + "top": 47.19265140673434 + }, + "post_job_actions": { + "RenameDatasetActionlist_output_txt": { + "action_arguments": { + "newname": "splitted_extracted_samples_IDs" + }, + "action_type": "RenameDatasetAction", + "output_name": "list_output_txt" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "tool_shed_repository": { + "changeset_revision": "6cbe2f30c2d7", + "name": "split_file_to_collection", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"split_parms\": {\"select_ftype\": \"txt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}, \"select_mode\": {\"mode\": \"chunk\", \"__current_case__\": 0, \"chunksize\": \"1\"}, \"newfilenames\": \"split_file\", \"select_allocate\": {\"allocate\": \"byrow\", \"__current_case__\": 2}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.0", + "type": "tool", + "uuid": "f1e00cb8-a264-4acb-aff6-8c8b5aa0b48b", + "when": null, + "workflow_outputs": [ + { + "label": "splitted_extracted_samples_IDs", + "output_name": "list_output_txt", + "uuid": "eb5317bd-4bad-4cad-9219-3ac379221d6e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "inputs": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Flye", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + } + ], + "position": { + "left": 576.4000244140625, + "top": 602.433349609375 + }, + "post_job_actions": { + "RenameDatasetActionassembly_gfa": { + "action_arguments": { + "newname": "flye_assembly_gfa" + }, + "action_type": "RenameDatasetAction", + "output_name": "assembly_gfa" + }, + "RenameDatasetActionassembly_graph": { + "action_arguments": { + "newname": "flye_assembly_graph" + }, + "action_type": "RenameDatasetAction", + "output_name": "assembly_graph" + }, + "RenameDatasetActionassembly_info": { + "action_arguments": { + "newname": "flye_assembly_info_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "assembly_info" + }, + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "flye_consensus_fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "cb8dfd28c16f", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"asm\": {\"asm_select\": \"false\", \"__current_case__\": 1}, \"generate_log\": false, \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"iterations\": \"1\", \"keep_haplotypes\": false, \"meta\": true, \"min_overlap\": null, \"mode_conditional\": {\"mode\": \"--nano-hq\", \"__current_case__\": 2}, \"no_alt_contigs\": false, \"scaffold\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.9.1+galaxy0", + "type": "tool", + "uuid": "a343c482-44b1-4cb3-a46e-2e714f785960", + "when": null, + "workflow_outputs": [ + { + "label": "flye_consensus_fasta", + "output_name": "consensus", + "uuid": "ff0d8c7b-2ac7-4c6d-a110-f71418dad938" + }, + { + "label": "flye_assembly_graph", + "output_name": "assembly_graph", + "uuid": "2385436f-fbe8-4d77-a40b-27a097d02941" + }, + { + "label": "flye_assembly_gfa", + "output_name": "assembly_gfa", + "uuid": "0e42ce51-c46b-45d8-baa4-45c0e98ac712" + }, + { + "label": "flye_assembly_info_tabular", + "output_name": "assembly_info", + "uuid": "3f297aed-7cee-4999-bbf4-69d84de6b64f" + } + ] + }, + { + "annotation": "", + "content_id": "param_value_from_file", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 3, + "output_name": "list_output_txt" + } + }, + "inputs": [], + "label": null, + "name": "Parse parameter value", + "outputs": [ + { + "name": "text_param", + "type": "expression.json" + } + ], + "position": { + "left": 891.1214460725189, + "top": 39.942666665523404 + }, + "post_job_actions": { + "RenameDatasetActiontext_param": { + "action_arguments": { + "newname": "parsed_extracted_samples_IDs_to_text" + }, + "action_type": "RenameDatasetAction", + "output_name": "text_param" + } + }, + "tool_id": "param_value_from_file", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"param_type\": \"text\", \"remove_newlines\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "ee2062e3-4a3e-4bd0-98a1-264704be0009", + "when": null, + "workflow_outputs": [ + { + "label": "parsed_extracted_samples_IDs_to_text", + "output_name": "text_param", + "uuid": "3608e170-c462-42a2-8003-f3f65baa3834" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "d": { + "id": 4, + "output_name": "consensus" + }, + "i": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "medaka consensus pipeline", + "outputs": [ + { + "name": "out_consensus", + "type": "fasta" + }, + { + "name": "out_probs", + "type": "h5" + }, + { + "name": "out_calls", + "type": "bam" + }, + { + "name": "out_gaps", + "type": "bed" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 923.816650390625, + "top": 543.25 + }, + "post_job_actions": { + "RenameDatasetActionout_calls": { + "action_arguments": { + "newname": "medaka_calls_of_draft_bam_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_calls" + }, + "RenameDatasetActionout_consensus": { + "action_arguments": { + "newname": "sample_all_contigs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_consensus" + }, + "RenameDatasetActionout_gaps": { + "action_arguments": { + "newname": "medaka_gaps_in_draft_bed_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_gaps" + }, + "RenameDatasetActionout_log": { + "action_arguments": { + "newname": "medaka_log_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_log" + }, + "RenameDatasetActionout_probs": { + "action_arguments": { + "newname": "medaka_propability_h5_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_probs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "79e9a869f40e", + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"b\": \"100\", \"d\": {\"__class__\": \"ConnectedValue\"}, \"g\": false, \"i\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"r941_min_hac_g507\", \"out\": [\"consensus\", \"probs\", \"calls\", \"log\", \"gaps\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.2+galaxy0", + "type": "tool", + "uuid": "9e88fc55-f41e-4e87-852e-044359dcea53", + "when": null, + "workflow_outputs": [ + { + "label": "medaka_gaps_in_draft_bed_file", + "output_name": "out_gaps", + "uuid": "9e5ad6ec-b408-4132-ba07-dec9fa626923" + }, + { + "label": "medaka_log_file", + "output_name": "out_log", + "uuid": "fcbd3e3f-2e93-4798-b696-dad7db9f2efd" + }, + { + "label": "medaka_propability_h5_file", + "output_name": "out_probs", + "uuid": "60656aac-ad2a-4c9b-9a68-b9fb18ae5595" + }, + { + "label": "medaka_calls_of_draft_bam_file", + "output_name": "out_calls", + "uuid": "c790d434-8e78-4df0-a0d4-8f9da0692158" + }, + { + "label": "sample_all_contigs", + "output_name": "out_consensus", + "uuid": "df361e19-b6d1-405b-96cc-b48c1ab7c604" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "assembly_gfa" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 927.4666748046875, + "top": 965.5333251953125 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "bandage_assembly_graph_image" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "bandage_contigs_image" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "tool_shed_repository": { + "changeset_revision": "ddddce450736", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": false, \"names\": false, \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2022.09+galaxy4", + "type": "tool", + "uuid": "ab317904-7296-4549-966f-f2a27ad9990c", + "when": null, + "workflow_outputs": [ + { + "label": "bandage_assembly_graph_image", + "output_name": "outfile", + "uuid": "9612a851-1f94-4d54-b001-5d082bcc9055" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 6, + "output_name": "out_consensus" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1210.4666748046875, + "top": 757.7333374023438 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "sample_specific_contigs_tabular_file_preparation" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "e7ed3c310b74", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"descr_columns\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "c55f2b32-2214-4c07-90e7-ce425388dc01", + "when": null, + "workflow_outputs": [ + { + "label": "sample_specific_contigs_tabular_file_preparation", + "output_name": "output", + "uuid": "de06c362-5b0a-4c29-956e-fbf02539789a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "errors": null, + "id": 10, + "input_connections": { + "file_input": { + "id": 6, + "output_name": "out_consensus" + } + }, + "inputs": [], + "label": null, + "name": "ABRicate", + "outputs": [ + { + "name": "report", + "type": "tabular" + } + ], + "position": { + "left": 1831.7666625976562, + "top": 31.583328247070312 + }, + "post_job_actions": { + "RenameDatasetActionreport": { + "action_arguments": { + "newname": "vfs_of_genes_identified_by_vfdb" + }, + "action_type": "RenameDatasetAction", + "output_name": "report" + }, + "TagDatasetActionreport": { + "action_arguments": { + "tags": "vfs_of_genes_identified_by_vfdb" + }, + "action_type": "TagDatasetAction", + "output_name": "report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "tool_shed_repository": { + "changeset_revision": "3f3e247c053d", + "name": "abricate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"db\": \"vfdb\", \"no_header\": false, \"min_dna_id\": \"50.0\", \"min_cov\": \"50.0\"}, \"file_input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "1de6612c-0191-4e11-8b12-e321e460c4bf", + "when": null, + "workflow_outputs": [ + { + "label": "abricate_with_vfdb_to_identify_genes_with_VFs", + "output_name": "report", + "uuid": "8f227fc7-2d92-4c6f-af64-e841c1315b4f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "errors": null, + "id": 11, + "input_connections": { + "file_input": { + "id": 6, + "output_name": "out_consensus" + } + }, + "inputs": [], + "label": null, + "name": "ABRicate", + "outputs": [ + { + "name": "report", + "type": "tabular" + } + ], + "position": { + "left": 1847.25, + "top": 671.316650390625 + }, + "post_job_actions": { + "RenameDatasetActionreport": { + "action_arguments": { + "newname": "amr_identified_by_ncbi" + }, + "action_type": "RenameDatasetAction", + "output_name": "report" + }, + "TagDatasetActionreport": { + "action_arguments": { + "tags": "amr_identified_by_ncbi" + }, + "action_type": "TagDatasetAction", + "output_name": "report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "tool_shed_repository": { + "changeset_revision": "3f3e247c053d", + "name": "abricate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"db\": \"ncbi\", \"no_header\": false, \"min_dna_id\": \"50.0\", \"min_cov\": \"50.0\"}, \"file_input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "92d285c6-2c41-49e2-9ddd-9ca07c317b7a", + "when": null, + "workflow_outputs": [ + { + "label": "abricate_report_using_ncbi_database_to_indentify_amr", + "output_name": "report", + "uuid": "fa021d98-d885-4834-ac62-f30d5792260e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "errors": null, + "id": 12, + "input_connections": { + "find_and_replace_0|replace_pattern": { + "id": 8, + "output_name": "out1" + }, + "infile": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Replace", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 1528.3333740234375, + "top": 802.5333251953125 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "sample_specific_contigs_tabular_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "tool_shed_repository": { + "changeset_revision": "d698c222f354", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"^(.+)$\", \"replace_pattern\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"1\"}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.4", + "type": "tool", + "uuid": "4de0cdf1-967a-4c47-9c95-f1f129ad5810", + "when": null, + "workflow_outputs": [ + { + "label": "sample_specific_contigs_tabular_file", + "output_name": "outfile", + "uuid": "174cb2c3-ed28-453c-8afb-85150e0b51ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "errors": null, + "id": 13, + "input_connections": { + "find_and_replace_1|replace_pattern": { + "id": 8, + "output_name": "out1" + }, + "infile": { + "id": 10, + "output_name": "report" + } + }, + "inputs": [], + "label": null, + "name": "Replace", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2063.4155768063843, + "top": 43.25688097234852 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "vfs" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "vfs" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "tool_shed_repository": { + "changeset_revision": "d698c222f354", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#FILE\", \"replace_pattern\": \"SampleID\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"1\"}}, {\"__index__\": 1, \"find_pattern\": \"^(.+)$\", \"replace_pattern\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": true, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"2\"}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.4", + "type": "tool", + "uuid": "4e5b87e2-4743-44d3-b57d-b5cab2887e46", + "when": null, + "workflow_outputs": [ + { + "label": "vfs", + "output_name": "outfile", + "uuid": "19e56e00-6eef-4a4e-9cc6-d93dbf9420ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "errors": null, + "id": 14, + "input_connections": { + "find_and_replace_1|replace_pattern": { + "id": 8, + "output_name": "out1" + }, + "infile": { + "id": 11, + "output_name": "report" + } + }, + "inputs": [], + "label": null, + "name": "Replace", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 2131.751242708332, + "top": 692.620361328125 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "amrs" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "amrs" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "tool_shed_repository": { + "changeset_revision": "d698c222f354", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"find_and_replace\": [{\"__index__\": 0, \"find_pattern\": \"#FILE\", \"replace_pattern\": \"SampleID\", \"is_regex\": false, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": false, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"1\"}}, {\"__index__\": 1, \"find_pattern\": \"^(.+)$\", \"replace_pattern\": {\"__class__\": \"ConnectedValue\"}, \"is_regex\": true, \"global\": true, \"caseinsensitive\": false, \"wholewords\": false, \"skip_first_line\": true, \"searchwhere\": {\"searchwhere_select\": \"column\", \"__current_case__\": 1, \"column\": \"2\"}}], \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.4", + "type": "tool", + "uuid": "9ebff4c8-3b3c-43a1-a008-490b4745f407", + "when": null, + "workflow_outputs": [ + { + "label": "amrs", + "output_name": "outfile", + "uuid": "a8eb74a5-362b-4f0f-a944-672e27981a41" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 12, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Tabular-to-FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 1542.88330078125, + "top": 1009.6666870117188 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "contigs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "contigs" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "tool_shed_repository": { + "changeset_revision": "0a7799698fe5", + "name": "tabular_to_fasta", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"seq_col\": \"2\", \"title_col\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "52af9a9c-0c9c-4605-a2a6-caefde8efa89", + "when": null, + "workflow_outputs": [ + { + "label": "contigs", + "output_name": "output", + "uuid": "a5bb1cbe-1bde-49a1-ad86-6d57b1319fbe" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/gene_based_pathogen_identification.ga", + "tags": [ + "name:Collection", + "name:PathoGFAIR", + "name:IWC", + "name:microGalaxy" + ], + "test_results": null, + "tests": true, + "title": "Gene-based Pathogen Identification", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/gene-based-pathogen-identification", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/gene_based_pathogen_identification.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/gene_based_pathogen_identification.html", + "version": 2, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "gene-based-pathogen-identification", + "workflow": "gene_based_pathogen_identification.ga", + "workflow_tools": [ + "__BUILD_LIST__", + "param_value_from_file", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/abricate/abricate/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy0" + ], + "workflowhub_id": "1091" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Microbiome - QC and Contamination Filtering", + "features": { + "comments": true, + "parameters": true, + "report": { + "markdown": "# Nanopore - Preprocessing Workflow Report\nBelow are the results of the Preprocessing Workflow\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Workflow Inputs\nA collection of all sample reads (all in the same sequence file format, e.g.: Fastq, Fastq.gz, Fastqsanger, etc.)\n\n## Workflow Outputs\n\n### Multi QC Report of all samples before reads quality retaining\n\n```galaxy\nhistory_dataset_as_image(output=\"multiQC_html_report_before_preprocessing\")\n```\n### Multi QC Report of all samples after reads quality retaining\n\n```galaxy\nhistory_dataset_as_image(output=\"multiQC_html_report_after_preprocessing\")\n```\n\n### Percentages of removed host sequences in every sample\n\n```galaxy\nhistory_dataset_display(output=\"removed_hosts_percentage_tabular\")\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nsamples_profile\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncollection_of_all_samples\"]\n 2[label=\"Porechop\"]\n 1 -> 2 [label=\"output\"]\n k34ea26db11cb41ee85c375af8a53a2c0[color=lightseagreen,label=\"Output\\nporechop_output_trimmed_reads\"]\n 2 -> k34ea26db11cb41ee85c375af8a53a2c0\n 3[label=\"NanoPlot\"]\n 1 -> 3 [label=\"output\"]\n k15ecf5b1e0eb405aac3a359feb66d4cd[color=lightseagreen,label=\"Output\\nnanoplot_qc_on_reads_before_preprocessing_nanostats\"]\n 3 -> k15ecf5b1e0eb405aac3a359feb66d4cd\n k304110f960d04ba28b3bfae0e2a49554[color=lightseagreen,label=\"Output\\nnanoplot_on_reads_before_preprocessing_nanostats_post_filtering\"]\n 3 -> k304110f960d04ba28b3bfae0e2a49554\n kf2bd0a1fcd604a36a7d08025cc19ea2e[color=lightseagreen,label=\"Output\\nnanoplot_qc_on_reads_before_preprocessing_html_report\"]\n 3 -> kf2bd0a1fcd604a36a7d08025cc19ea2e\n 4[label=\"FastQC\"]\n 1 -> 4 [label=\"output\"]\n kd0a6462405d04068835ba025fc011760[color=lightseagreen,label=\"Output\\nfastqc_quality_check_before_preprocessing_html_file\"]\n 4 -> kd0a6462405d04068835ba025fc011760\n ke61fef5d1bc84c8ebe6af74e210e9920[color=lightseagreen,label=\"Output\\nfastqc_quality_check_before_preprocessing_text_file\"]\n 4 -> ke61fef5d1bc84c8ebe6af74e210e9920\n 5[label=\"fastp\"]\n 2 -> 5 [label=\"outfile\"]\n ka221948350b74aed98dd333ad2e12eb8[color=lightseagreen,label=\"Output\\nnanopore_sequenced_reads_processed_with_fastp_after_host_removal\"]\n 5 -> ka221948350b74aed98dd333ad2e12eb8\n k2a9a8b4d458b40e79a21fb7108d5bbe4[color=lightseagreen,label=\"Output\\nnanopore_sequenced_reads_processed_with_fastp_after_host_removal_html_report\"]\n 5 -> k2a9a8b4d458b40e79a21fb7108d5bbe4\n 6[label=\"MultiQC\"]\n 4 -> 6 [label=\"text_file\"]\n kebffe782a56c431f8af4c0cb8d7a02fc[color=lightseagreen,label=\"Output\\nmultiQC_stats_before_preprocessing\"]\n 6 -> kebffe782a56c431f8af4c0cb8d7a02fc\n k0f92196d047d4918819dc0ff7cd3ae85[color=lightseagreen,label=\"Output\\nmultiQC_html_report_before_preprocessing\"]\n 6 -> k0f92196d047d4918819dc0ff7cd3ae85\n 7[label=\"Map with minimap2\"]\n 0 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"out1\"]\n k9d7bb3b709a1401fa132bb35a53375ea[color=lightseagreen,label=\"Output\\nbam_map_to_host\"]\n 7 -> k9d7bb3b709a1401fa132bb35a53375ea\n 8[label=\"NanoPlot\"]\n 5 -> 8 [label=\"out1\"]\n kb58992904c574662ad22860654652ade[color=lightseagreen,label=\"Output\\nnanoplot_qc_on_reads_after_preprocessing_html_report\"]\n 8 -> kb58992904c574662ad22860654652ade\n k949bfdf53d794dadbdd8c3a25e6af4cf[color=lightseagreen,label=\"Output\\nnanoplot_on_reads_after_preprocessing_nanostats_post_filtering\"]\n 8 -> k949bfdf53d794dadbdd8c3a25e6af4cf\n k42db7f93919e4bbb81a106411a9da410[color=lightseagreen,label=\"Output\\nnanoplot_qc_on_reads_after_preprocessing_nanostats\"]\n 8 -> k42db7f93919e4bbb81a106411a9da410\n 9[label=\"FastQC\"]\n 5 -> 9 [label=\"out1\"]\n k09306471afa041069cc7259b93dfc862[color=lightseagreen,label=\"Output\\nfastqc_quality_check_after_preprocessing_text_file\"]\n 9 -> k09306471afa041069cc7259b93dfc862\n k084f982f20f1457e801291ebbb85633d[color=lightseagreen,label=\"Output\\nfastqc_quality_check_after_preprocessing_html_file\"]\n 9 -> k084f982f20f1457e801291ebbb85633d\n 10[label=\"Split BAM by reads mapping status\"]\n 7 -> 10 [label=\"alignment_output\"]\n k14a53fe2f29643aa86b7243278c1050c[color=lightseagreen,label=\"Output\\nnon_host_sequences_bam\"]\n 10 -> k14a53fe2f29643aa86b7243278c1050c\n k3b1e626f6bc1484cbe01366534361b73[color=lightseagreen,label=\"Output\\nhost_sequences_bam\"]\n 10 -> k3b1e626f6bc1484cbe01366534361b73\n 11[label=\"Select\"]\n 9 -> 11 [label=\"text_file\"]\n ka809853b119f44d2986b8d2006439fbe[color=lightseagreen,label=\"Output\\ntotal_sequences_before_hosts_sequences_removal\"]\n 11 -> ka809853b119f44d2986b8d2006439fbe\n 12[label=\"Samtools fastx\"]\n 10 -> 12 [label=\"mapped\"]\n k10d4eaec81d8444e80757b77a1fb6870[color=lightseagreen,label=\"Output\\nhost_sequences_fastq\"]\n 12 -> k10d4eaec81d8444e80757b77a1fb6870\n 13[label=\"Samtools fastx\"]\n 10 -> 13 [label=\"unmapped\"]\n k0c2dd74dac4f45cf839c50386a7ece28[color=lightseagreen,label=\"Output\\nnon_host_sequences_fastq\"]\n 13 -> k0c2dd74dac4f45cf839c50386a7ece28\n 14[label=\"Collapse Collection\"]\n 11 -> 14 [label=\"out_file1\"]\n 15[label=\"Filter failed datasets\"]\n 12 -> 15 [label=\"output\"]\n 16[label=\"Kraken2\"]\n 13 -> 16 [label=\"output\"]\n k203d303e8f3a4242971fb345842ebdb8[color=lightseagreen,label=\"Output\\nkraken2_with_kalamri_database_output\"]\n 16 -> k203d303e8f3a4242971fb345842ebdb8\n k843afd4d23a846e7b9458b67dd7ae341[color=lightseagreen,label=\"Output\\nkraken2_with_kalamri_database_report\"]\n 16 -> k843afd4d23a846e7b9458b67dd7ae341\n 17[label=\"Cut\"]\n 14 -> 17 [label=\"output\"]\n kd07be9f1d250400891ee59a68521eb56[color=lightseagreen,label=\"Output\\nquality_retained_all_reads\"]\n 17 -> kd07be9f1d250400891ee59a68521eb56\n 18[label=\"FastQC\"]\n 15 -> 18 [label=\"output\"]\n kb0ee6e310eb1437d8c04fc3640b9a0b7[color=lightseagreen,label=\"Output\\nhosts_qc_text_file\"]\n 18 -> kb0ee6e310eb1437d8c04fc3640b9a0b7\n kb72ff57b092143bfa8176cd444c8f3cb[color=lightseagreen,label=\"Output\\nhosts_qc_html\"]\n 18 -> kb72ff57b092143bfa8176cd444c8f3cb\n 19[label=\"Krakentools: Extract Kraken Reads By ID\"]\n 5 -> 19 [label=\"out1\"]\n 16 -> 19 [label=\"report_output\"]\n 16 -> 19 [label=\"output\"]\n k57e3b7258e1340b29acc31fd56ebc80a[color=lightseagreen,label=\"Output\\ncollection_of_preprocessed_samples\"]\n 19 -> k57e3b7258e1340b29acc31fd56ebc80a\n 20[label=\"Select\"]\n 18 -> 20 [label=\"text_file\"]\n k3ba35c7132f0474198d4ea8522e27500[color=lightseagreen,label=\"Output\\ntotal_sequences_after_hosts_sequences_removal\"]\n 20 -> k3ba35c7132f0474198d4ea8522e27500\n 21[label=\"Collapse Collection\"]\n 20 -> 21 [label=\"out_file1\"]\n 22[label=\"Cut\"]\n 21 -> 22 [label=\"output\"]\n kcef36c6845494fd6b7c871fb21df012f[color=lightseagreen,label=\"Output\\nquality_retained_hosts_reads\"]\n 22 -> kcef36c6845494fd6b7c871fb21df012f\n 23[label=\"Column join\"]\n 17 -> 23 [label=\"out_file1\"]\n 22 -> 23 [label=\"out_file1\"]\n 24[label=\"Compute\"]\n 23 -> 24 [label=\"tabular_output\"]\n 25[label=\"Column Regex Find And Replace\"]\n 24 -> 25 [label=\"out_file1\"]\n k470892eedab948d7ad9745dbd52afaa7[color=lightseagreen,label=\"Output\\nremoved_hosts_percentage_tabular\"]\n 25 -> k470892eedab948d7ad9745dbd52afaa7\n 26[label=\"MultiQC\"]\n 9 -> 26 [label=\"text_file\"]\n 25 -> 26 [label=\"out_file1\"]\n k0b1b5a7336ee42a2a2201ced6ec7378b[color=lightseagreen,label=\"Output\\nmultiQC_html_report_after_preprocessing\"]\n 26 -> k0b1b5a7336ee42a2a2201ced6ec7378b\n k13cbf6c769544458aa66a5b020c63822[color=lightseagreen,label=\"Output\\nmultiQC_stats_after_preprocessing\"]\n 26 -> k13cbf6c769544458aa66a5b020c63822\n}", + "history": [ + { + "hash": "cdd93376adc6ce80742881c25d6810bcce85fc05", + "message": "adding tags to some of the workflow outputs, updating the training with the latest PathoGFAIR workflows updates", + "num": 5, + "short_hash": "cdd93376a", + "unix": "1717675229" + }, + { + "hash": "e230001f416aa3035d90535521418fa798ab643e", + "message": "updating preprocessing workflow and allele based workflow with a single user input parameter and adjusting the md file accodingly", + "num": 4, + "short_hash": "e230001f4", + "unix": "1716982398" + }, + { + "hash": "211b69394d6ef4d129eaa18cd76b93c8dece8cf3", + "message": "adding workflow reports to the workflows of the training to match the latest version of the IWC PR", + "num": 3, + "short_hash": "211b69394", + "unix": "1716716727" + }, + { + "hash": "d320748c5c8ea425a77aa03ac78a5956eb75b005", + "message": "Foodborne training update 2024", + "num": 2, + "short_hash": "d320748c5", + "unix": "1716229068" + }, + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "based on the lab preparation of the samples during sequencing, there should be a sample profile better than the other, to be chosen as an optional input to Minimap2. e.g. PacBio/Oxford Nanpore\n\nFor more details check: https://github.com/lh3/minimap2?tab=readme-ov-file#use-cases", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "based on the lab preparation of the samples during sequencing, there should be a sample profile better than the other, to be chosen as an optional input to Minimap2. e.g. PacBio/Oxford Nanpore\n\nFor more details check: https://github.com/lh3/minimap2?tab=readme-ov-file#use-cases", + "name": "samples_profile" + } + ], + "label": "samples_profile", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 655, + "top": 19.602400000005026 + }, + "tool_id": null, + "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "1435b9fc-84c0-4a1a-af49-007da98f4d5f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Nanopore reads of each sample are all in a single fastq or fastq.gz file", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Nanopore reads of each sample are all in a single fastq or fastq.gz file", + "name": "collection_of_all_samples" + } + ], + "label": "collection_of_all_samples", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 20, + "top": 981.4 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "6a0dea4c-3d2c-4ab9-bb87-82cff75ac6d0", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nsamples_profile\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\ncollection_of_all_samples\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Porechop\"];\n 1 -->|output| 2;\n 34ea26db-11cb-41ee-85c3-75af8a53a2c0[\"Output\\nporechop_output_trimmed_reads\"];\n 2 --> 34ea26db-11cb-41ee-85c3-75af8a53a2c0;\n style 34ea26db-11cb-41ee-85c3-75af8a53a2c0 stroke:#2c3143,stroke-width:4px;\n 3[\"NanoPlot\"];\n 1 -->|output| 3;\n 15ecf5b1-e0eb-405a-ac3a-359feb66d4cd[\"Output\\nnanoplot_qc_on_reads_before_preprocessing_nanostats\"];\n 3 --> 15ecf5b1-e0eb-405a-ac3a-359feb66d4cd;\n style 15ecf5b1-e0eb-405a-ac3a-359feb66d4cd stroke:#2c3143,stroke-width:4px;\n 304110f9-60d0-4ba2-8b3b-fae0e2a49554[\"Output\\nnanoplot_on_reads_before_preprocessing_nanostats_post_filtering\"];\n 3 --> 304110f9-60d0-4ba2-8b3b-fae0e2a49554;\n style 304110f9-60d0-4ba2-8b3b-fae0e2a49554 stroke:#2c3143,stroke-width:4px;\n f2bd0a1f-cd60-4a36-a7d0-8025cc19ea2e[\"Output\\nnanoplot_qc_on_reads_before_preprocessing_html_report\"];\n 3 --> f2bd0a1f-cd60-4a36-a7d0-8025cc19ea2e;\n style f2bd0a1f-cd60-4a36-a7d0-8025cc19ea2e stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC\"];\n 1 -->|output| 4;\n d0a64624-05d0-4068-835b-a025fc011760[\"Output\\nfastqc_quality_check_before_preprocessing_html_file\"];\n 4 --> d0a64624-05d0-4068-835b-a025fc011760;\n style d0a64624-05d0-4068-835b-a025fc011760 stroke:#2c3143,stroke-width:4px;\n e61fef5d-1bc8-4c8e-be6a-f74e210e9920[\"Output\\nfastqc_quality_check_before_preprocessing_text_file\"];\n 4 --> e61fef5d-1bc8-4c8e-be6a-f74e210e9920;\n style e61fef5d-1bc8-4c8e-be6a-f74e210e9920 stroke:#2c3143,stroke-width:4px;\n 5[\"fastp\"];\n 2 -->|outfile| 5;\n a2219483-50b7-4aed-98dd-333ad2e12eb8[\"Output\\nnanopore_sequenced_reads_processed_with_fastp_after_host_removal\"];\n 5 --> a2219483-50b7-4aed-98dd-333ad2e12eb8;\n style a2219483-50b7-4aed-98dd-333ad2e12eb8 stroke:#2c3143,stroke-width:4px;\n 2a9a8b4d-458b-40e7-9a21-fb7108d5bbe4[\"Output\\nnanopore_sequenced_reads_processed_with_fastp_after_host_removal_html_report\"];\n 5 --> 2a9a8b4d-458b-40e7-9a21-fb7108d5bbe4;\n style 2a9a8b4d-458b-40e7-9a21-fb7108d5bbe4 stroke:#2c3143,stroke-width:4px;\n 6[\"MultiQC\"];\n 4 -->|text_file| 6;\n ebffe782-a56c-431f-8af4-c0cb8d7a02fc[\"Output\\nmultiQC_stats_before_preprocessing\"];\n 6 --> ebffe782-a56c-431f-8af4-c0cb8d7a02fc;\n style ebffe782-a56c-431f-8af4-c0cb8d7a02fc stroke:#2c3143,stroke-width:4px;\n 0f92196d-047d-4918-819d-c0ff7cd3ae85[\"Output\\nmultiQC_html_report_before_preprocessing\"];\n 6 --> 0f92196d-047d-4918-819d-c0ff7cd3ae85;\n style 0f92196d-047d-4918-819d-c0ff7cd3ae85 stroke:#2c3143,stroke-width:4px;\n 7[\"Map with minimap2\"];\n 0 -->|output| 7;\n 5 -->|out1| 7;\n 9d7bb3b7-09a1-401f-a132-bb35a53375ea[\"Output\\nbam_map_to_host\"];\n 7 --> 9d7bb3b7-09a1-401f-a132-bb35a53375ea;\n style 9d7bb3b7-09a1-401f-a132-bb35a53375ea stroke:#2c3143,stroke-width:4px;\n 8[\"NanoPlot\"];\n 5 -->|out1| 8;\n b5899290-4c57-4662-ad22-860654652ade[\"Output\\nnanoplot_qc_on_reads_after_preprocessing_html_report\"];\n 8 --> b5899290-4c57-4662-ad22-860654652ade;\n style b5899290-4c57-4662-ad22-860654652ade stroke:#2c3143,stroke-width:4px;\n 949bfdf5-3d79-4dad-bdd8-c3a25e6af4cf[\"Output\\nnanoplot_on_reads_after_preprocessing_nanostats_post_filtering\"];\n 8 --> 949bfdf5-3d79-4dad-bdd8-c3a25e6af4cf;\n style 949bfdf5-3d79-4dad-bdd8-c3a25e6af4cf stroke:#2c3143,stroke-width:4px;\n 42db7f93-919e-4bbb-81a1-06411a9da410[\"Output\\nnanoplot_qc_on_reads_after_preprocessing_nanostats\"];\n 8 --> 42db7f93-919e-4bbb-81a1-06411a9da410;\n style 42db7f93-919e-4bbb-81a1-06411a9da410 stroke:#2c3143,stroke-width:4px;\n 9[\"FastQC\"];\n 5 -->|out1| 9;\n 09306471-afa0-4106-9cc7-259b93dfc862[\"Output\\nfastqc_quality_check_after_preprocessing_text_file\"];\n 9 --> 09306471-afa0-4106-9cc7-259b93dfc862;\n style 09306471-afa0-4106-9cc7-259b93dfc862 stroke:#2c3143,stroke-width:4px;\n 084f982f-20f1-457e-8012-91ebbb85633d[\"Output\\nfastqc_quality_check_after_preprocessing_html_file\"];\n 9 --> 084f982f-20f1-457e-8012-91ebbb85633d;\n style 084f982f-20f1-457e-8012-91ebbb85633d stroke:#2c3143,stroke-width:4px;\n 10[\"Split BAM by reads mapping status\"];\n 7 -->|alignment_output| 10;\n 14a53fe2-f296-43aa-86b7-243278c1050c[\"Output\\nnon_host_sequences_bam\"];\n 10 --> 14a53fe2-f296-43aa-86b7-243278c1050c;\n style 14a53fe2-f296-43aa-86b7-243278c1050c stroke:#2c3143,stroke-width:4px;\n 3b1e626f-6bc1-484c-be01-366534361b73[\"Output\\nhost_sequences_bam\"];\n 10 --> 3b1e626f-6bc1-484c-be01-366534361b73;\n style 3b1e626f-6bc1-484c-be01-366534361b73 stroke:#2c3143,stroke-width:4px;\n 11[\"Select\"];\n 9 -->|text_file| 11;\n a809853b-119f-44d2-986b-8d2006439fbe[\"Output\\ntotal_sequences_before_hosts_sequences_removal\"];\n 11 --> a809853b-119f-44d2-986b-8d2006439fbe;\n style a809853b-119f-44d2-986b-8d2006439fbe stroke:#2c3143,stroke-width:4px;\n 12[\"Samtools fastx\"];\n 10 -->|mapped| 12;\n 10d4eaec-81d8-444e-8075-7b77a1fb6870[\"Output\\nhost_sequences_fastq\"];\n 12 --> 10d4eaec-81d8-444e-8075-7b77a1fb6870;\n style 10d4eaec-81d8-444e-8075-7b77a1fb6870 stroke:#2c3143,stroke-width:4px;\n 13[\"Samtools fastx\"];\n 10 -->|unmapped| 13;\n 0c2dd74d-ac4f-45cf-839c-50386a7ece28[\"Output\\nnon_host_sequences_fastq\"];\n 13 --> 0c2dd74d-ac4f-45cf-839c-50386a7ece28;\n style 0c2dd74d-ac4f-45cf-839c-50386a7ece28 stroke:#2c3143,stroke-width:4px;\n 14[\"Collapse Collection\"];\n 11 -->|out_file1| 14;\n 15[\"Filter failed datasets\"];\n 12 -->|output| 15;\n 16[\"Kraken2\"];\n 13 -->|output| 16;\n 203d303e-8f3a-4242-971f-b345842ebdb8[\"Output\\nkraken2_with_kalamri_database_output\"];\n 16 --> 203d303e-8f3a-4242-971f-b345842ebdb8;\n style 203d303e-8f3a-4242-971f-b345842ebdb8 stroke:#2c3143,stroke-width:4px;\n 843afd4d-23a8-46e7-b945-8b67dd7ae341[\"Output\\nkraken2_with_kalamri_database_report\"];\n 16 --> 843afd4d-23a8-46e7-b945-8b67dd7ae341;\n style 843afd4d-23a8-46e7-b945-8b67dd7ae341 stroke:#2c3143,stroke-width:4px;\n 17[\"Cut\"];\n 14 -->|output| 17;\n d07be9f1-d250-4008-91ee-59a68521eb56[\"Output\\nquality_retained_all_reads\"];\n 17 --> d07be9f1-d250-4008-91ee-59a68521eb56;\n style d07be9f1-d250-4008-91ee-59a68521eb56 stroke:#2c3143,stroke-width:4px;\n 18[\"FastQC\"];\n 15 -->|output| 18;\n b0ee6e31-0eb1-437d-8c04-fc3640b9a0b7[\"Output\\nhosts_qc_text_file\"];\n 18 --> b0ee6e31-0eb1-437d-8c04-fc3640b9a0b7;\n style b0ee6e31-0eb1-437d-8c04-fc3640b9a0b7 stroke:#2c3143,stroke-width:4px;\n b72ff57b-0921-43bf-a817-6cd444c8f3cb[\"Output\\nhosts_qc_html\"];\n 18 --> b72ff57b-0921-43bf-a817-6cd444c8f3cb;\n style b72ff57b-0921-43bf-a817-6cd444c8f3cb stroke:#2c3143,stroke-width:4px;\n 19[\"Krakentools: Extract Kraken Reads By ID\"];\n 5 -->|out1| 19;\n 16 -->|report_output| 19;\n 16 -->|output| 19;\n 57e3b725-8e13-40b2-9acc-31fd56ebc80a[\"Output\\ncollection_of_preprocessed_samples\"];\n 19 --> 57e3b725-8e13-40b2-9acc-31fd56ebc80a;\n style 57e3b725-8e13-40b2-9acc-31fd56ebc80a stroke:#2c3143,stroke-width:4px;\n 20[\"Select\"];\n 18 -->|text_file| 20;\n 3ba35c71-32f0-4741-98d4-ea8522e27500[\"Output\\ntotal_sequences_after_hosts_sequences_removal\"];\n 20 --> 3ba35c71-32f0-4741-98d4-ea8522e27500;\n style 3ba35c71-32f0-4741-98d4-ea8522e27500 stroke:#2c3143,stroke-width:4px;\n 21[\"Collapse Collection\"];\n 20 -->|out_file1| 21;\n 22[\"Cut\"];\n 21 -->|output| 22;\n cef36c68-4549-4fd6-b7c8-71fb21df012f[\"Output\\nquality_retained_hosts_reads\"];\n 22 --> cef36c68-4549-4fd6-b7c8-71fb21df012f;\n style cef36c68-4549-4fd6-b7c8-71fb21df012f stroke:#2c3143,stroke-width:4px;\n 23[\"Column join\"];\n 17 -->|out_file1| 23;\n 22 -->|out_file1| 23;\n 24[\"Compute\"];\n 23 -->|tabular_output| 24;\n 25[\"Column Regex Find And Replace\"];\n 24 -->|out_file1| 25;\n 470892ee-dab9-48d7-ad97-45dbd52afaa7[\"Output\\nremoved_hosts_percentage_tabular\"];\n 25 --> 470892ee-dab9-48d7-ad97-45dbd52afaa7;\n style 470892ee-dab9-48d7-ad97-45dbd52afaa7 stroke:#2c3143,stroke-width:4px;\n 26[\"MultiQC\"];\n 9 -->|text_file| 26;\n 25 -->|out_file1| 26;\n 0b1b5a73-36ee-42a2-a220-1ced6ec7378b[\"Output\\nmultiQC_html_report_after_preprocessing\"];\n 26 --> 0b1b5a73-36ee-42a2-a220-1ced6ec7378b;\n style 0b1b5a73-36ee-42a2-a220-1ced6ec7378b stroke:#2c3143,stroke-width:4px;\n 13cbf6c7-6954-4458-aa66-a5b020c63822[\"Output\\nmultiQC_stats_after_preprocessing\"];\n 26 --> 13cbf6c7-6954-4458-aa66-a5b020c63822;\n style 13cbf6c7-6954-4458-aa66-a5b020c63822 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Nanopore Preprocessing", + "outputs": [ + { + "annotation": "Preprocessing (Trimming)", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Porechop", + "outputs": [ + { + "name": "outfile", + "type": "fasta" + } + ], + "position": { + "left": 314, + "top": 518.0441999996991 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "porechop_output_trimmed_reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "543cbeef3949", + "name": "porechop", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_search_settings\": {\"adapter_threshold\": \"90.0\", \"check_reads\": \"10000\", \"scoring_scheme\": \"3,-6,-5,-2\"}, \"barcode_binning_settings\": {\"barcode_threshold\": \"75.0\", \"barcode_diff\": \"5.0\", \"require_two_barcodes\": false, \"discard_unassigned\": false}, \"end_adapter_settings\": {\"end_size\": \"150\", \"min_trim_size\": \"4\", \"extra_end_trim\": \"2\", \"end_threshold\": \"75.0\"}, \"format\": \"fastq.gz\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"middle_adapter_settings\": {\"no_split\": false, \"discard_middle\": false, \"middle_threshold\": \"85.0\", \"extra_middle_trim_good_side\": \"10\", \"extra_middle_trim_bad_side\": \"100\", \"min_split_read_size\": \"1000\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.4+galaxy0", + "type": "tool", + "uuid": "c57309b3-3d32-42be-b1c1-509ed12d6f4a", + "when": null, + "workflow_outputs": [ + { + "label": "porechop_output_trimmed_reads", + "output_name": "outfile", + "uuid": "34ea26db-11cb-41ee-85c3-75af8a53a2c0" + } + ] + }, + { + "annotation": "Quality Check Before Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "mode|reads|files": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + } + ], + "position": { + "left": 314, + "top": 955.4031261035689 + }, + "post_job_actions": { + "RenameDatasetActionlog_read_length": { + "action_arguments": { + "newname": "nanoplot_on_reads_before_preprocessing_log_transformed_histogram_read_length" + }, + "action_type": "RenameDatasetAction", + "output_name": "log_read_length" + }, + "RenameDatasetActionnanostats": { + "action_arguments": { + "newname": "nanoplot_qc_on_reads_before_preprocessing_nanostats" + }, + "action_type": "RenameDatasetAction", + "output_name": "nanostats" + }, + "RenameDatasetActionnanostats_post_filtering": { + "action_arguments": { + "newname": "nanoplot_on_reads_before_preprocessing_nanostats_post_filtering" + }, + "action_type": "RenameDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "RenameDatasetActionoutput_html": { + "action_arguments": { + "newname": "nanoplot_qc_on_reads_before_preprocessing_html_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_html" + }, + "RenameDatasetActionread_length": { + "action_arguments": { + "newname": "nanoplot_on_reads_before_preprocessing_histogram_read_length" + }, + "action_type": "RenameDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a02b8b3f5a0c", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"customization\": {\"color\": null, \"plots\": null, \"N50\": false}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.42.0+galaxy1", + "type": "tool", + "uuid": "60c022d4-2cc5-4caf-a9f0-333cf8a3edc7", + "when": null, + "workflow_outputs": [ + { + "label": "nanoplot_qc_on_reads_before_preprocessing_nanostats", + "output_name": "nanostats", + "uuid": "15ecf5b1-e0eb-405a-ac3a-359feb66d4cd" + }, + { + "label": "nanoplot_on_reads_before_preprocessing_nanostats_post_filtering", + "output_name": "nanostats_post_filtering", + "uuid": "304110f9-60d0-4ba2-8b3b-fae0e2a49554" + }, + { + "label": "nanoplot_qc_on_reads_before_preprocessing_html_report", + "output_name": "output_html", + "uuid": "f2bd0a1f-cd60-4a36-a7d0-8025cc19ea2e" + } + ] + }, + { + "annotation": "Quality Check Before Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 313, + "top": 1305.4027477928287 + }, + "post_job_actions": { + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "fastqc_quality_check_before_preprocessing_html_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + }, + "RenameDatasetActiontext_file": { + "action_arguments": { + "newname": "fastqc_quality_check_before_preprocessing_text_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "text_file" + }, + "TagDatasetActionhtml_file": { + "action_arguments": { + "tags": "FastQC_Before_Preprocessing_HTM" + }, + "action_type": "TagDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5ec9f6bceaee", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.74+galaxy0", + "type": "tool", + "uuid": "b393d71b-0708-4825-97f2-d43a3f312f73", + "when": null, + "workflow_outputs": [ + { + "label": "fastqc_quality_check_before_preprocessing_html_file", + "output_name": "html_file", + "uuid": "d0a64624-05d0-4068-835b-a025fc011760" + }, + { + "label": "fastqc_quality_check_before_preprocessing_text_file", + "output_name": "text_file", + "uuid": "e61fef5d-1bc8-4c8e-be6a-f74e210e9920" + } + ] + }, + { + "annotation": "Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "single_paired|in1": { + "id": 2, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + } + ], + "label": null, + "name": "fastp", + "outputs": [ + { + "name": "out1", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 575, + "top": 505.969807011772 + }, + "post_job_actions": { + "RenameDatasetActionout1": { + "action_arguments": { + "newname": "nanopore_sequenced_reads_processed_with_fastp_after_host_removal" + }, + "action_type": "RenameDatasetAction", + "output_name": "out1" + }, + "RenameDatasetActionreport_html": { + "action_arguments": { + "newname": "nanopore_sequenced_reads_processed_with_fastp_after_host_removal_html_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_html" + }, + "TagDatasetActionreport_html": { + "action_arguments": { + "tags": "fastp_HTML" + }, + "action_type": "TagDatasetAction", + "output_name": "report_html" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c59d48774d03", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": false}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"single\", \"__current_case__\": 0, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": \"\"}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.23.4+galaxy0", + "type": "tool", + "uuid": "ca35835e-9381-49ee-9248-cbb8809113bf", + "when": null, + "workflow_outputs": [ + { + "label": "nanopore_sequenced_reads_processed_with_fastp_after_host_removal", + "output_name": "out1", + "uuid": "a2219483-50b7-4aed-98dd-333ad2e12eb8" + }, + { + "label": "nanopore_sequenced_reads_processed_with_fastp_after_host_removal_html_report", + "output_name": "report_html", + "uuid": "2a9a8b4d-458b-40e7-9a21-fb7108d5bbe4" + } + ] + }, + { + "annotation": "Quality Control Before and After Preprocessing\n\n", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 4, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 593, + "top": 1443.4027477928287 + }, + "post_job_actions": { + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "multiQC_html_report_before_preprocessing" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "multiQC_stats_before_preprocessing" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "TagDatasetActionhtml_report": { + "action_arguments": { + "tags": "MultiQC_Before_Preprocessing_HTML" + }, + "action_type": "TagDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"MultiQC Report Before PreProcessing\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "cf00d759-c11e-4e7c-bc39-2735ada49668", + "when": null, + "workflow_outputs": [ + { + "label": "multiQC_stats_before_preprocessing", + "output_name": "stats", + "uuid": "ebffe782-a56c-431f-8af4-c0cb8d7a02fc" + }, + { + "label": "multiQC_html_report_before_preprocessing", + "output_name": "html_report", + "uuid": "0f92196d-047d-4918-819d-c0ff7cd3ae85" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 0, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 5, + "output_name": "out1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + } + ], + "label": null, + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 895.0333251953125, + "top": 55.86977039067824 + }, + "post_job_actions": { + "RenameDatasetActionalignment_output": { + "action_arguments": { + "newname": "bam_map_to_host" + }, + "action_type": "RenameDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5cc34c3f440d", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"BAM\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"ref_file\": \"galGal6\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.28+galaxy0", + "type": "tool", + "uuid": "d3ae590a-f40f-40f8-a6c4-d9d07be650ca", + "when": null, + "workflow_outputs": [ + { + "label": "bam_map_to_host", + "output_name": "alignment_output", + "uuid": "9d7bb3b7-09a1-401f-a132-bb35a53375ea" + } + ] + }, + { + "annotation": "Nanoplot Quality Check After Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "mode|reads|files": { + "id": 5, + "output_name": "out1" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + } + ], + "position": { + "left": 914.2000122070312, + "top": 951.2031138965376 + }, + "post_job_actions": { + "RenameDatasetActionlog_read_length": { + "action_arguments": { + "newname": "nanoplot_on_reads_after_preprocessing_log_transformed_histogram_read_length" + }, + "action_type": "RenameDatasetAction", + "output_name": "log_read_length" + }, + "RenameDatasetActionnanostats": { + "action_arguments": { + "newname": "nanoplot_qc_on_reads_after_preprocessing_nanostats" + }, + "action_type": "RenameDatasetAction", + "output_name": "nanostats" + }, + "RenameDatasetActionnanostats_post_filtering": { + "action_arguments": { + "newname": "nanoplot_on_reads_after_preprocessing_nanostats_post_filtering" + }, + "action_type": "RenameDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "RenameDatasetActionoutput_html": { + "action_arguments": { + "newname": "nanoplot_qc_on_reads_after_preprocessing_html_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_html" + }, + "RenameDatasetActionread_length": { + "action_arguments": { + "newname": "nanoplot_on_reads_after_preprocessing_histogram_read_length" + }, + "action_type": "RenameDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a02b8b3f5a0c", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"customization\": {\"color\": null, \"plots\": null, \"N50\": false}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.42.0+galaxy1", + "type": "tool", + "uuid": "33511a93-8e27-4936-91e7-451ba3c1bb54", + "when": null, + "workflow_outputs": [ + { + "label": "nanoplot_qc_on_reads_after_preprocessing_html_report", + "output_name": "output_html", + "uuid": "b5899290-4c57-4662-ad22-860654652ade" + }, + { + "label": "nanoplot_on_reads_after_preprocessing_nanostats_post_filtering", + "output_name": "nanostats_post_filtering", + "uuid": "949bfdf5-3d79-4dad-bdd8-c3a25e6af4cf" + }, + { + "label": "nanoplot_qc_on_reads_after_preprocessing_nanostats", + "output_name": "nanostats", + "uuid": "42db7f93-919e-4bbb-81a1-06411a9da410" + } + ] + }, + { + "annotation": "Quality Check After Preprocessing", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "out1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 912.1138463352464, + "top": 1306.1819733214459 + }, + "post_job_actions": { + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "fastqc_quality_check_after_preprocessing_html_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + }, + "RenameDatasetActiontext_file": { + "action_arguments": { + "newname": "fastqc_quality_check_after_preprocessing_text_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "text_file" + }, + "TagDatasetActionhtml_file": { + "action_arguments": { + "tags": "FastQC_After_Preprocessing_HTML" + }, + "action_type": "TagDatasetAction", + "output_name": "html_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5ec9f6bceaee", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.74+galaxy0", + "type": "tool", + "uuid": "2862f65a-7df0-4d6a-8aaf-caa677dd8bcf", + "when": null, + "workflow_outputs": [ + { + "label": "fastqc_quality_check_after_preprocessing_text_file", + "output_name": "text_file", + "uuid": "09306471-afa0-4106-9cc7-259b93dfc862" + }, + { + "label": "fastqc_quality_check_after_preprocessing_html_file", + "output_name": "html_file", + "uuid": "084f982f-20f1-457e-8012-91ebbb85633d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped/2.5.2+galaxy2", + "errors": null, + "id": 10, + "input_connections": { + "input_bam": { + "id": 7, + "output_name": "alignment_output" + } + }, + "inputs": [], + "label": null, + "name": "Split BAM by reads mapping status", + "outputs": [ + { + "name": "mapped", + "type": "bam" + }, + { + "name": "unmapped", + "type": "bam" + } + ], + "position": { + "left": 1109.933349609375, + "top": 59.936451298881366 + }, + "post_job_actions": { + "RenameDatasetActionmapped": { + "action_arguments": { + "newname": "host_sequences_bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "mapped" + }, + "RenameDatasetActionunmapped": { + "action_arguments": { + "newname": "non_host_sequences_bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "unmapped" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped/2.5.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "fa7b5520ae53", + "name": "bamtools_split_mapped", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.2+galaxy2", + "type": "tool", + "uuid": "f4882cef-bfad-45ca-8274-d5b6b18fa314", + "when": null, + "workflow_outputs": [ + { + "label": "non_host_sequences_bam", + "output_name": "unmapped", + "uuid": "14a53fe2-f296-43aa-86b7-243278c1050c" + }, + { + "label": "host_sequences_bam", + "output_name": "mapped", + "uuid": "3b1e626f-6bc1-484c-be01-366534361b73" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 9, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2045.9000244140625, + "top": 845.2833251953125 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "total_sequences_before_hosts_sequences_removal" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"Total Sequences\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "fce6adca-1caa-4032-9247-e884fa992348", + "when": null, + "workflow_outputs": [ + { + "label": "total_sequences_before_hosts_sequences_removal", + "output_name": "out_file1", + "uuid": "a809853b-119f-44d2-986b-8d2006439fbe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "mapped" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 1331.5833129882812, + "top": 44.38643298833449 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "fastq.gz" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "host_sequences_fastq" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "66e23b11feae", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_arb_tags\": null, \"copy_tags\": false, \"exclusive_filter\": [\"256\", \"2048\"], \"exclusive_filter_all\": null, \"idxout_cond\": {\"idxout_select\": \"no\", \"__current_case__\": 0}, \"inclusive_filter\": null, \"input\": {\"__class__\": \"ConnectedValue\"}, \"output_fmt_cond\": {\"output_fmt_select\": \"fastqsanger.gz\", \"__current_case__\": 2, \"default_quality\": null, \"output_quality\": false, \"ilumina_casava\": false}, \"outputs\": [\"other\"], \"read_numbering\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.15.1+galaxy2", + "type": "tool", + "uuid": "f79f5480-af0e-42e8-8a66-37dc436fedd9", + "when": null, + "workflow_outputs": [ + { + "label": "host_sequences_fastq", + "output_name": "output", + "uuid": "10d4eaec-81d8-444e-8075-7b77a1fb6870" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 10, + "output_name": "unmapped" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 1427.3131395036098, + "top": 457.02175796752795 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "fastq.gz" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "non_host_sequences_fastq" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "66e23b11feae", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_arb_tags\": null, \"copy_tags\": false, \"exclusive_filter\": [\"256\", \"2048\"], \"exclusive_filter_all\": null, \"idxout_cond\": {\"idxout_select\": \"no\", \"__current_case__\": 0}, \"inclusive_filter\": null, \"input\": {\"__class__\": \"ConnectedValue\"}, \"output_fmt_cond\": {\"output_fmt_select\": \"fastqsanger.gz\", \"__current_case__\": 2, \"default_quality\": null, \"output_quality\": false, \"ilumina_casava\": false}, \"outputs\": [\"other\"], \"read_numbering\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.15.1+galaxy2", + "type": "tool", + "uuid": "520e829b-f118-4655-8c0b-f996d01d67c3", + "when": null, + "workflow_outputs": [ + { + "label": "non_host_sequences_fastq", + "output_name": "output", + "uuid": "0c2dd74d-ac4f-45cf-839c-50386a7ece28" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "single_paired|input_sequences": { + "id": 13, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Kraken2", + "name": "single_paired" + } + ], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1655.9777899859946, + "top": 450.50115044702443 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "kraken2_with_kalamri_database_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "RenameDatasetActionreport_output": { + "action_arguments": { + "newname": "kraken2_with_kalamri_database_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "20e2f64aa1fe", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.0\", \"kraken2_database\": \"kalamari\", \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": true, \"report_minimizer_data\": true}, \"single_paired\": {\"single_paired_selector\": \"no\", \"__current_case__\": 2, \"input_sequences\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "2c6bbcf9-178e-4cc2-8340-385961c4bdb1", + "when": null, + "workflow_outputs": [ + { + "label": "kraken2_with_kalamri_database_output", + "output_name": "output", + "uuid": "203d303e-8f3a-4242-971f-b345842ebdb8" + }, + { + "label": "kraken2_with_kalamri_database_report", + "output_name": "report_output", + "uuid": "843afd4d-23a8-46e7-b945-8b67dd7ae341" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2500.9833374023438, + "top": 850.933349609375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "quality_retained_all_reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "be1b0c09-4ce8-480d-9116-3077c82ea684", + "when": null, + "workflow_outputs": [ + { + "label": "quality_retained_all_reads", + "output_name": "out_file1", + "uuid": "d07be9f1-d250-4008-91ee-59a68521eb56" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "input_file": { + "id": 15, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 1766.433349609375, + "top": 33.419788701225116 + }, + "post_job_actions": { + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "hosts_qc_html" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + }, + "RenameDatasetActiontext_file": { + "action_arguments": { + "newname": "hosts_qc_text_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5ec9f6bceaee", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.74+galaxy0", + "type": "tool", + "uuid": "7140e440-b547-4cae-baa0-89e29a3f2bda", + "when": null, + "workflow_outputs": [ + { + "label": "hosts_qc_text_file", + "output_name": "text_file", + "uuid": "b0ee6e31-0eb1-437d-8c04-fc3640b9a0b7" + }, + { + "label": "hosts_qc_html", + "output_name": "html_file", + "uuid": "b72ff57b-0921-43bf-a817-6cd444c8f3cb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "library|input_1": { + "id": 5, + "output_name": "out1" + }, + "report": { + "id": 16, + "output_name": "report_output" + }, + "results": { + "id": 16, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Krakentools: Extract Kraken Reads By ID", + "name": "library" + } + ], + "label": null, + "name": "Krakentools: Extract Kraken Reads By ID", + "outputs": [ + { + "name": "output_1", + "type": "fasta.gz" + } + ], + "position": { + "left": 1897.4166870117188, + "top": 442.90312610356887 + }, + "post_job_actions": { + "RenameDatasetActionoutput_1": { + "action_arguments": { + "newname": "collection_of_preprocessed_samples" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_1" + }, + "TagDatasetActionoutput_1": { + "action_arguments": { + "tags": "collection_of_preprocessed_samples" + }, + "action_type": "TagDatasetAction", + "output_name": "output_1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "f329328da134", + "name": "krakentools_extract_kraken_reads", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exclude\": true, \"fastq_output\": true, \"include_children\": true, \"include_parents\": true, \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}}, \"max\": \"100000000\", \"report\": {\"__class__\": \"ConnectedValue\"}, \"results\": {\"__class__\": \"ConnectedValue\"}, \"taxid\": \"9031 9606 9913\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2+galaxy1", + "type": "tool", + "uuid": "9d22fc4d-9b85-4f6b-b9df-ac9486de7acd", + "when": null, + "workflow_outputs": [ + { + "label": "collection_of_preprocessed_samples", + "output_name": "output_1", + "uuid": "57e3b725-8e13-40b2-9acc-31fd56ebc80a" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1985.4666748046875, + "top": 32.86977039067824 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "total_sequences_after_hosts_sequences_removal" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"Total Sequences\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "a2a29388-186c-41f3-b9a9-c4a6a9d3ffc3", + "when": null, + "workflow_outputs": [ + { + "label": "total_sequences_after_hosts_sequences_removal", + "output_name": "out_file1", + "uuid": "3ba35c71-32f0-4741-98d4-ea8522e27500" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 22, + "input_connections": { + "input": { + "id": 21, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2434.11669921875, + "top": 40.186451298881366 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "quality_retained_hosts_reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "10bee624-ebbf-4173-9444-ae45062bc401", + "when": null, + "workflow_outputs": [ + { + "label": "quality_retained_hosts_reads", + "output_name": "out_file1", + "uuid": "cef36c68-4549-4fd6-b7c8-71fb21df012f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 25, + "input_connections": { + "input": { + "id": 24, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 3208.8475559627727, + "top": 838.6604815167086 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "removed_hosts_percentage_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "removed_hosts_percentage_tabular" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"#KEY\", \"replacement\": \"key\"}], \"field\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "5f41f84c-e27e-4fb7-8128-42ae7f143965", + "when": null, + "workflow_outputs": [ + { + "label": "removed_hosts_percentage_tabular", + "output_name": "out_file1", + "uuid": "470892ee-dab9-48d7-ad97-45dbd52afaa7" + } + ] + }, + { + "annotation": "Quality Control Before and After Preprocessing\n\n", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 26, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 9, + "output_name": "text_file" + }, + "results_1|software_cond|input": { + "id": 25, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1241.3867206791317, + "top": 975.3576882745778 + }, + "post_job_actions": { + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "multiQC_html_report_after_preprocessing" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "multiQC_stats_after_preprocessing" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "TagDatasetActionhtml_report": { + "action_arguments": { + "tags": "MultiQC_After_Preprocessing_HTML" + }, + "action_type": "TagDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"custom_content\", \"__current_case__\": 32, \"plot_type\": \"table\", \"section_name\": \"Host Sequences Removal\", \"title\": \"Host Sequences\", \"description\": null, \"xlab\": null, \"ylab\": null, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"MultiQC Report After PreProcessing\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "df53a320-802c-459a-a4cb-fd41aac4af92", + "when": null, + "workflow_outputs": [ + { + "label": "multiQC_html_report_after_preprocessing", + "output_name": "html_report", + "uuid": "0b1b5a73-36ee-42a2-a220-1ced6ec7378b" + }, + { + "label": "multiQC_stats_after_preprocessing", + "output_name": "stats", + "uuid": "13cbf6c7-6954-4458-aa66-a5b020c63822" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/nanopore_preprocessing.ga", + "tags": [ + "name:Collection", + "name:microGalaxy", + "name:PathoGFAIR", + "name:Nanopore", + "name:IWC" + ], + "test_results": null, + "tests": true, + "title": "Nanopore Preprocessing", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/nanopore-preprocessing", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/nanopore_preprocessing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/nanopore_preprocessing.html", + "version": 3, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "nanopore-preprocessing", + "workflow": "nanopore_preprocessing.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "__FILTER_FAILED_DATASETS__", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_mapped/bamtools_split_mapped/2.5.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_extract_kraken_reads/krakentools_extract_kraken_reads/1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.28+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1087" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Pathogens of all samples report generation and visualization", + "features": { + "comments": true, + "parameters": false, + "report": { + "markdown": "# Pathogen Detection - PathoGFAIR Samples Aggregation and Visualisation workflow Report\nBelow are the results for the PathoGFAIR Samples Aggregation and Visualisation Workflow\n\nThis workflow was run on:\n\n```galaxy\ngenerate_time()\n```\n\nWith Galaxy version:\n\n```galaxy\ngenerate_galaxy_version()\n```\n\n## Workflow Inputs\nTabular files and a FASTA file from the Gene based Pathogenic Identification workflow, four other tabular files from Nanopore Preprocessing and Nanopore - Allele bases Pathogen Identification workflow, and an optional Metadata tabular file with more sample information:\n\nFrom Gene based Pathogenic Identification workflow: \n- contigs, FASTA file\n- vfs, Tabular file\n- vfs_of_genes_identified_by_vfdb, Tabular file\n- amrs, Tabular file\n- amr_identified_by_ncbi, Tabular file\n\nFrom Nanopore - Allele bases Pathogen Identification workflow: \n- number_of_variants_per_sample, Tabular file\n- mapping_mean_depth_per_sample, Tabular file\n- mapping_coverage_percentage_per_sample, Tabular file\n\nFrom Nanopore Preprocessing: \n- removed_hosts_percentage_tabular, Tabular file\n\n## Some of the Workflow Outputs\n\n1- All Samples VFs Heatmap\n\n```galaxy\nhistory_dataset_as_image(output=\"heatmap_png\")\n```\n\n2- All samples phylogenetic tree VFs based\n\n```galaxy\nhistory_dataset_as_image(output=\"all_samples_phylogenetic_tree_based_vfs\")\n```\n\n3- All samples Phylogenetic tree AMR based \n\n```galaxy\nhistory_dataset_as_image(output=\"all_samples_phylogenetic_tree_based_amrs\")\n```\n\n4- Barplot for the Number of reads before host sequences removal and Number of found host reads per sample, performed in the Nanopore - Preprocessing workflow\n\n```galaxy\nhistory_dataset_as_image(output=\"number_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig\")\n```\n\n5- Barplot for the total number of removed host sequences per sample\n\n```galaxy\nhistory_dataset_as_image(output=\"removed_host_percentage_fig\")\n```\n \n6- Barplot for the Mapping mean depth per sample\n\n```galaxy\nhistory_dataset_as_image(output=\"mapping_mean_depth_per_sample_fig\")\n```\n\n6- Barplot for the Mapping coverage percentage per sample\n\n```galaxy\nhistory_dataset_as_image(output=\"mapping_coverage_percentage_per_sample_fig\")\n```\n\n7- Barplot for the total number of variants and SNPs identified per sample\n\n```galaxy\nhistory_dataset_as_image(output=\"number_of_Variants_and_SNPs_indentified_fig\")\n```\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\namr_identified_by_ncbi\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nvfs_of_genes_identified_by_vfdb\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmetadata\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nremoved_hosts_percentage_tabular\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmapping_mean_depth_per_sample\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Collection\\namrs\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmapping_coverage_percentage_per_sample\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nnumber_of_variants_per_sample\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncontigs\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nvfs\"]\n 10[label=\"Filter failed datasets\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"Filter failed datasets\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Bar chart\"]\n 3 -> 12 [label=\"output\"]\n k0961166e38b644e393db100d821b0070[color=lightseagreen,label=\"Output\\nnumber_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig\"]\n 12 -> k0961166e38b644e393db100d821b0070\n 13[label=\"Bar chart\"]\n 3 -> 13 [label=\"output\"]\n k548975e5461949fc9e954d7f4d761dfd[color=lightseagreen,label=\"Output\\nremoved_host_percentage_fig\"]\n 13 -> k548975e5461949fc9e954d7f4d761dfd\n 14[label=\"Bar chart\"]\n 4 -> 14 [label=\"output\"]\n ka71ebb6711544f25a62de8fa2b839e2e[color=lightseagreen,label=\"Output\\nmapping_mean_depth_per_sample_fig\"]\n 14 -> ka71ebb6711544f25a62de8fa2b839e2e\n 15[label=\"Filter failed datasets\"]\n 5 -> 15 [label=\"output\"]\n 16[label=\"Bar chart\"]\n 6 -> 16 [label=\"output\"]\n k2567360ed39f431684f577aaf8e8198c[color=lightseagreen,label=\"Output\\nmapping_coverage_percentage_per_sample_fig\"]\n 16 -> k2567360ed39f431684f577aaf8e8198c\n 17[label=\"Bar chart\"]\n 7 -> 17 [label=\"output\"]\n k68c76f06d2ea42809e6fa7b4f1568389[color=lightseagreen,label=\"Output\\nnumber_of_Variants_and_SNPs_indentified_fig\"]\n 17 -> k68c76f06d2ea42809e6fa7b4f1568389\n 18[label=\"Filter failed datasets\"]\n 8 -> 18 [label=\"output\"]\n 19[label=\"Filter failed datasets\"]\n 9 -> 19 [label=\"output\"]\n 20[label=\"Remove beginning\"]\n 10 -> 20 [label=\"output\"]\n 21[label=\"Remove beginning\"]\n 11 -> 21 [label=\"output\"]\n 22[label=\"Remove beginning\"]\n 15 -> 22 [label=\"output\"]\n 23[label=\"Collapse Collection\"]\n 18 -> 23 [label=\"output\"]\n k86910e3957bf4a76ac4c739340fd2387[color=lightseagreen,label=\"Output\\nall_samples_contigs_in_one_fasta_file\"]\n 23 -> k86910e3957bf4a76ac4c739340fd2387\n 24[label=\"Collapse Collection\"]\n 19 -> 24 [label=\"output\"]\n k02b996c6a9124e4eb3ec49601faaa452[color=lightseagreen,label=\"Output\\nall_vfs_in_one_tabular\"]\n 24 -> k02b996c6a9124e4eb3ec49601faaa452\n 25[label=\"Remove beginning\"]\n 19 -> 25 [label=\"output\"]\n 26[label=\"Count\"]\n 20 -> 26 [label=\"out_file1\"]\n 27[label=\"Count\"]\n 21 -> 27 [label=\"out_file1\"]\n 28[label=\"Group\"]\n 21 -> 28 [label=\"out_file1\"]\n 29[label=\"Unique\"]\n 22 -> 29 [label=\"out_file1\"]\n 30[label=\"Split by group\"]\n 24 -> 30 [label=\"output\"]\n k59f8cb09424b47b1b94ba612c2610cab[color=lightseagreen,label=\"Output\\nsplit_by_group_collection\"]\n 30 -> k59f8cb09424b47b1b94ba612c2610cab\n 31[label=\"Unique\"]\n 25 -> 31 [label=\"out_file1\"]\n 32[label=\"Cut\"]\n 26 -> 32 [label=\"out_file1\"]\n 33[label=\"Cut\"]\n 27 -> 33 [label=\"out_file1\"]\n 34[label=\"Filter empty datasets\"]\n 28 -> 34 [label=\"out_file1\"]\n 35[label=\"Cut\"]\n 29 -> 35 [label=\"outfile\"]\n 36[label=\"Cut\"]\n 30 -> 36 [label=\"split_output\"]\n keeb25a51ea214a19a19655d5bd919b10[color=lightseagreen,label=\"Output\\nadjusted_abricate_vfs_tabular_part1\"]\n 36 -> keeb25a51ea214a19a19655d5bd919b10\n 37[label=\"Cut\"]\n 31 -> 37 [label=\"outfile\"]\n 38[label=\"Collapse Collection\"]\n 32 -> 38 [label=\"out_file1\"]\n 39[label=\"Collapse Collection\"]\n 33 -> 39 [label=\"out_file1\"]\n 40[label=\"Column join\"]\n 34 -> 40 [label=\"output\"]\n 41[label=\"bedtools getfasta\"]\n 23 -> 41 [label=\"output\"]\n 35 -> 41 [label=\"out_file1\"]\n 42[label=\"Remove beginning\"]\n 36 -> 42 [label=\"out_file1\"]\n kaaaa444608174e5caa1b9ec384f2a363[color=lightseagreen,label=\"Output\\nadjusted_abricate_vfs_tabular_part2\"]\n 42 -> kaaaa444608174e5caa1b9ec384f2a363\n 43[label=\"bedtools getfasta\"]\n 23 -> 43 [label=\"output\"]\n 37 -> 43 [label=\"out_file1\"]\n 44[label=\"Column Regex Find And Replace\"]\n 38 -> 44 [label=\"output\"]\n k4809c36b31ef46648e4e47f0f72152de[color=lightseagreen,label=\"Output\\namrs_count\"]\n 44 -> k4809c36b31ef46648e4e47f0f72152de\n 45[label=\"Column Regex Find And Replace\"]\n 39 -> 45 [label=\"output\"]\n k87efc81d4d844af3831fdfe033c59f78[color=lightseagreen,label=\"Output\\nvfs_count\"]\n 45 -> k87efc81d4d844af3831fdfe033c59f78\n 46[label=\"Column Regex Find And Replace\"]\n 40 -> 46 [label=\"tabular_output\"]\n kf5c221e300ef48349a5fa94c97fd6764[color=lightseagreen,label=\"Output\\nheatmap_table\"]\n 46 -> kf5c221e300ef48349a5fa94c97fd6764\n 47[label=\"Regex Find And Replace\"]\n 41 -> 47 [label=\"output\"]\n 48[label=\"bedtools getfasta\"]\n 23 -> 48 [label=\"output\"]\n 42 -> 48 [label=\"out_file1\"]\n k82ce210789a3438c95bbdc871b5258b7[color=lightseagreen,label=\"Output\\nfiltered_sequences_with_vfs_fasta\"]\n 48 -> k82ce210789a3438c95bbdc871b5258b7\n 49[label=\"Regex Find And Replace\"]\n 43 -> 49 [label=\"output\"]\n 50[label=\"Multi-Join\"]\n 45 -> 50 [label=\"out_file1\"]\n 44 -> 50 [label=\"out_file1\"]\n 51[label=\"Heatmap w ggplot\"]\n 46 -> 51 [label=\"out_file1\"]\n kc0417c91a5134c6a9a623aac2f1f8e85[color=lightseagreen,label=\"Output\\nheatmap_pdf\"]\n 51 -> kc0417c91a5134c6a9a623aac2f1f8e85\n k97816bc2fd0c4077a7218dd1470879d1[color=lightseagreen,label=\"Output\\nheatmap_png\"]\n 51 -> k97816bc2fd0c4077a7218dd1470879d1\n 52[label=\"Filter empty datasets\"]\n 47 -> 52 [label=\"out_file1\"]\n 53[label=\"ClustalW\"]\n 48 -> 53 [label=\"output\"]\n k9b7bd78cf112480ba7dfc10711af254c[color=lightseagreen,label=\"Output\\nclustalw_on_input_dnd\"]\n 53 -> k9b7bd78cf112480ba7dfc10711af254c\n k6af2032224da403680de37bed2d25848[color=lightseagreen,label=\"Output\\nclustalw_on_input_clustal\"]\n 53 -> k6af2032224da403680de37bed2d25848\n 54[label=\"Filter empty datasets\"]\n 49 -> 54 [label=\"out_file1\"]\n 55[label=\"Replace Text\"]\n 50 -> 55 [label=\"outfile\"]\n k91745da00b8d4a7ab927b36107f17ec5[color=lightseagreen,label=\"Output\\nvfs_amrs_count_table\"]\n 55 -> k91745da00b8d4a7ab927b36107f17ec5\n 56[label=\"FASTA-to-Tabular\"]\n 52 -> 56 [label=\"output\"]\n 57[label=\"Filter empty datasets\"]\n 53 -> 57 [label=\"output\"]\n k32d00c1d68c440698d5d023aabdfadbe[color=lightseagreen,label=\"Output\\nfiltered_empty_datasets\"]\n 57 -> k32d00c1d68c440698d5d023aabdfadbe\n 58[label=\"FASTA-to-Tabular\"]\n 54 -> 58 [label=\"output\"]\n 59[label=\"Cut\"]\n 56 -> 59 [label=\"output\"]\n 60[label=\"FASTTREE\"]\n 57 -> 60 [label=\"output\"]\n kaacdfe45eb0c4f6ea479eeb170774757[color=lightseagreen,label=\"Output\\nfasttree_nhx\"]\n 60 -> kaacdfe45eb0c4f6ea479eeb170774757\n 61[label=\"Cut\"]\n 58 -> 61 [label=\"output\"]\n 62[label=\"Group\"]\n 59 -> 62 [label=\"out_file1\"]\n 63[label=\"Newick Display\"]\n 60 -> 63 [label=\"output\"]\n k0c22178cdc85413780e2f3040b92bd20[color=lightseagreen,label=\"Output\\nnewick_genes_tree_graphs_collection\"]\n 63 -> k0c22178cdc85413780e2f3040b92bd20\n 64[label=\"Group\"]\n 61 -> 64 [label=\"out_file1\"]\n 65[label=\"Tabular-to-FASTA\"]\n 62 -> 65 [label=\"out_file1\"]\n 66[label=\"Tabular-to-FASTA\"]\n 64 -> 66 [label=\"out_file1\"]\n 67[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 65 -> 67 [label=\"output\"]\n 68[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 66 -> 68 [label=\"output\"]\n 69[label=\"ClustalW\"]\n 67 -> 69 [label=\"output\"]\n 70[label=\"ClustalW\"]\n 68 -> 70 [label=\"output\"]\n 71[label=\"FASTTREE\"]\n 69 -> 71 [label=\"output\"]\n 72[label=\"FASTTREE\"]\n 70 -> 72 [label=\"output\"]\n 73[label=\"Newick Display\"]\n 71 -> 73 [label=\"output\"]\n k1f9cb2cf219f48de8058d6d45f3b3158[color=lightseagreen,label=\"Output\\nall_samples_phylogenetic_tree_based_amrs\"]\n 73 -> k1f9cb2cf219f48de8058d6d45f3b3158\n 74[label=\"Newick Display\"]\n 72 -> 74 [label=\"output\"]\n k6bb4b32b7cca4e048120be9f64ccba39[color=lightseagreen,label=\"Output\\nall_samples_phylogenetic_tree_based_vfs\"]\n 74 -> k6bb4b32b7cca4e048120be9f64ccba39\n}", + "history": [ + { + "hash": "cdd93376adc6ce80742881c25d6810bcce85fc05", + "message": "adding tags to some of the workflow outputs, updating the training with the latest PathoGFAIR workflows updates", + "num": 3, + "short_hash": "cdd93376a", + "unix": "1717675229" + }, + { + "hash": "211b69394d6ef4d129eaa18cd76b93c8dece8cf3", + "message": "adding workflow reports to the workflows of the training to match the latest version of the IWC PR", + "num": 2, + "short_hash": "211b69394", + "unix": "1716716727" + }, + { + "hash": "d320748c5c8ea425a77aa03ac78a5956eb75b005", + "message": "Foodborne training update 2024", + "num": 1, + "short_hash": "d320748c5", + "unix": "1716229068" + } + ], + "inputs": [ + { + "annotation": "output_of_abricate_with_amrfinderncbi", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "output_of_abricate_with_amrfinderncbi", + "name": "amr_identified_by_ncbi" + } + ], + "label": "amr_identified_by_ncbi", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 19.98333740234375, + "top": 1006.3443929882739 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "a7f1c4a9-5d07-49df-82cd-1bbcf3fd628f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "output_of_abricate_with_vfdb", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "output_of_abricate_with_vfdb", + "name": "vfs_of_genes_identified_by_vfdb" + } + ], + "label": "vfs_of_genes_identified_by_vfdb", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 34.98484848484827, + "top": 1508.441282170953 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2908a402-5edf-4bcc-a970-1db21c474d09", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "samples_metadata", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "samples_metadata", + "name": "metadata" + } + ], + "label": "metadata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1858.3512218637072, + "top": 209.99121532505262 + }, + "tool_id": null, + "tool_state": "{\"optional\": true, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f4765d9d-b134-4462-bae6-9695c95ae596", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "removed_hosts_percentage_tabular", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "removed_hosts_percentage_tabular", + "name": "removed_hosts_percentage_tabular" + } + ], + "label": "removed_hosts_percentage_tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1853.666381138832, + "top": 289.6725384559728 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e7dccd07-76a8-48a2-8931-67567fb31598", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "mapping_mean_depth_per_sample", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "mapping_mean_depth_per_sample", + "name": "mapping_mean_depth_per_sample" + } + ], + "label": "mapping_mean_depth_per_sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1854.0957915122806, + "top": 419.61832235919906 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c18104cc-35d8-43ed-85e6-15e4f7af0b4d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "amrs", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "amrs", + "name": "amrs" + } + ], + "label": "amrs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 50.9848484848481, + "top": 1934.2745890557185 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "297bede6-bef8-44f1-bcbb-134464821c44", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "mapping_coverage_percentage_per_sample", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "mapping_coverage_percentage_per_sample", + "name": "mapping_coverage_percentage_per_sample" + } + ], + "label": "mapping_coverage_percentage_per_sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1856.926239945225, + "top": 545.6990912189043 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bbf94808-86af-468d-bbdd-6872ddbf6c30", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "number_of_variants_per_sample", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "number_of_variants_per_sample", + "name": "number_of_variants_per_sample" + } + ], + "label": "number_of_variants_per_sample", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1858.9173115502963, + "top": 671.3113831546217 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "833bedfd-e345-4c8a-8d19-1623faaaf602", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Contigs", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "Contigs", + "name": "contigs" + } + ], + "label": "contigs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 600.9833984375, + "top": 2266.2999877929688 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "ce948faa-f897-47e3-ac8c-0227afdd8203", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "VFs", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "VFs", + "name": "vfs" + } + ], + "label": "vfs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 46.984848484848044, + "top": 2487.3079752861872 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8ff72508-664e-4af1-b0e6-ca2643626295", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\namr_identified_by_ncbi\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nvfs_of_genes_identified_by_vfdb\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nmetadata\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nremoved_hosts_percentage_tabular\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nmapping_mean_depth_per_sample\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Collection\\namrs\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nmapping_coverage_percentage_per_sample\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nnumber_of_variants_per_sample\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Collection\\ncontigs\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Collection\\nvfs\"];\n style 9 stroke:#2c3143,stroke-width:4px;\n 10[\"Filter failed datasets\"];\n 0 -->|output| 10;\n 11[\"Filter failed datasets\"];\n 1 -->|output| 11;\n 12[\"Bar chart\"];\n 3 -->|output| 12;\n 0961166e-38b6-44e3-93db-100d821b0070[\"Output\\nnumber_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig\"];\n 12 --> 0961166e-38b6-44e3-93db-100d821b0070;\n style 0961166e-38b6-44e3-93db-100d821b0070 stroke:#2c3143,stroke-width:4px;\n 13[\"Bar chart\"];\n 3 -->|output| 13;\n 548975e5-4619-49fc-9e95-4d7f4d761dfd[\"Output\\nremoved_host_percentage_fig\"];\n 13 --> 548975e5-4619-49fc-9e95-4d7f4d761dfd;\n style 548975e5-4619-49fc-9e95-4d7f4d761dfd stroke:#2c3143,stroke-width:4px;\n 14[\"Bar chart\"];\n 4 -->|output| 14;\n a71ebb67-1154-4f25-a62d-e8fa2b839e2e[\"Output\\nmapping_mean_depth_per_sample_fig\"];\n 14 --> a71ebb67-1154-4f25-a62d-e8fa2b839e2e;\n style a71ebb67-1154-4f25-a62d-e8fa2b839e2e stroke:#2c3143,stroke-width:4px;\n 15[\"Filter failed datasets\"];\n 5 -->|output| 15;\n 16[\"Bar chart\"];\n 6 -->|output| 16;\n 2567360e-d39f-4316-84f5-77aaf8e8198c[\"Output\\nmapping_coverage_percentage_per_sample_fig\"];\n 16 --> 2567360e-d39f-4316-84f5-77aaf8e8198c;\n style 2567360e-d39f-4316-84f5-77aaf8e8198c stroke:#2c3143,stroke-width:4px;\n 17[\"Bar chart\"];\n 7 -->|output| 17;\n 68c76f06-d2ea-4280-9e6f-a7b4f1568389[\"Output\\nnumber_of_Variants_and_SNPs_indentified_fig\"];\n 17 --> 68c76f06-d2ea-4280-9e6f-a7b4f1568389;\n style 68c76f06-d2ea-4280-9e6f-a7b4f1568389 stroke:#2c3143,stroke-width:4px;\n 18[\"Filter failed datasets\"];\n 8 -->|output| 18;\n 19[\"Filter failed datasets\"];\n 9 -->|output| 19;\n 20[\"Remove beginning\"];\n 10 -->|output| 20;\n 21[\"Remove beginning\"];\n 11 -->|output| 21;\n 22[\"Remove beginning\"];\n 15 -->|output| 22;\n 23[\"Collapse Collection\"];\n 18 -->|output| 23;\n 86910e39-57bf-4a76-ac4c-739340fd2387[\"Output\\nall_samples_contigs_in_one_fasta_file\"];\n 23 --> 86910e39-57bf-4a76-ac4c-739340fd2387;\n style 86910e39-57bf-4a76-ac4c-739340fd2387 stroke:#2c3143,stroke-width:4px;\n 24[\"Collapse Collection\"];\n 19 -->|output| 24;\n 02b996c6-a912-4e4e-b3ec-49601faaa452[\"Output\\nall_vfs_in_one_tabular\"];\n 24 --> 02b996c6-a912-4e4e-b3ec-49601faaa452;\n style 02b996c6-a912-4e4e-b3ec-49601faaa452 stroke:#2c3143,stroke-width:4px;\n 25[\"Remove beginning\"];\n 19 -->|output| 25;\n 26[\"Count\"];\n 20 -->|out_file1| 26;\n 27[\"Count\"];\n 21 -->|out_file1| 27;\n 28[\"Group\"];\n 21 -->|out_file1| 28;\n 29[\"Unique\"];\n 22 -->|out_file1| 29;\n 30[\"Split by group\"];\n 24 -->|output| 30;\n 59f8cb09-424b-47b1-b94b-a612c2610cab[\"Output\\nsplit_by_group_collection\"];\n 30 --> 59f8cb09-424b-47b1-b94b-a612c2610cab;\n style 59f8cb09-424b-47b1-b94b-a612c2610cab stroke:#2c3143,stroke-width:4px;\n 31[\"Unique\"];\n 25 -->|out_file1| 31;\n 32[\"Cut\"];\n 26 -->|out_file1| 32;\n 33[\"Cut\"];\n 27 -->|out_file1| 33;\n 34[\"Filter empty datasets\"];\n 28 -->|out_file1| 34;\n 35[\"Cut\"];\n 29 -->|outfile| 35;\n 36[\"Cut\"];\n 30 -->|split_output| 36;\n eeb25a51-ea21-4a19-a196-55d5bd919b10[\"Output\\nadjusted_abricate_vfs_tabular_part1\"];\n 36 --> eeb25a51-ea21-4a19-a196-55d5bd919b10;\n style eeb25a51-ea21-4a19-a196-55d5bd919b10 stroke:#2c3143,stroke-width:4px;\n 37[\"Cut\"];\n 31 -->|outfile| 37;\n 38[\"Collapse Collection\"];\n 32 -->|out_file1| 38;\n 39[\"Collapse Collection\"];\n 33 -->|out_file1| 39;\n 40[\"Column join\"];\n 34 -->|output| 40;\n 41[\"bedtools getfasta\"];\n 23 -->|output| 41;\n 35 -->|out_file1| 41;\n 42[\"Remove beginning\"];\n 36 -->|out_file1| 42;\n aaaa4446-0817-4e5c-aa1b-9ec384f2a363[\"Output\\nadjusted_abricate_vfs_tabular_part2\"];\n 42 --> aaaa4446-0817-4e5c-aa1b-9ec384f2a363;\n style aaaa4446-0817-4e5c-aa1b-9ec384f2a363 stroke:#2c3143,stroke-width:4px;\n 43[\"bedtools getfasta\"];\n 23 -->|output| 43;\n 37 -->|out_file1| 43;\n 44[\"Column Regex Find And Replace\"];\n 38 -->|output| 44;\n 4809c36b-31ef-4664-8e4e-47f0f72152de[\"Output\\namrs_count\"];\n 44 --> 4809c36b-31ef-4664-8e4e-47f0f72152de;\n style 4809c36b-31ef-4664-8e4e-47f0f72152de stroke:#2c3143,stroke-width:4px;\n 45[\"Column Regex Find And Replace\"];\n 39 -->|output| 45;\n 87efc81d-4d84-4af3-831f-dfe033c59f78[\"Output\\nvfs_count\"];\n 45 --> 87efc81d-4d84-4af3-831f-dfe033c59f78;\n style 87efc81d-4d84-4af3-831f-dfe033c59f78 stroke:#2c3143,stroke-width:4px;\n 46[\"Column Regex Find And Replace\"];\n 40 -->|tabular_output| 46;\n f5c221e3-00ef-4834-9a5f-a94c97fd6764[\"Output\\nheatmap_table\"];\n 46 --> f5c221e3-00ef-4834-9a5f-a94c97fd6764;\n style f5c221e3-00ef-4834-9a5f-a94c97fd6764 stroke:#2c3143,stroke-width:4px;\n 47[\"Regex Find And Replace\"];\n 41 -->|output| 47;\n 48[\"bedtools getfasta\"];\n 23 -->|output| 48;\n 42 -->|out_file1| 48;\n 82ce2107-89a3-438c-95bb-dc871b5258b7[\"Output\\nfiltered_sequences_with_vfs_fasta\"];\n 48 --> 82ce2107-89a3-438c-95bb-dc871b5258b7;\n style 82ce2107-89a3-438c-95bb-dc871b5258b7 stroke:#2c3143,stroke-width:4px;\n 49[\"Regex Find And Replace\"];\n 43 -->|output| 49;\n 50[\"Multi-Join\"];\n 45 -->|out_file1| 50;\n 44 -->|out_file1| 50;\n 51[\"Heatmap w ggplot\"];\n 46 -->|out_file1| 51;\n c0417c91-a513-4c6a-9a62-3aac2f1f8e85[\"Output\\nheatmap_pdf\"];\n 51 --> c0417c91-a513-4c6a-9a62-3aac2f1f8e85;\n style c0417c91-a513-4c6a-9a62-3aac2f1f8e85 stroke:#2c3143,stroke-width:4px;\n 97816bc2-fd0c-4077-a721-8dd1470879d1[\"Output\\nheatmap_png\"];\n 51 --> 97816bc2-fd0c-4077-a721-8dd1470879d1;\n style 97816bc2-fd0c-4077-a721-8dd1470879d1 stroke:#2c3143,stroke-width:4px;\n 52[\"Filter empty datasets\"];\n 47 -->|out_file1| 52;\n 53[\"ClustalW\"];\n 48 -->|output| 53;\n 9b7bd78c-f112-480b-a7df-c10711af254c[\"Output\\nclustalw_on_input_dnd\"];\n 53 --> 9b7bd78c-f112-480b-a7df-c10711af254c;\n style 9b7bd78c-f112-480b-a7df-c10711af254c stroke:#2c3143,stroke-width:4px;\n 6af20322-24da-4036-80de-37bed2d25848[\"Output\\nclustalw_on_input_clustal\"];\n 53 --> 6af20322-24da-4036-80de-37bed2d25848;\n style 6af20322-24da-4036-80de-37bed2d25848 stroke:#2c3143,stroke-width:4px;\n 54[\"Filter empty datasets\"];\n 49 -->|out_file1| 54;\n 55[\"Replace Text\"];\n 50 -->|outfile| 55;\n 91745da0-0b8d-4a7a-b927-b36107f17ec5[\"Output\\nvfs_amrs_count_table\"];\n 55 --> 91745da0-0b8d-4a7a-b927-b36107f17ec5;\n style 91745da0-0b8d-4a7a-b927-b36107f17ec5 stroke:#2c3143,stroke-width:4px;\n 56[\"FASTA-to-Tabular\"];\n 52 -->|output| 56;\n 57[\"Filter empty datasets\"];\n 53 -->|output| 57;\n 32d00c1d-68c4-4069-8d5d-023aabdfadbe[\"Output\\nfiltered_empty_datasets\"];\n 57 --> 32d00c1d-68c4-4069-8d5d-023aabdfadbe;\n style 32d00c1d-68c4-4069-8d5d-023aabdfadbe stroke:#2c3143,stroke-width:4px;\n 58[\"FASTA-to-Tabular\"];\n 54 -->|output| 58;\n 59[\"Cut\"];\n 56 -->|output| 59;\n 60[\"FASTTREE\"];\n 57 -->|output| 60;\n aacdfe45-eb0c-4f6e-a479-eeb170774757[\"Output\\nfasttree_nhx\"];\n 60 --> aacdfe45-eb0c-4f6e-a479-eeb170774757;\n style aacdfe45-eb0c-4f6e-a479-eeb170774757 stroke:#2c3143,stroke-width:4px;\n 61[\"Cut\"];\n 58 -->|output| 61;\n 62[\"Group\"];\n 59 -->|out_file1| 62;\n 63[\"Newick Display\"];\n 60 -->|output| 63;\n 0c22178c-dc85-4137-80e2-f3040b92bd20[\"Output\\nnewick_genes_tree_graphs_collection\"];\n 63 --> 0c22178c-dc85-4137-80e2-f3040b92bd20;\n style 0c22178c-dc85-4137-80e2-f3040b92bd20 stroke:#2c3143,stroke-width:4px;\n 64[\"Group\"];\n 61 -->|out_file1| 64;\n 65[\"Tabular-to-FASTA\"];\n 62 -->|out_file1| 65;\n 66[\"Tabular-to-FASTA\"];\n 64 -->|out_file1| 66;\n 67[\"FASTA Merge Files and Filter Unique Sequences\"];\n 65 -->|output| 67;\n 68[\"FASTA Merge Files and Filter Unique Sequences\"];\n 66 -->|output| 68;\n 69[\"ClustalW\"];\n 67 -->|output| 69;\n 70[\"ClustalW\"];\n 68 -->|output| 70;\n 71[\"FASTTREE\"];\n 69 -->|output| 71;\n 72[\"FASTTREE\"];\n 70 -->|output| 72;\n 73[\"Newick Display\"];\n 71 -->|output| 73;\n 1f9cb2cf-219f-48de-8058-d6d45f3b3158[\"Output\\nall_samples_phylogenetic_tree_based_amrs\"];\n 73 --> 1f9cb2cf-219f-48de-8058-d6d45f3b3158;\n style 1f9cb2cf-219f-48de-8058-d6d45f3b3158 stroke:#2c3143,stroke-width:4px;\n 74[\"Newick Display\"];\n 72 -->|output| 74;\n 6bb4b32b-7cca-4e04-8120-be9f64ccba39[\"Output\\nall_samples_phylogenetic_tree_based_vfs\"];\n 74 --> 6bb4b32b-7cca-4e04-8120-be9f64ccba39;\n style 6bb4b32b-7cca-4e04-8120-be9f64ccba39 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Pathogen Detection PathoGFAIR Samples Aggregation and Visualisation", + "outputs": [ + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2210.9833374023438, + "top": 53.05000305175781 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "number_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "number_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"2\", \"3\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"Number of Reads Before Host Removal and Number of Found Host Reads\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Number of Reads\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "444ec0b5-dde4-4ac6-b816-72344bf3bd6f", + "when": null, + "workflow_outputs": [ + { + "label": "number_of_reads_before_host_removal_and_number_of_host_reads_found_per_sample_fig", + "output_name": "out_file1", + "uuid": "0961166e-38b6-44e3-93db-100d821b0070" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2210.9833374023438, + "top": 255.23333740234375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "removed_host_percentage_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "removed_host_percentage_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"4\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"removed_host_percentage\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Percentage of removed hosts\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "0092751d-73a0-413f-9260-d00a7e8916c8", + "when": null, + "workflow_outputs": [ + { + "label": "removed_host_percentage_fig", + "output_name": "out_file1", + "uuid": "548975e5-4619-49fc-9e95-4d7f4d761dfd" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2208.9833374023438, + "top": 416.23333740234375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "mapping_mean_depth_per_sample_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "mapping_mean_depth_per_sample_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"2\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"mapping_mean_depth_per_sample\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Mapping Mean Depth\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "f819d1dc-8621-4eb0-bf5e-b52021a57af2", + "when": null, + "workflow_outputs": [ + { + "label": "mapping_mean_depth_per_sample_fig", + "output_name": "out_file1", + "uuid": "a71ebb67-1154-4f25-a62d-e8fa2b839e2e" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2207.9833374023438, + "top": 586 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "mapping_coverage_percentage_per_sample_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "mapping_coverage_percentage_per_sample_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"2\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"mapping_coverage_percentage_per_sample\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Mapping Coverage Percentage\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "25b26cda-14a2-44c7-8162-5d8ff9dc30f3", + "when": null, + "workflow_outputs": [ + { + "label": "mapping_coverage_percentage_per_sample_fig", + "output_name": "out_file1", + "uuid": "2567360e-d39f-4316-84f5-77aaf8e8198c" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 2206.8499755859375, + "top": 779.0499877929688 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "number_of_Variants_and_SNPs_indentified_fig" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "number_of_Variants_and_SNPs_indentified_fig" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": [\"2\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"number_of_Variants_and_SNPs_indentified_fig\", \"xtic\": {\"userSpecified\": \"Yes\", \"__current_case__\": 0, \"xticColumn\": \"1\"}, \"ylabel\": \"Number of Variants and SNPs\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "090d65eb-8299-4e39-a2b0-a5dbdbd6a67b", + "when": null, + "workflow_outputs": [ + { + "label": "number_of_Variants_and_SNPs_indentified_fig", + "output_name": "out_file1", + "uuid": "68c76f06-d2ea-4280-9e6f-a7b4f1568389" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 23, + "input_connections": { + "input_list": { + "id": 18, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1166.984848484848, + "top": 2235.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "all_samples_contigs_in_one_fasta_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": false, \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "fb9327fe-11d1-4e20-95e9-3630958f9aed", + "when": null, + "workflow_outputs": [ + { + "label": "all_samples_contigs_in_one_fasta_file", + "output_name": "output", + "uuid": "86910e39-57bf-4a76-ac4c-739340fd2387" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "errors": null, + "id": 24, + "input_connections": { + "input_list": { + "id": 19, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 606.984848484848, + "top": 2441.3079752861872 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "all_vfs_in_one_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "tool_shed_repository": { + "changeset_revision": "90981f86000f", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": false, \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.1.0", + "type": "tool", + "uuid": "29c0dd1a-0cc1-45c2-b9ac-4787d5c6d003", + "when": null, + "workflow_outputs": [ + { + "label": "all_vfs_in_one_tabular", + "output_name": "output", + "uuid": "02b996c6-a912-4e4e-b3ec-49601faaa452" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.6", + "errors": null, + "id": 30, + "input_connections": { + "infile": { + "id": 24, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Split by group", + "outputs": [ + { + "name": "split_output", + "type": "input" + } + ], + "position": { + "left": 886.984848484848, + "top": 2441.3079752861872 + }, + "post_job_actions": { + "RenameDatasetActionsplit_output": { + "action_arguments": { + "newname": "split_by_group_collection" + }, + "action_type": "RenameDatasetAction", + "output_name": "split_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.6", + "tool_shed_repository": { + "changeset_revision": "ff2a81aa3f08", + "name": "split_file_on_column", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column\": \"13\", \"include_header\": true, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.6", + "type": "tool", + "uuid": "eabf505c-a46f-4180-86c5-60c096f78b35", + "when": null, + "workflow_outputs": [ + { + "label": "split_by_group_collection", + "output_name": "split_output", + "uuid": "59f8cb09-424b-47b1-b94b-a612c2610cab" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 36, + "input_connections": { + "input": { + "id": 30, + "output_name": "split_output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1166.984848484848, + "top": 2451.3079752861872 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "adjusted_abricate_vfs_tabular_part1" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c2,c3,c4\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "f69bdaed-4620-4ac1-9ca5-8e5f6d1ac3f9", + "when": null, + "workflow_outputs": [ + { + "label": "adjusted_abricate_vfs_tabular_part1", + "output_name": "out_file1", + "uuid": "eeb25a51-ea21-4a19-a196-55d5bd919b10" + } + ] + }, + { + "annotation": "", + "content_id": "Remove beginning1", + "errors": null, + "id": 42, + "input_connections": { + "input": { + "id": 36, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Remove beginning", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1456.984848484848, + "top": 2385.307975286187 + }, + "post_job_actions": { + "ChangeDatatypeActionout_file1": { + "action_arguments": { + "newtype": "bed" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "out_file1" + }, + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "adjusted_abricate_vfs_tabular_part2" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Remove beginning1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"num_lines\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "3eab5012-f658-4d5b-9919-83621281470c", + "when": null, + "workflow_outputs": [ + { + "label": "adjusted_abricate_vfs_tabular_part2", + "output_name": "out_file1", + "uuid": "aaaa4446-0817-4e5c-aa1b-9ec384f2a363" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 44, + "input_connections": { + "input": { + "id": 38, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1387.63330078125, + "top": 1013.3521487012002 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "amrs_count" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^$\", \"replacement\": \"0\"}], \"field\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "a8a0cf10-6f23-436b-b7ee-28cd8f7eee61", + "when": null, + "workflow_outputs": [ + { + "label": "amrs_count", + "output_name": "out_file1", + "uuid": "4809c36b-31ef-4664-8e4e-47f0f72152de" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 45, + "input_connections": { + "input": { + "id": 39, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1500.5544233842322, + "top": 1250.695397400772 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "vfs_count" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^$\", \"replacement\": \"0\"}], \"field\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "8557f83f-3010-4d1d-976f-d0552086f06b", + "when": null, + "workflow_outputs": [ + { + "label": "vfs_count", + "output_name": "out_file1", + "uuid": "87efc81d-4d84-4af3-831f-dfe033c59f78" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "errors": null, + "id": 46, + "input_connections": { + "input": { + "id": 40, + "output_name": "tabular_output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1434.9848484848483, + "top": 1502.441282170953 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "heatmap_table" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"#KEY\", \"replacement\": \"key\"}], \"field\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "ea2bfbb1-3cfb-4a10-9443-d83ee964271f", + "when": null, + "workflow_outputs": [ + { + "label": "heatmap_table", + "output_name": "out_file1", + "uuid": "f5c221e3-00ef-4834-9a5f-a94c97fd6764" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed/2.30.0+galaxy1", + "errors": null, + "id": 48, + "input_connections": { + "fasta_source|fasta": { + "id": 23, + "output_name": "output" + }, + "input": { + "id": 42, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bedtools getfasta", + "name": "fasta_source" + } + ], + "label": null, + "name": "bedtools getfasta", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 1736.984848484848, + "top": 2276.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "filtered_sequences_with_vfs_fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed/2.30.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a1a923cd89e8", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fasta_source\": {\"fasta_source_selector\": \"history\", \"__current_case__\": 0, \"fasta\": {\"__class__\": \"ConnectedValue\"}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"name\": false, \"nameOnly\": false, \"split\": false, \"strand\": false, \"tab\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.30.0+galaxy1", + "type": "tool", + "uuid": "7283594d-0455-4f60-98f5-d9c315e28ee4", + "when": null, + "workflow_outputs": [ + { + "label": "filtered_sequences_with_vfs_fasta", + "output_name": "output", + "uuid": "82ce2107-89a3-438c-95bb-dc871b5258b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap/ggplot2_heatmap/3.4.0+galaxy0", + "errors": null, + "id": 51, + "input_connections": { + "input1": { + "id": 46, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Heatmap w ggplot", + "outputs": [ + { + "name": "output1", + "type": "png" + }, + { + "name": "output2", + "type": "pdf" + } + ], + "position": { + "left": 1680.9666748046875, + "top": 1471.433349609375 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "heatmap_png" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + }, + "RenameDatasetActionoutput2": { + "action_arguments": { + "newname": "heatmap_pdf" + }, + "action_type": "RenameDatasetAction", + "output_name": "output2" + }, + "TagDatasetActionoutput1": { + "action_arguments": { + "tags": "vfs_heatmap_png" + }, + "action_type": "TagDatasetAction", + "output_name": "output1" + }, + "TagDatasetActionoutput2": { + "action_arguments": { + "tags": "vfs_heatmap_pdf" + }, + "action_type": "TagDatasetAction", + "output_name": "output2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap/ggplot2_heatmap/3.4.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "10515715c940", + "name": "ggplot2_heatmap", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"transform\": \"none\", \"cluster\": true, \"colorscheme\": \"whrd\"}, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"inputdata\": {\"input_type\": \"with_header_rownames\", \"__current_case__\": 2, \"header\": \"TRUE\", \"row_names_index\": \"1\", \"sample_name_orientation\": \"FALSE\"}, \"out\": {\"unit_output_dim\": \"cm\", \"width_output_dim\": \"70.0\", \"height_output_dim\": \"70.0\", \"dpi_output_dim\": \"1000.0\", \"additional_output_format\": \"pdf\"}, \"title\": \"Pathogeneic Genes Per Samples\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.4.0+galaxy0", + "type": "tool", + "uuid": "14c05908-0f84-44a6-bc2e-1c4cd9d73fae", + "when": null, + "workflow_outputs": [ + { + "label": "heatmap_pdf", + "output_name": "output2", + "uuid": "c0417c91-a513-4c6a-9a62-3aac2f1f8e85" + }, + { + "label": "heatmap_png", + "output_name": "output1", + "uuid": "97816bc2-fd0c-4077-a721-8dd1470879d1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1", + "errors": null, + "id": 53, + "input_connections": { + "input": { + "id": 48, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "ClustalW", + "outputs": [ + { + "name": "output", + "type": "clustal" + }, + { + "name": "dnd", + "type": "nhx" + } + ], + "position": { + "left": 2016.984848484848, + "top": 2321.307975286187 + }, + "post_job_actions": { + "RenameDatasetActiondnd": { + "action_arguments": { + "newname": "clustalw_on_input_dnd" + }, + "action_type": "RenameDatasetAction", + "output_name": "dnd" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "clustalw_on_input_clustal" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "5b097fde95dd", + "name": "clustalw", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"out_order\": \"ALIGNED\", \"outcontrol\": {\"outform\": \"fasta\", \"__current_case__\": 0}, \"range\": {\"mode\": \"complete\", \"__current_case__\": 0}, \"tree_calculation\": {\"OUTPUTTREE\": \"PHYLIP\", \"KIMURA\": false, \"TOSSGAPS\": false}, \"type_conditional\": {\"dnarna\": \"DNA\", \"__current_case__\": 0, \"algorithm_conditional\": {\"selector\": \"\", \"__current_case__\": 0, \"slow_pairwise_alignments\": {\"PWDNAMATRIX\": \"IUB\", \"PWGAPOPEN\": null, \"PWGAPEXT\": null}}, \"multiple_alignments\": {\"DNAMATRIX\": \"IUB\", \"GAPOPEN\": null, \"GAPEXT\": null, \"ENDGAPS\": false, \"GAPDIST\": null, \"NOPGAP\": false, \"NOHGAP\": false, \"MAXDIV\": null, \"NEGATIVE\": false, \"TRANSWEIGHT\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1+galaxy1", + "type": "tool", + "uuid": "7904af41-77da-4959-adae-01a374d16af6", + "when": null, + "workflow_outputs": [ + { + "label": "clustalw_on_input_dnd", + "output_name": "dnd", + "uuid": "9b7bd78c-f112-480b-a7df-c10711af254c" + }, + { + "label": "clustalw_on_input_clustal", + "output_name": "output", + "uuid": "6af20322-24da-4036-80de-37bed2d25848" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "errors": null, + "id": 55, + "input_connections": { + "infile": { + "id": 50, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 1827.9212446732947, + "top": 1238.4953241585845 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "vfs_amrs_count_table" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + }, + "TagDatasetActionoutfile": { + "action_arguments": { + "tags": "vfs_amrs_count_table" + }, + "action_type": "TagDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fbf99087e067", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"column\": \"2\", \"find_pattern\": \".*V2\", \"replace_pattern\": \"AMRs count\"}, {\"__index__\": 1, \"column\": \"3\", \"find_pattern\": \".*V2\", \"replace_pattern\": \"VFs count\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "9.3+galaxy1", + "type": "tool", + "uuid": "9c858c45-8750-4738-8d6c-7fd8b2fcb94b", + "when": null, + "workflow_outputs": [ + { + "label": "vfs_amrs_count_table", + "output_name": "outfile", + "uuid": "91745da0-0b8d-4a7a-b927-b36107f17ec5" + } + ] + }, + { + "annotation": "", + "content_id": "__FILTER_EMPTY_DATASETS__", + "errors": null, + "id": 57, + "input_connections": { + "input": { + "id": 53, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter empty datasets", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 2296.984848484848, + "top": 2337.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "filtered_empty_datasets" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "__FILTER_EMPTY_DATASETS__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "5a0c3914-d149-4ccd-82fe-5065f9eb8995", + "when": null, + "workflow_outputs": [ + { + "label": "filtered_empty_datasets", + "output_name": "output", + "uuid": "32d00c1d-68c4-4069-8d5d-023aabdfadbe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "errors": null, + "id": 60, + "input_connections": { + "input_selector|input": { + "id": 57, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FASTTREE", + "name": "input_selector" + } + ], + "label": null, + "name": "FASTTREE", + "outputs": [ + { + "name": "output", + "type": "nhx" + } + ], + "position": { + "left": 2576.984848484848, + "top": 2357.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "fasttree_nhx" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e005e659ae21", + "name": "fasttree", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_selector\": {\"maximize\": \"min\", \"__current_case__\": 0}, \"input_selector\": {\"select_format\": \"fasta\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"quote\": false, \"intree_selector\": {\"intree_format\": \"none\", \"__current_case__\": 0}}, \"model_selector\": {\"format\": \"-nt\", \"__current_case__\": 0, \"model\": \"-gtr\"}, \"save_logfile\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.10+galaxy1", + "type": "tool", + "uuid": "4faa1735-bea7-4e71-9961-9928bbba13d3", + "when": null, + "workflow_outputs": [ + { + "label": "fasttree_nhx", + "output_name": "output", + "uuid": "aacdfe45-eb0c-4f6e-a479-eeb170774757" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "errors": null, + "id": 63, + "input_connections": { + "fileNewick": { + "id": 60, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Newick Display", + "outputs": [ + { + "name": "output", + "type": "svg" + } + ], + "position": { + "left": 2856.984848484848, + "top": 2366.307975286187 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "newick_genes_tree_graphs_collection" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "vfs_newick_genes_tree_graphs_collection" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b4163d2f64ab", + "name": "newick_utils", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"condbranchlength\": {\"branchlength\": \"false\", \"__current_case__\": 1}, \"condbranchsupport\": {\"branchsupport\": \"false\", \"__current_case__\": 1}, \"fileNewick\": {\"__class__\": \"ConnectedValue\"}, \"leafFont\": \"sans-serif\", \"leafSize\": \"10px\", \"legend\": \"\", \"outformat\": \"svg\", \"radial\": false, \"scalebar\": true, \"width\": \"2000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6+galaxy1", + "type": "tool", + "uuid": "29e9c814-e0e6-4e1b-ab29-3e9aa2110eac", + "when": null, + "workflow_outputs": [ + { + "label": "newick_genes_tree_graphs_collection", + "output_name": "output", + "uuid": "0c22178c-dc85-4137-80e2-f3040b92bd20" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "errors": null, + "id": 73, + "input_connections": { + "fileNewick": { + "id": 71, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Newick Display", + "outputs": [ + { + "name": "output", + "type": "svg" + } + ], + "position": { + "left": 3976.9833374023438, + "top": 1943.2666625976562 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "all_samples_phylogenetic_tree_based_amrs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "all_samples_phylogenetic_tree_based_amrs" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b4163d2f64ab", + "name": "newick_utils", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"condbranchlength\": {\"branchlength\": \"false\", \"__current_case__\": 1}, \"condbranchsupport\": {\"branchsupport\": \"false\", \"__current_case__\": 1}, \"fileNewick\": {\"__class__\": \"ConnectedValue\"}, \"leafFont\": \"sans-serif\", \"leafSize\": \"10px\", \"legend\": \"\", \"outformat\": \"svg\", \"radial\": false, \"scalebar\": true, \"width\": \"2000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6+galaxy1", + "type": "tool", + "uuid": "da6052c7-ec6e-4105-96d6-4c3d1204eb99", + "when": null, + "workflow_outputs": [ + { + "label": "all_samples_phylogenetic_tree_based_amrs", + "output_name": "output", + "uuid": "1f9cb2cf-219f-48de-8058-d6d45f3b3158" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "errors": null, + "id": 74, + "input_connections": { + "fileNewick": { + "id": 72, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Newick Display", + "outputs": [ + { + "name": "output", + "type": "svg" + } + ], + "position": { + "left": 3972.9833374023438, + "top": 2573.2999877929688 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "all_samples_phylogenetic_tree_based_vfs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "all_samples_phylogenetic_tree_based_vfs" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b4163d2f64ab", + "name": "newick_utils", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"condbranchlength\": {\"branchlength\": \"false\", \"__current_case__\": 1}, \"condbranchsupport\": {\"branchsupport\": \"false\", \"__current_case__\": 1}, \"fileNewick\": {\"__class__\": \"ConnectedValue\"}, \"leafFont\": \"sans-serif\", \"leafSize\": \"10px\", \"legend\": \"\", \"outformat\": \"svg\", \"radial\": false, \"scalebar\": true, \"width\": \"2000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6+galaxy1", + "type": "tool", + "uuid": "8af67049-73c6-4121-a6b0-daa8db404a24", + "when": null, + "workflow_outputs": [ + { + "label": "all_samples_phylogenetic_tree_based_vfs", + "output_name": "output", + "uuid": "6bb4b32b-7cca-4e04-8120-be9f64ccba39" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.ga", + "tags": [ + "name:Collection", + "name:microGalaxy", + "name:PathoGFAIR", + "name:IWC" + ], + "test_results": null, + "tests": false, + "title": "Pathogen Detection PathoGFAIR Samples Aggregation and Visualisation", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/pathogen-detection-pathogfair-samples-aggrtion-and-visualisation", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.html", + "version": 2, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "pathogen-detection-pathogfair-samples-aggrtion-and-visualisation", + "workflow": "pathogen_detection_pathoGFAIR_samples_aggregation_and_visualisation.ga", + "workflow_tools": [ + "Count1", + "Cut1", + "Grouping1", + "Remove beginning1", + "__FILTER_EMPTY_DATASETS__", + "__FILTER_FAILED_DATASETS__", + "barchart_gnuplot", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_on_column/tp_split_on_column/0.6", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_multijoin_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_getfastabed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/fasttree/fasttree/2.1.10+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap/ggplot2_heatmap/3.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1077" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9047-4215", + "name": "Engy Nasr", + "url": "https://orcid.org/0000-0001-9047-4215" + }, + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut", + "url": "https://orcid.org/0000-0001-9852-1987" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Microbiome - Taxonomy Profiling", + "features": { + "comments": true, + "parameters": true, + "report": { + "markdown": "# Taxonomy Profiling and Visualisation with Krona Workflow Report\n\nIn this workflow you can identify your microbial community, but identifying all possible Taxon found in your samples, from the kingdom level down to the species level. In the application of the pathogen detection, this workflow gives an overview of the possible bacterial found in samples and what might be a possible suspect for pathogenicity.\n\nThe workflow uses Kraken2 tool and allow the user to choose any Kraken2 database or other added ones depending on the user application or the input samples. All Kraken2 tool databases are available in Galaxy. More description about these databases can be found [here](https://benlangmead.github.io/aws-indexes/k2). Other databases can be also added to the tool, just contact us anytime for that. We recommend using StandardPF database.\n\nVisualization is done using Krona Pie Chart, and you can replace it with any other tool. e.g. Phinch interactive tool, which is also available in Galaxy\n\n## Workflow Inputs:\n\nThe per-processing workflow main output (Collection of all samples reads after quality retaining and hosts filtering)\n\n## Workflow Outputs are:\n\n### Taxonomy Tabular Report\n\nThe report shows the abundance of every taxon from the kingdom level down to the species level\n\n```galaxy\nhistory_dataset_display(output=\"converted_kraken_report\")\n```\n\n### Taxonomy Profiling Visualization with Krona\nAn interactive Pie chart showing the different identified taxons along with their percentages, which is one of the ways to visualize the previous taxonomy tabular\n\n```galaxy\nhistory_dataset_as_image(output=\"krona_pie_chart\")\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nkraken_database\"]\n 2[label=\"Kraken2\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n k26f9041fd8a44f648a53404d5c7e2f61[color=lightseagreen,label=\"Output\\nkraken2_with_pluspf_database_output\"]\n 2 -> k26f9041fd8a44f648a53404d5c7e2f61\n kf2ddd05b66a04cea9da6ed107eecbe1b[color=lightseagreen,label=\"Output\\nkraken2_with_pluspf_database_output_report\"]\n 2 -> kf2ddd05b66a04cea9da6ed107eecbe1b\n 3[label=\"Krakentools: Convert kraken report file\"]\n 2 -> 3 [label=\"report_output\"]\n kc490ab8d1b1d4914aa51a62a967a4018[color=lightseagreen,label=\"Output\\nconverted_kraken_report\"]\n 3 -> kc490ab8d1b1d4914aa51a62a967a4018\n 4[label=\"Krona pie chart\"]\n 3 -> 4 [label=\"output\"]\n kdcc857c6f5794c7484ecbb6ce3794a56[color=lightseagreen,label=\"Output\\nkrona_pie_chart\"]\n 4 -> kdcc857c6f5794c7484ecbb6ce3794a56\n}", + "history": [ + { + "hash": "cdd93376adc6ce80742881c25d6810bcce85fc05", + "message": "adding tags to some of the workflow outputs, updating the training with the latest PathoGFAIR workflows updates", + "num": 2, + "short_hash": "cdd93376a", + "unix": "1717675229" + }, + { + "hash": "c63ce23c7a7a631f1256b8e733defce3ca4e009b", + "message": "updating workflows file names", + "num": 1, + "short_hash": "c63ce23c7", + "unix": "1716726587" + } + ], + "inputs": [ + { + "annotation": "Output collection from the Nanopore Preprocessing workflow", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Output collection from the Nanopore Preprocessing workflow", + "name": "collection_of_preprocessed_samples" + } + ], + "label": "collection_of_preprocessed_samples", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c4a14ff1-1f0c-4cb5-aefe-b56f0a84404e", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "kraken_database_for_user_to_choose", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "kraken_database_for_user_to_choose", + "name": "kraken_database" + } + ], + "label": "kraken_database", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 24.79997558593749, + "top": 276.7833526611328 + }, + "tool_id": null, + "tool_state": "{\"restrictOnConnections\": true, \"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "cc59191c-1bc9-4007-b88c-8765ff2dfefd", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\ncollection_of_preprocessed_samples\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nkraken_database\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"Kraken2\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 26f9041f-d8a4-4f64-8a53-404d5c7e2f61[\"Output\\nkraken2_with_pluspf_database_output\"];\n 2 --> 26f9041f-d8a4-4f64-8a53-404d5c7e2f61;\n style 26f9041f-d8a4-4f64-8a53-404d5c7e2f61 stroke:#2c3143,stroke-width:4px;\n f2ddd05b-66a0-4cea-9da6-ed107eecbe1b[\"Output\\nkraken2_with_pluspf_database_output_report\"];\n 2 --> f2ddd05b-66a0-4cea-9da6-ed107eecbe1b;\n style f2ddd05b-66a0-4cea-9da6-ed107eecbe1b stroke:#2c3143,stroke-width:4px;\n 3[\"Krakentools: Convert kraken report file\"];\n 2 -->|report_output| 3;\n c490ab8d-1b1d-4914-aa51-a62a967a4018[\"Output\\nconverted_kraken_report\"];\n 3 --> c490ab8d-1b1d-4914-aa51-a62a967a4018;\n style c490ab8d-1b1d-4914-aa51-a62a967a4018 stroke:#2c3143,stroke-width:4px;\n 4[\"Krona pie chart\"];\n 3 -->|output| 4;\n dcc857c6-f579-4c74-84ec-bb6ce3794a56[\"Output\\nkrona_pie_chart\"];\n 4 --> dcc857c6-f579-4c74-84ec-bb6ce3794a56;\n style dcc857c6-f579-4c74-84ec-bb6ce3794a56 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Taxonomy Profiling and Visualization with Krona", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "kraken2_database": { + "id": 1, + "output_name": "output" + }, + "single_paired|input_sequences": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Kraken2", + "name": "single_paired" + } + ], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 231.99998779296874, + "top": 205.00002746582032 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "kraken2_with_pluspf_database_output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "RenameDatasetActionreport_output": { + "action_arguments": { + "newname": "kraken2_with_pluspf_database_output_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "20e2f64aa1fe", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.1\", \"kraken2_database\": {\"__class__\": \"ConnectedValue\"}, \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"no\", \"__current_case__\": 2, \"input_sequences\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "ddb4e42b-6381-411e-9328-1c7959ecda47", + "when": null, + "workflow_outputs": [ + { + "label": "kraken2_with_pluspf_database_output", + "output_name": "output", + "uuid": "26f9041f-d8a4-4f64-8a53-404d5c7e2f61" + }, + { + "label": "kraken2_with_pluspf_database_output_report", + "output_name": "report_output", + "uuid": "f2ddd05b-66a0-4cea-9da6-ed107eecbe1b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "report": { + "id": 2, + "output_name": "report_output" + } + }, + "inputs": [], + "label": null, + "name": "Krakentools: Convert kraken report file", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 447.9999877929688, + "top": 205.31667785644532 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "converted_kraken_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "2deaada69b14", + "name": "krakentools_kreport2krona", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"intermediate_ranks\": false, \"report\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2+galaxy1", + "type": "tool", + "uuid": "7464e3a0-2253-4fe5-832f-ea155a660b08", + "when": null, + "workflow_outputs": [ + { + "label": "converted_kraken_report", + "output_name": "output", + "uuid": "c490ab8d-1b1d-4914-aa51-a62a967a4018" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "type_of_data|input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Krona pie chart", + "name": "type_of_data" + } + ], + "label": null, + "name": "Krona pie chart", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 701, + "top": 212.31666564941406 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "krona_pie_chart" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "taxonomy_profiling_visualisation_krona_pie_chart" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e9005d1f3cfd", + "name": "taxonomy_krona_chart", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"combine_inputs\": false, \"root_name\": \"Root\", \"type_of_data\": {\"type_of_data_selector\": \"text\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.7.1+galaxy0", + "type": "tool", + "uuid": "8b130a6a-6fb3-4498-ac19-0d2df97c09e1", + "when": null, + "workflow_outputs": [ + { + "label": "krona_pie_chart", + "output_name": "output", + "uuid": "dcc857c6-f579-4c74-84ec-bb6ce3794a56" + } + ] + } + ], + "parent_id": "microbiome/pathogen-detection-from-nanopore-foodborne-data", + "path": "topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/taxonomy_profiling_and_visualisation_with_krona.ga", + "tags": [ + "name:Collection", + "name:microGalaxy", + "name:PathoGFAIR", + "name:IWC" + ], + "test_results": null, + "tests": true, + "title": "Taxonomy Profiling and Visualization with Krona", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-pathogen-detection-from-nanopore-foodborne-data/versions/taxonomy-profiling-and-visualisation-with-krona", + "tutorial_id": "pathogen-detection-from-nanopore-foodborne-data", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/taxonomy_profiling_and_visualisation_with_krona.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/workflows/taxonomy_profiling_and_visualisation_with_krona.html", + "version": 2, + "wfid": "microbiome-pathogen-detection-from-nanopore-foodborne-data", + "wfname": "taxonomy-profiling-and-visualisation-with-krona", + "workflow": "taxonomy_profiling_and_visualisation_with_krona.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy1" + ], + "workflowhub_id": "1073" + } + ], + "zenodo_link": "https://zenodo.org/record/11222469" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "1334cb4c6b68", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_reverse", + "owner": "iuc", + "revisions": "0f1724dd59d2", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "328c607150ff", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "5e33b465d8d5", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "93d623d9979c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: 1334cb4c6b68\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_reverse\n owner: iuc\n revisions: 0f1724dd59d2\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 328c607150ff\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 5e33b465d8d5\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 93d623d9979c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + } + ], + "dir": "topics/microbiome/tutorials/nanopore-16S-metagenomics", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence contamination filtering", + "Validation", + "Sequence composition calculation", + "Taxonomic classification", + "Statistical calculation" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/nanopore-16S-metagenomics", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We learned to use MinION Nanopore data for analyzing the health status of the soil", + "We preprocessed Nanopore sequences in order to improve their quality" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Use Nanopore data for studying soil metagenomics", + "Analyze and preprocess Nanopore reads", + "Use Kraken2 to assign a taxonomic labels" + ], + "pageviews": 3314, + "pub_date": "2020-11-24", + "questions": [ + "How can we analyse the health status of the soil?", + "How do plants modify the composition of microbial communities?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/nanopore-16S-metagenomics/tutorial", + "/short/microbiome/nanopore-16S-metagenomics", + "/short/T00207", + "/short/T00392" + ], + "short_id": "T00392", + "short_tools": [ + "fastp", + "multiqc", + "taxonomy_krona_chart", + "fastqc", + "kraken2", + "tp_replace_in_line", + "Remove beginning1", + "datamash_reverse", + "porechop" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "nanopore", + "microgalaxy", + "plants" + ], + "time_estimation": "2H", + "title": "16S Microbial analysis with Nanopore data", + "tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_reverse/datamash_reverse/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.0.8_beta+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.3" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "nanopore-16S-metagenomics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 168, + "visitors": 2344, + "workflows": [ + { + "creators": [], + "description": "16S rRNA analysis with Nanopore reads", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 1[label=\"FastQC\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Porechop\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"MultiQC\"]\n 1 -> 3 [label=\"text_file\"]\n 4[label=\"fastp\"]\n 2 -> 4 [label=\"outfile\"]\n 5[label=\"FastQC\"]\n 4 -> 5 [label=\"out1\"]\n 6[label=\"Kraken2\"]\n 4 -> 6 [label=\"out1\"]\n 7[label=\"MultiQC\"]\n 5 -> 7 [label=\"text_file\"]\n 8[label=\"Reverse\"]\n 6 -> 8 [label=\"report_output\"]\n 9[label=\"Replace Text\"]\n 8 -> 9 [label=\"out_file\"]\n 10[label=\"Remove beginning\"]\n 9 -> 10 [label=\"outfile\"]\n 11[label=\"Krona pie chart\"]\n 10 -> 11 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "18fc8b44-c752-41a0-a17c-e03797a5fab1", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"FastQC\"];\n 0 -->|output| 1;\n 2[\"Porechop\"];\n 0 -->|output| 2;\n 3[\"MultiQC\"];\n 1 -->|text_file| 3;\n 4[\"fastp\"];\n 2 -->|outfile| 4;\n 5[\"FastQC\"];\n 4 -->|out1| 5;\n 6[\"Kraken2\"];\n 4 -->|out1| 6;\n 7[\"MultiQC\"];\n 5 -->|text_file| 7;\n 8[\"Reverse\"];\n 6 -->|report_output| 8;\n 9[\"Replace Text\"];\n 8 -->|out_file| 9;\n 10[\"Remove beginning\"];\n 9 -->|outfile| 10;\n 11[\"Krona pie chart\"];\n 10 -->|out_file1| 11;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Training: 16S rRNA Analysis with Nanopore Sequencing Reads", + "outputs": [], + "parent_id": "microbiome/nanopore-16S-metagenomics", + "path": "topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Training: 16S rRNA Analysis with Nanopore Sequencing Reads", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-nanopore-16S-metagenomics/versions/main-workflow", + "tutorial_id": "nanopore-16S-metagenomics", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.html", + "version": 1, + "wfid": "microbiome-nanopore-16S-metagenomics", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_reverse/datamash_reverse/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.0.8_beta+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.3" + ], + "workflowhub_id": "1064" + } + ], + "zenodo_link": "https://zenodo.org/record/4274812" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "krakentools_kreport2krona", + "owner": "iuc", + "revisions": "88d274322340", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "543cbeef3949", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: krakentools_kreport2krona\n owner: iuc\n revisions: 88d274322340\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 543cbeef3949\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/beer-data-analysis/tutorial.json", + "contributions": { + "authorship": [ + "plushz", + "chensy96", + "bebatut", + "teresa-m" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "id": "plushz", + "joined": "2022-03", + "name": "Polina Polunina", + "orcid": "0000-0002-0507-4602", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/plushz/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/plushz.json" + }, + { + "id": "chensy96", + "joined": "2022-05", + "name": "Siyu Chen", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/chensy96/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/chensy96.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "teresa-m", + "joined": "2022-09", + "name": "Teresa M\u00fcller", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/teresa-m/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/teresa-m.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/microbiome/tutorials/beer-data-analysis", + "edam_ontology": [ + "topic_3174", + "topic_3697", + "topic_0637", + "topic_0080" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence contamination filtering", + "Sequence composition calculation", + "Taxonomic classification", + "Statistical calculation", + "Aggregation" + ], + "edam_topic": [ + "Metagenomics", + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/beer-data-analysis", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": 12074, + "mermaid": false + }, + "key_points": [ + "Data obtained by sequencing needs to be checked for quality and cleaned before further processing", + "Yeast species but also contamination can be identified and visualized directly from the sequences using several bioinformatics tools", + "With its graphical interface, Galaxy makes it easy to use the needed bioinformatics tools", + "Beer microbiome is not just made of yeast and can be quite complex" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Inspect metagenomics data", + "Run metagenomics tools", + "Identify yeast species contained in a sequenced beer sample using DNA", + "Visualize the microbiome community of a beer sample" + ], + "pageviews": 1743, + "pub_date": "2022-09-29", + "questions": [ + "How can yeast strains in a beer sample be identified?", + "How can we process metagenomic data sequenced using Nanopore?" + ], + "recordings": [ + { + "captioners": [ + "sophia120199" + ], + "date": "2023-05-10", + "galaxy_version": "23.01", + "length": "1H5M", + "speakers": [ + "bebatut" + ], + "youtube_id": "PJeS06yiJUM" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/beer-data-analysis/tutorial", + "/short/microbiome/beer-data-analysis", + "/short/T00200", + "/short/T00384" + ], + "short_id": "T00384", + "short_tools": [ + "fastp", + "taxonomy_krona_chart", + "fastqc", + "kraken2", + "Filter1", + "porechop", + "krakentools_kreport2krona" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "nanopore", + "beer", + "citizen science", + "metagenomics", + "microgalaxy" + ], + "time_estimation": "1H", + "title": "Identification of the micro-organisms in a beer using Nanopore sequencing", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "beer-data-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/beer-data-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/beer-data-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/beer-data-analysis/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 169, + "visitors": 1103, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-1252-9684", + "name": "Teresa M\u00fcller" + }, + { + "class": "Person", + "identifier": "0000-0002-0507-4602", + "name": "Polina Polunina" + } + ], + "description": "Identification of the micro-organisms in a beer using Nanopore sequencing", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ninput\"]\n 1[label=\"FastQC\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Porechop\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"fastp\"]\n 2 -> 3 [label=\"outfile\"]\n 4[label=\"Kraken2\"]\n 3 -> 4 [label=\"out1\"]\n k3b674912591543d1b9dfb91648083691[color=lightseagreen,label=\"Output\\nkraken_report\"]\n 4 -> k3b674912591543d1b9dfb91648083691\n 5[label=\"Filter\"]\n 4 -> 5 [label=\"report_output\"]\n 6[label=\"Filter\"]\n 4 -> 6 [label=\"report_output\"]\n 7[label=\"Krakentools: Convert kraken report file\"]\n 4 -> 7 [label=\"report_output\"]\n k08706a8c0f0f40c0a7b5995ca3b74c50[color=lightseagreen,label=\"Output\\nkrakentool_report\"]\n 7 -> k08706a8c0f0f40c0a7b5995ca3b74c50\n 8[label=\"Krona pie chart\"]\n 7 -> 8 [label=\"output\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "input" + } + ], + "label": "input", + "name": "input", + "outputs": [], + "position": { + "left": 0, + "top": 301 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"input\"}", + "tool_version": null, + "type": "data_input", + "uuid": "31e2b384-0c1d-42fc-9379-8fb62462bffb", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ninput\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"FastQC\"];\n 0 -->|output| 1;\n 2[\"Porechop\"];\n 0 -->|output| 2;\n 3[\"fastp\"];\n 2 -->|outfile| 3;\n 4[\"Kraken2\"];\n 3 -->|out1| 4;\n 3b674912-5915-43d1-b9df-b91648083691[\"Output\\nkraken_report\"];\n 4 --> 3b674912-5915-43d1-b9df-b91648083691;\n style 3b674912-5915-43d1-b9df-b91648083691 stroke:#2c3143,stroke-width:4px;\n 5[\"Filter\"];\n 4 -->|report_output| 5;\n 6[\"Filter\"];\n 4 -->|report_output| 6;\n 7[\"Krakentools: Convert kraken report file\"];\n 4 -->|report_output| 7;\n 08706a8c-0f0f-40c0-a7b5-995ca3b74c50[\"Output\\nkrakentool_report\"];\n 7 --> 08706a8c-0f0f-40c0-a7b5-995ca3b74c50;\n style 08706a8c-0f0f-40c0-a7b5-995ca3b74c50 stroke:#2c3143,stroke-width:4px;\n 8[\"Krona pie chart\"];\n 7 -->|output| 8;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Identification of the micro-organisms in a beer using Nanopore sequencing", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "single_paired|input_sequences": { + "id": 3, + "output_name": "out1" + } + }, + "inputs": [], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 840, + "top": 349 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e674066930b2", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"confidence\": \"0.0\", \"kraken2_database\": \"2022-09-04T165121Z_standard_prebuilt_pluspf_2022-06-07\", \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"no\", \"__current_case__\": 2, \"input_sequences\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "b0030c6f-df98-4ab9-a019-2b96fbad69e7", + "when": null, + "workflow_outputs": [ + { + "label": "kraken_report", + "output_name": "report_output", + "uuid": "3b674912-5915-43d1-b9df-b91648083691" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "report": { + "id": 4, + "output_name": "report_output" + } + }, + "inputs": [], + "label": null, + "name": "Krakentools: Convert kraken report file", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1120, + "top": 517 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "88d274322340", + "name": "krakentools_kreport2krona", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"intermediate_ranks\": false, \"report\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2+galaxy0", + "type": "tool", + "uuid": "9c2946a8-b768-4ba1-879d-e96f1a2eda51", + "when": null, + "workflow_outputs": [ + { + "label": "krakentool_report", + "output_name": "output", + "uuid": "08706a8c-0f0f-40c0-a7b5-995ca3b74c50" + } + ] + } + ], + "parent_id": "microbiome/beer-data-analysis", + "path": "topics/microbiome/tutorials/beer-data-analysis/workflows/main_workflow.ga", + "tags": [ + "Microbiome" + ], + "test_results": null, + "tests": true, + "title": "Identification of the micro-organisms in a beer using Nanopore sequencing", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-beer-data-analysis/versions/main-workflow", + "tutorial_id": "beer-data-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/beer-data-analysis/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/beer-data-analysis/workflows/main_workflow.html", + "version": 1, + "wfid": "microbiome-beer-data-analysis", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/krakentools_kreport2krona/krakentools_kreport2krona/1.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.4+galaxy0" + ], + "workflowhub_id": "1097" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.7093173" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "combine_metaphlan2_humann2", + "owner": "bebatut", + "revisions": "fdfb35745104", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_paired_end_interlacer", + "owner": "devteam", + "revisions": "2ccb8dcabddc", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "export2graphlan", + "owner": "iuc", + "revisions": "635c90a27692", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "graphlan", + "owner": "iuc", + "revisions": "8f62f666dcb6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "graphlan_annotate", + "owner": "iuc", + "revisions": "5d6f8f0bef7c", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann", + "owner": "iuc", + "revisions": "95bf7479d53c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_regroup_table", + "owner": "iuc", + "revisions": "79706f10d680", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_rename_table", + "owner": "iuc", + "revisions": "172920f67a84", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_renorm_table", + "owner": "iuc", + "revisions": "d7e9a3c41657", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_split_stratified_table", + "owner": "iuc", + "revisions": "64bc7acc22a9", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_unpack_pathways", + "owner": "iuc", + "revisions": "080ea153677c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan", + "owner": "iuc", + "revisions": "ec368db926f4", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "135b80fb1ac2", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sortmerna", + "owner": "rnateam", + "revisions": "eb35257d2e29", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: combine_metaphlan2_humann2\n owner: bebatut\n revisions: fdfb35745104\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_paired_end_interlacer\n owner: devteam\n revisions: 2ccb8dcabddc\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: export2graphlan\n owner: iuc\n revisions: 635c90a27692\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: graphlan\n owner: iuc\n revisions: 8f62f666dcb6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: graphlan_annotate\n owner: iuc\n revisions: 5d6f8f0bef7c\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann\n owner: iuc\n revisions: 95bf7479d53c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_regroup_table\n owner: iuc\n revisions: 79706f10d680\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_rename_table\n owner: iuc\n revisions: 172920f67a84\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_renorm_table\n owner: iuc\n revisions: d7e9a3c41657\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_split_stratified_table\n owner: iuc\n revisions: 64bc7acc22a9\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_unpack_pathways\n owner: iuc\n revisions: '080ea153677c'\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan\n owner: iuc\n revisions: ec368db926f4\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 135b80fb1ac2\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sortmerna\n owner: rnateam\n revisions: eb35257d2e29\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics/tutorial.json", + "contributors": [ + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "rsajulga@umn.edu", + "id": "jraysajulga", + "joined": "2018-11", + "name": "Ray Sajulga", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jraysajulga/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jraysajulga.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "email": "leith023@umn.edu", + "id": "emmaleith", + "joined": "2019-07", + "name": "Emma Leith", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emmaleith/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emmaleith.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "engynasr94@gmail.com", + "id": "EngyNasr", + "joined": "2021-05", + "matrix": "EngyNasr:matrix.org", + "name": "Engy Nasr", + "orcid": "0000-0001-9047-4215", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/EngyNasr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/EngyNasr.json" + } + ], + "dir": "topics/microbiome/tutorials/metatranscriptomics", + "edam_ontology": [ + "topic_3941", + "topic_3697", + "topic_0637", + "topic_1775", + "topic_0080" + ], + "edam_operation": [ + "Visualisation", + "Primer removal", + "Sequencing quality control", + "Sequence similarity search", + "Phylogenetic analysis", + "Taxonomic classification", + "Nucleic acid sequence analysis", + "Sequence composition calculation", + "Phylogenetic inference", + "Validation", + "Sequence trimming", + "Conversion", + "Statistical calculation", + "Species frequency estimation", + "Phylogenetic tree editing", + "Sequence comparison", + "Phylogenetic tree analysis", + "Sequence alignment analysis", + "Read pre-processing", + "Phylogenetic tree visualisation" + ], + "edam_topic": [ + "Metatranscriptomics", + "Microbial ecology", + "Taxonomy", + "Function analysis", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/metatranscriptomics", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Metatranscriptomics data have the same QC profile that RNA-seq data", + "A lot of metatranscriptomics sequences are identified as rRNA sequences", + "With shotgun data, we can extract information about the studied community structure and also the functions realised by the community", + "Metatranscriptomics data analyses are complex and must be careful done, specially when they are done without combination to metagenomics data analyses" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Choose the best approach to analyze metatranscriptomics data", + "Understand the functional microbiome characterization using metatranscriptomic results", + "Understand where metatranscriptomics fits in 'multi-omic' analysis of microbiomes", + "Visualise a community structure" + ], + "pageviews": 5729924, + "pub_date": "2019-11-21", + "questions": [ + "How to analyze metatranscriptomics data?", + "What information can be extracted of metatranscriptomics data?", + "How to assign taxa and function to the identified sequences?" + ], + "recordings": [ + { + "captioners": [ + "paulzierep" + ], + "date": "2023-05-17", + "galaxy_version": "23.01", + "length": "1H5M", + "speakers": [ + "paulzierep" + ], + "youtube_id": "HNYop3vLpoM" + }, + { + "captioners": [ + "EngyNasr", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H30M", + "speakers": [ + "pratikdjagtap", + "timothygriffin", + "subinamehta", + "shiltemann" + ], + "youtube_id": "EMaos5u1_a8" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metatranscriptomics/tutorial", + "/short/microbiome/metatranscriptomics", + "/short/T00203", + "/short/T00388" + ], + "short_id": "T00388", + "short_tools": [ + "humann_rename_table", + "Cut1", + "graphlan_annotate", + "humann_regroup_table", + "metaphlan", + "Grep1", + "export2graphlan", + "bg_sortmerna", + "humann_split_stratified_table", + "graphlan", + "fastq_paired_end_interlacer", + "combine_metaphlan2_humann2", + "taxonomy_krona_chart", + "tp_find_and_replace", + "humann_unpack_pathways", + "cutadapt", + "humann", + "multiqc", + "fastqc", + "humann_renorm_table" + ], + "slides": true, + "slides_recordings": false, + "subtopic": "metatranscriptomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metatranscriptomics", + "microgalaxy" + ], + "time_estimation": "5H", + "title": "Metatranscriptomics analysis using microbiome RNA-seq data", + "tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metatranscriptomics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 248, + "visitors": 2066154, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nT1A_forward\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nT1A_reverse\"]\n 2[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 1: Preprocessing\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 2: Community Profile\"]\n 2 -> 3 [label=\"Cutadapt on input datasets: Read 1 Output\"]\n 2 -> 3 [label=\"Cutadapt on input datasets: Read 2 Output\"]\n 4[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 3: Functional Information\"]\n 2 -> 4 [label=\"FASTQ interlacer pairs from input datasets\"]\n 3 -> 4 [label=\"MetaPhlAn on input datasets: Predicted taxon relative abundances\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "T1A_forward" + } + ], + "label": "T1A_forward", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 9.64714688080777, + "top": 53.73730095248055 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "444b00bb-40e3-4f08-8d9c-d471b9499ba1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "T1A_reverse" + } + ], + "label": "T1A_reverse", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 181.01421258880856 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bc827ef3-0ab1-4576-9c7d-c269b49f1dbb", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nT1A_forward\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nT1A_reverse\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 1: Preprocessing\"];\n style 2 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 2: Community Profile\"];\n style 3 fill:#edd,stroke:#900,stroke-width:4px;\n 2 -->|Cutadapt on input datasets: Read 1 Output| 3;\n 2 -->|Cutadapt on input datasets: Read 2 Output| 3;\n 4[\"\ud83d\udee0\ufe0f Subworkflow\\nWorkflow 3: Functional Information\"];\n style 4 fill:#edd,stroke:#900,stroke-width:4px;\n 2 -->|FASTQ interlacer pairs from input datasets| 4;\n 3 -->|MetaPhlAn on input datasets: Predicted taxon relative abundances| 4;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Main Metatranscriptomics Analysis", + "outputs": [], + "parent_id": "microbiome/metatranscriptomics", + "path": "topics/microbiome/tutorials/metatranscriptomics/workflows/main_workflow.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Main Metatranscriptomics Analysis", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics/versions/main-workflow", + "tutorial_id": "metatranscriptomics", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics/workflows/main_workflow.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6" + ], + "workflowhub_id": "1076" + } + ], + "zenodo_link": "https://zenodo.org/record/4776250" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "combine_metaphlan2_humann2", + "owner": "bebatut", + "revisions": "fdfb35745104", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "e9005d1f3cfd", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_paired_end_interlacer", + "owner": "devteam", + "revisions": "2ccb8dcabddc", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "export2graphlan", + "owner": "iuc", + "revisions": "635c90a27692", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "graphlan", + "owner": "iuc", + "revisions": "8f62f666dcb6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "graphlan_annotate", + "owner": "iuc", + "revisions": "5d6f8f0bef7c", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann", + "owner": "iuc", + "revisions": "95bf7479d53c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_regroup_table", + "owner": "iuc", + "revisions": "79706f10d680", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_regroup_table", + "owner": "iuc", + "revisions": "31c6d107e7a5", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_rename_table", + "owner": "iuc", + "revisions": "172920f67a84", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_rename_table", + "owner": "iuc", + "revisions": "714d5a28cc5c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_renorm_table", + "owner": "iuc", + "revisions": "d7e9a3c41657", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_renorm_table", + "owner": "iuc", + "revisions": "12fb63b5f63f", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_split_stratified_table", + "owner": "iuc", + "revisions": "64bc7acc22a9", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_split_stratified_table", + "owner": "iuc", + "revisions": "6fcb8ac37a3e", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_unpack_pathways", + "owner": "iuc", + "revisions": "080ea153677c", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "humann_unpack_pathways", + "owner": "iuc", + "revisions": "5e5a999ffaa9", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaphlan", + "owner": "iuc", + "revisions": "ec368db926f4", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "135b80fb1ac2", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sortmerna", + "owner": "rnateam", + "revisions": "eb35257d2e29", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: combine_metaphlan2_humann2\n owner: bebatut\n revisions: fdfb35745104\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: e9005d1f3cfd\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_paired_end_interlacer\n owner: devteam\n revisions: 2ccb8dcabddc\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: export2graphlan\n owner: iuc\n revisions: 635c90a27692\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: graphlan\n owner: iuc\n revisions: 8f62f666dcb6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: graphlan_annotate\n owner: iuc\n revisions: 5d6f8f0bef7c\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann\n owner: iuc\n revisions: 95bf7479d53c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_regroup_table\n owner: iuc\n revisions: 79706f10d680\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_regroup_table\n owner: iuc\n revisions: 31c6d107e7a5\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_rename_table\n owner: iuc\n revisions: 172920f67a84\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_rename_table\n owner: iuc\n revisions: 714d5a28cc5c\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_renorm_table\n owner: iuc\n revisions: d7e9a3c41657\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_renorm_table\n owner: iuc\n revisions: 12fb63b5f63f\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_split_stratified_table\n owner: iuc\n revisions: 64bc7acc22a9\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_split_stratified_table\n owner: iuc\n revisions: 6fcb8ac37a3e\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_unpack_pathways\n owner: iuc\n revisions: '080ea153677c'\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: humann_unpack_pathways\n owner: iuc\n revisions: 5e5a999ffaa9\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaphlan\n owner: iuc\n revisions: ec368db926f4\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 135b80fb1ac2\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sortmerna\n owner: rnateam\n revisions: eb35257d2e29\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics-short/tutorial.json", + "contributors": [ + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "rsajulga@umn.edu", + "id": "jraysajulga", + "joined": "2018-11", + "name": "Ray Sajulga", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jraysajulga/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jraysajulga.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "email": "leith023@umn.edu", + "id": "emmaleith", + "joined": "2019-07", + "name": "Emma Leith", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emmaleith/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emmaleith.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "email": "zierep@informatik.uni-freiburg.de", + "id": "paulzierep", + "joined": "2023-02", + "name": "Paul Zierep", + "orcid": "0000-0003-2982-388X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/paulzierep/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/paulzierep.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "engynasr94@gmail.com", + "id": "EngyNasr", + "joined": "2021-05", + "matrix": "EngyNasr:matrix.org", + "name": "Engy Nasr", + "orcid": "0000-0001-9047-4215", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/EngyNasr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/EngyNasr.json" + } + ], + "dir": "topics/microbiome/tutorials/metatranscriptomics-short", + "edam_ontology": [ + "topic_3941", + "topic_3697", + "topic_0637", + "topic_1775", + "topic_0080" + ], + "edam_operation": [ + "Visualisation", + "Primer removal", + "Sequencing quality control", + "Sequence similarity search", + "Phylogenetic analysis", + "Taxonomic classification", + "Nucleic acid sequence analysis", + "Sequence composition calculation", + "Phylogenetic inference", + "Validation", + "Sequence trimming", + "Conversion", + "Statistical calculation", + "Species frequency estimation", + "Phylogenetic tree editing", + "Sequence comparison", + "Phylogenetic tree analysis", + "Sequence alignment analysis", + "Read pre-processing", + "Phylogenetic tree visualisation" + ], + "edam_topic": [ + "Metatranscriptomics", + "Microbial ecology", + "Taxonomy", + "Function analysis", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/metatranscriptomics-short", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Metatranscriptomics data have the same QC profile that RNA-seq data", + "A lot of metatranscriptomics sequences are identified as rRNA sequences", + "With shotgun data, we can extract information about the studied community structure and also the functions realised by the community", + "Metatranscriptomics data analyses are complex and must be careful done, specially when they are done without combination to metagenomics data analyses" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Choose the best approach to analyze metatranscriptomics data", + "Understand the functional microbiome characterization using metatranscriptomic results", + "Understand where metatranscriptomics fits in 'multi-omic' analysis of microbiomes", + "Visualise a community structure" + ], + "pageviews": 297, + "pub_date": "2020-02-13", + "questions": [ + "How to analyze metatranscriptomics data?\"", + "What information can be extracted of metatranscriptomics data?", + "How to assign taxa and function to the identified sequences?" + ], + "recordings": [ + { + "captioners": [ + "paulzierep" + ], + "date": "2023-05-17", + "galaxy_version": "23.01", + "length": "1H5M", + "speakers": [ + "paulzierep" + ], + "youtube_id": "HNYop3vLpoM" + }, + { + "captioners": [ + "EngyNasr", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H30M", + "speakers": [ + "pratikdjagtap", + "timothygriffin", + "subinamehta", + "shiltemann" + ], + "youtube_id": "EMaos5u1_a8" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metatranscriptomics-short/tutorial", + "/short/microbiome/metatranscriptomics-short", + "/short/T00204", + "/short/T00389" + ], + "short_id": "T00389", + "short_tools": [ + "humann_rename_table", + "Cut1", + "graphlan_annotate", + "humann_regroup_table", + "metaphlan", + "Grep1", + "export2graphlan", + "bg_sortmerna", + "humann_split_stratified_table", + "graphlan", + "fastq_paired_end_interlacer", + "combine_metaphlan2_humann2", + "taxonomy_krona_chart", + "tp_find_and_replace", + "humann_unpack_pathways", + "cutadapt", + "humann", + "multiqc", + "fastqc", + "humann_renorm_table" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metatranscriptomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metatranscriptomics", + "microgalaxy" + ], + "time_estimation": "3H", + "title": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metatranscriptomics-short", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics-short/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics-short/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metatranscriptomics-short/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 100, + "visitors": 234, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nT1A_forward\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nT1A_reverse\"]\n 2[label=\"Quality control Forward\"]\n 0 -> 2 [label=\"output\"]\n k025f27660802461eafbda716e6f81ba8[color=lightseagreen,label=\"Output\\nFastQC on input dataset(s): RawData\"]\n 2 -> k025f27660802461eafbda716e6f81ba8\n ka54ee2fd7bce439a9f1ff9ec9bf00efd[color=lightseagreen,label=\"Output\\nFastQC on input dataset(s): Webpage\"]\n 2 -> ka54ee2fd7bce439a9f1ff9ec9bf00efd\n 3[label=\"Quality control Reverse\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Cutadapt\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n k4bc7c8a4b98541ddb67fa3dfecd38a67[color=lightseagreen,label=\"Output\\nCutadapt on input dataset(s): Read 1 Output\"]\n 4 -> k4bc7c8a4b98541ddb67fa3dfecd38a67\n k36ec0bbae49a47e2b916afec9b35cc3e[color=lightseagreen,label=\"Output\\nCutadapt on input dataset(s): Read 2 Output\"]\n 4 -> k36ec0bbae49a47e2b916afec9b35cc3e\n 5[label=\"MultiQC\"]\n 2 -> 5 [label=\"text_file\"]\n 3 -> 5 [label=\"text_file\"]\n kb9ca21230ee040a0b2eccfc94fa35849[color=lightseagreen,label=\"Output\\nMultiQC on input dataset(s): Stats\"]\n 5 -> kb9ca21230ee040a0b2eccfc94fa35849\n ke94ceb7a0d6b41c8b79d035b315e0a06[color=lightseagreen,label=\"Output\\nMultiQC on input dataset(s): Webpage\"]\n 5 -> ke94ceb7a0d6b41c8b79d035b315e0a06\n 6[label=\"rRNA/rDNA selection\"]\n 4 -> 6 [label=\"out1\"]\n 4 -> 6 [label=\"out2\"]\n 7[label=\"FASTQ interlacer\"]\n 6 -> 7 [label=\"unaligned_forward\"]\n 6 -> 7 [label=\"unaligned_reverse\"]\n kb060eebccd14486e806eaae983bdf52d[color=lightseagreen,label=\"Output\\nFASTQ interlacer singles from input dataset(s)\"]\n 7 -> kb060eebccd14486e806eaae983bdf52d\n k70b738db54514eaa91c0eb445be297fb[color=lightseagreen,label=\"Output\\nFASTQ interlacer pairs from input dataset(s)\"]\n 7 -> k70b738db54514eaa91c0eb445be297fb\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "T1A_forward" + } + ], + "label": "T1A_forward", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1, + "top": 474 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4ce879d0-6fe8-4196-a077-d78a86611143", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "T1A_reverse" + } + ], + "label": "T1A_reverse", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 665 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "501780ae-a039-4647-95a7-06d1a81424df", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nT1A_forward\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nT1A_reverse\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Quality control Forward\"];\n 0 -->|output| 2;\n 025f2766-0802-461e-afbd-a716e6f81ba8[\"Output\\nFastQC on input dataset(s): RawData\"];\n 2 --> 025f2766-0802-461e-afbd-a716e6f81ba8;\n style 025f2766-0802-461e-afbd-a716e6f81ba8 stroke:#2c3143,stroke-width:4px;\n a54ee2fd-7bce-439a-9f1f-f9ec9bf00efd[\"Output\\nFastQC on input dataset(s): Webpage\"];\n 2 --> a54ee2fd-7bce-439a-9f1f-f9ec9bf00efd;\n style a54ee2fd-7bce-439a-9f1f-f9ec9bf00efd stroke:#2c3143,stroke-width:4px;\n 3[\"Quality control Reverse\"];\n 1 -->|output| 3;\n 4[\"Cutadapt\"];\n 0 -->|output| 4;\n 1 -->|output| 4;\n 4bc7c8a4-b985-41dd-b67f-a3dfecd38a67[\"Output\\nCutadapt on input dataset(s): Read 1 Output\"];\n 4 --> 4bc7c8a4-b985-41dd-b67f-a3dfecd38a67;\n style 4bc7c8a4-b985-41dd-b67f-a3dfecd38a67 stroke:#2c3143,stroke-width:4px;\n 36ec0bba-e49a-47e2-b916-afec9b35cc3e[\"Output\\nCutadapt on input dataset(s): Read 2 Output\"];\n 4 --> 36ec0bba-e49a-47e2-b916-afec9b35cc3e;\n style 36ec0bba-e49a-47e2-b916-afec9b35cc3e stroke:#2c3143,stroke-width:4px;\n 5[\"MultiQC\"];\n 2 -->|text_file| 5;\n 3 -->|text_file| 5;\n b9ca2123-0ee0-40a0-b2ec-cfc94fa35849[\"Output\\nMultiQC on input dataset(s): Stats\"];\n 5 --> b9ca2123-0ee0-40a0-b2ec-cfc94fa35849;\n style b9ca2123-0ee0-40a0-b2ec-cfc94fa35849 stroke:#2c3143,stroke-width:4px;\n e94ceb7a-0d6b-41c8-b79d-035b315e0a06[\"Output\\nMultiQC on input dataset(s): Webpage\"];\n 5 --> e94ceb7a-0d6b-41c8-b79d-035b315e0a06;\n style e94ceb7a-0d6b-41c8-b79d-035b315e0a06 stroke:#2c3143,stroke-width:4px;\n 6[\"rRNA/rDNA selection\"];\n 4 -->|out1| 6;\n 4 -->|out2| 6;\n 7[\"FASTQ interlacer\"];\n 6 -->|unaligned_forward| 7;\n 6 -->|unaligned_reverse| 7;\n b060eebc-cd14-486e-806e-aae983bdf52d[\"Output\\nFASTQ interlacer singles from input dataset(s)\"];\n 7 --> b060eebc-cd14-486e-806e-aae983bdf52d;\n style b060eebc-cd14-486e-806e-aae983bdf52d stroke:#2c3143,stroke-width:4px;\n 70b738db-5451-4eaa-91c0-eb445be297fb[\"Output\\nFASTQ interlacer pairs from input dataset(s)\"];\n 7 --> 70b738db-5451-4eaa-91c0-eb445be297fb;\n style 70b738db-5451-4eaa-91c0-eb445be297fb stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 1: Preprocessing", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": "Quality control Forward", + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 504, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "b723af93-0025-43b3-8fa9-fc03a2c6a36b", + "when": null, + "workflow_outputs": [ + { + "label": "FastQC on input dataset(s): RawData", + "output_name": "text_file", + "uuid": "025f2766-0802-461e-afbd-a716e6f81ba8" + }, + { + "label": "FastQC on input dataset(s): Webpage", + "output_name": "html_file", + "uuid": "a54ee2fd-7bce-439a-9f1f-f9ec9bf00efd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": "Quality control Reverse", + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 501, + "top": 399 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "e74050b0-6ac5-459c-865c-c2d9fb08b48a", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "text_file", + "uuid": "f627d888-efe3-4d11-a238-62e6b338f4b3" + }, + { + "label": null, + "output_name": "html_file", + "uuid": "8b224f1f-c527-4fb7-8c0b-99e5c1c41ffa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + }, + "library|input_2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "out2", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 522, + "top": 850 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "135b80fb1ac2", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"internal\": \"\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"150\", \"maximum_length\": null, \"length_R2_options\": {\"length_R2_status\": \"False\", \"__current_case__\": 1}, \"max_n\": null, \"pair_filter\": \"any\", \"max_expected_errors\": null, \"discard_cassava\": false}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\", \"quality_cutoff2\": null}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"strip_suffix\": \"\", \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0+galaxy1", + "type": "tool", + "uuid": "5291d4e5-3926-486e-aef5-9e0979ab33a4", + "when": null, + "workflow_outputs": [ + { + "label": "Cutadapt on input dataset(s): Read 1 Output", + "output_name": "out1", + "uuid": "4bc7c8a4-b985-41dd-b67f-a3dfecd38a67" + }, + { + "label": null, + "output_name": "report", + "uuid": "f43551f2-0bf2-4692-b66a-e848095f8ec0" + }, + { + "label": "Cutadapt on input dataset(s): Read 2 Output", + "output_name": "out2", + "uuid": "36ec0bba-e49a-47e2-b916-afec9b35cc3e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "results_0|software_cond|output_0|input": [ + { + "id": 2, + "output_name": "text_file" + }, + { + "id": 3, + "output_name": "text_file" + } + ] + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 901, + "top": 88 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "f636262d-89ec-4aa2-a695-c8b092601dac", + "when": null, + "workflow_outputs": [ + { + "label": "MultiQC on input dataset(s): Stats", + "output_name": "stats", + "uuid": "b9ca2123-0ee0-40a0-b2ec-cfc94fa35849" + }, + { + "label": "MultiQC on input dataset(s): Webpage", + "output_name": "html_report", + "uuid": "e94ceb7a-0d6b-41c8-b79d-035b315e0a06" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6", + "errors": null, + "id": 6, + "input_connections": { + "sequencing_type|forward_reads": { + "id": 4, + "output_name": "out1" + }, + "sequencing_type|reverse_reads": { + "id": 4, + "output_name": "out2" + } + }, + "inputs": [], + "label": "rRNA/rDNA selection", + "name": "Filter with SortMeRNA", + "outputs": [ + { + "name": "aligned_forward", + "type": "input" + }, + { + "name": "aligned_reverse", + "type": "input" + }, + { + "name": "unaligned_forward", + "type": "input" + }, + { + "name": "unaligned_reverse", + "type": "input" + }, + { + "name": "output_bam", + "type": "bam" + }, + { + "name": "output_log", + "type": "txt" + } + ], + "position": { + "left": 808, + "top": 1057 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6", + "tool_shed_repository": { + "changeset_revision": "eb35257d2e29", + "name": "sortmerna", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"aligned_fastx\": {\"aligned_fastx_selector\": \"--fastx\", \"__current_case__\": 0, \"other\": true}, \"ambiguous_letter\": \"-3\", \"databases_type\": {\"databases_selector\": \"cached\", \"__current_case__\": 0, \"input_databases\": [\"2.1b-rfam-5s-database-id98\", \"2.1b-silva-arc-23s-id98\", \"2.1b-silva-euk-28s-id98\", \"2.1b-silva-bac-23s-id98\", \"2.1b-silva-euk-18s-id95\", \"2.1b-silva-bac-16s-id90\", \"2.1b-rfam-5.8s-database-id98\", \"2.1b-silva-arc-16s-id95\"]}, \"e_value\": \"1.0\", \"gap_ext\": \"2\", \"gap_open\": \"5\", \"log\": true, \"match\": \"2\", \"mismatch\": \"-3\", \"report\": {\"report_type\": \"best\", \"__current_case__\": 1, \"print_all_reads\": false, \"blast\": {\"blast_output\": \"False\", \"__current_case__\": 1}, \"otu\": {\"otu_map\": \"False\", \"__current_case__\": 1}, \"report_best\": {\"report_best_type\": \"1\", \"__current_case__\": 0, \"report_best_min_lis\": \"2\"}}, \"sequencing_type\": {\"sequencing_type_selector\": \"paired\", \"__current_case__\": 1, \"forward_reads\": {\"__class__\": \"ConnectedValue\"}, \"reverse_reads\": {\"__class__\": \"ConnectedValue\"}, \"paired_type\": \"--paired_out\"}, \"strand_search\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1b.6", + "type": "tool", + "uuid": "333dbf81-e89b-4d3d-8b71-fe21d77bac81", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "aligned_reverse", + "uuid": "8f821f92-e340-465c-a090-70bcd17830ae" + }, + { + "label": null, + "output_name": "output_log", + "uuid": "356cc89a-eb96-4726-8554-8771476545e7" + }, + { + "label": null, + "output_name": "aligned_forward", + "uuid": "05ee908b-9343-4265-ba80-a302e305d784" + }, + { + "label": null, + "output_name": "unaligned_reverse", + "uuid": "97a460fa-c745-4386-b1e2-69c423ebacdf" + }, + { + "label": null, + "output_name": "output_bam", + "uuid": "2da24572-b164-45d1-82bb-bce013217121" + }, + { + "label": null, + "output_name": "unaligned_forward", + "uuid": "36e17749-00e7-4362-bf41-8b1a5b1f34d1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "reads|input1_file": { + "id": 6, + "output_name": "unaligned_forward" + }, + "reads|input2_file": { + "id": 6, + "output_name": "unaligned_reverse" + } + }, + "inputs": [], + "label": null, + "name": "FASTQ interlacer", + "outputs": [ + { + "name": "outfile_pairs", + "type": "input" + }, + { + "name": "outfile_singles", + "type": "input" + } + ], + "position": { + "left": 1154, + "top": 1088 + }, + "post_job_actions": { + "RenameDatasetActionoutfile_pairs": { + "action_arguments": { + "newname": "Interlaced non rRNA reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile_pairs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2ccb8dcabddc", + "name": "fastq_paired_end_interlacer", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"reads\": {\"reads_selector\": \"paired\", \"__current_case__\": 0, \"input1_file\": {\"__class__\": \"ConnectedValue\"}, \"input2_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0.1+galaxy0", + "type": "tool", + "uuid": "bd047f16-cbae-46f7-b35a-5de5abed2557", + "when": null, + "workflow_outputs": [ + { + "label": "FASTQ interlacer singles from input dataset(s)", + "output_name": "outfile_singles", + "uuid": "b060eebc-cd14-486e-806e-aae983bdf52d" + }, + { + "label": "FASTQ interlacer pairs from input dataset(s)", + "output_name": "outfile_pairs", + "uuid": "70b738db-5451-4eaa-91c0-eb445be297fb" + } + ] + } + ], + "parent_id": "microbiome/metatranscriptomics-short", + "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow1_preprocessing.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Workflow 1: Preprocessing", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow1-preprocessing", + "tutorial_id": "metatranscriptomics-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow1_preprocessing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow1_preprocessing.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics-short", + "wfname": "workflow1-preprocessing", + "workflow": "workflow1_preprocessing.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_paired_end_interlacer/fastq_paired_end_interlacer/1.2.0.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/sortmerna/bg_sortmerna/2.1b.6" + ], + "workflowhub_id": "1092" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQC controlled forward reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQC controlled reverse reads\"]\n 2[label=\"Taxonomic assignation\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n kb3e3198d394e4aebba6c9e73bfe8d049[color=lightseagreen,label=\"Output\\nMetaPhlAn on input dataset(s): SAM file\"]\n 2 -> kb3e3198d394e4aebba6c9e73bfe8d049\n ka4ecdc94d012413fa9cb6f3e9ee70d5b[color=lightseagreen,label=\"Output\\nMetaPhlAn on input dataset(s): Predicted taxon relative abundances\"]\n 2 -> ka4ecdc94d012413fa9cb6f3e9ee70d5b\n k30a9e6928d3145bd924681ddead3ba03[color=lightseagreen,label=\"Output\\nMetaPhlAn on input dataset(s): Bowtie2 output\"]\n 2 -> k30a9e6928d3145bd924681ddead3ba03\n k2465a9aba28e4c58b647b6792f77ddf2[color=lightseagreen,label=\"Output\\nMetaPhlAn on input dataset(s): BIOM file\"]\n 2 -> k2465a9aba28e4c58b647b6792f77ddf2\n 3[label=\"Cut\"]\n 2 -> 3 [label=\"output_file\"]\n 4[label=\"Krona pie chart\"]\n 2 -> 4 [label=\"krona_output_file\"]\n 5[label=\"Export to GraPhlAn\"]\n 3 -> 5 [label=\"out_file1\"]\n kf578de2e6edd4ee09bc49371d6fd957f[color=lightseagreen,label=\"Output\\nExport to GraPhlAn on input dataset(s): Annotation\"]\n 5 -> kf578de2e6edd4ee09bc49371d6fd957f\n k4e9cfae0ee7b434784db5a3e24688e50[color=lightseagreen,label=\"Output\\nExport to GraPhlAn on input dataset(s): Tree\"]\n 5 -> k4e9cfae0ee7b434784db5a3e24688e50\n 6[label=\"Generation, personalization and annotation of tree\"]\n 5 -> 6 [label=\"annotation\"]\n 5 -> 6 [label=\"tree\"]\n kedf4ecafdddd43a3ba4ad683671c1815[color=lightseagreen,label=\"Output\\nGeneration, personalization and annotation of tree on input dataset(s): Tree in PhyloXML\"]\n 6 -> kedf4ecafdddd43a3ba4ad683671c1815\n 7[label=\"Visualisation GraPhlAn\"]\n 6 -> 7 [label=\"output_tree\"]\n kb304fe87de7e48d287749c52d2395fa4[color=lightseagreen,label=\"Output\\nGraPhlAn on input dataset(s): PNG\"]\n 7 -> kb304fe87de7e48d287749c52d2395fa4\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "QC controlled forward reads" + } + ], + "label": "QC controlled forward reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 5, + "top": 63 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "407548c9-2a03-4506-9c52-d3b23ba6b387", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "QC controlled reverse reads" + } + ], + "label": "QC controlled reverse reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 211 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7e11c30c-4a90-45ac-88ce-733500df37b7", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQC controlled forward reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nQC controlled reverse reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Taxonomic assignation\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n b3e3198d-394e-4aeb-ba6c-9e73bfe8d049[\"Output\\nMetaPhlAn on input dataset(s): SAM file\"];\n 2 --> b3e3198d-394e-4aeb-ba6c-9e73bfe8d049;\n style b3e3198d-394e-4aeb-ba6c-9e73bfe8d049 stroke:#2c3143,stroke-width:4px;\n a4ecdc94-d012-413f-a9cb-6f3e9ee70d5b[\"Output\\nMetaPhlAn on input dataset(s): Predicted taxon relative abundances\"];\n 2 --> a4ecdc94-d012-413f-a9cb-6f3e9ee70d5b;\n style a4ecdc94-d012-413f-a9cb-6f3e9ee70d5b stroke:#2c3143,stroke-width:4px;\n 30a9e692-8d31-45bd-9246-81ddead3ba03[\"Output\\nMetaPhlAn on input dataset(s): Bowtie2 output\"];\n 2 --> 30a9e692-8d31-45bd-9246-81ddead3ba03;\n style 30a9e692-8d31-45bd-9246-81ddead3ba03 stroke:#2c3143,stroke-width:4px;\n 2465a9ab-a28e-4c58-b647-b6792f77ddf2[\"Output\\nMetaPhlAn on input dataset(s): BIOM file\"];\n 2 --> 2465a9ab-a28e-4c58-b647-b6792f77ddf2;\n style 2465a9ab-a28e-4c58-b647-b6792f77ddf2 stroke:#2c3143,stroke-width:4px;\n 3[\"Cut\"];\n 2 -->|output_file| 3;\n 4[\"Krona pie chart\"];\n 2 -->|krona_output_file| 4;\n 5[\"Export to GraPhlAn\"];\n 3 -->|out_file1| 5;\n f578de2e-6edd-4ee0-9bc4-9371d6fd957f[\"Output\\nExport to GraPhlAn on input dataset(s): Annotation\"];\n 5 --> f578de2e-6edd-4ee0-9bc4-9371d6fd957f;\n style f578de2e-6edd-4ee0-9bc4-9371d6fd957f stroke:#2c3143,stroke-width:4px;\n 4e9cfae0-ee7b-4347-84db-5a3e24688e50[\"Output\\nExport to GraPhlAn on input dataset(s): Tree\"];\n 5 --> 4e9cfae0-ee7b-4347-84db-5a3e24688e50;\n style 4e9cfae0-ee7b-4347-84db-5a3e24688e50 stroke:#2c3143,stroke-width:4px;\n 6[\"Generation, personalization and annotation of tree\"];\n 5 -->|annotation| 6;\n 5 -->|tree| 6;\n edf4ecaf-dddd-43a3-ba4a-d683671c1815[\"Output\\nGeneration, personalization and annotation of tree on input dataset(s): Tree in PhyloXML\"];\n 6 --> edf4ecaf-dddd-43a3-ba4a-d683671c1815;\n style edf4ecaf-dddd-43a3-ba4a-d683671c1815 stroke:#2c3143,stroke-width:4px;\n 7[\"Visualisation GraPhlAn\"];\n 6 -->|output_tree| 7;\n b304fe87-de7e-48d2-8774-9c52d2395fa4[\"Output\\nGraPhlAn on input dataset(s): PNG\"];\n 7 --> b304fe87-de7e-48d2-8774-9c52d2395fa4;\n style b304fe87-de7e-48d2-8774-9c52d2395fa4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 2: Community Profile", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "inputs|in|raw_in|in_f": { + "id": 0, + "output_name": "output" + }, + "inputs|in|raw_in|in_r": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MetaPhlAn", + "name": "analysis" + } + ], + "label": "Taxonomic assignation", + "name": "MetaPhlAn", + "outputs": [ + { + "name": "levels", + "type": "input" + }, + { + "name": "output_file", + "type": "tabular" + }, + { + "name": "bowtie2out", + "type": "tabular" + }, + { + "name": "sam_output_file", + "type": "sam" + }, + { + "name": "biom_output_file", + "type": "biom1" + }, + { + "name": "krona_output_file", + "type": "tabular" + } + ], + "position": { + "left": 387.5, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "Predicted taxon relative abundances" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ec368db926f4", + "name": "metaphlan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis\": {\"analysis_type\": {\"t\": \"rel_ab\", \"__current_case__\": 0, \"tax_lev\": {\"tax_lev\": \"a\", \"__current_case__\": 0, \"split_levels\": true}}, \"min_cu_len\": \"2000\", \"min_alignment_len\": null, \"organism_profiling\": [\"add_viruses\"], \"stat\": \"tavg_g\", \"stat_q\": \"0.1\", \"perc_nonzero\": \"0.33\", \"ignore_markers\": {\"__class__\": \"RuntimeValue\"}, \"avoid_disqm\": true}, \"inputs\": {\"in\": {\"selector\": \"raw\", \"__current_case__\": 0, \"raw_in\": {\"selector\": \"paired\", \"__current_case__\": 2, \"in_f\": {\"__class__\": \"ConnectedValue\"}, \"in_r\": {\"__class__\": \"ConnectedValue\"}}, \"read_min_len\": \"70\", \"mapping\": {\"bt2_ps\": \"very-sensitive\", \"min_mapq_val\": \"5\"}}, \"db\": {\"db_selector\": \"cached\", \"__current_case__\": 0, \"cached_db\": \"mpa_vOct22_CHOCOPhlAnSGB_202212-03042023\"}}, \"out\": {\"sample_id_key\": \"SampleID\", \"sample_id\": \"Metaphlan_Analysis\", \"use_group_representative\": false, \"legacy_output\": false, \"CAMI_format_output\": false, \"unknown_estimation\": false, \"krona_output\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0.6+galaxy0", + "type": "tool", + "uuid": "5caa0913-1101-438f-9518-2545f65ac97c", + "when": null, + "workflow_outputs": [ + { + "label": "MetaPhlAn on input dataset(s): SAM file", + "output_name": "sam_output_file", + "uuid": "b3e3198d-394e-4aeb-ba6c-9e73bfe8d049" + }, + { + "label": null, + "output_name": "levels", + "uuid": "f3a53d7d-e490-4ccc-b2c9-5e99f64b5549" + }, + { + "label": "MetaPhlAn on input dataset(s): Predicted taxon relative abundances", + "output_name": "output_file", + "uuid": "a4ecdc94-d012-413f-a9cb-6f3e9ee70d5b" + }, + { + "label": "MetaPhlAn on input dataset(s): Bowtie2 output", + "output_name": "bowtie2out", + "uuid": "30a9e692-8d31-45bd-9246-81ddead3ba03" + }, + { + "label": "MetaPhlAn on input dataset(s): BIOM file", + "output_name": "biom_output_file", + "uuid": "2465a9ab-a28e-4c58-b647-b6792f77ddf2" + }, + { + "label": null, + "output_name": "krona_output_file", + "uuid": "d9ad878c-ead2-41ad-bf97-9c0f8af8ffa1" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "output_file" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 717.5, + "top": 87 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "b0e7430d-2fe2-478e-923c-02411da12129", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9115fd31-180f-4684-868e-79fbd13f56a2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "type_of_data|input": { + "id": 2, + "output_name": "krona_output_file" + } + }, + "inputs": [], + "label": null, + "name": "Krona pie chart", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 736.4262738025006, + "top": 452.9177942463193 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e9005d1f3cfd", + "name": "taxonomy_krona_chart", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"combine_inputs\": false, \"root_name\": \"Root\", \"type_of_data\": {\"type_of_data_selector\": \"text\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.7.1+galaxy0", + "type": "tool", + "uuid": "789fe7ce-10f9-4921-9d94-bebdb2b83534", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "44538674-09ca-409d-9742-b25cedc5f613" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "lefse_input": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Export to GraPhlAn", + "outputs": [ + { + "name": "tree", + "type": "txt" + }, + { + "name": "annotation", + "type": "txt" + } + ], + "position": { + "left": 969.5, + "top": 85 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "tool_shed_repository": { + "changeset_revision": "b16989c1e3a7", + "name": "export2graphlan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"abundance_threshold\": \"20.0\", \"annotation_legend_font_size\": \"10\", \"annotations\": \"1,2\", \"background_clades\": \"\", \"background_colors\": \"\", \"background_levels\": \"1\", \"def_clade_size\": \"10\", \"def_font_size\": \"10\", \"external_annotations\": \"3,4,5\", \"fname_row\": \"0\", \"fperc\": null, \"ftop\": null, \"input_lefse_output\": {\"input_lefse_output_test\": \"false\", \"__current_case__\": 1}, \"least_biomarkers\": null, \"lefse_input\": {\"__class__\": \"ConnectedValue\"}, \"max_clade_size\": \"200\", \"max_font_size\": \"12\", \"metadata_rows\": null, \"min_clade_size\": \"20\", \"min_font_size\": \"8\", \"most_abundant\": null, \"skip_rows\": \"\", \"sname_row\": \"0\", \"sperc\": null, \"stop\": null, \"title\": \"\", \"title_font_size\": \"15\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20+galaxy0", + "type": "tool", + "uuid": "e4d6b95a-247e-4120-95da-048861f03144", + "when": null, + "workflow_outputs": [ + { + "label": "Export to GraPhlAn on input dataset(s): Annotation", + "output_name": "annotation", + "uuid": "f578de2e-6edd-4ee0-9bc4-9371d6fd957f" + }, + { + "label": "Export to GraPhlAn on input dataset(s): Tree", + "output_name": "tree", + "uuid": "4e9cfae0-ee7b-4347-84db-5a3e24688e50" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "errors": null, + "id": 6, + "input_connections": { + "annot": { + "id": 5, + "output_name": "annotation" + }, + "input_tree": { + "id": 5, + "output_name": "tree" + } + }, + "inputs": [], + "label": null, + "name": "Generation, personalization and annotation of tree", + "outputs": [ + { + "name": "output_tree", + "type": "phyloxml" + } + ], + "position": { + "left": 1250.5, + "top": 68.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "tool_shed_repository": { + "changeset_revision": "5d6f8f0bef7c", + "name": "graphlan_annotate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annot\": {\"__class__\": \"ConnectedValue\"}, \"input_tree\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0.0", + "type": "tool", + "uuid": "ed883281-12a8-40fb-94ac-52479af3cef0", + "when": null, + "workflow_outputs": [ + { + "label": "Generation, personalization and annotation of tree on input dataset(s): Tree in PhyloXML", + "output_name": "output_tree", + "uuid": "edf4ecaf-dddd-43a3-ba4a-d683671c1815" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "errors": null, + "id": 7, + "input_connections": { + "input_tree": { + "id": 6, + "output_name": "output_tree" + } + }, + "inputs": [], + "label": "Visualisation (GraPhlAn)", + "name": "GraPhlAn", + "outputs": [ + { + "name": "png_output_image", + "type": "png" + } + ], + "position": { + "left": 1560.5, + "top": 82 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "tool_shed_repository": { + "changeset_revision": "8f62f666dcb6", + "name": "graphlan", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"image_format\": {\"format\": \"png\", \"__current_case__\": 0, \"dpi\": null}, \"input_tree\": {\"__class__\": \"ConnectedValue\"}, \"pad\": null, \"size\": \"7\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0.0", + "type": "tool", + "uuid": "63b74ae1-d15b-4230-a5e2-d1a9395253d1", + "when": null, + "workflow_outputs": [ + { + "label": "GraPhlAn on input dataset(s): PNG", + "output_name": "png_output_image", + "uuid": "b304fe87-de7e-48d2-8774-9c52d2395fa4" + } + ] + } + ], + "parent_id": "microbiome/metatranscriptomics-short", + "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow2_community_profile.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Workflow 2: Community Profile", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow2-community-profile", + "tutorial_id": "metatranscriptomics-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow2_community_profile.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow2_community_profile.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics-short", + "wfname": "workflow2-community-profile", + "workflow": "workflow2_community_profile.ga", + "workflow_tools": [ + "Cut1", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/export2graphlan/export2graphlan/0.20+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan/graphlan/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/graphlan_annotate/graphlan_annotate/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/metaphlan/metaphlan/4.0.6+galaxy0" + ], + "workflowhub_id": "1088" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInterlaced non-rRNA reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPredicted taxon relative abundances\"]\n 2[label=\"Cut\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Metabolic assignation\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n k657973036f124ae895111af40f52e71d[color=lightseagreen,label=\"Output\\nHUMAnN on input dataset(s): Pathways and their abundance\"]\n 3 -> k657973036f124ae895111af40f52e71d\n k5cae6935448b4af9ad787b17490e4d4a[color=lightseagreen,label=\"Output\\nHUMAnN on input dataset(s): Pathways and their coverage\"]\n 3 -> k5cae6935448b4af9ad787b17490e4d4a\n k60492d727b3c45c9b32bb6374ab08228[color=lightseagreen,label=\"Output\\nHUMAnN on input dataset(s): Log\"]\n 3 -> k60492d727b3c45c9b32bb6374ab08228\n kba124b0fcbd54b65b87a84cfa578a927[color=lightseagreen,label=\"Output\\nHUMAnN on input dataset(s): Gene families and their abundance\"]\n 3 -> kba124b0fcbd54b65b87a84cfa578a927\n 4[label=\"Renormalize\"]\n 3 -> 4 [label=\"gene_families_tsv\"]\n 5[label=\"Renormalize\"]\n 3 -> 5 [label=\"pathabundance_tsv\"]\n 6[label=\"Regroup\"]\n 3 -> 6 [label=\"gene_families_tsv\"]\n 7[label=\"Replace\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Unpack pathway abundances\"]\n 4 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"output\"]\n 9[label=\"Rename features\"]\n 6 -> 9 [label=\"output\"]\n 10[label=\"Split a HUMAnN table\"]\n 6 -> 10 [label=\"output\"]\n k1ff60d0a4a6444c08b6fbbdfa8566a0c[color=lightseagreen,label=\"Output\\nSplit a HUMAnN table on input dataset(s): Unstratified table\"]\n 10 -> k1ff60d0a4a6444c08b6fbbdfa8566a0c\n k6a65ee933a2e4a8194ff35917396bdfa[color=lightseagreen,label=\"Output\\nSplit a HUMAnN table on input dataset(s): Stratified table\"]\n 10 -> k6a65ee933a2e4a8194ff35917396bdfa\n 11[label=\"Combination of taxonomic and metabolic assignations for gene families\"]\n 7 -> 11 [label=\"outfile\"]\n 2 -> 11 [label=\"out_file1\"]\n kb34cf972ec0c4eccab77bd0e61d8a0e2[color=lightseagreen,label=\"Output\\nCombine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances\"]\n 11 -> kb34cf972ec0c4eccab77bd0e61d8a0e2\n 12[label=\"Select\"]\n 9 -> 12 [label=\"output\"]\n 13[label=\"Select\"]\n 9 -> 13 [label=\"output\"]\n 14[label=\"Select\"]\n 9 -> 14 [label=\"output\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Interlaced non-rRNA reads" + } + ], + "label": "Interlaced non-rRNA reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 5, + "top": 301.73693839706976 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "83de522c-0d83-4c82-80ad-b5f4b3a89820", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Predicted taxon relative abundances" + } + ], + "label": "Predicted taxon relative abundances", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 486.73693839706976 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f9ea6130-3138-4ad7-a1eb-596de725849a", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInterlaced non-rRNA reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nPredicted taxon relative abundances\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Cut\"];\n 1 -->|output| 2;\n 3[\"Metabolic assignation\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 65797303-6f12-4ae8-9511-1af40f52e71d[\"Output\\nHUMAnN on input dataset(s): Pathways and their abundance\"];\n 3 --> 65797303-6f12-4ae8-9511-1af40f52e71d;\n style 65797303-6f12-4ae8-9511-1af40f52e71d stroke:#2c3143,stroke-width:4px;\n 5cae6935-448b-4af9-ad78-7b17490e4d4a[\"Output\\nHUMAnN on input dataset(s): Pathways and their coverage\"];\n 3 --> 5cae6935-448b-4af9-ad78-7b17490e4d4a;\n style 5cae6935-448b-4af9-ad78-7b17490e4d4a stroke:#2c3143,stroke-width:4px;\n 60492d72-7b3c-45c9-b32b-b6374ab08228[\"Output\\nHUMAnN on input dataset(s): Log\"];\n 3 --> 60492d72-7b3c-45c9-b32b-b6374ab08228;\n style 60492d72-7b3c-45c9-b32b-b6374ab08228 stroke:#2c3143,stroke-width:4px;\n ba124b0f-cbd5-4b65-b87a-84cfa578a927[\"Output\\nHUMAnN on input dataset(s): Gene families and their abundance\"];\n 3 --> ba124b0f-cbd5-4b65-b87a-84cfa578a927;\n style ba124b0f-cbd5-4b65-b87a-84cfa578a927 stroke:#2c3143,stroke-width:4px;\n 4[\"Renormalize\"];\n 3 -->|gene_families_tsv| 4;\n 5[\"Renormalize\"];\n 3 -->|pathabundance_tsv| 5;\n 6[\"Regroup\"];\n 3 -->|gene_families_tsv| 6;\n 7[\"Replace\"];\n 4 -->|output| 7;\n 8[\"Unpack pathway abundances\"];\n 4 -->|output| 8;\n 5 -->|output| 8;\n 9[\"Rename features\"];\n 6 -->|output| 9;\n 10[\"Split a HUMAnN table\"];\n 6 -->|output| 10;\n 1ff60d0a-4a64-44c0-8b6f-bbdfa8566a0c[\"Output\\nSplit a HUMAnN table on input dataset(s): Unstratified table\"];\n 10 --> 1ff60d0a-4a64-44c0-8b6f-bbdfa8566a0c;\n style 1ff60d0a-4a64-44c0-8b6f-bbdfa8566a0c stroke:#2c3143,stroke-width:4px;\n 6a65ee93-3a2e-4a81-94ff-35917396bdfa[\"Output\\nSplit a HUMAnN table on input dataset(s): Stratified table\"];\n 10 --> 6a65ee93-3a2e-4a81-94ff-35917396bdfa;\n style 6a65ee93-3a2e-4a81-94ff-35917396bdfa stroke:#2c3143,stroke-width:4px;\n 11[\"Combination of taxonomic and metabolic assignations for gene families\"];\n 7 -->|outfile| 11;\n 2 -->|out_file1| 11;\n b34cf972-ec0c-4ecc-ab77-bd0e61d8a0e2[\"Output\\nCombine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances\"];\n 11 --> b34cf972-ec0c-4ecc-ab77-bd0e61d8a0e2;\n style b34cf972-ec0c-4ecc-ab77-bd0e61d8a0e2 stroke:#2c3143,stroke-width:4px;\n 12[\"Select\"];\n 9 -->|output| 12;\n 13[\"Select\"];\n 9 -->|output| 13;\n 14[\"Select\"];\n 9 -->|output| 14;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 3: Functional Information", + "outputs": [ + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 358.4094564615726, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c3\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "b0e7430d-2fe2-478e-923c-02411da12129", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "d5b41863-4ccc-4bfe-9461-a2c4876de6c9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "in|input": { + "id": 0, + "output_name": "output" + }, + "wf|taxonomic_profile": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool HUMAnN", + "name": "g_p_quant" + } + ], + "label": "Metabolic assignation", + "name": "HUMAnN", + "outputs": [ + { + "name": "gene_families_tsv", + "type": "tabular" + }, + { + "name": "pathcoverage_tsv", + "type": "tabular" + }, + { + "name": "pathabundance_tsv", + "type": "tabular" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 374.5, + "top": 254.23693839706976 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "95bf7479d53c", + "name": "humann", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"g_p_quant\": {\"gap_fill\": true, \"minpath\": true, \"pathways\": \"metacyc\", \"xipe\": false, \"annotation_gene_index\": \"3\", \"id_mapping\": {\"__class__\": \"RuntimeValue\"}}, \"in\": {\"selector\": \"raw\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"out\": {\"output_basename\": \"humann\", \"output_format\": \"tsv\", \"output_max_decimals\": \"10\", \"remove_column_description_output\": false, \"remove_stratified_output\": false, \"intermediate_temp\": null}, \"wf\": {\"selector\": \"bypass_taxonomic_profiling\", \"__current_case__\": 1, \"taxonomic_profile\": {\"__class__\": \"ConnectedValue\"}, \"nucleotide_search\": {\"nucleotide_db\": {\"selector\": \"cached\", \"__current_case__\": 0, \"nucleotide_database\": \"chocophlan-full-3.6.0-29032023\"}, \"nucleotide_identity_threshold\": \"0.0\", \"nucleotide_subject_coverage_threshold\": \"50.0\", \"nucleotide_query_coverage_threshold\": \"90.0\"}, \"translated_search\": {\"protein_db\": {\"selector\": \"cached\", \"__current_case__\": 0, \"protein_database\": \"uniref-uniref90_diamond-3.0.0-13052021\"}, \"evalue\": \"1.0\", \"translated_identity_threshold\": null, \"translated_subject_coverage_threshold\": \"50.0\", \"translated_query_coverage_threshold\": \"90.0\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "55c0c343-cd17-4387-ad0c-98f7296ce4d3", + "when": null, + "workflow_outputs": [ + { + "label": "HUMAnN on input dataset(s): Pathways and their abundance", + "output_name": "pathabundance_tsv", + "uuid": "65797303-6f12-4ae8-9511-1af40f52e71d" + }, + { + "label": "HUMAnN on input dataset(s): Pathways and their coverage", + "output_name": "pathcoverage_tsv", + "uuid": "5cae6935-448b-4af9-ad78-7b17490e4d4a" + }, + { + "label": "HUMAnN on input dataset(s): Log", + "output_name": "log", + "uuid": "60492d72-7b3c-45c9-b32b-b6374ab08228" + }, + { + "label": "HUMAnN on input dataset(s): Gene families and their abundance", + "output_name": "gene_families_tsv", + "uuid": "ba124b0f-cbd5-4b65-b87a-84cfa578a927" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "gene_families_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Renormalize", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 763.955523091489, + "top": 692.8004929237138 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d7e9a3c41657", + "name": "humann_renorm_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"community\", \"special\": true, \"units\": \"relab\", \"update_snames\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "5acedbf2-ba06-46e6-a523-80f8e30daf55", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "55786a00-bad5-4220-83d7-1c968e226771" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 3, + "output_name": "pathabundance_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Renormalize", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 771.5, + "top": 888.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d7e9a3c41657", + "name": "humann_renorm_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"community\", \"special\": true, \"units\": \"relab\", \"update_snames\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "d159e4db-11a0-46f6-8768-63403832b633", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "625c63c2-beb0-4748-a48c-fdd7c4a37857" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 3, + "output_name": "gene_families_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Regroup", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1229.5, + "top": 535.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "79706f10d680", + "name": "humann_regroup_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"function\": \"sum\", \"grouping\": {\"type\": \"large\", \"__current_case__\": 1, \"grouping\": \"utility_mapping-full-map_go_uniref90-3.0.0-13052021\", \"reversed\": false}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"precision\": \"3\", \"protected\": true, \"ungrouped\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "310ec6f3-dc77-4717-83e6-114fb3076487", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e29c0333-b930-4118-beca-714040fbd306" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input_genes": { + "id": 4, + "output_name": "output" + }, + "input_pathways": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Unpack pathway abundances", + "name": "gene_mapping" + }, + { + "description": "runtime parameter for tool Unpack pathway abundances", + "name": "pathway_mapping" + } + ], + "label": null, + "name": "Unpack pathway abundances", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1123.5, + "top": 853.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "080ea153677c", + "name": "humann_unpack_pathways", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gene_mapping\": {\"__class__\": \"RuntimeValue\"}, \"input_genes\": {\"__class__\": \"ConnectedValue\"}, \"input_pathways\": {\"__class__\": \"ConnectedValue\"}, \"pathway_mapping\": {\"__class__\": \"RuntimeValue\"}, \"remove_taxonomy\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "8e8c27ba-19e7-4efb-a62e-33dc265126ad", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a0434c97-dc68-4cd2-8df5-8ab4c4b81069" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Rename features", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1498.5, + "top": 527.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "172920f67a84", + "name": "humann_rename_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"renaming\": {\"type\": \"advanced\", \"__current_case__\": 1, \"names\": \"utility_mapping-full-map_go_name-3.0.0-13052021\"}, \"simplify\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "a78010fe-9a42-40d5-bbbd-d06dc8e1ae37", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f9698996-d32a-443d-a72a-0d6538704e61" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Split a HUMAnN table", + "outputs": [ + { + "name": "stratified", + "type": "tabular" + }, + { + "name": "unstratified", + "type": "tabular" + } + ], + "position": { + "left": 1505, + "top": 724.7369383970697 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "64bc7acc22a9", + "name": "humann_split_stratified_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.6.0+galaxy0", + "type": "tool", + "uuid": "4ef4b37f-4d7f-4cfa-b2d4-2e3208fe8711", + "when": null, + "workflow_outputs": [ + { + "label": "Split a HUMAnN table on input dataset(s): Unstratified table", + "output_name": "unstratified", + "uuid": "1ff60d0a-4a64-44c0-8b6f-bbdfa8566a0c" + }, + { + "label": "Split a HUMAnN table on input dataset(s): Stratified table", + "output_name": "stratified", + "uuid": "6a65ee93-3a2e-4a81-94ff-35917396bdfa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "errors": null, + "id": 11, + "input_connections": { + "humann2_file": { + "id": 7, + "output_name": "outfile" + }, + "metaphlan2_file": { + "id": 2, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Combination of taxonomic and metabolic assignations for gene families", + "name": "Combine MetaPhlAn2 and HUMAnN2 outputs", + "outputs": [ + { + "name": "gene_families_output_file", + "type": "tabular" + } + ], + "position": { + "left": 1169.296670629776, + "top": 63.92767530080023 + }, + "post_job_actions": { + "RenameDatasetActiongene_families_output_file": { + "action_arguments": { + "newname": "Combined MetaPhlAn and HUMAnN output" + }, + "action_type": "RenameDatasetAction", + "output_name": "gene_families_output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "tool_shed_repository": { + "changeset_revision": "fdfb35745104", + "name": "combine_metaphlan2_humann2", + "owner": "bebatut", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"humann2_file\": {\"__class__\": \"ConnectedValue\"}, \"metaphlan2_file\": {\"__class__\": \"ConnectedValue\"}, \"type\": \"gene_families\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.0", + "type": "tool", + "uuid": "47c1c071-024b-44cd-8dab-f710a6875b2a", + "when": null, + "workflow_outputs": [ + { + "label": "Combine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances", + "output_name": "gene_families_output_file", + "uuid": "b34cf972-ec0c-4ecc-ab77-bd0e61d8a0e2" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1834.5, + "top": 431.23693839706976 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[CC\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "10a68751-aa7a-4b4b-895e-4b9d914c59e0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "7b244bf7-95d1-4161-828b-ecc3d5bd382b" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1826.8038463164564, + "top": 569.1619915272356 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[MF\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "1125e0a9-feb5-454b-b968-113e71dee688", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "67b596c7-61fe-4022-bc3c-4abc1af13e65" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1826.5, + "top": 728.2369383970697 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[BP\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "f5109f6b-7afb-4b1b-ae6c-f0cfe31ead27", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "566c91af-5779-445b-98ea-b72bc36f5e17" + } + ] + } + ], + "parent_id": "microbiome/metatranscriptomics-short", + "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Workflow 3: Functional Information", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow3-functional-information", + "tutorial_id": "metatranscriptomics-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics-short", + "wfname": "workflow3-functional-information", + "workflow": "workflow3_functional_information.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/humann/humann/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.6.0+galaxy0" + ], + "workflowhub_id": "1084" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0003-0984-0973", + "name": "Pratik Jagtap" + }, + { + "class": "Person", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + }, + { + "class": "Person", + "name": "Ray Sajulga" + }, + { + "class": "Person", + "name": "Emma Leith" + }, + { + "class": "Person", + "name": "Praveen Kumar" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + }, + { + "class": "Person", + "identifier": "0000-0003-2982-388X", + "name": "Paul Zierep" + } + ], + "description": "Metatranscriptomics analysis using microbiome RNA-seq data (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPredicted taxon relative abundances\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGene Family abundance\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPathway abundance\"]\n 3[label=\"Cut\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Renormalize\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Regroup\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Renormalize\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Replace\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Rename features\"]\n 5 -> 8 [label=\"output\"]\n 9[label=\"Split a HUMAnN table\"]\n 5 -> 9 [label=\"output\"]\n k7aba96f3164841268e58ca10cbd2e46d[color=lightseagreen,label=\"Output\\nSplit a HUMAnN table on input dataset(s): Stratified table\"]\n 9 -> k7aba96f3164841268e58ca10cbd2e46d\n k2c36dc3359814b2cb615a1677002e007[color=lightseagreen,label=\"Output\\nSplit a HUMAnN table on input dataset(s): Unstratified table\"]\n 9 -> k2c36dc3359814b2cb615a1677002e007\n 10[label=\"Unpack pathway abundances\"]\n 4 -> 10 [label=\"output\"]\n 6 -> 10 [label=\"output\"]\n 11[label=\"Combination of taxonomic and metabolic assignations for gene families\"]\n 7 -> 11 [label=\"outfile\"]\n 3 -> 11 [label=\"out_file1\"]\n k46161015b2db4241846e27dd803b0fb3[color=lightseagreen,label=\"Output\\nCombine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances\"]\n 11 -> k46161015b2db4241846e27dd803b0fb3\n 12[label=\"Select\"]\n 8 -> 12 [label=\"output\"]\n 13[label=\"Select\"]\n 8 -> 13 [label=\"output\"]\n 14[label=\"Select\"]\n 8 -> 14 [label=\"output\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Predicted taxon relative abundances" + } + ], + "label": "Predicted taxon relative abundances", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 315.16828885381835 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "37e23d2f-315d-4260-ad1e-82fd98fb9ab4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Gene Family abundance" + } + ], + "label": "Gene Family abundance", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 364.53758261044254, + "top": 523.1616834301867 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f5151f5e-cf41-42c2-b919-dd255128a91a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Pathway abundance" + } + ], + "label": "Pathway abundance", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 372.53758261044254, + "top": 736.1616834301867 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "dd5c4959-60ba-42f7-830c-cb88817abee3", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPredicted taxon relative abundances\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGene Family abundance\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nPathway abundance\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Cut\"];\n 0 -->|output| 3;\n 4[\"Renormalize\"];\n 1 -->|output| 4;\n 5[\"Regroup\"];\n 1 -->|output| 5;\n 6[\"Renormalize\"];\n 2 -->|output| 6;\n 7[\"Replace\"];\n 4 -->|output| 7;\n 8[\"Rename features\"];\n 5 -->|output| 8;\n 9[\"Split a HUMAnN table\"];\n 5 -->|output| 9;\n 7aba96f3-1648-4126-8e58-ca10cbd2e46d[\"Output\\nSplit a HUMAnN table on input dataset(s): Stratified table\"];\n 9 --> 7aba96f3-1648-4126-8e58-ca10cbd2e46d;\n style 7aba96f3-1648-4126-8e58-ca10cbd2e46d stroke:#2c3143,stroke-width:4px;\n 2c36dc33-5981-4b2c-b615-a1677002e007[\"Output\\nSplit a HUMAnN table on input dataset(s): Unstratified table\"];\n 9 --> 2c36dc33-5981-4b2c-b615-a1677002e007;\n style 2c36dc33-5981-4b2c-b615-a1677002e007 stroke:#2c3143,stroke-width:4px;\n 10[\"Unpack pathway abundances\"];\n 4 -->|output| 10;\n 6 -->|output| 10;\n 11[\"Combination of taxonomic and metabolic assignations for gene families\"];\n 7 -->|outfile| 11;\n 3 -->|out_file1| 11;\n 46161015-b2db-4241-846e-27dd803b0fb3[\"Output\\nCombine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances\"];\n 11 --> 46161015-b2db-4241-846e-27dd803b0fb3;\n style 46161015-b2db-4241-846e-27dd803b0fb3 stroke:#2c3143,stroke-width:4px;\n 12[\"Select\"];\n 8 -->|output| 12;\n 13[\"Select\"];\n 8 -->|output| 13;\n 14[\"Select\"];\n 8 -->|output| 14;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 3: Functional Information (quick)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Renormalize", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 713.0375826104425, + "top": 513.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "12fb63b5f63f", + "name": "humann_renorm_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"community\", \"special\": true, \"units\": \"relab\", \"update_snames\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "5acedbf2-ba06-46e6-a523-80f8e30daf55", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "51ae4a6e-63ee-421f-af51-4d9b0bb991f6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.7+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Regroup", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 716.0375826104425, + "top": 871.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "31c6d107e7a5", + "name": "humann_regroup_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"function\": \"sum\", \"grouping\": {\"type\": \"large\", \"__current_case__\": 1, \"grouping\": \"utility_mapping-full-map_go_uniref90-3.0.0-13052021\", \"reversed\": false}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"precision\": \"3\", \"protected\": true, \"ungrouped\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "310ec6f3-dc77-4717-83e6-114fb3076487", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "03ae9297-6ca4-4f7a-a005-f746d1b3f26b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Renormalize", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 717.5297477726888, + "top": 699.1556905832321 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "12fb63b5f63f", + "name": "humann_renorm_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": \"community\", \"special\": true, \"units\": \"relab\", \"update_snames\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "d159e4db-11a0-46f6-8768-63403832b633", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b1e97a44-0d83-43eb-995a-94864b3a06e3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.7+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Rename features", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1038.0375826104425, + "top": 884.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "714d5a28cc5c", + "name": "humann_rename_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"renaming\": {\"type\": \"advanced\", \"__current_case__\": 1, \"names\": \"utility_mapping-full-map_go_name-3.0.0-13052021\"}, \"simplify\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "a78010fe-9a42-40d5-bbbd-d06dc8e1ae37", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d4defac8-a48e-4b36-a2ba-cb805d3e1d38" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.7+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Split a HUMAnN table", + "outputs": [ + { + "name": "stratified", + "type": "tabular" + }, + { + "name": "unstratified", + "type": "tabular" + } + ], + "position": { + "left": 1036.5375826104425, + "top": 1063.1616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6fcb8ac37a3e", + "name": "humann_split_stratified_table", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "331936ad-6037-4cf7-a8f3-5ac066214899", + "when": null, + "workflow_outputs": [ + { + "label": "Split a HUMAnN table on input dataset(s): Stratified table", + "output_name": "stratified", + "uuid": "7aba96f3-1648-4126-8e58-ca10cbd2e46d" + }, + { + "label": "Split a HUMAnN table on input dataset(s): Unstratified table", + "output_name": "unstratified", + "uuid": "2c36dc33-5981-4b2c-b615-a1677002e007" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.7+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "input_genes": { + "id": 4, + "output_name": "output" + }, + "input_pathways": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Unpack pathway abundances", + "name": "gene_mapping" + }, + { + "description": "runtime parameter for tool Unpack pathway abundances", + "name": "pathway_mapping" + } + ], + "label": null, + "name": "Unpack pathway abundances", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1018.0375826104425, + "top": 510.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.7+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5e5a999ffaa9", + "name": "humann_unpack_pathways", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gene_mapping\": {\"__class__\": \"RuntimeValue\"}, \"input_genes\": {\"__class__\": \"ConnectedValue\"}, \"input_pathways\": {\"__class__\": \"ConnectedValue\"}, \"pathway_mapping\": {\"__class__\": \"RuntimeValue\"}, \"remove_taxonomy\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.7+galaxy0", + "type": "tool", + "uuid": "8e8c27ba-19e7-4efb-a62e-33dc265126ad", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9d595334-d192-4cfb-85f4-82a210ad4d6e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "errors": null, + "id": 11, + "input_connections": { + "humann2_file": { + "id": 7, + "output_name": "outfile" + }, + "metaphlan2_file": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Combination of taxonomic and metabolic assignations for gene families", + "name": "Combine MetaPhlAn2 and HUMAnN2 outputs", + "outputs": [ + { + "name": "gene_families_output_file", + "type": "tabular" + } + ], + "position": { + "left": 1287.220433609576, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActiongene_families_output_file": { + "action_arguments": { + "newname": "Combined MetaPhlAn and HUMAnN output" + }, + "action_type": "RenameDatasetAction", + "output_name": "gene_families_output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "tool_shed_repository": { + "changeset_revision": "fdfb35745104", + "name": "combine_metaphlan2_humann2", + "owner": "bebatut", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"humann2_file\": {\"__class__\": \"ConnectedValue\"}, \"metaphlan2_file\": {\"__class__\": \"ConnectedValue\"}, \"type\": \"gene_families\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.0", + "type": "tool", + "uuid": "47c1c071-024b-44cd-8dab-f710a6875b2a", + "when": null, + "workflow_outputs": [ + { + "label": "Combine MetaPhlAn2 and HUMAnN2 outputs on input dataset(s): Gene family abundances related to genus/species abundances", + "output_name": "gene_families_output_file", + "uuid": "46161015-b2db-4241-846e-27dd803b0fb3" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1338.0375826104425, + "top": 748.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[CC\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "10a68751-aa7a-4b4b-895e-4b9d914c59e0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "44a7dc34-b166-4b06-a937-dee12b2690be" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1345.0375826104425, + "top": 915.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[MF\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "1125e0a9-feb5-454b-b968-113e71dee688", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "dc867f18-b3e3-4083-9839-0cd83cdadfce" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1342.0375826104425, + "top": 1089.6616834301867 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"keep_header\": false, \"pattern\": \"\\\\[BP\\\\]\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "f5109f6b-7afb-4b1b-ae6c-f0cfe31ead27", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "7eab47aa-ec05-47a0-af54-6d0b28724ee9" + } + ] + } + ], + "parent_id": "microbiome/metatranscriptomics-short", + "path": "topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information_quick.ga", + "tags": [ + "asaim", + "metagenomics" + ], + "test_results": null, + "tests": true, + "title": "Workflow 3: Functional Information (quick)", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-metatranscriptomics-short/versions/workflow3-functional-information-quick", + "tutorial_id": "metatranscriptomics-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information_quick.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/metatranscriptomics-short/workflows/workflow3_functional_information_quick.html", + "version": 1, + "wfid": "microbiome-metatranscriptomics-short", + "wfname": "workflow3-functional-information-quick", + "workflow": "workflow3_functional_information_quick.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bebatut/combine_metaphlan2_humann2/combine_metaphlan2_humann2/0.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_regroup_table/humann_regroup_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_rename_table/humann_rename_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_renorm_table/humann_renorm_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_split_stratified_table/humann_split_stratified_table/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/humann_unpack_pathways/humann_unpack_pathways/3.7+galaxy0" + ], + "workflowhub_id": "1080" + } + ], + "zenodo_link": "https://zenodo.org/record/4776250" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "checkm_lineage_wf", + "owner": "iuc", + "revisions": "f0107b9f2dc3", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "megahit", + "owner": "iuc", + "revisions": "14ddfc8ffb93", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: checkm_lineage_wf\n owner: iuc\n revisions: f0107b9f2dc3\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: megahit\n owner: iuc\n revisions: 14ddfc8ffb93\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-binning/tutorial.json", + "contributions": { + "authorship": [ + "npechl", + "fpsom" + ] + }, + "contributors": [ + { + "email": "npechlv@gmail.com", + "id": "npechl", + "joined": "2023-05", + "name": "Nikolaos Pechlivanis", + "orcid": "0000-0003-2502-612X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/npechl/", + "twitter": "npechl", + "url": "https://training.galaxyproject.org/training-material/api/contributors/npechl.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + } + ], + "dir": "topics/microbiome/tutorials/metagenomics-binning", + "edam_ontology": [ + "topic_3174", + "topic_0196" + ], + "edam_operation": [ + "Sequencing quality control", + "Validation", + "Genome assembly", + "Sequence assembly validation", + "Statistical calculation", + "Sequence composition calculation" + ], + "edam_topic": [ + "Metagenomics", + "Sequence assembly" + ], + "exact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "extra": { + "zenodo_link_results": "https://zenodo.org/record/7845138" + }, + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/metagenomics-binning", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Metagenomics binning is a computational approach to grouping together DNA sequences from a mixed microbial sample into metagenome-assembled genomes (MAGs)", + "The metagenomics binning workflow involves several steps, including preprocessing of raw sequencing data, assembly of sequencing reads into contigs, binning of contigs into MAGs, quality assessment of MAGs, and annotation of functional genes and metabolic pathways in MAGs", + "The quality and completeness of MAGs can be evaluated using standard metrics, such as completeness, contamination, and genome size", + "Metagenomics binning can be used to gain insights into the composition, diversity, and functional potential of microbial communities, and can be applied to a range of research areas, such as human health, environmental microbiology, and biotechnology" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "objectives": [ + "Describe what metagenomics binning is", + "Describe common problems in metagenomics binning", + "What software tools are available for metagenomics binning", + "Binning of contigs into metagenome-assembled genomes (MAGs) using MetaBAT 2 software", + "Evaluation of MAG quality and completeness using CheckM software" + ], + "pageviews": 1997, + "pub_date": "2023-12-05", + "questions": [ + "What is metagenomic binning refers to?", + "Which tools should be used for metagenomic binning?", + "How to assess the quality of metagenomic data binning?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/metagenomics-binning/tutorial", + "/short/microbiome/metagenomics-binning", + "/short/T00377", + "/short/T00387" + ], + "short_id": "T00387", + "short_tools": [ + "megahit", + "checkm_lineage_wf" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metagenomics", + "supported_servers": { + "exact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "binning", + "metagenomics", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Binning of metagenomic sequencing data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/checkm_lineage_wf/checkm_lineage_wf/1.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/megahit/megahit/1.2.9+galaxy0" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metagenomics-binning", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-binning/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-binning/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/metagenomics-binning/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 89, + "visitors": 1648, + "zenodo_link": "https://zenodo.org/record/7818827" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.json", + "contributions": { + "authorship": [ + "qiime2" + ] + }, + "contributors": [ + { + "avatar": "https://avatars.githubusercontent.com/u/18176583?s=200&v=4", + "id": "qiime2", + "name": "QIIME2", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/qiime2/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/qiime2.json" + } + ], + "dir": "topics/microbiome/tutorials/qiime2-moving-pictures", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": "external", + "hands_on_url": "https://docs.qiime2.org/2024.2/tutorials/moving-pictures-usage", + "id": "microbiome/qiime2-moving-pictures", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "pageviews": 171, + "pub_date": "2024-03-14", + "short_id": "T00427", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metagenomics", + "taxonomic profiling", + "diversity", + "microgalaxy" + ], + "time_estimation": "10H", + "title": "QIIME 2 Moving Pictures", + "tools": [], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "qiime2-moving-pictures", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 229, + "visitors": 112 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.json", + "contributions": { + "authorship": [ + "qiime2" + ] + }, + "contributors": [ + { + "avatar": "https://avatars.githubusercontent.com/u/18176583?s=200&v=4", + "id": "qiime2", + "name": "QIIME2", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/qiime2/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/qiime2.json" + } + ], + "dir": "topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": "external", + "hands_on_url": "https://docs.qiime2.org/jupyterbooks/cancer-microbiome-intervention-tutorial/index.html#", + "id": "microbiome/qiime2-cancer-microbiome-intervention", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "pageviews": 220, + "pub_date": "2024-02-12", + "short_id": "T00412", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "taxonomic profiling", + "diversity", + "microgalaxy" + ], + "time_estimation": "10H", + "title": "QIIME 2 Cancer Microbiome Intervention", + "tools": [], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "qiime2-cancer-microbiome-intervention", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 163, + "visitors": 119 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "xy_plot", + "owner": "devteam", + "revisions": "ecb437f1d298", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_chimera_vsearch", + "owner": "iuc", + "revisions": "12e856482d26", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_otu", + "owner": "iuc", + "revisions": "ff1bc0299372", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_seqs", + "owner": "iuc", + "revisions": "09bf9e496c64", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster", + "owner": "iuc", + "revisions": "6366f4483b35", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster_split", + "owner": "iuc", + "revisions": "19f45bdbffd9", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_groups", + "owner": "iuc", + "revisions": "dc3826bfc1ed", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_seqs", + "owner": "iuc", + "revisions": "ffee46220ddd", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_dist_seqs", + "owner": "iuc", + "revisions": "4d76fba83f24", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_dist_shared", + "owner": "iuc", + "revisions": "418100660ba3", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_filter_seqs", + "owner": "iuc", + "revisions": "3524ca06478e", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_heatmap_sim", + "owner": "iuc", + "revisions": "7f5707dd6073", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_shared", + "owner": "iuc", + "revisions": "d0967ae326be", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_pre_cluster", + "owner": "iuc", + "revisions": "6532c3424bfe", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_rarefaction_single", + "owner": "iuc", + "revisions": "47264675a4ea", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_groups", + "owner": "iuc", + "revisions": "498dc0671d9e", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_lineage", + "owner": "iuc", + "revisions": "947faa8b3205", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_seqs", + "owner": "iuc", + "revisions": "d38f2ac5db71", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_screen_seqs", + "owner": "iuc", + "revisions": "63b74bfc8052", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_sub_sample", + "owner": "iuc", + "revisions": "67cb43432196", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_seqs", + "owner": "iuc", + "revisions": "600c14c6dcc5", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_single", + "owner": "iuc", + "revisions": "2344ed181ae6", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_tree_shared", + "owner": "iuc", + "revisions": "8bca555fbcaf", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_unique_seqs", + "owner": "iuc", + "revisions": "a033f325ad8d", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_venn", + "owner": "iuc", + "revisions": "4db54b1c1d83", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "newick_utils", + "owner": "iuc", + "revisions": "b4163d2f64ab", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: xy_plot\n owner: devteam\n revisions: ecb437f1d298\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_chimera_vsearch\n owner: iuc\n revisions: 12e856482d26\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_otu\n owner: iuc\n revisions: ff1bc0299372\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_seqs\n owner: iuc\n revisions: '09bf9e496c64'\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster\n owner: iuc\n revisions: 6366f4483b35\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster_split\n owner: iuc\n revisions: 19f45bdbffd9\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_groups\n owner: iuc\n revisions: dc3826bfc1ed\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_seqs\n owner: iuc\n revisions: ffee46220ddd\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_dist_seqs\n owner: iuc\n revisions: 4d76fba83f24\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_dist_shared\n owner: iuc\n revisions: 418100660ba3\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_filter_seqs\n owner: iuc\n revisions: 3524ca06478e\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_heatmap_sim\n owner: iuc\n revisions: 7f5707dd6073\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_shared\n owner: iuc\n revisions: d0967ae326be\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_pre_cluster\n owner: iuc\n revisions: 6532c3424bfe\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_rarefaction_single\n owner: iuc\n revisions: 47264675a4ea\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_groups\n owner: iuc\n revisions: 498dc0671d9e\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_lineage\n owner: iuc\n revisions: 947faa8b3205\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_seqs\n owner: iuc\n revisions: d38f2ac5db71\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_screen_seqs\n owner: iuc\n revisions: 63b74bfc8052\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_sub_sample\n owner: iuc\n revisions: 67cb43432196\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_seqs\n owner: iuc\n revisions: 600c14c6dcc5\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_single\n owner: iuc\n revisions: 2344ed181ae6\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_tree_shared\n owner: iuc\n revisions: 8bca555fbcaf\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_unique_seqs\n owner: iuc\n revisions: a033f325ad8d\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_venn\n owner: iuc\n revisions: 4db54b1c1d83\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: newick_utils\n owner: iuc\n revisions: b4163d2f64ab\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + } + ], + "dir": "topics/microbiome/tutorials/mothur-miseq-sop-short", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Phylogenetic analysis", + "Taxonomic classification", + "Phylogenetic tree analysis", + "Phylogenetic tree generation", + "Sequence read processing", + "DNA barcoding", + "Sequence clustering", + "Phylogenetic tree reconstruction" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/mothur-miseq-sop-short", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "16S rRNA gene sequencing analysis results depend on the many algorithms used and their settings", + "Quality control and cleaning of your data is a crucial step in order to obtain optimal results", + "Adding a mock community to serve as a control sample can help you asses the error rate of your experimental setup", + "We can explore alpha and beta diversities using Krona and Phinch for dynamic visualizations" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Analyze of 16S rRNA sequencing data using the mothur toolsuite in Galaxy", + "Using a mock community to assess the error rate of your sequencing experiment", + "Visualize sample diversity using Krona and Phinch" + ], + "pageviews": 3211, + "priority": 1000, + "pub_date": "2019-05-13", + "questions": [ + "What is the effect of normal variation in the gut microbiome on host health?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2023-05-19", + "galaxy_version": "23.01", + "length": "1H37M", + "speakers": [ + "shiltemann" + ], + "youtube_id": "CGSBeCW3rpA" + }, + { + "archive-id": "smorgasbord2023", + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "description": "This recording was created as part of the Sm\u00f6rg\u00e5sbord 2023 event.", + "galaxy_version": "21.01", + "length": "1H40M", + "speakers": [ + "shiltemann" + ], + "type": "Lecture & Tutorial", + "youtube_id": "mto4Nl-q7Kk" + } + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/mothur-miseq-sop-short/tutorial", + "/short/microbiome/mothur-miseq-sop-short", + "/short/T00206", + "/short/T00391" + ], + "short_id": "T00391", + "short_tools": [ + "mothur_remove_lineage", + "mothur_cluster_split", + "mothur_count_seqs", + "mothur_dist_shared", + "mothur_sub_sample", + "mothur_classify_otu", + "newick_display", + "mothur_chimera_vsearch", + "mothur_venn", + "mothur_pre_cluster", + "XY_Plot_1", + "mothur_rarefaction_single", + "collapse_dataset", + "mothur_screen_seqs", + "mothur_unique_seqs", + "mothur_count_groups", + "mothur_heatmap_sim", + "mothur_summary_seqs", + "mothur_tree_shared", + "mothur_remove_groups", + "mothur_make_shared", + "mothur_summary_single", + "mothur_cluster", + "mothur_classify_seqs", + "mothur_dist_seqs", + "mothur_filter_seqs", + "mothur_remove_seqs" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "microgalaxy" + ], + "time_estimation": "2h", + "title": "16S Microbial Analysis with mothur (short)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_shared/mothur_dist_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mothur-miseq-sop-short", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 344, + "visitors": 1744, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nContigs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGroups\"]\n 2[label=\"Summary.seqs\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Screen.seqs\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Summary.seqs\"]\n 3 -> 4 [label=\"fasta_out\"]\n 5[label=\"Unique.seqs\"]\n 3 -> 5 [label=\"fasta_out\"]\n 6[label=\"Count.seqs\"]\n 3 -> 6 [label=\"groups_out\"]\n 5 -> 6 [label=\"out_names\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Contigs" + } + ], + "label": "Contigs", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 239.8000030517578, + "height": 61.80000305175781, + "left": 313, + "right": 513, + "top": 178, + "width": 200, + "x": 313, + "y": 178 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "575ac02e-83e2-4b10-88af-6016b2ad0117", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Groups" + } + ], + "label": "Groups", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 570.8000030517578, + "height": 61.80000305175781, + "left": 323, + "right": 523, + "top": 509, + "width": 200, + "x": 323, + "y": 509 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "f6d83f4e-630a-4022-b300-e1a953c1b737", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nContigs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGroups\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Summary.seqs\"];\n 0 -->|output| 2;\n 3[\"Screen.seqs\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Summary.seqs\"];\n 3 -->|fasta_out| 4;\n 5[\"Unique.seqs\"];\n 3 -->|fasta_out| 5;\n 6[\"Count.seqs\"];\n 3 -->|groups_out| 6;\n 5 -->|out_names| 6;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 1: Quality Control [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 2, + "input_connections": { + "fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "bottom": 361.5, + "height": 266, + "left": 631, + "right": 831, + "top": 95.5, + "width": 200, + "x": 631, + "y": 95.5 + }, + "post_job_actions": { + "HideDatasetActionout_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": null, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": null, \"savelog\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "b289d19e-f8bd-4803-88a0-e41335c11d7a", + "workflow_outputs": [ + { + "label": null, + "output_name": "logfile", + "uuid": "09eb6090-e79e-44a7-bf2b-52c217a29c8f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "errors": null, + "id": 3, + "input_connections": { + "fasta": { + "id": 0, + "output_name": "output" + }, + "groups": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Screen.seqs", + "outputs": [ + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "bad_accnos", + "type": "mothur.accnos" + }, + { + "name": "groups_out", + "type": "mothur.groups" + }, + { + "name": "alignreport_out", + "type": "mothur.align.report" + }, + { + "name": "contigsreport_out", + "type": "tabular" + } + ], + "position": { + "bottom": 1128.5, + "height": 642, + "left": 632, + "right": 832, + "top": 486.5, + "width": 200, + "x": 632, + "y": 486.5 + }, + "post_job_actions": { + "HideDatasetActionalignreport_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignreport_out" + }, + "HideDatasetActioncontigsreport_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "contigsreport_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "tool_shed_repository": { + "changeset_revision": "63b74bfc8052", + "name": "mothur_screen_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"alignrep\": {\"usealign\": \"no\", \"__current_case__\": 1}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contigsrep\": {\"usecontigs\": \"no\", \"__current_case__\": 1}, \"count\": null, \"criteria\": \"-1\", \"end\": \"-1\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"groups\": {\"__class__\": \"ConnectedValue\"}, \"maxambig\": \"0\", \"maxhomop\": \"-1\", \"maxlength\": \"275\", \"minlength\": \"10\", \"names\": null, \"optimize\": null, \"qfile\": null, \"savelog\": \"false\", \"start\": \"-1\", \"summary\": null, \"taxonomy\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.1", + "type": "tool", + "uuid": "ad7d2c58-0b4d-4e3c-bb46-bfb496424b12", + "workflow_outputs": [ + { + "label": null, + "output_name": "groups_out", + "uuid": "3361a236-0e72-4844-9956-5200e2b01252" + }, + { + "label": null, + "output_name": "fasta_out", + "uuid": "c70b5192-b093-40ff-a912-bb8deff20670" + }, + { + "label": null, + "output_name": "bad_accnos", + "uuid": "71c67258-d5e3-4c63-ad49-d01e54cb56cf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "fasta": { + "id": 3, + "output_name": "fasta_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Summary.seqs", + "name": "count" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "name" + } + ], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "bottom": 393, + "height": 266, + "left": 959, + "right": 1159, + "top": 127, + "width": 200, + "x": 959, + "y": 127 + }, + "post_job_actions": { + "HideDatasetActionout_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"count\": {\"__class__\": \"RuntimeValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": {\"__class__\": \"RuntimeValue\"}, \"savelog\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "f7268117-2f00-48d7-aed0-cc3e149db198", + "workflow_outputs": [ + { + "label": null, + "output_name": "logfile", + "uuid": "b4abf87f-39ec-4d17-8e93-5a2a473dab74" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "fasta": { + "id": 3, + "output_name": "fasta_out" + } + }, + "inputs": [], + "label": null, + "name": "Unique.seqs", + "outputs": [ + { + "name": "out_fasta", + "type": "input" + }, + { + "name": "out_names", + "type": "mothur.names" + } + ], + "position": { + "bottom": 850.1000061035156, + "height": 235.60000610351562, + "left": 1009, + "right": 1209, + "top": 614.5, + "width": 200, + "x": 1009, + "y": 614.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "d466580cd706", + "name": "mothur_unique_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"format\": \"name\", \"names\": null, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "3256bd7b-b98f-4248-90ae-c5e73704f418", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_fasta", + "uuid": "10d11427-086d-47fe-aee9-ac5d1bae3191" + }, + { + "label": null, + "output_name": "out_names", + "uuid": "2bde74d8-08ef-4bd6-b54f-138c0d4d365f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "grouping|group": { + "id": 3, + "output_name": "groups_out" + }, + "name": { + "id": 5, + "output_name": "out_names" + } + }, + "inputs": [], + "label": null, + "name": "Count.seqs", + "outputs": [ + { + "name": "seq_count", + "type": "mothur.count_table" + } + ], + "position": { + "bottom": 556.6999969482422, + "height": 205.1999969482422, + "left": 1292, + "right": 1492, + "top": 351.5, + "width": 200, + "x": 1292, + "y": 351.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "7a6f9c899221", + "name": "mothur_count_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"grouping\": {\"use\": \"yes\", \"__current_case__\": 0, \"group\": {\"__class__\": \"ConnectedValue\"}, \"groups\": null}, \"name\": {\"__class__\": \"ConnectedValue\"}, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "51efceca-f05a-4f3f-af6b-693a14b26048", + "workflow_outputs": [ + { + "label": null, + "output_name": "seq_count", + "uuid": "5ffc59a1-8b3f-4b09-982d-332411f16919" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow1_quality_control.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 1: Quality Control [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow1-quality-control", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow1_quality_control.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow1_quality_control.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow1-quality-control", + "workflow": "workflow1_quality_control.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0" + ], + "workflowhub_id": "1121" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAligned Sequences\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCount Table\"]\n 2[label=\"Summary.seqs\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Screen.seqs\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Filter.seqs\"]\n 3 -> 4 [label=\"fasta_out\"]\n 5[label=\"Unique.seqs\"]\n 4 -> 5 [label=\"filteredfasta\"]\n 3 -> 5 [label=\"count_out\"]\n 6[label=\"Pre.cluster\"]\n 5 -> 6 [label=\"out_fasta\"]\n 5 -> 6 [label=\"out_count\"]\n 7[label=\"Summary.seqs\"]\n 6 -> 7 [label=\"count_out\"]\n 6 -> 7 [label=\"fasta_out\"]\n ka0bbcba140f946789c478bdb4e0b7f6d[color=lightseagreen,label=\"Output\\nSummary.seqs on input dataset(s): summary\"]\n 7 -> ka0bbcba140f946789c478bdb4e0b7f6d\n 8[label=\"Chimera.vsearch\"]\n 6 -> 8 [label=\"fasta_out\"]\n 6 -> 8 [label=\"count_out\"]\n 9[label=\"Remove.seqs\"]\n 8 -> 9 [label=\"out_accnos\"]\n 8 -> 9 [label=\"out_count\"]\n 6 -> 9 [label=\"fasta_out\"]\n 10[label=\"Summary.seqs\"]\n 9 -> 10 [label=\"count_out\"]\n 9 -> 10 [label=\"fasta_out\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Aligned Sequences" + } + ], + "label": "Aligned Sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2, + "top": 262 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f08168dd-1a9a-4a0e-b1c9-006610590496", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Count Table" + } + ], + "label": "Count Table", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 591 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4f0b07a6-cc5f-40ed-bab5-37d7a3c6c59e", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAligned Sequences\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCount Table\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Summary.seqs\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Screen.seqs\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 4[\"Filter.seqs\"];\n 3 -->|fasta_out| 4;\n 5[\"Unique.seqs\"];\n 4 -->|filteredfasta| 5;\n 3 -->|count_out| 5;\n 6[\"Pre.cluster\"];\n 5 -->|out_fasta| 6;\n 5 -->|out_count| 6;\n 7[\"Summary.seqs\"];\n 6 -->|count_out| 7;\n 6 -->|fasta_out| 7;\n a0bbcba1-40f9-4678-9c47-8bdb4e0b7f6d[\"Output\\nSummary.seqs on input dataset(s): summary\"];\n 7 --> a0bbcba1-40f9-4678-9c47-8bdb4e0b7f6d;\n style a0bbcba1-40f9-4678-9c47-8bdb4e0b7f6d stroke:#2c3143,stroke-width:4px;\n 8[\"Chimera.vsearch\"];\n 6 -->|fasta_out| 8;\n 6 -->|count_out| 8;\n 9[\"Remove.seqs\"];\n 8 -->|out_accnos| 9;\n 8 -->|out_count| 9;\n 6 -->|fasta_out| 9;\n 10[\"Summary.seqs\"];\n 9 -->|count_out| 10;\n 9 -->|fasta_out| 10;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 2: Data Cleaning And Chimera Removal [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 2, + "input_connections": { + "count": { + "id": 1, + "output_name": "output" + }, + "fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "left": 301, + "top": 96.5 + }, + "post_job_actions": { + "HideDatasetActionout_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": null, \"savelog\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "0c5f9992-1de0-45bc-959e-b8965f499294", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "logfile", + "uuid": "3fee996b-77af-4338-95b6-f2b53233ca79" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "errors": null, + "id": 3, + "input_connections": { + "count": { + "id": 1, + "output_name": "output" + }, + "fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Screen.seqs", + "outputs": [ + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "bad_accnos", + "type": "mothur.accnos" + }, + { + "name": "alignreport_out", + "type": "mothur.align.report" + }, + { + "name": "contigsreport_out", + "type": "tabular" + }, + { + "name": "count_out", + "type": "mothur.count_table" + } + ], + "position": { + "left": 315, + "top": 430.5 + }, + "post_job_actions": { + "HideDatasetActionalignreport_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignreport_out" + }, + "HideDatasetActioncontigsreport_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "contigsreport_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "tool_shed_repository": { + "changeset_revision": "63b74bfc8052", + "name": "mothur_screen_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"alignrep\": {\"usealign\": \"no\", \"__current_case__\": 1}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contigsrep\": {\"usecontigs\": \"no\", \"__current_case__\": 1}, \"count\": {\"__class__\": \"ConnectedValue\"}, \"criteria\": \"-1\", \"end\": \"11550\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"groups\": null, \"maxambig\": \"-1\", \"maxhomop\": \"8\", \"maxlength\": \"-1\", \"minlength\": \"10\", \"names\": null, \"optimize\": null, \"qfile\": null, \"savelog\": false, \"start\": \"1968\", \"summary\": null, \"taxonomy\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.1", + "type": "tool", + "uuid": "2663c361-5494-4eca-bd57-ffbd2dbfae03", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "count_out", + "uuid": "c73cdf2e-9061-4e0b-ad9c-b88730d454f2" + }, + { + "label": null, + "output_name": "fasta_out", + "uuid": "74e9d7d4-3364-4e10-bb47-9f1531657198" + }, + { + "label": null, + "output_name": "bad_accnos", + "uuid": "759c0a32-df83-415e-8a9f-eee097817a6f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "fasta": { + "id": 3, + "output_name": "fasta_out" + } + }, + "inputs": [], + "label": null, + "name": "Filter.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_filter", + "type": "mothur.filter" + }, + { + "name": "filteredfasta", + "type": "fasta" + } + ], + "position": { + "left": 603, + "top": 272.5 + }, + "post_job_actions": { + "HideDatasetActionlogfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "logfile" + }, + "HideDatasetActionout_filter": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_filter" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "3524ca06478e", + "name": "mothur_filter_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"hard\": null, \"inputs\": [], \"savelog\": true, \"soft\": \"0\", \"trump\": \".\", \"vertical\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "e326b83b-5d1e-447a-8971-508f72f7b8de", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "filteredfasta", + "uuid": "c8809f97-ed35-409e-890f-ed45f534e81d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "fasta": { + "id": 4, + "output_name": "filteredfasta" + }, + "names": { + "id": 3, + "output_name": "count_out" + } + }, + "inputs": [], + "label": null, + "name": "Unique.seqs", + "outputs": [ + { + "name": "out_fasta", + "type": "input" + }, + { + "name": "out_count", + "type": "mothur.count_table" + } + ], + "position": { + "left": 882, + "top": 621.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "d466580cd706", + "name": "mothur_unique_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"format\": \"count\", \"names\": {\"__class__\": \"ConnectedValue\"}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "225cd752-6173-4e44-9b31-a1de097d3357", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_fasta", + "uuid": "efcff963-3961-4b12-857b-9191765f5ad5" + }, + { + "label": null, + "output_name": "out_count", + "uuid": "3e744fc6-4002-409c-b580-7a080263b39c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "fasta": { + "id": 5, + "output_name": "out_fasta" + }, + "name": { + "id": 5, + "output_name": "out_count" + } + }, + "inputs": [], + "label": null, + "name": "Pre.cluster", + "outputs": [ + { + "name": "map_out", + "type": "input" + }, + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "names_out", + "type": "mothur.names" + }, + { + "name": "count_out", + "type": "mothur.count_table" + } + ], + "position": { + "left": 1179, + "top": 74.5 + }, + "post_job_actions": { + "HideDatasetActionmap_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "map_out" + }, + "HideDatasetActionnames_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "names_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "05183ee20cf8", + "name": "mothur_pre_cluster", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"diffs\": \"2\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gapextend\": \"-1\", \"gapopen\": \"-2\", \"group\": null, \"match\": \"1\", \"mismatch\": \"-1\", \"name\": {\"__class__\": \"ConnectedValue\"}, \"savelog\": false, \"topdown\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "6f90be44-8355-4639-a4e6-9d5cc0df50f0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "fasta_out", + "uuid": "e06f7f73-b9d6-4314-bcc6-9e0889d0f701" + }, + { + "label": null, + "output_name": "count_out", + "uuid": "457b654e-4a7d-4fcd-84e2-def389e29fe6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 7, + "input_connections": { + "count": { + "id": 6, + "output_name": "count_out" + }, + "fasta": { + "id": 6, + "output_name": "fasta_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Summary.seqs", + "name": "name" + } + ], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "left": 1498, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"count\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": {\"__class__\": \"RuntimeValue\"}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "0ab1410f-0567-4266-9aac-9412c907da0d", + "when": null, + "workflow_outputs": [ + { + "label": "Summary.seqs on input dataset(s): summary", + "output_name": "out_summary", + "uuid": "a0bbcba1-40f9-4678-9c47-8bdb4e0b7f6d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "errors": null, + "id": 8, + "input_connections": { + "fasta": { + "id": 6, + "output_name": "fasta_out" + }, + "template|count": { + "id": 6, + "output_name": "count_out" + } + }, + "inputs": [], + "label": null, + "name": "Chimera.vsearch", + "outputs": [ + { + "name": "vsearch.chimeras", + "type": "txt" + }, + { + "name": "out_accnos", + "type": "mothur.accnos" + }, + { + "name": "out_count", + "type": "mothur.count_table" + } + ], + "position": { + "left": 1478, + "top": 636.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "tool_shed_repository": { + "changeset_revision": "12e856482d26", + "name": "mothur_chimera_vsearch", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dereplicate\": true, \"dn\": \"1.4\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"mindiffs\": \"3\", \"mindiv\": \"0.5\", \"minh\": \"0.3\", \"savelog\": false, \"template\": {\"source\": \"self\", \"__current_case__\": 2, \"abskew\": \"1.9\", \"group\": null, \"count\": {\"__class__\": \"ConnectedValue\"}}, \"xn\": \"8.0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.1", + "type": "tool", + "uuid": "d23b7636-fbcb-4346-992d-a79e8093d489", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_accnos", + "uuid": "c975f75e-71cc-45a8-a653-df3fdd56eb9b" + }, + { + "label": null, + "output_name": "out_count", + "uuid": "1657beb8-c142-47ca-ac8d-bf92a3b74273" + }, + { + "label": null, + "output_name": "vsearch.chimeras", + "uuid": "e3cb9259-e3b1-4870-b098-eeadc7e8f4c1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.39.5.0", + "errors": null, + "id": 9, + "input_connections": { + "accnos": { + "id": 8, + "output_name": "out_accnos" + }, + "count_in": { + "id": 8, + "output_name": "out_count" + }, + "fasta_in": { + "id": 6, + "output_name": "fasta_out" + } + }, + "inputs": [], + "label": null, + "name": "Remove.seqs", + "outputs": [ + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "count_out", + "type": "input" + } + ], + "position": { + "left": 1872, + "top": 231.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "5097ac2cbfc3", + "name": "mothur_remove_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"accnos\": {\"__class__\": \"ConnectedValue\"}, \"alignreport_in\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count_in\": {\"__class__\": \"ConnectedValue\"}, \"dups\": true, \"fasta_in\": {\"__class__\": \"ConnectedValue\"}, \"fastq_in\": null, \"group_in\": null, \"list_in\": null, \"name_in\": null, \"qfile_in\": null, \"savelog\": false, \"taxonomy_in\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "b9b21e24-7318-474b-a145-a3be83c7d09c", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "count_out", + "uuid": "8480daf7-266c-48fb-a4c7-2ff68313d6b6" + }, + { + "label": null, + "output_name": "fasta_out", + "uuid": "51c086db-4a7e-4128-9010-01a3b6f2621e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 10, + "input_connections": { + "count": { + "id": 9, + "output_name": "count_out" + }, + "fasta": { + "id": 9, + "output_name": "fasta_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Summary.seqs", + "name": "count" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "fasta" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "name" + } + ], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "left": 2298, + "top": 342 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"count\": {\"__class__\": \"RuntimeValue\"}, \"fasta\": {\"__class__\": \"RuntimeValue\"}, \"name\": {\"__class__\": \"RuntimeValue\"}, \"savelog\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "9a018d5e-23f7-46a7-ac83-a57bc2ddd9ac", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_summary", + "uuid": "f097e9a4-45a5-4168-a3bc-79ae4c0eb3d4" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow2_data_cleaning.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 2: Data Cleaning And Chimera Removal [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow2-data-cleaning", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow2_data_cleaning.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow2_data_cleaning.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow2-data-cleaning", + "workflow": "workflow2_data_cleaning.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0" + ], + "workflowhub_id": "1112" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCleaned Sequences\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCount Table\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTraining set FASTA\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTraining set Taxonomy\"]\n 4[label=\"Classify.seqs\"]\n 2 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"Remove.lineage\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"taxonomy_out\"]\n 6[label=\"Summary.seqs\"]\n 5 -> 6 [label=\"count_out\"]\n 5 -> 6 [label=\"fasta_out\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cleaned Sequences" + } + ], + "label": "Cleaned Sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 27, + "top": 123.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "817445c0-3b76-4949-bbed-34c88e2a0c59", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Count Table" + } + ], + "label": "Count Table", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 304.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7b43d972-886f-4aae-ab0e-2fd188655cbd", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Training set FASTA" + } + ], + "label": "Training set FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4, + "top": 515.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f2ee2034-e7ce-43b0-82c9-905c2dd0745c", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Training set Taxonomy" + } + ], + "label": "Training set Taxonomy", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 30, + "top": 694.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f1a29c9e-a70e-4d8c-b7b4-1236da5245a1", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nCleaned Sequences\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCount Table\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTraining set FASTA\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nTraining set Taxonomy\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Classify.seqs\"];\n 2 -->|output| 4;\n 1 -->|output| 4;\n 0 -->|output| 4;\n 3 -->|output| 4;\n 5[\"Remove.lineage\"];\n 1 -->|output| 5;\n 0 -->|output| 5;\n 4 -->|taxonomy_out| 5;\n 6[\"Summary.seqs\"];\n 5 -->|count_out| 6;\n 5 -->|fasta_out| 6;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 3: Classification [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "alignment|template": { + "id": 2, + "output_name": "output" + }, + "count": { + "id": 1, + "output_name": "output" + }, + "fasta": { + "id": 0, + "output_name": "output" + }, + "tax|taxonomy": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Classify.seqs", + "outputs": [ + { + "name": "taxonomy_out", + "type": "mothur.seq.taxonomy" + }, + { + "name": "tax_summary", + "type": "mothur.tax.summary" + }, + { + "name": "tree_sum", + "type": "tabular" + } + ], + "position": { + "left": 538, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "09bf9e496c64", + "name": "mothur_classify_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"alignment\": {\"source\": \"hist\", \"__current_case__\": 1, \"template\": {\"__class__\": \"ConnectedValue\"}}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"classify\": {\"method\": \"wang\", \"__current_case__\": 0, \"ksize\": \"8\", \"iters\": \"100\", \"cutoff\": \"80\", \"probs\": true}, \"count\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"name\": null, \"output\": \"simple\", \"printlevel\": \"-1\", \"relabund\": false, \"savelog\": false, \"tax\": {\"source2\": \"hist\", \"__current_case__\": 1, \"taxonomy\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "d57e48c7-34ce-4742-8545-31b9d5c4a53d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "taxonomy_out", + "uuid": "dd10f8f4-a93e-46be-98d9-1e4d54b22fe0" + }, + { + "label": null, + "output_name": "tree_sum", + "uuid": "964cf5ca-6cb9-477f-8754-88f3bf048da9" + }, + { + "label": null, + "output_name": "tax_summary", + "uuid": "b3b100a8-87f2-4ddd-be9e-e7259399c15a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "count": { + "id": 1, + "output_name": "output" + }, + "fasta_in": { + "id": 0, + "output_name": "output" + }, + "file|taxonomy": { + "id": 4, + "output_name": "taxonomy_out" + } + }, + "inputs": [], + "label": null, + "name": "Remove.lineage", + "outputs": [ + { + "name": "taxonomy_out", + "type": "mothur.seq.taxonomy" + }, + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "count_out", + "type": "mothur.count_table" + } + ], + "position": { + "left": 781, + "top": 593 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "947faa8b3205", + "name": "mothur_remove_lineage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"alignreport_in\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": {\"__class__\": \"ConnectedValue\"}, \"dups\": true, \"fasta_in\": {\"__class__\": \"ConnectedValue\"}, \"file\": {\"filetype\": \"usetaxonomy\", \"__current_case__\": 0, \"taxonomy\": {\"__class__\": \"ConnectedValue\"}, \"taxons\": null}, \"group_in\": null, \"list_in\": null, \"name_in\": null, \"savelog\": false, \"taxon\": \"Chloroplast-Mitochondria-unknown-Archaea-Eukaryota\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "61870655-5bd1-45bc-a8fe-81b1cf8018a2", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "taxonomy_out", + "uuid": "cdca67a9-ef60-4162-b3ba-1e502f543fde" + }, + { + "label": null, + "output_name": "fasta_out", + "uuid": "7fabef22-b375-4615-8209-9e7f4685faba" + }, + { + "label": null, + "output_name": "count_out", + "uuid": "452deac5-f985-4702-9028-083b62cd42c6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "count": { + "id": 5, + "output_name": "count_out" + }, + "fasta": { + "id": 5, + "output_name": "fasta_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Summary.seqs", + "name": "count" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "fasta" + }, + { + "description": "runtime parameter for tool Summary.seqs", + "name": "name" + } + ], + "label": null, + "name": "Summary.seqs", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "out_summary", + "type": "mothur.summary" + } + ], + "position": { + "left": 1128.25, + "top": 788.0624885559082 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "609770e516fa", + "name": "mothur_summary_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"count\": {\"__class__\": \"RuntimeValue\"}, \"fasta\": {\"__class__\": \"RuntimeValue\"}, \"name\": {\"__class__\": \"RuntimeValue\"}, \"savelog\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "c399d175-5b43-45b1-9916-f2f11f1cad25", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "logfile", + "uuid": "2ba6776c-d197-4804-9654-039b997986ce" + }, + { + "label": null, + "output_name": "out_summary", + "uuid": "b5e93d2a-6ff7-48bb-aa4e-5a58683910c8" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow3_classification.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 3: Classification [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow3-classification", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow3_classification.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow3_classification.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow3-classification", + "workflow": "workflow3_classification.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0" + ], + "workflowhub_id": "1060" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMock Count Table\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMock Sequences\"]\n 2[label=\"Dist.seqs\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Cluster\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"out_dist\"]\n 4[label=\"Make.shared\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"otulist\"]\n 5[label=\"Rarefaction.single\"]\n 4 -> 5 [label=\"shared\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mock Count Table" + } + ], + "label": "Mock Count Table", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 11 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3c149509-370a-47f2-9f6d-a0fadcd7c1b6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mock Sequences" + } + ], + "label": "Mock Sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 7, + "top": 259 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c020d492-fb13-43c7-85e3-faa820866965", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nMock Count Table\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nMock Sequences\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Dist.seqs\"];\n 1 -->|output| 2;\n 3[\"Cluster\"];\n 0 -->|output| 3;\n 2 -->|out_dist| 3;\n 4[\"Make.shared\"];\n 0 -->|output| 4;\n 3 -->|otulist| 4;\n 5[\"Rarefaction.single\"];\n 4 -->|shared| 5;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 4: Mock OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "errors": null, + "id": 2, + "input_connections": { + "fasta": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Dist.seqs", + "outputs": [ + { + "name": "out_dist", + "type": "mothur.pair.dist" + } + ], + "position": { + "left": 276, + "top": 319 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "0554c9338ca0", + "name": "mothur_dist_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"calc\": \"\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"countends\": true, \"cutoff\": \"0.2\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"output\": \"\", \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "925be8d7-7355-4a1d-b375-b27826e4cd2e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_dist", + "uuid": "28fe4e3d-5be8-47e8-9cd3-527e8657c391" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "errors": null, + "id": 3, + "input_connections": { + "count": { + "id": 0, + "output_name": "output" + }, + "matrix|dist": { + "id": 2, + "output_name": "out_dist" + } + }, + "inputs": [], + "label": null, + "name": "Cluster", + "outputs": [ + { + "name": "rabund", + "type": "mothur.rabund" + }, + { + "name": "sabund", + "type": "mothur.sabund" + }, + { + "name": "otulist", + "type": "mothur.list" + } + ], + "position": { + "left": 570, + "top": 189 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "528f950d1044", + "name": "mothur_cluster", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": {\"__class__\": \"ConnectedValue\"}, \"cutoff\": \"0.0\", \"matrix\": {\"format\": \"column\", \"__current_case__\": 0, \"dist\": {\"__class__\": \"ConnectedValue\"}, \"name\": null}, \"precision\": \"100\", \"savelog\": false, \"select_method\": {\"method\": \"opti\", \"__current_case__\": 5, \"metric\": \"mcc\", \"initialize\": \"singleton\", \"delta\": \"0.0001\", \"iters\": \"100\"}, \"sim\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "3f508523-34c1-420a-a0b6-2524b4d85b52", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "rabund", + "uuid": "5f143144-eb84-4f88-9f57-87154dc29671" + }, + { + "label": null, + "output_name": "otulist", + "uuid": "3e79d92c-11c6-48f5-a0c2-cbf747690b2e" + }, + { + "label": null, + "output_name": "sabund", + "uuid": "a698d39c-c469-4867-9450-f9d80446d99f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "intype|group": { + "id": 0, + "output_name": "output" + }, + "intype|otu": { + "id": 3, + "output_name": "otulist" + } + }, + "inputs": [], + "label": null, + "name": "Make.shared", + "outputs": [ + { + "name": "logfile", + "type": "txt" + }, + { + "name": "shared", + "type": "mothur.shared" + }, + { + "name": "groupout", + "type": "mothur.groups" + } + ], + "position": { + "left": 898, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "0851ae17c58e", + "name": "mothur_make_shared", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"intype\": {\"infile\": \"otulist\", \"__current_case__\": 0, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"group\": {\"__class__\": \"ConnectedValue\"}, \"label\": [\"0.03\"], \"groups\": null}, \"savelog\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "72197339-b027-4c3e-85ba-edf401b82322", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "shared", + "uuid": "1d80db8c-04f6-45a0-a523-f87c7a4b87cf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "otu": { + "id": 4, + "output_name": "shared" + } + }, + "inputs": [], + "label": null, + "name": "Rarefaction.single", + "outputs": [ + { + "name": "rarefactioncurves", + "type": "input" + } + ], + "position": { + "left": 1172, + "top": 211 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "af521db77c56", + "name": "mothur_rarefaction_single", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"abund\": \"10\", \"calc\": [\"sobs\"], \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"freq\": \"100.0\", \"iters\": \"1000\", \"label\": null, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "6982780b-f8ac-4ff8-b862-29557494d9b4", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "rarefactioncurves", + "uuid": "cbf4d013-fa83-4bd9-9f97-1e3632362b36" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow4_mock_otu_clustering.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 4: Mock OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow4-mock-otu-clustering", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow4_mock_otu_clustering.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow4_mock_otu_clustering.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow4-mock-otu-clustering", + "workflow": "workflow4_mock_otu_clustering.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0" + ], + "workflowhub_id": "1125" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSequences\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCount Table\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTaxonomy\"]\n 3[label=\"Remove.groups\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Cluster.split\"]\n 3 -> 4 [label=\"fasta_out\"]\n 3 -> 4 [label=\"count_out\"]\n 3 -> 4 [label=\"taxonomy_out\"]\n 5[label=\"Make.shared\"]\n 3 -> 5 [label=\"count_out\"]\n 4 -> 5 [label=\"otulist\"]\n 6[label=\"Classify.otu\"]\n 3 -> 6 [label=\"count_out\"]\n 4 -> 6 [label=\"otulist\"]\n 3 -> 6 [label=\"taxonomy_out\"]\n 7[label=\"Count.groups\"]\n 5 -> 7 [label=\"shared\"]\n 8[label=\"Sub.sample\"]\n 5 -> 8 [label=\"shared\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sequences" + } + ], + "label": "Sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 16.300003051757812, + "height": 61.80000305175781, + "left": 116, + "right": 316, + "top": -45.5, + "width": 200, + "x": 116, + "y": -45.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9cdb4877-1fdf-41a7-8089-5f2ffcabbdda", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Count Table" + } + ], + "label": "Count Table", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 139.3000030517578, + "height": 61.80000305175781, + "left": 118, + "right": 318, + "top": 77.5, + "width": 200, + "x": 118, + "y": 77.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "c3ebf885-3d00-4db6-828b-8c9af54f77c7", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Taxonomy" + } + ], + "label": "Taxonomy", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 294.3000030517578, + "height": 61.80000305175781, + "left": 119, + "right": 319, + "top": 232.5, + "width": 200, + "x": 119, + "y": 232.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "2d1cebdc-28da-4686-8a5b-0043b34c9aac", + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSequences\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCount Table\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTaxonomy\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Remove.groups\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 2 -->|output| 3;\n 4[\"Cluster.split\"];\n 3 -->|fasta_out| 4;\n 3 -->|count_out| 4;\n 3 -->|taxonomy_out| 4;\n 5[\"Make.shared\"];\n 3 -->|count_out| 5;\n 4 -->|otulist| 5;\n 6[\"Classify.otu\"];\n 3 -->|count_out| 6;\n 4 -->|otulist| 6;\n 3 -->|taxonomy_out| 6;\n 7[\"Count.groups\"];\n 5 -->|shared| 7;\n 8[\"Sub.sample\"];\n 5 -->|shared| 8;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 5: OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "errors": null, + "id": 3, + "input_connections": { + "groupnames|fasta_in": { + "id": 0, + "output_name": "output" + }, + "groupnames|group_in": { + "id": 1, + "output_name": "output" + }, + "groupnames|taxonomy_in": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + }, + { + "description": "runtime parameter for tool Remove.groups", + "name": "groupnames" + } + ], + "label": null, + "name": "Remove.groups", + "outputs": [ + { + "name": "list_out", + "type": "input" + }, + { + "name": "fasta_out", + "type": "input" + }, + { + "name": "group_out", + "type": "mothur.groups" + }, + { + "name": "count_out", + "type": "mothur.count_table" + }, + { + "name": "name_out", + "type": "mothur.names" + }, + { + "name": "taxonomy_out", + "type": "mothur.seq.taxonomy" + }, + { + "name": "phylip_out", + "type": "input" + }, + { + "name": "column_out", + "type": "mothur.pair.dist" + } + ], + "position": { + "bottom": 1023.2999877929688, + "height": 916.7999877929688, + "left": 383, + "right": 583, + "top": 106.5, + "width": 200, + "x": 383, + "y": 106.5 + }, + "post_job_actions": { + "HideDatasetActionfasta_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fasta_out" + }, + "HideDatasetActionlist_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "list_out" + }, + "HideDatasetActionname_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "name_out" + }, + "HideDatasetActiontaxonomy_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "taxonomy_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "498dc0671d9e", + "name": "mothur_remove_groups", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"groupnames\": {\"source\": \"other\", \"__current_case__\": 0, \"group_in\": {\"__class__\": \"RuntimeValue\"}, \"groups\": \"Mock\", \"fasta_in\": {\"__class__\": \"RuntimeValue\"}, \"name_in\": {\"__class__\": \"RuntimeValue\"}, \"list_in\": {\"__class__\": \"RuntimeValue\"}, \"taxonomy_in\": {\"__class__\": \"RuntimeValue\"}, \"phylip_in\": {\"__class__\": \"RuntimeValue\"}, \"column_in\": {\"__class__\": \"RuntimeValue\"}}, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "90df5fc1-b437-48c1-a7d3-39062fef6c0b", + "workflow_outputs": [ + { + "label": null, + "output_name": "group_out", + "uuid": "3800548f-2976-4a6d-8b29-e501373719fd" + }, + { + "label": null, + "output_name": "phylip_out", + "uuid": "20631d19-d683-47c6-8ae1-7e856e242e8d" + }, + { + "label": null, + "output_name": "count_out", + "uuid": "bcd6f559-2b50-4c77-bf9c-9b9de5c7159a" + }, + { + "label": null, + "output_name": "column_out", + "uuid": "20bf370c-7d36-4579-b94c-ac816d789717" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "splitby|fasta": { + "id": 3, + "output_name": "fasta_out" + }, + "splitby|nameOrCount": { + "id": 3, + "output_name": "count_out" + }, + "splitby|taxonomy": { + "id": 3, + "output_name": "taxonomy_out" + } + }, + "inputs": [], + "label": null, + "name": "Cluster.split", + "outputs": [ + { + "name": "rabund", + "type": "mothur.rabund" + }, + { + "name": "sabund", + "type": "mothur.sabund" + }, + { + "name": "otulist", + "type": "mothur.list" + }, + { + "name": "sensspec", + "type": "txt" + } + ], + "position": { + "bottom": 530.7000122070312, + "height": 449.20001220703125, + "left": 748, + "right": 948, + "top": 81.5, + "width": 200, + "x": 748, + "y": 81.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "1b7fd1678230", + "name": "mothur_cluster_split", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cluster\": \"true\", \"cutoff\": \"0.03\", \"large\": \"false\", \"precision\": \"100\", \"runsensspec\": \"true\", \"savelog\": \"false\", \"splitby\": {\"splitmethod\": \"fasta\", \"__current_case__\": 2, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"taxonomy\": {\"__class__\": \"ConnectedValue\"}, \"nameOrCount\": {\"__class__\": \"ConnectedValue\"}, \"taxlevel\": \"4\", \"classic\": \"false\", \"condmethod\": {\"method\": \"opti\", \"__current_case__\": 5, \"metric\": \"mcc\", \"initialize\": \"singleton\", \"delta\": \"0.0001\", \"iters\": \"100\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "7dc5dce4-98b8-4ab3-9979-7dbe43d88b7e", + "workflow_outputs": [ + { + "label": null, + "output_name": "otulist", + "uuid": "e5100715-48a0-4ceb-a5d3-7003a43a747e" + }, + { + "label": null, + "output_name": "rabund", + "uuid": "3757ba3c-d4ba-46c7-b141-23f43678e392" + }, + { + "label": null, + "output_name": "sensspec", + "uuid": "f0e63d07-0f12-4ea0-b2ad-9ae6d16cd5bd" + }, + { + "label": null, + "output_name": "sabund", + "uuid": "9aecf4a0-cffa-49fd-9b5b-97d99fa7e2d2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "intype|group": { + "id": 3, + "output_name": "count_out" + }, + "intype|otu": { + "id": 4, + "output_name": "otulist" + } + }, + "inputs": [], + "label": null, + "name": "Make.shared", + "outputs": [ + { + "name": "shared", + "type": "mothur.shared" + }, + { + "name": "groupout", + "type": "mothur.groups" + } + ], + "position": { + "bottom": 445.8999938964844, + "height": 276.3999938964844, + "left": 1077, + "right": 1277, + "top": 169.5, + "width": 200, + "x": 1077, + "y": 169.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "0851ae17c58e", + "name": "mothur_make_shared", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"intype\": {\"infile\": \"otulist\", \"__current_case__\": 0, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"group\": {\"__class__\": \"ConnectedValue\"}, \"label\": [\"0.03\"], \"groups\": null}, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "57884bfc-06d6-4a1e-86cc-eb2ba23d6fe2", + "workflow_outputs": [ + { + "label": null, + "output_name": "shared", + "uuid": "f04218ea-84e1-489e-9d92-c44ad03414db" + }, + { + "label": null, + "output_name": "groupout", + "uuid": "6166859b-cc80-475b-97ff-f082289c1b56" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "count": { + "id": 3, + "output_name": "count_out" + }, + "otu": { + "id": 4, + "output_name": "otulist" + }, + "tax|taxonomy": { + "id": 3, + "output_name": "taxonomy_out" + } + }, + "inputs": [], + "label": null, + "name": "Classify.otu", + "outputs": [ + { + "name": "taxsummaries", + "type": "input" + }, + { + "name": "taxonomies", + "type": "input" + } + ], + "position": { + "bottom": 984.2999877929688, + "height": 428.79998779296875, + "left": 1121, + "right": 1321, + "top": 555.5, + "width": 200, + "x": 1121, + "y": 555.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "02446d12c359", + "name": "mothur_classify_otu", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"basis\": \"otu\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": {\"__class__\": \"ConnectedValue\"}, \"cutoff\": \"60\", \"group\": null, \"label\": [\"0.03\"], \"name\": null, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"output\": \"simple\", \"persample\": \"false\", \"printlevel\": \"-1\", \"probs\": \"true\", \"relabund\": \"false\", \"savelog\": \"false\", \"tax\": {\"source\": \"hist\", \"__current_case__\": 1, \"taxonomy\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "6dd79704-f3b8-4190-a7bb-34e2b4190436", + "workflow_outputs": [ + { + "label": null, + "output_name": "taxonomies", + "uuid": "add9561d-239b-4236-a875-c7870d8f4aa9" + }, + { + "label": null, + "output_name": "taxsummaries", + "uuid": "07f4f3ba-ee41-4f9b-aac9-ccc3262457f8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "errors": null, + "id": 7, + "input_connections": { + "group": { + "id": 5, + "output_name": "shared" + } + }, + "inputs": [], + "label": null, + "name": "Count.groups", + "outputs": [ + { + "name": "grp_count", + "type": "tabular" + }, + { + "name": "summary", + "type": "tabular" + } + ], + "position": { + "bottom": 150.89999389648438, + "height": 266.3999938964844, + "left": 1361, + "right": 1561, + "top": -115.5, + "width": 200, + "x": 1361, + "y": -115.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "03c86648a52e", + "name": "mothur_count_groups", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"group\": {\"__class__\": \"ConnectedValue\"}, \"groupnames\": {\"source\": \"none\", \"__current_case__\": 0}, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "5615bc17-0fdb-4610-ac78-c6aea2c08872", + "workflow_outputs": [ + { + "label": null, + "output_name": "summary", + "uuid": "1132f353-dc6c-4840-b8f1-91a8367af034" + }, + { + "label": null, + "output_name": "grp_count", + "uuid": "19b8b29e-2970-4b2c-a8e4-ca712b257658" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "errors": null, + "id": 8, + "input_connections": { + "input|otu": { + "id": 5, + "output_name": "shared" + } + }, + "inputs": [], + "label": null, + "name": "Sub.sample", + "outputs": [ + { + "name": "shared_out", + "type": "input" + } + ], + "position": { + "bottom": 544.6999969482422, + "height": 215.1999969482422, + "left": 1384, + "right": 1584, + "top": 329.5, + "width": 200, + "x": 1384, + "y": 329.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "67cb43432196", + "name": "mothur_sub_sample", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": null, \"input\": {\"format\": \"shared\", \"__current_case__\": 2, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"groups\": null, \"label\": null}, \"savelog\": \"false\", \"size\": \"2389\", \"taxonomy\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "eb70e45c-1ea9-4a34-9ac0-b27a5e7018a5", + "workflow_outputs": [ + { + "label": null, + "output_name": "shared_out", + "uuid": "a7df6943-cb20-46d7-ade1-66504b7e6eeb" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow5_otu_clustering.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 5: OTU Clustering [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow5-otu-clustering", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow5_otu_clustering.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow5_otu_clustering.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow5-otu-clustering", + "workflow": "workflow5_otu_clustering.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0" + ], + "workflowhub_id": "1133" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nShared file\"]\n 1[label=\"Rarefaction.single\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Summary.single\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Plotting tool\"]\n 1 -> 3 [label=\"rarefactioncurves\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Shared file" + } + ], + "label": "Shared file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 396.8000030517578, + "height": 61.80000305175781, + "left": 308, + "right": 508, + "top": 335, + "width": 200, + "x": 308, + "y": 335 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "58c65102-0358-4782-b4d3-1de61937b7f7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "43ede9d2-e2d2-46e0-a733-adea9336c50f" + } + ] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nShared file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Rarefaction.single\"];\n 0 -->|output| 1;\n 2[\"Summary.single\"];\n 0 -->|output| 2;\n 3[\"Plotting tool\"];\n 1 -->|rarefactioncurves| 3;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow 6: Alpha Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Shared file" + } + ], + "label": "Shared file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 396.8000030517578, + "height": 61.80000305175781, + "left": 308, + "right": 508, + "top": 335, + "width": 200, + "x": 308, + "y": 335 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "58c65102-0358-4782-b4d3-1de61937b7f7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "43ede9d2-e2d2-46e0-a733-adea9336c50f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "errors": null, + "id": 1, + "input_connections": { + "otu": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Rarefaction.single", + "outputs": [ + { + "name": "rarefactioncurves", + "type": "input" + } + ], + "position": { + "bottom": 349.8000030517578, + "height": 174.8000030517578, + "left": 618, + "right": 818, + "top": 175, + "width": 200, + "x": 618, + "y": 175 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "af521db77c56", + "name": "mothur_rarefaction_single", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"abund\": \"10\", \"calc\": [\"sobs\"], \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"freq\": \"100.0\", \"iters\": \"1000\", \"label\": null, \"otu\": null, \"savelog\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "57642a17-6be7-4133-b573-b0175ff8cc97", + "workflow_outputs": [ + { + "label": null, + "output_name": "rarefactioncurves", + "uuid": "955cdaca-e834-4f9b-b8d3-54d1e4e6b9cf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.2", + "errors": null, + "id": 2, + "input_connections": { + "otu": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Summary.single", + "outputs": [ + { + "name": "summaryfiles", + "type": "input" + }, + { + "name": "subsample_summary", + "type": "tabular" + }, + { + "name": "summary", + "type": "tabular" + } + ], + "position": { + "bottom": 811.2000122070312, + "height": 317.20001220703125, + "left": 619, + "right": 819, + "top": 494, + "width": 200, + "x": 619, + "y": 494 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.2", + "tool_shed_repository": { + "changeset_revision": "2344ed181ae6", + "name": "mothur_summary_single", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"abund\": \"10\", \"calc\": [\"sobs\", \"coverage\", \"invsimpson\", \"nseqs\"], \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"groupmode\": \"true\", \"label\": null, \"otu\": null, \"savelog\": \"false\", \"size\": \"2389\", \"subsample\": {\"use\": \"no\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.2", + "type": "tool", + "uuid": "43c58fe5-5ec2-41cf-bc7a-1aed1e4ea48a", + "workflow_outputs": [ + { + "label": null, + "output_name": "summaryfiles", + "uuid": "05892980-8cd2-42f6-814b-dab57c1ebe5c" + }, + { + "label": null, + "output_name": "summary", + "uuid": "8c30634d-fc8f-40d6-a5d0-93efde3874de" + }, + { + "label": null, + "output_name": "subsample_summary", + "uuid": "4e8da2ff-e4f5-4109-bfbd-9a23f978227b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "errors": null, + "id": 3, + "input_connections": { + "series_0|input": { + "id": 1, + "output_name": "rarefactioncurves" + } + }, + "inputs": [], + "label": null, + "name": "Plotting tool", + "outputs": [ + { + "name": "out_file_png", + "type": "png" + } + ], + "position": { + "bottom": 276.1999969482422, + "height": 93.19999694824219, + "left": 999, + "right": 1199, + "top": 183, + "width": 200, + "x": 999, + "y": 183 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "tool_shed_repository": { + "changeset_revision": "ecb437f1d298", + "name": "xy_plot", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"main\": \"Rarefaction\", \"outftype\": \"png\", \"series\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"header\": \"true\", \"xcol\": \"1\", \"ycol\": [\"2\", \"5\", \"8\", \"11\", \"14\", \"17\", \"20\", \"23\", \"26\", \"29\", \"32\", \"35\", \"38\", \"41\", \"44\", \"47\", \"50\", \"53\", \"56\"], \"series_type\": {\"type\": \"line\", \"__current_case__\": 0, \"lty\": \"1\", \"col\": \"1\", \"lwd\": \"1.0\"}}], \"series_0|input|__identifier__\": \"sobs\", \"xlab\": \"Number of Sequences\", \"ylab\": \"Number of OTUs\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "f9ef9628-4716-49f9-bf8a-e7ec68754881", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file_png", + "uuid": "9f66c76d-0d54-4dda-84f5-a9671fa77740" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow6_alpha_diversity.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow 6: Alpha Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow6-alpha-diversity", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow6_alpha_diversity.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow6_alpha_diversity.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow6-alpha-diversity", + "workflow": "workflow6_alpha_diversity.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.2" + ], + "workflowhub_id": "1129" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "16S Microbial Analysis with mothur (short)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nShared file from Make.shared\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nSub.sample shared\"]\n 2[label=\"Dist.shared\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Collapse Collection\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Heatmap.sim\"]\n 2 -> 4 [label=\"distfiles\"]\n 5[label=\"Tree.shared\"]\n 2 -> 5 [label=\"distfiles\"]\n 6[label=\"Venn\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Newick Display\"]\n 5 -> 7 [label=\"tre\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Shared file from Make.shared" + } + ], + "label": "Shared file from Make.shared", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 119, + "top": 28 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d0c07e4f-abd7-4af3-bda4-ab143e6859bb", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sub.sample shared" + } + ], + "label": "Sub.sample shared", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 161 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cc9198f5-b615-4317-9837-4cbc83f4b5e7", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nShared file from Make.shared\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nSub.sample shared\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Dist.shared\"];\n 0 -->|output| 2;\n 3[\"Collapse Collection\"];\n 1 -->|output| 3;\n 4[\"Heatmap.sim\"];\n 2 -->|distfiles| 4;\n 5[\"Tree.shared\"];\n 2 -->|distfiles| 5;\n 6[\"Venn\"];\n 3 -->|output| 6;\n 7[\"Newick Display\"];\n 5 -->|tre| 7;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Workflow7: Beta Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "errors": null, + "id": 3, + "input_connections": { + "input_list": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Collapse Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 138, + "top": 489 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "tool_shed_repository": { + "changeset_revision": "830961c48e42", + "name": "collapse_collections", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filename\": {\"add_name\": false, \"__current_case__\": 1}, \"input_list\": {\"__class__\": \"ConnectedValue\"}, \"one_header\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.2", + "type": "tool", + "uuid": "aa52952a-70eb-4ed6-b6b0-28225e04091a", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "01c16573-8bd5-4d62-92c0-74cd29af035a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "errors": null, + "id": 4, + "input_connections": { + "input|dist": { + "id": 2, + "output_name": "distfiles" + } + }, + "inputs": [], + "label": null, + "name": "Heatmap.sim", + "outputs": [ + { + "name": "heatmap", + "type": "svg" + } + ], + "position": { + "left": 805, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "7f5707dd6073", + "name": "mothur_heatmap_sim", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"count\": null, \"dist|__identifier__\": \"thetayc.0.03.lt.std\", \"fontsize\": \"24\", \"input\": {\"source\": \"phylip\", \"__current_case__\": 2, \"dist\": {\"__class__\": \"ConnectedValue\"}}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "aa3080d1-4ec6-4c1b-8be8-532a7e12c81c", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "heatmap", + "uuid": "6b90b099-6641-43b9-a347-5ce6e05ae67e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "errors": null, + "id": 5, + "input_connections": { + "input|dist": { + "id": 2, + "output_name": "distfiles" + } + }, + "inputs": [], + "label": null, + "name": "Tree.shared", + "outputs": [ + { + "name": "tre", + "type": "mothur.tre" + } + ], + "position": { + "left": 763, + "top": 438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "43e2715e98c9", + "name": "mothur_tree_shared", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__job_resource\": {\"__job_resource__select\": \"no\", \"__current_case__\": 0}, \"calc\": [\"jclass\", \"thetayc\"], \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dist|__identifier__\": \"thetayc.0.03.lt.std\", \"input\": {\"source\": \"phylip\", \"__current_case__\": 1, \"dist\": {\"__class__\": \"ConnectedValue\"}, \"name\": null}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "e6bebcdf-bb0a-4b50-82a1-8c0ca2711b5e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "tre", + "uuid": "3a746045-e178-492c-ac40-dab92ce5189f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "errors": null, + "id": 6, + "input_connections": { + "input|otu": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Venn", + "outputs": [ + { + "name": "sharedotus_out", + "type": "input" + }, + { + "name": "svgs_out", + "type": "input" + }, + { + "name": "logfile", + "type": "txt" + } + ], + "position": { + "left": 419, + "top": 454 + }, + "post_job_actions": { + "HideDatasetActionsharedotus_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "sharedotus_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "4db54b1c1d83", + "name": "mothur_venn", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fontsize\": \"24\", \"input\": {\"source\": \"shared\", \"__current_case__\": 0, \"otu\": {\"__class__\": \"ConnectedValue\"}, \"calc\": null, \"label\": null, \"groups\": [\"F3D0\", \"F3D1\", \"F3D2\", \"F3D3\"]}, \"nseqs\": false, \"permute\": \"4\", \"savelog\": true, \"sharedotus\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "932cccf7-1743-46e2-abb9-f148ca5b617b", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "svgs_out", + "uuid": "d3db2185-9a28-4bb2-abd6-6907377de73f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "fileNewick": { + "id": 5, + "output_name": "tre" + } + }, + "inputs": [], + "label": null, + "name": "Newick Display", + "outputs": [ + { + "name": "output", + "type": "svg" + } + ], + "position": { + "left": 1141, + "top": 56 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b4163d2f64ab", + "name": "newick_utils", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"mothur.tre\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"condbranchlength\": {\"branchlength\": \"false\", \"__current_case__\": 1}, \"condbranchsupport\": {\"branchsupport\": \"false\", \"__current_case__\": 1}, \"fileNewick\": {\"__class__\": \"ConnectedValue\"}, \"fileNewick|__identifier__\": \"thetayc.0.03.lt.std\", \"leafFont\": \"sans-serif\", \"leafSize\": \"10px\", \"legend\": \"\", \"outformat\": \"svg\", \"radial\": false, \"scalebar\": true, \"width\": \"800\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6+galaxy1", + "type": "tool", + "uuid": "8f4bff39-d764-4357-aae5-246c01ac2dcf", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "544ca4c5-82b3-4bf1-9ff1-c23ebce8b098" + } + ] + } + ], + "parent_id": "microbiome/mothur-miseq-sop-short", + "path": "topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow7_beta_diversity.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Workflow7: Beta Diversity [Galaxy Training: 16S Microbial Analysis With Mothur]", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop-short/versions/workflow7-beta-diversity", + "tutorial_id": "mothur-miseq-sop-short", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow7_beta_diversity.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop-short/workflows/workflow7_beta_diversity.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop-short", + "wfname": "workflow7-beta-diversity", + "workflow": "workflow7_beta_diversity.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_shared/mothur_dist_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2" + ], + "workflowhub_id": "1117" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.800651" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "c9f8fef1df74", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xy_plot", + "owner": "devteam", + "revisions": "ecb437f1d298", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_align_seqs", + "owner": "iuc", + "revisions": "abf7c15ecfef", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_chimera_vsearch", + "owner": "iuc", + "revisions": "12e856482d26", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_otu", + "owner": "iuc", + "revisions": "ff1bc0299372", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_classify_seqs", + "owner": "iuc", + "revisions": "09bf9e496c64", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster", + "owner": "iuc", + "revisions": "6366f4483b35", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_cluster_split", + "owner": "iuc", + "revisions": "19f45bdbffd9", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_groups", + "owner": "iuc", + "revisions": "dc3826bfc1ed", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_count_seqs", + "owner": "iuc", + "revisions": "ffee46220ddd", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_dist_seqs", + "owner": "iuc", + "revisions": "4d76fba83f24", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_dist_shared", + "owner": "iuc", + "revisions": "418100660ba3", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_filter_seqs", + "owner": "iuc", + "revisions": "3524ca06478e", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_get_groups", + "owner": "iuc", + "revisions": "03af14e245fb", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_heatmap_sim", + "owner": "iuc", + "revisions": "7f5707dd6073", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_biom", + "owner": "iuc", + "revisions": "0b5397a74165", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_contigs", + "owner": "iuc", + "revisions": "ab12df91b47f", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_make_shared", + "owner": "iuc", + "revisions": "d0967ae326be", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_pre_cluster", + "owner": "iuc", + "revisions": "6532c3424bfe", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_rarefaction_single", + "owner": "iuc", + "revisions": "47264675a4ea", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_groups", + "owner": "iuc", + "revisions": "498dc0671d9e", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_lineage", + "owner": "iuc", + "revisions": "947faa8b3205", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_remove_seqs", + "owner": "iuc", + "revisions": "008f62670efc", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_screen_seqs", + "owner": "iuc", + "revisions": "f4d7d5755f01", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_seq_error", + "owner": "iuc", + "revisions": "5a7674ac2c59", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_sub_sample", + "owner": "iuc", + "revisions": "67cb43432196", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_seqs", + "owner": "iuc", + "revisions": "600c14c6dcc5", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_summary_single", + "owner": "iuc", + "revisions": "72be09dfd803", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_taxonomy_to_krona", + "owner": "iuc", + "revisions": "db30eb96ea23", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_tree_shared", + "owner": "iuc", + "revisions": "8bca555fbcaf", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_unique_seqs", + "owner": "iuc", + "revisions": "a033f325ad8d", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_venn", + "owner": "iuc", + "revisions": "4db54b1c1d83", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "newick_utils", + "owner": "iuc", + "revisions": "fe4235285ee8", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: c9f8fef1df74\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xy_plot\n owner: devteam\n revisions: ecb437f1d298\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_align_seqs\n owner: iuc\n revisions: abf7c15ecfef\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_chimera_vsearch\n owner: iuc\n revisions: 12e856482d26\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_otu\n owner: iuc\n revisions: ff1bc0299372\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_classify_seqs\n owner: iuc\n revisions: '09bf9e496c64'\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster\n owner: iuc\n revisions: 6366f4483b35\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_cluster_split\n owner: iuc\n revisions: 19f45bdbffd9\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_groups\n owner: iuc\n revisions: dc3826bfc1ed\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_count_seqs\n owner: iuc\n revisions: ffee46220ddd\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_dist_seqs\n owner: iuc\n revisions: 4d76fba83f24\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_dist_shared\n owner: iuc\n revisions: 418100660ba3\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_filter_seqs\n owner: iuc\n revisions: 3524ca06478e\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_get_groups\n owner: iuc\n revisions: 03af14e245fb\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_heatmap_sim\n owner: iuc\n revisions: 7f5707dd6073\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_biom\n owner: iuc\n revisions: 0b5397a74165\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_contigs\n owner: iuc\n revisions: ab12df91b47f\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_make_shared\n owner: iuc\n revisions: d0967ae326be\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_pre_cluster\n owner: iuc\n revisions: 6532c3424bfe\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_rarefaction_single\n owner: iuc\n revisions: 47264675a4ea\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_groups\n owner: iuc\n revisions: 498dc0671d9e\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_lineage\n owner: iuc\n revisions: 947faa8b3205\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_remove_seqs\n owner: iuc\n revisions: '008f62670efc'\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_screen_seqs\n owner: iuc\n revisions: f4d7d5755f01\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_seq_error\n owner: iuc\n revisions: 5a7674ac2c59\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_sub_sample\n owner: iuc\n revisions: 67cb43432196\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_seqs\n owner: iuc\n revisions: 600c14c6dcc5\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_summary_single\n owner: iuc\n revisions: 72be09dfd803\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_taxonomy_to_krona\n owner: iuc\n revisions: db30eb96ea23\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_tree_shared\n owner: iuc\n revisions: 8bca555fbcaf\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_unique_seqs\n owner: iuc\n revisions: a033f325ad8d\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_venn\n owner: iuc\n revisions: 4db54b1c1d83\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: newick_utils\n owner: iuc\n revisions: fe4235285ee8\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + } + ], + "dir": "topics/microbiome/tutorials/mothur-miseq-sop", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Phylogenetic analysis", + "Taxonomic classification", + "Phylogenetic tree analysis", + "Phylogenetic tree generation", + "Sequence read processing", + "DNA barcoding", + "Sequence clustering", + "Phylogenetic tree reconstruction" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/mothur-miseq-sop", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "16S rRNA gene sequencing analysis results depend on the many algorithms used and their settings", + "Quality control and cleaning of your data is a crucial step in order to obtain optimal results", + "Adding a mock community to serve as a control sample can help you asses the error rate of your experimental setup", + "We can explore alpha and beta diversities using Krona and Phinch for dynamic visualizations" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "objectives": [ + "Analyze of 16S rRNA sequencing data using the mothur toolsuite in Galaxy", + "Using a mock community to assess the error rate of your sequencing experiment", + "Visualize sample diversity using Krona and Phinch" + ], + "pageviews": 7229, + "priority": 1000, + "pub_date": "2017-02-12", + "questions": [ + "What is the effect of normal variation in the gut microbiome on host health?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/mothur-miseq-sop/tutorial", + "/short/microbiome/mothur-miseq-sop", + "/short/T00205", + "/short/T00390" + ], + "short_id": "T00390", + "short_tools": [ + "mothur_remove_lineage", + "mothur_cluster_split", + "mothur_count_seqs", + "mothur_dist_shared", + "mothur_make_contigs", + "mothur_classify_otu", + "mothur_sub_sample", + "mothur_taxonomy_to_krona", + "mothur_chimera_vsearch", + "newick_display", + "mothur_venn", + "mothur_pre_cluster", + "XY_Plot_1", + "mothur_rarefaction_single", + "mothur_make_biom", + "mothur_screen_seqs", + "mothur_unique_seqs", + "mothur_count_groups", + "mothur_heatmap_sim", + "mothur_summary_seqs", + "mothur_tree_shared", + "mothur_remove_groups", + "mothur_make_shared", + "taxonomy_krona_chart", + "mothur_summary_single", + "mothur_cluster", + "mothur_seq_error", + "mothur_align_seqs", + "mothur_classify_seqs", + "mothur_get_groups", + "mothur_dist_seqs", + "mothur_filter_seqs", + "mothur_remove_seqs" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "microgalaxy" + ], + "time_estimation": "6h", + "title": "16S Microbial Analysis with mothur (extended)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.6.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_shared/mothur_dist_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_get_groups/mothur_get_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_biom/mothur_make_biom/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_contigs/mothur_make_contigs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_seq_error/mothur_seq_error/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_taxonomy_to_krona/mothur_taxonomy_to_krona/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mothur-miseq-sop", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/mothur-miseq-sop/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 179, + "visitors": 4695, + "workflows": [ + { + "creators": [], + "description": "16S Microbial Analysis with mothur (extended)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput FASTQ pairs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsilva.v4.fasta\"]\n 10[label=\"Count.seqs\"]\n 8 -> 10 [label=\"groups_out\"]\n 9 -> 10 [label=\"out_names\"]\n 11[label=\"Align.seqs\"]\n 1 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"out_fasta\"]\n 12[label=\"Summary.seqs\"]\n 10 -> 12 [label=\"seq_count\"]\n 11 -> 12 [label=\"out_align\"]\n 13[label=\"Screen.seqs\"]\n 10 -> 13 [label=\"seq_count\"]\n 11 -> 13 [label=\"out_align\"]\n 14[label=\"Filter.seqs\"]\n 13 -> 14 [label=\"fasta_out\"]\n 15[label=\"Unique.seqs\"]\n 14 -> 15 [label=\"filteredfasta\"]\n 13 -> 15 [label=\"count_out\"]\n 16[label=\"Pre.cluster\"]\n 15 -> 16 [label=\"out_fasta\"]\n 15 -> 16 [label=\"out_count\"]\n 17[label=\"Chimera.vsearch\"]\n 16 -> 17 [label=\"fasta_out\"]\n 16 -> 17 [label=\"count_out\"]\n 18[label=\"Remove.seqs\"]\n 17 -> 18 [label=\"out_accnos\"]\n 17 -> 18 [label=\"out_count\"]\n 16 -> 18 [label=\"fasta_out\"]\n 19[label=\"Classify.seqs\"]\n 2 -> 19 [label=\"output\"]\n 18 -> 19 [label=\"count_out\"]\n 18 -> 19 [label=\"fasta_out\"]\n 3 -> 19 [label=\"output\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrainset9_032012.pds.fasta\"]\n 20[label=\"Remove.lineage\"]\n 18 -> 20 [label=\"count_out\"]\n 18 -> 20 [label=\"fasta_out\"]\n 19 -> 20 [label=\"taxonomy_out\"]\n 21[label=\"Get.groups\"]\n 20 -> 21 [label=\"fasta_out\"]\n 20 -> 21 [label=\"count_out\"]\n 22[label=\"Remove.groups\"]\n 20 -> 22 [label=\"fasta_out\"]\n 20 -> 22 [label=\"count_out\"]\n 20 -> 22 [label=\"taxonomy_out\"]\n 23[label=\"Seq.error\"]\n 4 -> 23 [label=\"output\"]\n 21 -> 23 [label=\"count_out\"]\n 21 -> 23 [label=\"fasta_out\"]\n 24[label=\"Dist.seqs\"]\n 21 -> 24 [label=\"fasta_out\"]\n 25[label=\"Cluster.split\"]\n 22 -> 25 [label=\"fasta_out\"]\n 22 -> 25 [label=\"count_out\"]\n 22 -> 25 [label=\"taxonomy_out\"]\n 26[label=\"Cluster\"]\n 21 -> 26 [label=\"count_out\"]\n 24 -> 26 [label=\"out_dist\"]\n 27[label=\"Make.shared\"]\n 22 -> 27 [label=\"count_out\"]\n 25 -> 27 [label=\"otulist\"]\n 28[label=\"Classify.otu\"]\n 22 -> 28 [label=\"count_out\"]\n 25 -> 28 [label=\"otulist\"]\n 22 -> 28 [label=\"taxonomy_out\"]\n 29[label=\"Make.shared\"]\n 21 -> 29 [label=\"count_out\"]\n 26 -> 29 [label=\"otulist\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrainset9_032012.pds.tax\"]\n 30[label=\"Summary.single\"]\n 27 -> 30 [label=\"shared\"]\n 31[label=\"Count.groups\"]\n 27 -> 31 [label=\"shared\"]\n 32[label=\"Dist.shared\"]\n 27 -> 32 [label=\"shared\"]\n 33[label=\"Rarefaction.single\"]\n 27 -> 33 [label=\"shared\"]\n 34[label=\"Sub.sample\"]\n 27 -> 34 [label=\"shared\"]\n 35[label=\"Taxonomy-to-Krona\"]\n 28 -> 35 [label=\"taxonomies\"]\n 36[label=\"Rarefaction.single\"]\n 29 -> 36 [label=\"shared\"]\n 37[label=\"Tree.shared\"]\n 32 -> 37 [label=\"distfiles\"]\n 38[label=\"Heatmap.sim\"]\n 32 -> 38 [label=\"distfiles\"]\n 39[label=\"Plotting tool\"]\n 33 -> 39 [label=\"rarefactioncurves\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHMP_MOCK.v35.fasta\"]\n 40[label=\"Venn\"]\n 34 -> 40 [label=\"shared_out\"]\n 41[label=\"Make.biom\"]\n 28 -> 41 [label=\"taxonomies\"]\n 5 -> 41 [label=\"output\"]\n 34 -> 41 [label=\"shared_out\"]\n 42[label=\"Krona pie chart\"]\n 35 -> 42 [label=\"outputfile\"]\n 43[label=\"Newick Display\"]\n 37 -> 43 [label=\"tre\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmouse.dpw.metadata\"]\n 6[label=\"Make.contigs\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Summary.seqs\"]\n 6 -> 7 [label=\"fasta\"]\n 8[label=\"Screen.seqs\"]\n 6 -> 8 [label=\"fasta\"]\n 6 -> 8 [label=\"group\"]\n 9[label=\"Unique.seqs\"]\n 8 -> 9 [label=\"fasta_out\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Input FASTQ pairs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 200, + "top": 1211 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "a0cb222c-075e-4617-b919-5bfcf218e9b6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "silva.v4.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 211, + "top": 1316 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "074d08d3-5ea8-45ff-8ac2-f2553ccc484f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "trainset9_032012.pds.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 203, + "top": 1434 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "44b087dc-00b3-49c2-aad2-31cd468e9f2f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "trainset9_032012.pds.tax", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 207, + "top": 1581 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "986945e9-f3d2-4c0d-8eb4-8ff64517b6cd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [], + "label": "HMP_MOCK.v35.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3082, + "top": 273 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "1a21d45e-6e1a-4f0b-b5f2-5d60548c3eef", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [], + "label": "mouse.dpw.metadata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4677.5, + "top": 2893.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "56b633c1-dffb-4b67-8eee-c9cdb1fcdd5a", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput FASTQ pairs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nsilva.v4.fasta\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Count.seqs\"];\n 8 -->|groups_out| 10;\n 9 -->|out_names| 10;\n 11[\"Align.seqs\"];\n 1 -->|output| 11;\n 9 -->|out_fasta| 11;\n 12[\"Summary.seqs\"];\n 10 -->|seq_count| 12;\n 11 -->|out_align| 12;\n 13[\"Screen.seqs\"];\n 10 -->|seq_count| 13;\n 11 -->|out_align| 13;\n 14[\"Filter.seqs\"];\n 13 -->|fasta_out| 14;\n 15[\"Unique.seqs\"];\n 14 -->|filteredfasta| 15;\n 13 -->|count_out| 15;\n 16[\"Pre.cluster\"];\n 15 -->|out_fasta| 16;\n 15 -->|out_count| 16;\n 17[\"Chimera.vsearch\"];\n 16 -->|fasta_out| 17;\n 16 -->|count_out| 17;\n 18[\"Remove.seqs\"];\n 17 -->|out_accnos| 18;\n 17 -->|out_count| 18;\n 16 -->|fasta_out| 18;\n 19[\"Classify.seqs\"];\n 2 -->|output| 19;\n 18 -->|count_out| 19;\n 18 -->|fasta_out| 19;\n 3 -->|output| 19;\n 2[\"\u2139\ufe0f Input Dataset\\ntrainset9_032012.pds.fasta\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 20[\"Remove.lineage\"];\n 18 -->|count_out| 20;\n 18 -->|fasta_out| 20;\n 19 -->|taxonomy_out| 20;\n 21[\"Get.groups\"];\n 20 -->|fasta_out| 21;\n 20 -->|count_out| 21;\n 22[\"Remove.groups\"];\n 20 -->|fasta_out| 22;\n 20 -->|count_out| 22;\n 20 -->|taxonomy_out| 22;\n 23[\"Seq.error\"];\n 4 -->|output| 23;\n 21 -->|count_out| 23;\n 21 -->|fasta_out| 23;\n 24[\"Dist.seqs\"];\n 21 -->|fasta_out| 24;\n 25[\"Cluster.split\"];\n 22 -->|fasta_out| 25;\n 22 -->|count_out| 25;\n 22 -->|taxonomy_out| 25;\n 26[\"Cluster\"];\n 21 -->|count_out| 26;\n 24 -->|out_dist| 26;\n 27[\"Make.shared\"];\n 22 -->|count_out| 27;\n 25 -->|otulist| 27;\n 28[\"Classify.otu\"];\n 22 -->|count_out| 28;\n 25 -->|otulist| 28;\n 22 -->|taxonomy_out| 28;\n 29[\"Make.shared\"];\n 21 -->|count_out| 29;\n 26 -->|otulist| 29;\n 3[\"\u2139\ufe0f Input Dataset\\ntrainset9_032012.pds.tax\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 30[\"Summary.single\"];\n 27 -->|shared| 30;\n 31[\"Count.groups\"];\n 27 -->|shared| 31;\n 32[\"Dist.shared\"];\n 27 -->|shared| 32;\n 33[\"Rarefaction.single\"];\n 27 -->|shared| 33;\n 34[\"Sub.sample\"];\n 27 -->|shared| 34;\n 35[\"Taxonomy-to-Krona\"];\n 28 -->|taxonomies| 35;\n 36[\"Rarefaction.single\"];\n 29 -->|shared| 36;\n 37[\"Tree.shared\"];\n 32 -->|distfiles| 37;\n 38[\"Heatmap.sim\"];\n 32 -->|distfiles| 38;\n 39[\"Plotting tool\"];\n 33 -->|rarefactioncurves| 39;\n 4[\"\u2139\ufe0f Input Dataset\\nHMP_MOCK.v35.fasta\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 40[\"Venn\"];\n 34 -->|shared_out| 40;\n 41[\"Make.biom\"];\n 28 -->|taxonomies| 41;\n 5 -->|output| 41;\n 34 -->|shared_out| 41;\n 42[\"Krona pie chart\"];\n 35 -->|outputfile| 42;\n 43[\"Newick Display\"];\n 37 -->|tre| 43;\n 5[\"\u2139\ufe0f Input Dataset\\nmouse.dpw.metadata\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"Make.contigs\"];\n 0 -->|output| 6;\n 7[\"Summary.seqs\"];\n 6 -->|fasta| 7;\n 8[\"Screen.seqs\"];\n 6 -->|fasta| 8;\n 6 -->|group| 8;\n 9[\"Unique.seqs\"];\n 8 -->|fasta_out| 9;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Training: 16S rRNA Sequencing With Mothur: Main Tutorial", + "outputs": [], + "parent_id": "microbiome/mothur-miseq-sop", + "path": "topics/microbiome/tutorials/mothur-miseq-sop/workflows/mothur-miseq-sop.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Training: 16S rRNA Sequencing With Mothur: Main Tutorial", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-mothur-miseq-sop/versions/mothur-miseq-sop", + "tutorial_id": "mothur-miseq-sop", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop/workflows/mothur-miseq-sop.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/mothur-miseq-sop/workflows/mothur-miseq-sop.html", + "version": 1, + "wfid": "microbiome-mothur-miseq-sop", + "wfname": "mothur-miseq-sop", + "workflow": "mothur-miseq-sop.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.6.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/xy_plot/XY_Plot_1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_align_seqs/mothur_align_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_chimera_vsearch/mothur_chimera_vsearch/1.39.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_otu/mothur_classify_otu/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_classify_seqs/mothur_classify_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster/mothur_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_cluster_split/mothur_cluster_split/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_groups/mothur_count_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_count_seqs/mothur_count_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_seqs/mothur_dist_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_dist_shared/mothur_dist_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_filter_seqs/mothur_filter_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_get_groups/mothur_get_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_heatmap_sim/mothur_heatmap_sim/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_biom/mothur_make_biom/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_contigs/mothur_make_contigs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_make_shared/mothur_make_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_pre_cluster/mothur_pre_cluster/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_rarefaction_single/mothur_rarefaction_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_groups/mothur_remove_groups/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_lineage/mothur_remove_lineage/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_remove_seqs/mothur_remove_seqs/1.36.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_screen_seqs/mothur_screen_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_seq_error/mothur_seq_error/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_sub_sample/mothur_sub_sample/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_seqs/mothur_summary_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_summary_single/mothur_summary_single/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_taxonomy_to_krona/mothur_taxonomy_to_krona/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_tree_shared/mothur_tree_shared/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_unique_seqs/mothur_unique_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_venn/mothur_venn/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/newick_utils/newick_display/1.6" + ], + "workflowhub_id": "1101" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.800651" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "emboss_5", + "owner": "devteam", + "revisions": "63dd26468588", + "tool_panel_section_label": "EMBOSS", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_compute_length", + "owner": "devteam", + "revisions": "7d37cfda8e00", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "compose_text_param", + "owner": "iuc", + "revisions": "e188c9826e0f", + "tool_panel_section_label": "Expression Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "746e8e4bf929", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ivar_consensus", + "owner": "iuc", + "revisions": "40737febe339", + "tool_panel_section_label": "Virology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ivar_trim", + "owner": "iuc", + "revisions": "86a20ae274fc", + "tool_panel_section_label": "Virology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qualimap_bamqc", + "owner": "iuc", + "revisions": "19ece8afbaab", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_merge", + "owner": "iuc", + "revisions": "36677f429310", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "5826298f6a73", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ucsc_fatovcf", + "owner": "iuc", + "revisions": "78df8fc2b3ab", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_regex_finder", + "owner": "mbernt", + "revisions": "9a811adb714f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mafft", + "owner": "rnateam", + "revisions": "bf28a8cff401", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mimodd_main", + "owner": "wolma", + "revisions": "f0f2795de2c7", + "tool_panel_section_label": "MiModD", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: emboss_5\n owner: devteam\n revisions: 63dd26468588\n tool_panel_section_label: EMBOSS\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_compute_length\n owner: devteam\n revisions: 7d37cfda8e00\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: compose_text_param\n owner: iuc\n revisions: e188c9826e0f\n tool_panel_section_label: Expression Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 746e8e4bf929\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ivar_consensus\n owner: iuc\n revisions: 40737febe339\n tool_panel_section_label: Virology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ivar_trim\n owner: iuc\n revisions: 86a20ae274fc\n tool_panel_section_label: Virology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qualimap_bamqc\n owner: iuc\n revisions: 19ece8afbaab\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_merge\n owner: iuc\n revisions: 36677f429310\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 5826298f6a73\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ucsc_fatovcf\n owner: iuc\n revisions: 78df8fc2b3ab\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_regex_finder\n owner: mbernt\n revisions: 9a811adb714f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mafft\n owner: rnateam\n revisions: bf28a8cff401\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mimodd_main\n owner: wolma\n revisions: f0f2795de2c7\n tool_panel_section_label: MiModD\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/pox-tiled-amplicon/tutorial.json", + "contributions": { + "authorship": [ + "wm75", + "TKlingstrom" + ], + "funding": [ + "by-covid", + "elixir-converge", + "h2020-defend" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "se", + "email": "tomas.klingstrom@slu.se", + "id": "TKlingstrom", + "joined": "2018-11", + "matrix": "TKlingstrom:matrix.org", + "name": "Tomas Klingstr\u00f6m", + "orcid": "0000-0002-9504-1352", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/TKlingstrom/", + "twitter": "TKlingstrom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/TKlingstrom.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + }, + { + "avatar": "https://elixir-europe.org/sites/default/files/styles/right-medium/public/images/converge_logo.png", + "funder": true, + "funding_id": "871075", + "funding_statement": "ELIXIR CONVERGE is connecting and align ELIXIR Nodes to deliver sustainable FAIR life-science data management services. This project has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement \u2116 871075", + "funding_system": "cordis", + "github": false, + "id": "elixir-converge", + "joined": "2023-01", + "members": [ + "bgruening", + "hexylena" + ], + "name": "ELIXIR-CONVERGE", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-converge/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-converge.json" + }, + { + "funder": true, + "funding_id": "773701", + "funding_statement": "DEFEND is Addressing the dual emerging threats of African Swine Fever and Lumpy Skin Disease in Europe.\n\nThis work has received funding from the DEFEND project (www.defend2020.eu) with funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement No 773701.", + "funding_system": "cordis", + "github": false, + "id": "h2020-defend", + "joined": "2023-05", + "name": "Addressing the dual emerging threats of African Swine Fever and Lumpy Skin Disease in Europe", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/h2020-defend/", + "short_name": "DEFEND", + "url": "https://training.galaxyproject.org/training-material/api/funders/h2020-defend.json" + } + ], + "dir": "topics/variant-analysis/tutorials/pox-tiled-amplicon", + "edam_operation": [ + "Global alignment", + "Sequencing quality control", + "Sequence contamination filtering", + "Genome indexing", + "Sequence alignment", + "Sequence analysis", + "Read mapping", + "Sequence alignment analysis", + "Multiple sequence alignment", + "Generation", + "Local alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/pox-tiled-amplicon", + "inexact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Compared to other viruses, analysis of sequencing data from pox viruses is complicated by the rather large genome size and by the presence of inverted terminal repeats, but well-designed wet lab and bioinformatic workflows can handle these particularities.", + "Galaxy and its huge set of tools are flexible enough to handle half-genome sequencing data efficiently.", + "A mapping-based approach can result in high-quality consensus genome reconstructions from pox virus sequencing data and appears promising even when dealing with recombinant samples." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-03-20", + "objectives": [ + "Learn how to deal with pox virus genomes inverted terminal repeats through a combination of wet lab protocol and tailored bioinformatics", + "Construct a sample consensus genome from mapped reads", + "Explore a recombinant pox virus genome via a multiple-sequence alignment of consensus genome and references and through lists of mutations derived from it" + ], + "pageviews": 594, + "pub_date": "2023-05-15", + "questions": [ + "Which special challenges does one encounter during sequence data analysis of pox viruses?", + "How can standard workflows for viral mutation calling and consensus generation be adapted to the particularities of pox viruses?", + "How can viral consensus sequences, multiple-sequence alignments and mutation calls be generated from each other and used to answer questions about the data?" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections", + "upload-rules" + ], + "type": "internal" + } + ], + "short_id": "T00347", + "short_tools": [ + "samtools_view", + "rbc_mafft", + "Cut1", + "EMBOSS: maskseq51", + "ivar_consensus", + "Grep1", + "__APPLY_RULES__", + "datamash_ops", + "qualimap_bamqc", + "fatovcf", + "ivar_trim", + "__ZIP_COLLECTION__", + "fasta_regex_finder", + "fasta_compute_length", + "bwa_mem", + "upload1", + "param_value_from_file", + "compose_text_param", + "fastp", + "mimodd_info", + "Add_a_column1", + "samtools_merge" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "virology", + "one-health" + ], + "time_estimation": "4H", + "title": "Pox virus genome analysis from tiled-amplicon sequencing data", + "tools": [ + "Cut1", + "Grep1", + "__APPLY_RULES__", + "__ZIP_COLLECTION__", + "param_value_from_file", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ivar_consensus/ivar_consensus/1.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ivar_trim/ivar_trim/1.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2d+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_merge/samtools_merge/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ucsc_fatovcf/fatovcf/426+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mbernt/fasta_regex_finder/fasta_regex_finder/0.1.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.520+galaxy0", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_info/0.1.8_1", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "pox-tiled-amplicon", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/pox-tiled-amplicon/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/pox-tiled-amplicon/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/pox-tiled-amplicon/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 140, + "visitors": 497, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6897-1215", + "name": "Viktoria Isabel Schwarz" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-9464-6640", + "name": "Wolfgang Maier" + } + ], + "description": "From a reference and a primer scheme generate two masked half-genome references for ITR-aware pox virus sequencing data analysis.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPrimer Scheme\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference FASTA\"]\n 2[label=\"Select pool1 primers\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Select pool2 primers\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Compute sequence length\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Datamash\"]\n 2 -> 5 [label=\"out_file1\"]\n 6[label=\"Datamash\"]\n 3 -> 6 [label=\"out_file1\"]\n 7[label=\"Cut\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Compute\"]\n 5 -> 8 [label=\"out_file\"]\n 9[label=\"Get start position of Pool2\"]\n 6 -> 9 [label=\"out_file\"]\n 10[label=\"Get end position of sequence\"]\n 7 -> 10 [label=\"out_file1\"]\n 11[label=\"Get end position of Pool1\"]\n 8 -> 11 [label=\"out_file1\"]\n 12[label=\"Compose text parameter value\"]\n 9 -> 12 [label=\"text_param\"]\n 13[label=\"Compose text parameter value\"]\n 11 -> 13 [label=\"text_param\"]\n 10 -> 13 [label=\"text_param\"]\n 14[label=\"Mask Reference for Pool2\"]\n 1 -> 14 [label=\"output\"]\n 12 -> 14 [label=\"out1\"]\n kaf755a5e2b2049bc9d5234781f937f48[color=lightseagreen,label=\"Output\\nmasked_ref_pool2\"]\n 14 -> kaf755a5e2b2049bc9d5234781f937f48\n 15[label=\"Mask Reference for Pool1\"]\n 1 -> 15 [label=\"output\"]\n 13 -> 15 [label=\"out1\"]\n k0c3b5b20c426428ca08bc835a82477c1[color=lightseagreen,label=\"Output\\nmasked_ref_pool1\"]\n 15 -> k0c3b5b20c426428ca08bc835a82477c1\n}", + "history": [ + { + "hash": "79db81a7c1c23d9778536abaa9ca879f3b0bbda5", + "message": "Update pox-virus-tiled-amplicon-ref-masking.ga", + "num": 2, + "short_hash": "79db81a7c", + "unix": "1684740183" + }, + { + "hash": "314d08f56a2d904cbab620fa5400ed0dbfa9619a", + "message": "Add some material for new pox virus tiled amplicon tutorial", + "num": 1, + "short_hash": "314d08f56", + "unix": "1682289363" + } + ], + "inputs": [ + { + "annotation": "The workflow expects a primer scheme split into two separate sequencing pools. These pools must be denoted as pool1/pool2 in the BED score column. The pool ids may, optionally, be followed by indicators of the subpool for tiled PCR amplification (e.g., pool1a/pool1b/pool2a/pool2b)", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "The workflow expects a primer scheme split into two separate sequencing pools. These pools must be denoted as pool1/pool2 in the BED score column. The pool ids may, optionally, be followed by indicators of the subpool for tiled PCR amplification (e.g., pool1a/pool1b/pool2a/pool2b)", + "name": "Primer Scheme (BED file with Pool identifiers)" + } + ], + "label": "Primer Scheme", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 667.3406219482422 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "1829d4e0-ee74-4a94-8dc5-98a11d96b961", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "The viral reference sequence to map sequenced reads against", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "The viral reference sequence to map sequenced reads against", + "name": "Reference FASTA" + } + ], + "label": "Reference FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 251.7752034262281, + "top": 650.9021921247038 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f17c7022-fc94-42b5-ae90-7b3ec3d70ffb", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPrimer Scheme\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference FASTA\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Select pool1 primers\"];\n 0 -->|output| 2;\n 3[\"Select pool2 primers\"];\n 0 -->|output| 3;\n 4[\"Compute sequence length\"];\n 1 -->|output| 4;\n 5[\"Datamash\"];\n 2 -->|out_file1| 5;\n 6[\"Datamash\"];\n 3 -->|out_file1| 6;\n 7[\"Cut\"];\n 4 -->|output| 7;\n 8[\"Compute\"];\n 5 -->|out_file| 8;\n 9[\"Get start position of Pool2\"];\n 6 -->|out_file| 9;\n 10[\"Get end position of sequence\"];\n 7 -->|out_file1| 10;\n 11[\"Get end position of Pool1\"];\n 8 -->|out_file1| 11;\n 12[\"Compose text parameter value\"];\n 9 -->|text_param| 12;\n 13[\"Compose text parameter value\"];\n 11 -->|text_param| 13;\n 10 -->|text_param| 13;\n 14[\"Mask Reference for Pool2\"];\n 1 -->|output| 14;\n 12 -->|out1| 14;\n af755a5e-2b20-49bc-9d52-34781f937f48[\"Output\\nmasked_ref_pool2\"];\n 14 --> af755a5e-2b20-49bc-9d52-34781f937f48;\n style af755a5e-2b20-49bc-9d52-34781f937f48 stroke:#2c3143,stroke-width:4px;\n 15[\"Mask Reference for Pool1\"];\n 1 -->|output| 15;\n 13 -->|out1| 15;\n 0c3b5b20-c426-428c-a08b-c835a82477c1[\"Output\\nmasked_ref_pool1\"];\n 15 --> 0c3b5b20-c426-428c-a08b-c835a82477c1;\n style 0c3b5b20-c426-428c-a08b-c835a82477c1 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "pox-virus-tiled-amplicon-ref-masking", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "errors": null, + "id": 14, + "input_connections": { + "input1": { + "id": 1, + "output_name": "output" + }, + "regions": { + "id": 12, + "output_name": "out1" + } + }, + "inputs": [], + "label": "Mask Reference for Pool2", + "name": "maskseq", + "outputs": [ + { + "name": "out_file1", + "type": "fasta" + } + ], + "position": { + "left": 1438.15352300995, + "top": 648.5794855890229 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Masked reference for mapping of pool2" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "tool_shed_repository": { + "changeset_revision": "ce385837c160", + "name": "emboss_5", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"maskchar\": \"N\", \"out_format1\": \"fasta\", \"regions\": {\"__class__\": \"ConnectedValue\"}, \"tolower\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.0", + "type": "tool", + "uuid": "140608b3-48b3-46f2-92e3-2b9c3fb9e3b2", + "when": null, + "workflow_outputs": [ + { + "label": "masked_ref_pool2", + "output_name": "out_file1", + "uuid": "af755a5e-2b20-49bc-9d52-34781f937f48" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "errors": null, + "id": 15, + "input_connections": { + "input1": { + "id": 1, + "output_name": "output" + }, + "regions": { + "id": 13, + "output_name": "out1" + } + }, + "inputs": [], + "label": "Mask Reference for Pool1", + "name": "maskseq", + "outputs": [ + { + "name": "out_file1", + "type": "fasta" + } + ], + "position": { + "left": 1452.6333312988281, + "top": 223.50729370117188 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Masked reference for mapping of pool1" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "tool_shed_repository": { + "changeset_revision": "ce385837c160", + "name": "emboss_5", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"maskchar\": \"N\", \"out_format1\": \"fasta\", \"regions\": {\"__class__\": \"ConnectedValue\"}, \"tolower\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.0", + "type": "tool", + "uuid": "3c8b86c1-7e53-4b72-b836-88a921a368ba", + "when": null, + "workflow_outputs": [ + { + "label": "masked_ref_pool1", + "output_name": "out_file1", + "uuid": "0c3b5b20-c426-428c-a08b-c835a82477c1" + } + ] + } + ], + "parent_id": "variant-analysis/pox-tiled-amplicon", + "path": "topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.ga", + "tags": [ + "GTN", + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "pox-virus-tiled-amplicon-ref-masking", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-pox-tiled-amplicon/versions/pox-virus-tiled-amplicon-ref-masking", + "tutorial_id": "pox-tiled-amplicon", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.html", + "version": 2, + "wfid": "variant-analysis-pox-tiled-amplicon", + "wfname": "pox-virus-tiled-amplicon-ref-masking", + "workflow": "pox-virus-tiled-amplicon-ref-masking.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "param_value_from_file", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0+galaxy2" + ], + "workflowhub_id": "1078" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "a1f0b3f4b781", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "145f6d74ff5e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_call", + "owner": "iuc", + "revisions": "65432c3abf6c", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_indelqual", + "owner": "iuc", + "revisions": "426d707dfc47", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_viterbi", + "owner": "iuc", + "revisions": "aa35ee7f3ab2", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "bf675f34b056", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "revisions": "2a3a00c1fa0a", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "494b2ec08162", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "4df8de2d0e48", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: a1f0b3f4b781\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 145f6d74ff5e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_call\n owner: iuc\n revisions: 65432c3abf6c\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_indelqual\n owner: iuc\n revisions: 426d707dfc47\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_viterbi\n owner: iuc\n revisions: aa35ee7f3ab2\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: bf675f34b056\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff_sars_cov_2\n owner: iuc\n revisions: 2a3a00c1fa0a\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 494b2ec08162\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 4df8de2d0e48\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json", + "contributions": { + "authorship": [ + "mvdbeek", + "tnabtaf", + "blankenberg", + "nekrut" + ], + "editing": [ + "wm75" + ] + }, + "contributors": [ + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + }, + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/variant-analysis/tutorials/sars-cov-2", + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Genome indexing", + "SNP detection", + "Sequence alignment", + "Formatting", + "Read mapping", + "Generation", + "Data handling", + "Validation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/sars-cov-2", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Sequence data in the SRA can be directly imported into Galaxy", + "Collections enable efficient/parallel processing of sequence data from whole batches of samples", + "Genomic mutations in SARS-CoV-2 viral isolates can be identified through a straightforward pipeline involving sequenced reads preprocessing, mapping to the SARS-CoV-2 reference genome, postprocessing of mapping results, and variant calling" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand how Galaxy and the Sequence Read Archive interact", + "Be able to go from Galaxy to the Short Reach Archive, query SRA, use the SRA Run Selector to send selected metadata to Galaxy, and then import sequence data from SRA into Galaxy", + "Understand how collections enable processing of sequencing data in batches", + "Understand the analysis steps required to identify and annotate genomic mutations from sequencing data of SARS-CoV-2 samples" + ], + "pageviews": 18450, + "pub_date": "2020-06-24", + "questions": [ + "How can you download public sequencing data deposited in the NCBI Sequence Read Archive (SRA) into a Galaxy history for analysis?", + "How can you process a batch of sequencing data from several samples efficiently/in parallel with Galaxy?", + "Starting from raw sequenced reads of whole-genome sequenced samples of SARS-CoV-2, how can you identify mutations in the genomes of these samples?" + ], + "recordings": [ + { + "captioners": [ + "nekrut" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "nekrut" + ], + "youtube_id": "9mIL0tIfZ_o" + } + ], + "short_id": "T00315", + "short_tools": [ + "Grep1", + "picard_MarkDuplicates", + "samtools_stats", + "fastp", + "multiqc", + "tp_cut_tool", + "fasterq_dump", + "snpSift_extractFields", + "Filter1", + "lofreq_call", + "lofreq_indelqual", + "lofreq_viterbi", + "bwa_mem", + "snpeff_sars_cov_2" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "covid19", + "virology", + "one-health" + ], + "time_estimation": "1H", + "title": "From NCBI's Sequence Read Archive (SRA) to Galaxy: SARS-CoV-2 variant analysis", + "tools": [ + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.0.3+galaxy0" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-cov-2", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/sars-cov-2/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 175, + "visitors": 12116, + "workflows": [ + { + "creators": [], + "description": "Analysis of variation within individual COVID-19 samples (Paired End Illumina). Does not use paured", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNC_045512.2 fasta file\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRA Manifest\"]\n 2[label=\"Faster Download and Extract Reads in FASTQ\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"fastp\"]\n 2 -> 3 [label=\"list_paired\"]\n 4[label=\"Map with BWA-MEM\"]\n 3 -> 4 [label=\"output_paired_coll\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"MarkDuplicates\"]\n 4 -> 5 [label=\"bam_output\"]\n 6[label=\"Realign reads\"]\n 5 -> 6 [label=\"outFile\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Samtools stats\"]\n 5 -> 7 [label=\"outFile\"]\n 8[label=\"Insert indel qualities\"]\n 6 -> 8 [label=\"realigned\"]\n 0 -> 8 [label=\"output\"]\n k2ca7c89b999f41dc8037e54e25959a7e[color=lightseagreen,label=\"Output\\nRealigned Alignments with Indel Qualities\"]\n 8 -> k2ca7c89b999f41dc8037e54e25959a7e\n 9[label=\"Call variants\"]\n 8 -> 9 [label=\"output\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"SnpEff eff:\"]\n 9 -> 10 [label=\"variants\"]\n 11[label=\"SnpSift Extract Fields\"]\n 10 -> 11 [label=\"snpeff_output\"]\n k06259137eaa5404a923c70ee5f1d89d4[color=lightseagreen,label=\"Output\\nSnpSift tabular output\"]\n 11 -> k06259137eaa5404a923c70ee5f1d89d4\n 12[label=\"MultiQC\"]\n 3 -> 12 [label=\"report_json\"]\n 7 -> 12 [label=\"output\"]\n 5 -> 12 [label=\"metrics_file\"]\n 10 -> 12 [label=\"csvFile\"]\n k758ffde57ddd482a88b21504f8335488[color=lightseagreen,label=\"Output\\nMultiQC Report PE\"]\n 12 -> k758ffde57ddd482a88b21504f8335488\n}", + "history": [ + { + "hash": "18338ab9a1ef29b46dc8f2e8a7f7a4b055f16e3d", + "message": "Use correct fasterqdump version", + "num": 7, + "short_hash": "18338ab9a", + "unix": "1593005231" + }, + { + "hash": "979d6cd2174d0f2ce10ad195d9d3cc4b29a1623a", + "message": "Reformat workflow, bump lofreq to 2.1.5", + "num": 6, + "short_hash": "979d6cd21", + "unix": "1593004337" + }, + { + "hash": "ced05a792b3048548fd31a9d0bde9a1bf634481f", + "message": "Fix workflow connections", + "num": 5, + "short_hash": "ced05a792", + "unix": "1592944690" + }, + { + "hash": "1c38a3ed277eb7434c02927dce89f72e8a9c0c78", + "message": "Use newer, simpler output", + "num": 4, + "short_hash": "1c38a3ed2", + "unix": "1592943019" + }, + { + "hash": "a58450027f50bbdb5e91ee3529c7deef7ee1cf4e", + "message": "add topic tag to workflow", + "num": 3, + "short_hash": "a58450027", + "unix": "1592838416" + }, + { + "hash": "e8eea07056121bf6ee287bec31c64cd69d2e6dcb", + "message": "reformat workflow", + "num": 2, + "short_hash": "e8eea0705", + "unix": "1592835884" + }, + { + "hash": "a06c40264814dc80888f2a9ce28d4f06c2c3e687", + "message": "Skeleton from PE sars-cov-2 workflow", + "num": 1, + "short_hash": "a06c40264", + "unix": "1592389814" + } + ], + "inputs": [ + { + "annotation": "Contains SARS-CoV-2 reference sequence", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Contains SARS-CoV-2 reference sequence", + "name": "NC_045512.2 fasta file" + } + ], + "label": "NC_045512.2 fasta file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 317.85511016845703 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0e91bcb8-fa43-4fc5-87f9-9e65784373e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1dedf4c3-5fc4-4505-baa0-b13e4416d67d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRA Manifest" + } + ], + "label": "SRA Manifest", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 372.3295364379883 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3c5adef0-7af6-435e-bb10-966361130b58", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fa458185-44d5-4d2d-ad69-20595c8ad337" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nNC_045512.2 fasta file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSRA Manifest\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Faster Download and Extract Reads in FASTQ\"];\n 1 -->|output| 2;\n 3[\"fastp\"];\n 2 -->|list_paired| 3;\n 4[\"Map with BWA-MEM\"];\n 3 -->|output_paired_coll| 4;\n 0 -->|output| 4;\n 5[\"MarkDuplicates\"];\n 4 -->|bam_output| 5;\n 6[\"Realign reads\"];\n 5 -->|outFile| 6;\n 0 -->|output| 6;\n 7[\"Samtools stats\"];\n 5 -->|outFile| 7;\n 8[\"Insert indel qualities\"];\n 6 -->|realigned| 8;\n 0 -->|output| 8;\n 2ca7c89b-999f-41dc-8037-e54e25959a7e[\"Output\\nRealigned Alignments with Indel Qualities\"];\n 8 --> 2ca7c89b-999f-41dc-8037-e54e25959a7e;\n style 2ca7c89b-999f-41dc-8037-e54e25959a7e stroke:#2c3143,stroke-width:4px;\n 9[\"Call variants\"];\n 8 -->|output| 9;\n 0 -->|output| 9;\n 10[\"SnpEff eff:\"];\n 9 -->|variants| 10;\n 11[\"SnpSift Extract Fields\"];\n 10 -->|snpeff_output| 11;\n 06259137-eaa5-404a-923c-70ee5f1d89d4[\"Output\\nSnpSift tabular output\"];\n 11 --> 06259137-eaa5-404a-923c-70ee5f1d89d4;\n style 06259137-eaa5-404a-923c-70ee5f1d89d4 stroke:#2c3143,stroke-width:4px;\n 12[\"MultiQC\"];\n 3 -->|report_json| 12;\n 7 -->|output| 12;\n 5 -->|metrics_file| 12;\n 10 -->|csvFile| 12;\n 758ffde5-7ddd-482a-88b2-1504f8335488[\"Output\\nMultiQC Report PE\"];\n 12 --> 758ffde5-7ddd-482a-88b2-1504f8335488;\n style 758ffde5-7ddd-482a-88b2-1504f8335488 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Simple COVID-19 - PE Variation", + "outputs": [ + { + "annotation": "Contains SARS-CoV-2 reference sequence", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Contains SARS-CoV-2 reference sequence", + "name": "NC_045512.2 fasta file" + } + ], + "label": "NC_045512.2 fasta file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 317.85511016845703 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0e91bcb8-fa43-4fc5-87f9-9e65784373e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1dedf4c3-5fc4-4505-baa0-b13e4416d67d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRA Manifest" + } + ], + "label": "SRA Manifest", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 372.3295364379883 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3c5adef0-7af6-435e-bb10-966361130b58", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fa458185-44d5-4d2d-ad69-20595c8ad337" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input|file_list": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Faster Download and Extract Reads in FASTQ", + "name": "input" + } + ], + "label": null, + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 342.9971618652344, + "top": 317.85511016845703 + }, + "post_job_actions": { + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionoutput_collection": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection" + }, + "HideDatasetActionoutput_collection_other": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection_other" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "tool_shed_repository": { + "changeset_revision": "248f85ff0733", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"minlen\": \"\", \"split\": \"--split-3\", \"skip_technical\": \"true\"}, \"input\": {\"input_select\": \"file_list\", \"__current_case__\": 2, \"file_list\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.10.7+galaxy1", + "type": "tool", + "uuid": "3ce5b504-3641-4ea9-8d24-07f9bebaec23", + "workflow_outputs": [ + { + "label": null, + "output_name": "list_paired", + "uuid": "9e5c0368-e97c-4def-9704-1b902fbb2ed7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "reads": { + "id": 6, + "output_name": "realigned" + }, + "strategy|reference_source|ref": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Insert indel qualities", + "outputs": [ + { + "name": "output", + "type": "bam" + } + ], + "position": { + "left": 1057.5852355957031, + "top": 317.85511016845703 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Realigned Alignments with Indel Qualities" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "354b534eeab7", + "name": "lofreq_indelqual", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"reads\": {\"__class__\": \"ConnectedValue\"}, \"strategy\": {\"selector\": \"dindel\", \"__current_case__\": 1, \"reference_source\": {\"ref_selector\": \"history\", \"__current_case__\": 1, \"ref\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.5+galaxy0", + "type": "tool", + "uuid": "cbc7ee7f-5cfa-4d45-a83e-623efbf66068", + "workflow_outputs": [ + { + "label": "Realigned Alignments with Indel Qualities", + "output_name": "output", + "uuid": "2ca7c89b-999f-41dc-8037-e54e25959a7e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "variants" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "intervals" + }, + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "transcripts" + } + ], + "label": null, + "name": "SnpEff eff:", + "outputs": [ + { + "name": "snpeff_output", + "type": "vcf" + }, + { + "name": "statsFile", + "type": "html" + }, + { + "name": "csvFile", + "type": "csv" + } + ], + "position": { + "left": 1343.0823059082031, + "top": 317.85511016845703 + }, + "post_job_actions": { + "HideDatasetActioncsvFile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "csvFile" + }, + "HideDatasetActionstatsFile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "statsFile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "tool_shed_repository": { + "changeset_revision": "2a3a00c1fa0a", + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotations\": [\"-formatEff\", \"-classic\"], \"chr\": \"\", \"csvStats\": \"true\", \"filter\": {\"specificEffects\": \"no\", \"__current_case__\": 0}, \"filterOut\": [\"-no-downstream\", \"-no-intergenic\", \"-no-upstream\", \"-no-utr\"], \"generate_stats\": \"true\", \"genome_version\": \"NC_045512.2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inputFormat\": \"vcf\", \"intervals\": {\"__class__\": \"RuntimeValue\"}, \"noLog\": \"true\", \"offset\": \"default\", \"outputConditional\": {\"outputFormat\": \"vcf\", \"__current_case__\": 0}, \"transcripts\": {\"__class__\": \"RuntimeValue\"}, \"udLength\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.5covid19", + "type": "tool", + "uuid": "8fb55fb1-4986-45f5-bb6b-45c1329842b2", + "workflow_outputs": [ + { + "label": null, + "output_name": "snpeff_output", + "uuid": "d5bec60d-c853-4979-a191-e69f47539684" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 10, + "output_name": "snpeff_output" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Extract Fields", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1486.0794982910156, + "top": 317.85511016845703 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "SnpSift tabular output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "tool_shed_repository": { + "changeset_revision": "2b3e65a4252f", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"empty_text\": \".\", \"extract\": \"CHROM POS REF ALT QUAL DP AF SB DP4 EFF[*].IMPACT EFF[*].FUNCLASS EFF[*].EFFECT EFF[*].GENE EFF[*].CODON\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"one_effect_per_line\": \"false\", \"separator\": \",\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy0", + "type": "tool", + "uuid": "33e13bce-928f-41d6-b418-bc0a9e53d83d", + "workflow_outputs": [ + { + "label": "SnpSift tabular output", + "output_name": "output", + "uuid": "06259137-eaa5-404a-923c-70ee5f1d89d4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "results_0|software_cond|input": { + "id": 3, + "output_name": "report_json" + }, + "results_1|software_cond|output_0|type|input": { + "id": 7, + "output_name": "output" + }, + "results_2|software_cond|output_0|input": { + "id": 5, + "output_name": "metrics_file" + }, + "results_3|software_cond|input": { + "id": 10, + "output_name": "csvFile" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "plots", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1486.0794982910156, + "top": 397.8408889770508 + }, + "post_job_actions": { + "HideDatasetActionplots": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "plots" + }, + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC Report PE" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "bf675f34b056", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"flat\": \"false\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastp\", \"__current_case__\": 7, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"samtools\", \"__current_case__\": 23, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"stats\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 3, \"software_cond\": {\"software\": \"snpeff\", \"__current_case__\": 25, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8+galaxy0", + "type": "tool", + "uuid": "8c98527f-d1db-4cc4-89f1-1e75c508b8e9", + "workflow_outputs": [ + { + "label": "MultiQC Report PE", + "output_name": "html_report", + "uuid": "758ffde5-7ddd-482a-88b2-1504f8335488" + } + ] + } + ], + "parent_id": "variant-analysis/sars-cov-2", + "path": "topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": false, + "title": "Simple COVID-19 - PE Variation", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-sars-cov-2/versions/main-workflow", + "tutorial_id": "sars-cov-2", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.html", + "version": 1, + "wfid": "variant-analysis-sars-cov-2", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1" + ], + "workflowhub_id": "1074" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "emboss_5", + "owner": "devteam", + "revisions": "63dd26468588", + "tool_panel_section_label": "EMBOSS", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "fed4aa48ba09", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "1171446da5db", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "c59d48774d03", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jvarkit_wgscoverageplotter", + "owner": "iuc", + "revisions": "ac048a34cac3", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mosdepth", + "owner": "iuc", + "revisions": "5854d0da92b4", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qualimap_bamqc", + "owner": "iuc", + "revisions": "4a89c6f84425", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snippy", + "owner": "iuc", + "revisions": "d220115f882b", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tb_variant_filter", + "owner": "iuc", + "revisions": "32f14a2723ec", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbprofiler", + "owner": "iuc", + "revisions": "4839e590cb26", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbvcfreport", + "owner": "iuc", + "revisions": "42818629ec4c", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbvcfreport", + "owner": "iuc", + "revisions": "9793bc5d741b", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: emboss_5\n owner: devteam\n revisions: 63dd26468588\n tool_panel_section_label: EMBOSS\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: fed4aa48ba09\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: 1171446da5db\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: c59d48774d03\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jvarkit_wgscoverageplotter\n owner: iuc\n revisions: ac048a34cac3\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mosdepth\n owner: iuc\n revisions: 5854d0da92b4\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qualimap_bamqc\n owner: iuc\n revisions: 4a89c6f84425\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snippy\n owner: iuc\n revisions: d220115f882b\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tb_variant_filter\n owner: iuc\n revisions: 32f14a2723ec\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbprofiler\n owner: iuc\n revisions: 4839e590cb26\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbvcfreport\n owner: iuc\n revisions: 42818629ec4c\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbvcfreport\n owner: iuc\n revisions: 9793bc5d741b\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.json", + "contributors": [ + { + "bio": "Research at the South African National Bioinformatics Institute", + "id": "pvanheus", + "joined": "2017-09", + "name": "Peter van Heusden", + "orcid": "0000-0001-6553-5274", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pvanheus/", + "twitter": "pvanheus", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pvanheus.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "id": "thobalose", + "joined": "2019-11", + "name": "Thoba Lose", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/thobalose/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/thobalose.json" + } + ], + "dir": "topics/variant-analysis/tutorials/tb-variant-analysis", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0196", + "topic_0199", + "topic_3305", + "topic_3324" + ], + "edam_operation": [ + "Global alignment", + "Sequencing quality control", + "Sequence contamination filtering", + "Sequence alignment", + "Sequence analysis", + "Sequence composition calculation", + "Sequence alignment analysis", + "Taxonomic classification", + "Phylogenetic tree generation", + "Variant calling", + "Local alignment", + "Phylogenetic tree visualisation", + "Validation", + "Genome visualisation", + "Statistical calculation", + "Antimicrobial resistance prediction" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Sequence assembly", + "Genetic variation", + "Public health and epidemiology", + "Infectious disease" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/tb-variant-analysis", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "variants in _M. tuberculosis_ sequencing data can be discovered using common microbial bioinformatics tools", + "it is not enough to just call variants, variant calling involves multiple quality control steps", + "the choice of reference genome and some quality control procedures are species-specific, and require knowledge of the organism in question", + "batches of samples can be processed using Galaxy dataset collections and workflows" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-07-26", + "objectives": [ + "How should we filter those variants", + "How can we predict drug resistance from those variants", + "How do we annotate those variants" + ], + "pageviews": 8997, + "pub_date": "2020-07-25", + "questions": [ + "How do we detect differences between a set of reads from _M. tuberculosis_ (Mtb) and the Mtb reference genome" + ], + "recordings": [ + { + "captioners": [ + "pvanheus", + "nagoue", + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "40M", + "speakers": [ + "pvanheus" + ], + "youtube_id": "G1DmquX6Wh8" + }, + { + "captioners": [ + "pvanheus" + ], + "date": "2024-06-11", + "galaxy_version": "24.0", + "length": "1H17M", + "speakers": [ + "pvanheus" + ], + "youtube_id": "-nJPngFk36c" + } + ], + "short_id": "T00319", + "short_tools": [ + "tp_awk_tool", + "kraken2", + "bcftools_consensus", + "mosdepth", + "EMBOSS: seqret84", + "tb_profiler_profile", + "qualimap_bamqc", + "samtools_stats", + "tb_variant_filter", + "tp_sed_tool", + "EMBOSS:%20seqret84", + "upload1", + "tbvcfreport", + "fastp", + "jbrowse", + "multiqc", + "jvarkit_wgscoverageplotter", + "snippy", + "fastqc", + "__FLATTEN__" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "prokaryote", + "one-health", + "microgalaxy", + "tuberculosis" + ], + "time_estimation": "2h", + "title": "M. tuberculosis Variant Analysis", + "tools": [ + "__FLATTEN__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: seqret84/5.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS:%20seqret84/5.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.5", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jvarkit_wgscoverageplotter/jvarkit_wgscoverageplotter/20201223+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/mosdepth/mosdepth/0.3.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2c+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.1+galaxy0", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tb-variant-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.json" + }, + "version": 30, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 177, + "visitors": 5641, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-6553-5274", + "name": "Peter van Heusden" + } + ], + "description": "Predict variants and drug resistance from M. tuberculosis sequence samples (Illumina)", + "features": { + "comments": false, + "parameters": true, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow Inputs\n```galaxy\ninvocation_inputs()\n```\n\n## Workflow Outputs\n```galaxy\ninvocation_outputs()\n```\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nReads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference Genome\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMinimum depth of coverage\"]\n 3[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMinimum variant allele frequency\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nAdditional BWA-MEM options\"]\n 5[label=\"fastp\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"seqret\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"snippy\"]\n 4 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 3 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"output_paired_coll\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"Kraken2\"]\n 5 -> 8 [label=\"output_paired_coll\"]\n kc7abf2bfed4c433ea6959eca61282bb5[color=lightseagreen,label=\"Output\\nreport_output\"]\n 8 -> kc7abf2bfed4c433ea6959eca61282bb5\n k083a0e5177804c91a071dc0e4641d060[color=lightseagreen,label=\"Output\\noutput\"]\n 8 -> k083a0e5177804c91a071dc0e4641d060\n 9[label=\"QualiMap BamQC\"]\n 7 -> 9 [label=\"snpsbam\"]\n 10[label=\"mosdepth\"]\n 2 -> 10 [label=\"output\"]\n 7 -> 10 [label=\"snpsbam\"]\n 11[label=\"TB Variant Filter\"]\n 7 -> 11 [label=\"snpvcf\"]\n 12[label=\"TB-Profiler Profile\"]\n 7 -> 12 [label=\"snpsbam\"]\n k335635b4a4de4980ad0268f0035daeaa[color=lightseagreen,label=\"Output\\noutput_txt\"]\n 12 -> k335635b4a4de4980ad0268f0035daeaa\n 13[label=\"TB Variant Filter\"]\n 7 -> 13 [label=\"snpvcf\"]\n 14[label=\"Flatten collection\"]\n 9 -> 14 [label=\"raw_data\"]\n 15[label=\"Text reformatting\"]\n 10 -> 15 [label=\"output_quantized_bed\"]\n 16[label=\"Text transformation\"]\n 11 -> 16 [label=\"output1\"]\n k007df8c2bd13495f8904abf31d4594d0[color=lightseagreen,label=\"Output\\nFinal annotated VCF\"]\n 16 -> k007df8c2bd13495f8904abf31d4594d0\n 17[label=\"MultiQC\"]\n 5 -> 17 [label=\"report_json\"]\n 14 -> 17 [label=\"output\"]\n k5952823575254ef9881036f1ed0f01f6[color=lightseagreen,label=\"Output\\nhtml_report\"]\n 17 -> k5952823575254ef9881036f1ed0f01f6\n 18[label=\"bcftools consensus\"]\n 13 -> 18 [label=\"output1\"]\n 6 -> 18 [label=\"out_file1\"]\n 15 -> 18 [label=\"outfile\"]\n kc71b135d35f944d0a20ef25528e518af[color=lightseagreen,label=\"Output\\nconsensus_genome\"]\n 18 -> kc71b135d35f944d0a20ef25528e518af\n 19[label=\"TB Variant Report\"]\n 16 -> 19 [label=\"output\"]\n 12 -> 19 [label=\"results_json\"]\n k959528d2f8f2444099cf44fddd6c5069[color=lightseagreen,label=\"Output\\ndrug_resistance_report_html\"]\n 19 -> k959528d2f8f2444099cf44fddd6c5069\n k4d9636eb075b4fd2a1e41a7c37a17fc0[color=lightseagreen,label=\"Output\\nvariants_report_html\"]\n 19 -> k4d9636eb075b4fd2a1e41a7c37a17fc0\n}", + "history": [ + { + "hash": "c0042e7f333bb9758580a564dbf559e83396a6d3", + "message": "Update to address comments from wm", + "num": 14, + "short_hash": "c0042e7f3", + "unix": "1718025591" + }, + { + "hash": "01cf3d5e27fb411603014ca3e0729b2daacc0a0d", + "message": "Add snippers for running workflow from workflowhub.eu and jbrowse vis", + "num": 13, + "short_hash": "01cf3d5e2", + "unix": "1717788409" + }, + { + "hash": "d3db4cd3e349677c907c71a761fde1b2935928d2", + "message": "Update the M. tuberculosis variant analysis tutorial * Update all tools to latest versions * Change to fastp instead of Trimmomatic * Add section on running workflow * Update workflow and workflow test", + "num": 12, + "short_hash": "d3db4cd3e", + "unix": "1717771237" + }, + { + "hash": "d61d5645fa6b21c25cd5d09f540c4e584b35f2c2", + "message": "Update tb_variant_filter to v. 0.4.0", + "num": 11, + "short_hash": "d61d5645f", + "unix": "1695643686" + }, + { + "hash": "c89f11fe32c66c1da9f058ec3fa522e8b18cba82", + "message": "Update some tools in tuberculosis variant analysis tutorial (#4070)", + "num": 10, + "short_hash": "c89f11fe3", + "unix": "1682624753" + }, + { + "hash": "fa9e9fb000ef9d2ab91acc67c4f338c213d641e2", + "message": "New variant of tb_variant_filter and tbprofiler, more detail on tb_variant_filter", + "num": 9, + "short_hash": "fa9e9fb00", + "unix": "1672566129" + }, + { + "hash": "6e9c1860b186754249a0a90d9957dbace653e9ac", + "message": "Restore workflow indentation and fix WF step order", + "num": 8, + "short_hash": "6e9c1860b", + "unix": "1648048765" + }, + { + "hash": "354e9edf1340c37133b7d1834cea608895acebc0", + "message": "Use correct snippy wrapper version everywhere", + "num": 7, + "short_hash": "354e9edf1", + "unix": "1648028595" + }, + { + "hash": "6f476a03271eeabffcf0877e8a402f7af815deba", + "message": "Update snippy to 4.6.0", + "num": 6, + "short_hash": "6f476a032", + "unix": "1647976648" + }, + { + "hash": "946f6f60f8e068a147f03d89f369f19e552793da", + "message": "Generate cleaner intermediate diff", + "num": 5, + "short_hash": "946f6f60f", + "unix": "1647938051" + }, + { + "hash": "8e46a42b5a664cf72ea7e2aae61739348f64dfea", + "message": "Autoupdate workflow, change Kraken2 test", + "num": 4, + "short_hash": "8e46a42b5", + "unix": "1647929062" + }, + { + "hash": "f98407ff47fe6ea903372a39b09530ae075d65b3", + "message": "tb-variant-analysis: label workflow outputs and add test", + "num": 3, + "short_hash": "f98407ff4", + "unix": "1595713523" + }, + { + "hash": "392830f9b51662e8028b8984f48f827be8a10aed", + "message": "Reformat tb-variant-analysis workflow", + "num": 2, + "short_hash": "392830f9b", + "unix": "1595707349" + }, + { + "hash": "2e73bb7aa538d3fb94e7f7ca21bfc6078d35e73f", + "message": "Update M. tuberculosis variant analysis tutorial with new data and workflow", + "num": 1, + "short_hash": "2e73bb7aa", + "unix": "1595705571" + } + ], + "inputs": [ + { + "annotation": "List of paired Illumina reads (set format to fastqsanger or fastqsanger.gz as appropriate)", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "List of paired Illumina reads (set format to fastqsanger or fastqsanger.gz as appropriate)", + "name": "Reads" + } + ], + "label": "Reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 197.65334499942068 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2bfdfb62-da85-4d2d-8609-8f5e6975b4b3", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "M. tuberculosis reference genome (must be in H37Rv coordinates. The M. tuberculosis inferred ancestral genome is recommended)", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "M. tuberculosis reference genome (must be in H37Rv coordinates. The M. tuberculosis inferred ancestral genome is recommended)", + "name": "Reference Genome" + } + ], + "label": "Reference Genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.2375059369900399, + "top": 468.60335731890825 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"genbank\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "023233a0-8cb1-4558-8861-cd246ab58bac", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Minimum depth of coverage for a position on the genome", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Minimum depth of coverage for a position on the genome", + "name": "Minimum depth of coverage" + } + ], + "label": "Minimum depth of coverage", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 1.8793911063654463, + "top": 625.941216238093 + }, + "tool_id": null, + "tool_state": "{\"default\": 10, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "e31bf396-08b6-43ce-872a-545a5e4580c6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Minimum proportion of reads that must support a variant for it to be called", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Minimum proportion of reads that must support a variant for it to be called", + "name": "Minimum variant allele frequency" + } + ], + "label": "Minimum variant allele frequency", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 1.358958473709409, + "top": 769.7667492120408 + }, + "tool_id": null, + "tool_state": "{\"default\": 0.9, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "d1814962-a30d-463a-a081-857a5141385b", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Increasing the minimum seed length (-k) parameter can help eliminate matches from contaminants. If used this should be set to 2/3rds of the read length, i.e. the string \"-k 100\" should be used for 150 base pair reads", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "Increasing the minimum seed length (-k) parameter can help eliminate matches from contaminants. If used this should be set to 2/3rds of the read length, i.e. the string \"-k 100\" should be used for 150 base pair reads", + "name": "Additional BWA-MEM options" + } + ], + "label": "Additional BWA-MEM options", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 7.8094297093662135, + "top": 931.4341211532 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "40d47253-c7c5-471b-871c-9a19fbe60bfe", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nReads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference Genome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nMinimum depth of coverage\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Parameter\\nMinimum variant allele frequency\"];\n style 3 fill:#ded,stroke:#393,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nAdditional BWA-MEM options\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"fastp\"];\n 0 -->|output| 5;\n 6[\"seqret\"];\n 1 -->|output| 6;\n 7[\"snippy\"];\n 4 -->|output| 7;\n 2 -->|output| 7;\n 3 -->|output| 7;\n 5 -->|output_paired_coll| 7;\n 1 -->|output| 7;\n 8[\"Kraken2\"];\n 5 -->|output_paired_coll| 8;\n c7abf2bf-ed4c-433e-a695-9eca61282bb5[\"Output\\nreport_output\"];\n 8 --> c7abf2bf-ed4c-433e-a695-9eca61282bb5;\n style c7abf2bf-ed4c-433e-a695-9eca61282bb5 stroke:#2c3143,stroke-width:4px;\n 083a0e51-7780-4c91-a071-dc0e4641d060[\"Output\\noutput\"];\n 8 --> 083a0e51-7780-4c91-a071-dc0e4641d060;\n style 083a0e51-7780-4c91-a071-dc0e4641d060 stroke:#2c3143,stroke-width:4px;\n 9[\"QualiMap BamQC\"];\n 7 -->|snpsbam| 9;\n 10[\"mosdepth\"];\n 2 -->|output| 10;\n 7 -->|snpsbam| 10;\n 11[\"TB Variant Filter\"];\n 7 -->|snpvcf| 11;\n 12[\"TB-Profiler Profile\"];\n 7 -->|snpsbam| 12;\n 335635b4-a4de-4980-ad02-68f0035daeaa[\"Output\\noutput_txt\"];\n 12 --> 335635b4-a4de-4980-ad02-68f0035daeaa;\n style 335635b4-a4de-4980-ad02-68f0035daeaa stroke:#2c3143,stroke-width:4px;\n 13[\"TB Variant Filter\"];\n 7 -->|snpvcf| 13;\n 14[\"Flatten collection\"];\n 9 -->|raw_data| 14;\n 15[\"Text reformatting\"];\n 10 -->|output_quantized_bed| 15;\n 16[\"Text transformation\"];\n 11 -->|output1| 16;\n 007df8c2-bd13-495f-8904-abf31d4594d0[\"Output\\nFinal annotated VCF\"];\n 16 --> 007df8c2-bd13-495f-8904-abf31d4594d0;\n style 007df8c2-bd13-495f-8904-abf31d4594d0 stroke:#2c3143,stroke-width:4px;\n 17[\"MultiQC\"];\n 5 -->|report_json| 17;\n 14 -->|output| 17;\n 59528235-7525-4ef9-8810-36f1ed0f01f6[\"Output\\nhtml_report\"];\n 17 --> 59528235-7525-4ef9-8810-36f1ed0f01f6;\n style 59528235-7525-4ef9-8810-36f1ed0f01f6 stroke:#2c3143,stroke-width:4px;\n 18[\"bcftools consensus\"];\n 13 -->|output1| 18;\n 6 -->|out_file1| 18;\n 15 -->|outfile| 18;\n c71b135d-35f9-44d0-a20e-f25528e518af[\"Output\\nconsensus_genome\"];\n 18 --> c71b135d-35f9-44d0-a20e-f25528e518af;\n style c71b135d-35f9-44d0-a20e-f25528e518af stroke:#2c3143,stroke-width:4px;\n 19[\"TB Variant Report\"];\n 16 -->|output| 19;\n 12 -->|results_json| 19;\n 959528d2-f8f2-4440-99cf-44fddd6c5069[\"Output\\ndrug_resistance_report_html\"];\n 19 --> 959528d2-f8f2-4440-99cf-44fddd6c5069;\n style 959528d2-f8f2-4440-99cf-44fddd6c5069 stroke:#2c3143,stroke-width:4px;\n 4d9636eb-075b-4fd2-a1e4-1a7c37a17fc0[\"Output\\nvariants_report_html\"];\n 19 --> 4d9636eb-075b-4fd2-a1e4-1a7c37a17fc0;\n style 4d9636eb-075b-4fd2-a1e4-1a7c37a17fc0 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "TB Variant Analysis v1.0", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "single_paired|input_pair": { + "id": 5, + "output_name": "output_paired_coll" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Kraken2", + "name": "single_paired" + } + ], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1605.1346167188794, + "top": 0 + }, + "post_job_actions": { + "HideDatasetActionoutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output" + }, + "TagDatasetActionreport_output": { + "action_arguments": { + "tags": "kraken_report" + }, + "action_type": "TagDatasetAction", + "output_name": "report_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "20e2f64aa1fe", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.0\", \"kraken2_database\": \"pluspf2021-05\", \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"collection\", \"__current_case__\": 0, \"input_pair\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "60b17d56-0ef9-4829-829e-923f66de5e2f", + "when": null, + "workflow_outputs": [ + { + "label": "report_output", + "output_name": "report_output", + "uuid": "c7abf2bf-ed4c-433e-a695-9eca61282bb5" + }, + { + "label": "output", + "output_name": "output", + "uuid": "083a0e51-7780-4c91-a071-dc0e4641d060" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "fastq_or_bam|bam_input": { + "id": 7, + "output_name": "snpsbam" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool TB-Profiler Profile", + "name": "fastq_or_bam" + } + ], + "label": null, + "name": "TB-Profiler Profile", + "outputs": [ + { + "name": "results_json", + "type": "json" + }, + { + "name": "output_vcf", + "type": "vcf" + }, + { + "name": "output_txt", + "type": "txt" + } + ], + "position": { + "left": 1132.7778271896836, + "top": 615.3961147101202 + }, + "post_job_actions": { + "HideDatasetActionoutput_vcf": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_vcf" + }, + "HideDatasetActionresults_json": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "results_json" + }, + "TagDatasetActionoutput_txt": { + "action_arguments": { + "tags": "drug_resistance_report" + }, + "action_type": "TagDatasetAction", + "output_name": "output_txt" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "4839e590cb26", + "name": "tbprofiler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"options\": \"no\", \"__current_case__\": 0}, \"fastq_or_bam\": {\"input_select\": \"bam\", \"__current_case__\": 3, \"bam_input\": {\"__class__\": \"ConnectedValue\"}}, \"output_format\": \"txt\", \"platform\": \"illumina\", \"spoligotype\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "6.2.1+galaxy0", + "type": "tool", + "uuid": "22d89589-70a3-4e6e-8b95-68604a287052", + "when": null, + "workflow_outputs": [ + { + "label": "output_txt", + "output_name": "output_txt", + "uuid": "335635b4-a4de-4980-ad02-68f0035daeaa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "infile": { + "id": 11, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "Text transformation", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1379.287563641826, + "top": 248.44083584414724 + }, + "post_job_actions": { + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "annotated_vcf" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fbf99087e067", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"s/GENE_//g\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "9.3+galaxy1", + "type": "tool", + "uuid": "c45f6679-0d38-4663-a783-775b0f522bcc", + "when": null, + "workflow_outputs": [ + { + "label": "Final annotated VCF", + "output_name": "output", + "uuid": "007df8c2-bd13-495f-8904-abf31d4594d0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 17, + "input_connections": { + "results_0|software_cond|input": { + "id": 5, + "output_name": "report_json" + }, + "results_1|software_cond|input": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1604.2880860884582, + "top": 202.3882167631859 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "TagDatasetActionhtml_report": { + "action_arguments": { + "tags": "qc_report" + }, + "action_type": "TagDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastp\", \"__current_case__\": 7, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"qualimap\", \"__current_case__\": 20, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "6367e2a7-c3b0-4dc4-bbc2-e861e66eaeae", + "when": null, + "workflow_outputs": [ + { + "label": "html_report", + "output_name": "html_report", + "uuid": "59528235-7525-4ef9-8810-36f1ed0f01f6" + } + ] + }, + { + "annotation": "Compute consensus genome with single nucleotide variants inserted, suitable for use in building a phylogeny", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "errors": null, + "id": 18, + "input_connections": { + "input_file": { + "id": 13, + "output_name": "output1" + }, + "reference_source|fasta_ref": { + "id": 6, + "output_name": "out_file1" + }, + "sec_default|mask": { + "id": 15, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools consensus", + "name": "reference_source" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "sec_default" + } + ], + "label": null, + "name": "bcftools consensus", + "outputs": [ + { + "name": "output_file", + "type": "fasta" + } + ], + "position": { + "left": 1601.1886936133394, + "top": 1003.2778990479657 + }, + "post_job_actions": { + "TagDatasetActionoutput_file": { + "action_arguments": { + "tags": "consensus_genome" + }, + "action_type": "TagDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "tool_shed_repository": { + "changeset_revision": "147de996e34f", + "name": "bcftools_consensus", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"absent\": \"\", \"chain\": false, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"ConnectedValue\"}}, \"rename\": false, \"sec_default\": {\"mask\": {\"__class__\": \"ConnectedValue\"}, \"iupac_codes\": false, \"sample\": null, \"select_haplotype\": null, \"mark_del\": \"\", \"mark_ins\": null, \"mark_snv\": null, \"conditional_mask\": {\"selector\": \"disabled\", \"__current_case__\": 0}}, \"sec_restrict\": {\"include\": null, \"exclude\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.15.1+galaxy3", + "type": "tool", + "uuid": "2b226e0c-8e59-472d-8bcd-6d8d84dfddab", + "when": null, + "workflow_outputs": [ + { + "label": "consensus_genome", + "output_name": "output_file", + "uuid": "c71b135d-35f9-44d0-a20e-f25528e518af" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.0+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "input_vcf": { + "id": 16, + "output_name": "output" + }, + "tbprofiler_json": { + "id": 12, + "output_name": "results_json" + } + }, + "inputs": [], + "label": null, + "name": "TB Variant Report", + "outputs": [ + { + "name": "variants_report_html", + "type": "html" + }, + { + "name": "variants_report_txt", + "type": "txt" + }, + { + "name": "drug_resistance_report_html", + "type": "html" + }, + { + "name": "drug_resistance_report_txt", + "type": "txt" + } + ], + "position": { + "left": 1591.762535768669, + "top": 427.7783435581315 + }, + "post_job_actions": { + "HideDatasetActiondrug_resistance_report_txt": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "drug_resistance_report_txt" + }, + "HideDatasetActionvariants_report_txt": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "variants_report_txt" + }, + "TagDatasetActiondrug_resistance_report_html": { + "action_arguments": { + "tags": "variant_report" + }, + "action_type": "TagDatasetAction", + "output_name": "drug_resistance_report_html" + }, + "TagDatasetActionvariants_report_html": { + "action_arguments": { + "tags": "variant_report" + }, + "action_type": "TagDatasetAction", + "output_name": "variants_report_html" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "42818629ec4c", + "name": "tbvcfreport", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"database_uri\": \"neodb.sanbi.ac.za\"}, \"filter_udi\": true, \"input_vcf\": {\"__class__\": \"ConnectedValue\"}, \"tbprofiler_json\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0+galaxy0", + "type": "tool", + "uuid": "183d84e7-91ea-4e8f-950b-f65629b60b1b", + "when": null, + "workflow_outputs": [ + { + "label": "drug_resistance_report_html", + "output_name": "drug_resistance_report_html", + "uuid": "959528d2-f8f2-4440-99cf-44fddd6c5069" + }, + { + "label": "variants_report_html", + "output_name": "variants_report_html", + "uuid": "4d9636eb-075b-4fd2-a1e4-1a7c37a17fc0" + } + ] + } + ], + "parent_id": "variant-analysis/tb-variant-analysis", + "path": "topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.ga", + "tags": [ + "pathogen", + "tuberculosis" + ], + "test_results": null, + "tests": true, + "title": "TB Variant Analysis v1.0", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-tb-variant-analysis/versions/tb-variant-analysis", + "tutorial_id": "tb-variant-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.html", + "version": 7, + "wfid": "variant-analysis-tb-variant-analysis", + "wfname": "tb-variant-analysis", + "workflow": "tb-variant-analysis.ga", + "workflow_tools": [ + "__FLATTEN__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: seqret84/5.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/mosdepth/mosdepth/0.3.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2c+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.0+galaxy0" + ], + "workflowhub_id": "1069" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.3496437" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "4c07ddedc198", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nextclade", + "owner": "iuc", + "revisions": "4f6349228462", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pangolin", + "owner": "iuc", + "revisions": "03ed9524dcd1", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_regex_finder", + "owner": "mbernt", + "revisions": "9a811adb714f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: datamash_ops\n owner: iuc\n revisions: 4c07ddedc198\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nextclade\n owner: iuc\n revisions: 4f6349228462\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pangolin\n owner: iuc\n revisions: 03ed9524dcd1\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_regex_finder\n owner: mbernt\n revisions: 9a811adb714f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json", + "contributions": { + "authorship": [ + "wm75", + "bebatut" + ], + "funding": [ + "by-covid", + "elixir-converge" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + }, + { + "avatar": "https://elixir-europe.org/sites/default/files/styles/right-medium/public/images/converge_logo.png", + "funder": true, + "funding_id": "871075", + "funding_statement": "ELIXIR CONVERGE is connecting and align ELIXIR Nodes to deliver sustainable FAIR life-science data management services. This project has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement \u2116 871075", + "funding_system": "cordis", + "github": false, + "id": "elixir-converge", + "joined": "2023-01", + "members": [ + "bgruening", + "hexylena" + ], + "name": "ELIXIR-CONVERGE", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-converge/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-converge.json" + } + ], + "dir": "topics/variant-analysis/tutorials/sars-cov-2-variant-discovery", + "edam_operation": [ + "Variant calling", + "Methylation analysis", + "Variant classification", + "Tree-based sequence alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/sars-cov-2-variant-discovery", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The Galaxy Covid-19 project has developed a flexible set of workflows for SARS-CoV-2 genome surveillance, which is freely available through public workflow registries.", + "The workflows enable processing of whole batches of samples with rather limited user interaction.", + "They provide a high-throughput and flexible analysis solution without compromising on accuracy, nor on the possibility to explore intermediate steps and outputs in detail." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Discover and obtain recommended Galaxy workflows for SARS-CoV-2 sequence data analysis through public workflow registries", + "Choose and run a workflow to discover mutations in a batch of viral samples from sequencing data obtained through a range of different protocols and platforms", + "Run a workflow to summarize and visualize the mutation discovery results for a batch of samples", + "Run a workflow to construct viral consensus sequences for the samples in a batch", + "Know different SARS-CoV-2 lineage classification systems, and use pangolin and Nextclade to assign samples to predefined lineages", + "Combine information from different analysis steps to be able to draw appropriate conclusions about individual samples and batches of viral data" + ], + "pageviews": 11912, + "pub_date": "2021-06-30", + "questions": [ + "How can a complete analysis, including viral consensus sequence reconstruction and lineage assignment be performed?", + "How can such an analysis be kept manageable for lots of samples, yet flexible enough to handle different types of input data?", + "What are key results beyond consensus genomes and lineage assignments that need to be understood to avoid inappropriate conclusions about samples?", + "How can the needs for high-throughput data analysis in an ongoing infectious disease outbreak/pandemic and the need for proper quality control and data inspection be balanced?" + ], + "recordings": [ + { + "captioners": [ + "wm75" + ], + "date": "2023-05-10", + "length": "55M", + "speakers": [ + "wm75" + ], + "youtube_id": "hjlmCWQhBvI" + }, + { + "captioners": [ + "hexylena" + ], + "date": "2021-08-09", + "length": "1H30M", + "speakers": [ + "wm75" + ], + "youtube_id": "vnFQ2fR_fzw" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + }, + { + "topic_name": "variant-analysis", + "tutorials": [ + "sars-cov-2" + ], + "type": "internal" + } + ], + "short_id": "T00316", + "short_tools": [ + "nextclade", + "datamash_ops", + "fasta_regex_finder", + "pangolin", + "Filter1", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "covid19", + "virology", + "one-health" + ], + "time_estimation": "3H", + "title": "Mutation calling, viral genome reconstruction and lineage/clade assignment from SARS-CoV-2 sequencing data", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nextclade/nextclade/2.7.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mbernt/fasta_regex_finder/fasta_regex_finder/0.1.0", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-cov-2-variant-discovery", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 207, + "visitors": 6391, + "zenodo_link": "https://zenodo.org/record/5036687" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "03e9b2fbc005", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bakta", + "owner": "iuc", + "revisions": "728dacaf08a9", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbl2gff3", + "owner": "iuc", + "revisions": "4a7f4b0cc0a3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "staramr", + "owner": "nml", + "revisions": "3b22de20bd4b", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bowtie2\n owner: devteam\n revisions: 03e9b2fbc005\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bakta\n owner: iuc\n revisions: 728dacaf08a9\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbl2gff3\n owner: iuc\n revisions: 4a7f4b0cc0a3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: staramr\n owner: nml\n revisions: 3b22de20bd4b\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json", + "contributions": { + "authorship": [ + "bazante1", + "bebatut" + ], + "editing": [ + "hexylena", + "bazante1", + "shiltemann", + "miaomiaozhou88" + ], + "funding": [ + "avans-atgm", + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "avans-atgm" + ], + "id": "bazante1", + "joined": "2020-12", + "name": "Bazante Sanders", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bazante1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bazante1.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "email": "m.zhou1@avans.nl", + "id": "miaomiaozhou88", + "joined": "2020-12", + "name": "Miaomiao Zhou", + "orcid": "0000-0003-4426-1758", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/miaomiaozhou88/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/miaomiaozhou88.json" + }, + { + "avatar": "/training-material/shared/images/logo-avans.png", + "former_members": [ + "dirowa", + "hexylena" + ], + "id": "avans-atgm", + "joined": "2020-11", + "members": [ + "bazante1" + ], + "name": "Avans Hogeschool", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avans-atgm/", + "ror": "015d5s513", + "url": "https://training.galaxyproject.org/training-material/api/organisations/avans-atgm.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/genome-annotation/tutorials/amr-gene-detection", + "edam_ontology": [ + "topic_3673", + "topic_3305", + "topic_0622", + "topic_3301", + "topic_0080", + "topic_3324", + "topic_4013" + ], + "edam_operation": [ + "Genome visualisation", + "Genome annotation", + "Read mapping" + ], + "edam_topic": [ + "Whole genome sequencing", + "Public health and epidemiology", + "Genomics", + "Microbiology", + "Sequence analysis", + "Infectious disease", + "Antimicrobial Resistance" + ], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "visualisation", + "tutorials": [ + "jbrowse" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "history-to-workflow" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "genome-annotation/amr-gene-detection", + "inexact_supported_servers": [ + "Galaxy@AuBi" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "staramr is a powerful tool to predict ARGs and plasmid genes", + "Visualization of the ARGs and plasmid genes in their genomic context helps to make sense of the data" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-13", + "objectives": [ + "Run a series of tool to assess the presence of antimicrobial resistance genes (ARG)", + "Get information about ARGs", + "Visualize the ARGs and plasmid genes in their genomic context" + ], + "pageviews": 1368, + "pub_date": "2024-01-23", + "questions": [ + "Which resistance genes are on a bacterial genome?", + "Where are the genes located on the genome?" + ], + "short_id": "T00401", + "short_tools": [ + "Grep1", + "jbrowse", + "bowtie2", + "tbl2gff3", + "bakta", + "staramr_search", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "prokaryote", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "illumina", + "amr", + "one-health", + "jbrowse1", + "microgalaxy" + ], + "time_estimation": "2h", + "title": "Identification of AMR genes in an assembled bacterial genome", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "upload1" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "amr-gene-detection", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/amr-gene-detection/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 176, + "visitors": 967, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2255-1631", + "name": "Bazante Sanders" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + } + ], + "description": "Identification of AMR genes in an assembled bacterial genome", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncontigs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nforward_reads\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreverse_reads\"]\n 3[label=\"staramr\"]\n 0 -> 3 [label=\"output\"]\n k7a18df3cf28045aa92e427b79f10a005[color=lightseagreen,label=\"Output\\nstararm_detailed_summary\"]\n 3 -> k7a18df3cf28045aa92e427b79f10a005\n 4[label=\"Bakta\"]\n 0 -> 4 [label=\"output\"]\n kead94d4086b04cf0aee2cf72a8f47933[color=lightseagreen,label=\"Output\\nbakta_annotation_summary\"]\n 4 -> kead94d4086b04cf0aee2cf72a8f47933\n 5[label=\"Bowtie2\"]\n 1 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n k0639b4672e624a52b72f35bf9f46f6a3[color=lightseagreen,label=\"Output\\nbowtie_mapping_stats\"]\n 5 -> k0639b4672e624a52b72f35bf9f46f6a3\n 6[label=\"Select\"]\n 3 -> 6 [label=\"detailed_summary\"]\n 7[label=\"Table to GFF3\"]\n 6 -> 7 [label=\"out_file1\"]\n 8[label=\"JBrowse\"]\n 4 -> 8 [label=\"annotation_gff3\"]\n 7 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"output\"]\n k910a35522a224279b15930379b31496f[color=lightseagreen,label=\"Output\\njbrowse_output\"]\n 8 -> k910a35522a224279b15930379b31496f\n}", + "history": [ + { + "hash": "597f8ce954083c7cd4e43765b6c4709619637e6a", + "message": "Add Bazante's ORCID", + "num": 4, + "short_hash": "597f8ce95", + "unix": "1706018263" + }, + { + "hash": "03e4290900ade23b2dffb3f61ea2875a64f2c396", + "message": "Fix workflows", + "num": 3, + "short_hash": "03e429090", + "unix": "1706004257" + }, + { + "hash": "c88bcbb6f04ad1847e0747f7fb9256ee0ec858de", + "message": "Add license and creator to workflows", + "num": 2, + "short_hash": "c88bcbb6f", + "unix": "1705678137" + }, + { + "hash": "6d6129376b624fe20278f8df09b13cae881c5484", + "message": "Expand the AMR detection tutorial", + "num": 1, + "short_hash": "6d6129376", + "unix": "1705334494" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "contigs" + } + ], + "label": "contigs", + "name": "contigs", + "outputs": [], + "position": { + "left": 0, + "top": 258 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"contigs\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a18c5e52-124f-4480-80b4-ea5936618bc6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "forward_reads" + } + ], + "label": "forward_reads", + "name": "forward_reads", + "outputs": [], + "position": { + "left": 0.003423507807786663, + "top": 600.9912432161087 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"forward_reads\"}", + "tool_version": null, + "type": "data_input", + "uuid": "edd7c009-b0f1-403d-9438-f675bd61d30a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reverse_reads" + } + ], + "label": "reverse_reads", + "name": "reverse_reads", + "outputs": [], + "position": { + "left": 0, + "top": 724 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"name\": \"reverse_reads\"}", + "tool_version": null, + "type": "data_input", + "uuid": "595db730-f37d-4314-85a3-e10dfb11e209", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ncontigs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nforward_reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nreverse_reads\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"staramr\"];\n 0 -->|output| 3;\n 7a18df3c-f280-45aa-92e4-27b79f10a005[\"Output\\nstararm_detailed_summary\"];\n 3 --> 7a18df3c-f280-45aa-92e4-27b79f10a005;\n style 7a18df3c-f280-45aa-92e4-27b79f10a005 stroke:#2c3143,stroke-width:4px;\n 4[\"Bakta\"];\n 0 -->|output| 4;\n ead94d40-86b0-4cf0-aee2-cf72a8f47933[\"Output\\nbakta_annotation_summary\"];\n 4 --> ead94d40-86b0-4cf0-aee2-cf72a8f47933;\n style ead94d40-86b0-4cf0-aee2-cf72a8f47933 stroke:#2c3143,stroke-width:4px;\n 5[\"Bowtie2\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 0 -->|output| 5;\n 0639b467-2e62-4a52-b72f-35bf9f46f6a3[\"Output\\nbowtie_mapping_stats\"];\n 5 --> 0639b467-2e62-4a52-b72f-35bf9f46f6a3;\n style 0639b467-2e62-4a52-b72f-35bf9f46f6a3 stroke:#2c3143,stroke-width:4px;\n 6[\"Select\"];\n 3 -->|detailed_summary| 6;\n 7[\"Table to GFF3\"];\n 6 -->|out_file1| 7;\n 8[\"JBrowse\"];\n 4 -->|annotation_gff3| 8;\n 7 -->|output| 8;\n 5 -->|output| 8;\n 910a3552-2a22-4279-b159-30379b31496f[\"Output\\njbrowse_output\"];\n 8 --> 910a3552-2a22-4279-b159-30379b31496f;\n style 910a3552-2a22-4279-b159-30379b31496f stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "mrsa AMR gene detection", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "genomes": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "staramr", + "outputs": [ + { + "name": "blast_hits", + "type": "input" + }, + { + "name": "mlst", + "type": "tabular" + }, + { + "name": "summary", + "type": "tabular" + }, + { + "name": "detailed_summary", + "type": "tabular" + }, + { + "name": "resfinder", + "type": "tabular" + }, + { + "name": "plasmidfinder", + "type": "tabular" + }, + { + "name": "settings", + "type": "txt" + }, + { + "name": "excel", + "type": "xlsx" + } + ], + "position": { + "left": 290.00083115418806, + "top": 261 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3b22de20bd4b", + "name": "staramr", + "owner": "nml", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"advanced\": {\"pid_threshold\": \"98.0\", \"plength_resfinder\": \"60.0\", \"plength_pointfinder\": \"95.0\", \"plength_plasmidfinder\": \"60.0\", \"genome_size_lower_bound\": \"4000000\", \"genome_size_upper_bound\": \"6000000\", \"minimum_N50_value\": \"10000\", \"minimum_contig_length\": \"300\", \"unacceptable_number_contigs\": \"1000\", \"report_all_blast\": false, \"exclude_negatives\": false, \"exclude_resistance_phenotypes\": false, \"mlst_scheme\": \"auto\", \"exclude_genes\": {\"exclude_genes_condition\": \"default\", \"__current_case__\": 0}, \"complex_mutations\": {\"complex_mutations_condition\": \"default\", \"__current_case__\": 0}, \"plasmidfinder_type\": \"include_all\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"genomes\": {\"__class__\": \"ConnectedValue\"}, \"pointfinder_db\": {\"use_pointfinder\": \"disabled\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.0+galaxy1", + "type": "tool", + "uuid": "2554da56-e9f9-4e65-98b6-25b4a2861df9", + "when": null, + "workflow_outputs": [ + { + "label": "stararm_detailed_summary", + "output_name": "detailed_summary", + "uuid": "7a18df3c-f280-45aa-92e4-27b79f10a005" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_option|input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "annotation" + }, + { + "description": "runtime parameter for tool Bakta", + "name": "input_option" + } + ], + "label": null, + "name": "Bakta", + "outputs": [ + { + "name": "annotation_tsv", + "type": "tabular" + }, + { + "name": "annotation_gff3", + "type": "gff3" + }, + { + "name": "annotation_ffn", + "type": "fasta" + }, + { + "name": "annotation_plot", + "type": "svg" + } + ], + "position": { + "left": 570.0016623083761, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "728dacaf08a9", + "name": "bakta", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation\": {\"complete\": false, \"prodigal\": {\"__class__\": \"RuntimeValue\"}, \"translation_table\": \"11\", \"keep_contig_headers\": true, \"replicons\": {\"__class__\": \"RuntimeValue\"}, \"compliant\": false, \"proteins\": {\"__class__\": \"RuntimeValue\"}, \"meta\": false}, \"input_option\": {\"bakta_db_select\": \"V5.0_2023-02-20\", \"amrfinder_db_select\": \"amrfinderplus_V3.11_2022-12-19.1\", \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"min_contig_length\": null}, \"organism\": {\"genus\": null, \"species\": null, \"strain\": null, \"plasmid\": null}, \"output_files\": {\"output_selection\": [\"file_tsv\", \"file_gff3\", \"file_ffn\", \"file_plot\"]}, \"workflow\": {\"skip_analysis\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.2+galaxy0", + "type": "tool", + "uuid": "0b92601d-5b78-438c-998d-f9f4dc61c52d", + "when": null, + "workflow_outputs": [ + { + "label": "bakta_annotation_summary", + "output_name": "annotation_tsv", + "uuid": "ead94d40-86b0-4cf0-aee2-cf72a8f47933" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "library|input_1": { + "id": 1, + "output_name": "output" + }, + "library|input_2": { + "id": 2, + "output_name": "output" + }, + "reference_genome|own_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "left": 290.00083115418806, + "top": 628 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "03e9b2fbc005", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": false, \"aligned_file\": false, \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 1, \"own_file\": {\"__class__\": \"ConnectedValue\"}}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.0+galaxy0", + "type": "tool", + "uuid": "7e8f9570-3d8b-4a82-b109-09bc04b82c64", + "when": null, + "workflow_outputs": [ + { + "label": "bowtie_mapping_stats", + "output_name": "mapping_stats", + "uuid": "0639b467-2e62-4a52-b72f-35bf9f46f6a3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 4, + "output_name": "annotation_gff3" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 7, + "output_name": "output" + }, + "track_groups_2|data_tracks_0|data_format|annotation": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1130.0033246167523, + "top": 325 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a6e57ff585c0", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": true, \"aboutDescription\": \"\", \"show_tracklist\": true, \"show_nav\": true, \"show_overview\": true, \"show_menu\": true, \"hideGenomeOptions\": false}, \"plugins\": {\"BlastView\": true, \"ComboTrackSelector\": false, \"GCContent\": false}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Bakta\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": false, \"__current_case__\": 1}, \"index\": false, \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": null}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 1, \"category\": \"ARGs and plasmid genes\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": false, \"__current_case__\": 1}, \"index\": false, \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": null}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}, {\"__index__\": 2, \"category\": \"Coverage\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"auto_snp\": false, \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"default_off\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.11+galaxy1", + "type": "tool", + "uuid": "9f973678-ce81-458a-a5d0-575d93d61429", + "when": null, + "workflow_outputs": [ + { + "label": "jbrowse_output", + "output_name": "output", + "uuid": "910a3552-2a22-4279-b159-30379b31496f" + } + ] + } + ], + "parent_id": "genome-annotation/amr-gene-detection", + "path": "topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", + "tags": [ + "genome-annotation", + "microgalaxy" + ], + "test_results": null, + "tests": true, + "title": "mrsa AMR gene detection", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-amr-gene-detection/versions/main-workflow", + "tutorial_id": "amr-gene-detection", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/amr-gene-detection/workflows/main-workflow.html", + "version": 1, + "wfid": "genome-annotation-amr-gene-detection", + "wfname": "main-workflow", + "workflow": "main-workflow.ga", + "workflow_tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bakta/bakta/1.8.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/tbl2gff3/tbl2gff3/1.2", + "toolshed.g2.bx.psu.edu/repos/nml/staramr/staramr_search/0.10.0+galaxy1" + ], + "workflowhub_id": "1168" + } + ], + "zenodo_link": "https://zenodo.org/record/10572227" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "1171446da5db", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "a87ae767b01d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "0dbf49c414ae", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snippy", + "owner": "iuc", + "revisions": "c9a8ef2aa380", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snippy", + "owner": "iuc", + "revisions": "d220115f882b", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snp_dists", + "owner": "iuc", + "revisions": "1959cc43b414", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snp_dists", + "owner": "iuc", + "revisions": "f78492521996", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snp_sites", + "owner": "iuc", + "revisions": "5804f786060d", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tb_variant_filter", + "owner": "iuc", + "revisions": "3b1e7c170b10", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tb_variant_filter", + "owner": "iuc", + "revisions": "e7aff4a85df5", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tb_variant_filter", + "owner": "iuc", + "revisions": "ee4a90760848", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbprofiler", + "owner": "iuc", + "revisions": "809dfc93d593", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "add_input_name_as_column", + "owner": "mvdbeek", + "revisions": "3284b72eef56", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "d94aff5ee623", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: 1171446da5db\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: a87ae767b01d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 0dbf49c414ae\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snippy\n owner: iuc\n revisions: c9a8ef2aa380\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snippy\n owner: iuc\n revisions: d220115f882b\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snp_dists\n owner: iuc\n revisions: 1959cc43b414\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snp_dists\n owner: iuc\n revisions: f78492521996\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snp_sites\n owner: iuc\n revisions: 5804f786060d\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tb_variant_filter\n owner: iuc\n revisions: 3b1e7c170b10\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tb_variant_filter\n owner: iuc\n revisions: e7aff4a85df5\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tb_variant_filter\n owner: iuc\n revisions: ee4a90760848\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbprofiler\n owner: iuc\n revisions: 809dfc93d593\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: add_input_name_as_column\n owner: mvdbeek\n revisions: 3284b72eef56\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: d94aff5ee623\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_transmission/tutorial.json", + "contributions": { + "authorship": [ + "GaloGS", + "dbrites", + "cstritt" + ], + "editing": [ + "wm75" + ] + }, + "contributors": [ + { + "id": "GaloGS", + "joined": "2022-03", + "name": "Galo A. Goig", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/GaloGS/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/GaloGS.json" + }, + { + "id": "dbrites", + "joined": "2022-03", + "name": "Daniela Brites", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dbrites/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dbrites.json" + }, + { + "id": "cstritt", + "joined": "2022-03", + "name": "Christoph Stritt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cstritt/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cstritt.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/evolution/tutorials/mtb_transmission", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_3324", + "topic_2885" + ], + "edam_operation": [ + "Variant calling", + "Phylogenetic tree visualisation", + "Phylogenetic tree generation", + "Antimicrobial resistance prediction" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Infectious disease", + "DNA polymorphism" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "evolution/mtb_transmission", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Clustering is a useful tool to detect transmission links between patients and oubreak investigation.", + "Clustering can be used to investigate the transmission of certain traits, like drug resistance.", + "Clustering does not provide information about particular transmission events nor their directionality (who infected whom).", + "Clustering is very much influenced by sampling. Lower sampling proportions and shorter sampling timeframes lead to lower clustering rates that shoud not be confounded with lack of transmission." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-07-12", + "objectives": [ + "Create a SNP alignment", + "Calculate pairwise SNP distances between MTB samples", + "Identify transmission clusters based on SNP distances", + "Study the emergence and spread of drug resistance based on transmission analysis." + ], + "pageviews": 2414, + "pub_date": "2022-03-16", + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + }, + { + "topic_name": "variant-analysis", + "tutorials": [ + "tb-variant-analysis" + ], + "type": "internal" + } + ], + "short_id": "T00145", + "short_tools": [ + "Grep1", + "bcftools_consensus", + "tb_variant_filter", + "upload1", + "samtools_view", + "snp_sites", + "tb_profiler_profile", + "tp_grep_tool", + "tp_cat", + "snippy", + "tp_easyjoin_tool", + "addName", + "tp_sed_tool", + "tp_replace_in_line", + "snp_dists", + "collapse_dataset", + "__MERGE_COLLECTION__", + "trimmomatic" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "one-health", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Identifying tuberculosis transmission links: from SNPs to transmission clusters", + "tools": [ + "Grep1", + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.6.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.8.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_sites/snp_sites/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.1.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.5+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/3.0.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName/0.2.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "upload1" + ], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mtb_transmission", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/mtb_transmission/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_transmission/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_transmission/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 188, + "visitors": 1533, + "workflows": [ + { + "creators": [], + "description": "Starting from the BAM files produced by snippy, generate a table that summarizes the drug-resistance profile for each sample", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nMTB single-end BAMs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nMTB paired-end BAMs\"]\n 2[label=\"Merge collections\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Samtools view BAM > SAM\"]\n 2 -> 3 [label=\"output\"]\n kaa2200279d104328b2c2e4d139d5d5bd[color=lightseagreen,label=\"Output\\nSamtools view on input dataset(s): filtered alignments\"]\n 3 -> kaa2200279d104328b2c2e4d139d5d5bd\n 4[label=\"Sed MTB_anc to Chromosome\"]\n 3 -> 4 [label=\"outputsam\"]\n 5[label=\"Samtools view SAM > BAM\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"TB-profiler\"]\n 5 -> 6 [label=\"outputsam\"]\n 7[label=\"Get drug resistance profile\"]\n 6 -> 7 [label=\"output_txt\"]\n 8[label=\"Add Sample Name\"]\n 7 -> 8 [label=\"output\"]\n 9[label=\"Concatenate DR profiles in a single table\"]\n 8 -> 9 [label=\"output\"]\n 10[label=\"Cleanup the table\"]\n 9 -> 10 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "103d419430b5164ef56e7de3bd3ef13e798967cd", + "message": "update tag", + "num": 2, + "short_hash": "103d41943", + "unix": "1647422971" + }, + { + "hash": "2e7ba78522415b81e10f3f5a74144f4f419b218d", + "message": "tweak", + "num": 1, + "short_hash": "2e7ba7852", + "unix": "1647422653" + } + ], + "inputs": [ + { + "annotation": "BAMs obtained from single-end mappings with snippy", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "BAMs obtained from single-end mappings with snippy", + "name": "MTB single-end BAMs" + } + ], + "label": "MTB single-end BAMs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 586.3333282470703, + "height": 89.09999084472656, + "left": -233.6999969482422, + "right": -13.699996948242188, + "top": 497.23333740234375, + "width": 220, + "x": -233.6999969482422, + "y": 497.23333740234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "5befe3e8-ccba-4b78-b7f1-dab039ef1011", + "workflow_outputs": [] + }, + { + "annotation": "BAMs obtained from paired-end mappings with snippy", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "BAMs obtained from paired-end mappings with snippy", + "name": "MTB paired-end BAMs" + } + ], + "label": "MTB paired-end BAMs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 695.3333282470703, + "height": 89.09999084472656, + "left": -234.6999969482422, + "right": -14.699996948242188, + "top": 606.2333374023438, + "width": 220, + "x": -234.6999969482422, + "y": 606.2333374023438 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d6f269d8-66e8-4baf-9b5c-de9e7313c4a0", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nMTB single-end BAMs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nMTB paired-end BAMs\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Merge collections\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"Samtools view BAM > SAM\"];\n 2 -->|output| 3;\n aa220027-9d10-4328-b2c2-e4d139d5d5bd[\"Output\\nSamtools view on input dataset(s): filtered alignments\"];\n 3 --> aa220027-9d10-4328-b2c2-e4d139d5d5bd;\n style aa220027-9d10-4328-b2c2-e4d139d5d5bd stroke:#2c3143,stroke-width:4px;\n 4[\"Sed MTB_anc to Chromosome\"];\n 3 -->|outputsam| 4;\n 5[\"Samtools view SAM > BAM\"];\n 4 -->|output| 5;\n 6[\"TB-profiler\"];\n 5 -->|outputsam| 6;\n 7[\"Get drug resistance profile\"];\n 6 -->|output_txt| 7;\n 8[\"Add Sample Name\"];\n 7 -->|output| 8;\n 9[\"Concatenate DR profiles in a single table\"];\n 8 -->|output| 9;\n 10[\"Cleanup the table\"];\n 9 -->|out_file1| 10;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "From BAMs to drug resistance prediction with TB-profiler", + "outputs": [ + { + "annotation": "Merge single-end and paired-end BAMs in a single collection to be analyzed alltogether", + "content_id": "__MERGE_COLLECTION__", + "errors": null, + "id": 2, + "input_connections": { + "inputs_0|input": { + "id": 0, + "output_name": "output" + }, + "inputs_1|input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Merge collections", + "name": "Merge collections", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 720.5, + "height": 222.26666259765625, + "left": 34.80000305175781, + "right": 254.8000030517578, + "top": 498.23333740234375, + "width": 220, + "x": 34.80000305175781, + "y": 498.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "__MERGE_COLLECTION__", + "tool_state": "{\"advanced\": {\"conflict\": {\"duplicate_options\": \"keep_first\", \"__current_case__\": 3}}, \"inputs\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "2142f124-4731-49fb-8e65-8e050705e001", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "180a1bdf-d552-49b7-93e9-4daf609096a6" + } + ] + }, + { + "annotation": "We want a text (SAM) file to substitute the string \"MTB_anc\" by \"Chromosome\" so it is compatible with TB-profiler", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "Samtools view BAM > SAM", + "name": "Samtools view", + "outputs": [ + { + "name": "outputsam", + "type": "input" + } + ], + "position": { + "bottom": 951.5000152587891, + "height": 189.8333282470703, + "left": 277.6000061035156, + "right": 497.6000061035156, + "top": 761.6666870117188, + "width": 220, + "x": 277.6000061035156, + "y": 761.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "tool_shed_repository": { + "changeset_revision": "0dbf49c414ae", + "name": "samtools_view", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"all_reads\", \"__current_case__\": 0, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"adv_output\": {\"readtags\": [], \"collapsecigar\": \"false\"}, \"output_format\": {\"oformat\": \"sam\", \"__current_case__\": 1, \"with_header\": \"true\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.13+galaxy2", + "type": "tool", + "uuid": "1040a122-5729-41a4-bd45-2406231f8024", + "workflow_outputs": [ + { + "label": "Samtools view on input dataset(s): filtered alignments", + "output_name": "outputsam", + "uuid": "aa220027-9d10-4328-b2c2-e4d139d5d5bd" + } + ] + }, + { + "annotation": "Change the string MTB_anc to \"Chromosome\" so it is compatible with TB-profiler", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "errors": null, + "id": 4, + "input_connections": { + "infile": { + "id": 3, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": "Sed (MTB_anc to Chromosome)", + "name": "Text transformation", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 943.2000122070312, + "height": 122.5333251953125, + "left": 537.5999755859375, + "right": 757.5999755859375, + "top": 820.6666870117188, + "width": 220, + "x": 537.5999755859375, + "y": 820.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"s/MTB_anc/Chromosome/g\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "95fc656b-43fc-4f1e-8850-25489e793376", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c3b3612d-3999-4022-9d6c-49ce6756ba2a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": "Samtools view SAM > BAM", + "name": "Samtools view", + "outputs": [ + { + "name": "outputsam", + "type": "input" + } + ], + "position": { + "bottom": 945.5000152587891, + "height": 189.8333282470703, + "left": 810.5999755859375, + "right": 1030.5999755859375, + "top": 755.6666870117188, + "width": 220, + "x": 810.5999755859375, + "y": 755.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "tool_shed_repository": { + "changeset_revision": "0dbf49c414ae", + "name": "samtools_view", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"outtype\": \"all_reads\", \"__current_case__\": 0, \"output_options\": {\"reads_report_type\": \"retained\", \"__current_case__\": 0, \"adv_output\": {\"readtags\": [], \"collapsecigar\": \"false\"}, \"output_format\": {\"oformat\": \"bam\", \"__current_case__\": 2}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.13+galaxy2", + "type": "tool", + "uuid": "729169fd-682e-4394-8421-1cde0aa2ac37", + "workflow_outputs": [ + { + "label": null, + "output_name": "outputsam", + "uuid": "67aacaf4-b657-4269-b3eb-5cf22e1e9596" + } + ] + }, + { + "annotation": "Generate TB-profiler reports with drug resistance determinants", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/3.0.8+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "fastq_or_bam|bam_input": { + "id": 5, + "output_name": "outputsam" + } + }, + "inputs": [], + "label": "TB-profiler", + "name": "TB-Profiler Profile", + "outputs": [ + { + "name": "results_json", + "type": "json" + }, + { + "name": "output_vcf", + "type": "vcf" + }, + { + "name": "output_txt", + "type": "txt" + } + ], + "position": { + "bottom": 724.9333343505859, + "height": 254.6999969482422, + "left": 1069.800048828125, + "right": 1289.800048828125, + "top": 470.23333740234375, + "width": 220, + "x": 1069.800048828125, + "y": 470.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/3.0.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "809dfc93d593", + "name": "tbprofiler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"options\": \"no\", \"__current_case__\": 0}, \"fastq_or_bam\": {\"input_select\": \"bam\", \"__current_case__\": 3, \"bam_input\": {\"__class__\": \"ConnectedValue\"}}, \"output_format\": \"txt\", \"platform\": \"illumina\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.8+galaxy0", + "type": "tool", + "uuid": "07d7e2cc-9669-45b5-bc1e-27bda80752c4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_vcf", + "uuid": "89e84a41-76ce-46eb-acec-1563e8d20ef6" + }, + { + "label": null, + "output_name": "output_txt", + "uuid": "c148b074-5e6a-4846-86e7-0193a5ce38b5" + }, + { + "label": null, + "output_name": "results_json", + "uuid": "b22dcd19-5127-4dc3-b329-8a09ab7f5db3" + } + ] + }, + { + "annotation": "From TB profiler, search with `grep` the part of the text that describes the DR profile (e.g Drug-Resistance: MDR) ", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 6, + "output_name": "output_txt" + } + }, + "inputs": [], + "label": "Get drug resistance profile", + "name": "Search in textfiles", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 594.7666625976562, + "height": 122.5333251953125, + "left": 1343.800048828125, + "right": 1563.800048828125, + "top": 472.23333740234375, + "width": 220, + "x": 1343.800048828125, + "y": 472.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"case_sensitive\": \"-i\", \"color\": \"NOCOLOR\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"lines_after\": \"0\", \"lines_before\": \"0\", \"regex_type\": \"-P\", \"url_paste\": \"Drug-Resistance:\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "9b418ac9-364d-4877-a858-b33a1e335900", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b876e27d-6013-4265-ae70-cffad0895db9" + } + ] + }, + { + "annotation": "We have generated one file per sample, that contains the DR profile (e.g Drug-Resistance: MDR) We want to prepend the name of the sample so we have: (Sample_name Drug-Resistance: MDR) ", + "content_id": "toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName/0.2.0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [], + "label": "Add Sample Name", + "name": "Add input name as column", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 596.7666625976562, + "height": 122.5333251953125, + "left": 1605.800048828125, + "right": 1825.800048828125, + "top": 474.23333740234375, + "width": 220, + "x": 1605.800048828125, + "y": 474.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName/0.2.0", + "tool_shed_repository": { + "changeset_revision": "3284b72eef56", + "name": "add_input_name_as_column", + "owner": "mvdbeek", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"header\": {\"contains_header\": \"no\", \"__current_case__\": 1}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"prepend\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.0", + "type": "tool", + "uuid": "d92f5d19-212d-4d8b-a7f7-f249788088ac", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1b9d5610-2f91-450a-a1b9-1718d8afde1a" + } + ] + }, + { + "annotation": "The output will be:\nSample_A DR_profile_A\nSample_B DR_profile_B\nSample_Z DR_profile_Z", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 9, + "input_connections": { + "inputs": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Concatenate datasets", + "name": "inputs" + } + ], + "label": "Concatenate DR profiles in a single table", + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 596.7666625976562, + "height": 122.5333251953125, + "left": 1871.800048828125, + "right": 2091.800048828125, + "top": 474.23333740234375, + "width": 220, + "x": 1871.800048828125, + "y": 474.23333740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"RuntimeValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "44a1faa8-cd48-4a85-96f7-81dcf3041e19", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "8bf7beae-528c-4d8b-abac-827a84a931a8" + } + ] + }, + { + "annotation": "Remove unnecessary text from the table like \".txt\" or \"Drug-resistance:\"", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Replace Text", + "name": "infile" + } + ], + "label": "Cleanup the table", + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 599.8666534423828, + "height": 122.53334045410156, + "left": 2136.300048828125, + "right": 2356.300048828125, + "top": 477.33331298828125, + "width": 220, + "x": 2136.300048828125, + "y": 477.33331298828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"RuntimeValue\"}, \"replacements\": [{\"__index__\": 0, \"find_pattern\": \".txt\", \"replace_pattern\": \"this is my replacement\"}, {\"__index__\": 1, \"find_pattern\": \"Drug-resistance:\", \"replace_pattern\": \"\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "398ccbde-0309-41bb-b348-fc8ecca15cb9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "6b30ef89-359b-4593-a600-40d11d47138b" + } + ] + } + ], + "parent_id": "evolution/mtb_transmission", + "path": "topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": false, + "title": "From BAMs to drug resistance prediction with TB-profiler", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_transmission/versions/galaxy-workflow-from-bams-to-drug-resistance-prediction-with-tb-profiler", + "tutorial_id": "mtb_transmission", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.html", + "version": 1, + "wfid": "evolution-mtb_transmission", + "wfname": "galaxy-workflow-from-bams-to-drug-resistance-prediction-with-tb-profiler", + "workflow": "Galaxy-Workflow-From_BAMs_to_drug_resistance_prediction_with_TB-profiler.ga", + "workflow_tools": [ + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.13+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/3.0.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mvdbeek/add_input_name_as_column/addName/0.2.0" + ], + "workflowhub_id": "1314" + }, + { + "creators": [], + "description": "From Fastqs to VCFs and BAMs", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nSingle-End FASTQs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nPaired-End FASTQs\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMycobacterium_tuberculosis_ancestral_reference.gbk\"]\n 3[label=\"Trimmomatic\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Trimmomatic\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Mapping and variant calling of SINGLE END FASTQs with snippy\"]\n 3 -> 5 [label=\"fastq_out\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Mapping and variant calling of PAIRED END FASTQs with snippy\"]\n 4 -> 6 [label=\"fastq_out_paired\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Merge PE/SE VCFs in a single collection with all samples\"]\n 5 -> 7 [label=\"snpvcf\"]\n 6 -> 7 [label=\"snpvcf\"]\n 8[label=\"Merge PE/SE BAMs in a single collection with all samples Part the workflow \u201dIdentifying DR with TB-profiler\"]\n 5 -> 8 [label=\"snpsbam\"]\n 6 -> 8 [label=\"snpsbam\"]\n 9[label=\"TB Variant Filter\"]\n 7 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "61e5383633beda63e0c40a41837ccce18db77008", + "message": "update tag", + "num": 2, + "short_hash": "61e538363", + "unix": "1647423011" + }, + { + "hash": "2e7ba78522415b81e10f3f5a74144f4f419b218d", + "message": "tweak", + "num": 1, + "short_hash": "2e7ba7852", + "unix": "1647422653" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Single-End FASTQs" + } + ], + "label": "Single-End FASTQs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 579.2166595458984, + "height": 89.09999084472656, + "left": 689.4000244140625, + "right": 909.4000244140625, + "top": 490.1166687011719, + "width": 220, + "x": 689.4000244140625, + "y": 490.1166687011719 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "30a3c256-5d21-4219-b23e-58c8f3842387", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Paired-End FASTQs" + } + ], + "label": "Paired-End FASTQs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 688.2166900634766, + "height": 89.09999084472656, + "left": 697.4000244140625, + "right": 917.4000244140625, + "top": 599.11669921875, + "width": 220, + "x": 697.4000244140625, + "y": 599.11669921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c04ddfda-2349-4857-8cae-b3d84dcbf9e7", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mycobacterium_tuberculosis_ancestral_reference.gbk" + } + ], + "label": "Mycobacterium_tuberculosis_ancestral_reference.gbk", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 732.6500244140625, + "height": 111.5333251953125, + "left": 1351.4000244140625, + "right": 1571.4000244140625, + "top": 621.11669921875, + "width": 220, + "x": 1351.4000244140625, + "y": 621.11669921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "67484edc-af0a-4a41-8170-c78853b51319", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nSingle-End FASTQs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nPaired-End FASTQs\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nMycobacterium_tuberculosis_ancestral_reference.gbk\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Trimmomatic\"];\n 0 -->|output| 3;\n 4[\"Trimmomatic\"];\n 1 -->|output| 4;\n 5[\"Mapping and variant calling of SINGLE END FASTQs with snippy\"];\n 3 -->|fastq_out| 5;\n 2 -->|output| 5;\n 6[\"Mapping and variant calling of PAIRED END FASTQs with snippy\"];\n 4 -->|fastq_out_paired| 6;\n 2 -->|output| 6;\n 7[\"Merge PE/SE VCFs in a single collection with all samples\"];\n 5 -->|snpvcf| 7;\n 6 -->|snpvcf| 7;\n 8[\"Merge PE/SE BAMs in a single collection with all samples Part the workflow \u201dIdentifying DR with TB-profiler\"];\n 5 -->|snpsbam| 8;\n 6 -->|snpsbam| 8;\n 9[\"TB Variant Filter\"];\n 7 -->|output| 9;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "From Fastqs to VCFs and BAMs", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "errors": null, + "id": 3, + "input_connections": { + "readtype|fastq_in": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Trimmomatic", + "outputs": [ + { + "name": "fastq_out", + "type": "input" + } + ], + "position": { + "bottom": 592.2166595458984, + "height": 100.09999084472656, + "left": 983.4000244140625, + "right": 1203.4000244140625, + "top": 492.1166687011719, + "width": 220, + "x": 983.4000244140625, + "y": 492.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "tool_shed_repository": { + "changeset_revision": "d94aff5ee623", + "name": "trimmomatic", + "owner": "pjbriggs", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"illuminaclip\": {\"do_illuminaclip\": \"false\", \"__current_case__\": 1}, \"operations\": [{\"__index__\": 0, \"operation\": {\"name\": \"SLIDINGWINDOW\", \"__current_case__\": 0, \"window_size\": \"4\", \"required_quality\": \"30\"}}, {\"__index__\": 1, \"operation\": {\"name\": \"MINLEN\", \"__current_case__\": 1, \"minlen\": \"20\"}}], \"output_err\": \"false\", \"output_logs\": \"false\", \"readtype\": {\"single_or_paired\": \"se\", \"__current_case__\": 0, \"fastq_in\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.38.1", + "type": "tool", + "uuid": "91899b6e-1f22-45de-a6bc-acd43adac9fb", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastq_out", + "uuid": "c206129e-10b1-4c90-8404-ee4540c7216a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "errors": null, + "id": 4, + "input_connections": { + "readtype|fastq_pair": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Trimmomatic", + "outputs": [ + { + "name": "fastq_out_paired", + "type": "input" + }, + { + "name": "fastq_out_unpaired", + "type": "input" + } + ], + "position": { + "bottom": 815.9500274658203, + "height": 199.8333282470703, + "left": 986.4000244140625, + "right": 1206.4000244140625, + "top": 616.11669921875, + "width": 220, + "x": 986.4000244140625, + "y": 616.11669921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "tool_shed_repository": { + "changeset_revision": "d94aff5ee623", + "name": "trimmomatic", + "owner": "pjbriggs", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"illuminaclip\": {\"do_illuminaclip\": \"false\", \"__current_case__\": 1}, \"operations\": [{\"__index__\": 0, \"operation\": {\"name\": \"SLIDINGWINDOW\", \"__current_case__\": 0, \"window_size\": \"4\", \"required_quality\": \"30\"}}, {\"__index__\": 1, \"operation\": {\"name\": \"MINLEN\", \"__current_case__\": 1, \"minlen\": \"20\"}}], \"output_err\": \"false\", \"output_logs\": \"false\", \"readtype\": {\"single_or_paired\": \"collection\", \"__current_case__\": 2, \"fastq_pair\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.38.1", + "type": "tool", + "uuid": "ee71335f-30af-4fd7-a121-bf108ffd5e0a", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastq_out_paired", + "uuid": "11fba967-c0af-4c4d-9d25-08edfec51758" + }, + { + "label": null, + "output_name": "fastq_out_unpaired", + "uuid": "b71f679d-b409-4154-9185-533fad7b45b4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "errors": null, + "id": 5, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 3, + "output_name": "fastq_out" + }, + "ref": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "Mapping and variant calling of SINGLE END FASTQs with snippy", + "name": "snippy", + "outputs": [ + { + "name": "snpvcf", + "type": "vcf" + }, + { + "name": "snptab", + "type": "tabular" + }, + { + "name": "snpsbam", + "type": "bam" + } + ], + "position": { + "bottom": 731.1166687011719, + "height": 332, + "left": 1665.4000244140625, + "right": 1885.4000244140625, + "top": 399.1166687011719, + "width": 220, + "x": 1665.4000244140625, + "y": 399.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "tool_shed_repository": { + "changeset_revision": "c9a8ef2aa380", + "name": "snippy", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"mapqual\": \"60\", \"mincov\": \"10\", \"minfrac\": \"0.1\", \"rgid\": \"\", \"bwaopt\": \"\"}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 1, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"outvcf\", \"outtab\", \"outbam\"], \"ref\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.2", + "type": "tool", + "uuid": "e38af720-1ae1-4f32-9e9d-562d0d040a85", + "workflow_outputs": [ + { + "label": null, + "output_name": "snpsbam", + "uuid": "4c15e214-85dd-4c43-b36a-3e482ab62879" + }, + { + "label": null, + "output_name": "snpvcf", + "uuid": "60968620-b9b0-4481-a17d-33229edb91e2" + }, + { + "label": null, + "output_name": "snptab", + "uuid": "128c6ded-1206-4f88-b93d-9254a37f8f25" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "fastq_input|fastq_input": { + "id": 4, + "output_name": "fastq_out_paired" + }, + "reference_source|ref_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "Mapping and variant calling of PAIRED END FASTQs with snippy", + "name": "snippy", + "outputs": [ + { + "name": "snpvcf", + "type": "vcf" + }, + { + "name": "snptab", + "type": "tabular" + }, + { + "name": "snpsbam", + "type": "bam" + } + ], + "position": { + "bottom": 1091.11669921875, + "height": 332, + "left": 1667.4000244140625, + "right": 1887.4000244140625, + "top": 759.11669921875, + "width": 220, + "x": 1667.4000244140625, + "y": 759.11669921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d220115f882b", + "name": "snippy", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"mapqual\": \"60\", \"mincov\": \"10\", \"minfrac\": \"0.1\", \"minqual\": \"100.0\", \"rgid\": \"\", \"bwaopt\": \"\", \"rename_cons\": \"false\"}, \"fastq_input\": {\"fastq_input_selector\": \"paired_collection\", \"__current_case__\": 2, \"fastq_input\": {\"__class__\": \"ConnectedValue\"}}, \"outputs\": [\"outvcf\", \"outtab\", \"outbam\"], \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.6.0+galaxy0", + "type": "tool", + "uuid": "18f42bea-16ad-4db6-9c80-26fae71d99de", + "workflow_outputs": [ + { + "label": null, + "output_name": "snptab", + "uuid": "6c7b8b74-395f-4326-bd62-e334cad878ca" + }, + { + "label": null, + "output_name": "snpsbam", + "uuid": "9eb3bc09-5277-48d3-a1d4-cf652d29e0d2" + }, + { + "label": null, + "output_name": "snpvcf", + "uuid": "7df12aa8-7a33-4985-83c4-5aeae5db29fd" + } + ] + }, + { + "annotation": "", + "content_id": "__MERGE_COLLECTION__", + "errors": null, + "id": 7, + "input_connections": { + "inputs_0|input": { + "id": 5, + "output_name": "snpvcf" + }, + "inputs_1|input": { + "id": 6, + "output_name": "snpvcf" + } + }, + "inputs": [], + "label": "Merge PE/SE VCFs in a single collection with all samples", + "name": "Merge collections", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 685.8166656494141, + "height": 244.6999969482422, + "left": 2111.39990234375, + "right": 2331.39990234375, + "top": 441.1166687011719, + "width": 220, + "x": 2111.39990234375, + "y": 441.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "__MERGE_COLLECTION__", + "tool_state": "{\"advanced\": {\"conflict\": {\"duplicate_options\": \"keep_first\", \"__current_case__\": 3}}, \"inputs\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "6110c068-756d-4b45-96e1-5f2334c1cf35", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "351b8679-eea7-4a76-8840-f5e34f6c4162" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.5+galaxy2", + "errors": null, + "id": 9, + "input_connections": { + "input1": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool TB Variant Filter", + "name": "input1" + } + ], + "label": null, + "name": "TB Variant Filter", + "outputs": [ + { + "name": "output1", + "type": "vcf" + } + ], + "position": { + "bottom": 574.6499938964844, + "height": 122.5333251953125, + "left": 2418.39990234375, + "right": 2638.39990234375, + "top": 452.1166687011719, + "width": 220, + "x": 2418.39990234375, + "y": 452.1166687011719 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.5+galaxy2", + "tool_shed_repository": { + "changeset_revision": "e7aff4a85df5", + "name": "tb_variant_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"show_filter_options\": \"no\", \"__current_case__\": 1}, \"filters\": [\"region_filter\", \"close_to_indel_filter\", \"min_depth_filter\"], \"input1\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.5+galaxy2", + "type": "tool", + "uuid": "83df9492-d224-420e-8434-24a1a32b9da8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "682b8412-8ca5-42c6-bcf2-c5795629471d" + } + ] + } + ], + "parent_id": "evolution/mtb_transmission", + "path": "topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": false, + "title": "From Fastqs to VCFs and BAMs", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_transmission/versions/galaxy-workflow-from-fastqs-to-vcfs-and-bams", + "tutorial_id": "mtb_transmission", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.html", + "version": 1, + "wfid": "evolution-mtb_transmission", + "wfname": "galaxy-workflow-from-fastqs-to-vcfs-and-bams", + "workflow": "Galaxy-Workflow-From_Fastqs_to_VCFs_and_BAMs.ga", + "workflow_tools": [ + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.3.5+galaxy2", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1" + ], + "workflowhub_id": "1305" + }, + { + "creators": [], + "description": "Given a set of VCF files and the reference genome used to do the mapping and SNP calling, create a multifasta file containing the genomes of all samples and calculate the matrix of pairwise SNP distances", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nCollection of VCFs to analyze\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome of the MTBC ancestor\"]\n 2[label=\"Filter TB variants\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Generate the complete genome of each of the samples\"]\n 2 -> 3 [label=\"output1\"]\n 1 -> 3 [label=\"output\"]\n kce5dd7a2c33d46b49f0268c2bdfcf31a[color=lightseagreen,label=\"Output\\n#{input_file}\"]\n 3 -> kce5dd7a2c33d46b49f0268c2bdfcf31a\n 4[label=\"Concatenate genomes to build a MSA\"]\n 3 -> 4 [label=\"output_file\"]\n 5[label=\"Keep only variable positions\"]\n 4 -> 5 [label=\"out_file1\"]\n 6[label=\"Calculate SNP distances\"]\n 5 -> 6 [label=\"output_fasta\"]\n}", + "history": [ + { + "hash": "679ca224ef8e44203f2aec12c805e0e892076d5b", + "message": "update tag", + "num": 2, + "short_hash": "679ca224e", + "unix": "1647423016" + }, + { + "hash": "2e7ba78522415b81e10f3f5a74144f4f419b218d", + "message": "tweak", + "num": 1, + "short_hash": "2e7ba7852", + "unix": "1647422653" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Collection of VCFs to analyze" + } + ], + "label": "Collection of VCFs to analyze", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 602.3000183105469, + "height": 89.10000610351562, + "left": 562.0999755859375, + "right": 782.0999755859375, + "top": 513.2000122070312, + "width": 220, + "x": 562.0999755859375, + "y": 513.2000122070312 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "a3701b5d-9f74-46b4-ae97-51c432933230", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genome of the MTBC ancestor" + } + ], + "label": "Reference genome of the MTBC ancestor", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 789.7333526611328, + "height": 111.53334045410156, + "left": 865.0999755859375, + "right": 1085.0999755859375, + "top": 678.2000122070312, + "width": 220, + "x": 865.0999755859375, + "y": 678.2000122070312 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "899dca08-73f5-4ac1-9d19-313414c90a1e", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nCollection of VCFs to analyze\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference genome of the MTBC ancestor\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Filter TB variants\"];\n 0 -->|output| 2;\n 3[\"Generate the complete genome of each of the samples\"];\n 2 -->|output1| 3;\n 1 -->|output| 3;\n ce5dd7a2-c33d-46b4-9f02-68c2bdfcf31a[\"Output\\n#{input_file}\"];\n 3 --> ce5dd7a2-c33d-46b4-9f02-68c2bdfcf31a;\n style ce5dd7a2-c33d-46b4-9f02-68c2bdfcf31a stroke:#2c3143,stroke-width:4px;\n 4[\"Concatenate genomes to build a MSA\"];\n 3 -->|output_file| 4;\n 5[\"Keep only variable positions\"];\n 4 -->|out_file1| 5;\n 6[\"Calculate SNP distances\"];\n 5 -->|output_fasta| 6;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "From VCFs to SNP distance matrix", + "outputs": [ + { + "annotation": "We will ensure at this step that variants to build the MSA are fixed variants and that we low-confidence filter repetitive regions of the MTB genome", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.1.3+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Filter TB variants", + "name": "TB Variant Filter", + "outputs": [ + { + "name": "output1", + "type": "vcf" + } + ], + "position": { + "bottom": 636.7333526611328, + "height": 122.53334045410156, + "left": 866.0999755859375, + "right": 1086.0999755859375, + "top": 514.2000122070312, + "width": 220, + "x": 866.0999755859375, + "y": 514.2000122070312 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "#{input1}.filter.vcf" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.1.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3b1e7c170b10", + "name": "tb_variant_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"show_filter_options\": \"yes\", \"__current_case__\": 0, \"region_filter\": [\"pe_ppe\", \"uvp\"], \"indel_window_size\": \"5\", \"min_percentage_alt\": \"90.0\", \"min_depth\": \"30\"}, \"filters\": [\"region_filter\", \"close_to_indel_filter\", \"min_percentage_alt_filter\", \"snv_only_filter\"], \"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.3+galaxy0", + "type": "tool", + "uuid": "b6ef7486-0dc1-4f0c-ad2d-038f648670b8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "87f8ad83-d43e-4e44-8bed-33415b7add79" + } + ] + }, + { + "annotation": "The complete genome of each of the samples is generated by inserting the SNPs defined in the respective VCF in the reference genome that was used for mapping and SNP calling", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 2, + "output_name": "output1" + }, + "reference_source|fasta_ref": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools consensus", + "name": "input_file" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "reference_source" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "sec_default" + } + ], + "label": "Generate the complete genome of each of the samples", + "name": "bcftools consensus", + "outputs": [ + { + "name": "output_file", + "type": "fasta" + } + ], + "position": { + "bottom": 734.0333557128906, + "height": 209.83334350585938, + "left": 1144.0999755859375, + "right": 1364.0999755859375, + "top": 524.2000122070312, + "width": 220, + "x": 1144.0999755859375, + "y": 524.2000122070312 + }, + "post_job_actions": { + "RenameDatasetActionoutput_file": { + "action_arguments": { + "newname": "#{input_file}" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy2", + "tool_shed_repository": { + "changeset_revision": "a87ae767b01d", + "name": "bcftools_consensus", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chain\": \"false\", \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"RuntimeValue\"}}, \"rename\": \"true\", \"sec_default\": {\"mask\": {\"__class__\": \"RuntimeValue\"}, \"iupac_codes\": \"false\", \"sample\": \"\", \"select_haplotype\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy2", + "type": "tool", + "uuid": "967af052-882a-427c-825e-e88f59ac50b3", + "workflow_outputs": [ + { + "label": "#{input_file}", + "output_name": "output_file", + "uuid": "ce5dd7a2-c33d-46b4-9f02-68c2bdfcf31a" + } + ] + }, + { + "annotation": "All genomes are concatenated in a single multifasta file. Because all o them have the same length, this may be seen as a multiple sequence alignment.", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 4, + "input_connections": { + "inputs": { + "id": 3, + "output_name": "output_file" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Concatenate datasets", + "name": "inputs" + } + ], + "label": "Concatenate genomes to build a MSA", + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 647.7333526611328, + "height": 122.53334045410156, + "left": 1519.0999755859375, + "right": 1739.0999755859375, + "top": 525.2000122070312, + "width": 220, + "x": 1519.0999755859375, + "y": 525.2000122070312 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"RuntimeValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "e0b536e1-c56c-41ed-9600-905d0cf58e97", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "c1fe096c-2693-4128-8139-4285bcd394ad" + } + ] + }, + { + "annotation": "Discard invariant positions from the MSA to simplify the file so only contains positions with at least one SNP in at least one strain.", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snp_sites/snp_sites/2.5.1+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input_fasta": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Finds SNP sites", + "name": "input_fasta" + } + ], + "label": "Keep only variable positions", + "name": "Finds SNP sites", + "outputs": [ + { + "name": "output_fasta", + "type": "fasta" + } + ], + "position": { + "bottom": 647.1666870117188, + "height": 144.9666748046875, + "left": 1843.0999755859375, + "right": 2063.0999755859375, + "top": 502.20001220703125, + "width": 220, + "x": 1843.0999755859375, + "y": 502.20001220703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snp_sites/snp_sites/2.5.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5804f786060d", + "name": "snp_sites", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_fasta\": {\"__class__\": \"RuntimeValue\"}, \"out_type\": {\"ot_select\": \"alignment\", \"__current_case__\": 0, \"formats\": [\"-m\"], \"b\": \"false\", \"c\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5.1+galaxy0", + "type": "tool", + "uuid": "3718c889-5f1c-4cc7-977c-eaa564753c9b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_fasta", + "uuid": "2931ef4f-28d7-4701-bee0-292177bf0841" + } + ] + }, + { + "annotation": "From the MSA. Calculate pairwise SNP distances between samples. ", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.6.3+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 5, + "output_name": "output_fasta" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SNP distance matrix", + "name": "input" + } + ], + "label": "Calculate SNP distances", + "name": "SNP distance matrix", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 662.6000213623047, + "height": 167.40000915527344, + "left": 2173.10009765625, + "right": 2393.10009765625, + "top": 495.20001220703125, + "width": 220, + "x": 2173.10009765625, + "y": 495.20001220703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.6.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1959cc43b414", + "name": "snp_dists", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"a\": \"false\", \"b\": \"false\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"k\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.6.3+galaxy0", + "type": "tool", + "uuid": "e5f85c1b-43cc-417e-8e02-79ecc511b4ec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2dff3ea9-ce2d-48eb-b9eb-90b3b6034ae6" + } + ] + } + ], + "parent_id": "evolution/mtb_transmission", + "path": "topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": false, + "title": "From VCFs to SNP distance matrix", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_transmission/versions/main-workflow", + "tutorial_id": "mtb_transmission", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_transmission/workflows/main_workflow.html", + "version": 1, + "wfid": "evolution-mtb_transmission", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.9+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_dists/snp_dists/0.6.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snp_sites/snp_sites/2.5.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.1.3+galaxy0" + ], + "workflowhub_id": "1309" + } + ], + "zenodo_link": "https://zenodo.org/record/6010176" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "raxml", + "owner": "iuc", + "revisions": "ea30d3089354", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "raxml", + "owner": "iuc", + "revisions": "73a469f7dc96", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: raxml\n owner: iuc\n revisions: ea30d3089354\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: raxml\n owner: iuc\n revisions: 73a469f7dc96\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_phylogeny/tutorial.json", + "contributions": { + "authorship": [ + "cstritt", + "dbrites", + "GaloGS" + ], + "editing": [ + "wm75" + ] + }, + "contributors": [ + { + "id": "cstritt", + "joined": "2022-03", + "name": "Christoph Stritt", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cstritt/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cstritt.json" + }, + { + "id": "dbrites", + "joined": "2022-03", + "name": "Daniela Brites", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dbrites/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dbrites.json" + }, + { + "id": "GaloGS", + "joined": "2022-03", + "name": "Galo A. Goig", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/GaloGS/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/GaloGS.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/evolution/tutorials/mtb_phylogeny", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0084", + "topic_3324" + ], + "edam_operation": [ + "Sequence analysis", + "Phylogenetic tree analysis" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Phylogeny", + "Infectious disease" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "evolution/mtb_phylogeny", + "inexact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-03-12", + "objectives": [ + "Understand the basic concepts behind phylogenetic trees, as applied to *Mycobacterium tuberculosis*", + "Be able to read and interrogate a phylogeny encountered in the literature" + ], + "pageviews": 1983, + "pub_date": "2022-03-16", + "questions": [ + "What information can I get from a phylogenetic tree?", + "How do I estimate a phylogeny?" + ], + "requirements": [ + { + "topic_name": "variant-analysis", + "tutorials": [ + "tb-variant-analysis" + ], + "type": "internal" + }, + { + "topic_name": "evolution", + "tutorials": [ + "mtb_transmission" + ], + "type": "internal" + } + ], + "short_id": "T00144", + "short_tools": [ + "interactive_tool_rstudio", + "upload1", + "raxml" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "one-health", + "phylogenetics", + "microgalaxy" + ], + "time_estimation": "1H", + "title": "Tree thinking for tuberculosis evolution and epidemiology", + "tools": [ + "interactive_tool_rstudio", + "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.12+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.4+galaxy2", + "upload1" + ], + "topic_name": "evolution", + "topic_name_human": "Evolution", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mtb_phylogeny", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/evolution/tutorials/mtb_phylogeny/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_phylogeny/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/evolution/tutorials/mtb_phylogeny/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 131, + "visitors": 1308, + "workflows": [ + { + "creators": [], + "description": "Estimate a phylogenetic tree from whole genome sequencing data for M. tuberculosis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput alignment\"]\n 1[label=\"RStudio\"]\n 2[label=\"Estimate phylogeny with RAxML\"]\n 0 -> 2 [label=\"output\"]\n k9f8ae577c5834a2db64d14c25fb859d9[color=lightseagreen,label=\"Output\\nBest-scoring ML Tree\"]\n 2 -> k9f8ae577c5834a2db64d14c25fb859d9\n kbdb8cf2fb5534a968b5538b4b499ab88[color=lightseagreen,label=\"Output\\nInfo\"]\n 2 -> kbdb8cf2fb5534a968b5538b4b499ab88\n}", + "history": [ + { + "hash": "afdd9be4b6e36ae6eafd8b9a9a98e215f1546961", + "message": "add tag", + "num": 3, + "short_hash": "afdd9be4b", + "unix": "1647422954" + }, + { + "hash": "946859f788400ae6b40df5b7a08a07fd6fe44edf", + "message": "prettyprint workflow", + "num": 2, + "short_hash": "946859f78", + "unix": "1647422932" + }, + { + "hash": "2e7ba78522415b81e10f3f5a74144f4f419b218d", + "message": "tweak", + "num": 1, + "short_hash": "2e7ba7852", + "unix": "1647422653" + } + ], + "inputs": [ + { + "annotation": "Alignment in fasta format, containing variable positions from variant calling", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Alignment in fasta format, containing variable positions from variant calling", + "name": "Input alignment" + } + ], + "label": "Input alignment", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 433.31666564941406, + "height": 82.19999694824219, + "left": 392.7166748046875, + "right": 592.7166748046875, + "top": 351.1166687011719, + "width": 200, + "x": 392.7166748046875, + "y": 351.1166687011719 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "94b1ea1c-8a3a-4fb7-9cfe-40a1c1c1833d", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput alignment\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"RStudio\"];\n 2[\"Estimate phylogeny with RAxML\"];\n 0 -->|output| 2;\n 9f8ae577-c583-4a2d-b64d-14c25fb859d9[\"Output\\nBest-scoring ML Tree\"];\n 2 --> 9f8ae577-c583-4a2d-b64d-14c25fb859d9;\n style 9f8ae577-c583-4a2d-b64d-14c25fb859d9 stroke:#2c3143,stroke-width:4px;\n bdb8cf2f-b553-4a96-8b55-38b4b499ab88[\"Output\\nInfo\"];\n 2 --> bdb8cf2f-b553-4a96-8b55-38b4b499ab88;\n style bdb8cf2f-b553-4a96-8b55-38b4b499ab88 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "Mtb phylogeny", + "outputs": [ + { + "annotation": "Maximum likelihood-based inference of a phylogenetic tree", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.4+galaxy2", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Phyogenetic reconstruction with RAxML", + "name": "infile" + } + ], + "label": "Estimate phylogeny with RAxML", + "name": "Phyogenetic reconstruction with RAxML", + "outputs": [ + { + "name": "info", + "type": "txt" + }, + { + "name": "logReq", + "type": "txt" + }, + { + "name": "parsimonyTreeReq", + "type": "nhx" + }, + { + "name": "resultReq", + "type": "nhx" + }, + { + "name": "bestTree", + "type": "nhx" + } + ], + "position": { + "bottom": 629.4500122070312, + "height": 276, + "left": 678.2166748046875, + "right": 878.2166748046875, + "top": 353.45001220703125, + "width": 200, + "x": 678.2166748046875, + "y": 353.45001220703125 + }, + "post_job_actions": { + "DeleteIntermediatesActioninfo": { + "action_arguments": {}, + "action_type": "DeleteIntermediatesAction", + "output_name": "info" + }, + "HideDatasetActionlogReq": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "logReq" + }, + "HideDatasetActionparsimonyTreeReq": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "parsimonyTreeReq" + }, + "HideDatasetActionresultReq": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "resultReq" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "73a469f7dc96", + "name": "raxml", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"RuntimeValue\"}, \"random_seed\": \"1234567890\", \"search_model_selector\": {\"model_type\": \"nucleotide\", \"__current_case__\": 0, \"base_model\": \"GTRGAMMA\"}, \"selExtraOpts\": {\"extraOptions\": \"required\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "8.2.4+galaxy2", + "type": "tool", + "uuid": "057bd38a-20c2-4713-ba6f-964f15904b37", + "workflow_outputs": [ + { + "label": "Best-scoring ML Tree", + "output_name": "bestTree", + "uuid": "9f8ae577-c583-4a2d-b64d-14c25fb859d9" + }, + { + "label": "Info", + "output_name": "info", + "uuid": "bdb8cf2f-b553-4a96-8b55-38b4b499ab88" + } + ] + } + ], + "parent_id": "evolution/mtb_phylogeny", + "path": "topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.ga", + "tags": [ + "evolution" + ], + "test_results": null, + "tests": false, + "title": "Mtb phylogeny", + "topic_id": "evolution", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/evolution-mtb_phylogeny/versions/main-workflow", + "tutorial_id": "mtb_phylogeny", + "url": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/evolution/tutorials/mtb_phylogeny/workflows/main_workflow.html", + "version": 1, + "wfid": "evolution-mtb_phylogeny", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "interactive_tool_rstudio", + "toolshed.g2.bx.psu.edu/repos/iuc/raxml/raxml/8.2.4+galaxy2" + ], + "workflowhub_id": "1300" + } + ], + "zenodo_link": "https://zenodo.org/record/6010176" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "revisions": "8e214e52e461", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "revisions": "7255688c77f3", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "enumerate_charges", + "owner": "bgruening", + "revisions": "2a868592ebcb", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "enumerate_charges", + "owner": "bgruening", + "revisions": "67ee76f0e497", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "b59c91adeac1", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openbabel_compound_convert", + "owner": "bgruening", + "revisions": "e2c36f62e22f", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rdock_rbcavity", + "owner": "bgruening", + "revisions": "744a777e9f90", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rdock_rbdock", + "owner": "bgruening", + "revisions": "a22969b08177", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rxdock_rbcavity", + "owner": "bgruening", + "revisions": "7fac8e7a12d5", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rxdock_rbdock", + "owner": "bgruening", + "revisions": "6fe6b0e10ed6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "0046692724f9", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "split_file_to_collection", + "owner": "bgruening", + "revisions": "6cbe2f30c2d7", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sucos_max_score", + "owner": "bgruening", + "revisions": "d4c67ced6abc", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sucos_max_score", + "owner": "bgruening", + "revisions": "9b48456a96fe", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "xchem_transfs_scoring", + "owner": "bgruening", + "revisions": "f6f9b47d02b6", + "tool_panel_section_label": "ChemicalToolBox", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "830961c48e42", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: ctb_frankenstein_ligand\n owner: bgruening\n revisions: 8e214e52e461\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ctb_frankenstein_ligand\n owner: bgruening\n revisions: 7255688c77f3\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: enumerate_charges\n owner: bgruening\n revisions: 2a868592ebcb\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: enumerate_charges\n owner: bgruening\n revisions: 67ee76f0e497\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: b59c91adeac1\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openbabel_compound_convert\n owner: bgruening\n revisions: e2c36f62e22f\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rdock_rbcavity\n owner: bgruening\n revisions: 744a777e9f90\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rdock_rbdock\n owner: bgruening\n revisions: a22969b08177\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rxdock_rbcavity\n owner: bgruening\n revisions: 7fac8e7a12d5\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rxdock_rbdock\n owner: bgruening\n revisions: 6fe6b0e10ed6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: '0046692724f9'\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: split_file_to_collection\n owner: bgruening\n revisions: 6cbe2f30c2d7\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sucos_max_score\n owner: bgruening\n revisions: d4c67ced6abc\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sucos_max_score\n owner: bgruening\n revisions: 9b48456a96fe\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: xchem_transfs_scoring\n owner: bgruening\n revisions: f6f9b47d02b6\n tool_panel_section_label: ChemicalToolBox\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 830961c48e42\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/computational-chemistry/tutorials/covid19-docking", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "computational-chemistry/covid19-docking", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Galaxy can support large, rapid studies in computational chemistry", + "Protein-ligand docking contributes to the discovery of new drugs" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Understand how Galaxy was used to perform docking and pose scoring on the SARS-CoV-2 main protease (MPro).", + "Replicate the study on a (very) small scale", + "Gain familiarity with the docking and scoring techniques involved." + ], + "pageviews": 4516, + "pub_date": "2020-03-27", + "questions": [ + "How can candidate ligands be generated and docked to a protein in Galaxy?", + "How can the poses of the docked ligands be evaluated?", + "How can a workflow for drug virtual screening be constructed in Galaxy?" + ], + "requirements": [ + { + "topic_name": "computational-chemistry", + "tutorials": [ + "cheminformatics" + ], + "type": "internal" + } + ], + "short_id": "T00049", + "short_tools": [ + "enumerate_charges", + "xchem_transfs_scoring", + "rdock_rbdock", + "rdock_rbcavity", + "rxdock_rbcavity", + "xchem_pose_scoring", + "openbabel_compound_convert", + "split_file_to_collection", + "ctb_frankenstein_ligand", + "sucos_max_score", + "collapse_dataset", + "rxdock_rbdock" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "covid19", + "one-health" + ], + "time_estimation": "2H", + "title": "Virtual screening of the SARS-CoV-2 main protease with rxDock and pose scoring", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/2013.1-0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/2.4.2.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/3.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbcavity/rdock_rbcavity/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbdock/rdock_rbdock/0.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/rxdock_rbcavity/rxdock_rbcavity/0.1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/rxdock_rbdock/rxdock_rbdock/0.1.5", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.4.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/0.2.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/2020.03.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/xchem_transfs_scoring/xchem_transfs_scoring/0.4.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "xchem_pose_scoring" + ], + "topic_name": "computational-chemistry", + "topic_name_human": "Computational chemistry", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "covid19-docking", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/computational-chemistry/tutorials/covid19-docking/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/computational-chemistry/tutorials/covid19-docking/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 178, + "visitors": 2664, + "workflows": [ + { + "creators": [], + "description": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCandidates\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMpro-x0195_0_apo-desolv.pdb\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhits.sdf\"]\n 3[label=\"Enumerate changes\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Compound conversion\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Create Frankenstein ligand\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Compound conversion\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"rDock cavity definition\"]\n 4 -> 7 [label=\"outfile\"]\n 5 -> 7 [label=\"outfile\"]\n 8[label=\"Split file\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"rDock docking\"]\n 4 -> 9 [label=\"outfile\"]\n 8 -> 9 [label=\"list_output_sdf\"]\n 7 -> 9 [label=\"activesite\"]\n 10[label=\"Collapse Collection\"]\n 9 -> 10 [label=\"output\"]\n 11[label=\"XChem TransFS pose scoring\"]\n 1 -> 11 [label=\"output\"]\n 10 -> 11 [label=\"output\"]\n 12[label=\"Max SuCOS score\"]\n 11 -> 12 [label=\"output\"]\n 2 -> 12 [label=\"output\"]\n}", + "history": [ + { + "hash": "cf8b1cb0509e73e534c234076c8bd055379823c5", + "message": "Update some workflow names for consistency", + "num": 4, + "short_hash": "cf8b1cb05", + "unix": "1598836271" + }, + { + "hash": "60a21218780027dcf65a5f37b94148b0771303e1", + "message": "update with covid19 tut with frankenstein ligand tool", + "num": 3, + "short_hash": "60a212187", + "unix": "1591084355" + }, + { + "hash": "2bffcbdc75d8aaf32b06acc2f9f493931782546d", + "message": "lint", + "num": 2, + "short_hash": "2bffcbdc7", + "unix": "1585304017" + }, + { + "hash": "62d30105b34ea23f3280539d9880037639aa770e", + "message": "linting covid19 cheminformatics tutorial", + "num": 1, + "short_hash": "62d30105b", + "unix": "1585300158" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Candidates" + } + ], + "label": "Candidates", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Candidates\"}", + "tool_version": null, + "type": "data_input", + "uuid": "47bf8c53-ae1e-4af6-bece-6adfd74b627c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cdab037e-aee1-49b8-a998-cd9fe7ddcdb7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mpro-x0195_0_apo-desolv.pdb" + } + ], + "label": "Mpro-x0195_0_apo-desolv.pdb", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 289.76666259765625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mpro-x0195_0_apo-desolv.pdb\"}", + "tool_version": null, + "type": "data_input", + "uuid": "156f4aeb-d160-456a-974e-7884b79cb83a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fd1c624-37c6-4874-b863-a40eac5e4994" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hits.sdf" + } + ], + "label": "hits.sdf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 400.5333251953125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"hits.sdf\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dd2d3bc0-8138-4e66-b2d9-e5e90e27b659", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1c8fb3cc-52ad-4f62-a00d-80b14b2c1d4a" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nCandidates\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nMpro-x0195_0_apo-desolv.pdb\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nhits.sdf\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Enumerate changes\"];\n 0 -->|output| 3;\n 4[\"Compound conversion\"];\n 1 -->|output| 4;\n 5[\"Create Frankenstein ligand\"];\n 2 -->|output| 5;\n 6[\"Compound conversion\"];\n 3 -->|output| 6;\n 7[\"rDock cavity definition\"];\n 4 -->|outfile| 7;\n 5 -->|outfile| 7;\n 8[\"Split file\"];\n 6 -->|outfile| 8;\n 9[\"rDock docking\"];\n 4 -->|outfile| 9;\n 8 -->|list_output_sdf| 9;\n 7 -->|activesite| 9;\n 10[\"Collapse Collection\"];\n 9 -->|output| 10;\n 11[\"XChem TransFS pose scoring\"];\n 1 -->|output| 11;\n 10 -->|output| 11;\n 12[\"Max SuCOS score\"];\n 11 -->|output| 12;\n 2 -->|output| 12;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Candidates" + } + ], + "label": "Candidates", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Candidates\"}", + "tool_version": null, + "type": "data_input", + "uuid": "47bf8c53-ae1e-4af6-bece-6adfd74b627c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cdab037e-aee1-49b8-a998-cd9fe7ddcdb7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mpro-x0195_0_apo-desolv.pdb" + } + ], + "label": "Mpro-x0195_0_apo-desolv.pdb", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 289.76666259765625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mpro-x0195_0_apo-desolv.pdb\"}", + "tool_version": null, + "type": "data_input", + "uuid": "156f4aeb-d160-456a-974e-7884b79cb83a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fd1c624-37c6-4874-b863-a40eac5e4994" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hits.sdf" + } + ], + "label": "hits.sdf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 218, + "top": 400.5333251953125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"hits.sdf\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dd2d3bc0-8138-4e66-b2d9-e5e90e27b659", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1c8fb3cc-52ad-4f62-a00d-80b14b2c1d4a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Create Frankenstein ligand", + "name": "infile" + } + ], + "label": null, + "name": "Create Frankenstein ligand", + "outputs": [ + { + "name": "outfile", + "type": "sdf" + } + ], + "position": { + "left": 478.76666259765625, + "top": 483.5333251953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "tool_shed_repository": { + "changeset_revision": "8e214e52e461", + "name": "ctb_frankenstein_ligand", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "081abe35-347a-4244-99ae-ec35329e3de0", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "53c557af-d5b9-4033-be54-7c197591e750" + } + ] + } + ], + "parent_id": "computational-chemistry/covid19-docking", + "path": "topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", + "tags": [ + "computational-chemistry" + ], + "test_results": null, + "tests": false, + "title": "Virtual screening of the SARS-CoV-2 main protease with rDock and pose scoring", + "topic_id": "computational-chemistry", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/computational-chemistry-covid19-docking/versions/workflow", + "tutorial_id": "covid19-docking", + "url": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/computational-chemistry/tutorials/covid19-docking/workflows/workflow.html", + "version": 3, + "wfid": "computational-chemistry-covid19-docking", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/ctb_frankenstein_ligand/ctb_frankenstein_ligand/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/enumerate_charges/enumerate_charges/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/openbabel_compound_convert/openbabel_compound_convert/2.4.2.2.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbcavity/rdock_rbcavity/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/rdock_rbdock/rdock_rbdock/0.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/split_file_to_collection/split_file_to_collection/0.4.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sucos_max_score/sucos_max_score/0.2.3", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/4.2", + "xchem_pose_scoring" + ], + "workflowhub_id": "1079" + } + ], + "zenodo_link": "https://zenodo.org/record/3730474" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_split_ref", + "owner": "iuc", + "revisions": "9b520009db81", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "iqtree", + "owner": "iuc", + "revisions": "24d024316465", + "tool_panel_section_label": "Evolution", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ivar_consensus", + "owner": "iuc", + "revisions": "40737febe339", + "tool_panel_section_label": "Virology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qualimap_bamqc", + "owner": "iuc", + "revisions": "19ece8afbaab", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "5826298f6a73", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "vapor", + "owner": "iuc", + "revisions": "244812f5bd1f", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mafft", + "owner": "rnateam", + "revisions": "bf28a8cff401", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_split_ref\n owner: iuc\n revisions: 9b520009db81\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: iqtree\n owner: iuc\n revisions: 24d024316465\n tool_panel_section_label: Evolution\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ivar_consensus\n owner: iuc\n revisions: 40737febe339\n tool_panel_section_label: Virology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qualimap_bamqc\n owner: iuc\n revisions: 19ece8afbaab\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 5826298f6a73\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: vapor\n owner: iuc\n revisions: 244812f5bd1f\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mafft\n owner: rnateam\n revisions: bf28a8cff401\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/aiv-analysis/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/variant-analysis/tutorials/aiv-analysis", + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Genome indexing", + "Sequence file editing", + "De-novo assembly", + "Sequence analysis", + "Read mapping", + "Sequence alignment analysis", + "Phylogenetic analysis", + "Sequence alignment", + "Data retrieval", + "Multiple sequence alignment", + "Generation", + "Data handling" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/aiv-analysis", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Reassortment of gene segments makes reference-based mapping of influenza sequencing data challenging", + "An alternative to *de-novo* assembly can be mapping to a dynamically chosen reference genome", + "Variant calling and consensus genome construction can follow workflows used also for other viral sequence data", + "Standard phylogenetic tools can be used to find relationships between influenza samples but should be used on a per-segment basis" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-03-20", + "objectives": [ + "Determine how reassortment impacts reference-based mapping approaches", + "Use a collection of per-segment reference sequences to construct a hybrid reference genome that is sufficiently close to a sequenced sample to be useful as a reference for mapping", + "Construct a sample consensus genome from mapped reads", + "Generate per-segment phylogenetic trees of AIV consensus sequences" + ], + "pageviews": 1792, + "pub_date": "2022-11-21", + "questions": [ + "With reassortment of gene segments being a common event in avian influenza virus (AIV) evolution, does it make sense to use a reference-based mapping approach for constructing consensus genome sequences for AIV samples?", + "Is it possible to reuse existing tools and workflows developed for the analysis of sequencing data from other viruses?", + "How can we obtain meaningful phylogenetic insight from AIV consensus sequences?" + ], + "short_id": "T00308", + "short_tools": [ + "Grep1", + "fastp", + "upload1", + "samtools_view", + "bamtools_split_ref", + "tp_find_and_replace", + "rbc_mafft", + "seqtk_subseq", + "qualimap_bamqc", + "Show beginning1", + "vapor", + "iqtree", + "ivar_consensus", + "__RELABEL_FROM_FILE__", + "bwa_mem", + "collapse_dataset" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "virology", + "one-health" + ], + "time_estimation": "4H", + "title": "Avian influenza viral strain analysis from gene segment sequencing data", + "tools": [ + "Grep1", + "Show beginning1", + "__RELABEL_FROM_FILE__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_ref/bamtools_split_ref/2.5.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.1.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/ivar_consensus/ivar_consensus/1.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2d+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/vapor/vapor/1.0.2+galaxy3", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.520+galaxy0", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "aiv-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/aiv-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/aiv-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/aiv-analysis/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 166, + "visitors": 1198 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "salmon", + "owner": "bgruening", + "revisions": "e3d32471da11", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trim_galore", + "owner": "bgruening", + "revisions": "949f01671246", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filter_by_fasta_ids", + "owner": "galaxyp", + "revisions": "3c623e81be77", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deseq2", + "owner": "iuc", + "revisions": "6a3a025714d3", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "b2f1f75d49c4", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "5e33b465d8d5", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sample_seqs", + "owner": "peterjc", + "revisions": "7c40a1fbc82e", + "tool_panel_section_label": "Filter and Sort", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mirdeep2_mapper", + "owner": "rnateam", + "revisions": "a8d24f4b6d95", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mirdeep2_quantifier", + "owner": "rnateam", + "revisions": "d5ea61ff12eb", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "targetfinder", + "owner": "rnateam", + "revisions": "c9d56748fbde", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: salmon\n owner: bgruening\n revisions: e3d32471da11\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trim_galore\n owner: bgruening\n revisions: 949f01671246\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filter_by_fasta_ids\n owner: galaxyp\n revisions: 3c623e81be77\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deseq2\n owner: iuc\n revisions: 6a3a025714d3\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: b2f1f75d49c4\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 5e33b465d8d5\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sample_seqs\n owner: peterjc\n revisions: 7c40a1fbc82e\n tool_panel_section_label: Filter and Sort\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mirdeep2_mapper\n owner: rnateam\n revisions: a8d24f4b6d95\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mirdeep2_quantifier\n owner: rnateam\n revisions: d5ea61ff12eb\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: targetfinder\n owner: rnateam\n revisions: c9d56748fbde\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/mirna-target-finder/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "email": "beatrizserrano.galaxy@gmail.com", + "id": "beatrizserrano", + "joined": "2020-07", + "linkedin": "beatriz-serrano", + "matrix": "beatrizserrano:matrix.org", + "name": "Beatriz Serrano-Solano", + "orcid": "0000-0002-5862-6132", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/beatrizserrano/", + "twitter": "BSerranoSolano", + "url": "https://training.galaxyproject.org/training-material/api/contributors/beatrizserrano.json" + } + ], + "dir": "topics/transcriptomics/tutorials/mirna-target-finder", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Sequence composition calculation", + "Read pre-processing", + "RNA-Seq quantification", + "Gene expression analysis", + "Validation", + "Sequence trimming", + "Differential gene expression analysis", + "RNA-Seq analysis", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/mirna-target-finder", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "MiRDeep2 in combination with the PmiREN database allows to quantify miRNA expression in plants", + "The use of the Salmon tool and the AtRTD2 transcriptome allows rapid and accurate quantification of transcripts in _Arabidopsis_", + "The combination of differential expression analysis and the TargetFinder tool is an effective strategy for the identification of miRNA target genes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Perform miRNA differential expression analysis", + "Understand the quasi-mapping-based Salmon method for quantifying the expression of transcripts using RNA-Seq data", + "Idenfity potential miRNAs involved in brassinosteroid-mediated regulation networks" + ], + "pageviews": 5219864, + "pub_date": "2021-04-08", + "questions": [ + "Which miRNAs are upregulated in response to brassinosteroids?", + "Which genes are potential target of brassinosteroid-induced miRNAs?" + ], + "recordings": [ + { + "captioners": [ + "gallardoalba" + ], + "date": "2021-07-25", + "galaxy_version": "21.05", + "length": "1H10M", + "speakers": [ + "gallardoalba" + ], + "youtube_id": "wS1X_0Mgw7M" + } + ], + "short_id": "T00292", + "short_tools": [ + "cat1", + "multiqc", + "filter_by_fasta_ids", + "targetfinder", + "sort1", + "sample_seqs", + "Cut1", + "fastqc", + "salmon", + "Filter1", + "deseq2", + "rbc_mirdeep2_mapper", + "rbc_mirdeep2_quantifier", + "__MERGE_COLLECTION__", + "trim_galore" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "gallardoalba" + ], + "date": "2021-04-20", + "galaxy_version": "21.01", + "length": "10M", + "speakers": [ + "awspolly" + ], + "youtube_id": "FNmZoo2OXTU" + }, + { + "captioners": [ + "gallardoalba" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "10M", + "speakers": [ + "awspolly" + ], + "youtube_id": "7t0Gr1Jklqs" + } + ], + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "miRNA", + "plants", + "stress tolerance" + ], + "time_estimation": "2H", + "title": "Whole transcriptome analysis of Arabidopsis thaliana", + "tools": [ + "Cut1", + "Filter1", + "__MERGE_COLLECTION__", + "cat1", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/salmon/salmon/0.14.1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/peterjc/sample_seqs/sample_seqs/0.2.5", + "toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_mapper/rbc_mirdeep2_mapper/2.0.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_quantifier/rbc_mirdeep2_quantifier/2.0.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/targetfinder/targetfinder/1.7.0+galaxy1" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "mirna-target-finder", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/mirna-target-finder/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/mirna-target-finder/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/mirna-target-finder/tutorial.json" + }, + "version": 17, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 314, + "visitors": 1919285, + "workflows": [ + { + "creators": [], + "description": "Identify upregulated miRNAS and analyze potential targets in downregulated genes.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nControl miRNA FASTQ collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nTreated miRNA FASTQ collection\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nTreated mRNA FASTQ collection\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPrecursor miRNA sequences\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nControl mRNA FASTQ collection\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTranscriptome FASTA\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnotation GTF\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMature miRNA sequences\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nStar miRNA sequenes\"]\n 9[label=\"FastQC\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Trim Galore!\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"FastQC\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Trim Galore!\"]\n 1 -> 12 [label=\"output\"]\n 13[label=\"FastQC\"]\n 2 -> 13 [label=\"output\"]\n 14[label=\"FastQC\"]\n 4 -> 14 [label=\"output\"]\n 15[label=\"Salmon quant\"]\n 6 -> 15 [label=\"output\"]\n 2 -> 15 [label=\"output\"]\n 5 -> 15 [label=\"output\"]\n 16[label=\"Salmon quant\"]\n 6 -> 16 [label=\"output\"]\n 4 -> 16 [label=\"output\"]\n 5 -> 16 [label=\"output\"]\n 17[label=\"FastQC\"]\n 10 -> 17 [label=\"trimmed_reads_single\"]\n 18[label=\"MiRDeep2 Mapper\"]\n 10 -> 18 [label=\"trimmed_reads_single\"]\n 19[label=\"Merge collections\"]\n 11 -> 19 [label=\"text_file\"]\n 9 -> 19 [label=\"text_file\"]\n 20[label=\"FastQC\"]\n 12 -> 20 [label=\"trimmed_reads_single\"]\n 21[label=\"MiRDeep2 Mapper\"]\n 12 -> 21 [label=\"trimmed_reads_single\"]\n 22[label=\"Merge collections\"]\n 13 -> 22 [label=\"text_file\"]\n 14 -> 22 [label=\"text_file\"]\n 23[label=\"DESeq2\"]\n 15 -> 23 [label=\"output_gene_quant\"]\n 16 -> 23 [label=\"output_gene_quant\"]\n 6 -> 23 [label=\"output\"]\n 24[label=\"MiRDeep2 Quantifier\"]\n 7 -> 24 [label=\"output\"]\n 3 -> 24 [label=\"output\"]\n 18 -> 24 [label=\"output_reads_collapsed\"]\n 8 -> 24 [label=\"output\"]\n 25[label=\"MultiQC\"]\n 19 -> 25 [label=\"output\"]\n 26[label=\"Merge collections\"]\n 20 -> 26 [label=\"text_file\"]\n 17 -> 26 [label=\"text_file\"]\n 27[label=\"MiRDeep2 Quantifier\"]\n 7 -> 27 [label=\"output\"]\n 3 -> 27 [label=\"output\"]\n 21 -> 27 [label=\"output_reads_collapsed\"]\n 8 -> 27 [label=\"output\"]\n 28[label=\"MultiQC\"]\n 22 -> 28 [label=\"output\"]\n 29[label=\"Filter\"]\n 23 -> 29 [label=\"deseq_out\"]\n 30[label=\"Cut\"]\n 24 -> 30 [label=\"miRNAsExpressed\"]\n 31[label=\"MultiQC\"]\n 26 -> 31 [label=\"output\"]\n 32[label=\"Cut\"]\n 27 -> 32 [label=\"miRNAsExpressed\"]\n 33[label=\"Filter\"]\n 29 -> 33 [label=\"out_file1\"]\n 34[label=\"Filter\"]\n 29 -> 34 [label=\"out_file1\"]\n 35[label=\"DESeq2\"]\n 32 -> 35 [label=\"out_file1\"]\n 30 -> 35 [label=\"out_file1\"]\n 36[label=\"Cut\"]\n 34 -> 36 [label=\"out_file1\"]\n 37[label=\"Filter\"]\n 35 -> 37 [label=\"deseq_out\"]\n 38[label=\"Filter FASTA\"]\n 36 -> 38 [label=\"out_file1\"]\n 5 -> 38 [label=\"output\"]\n 39[label=\"Filter\"]\n 37 -> 39 [label=\"out_file1\"]\n 40[label=\"Filter\"]\n 37 -> 40 [label=\"out_file1\"]\n 41[label=\"Cut\"]\n 40 -> 41 [label=\"out_file1\"]\n 42[label=\"Filter FASTA\"]\n 41 -> 42 [label=\"out_file1\"]\n 8 -> 42 [label=\"output\"]\n 43[label=\"Filter FASTA\"]\n 41 -> 43 [label=\"out_file1\"]\n 7 -> 43 [label=\"output\"]\n 44[label=\"Concatenate datasets\"]\n 43 -> 44 [label=\"output\"]\n 42 -> 44 [label=\"output\"]\n 45[label=\"TargetFinder\"]\n 38 -> 45 [label=\"output\"]\n 44 -> 45 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "87d458cc1fd8db170670ddd5c186c98295267d9e", + "message": "Undo error", + "num": 7, + "short_hash": "87d458cc1", + "unix": "1674149735" + }, + { + "hash": "edf36428b978d5519a494eaee576a8a17c6c948e", + "message": "Fix tutorial", + "num": 6, + "short_hash": "edf36428b", + "unix": "1669862549" + }, + { + "hash": "a6636e32469b78edc30efcc646f92e77c4bdb58b", + "message": "add tags and annotation to the workflow", + "num": 5, + "short_hash": "a6636e324", + "unix": "1617760834" + }, + { + "hash": "a5a1a7567b95fa539b493a98f5924d2482e16997", + "message": "Update workflow for miRNA target identification in Arabidopsis", + "num": 4, + "short_hash": "a5a1a7567", + "unix": "1617760351" + }, + { + "hash": "0eacaeef42cdfef3d6f60d4ec481a3ef84b72765", + "message": "Update workflow and include downregulated miRNAS", + "num": 3, + "short_hash": "0eacaeef4", + "unix": "1617194856" + }, + { + "hash": "bdbe72dd283efbb454cf60a91384a9d130f8b342", + "message": "Fix tests workflow", + "num": 2, + "short_hash": "bdbe72dd2", + "unix": "1616702513" + }, + { + "hash": "4b406638ca884e2ad7b58db02d9c4cc7eff0005d", + "message": "New training: miRNA target finder", + "num": 1, + "short_hash": "4b406638c", + "unix": "1616700503" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Control miRNA FASTQ collection" + } + ], + "label": "Control miRNA FASTQ collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 1.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "286f34e3-d05b-40ba-b39e-2f0c7455ff23", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Treated miRNA FASTQ collection" + } + ], + "label": "Treated miRNA FASTQ collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 331.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "6ffd974f-fd40-4234-9bda-6edd9e65e702", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Treated mRNA FASTQ collection" + } + ], + "label": "Treated mRNA FASTQ collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 1161.984375, + "top": 778.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "e2260dff-96ce-4345-902a-73958f9ac0cf", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Precursor miRNA sequences" + } + ], + "label": "Precursor miRNA sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 575.984375, + "top": 1461.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7e8825d5-8e7f-4ec4-b0b4-f0efcc70e504", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Control mRNA FASTQ collection" + } + ], + "label": "Control mRNA FASTQ collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 1161.984375, + "top": 1101.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "5f622114-e64d-4a96-9866-e519b583cd98", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Transcriptome FASTA" + } + ], + "label": "Transcriptome FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1161.984375, + "top": 1220.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5bbd4e69-3b60-47e1-aecf-5d43ae6b54e5", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Annotation GTF" + } + ], + "label": "Annotation GTF", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1161.984375, + "top": 1340 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "570e8113-930a-4567-a380-fdb93fbcc60f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mature miRNA sequences" + } + ], + "label": "Mature miRNA sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 575.984375, + "top": 1770.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5d65f949-64bf-4f17-b242-f94d342b14a8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Star miRNA sequenes" + } + ], + "label": "Star miRNA sequenes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 575.984375, + "top": 1890 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d11848be-2417-4393-b87f-5e4d9500b4ed", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nControl miRNA FASTQ collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nTreated miRNA FASTQ collection\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nTreated mRNA FASTQ collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nPrecursor miRNA sequences\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Collection\\nControl mRNA FASTQ collection\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nTranscriptome FASTA\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nAnnotation GTF\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nMature miRNA sequences\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nStar miRNA sequenes\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"FastQC\"];\n 0 -->|output| 9;\n 10[\"Trim Galore!\"];\n 0 -->|output| 10;\n 11[\"FastQC\"];\n 1 -->|output| 11;\n 12[\"Trim Galore!\"];\n 1 -->|output| 12;\n 13[\"FastQC\"];\n 2 -->|output| 13;\n 14[\"FastQC\"];\n 4 -->|output| 14;\n 15[\"Salmon quant\"];\n 6 -->|output| 15;\n 2 -->|output| 15;\n 5 -->|output| 15;\n 16[\"Salmon quant\"];\n 6 -->|output| 16;\n 4 -->|output| 16;\n 5 -->|output| 16;\n 17[\"FastQC\"];\n 10 -->|trimmed_reads_single| 17;\n 18[\"MiRDeep2 Mapper\"];\n 10 -->|trimmed_reads_single| 18;\n 19[\"Merge collections\"];\n 11 -->|text_file| 19;\n 9 -->|text_file| 19;\n 20[\"FastQC\"];\n 12 -->|trimmed_reads_single| 20;\n 21[\"MiRDeep2 Mapper\"];\n 12 -->|trimmed_reads_single| 21;\n 22[\"Merge collections\"];\n 13 -->|text_file| 22;\n 14 -->|text_file| 22;\n 23[\"DESeq2\"];\n 15 -->|output_gene_quant| 23;\n 16 -->|output_gene_quant| 23;\n 6 -->|output| 23;\n 24[\"MiRDeep2 Quantifier\"];\n 7 -->|output| 24;\n 3 -->|output| 24;\n 18 -->|output_reads_collapsed| 24;\n 8 -->|output| 24;\n 25[\"MultiQC\"];\n 19 -->|output| 25;\n 26[\"Merge collections\"];\n 20 -->|text_file| 26;\n 17 -->|text_file| 26;\n 27[\"MiRDeep2 Quantifier\"];\n 7 -->|output| 27;\n 3 -->|output| 27;\n 21 -->|output_reads_collapsed| 27;\n 8 -->|output| 27;\n 28[\"MultiQC\"];\n 22 -->|output| 28;\n 29[\"Filter\"];\n 23 -->|deseq_out| 29;\n 30[\"Cut\"];\n 24 -->|miRNAsExpressed| 30;\n 31[\"MultiQC\"];\n 26 -->|output| 31;\n 32[\"Cut\"];\n 27 -->|miRNAsExpressed| 32;\n 33[\"Filter\"];\n 29 -->|out_file1| 33;\n 34[\"Filter\"];\n 29 -->|out_file1| 34;\n 35[\"DESeq2\"];\n 32 -->|out_file1| 35;\n 30 -->|out_file1| 35;\n 36[\"Cut\"];\n 34 -->|out_file1| 36;\n 37[\"Filter\"];\n 35 -->|deseq_out| 37;\n 38[\"Filter FASTA\"];\n 36 -->|out_file1| 38;\n 5 -->|output| 38;\n 39[\"Filter\"];\n 37 -->|out_file1| 39;\n 40[\"Filter\"];\n 37 -->|out_file1| 40;\n 41[\"Cut\"];\n 40 -->|out_file1| 41;\n 42[\"Filter FASTA\"];\n 41 -->|out_file1| 42;\n 8 -->|output| 42;\n 43[\"Filter FASTA\"];\n 41 -->|out_file1| 43;\n 7 -->|output| 43;\n 44[\"Concatenate datasets\"];\n 43 -->|output| 44;\n 42 -->|output| 44;\n 45[\"TargetFinder\"];\n 38 -->|output| 45;\n 44 -->|out_file1| 45;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Plant bulk RNA-Seq workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "errors": null, + "id": 23, + "input_connections": { + "select_data|rep_factorName_0|rep_factorLevel_0|countsFile": { + "id": 15, + "output_name": "output_gene_quant" + }, + "select_data|rep_factorName_0|rep_factorLevel_1|countsFile": { + "id": 16, + "output_name": "output_gene_quant" + }, + "tximport|mapping_format|gtf_file": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool DESeq2", + "name": "batch_factors" + } + ], + "label": null, + "name": "DESeq2", + "outputs": [ + { + "name": "deseq_out", + "type": "tabular" + }, + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "left": 1737.984375, + "top": 1170.984375 + }, + "post_job_actions": { + "RenameDatasetActiondeseq_out": { + "action_arguments": { + "newname": "DESeq2 results mRNA" + }, + "action_type": "RenameDatasetAction", + "output_name": "deseq_out" + }, + "RenameDatasetActionplots": { + "action_arguments": { + "newname": "DESeq2 plots mRNA" + }, + "action_type": "RenameDatasetAction", + "output_name": "plots" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6a3a025714d3", + "name": "deseq2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"auto_mean_filter_off\": \"false\", \"batch_factors\": {\"__class__\": \"RuntimeValue\"}, \"esf\": \"\", \"fit_type\": \"1\", \"header\": \"true\", \"many_contrasts\": \"false\", \"normCounts\": \"false\", \"normRLog\": \"false\", \"normVST\": \"false\", \"outlier_filter_off\": \"false\", \"outlier_replace_off\": \"false\", \"pdf\": \"true\", \"select_data\": {\"how\": \"datasets_per_level\", \"__current_case__\": 1, \"rep_factorName\": [{\"__index__\": 0, \"factorName\": \"effects_brassinolide\", \"rep_factorLevel\": [{\"__index__\": 0, \"factorLevel\": \"brassinolide\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"factorLevel\": \"control\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}]}]}, \"tximport\": {\"tximport_selector\": \"tximport\", \"__current_case__\": 0, \"txtype\": \"salmon\", \"mapping_format\": {\"mapping_format_selector\": \"gtf\", \"__current_case__\": 0, \"gtf_file\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.11.40.6+galaxy1", + "type": "tool", + "uuid": "db23fb5b-af4b-4fe1-8f8d-99a3176808e7", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "6c720aa2-a057-45c4-a813-3065d95c6c7f" + }, + { + "label": null, + "output_name": "deseq_out", + "uuid": "77e6746d-7bf9-400f-ac1e-106db58fbbbd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 25, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 19, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 883.984375, + "top": 342.984375 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC unprocessed miRNA: Webpage" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MultiQC unprocessed miRNA: Stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": \"false\", \"title\": \"miRNA initial quality check\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7", + "type": "tool", + "uuid": "3e845cfd-ddd1-4f60-b1cb-ac16dc2c6d10", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "7cd34a0f-1142-4965-afa2-5f77e9c79b9e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 28, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 22, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 2035.984375, + "top": 1455 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC mRNA: Webpage" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MultiQC mRNA: Stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"RuntimeValue\"}}]}}], \"saveLog\": \"false\", \"title\": \"mRNA initial quality check\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7", + "type": "tool", + "uuid": "b7ffd734-4c99-4132-814f-47b75b4b5d63", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "7d5b5d84-d0b0-4639-9b42-61bf9f7e014d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 31, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 26, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1161.984375, + "top": 558.984375 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC processed miRNA: Webpage" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MultiQC processed miRNA: Stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": \"false\", \"title\": \"miRNA trimmed quality check\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7", + "type": "tool", + "uuid": "b8e44272-be04-47ad-8b06-aa0f7d51a38c", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "45f7bd2f-aafe-471c-b41e-431cbbe28781" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "errors": null, + "id": 35, + "input_connections": { + "select_data|rep_factorName_0|rep_factorLevel_0|countsFile": { + "id": 32, + "output_name": "out_file1" + }, + "select_data|rep_factorName_0|rep_factorLevel_1|countsFile": { + "id": 30, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool DESeq2", + "name": "batch_factors" + } + ], + "label": null, + "name": "DESeq2", + "outputs": [ + { + "name": "deseq_out", + "type": "tabular" + }, + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "left": 1460, + "top": 1445.984375 + }, + "post_job_actions": { + "RenameDatasetActiondeseq_out": { + "action_arguments": { + "newname": "DESeq2 results miRNA" + }, + "action_type": "RenameDatasetAction", + "output_name": "deseq_out" + }, + "RenameDatasetActionplots": { + "action_arguments": { + "newname": "DESeq2 plots miRNA" + }, + "action_type": "RenameDatasetAction", + "output_name": "plots" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6a3a025714d3", + "name": "deseq2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"auto_mean_filter_off\": \"false\", \"batch_factors\": {\"__class__\": \"RuntimeValue\"}, \"esf\": \"\", \"fit_type\": \"1\", \"header\": \"false\", \"many_contrasts\": \"false\", \"normCounts\": \"false\", \"normRLog\": \"false\", \"normVST\": \"false\", \"outlier_filter_off\": \"false\", \"outlier_replace_off\": \"false\", \"pdf\": \"true\", \"select_data\": {\"how\": \"datasets_per_level\", \"__current_case__\": 1, \"rep_factorName\": [{\"__index__\": 0, \"factorName\": \"effects_brassinolide\", \"rep_factorLevel\": [{\"__index__\": 0, \"factorLevel\": \"brassinolide\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"factorLevel\": \"control\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}]}]}, \"tximport\": {\"tximport_selector\": \"count\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.11.40.6+galaxy1", + "type": "tool", + "uuid": "15632b70-0358-4ca6-918f-f236468dd8d5", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "b4252bda-8ee4-47f5-85e0-ccacb840c702" + }, + { + "label": null, + "output_name": "deseq_out", + "uuid": "55ea0b93-52e0-4d07-a64f-4db6e39f42ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.1", + "errors": null, + "id": 38, + "input_connections": { + "header_criteria|identifiers": { + "id": 36, + "output_name": "out_file1" + }, + "input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 2880, + "top": 1662.984375 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Downregulated mRNA sequences" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.1", + "tool_shed_repository": { + "changeset_revision": "3c623e81be77", + "name": "filter_by_fasta_ids", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dedup\": \"false\", \"header_criteria\": {\"header_criteria_select\": \"id_list\", \"__current_case__\": 1, \"identifiers\": {\"__class__\": \"ConnectedValue\"}, \"id_regex\": {\"find\": \"pattern\", \"__current_case__\": 1, \"pattern\": \"GENE=(AT.{7})\"}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"output_discarded\": \"false\", \"sequence_criteria\": {\"sequence_criteria_select\": \"\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1", + "type": "tool", + "uuid": "4d1f1434-2cd7-4025-aa31-955646f26ae0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e8c830ca-388d-43e9-a30a-6ce4e1db2103" + } + ] + }, + { + "annotation": "", + "content_id": "cat1", + "errors": null, + "id": 44, + "input_connections": { + "input1": { + "id": 43, + "output_name": "output" + }, + "queries_0|input2": { + "id": 42, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2880, + "top": 1882.984375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Upregulated miRNA sequences" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "cat1", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [{\"__index__\": 0, \"input2\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "97871054-6cba-4834-bc56-26a7f37be2b8", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "800ea133-2a03-469d-875e-24b0635c3cd2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/targetfinder/targetfinder/1.7.0+galaxy1", + "errors": null, + "id": 45, + "input_connections": { + "d": { + "id": 38, + "output_name": "output" + }, + "f": { + "id": 44, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "TargetFinder", + "outputs": [ + { + "name": "output_file", + "type": "txt" + } + ], + "position": { + "left": 3157.984375, + "top": 1712.984375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/targetfinder/targetfinder/1.7.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "c9d56748fbde", + "name": "targetfinder", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"c\": \"4.0\", \"d\": {\"__class__\": \"ConnectedValue\"}, \"f\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"classic\", \"r\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.0+galaxy1", + "type": "tool", + "uuid": "d81d9ea9-a085-478f-a148-0c31083f16fc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_file", + "uuid": "2a3de11c-addc-4e1a-a156-f760f861ce64" + } + ] + } + ], + "parent_id": "transcriptomics/mirna-target-finder", + "path": "topics/transcriptomics/tutorials/mirna-target-finder/workflows/main_workflow.ga", + "tags": [ + "transcriptomics", + "mirna", + "arabidopsis" + ], + "test_results": null, + "tests": false, + "title": "Plant bulk RNA-Seq workflow", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-mirna-target-finder/versions/main-workflow", + "tutorial_id": "mirna-target-finder", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/mirna-target-finder/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/mirna-target-finder/workflows/main_workflow.html", + "version": 3, + "wfid": "transcriptomics-mirna-target-finder", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "__MERGE_COLLECTION__", + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/salmon/salmon/0.14.1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_mapper/rbc_mirdeep2_mapper/2.0.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_quantifier/rbc_mirdeep2_quantifier/2.0.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/targetfinder/targetfinder/1.7.0+galaxy1" + ], + "workflowhub_id": "1318" + } + ], + "zenodo_link": "https://zenodo.org/record/4710649" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "taxonomy_krona_chart", + "owner": "crs4", + "revisions": "1334cb4c6b68", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_reverse", + "owner": "iuc", + "revisions": "0f1724dd59d2", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "328c607150ff", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "5e33b465d8d5", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "porechop", + "owner": "iuc", + "revisions": "93d623d9979c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: taxonomy_krona_chart\n owner: crs4\n revisions: 1334cb4c6b68\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_reverse\n owner: iuc\n revisions: 0f1724dd59d2\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 328c607150ff\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 5e33b465d8d5\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: porechop\n owner: iuc\n revisions: 93d623d9979c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + } + ], + "dir": "topics/microbiome/tutorials/nanopore-16S-metagenomics", + "edam_ontology": [ + "topic_3697", + "topic_0637", + "topic_0080", + "topic_4038" + ], + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence contamination filtering", + "Validation", + "Sequence composition calculation", + "Taxonomic classification", + "Statistical calculation" + ], + "edam_topic": [ + "Microbial ecology", + "Taxonomy", + "Sequence analysis" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "microbiome/nanopore-16S-metagenomics", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We learned to use MinION Nanopore data for analyzing the health status of the soil", + "We preprocessed Nanopore sequences in order to improve their quality" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Use Nanopore data for studying soil metagenomics", + "Analyze and preprocess Nanopore reads", + "Use Kraken2 to assign a taxonomic labels" + ], + "pageviews": 3314, + "pub_date": "2020-11-24", + "questions": [ + "How can we analyse the health status of the soil?", + "How do plants modify the composition of microbial communities?" + ], + "redirect_from": [ + "/topics/metagenomics/tutorials/nanopore-16S-metagenomics/tutorial", + "/short/microbiome/nanopore-16S-metagenomics", + "/short/T00207", + "/short/T00392" + ], + "short_id": "T00392", + "short_tools": [ + "fastp", + "multiqc", + "taxonomy_krona_chart", + "fastqc", + "kraken2", + "tp_replace_in_line", + "Remove beginning1", + "datamash_reverse", + "porechop" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "metabarcoding", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "metabarcoding", + "16S", + "nanopore", + "microgalaxy", + "plants" + ], + "time_estimation": "2H", + "title": "16S Microbial analysis with Nanopore data", + "tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_reverse/datamash_reverse/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.0.8_beta+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.3" + ], + "topic_name": "microbiome", + "topic_name_human": "Microbiome", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "nanopore-16S-metagenomics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 168, + "visitors": 2344, + "workflows": [ + { + "creators": [], + "description": "16S rRNA analysis with Nanopore reads", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 1[label=\"FastQC\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Porechop\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"MultiQC\"]\n 1 -> 3 [label=\"text_file\"]\n 4[label=\"fastp\"]\n 2 -> 4 [label=\"outfile\"]\n 5[label=\"FastQC\"]\n 4 -> 5 [label=\"out1\"]\n 6[label=\"Kraken2\"]\n 4 -> 6 [label=\"out1\"]\n 7[label=\"MultiQC\"]\n 5 -> 7 [label=\"text_file\"]\n 8[label=\"Reverse\"]\n 6 -> 8 [label=\"report_output\"]\n 9[label=\"Replace Text\"]\n 8 -> 9 [label=\"out_file\"]\n 10[label=\"Remove beginning\"]\n 9 -> 10 [label=\"outfile\"]\n 11[label=\"Krona pie chart\"]\n 10 -> 11 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "0e0a2f2ccb650b0aab1ffc13838045164bdb5d30", + "message": "Rename metagenomics topic to microbiome", + "num": 1, + "short_hash": "0e0a2f2cc", + "unix": "1704901629" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "18fc8b44-c752-41a0-a17c-e03797a5fab1", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"FastQC\"];\n 0 -->|output| 1;\n 2[\"Porechop\"];\n 0 -->|output| 2;\n 3[\"MultiQC\"];\n 1 -->|text_file| 3;\n 4[\"fastp\"];\n 2 -->|outfile| 4;\n 5[\"FastQC\"];\n 4 -->|out1| 5;\n 6[\"Kraken2\"];\n 4 -->|out1| 6;\n 7[\"MultiQC\"];\n 5 -->|text_file| 7;\n 8[\"Reverse\"];\n 6 -->|report_output| 8;\n 9[\"Replace Text\"];\n 8 -->|out_file| 9;\n 10[\"Remove beginning\"];\n 9 -->|outfile| 10;\n 11[\"Krona pie chart\"];\n 10 -->|out_file1| 11;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Training: 16S rRNA Analysis with Nanopore Sequencing Reads", + "outputs": [], + "parent_id": "microbiome/nanopore-16S-metagenomics", + "path": "topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.ga", + "tags": [ + "microbiome" + ], + "test_results": null, + "tests": false, + "title": "Training: 16S rRNA Analysis with Nanopore Sequencing Reads", + "topic_id": "microbiome", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/microbiome-nanopore-16S-metagenomics/versions/main-workflow", + "tutorial_id": "nanopore-16S-metagenomics", + "url": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/microbiome/tutorials/nanopore-16S-metagenomics/workflows/main_workflow.html", + "version": 1, + "wfid": "microbiome-nanopore-16S-metagenomics", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/crs4/taxonomy_krona_chart/taxonomy_krona_chart/2.7.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_reverse/datamash_reverse/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.0.8_beta+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/porechop/porechop/0.2.3" + ], + "workflowhub_id": "1064" + } + ], + "zenodo_link": "https://zenodo.org/record/4274812" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "flye", + "owner": "bgruening", + "revisions": "291923e6f276", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "racon", + "owner": "bgruening", + "revisions": "78c533842eeb", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "ea8146ee148f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "0dbb995c7d35", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "c59d48774d03", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "genomescope", + "owner": "iuc", + "revisions": "01210c4e9144", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "revisions": "fc8804320156", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meryl", + "owner": "iuc", + "revisions": "29dabd8db6f2", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "minimap2", + "owner": "iuc", + "revisions": "be1d967337e4", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "a02b8b3f5a0c", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "quast", + "owner": "iuc", + "revisions": "72472698a2df", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: flye\n owner: bgruening\n revisions: 291923e6f276\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: racon\n owner: bgruening\n revisions: 78c533842eeb\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: ea8146ee148f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 0dbb995c7d35\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: c59d48774d03\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: genomescope\n owner: iuc\n revisions: 01210c4e9144\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: medaka_consensus_pipeline\n owner: iuc\n revisions: fc8804320156\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meryl\n owner: iuc\n revisions: 29dabd8db6f2\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: minimap2\n owner: iuc\n revisions: be1d967337e4\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: a02b8b3f5a0c\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: quast\n owner: iuc\n revisions: 72472698a2df\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/largegenome/tutorial.json", + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + } + ], + "dir": "topics/assembly/tutorials/largegenome", + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence assembly validation", + "Sequence composition calculation", + "Pairwise sequence alignment", + "Sequence assembly visualisation", + "Transcriptome assembly", + "Cross-assembly", + "Validation", + "Genome assembly", + "Base-calling", + "Sequence assembly", + "Statistical calculation", + "Scaffolding", + "Sequence contamination filtering", + "De-novo assembly", + "Box-Whisker plot plotting", + "Scatter plot plotting", + "Mapping assembly", + "Variant calling" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/largegenome", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We can assemble long reads from plant or animal species into large contigs", + "These contigs can be polished with both long and short reads", + "We can assess the quality of this assembly with various tools" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Assemble a large genome from long reads", + "Polish the assembly", + "Assess the quality of the assembly" + ], + "pageviews": 4728, + "pub_date": "2023-03-06", + "questions": [ + "How can we assemble a large plant or animal genome?" + ], + "recordings": [ + { + "captioners": [ + "annasyme" + ], + "date": "2023-05-16", + "galaxy_version": "23.01", + "length": "25M", + "speakers": [ + "annasyme" + ], + "youtube_id": "BM70nvwWjOY" + } + ], + "short_id": "T00331", + "short_tools": [ + "barchart_gnuplot", + "nanoplot", + "fastp", + "multiqc", + "busco", + "racon", + "flye", + "quast", + "fasta-stats", + "fastqc", + "genomescope", + "meryl", + "minimap2", + "bandage_image", + "medaka_consensus_pipeline" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "assembly", + "polishing", + "nanopore", + "plants" + ], + "time_estimation": "2h", + "title": "Large genome assembly and polishing", + "tools": [ + "barchart_gnuplot", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "largegenome", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/largegenome/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/largegenome/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/largegenome/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 131, + "visitors": 3651, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": true, + "report": { + "markdown": "\n# Workflow Report for Assembly Polishing\n\n## Workflow steps\n\n```galaxy\nworkflow_display()\n```\n\n## Fasta statistics after Racon long-read polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Racon long read polish\")\n```\n\n\n## Fasta statistics after Medaka polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Medaka polish\")\n```\n\n## Fasta statistics after Racon short-read polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Racon short read polish\")\n```\n\n\n\n\n" + }, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nminimap setting for long reads\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"]\n 4[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nRacon polish with long reads, x4 - upgraded\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Medaka polish\"]\n 4 -> 5 [label=\"Assembly polished by long reads using Racon\"]\n 1 -> 5 [label=\"output\"]\n ke3136060bce74af387c49dcbb0d1f531[color=lightseagreen,label=\"Output\\nAssembly polished by long reads using Medaka\"]\n 5 -> ke3136060bce74af387c49dcbb0d1f531\n 6[label=\"Fasta statistics after Racon long read polish\"]\n 4 -> 6 [label=\"Assembly polished by long reads using Racon\"]\n 7[label=\"Fasta statistics after Medaka polish\"]\n 5 -> 7 [label=\"out_consensus\"]\n 8[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nRacon polish with Illumina reads R1 only, x2 - upgraded\"]\n 5 -> 8 [label=\"out_consensus\"]\n 3 -> 8 [label=\"output\"]\n 9[label=\"Fasta statistics after Racon short read polish\"]\n 8 -> 9 [label=\"Assembly polished by short reads using Racon\"]\n}", + "history": [ + { + "hash": "091a0834c77e69841f4d07570420c632c6c5043c", + "message": "Update Galaxy-Workflow-Assembly_polishing.ga", + "num": 5, + "short_hash": "091a0834c", + "unix": "1715074278" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "f294a05b57afbe9ec436008d1d2571f6d42fb977", + "message": "Rename Galaxy-Workflow-Assembly_polishing.ga to Galaxy-Workflow-Assembly_polishing_old.ga", + "num": 3, + "short_hash": "f294a05b5", + "unix": "1714537220" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 19.464939294568495, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "52bc9ac4-ac3c-48eb-aead-94a0a14417fc", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 142.48340578478533 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "688866c4-de9b-4b78-8df3-b169d28b1617", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads)" + } + ], + "label": "minimap setting (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 13.133522093825794, + "top": 247.1519749531627 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "c1f18b5c-e8db-4046-b876-9b28a77cf66e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ce393bcf-42e3-43ee-9056-a99e8c077a29" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R1" + } + ], + "label": "Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 617.719019724734, + "top": 600.0866464299372 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ea859a58-c81a-4ef6-9bd2-4ef2f17bb5a9", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nminimap setting for long reads\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\ud83d\udee0\ufe0f Subworkflow\\nRacon polish with long reads, x4 - upgraded\"];\n style 4 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 4;\n 1 -->|output| 4;\n 2 -->|output| 4;\n 5[\"Medaka polish\"];\n 4 -->|Assembly polished by long reads using Racon| 5;\n 1 -->|output| 5;\n e3136060-bce7-4af3-87c4-9dcbb0d1f531[\"Output\\nAssembly polished by long reads using Medaka\"];\n 5 --> e3136060-bce7-4af3-87c4-9dcbb0d1f531;\n style e3136060-bce7-4af3-87c4-9dcbb0d1f531 stroke:#2c3143,stroke-width:4px;\n 6[\"Fasta statistics after Racon long read polish\"];\n 4 -->|Assembly polished by long reads using Racon| 6;\n 7[\"Fasta statistics after Medaka polish\"];\n 5 -->|out_consensus| 7;\n 8[\"\ud83d\udee0\ufe0f Subworkflow\\nRacon polish with Illumina reads R1 only, x2 - upgraded\"];\n style 8 fill:#edd,stroke:#900,stroke-width:4px;\n 5 -->|out_consensus| 8;\n 3 -->|output| 8;\n 9[\"Fasta statistics after Racon short read polish\"];\n 8 -->|Assembly polished by short reads using Racon| 9;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Assembly polishing - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads)" + } + ], + "label": "minimap setting (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 13.133522093825794, + "top": 247.1519749531627 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "c1f18b5c-e8db-4046-b876-9b28a77cf66e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ce393bcf-42e3-43ee-9056-a99e8c077a29" + } + ] + }, + { + "annotation": "", + "id": 4, + "input_connections": { + "Assembly to be polished": { + "id": 0, + "input_subworkflow_step_id": 0, + "output_name": "output" + }, + "long reads": { + "id": 1, + "input_subworkflow_step_id": 1, + "output_name": "output" + }, + "minimap setting (for long reads) ": { + "id": 2, + "input_subworkflow_step_id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Racon polish with long reads, x4 - upgraded", + "outputs": [], + "position": { + "left": 299.6429464825318, + "top": 72.0364210406818 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "comments": [], + "creator": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "format-version": "0.1", + "name": "Racon polish with long reads, x4 - upgraded", + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 216.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c7796c36-adf8-49e4-a8e4-66e606d70311", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.5, + "top": 360.234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e2e4a70b-6e36-4b8b-bdf6-12b97189a6bd", + "when": null, + "workflow_outputs": [] + }, + "10": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "corrected_reads": { + "id": 8, + "output_name": "consensus" + }, + "overlaps": { + "id": 9, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 4", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1496.078125, + "top": 431.1875 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "53f4572e-3a4a-4585-89ab-9459f8a61720", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Racon", + "output_name": "consensus", + "uuid": "bcf0f03c-5951-46a7-aa38-545aed9bc183" + } + ] + }, + "2": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads) " + } + ], + "label": "minimap setting (for long reads) ", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.578125, + "top": 495.859375 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "fb80c05c-08d4-4ac2-b4bf-81ed906e4d72", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3983ef22-5f05-4384-8f34-6ac8c4b2cc83" + } + ] + }, + "3": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to assembly", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 377.640625, + "top": 0 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "0c06144f-d1ac-4b45-9669-1ddf11fcb06b", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "corrected_reads": { + "id": 0, + "output_name": "output" + }, + "overlaps": { + "id": 3, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 1", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 458.640625, + "top": 518.875 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "6c144354-91f2-49dd-a1f5-7c4119859730", + "when": null, + "workflow_outputs": [] + }, + "5": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 1", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 698.859375, + "top": 13.390625 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "c1b83dad-a8ed-42cb-951f-73f59f2dfa92", + "when": null, + "workflow_outputs": [] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "corrected_reads": { + "id": 4, + "output_name": "consensus" + }, + "overlaps": { + "id": 5, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 2", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 759.9375, + "top": 485.71875 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "3208491e-b831-4238-957e-5b7388d7ff8d", + "when": null, + "workflow_outputs": [] + }, + "7": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 6, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 2", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 998.75, + "top": 27.9375 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "42af524b-7f74-4c75-8d78-f6888078dd2e", + "when": null, + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "corrected_reads": { + "id": 6, + "output_name": "consensus" + }, + "overlaps": { + "id": 7, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 3", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1089.71875, + "top": 455.53125 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "21f339bd-ebc1-4c73-a976-5d0b9ab2127a", + "when": null, + "workflow_outputs": [] + }, + "9": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 8, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 3", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 1316.53125, + "top": 38.046875 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "7d36291e-aa76-4312-9943-b5e56d0e90c5", + "when": null, + "workflow_outputs": [] + } + }, + "tags": "", + "uuid": "c57efd37-4cf6-4cc7-abf4-2bab22a2e9a0" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "58c99e4b-fd6a-401d-b9c7-cdf7e6d1757d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "2:output", + "uuid": "50fa1032-8037-454e-8192-b95405bcd5d4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "d": { + "id": 4, + "output_name": "Assembly polished by long reads using Racon" + }, + "i": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Medaka polish", + "name": "medaka consensus pipeline", + "outputs": [ + { + "name": "out_consensus", + "type": "fasta" + } + ], + "position": { + "left": 515.5164024294684, + "top": 305.08460859328346 + }, + "post_job_actions": { + "RenameDatasetActionout_consensus": { + "action_arguments": { + "newname": "Medaka_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fc8804320156", + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"b\": \"100\", \"d\": {\"__class__\": \"ConnectedValue\"}, \"g\": false, \"i\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"r941_min_high_g360\", \"out\": [\"consensus\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.2+galaxy1", + "type": "tool", + "uuid": "14c5ce9c-df92-4e20-85da-7a161eaa759d", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Medaka", + "output_name": "out_consensus", + "uuid": "e3136060-bce7-4af3-87c4-9dcbb0d1f531" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_polishing.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Assembly polishing - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assembly-polishing", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_polishing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_polishing.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-assembly-polishing", + "workflow": "Galaxy-Workflow-Assembly_polishing.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0" + ], + "workflowhub_id": "1174" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "# Workflow Report for Assembly with Flye\n\n\n## Workflow steps\n\n```galaxy\nworkflow_display()\n```\n\n## Dataset - fasta stats. \n\n```galaxy\nhistory_dataset_display(output=\"Fasta Statistics on input dataset(s): Fasta summary stats\")\n```\n\n## Contig sizes\n\n```galaxy\nhistory_dataset_as_image(output=\"Bar chart showing contig sizes\")\n```\n\n\n## Bandage image\n\n```galaxy\nhistory_dataset_as_image(output=\"Bandage Image on input dataset(s): Assembly Graph Image\")\n```\n\n## Quast report\n\n\r\n```galaxy\nhistory_dataset_display(output=\"Quast on input dataset(s): PDF report\")\n```\r\n\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 1[label=\"Flye: assembly\"]\n 0 -> 1 [label=\"output\"]\n k3960e31d7a9e400cbb21f6e47b75e649[color=lightseagreen,label=\"Output\\nFlye assembly on input dataset(s) (consensus)\"]\n 1 -> k3960e31d7a9e400cbb21f6e47b75e649\n ke524f295a9574c91838cf8e98e809b6c[color=lightseagreen,label=\"Output\\nFlye assembly on input dataset(s) (assembly_graph)\"]\n 1 -> ke524f295a9574c91838cf8e98e809b6c\n k48b854e2dd6e43458d0509abca6659da[color=lightseagreen,label=\"Output\\nFlye assembly on input dataset(s) (Graphical Fragment Assembly)\"]\n 1 -> k48b854e2dd6e43458d0509abca6659da\n k8672c17271a7432c9679a8e37f36cf53[color=lightseagreen,label=\"Output\\nFlye assembly on input dataset(s) (assembly_info)\"]\n 1 -> k8672c17271a7432c9679a8e37f36cf53\n 2[label=\"Fasta statistics\"]\n 1 -> 2 [label=\"consensus\"]\n 3[label=\"Quast genome report\"]\n 1 -> 3 [label=\"consensus\"]\n k17cdf8e08ad44570afae1861934fc678[color=lightseagreen,label=\"Output\\nQuast on input dataset(s): HTML report\"]\n 3 -> k17cdf8e08ad44570afae1861934fc678\n 4[label=\"Bandage image: Flye assembly\"]\n 1 -> 4 [label=\"assembly_gfa\"]\n ke66bd129146f48dc95b839a2a1ffb68d[color=lightseagreen,label=\"Output\\nBandage Image on input dataset(s): Assembly Graph Image\"]\n 4 -> ke66bd129146f48dc95b839a2a1ffb68d\n 5[label=\"Bar chart: show contig sizes\"]\n 1 -> 5 [label=\"assembly_info\"]\n k6d0a4e23d6314e3789303d22fc91369b[color=lightseagreen,label=\"Output\\nBar chart showing contig sizes\"]\n 5 -> k6d0a4e23d6314e3789303d22fc91369b\n}", + "history": [ + { + "hash": "f3dd8377556ae73d56d73612a37a5a7e20c98093", + "message": "Update Galaxy-Workflow-Assembly_with_Flye.ga", + "num": 5, + "short_hash": "f3dd83775", + "unix": "1715074300" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "43baea079b7b412f3f272ac1ac887cd67aef6c49", + "message": "Rename Galaxy-Workflow-Assembly_with_Flye.ga to Galaxy-Workflow-Assembly_with_Flye_old.ga", + "num": 3, + "short_hash": "43baea079", + "unix": "1714537239" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 398.40625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "501d7387-3bed-4510-891f-a4571a48d9ab", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Flye: assembly\"];\n 0 -->|output| 1;\n 3960e31d-7a9e-400c-bb21-f6e47b75e649[\"Output\\nFlye assembly on input dataset(s) (consensus)\"];\n 1 --> 3960e31d-7a9e-400c-bb21-f6e47b75e649;\n style 3960e31d-7a9e-400c-bb21-f6e47b75e649 stroke:#2c3143,stroke-width:4px;\n e524f295-a957-4c91-838c-f8e98e809b6c[\"Output\\nFlye assembly on input dataset(s) (assembly_graph)\"];\n 1 --> e524f295-a957-4c91-838c-f8e98e809b6c;\n style e524f295-a957-4c91-838c-f8e98e809b6c stroke:#2c3143,stroke-width:4px;\n 48b854e2-dd6e-4345-8d05-09abca6659da[\"Output\\nFlye assembly on input dataset(s) (Graphical Fragment Assembly)\"];\n 1 --> 48b854e2-dd6e-4345-8d05-09abca6659da;\n style 48b854e2-dd6e-4345-8d05-09abca6659da stroke:#2c3143,stroke-width:4px;\n 8672c172-71a7-432c-9679-a8e37f36cf53[\"Output\\nFlye assembly on input dataset(s) (assembly_info)\"];\n 1 --> 8672c172-71a7-432c-9679-a8e37f36cf53;\n style 8672c172-71a7-432c-9679-a8e37f36cf53 stroke:#2c3143,stroke-width:4px;\n 2[\"Fasta statistics\"];\n 1 -->|consensus| 2;\n 3[\"Quast genome report\"];\n 1 -->|consensus| 3;\n 17cdf8e0-8ad4-4570-afae-1861934fc678[\"Output\\nQuast on input dataset(s): HTML report\"];\n 3 --> 17cdf8e0-8ad4-4570-afae-1861934fc678;\n style 17cdf8e0-8ad4-4570-afae-1861934fc678 stroke:#2c3143,stroke-width:4px;\n 4[\"Bandage image: Flye assembly\"];\n 1 -->|assembly_gfa| 4;\n e66bd129-146f-48dc-95b8-39a2a1ffb68d[\"Output\\nBandage Image on input dataset(s): Assembly Graph Image\"];\n 4 --> e66bd129-146f-48dc-95b8-39a2a1ffb68d;\n style e66bd129-146f-48dc-95b8-39a2a1ffb68d stroke:#2c3143,stroke-width:4px;\n 5[\"Bar chart: show contig sizes\"];\n 1 -->|assembly_info| 5;\n 6d0a4e23-d631-4e37-8930-3d22fc91369b[\"Output\\nBar chart showing contig sizes\"];\n 5 --> 6d0a4e23-d631-4e37-8930-3d22fc91369b;\n style 6d0a4e23-d631-4e37-8930-3d22fc91369b stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Assembly with Flye - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "errors": null, + "id": 1, + "input_connections": { + "inputs": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Flye: assembly", + "name": "Flye", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + } + ], + "position": { + "left": 260.57143695759436, + "top": 248.74363091133793 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "291923e6f276", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"asm\": {\"asm_select\": \"false\", \"__current_case__\": 1}, \"generate_log\": false, \"i\": \"1\", \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"iterations\": \"1\", \"keep_haplotypes\": false, \"m\": null, \"meta\": false, \"min_overlap\": null, \"mode\": \"--nano-raw\", \"mode_conditional\": {\"mode\": \"--nano-raw\", \"__current_case__\": 0}, \"no_alt_contigs\": false, \"no_trestle\": \"false\", \"plasmids\": \"false\", \"scaffold\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.9.3+galaxy0", + "type": "tool", + "uuid": "8bed3591-266a-41f1-91d3-11b3456e8609", + "when": null, + "workflow_outputs": [ + { + "label": "Flye assembly on input dataset(s) (consensus)", + "output_name": "consensus", + "uuid": "3960e31d-7a9e-400c-bb21-f6e47b75e649" + }, + { + "label": "Flye assembly on input dataset(s) (assembly_graph)", + "output_name": "assembly_graph", + "uuid": "e524f295-a957-4c91-838c-f8e98e809b6c" + }, + { + "label": "Flye assembly on input dataset(s) (Graphical Fragment Assembly)", + "output_name": "assembly_gfa", + "uuid": "48b854e2-dd6e-4345-8d05-09abca6659da" + }, + { + "label": "Flye assembly on input dataset(s) (assembly_info)", + "output_name": "assembly_info", + "uuid": "8672c172-71a7-432c-9679-a8e37f36cf53" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "mode|in|inputs": { + "id": 1, + "output_name": "consensus" + } + }, + "inputs": [], + "label": "Quast genome report", + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 697.3759752425051, + "top": 194.46891558901518 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"al\": {\"ambiguity_score\": \"0.99\", \"ambiguity_usage\": \"one\", \"fragmented\": false, \"fragmented_max_indent\": \"50\", \"min_alignment\": \"65\", \"min_identity\": \"95.0\", \"upper_bound_assembly\": false, \"upper_bound_min_con\": \"2\", \"use_all_alignments\": false}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"false\", \"__current_case__\": 1, \"est_ref_size\": null}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"circos\": \"false\", \"contig_thresholds\": \"0,1000\", \"extensive_mis_size\": \"1000\", \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"in\": {\"__current_case__\": 1, \"custom\": \"false\", \"inputs\": {\"__class__\": \"RuntimeValue\"}}, \"k_mer\": {\"__current_case__\": 1, \"k_mer_stats\": \"\"}, \"large\": true, \"min_contig\": \"500\", \"mode\": {\"mode\": \"co\", \"__current_case__\": 1, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"scaffold_gap_max_size\": \"1000\", \"skip_unaligned_mis_contigs\": \"false\", \"split_scaffolds\": false, \"strict_NA\": \"false\", \"unaligned_part_size\": \"500\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "5bc29646-ec4c-4eb3-af01-73d82fc690a2", + "when": null, + "workflow_outputs": [ + { + "label": "Quast on input dataset(s): HTML report", + "output_name": "report_html", + "uuid": "17cdf8e0-8ad4-4570-afae-1861934fc678" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "assembly_gfa" + } + }, + "inputs": [], + "label": "Bandage image: Flye assembly", + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 583.546875, + "top": 446.40625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "tool_shed_repository": { + "changeset_revision": "ddddce450736", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": false, \"names\": false, \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2022.09+galaxy4", + "type": "tool", + "uuid": "395f2dfe-3fa5-4684-bf97-7dd12e970f78", + "when": null, + "workflow_outputs": [ + { + "label": "Bandage Image on input dataset(s): Assembly Graph Image", + "output_name": "outfile", + "uuid": "e66bd129-146f-48dc-95b8-39a2a1ffb68d" + } + ] + }, + { + "annotation": "", + "content_id": "barchart_gnuplot", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 1, + "output_name": "assembly_info" + } + }, + "inputs": [], + "label": "Bar chart: show contig sizes", + "name": "Bar chart", + "outputs": [ + { + "name": "out_file1", + "type": "png" + } + ], + "position": { + "left": 595.421875, + "top": 688.984375 + }, + "post_job_actions": {}, + "tool_id": "barchart_gnuplot", + "tool_state": "{\"colList\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"pdf_size\": \"800,600\", \"title\": \"Assembly contig sizes\", \"xtic\": {\"userSpecified\": \"No\", \"__current_case__\": 1}, \"ylabel\": \"lengths\", \"ymax\": \"0\", \"ymin\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "cb9d5059-bf42-4a0e-8150-f5089e0d5b1b", + "when": null, + "workflow_outputs": [ + { + "label": "Bar chart showing contig sizes", + "output_name": "out_file1", + "uuid": "6d0a4e23-d631-4e37-8930-3d22fc91369b" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_with_Flye.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Assembly with Flye - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assembly-with-flye", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_with_Flye.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assembly_with_Flye.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-assembly-with-flye", + "workflow": "Galaxy-Workflow-Assembly_with_Flye.ga", + "workflow_tools": [ + "barchart_gnuplot", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "workflowhub_id": "1170" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow Execution Report\n\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n\n## Busco results\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco short summary\")\n```\n\n\n```galaxy\nhistory_dataset_as_image(output=\"Busco summary image\")\n```\n\n## Quast results\n\n\n```galaxy\nhistory_dataset_display(output=\"Quast on input dataset(s): tabular report\")\n```\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPolished assembly\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome\"]\n 2[label=\"Busco: assess assembly\"]\n 0 -> 2 [label=\"output\"]\n k219e495236e04b01a407e774b5b02dca[color=lightseagreen,label=\"Output\\nBusco short summary\"]\n 2 -> k219e495236e04b01a407e774b5b02dca\n 3[label=\"Quast: assess assembly\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n k77ab01864cfd460fb71e39a923414ef4[color=lightseagreen,label=\"Output\\nQuast on input dataset(s): HTML report\"]\n 3 -> k77ab01864cfd460fb71e39a923414ef4\n}", + "history": [ + { + "hash": "1b47a1ad8d46b114394c0579436c448e6bb7efcf", + "message": "Update Galaxy-Workflow-Assess_genome_quality.ga", + "num": 5, + "short_hash": "1b47a1ad8", + "unix": "1715074319" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "fc05e79f01c6b59c4dfc6aa59ebf592ae615641f", + "message": "Rename Galaxy-Workflow-Assess_genome_quality.ga to Galaxy-Workflow-Assess_genome_quality_old.ga", + "num": 3, + "short_hash": "fc05e79f0", + "unix": "1714537255" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Polished assembly" + } + ], + "label": "Polished assembly", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 101.09375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2ed19084-9eaf-4efb-acdc-b81536e7c024", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genome" + } + ], + "label": "Reference genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 246.765625, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5b12a6af-13c3-4520-a549-280de6a3df17", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPolished assembly\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference genome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Busco: assess assembly\"];\n 0 -->|output| 2;\n 219e4952-36e0-4b01-a407-e774b5b02dca[\"Output\\nBusco short summary\"];\n 2 --> 219e4952-36e0-4b01-a407-e774b5b02dca;\n style 219e4952-36e0-4b01-a407-e774b5b02dca stroke:#2c3143,stroke-width:4px;\n 3[\"Quast: assess assembly\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 77ab0186-4cfd-460f-b71e-39a923414ef4[\"Output\\nQuast on input dataset(s): HTML report\"];\n 3 --> 77ab0186-4cfd-460f-b71e-39a923414ef4;\n style 77ab0186-4cfd-460f-b71e-39a923414ef4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Assess genome quality - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Busco: assess assembly", + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + } + ], + "position": { + "left": 294.42303466796875, + "top": 200.68505859375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ea8146ee148f", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\", \"contig_break\": \"10\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"miniprot\": false, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"auto_detect\", \"__current_case__\": 0, \"auto_lineage\": \"--auto-lineage\"}, \"lineage_conditional\": {\"selector\": \"download\", \"__current_case__\": 1}, \"lineage_dataset\": \"eukaryota_odb10\", \"outputs\": \"short_summary\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.5.0+galaxy0", + "type": "tool", + "uuid": "8f5f17de-a21e-49f4-b55c-6eff5f4fa213", + "when": null, + "workflow_outputs": [ + { + "label": "Busco short summary", + "output_name": "busco_sum", + "uuid": "219e4952-36e0-4b01-a407-e774b5b02dca" + }, + { + "label": null, + "output_name": "busco_table", + "uuid": "fc06df63-3453-4303-80d1-c76823ba384a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "assembly|ref|r": { + "id": 1, + "output_name": "output" + }, + "mode|in|inputs": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Quast: assess assembly", + "name": "Quast", + "outputs": [ + { + "name": "report_html", + "type": "html" + } + ], + "position": { + "left": 564.8660278320312, + "top": 56.71406029052495 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "72472698a2df", + "name": "quast", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"contig_thresholds\": \"0,1000\", \"strict_NA\": false, \"extensive_mis_size\": \"1000\", \"scaffold_gap_max_size\": \"1000\", \"unaligned_part_size\": \"500\", \"skip_unaligned_mis_contigs\": true, \"fragmented_max_indent\": null, \"report_all_metrics\": false, \"x_for_Nx\": \"90\"}, \"alignments\": {\"use_all_alignments\": false, \"min_alignment\": \"65\", \"ambiguity_usage\": \"one\", \"ambiguity_score\": \"0.99\", \"fragmented\": false, \"upper_bound_assembly\": false, \"upper_bound_min_con\": null, \"local_mis_size\": \"200\"}, \"assembly\": {\"type\": \"genome\", \"__current_case__\": 0, \"ref\": {\"use_ref\": \"true\", \"__current_case__\": 0, \"r\": {\"__class__\": \"RuntimeValue\"}, \"features\": {\"__class__\": \"RuntimeValue\"}, \"operons\": {\"__class__\": \"RuntimeValue\"}, \"k_mer\": {\"k_mer_stats\": \"\", \"__current_case__\": 1}, \"circos\": false}, \"orga_type\": \"\", \"min_identity\": \"95.0\"}, \"genes\": {\"gene_finding\": {\"tool\": \"none\", \"__current_case__\": 0}, \"rna_finding\": false, \"conserved_genes_finding\": false}, \"large\": true, \"min_contig\": \"0\", \"mode\": {\"mode\": \"individual\", \"__current_case__\": 0, \"in\": {\"custom\": \"false\", \"__current_case__\": 1, \"inputs\": {\"__class__\": \"RuntimeValue\"}}, \"reads\": {\"reads_option\": \"disabled\", \"__current_case__\": 0}}, \"output_files\": \"html\", \"split_scaffolds\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.2.0+galaxy1", + "type": "tool", + "uuid": "6caef18b-b257-472d-b8d0-fac523a72d37", + "when": null, + "workflow_outputs": [ + { + "label": "Quast on input dataset(s): HTML report", + "output_name": "report_html", + "uuid": "77ab0186-4cfd-460f-b71e-39a923414ef4" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assess_genome_quality.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Assess genome quality - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-assess-genome-quality", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assess_genome_quality.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Assess_genome_quality.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-assess-genome-quality", + "workflow": "Galaxy-Workflow-Assess_genome_quality.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "workflowhub_id": "1158" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": true, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR1\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nR2\"]\n 3[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nminimap settings for long reads\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome for Quast\"]\n 5[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nkmer counting - meryl - upgraded\"]\n 1 -> 5 [label=\"output\"]\n 6[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nData QC - upgraded\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 0 -> 6 [label=\"output\"]\n 7[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nTrim and filter reads - fastp - upgraded \"]\n 1 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 0 -> 7 [label=\"output\"]\n 8[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nAssembly with Flye - upgraded\"]\n 7 -> 8 [label=\"fastp filtered long reads\"]\n 9[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nAssembly polishing - upgraded\"]\n 8 -> 9 [label=\"Flye assembly on input datasets consensus\"]\n 7 -> 9 [label=\"fastp filtered R1 reads\"]\n 7 -> 9 [label=\"fastp filtered long reads\"]\n 3 -> 9 [label=\"output\"]\n 10[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nAssess genome quality - upgraded\"]\n 9 -> 10 [label=\"Assembly polished by long reads using Medaka\"]\n 4 -> 10 [label=\"output\"]\n}", + "history": [ + { + "hash": "01cffeed0413d12d37753e72aa81c95fb47e2179", + "message": "Update Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", + "num": 5, + "short_hash": "01cffeed0", + "unix": "1715074366" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "bd0db2c9632aca4fc5faba5e811b23e9f98817f0", + "message": "Rename Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga to Galaxy-Workflow-Combined_workflows_for_large_genome_assembly_old.ga", + "num": 3, + "short_hash": "bd0db2c96", + "unix": "1714537274" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 37.09056155334109, + "top": 117.80110422489305 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f9154ba8-6c56-4b8c-b3a6-79bf72638963", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R1" + } + ], + "label": "R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 296.6915657131622 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2152a89a-64b2-4e77-897e-97c2e951f0d4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "R2" + } + ], + "label": "R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 18.331891780359495, + "top": 404.60599487314124 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "04ed4838-38d0-47c6-9692-af43b305750c", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap settings (for long reads)" + } + ], + "label": "minimap settings (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 953.979654343896, + "top": 53.88085686443145 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "925fcb63-babc-42b5-9510-c82277158288", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3643a598-963e-42d9-b625-41f5256dee4a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genome for Quast" + } + ], + "label": "Reference genome for Quast", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1271.7306972391564, + "top": 75.04279962197629 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5bd59f90-9351-4b1e-bc0d-11fee8b4a435", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nR1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nR2\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Parameter\\nminimap settings for long reads\"];\n style 3 fill:#ded,stroke:#393,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nReference genome for Quast\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\ud83d\udee0\ufe0f Subworkflow\\nkmer counting - meryl - upgraded\"];\n style 5 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 5;\n 6[\"\ud83d\udee0\ufe0f Subworkflow\\nData QC - upgraded\"];\n style 6 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 6;\n 2 -->|output| 6;\n 0 -->|output| 6;\n 7[\"\ud83d\udee0\ufe0f Subworkflow\\nTrim and filter reads - fastp - upgraded \"];\n style 7 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 7;\n 2 -->|output| 7;\n 0 -->|output| 7;\n 8[\"\ud83d\udee0\ufe0f Subworkflow\\nAssembly with Flye - upgraded\"];\n style 8 fill:#edd,stroke:#900,stroke-width:4px;\n 7 -->|fastp filtered long reads| 8;\n 9[\"\ud83d\udee0\ufe0f Subworkflow\\nAssembly polishing - upgraded\"];\n style 9 fill:#edd,stroke:#900,stroke-width:4px;\n 8 -->|Flye assembly on input datasets consensus| 9;\n 7 -->|fastp filtered R1 reads| 9;\n 7 -->|fastp filtered long reads| 9;\n 3 -->|output| 9;\n 10[\"\ud83d\udee0\ufe0f Subworkflow\\nAssess genome quality - upgraded\"];\n style 10 fill:#edd,stroke:#900,stroke-width:4px;\n 9 -->|Assembly polished by long reads using Medaka| 10;\n 4 -->|output| 10;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Combined workflows for large genome assembly - upgraded ", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap settings (for long reads)" + } + ], + "label": "minimap settings (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 953.979654343896, + "top": 53.88085686443145 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "925fcb63-babc-42b5-9510-c82277158288", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3643a598-963e-42d9-b625-41f5256dee4a" + } + ] + }, + { + "annotation": "", + "id": 9, + "input_connections": { + "Assembly to be polished": { + "id": 8, + "input_subworkflow_step_id": 0, + "output_name": "Flye assembly on input dataset(s) (consensus)" + }, + "Illumina reads R1": { + "id": 7, + "input_subworkflow_step_id": 3, + "output_name": "fastp filtered R1 reads" + }, + "long reads": { + "id": 7, + "input_subworkflow_step_id": 1, + "output_name": "fastp filtered long reads" + }, + "minimap setting (for long reads)": { + "id": 3, + "input_subworkflow_step_id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Assembly polishing - upgraded", + "outputs": [], + "position": { + "left": 1260.7587450660599, + "top": 269.3075732043599 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "comments": [], + "creator": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "format-version": "0.1", + "name": "Assembly polishing - upgraded", + "report": { + "markdown": "\n# Workflow Report for Assembly Polishing\n\n## Workflow steps\n\n```galaxy\nworkflow_display()\n```\n\n## Fasta statistics after Racon long-read polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Racon long read polish\")\n```\n\n\n## Fasta statistics after Medaka polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Medaka polish\")\n```\n\n## Fasta statistics after Racon short-read polish\n\n```galaxy\nhistory_dataset_display(output=\"Fasta statistics after Racon short read polish\")\n```\n\n\n\n\n" + }, + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 19.464939294568495, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "52bc9ac4-ac3c-48eb-aead-94a0a14417fc", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 142.48340578478533 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "688866c4-de9b-4b78-8df3-b169d28b1617", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads)" + } + ], + "label": "minimap setting (for long reads)", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 13.133522093825794, + "top": 247.1519749531627 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "c1f18b5c-e8db-4046-b876-9b28a77cf66e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ce393bcf-42e3-43ee-9056-a99e8c077a29" + } + ] + }, + "3": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R1" + } + ], + "label": "Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 617.719019724734, + "top": 600.0866464299372 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ea859a58-c81a-4ef6-9bd2-4ef2f17bb5a9", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "id": 4, + "input_connections": { + "Assembly to be polished": { + "id": 0, + "input_subworkflow_step_id": 0, + "output_name": "output" + }, + "long reads": { + "id": 1, + "input_subworkflow_step_id": 1, + "output_name": "output" + }, + "minimap setting (for long reads) ": { + "id": 2, + "input_subworkflow_step_id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Racon polish with long reads, x4 - upgraded", + "outputs": [], + "position": { + "left": 299.6429464825318, + "top": 72.0364210406818 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "comments": [], + "creator": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "format-version": "0.1", + "name": "Racon polish with long reads, x4 - upgraded", + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 216.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c7796c36-adf8-49e4-a8e4-66e606d70311", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.5, + "top": 360.234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e2e4a70b-6e36-4b8b-bdf6-12b97189a6bd", + "when": null, + "workflow_outputs": [] + }, + "10": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "corrected_reads": { + "id": 8, + "output_name": "consensus" + }, + "overlaps": { + "id": 9, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 4", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1496.078125, + "top": 431.1875 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "53f4572e-3a4a-4585-89ab-9459f8a61720", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Racon", + "output_name": "consensus", + "uuid": "bcf0f03c-5951-46a7-aa38-545aed9bc183" + } + ] + }, + "2": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads) " + } + ], + "label": "minimap setting (for long reads) ", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.578125, + "top": 495.859375 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "fb80c05c-08d4-4ac2-b4bf-81ed906e4d72", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3983ef22-5f05-4384-8f34-6ac8c4b2cc83" + } + ] + }, + "3": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to assembly", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 377.640625, + "top": 0 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "0c06144f-d1ac-4b45-9669-1ddf11fcb06b", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "corrected_reads": { + "id": 0, + "output_name": "output" + }, + "overlaps": { + "id": 3, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 1", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 458.640625, + "top": 518.875 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "6c144354-91f2-49dd-a1f5-7c4119859730", + "when": null, + "workflow_outputs": [] + }, + "5": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 1", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 698.859375, + "top": 13.390625 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "c1b83dad-a8ed-42cb-951f-73f59f2dfa92", + "when": null, + "workflow_outputs": [] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "corrected_reads": { + "id": 4, + "output_name": "consensus" + }, + "overlaps": { + "id": 5, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 2", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 759.9375, + "top": 485.71875 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "3208491e-b831-4238-957e-5b7388d7ff8d", + "when": null, + "workflow_outputs": [] + }, + "7": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 6, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 2", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 998.75, + "top": 27.9375 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "42af524b-7f74-4c75-8d78-f6888078dd2e", + "when": null, + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "corrected_reads": { + "id": 6, + "output_name": "consensus" + }, + "overlaps": { + "id": 7, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 3", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1089.71875, + "top": 455.53125 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "21f339bd-ebc1-4c73-a976-5d0b9ab2127a", + "when": null, + "workflow_outputs": [] + }, + "9": { + "annotation": "Map raw reads to assembly; output paf", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "fastq_input|analysis_type_selector": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 8, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2: map long reads to polished assembly 3", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 1316.53125, + "top": 38.046875 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": {\"__class__\": \"ConnectedValue\"}}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "7d36291e-aa76-4312-9943-b5e56d0e90c5", + "when": null, + "workflow_outputs": [] + } + }, + "tags": "", + "uuid": "c57efd37-4cf6-4cc7-abf4-2bab22a2e9a0" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "58c99e4b-fd6a-401d-b9c7-cdf7e6d1757d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "2:output", + "uuid": "50fa1032-8037-454e-8192-b95405bcd5d4" + } + ] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "d": { + "id": 4, + "output_name": "Assembly polished by long reads using Racon" + }, + "i": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Medaka polish", + "name": "medaka consensus pipeline", + "outputs": [ + { + "name": "out_consensus", + "type": "fasta" + } + ], + "position": { + "left": 515.5164024294684, + "top": 305.08460859328346 + }, + "post_job_actions": { + "RenameDatasetActionout_consensus": { + "action_arguments": { + "newname": "Medaka_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fc8804320156", + "name": "medaka_consensus_pipeline", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"b\": \"100\", \"d\": {\"__class__\": \"ConnectedValue\"}, \"g\": false, \"i\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"r941_min_high_g360\", \"out\": [\"consensus\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.2+galaxy1", + "type": "tool", + "uuid": "14c5ce9c-df92-4e20-85da-7a161eaa759d", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Medaka", + "output_name": "out_consensus", + "uuid": "e3136060-bce7-4af3-87c4-9dcbb0d1f531" + } + ] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 6, + "input_connections": { + "fasta": { + "id": 4, + "output_name": "Assembly polished by long reads using Racon" + } + }, + "inputs": [], + "label": "Fasta statistics after Racon long read polish", + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 611.8186129984722, + "top": 131.47863560473016 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": false, \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "e78db141-a6d2-42b1-b2b6-aee5e900d3f4", + "when": null, + "workflow_outputs": [] + }, + "7": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 7, + "input_connections": { + "fasta": { + "id": 5, + "output_name": "out_consensus" + } + }, + "inputs": [], + "label": "Fasta statistics after Medaka polish", + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 816.9504695700908, + "top": 343.05724959525315 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": false, \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "96f313ee-4a6a-4ba9-86f8-3dedc1d5d30d", + "when": null, + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "id": 8, + "input_connections": { + "Assembly to be polished": { + "id": 5, + "input_subworkflow_step_id": 0, + "output_name": "out_consensus" + }, + "Illumina reads, R1, in fastq.gz format": { + "id": 3, + "input_subworkflow_step_id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Racon polish with Illumina reads (R1 only), x2 - upgraded", + "outputs": [], + "position": { + "left": 915.3758175639219, + "top": 512.306732089216 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "comments": [], + "creator": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "format-version": "0.1", + "name": "Racon polish with Illumina reads (R1 only), x2 - upgraded", + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 72.5176329833982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "28669894-74e2-4ba1-9d49-6e3209b5a1de", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads, R1, in fastq.gz format" + } + ], + "label": "Illumina reads, R1, in fastq.gz format", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 8.5, + "top": 341.2832579833982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bc936fdc-22a9-4507-aa47-4a70a3f93923", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2 round 1: map reads to assembly", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 399.936279296875, + "top": 0 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": \"sr\"}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "b01b8c3d-c33b-47b2-9a83-297c19d63ab7", + "when": null, + "workflow_outputs": [] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "corrected_reads": { + "id": 0, + "output_name": "output" + }, + "overlaps": { + "id": 2, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon round 1: polish assembly", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 635.5625200274146, + "top": 432.13610641498093 + }, + "post_job_actions": { + "HideDatasetActionconsensus": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"error_threshold\": \"0.3\", \"fragment_correction\": false, \"gap\": \"-4\", \"include_unpolished\": false, \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"window_length\": \"500\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "fe32d046-4ff2-485e-84e8-191b04803afc", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 3, + "output_name": "consensus" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with minimap2", + "name": "fastq_input" + }, + { + "description": "runtime parameter for tool Map with minimap2", + "name": "reference_source" + } + ], + "label": "Minimap2 round 2: map reads to assembly", + "name": "Map with minimap2", + "outputs": [ + { + "name": "alignment_output", + "type": "bam" + } + ], + "position": { + "left": 859.5, + "top": 23.955132983398205 + }, + "post_job_actions": { + "HideDatasetActionalignment_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "alignment_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "tool_shed_repository": { + "changeset_revision": "be1d967337e4", + "name": "minimap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment_options\": {\"splicing\": {\"splice_mode\": \"preset\", \"__current_case__\": 0}, \"A\": null, \"B\": null, \"O\": null, \"O2\": null, \"E\": null, \"E2\": null, \"z\": null, \"z2\": null, \"s\": null, \"no_end_flt\": true}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"analysis_type_selector\": \"sr\"}, \"indexing_options\": {\"H\": false, \"k\": null, \"w\": null, \"I\": null}, \"io_options\": {\"output_format\": \"paf\", \"Q\": false, \"L\": false, \"K\": null, \"cs\": null, \"c\": false, \"eqx\": false, \"Y\": false}, \"mapping_options\": {\"N\": null, \"F\": null, \"f\": null, \"kmer_ocurrence_interval\": {\"interval\": \"\", \"__current_case__\": 1}, \"min_occ_floor\": null, \"q_occ_frac\": \"0.01\", \"g\": null, \"r\": null, \"n\": null, \"m\": null, \"max_chain_skip\": null, \"max_chain_iter\": null, \"X\": false, \"p\": null, \"mask_len\": null}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.26+galaxy0", + "type": "tool", + "uuid": "ee834cad-027a-4a84-963b-141b22eaa70a", + "when": null, + "workflow_outputs": [] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "corrected_reads": { + "id": 3, + "output_name": "consensus" + }, + "overlaps": { + "id": 4, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon round 2: polish assembly", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1198.765625, + "top": 332.4707579833982 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_short_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "b3c89c40-3ad0-454c-a4d4-dfa34fb09f24", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by short reads using Racon", + "output_name": "consensus", + "uuid": "594819c3-668e-4575-b9a6-4459ffacf952" + } + ] + } + }, + "tags": "", + "uuid": "1b96b1cf-dbd4-46b1-8a59-aebfe80135c2" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "46288abb-a2bc-43d5-822a-a93af0d346cf", + "when": null, + "workflow_outputs": [] + }, + "9": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 9, + "input_connections": { + "fasta": { + "id": 8, + "output_name": "Assembly polished by short reads using Racon" + } + }, + "inputs": [], + "label": "Fasta statistics after Racon short read polish", + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 1179.1223817823236, + "top": 547.060000097866 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dataset\": {\"__class__\": \"ConnectedValue\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": false, \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "3c06b177-02b5-4068-8056-56b653d95379", + "when": null, + "workflow_outputs": [] + } + }, + "tags": "", + "uuid": "af8b99cb-cfc5-4f96-ba6c-6a178826ca98" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "6b6668c9-25b7-4135-ac9b-140a6d1593b0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "2:output", + "uuid": "f740de36-9921-4f0c-924e-3902bc2083b7" + }, + { + "label": null, + "output_name": "4:2:output", + "uuid": "2b5d309e-c47e-4a79-a69c-4d4fd6a93d8b" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Combined workflows for large genome assembly - upgraded ", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-combined-workflows-for-large-genome-assembly", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-combined-workflows-for-large-genome-assembly", + "workflow": "Galaxy-Workflow-Combined_workflows_for_large_genome_assembly.ga", + "workflow_tools": [ + "barchart_gnuplot", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/medaka_consensus_pipeline/medaka_consensus_pipeline/1.7.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/quast/quast/5.2.0+galaxy1" + ], + "workflowhub_id": "1176" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow Report for Data QC\n\n## Workflow steps\n\n```galaxy\nworkflow_display()\n```\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput file: long reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput file: Illumina reads R1\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput file: Illumina reads R2\"]\n 3[label=\"Nanoplot: long reads\"]\n 0 -> 3 [label=\"output\"]\n k73d0e4cf366e41c1810ab269638826b3[color=lightseagreen,label=\"Output\\nNanoPlot on input dataset(s): HTML report\"]\n 3 -> k73d0e4cf366e41c1810ab269638826b3\n 4[label=\"FastQC on R1\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"FastQC on R2\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"MultiQC: combine fastQC reports\"]\n 4 -> 6 [label=\"text_file\"]\n 5 -> 6 [label=\"text_file\"]\n k8baf8700876e4a74ad996e656f3ba618[color=lightseagreen,label=\"Output\\nMultiQC on input dataset(s): Webpage\"]\n 6 -> k8baf8700876e4a74ad996e656f3ba618\n}", + "history": [ + { + "hash": "d35221f6506e7b95e8b3ff679a2ad01edf1a560a", + "message": "Update Galaxy-Workflow-Data_QC.ga", + "num": 5, + "short_hash": "d35221f65", + "unix": "1715074384" + }, + { + "hash": "a737e5f1b936379382f4d568b0caeb664d81c392", + "message": "Rename Galaxy-Workflow-Data_QC_-_upgraded.ga to Galaxy-Workflow-Data_QC.ga", + "num": 4, + "short_hash": "a737e5f1b", + "unix": "1714537191" + }, + { + "hash": "9ca497557dddc43b116a61592a953f455046bc86", + "message": "Rename Galaxy-Workflow-Data_QC.ga to Galaxy-Workflow-Data_QC_old.ga", + "num": 3, + "short_hash": "9ca497557", + "unix": "1714537118" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input file: long reads" + } + ], + "label": "Input file: long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e2e4a70b-6e36-4b8b-bdf6-12b97189a6bd", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input file: Illumina reads R1" + } + ], + "label": "Input file: Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 535.703125, + "top": 21.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ea859a58-c81a-4ef6-9bd2-4ef2f17bb5a9", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input file: Illumina reads R2" + } + ], + "label": "Input file: Illumina reads R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 530.703125, + "top": 379.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "472adc05-88a5-4955-9e43-e82e9550ad08", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput file: long reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput file: Illumina reads R1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput file: Illumina reads R2\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Nanoplot: long reads\"];\n 0 -->|output| 3;\n 73d0e4cf-366e-41c1-810a-b269638826b3[\"Output\\nNanoPlot on input dataset(s): HTML report\"];\n 3 --> 73d0e4cf-366e-41c1-810a-b269638826b3;\n style 73d0e4cf-366e-41c1-810a-b269638826b3 stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC on R1\"];\n 1 -->|output| 4;\n 5[\"FastQC on R2\"];\n 2 -->|output| 5;\n 6[\"MultiQC: combine fastQC reports\"];\n 4 -->|text_file| 6;\n 5 -->|text_file| 6;\n 8baf8700-876e-4a74-ad99-6e656f3ba618[\"Output\\nMultiQC on input dataset(s): Webpage\"];\n 6 --> 8baf8700-876e-4a74-ad99-6e656f3ba618;\n style 8baf8700-876e-4a74-ad99-6e656f3ba618 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Data QC - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "mode|reads|files": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Nanoplot: long reads", + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "tabular" + }, + { + "name": "nanostats_post_filtering", + "type": "tabular" + } + ], + "position": { + "left": 240.84375, + "top": 104.359375 + }, + "post_job_actions": { + "HideDatasetActionlog_read_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log_read_length" + }, + "HideDatasetActionnanostats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats" + }, + "HideDatasetActionnanostats_post_filtering": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "nanostats_post_filtering" + }, + "HideDatasetActionread_length": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "read_length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a02b8b3f5a0c", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"customization\": {\"color\": null, \"plots\": null, \"N50\": false}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": false, \"downsample\": null, \"loglength\": false, \"percentqual\": false, \"alength\": false, \"minqual\": null, \"runtime_until\": null, \"readtype\": null, \"barcoded\": false, \"no_supplementary\": false}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.42.0+galaxy1", + "type": "tool", + "uuid": "3b8a87fe-1506-48d2-a4d9-f4dca8b6065d", + "when": null, + "workflow_outputs": [ + { + "label": "NanoPlot on input dataset(s): HTML report", + "output_name": "output_html", + "uuid": "73d0e4cf-366e-41c1-810a-b269638826b3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 4, + "output_name": "text_file" + }, + "results_0|software_cond|output_1|input": { + "id": 5, + "output_name": "text_file" + } + }, + "inputs": [], + "label": "MultiQC: combine fastQC reports", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1233.5, + "top": 230.844970703125 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "3e29a59b-dca0-4993-b20d-495a3f17e291", + "when": null, + "workflow_outputs": [ + { + "label": "MultiQC on input dataset(s): Webpage", + "output_name": "html_report", + "uuid": "8baf8700-876e-4a74-ad99-6e656f3ba618" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Data_QC.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Data QC - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-data-qc", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Data_QC.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Data_QC.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-data-qc", + "workflow": "Galaxy-Workflow-Data_QC.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.42.0+galaxy1" + ], + "workflowhub_id": "1162" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads, R1, in fastq.gz format\"]\n 2[label=\"Minimap2 round 1: map reads to assembly\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Racon round 1: polish assembly\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"alignment_output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Minimap2 round 2: map reads to assembly\"]\n 1 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"consensus\"]\n 5[label=\"Racon round 2: polish assembly\"]\n 3 -> 5 [label=\"consensus\"]\n 4 -> 5 [label=\"alignment_output\"]\n 1 -> 5 [label=\"output\"]\n k594819c3668e4575b9a64459ffacf952[color=lightseagreen,label=\"Output\\nAssembly polished by short reads using Racon\"]\n 5 -> k594819c3668e4575b9a64459ffacf952\n}", + "history": [ + { + "hash": "3be0312ca5a2e27bc1f8573e28943833be988894", + "message": "Update Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", + "num": 5, + "short_hash": "3be0312ca", + "unix": "1715074403" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "7d222309ffbec070126e3e749ba6f3d4e510cc6e", + "message": "Rename Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga to Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2_old.ga", + "num": 3, + "short_hash": "7d222309f", + "unix": "1714537293" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 72.5176329833982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "28669894-74e2-4ba1-9d49-6e3209b5a1de", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads, R1, in fastq.gz format" + } + ], + "label": "Illumina reads, R1, in fastq.gz format", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 8.5, + "top": 341.2832579833982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bc936fdc-22a9-4507-aa47-4a70a3f93923", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nIllumina reads, R1, in fastq.gz format\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Minimap2 round 1: map reads to assembly\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Racon round 1: polish assembly\"];\n 0 -->|output| 3;\n 2 -->|alignment_output| 3;\n 1 -->|output| 3;\n 4[\"Minimap2 round 2: map reads to assembly\"];\n 1 -->|output| 4;\n 3 -->|consensus| 4;\n 5[\"Racon round 2: polish assembly\"];\n 3 -->|consensus| 5;\n 4 -->|alignment_output| 5;\n 1 -->|output| 5;\n 594819c3-668e-4575-b9a6-4459ffacf952[\"Output\\nAssembly polished by short reads using Racon\"];\n 5 --> 594819c3-668e-4575-b9a6-4459ffacf952;\n style 594819c3-668e-4575-b9a6-4459ffacf952 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Racon polish with Illumina reads (R1 only), x2 - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "corrected_reads": { + "id": 3, + "output_name": "consensus" + }, + "overlaps": { + "id": 4, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon round 2: polish assembly", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1198.765625, + "top": 332.4707579833982 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_short_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "b3c89c40-3ad0-454c-a4d4-dfa34fb09f24", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by short reads using Racon", + "output_name": "consensus", + "uuid": "594819c3-668e-4575-b9a6-4459ffacf952" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Racon polish with Illumina reads (R1 only), x2 - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-racon-polish-with-illumina-reads-x2", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-racon-polish-with-illumina-reads-x2", + "workflow": "Galaxy-Workflow-Racon_polish_with_Illumina_reads_x2.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0" + ], + "workflowhub_id": "1148" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": true, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nminimap setting for long reads \"]\n 3[label=\"Minimap2: map long reads to assembly\"]\n 2 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Racon: polish 1\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"alignment_output\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Minimap2: map long reads to polished assembly 1\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"consensus\"]\n 6[label=\"Racon: polish 2\"]\n 4 -> 6 [label=\"consensus\"]\n 5 -> 6 [label=\"alignment_output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Minimap2: map long reads to polished assembly 2\"]\n 2 -> 7 [label=\"output\"]\n 1 -> 7 [label=\"output\"]\n 6 -> 7 [label=\"consensus\"]\n 8[label=\"Racon: polish 3\"]\n 6 -> 8 [label=\"consensus\"]\n 7 -> 8 [label=\"alignment_output\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"Minimap2: map long reads to polished assembly 3\"]\n 2 -> 9 [label=\"output\"]\n 1 -> 9 [label=\"output\"]\n 8 -> 9 [label=\"consensus\"]\n 10[label=\"Racon: polish 4\"]\n 8 -> 10 [label=\"consensus\"]\n 9 -> 10 [label=\"alignment_output\"]\n 1 -> 10 [label=\"output\"]\n kbcf0f03c595146a7aa38545aed9bc183[color=lightseagreen,label=\"Output\\nAssembly polished by long reads using Racon\"]\n 10 -> kbcf0f03c595146a7aa38545aed9bc183\n}", + "history": [ + { + "hash": "ea8cb9df4cc68241e9b406bde825b4c16647280b", + "message": "Update Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", + "num": 5, + "short_hash": "ea8cb9df4", + "unix": "1715074423" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "7bd7c55df24dd71009cbde6408fb87d49901a84a", + "message": "Rename Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga to Galaxy-Workflow-Racon_polish_with_long_reads_x4_old.ga", + "num": 3, + "short_hash": "7bd7c55df", + "unix": "1714537311" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Assembly to be polished" + } + ], + "label": "Assembly to be polished", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 216.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c7796c36-adf8-49e4-a8e4-66e606d70311", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.5, + "top": 360.234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e2e4a70b-6e36-4b8b-bdf6-12b97189a6bd", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads) " + } + ], + "label": "minimap setting (for long reads) ", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.578125, + "top": 495.859375 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "fb80c05c-08d4-4ac2-b4bf-81ed906e4d72", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3983ef22-5f05-4384-8f34-6ac8c4b2cc83" + } + ] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAssembly to be polished\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nminimap setting for long reads \"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"Minimap2: map long reads to assembly\"];\n 2 -->|output| 3;\n 1 -->|output| 3;\n 0 -->|output| 3;\n 4[\"Racon: polish 1\"];\n 0 -->|output| 4;\n 3 -->|alignment_output| 4;\n 1 -->|output| 4;\n 5[\"Minimap2: map long reads to polished assembly 1\"];\n 2 -->|output| 5;\n 1 -->|output| 5;\n 4 -->|consensus| 5;\n 6[\"Racon: polish 2\"];\n 4 -->|consensus| 6;\n 5 -->|alignment_output| 6;\n 1 -->|output| 6;\n 7[\"Minimap2: map long reads to polished assembly 2\"];\n 2 -->|output| 7;\n 1 -->|output| 7;\n 6 -->|consensus| 7;\n 8[\"Racon: polish 3\"];\n 6 -->|consensus| 8;\n 7 -->|alignment_output| 8;\n 1 -->|output| 8;\n 9[\"Minimap2: map long reads to polished assembly 3\"];\n 2 -->|output| 9;\n 1 -->|output| 9;\n 8 -->|consensus| 9;\n 10[\"Racon: polish 4\"];\n 8 -->|consensus| 10;\n 9 -->|alignment_output| 10;\n 1 -->|output| 10;\n bcf0f03c-5951-46a7-aa38-545aed9bc183[\"Output\\nAssembly polished by long reads using Racon\"];\n 10 --> bcf0f03c-5951-46a7-aa38-545aed9bc183;\n style bcf0f03c-5951-46a7-aa38-545aed9bc183 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Racon polish with long reads, x4 - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "minimap setting (for long reads) " + } + ], + "label": "minimap setting (for long reads) ", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0.578125, + "top": 495.859375 + }, + "tool_id": null, + "tool_state": "{\"default\": \"map-ont\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "fb80c05c-08d4-4ac2-b4bf-81ed906e4d72", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3983ef22-5f05-4384-8f34-6ac8c4b2cc83" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "corrected_reads": { + "id": 8, + "output_name": "consensus" + }, + "overlaps": { + "id": 9, + "output_name": "alignment_output" + }, + "reads": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Racon: polish 4", + "name": "Racon", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + } + ], + "position": { + "left": 1496.078125, + "top": 431.1875 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "Racon_long_reads_polished_assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "78c533842eeb", + "name": "racon", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corrected_reads\": {\"__class__\": \"ConnectedValue\"}, \"e\": \"0.3\", \"error_threshold\": \"0.3\", \"f\": \"false\", \"fragment_correction\": false, \"g\": \"-8\", \"gap\": \"-4\", \"include_unpolished\": false, \"m\": \"5\", \"match\": \"3\", \"mismatch\": \"-5\", \"no_trimming\": false, \"overlaps\": {\"__class__\": \"ConnectedValue\"}, \"q\": \"10.0\", \"quality_threshold\": \"10.0\", \"reads\": {\"__class__\": \"ConnectedValue\"}, \"u\": \"true\", \"w\": \"500\", \"window_length\": \"500\", \"x\": \"-4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0+galaxy1", + "type": "tool", + "uuid": "53f4572e-3a4a-4585-89ab-9459f8a61720", + "when": null, + "workflow_outputs": [ + { + "label": "Assembly polished by long reads using Racon", + "output_name": "consensus", + "uuid": "bcf0f03c-5951-46a7-aa38-545aed9bc183" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Racon polish with long reads, x4 - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-racon-polish-with-long-reads-x4", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Racon_polish_with_long_reads_x4.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-racon-polish-with-long-reads-x4", + "workflow": "Galaxy-Workflow-Racon_polish_with_long_reads_x4.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/racon/racon/1.5.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/minimap2/minimap2/2.26+galaxy0" + ], + "workflowhub_id": "1154" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow for Trim and Filter Reads\n\n## Workflow steps\n```galaxy\nworkflow_display()\n```\n\n\n\n\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads R2\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlong reads\"]\n 3[label=\"fastp on short reads\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n k656e413841ab4561898933de9ac9a2f3[color=lightseagreen,label=\"Output\\nfastp report on short reads html\"]\n 3 -> k656e413841ab4561898933de9ac9a2f3\n k0d53f347036847cb953a2e4dac57e013[color=lightseagreen,label=\"Output\\nfastp filtered R1 reads\"]\n 3 -> k0d53f347036847cb953a2e4dac57e013\n k10fbe1e5400c4ffe87949b776b0d7322[color=lightseagreen,label=\"Output\\nfastp report on short reads json\"]\n 3 -> k10fbe1e5400c4ffe87949b776b0d7322\n k639ed3f70e514e5db6f8081378962109[color=lightseagreen,label=\"Output\\nfastp filtered R2 reads\"]\n 3 -> k639ed3f70e514e5db6f8081378962109\n 4[label=\"fastp on long reads\"]\n 2 -> 4 [label=\"output\"]\n k5e0d2c3d41a44823ae9cb1e4d2826541[color=lightseagreen,label=\"Output\\nfastp report on long reads html\"]\n 4 -> k5e0d2c3d41a44823ae9cb1e4d2826541\n ke6018ad686f44e788cf2ccc8b97022fe[color=lightseagreen,label=\"Output\\nfastp filtered long reads\"]\n 4 -> ke6018ad686f44e788cf2ccc8b97022fe\n k69f8383ba1be4a7495f43dba35e01426[color=lightseagreen,label=\"Output\\nfastp report on long reads json\"]\n 4 -> k69f8383ba1be4a7495f43dba35e01426\n}", + "history": [ + { + "hash": "1fe24b92fd7cf3bf693a850751a6215f7b9273bd", + "message": "Update Galaxy-Workflow-Trim_and_filter_reads.ga", + "num": 5, + "short_hash": "1fe24b92f", + "unix": "1715074442" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "12f721099e26ef4bd152c1c2b56ccb51e6bd31ab", + "message": "Rename Galaxy-Workflow-Trim_and_filter_reads.ga to Galaxy-Workflow-Trim_and_filter_reads_old.ga", + "num": 3, + "short_hash": "12f721099", + "unix": "1714537350" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R1" + } + ], + "label": "Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 29.045160466974437 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "00a54054-e3f7-4e4f-9195-563e54df899a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R2" + } + ], + "label": "Illumina reads R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 145.03474842418325 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "14062fd8-1aa9-4a18-94d8-bbbb0e1a9262", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "long reads" + } + ], + "label": "long reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 576.5103981711648, + "top": 35.50348455255681 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "08eeb0d3-6ad6-4e7f-ac6a-d00c8e87fd08", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nIllumina reads R2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nlong reads\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"fastp on short reads\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 656e4138-41ab-4561-8989-33de9ac9a2f3[\"Output\\nfastp report on short reads html\"];\n 3 --> 656e4138-41ab-4561-8989-33de9ac9a2f3;\n style 656e4138-41ab-4561-8989-33de9ac9a2f3 stroke:#2c3143,stroke-width:4px;\n 0d53f347-0368-47cb-953a-2e4dac57e013[\"Output\\nfastp filtered R1 reads\"];\n 3 --> 0d53f347-0368-47cb-953a-2e4dac57e013;\n style 0d53f347-0368-47cb-953a-2e4dac57e013 stroke:#2c3143,stroke-width:4px;\n 10fbe1e5-400c-4ffe-8794-9b776b0d7322[\"Output\\nfastp report on short reads json\"];\n 3 --> 10fbe1e5-400c-4ffe-8794-9b776b0d7322;\n style 10fbe1e5-400c-4ffe-8794-9b776b0d7322 stroke:#2c3143,stroke-width:4px;\n 639ed3f7-0e51-4e5d-b6f8-081378962109[\"Output\\nfastp filtered R2 reads\"];\n 3 --> 639ed3f7-0e51-4e5d-b6f8-081378962109;\n style 639ed3f7-0e51-4e5d-b6f8-081378962109 stroke:#2c3143,stroke-width:4px;\n 4[\"fastp on long reads\"];\n 2 -->|output| 4;\n 5e0d2c3d-41a4-4823-ae9c-b1e4d2826541[\"Output\\nfastp report on long reads html\"];\n 4 --> 5e0d2c3d-41a4-4823-ae9c-b1e4d2826541;\n style 5e0d2c3d-41a4-4823-ae9c-b1e4d2826541 stroke:#2c3143,stroke-width:4px;\n e6018ad6-86f4-4e78-8cf2-ccc8b97022fe[\"Output\\nfastp filtered long reads\"];\n 4 --> e6018ad6-86f4-4e78-8cf2-ccc8b97022fe;\n style e6018ad6-86f4-4e78-8cf2-ccc8b97022fe stroke:#2c3143,stroke-width:4px;\n 69f8383b-a1be-4a74-95f4-3dba35e01426[\"Output\\nfastp report on long reads json\"];\n 4 --> 69f8383b-a1be-4a74-95f4-3dba35e01426;\n style 69f8383b-a1be-4a74-95f4-3dba35e01426 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "Trim and filter reads - fastp - upgraded ", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "single_paired|in1": { + "id": 0, + "output_name": "output" + }, + "single_paired|in2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + }, + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + } + ], + "label": "fastp on short reads", + "name": "fastp", + "outputs": [ + { + "name": "out1", + "type": "input" + }, + { + "name": "out2", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 290.5382191051136, + "top": 0 + }, + "post_job_actions": { + "DeleteIntermediatesActionout1": { + "action_arguments": {}, + "action_type": "DeleteIntermediatesAction", + "output_name": "out1" + }, + "RenameDatasetActionout1": { + "action_arguments": { + "newname": "fastp_filtered_R1.fastq.gz" + }, + "action_type": "RenameDatasetAction", + "output_name": "out1" + }, + "RenameDatasetActionout2": { + "action_arguments": { + "newname": "fastp_filtered_R2.fastq.gz" + }, + "action_type": "RenameDatasetAction", + "output_name": "out2" + }, + "RenameDatasetActionreport_html": { + "action_arguments": { + "newname": "fastp_illumina.html" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_html" + }, + "RenameDatasetActionreport_json": { + "action_arguments": { + "newname": "fastp_illumina.json" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c59d48774d03", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"paired\", \"__current_case__\": 1, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"in2\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": \"\", \"adapter_sequence2\": \"\"}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.23.4+galaxy0", + "type": "tool", + "uuid": "c38e84b3-771c-428e-9d2d-ce84d5e1153c", + "when": null, + "workflow_outputs": [ + { + "label": "fastp report on short reads html", + "output_name": "report_html", + "uuid": "656e4138-41ab-4561-8989-33de9ac9a2f3" + }, + { + "label": "fastp filtered R1 reads", + "output_name": "out1", + "uuid": "0d53f347-0368-47cb-953a-2e4dac57e013" + }, + { + "label": "fastp report on short reads json", + "output_name": "report_json", + "uuid": "10fbe1e5-400c-4ffe-8794-9b776b0d7322" + }, + { + "label": "fastp filtered R2 reads", + "output_name": "out2", + "uuid": "639ed3f7-0e51-4e5d-b6f8-081378962109" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "single_paired|in1": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool fastp", + "name": "single_paired" + } + ], + "label": "fastp on long reads", + "name": "fastp", + "outputs": [ + { + "name": "out1", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 804.010509144176, + "top": 22.482646595348 + }, + "post_job_actions": { + "DeleteIntermediatesActionout1": { + "action_arguments": {}, + "action_type": "DeleteIntermediatesAction", + "output_name": "out1" + }, + "RenameDatasetActionout1": { + "action_arguments": { + "newname": "fastp_filtered_long_reads.fastq.gz" + }, + "action_type": "RenameDatasetAction", + "output_name": "out1" + }, + "RenameDatasetActionreport_html": { + "action_arguments": { + "newname": "fastp_longreads.html" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_html" + }, + "RenameDatasetActionreport_json": { + "action_arguments": { + "newname": "fastp_longreads.json" + }, + "action_type": "RenameDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c59d48774d03", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": true, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": true, \"length_required\": null, \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"-G\", \"__current_case__\": 2}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": \"\", \"umi_len\": null, \"umi_prefix\": \"\"}, \"cutting_by_quality_options\": {\"cut_by_quality5\": false, \"cut_by_quality3\": false, \"cut_window_size\": null, \"cut_mean_quality\": null}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"single\", \"__current_case__\": 0, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": true, \"adapter_sequence1\": \"\"}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.23.4+galaxy0", + "type": "tool", + "uuid": "93602736-2d22-43e4-a53a-803326ccab9e", + "when": null, + "workflow_outputs": [ + { + "label": "fastp report on long reads html", + "output_name": "report_html", + "uuid": "5e0d2c3d-41a4-4823-ae9c-b1e4d2826541" + }, + { + "label": "fastp filtered long reads", + "output_name": "out1", + "uuid": "e6018ad6-86f4-4e78-8cf2-ccc8b97022fe" + }, + { + "label": "fastp report on long reads json", + "output_name": "report_json", + "uuid": "69f8383b-a1be-4a74-95f4-3dba35e01426" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Trim_and_filter_reads.ga", + "tags": [ + "LG-WF", + "GTN" + ], + "test_results": null, + "tests": false, + "title": "Trim and filter reads - fastp - upgraded ", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-trim-and-filter-reads", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Trim_and_filter_reads.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-Trim_and_filter_reads.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-trim-and-filter-reads", + "workflow": "Galaxy-Workflow-Trim_and_filter_reads.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0" + ], + "workflowhub_id": "1144" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9906-0673", + "name": "Anna Syme" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": { + "markdown": "\n# Workflow Execution Report\n\n\r\n```galaxy\nworkflow_display()\n```\r\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"]\n 1[label=\"Meryl - count kmers\"]\n 0 -> 1 [label=\"output\"]\n k899ddd934c0f4f81a9738120494ed983[color=lightseagreen,label=\"Output\\nMeryl on input dataset(s): read-db.meryldb\"]\n 1 -> k899ddd934c0f4f81a9738120494ed983\n 2[label=\"Meryl - generate histogram\"]\n 1 -> 2 [label=\"read_db\"]\n 3[label=\"Genomescope\"]\n 2 -> 3 [label=\"read_db_hist\"]\n kefc727b61ef44c4c8cce35c7d3cc8aac[color=lightseagreen,label=\"Output\\nGenomeScope on input dataset(s) Transformed log plot\"]\n 3 -> kefc727b61ef44c4c8cce35c7d3cc8aac\n k701df341576744bcade26af498ab7467[color=lightseagreen,label=\"Output\\nGenomeScope on input dataset(s) Transformed linear plot\"]\n 3 -> k701df341576744bcade26af498ab7467\n k85fa4004b35147b384aa6788d338037a[color=lightseagreen,label=\"Output\\nGenomeScope on input dataset(s) Log plot\"]\n 3 -> k85fa4004b35147b384aa6788d338037a\n kc71ce05598f0435493972f8833b90cc4[color=lightseagreen,label=\"Output\\nGenomeScope on input dataset(s) Linear plot\"]\n 3 -> kc71ce05598f0435493972f8833b90cc4\n}", + "history": [ + { + "hash": "b74cf5a09d0d563d658d374ed6d287db85df3a8a", + "message": "Update Galaxy-Workflow-kmer_counting.ga", + "num": 5, + "short_hash": "b74cf5a09", + "unix": "1715074461" + }, + { + "hash": "e8ddbcdd5e3fb5b0caac0dac60dc6abce06e1792", + "message": "new versions of workflows", + "num": 4, + "short_hash": "e8ddbcdd5", + "unix": "1714537936" + }, + { + "hash": "0be0483e2cbaa0ab18026da1f19f4b124d78e1c4", + "message": "Rename Galaxy-Workflow-kmer_counting.ga to Galaxy-Workflow-kmer_counting_old.ga", + "num": 3, + "short_hash": "0be0483e2", + "unix": "1714537366" + }, + { + "hash": "62e77944bdfffa3045148d04ebc741853c6d7d05", + "message": "add/complete creator info on workflows", + "num": 2, + "short_hash": "62e77944b", + "unix": "1676627603" + }, + { + "hash": "9fcb3aeec26986b2e348d7a1694668a2414e7156", + "message": "large genome tutorial", + "num": 1, + "short_hash": "9fcb3aeec", + "unix": "1665123856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina reads R1" + } + ], + "label": "Illumina reads R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 31.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3daa3f25-6fff-4766-9d45-b991fd6751a5", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIllumina reads R1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Meryl - count kmers\"];\n 0 -->|output| 1;\n 899ddd93-4c0f-4f81-a973-8120494ed983[\"Output\\nMeryl on input dataset(s): read-db.meryldb\"];\n 1 --> 899ddd93-4c0f-4f81-a973-8120494ed983;\n style 899ddd93-4c0f-4f81-a973-8120494ed983 stroke:#2c3143,stroke-width:4px;\n 2[\"Meryl - generate histogram\"];\n 1 -->|read_db| 2;\n 3[\"Genomescope\"];\n 2 -->|read_db_hist| 3;\n efc727b6-1ef4-4c4c-8cce-35c7d3cc8aac[\"Output\\nGenomeScope on input dataset(s) Transformed log plot\"];\n 3 --> efc727b6-1ef4-4c4c-8cce-35c7d3cc8aac;\n style efc727b6-1ef4-4c4c-8cce-35c7d3cc8aac stroke:#2c3143,stroke-width:4px;\n 701df341-5767-44bc-ade2-6af498ab7467[\"Output\\nGenomeScope on input dataset(s) Transformed linear plot\"];\n 3 --> 701df341-5767-44bc-ade2-6af498ab7467;\n style 701df341-5767-44bc-ade2-6af498ab7467 stroke:#2c3143,stroke-width:4px;\n 85fa4004-b351-47b3-84aa-6788d338037a[\"Output\\nGenomeScope on input dataset(s) Log plot\"];\n 3 --> 85fa4004-b351-47b3-84aa-6788d338037a;\n style 85fa4004-b351-47b3-84aa-6788d338037a stroke:#2c3143,stroke-width:4px;\n c71ce055-98f0-4354-9397-2f8833b90cc4[\"Output\\nGenomeScope on input dataset(s) Linear plot\"];\n 3 --> c71ce055-98f0-4354-9397-2f8833b90cc4;\n style c71ce055-98f0-4354-9397-2f8833b90cc4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:21 +0000", + "name": "kmer counting - meryl - upgraded", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "errors": null, + "id": 1, + "input_connections": { + "operation_type|input_reads": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Meryl", + "name": "operation_type" + } + ], + "label": "Meryl - count kmers", + "name": "Meryl", + "outputs": [ + { + "name": "read_db", + "type": "meryldb" + } + ], + "position": { + "left": 228, + "top": 103.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "tool_shed_repository": { + "changeset_revision": "29dabd8db6f2", + "name": "meryl", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"operation_type\": {\"command_type\": \"count-kmers\", \"__current_case__\": 0, \"count_operations\": \"count\", \"input_reads\": {\"__class__\": \"RuntimeValue\"}, \"options_kmer_size\": {\"kmer_size\": \"provide\", \"__current_case__\": 0, \"input_kmer_size\": \"21\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3+galaxy6", + "type": "tool", + "uuid": "0a85d93b-8f53-4bc8-b89b-4be6f306f2c6", + "when": null, + "workflow_outputs": [ + { + "label": "Meryl on input dataset(s): read-db.meryldb", + "output_name": "read_db", + "uuid": "899ddd93-4c0f-4f81-a973-8120494ed983" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "errors": null, + "id": 2, + "input_connections": { + "operation_type|input_meryldb_02": { + "id": 1, + "output_name": "read_db" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Meryl", + "name": "operation_type" + } + ], + "label": "Meryl - generate histogram", + "name": "Meryl", + "outputs": [ + { + "name": "read_db_hist", + "type": "tabular" + } + ], + "position": { + "left": 465.5, + "top": 110 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "tool_shed_repository": { + "changeset_revision": "29dabd8db6f2", + "name": "meryl", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"operation_type\": {\"command_type\": \"histogram-kmers\", \"__current_case__\": 4, \"input_meryldb_02\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3+galaxy6", + "type": "tool", + "uuid": "80dbb867-84f7-4349-ae1d-1c7b87d0dce7", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "read_db_hist", + "uuid": "bf11e7cb-61a2-4c27-9aa1-4c7a42028330" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "read_db_hist" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool GenomeScope", + "name": "input" + } + ], + "label": "Genomescope", + "name": "GenomeScope", + "outputs": [ + { + "name": "linear_plot", + "type": "png" + }, + { + "name": "log_plot", + "type": "png" + }, + { + "name": "transformed_linear_plot", + "type": "png" + }, + { + "name": "transformed_log_plot", + "type": "png" + }, + { + "name": "model", + "type": "txt" + }, + { + "name": "summary", + "type": "txt" + }, + { + "name": "progress", + "type": "txt" + } + ], + "position": { + "left": 699.204345703125, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "01210c4e9144", + "name": "genomescope", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"topology\": null, \"initial_repetitiveness\": null, \"initial_heterozygosities\": \"\", \"transform_exp\": null, \"testing\": false, \"true_params\": \"\", \"trace_flag\": false, \"num_rounds\": null}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"kmer_length\": \"21\", \"lambda\": null, \"max_kmercov\": null, \"output_options\": {\"output_files\": [\"model_output\", \"summary_output\", \"progress_output\"], \"no_unique_sequence\": false}, \"ploidy\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0+galaxy2", + "type": "tool", + "uuid": "fa7a5012-8bd0-4b35-b337-249245e0932b", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "progress", + "uuid": "fedca588-8be6-4e13-9ff5-62387a5a90af" + }, + { + "label": "GenomeScope on input dataset(s) Transformed log plot", + "output_name": "transformed_log_plot", + "uuid": "efc727b6-1ef4-4c4c-8cce-35c7d3cc8aac" + }, + { + "label": null, + "output_name": "summary", + "uuid": "fd17af72-7c2a-4167-9880-7fbda525ccbb" + }, + { + "label": null, + "output_name": "model", + "uuid": "ede2b1a5-4017-4aef-a6d2-bac5d17bc7b5" + }, + { + "label": "GenomeScope on input dataset(s) Transformed linear plot", + "output_name": "transformed_linear_plot", + "uuid": "701df341-5767-44bc-ade2-6af498ab7467" + }, + { + "label": "GenomeScope on input dataset(s) Log plot", + "output_name": "log_plot", + "uuid": "85fa4004-b351-47b3-84aa-6788d338037a" + }, + { + "label": "GenomeScope on input dataset(s) Linear plot", + "output_name": "linear_plot", + "uuid": "c71ce055-98f0-4354-9397-2f8833b90cc4" + } + ] + } + ], + "parent_id": "assembly/largegenome", + "path": "topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-kmer_counting.ga", + "tags": [ + "GTN", + "LG-WF" + ], + "test_results": null, + "tests": false, + "title": "kmer counting - meryl - upgraded", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-largegenome/versions/galaxy-workflow-kmer-counting", + "tutorial_id": "largegenome", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-kmer_counting.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/largegenome/workflows/Galaxy-Workflow-kmer_counting.html", + "version": 2, + "wfid": "assembly-largegenome", + "wfname": "galaxy-workflow-kmer-counting", + "workflow": "Galaxy-Workflow-kmer_counting.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6" + ], + "workflowhub_id": "1166" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.7055935" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "blobtoolkit", + "owner": "bgruening", + "revisions": "7d9ee8cd14b8", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "blobtoolkit", + "owner": "bgruening", + "revisions": "53dd00a4ab68", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "diamond", + "owner": "bgruening", + "revisions": "e8ac2b53f262", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfastats", + "owner": "bgruening", + "revisions": "5799092ffdff", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gfastats", + "owner": "bgruening", + "revisions": "3ef480892a9f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "3a0efe14891f", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "smudgeplot", + "owner": "galaxy-australia", + "revisions": "5e0825476fb7", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "ddddce450736", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bellerophon", + "owner": "iuc", + "revisions": "25ca5d73aedf", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "busco", + "owner": "iuc", + "revisions": "bb935709506a", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa_mem2", + "owner": "iuc", + "revisions": "b4a22d90cce9", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "genomescope", + "owner": "iuc", + "revisions": "01210c4e9144", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "f4af63aaf57a", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merqury", + "owner": "iuc", + "revisions": "f8113c25bc6b", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meryl", + "owner": "iuc", + "revisions": "29dabd8db6f2", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pretext_map", + "owner": "iuc", + "revisions": "dfb8a4497339", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pretext_snapshot", + "owner": "iuc", + "revisions": "44c66e8d21e6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: blobtoolkit\n owner: bgruening\n revisions: 7d9ee8cd14b8\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: blobtoolkit\n owner: bgruening\n revisions: 53dd00a4ab68\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: diamond\n owner: bgruening\n revisions: e8ac2b53f262\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfastats\n owner: bgruening\n revisions: 5799092ffdff\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gfastats\n owner: bgruening\n revisions: 3ef480892a9f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 3a0efe14891f\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: smudgeplot\n owner: galaxy-australia\n revisions: 5e0825476fb7\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: ddddce450736\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bellerophon\n owner: iuc\n revisions: 25ca5d73aedf\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: busco\n owner: iuc\n revisions: bb935709506a\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa_mem2\n owner: iuc\n revisions: b4a22d90cce9\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: genomescope\n owner: iuc\n revisions: 01210c4e9144\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: f4af63aaf57a\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merqury\n owner: iuc\n revisions: f8113c25bc6b\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meryl\n owner: iuc\n revisions: 29dabd8db6f2\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pretext_map\n owner: iuc\n revisions: dfb8a4497339\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pretext_snapshot\n owner: iuc\n revisions: 44c66e8d21e6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ERGA-post-assembly-QC/tutorial.json", + "contributors": [ + { + "id": "GitFab93", + "joined": "2023-03", + "name": "Fabian Recktenwald", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/GitFab93/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/GitFab93.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + } + ], + "dir": "topics/assembly/tutorials/ERGA-post-assembly-QC", + "edam_operation": [ + "Phasing", + "De-novo assembly", + "Sequence alignment", + "Genotyping", + "Sequence assembly validation", + "Sequence alignment analysis", + "Sequence assembly visualisation", + "Transcriptome assembly", + "Data handling", + "Genome assembly", + "Sequence trimming", + "k-mer counting", + "Scaffolding" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/ERGA-post-assembly-QC", + "inexact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The ERGA post-assembly pipeline allows to assess and improve the quality of genome assemblies", + "The ERGA post-assembly pipeline contains of three main steps: Genome assembly decontamination and overview with BlobToolKit, providing analysis information and statistics and Hi-C scaffolding." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "apply the post-assembly-QC-workflow using the necessary tools", + "analyse and evaluate the results of the workflow" + ], + "pageviews": 1088, + "pub_date": "2023-06-23", + "questions": [ + "what combination of tools can assess the quality of an post-assembly?", + "what metrics can help to analyse the quality?", + "how to evaluate the outputs?" + ], + "short_id": "T00355", + "short_tools": [ + "bellerophon", + "meryl", + "collapse_dataset", + "__EXTRACT_DATASET__", + "hisat2", + "busco", + "genomescope", + "blobtoolkit", + "pretext_map", + "CONVERTER_gz_to_uncompressed", + "samtools_stats", + "interactive_tool_blobtoolkit", + "tp_find_and_replace", + "smudgeplot", + "gfastats", + "bg_diamond", + "bandage_image", + "merqury", + "pretext_snapshot", + "bwa_mem2" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "plants" + ], + "time_estimation": "3H", + "title": "ERGA post-assembly QC", + "tools": [ + "CONVERTER_gz_to_uncompressed", + "__EXTRACT_DATASET__", + "interactive_tool_blobtoolkit", + "toolshed.g2.bx.psu.edu/repos/bgruening/blobtoolkit/blobtoolkit/3.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/blobtoolkit/blobtoolkit/4.0.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy+2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_map/pretext_map/0.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ERGA-post-assembly-QC", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/ERGA-post-assembly-QC/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ERGA-post-assembly-QC/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/ERGA-post-assembly-QC/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 98, + "visitors": 820, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-5752-2155", + "name": "Crist\u00f3bal Gallardo Alba" + } + ], + "description": "ERGA post-assembly QC", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMetadata file\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nNCBI taxonomic ID\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNCBI taxdump directory\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nFASTQ files\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nPloidy for model to use\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPrimary genome assembly file fasta\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDIAMOND database\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nHi-C reverse\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nHi-C forward\"]\n 9[label=\"Meryl\"]\n 3 -> 9 [label=\"output\"]\n 10[label=\"Collapse Collection\"]\n 3 -> 10 [label=\"output\"]\n 11[label=\"Create BlobtoolKit\"]\n 5 -> 11 [label=\"output\"]\n 0 -> 11 [label=\"output\"]\n 2 -> 11 [label=\"output\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"gfastats\"]\n 5 -> 12 [label=\"output\"]\n 13[label=\"Convert compressed file to uncompressed.\"]\n 5 -> 13 [label=\"output\"]\n 14[label=\"gfastats\"]\n 5 -> 14 [label=\"output\"]\n 15[label=\"Diamond\"]\n 5 -> 15 [label=\"output\"]\n 6 -> 15 [label=\"output\"]\n 16[label=\"Collapse Collection\"]\n 7 -> 16 [label=\"output\"]\n 17[label=\"Collapse Collection\"]\n 8 -> 17 [label=\"output\"]\n 18[label=\"Meryl\"]\n 9 -> 18 [label=\"read_db\"]\n 19[label=\"HISAT2\"]\n 10 -> 19 [label=\"output\"]\n 5 -> 19 [label=\"output\"]\n 20[label=\"Smudgeplot\"]\n 10 -> 20 [label=\"output\"]\n 21[label=\"Replace\"]\n 13 -> 21 [label=\"output1\"]\n 22[label=\"Bandage Image\"]\n 14 -> 22 [label=\"output\"]\n 23[label=\"BWA-MEM2\"]\n 16 -> 23 [label=\"output\"]\n 5 -> 23 [label=\"output\"]\n 24[label=\"BWA-MEM2\"]\n 17 -> 24 [label=\"output\"]\n 5 -> 24 [label=\"output\"]\n 25[label=\"Merqury\"]\n 5 -> 25 [label=\"output\"]\n 18 -> 25 [label=\"read_db\"]\n kc2fe83a3754a4544bb87df16f3537ab4[color=lightseagreen,label=\"Output\\nMerqury on input dataset(s): stats\"]\n 25 -> kc2fe83a3754a4544bb87df16f3537ab4\n k8f08d8f67615420c8a15201a61b5d3bb[color=lightseagreen,label=\"Output\\nMerqury on input dataset(s): plots\"]\n 25 -> k8f08d8f67615420c8a15201a61b5d3bb\n k7a8d951a6a314b02aeba0eb3061f85ce[color=lightseagreen,label=\"Output\\nMerqury on input dataset(s): QV stats\"]\n 25 -> k7a8d951a6a314b02aeba0eb3061f85ce\n 26[label=\"Meryl\"]\n 18 -> 26 [label=\"read_db\"]\n 27[label=\"Samtools stats\"]\n 19 -> 27 [label=\"output_alignments\"]\n 28[label=\"Busco\"]\n 21 -> 28 [label=\"outfile\"]\n k1d4e45428bf14e32890b2e18df95a0de[color=lightseagreen,label=\"Output\\nBusco on input dataset(s): full table\"]\n 28 -> k1d4e45428bf14e32890b2e18df95a0de\n k680b817736534630ab99c1d2304dc485[color=lightseagreen,label=\"Output\\nBusco on input dataset(s): short summary\"]\n 28 -> k680b817736534630ab99c1d2304dc485\n 29[label=\"Filter and merge\"]\n 24 -> 29 [label=\"bam_output\"]\n 23 -> 29 [label=\"bam_output\"]\n 30[label=\"Merqury plot 2\"]\n 25 -> 30 [label=\"png_files\"]\n 31[label=\"Merqury plot 1\"]\n 25 -> 31 [label=\"png_files\"]\n 32[label=\"Merqury plot 3\"]\n 25 -> 32 [label=\"png_files\"]\n 33[label=\"Merqury plot 5\"]\n 25 -> 33 [label=\"png_files\"]\n 34[label=\"Merqury plot 4\"]\n 25 -> 34 [label=\"png_files\"]\n 35[label=\"GenomeScope\"]\n 26 -> 35 [label=\"read_db_hist\"]\n 4 -> 35 [label=\"output\"]\n 36[label=\"BlobToolKit\"]\n 15 -> 36 [label=\"blast_tabular\"]\n 11 -> 36 [label=\"blobdir\"]\n 28 -> 36 [label=\"busco_table\"]\n 19 -> 36 [label=\"output_alignments\"]\n 37[label=\"PretextMap\"]\n 29 -> 37 [label=\"outfile\"]\n 38[label=\"Interactive BlobToolKit\"]\n 36 -> 38 [label=\"blobdir\"]\n 39[label=\"Pretext Snapshot\"]\n 37 -> 39 [label=\"pretext_map_out\"]\n}", + "history": [ + { + "hash": "807026b8414e9d8e35cb6805104338150b1131f0", + "message": "Update topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.ga", + "num": 3, + "short_hash": "807026b84", + "unix": "1687524556" + }, + { + "hash": "c5bb8031a5b03030e4fdc5c0a478a87e7c1e3c13", + "message": "Fix testes", + "num": 2, + "short_hash": "c5bb8031a", + "unix": "1687511093" + }, + { + "hash": "893cd527b9bd282e7f98475f5c3cd3e2f3ea89b0", + "message": "Add images and rename tutorial", + "num": 1, + "short_hash": "893cd527b", + "unix": "1682673537" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Metadata file" + } + ], + "label": "Metadata file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 280, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": true, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4e2925a6-af6c-4a48-95e1-334ee4cebee4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "NCBI taxonomic ID" + } + ], + "label": "NCBI taxonomic ID", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 280, + "top": 123 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"integer\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "ffe0dbe7-597d-45ed-a356-f036d807b80a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "NCBI taxdump directory" + } + ], + "label": "NCBI taxdump directory", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 280, + "top": 246 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a04c5335-88b6-4d11-9924-5752df4204e1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "FASTQ files" + } + ], + "label": "FASTQ files", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 1182 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "7cb038c5-3dd4-4313-b178-dd05cdc96721", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Ploidy for model to use" + } + ], + "label": "Ploidy for model to use", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 860, + "top": 1011 + }, + "tool_id": null, + "tool_state": "{\"default\": 2, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "e586fc91-192f-45c1-bccb-b3a017ff5b26", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Primary genome assembly file (fasta)" + } + ], + "label": "Primary genome assembly file (fasta)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 280, + "top": 1310 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "1b4475cb-0cc2-4371-ac68-c1bd2f868e50", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DIAMOND database" + } + ], + "label": "DIAMOND database", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 280, + "top": 1735 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "68be0d0c-35a9-4c73-a61e-56c1486e3548", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Hi-C reverse" + } + ], + "label": "Hi-C reverse", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 2172 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8e598f70-ebee-4264-84a4-5d40642004a4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Hi-C forward" + } + ], + "label": "Hi-C forward", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 2602 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "b1a0825d-054b-4d34-a735-4f8b2f57df4c", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nMetadata file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nNCBI taxonomic ID\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nNCBI taxdump directory\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Collection\\nFASTQ files\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nPloidy for model to use\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nPrimary genome assembly file fasta\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nDIAMOND database\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Collection\\nHi-C reverse\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Collection\\nHi-C forward\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"Meryl\"];\n 3 -->|output| 9;\n 10[\"Collapse Collection\"];\n 3 -->|output| 10;\n 11[\"Create BlobtoolKit\"];\n 5 -->|output| 11;\n 0 -->|output| 11;\n 2 -->|output| 11;\n 1 -->|output| 11;\n 12[\"gfastats\"];\n 5 -->|output| 12;\n 13[\"Convert compressed file to uncompressed.\"];\n 5 -->|output| 13;\n 14[\"gfastats\"];\n 5 -->|output| 14;\n 15[\"Diamond\"];\n 5 -->|output| 15;\n 6 -->|output| 15;\n 16[\"Collapse Collection\"];\n 7 -->|output| 16;\n 17[\"Collapse Collection\"];\n 8 -->|output| 17;\n 18[\"Meryl\"];\n 9 -->|read_db| 18;\n 19[\"HISAT2\"];\n 10 -->|output| 19;\n 5 -->|output| 19;\n 20[\"Smudgeplot\"];\n 10 -->|output| 20;\n 21[\"Replace\"];\n 13 -->|output1| 21;\n 22[\"Bandage Image\"];\n 14 -->|output| 22;\n 23[\"BWA-MEM2\"];\n 16 -->|output| 23;\n 5 -->|output| 23;\n 24[\"BWA-MEM2\"];\n 17 -->|output| 24;\n 5 -->|output| 24;\n 25[\"Merqury\"];\n 5 -->|output| 25;\n 18 -->|read_db| 25;\n c2fe83a3-754a-4544-bb87-df16f3537ab4[\"Output\\nMerqury on input dataset(s): stats\"];\n 25 --> c2fe83a3-754a-4544-bb87-df16f3537ab4;\n style c2fe83a3-754a-4544-bb87-df16f3537ab4 stroke:#2c3143,stroke-width:4px;\n 8f08d8f6-7615-420c-8a15-201a61b5d3bb[\"Output\\nMerqury on input dataset(s): plots\"];\n 25 --> 8f08d8f6-7615-420c-8a15-201a61b5d3bb;\n style 8f08d8f6-7615-420c-8a15-201a61b5d3bb stroke:#2c3143,stroke-width:4px;\n 7a8d951a-6a31-4b02-aeba-0eb3061f85ce[\"Output\\nMerqury on input dataset(s): QV stats\"];\n 25 --> 7a8d951a-6a31-4b02-aeba-0eb3061f85ce;\n style 7a8d951a-6a31-4b02-aeba-0eb3061f85ce stroke:#2c3143,stroke-width:4px;\n 26[\"Meryl\"];\n 18 -->|read_db| 26;\n 27[\"Samtools stats\"];\n 19 -->|output_alignments| 27;\n 28[\"Busco\"];\n 21 -->|outfile| 28;\n 1d4e4542-8bf1-4e32-890b-2e18df95a0de[\"Output\\nBusco on input dataset(s): full table\"];\n 28 --> 1d4e4542-8bf1-4e32-890b-2e18df95a0de;\n style 1d4e4542-8bf1-4e32-890b-2e18df95a0de stroke:#2c3143,stroke-width:4px;\n 680b8177-3653-4630-ab99-c1d2304dc485[\"Output\\nBusco on input dataset(s): short summary\"];\n 28 --> 680b8177-3653-4630-ab99-c1d2304dc485;\n style 680b8177-3653-4630-ab99-c1d2304dc485 stroke:#2c3143,stroke-width:4px;\n 29[\"Filter and merge\"];\n 24 -->|bam_output| 29;\n 23 -->|bam_output| 29;\n 30[\"Merqury plot 2\"];\n 25 -->|png_files| 30;\n 31[\"Merqury plot 1\"];\n 25 -->|png_files| 31;\n 32[\"Merqury plot 3\"];\n 25 -->|png_files| 32;\n 33[\"Merqury plot 5\"];\n 25 -->|png_files| 33;\n 34[\"Merqury plot 4\"];\n 25 -->|png_files| 34;\n 35[\"GenomeScope\"];\n 26 -->|read_db_hist| 35;\n 4 -->|output| 35;\n 36[\"BlobToolKit\"];\n 15 -->|blast_tabular| 36;\n 11 -->|blobdir| 36;\n 28 -->|busco_table| 36;\n 19 -->|output_alignments| 36;\n 37[\"PretextMap\"];\n 29 -->|outfile| 37;\n 38[\"Interactive BlobToolKit\"];\n 36 -->|blobdir| 38;\n 39[\"Pretext Snapshot\"];\n 37 -->|pretext_map_out| 39;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "Post-assembly workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.2.0+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "gfastats", + "outputs": [ + { + "name": "stats", + "type": "tabular" + } + ], + "position": { + "left": 570, + "top": 1150 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.2.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5799092ffdff", + "name": "gfastats", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"mode_condition\": {\"selector\": \"statistics\", \"__current_case__\": 1, \"statistics_condition\": {\"selector\": \"assembly\", \"__current_case__\": 2, \"expected_genomesize\": null}, \"tabular\": true}, \"target_condition\": {\"target_option\": \"false\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0+galaxy0", + "type": "tool", + "uuid": "7b6264cf-7b3e-4df7-8091-4fe9db70ba0b", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "6c86bd99-c6d3-49a5-9ffe-5d86d045128d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy+2", + "errors": null, + "id": 20, + "input_connections": { + "file|input|reads": { + "id": 10, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Smudgeplot", + "outputs": [ + { + "name": "smudgeplot", + "type": "png" + }, + { + "name": "smudgeplot_log", + "type": "png" + } + ], + "position": { + "left": 570, + "top": 2319 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy+2", + "tool_shed_repository": { + "changeset_revision": "5e0825476fb7", + "name": "smudgeplot", + "owner": "galaxy-australia", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"file\": {\"input\": {\"input_select\": \"reads\", \"__current_case__\": 0, \"reads\": {\"__class__\": \"ConnectedValue\"}, \"mer_len\": \"21\", \"lower_cutoff\": null, \"upper_cutoff\": null}}, \"homozygous\": false, \"table_output\": false, \"verbose_output\": false, \"warnings_output\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.5+galaxy+2", + "type": "tool", + "uuid": "2b550197-cc54-44e7-be71-8d15a093fda6", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "smudgeplot_log", + "uuid": "7573ecef-1ef1-4879-b602-f4dcc92e0bfb" + }, + { + "label": null, + "output_name": "smudgeplot", + "uuid": "ab18b562-de82-40f4-8c30-3f730479d97c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "errors": null, + "id": 22, + "input_connections": { + "input_file": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 860, + "top": 1499 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "tool_shed_repository": { + "changeset_revision": "ddddce450736", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fontsize\": null, \"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": false, \"names\": false, \"nodewidth\": null, \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2022.09+galaxy4", + "type": "tool", + "uuid": "17e86ff6-8432-4125-aee6-63630ea662cc", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "25323480-dacf-41b4-a7e9-c02f557737de" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "errors": null, + "id": 25, + "input_connections": { + "mode|assembly_options|assembly_01": { + "id": 5, + "output_name": "output" + }, + "mode|meryldb_F1": { + "id": 18, + "output_name": "read_db" + } + }, + "inputs": [], + "label": null, + "name": "Merqury", + "outputs": [ + { + "name": "qv_files", + "type": "input" + }, + { + "name": "png_files", + "type": "input" + }, + { + "name": "stats_files", + "type": "input" + } + ], + "position": { + "left": 860, + "top": 581 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "tool_shed_repository": { + "changeset_revision": "f8113c25bc6b", + "name": "merqury", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"label\": \"output_merqury\", \"mode\": {\"options\": \"default\", \"__current_case__\": 0, \"meryldb_F1\": {\"__class__\": \"ConnectedValue\"}, \"assembly_options\": {\"number_assemblies\": \"one\", \"__current_case__\": 0, \"assembly_01\": {\"__class__\": \"ConnectedValue\"}}}, \"output_add_headers\": false, \"output_selector\": [\"qv\", \"plots\", \"stats\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3+galaxy2", + "type": "tool", + "uuid": "60379717-8086-422d-8300-9d1b459a473a", + "when": null, + "workflow_outputs": [ + { + "label": "Merqury on input dataset(s): stats", + "output_name": "stats_files", + "uuid": "c2fe83a3-754a-4544-bb87-df16f3537ab4" + }, + { + "label": "Merqury on input dataset(s): plots", + "output_name": "png_files", + "uuid": "8f08d8f6-7615-420c-8a15-201a61b5d3bb" + }, + { + "label": "Merqury on input dataset(s): QV stats", + "output_name": "qv_files", + "uuid": "7a8d951a-6a31-4b02-aeba-0eb3061f85ce" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.4", + "errors": null, + "id": 27, + "input_connections": { + "input": { + "id": 19, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "Samtools stats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 860, + "top": 1816 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.4", + "tool_shed_repository": { + "changeset_revision": "3a0efe14891f", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cov_threshold\": null, \"coverage_cond\": {\"coverage_select\": \"no\", \"__current_case__\": 0}, \"filter_by_flags\": {\"filter_flags\": \"nofilter\", \"__current_case__\": 1}, \"gc_depth\": null, \"input\": {\"__class__\": \"ConnectedValue\"}, \"insert_size\": null, \"most_inserts\": null, \"read_group\": null, \"read_length\": null, \"remove_dups\": false, \"remove_overlaps\": false, \"sparse\": false, \"split_output_cond\": {\"split_output_selector\": \"no\", \"__current_case__\": 0}, \"trim_quality\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.4", + "type": "tool", + "uuid": "d6f1f5fe-736a-4e1f-87d5-0ae8bba7ad11", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c26fc7dd-b185-42fc-b831-e3e9a5e6d741" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.4+galaxy0", + "errors": null, + "id": 28, + "input_connections": { + "input": { + "id": 21, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Busco", + "outputs": [ + { + "name": "busco_sum", + "type": "txt" + }, + { + "name": "busco_table", + "type": "tabular" + } + ], + "position": { + "left": 1140, + "top": 1293 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "bb935709506a", + "name": "busco", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"evalue\": \"0.001\", \"limit\": \"3\"}, \"busco_mode\": {\"mode\": \"geno\", \"__current_case__\": 0, \"use_augustus\": {\"use_augustus_selector\": \"no\", \"__current_case__\": 0}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"lineage\": {\"lineage_mode\": \"auto_detect\", \"__current_case__\": 0, \"auto_lineage\": \"--auto-lineage\"}, \"outputs\": [\"short_summary\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.4.4+galaxy0", + "type": "tool", + "uuid": "3a41b74c-9ed5-4a4c-a92d-f48cf6d5f35d", + "when": null, + "workflow_outputs": [ + { + "label": "Busco on input dataset(s): full table", + "output_name": "busco_table", + "uuid": "1d4e4542-8bf1-4e32-890b-2e18df95a0de" + }, + { + "label": "Busco on input dataset(s): short summary", + "output_name": "busco_sum", + "uuid": "680b8177-3653-4630-ab99-c1d2304dc485" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "errors": null, + "id": 35, + "input_connections": { + "input": { + "id": 26, + "output_name": "read_db_hist" + }, + "ploidy": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "GenomeScope", + "outputs": [ + { + "name": "linear_plot", + "type": "png" + }, + { + "name": "log_plot", + "type": "png" + }, + { + "name": "transformed_linear_plot", + "type": "png" + }, + { + "name": "transformed_log_plot", + "type": "png" + } + ], + "position": { + "left": 1140, + "top": 977 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "01210c4e9144", + "name": "genomescope", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"topology\": null, \"initial_repetitiveness\": null, \"initial_heterozygosities\": \"\", \"transform_exp\": null, \"testing\": false, \"true_params\": \"\", \"trace_flag\": false, \"num_rounds\": null}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_length\": \"21\", \"lambda\": null, \"max_kmercov\": null, \"output_options\": {\"output_files\": null, \"no_unique_sequence\": false}, \"ploidy\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0+galaxy2", + "type": "tool", + "uuid": "123fa27b-c25d-422f-ab18-5996179a50a0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "transformed_linear_plot", + "uuid": "a7482d1b-bc8b-4d99-9095-14008f64ca7e" + }, + { + "label": null, + "output_name": "log_plot", + "uuid": "2fd6f906-f4ec-4d9a-8043-2185ffde267d" + }, + { + "label": null, + "output_name": "linear_plot", + "uuid": "ed2a9a05-d98f-4edd-b033-2312990b215b" + }, + { + "label": null, + "output_name": "transformed_log_plot", + "uuid": "3e5db883-c25e-470e-bb18-be0da5dcd4f0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "errors": null, + "id": 39, + "input_connections": { + "input": { + "id": 37, + "output_name": "pretext_map_out" + } + }, + "inputs": [], + "label": null, + "name": "Pretext Snapshot", + "outputs": [ + { + "name": "pretext_snap_out", + "type": "input" + } + ], + "position": { + "left": 1430, + "top": 2162 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "44c66e8d21e6", + "name": "pretext_snapshot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"colormap\": \"5\", \"formats\": {\"outformat\": \"png\", \"__current_case__\": 0}, \"grid\": {\"showGrid\": true, \"__current_case__\": 0, \"gridsize\": \"1\", \"gridcolor\": \"black\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"mintexels\": \"64\", \"resolution\": \"1000\", \"sequencenames\": false, \"sequences\": \"=full, =all\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.3+galaxy1", + "type": "tool", + "uuid": "576bcaf5-7b61-494c-b6cd-e10084628f08", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "pretext_snap_out", + "uuid": "ac2cda6a-0fdd-476b-b6ba-7e5312d9f409" + } + ] + } + ], + "parent_id": "assembly/ERGA-post-assembly-QC", + "path": "topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Post-assembly workflow", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-ERGA-post-assembly-QC/versions/main-workflow", + "tutorial_id": "ERGA-post-assembly-QC", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/ERGA-post-assembly-QC/workflows/main_workflow.html", + "version": 1, + "wfid": "assembly-ERGA-post-assembly-QC", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "CONVERTER_gz_to_uncompressed", + "__EXTRACT_DATASET__", + "interactive_tool_blobtoolkit", + "toolshed.g2.bx.psu.edu/repos/bgruening/blobtoolkit/blobtoolkit/4.0.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.2.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxy-australia/smudgeplot/smudgeplot/0.2.5+galaxy+2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/2022.09+galaxy4", + "toolshed.g2.bx.psu.edu/repos/iuc/bellerophon/bellerophon/1.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.4.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bwa_mem2/bwa_mem2/2.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/genomescope/genomescope/2.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/merqury/merqury/1.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meryl/meryl/1.3+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_map/pretext_map/0.1.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1127" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "flye", + "owner": "bgruening", + "revisions": "3ee0ef312022", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "prokka", + "owner": "crs4", + "revisions": "bf68eb663bc3", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "prokka", + "owner": "crs4", + "revisions": "111884f0d912", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "b2860df42e16", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bandage", + "owner": "iuc", + "revisions": "94fe43e75ddc", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "9c620a950d3a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_stats", + "owner": "iuc", + "revisions": "0dbb995c7d35", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "2bb2e07a7a21", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "17359b808b01", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "edbb6c5028f5", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pilon", + "owner": "iuc", + "revisions": "11e5408fd238", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: flye\n owner: bgruening\n revisions: 3ee0ef312022\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: prokka\n owner: crs4\n revisions: bf68eb663bc3\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: prokka\n owner: crs4\n revisions: 111884f0d912\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: b2860df42e16\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bandage\n owner: iuc\n revisions: 94fe43e75ddc\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 9c620a950d3a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_stats\n owner: iuc\n revisions: 0dbb995c7d35\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 2bb2e07a7a21\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 17359b808b01\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: edbb6c5028f5\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pilon\n owner: iuc\n revisions: 11e5408fd238\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/chloroplast-assembly/tutorial.json", + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + } + ], + "dir": "topics/assembly/tutorials/chloroplast-assembly", + "edam_operation": [ + "Genome indexing", + "De-novo assembly", + "Sequence alignment", + "Box-Whisker plot plotting", + "Genome annotation", + "Read mapping", + "Scatter plot plotting", + "Mapping assembly", + "Genome visualisation", + "Sequence assembly visualisation", + "Generation", + "Analysis", + "Coding region prediction", + "Cross-assembly", + "Genome assembly", + "Sequence assembly", + "Gene prediction", + "Read alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "assembly/chloroplast-assembly", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A chloroplast genome can be assembled with long reads and polished with short reads", + "The assembly graph is useful to look at and think about genomic structure", + "We can map raw reads back to the assembly and investigate areas of high or low read coverage", + "We can view an assembly, its mapped reads, and its annotations in JBrowse" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Assemble a chloroplast genome from long reads", + "Polish the assembly with short reads", + "Annotate the assembly and view", + "Map reads to the assembly and view" + ], + "pageviews": 9428, + "pub_date": "2020-12-04", + "questions": [ + "How can we assemble a chloroplast genome?" + ], + "recordings": [ + { + "captioners": [ + "annasyme" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "35M", + "speakers": [ + "annasyme" + ], + "youtube_id": "eyfCyINTD_E" + } + ], + "short_id": "T00030", + "short_tools": [ + "nanoplot", + "jbrowse", + "flye", + "fasta-stats", + "prokka", + "bandage_info", + "bandage_image", + "bwa_mem", + "upload1", + "pilon" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "plants", + "nanopore", + "jbrowse1" + ], + "time_estimation": "2h", + "title": "Chloroplast genome assembly", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6", + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.4+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1", + "upload1" + ], + "topic_name": "assembly", + "topic_name_human": "Assembly", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "chloroplast-assembly", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/assembly/tutorials/chloroplast-assembly/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/chloroplast-assembly/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/assembly/tutorials/chloroplast-assembly/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 170, + "visitors": 5895, + "workflows": [ + { + "creators": [], + "description": "Assembly", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIllumina_reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNanopore_reads\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTiny_set_illumina_read\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTiny_set_nanopore_reads\"]\n 4[label=\"Flye assembly\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"NanoPlot\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Map with BWA-MEM\"]\n 0 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"consensus\"]\n 7[label=\"Fasta Statistics\"]\n 4 -> 7 [label=\"consensus\"]\n 8[label=\"Bandage Info\"]\n 4 -> 8 [label=\"assembly_gfa\"]\n 9[label=\"Bandage Image\"]\n 4 -> 9 [label=\"assembly_gfa\"]\n 10[label=\"pilon\"]\n 6 -> 10 [label=\"bam_output\"]\n 4 -> 10 [label=\"consensus\"]\n 11[label=\"Fasta Statistics\"]\n 10 -> 11 [label=\"output_fasta\"]\n 12[label=\"Map with BWA-MEM\"]\n 2 -> 12 [label=\"output\"]\n 10 -> 12 [label=\"output_fasta\"]\n 13[label=\"Map with BWA-MEM\"]\n 3 -> 13 [label=\"output\"]\n 10 -> 13 [label=\"output_fasta\"]\n 14[label=\"Prokka\"]\n 10 -> 14 [label=\"output_fasta\"]\n 15[label=\"JBrowse\"]\n 10 -> 15 [label=\"output_fasta\"]\n 12 -> 15 [label=\"bam_output\"]\n 13 -> 15 [label=\"bam_output\"]\n 16[label=\"JBrowse\"]\n 10 -> 16 [label=\"output_fasta\"]\n 14 -> 16 [label=\"out_gff\"]\n}", + "history": [ + { + "hash": "ed613d5a1151b9f28f238d38166228cd186f2462", + "message": "Updated workflow with new version of Fasta Stats", + "num": 3, + "short_hash": "ed613d5a1", + "unix": "1683677548" + }, + { + "hash": "2b2bcd3917fafb9b8bc912598edf3ab28cee70d5", + "message": "swap version of tool for one on every server", + "num": 2, + "short_hash": "2b2bcd391", + "unix": "1613141279" + }, + { + "hash": "ebcd3d5282b03ce89bd65e0d39748970c7738481", + "message": "updated workflow added", + "num": 1, + "short_hash": "ebcd3d528", + "unix": "1611556716" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Illumina_reads" + } + ], + "label": "Illumina_reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 294.1953125, + "top": 123.90625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "35434963-8a88-47e2-99f0-ef3eb0484f7e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Nanopore_reads" + } + ], + "label": "Nanopore_reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 354.859375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "59b157b8-f5c4-498c-b66c-0d206ba06ee9", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tiny_set_illumina_read" + } + ], + "label": "Tiny_set_illumina_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 908.265625, + "top": 919.359375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "39c47516-8e9c-4d44-b6bc-326c4be142ee", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tiny_set_nanopore_reads" + } + ], + "label": "Tiny_set_nanopore_reads", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 908.2734375, + "top": 1040.5703125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "1257e34e-ad76-4f76-88dc-f22c5cc60b8b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIllumina_reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nNanopore_reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTiny_set_illumina_read\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nTiny_set_nanopore_reads\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Flye assembly\"];\n 1 -->|output| 4;\n 5[\"NanoPlot\"];\n 1 -->|output| 5;\n 6[\"Map with BWA-MEM\"];\n 0 -->|output| 6;\n 4 -->|consensus| 6;\n 7[\"Fasta Statistics\"];\n 4 -->|consensus| 7;\n 8[\"Bandage Info\"];\n 4 -->|assembly_gfa| 8;\n 9[\"Bandage Image\"];\n 4 -->|assembly_gfa| 9;\n 10[\"pilon\"];\n 6 -->|bam_output| 10;\n 4 -->|consensus| 10;\n 11[\"Fasta Statistics\"];\n 10 -->|output_fasta| 11;\n 12[\"Map with BWA-MEM\"];\n 2 -->|output| 12;\n 10 -->|output_fasta| 12;\n 13[\"Map with BWA-MEM\"];\n 3 -->|output| 13;\n 10 -->|output_fasta| 13;\n 14[\"Prokka\"];\n 10 -->|output_fasta| 14;\n 15[\"JBrowse\"];\n 10 -->|output_fasta| 15;\n 12 -->|bam_output| 15;\n 13 -->|bam_output| 15;\n 16[\"JBrowse\"];\n 10 -->|output_fasta| 16;\n 14 -->|out_gff| 16;", + "modified": "2024-08-18 00:06:20 +0000", + "name": "Chloroplast-genome-assembly-and-annotation", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6", + "errors": null, + "id": 4, + "input_connections": { + "inputs": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Flye assembly", + "outputs": [ + { + "name": "consensus", + "type": "fasta" + }, + { + "name": "assembly_graph", + "type": "graph_dot" + }, + { + "name": "assembly_gfa", + "type": "txt" + }, + { + "name": "assembly_info", + "type": "tabular" + }, + { + "name": "flye_log", + "type": "txt" + } + ], + "position": { + "left": 301.03125, + "top": 244.03125 + }, + "post_job_actions": { + "RenameDatasetActionconsensus": { + "action_arguments": { + "newname": "flye-assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "consensus" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6", + "tool_shed_repository": { + "changeset_revision": "3ee0ef312022", + "name": "flye", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"asm\": null, \"g\": \"160000\", \"i\": \"1\", \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"m\": null, \"meta\": \"false\", \"mode\": \"--nano-raw\", \"no_trestle\": \"false\", \"plasmids\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6", + "type": "tool", + "uuid": "efcc01cf-bb71-4c46-9eec-83488a79859e", + "workflow_outputs": [ + { + "label": null, + "output_name": "assembly_info", + "uuid": "f14c4d31-93bc-4e19-9d81-f3061ed8898e" + }, + { + "label": null, + "output_name": "flye_log", + "uuid": "33126b99-3149-4da0-bcaa-031156d82f09" + }, + { + "label": null, + "output_name": "consensus", + "uuid": "1e33ae8a-4d67-44bf-933e-ade1a94b7f85" + }, + { + "label": null, + "output_name": "assembly_graph", + "uuid": "89d53ead-feef-4079-8988-627850312bd9" + }, + { + "label": null, + "output_name": "assembly_gfa", + "uuid": "de2f80a8-f73f-419c-81e2-208b63c84c1f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "mode|reads|files": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NanoPlot", + "outputs": [ + { + "name": "output_html", + "type": "html" + }, + { + "name": "nanostats", + "type": "txt" + }, + { + "name": "nanostats_post_filtering", + "type": "txt" + }, + { + "name": "read_length", + "type": "png" + }, + { + "name": "log_read_length", + "type": "png" + } + ], + "position": { + "left": 315.015625, + "top": 701.8125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "edbb6c5028f5", + "name": "nanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"customization\": {\"color\": null, \"format\": \"png\", \"plots\": null, \"N50\": \"false\"}, \"filter\": {\"maxlength\": null, \"minlength\": null, \"drop_outliers\": \"false\", \"downsample\": null, \"loglength\": \"false\", \"percentqual\": \"false\", \"alength\": \"false\", \"minqual\": null, \"readtype\": null, \"barcoded\": \"false\"}, \"mode\": {\"choice\": \"batch\", \"__current_case__\": 0, \"reads\": {\"type\": \"fastq\", \"__current_case__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.28.2+galaxy1", + "type": "tool", + "uuid": "655afaaf-7a0f-4103-b68c-32ad0c03a32b", + "workflow_outputs": [ + { + "label": null, + "output_name": "log_read_length", + "uuid": "a87ac909-55de-42d8-b637-981e0b37c062" + }, + { + "label": null, + "output_name": "nanostats_post_filtering", + "uuid": "46189275-9aef-4c23-8410-d6a6eb14299d" + }, + { + "label": null, + "output_name": "nanostats", + "uuid": "1f5ce9f1-eec9-48c9-b175-8d530b9d9024" + }, + { + "label": null, + "output_name": "read_length", + "uuid": "18ebb4bc-a4a3-48a5-b2e2-c8f9fb801dd6" + }, + { + "label": null, + "output_name": "output_html", + "uuid": "5192b242-50f9-4205-aac7-d1deca088724" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 6, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 0, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "left": 637.8359375, + "top": 0.0 + }, + "post_job_actions": { + "RenameDatasetActionbam_output": { + "action_arguments": { + "newname": "illumina.bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "bam_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "dfd8b7f78c37", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 1, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}, \"index_a\": \"auto\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "95ed65e8-2534-4cef-888f-6de9f83a3770", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "2a0f0b99-d8b1-4585-8272-159d9f3a6a6d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 7, + "input_connections": { + "fasta": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 640.78125, + "top": 365.859375 + }, + "post_job_actions": { + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "Fasta stats of flye assembly" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionstats_output": { + "action_arguments": { + "newname": "Flye assembly fasta stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": \"false\", \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "e4b5dd88-a21b-4b20-93b6-5de72b3883e1", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats_output", + "uuid": "083a96d6-2e0f-408e-a343-9df5cccbcbae" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "assembly_gfa" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Info", + "outputs": [ + { + "name": "outfile", + "type": "txt" + } + ], + "position": { + "left": 608.78125, + "top": 588.5859375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"tsv\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy1", + "type": "tool", + "uuid": "11a0fc24-13ed-4199-8524-1ebc317e449e", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "5bfce93b-c6bd-42c2-8910-d99b2f472b70" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "errors": null, + "id": 9, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "assembly_gfa" + } + }, + "inputs": [], + "label": null, + "name": "Bandage Image", + "outputs": [ + { + "name": "outfile", + "type": "jpg" + } + ], + "position": { + "left": 605.78125, + "top": 764.40625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "b2860df42e16", + "name": "bandage", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": \"1000\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"lengths\": \"true\", \"names\": \"false\", \"output_format\": \"jpg\", \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.8.1+galaxy2", + "type": "tool", + "uuid": "528ebaa8-2c95-472b-b719-4752804e2d00", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "64a6e260-f828-42a7-9ff6-415e3fa5c496" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1", + "errors": null, + "id": 10, + "input_connections": { + "auto_selection|bam": { + "id": 6, + "output_name": "bam_output" + }, + "reference_genome|history_item": { + "id": 4, + "output_name": "consensus" + } + }, + "inputs": [], + "label": null, + "name": "pilon", + "outputs": [ + { + "name": "output_changes", + "type": "txt" + }, + { + "name": "output_fasta", + "type": "fasta" + } + ], + "position": { + "left": 886.65625, + "top": 262.0625 + }, + "post_job_actions": { + "RenameDatasetActionoutput_fasta": { + "action_arguments": { + "newname": "polished-assembly.fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_fasta" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1", + "tool_shed_repository": { + "changeset_revision": "11e5408fd238", + "name": "pilon", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"auto_selection\": {\"auto_enabled\": \"true\", \"__current_case__\": 0, \"bam\": {\"__class__\": \"ConnectedValue\"}}, \"changes\": \"true\", \"options\": {\"selection_mode\": \"default\", \"__current_case__\": 0}, \"reference_genome\": {\"reference_genome_source\": \"history\", \"__current_case__\": 0, \"history_item\": {\"__class__\": \"ConnectedValue\"}}, \"variant\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.20.1", + "type": "tool", + "uuid": "a445d29c-7b0c-48a0-984b-945f2acb64ac", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_changes", + "uuid": "d48e11c7-ea49-457b-8a96-38b6dc0f1bc2" + }, + { + "label": null, + "output_name": "output_fasta", + "uuid": "e898b32c-b4ae-4f5a-b3be-f7a2681e4fa0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "errors": null, + "id": 11, + "input_connections": { + "fasta": { + "id": 10, + "output_name": "output_fasta" + } + }, + "inputs": [], + "label": null, + "name": "Fasta Statistics", + "outputs": [ + { + "name": "stats_output", + "type": "tabular" + } + ], + "position": { + "left": 1170.40625, + "top": 139.0625 + }, + "post_job_actions": { + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "Fasta stats of polished flye assembly" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionstats_output": { + "action_arguments": { + "newname": "Pilon polished assembly fasta stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "tool_shed_repository": { + "changeset_revision": "0dbb995c7d35", + "name": "fasta_stats", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fasta\": {\"__class__\": \"ConnectedValue\"}, \"gaps_option\": \"false\", \"genome_size\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0", + "type": "tool", + "uuid": "465a0ecf-4f47-4679-ad02-c06eb48449fc", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats_output", + "uuid": "ae93f473-d571-439c-8fa6-3927026fdb49" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 12, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 2, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 10, + "output_name": "output_fasta" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "left": 1195.359375, + "top": 628.0546875 + }, + "post_job_actions": { + "RenameDatasetActionbam_output": { + "action_arguments": { + "newname": "illumina-tiny.bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "bam_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "dfd8b7f78c37", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 1, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}, \"index_a\": \"auto\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "79954680-1c4f-4831-889c-53c4e502aa3c", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "d2513973-0987-4260-9db6-3ac95c45c770" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 13, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 3, + "output_name": "output" + }, + "reference_source|ref_file": { + "id": 10, + "output_name": "output_fasta" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "left": 1192.3828125, + "top": 904.5859375 + }, + "post_job_actions": { + "RenameDatasetActionbam_output": { + "action_arguments": { + "newname": "nanopore-tiny.bam" + }, + "action_type": "RenameDatasetAction", + "output_name": "bam_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "dfd8b7f78c37", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"ont2d\", \"__current_case__\": 2}, \"fastq_input\": {\"fastq_input_selector\": \"single\", \"__current_case__\": 1, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"ref_file\": {\"__class__\": \"ConnectedValue\"}, \"index_a\": \"auto\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "c91315b3-c7f8-458c-a182-2b561d825837", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "bebb5b25-00c2-456a-92a0-cd133a169e0e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 10, + "output_name": "output_fasta" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Prokka", + "name": "proteins" + } + ], + "label": null, + "name": "Prokka", + "outputs": [ + { + "name": "out_gff", + "type": "gff" + }, + { + "name": "out_gbk", + "type": "txt" + }, + { + "name": "out_fna", + "type": "fasta" + }, + { + "name": "out_faa", + "type": "fasta" + }, + { + "name": "out_ffn", + "type": "fasta" + }, + { + "name": "out_sqn", + "type": "asn1" + }, + { + "name": "out_fsa", + "type": "fasta" + }, + { + "name": "out_tbl", + "type": "txt" + }, + { + "name": "out_tsv", + "type": "tabular" + }, + { + "name": "out_err", + "type": "txt" + }, + { + "name": "out_txt", + "type": "txt" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 1704.984375, + "top": 350.234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "tool_shed_repository": { + "changeset_revision": "bf68eb663bc3", + "name": "prokka", + "owner": "crs4", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"centre\": \"\", \"compliant\": {\"compliant_select\": \"no\", \"__current_case__\": 0, \"addgenes\": \"false\", \"mincontig\": \"200\"}, \"evalue\": \"1e-06\", \"fast\": \"false\", \"genus\": \"\", \"gffver\": \"3\", \"increment\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"kingdom\": {\"kingdom_select\": \"Bacteria\", \"__current_case__\": 1, \"gcode\": \"11\"}, \"locustag\": \"\", \"metagenome\": \"false\", \"norrna\": \"false\", \"notrna\": \"false\", \"outputs\": [\"gff\", \"gbk\", \"fna\", \"faa\", \"ffn\", \"sqn\", \"fsa\", \"tbl\", \"tsv\", \"err\", \"txt\"], \"plasmid\": \"\", \"proteins\": {\"__class__\": \"RuntimeValue\"}, \"rfam\": \"false\", \"species\": \"\", \"strain\": \"\", \"usegenus\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.14.5", + "type": "tool", + "uuid": "489e19de-1324-472c-8c8e-77e95572b6c3", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_err", + "uuid": "a5f8d2e3-b2ca-46c3-83c5-36bc15507046" + }, + { + "label": null, + "output_name": "out_fna", + "uuid": "1d83fde1-6207-46cc-b65e-a71815c578d8" + }, + { + "label": null, + "output_name": "out_faa", + "uuid": "8e49b1a0-fd5b-4a80-8714-5fe51e7e6096" + }, + { + "label": null, + "output_name": "out_tbl", + "uuid": "638f81aa-0004-4497-aeb9-6c1964cb27a7" + }, + { + "label": null, + "output_name": "out_fsa", + "uuid": "773f3ba6-43ff-41aa-b498-ee509d71a58a" + }, + { + "label": null, + "output_name": "out_ffn", + "uuid": "fd75d3c5-5cff-448e-9fd6-92b8af36e5cf" + }, + { + "label": null, + "output_name": "out_tsv", + "uuid": "0efb82cf-84b6-49dd-bab4-d64d7356e0c7" + }, + { + "label": null, + "output_name": "out_txt", + "uuid": "da1cc1bc-e00c-4f65-afbc-1a118b23274a" + }, + { + "label": null, + "output_name": "out_sqn", + "uuid": "a5a04271-fc67-4ce3-95dc-9f01ee77775c" + }, + { + "label": null, + "output_name": "out_log", + "uuid": "ca98afab-a3d2-4beb-b3f0-de7f38bf5c6b" + }, + { + "label": null, + "output_name": "out_gff", + "uuid": "bae78be6-7c70-42bf-95c1-cae45c51871d" + }, + { + "label": null, + "output_name": "out_gbk", + "uuid": "9a2a7aab-fde6-4a9c-b098-17b958ff2f20" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "reference_genome|genome": { + "id": 10, + "output_name": "output_fasta" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 12, + "output_name": "bam_output" + }, + "track_groups_0|data_tracks_1|data_format|annotation": { + "id": 13, + "output_name": "bam_output" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1469.125, + "top": 558.828125 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "JBrowse-view-assembly-and-reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "17359b808b01", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"11\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Default\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"auto_snp\": \"false\", \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"force\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}, {\"__index__\": 1, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"auto_snp\": \"false\", \"chunkSizeLimit\": \"5000000\", \"jb_custom_config\": {\"option\": []}, \"track_visibility\": \"force\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.9+galaxy0", + "type": "tool", + "uuid": "9ae0aa01-72e9-4481-b992-248f3ec20a07", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b5c7a4ed-bb41-4486-b01f-270071e23e52" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "errors": null, + "id": 16, + "input_connections": { + "reference_genome|genome": { + "id": 10, + "output_name": "output_fasta" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 14, + "output_name": "out_gff" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1981.40625, + "top": 224.328125 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "JBrowse-view-annotations" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "tool_shed_repository": { + "changeset_revision": "17359b808b01", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"11\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"history\", \"__current_case__\": 1, \"genome\": {\"__class__\": \"ConnectedValue\"}}, \"standalone\": \"minimal\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Default\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"gene_calls\", \"__current_case__\": 2, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"match_part\": {\"match_part_select\": \"false\", \"__current_case__\": 1}, \"index\": \"false\", \"track_config\": {\"track_class\": \"NeatHTMLFeatures/View/Track/NeatFeatures\", \"__current_case__\": 3, \"html_options\": {\"topLevelFeatures\": \"\"}}, \"jbstyle\": {\"style_classname\": \"feature\", \"style_label\": \"product,name,id\", \"style_description\": \"note,description\", \"style_height\": \"10px\", \"max_height\": \"600\"}, \"jbcolor_scale\": {\"color_score\": {\"color_score_select\": \"none\", \"__current_case__\": 0, \"color\": {\"color_select\": \"automatic\", \"__current_case__\": 0}}}, \"jb_custom_config\": {\"option\": []}, \"jbmenu\": {\"track_menu\": []}, \"track_visibility\": \"force\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.9+galaxy0", + "type": "tool", + "uuid": "7e5c8b63-2538-4898-9644-71453e17c0ba", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5ad68433-82c3-47aa-b3e4-ef1b07ed790e" + } + ] + } + ], + "parent_id": "assembly/chloroplast-assembly", + "path": "topics/assembly/tutorials/chloroplast-assembly/workflows/Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga", + "tags": [ + "assembly" + ], + "test_results": null, + "tests": false, + "title": "Chloroplast-genome-assembly-and-annotation", + "topic_id": "assembly", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/assembly-chloroplast-assembly/versions/galaxy-workflow-chloroplast-genome-assembly-and-annotation", + "tutorial_id": "chloroplast-assembly", + "url": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/chloroplast-assembly/workflows/Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/assembly/tutorials/chloroplast-assembly/workflows/Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.html", + "version": 3, + "wfid": "assembly-chloroplast-assembly", + "wfname": "galaxy-workflow-chloroplast-genome-assembly-and-annotation", + "workflow": "Galaxy-Workflow-Chloroplast-genome-assembly-and-annotation.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/flye/flye/2.6", + "toolshed.g2.bx.psu.edu/repos/crs4/prokka/prokka/1.14.5", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_image/0.8.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/bandage/bandage_info/0.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fasta_stats/fasta-stats/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.28.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pilon/pilon/1.20.1" + ], + "workflowhub_id": "1139" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.3567224" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "clustalw", + "owner": "devteam", + "revisions": "d6694932c5e0", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chromeister", + "owner": "iuc", + "revisions": "e483be1014b6", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gecko", + "owner": "iuc", + "revisions": "5efbd15675ca", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: clustalw\n owner: devteam\n revisions: d6694932c5e0\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chromeister\n owner: iuc\n revisions: e483be1014b6\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gecko\n owner: iuc\n revisions: 5efbd15675ca\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/hpc-for-lsgc/tutorial.json", + "contributors": [ + { + "elixir_node": "es", + "email": "estebanpw@uma.es", + "id": "estebanpw", + "joined": "2020-11", + "name": "Esteban Perez-Wohlfeil", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/estebanpw/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/estebanpw.json" + } + ], + "dir": "topics/genome-annotation/tutorials/hpc-for-lsgc", + "edam_operation": [ + "Multiple sequence alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "genome-annotation/hpc-for-lsgc", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": 10229, + "mermaid": false + }, + "key_points": [ + "We learnt that sequence comparison is a demanding problem and that there are several ways to approach it", + "We learnt how to run sequence comparisons in Galaxy with different levels of precision, particularly fine-grained and coarse-grained sequence comparison using GECKO and CHROMEISTER for smaller and larger sequences, respectively", + "We learnt how to post-process our comparison by extracting alignments, fine-tuning with multiple sequence alignment, detecting rearrangements, etc." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Learn the basics of pairwise sequence comparison", + "Learn how to run different tools in Galaxy to perform sequence comparison at fine and coarse-grained levels", + "Learn how to post-process your sequence comparisons" + ], + "pageviews": 5565092, + "pub_date": "2021-02-08", + "questions": [ + "How can we run pairwise genome comparisons using Galaxy?", + "How can we run massive chromosome comparisons in Galaxy?", + "How can we quickly visualize genome comparisons in Galaxy?" + ], + "requirements": [ + { + "topic_name": "introduction", + "tutorials": [ + "galaxy-intro-101" + ], + "type": "internal" + } + ], + "short_id": "T00176", + "short_tools": [ + "clustalw", + "gecko", + "tp_awk_tool", + "chromeister" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "plants", + "prokaryote" + ], + "time_estimation": "2H", + "title": "From small to large-scale genome comparison", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a", + "toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2" + ], + "topic_name": "genome-annotation", + "topic_name_human": "Genome Annotation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "hpc-for-lsgc", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/genome-annotation/tutorials/hpc-for-lsgc/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/hpc-for-lsgc/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/genome-annotation/tutorials/hpc-for-lsgc/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 282, + "visitors": 2016344, + "workflows": [ + { + "creators": [], + "description": "A workflow designed to compare chromosomes and study large-scale rearrangements using CHROMEISTER", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQuery chromosome\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference chromosome\"]\n 2[label=\"Chromeister\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n k58cf0c0c92004ba497276d908ccdfa9a[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Detected events\"]\n 2 -> k58cf0c0c92004ba497276d908ccdfa9a\n k2afd0e7cd1cf4bfdbec66cc237ff3e2c[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Comparison metainformation\"]\n 2 -> k2afd0e7cd1cf4bfdbec66cc237ff3e2c\n kc248576c1c39416c99d040c520e3da67[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Comparison dotplot\"]\n 2 -> kc248576c1c39416c99d040c520e3da67\n k5f9aad77f9ee4932ab22bb5fd83f416c[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Comparison matrix\"]\n 2 -> k5f9aad77f9ee4932ab22bb5fd83f416c\n kdea450c2712643dcaf7a9f2b704c76dd[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Comparison score\"]\n 2 -> kdea450c2712643dcaf7a9f2b704c76dd\n k9a03f72255884a3fb70e0ec9979c16dd[color=lightseagreen,label=\"Output\\nChromeister on input dataset(s): Detected events plot\"]\n 2 -> k9a03f72255884a3fb70e0ec9979c16dd\n}", + "history": [ + { + "hash": "ae7dbf55cc79f67b32661f650f26d5baad4779b3", + "message": "added workflow for chromeister", + "num": 1, + "short_hash": "ae7dbf55c", + "unix": "1612266607" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query chromosome" + } + ], + "label": "Query chromosome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 345.1999969482422, + "height": 82.19999694824219, + "left": 446, + "right": 646, + "top": 263, + "width": 200, + "x": 446, + "y": 263 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "fdde703b-e59f-403b-be56-28b4fde66d17", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e6b6ae7f-73c3-450e-a997-103138788bc6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference chromosome" + } + ], + "label": "Reference chromosome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 445.1999969482422, + "height": 82.19999694824219, + "left": 448, + "right": 648, + "top": 363, + "width": 200, + "x": 448, + "y": 363 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "43a48ede-1c2e-4b0d-bf74-da212443a7de", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1007eb1e-be5f-4f22-9d42-046f5e695dc4" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQuery chromosome\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference chromosome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Chromeister\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 58cf0c0c-9200-4ba4-9727-6d908ccdfa9a[\"Output\\nChromeister on input dataset(s): Detected events\"];\n 2 --> 58cf0c0c-9200-4ba4-9727-6d908ccdfa9a;\n style 58cf0c0c-9200-4ba4-9727-6d908ccdfa9a stroke:#2c3143,stroke-width:4px;\n 2afd0e7c-d1cf-4bfd-bec6-6cc237ff3e2c[\"Output\\nChromeister on input dataset(s): Comparison metainformation\"];\n 2 --> 2afd0e7c-d1cf-4bfd-bec6-6cc237ff3e2c;\n style 2afd0e7c-d1cf-4bfd-bec6-6cc237ff3e2c stroke:#2c3143,stroke-width:4px;\n c248576c-1c39-416c-99d0-40c520e3da67[\"Output\\nChromeister on input dataset(s): Comparison dotplot\"];\n 2 --> c248576c-1c39-416c-99d0-40c520e3da67;\n style c248576c-1c39-416c-99d0-40c520e3da67 stroke:#2c3143,stroke-width:4px;\n 5f9aad77-f9ee-4932-ab22-bb5fd83f416c[\"Output\\nChromeister on input dataset(s): Comparison matrix\"];\n 2 --> 5f9aad77-f9ee-4932-ab22-bb5fd83f416c;\n style 5f9aad77-f9ee-4932-ab22-bb5fd83f416c stroke:#2c3143,stroke-width:4px;\n dea450c2-7126-43dc-af7a-9f2b704c76dd[\"Output\\nChromeister on input dataset(s): Comparison score\"];\n 2 --> dea450c2-7126-43dc-af7a-9f2b704c76dd;\n style dea450c2-7126-43dc-af7a-9f2b704c76dd stroke:#2c3143,stroke-width:4px;\n 9a03f722-5588-4a3f-b70e-0ec9979c16dd[\"Output\\nChromeister on input dataset(s): Detected events plot\"];\n 2 --> 9a03f722-5588-4a3f-b70e-0ec9979c16dd;\n style 9a03f722-5588-4a3f-b70e-0ec9979c16dd stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "CHROMEISTER chromosome comparison", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query chromosome" + } + ], + "label": "Query chromosome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 345.1999969482422, + "height": 82.19999694824219, + "left": 446, + "right": 646, + "top": 263, + "width": 200, + "x": 446, + "y": 263 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "fdde703b-e59f-403b-be56-28b4fde66d17", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e6b6ae7f-73c3-450e-a997-103138788bc6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference chromosome" + } + ], + "label": "Reference chromosome", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 445.1999969482422, + "height": 82.19999694824219, + "left": 448, + "right": 648, + "top": 363, + "width": 200, + "x": 448, + "y": 363 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "43a48ede-1c2e-4b0d-bf74-da212443a7de", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1007eb1e-be5f-4f22-9d42-046f5e695dc4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a", + "errors": null, + "id": 2, + "input_connections": { + "db": { + "id": 1, + "output_name": "output" + }, + "query": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Chromeister", + "name": "db" + }, + { + "description": "runtime parameter for tool Chromeister", + "name": "query" + } + ], + "label": null, + "name": "Chromeister", + "outputs": [ + { + "name": "output", + "type": "txt" + }, + { + "name": "output_imagen", + "type": "png" + }, + { + "name": "output_csv", + "type": "csv" + }, + { + "name": "output_events", + "type": "txt" + }, + { + "name": "output_events_png", + "type": "png" + }, + { + "name": "output_score", + "type": "txt" + } + ], + "position": { + "bottom": 793.4000244140625, + "height": 520.4000244140625, + "left": 851, + "right": 1051, + "top": 273, + "width": 200, + "x": 851, + "y": 273 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a", + "tool_shed_repository": { + "changeset_revision": "a6d1f83c46b4", + "name": "chromeister", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"db\": {\"__class__\": \"RuntimeValue\"}, \"diffuse\": \"4\", \"dimension\": \"1000\", \"grid\": \"true\", \"kmer\": \"32\", \"pngevents\": \"true\", \"query\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.a", + "type": "tool", + "uuid": "79507815-b059-4f21-b74e-8e390fbb4bf2", + "workflow_outputs": [ + { + "label": "Chromeister on input dataset(s): Detected events", + "output_name": "output_events", + "uuid": "58cf0c0c-9200-4ba4-9727-6d908ccdfa9a" + }, + { + "label": "Chromeister on input dataset(s): Comparison metainformation", + "output_name": "output_csv", + "uuid": "2afd0e7c-d1cf-4bfd-bec6-6cc237ff3e2c" + }, + { + "label": "Chromeister on input dataset(s): Comparison dotplot", + "output_name": "output_imagen", + "uuid": "c248576c-1c39-416c-99d0-40c520e3da67" + }, + { + "label": "Chromeister on input dataset(s): Comparison matrix", + "output_name": "output", + "uuid": "5f9aad77-f9ee-4932-ab22-bb5fd83f416c" + }, + { + "label": "Chromeister on input dataset(s): Comparison score", + "output_name": "output_score", + "uuid": "dea450c2-7126-43dc-af7a-9f2b704c76dd" + }, + { + "label": "Chromeister on input dataset(s): Detected events plot", + "output_name": "output_events_png", + "uuid": "9a03f722-5588-4a3f-b70e-0ec9979c16dd" + } + ] + } + ], + "parent_id": "genome-annotation/hpc-for-lsgc", + "path": "topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/CHROMEISTER_chromosome_comparison.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "CHROMEISTER chromosome comparison", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-hpc-for-lsgc/versions/chromeister-chromosome-comparison", + "tutorial_id": "hpc-for-lsgc", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/CHROMEISTER_chromosome_comparison.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/CHROMEISTER_chromosome_comparison.html", + "version": 1, + "wfid": "genome-annotation-hpc-for-lsgc", + "wfname": "chromeister-chromosome-comparison", + "workflow": "CHROMEISTER_chromosome_comparison.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/chromeister/chromeister/1.5.a" + ], + "workflowhub_id": "1156" + }, + { + "creators": [], + "description": "A workflow designed to compare two sequences using GECKO, extract repeats and perform multiple sequence alignment", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQuery sequence\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference sequence\"]\n 2[label=\"Gecko\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n k6275abc1d74e45a7b8ab3c88426cc488[color=lightseagreen,label=\"Output\\nGecko on input dataset(s): CSV\"]\n 2 -> k6275abc1d74e45a7b8ab3c88426cc488\n 3[label=\"Text reformatting\"]\n 2 -> 3 [label=\"alignments2\"]\n 4[label=\"ClustalW\"]\n 3 -> 4 [label=\"outfile\"]\n kd63c1172a5914bf6b307052ca19e7098[color=lightseagreen,label=\"Output\\nClustalW on input dataset(s): clustal\"]\n 4 -> kd63c1172a5914bf6b307052ca19e7098\n kd7758e3a522d44398c9a03f784284ebd[color=lightseagreen,label=\"Output\\nClustalW on input dataset(s): dnd\"]\n 4 -> kd7758e3a522d44398c9a03f784284ebd\n}", + "history": [ + { + "hash": "ae7dbf55cc79f67b32661f650f26d5baad4779b3", + "message": "added workflow for chromeister", + "num": 2, + "short_hash": "ae7dbf55c", + "unix": "1612266607" + }, + { + "hash": "42c257d5c78780b24fb384627c26488a90eeda4f", + "message": "changed topic to genome-annotation", + "num": 1, + "short_hash": "42c257d5c", + "unix": "1612264525" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query sequence" + } + ], + "label": "Query sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 473.1999969482422, + "height": 82.19999694824219, + "left": 481, + "right": 681, + "top": 391, + "width": 200, + "x": 481, + "y": 391 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "63490a28-7edf-4e4f-8697-5cbf621b0768", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f1c8c4bf-126f-4c4b-8e5a-512cd0d270cd" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference sequence" + } + ], + "label": "Reference sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 598.1999969482422, + "height": 82.19999694824219, + "left": 482, + "right": 682, + "top": 516, + "width": 200, + "x": 482, + "y": 516 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "f49e63f9-977e-4a1f-bf43-9a50cfa14ee3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0867afff-2445-4a26-b21c-2476606adb88" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQuery sequence\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference sequence\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Gecko\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 6275abc1-d74e-45a7-b8ab-3c88426cc488[\"Output\\nGecko on input dataset(s): CSV\"];\n 2 --> 6275abc1-d74e-45a7-b8ab-3c88426cc488;\n style 6275abc1-d74e-45a7-b8ab-3c88426cc488 stroke:#2c3143,stroke-width:4px;\n 3[\"Text reformatting\"];\n 2 -->|alignments2| 3;\n 4[\"ClustalW\"];\n 3 -->|outfile| 4;\n d63c1172-a591-4bf6-b307-052ca19e7098[\"Output\\nClustalW on input dataset(s): clustal\"];\n 4 --> d63c1172-a591-4bf6-b307-052ca19e7098;\n style d63c1172-a591-4bf6-b307-052ca19e7098 stroke:#2c3143,stroke-width:4px;\n d7758e3a-522d-4439-8c9a-03f784284ebd[\"Output\\nClustalW on input dataset(s): dnd\"];\n 4 --> d7758e3a-522d-4439-8c9a-03f784284ebd;\n style d7758e3a-522d-4439-8c9a-03f784284ebd stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:23 +0000", + "name": "GECKO pairwise comparison", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Query sequence" + } + ], + "label": "Query sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 473.1999969482422, + "height": 82.19999694824219, + "left": 481, + "right": 681, + "top": 391, + "width": 200, + "x": 481, + "y": 391 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "63490a28-7edf-4e4f-8697-5cbf621b0768", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f1c8c4bf-126f-4c4b-8e5a-512cd0d270cd" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference sequence" + } + ], + "label": "Reference sequence", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 598.1999969482422, + "height": 82.19999694824219, + "left": 482, + "right": 682, + "top": 516, + "width": 200, + "x": 482, + "y": 516 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"]}", + "tool_version": null, + "type": "data_input", + "uuid": "f49e63f9-977e-4a1f-bf43-9a50cfa14ee3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0867afff-2445-4a26-b21c-2476606adb88" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2", + "errors": null, + "id": 2, + "input_connections": { + "db": { + "id": 1, + "output_name": "output" + }, + "query": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Gecko", + "outputs": [ + { + "name": "csv_output1", + "type": "csv" + }, + { + "name": "alignments2", + "type": "txt" + } + ], + "position": { + "bottom": 709.8000030517578, + "height": 194.8000030517578, + "left": 841, + "right": 1041, + "top": 515, + "width": 200, + "x": 841, + "y": 515 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2", + "tool_shed_repository": { + "changeset_revision": "5efbd15675ca", + "name": "gecko", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"db\": {\"__class__\": \"ConnectedValue\"}, \"kmer\": \"16\", \"minlen\": \"50\", \"options\": {\"selection_mode\": \"alignments\", \"__current_case__\": 0}, \"query\": {\"__class__\": \"ConnectedValue\"}, \"similarity\": \"60\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2", + "type": "tool", + "uuid": "217b825b-dfa8-4443-95cb-ea55dd499397", + "workflow_outputs": [ + { + "label": "Gecko on input dataset(s): CSV", + "output_name": "csv_output1", + "uuid": "6275abc1-d74e-45a7-b8ab-3c88426cc488" + }, + { + "label": null, + "output_name": "alignments2", + "uuid": "643f73a5-9648-4b78-8b39-4643a0f4438a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 3, + "input_connections": { + "infile": { + "id": 2, + "output_name": "alignments2" + } + }, + "inputs": [], + "label": null, + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 740.6000061035156, + "height": 113.60000610351562, + "left": 1162, + "right": 1362, + "top": 627, + "width": 200, + "x": 1162, + "y": 627 + }, + "post_job_actions": { + "ChangeDatatypeActionoutfile": { + "action_arguments": { + "newtype": "fasta" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"BEGIN{FS=\\\" \\\"} /@\\\\(196[0-9][0-9]/ { printf(\\\">sequence%s%s\\\\n\\\", $(NF-1), $NF); getline; while(substr($0,1,1) != \\\">\\\"){ if(substr($0,1,1) ==\\\"Y\\\"){ print $2; } getline; } } \", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "ac13faf0-b6dc-48fa-b5b4-31fec9a4733f", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "789a050e-0ab3-4296-b64d-9b7ad67af768" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "ClustalW", + "outputs": [ + { + "name": "output", + "type": "clustal" + }, + { + "name": "dnd", + "type": "nhx" + } + ], + "position": { + "bottom": 864.8000030517578, + "height": 184.8000030517578, + "left": 1536, + "right": 1736, + "top": 680, + "width": 200, + "x": 1536, + "y": 680 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "tool_shed_repository": { + "changeset_revision": "d6694932c5e0", + "name": "clustalw", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dnarna\": \"DNA\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"out_order\": \"ALIGNED\", \"outcontrol\": {\"outform\": \"clustal\", \"__current_case__\": 2, \"out_seqnos\": \"false\"}, \"range\": {\"mode\": \"complete\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1", + "type": "tool", + "uuid": "b95c1c44-a967-47fd-a85c-3a3121163486", + "workflow_outputs": [ + { + "label": "ClustalW on input dataset(s): clustal", + "output_name": "output", + "uuid": "d63c1172-a591-4bf6-b307-052ca19e7098" + }, + { + "label": "ClustalW on input dataset(s): dnd", + "output_name": "dnd", + "uuid": "d7758e3a-522d-4439-8c9a-03f784284ebd" + } + ] + } + ], + "parent_id": "genome-annotation/hpc-for-lsgc", + "path": "topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/GECKO_pairwise_comparison.ga", + "tags": [ + "genome-annotation" + ], + "test_results": null, + "tests": false, + "title": "GECKO pairwise comparison", + "topic_id": "genome-annotation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/genome-annotation-hpc-for-lsgc/versions/gecko-pairwise-comparison", + "tutorial_id": "hpc-for-lsgc", + "url": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/GECKO_pairwise_comparison.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/genome-annotation/tutorials/hpc-for-lsgc/workflows/GECKO_pairwise_comparison.html", + "version": 1, + "wfid": "genome-annotation-hpc-for-lsgc", + "wfname": "gecko-pairwise-comparison", + "workflow": "GECKO_pairwise_comparison.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/clustalw/clustalw/2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gecko/gecko/1.2" + ], + "workflowhub_id": "1160" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4485547" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "diamond", + "owner": "bgruening", + "revisions": "e8ac2b53f262", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "0e3cf9594bb7", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "0e3cf9594bb7", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: diamond\n owner: bgruening\n revisions: e8ac2b53f262\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 0e3cf9594bb7\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 0e3cf9594bb7\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland/tutorial.json", + "contributions": { + "authorship": [ + "deeptivarshney" + ], + "funding": [ + "madland", + "nfdi4plants" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "deeptivarshney", + "joined": "2022-12", + "name": "Deepti Varshney", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/deeptivarshney/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/deeptivarshney.json" + }, + { + "avatar": "/training-material/shared/images/logo-madland.jpg", + "funder": true, + "github": false, + "id": "madland", + "joined": "2024-07", + "name": "MAdLand", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/madland/", + "url": "https://training.galaxyproject.org/training-material/api/funders/madland.json" + }, + { + "avatar": "/training-material/shared/images/logo-dataplant.svg", + "funder": true, + "id": "nfdi4plants", + "joined": "2024-07", + "name": "DataPLANT", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nfdi4plants/", + "url": "https://training.galaxyproject.org/training-material/api/funders/nfdi4plants.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland", + "edam_operation": [ + "Sequence alignment analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/ncbi-blast-against-the-madland", + "inexact_supported_servers": [ + "Center for Phage Technology (CPT)", + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Blast tool searches a database of sequences for similar sequences to a query sequence.", + "Diamond quickly aligns large-scale data sets using a compressed version of the reference sequences called a \"database diamond\".", + "MAdLand is a database of fully sequenced plant and algal genomes, with an emphasis on non-seed plants and streptophyte algae that can be use for sequence similarity search." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Load FASTA sequence into Galaxy", + "Perform NCBI-Blast+ analysis against MAdLandDB" + ], + "pageviews": 1348, + "pub_date": "2023-01-16", + "questions": [ + "What is MAdLand DB?", + "How can we perform Blast analysis on Galaxy?" + ], + "short_id": "T00238", + "short_tools": [ + "ncbi_blastx_wrapper", + "ncbi_blastp_wrapper", + "bg_diamond" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Center for Phage Technology (CPT)", + "url": "https://cpt.tamu.edu/galaxy-public/", + "usegalaxy": false + }, + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "plants" + ], + "time_estimation": "15m", + "title": "NCBI BLAST+ against the MAdLand", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/2.10.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastx_wrapper/2.10.1+galaxy2" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ncbi-blast-against-the-madland", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 166, + "visitors": 1042, + "zenodo_link": "https://zenodo.org/records/7524427" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "anndata_import", + "owner": "iuc", + "revisions": "55e35e9203cf", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "9bd945a03d7b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "revisions": "aaa5da8e73a9", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter", + "owner": "iuc", + "revisions": "b409c2486353", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_inspect", + "owner": "iuc", + "revisions": "c5d3684f7c4c", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_normalize", + "owner": "iuc", + "revisions": "ab55fe8030b6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot", + "owner": "iuc", + "revisions": "6adf98e782f3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_remove_confounders", + "owner": "iuc", + "revisions": "bf2017df9837", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: anndata_import\n owner: iuc\n revisions: 55e35e9203cf\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: 9bd945a03d7b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_cluster_reduce_dimension\n owner: iuc\n revisions: aaa5da8e73a9\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter\n owner: iuc\n revisions: b409c2486353\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_inspect\n owner: iuc\n revisions: c5d3684f7c4c\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_normalize\n owner: iuc\n revisions: ab55fe8030b6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot\n owner: iuc\n revisions: 6adf98e782f3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_remove_confounders\n owner: iuc\n revisions: bf2017df9837\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plant/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "email": "beatrizserrano.galaxy@gmail.com", + "id": "beatrizserrano", + "joined": "2020-07", + "linkedin": "beatriz-serrano", + "matrix": "beatrizserrano:matrix.org", + "name": "Beatriz Serrano-Solano", + "orcid": "0000-0002-5862-6132", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/beatrizserrano/", + "twitter": "BSerranoSolano", + "url": "https://training.galaxyproject.org/training-material/api/contributors/beatrizserrano.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-plant", + "edam_operation": [ + "Differential gene expression analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-plant", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Filtering parameters are dependent on the dataset, and should be explored using scatter or violin plots", + "A DotPlot is a fantastic way to validate clusters across different analyses" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Perform filtering, dimensionality reduction, and clustering", + "Generate a DotPlot emulating the original paper using a different analysis tool", + "Determine robust clusters across scRNA-seq pipelines" + ], + "pageviews": 2387, + "priority": 3, + "pub_date": "2021-04-08", + "questions": [ + "Can we reclaim cell markers using a different analysis method?", + "Are highly variable genes paramount to the analysis?" + ], + "recordings": [ + { + "captioners": [ + "mtekman" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "55M", + "speakers": [ + "mtekman" + ], + "youtube_id": "yKlJ5ESri7o" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-plant/tutorial", + "/short/single-cell/scrna-plant", + "/short/T00250" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-scanpy-pbmc3k" + ], + "type": "internal" + } + ], + "short_id": "T00250", + "short_tools": [ + "anndata_manipulate", + "scanpy_inspect", + "scanpy_plot", + "scanpy_normalize", + "scanpy_cluster_reduce_dimension", + "anndata_import", + "scanpy_filter", + "scanpy_remove_confounders" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "end-to-end", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "plants", + "paper-replication" + ], + "time_estimation": "2H", + "title": "Analysis of plant scRNA-Seq Data with Scanpy", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.7.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_remove_confounders/scanpy_remove_confounders/1.7.1+galaxy0" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-plant", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-plant/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plant/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plant/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 85, + "visitors": 1878, + "workflows": [ + { + "creators": [], + "description": "Downstream Single-cell RNA Plant analysis with ScanPy", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nLeiden Resolution\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSHR CSV.gz\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nWT CSV.gz\"]\n 3[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMin Genes\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMin Cells\"]\n 5[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMax Features\"]\n 6[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMax Lib Size\"]\n 7[label=\"Import Anndata and loom\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"Import Anndata and loom\"]\n 2 -> 8 [label=\"output\"]\n 9[label=\"Manipulate AnnData\"]\n 7 -> 9 [label=\"anndata\"]\n 8 -> 9 [label=\"anndata\"]\n 10[label=\"Rename Batches\"]\n 9 -> 10 [label=\"anndata\"]\n k680180f6edfc4f66b2657a63aaa22b39[color=lightseagreen,label=\"Output\\nscRNA Concatenated Datasets\"]\n 10 -> k680180f6edfc4f66b2657a63aaa22b39\n 11[label=\"QC metrics\"]\n 10 -> 11 [label=\"anndata\"]\n 12[label=\"Filter genes\"]\n 11 -> 12 [label=\"anndata_out\"]\n 3 -> 12 [label=\"output\"]\n 13[label=\"Plot Violin\"]\n 11 -> 13 [label=\"anndata_out\"]\n 14[label=\"Filter Cells\"]\n 12 -> 14 [label=\"anndata_out\"]\n 4 -> 14 [label=\"output\"]\n 15[label=\"Filter Max Features\"]\n 14 -> 15 [label=\"anndata_out\"]\n 5 -> 15 [label=\"output\"]\n 16[label=\"Filter Max Library Size\"]\n 15 -> 16 [label=\"anndata\"]\n 6 -> 16 [label=\"output\"]\n 17[label=\"Save RAW\"]\n 16 -> 17 [label=\"anndata\"]\n 18[label=\"Norm to 1e4\"]\n 17 -> 18 [label=\"anndata\"]\n 19[label=\"Log1p\"]\n 18 -> 19 [label=\"anndata_out\"]\n 20[label=\"Regress total counts\"]\n 19 -> 20 [label=\"anndata_out\"]\n 21[label=\"Scale\"]\n 20 -> 21 [label=\"anndata_out\"]\n 22[label=\"PCA\"]\n 21 -> 22 [label=\"anndata_out\"]\n 23[label=\"Neighborhod\"]\n 22 -> 23 [label=\"anndata_out\"]\n 24[label=\"UMAP\"]\n 23 -> 24 [label=\"anndata_out\"]\n 25[label=\"Leiden\"]\n 24 -> 25 [label=\"anndata_out\"]\n 0 -> 25 [label=\"output\"]\n k48cf046584ba461abdb961625626de42[color=lightseagreen,label=\"Output\\nscRNA with clusters Dataset\"]\n 25 -> k48cf046584ba461abdb961625626de42\n 26[label=\"Plot PCA batch\"]\n 24 -> 26 [label=\"anndata_out\"]\n 27[label=\"Plot UMAP batch\"]\n 24 -> 27 [label=\"anndata_out\"]\n 28[label=\"Plot UMAP leiden, batch\"]\n 25 -> 28 [label=\"anndata_out\"]\n 29[label=\"Rename Clusters\"]\n 25 -> 29 [label=\"anndata_out\"]\n 30[label=\"Complex DotPlot\"]\n 25 -> 30 [label=\"anndata_out\"]\n 31[label=\"Complex DotPlot with new labels\"]\n 29 -> 31 [label=\"anndata\"]\n 32[label=\"Plot UMAP with new labels\"]\n 29 -> 32 [label=\"anndata\"]\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Leiden Resolution" + } + ], + "label": "Leiden Resolution", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 195.5, + "height": 84, + "left": 121.5, + "right": 321.5, + "top": 111.5, + "width": 200, + "x": 121.5, + "y": 111.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 0.35, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "eddf8108-6913-40d2-819d-a84677dee3f4", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SHR (CSV.gz)" + } + ], + "label": "SHR (CSV.gz)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 302, + "height": 84, + "left": 116, + "right": 316, + "top": 218, + "width": 200, + "x": 116, + "y": 218 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4cf4f111-d63b-47ad-bcbf-8ebb290b3431", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "WT (CSV.gz)" + } + ], + "label": "WT (CSV.gz)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 403, + "height": 84, + "left": 114, + "right": 314, + "top": 319, + "width": 200, + "x": 114, + "y": 319 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "94fba59a-ba9d-452d-b325-cb558201f674", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Min Genes" + } + ], + "label": "Min Genes", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 503.75, + "height": 64.25, + "left": 16, + "right": 216, + "top": 439.5, + "width": 200, + "x": 16, + "y": 439.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 100, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "c9a62328-f049-43b6-92fb-df5c42982573", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Min Cells" + } + ], + "label": "Min Cells", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 578.75, + "height": 64.25, + "left": 17, + "right": 217, + "top": 514.5, + "width": 200, + "x": 17, + "y": 514.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 2, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "7bf5f0e1-b482-45c3-9bcb-10ca93e6b7dc", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Max Features" + } + ], + "label": "Max Features", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 671.5, + "height": 84, + "left": 23, + "right": 223, + "top": 587.5, + "width": 200, + "x": 23, + "y": 587.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 12000.0, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "8902a917-75fb-49c6-9e5d-15f87bd91d46", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Max Lib Size" + } + ], + "label": "Max Lib Size", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 764.5, + "height": 84, + "left": 15, + "right": 215, + "top": 680.5, + "width": 200, + "x": 15, + "y": 680.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 120000.0, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "db068cdb-53c4-48a3-95c2-141fa83c271b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nLeiden Resolution\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSHR CSV.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nWT CSV.gz\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Parameter\\nMin Genes\"];\n style 3 fill:#ded,stroke:#393,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nMin Cells\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Parameter\\nMax Features\"];\n style 5 fill:#ded,stroke:#393,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Parameter\\nMax Lib Size\"];\n style 6 fill:#ded,stroke:#393,stroke-width:4px;\n 7[\"Import Anndata and loom\"];\n 1 -->|output| 7;\n 8[\"Import Anndata and loom\"];\n 2 -->|output| 8;\n 9[\"Manipulate AnnData\"];\n 7 -->|anndata| 9;\n 8 -->|anndata| 9;\n 10[\"Rename Batches\"];\n 9 -->|anndata| 10;\n 680180f6-edfc-4f66-b265-7a63aaa22b39[\"Output\\nscRNA Concatenated Datasets\"];\n 10 --> 680180f6-edfc-4f66-b265-7a63aaa22b39;\n style 680180f6-edfc-4f66-b265-7a63aaa22b39 stroke:#2c3143,stroke-width:4px;\n 11[\"QC metrics\"];\n 10 -->|anndata| 11;\n 12[\"Filter genes\"];\n 11 -->|anndata_out| 12;\n 3 -->|output| 12;\n 13[\"Plot Violin\"];\n 11 -->|anndata_out| 13;\n 14[\"Filter Cells\"];\n 12 -->|anndata_out| 14;\n 4 -->|output| 14;\n 15[\"Filter Max Features\"];\n 14 -->|anndata_out| 15;\n 5 -->|output| 15;\n 16[\"Filter Max Library Size\"];\n 15 -->|anndata| 16;\n 6 -->|output| 16;\n 17[\"Save RAW\"];\n 16 -->|anndata| 17;\n 18[\"Norm to 1e4\"];\n 17 -->|anndata| 18;\n 19[\"Log1p\"];\n 18 -->|anndata_out| 19;\n 20[\"Regress total counts\"];\n 19 -->|anndata_out| 20;\n 21[\"Scale\"];\n 20 -->|anndata_out| 21;\n 22[\"PCA\"];\n 21 -->|anndata_out| 22;\n 23[\"Neighborhod\"];\n 22 -->|anndata_out| 23;\n 24[\"UMAP\"];\n 23 -->|anndata_out| 24;\n 25[\"Leiden\"];\n 24 -->|anndata_out| 25;\n 0 -->|output| 25;\n 48cf0465-84ba-461a-bdb9-61625626de42[\"Output\\nscRNA with clusters Dataset\"];\n 25 --> 48cf0465-84ba-461a-bdb9-61625626de42;\n style 48cf0465-84ba-461a-bdb9-61625626de42 stroke:#2c3143,stroke-width:4px;\n 26[\"Plot PCA batch\"];\n 24 -->|anndata_out| 26;\n 27[\"Plot UMAP batch\"];\n 24 -->|anndata_out| 27;\n 28[\"Plot UMAP leiden, batch\"];\n 25 -->|anndata_out| 28;\n 29[\"Rename Clusters\"];\n 25 -->|anndata_out| 29;\n 30[\"Complex DotPlot\"];\n 25 -->|anndata_out| 30;\n 31[\"Complex DotPlot with new labels\"];\n 29 -->|anndata| 31;\n 32[\"Plot UMAP with new labels\"];\n 29 -->|anndata| 32;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "scRNA Plant Analysis", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Rename Batches", + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "bottom": 354.3999938964844, + "height": 136.39999389648438, + "left": 955, + "right": 1155, + "top": 218, + "width": 200, + "x": 955, + "y": 218 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8db95f488f0f", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"rename_categories\", \"__current_case__\": 3, \"key\": \"batch\", \"categories\": \"shr, wt\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy0", + "type": "tool", + "uuid": "0a25ffc3-ac58-4c17-9f22-b4127952027a", + "workflow_outputs": [ + { + "label": "scRNA Concatenated Datasets", + "output_name": "anndata", + "uuid": "680180f6-edfc-4f66-b265-7a63aaa22b39" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "adata": { + "id": 11, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Plot Violin", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 259.8000030517578, + "height": 116.65000915527344, + "left": 1867.2833251953125, + "right": 2067.2833251953125, + "top": 143.14999389648438, + "width": 200, + "x": 1867.2833251953125, + "y": 143.14999389648438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"n_genes_by_counts, total_counts\"}, \"groupby\": \"batch\", \"log\": \"false\", \"use_raw\": \"false\", \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"0.4\"}}, \"multi_panel\": {\"multi_panel\": \"True\", \"__current_case__\": 0, \"width\": null, \"height\": null}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "9dfc1e59-71aa-40b8-b504-2498a8dc5409", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "2fb1d919-0e60-4c81-92d2-83c28b1ef654" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "errors": null, + "id": 25, + "input_connections": { + "adata": { + "id": 24, + "output_name": "anndata_out" + }, + "method|resolution": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Leiden", + "name": "Cluster, infer trajectories and embed", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "bottom": 562.0500030517578, + "height": 147.0500030517578, + "left": 1389, + "right": 1589, + "top": 415, + "width": 200, + "x": 1389, + "y": 415 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "35bc2eb568ed", + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"method\": {\"method\": \"tl.leiden\", \"__current_case__\": 1, \"resolution\": {\"__class__\": \"ConnectedValue\"}, \"random_state\": \"0\", \"key_added\": \"leiden\", \"use_weights\": \"false\", \"n_iterations\": \"-1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "99494ea7-377c-4f3d-a45a-18bfd81b7888", + "workflow_outputs": [ + { + "label": "scRNA with clusters Dataset", + "output_name": "anndata_out", + "uuid": "48cf0465-84ba-461a-bdb9-61625626de42" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 26, + "input_connections": { + "adata": { + "id": 24, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Plot PCA (batch)", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 277.5500030517578, + "height": 136.40000915527344, + "left": 1629.433349609375, + "right": 1829.433349609375, + "top": 141.14999389648438, + "width": 200, + "x": 1629.433349609375, + "y": 141.14999389648438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.pca\", \"__current_case__\": 9, \"color\": \"batch\", \"use_raw\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "e2daa4c6-9a39-4c42-852e-4f61b65202c2", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "72d1a264-3ace-4d2e-910a-5e2a0fa6721f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 27, + "input_connections": { + "adata": { + "id": 24, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Plot UMAP (batch)", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 406.3999938964844, + "height": 136.39999389648438, + "left": 1862, + "right": 2062, + "top": 270, + "width": 200, + "x": 1862, + "y": 270 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"batch\", \"use_raw\": \"false\", \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": \"14\", \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "e70d8e14-1983-4381-8feb-bba7d5dbb4d6", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "c223e762-7e90-41e1-b354-bbe6e278b5c0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 28, + "input_connections": { + "adata": { + "id": 25, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Plot UMAP (leiden, batch)", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 442.5500030517578, + "height": 136.40000915527344, + "left": 1630.433349609375, + "right": 1830.433349609375, + "top": 306.1499938964844, + "width": 200, + "x": 1630.433349609375, + "y": 306.1499938964844 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"leiden, batch\", \"use_raw\": \"false\", \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": \"14\", \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "b88358ff-0dda-4c2e-bce6-124a0ab8fa28", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "26c65cd9-74aa-4574-a5f3-ac10caced4da" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 30, + "input_connections": { + "adata": { + "id": 25, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Complex DotPlot", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 557.3999938964844, + "height": 136.39999389648438, + "left": 1861, + "right": 2061, + "top": 421, + "width": 200, + "x": 1861, + "y": 421 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.dotplot\", \"__current_case__\": 2, \"var_names\": {\"type\": \"custom\", \"__current_case__\": 1, \"var_names\": \"AT1G26680,COBL2,AT3G55180,NCED2,AT5G22550,ATL63,RGF8,TEL1,DUF9,AGL42,PLT1,PLT2,PER3,PER9,PBL15,TBL30,AT2G48130,AT3G22620,AED3,T3P18-7,MBK21-8,NPF6-4,CYP71B34,IAMT1,AT1G31950,F14G6-22,GL2,ANL2,PMEI4,MUD21-4,EXPA7,MES15,ADF8,COBL9,TPR14,BHLH144,MYB83,SCPL35,MYB46,COBL4,PIN7,PIN3 \"}, \"groupby\": \"leiden\", \"num_categories\": \"9\", \"log\": \"false\", \"use_raw\": \"true\", \"dendrogram\": \"false\", \"var_group_positions\": [{\"__index__\": 0, \"start\": \"0\", \"end\": \"5\", \"label\": \"Columella\"}, {\"__index__\": 1, \"start\": \"6\", \"end\": \"9\", \"label\": \"QC\"}, {\"__index__\": 2, \"start\": \"10\", \"end\": \"11\", \"label\": \"NC\"}, {\"__index__\": 3, \"start\": \"12\", \"end\": \"17\", \"label\": \"Endodermis\"}, {\"__index__\": 4, \"start\": \"18\", \"end\": \"23\", \"label\": \"Cortex\"}, {\"__index__\": 5, \"start\": \"24\", \"end\": \"29\", \"label\": \"Atrichoblast\"}, {\"__index__\": 6, \"start\": \"30\", \"end\": \"34\", \"label\": \"Trichoblast\"}, {\"__index__\": 7, \"start\": \"35\", \"end\": \"39\", \"label\": \"Xylem\"}, {\"__index__\": 8, \"start\": \"40\", \"end\": \"41\", \"label\": \"VC\"}], \"var_group_rotation\": null, \"figsize\": {\"test\": \"no\", \"__current_case__\": 1}, \"layer\": \"\", \"color_map\": \"viridis\", \"dot_max\": null, \"dot_min\": null, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "625a157f-f08f-4137-a27b-721bee0feb59", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "b35ffb5a-5f29-4105-a016-c02ceee0d9da" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 31, + "input_connections": { + "adata": { + "id": 29, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Complex DotPlot with new labels", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 733.4666748046875, + "height": 156.79998779296875, + "left": 1860.449951171875, + "right": 2060.449951171875, + "top": 576.6666870117188, + "width": 200, + "x": 1860.449951171875, + "y": 576.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.dotplot\", \"__current_case__\": 2, \"var_names\": {\"type\": \"custom\", \"__current_case__\": 1, \"var_names\": \"AT1G26680,COBL2,AT3G55180,NCED2,AT5G22550,ATL63,RGF8,TEL1,DUF9,AGL42,PLT1,PLT2,PER3,PER9,PBL15,TBL30,AT2G48130,AT3G22620,AED3,T3P18-7,MBK21-8,NPF6-4,CYP71B34,IAMT1,AT1G31950,F14G6-22,GL2,ANL2,PMEI4,MUD21-4,EXPA7,MES15,ADF8,COBL9,TPR14,BHLH144,MYB83,SCPL35,MYB46,COBL4,PIN7,PIN3 \"}, \"groupby\": \"leiden\", \"num_categories\": \"9\", \"log\": \"false\", \"use_raw\": \"true\", \"dendrogram\": \"false\", \"var_group_positions\": [{\"__index__\": 0, \"start\": \"0\", \"end\": \"5\", \"label\": \"Columella\"}, {\"__index__\": 1, \"start\": \"6\", \"end\": \"9\", \"label\": \"QC\"}, {\"__index__\": 2, \"start\": \"10\", \"end\": \"11\", \"label\": \"NC\"}, {\"__index__\": 3, \"start\": \"12\", \"end\": \"17\", \"label\": \"Endodermis\"}, {\"__index__\": 4, \"start\": \"18\", \"end\": \"23\", \"label\": \"Cortex\"}, {\"__index__\": 5, \"start\": \"24\", \"end\": \"29\", \"label\": \"Atrichoblast\"}, {\"__index__\": 6, \"start\": \"30\", \"end\": \"34\", \"label\": \"Trichoblast\"}, {\"__index__\": 7, \"start\": \"35\", \"end\": \"39\", \"label\": \"Xylem\"}, {\"__index__\": 8, \"start\": \"40\", \"end\": \"41\", \"label\": \"VC\"}], \"var_group_rotation\": null, \"figsize\": {\"test\": \"no\", \"__current_case__\": 1}, \"layer\": \"\", \"color_map\": \"viridis\", \"dot_max\": null, \"dot_min\": null, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "a2f04375-1e67-4764-ae78-2678dcf2c03a", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "329e95de-cf53-4c0b-9a9b-ad30632ceeb8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 32, + "input_connections": { + "adata": { + "id": 29, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Plot UMAP with new labels", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 885.3999938964844, + "height": 136.39999389648438, + "left": 1863, + "right": 2063, + "top": 749, + "width": 200, + "x": 1863, + "y": 749 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"leiden, batch\", \"use_raw\": \"false\", \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"on data\", \"legend_fontsize\": \"14\", \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "c83c81b0-cd9e-41c5-8b72-4b024b7260dc", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "579d19d3-a98c-4e3a-92aa-0b65e2ffcefd" + } + ] + } + ], + "parent_id": "single-cell/scrna-plant", + "path": "topics/single-cell/tutorials/scrna-plant/workflows/main_workflow.ga", + "tags": [ + "transcriptomics", + "single-cell" + ], + "test_results": null, + "tests": false, + "title": "scRNA Plant Analysis", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-plant/versions/main-workflow", + "tutorial_id": "scrna-plant", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-plant/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-plant/workflows/main_workflow.html", + "version": 1, + "wfid": "single-cell-scrna-plant", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.7.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_remove_confounders/scanpy_remove_confounders/1.7.1+galaxy0" + ], + "workflowhub_id": "1266" + } + ], + "zenodo_link": "https://zenodo.org/record/4597857" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "histogram", + "owner": "devteam", + "revisions": "6f134426c2b0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msstats", + "owner": "galaxyp", + "revisions": "52ac6fde9a5b", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: histogram\n owner: devteam\n revisions: 6f134426c2b0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msstats\n owner: galaxyp\n revisions: 52ac6fde9a5b\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_Analysis_MSstats/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "matthias.fahrner@uniklinik-freiburg.de", + "id": "matthias313", + "joined": "2019-03", + "name": "Matthias Fahrner", + "orcid": "0000-0001-7955-2518", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/matthias313/", + "twitter": "mfahrner313", + "url": "https://training.galaxyproject.org/training-material/api/contributors/matthias313.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + } + ], + "dir": "topics/proteomics/tutorials/DIA_Analysis_MSstats", + "edam_operation": [ + "Differential protein expression profiling", + "Spectrum calculation", + "Tag-based peptide identification" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/DIA_Analysis_MSstats", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Statistical analyses are crucial for meaningful conclusion in proteomic studies", + "MSstats enables statistical analysis of data independent acquisition mass spectrometry data" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Statistical analysis of a HEK-Ecoli Benchmark DIA dataset", + "Understanding statistical approaches in proteomic analysis", + "Using MSstats to find significantly dysregulated proteins in a Spike-in dataset" + ], + "pageviews": 1354, + "pub_date": "2020-12-02", + "questions": [ + "How to perform statistical analysis on DIA mass spectrometry data?", + "How to detect and quantify differentially abundant proteins in a HEK-Ecoli Benchmark DIA datatset?" + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "DIA_lib_OSW", + "DIA_Analysis_OSW" + ], + "type": "internal" + } + ], + "short_id": "T00210", + "short_tools": [ + "Grep1", + "histogram_rpy", + "msstats", + "Filter1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "post-process", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "DIA" + ], + "time_estimation": "1H", + "title": "Statistical analysis of DIA data", + "tools": [ + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.20.1.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "DIA_Analysis_MSstats", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/DIA_Analysis_MSstats/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_Analysis_MSstats/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_Analysis_MSstats/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 97, + "visitors": 1001, + "workflows": [ + { + "creators": [], + "description": "DIA MSstats Training export tabular", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPyProphet export tabular\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nComparison matrix\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSample annot MSstats\"]\n 3[label=\"MSstats\"]\n 1 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Select\"]\n 3 -> 4 [label=\"comparison_result\"]\n k0de65b2cf62c40688ac0466e419d495b[color=lightseagreen,label=\"Output\\nSelect_Ecoli\"]\n 4 -> k0de65b2cf62c40688ac0466e419d495b\n 5[label=\"Filter\"]\n 4 -> 5 [label=\"out_file1\"]\n k197e8a45392f498186842c8326af4528[color=lightseagreen,label=\"Output\\nFilter_Ecoli\"]\n 5 -> k197e8a45392f498186842c8326af4528\n 6[label=\"Histogram\"]\n 5 -> 6 [label=\"out_file1\"]\n k04c6287dfd0d478099b6cf52ee18e06f[color=lightseagreen,label=\"Output\\nHistogram_Ecoli\"]\n 6 -> k04c6287dfd0d478099b6cf52ee18e06f\n}", + "history": [ + { + "hash": "bef209fa8b13cca27b8deae81ff1675433201d9f", + "message": "Add workflow tests to DIA_MSstats_Training tutorial", + "num": 3, + "short_hash": "bef209fa8", + "unix": "1642736930" + }, + { + "hash": "15a13c3667af0db6a6ca380ca1b998c9faf625d3", + "message": "updated workflow annotation and name", + "num": 2, + "short_hash": "15a13c366", + "unix": "1606931443" + }, + { + "hash": "e8f20c190bc7a0d319835969a36114d939bd4dce", + "message": "generated three tutorials on DIA data analysis in galaxy", + "num": 1, + "short_hash": "e8f20c190", + "unix": "1606930318" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "PyProphet export tabular" + } + ], + "label": "PyProphet export tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 298.94485783397704, + "height": 109.33332824707031, + "left": 94.64912127731438, + "right": 360.6491212773144, + "top": 189.6115295869067, + "width": 266, + "x": 94.64912127731438, + "y": 189.6115295869067 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ccdce674-490b-493c-a03b-786c9e9ec472", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "771735fa-1a49-429d-b602-b5cd4b90a78b" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Comparison matrix" + } + ], + "label": "Comparison matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 400.3483566628363, + "height": 109.33332824707031, + "left": 97.53132296684093, + "right": 363.53132296684095, + "top": 291.015028415766, + "width": 266, + "x": 97.53132296684093, + "y": 291.015028415766 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9773176c-aeef-4430-9c9d-5c276bfd13bb", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dcc7e278-b396-463e-9275-b669bb71ae30" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sample annot MSstats" + } + ], + "label": "Sample annot MSstats", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 501.86464433024696, + "height": 109.33332824707031, + "left": 98.42104804246945, + "right": 364.42104804246947, + "top": 392.53131608317665, + "width": 266, + "x": 98.42104804246945, + "y": 392.53131608317665 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b0cf95a5-fca3-45ea-88df-37b06948099c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "489e9abe-be00-44c1-89e8-643eaecb75dd" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPyProphet export tabular\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nComparison matrix\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nSample annot MSstats\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"MSstats\"];\n 1 -->|output| 3;\n 2 -->|output| 3;\n 0 -->|output| 3;\n 4[\"Select\"];\n 3 -->|comparison_result| 4;\n 0de65b2c-f62c-4068-8ac0-466e419d495b[\"Output\\nSelect_Ecoli\"];\n 4 --> 0de65b2c-f62c-4068-8ac0-466e419d495b;\n style 0de65b2c-f62c-4068-8ac0-466e419d495b stroke:#2c3143,stroke-width:4px;\n 5[\"Filter\"];\n 4 -->|out_file1| 5;\n 197e8a45-392f-4981-8684-2c8326af4528[\"Output\\nFilter_Ecoli\"];\n 5 --> 197e8a45-392f-4981-8684-2c8326af4528;\n style 197e8a45-392f-4981-8684-2c8326af4528 stroke:#2c3143,stroke-width:4px;\n 6[\"Histogram\"];\n 5 -->|out_file1| 6;\n 04c6287d-fd0d-4780-99b6-cf52ee18e06f[\"Output\\nHistogram_Ecoli\"];\n 6 --> 04c6287d-fd0d-4780-99b6-cf52ee18e06f;\n style 04c6287d-fd0d-4780-99b6-cf52ee18e06f stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "DIA_analysis_MSstats", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "PyProphet export tabular" + } + ], + "label": "PyProphet export tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 298.94485783397704, + "height": 109.33332824707031, + "left": 94.64912127731438, + "right": 360.6491212773144, + "top": 189.6115295869067, + "width": 266, + "x": 94.64912127731438, + "y": 189.6115295869067 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ccdce674-490b-493c-a03b-786c9e9ec472", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "771735fa-1a49-429d-b602-b5cd4b90a78b" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Comparison matrix" + } + ], + "label": "Comparison matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 400.3483566628363, + "height": 109.33332824707031, + "left": 97.53132296684093, + "right": 363.53132296684095, + "top": 291.015028415766, + "width": 266, + "x": 97.53132296684093, + "y": 291.015028415766 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9773176c-aeef-4430-9c9d-5c276bfd13bb", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dcc7e278-b396-463e-9275-b669bb71ae30" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sample annot MSstats" + } + ], + "label": "Sample annot MSstats", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 501.86464433024696, + "height": 109.33332824707031, + "left": 98.42104804246945, + "right": 364.42104804246947, + "top": 392.53131608317665, + "width": 266, + "x": 98.42104804246945, + "y": 392.53131608317665 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b0cf95a5-fca3-45ea-88df-37b06948099c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "489e9abe-be00-44c1-89e8-643eaecb75dd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.20.1.0", + "errors": null, + "id": 3, + "input_connections": { + "group|comparison_matrix": { + "id": 1, + "output_name": "output" + }, + "input|annotation": { + "id": 2, + "output_name": "output" + }, + "input|evidence": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MSstats", + "outputs": [ + { + "name": "log", + "type": "txt" + }, + { + "name": "processed_data", + "type": "tabular" + }, + { + "name": "qcplot", + "type": "pdf" + }, + { + "name": "quant_group_matrix", + "type": "tabular" + }, + { + "name": "comparison_result", + "type": "tabular" + }, + { + "name": "fittedmodel", + "type": "txt" + }, + { + "name": "volcanoplot", + "type": "pdf" + }, + { + "name": "comparisonplot", + "type": "pdf" + } + ], + "position": { + "bottom": 803.8629044841107, + "height": 732.0333251953125, + "left": 406.11526374530075, + "right": 672.1152637453008, + "top": 71.82957928879816, + "width": 266, + "x": 406.11526374530075, + "y": 71.82957928879816 + }, + "post_job_actions": { + "HideDatasetActionfittedmodel": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fittedmodel" + }, + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionquant_group_matrix": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "quant_group_matrix" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.20.1.0", + "tool_shed_repository": { + "changeset_revision": "52ac6fde9a5b", + "name": "msstats", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dp_options\": {\"logTrans\": \"2\", \"norm\": {\"normalization\": \"equalizeMedians\", \"__current_case__\": 0}, \"fillIncompleteRows\": \"true\", \"features\": {\"featureSubset\": \"all\", \"__current_case__\": 0}, \"summarize\": {\"summaryMethod\": \"TMP\", \"__current_case__\": 0, \"MBimpute\": \"true\", \"remove50missing\": \"false\"}, \"censoredInt\": \"NA\", \"cutoffCensored\": \"minFeature\", \"maxQuantileforCensored\": \"0.999\"}, \"group\": {\"group_comparison\": \"yes\", \"__current_case__\": 1, \"comparison_matrix\": {\"__class__\": \"ConnectedValue\"}, \"select_outputs\": [\"fittedmodel\", \"comparison_result\", \"volcanoplot\", \"comparisonplot\"]}, \"input\": {\"input_src\": \"OpenSWATH\", \"__current_case__\": 2, \"evidence\": {\"__class__\": \"ConnectedValue\"}, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"input_options\": {\"filter_with_mscore\": \"true\", \"mscore_cutoff\": \"0.01\", \"useUniquePeptide\": \"true\", \"fewMeasurements\": \"remove\", \"summaryforMultipleRows\": \"max\", \"removeProtein_with1Feature\": \"false\"}}, \"selected_outputs\": [\"log\", \"processed_data\", \"qcplot\", \"quant_group_matrix\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.20.1.0", + "type": "tool", + "uuid": "810a6c7a-a171-44db-aadf-917c32e31d78", + "workflow_outputs": [ + { + "label": null, + "output_name": "processed_data", + "uuid": "15fd08bb-7103-4f19-9998-38709822e2d2" + }, + { + "label": null, + "output_name": "comparisonplot", + "uuid": "dfeb77e1-05b5-4236-96e9-694a7a969b70" + }, + { + "label": null, + "output_name": "volcanoplot", + "uuid": "a369af4d-082b-4549-9417-1af61291e166" + }, + { + "label": null, + "output_name": "comparison_result", + "uuid": "1b702487-ba66-4987-8f7d-5e624f90efac" + }, + { + "label": null, + "output_name": "qcplot", + "uuid": "5ddda783-dfb8-4c06-ae95-2f26df51ac64" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "comparison_result" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 329.3259474675458, + "height": 123.95001220703125, + "left": 664.0476312852443, + "right": 930.0476312852443, + "top": 205.37593526051455, + "width": 266, + "x": 664.0476312852443, + "y": 205.37593526051455 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"(ECOLI)|(logFC)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "0d3aefe9-d49e-4a5e-96b0-d2a93c164b5a", + "workflow_outputs": [ + { + "label": "Select_Ecoli", + "output_name": "out_file1", + "uuid": "0de65b2c-f62c-4068-8ac0-466e419d495b" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 458.83722566303453, + "height": 123.95001220703125, + "left": 888.0450944255168, + "right": 1154.0450944255167, + "top": 334.8872134560033, + "width": 266, + "x": 888.0450944255168, + "y": 334.8872134560033 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c7!='NA'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "22227f86-1d56-4e67-b76e-9fcdb409741e", + "workflow_outputs": [ + { + "label": "Filter_Ecoli", + "output_name": "out_file1", + "uuid": "197e8a45-392f-4981-8684-2c8326af4528" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Histogram", + "name": "input" + } + ], + "label": null, + "name": "Histogram", + "outputs": [ + { + "name": "out_file1", + "type": "pdf" + } + ], + "position": { + "bottom": 382.0702885219029, + "height": 123.94999694824219, + "left": 1130.7142673578476, + "right": 1396.7142673578476, + "top": 258.1202915736607, + "width": 266, + "x": 1130.7142673578476, + "y": 258.1202915736607 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "tool_shed_repository": { + "changeset_revision": "6f134426c2b0", + "name": "histogram", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"breaks\": \"25\", \"density\": \"true\", \"frequency\": \"false\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"numerical_column\": \"3\", \"title\": \"Distribution of Ecoli Protein log FC values\", \"xlab\": \"log2 Fold Change\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "dc481c56-b123-48ec-bc5c-81411c3a7a9f", + "workflow_outputs": [ + { + "label": "Histogram_Ecoli", + "output_name": "out_file1", + "uuid": "04c6287d-fd0d-4780-99b6-cf52ee18e06f" + } + ] + } + ], + "parent_id": "proteomics/DIA_Analysis_MSstats", + "path": "topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_export_tabular.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": true, + "title": "DIA_analysis_MSstats", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-DIA_Analysis_MSstats/versions/galaxy-workflow-dia-msstats-training-export-tabular", + "tutorial_id": "DIA_Analysis_MSstats", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_export_tabular.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_export_tabular.html", + "version": 2, + "wfid": "proteomics-DIA_Analysis_MSstats", + "wfname": "galaxy-workflow-dia-msstats-training-export-tabular", + "workflow": "Galaxy-Workflow-DIA_MSstats_Training_export_tabular.ga", + "workflow_tools": [ + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.20.1.0" + ], + "workflowhub_id": "1167" + }, + { + "creators": [], + "description": "DIA MSstats Training msstats input tabular", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPyProphet MSstats input\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nComparison matrix\"]\n 2[label=\"MSstats\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Select\"]\n 2 -> 3 [label=\"comparison_result\"]\n k6e8589bd13fd4a97a9c3ea0a5a0e2326[color=lightseagreen,label=\"Output\\nSelect_Ecoli\"]\n 3 -> k6e8589bd13fd4a97a9c3ea0a5a0e2326\n 4[label=\"Filter\"]\n 3 -> 4 [label=\"out_file1\"]\n k6997a43aa17b418bbb6d7d32a6c277ae[color=lightseagreen,label=\"Output\\nFilter_Ecoli\"]\n 4 -> k6997a43aa17b418bbb6d7d32a6c277ae\n 5[label=\"Histogram\"]\n 4 -> 5 [label=\"out_file1\"]\n kcf3abac382274af8a5516aeae154a0e4[color=lightseagreen,label=\"Output\\nHistogram_Ecoli\"]\n 5 -> kcf3abac382274af8a5516aeae154a0e4\n}", + "history": [ + { + "hash": "bef209fa8b13cca27b8deae81ff1675433201d9f", + "message": "Add workflow tests to DIA_MSstats_Training tutorial", + "num": 3, + "short_hash": "bef209fa8", + "unix": "1642736930" + }, + { + "hash": "15a13c3667af0db6a6ca380ca1b998c9faf625d3", + "message": "updated workflow annotation and name", + "num": 2, + "short_hash": "15a13c366", + "unix": "1606931443" + }, + { + "hash": "e8f20c190bc7a0d319835969a36114d939bd4dce", + "message": "generated three tutorials on DIA data analysis in galaxy", + "num": 1, + "short_hash": "e8f20c190", + "unix": "1606930318" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "PyProphet MSstats input" + } + ], + "label": "PyProphet MSstats input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 524.5333251953125, + "height": 82.20001220703125, + "left": 127.5, + "right": 327.5, + "top": 442.33331298828125, + "width": 200, + "x": 127.5, + "y": 442.33331298828125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "970f9184-0af8-46ef-84c6-8ce933204ab8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bfbca2d5-0d5d-4860-a4c2-bd0c97113322" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Comparison matrix" + } + ], + "label": "Comparison matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 641.1000366210938, + "height": 82.20001220703125, + "left": 128.63333129882812, + "right": 328.6333312988281, + "top": 558.9000244140625, + "width": 200, + "x": 128.63333129882812, + "y": 558.9000244140625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9773176c-aeef-4430-9c9d-5c276bfd13bb", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e84e8bf5-5e49-4783-bbff-0b6534bcf60a" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPyProphet MSstats input\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nComparison matrix\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"MSstats\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Select\"];\n 2 -->|comparison_result| 3;\n 6e8589bd-13fd-4a97-a9c3-ea0a5a0e2326[\"Output\\nSelect_Ecoli\"];\n 3 --> 6e8589bd-13fd-4a97-a9c3-ea0a5a0e2326;\n style 6e8589bd-13fd-4a97-a9c3-ea0a5a0e2326 stroke:#2c3143,stroke-width:4px;\n 4[\"Filter\"];\n 3 -->|out_file1| 4;\n 6997a43a-a17b-418b-bb6d-7d32a6c277ae[\"Output\\nFilter_Ecoli\"];\n 4 --> 6997a43a-a17b-418b-bb6d-7d32a6c277ae;\n style 6997a43a-a17b-418b-bb6d-7d32a6c277ae stroke:#2c3143,stroke-width:4px;\n 5[\"Histogram\"];\n 4 -->|out_file1| 5;\n cf3abac3-8227-4af8-a551-6aeae154a0e4[\"Output\\nHistogram_Ecoli\"];\n 5 --> cf3abac3-8227-4af8-a551-6aeae154a0e4;\n style cf3abac3-8227-4af8-a551-6aeae154a0e4 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "DIA_analysis_MSstats", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "PyProphet MSstats input" + } + ], + "label": "PyProphet MSstats input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 524.5333251953125, + "height": 82.20001220703125, + "left": 127.5, + "right": 327.5, + "top": 442.33331298828125, + "width": 200, + "x": 127.5, + "y": 442.33331298828125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "970f9184-0af8-46ef-84c6-8ce933204ab8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bfbca2d5-0d5d-4860-a4c2-bd0c97113322" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Comparison matrix" + } + ], + "label": "Comparison matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 641.1000366210938, + "height": 82.20001220703125, + "left": 128.63333129882812, + "right": 328.6333312988281, + "top": 558.9000244140625, + "width": 200, + "x": 128.63333129882812, + "y": 558.9000244140625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9773176c-aeef-4430-9c9d-5c276bfd13bb", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e84e8bf5-5e49-4783-bbff-0b6534bcf60a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.20.1.0", + "errors": null, + "id": 2, + "input_connections": { + "group|comparison_matrix": { + "id": 1, + "output_name": "output" + }, + "input|msstats_input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MSstats", + "outputs": [ + { + "name": "log", + "type": "txt" + }, + { + "name": "processed_data", + "type": "tabular" + }, + { + "name": "qcplot", + "type": "pdf" + }, + { + "name": "quant_group_matrix", + "type": "tabular" + }, + { + "name": "comparison_result", + "type": "tabular" + }, + { + "name": "fittedmodel", + "type": "txt" + }, + { + "name": "volcanoplot", + "type": "pdf" + }, + { + "name": "comparisonplot", + "type": "pdf" + } + ], + "position": { + "bottom": 785.5, + "height": 520, + "left": 424.5333251953125, + "right": 624.5333251953125, + "top": 265.5, + "width": 200, + "x": 424.5333251953125, + "y": 265.5 + }, + "post_job_actions": { + "HideDatasetActionfittedmodel": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "fittedmodel" + }, + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionquant_group_matrix": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "quant_group_matrix" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.20.1.0", + "tool_shed_repository": { + "changeset_revision": "52ac6fde9a5b", + "name": "msstats", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"dp_options\": {\"logTrans\": \"2\", \"norm\": {\"normalization\": \"equalizeMedians\", \"__current_case__\": 0}, \"fillIncompleteRows\": \"true\", \"features\": {\"featureSubset\": \"all\", \"__current_case__\": 0}, \"summarize\": {\"summaryMethod\": \"TMP\", \"__current_case__\": 0, \"MBimpute\": \"true\", \"remove50missing\": \"false\"}, \"censoredInt\": \"NA\", \"cutoffCensored\": \"minFeature\", \"maxQuantileforCensored\": \"0.999\"}, \"group\": {\"group_comparison\": \"yes\", \"__current_case__\": 1, \"comparison_matrix\": {\"__class__\": \"ConnectedValue\"}, \"select_outputs\": [\"fittedmodel\", \"comparison_result\", \"volcanoplot\", \"comparisonplot\"]}, \"input\": {\"input_src\": \"MSstats\", \"__current_case__\": 0, \"msstats_input\": {\"__class__\": \"ConnectedValue\"}}, \"selected_outputs\": [\"log\", \"processed_data\", \"qcplot\", \"quant_group_matrix\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.20.1.0", + "type": "tool", + "uuid": "cb3da2fb-604c-43e7-8540-84de6d00ff0f", + "workflow_outputs": [ + { + "label": null, + "output_name": "volcanoplot", + "uuid": "4dabaa14-50b0-4225-aa6c-72470f1df31e" + }, + { + "label": null, + "output_name": "comparisonplot", + "uuid": "f3a3175f-a995-406a-a3d2-287b38d0e8ff" + }, + { + "label": null, + "output_name": "processed_data", + "uuid": "bf41d447-8dbd-4554-b684-8cf5965d2c7b" + }, + { + "label": null, + "output_name": "comparison_result", + "uuid": "3b09f94d-6c38-49da-9938-e99e5e79fd77" + }, + { + "label": null, + "output_name": "qcplot", + "uuid": "a09e7723-369d-4c2d-b209-eb82e3c2404d" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "comparison_result" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 523.4666595458984, + "height": 93.19999694824219, + "left": 674.13330078125, + "right": 874.13330078125, + "top": 430.26666259765625, + "width": 200, + "x": 674.13330078125, + "y": 430.26666259765625 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"(ECOLI)|(logFC)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "7086c065-874a-4fe2-a084-c55b39febd65", + "workflow_outputs": [ + { + "label": "Select_Ecoli", + "output_name": "out_file1", + "uuid": "6e8589bd-13fd-4a97-a9c3-ea0a5a0e2326" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 663.9666595458984, + "height": 93.19999694824219, + "left": 900.63330078125, + "right": 1100.63330078125, + "top": 570.7666625976562, + "width": 200, + "x": 900.63330078125, + "y": 570.7666625976562 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c7!='NA'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "3f136bb5-3387-4f1a-abf2-07b7ce58d577", + "workflow_outputs": [ + { + "label": "Filter_Ecoli", + "output_name": "out_file1", + "uuid": "6997a43a-a17b-418b-bb6d-7d32a6c277ae" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Histogram", + "name": "input" + } + ], + "label": null, + "name": "Histogram", + "outputs": [ + { + "name": "out_file1", + "type": "pdf" + } + ], + "position": { + "bottom": 536.1999969482422, + "height": 93.19999694824219, + "left": 1081.36669921875, + "right": 1281.36669921875, + "top": 443, + "width": 200, + "x": 1081.36669921875, + "y": 443 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "tool_shed_repository": { + "changeset_revision": "6f134426c2b0", + "name": "histogram", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"breaks\": \"25\", \"density\": \"true\", \"frequency\": \"false\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"numerical_column\": \"3\", \"title\": \"Distribution of Ecoli Protein log FC values\", \"xlab\": \"log2 Fold Change\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "65080a30-a49c-4414-a9b7-d72390001eab", + "workflow_outputs": [ + { + "label": "Histogram_Ecoli", + "output_name": "out_file1", + "uuid": "cf3abac3-8227-4af8-a551-6aeae154a0e4" + } + ] + } + ], + "parent_id": "proteomics/DIA_Analysis_MSstats", + "path": "topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_msstats_input_tabular.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": true, + "title": "DIA_analysis_MSstats", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-DIA_Analysis_MSstats/versions/galaxy-workflow-dia-msstats-training-msstats-input-tabular", + "tutorial_id": "DIA_Analysis_MSstats", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_msstats_input_tabular.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_Analysis_MSstats/workflows/Galaxy-Workflow-DIA_MSstats_Training_msstats_input_tabular.html", + "version": 2, + "wfid": "proteomics-DIA_Analysis_MSstats", + "wfname": "galaxy-workflow-dia-msstats-training-msstats-input-tabular", + "workflow": "Galaxy-Workflow-DIA_MSstats_Training_msstats_input_tabular.ga", + "workflow_tools": [ + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.20.1.0" + ], + "workflowhub_id": "1163" + } + ], + "zenodo_link": "https://zenodo.org/record/4307758" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "tabular_to_fasta", + "owner": "devteam", + "revisions": "0a7799698fe5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mz_to_sqlite", + "owner": "galaxyp", + "revisions": "f5c632894818", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "7fdd9119cc4f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "7fdd9119cc4f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "33d61c89fb8d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: tabular_to_fasta\n owner: devteam\n revisions: 0a7799698fe5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mz_to_sqlite\n owner: galaxyp\n revisions: f5c632894818\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 7fdd9119cc4f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 7fdd9119cc4f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: 33d61c89fb8d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-dbsearch/tutorial.json", + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "rsajulga@umn.edu", + "id": "jraysajulga", + "joined": "2018-11", + "name": "Ray Sajulga", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jraysajulga/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jraysajulga.json" + }, + { + "email": "jj@umn.edu", + "id": "jj-umn", + "in_memoriam": "James \u2018JJ\u2019 Johnson, was a Galaxy community rock star most known for his indispensable contributions to the Galaxy Proteomics community.\n\nJJ\u2019s works will live on in so many Galaxy tools and workflows for years to come.", + "joined": "2017-09", + "name": "James Johnson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jj-umn/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jj-umn.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + } + ], + "dir": "topics/proteomics/tutorials/proteogenomics-dbsearch", + "edam_operation": [ + "Conversion", + "Peptide database search" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "proteogenomics-novel-peptide-analysis" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/proteogenomics-dbsearch", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "With SearchGUI and PeptideShaker you can gain access to multiple search engines" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "A proteogenomic data analysis of mass spectrometry data to identify and visualize variant peptides." + ], + "pageviews": 1897, + "pub_date": "2018-11-20", + "questions": [ + "How to identify variant proteoforms in MS data by searching with the customized Protein database?" + ], + "recordings": [ + { + "captioners": [ + "emmaleith" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "andrewr" + ], + "youtube_id": "q1OjmTcbvBA" + } + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "proteogenomics-dbcreation" + ], + "type": "internal" + } + ], + "short_id": "T00232", + "short_tools": [ + "tab2fasta", + "peptide_shaker", + "search_gui", + "query_tabular", + "mz_to_sqlite" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "multi-omics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "proteogenomics" + ], + "time_estimation": "15m", + "title": "Proteogenomics 2: Database Search", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/mz_to_sqlite/mz_to_sqlite/2.0.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "proteogenomics-dbsearch", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/proteogenomics-dbsearch/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-dbsearch/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-dbsearch/tutorial.json" + }, + "version": 23, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 301, + "visitors": 1217, + "workflows": [ + { + "creators": [], + "description": "Proteogenomics 2: Database Search", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nUniprot_cRAP_SAV_indel_translatedbed.FASTA\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nMGF Collection\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference Protein Accessions\"]\n 3[label=\"Search GUI\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n kd14f948180db4c158afc6fa38ef61deb[color=lightseagreen,label=\"Output\\nSearch GUI on input dataset(s)\"]\n 3 -> kd14f948180db4c158afc6fa38ef61deb\n 4[label=\"Peptide Shaker\"]\n 3 -> 4 [label=\"searchgui_results\"]\n kafe0f1a528bb44bdb32bc634aa2154f3[color=lightseagreen,label=\"Output\\nPeptide Shaker on input dataset(s): mzidentML file\"]\n 4 -> kafe0f1a528bb44bdb32bc634aa2154f3\n 5[label=\"mz to sqlite\"]\n 4 -> 5 [label=\"mzidentML\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n kb43a2136cf594fb0bb2b0d5b446c8ba9[color=lightseagreen,label=\"Output\\nmz to sqlite on input dataset(s)\"]\n 5 -> kb43a2136cf594fb0bb2b0d5b446c8ba9\n 6[label=\"Removing reference proteins\"]\n 4 -> 6 [label=\"output_psm\"]\n 4 -> 6 [label=\"output_psm\"]\n 2 -> 6 [label=\"output\"]\n ka06ad5fa9a004867b9763745c5e59c80[color=lightseagreen,label=\"Output\\nRemoving reference proteins\"]\n 6 -> ka06ad5fa9a004867b9763745c5e59c80\n 7[label=\"Selecting sequence with length >6 and <30\"]\n 6 -> 7 [label=\"output\"]\n kb71e541728644712b5c1c90725976baf[color=lightseagreen,label=\"Output\\nSelecting sequence with length >6 and <30\"]\n 7 -> kb71e541728644712b5c1c90725976baf\n 8[label=\"Peptides for BlastP analysis\"]\n 7 -> 8 [label=\"output\"]\n k1ac3c77680954db185183643dc081006[color=lightseagreen,label=\"Output\\nPeptides_for_BlastP_analysis\"]\n 8 -> k1ac3c77680954db185183643dc081006\n}", + "history": [ + { + "hash": "6474a188df5601dc13cccb8fcfcd99cab9c6d1f4", + "message": "Update galaxy-workflow-mouse_rnaseq_dbsearch.ga", + "num": 8, + "short_hash": "6474a188d", + "unix": "1612811785" + }, + { + "hash": "42e6b15fc35a261ef9aed129c2d28385e747e1d1", + "message": "Update galaxy-workflow-mouse_rnaseq_dbsearch.ga", + "num": 7, + "short_hash": "42e6b15fc", + "unix": "1611782271" + }, + { + "hash": "8011373088f966876016f1afc71237d842ba13d7", + "message": "Update galaxy-workflow-mouse_rnaseq_dbsearch.ga", + "num": 6, + "short_hash": "801137308", + "unix": "1611781407" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 3, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "6eef55b7e8306d8ce46ac08e7799f6f65ae106aa", + "message": "Updated install_tutorial_requirements.sh + minor fixes (#1275)", + "num": 2, + "short_hash": "6eef55b7e", + "unix": "1551293676" + }, + { + "hash": "715d5f2ee1d9cfa74c5230a0a4bf746df8758e87", + "message": "fix folder names", + "num": 1, + "short_hash": "715d5f2ee", + "unix": "1542746779" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Uniprot_cRAP_SAV_indel_translatedbed.FASTA" + } + ], + "label": "Uniprot_cRAP_SAV_indel_translatedbed.FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 290, + "height": 105, + "left": -277.5, + "right": -77.5, + "top": 185, + "width": 200, + "x": -277.5, + "y": 185 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "eb7142ae-40cc-4c61-b744-bf7f3c8ed096", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a125ba5f-316b-4f95-a8f2-978e9a9affda" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "MGF Collection" + } + ], + "label": "MGF Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 433.984375, + "height": 84, + "left": -277.46875, + "right": -77.46875, + "top": 349.984375, + "width": 200, + "x": -277.46875, + "y": 349.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d7429ce1-2fc7-4ffa-87dd-4c4c343f8496", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f0af224e-c8cd-412b-803b-ee636c1b924c" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference Protein Accessions" + } + ], + "label": "Reference Protein Accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 592.625, + "height": 84, + "left": -264.5, + "right": -64.5, + "top": 508.625, + "width": 200, + "x": -264.5, + "y": 508.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "99f0374c-ea36-4def-822a-2feb64aee67b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4a838c43-d3ba-4037-9ce1-0a47f919ac94" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nUniprot_cRAP_SAV_indel_translatedbed.FASTA\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nMGF Collection\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nReference Protein Accessions\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Search GUI\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n d14f9481-80db-4c15-8afc-6fa38ef61deb[\"Output\\nSearch GUI on input dataset(s)\"];\n 3 --> d14f9481-80db-4c15-8afc-6fa38ef61deb;\n style d14f9481-80db-4c15-8afc-6fa38ef61deb stroke:#2c3143,stroke-width:4px;\n 4[\"Peptide Shaker\"];\n 3 -->|searchgui_results| 4;\n afe0f1a5-28bb-44bd-b32b-c634aa2154f3[\"Output\\nPeptide Shaker on input dataset(s): mzidentML file\"];\n 4 --> afe0f1a5-28bb-44bd-b32b-c634aa2154f3;\n style afe0f1a5-28bb-44bd-b32b-c634aa2154f3 stroke:#2c3143,stroke-width:4px;\n 5[\"mz to sqlite\"];\n 4 -->|mzidentML| 5;\n 1 -->|output| 5;\n 0 -->|output| 5;\n b43a2136-cf59-4fb0-bb2b-0d5b446c8ba9[\"Output\\nmz to sqlite on input dataset(s)\"];\n 5 --> b43a2136-cf59-4fb0-bb2b-0d5b446c8ba9;\n style b43a2136-cf59-4fb0-bb2b-0d5b446c8ba9 stroke:#2c3143,stroke-width:4px;\n 6[\"Removing reference proteins\"];\n 4 -->|output_psm| 6;\n 4 -->|output_psm| 6;\n 2 -->|output| 6;\n a06ad5fa-9a00-4867-b976-3745c5e59c80[\"Output\\nRemoving reference proteins\"];\n 6 --> a06ad5fa-9a00-4867-b976-3745c5e59c80;\n style a06ad5fa-9a00-4867-b976-3745c5e59c80 stroke:#2c3143,stroke-width:4px;\n 7[\"Selecting sequence with length >6 and <30\"];\n 6 -->|output| 7;\n b71e5417-2864-4712-b5c1-c90725976baf[\"Output\\nSelecting sequence with length >6 and <30\"];\n 7 --> b71e5417-2864-4712-b5c1-c90725976baf;\n style b71e5417-2864-4712-b5c1-c90725976baf stroke:#2c3143,stroke-width:4px;\n 8[\"Peptides for BlastP analysis\"];\n 7 -->|output| 8;\n 1ac3c776-8095-4db1-8518-3643dc081006[\"Output\\nPeptides_for_BlastP_analysis\"];\n 8 --> 1ac3c776-8095-4db1-8518-3643dc081006;\n style 1ac3c776-8095-4db1-8518-3643dc081006 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "GTN Proteogemics2 Database Search", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Uniprot_cRAP_SAV_indel_translatedbed.FASTA" + } + ], + "label": "Uniprot_cRAP_SAV_indel_translatedbed.FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 290, + "height": 105, + "left": -277.5, + "right": -77.5, + "top": 185, + "width": 200, + "x": -277.5, + "y": 185 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "eb7142ae-40cc-4c61-b744-bf7f3c8ed096", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a125ba5f-316b-4f95-a8f2-978e9a9affda" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "MGF Collection" + } + ], + "label": "MGF Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 433.984375, + "height": 84, + "left": -277.46875, + "right": -77.46875, + "top": 349.984375, + "width": 200, + "x": -277.46875, + "y": 349.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d7429ce1-2fc7-4ffa-87dd-4c4c343f8496", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f0af224e-c8cd-412b-803b-ee636c1b924c" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference Protein Accessions" + } + ], + "label": "Reference Protein Accessions", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 592.625, + "height": 84, + "left": -264.5, + "right": -64.5, + "top": 508.625, + "width": 200, + "x": -264.5, + "y": 508.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "99f0374c-ea36-4def-822a-2feb64aee67b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4a838c43-d3ba-4037-9ce1-0a47f919ac94" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "errors": null, + "id": 3, + "input_connections": { + "input_database": { + "id": 0, + "output_name": "output" + }, + "peak_lists": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Search GUI", + "outputs": [ + { + "name": "searchgui_results", + "type": "searchgui_archive" + } + ], + "position": { + "bottom": 514, + "height": 168, + "left": 22.53125, + "right": 222.53125, + "top": 346, + "width": 200, + "x": 22.53125, + "y": 346 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "tool_shed_repository": { + "changeset_revision": "7fdd9119cc4f", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"searchgui_advanced\": {\"searchgui_advanced_selector\": \"basic\", \"__current_case__\": 0}, \"xtandem\": {\"xtandem_advanced\": \"no\", \"__current_case__\": 0}, \"omssa\": {\"omssa_advanced\": \"no\", \"__current_case__\": 0}, \"msgf\": {\"msgf_advanced\": \"no\", \"__current_case__\": 0}, \"ms_amanda\": {\"ms_amanda_advanced\": \"no\", \"__current_case__\": 0}, \"tide\": {\"tide_advanced\": \"no\", \"__current_case__\": 0}, \"myrimatch\": {\"myrimatch_advanced\": \"no\", \"__current_case__\": 0}, \"comet\": {\"comet_advanced\": \"no\", \"__current_case__\": 0}, \"directtag\": {\"directtag_advanced\": \"no\", \"__current_case__\": 0}, \"novor\": {\"novor_advanced\": \"no\", \"__current_case__\": 0}}, \"input_database\": {\"__class__\": \"ConnectedValue\"}, \"peak_lists\": {\"__class__\": \"ConnectedValue\"}, \"precursor_options\": {\"precursor_ion_tol_units\": \"1\", \"precursor_ion_tol\": \"10.0\", \"fragment_tol_units\": \"0\", \"fragment_tol\": \"0.5\", \"min_charge\": \"2\", \"max_charge\": \"6\", \"forward_ion\": \"b\", \"reverse_ion\": \"y\", \"min_isotope\": \"0\", \"max_isotope\": \"1\"}, \"protein_database_options\": {\"create_decoy\": \"true\", \"use_gene_mapping\": \"false\", \"update_gene_mapping\": \"false\"}, \"protein_digest_options\": {\"digestion\": {\"cleavage\": \"0\", \"__current_case__\": 0, \"digests\": [{\"__index__\": 0, \"enzyme\": \"Trypsin\", \"missed_cleavages\": \"2\"}]}}, \"protein_modification_options\": {\"fixed_modifications\": [\"Carbamidomethylation of C\", \"iTRAQ 4-plex of K\", \"iTRAQ 4-plex of peptide N-term\"], \"variable_modifications\": [\"Oxidation of M\", \"iTRAQ 4-plex of Y\"]}, \"search_engines_options\": {\"engines\": [\"X!Tandem\"]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.10.1", + "type": "tool", + "uuid": "41bfe37f-62de-44cd-9a2c-26f007258c61", + "workflow_outputs": [ + { + "label": "Search GUI on input dataset(s)", + "output_name": "searchgui_results", + "uuid": "d14f9481-80db-4c15-8afc-6fa38ef61deb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "errors": null, + "id": 4, + "input_connections": { + "searchgui_input": { + "id": 3, + "output_name": "searchgui_results" + } + }, + "inputs": [], + "label": null, + "name": "Peptide Shaker", + "outputs": [ + { + "name": "mzidentML", + "type": "mzid" + }, + { + "name": "output_certificate", + "type": "txt" + }, + { + "name": "output_psm", + "type": "tabular" + }, + { + "name": "output_peptides", + "type": "tabular" + }, + { + "name": "output_proteins", + "type": "tabular" + } + ], + "position": { + "bottom": 704.125, + "height": 471, + "left": 309.53125, + "right": 509.53125, + "top": 233.125, + "width": 200, + "x": 309.53125, + "y": 233.125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "tool_shed_repository": { + "changeset_revision": "7fdd9119cc4f", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"contact_options\": {\"contact_options_selector\": \"no\", \"__current_case__\": 0}, \"exporting_options\": {\"mzidentml_conditional\": {\"mzidentml_creation\": \"true\", \"__current_case__\": 0, \"include_sequences\": \"false\"}, \"zip_conditional\": {\"zip_output_boolean\": \"false\", \"__current_case__\": 0, \"export_cps\": \"false\"}, \"output_reports\": [\"3\", \"6\", \"9\", \"0\"]}, \"filtering_options\": {\"filtering_options_selector\": \"no\", \"__current_case__\": 0}, \"processing_options\": {\"processing_options_selector\": \"no\", \"__current_case__\": 0}, \"searchgui_input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.36.3", + "type": "tool", + "uuid": "3d435aa3-cc94-4320-94a4-a49503f7e82e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_certificate", + "uuid": "1c33ea40-12f5-4e28-b4da-5b7975f2c13f" + }, + { + "label": null, + "output_name": "output_psm", + "uuid": "6425fbc7-08cf-4633-ac15-74993be5851f" + }, + { + "label": null, + "output_name": "output_proteins", + "uuid": "a52e58b1-de72-4bd6-a434-674f20c5d19d" + }, + { + "label": "Peptide Shaker on input dataset(s): mzidentML file", + "output_name": "mzidentML", + "uuid": "afe0f1a5-28bb-44bd-b32b-c634aa2154f3" + }, + { + "label": null, + "output_name": "output_peptides", + "uuid": "75e03205-eb1a-4cfd-847f-c70dd5c3209a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/mz_to_sqlite/mz_to_sqlite/2.0.4+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "mzinput": { + "id": 4, + "output_name": "mzidentML" + }, + "scanfiles": { + "id": 1, + "output_name": "output" + }, + "searchdbs": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "mz to sqlite", + "outputs": [ + { + "name": "sqlite_db", + "type": "mz.sqlite" + } + ], + "position": { + "bottom": 411.484375, + "height": 220, + "left": 651.546875, + "right": 851.546875, + "top": 191.484375, + "width": 200, + "x": 651.546875, + "y": 191.484375 + }, + "post_job_actions": { + "RenameDatasetActionsqlite_db": { + "action_arguments": { + "newname": "Mz to sqlite" + }, + "action_type": "RenameDatasetAction", + "output_name": "sqlite_db" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/mz_to_sqlite/mz_to_sqlite/2.0.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "f5c632894818", + "name": "mz_to_sqlite", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"mzinput\": {\"__class__\": \"ConnectedValue\"}, \"scanfiles\": {\"__class__\": \"ConnectedValue\"}, \"searchdbs\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.4+galaxy1", + "type": "tool", + "uuid": "1985019a-af9a-4ebc-82c6-448a6ae62166", + "workflow_outputs": [ + { + "label": "mz to sqlite on input dataset(s)", + "output_name": "sqlite_db", + "uuid": "b43a2136-cf59-4fb0-bb2b-0d5b446c8ba9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 6, + "input_connections": { + "tables_0|table": { + "id": 4, + "output_name": "output_psm" + }, + "tables_1|table": { + "id": 4, + "output_name": "output_psm" + }, + "tables_2|table": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "Removing reference proteins", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 821.640625, + "height": 314, + "left": 609.546875, + "right": 809.546875, + "top": 507.640625, + "width": 200, + "x": 609.546875, + "y": 507.640625 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Removing reference proteins" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"false\", \"sqlquery\": \"SELECT psms.*\\nFROM psms\\nWHERE psms.id NOT IN\\n(SELECT distinct prots.id\\nFROM prots JOIN uniprot ON prots.prot = uniprot.prot)\\nORDER BY psms.id\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}]}, \"tbl_opts\": {\"table_name\": \"psms\", \"column_names_from_first_line\": \"false\", \"col_names\": \"id,Proteins,Sequence\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"id\"}]}}, {\"__index__\": 1, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}, {\"__index__\": 1, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1,2\"}}, {\"__index__\": 2, \"filter\": {\"filter_type\": \"normalize\", \"__current_case__\": 9, \"columns\": \"2\", \"separator\": \",\"}}]}, \"tbl_opts\": {\"table_name\": \"prots\", \"column_names_from_first_line\": \"false\", \"col_names\": \"id,prot\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"prot,id\"}]}}, {\"__index__\": 2, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"Uniprot\", \"column_names_from_first_line\": \"false\", \"col_names\": \"prot\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"prot\"}]}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "90f1b13e-0ba1-4373-92c5-8b31adbdcdbb", + "workflow_outputs": [ + { + "label": "Removing reference proteins", + "output_name": "output", + "uuid": "a06ad5fa-9a00-4867-b976-3745c5e59c80" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 7, + "input_connections": { + "tables_0|table": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "Selecting sequence with length >6 and <30", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 767.140625, + "height": 252, + "left": 836.546875, + "right": 1036.546875, + "top": 515.140625, + "width": 200, + "x": 836.546875, + "y": 515.140625 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Selecting sequence with length >6 and <30" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"false\", \"sqlquery\": \"SELECT Sequence || ' PSM=' || group_concat(id,',') || ' length='\\n|| length(Sequence) as \\\"ID\\\",Sequence\\nFROM psm\\nWHERE length(Sequence) >6\\nAND length(Sequence) <= 30\\nGROUP BY Sequence\\nORDER BY length(Sequence),Sequence\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}]}, \"tbl_opts\": {\"table_name\": \"psm\", \"column_names_from_first_line\": \"false\", \"col_names\": \"id,Proteins,Sequence\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "7a40e039-01e2-4b13-b72f-7bb91061c50a", + "workflow_outputs": [ + { + "label": "Selecting sequence with length >6 and <30", + "output_name": "output", + "uuid": "b71e5417-2864-4712-b5c1-c90725976baf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Tabular-to-FASTA", + "name": "input" + } + ], + "label": "Peptides for BlastP analysis", + "name": "Tabular-to-FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 724.9375, + "height": 158, + "left": 1066.546875, + "right": 1266.546875, + "top": 566.9375, + "width": 200, + "x": 1066.546875, + "y": 566.9375 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Peptides for BlastP analysis" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "tool_shed_repository": { + "changeset_revision": "0a7799698fe5", + "name": "tabular_to_fasta", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"seq_col\": \"2\", \"title_col\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "135caaf1-ceda-47b6-9f1a-8b0659d8e6a2", + "workflow_outputs": [ + { + "label": "Peptides_for_BlastP_analysis", + "output_name": "output", + "uuid": "1ac3c776-8095-4db1-8518-3643dc081006" + } + ] + } + ], + "parent_id": "proteomics/proteogenomics-dbsearch", + "path": "topics/proteomics/tutorials/proteogenomics-dbsearch/workflows/galaxy-workflow-mouse_rnaseq_dbsearch.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "GTN Proteogemics2 Database Search", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteogenomics-dbsearch/versions/galaxy-workflow-mouse-rnaseq-dbsearch", + "tutorial_id": "proteogenomics-dbsearch", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-dbsearch/workflows/galaxy-workflow-mouse_rnaseq_dbsearch.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-dbsearch/workflows/galaxy-workflow-mouse_rnaseq_dbsearch.html", + "version": 7, + "wfid": "proteomics-proteogenomics-dbsearch", + "wfname": "galaxy-workflow-mouse-rnaseq-dbsearch", + "workflow": "galaxy-workflow-mouse_rnaseq_dbsearch.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/mz_to_sqlite/mz_to_sqlite/2.0.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0" + ], + "workflowhub_id": "1151" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1489208" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fasta_to_tabular", + "owner": "devteam", + "revisions": "e7ed3c310b74", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_fasta", + "owner": "devteam", + "revisions": "0a7799698fe5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dbbuilder", + "owner": "galaxyp", + "revisions": "c1b437242fee", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "revisions": "f546e7278f04", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_decoydatabase", + "owner": "galaxyp", + "revisions": "370141bc0da3", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fasta_to_tabular\n owner: devteam\n revisions: e7ed3c310b74\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_fasta\n owner: devteam\n revisions: 0a7799698fe5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dbbuilder\n owner: galaxyp\n revisions: c1b437242fee\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_merge_files_and_filter_unique_sequences\n owner: galaxyp\n revisions: f546e7278f04\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_decoydatabase\n owner: galaxyp\n revisions: 370141bc0da3\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/database-handling/tutorial.json", + "contributors": [ + { + "email": "sigloch+github@mailbox.org", + "former_affiliations": [ + "uni-freiburg" + ], + "id": "stortebecker", + "joined": "2017-09", + "name": "Florian Christoph Sigloch", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stortebecker/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stortebecker.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/proteomics/tutorials/database-handling", + "edam_ontology": [ + "topic_0121" + ], + "edam_operation": [], + "edam_topic": [ + "Proteomics" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/database-handling", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "There are several types of Uniprot databases.", + "Search databases should always include possible contaminants.", + "For analyzing cell culture or organic samples, search databases should include mycoplasma databases.", + "Some peptide search engines depend on decoys to calculate the FDR." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Creation of a protein FASTA database ready for use with database search algorithms." + ], + "pageviews": 6389, + "pub_date": "2017-02-14", + "questions": [ + "How to download protein FASTA databases of a certain organism?", + "How to download a contaminant database?", + "How to create a decoy database?", + "How to combine databases?" + ], + "short_id": "T00214", + "short_tools": [ + "tab2fasta", + "dbbuilder", + "DecoyDatabase", + "fasta2tab", + "fasta_merge_files_and_filter_unique_sequences", + "addValue" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "DDA" + ], + "time_estimation": "30m", + "title": "Protein FASTA Database Handling", + "tools": [ + "addValue", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_decoydatabase/DecoyDatabase/2.6+galaxy0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "database-handling", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/database-handling/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/database-handling/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/database-handling/tutorial.json" + }, + "version": 29, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 118, + "visitors": 3847, + "workflows": [ + { + "creators": [], + "description": "Protein FASTA Database Handling", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Protein Database Downloader\"]\n 1[label=\"Protein Database Downloader\"]\n 2[label=\"FASTA-to-Tabular\"]\n 0 -> 2 [label=\"output_database\"]\n 3[label=\"Add column\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Tabular-to-FASTA\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 4 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output_database\"]\n 6[label=\"DecoyDatabase\"]\n 5 -> 6 [label=\"output\"]\n}", + "history": [ + { + "hash": "54b4d9fcc78b1394f71f7affd51ca15e83b211d5", + "message": "Adding tags to workflows", + "num": 6, + "short_hash": "54b4d9fcc", + "unix": "1604224600" + }, + { + "hash": "ca84d739509bdb1ef8f3cfc64c15242ef0363407", + "message": "Updating Tutorials to OpenMS 2.6, adjusting of parameters and tools, adding tool versions", + "num": 5, + "short_hash": "ca84d7395", + "unix": "1604176914" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "2c1271b670d336517fb123fb632ce13c93c40465", + "message": "Restructure proteomics", + "num": 1, + "short_hash": "2c1271b67", + "unix": "1495544862" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"Protein Database Downloader\"];\n 1[\"Protein Database Downloader\"];\n 2[\"FASTA-to-Tabular\"];\n 0 -->|output_database| 2;\n 3[\"Add column\"];\n 2 -->|output| 3;\n 4[\"Tabular-to-FASTA\"];\n 3 -->|out_file1| 4;\n 5[\"FASTA Merge Files and Filter Unique Sequences\"];\n 4 -->|output| 5;\n 1 -->|output_database| 5;\n 6[\"DecoyDatabase\"];\n 5 -->|output| 6;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Proteomics: database handling", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 380.6000061035156, + "height": 102.60000610351562, + "left": -110, + "right": 90, + "top": 278, + "width": 200, + "x": -110, + "y": 278 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"cRAP\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "6613b72c-2bab-423c-88fc-05edfe9ea8ec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "2d289b03-c396-46a2-a725-987b6c75ada9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 632.6000061035156, + "height": 102.60000610351562, + "left": -83, + "right": 117, + "top": 530, + "width": 200, + "x": -83, + "y": 530 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"9606\", \"reviewed\": \"+reviewed%3Ayes\", \"set\": \"+keyword%3a1185\", \"include_isoform\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "ee46d245-5fdd-4d02-9148-49a26c98ed81", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "8b345bac-fbae-4fee-aced-a3f56e72aa21" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output_database" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 383.6000061035156, + "height": 113.60000610351562, + "left": 146, + "right": 346, + "top": 270, + "width": 200, + "x": 146, + "y": 270 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "e7ed3c310b74", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"descr_columns\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "c7bafec5-de51-4a49-80f8-402e443fa3fb", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d320cd9d-fa50-41ab-96f9-0715e2467d55" + } + ] + }, + { + "annotation": "", + "content_id": "addValue", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Add column", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 363.1999969482422, + "height": 93.19999694824219, + "left": 366, + "right": 566, + "top": 270, + "width": 200, + "x": 366, + "y": 270 + }, + "post_job_actions": {}, + "tool_id": "addValue", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"exp\": \"CONTAMINANT\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"iterate\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "27172bb3-7f15-49d9-961e-4a87401812c7", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "12d78b53-8f63-4349-89b5-4f5770d3ac4d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Tabular-to-FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 383.6000061035156, + "height": 113.60000610351562, + "left": 586, + "right": 786, + "top": 270, + "width": 200, + "x": 586, + "y": 270 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "tool_shed_repository": { + "changeset_revision": "0a7799698fe5", + "name": "tabular_to_fasta", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"seq_col\": \"2\", \"title_col\": [\"1\", \"3\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "d8a59abc-1be6-41e9-8df0-c8b06d8430c7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a1dccdc6-a13f-4326-bb33-a75581b22d9b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 5, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 4, + "output_name": "output" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 1, + "output_name": "output_database" + } + }, + "inputs": [], + "label": null, + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 516, + "height": 246, + "left": 806, + "right": 1006, + "top": 270, + "width": 200, + "x": 806, + "y": 270 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "650d553c1fda", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"uniqueness_criterion\": \"accession\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "609ed0b7-37b3-459b-ab69-e10ff898b372", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b7b9b10b-9f63-4e66-b25a-da521756b75d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_decoydatabase/DecoyDatabase/2.6+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "in": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "DecoyDatabase", + "outputs": [ + { + "name": "out", + "type": "fasta" + } + ], + "position": { + "bottom": 428.3999938964844, + "height": 154.39999389648438, + "left": 1137, + "right": 1337, + "top": 274, + "width": 200, + "x": 1137, + "y": 274 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_decoydatabase/DecoyDatabase/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "71a6c870aa48", + "name": "openms_decoydatabase", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"Decoy\": {\"non_shuffle_pattern\": \"\", \"keepPeptideNTerm\": \"true\", \"keepPeptideCTerm\": \"true\"}, \"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"decoy_string\": \"DECOY_\", \"decoy_string_position\": \"prefix\", \"enzyme\": \"Trypsin\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"method\": \"reverse\", \"only_decoy\": \"false\", \"type\": \"protein\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "053fc094-7146-4bf7-91bd-df3f8fdc3f05", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "54465c5a-911c-46a7-91d2-78e40ba9e92f" + } + ] + } + ], + "parent_id": "proteomics/database-handling", + "path": "topics/proteomics/tutorials/database-handling/workflows/wf_database-handling.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Proteomics: database handling", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-database-handling/versions/wf-database-handling", + "tutorial_id": "database-handling", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/database-handling/workflows/wf_database-handling.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/database-handling/workflows/wf_database-handling.html", + "version": 5, + "wfid": "proteomics-database-handling", + "wfname": "wf-database-handling", + "workflow": "wf_database-handling.ga", + "workflow_tools": [ + "addValue", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_decoydatabase/DecoyDatabase/2.6+galaxy0" + ], + "workflowhub_id": "1204" + }, + { + "creators": [], + "description": "Protein FASTA Database Handling", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Protein Database Downloader\"]\n 1[label=\"Protein Database Downloader\"]\n 2[label=\"Protein Database Downloader\"]\n 3[label=\"Protein Database Downloader\"]\n 4[label=\"Protein Database Downloader\"]\n 5[label=\"Protein Database Downloader\"]\n 6[label=\"Protein Database Downloader\"]\n 7[label=\"Protein Database Downloader\"]\n 8[label=\"FASTA-to-Tabular\"]\n 2 -> 8 [label=\"output_database\"]\n 9[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 5 -> 9 [label=\"output_database\"]\n 4 -> 9 [label=\"output_database\"]\n 3 -> 9 [label=\"output_database\"]\n 1 -> 9 [label=\"output_database\"]\n 0 -> 9 [label=\"output_database\"]\n 6 -> 9 [label=\"output_database\"]\n 10[label=\"Add column\"]\n 8 -> 10 [label=\"output\"]\n 11[label=\"FASTA-to-Tabular\"]\n 9 -> 11 [label=\"output\"]\n 12[label=\"Tabular-to-FASTA\"]\n 10 -> 12 [label=\"out_file1\"]\n 13[label=\"Add column\"]\n 11 -> 13 [label=\"output\"]\n 14[label=\"Tabular-to-FASTA\"]\n 13 -> 14 [label=\"out_file1\"]\n 15[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 12 -> 15 [label=\"output\"]\n 7 -> 15 [label=\"output_database\"]\n 14 -> 15 [label=\"output\"]\n 16[label=\"DecoyDatabase\"]\n 15 -> 16 [label=\"output\"]\n}", + "history": [ + { + "hash": "30b5abb36b9cfef5ca43d0f8c6fc504dd9bc459a", + "message": "Update wf_database-handling_mycoplasma.ga", + "num": 8, + "short_hash": "30b5abb36", + "unix": "1608207012" + }, + { + "hash": "30e6e1ac18f3e4e93c1f1d322d8423070cf3a4a5", + "message": "Update wf_database-handling_mycoplasma.ga workflow", + "num": 7, + "short_hash": "30e6e1ac1", + "unix": "1608205362" + }, + { + "hash": "54b4d9fcc78b1394f71f7affd51ca15e83b211d5", + "message": "Adding tags to workflows", + "num": 6, + "short_hash": "54b4d9fcc", + "unix": "1604224600" + }, + { + "hash": "ca84d739509bdb1ef8f3cfc64c15242ef0363407", + "message": "Updating Tutorials to OpenMS 2.6, adjusting of parameters and tools, adding tool versions", + "num": 5, + "short_hash": "ca84d7395", + "unix": "1604176914" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "2c1271b670d336517fb123fb632ce13c93c40465", + "message": "Restructure proteomics", + "num": 1, + "short_hash": "2c1271b67", + "unix": "1495544862" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"Protein Database Downloader\"];\n 1[\"Protein Database Downloader\"];\n 2[\"Protein Database Downloader\"];\n 3[\"Protein Database Downloader\"];\n 4[\"Protein Database Downloader\"];\n 5[\"Protein Database Downloader\"];\n 6[\"Protein Database Downloader\"];\n 7[\"Protein Database Downloader\"];\n 8[\"FASTA-to-Tabular\"];\n 2 -->|output_database| 8;\n 9[\"FASTA Merge Files and Filter Unique Sequences\"];\n 5 -->|output_database| 9;\n 4 -->|output_database| 9;\n 3 -->|output_database| 9;\n 1 -->|output_database| 9;\n 0 -->|output_database| 9;\n 6 -->|output_database| 9;\n 10[\"Add column\"];\n 8 -->|output| 10;\n 11[\"FASTA-to-Tabular\"];\n 9 -->|output| 11;\n 12[\"Tabular-to-FASTA\"];\n 10 -->|out_file1| 12;\n 13[\"Add column\"];\n 11 -->|output| 13;\n 14[\"Tabular-to-FASTA\"];\n 13 -->|out_file1| 14;\n 15[\"FASTA Merge Files and Filter Unique Sequences\"];\n 12 -->|output| 15;\n 7 -->|output_database| 15;\n 14 -->|output| 15;\n 16[\"DecoyDatabase\"];\n 15 -->|output| 16;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Proteomics: database handling including mycoplasma", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 186.171875, + "height": 101, + "left": 489.96875, + "right": 689.96875, + "top": 85.171875, + "width": 200, + "x": 489.96875, + "y": 85.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"2121\", \"reviewed\": \"+\", \"set\": \"+keyword%3a1185\", \"include_isoform\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "4114a759-55b3-41e4-866d-b4ce95b7064a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "7139701a-2418-4a54-8708-69e50cdf64b1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 293.171875, + "height": 101, + "left": 508.96875, + "right": 708.96875, + "top": 192.171875, + "width": 200, + "x": 508.96875, + "y": 192.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"2100\", \"reviewed\": \"+\", \"set\": \"+keyword%3a1185\", \"include_isoform\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "9d6509a8-45b2-463c-a37c-5330280a2302", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "02415048-af7f-482d-bc30-af3315ae63b2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": -196.828125, + "height": 101, + "left": 471.96875, + "right": 671.96875, + "top": -297.828125, + "width": 200, + "x": 471.96875, + "y": -297.828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"cRAP\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "357e8c0f-93cd-4ebc-81ac-6ece5de019e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "1605ec3f-5755-43d4-813d-a865518bda07" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 413.171875, + "height": 101, + "left": 508.96875, + "right": 708.96875, + "top": 312.171875, + "width": 200, + "x": 508.96875, + "y": 312.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"2094\", \"reviewed\": \"+\", \"set\": \"+keyword%3a1185\", \"include_isoform\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "6124a009-45b4-44f3-a143-61d47fbe17a9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "55cd7e71-a1f9-4dea-8355-462fefce371a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 533.171875, + "height": 101, + "left": 508.96875, + "right": 708.96875, + "top": 432.171875, + "width": 200, + "x": 508.96875, + "y": 432.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"2115\", \"reviewed\": \"+\", \"set\": \"+keyword%3a1185\", \"include_isoform\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "f01d73bd-e427-40f1-94d0-732836dc3c32", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "180b1779-a0dc-4a20-aeb8-c451b67e589f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 653.171875, + "height": 101, + "left": 508.96875, + "right": 708.96875, + "top": 552.171875, + "width": 200, + "x": 508.96875, + "y": 552.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"2098\", \"reviewed\": \"+\", \"set\": \"+keyword%3a1185\", \"include_isoform\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "b725bbfe-011f-4ebf-b94d-235db3811db5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "8458bb43-85bd-4b58-810b-d87277b0fa51" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 770.171875, + "height": 101, + "left": 512.5625, + "right": 712.5625, + "top": 669.171875, + "width": 200, + "x": 512.5625, + "y": 669.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"2148\", \"reviewed\": \"+\", \"set\": \"+keyword%3a1185\", \"include_isoform\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "0b7814d9-5511-4278-9ca3-19748a1f9ece", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "cc6b866c-4912-421d-a342-23baef5d2c95" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "bottom": 358.171875, + "height": 101, + "left": 1149.96875, + "right": 1349.96875, + "top": 257.171875, + "width": 200, + "x": 1149.96875, + "y": 257.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "tool_shed_repository": { + "changeset_revision": "c1b437242fee", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"9606\", \"reviewed\": \"+reviewed%3Ayes\", \"set\": \"+keyword%3a1185\", \"include_isoform\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.1", + "type": "tool", + "uuid": "8edafc35-59c1-4043-adf2-9413a5959ffe", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_database", + "uuid": "9b9e1bc5-f179-47e7-bb74-0979ca293e8a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 2, + "output_name": "output_database" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": -55.828125, + "height": 112, + "left": 728.96875, + "right": 928.96875, + "top": -167.828125, + "width": 200, + "x": 728.96875, + "y": -167.828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "e7ed3c310b74", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"descr_columns\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "43204d4a-03b7-46c1-b96f-d9cce74ad707", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "28ec9532-c442-4b0a-889e-5809098b1b7f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 9, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 5, + "output_name": "output_database" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 4, + "output_name": "output_database" + }, + "batchmode|input_fastas_2|input_fasta": { + "id": 3, + "output_name": "output_database" + }, + "batchmode|input_fastas_3|input_fasta": { + "id": 1, + "output_name": "output_database" + }, + "batchmode|input_fastas_4|input_fasta": { + "id": 0, + "output_name": "output_database" + }, + "batchmode|input_fastas_5|input_fasta": { + "id": 6, + "output_name": "output_database" + } + }, + "inputs": [], + "label": null, + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 394.171875, + "height": 442, + "left": 728.96875, + "right": 928.96875, + "top": -47.828125, + "width": 200, + "x": 728.96875, + "y": -47.828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 2, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 3, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 4, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 5, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"uniqueness_criterion\": \"sequence\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "2f3e5008-14dc-4078-ab3d-72faf16b21ce", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0a40b18e-1b8a-4f70-a134-44a449069a6b" + } + ] + }, + { + "annotation": "", + "content_id": "addValue", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Add column", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": -75.828125, + "height": 92, + "left": 948.96875, + "right": 1148.96875, + "top": -167.828125, + "width": 200, + "x": 948.96875, + "y": -167.828125 + }, + "post_job_actions": {}, + "tool_id": "addValue", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"exp\": \"CONTAMINANT\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"iterate\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "74c42033-1c6c-4647-b99b-d50eeba95063", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "1d442a40-1bcf-4d3b-979f-0ef7233c7db9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 64.171875, + "height": 112, + "left": 948.96875, + "right": 1148.96875, + "top": -47.828125, + "width": 200, + "x": 948.96875, + "y": -47.828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "e7ed3c310b74", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"descr_columns\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "c9832b4a-7f75-4763-bd5e-d7de8a80ed3a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b549c26c-0f66-438f-9c44-e45372fe4cd1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Tabular-to-FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": -55.828125, + "height": 112, + "left": 1168.96875, + "right": 1368.96875, + "top": -167.828125, + "width": 200, + "x": 1168.96875, + "y": -167.828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "tool_shed_repository": { + "changeset_revision": "0a7799698fe5", + "name": "tabular_to_fasta", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"seq_col\": \"2\", \"title_col\": [\"1\", \"3\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "396df67c-421c-4a4a-9965-d5eee8d20982", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d27e6997-b84e-4671-806b-ec8ac62e8fb5" + } + ] + }, + { + "annotation": "", + "content_id": "addValue", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Add column", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 44.171875, + "height": 92, + "left": 1168.96875, + "right": 1368.96875, + "top": -47.828125, + "width": 200, + "x": 1168.96875, + "y": -47.828125 + }, + "post_job_actions": {}, + "tool_id": "addValue", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"exp\": \"MYCOPLASMA_CONTAMINANT\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"iterate\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "5a462916-3e19-4344-80b4-e1b1f0d3fb9d", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "36488f81-9674-4e5c-ab0a-73c91d2b71fd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 13, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Tabular-to-FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 125.171875, + "height": 112, + "left": 1379.96875, + "right": 1579.96875, + "top": 13.171875, + "width": 200, + "x": 1379.96875, + "y": 13.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "tool_shed_repository": { + "changeset_revision": "0a7799698fe5", + "name": "tabular_to_fasta", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"seq_col\": \"2\", \"title_col\": [\"1\", \"3\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "688b1790-2b96-46cc-849f-7c981b8d6e8c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c7b7f6bf-b83f-424d-b1ca-63161427c7ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 15, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 12, + "output_name": "output" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 7, + "output_name": "output_database" + }, + "batchmode|input_fastas_2|input_fasta": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 533.171875, + "height": 292, + "left": 1521.96875, + "right": 1721.96875, + "top": 241.171875, + "width": 200, + "x": 1521.96875, + "y": 241.171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 2, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"uniqueness_criterion\": \"accession\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "a6d6aafa-1474-44ee-812a-3d700643e350", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7571d011-cfdf-4c97-bd1b-65a13f26b044" + } + ] + } + ], + "parent_id": "proteomics/database-handling", + "path": "topics/proteomics/tutorials/database-handling/workflows/wf_database-handling_mycoplasma.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Proteomics: database handling including mycoplasma", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-database-handling/versions/wf-database-handling-mycoplasma", + "tutorial_id": "database-handling", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/database-handling/workflows/wf_database-handling_mycoplasma.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/database-handling/workflows/wf_database-handling_mycoplasma.html", + "version": 6, + "wfid": "proteomics-database-handling", + "wfname": "wf-database-handling-mycoplasma", + "workflow": "wf_database-handling_mycoplasma.ga", + "workflow_tools": [ + "addValue", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_decoydatabase/DecoyDatabase/2.6+galaxy0" + ], + "workflowhub_id": "1199" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "pdaug_addclasslabel", + "owner": "jay", + "revisions": "7160bfd77aef", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_basic_plots", + "owner": "jay", + "revisions": "15b6eec94c40", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_fishers_plot", + "owner": "jay", + "revisions": "2fe62dfbdc9d", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_merge_dataframes", + "owner": "jay", + "revisions": "2dbfb42d34bc", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_peptide_data_access", + "owner": "jay", + "revisions": "7cf1e907c31d", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_peptide_sequence_analysis", + "owner": "jay", + "revisions": "90e3b1968ae6", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_sequence_property_based_descriptors", + "owner": "jay", + "revisions": "187c6f2d3b55", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_tsvtofasta", + "owner": "jay", + "revisions": "03f954dd8360", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: pdaug_addclasslabel\n owner: jay\n revisions: 7160bfd77aef\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_basic_plots\n owner: jay\n revisions: 15b6eec94c40\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_fishers_plot\n owner: jay\n revisions: 2fe62dfbdc9d\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_merge_dataframes\n owner: jay\n revisions: 2dbfb42d34bc\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_peptide_data_access\n owner: jay\n revisions: 7cf1e907c31d\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_peptide_sequence_analysis\n owner: jay\n revisions: 90e3b1968ae6\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_sequence_property_based_descriptors\n owner: jay\n revisions: 187c6f2d3b55\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_tsvtofasta\n owner: jay\n revisions: 03f954dd8360\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/peptide-library-data-analysis/tutorial.json", + "contributors": [ + { + "id": "jaidevjoshi83", + "joined": "2020-11", + "name": "Jayadev Joshi", + "orcid": "0000-0001-7589-5230", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jaidevjoshi83/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jaidevjoshi83.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + } + ], + "dir": "topics/proteomics/tutorials/peptide-library-data-analysis", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/peptide-library-data-analysis", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Calculate descriptors", + "Quantitative analysis of peptide sequence properties" + ], + "pageviews": 790, + "pub_date": "2021-01-22", + "questions": [ + "How to utilize quantitative properties of amino acids and peptide sequence to analyse peptide data?" + ], + "short_id": "T00227", + "short_tools": [ + "pdaug_basic_plots", + "pdaug_sequence_property_based_descriptors", + "pdaug_tsvtofasta", + "pdaug_fishers_plot", + "pdaug_peptide_sequence_analysis", + "pdaug_merge_dataframes", + "pdaug_peptide_data_access", + "pdaug_addclasslabel" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "property-prediction", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [], + "time_estimation": "20m", + "title": "Peptide Library Data Analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_addclasslabel/pdaug_addclasslabel/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_basic_plots/pdaug_basic_plots/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_fishers_plot/pdaug_fishers_plot/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_merge_dataframes/pdaug_merge_dataframes/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_peptide_data_access/pdaug_peptide_data_access/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_peptide_sequence_analysis/pdaug_peptide_sequence_analysis/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_sequence_property_based_descriptors/pdaug_sequence_property_based_descriptors/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_tsvtofasta/pdaug_tsvtofasta/0.1.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "peptide-library-data-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/peptide-library-data-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/peptide-library-data-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/peptide-library-data-analysis/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 160, + "visitors": 564, + "workflows": [ + { + "creators": [], + "description": "Peptide Library Data Analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"PDAUG Peptide Data Access\"]\n 1[label=\"PDAUG TSVtoFASTA\"]\n 0 -> 1 [label=\"output1\"]\n 2[label=\"PDAUG Peptide Sequence Analysis\"]\n 1 -> 2 [label=\"output3\"]\n 1 -> 2 [label=\"output2\"]\n 3[label=\"PDAUG Sequence Property Based Descriptors\"]\n 1 -> 3 [label=\"output2\"]\n 4[label=\"PDAUG Sequence Property Based Descriptors\"]\n 1 -> 4 [label=\"output3\"]\n 5[label=\"PDAUG Fisher\u2019s Plot\"]\n 1 -> 5 [label=\"output3\"]\n 1 -> 5 [label=\"output2\"]\n 6[label=\"AMP\"]\n 3 -> 6 [label=\"output1\"]\n 7[label=\"TMP\"]\n 4 -> 7 [label=\"output1\"]\n 8[label=\"PDAUG Merge Dataframes\"]\n 6 -> 8 [label=\"OutFile1\"]\n 7 -> 8 [label=\"OutFile1\"]\n 9[label=\"PDAUG Basic Plots\"]\n 8 -> 9 [label=\"output1\"]\n}", + "history": [ + { + "hash": "c6cb67762f0c2d329bb52c6e6fb805df376f9ea0", + "message": "Tutorials for PDAUG tool suite (#2150)", + "num": 1, + "short_hash": "c6cb67762", + "unix": "1611340147" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"PDAUG Peptide Data Access\"];\n 1[\"PDAUG TSVtoFASTA\"];\n 0 -->|output1| 1;\n 2[\"PDAUG Peptide Sequence Analysis\"];\n 1 -->|output3| 2;\n 1 -->|output2| 2;\n 3[\"PDAUG Sequence Property Based Descriptors\"];\n 1 -->|output2| 3;\n 4[\"PDAUG Sequence Property Based Descriptors\"];\n 1 -->|output3| 4;\n 5[\"PDAUG Fisher\u2019s Plot\"];\n 1 -->|output3| 5;\n 1 -->|output2| 5;\n 6[\"AMP\"];\n 3 -->|output1| 6;\n 7[\"TMP\"];\n 4 -->|output1| 7;\n 8[\"PDAUG Merge Dataframes\"];\n 6 -->|OutFile1| 8;\n 7 -->|OutFile1| 8;\n 9[\"PDAUG Basic Plots\"];\n 8 -->|output1| 9;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Copy of PeptideDataAnalysis (imported from uploaded file)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_peptide_data_access/pdaug_peptide_data_access/0.1.0", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "PDAUG Peptide Data Access", + "outputs": [ + { + "name": "output1", + "type": "tabular" + } + ], + "position": { + "left": 200, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_peptide_data_access/pdaug_peptide_data_access/0.1.0", + "tool_shed_repository": { + "changeset_revision": "3eb014f169cf", + "name": "pdaug_peptide_data_access", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"SelectDatasets\": {\"DataBaseType\": \"AMPvsTMP\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "cc540442-0f77-4623-acac-962820250573", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "18bdb5f0-767f-4f38-a49d-daaf38287b79" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_fishers_plot/pdaug_fishers_plot/0.1.0", + "errors": null, + "id": 5, + "input_connections": { + "Fasta1": { + "id": 1, + "output_name": "output3" + }, + "Fasta2": { + "id": 1, + "output_name": "output2" + } + }, + "inputs": [], + "label": null, + "name": "PDAUG Fisher's Plot", + "outputs": [ + { + "name": "output2", + "type": "png" + } + ], + "position": { + "left": 770.99609375, + "top": 912.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_fishers_plot/pdaug_fishers_plot/0.1.0", + "tool_shed_repository": { + "changeset_revision": "7a9f6ac448bc", + "name": "pdaug_fishers_plot", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"Fasta1\": {\"__class__\": \"ConnectedValue\"}, \"Fasta2\": {\"__class__\": \"ConnectedValue\"}, \"overlap_factor\": \"5\", \"pop1_label\": \"TMPs\", \"pop2_label\": \"AMPs\", \"windows_per_frame\": \"5\", \"xlabel\": \"Mean volume\", \"ylabel\": \"Mean hydropathy\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "61d70923-d629-49a4-be01-0ead9c18bdb8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "c5869465-89c0-4183-9834-04d34f90233f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_basic_plots/pdaug_basic_plots/0.1.0", + "errors": null, + "id": 9, + "input_connections": { + "SelPlotting|InFile": { + "id": 8, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "PDAUG Basic Plots", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1627.5, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_basic_plots/pdaug_basic_plots/0.1.0", + "tool_shed_repository": { + "changeset_revision": "080b372fe513", + "name": "pdaug_basic_plots", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"SelPlotting\": {\"Plot\": \"ScatterPlot\", \"__current_case__\": 2, \"InFile\": {\"__class__\": \"ConnectedValue\"}, \"PlotType\": {\"SelectPlot\": \"3D\", \"__current_case__\": 1, \"Features1\": \"_SecondaryStrD1100\", \"Features2\": \"_SolventAccessibilityD2001\", \"Features3\": \"_NormalizedVDWVD3050\"}, \"Label\": \"Class_label\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "457cfde2-d691-4e9c-af64-5416ae609770", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "269a24c3-8cf7-4ab6-b08d-f91fd9996756" + } + ] + } + ], + "parent_id": "proteomics/peptide-library-data-analysis", + "path": "topics/proteomics/tutorials/peptide-library-data-analysis/workflows/PeptideDataAnalysis.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Copy of PeptideDataAnalysis (imported from uploaded file)", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-peptide-library-data-analysis/versions/peptidedataanalysis", + "tutorial_id": "peptide-library-data-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/peptide-library-data-analysis/workflows/PeptideDataAnalysis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/peptide-library-data-analysis/workflows/PeptideDataAnalysis.html", + "version": 1, + "wfid": "proteomics-peptide-library-data-analysis", + "wfname": "peptidedataanalysis", + "workflow": "PeptideDataAnalysis.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_addclasslabel/pdaug_addclasslabel/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_basic_plots/pdaug_basic_plots/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_fishers_plot/pdaug_fishers_plot/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_merge_dataframes/pdaug_merge_dataframes/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_peptide_data_access/pdaug_peptide_data_access/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_peptide_sequence_analysis/pdaug_peptide_sequence_analysis/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_sequence_property_based_descriptors/pdaug_sequence_property_based_descriptors/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_tsvtofasta/pdaug_tsvtofasta/0.1.0" + ], + "workflowhub_id": "1244" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "metaquantome_db", + "owner": "galaxyp", + "revisions": "7c45aa1c9464", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_db", + "owner": "galaxyp", + "revisions": "e63db1aa82ee", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_expand", + "owner": "galaxyp", + "revisions": "eb65ab160a10", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_expand", + "owner": "galaxyp", + "revisions": "767c1d761aaf", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_filter", + "owner": "galaxyp", + "revisions": "7d1c20b315ff", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_filter", + "owner": "galaxyp", + "revisions": "35cc7ca0bdc7", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_sample", + "owner": "galaxyp", + "revisions": "49a957fb353a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_sample", + "owner": "galaxyp", + "revisions": "06f6826d380c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_stat", + "owner": "galaxyp", + "revisions": "982a442a98dd", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_stat", + "owner": "galaxyp", + "revisions": "b9d453dca8d3", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_viz", + "owner": "galaxyp", + "revisions": "02da24eac445", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_viz", + "owner": "galaxyp", + "revisions": "8bd7734309f6", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: metaquantome_db\n owner: galaxyp\n revisions: 7c45aa1c9464\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_db\n owner: galaxyp\n revisions: e63db1aa82ee\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_expand\n owner: galaxyp\n revisions: eb65ab160a10\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_expand\n owner: galaxyp\n revisions: 767c1d761aaf\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_filter\n owner: galaxyp\n revisions: 7d1c20b315ff\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_filter\n owner: galaxyp\n revisions: 35cc7ca0bdc7\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_sample\n owner: galaxyp\n revisions: 49a957fb353a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_sample\n owner: galaxyp\n revisions: 06f6826d380c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_stat\n owner: galaxyp\n revisions: 982a442a98dd\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_stat\n owner: galaxyp\n revisions: b9d453dca8d3\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_viz\n owner: galaxyp\n revisions: 02da24eac445\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_viz\n owner: galaxyp\n revisions: 8bd7734309f6\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-function/tutorial.json", + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "leith023@umn.edu", + "id": "emmaleith", + "joined": "2019-07", + "name": "Emma Leith", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emmaleith/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emmaleith.json" + }, + { + "email": "crane136@umn.edu", + "id": "mariecrane", + "joined": "2019-05", + "name": "Marie Crane", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mariecrane/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mariecrane.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + } + ], + "dir": "topics/proteomics/tutorials/metaquantome-function", + "edam_ontology": [ + "topic_0121", + "topic_3922", + "topic_3941", + "topic_3697", + "topic_3174" + ], + "edam_operation": [ + "Visualisation", + "Differential protein expression analysis", + "Functional clustering", + "Query and retrieval", + "Indexing", + "Filtering", + "Heat map generation", + "Statistical inference", + "Principal component visualisation", + "Quantification" + ], + "edam_topic": [ + "Proteomics", + "Proteogenomics", + "Metatranscriptomics", + "Microbial ecology", + "Metagenomics" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "metaproteomics" + ], + "type": "internal" + }, + { + "topic_name": "proteomics", + "tutorials": [ + "metaquantome-taxonomy" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/metaquantome-function", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "All the inputs should have one column in common i.e. peptides.", + "Functional annotation can be performed using GO terms and EC numbers", + "Having basic knowledge regarding tools that can perform functional annotation can come in handy" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-03-15", + "objectives": [ + "A functional and quantitational analysis of metaproteomic mass spectrometry data." + ], + "pageviews": 504, + "pub_date": "2020-10-29", + "questions": [ + "How do I look at differentially expressed proteins?", + "How do I get top 5 or 10 function present in the sample?", + "How can I visualize my results?" + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "metaquantome-data-creation" + ], + "type": "internal" + } + ], + "short_id": "T00223", + "short_tools": [ + "metaquantome_db", + "metaquantome_sample", + "metaquantome_stat", + "metaquantome_expand", + "metaquantome_filter", + "metaquantome_viz" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "multi-omics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "microgalaxy" + ], + "time_estimation": "1h", + "title": "metaQuantome 2: Function", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metaquantome-function", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-function/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-function/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-function/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 228, + "visitors": 348, + "workflows": [ + { + "creators": [], + "description": "metaquantome-function", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"metaQuantome: database\"]\n 1[label=\"metaQuantome: create samples file\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nFunctional file\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIntensity file\"]\n 4[label=\"metaQuantome: expand\"]\n 0 -> 4 [label=\"outfile\"]\n 3 -> 4 [label=\"output\"]\n 2 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"samples_file\"]\n 5[label=\"metaQuantome: filter\"]\n 4 -> 5 [label=\"outfile\"]\n 1 -> 5 [label=\"samples_file\"]\n 6[label=\"metaQuantome: stat\"]\n 5 -> 6 [label=\"outfile\"]\n 1 -> 6 [label=\"samples_file\"]\n 7[label=\"T2-Bar-Plot\"]\n 6 -> 7 [label=\"outfile\"]\n 6 -> 7 [label=\"outfile\"]\n 8[label=\"T4-Bar-Plot\"]\n 6 -> 8 [label=\"outfile\"]\n 1 -> 8 [label=\"samples_file\"]\n 9[label=\"T7-Bar-Plot\"]\n 6 -> 9 [label=\"outfile\"]\n 1 -> 9 [label=\"samples_file\"]\n 10[label=\"T7-T2-Volcano-Plot\"]\n 6 -> 10 [label=\"outfile\"]\n 1 -> 10 [label=\"samples_file\"]\n 11[label=\"T4-T2-Volcano-Plot\"]\n 6 -> 11 [label=\"outfile\"]\n 1 -> 11 [label=\"samples_file\"]\n}", + "history": [ + { + "hash": "9d12ea3f6c949d0485659fb58ac0eda7c8814a74", + "message": "Update main_workflow.ga", + "num": 4, + "short_hash": "9d12ea3f6", + "unix": "1636475724" + }, + { + "hash": "b44e7f7c70e9638f17ca09238d425e0d8542d2a9", + "message": "Update main_workflow.ga", + "num": 3, + "short_hash": "b44e7f7c7", + "unix": "1603726491" + }, + { + "hash": "619a94b389406eacd755598aa6ce4fab95f867f6", + "message": "Update main_workflow.ga", + "num": 2, + "short_hash": "619a94b38", + "unix": "1603158677" + }, + { + "hash": "426a2746eee3945edd669f81b15b222493c46c82", + "message": "tutorial skeletons generated by planemo", + "num": 1, + "short_hash": "426a2746e", + "unix": "1602853461" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Functional file" + } + ], + "label": "Functional file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 856.578125, + "height": 81, + "left": 397.546875, + "right": 597.546875, + "top": 775.578125, + "width": 200, + "x": 397.546875, + "y": 775.578125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "7d436bc0-0e63-4445-93d5-5600c9a5c383", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Intensity file" + } + ], + "label": "Intensity file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 953.578125, + "height": 61, + "left": 391.5625, + "right": 591.5625, + "top": 892.578125, + "width": 200, + "x": 391.5625, + "y": 892.578125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1e20e3c4-3b6f-4e0c-a5b6-8f8f3d220441", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"metaQuantome: database\"];\n 1[\"metaQuantome: create samples file\"];\n 2[\"\u2139\ufe0f Input Dataset\\nFunctional file\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nIntensity file\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"metaQuantome: expand\"];\n 0 -->|outfile| 4;\n 3 -->|output| 4;\n 2 -->|output| 4;\n 1 -->|samples_file| 4;\n 5[\"metaQuantome: filter\"];\n 4 -->|outfile| 5;\n 1 -->|samples_file| 5;\n 6[\"metaQuantome: stat\"];\n 5 -->|outfile| 6;\n 1 -->|samples_file| 6;\n 7[\"T2-Bar-Plot\"];\n 6 -->|outfile| 7;\n 6 -->|outfile| 7;\n 8[\"T4-Bar-Plot\"];\n 6 -->|outfile| 8;\n 1 -->|samples_file| 8;\n 9[\"T7-Bar-Plot\"];\n 6 -->|outfile| 9;\n 1 -->|samples_file| 9;\n 10[\"T7-T2-Volcano-Plot\"];\n 6 -->|outfile| 10;\n 1 -->|samples_file| 10;\n 11[\"T4-T2-Volcano-Plot\"];\n 6 -->|outfile| 11;\n 1 -->|samples_file| 11;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "metaquantome-function-worklow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.2+galaxy0", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "metaQuantome: database", + "outputs": [ + { + "name": "outfile", + "type": "tar" + } + ], + "position": { + "bottom": 555.953125, + "height": 101, + "left": 380.078125, + "right": 580.078125, + "top": 454.953125, + "width": 200, + "x": 380.078125, + "y": 454.953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "860429737408", + "name": "metaquantome_db", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"databases\": [\"ncbi\", \"go\", \"ec\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "8d2913b3-9c27-4a7e-989b-3e99642caa7e", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "f0040af5-b737-40da-8965-4c1ff91aa3ed" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.2+galaxy0", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "metaQuantome: create samples file", + "outputs": [ + { + "name": "samples_file", + "type": "tabular" + } + ], + "position": { + "bottom": 742, + "height": 141, + "left": 386.09375, + "right": 586.09375, + "top": 601, + "width": 200, + "x": 386.09375, + "y": 601 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "40ca115438d2", + "name": "metaquantome_sample", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"samps_args\": {\"samps_src\": \"build\", \"__current_case__\": 0, \"samps\": [{\"__index__\": 0, \"group_name\": \"T2\", \"col_names\": \"T2_A1,T2_B1\"}, {\"__index__\": 1, \"group_name\": \"T4\", \"col_names\": \"T4A_1,T4B_1\"}, {\"__index__\": 2, \"group_name\": \"T7\", \"col_names\": \"T7A_1,T7B_1\"}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "9f37b361-1999-45f1-bdff-91e40d1b7783", + "workflow_outputs": [ + { + "label": null, + "output_name": "samples_file", + "uuid": "729e43a9-27eb-4ab8-b89d-af815d52defd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.2+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "db_tar": { + "id": 0, + "output_name": "outfile" + }, + "int_file": { + "id": 3, + "output_name": "output" + }, + "mode_args|func_file": { + "id": 2, + "output_name": "output" + }, + "samps": { + "id": 1, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": null, + "name": "metaQuantome: expand", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "bottom": 552.96875, + "height": 242, + "left": 713.109375, + "right": 913.109375, + "top": 310.96875, + "width": 200, + "x": 713.109375, + "y": 310.96875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "4187b6df1a40", + "name": "metaquantome_expand", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"db_tar\": {\"__class__\": \"ConnectedValue\"}, \"int_file\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"f\", \"__current_case__\": 0, \"func_file\": {\"__class__\": \"ConnectedValue\"}, \"pep_colname_func\": \"peptide\", \"ontology_args\": {\"ontology\": \"go\", \"__current_case__\": 0, \"slim_down\": \"false\"}, \"func_colname\": \"go_term\"}, \"pep_colname_int\": \"peptide\", \"samps\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "6ba916f3-e8d2-4efb-bee8-d190d4497e99", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "a695a223-52de-4b99-a457-fc002123d7f4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.2+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "expand_file": { + "id": 4, + "output_name": "outfile" + }, + "samps": { + "id": 1, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": null, + "name": "metaQuantome: filter", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "bottom": 986.984375, + "height": 182, + "left": 712.109375, + "right": 912.109375, + "top": 804.984375, + "width": 200, + "x": 712.109375, + "y": 804.984375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a1daafbf5233", + "name": "metaquantome_filter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"expand_file\": {\"__class__\": \"ConnectedValue\"}, \"min_child_nsamp\": \"1\", \"min_children_non_leaf\": \"2\", \"min_pep_nsamp\": \"1\", \"min_peptides\": \"1\", \"mode_args\": {\"mode\": \"f\", \"__current_case__\": 0, \"ontology_args\": {\"ontology\": \"go\", \"__current_case__\": 0, \"slim_down\": \"false\"}}, \"qthreshold\": \"2\", \"samps\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "4d85cd84-63b6-4822-a1c1-b4555317fc92", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "1fcbebef-7f9d-4c46-90e4-ecce3dc87c3c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.2+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "file": { + "id": 5, + "output_name": "outfile" + }, + "samps": { + "id": 1, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": null, + "name": "metaQuantome: stat", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "bottom": 683, + "height": 202, + "left": 1001.109375, + "right": 1201.109375, + "top": 481, + "width": 200, + "x": 1001.109375, + "y": 481 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "b648e45fd3cf", + "name": "metaquantome_stat", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"control_group\": \"T2\", \"file\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"f\", \"__current_case__\": 0, \"ontology_args\": {\"ontology\": \"go\", \"__current_case__\": 0, \"slim_down\": \"false\"}}, \"paired\": \"true\", \"parametric\": \"True\", \"samps\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "53c9d15f-ef26-4bed-a07c-e5aae09c6ec2", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "114546bc-4c2f-484d-9f4f-e6af605f30a4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "T2-Bar-Plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "bottom": 683, + "height": 292, + "left": 1344.078125, + "right": 1544.078125, + "top": 391, + "width": 200, + "x": 1344.078125, + "y": 391 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"f\", \"__current_case__\": 0, \"ontology\": \"go\", \"plot\": {\"plottype\": \"bar\", \"__current_case__\": 0, \"meancol\": \"T2_mean\", \"nterms\": \"5\", \"target_onto\": \"mf\", \"barcol\": \"2\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "22e19420-d346-4080-a941-d7f6eeb34bf1", + "workflow_outputs": [ + { + "label": null, + "output_name": "plotdata", + "uuid": "f5f8721f-3fee-4164-b155-565ecba9c15f" + }, + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "3a1f5a00-68cd-4b78-a231-377f15278758" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 1, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T4-Bar-Plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "bottom": 985.578125, + "height": 292, + "left": 1358.5625, + "right": 1558.5625, + "top": 693.578125, + "width": 200, + "x": 1358.5625, + "y": 693.578125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"f\", \"__current_case__\": 0, \"ontology\": \"go\", \"plot\": {\"plottype\": \"bar\", \"__current_case__\": 0, \"meancol\": \"T4_mean\", \"nterms\": \"5\", \"target_onto\": \"mf\", \"barcol\": \"2\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "be87379d-46ef-458e-941d-6b74d95056b2", + "workflow_outputs": [ + { + "label": null, + "output_name": "plotdata", + "uuid": "3690aff1-2671-4667-8b30-82e69cd93ae4" + }, + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "46b92417-58a7-47f1-b144-21b4ec612962" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 1, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T7-Bar-Plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "bottom": 1273.5625, + "height": 292, + "left": 1358.484375, + "right": 1558.484375, + "top": 981.5625, + "width": 200, + "x": 1358.484375, + "y": 981.5625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"f\", \"__current_case__\": 0, \"ontology\": \"go\", \"plot\": {\"plottype\": \"bar\", \"__current_case__\": 0, \"meancol\": \"T7_mean\", \"nterms\": \"5\", \"target_onto\": \"mf\", \"barcol\": \"2\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "d9b6f1d7-671d-4d7a-915f-2cb12a2e1d7f", + "workflow_outputs": [ + { + "label": null, + "output_name": "plotdata", + "uuid": "48d40170-76bb-4b9e-a014-9b7f16d4212b" + }, + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "51f1a1c6-960d-4f74-9cce-bf7d03f57297" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 1, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T7-T2-Volcano-Plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "bottom": 783.9375, + "height": 332, + "left": 1647.078125, + "right": 1847.078125, + "top": 451.9375, + "width": 200, + "x": 1647.078125, + "y": 451.9375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"f\", \"__current_case__\": 0, \"ontology\": \"go\", \"plot\": {\"plottype\": \"volcano\", \"__current_case__\": 1, \"fc_name\": \"log2fc_T7_over_T2\", \"fc_corr_p\": \"corrected_p_T7_over_T2\", \"textannot\": \"id\", \"flip_fc\": \"false\", \"gosplit\": \"true\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "19539885-0990-4eda-8f07-deb39f11343f", + "workflow_outputs": [ + { + "label": null, + "output_name": "plotdata", + "uuid": "f78ca1ea-8601-49a4-b816-7c1b9f97b06a" + }, + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "48985efc-d6ef-4560-bc06-be28aec7e6d8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 1, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T4-T2-Volcano-Plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "bottom": 1148.53125, + "height": 332, + "left": 1644.46875, + "right": 1844.46875, + "top": 816.53125, + "width": 200, + "x": 1644.46875, + "y": 816.53125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"f\", \"__current_case__\": 0, \"ontology\": \"go\", \"plot\": {\"plottype\": \"volcano\", \"__current_case__\": 1, \"fc_name\": \"log2fc_T4_over_T2\", \"fc_corr_p\": \"corrected_p_T4_over_T2\", \"textannot\": \"id\", \"flip_fc\": \"false\", \"gosplit\": \"true\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "80ea05c8-f9c1-46f1-a0d0-a66c494d22fd", + "workflow_outputs": [ + { + "label": null, + "output_name": "plotdata", + "uuid": "2fbd499f-b9e7-403e-bbc9-e13670cacd52" + }, + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "4be072a7-8373-4d49-a71a-ffdc1ac318de" + } + ] + } + ], + "parent_id": "proteomics/metaquantome-function", + "path": "topics/proteomics/tutorials/metaquantome-function/workflows/main_workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "metaquantome-function-worklow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-metaquantome-function/versions/main-workflow", + "tutorial_id": "metaquantome-function", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-function/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-function/workflows/main_workflow.html", + "version": 2, + "wfid": "proteomics-metaquantome-function", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.2+galaxy0" + ], + "workflowhub_id": "1221" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4110725" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "dbbuilder", + "owner": "galaxyp", + "revisions": "983bf725dfc2", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "revisions": "f546e7278f04", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metanovo", + "owner": "galaxyp", + "revisions": "d6dcd3173bdf", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "uniprotxml_downloader", + "owner": "galaxyp", + "revisions": "265c35540faa", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: dbbuilder\n owner: galaxyp\n revisions: 983bf725dfc2\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_merge_files_and_filter_unique_sequences\n owner: galaxyp\n revisions: f546e7278f04\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metanovo\n owner: galaxyp\n revisions: d6dcd3173bdf\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: uniprotxml_downloader\n owner: galaxyp\n revisions: 265c35540faa\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-1-database-generation/tutorial.json", + "contributions": { + "authorship": [ + "subinamehta", + "katherine-d21", + "dechendb" + ], + "editing": [ + "pratikdjagtap", + "timothygriffin" + ] + }, + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "id": "katherine-d21", + "joined": "2023-08", + "name": "Katherine Do", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherine-d21/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherine-d21.json" + }, + { + "id": "dechendb", + "joined": "2023-06", + "name": "Dechen Bhuming", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dechendb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dechendb.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + } + ], + "dir": "topics/proteomics/tutorials/clinical-mp-1-database-generation", + "edam_operation": [ + "Expression analysis", + "Tag-based peptide identification", + "Target-Decoy", + "Protein identification", + "de Novo sequencing" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "clinical-mp-2-discovery" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/clinical-mp-1-database-generation", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Create a customized proteomics database from 16SrRNA results." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Downloading databases related to 16SrRNA data", + "For better identification results, combine host and microbial proteins.", + "Reduced database provides better FDR stats." + ], + "pageviews": 301, + "pub_date": "2024-02-06", + "questions": [ + "Why do we need to generate a customized database for metaproteomics research?", + "How do we reduce the size of the database?" + ], + "recordings": [ + { + "captioners": [ + "katherine-d21" + ], + "date": "2024-06-21", + "galaxy_version": "23.1", + "length": "15M", + "speakers": [ + "katherine-d21" + ], + "youtube_id": "FEAEyqcjxkE" + } + ], + "redirect_from": [ + "/topics/proteomics/tutorials/clinical-mp-database-generation/tutorial", + "/short/proteomics/clinical-mp-1-database-generation", + "/short/T00413" + ], + "requirements": [ + { + "topic_name": "proteomics", + "type": "internal" + } + ], + "short_id": "T00413", + "short_tools": [ + "uniprotxml_downloader", + "dbbuilder", + "fasta_merge_files_and_filter_unique_sequences", + "metanovo" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "clinical-metaproteomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "label-TMT11" + ], + "time_estimation": "3H", + "title": "Clinical Metaproteiomics 1: Database-Generation", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metanovo/metanovo/1.9.4+galaxy4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/uniprotxml_downloader/uniprotxml_downloader/2.3.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "clinical-mp-1-database-generation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/clinical-mp-1-database-generation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-1-database-generation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-1-database-generation/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 237, + "visitors": 171, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + } + ], + "description": "Generating a large database and then reducing it to a compact database using Metanovo", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHUMAN SwissProt Protein Database\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput MGF files Dataset Collection\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSpecies_UniProt_FASTA\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nContaminants cRAP Protein Database \"]\n 4[label=\"Human UniProt Microbial Proteins cRAP for MetaNovo\"]\n 0 -> 4 [label=\"output\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n k286f5bd4fb0d46498dacf191acc72722[color=lightseagreen,label=\"Output\\nHuman UniProt Microbial Proteins cRAP for MetaNovo\"]\n 4 -> k286f5bd4fb0d46498dacf191acc72722\n 5[label=\"MetaNovo\"]\n 4 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 0 -> 6 [label=\"output\"]\n 5 -> 6 [label=\"output_fasta\"]\n 3 -> 6 [label=\"output\"]\n kde57cd9dac0543979d44e65620913447[color=lightseagreen,label=\"Output\\nHuman UniProt Microbial Proteins (from MetaNovo) and cRAP \"]\n 6 -> kde57cd9dac0543979d44e65620913447\n}", + "history": [ + { + "hash": "9a94b97ceccea577f680e7b454b6b8b7995801de", + "message": "add workflow", + "num": 1, + "short_hash": "9a94b97ce", + "unix": "1723116168" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "HUMAN SwissProt Protein Database" + } + ], + "label": "HUMAN SwissProt Protein Database", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 204.86580898284382 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bb037df4-ef56-42ad-8b3e-93425bc7bdfa", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input MGF files (Dataset Collection)" + } + ], + "label": "Input MGF files (Dataset Collection)", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 260.9789733886719, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d6bb6e3e-ebf6-4c65-bcf7-ea9527cf8653", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Species_UniProt_FASTA" + } + ], + "label": "Species_UniProt_FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.443389892578125, + "top": 369.4779610824532 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "b4b90dcd-9228-4aad-b51d-2f08b2d4cc0d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Contaminants (cRAP) Protein Database " + } + ], + "label": "Contaminants (cRAP) Protein Database ", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 14.413701296714208, + "top": 468.23383463562413 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ca7de659-6e60-4bd5-aa4c-a88f2860e8c9", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nHUMAN SwissProt Protein Database\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nInput MGF files Dataset Collection\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nSpecies_UniProt_FASTA\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nContaminants cRAP Protein Database \"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Human UniProt Microbial Proteins cRAP for MetaNovo\"];\n 0 -->|output| 4;\n 2 -->|output| 4;\n 3 -->|output| 4;\n 286f5bd4-fb0d-4649-8dac-f191acc72722[\"Output\\nHuman UniProt Microbial Proteins cRAP for MetaNovo\"];\n 4 --> 286f5bd4-fb0d-4649-8dac-f191acc72722;\n style 286f5bd4-fb0d-4649-8dac-f191acc72722 stroke:#2c3143,stroke-width:4px;\n 5[\"MetaNovo\"];\n 4 -->|output| 5;\n 1 -->|output| 5;\n 6[\"FASTA Merge Files and Filter Unique Sequences\"];\n 0 -->|output| 6;\n 5 -->|output_fasta| 6;\n 3 -->|output| 6;\n de57cd9d-ac05-4397-9d44-e65620913447[\"Output\\nHuman UniProt Microbial Proteins (from MetaNovo) and cRAP \"];\n 6 --> de57cd9d-ac05-4397-9d44-e65620913447;\n style de57cd9d-ac05-4397-9d44-e65620913447 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "WF1_Database_Generation_Workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 4, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 0, + "output_name": "output" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 2, + "output_name": "output" + }, + "batchmode|input_fastas_2|input_fasta": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": "Human UniProt Microbial Proteins cRAP for MetaNovo", + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 332.14166641631607, + "top": 272.4446413680965 + }, + "post_job_actions": { + "EmailActionoutput": { + "action_arguments": { + "host": "usegalaxy.eu" + }, + "action_type": "EmailAction", + "output_name": "output" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Human UniProt Microbial Proteins cRAP for MetaNovo" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 2, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"uniqueness_criterion\": \"sequence\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "4c1b21ac-9ceb-49be-9c48-771a3fda8db4", + "when": null, + "workflow_outputs": [ + { + "label": "Human UniProt Microbial Proteins cRAP for MetaNovo", + "output_name": "output", + "uuid": "286f5bd4-fb0d-4649-8dac-f191acc72722" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metanovo/metanovo/1.9.4+galaxy4", + "errors": null, + "id": 5, + "input_connections": { + "input_fasta": { + "id": 4, + "output_name": "output" + }, + "input_type|input_mgf_collection": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MetaNovo", + "name": "input_type" + } + ], + "label": null, + "name": "MetaNovo", + "outputs": [ + { + "name": "output_fasta", + "type": "fasta" + }, + { + "name": "output_csv", + "type": "csv" + } + ], + "position": { + "left": 641.8293151855469, + "top": 171.08148193359375 + }, + "post_job_actions": { + "RenameDatasetActionoutput_fasta": { + "action_arguments": { + "newname": "Metanovo Compact database" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_fasta" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metanovo/metanovo/1.9.4+galaxy4", + "tool_shed_repository": { + "changeset_revision": "d6dcd3173bdf", + "name": "metanovo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"directag\": {\"directag_tic_cutoff\": \"85\", \"directag_max_peak_count\": \"400\", \"directag_intensity_classes\": \"3\", \"directag_adjust_precursor\": false, \"directag_min_adjustment\": \"-2.5\", \"directag_max_adjustment\": \"2.5\", \"directag_adjustment_step\": \"0.1\", \"directag_charge_states\": \"3\", \"directag_ms_charge_state\": false, \"directag_duplicate_spectra\": true, \"directag_deisotoping\": \"0\", \"directag_isotope_tolerance\": \"0.25\", \"directag_complement_tolerance\": \"0.5\", \"directag_tag_length\": \"4\", \"directag_max_var_mods\": \"2\", \"directag_max_tag_count\": \"5\", \"directag_intensity_weight\": \"1.0\", \"directag_fidelity_weight\": \"1.0\", \"directag_complement_weight\": \"1.0\"}, \"fraction_analysis\": {\"protein_fraction_mw_confidence\": \"95.0\"}, \"gene_annotation\": {\"useGeneMapping\": true, \"updateGeneMapping\": true}, \"import_filters\": {\"import_peptide_length_min\": \"8\", \"import_peptide_length_max\": \"50\", \"import_precursor_mz_ppm\": \"0\", \"exclude_unknown_ptms\": true}, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}, \"input_type\": {\"type\": \"collection\", \"__current_case__\": 1, \"input_mgf_collection\": {\"__class__\": \"ConnectedValue\"}}, \"metanovo_parameters\": {\"mn_specificity\": \"specific\", \"mn_enzymes\": \"Trypsin, no P rule\", \"mn_max_missed_cleavages\": \"2\"}, \"processing_control\": {\"CHUNKSIZE\": \"100000\"}, \"protein_inference\": {\"simplify_groups\": true, \"simplify_score\": true, \"simplify_enzymaticity\": true, \"simplify_evidence\": true, \"simplify_uncharacterized\": true}, \"ptm_localization\": {\"ptm_score\": \"1\", \"score_neutral_losses\": false, \"ptm_sequence_matching_type\": \"1\", \"ptm_alignment\": true}, \"sequence_matching\": {\"sequence_index_type\": \"0\", \"sequence_matching_type\": \"2\", \"sequence_matching_x\": \"0.25\"}, \"spectrum_annotation\": {\"annotation_level\": \"0.75\", \"annotation_high_resolution\": true}, \"spectrum_matching_parameters\": {\"prec_tol\": \"10.0\", \"prec_ppm\": \"1\", \"frag_tol\": \"0.01\", \"frag_ppm\": \"0\", \"digestion\": \"0\", \"enzyme\": [\"Trypsin (no P rule)\"], \"specificity\": \"0\", \"mc\": \"2\", \"fixed_mods\": [\"Carbamidomethylation of C\", \"TMT 10-plex of K\", \"TMT 10-plex of peptide N-term\"], \"variable_mods\": [\"Oxidation of M\"], \"min_charge\": \"2\", \"max_charge\": \"5\", \"fi\": \"b\", \"ri\": \"y\", \"min_isotope\": \"0\", \"max_isotope\": \"1\"}, \"validation_levels\": {\"psm_fdr\": \"1\", \"peptide_fdr\": \"1\", \"protein_fdr\": \"1\", \"group_psms\": true, \"group_peptides\": true, \"merge_subgroups\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.4+galaxy4", + "type": "tool", + "uuid": "07d51088-eb68-4ffd-b505-7228a21de93c", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_fasta", + "uuid": "7d35c0ce-359a-4b99-bc50-7898bbb9f6c7" + }, + { + "label": null, + "output_name": "output_csv", + "uuid": "a37b2a24-df14-4ce0-9bec-38cc327a044d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 6, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 0, + "output_name": "output" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 5, + "output_name": "output_fasta" + }, + "batchmode|input_fastas_2|input_fasta": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 924.9069441945012, + "top": 319.6465149119742 + }, + "post_job_actions": { + "EmailActionoutput": { + "action_arguments": { + "host": "usegalaxy.eu" + }, + "action_type": "EmailAction", + "output_name": "output" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Human UniProt Microbial Proteins (from MetaNovo) and cRAP " + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 2, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"uniqueness_criterion\": \"sequence\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "3880c712-4f3c-4edc-bda0-ee348ab1a2c4", + "when": null, + "workflow_outputs": [ + { + "label": "Human UniProt Microbial Proteins (from MetaNovo) and cRAP ", + "output_name": "output", + "uuid": "de57cd9d-ac05-4397-9d44-e65620913447" + } + ] + } + ], + "parent_id": "proteomics/clinical-mp-1-database-generation", + "path": "topics/proteomics/tutorials/clinical-mp-1-database-generation/workflows/WF1_Database_Generation_Workflow.ga", + "tags": [ + "name:clinicalMP" + ], + "test_results": null, + "tests": false, + "title": "WF1_Database_Generation_Workflow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-clinical-mp-1-database-generation/versions/wf1-database-generation-workflow", + "tutorial_id": "clinical-mp-1-database-generation", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-1-database-generation/workflows/WF1_Database_Generation_Workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-1-database-generation/workflows/WF1_Database_Generation_Workflow.html", + "version": 1, + "wfid": "proteomics-clinical-mp-1-database-generation", + "wfname": "wf1-database-generation-workflow", + "workflow": "WF1_Database_Generation_Workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metanovo/metanovo/1.9.4+galaxy4" + ], + "workflowhub_id": "1350" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.10105821" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "encyclopedia_quantify", + "owner": "galaxyp", + "revisions": "4081e4faa4ab", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "encyclopedia_quantify", + "owner": "galaxyp", + "revisions": "1c5cbf8f79ce", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "encyclopedia_searchtolib", + "owner": "galaxyp", + "revisions": "62a718b76f62", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "encyclopedia_searchtolib", + "owner": "galaxyp", + "revisions": "36880dfd9fa7", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msconvert", + "owner": "galaxyp", + "revisions": "3cf310697624", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msconvert", + "owner": "galaxyp", + "revisions": "6153e8ada1ee", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: encyclopedia_quantify\n owner: galaxyp\n revisions: 4081e4faa4ab\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: encyclopedia_quantify\n owner: galaxyp\n revisions: 1c5cbf8f79ce\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: encyclopedia_searchtolib\n owner: galaxyp\n revisions: 62a718b76f62\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: encyclopedia_searchtolib\n owner: galaxyp\n revisions: 36880dfd9fa7\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msconvert\n owner: galaxyp\n revisions: 3cf310697624\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msconvert\n owner: galaxyp\n revisions: 6153e8ada1ee\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/encyclopedia/tutorial.json", + "contributors": [ + { + "email": "leith023@umn.edu", + "id": "emmaleith", + "joined": "2019-07", + "name": "Emma Leith", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emmaleith/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emmaleith.json" + }, + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "jj@umn.edu", + "id": "jj-umn", + "in_memoriam": "James \u2018JJ\u2019 Johnson, was a Galaxy community rock star most known for his indispensable contributions to the Galaxy Proteomics community.\n\nJJ\u2019s works will live on in so many Galaxy tools and workflows for years to come.", + "joined": "2017-09", + "name": "James Johnson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jj-umn/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jj-umn.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + } + ], + "dir": "topics/proteomics/tutorials/encyclopedia", + "edam_operation": [ + "Filtering", + "Formatting" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/encyclopedia", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "With SearchToLib, Chromatogram Libraries can be created", + "Learning conversion of file types using msconvert" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand the difference between DDA and DIA methods", + "Performing quantitative analysis using DIA data", + "Understand the purpose and benefits of using a Chromatogram Library for detection of peptides", + "You can use Bloom's Taxonomy to write effective learning objectives" + ], + "pageviews": 1973, + "pub_date": "2021-06-21", + "questions": [ + "How to perform quantitative analysis using DIA data with the help of EncyclopeDIA?", + "How to perform quantitation with or without Chromatogram Libraries?" + ], + "recordings": [ + { + "captioners": [ + "mtekman" + ], + "date": "2021-06-25", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "emmaleith" + ], + "youtube_id": "eCEjHtbZLVg" + } + ], + "short_id": "T00215", + "short_tools": [ + "encyclopedia_quantify", + "encyclopedia_searchtolib", + "msconvert" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "DIA" + ], + "time_estimation": "6H", + "title": "EncyclopeDIA", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_quantify/encyclopedia_quantify/0.9.5.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_quantify/encyclopedia_quantify/1.2.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_searchtolib/encyclopedia_searchtolib/0.9.5.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_searchtolib/encyclopedia_searchtolib/1.2.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "encyclopedia", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/encyclopedia/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/encyclopedia/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/encyclopedia/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 114, + "visitors": 1371, + "workflows": [ + { + "creators": [], + "description": "encyclopedia", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nGPF DIA mzML Files Dataset collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSPECTRAL OR PROSIT LIBRARY\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nEXPERIMENTAL DIA mzML FILES WIDE\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBACKGROUND PROTEIN FASTA FILE\"]\n 4[label=\"msconvert\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"msconvert\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"SearchToLib\"]\n 3 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"output\"]\n 7[label=\"EncyclopeDIA Quantify\"]\n 3 -> 7 [label=\"output\"]\n 6 -> 7 [label=\"elib\"]\n 5 -> 7 [label=\"output\"]\n}", + "history": [ + { + "hash": "9126f68f0d5565a9630e9f3e92784308a4a24662", + "message": "Update main_workflow.ga", + "num": 4, + "short_hash": "9126f68f0", + "unix": "1623859793" + }, + { + "hash": "0a1ee8353f1a3c919f53904b61c778db04495f6b", + "message": "Rename Workflow-May19_EncyclopeDIA_raw_inputs.ga to main_workflow.ga", + "num": 3, + "short_hash": "0a1ee8353", + "unix": "1623859630" + }, + { + "hash": "c07e80f5e0a299c6c0abc2abc70fac0baa4a99f0", + "message": "Delete main_workflow.ga", + "num": 2, + "short_hash": "c07e80f5e", + "unix": "1623859613" + }, + { + "hash": "34e20aef08d95022e0a31d81ca9b28f3627d975d", + "message": "add tutorial skeleton", + "num": 1, + "short_hash": "34e20aef0", + "unix": "1607964775" + } + ], + "inputs": [ + { + "annotation": "encyclopedia", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GPF DIA mzML Files (Dataset collection)" + } + ], + "label": "GPF DIA mzML Files (Dataset collection)", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 434, + "height": 105, + "left": 450.46875, + "right": 650.46875, + "top": 329, + "width": 200, + "x": 450.46875, + "y": 329 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "ba253b0a-c081-4dcb-9d3d-2c3b4b36f10d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SPECTRAL OR PROSIT LIBRARY" + } + ], + "label": "SPECTRAL OR PROSIT LIBRARY", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 628, + "height": 84, + "left": 460.703125, + "right": 660.703125, + "top": 544, + "width": 200, + "x": 460.703125, + "y": 544 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "417bc894-7c88-4633-80ce-ba418dd4179a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "EXPERIMENTAL DIA mzML FILES (WIDE)" + } + ], + "label": "EXPERIMENTAL DIA mzML FILES (WIDE)", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 317, + "height": 105, + "left": 709.578125, + "right": 909.578125, + "top": 212, + "width": 200, + "x": 709.578125, + "y": 212 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "9f96077e-d7b3-47d4-bc71-d42c9db72b59", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "BACKGROUND PROTEIN FASTA FILE" + } + ], + "label": "BACKGROUND PROTEIN FASTA FILE", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 839, + "height": 105, + "left": 440.703125, + "right": 640.703125, + "top": 734, + "width": 200, + "x": 440.703125, + "y": 734 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b45f41c6-0b3b-48ad-8a1f-73c355c22d61", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nGPF DIA mzML Files Dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSPECTRAL OR PROSIT LIBRARY\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nEXPERIMENTAL DIA mzML FILES WIDE\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nBACKGROUND PROTEIN FASTA FILE\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"msconvert\"];\n 0 -->|output| 4;\n 5[\"msconvert\"];\n 2 -->|output| 5;\n 6[\"SearchToLib\"];\n 3 -->|output| 6;\n 1 -->|output| 6;\n 4 -->|output| 6;\n 7[\"EncyclopeDIA Quantify\"];\n 3 -->|output| 7;\n 6 -->|elib| 7;\n 5 -->|output| 7;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "May19 EncyclopeDIA raw inputs", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool msconvert", + "name": "input" + } + ], + "label": null, + "name": "msconvert", + "outputs": [ + { + "name": "output", + "type": "mzml" + } + ], + "position": { + "bottom": 562.5, + "height": 116, + "left": 739.703125, + "right": 939.703125, + "top": 446.5, + "width": 200, + "x": 739.703125, + "y": 446.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2", + "tool_shed_repository": { + "changeset_revision": "6153e8ada1ee", + "name": "msconvert", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"data_processing\": {\"peak_picking\": {\"pick_peaks\": \"false\", \"__current_case__\": 0}, \"precursor_refinement\": {\"use_mzrefinement\": \"false\", \"__current_case__\": 0}, \"charge_state_calculation\": {\"charge_state_calculation_method\": \"false\", \"__current_case__\": 0}, \"thresholds\": [], \"filter_mz_windows\": {\"do_mzwindow_filter\": \"false\", \"__current_case__\": 0}, \"etd_filtering\": {\"do_etd_filtering\": \"false\", \"__current_case__\": 0}, \"ms2denoise\": {\"denoise\": \"false\", \"__current_case__\": 1}, \"ms2deisotope\": \"false\", \"demultiplex\": {\"demultiplex_on\": \"false\", \"__current_case__\": 1}}, \"filtering\": {\"activation\": \"false\", \"indices\": [], \"scan_numbers\": [], \"strip_it\": \"false\", \"filter_ms_levels\": {\"do_ms_level_filter\": \"false\", \"__current_case__\": 0}, \"polarity\": \"false\", \"analyzer\": \"false\"}, \"general_options\": {\"combineIonMobilitySpectra\": \"false\", \"scan_summing\": {\"do_scan_summing\": \"false\", \"__current_case__\": 0}, \"simAsSpectra\": \"false\", \"srmAsSpectra\": \"false\", \"acceptZeroLengthSpectra\": \"false\", \"ignoreUnknownInstrumentError\": \"false\", \"multi_run_output\": {\"do_multi_run_output\": \"false\", \"__current_case__\": 0, \"runIndexSet\": \"0\"}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"license_agreement\": \"true\", \"output_type\": \"mzML\", \"settings\": {\"mz_encoding\": \"64\", \"intensity_encoding\": \"32\", \"binary_compression\": \"zlib\", \"gzip_compression\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.20287.2", + "type": "tool", + "uuid": "e4cfea9c-2d49-4c2d-af72-a1d352303432", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4ec33042-9998-40ac-8c44-5005ee2e5cef" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool msconvert", + "name": "input" + } + ], + "label": null, + "name": "msconvert", + "outputs": [ + { + "name": "output", + "type": "mzml" + } + ], + "position": { + "bottom": 403.5, + "height": 116, + "left": 1009.703125, + "right": 1209.703125, + "top": 287.5, + "width": 200, + "x": 1009.703125, + "y": 287.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2", + "tool_shed_repository": { + "changeset_revision": "6153e8ada1ee", + "name": "msconvert", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"data_processing\": {\"peak_picking\": {\"pick_peaks\": \"false\", \"__current_case__\": 0}, \"precursor_refinement\": {\"use_mzrefinement\": \"false\", \"__current_case__\": 0}, \"charge_state_calculation\": {\"charge_state_calculation_method\": \"false\", \"__current_case__\": 0}, \"thresholds\": [], \"filter_mz_windows\": {\"do_mzwindow_filter\": \"false\", \"__current_case__\": 0}, \"etd_filtering\": {\"do_etd_filtering\": \"false\", \"__current_case__\": 0}, \"ms2denoise\": {\"denoise\": \"false\", \"__current_case__\": 1}, \"ms2deisotope\": \"false\", \"demultiplex\": {\"demultiplex_on\": \"false\", \"__current_case__\": 1}}, \"filtering\": {\"activation\": \"false\", \"indices\": [], \"scan_numbers\": [], \"strip_it\": \"false\", \"filter_ms_levels\": {\"do_ms_level_filter\": \"false\", \"__current_case__\": 0}, \"polarity\": \"false\", \"analyzer\": \"false\"}, \"general_options\": {\"combineIonMobilitySpectra\": \"false\", \"scan_summing\": {\"do_scan_summing\": \"false\", \"__current_case__\": 0}, \"simAsSpectra\": \"false\", \"srmAsSpectra\": \"false\", \"acceptZeroLengthSpectra\": \"false\", \"ignoreUnknownInstrumentError\": \"false\", \"multi_run_output\": {\"do_multi_run_output\": \"false\", \"__current_case__\": 0, \"runIndexSet\": \"0\"}}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"license_agreement\": \"true\", \"output_type\": \"mzML\", \"settings\": {\"mz_encoding\": \"64\", \"intensity_encoding\": \"32\", \"binary_compression\": \"zlib\", \"gzip_compression\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.20287.2", + "type": "tool", + "uuid": "8dcbc065-269f-47cf-aea0-dba0b283082b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9bc6c507-ff1a-4422-812a-662611e45369" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_searchtolib/encyclopedia_searchtolib/1.2.2+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "fasta": { + "id": 3, + "output_name": "output" + }, + "library": { + "id": 1, + "output_name": "output" + }, + "scan_inputs": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SearchToLib", + "name": "target_fasta" + } + ], + "label": null, + "name": "SearchToLib", + "outputs": [ + { + "name": "log", + "type": "txt" + }, + { + "name": "elib", + "type": "elib" + } + ], + "position": { + "bottom": 956.5, + "height": 324, + "left": 909.703125, + "right": 1109.703125, + "top": 632.5, + "width": 200, + "x": 909.703125, + "y": 632.5 + }, + "post_job_actions": { + "RenameDatasetActionelib": { + "action_arguments": { + "newname": "CHROMATOGRAM LIBRARY" + }, + "action_type": "RenameDatasetAction", + "output_name": "elib" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_searchtolib/encyclopedia_searchtolib/1.2.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "36880dfd9fa7", + "name": "encyclopedia_searchtolib", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"a\": \"false\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"library\": {\"__class__\": \"ConnectedValue\"}, \"options\": {\"acquisition\": {\"set_acquisition\": \"no\", \"__current_case__\": 0}, \"tolerance\": {\"set_tolerance\": \"no\", \"__current_case__\": 0}, \"percolator\": {\"set_percolator\": \"no\", \"__current_case__\": 0}, \"peak\": {\"set_peak\": \"no\", \"__current_case__\": 0}, \"window\": {\"set_window\": \"no\", \"__current_case__\": 0}, \"modifications\": {\"set_modifications\": \"no\", \"__current_case__\": 0}, \"search\": {\"set_search\": \"no\", \"__current_case__\": 0}}, \"scan_inputs\": {\"__class__\": \"ConnectedValue\"}, \"select_outputs\": [\"log\", \"elib\"], \"target_fasta\": {\"__class__\": \"RuntimeValue\"}, \"tp\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.2+galaxy0", + "type": "tool", + "uuid": "128970ae-d036-4960-b88c-b4f90e2c9c5f", + "workflow_outputs": [ + { + "label": null, + "output_name": "elib", + "uuid": "4c03ecb4-1a34-45aa-bdec-7248a773d28f" + }, + { + "label": null, + "output_name": "log", + "uuid": "5da7e8b9-5220-47de-b253-74d01d1bc998" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_quantify/encyclopedia_quantify/1.2.2+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "fasta": { + "id": 3, + "output_name": "output" + }, + "library": { + "id": 6, + "output_name": "elib" + }, + "scan_inputs": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool EncyclopeDIA Quantify", + "name": "target_fasta" + } + ], + "label": null, + "name": "EncyclopeDIA Quantify", + "outputs": [ + { + "name": "log", + "type": "txt" + }, + { + "name": "elib", + "type": "elib" + }, + { + "name": "results", + "type": "tabular" + }, + { + "name": "peptides", + "type": "tabular" + }, + { + "name": "proteins", + "type": "tabular" + } + ], + "position": { + "bottom": 1093, + "height": 585, + "left": 1180.15625, + "right": 1380.15625, + "top": 508, + "width": 200, + "x": 1180.15625, + "y": 508 + }, + "post_job_actions": { + "HideDatasetActionelib": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "elib" + }, + "HideDatasetActionresults": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "results" + }, + "RenameDatasetActionpeptides": { + "action_arguments": { + "newname": "PEPTIDE QUANTITATION OUTPUT" + }, + "action_type": "RenameDatasetAction", + "output_name": "peptides" + }, + "RenameDatasetActionproteins": { + "action_arguments": { + "newname": "PROTEIN QUANTITATION OUTPUT" + }, + "action_type": "RenameDatasetAction", + "output_name": "proteins" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_quantify/encyclopedia_quantify/1.2.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1c5cbf8f79ce", + "name": "encyclopedia_quantify", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"a\": \"true\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"library\": {\"__class__\": \"ConnectedValue\"}, \"options\": {\"acquisition\": {\"set_acquisition\": \"no\", \"__current_case__\": 0}, \"tolerance\": {\"set_tolerance\": \"no\", \"__current_case__\": 0}, \"percolator\": {\"set_percolator\": \"no\", \"__current_case__\": 0}, \"peak\": {\"set_peak\": \"no\", \"__current_case__\": 0}, \"window\": {\"set_window\": \"no\", \"__current_case__\": 0}, \"modifications\": {\"set_modifications\": \"no\", \"__current_case__\": 0}, \"search\": {\"set_search\": \"no\", \"__current_case__\": 0}}, \"scan_inputs\": {\"__class__\": \"ConnectedValue\"}, \"select_outputs\": [\"log\", \"elib\", \"results\", \"peptides\", \"proteins\"], \"target_fasta\": {\"__class__\": \"RuntimeValue\"}, \"tp\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.2+galaxy0", + "type": "tool", + "uuid": "f8f64f5a-cf05-4529-a354-c8171e8537c6", + "workflow_outputs": [ + { + "label": null, + "output_name": "peptides", + "uuid": "1e7fbdde-967c-49f3-9e01-32fdffbf0e06" + }, + { + "label": null, + "output_name": "proteins", + "uuid": "d7d6276c-44bc-452e-8a36-51fcb9817f4c" + }, + { + "label": null, + "output_name": "log", + "uuid": "d4691eee-fb32-4278-8c8a-6e12c7cf7d3f" + } + ] + } + ], + "parent_id": "proteomics/encyclopedia", + "path": "topics/proteomics/tutorials/encyclopedia/workflows/main_workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "May19 EncyclopeDIA raw inputs", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-encyclopedia/versions/main-workflow", + "tutorial_id": "encyclopedia", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/encyclopedia/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/encyclopedia/workflows/main_workflow.html", + "version": 1, + "wfid": "proteomics-encyclopedia", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_quantify/encyclopedia_quantify/1.2.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/encyclopedia_searchtolib/encyclopedia_searchtolib/1.2.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2" + ], + "workflowhub_id": "1146" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4926594" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "diapysef", + "owner": "galaxyp", + "revisions": "8eed818f5d48", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maxquant", + "owner": "galaxyp", + "revisions": "37d669de2828", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_openswathassaygenerator", + "owner": "galaxyp", + "revisions": "df72ca515420", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_openswathassaygenerator", + "owner": "galaxyp", + "revisions": "2a9ff56cb279", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_openswathdecoygenerator", + "owner": "galaxyp", + "revisions": "965413f29bf5", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_openswathdecoygenerator", + "owner": "galaxyp", + "revisions": "f861ec9fbe59", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_targetedfileconverter", + "owner": "galaxyp", + "revisions": "aa62f8f48dd4", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_targetedfileconverter", + "owner": "galaxyp", + "revisions": "dd71e020e2aa", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: diapysef\n owner: galaxyp\n revisions: 8eed818f5d48\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maxquant\n owner: galaxyp\n revisions: 37d669de2828\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_openswathassaygenerator\n owner: galaxyp\n revisions: df72ca515420\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_openswathassaygenerator\n owner: galaxyp\n revisions: 2a9ff56cb279\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_openswathdecoygenerator\n owner: galaxyp\n revisions: 965413f29bf5\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_openswathdecoygenerator\n owner: galaxyp\n revisions: f861ec9fbe59\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_targetedfileconverter\n owner: galaxyp\n revisions: aa62f8f48dd4\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_targetedfileconverter\n owner: galaxyp\n revisions: dd71e020e2aa\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_lib_OSW/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "matthias.fahrner@uniklinik-freiburg.de", + "id": "matthias313", + "joined": "2019-03", + "name": "Matthias Fahrner", + "orcid": "0000-0001-7955-2518", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/matthias313/", + "twitter": "mfahrner313", + "url": "https://training.galaxyproject.org/training-material/api/contributors/matthias313.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + } + ], + "dir": "topics/proteomics/tutorials/DIA_lib_OSW", + "edam_operation": [ + "Visualisation", + "Imputation", + "Heat map generation", + "Standardisation and normalisation", + "Principal component plotting", + "Protein quantification", + "Clustering", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/DIA_lib_OSW", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "MaxQuant, diapysef and OpenSwath tools enable the generation of spectral libraries from DDA data", + "Generated spectral libraries can be used for the analysis of DIA data" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Generating a spectral library from data dependent acquisition (DDA) MS data", + "Understanding DIA data principles and characteristics", + "Optimizing and refining a spectral library for the analysis of DIA data" + ], + "pageviews": 4900, + "pub_date": "2020-12-02", + "questions": [ + "How does the peptide identification work in data independent acquisition (DIA) mass spectrometry (MS) data?", + "What is a spectral library and how to generate a spectral library using Maxquant, diapysef and OpenSwath tools?" + ], + "short_id": "T00212", + "short_tools": [ + "OpenSwathAssayGenerator", + "OpenSwathDecoyGenerator", + "maxquant", + "TargetedFileConverter", + "Filter1", + "diapysef" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "DIA" + ], + "time_estimation": "1H", + "title": "Library Generation for DIA Analysis", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/diapysef/diapysef/0.3.5.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathassaygenerator/OpenSwathAssayGenerator/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathassaygenerator/OpenSwathAssayGenerator/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathdecoygenerator/OpenSwathDecoyGenerator/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathdecoygenerator/OpenSwathDecoyGenerator/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_targetedfileconverter/TargetedFileConverter/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_targetedfileconverter/TargetedFileConverter/2.6+galaxy0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "DIA_lib_OSW", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/DIA_lib_OSW/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_lib_OSW/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_lib_OSW/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 84, + "visitors": 3696, + "workflows": [ + { + "creators": [], + "description": "DIA library Training HEK Ecoli data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHEK_Ecoli_exp_design.txt\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\niRTassays.tsv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nFASTA collection\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nDDA_data collection\"]\n 4[label=\"MaxQuant\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Filter\"]\n 4 -> 5 [label=\"evidence\"]\n 6[label=\"Filter\"]\n 4 -> 6 [label=\"msms\"]\n 7[label=\"diapysef library generation\"]\n 5 -> 7 [label=\"out_file1\"]\n 1 -> 7 [label=\"output\"]\n 6 -> 7 [label=\"out_file1\"]\n 8[label=\"OpenSwathAssayGenerator\"]\n 7 -> 8 [label=\"output_tabular\"]\n 9[label=\"OpenSwathDecoyGenerator\"]\n 8 -> 9 [label=\"out\"]\n 10[label=\"TargetedFileConverter\"]\n 9 -> 10 [label=\"out\"]\n}", + "history": [ + { + "hash": "15a13c3667af0db6a6ca380ca1b998c9faf625d3", + "message": "updated workflow annotation and name", + "num": 2, + "short_hash": "15a13c366", + "unix": "1606931443" + }, + { + "hash": "e8f20c190bc7a0d319835969a36114d939bd4dce", + "message": "generated three tutorials on DIA data analysis in galaxy", + "num": 1, + "short_hash": "e8f20c190", + "unix": "1606930318" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "HEK_Ecoli_exp_design.txt" + } + ], + "label": "HEK_Ecoli_exp_design.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 253.1999969482422, + "height": 82.19999694824219, + "left": -302.5, + "right": -102.5, + "top": 171, + "width": 200, + "x": -302.5, + "y": 171 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b7a2d992-bc43-4699-8914-4315558acf72", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "be397353-5730-4e2d-a975-5342da357935" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "iRTassays.tsv" + } + ], + "label": "iRTassays.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 369.1999969482422, + "height": 82.19999694824219, + "left": -347.5, + "right": -147.5, + "top": 287, + "width": 200, + "x": -347.5, + "y": 287 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "2020e579-6339-4c24-baf0-556c6e07d94e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "facf90b8-ddac-410e-a894-c966b56f21a2" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "FASTA collection" + } + ], + "label": "FASTA collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 478.1999969482422, + "height": 82.19999694824219, + "left": -337.5, + "right": -137.5, + "top": 396, + "width": 200, + "x": -337.5, + "y": 396 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "b990e20a-52da-44de-9a00-22ae2e400e5e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7867b0df-a52a-4c04-a488-c03e1db17631" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DDA_data collection" + } + ], + "label": "DDA_data collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 608.1999969482422, + "height": 82.19999694824219, + "left": -344.5, + "right": -144.5, + "top": 526, + "width": 200, + "x": -344.5, + "y": 526 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2a32fc5d-36c4-46ee-a2cd-b80be12da5e3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "14a26fc5-5e3e-4bca-84fc-057c6f828155" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nHEK_Ecoli_exp_design.txt\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\niRTassays.tsv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nFASTA collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Collection\\nDDA_data collection\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"MaxQuant\"];\n 2 -->|output| 4;\n 3 -->|output| 4;\n 0 -->|output| 4;\n 5[\"Filter\"];\n 4 -->|evidence| 5;\n 6[\"Filter\"];\n 4 -->|msms| 6;\n 7[\"diapysef library generation\"];\n 5 -->|out_file1| 7;\n 1 -->|output| 7;\n 6 -->|out_file1| 7;\n 8[\"OpenSwathAssayGenerator\"];\n 7 -->|output_tabular| 8;\n 9[\"OpenSwathDecoyGenerator\"];\n 8 -->|out| 9;\n 10[\"TargetedFileConverter\"];\n 9 -->|out| 10;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "DIA_lib_OSW", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "HEK_Ecoli_exp_design.txt" + } + ], + "label": "HEK_Ecoli_exp_design.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 253.1999969482422, + "height": 82.19999694824219, + "left": -302.5, + "right": -102.5, + "top": 171, + "width": 200, + "x": -302.5, + "y": 171 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b7a2d992-bc43-4699-8914-4315558acf72", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "be397353-5730-4e2d-a975-5342da357935" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "iRTassays.tsv" + } + ], + "label": "iRTassays.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 369.1999969482422, + "height": 82.19999694824219, + "left": -347.5, + "right": -147.5, + "top": 287, + "width": 200, + "x": -347.5, + "y": 287 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "2020e579-6339-4c24-baf0-556c6e07d94e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "facf90b8-ddac-410e-a894-c966b56f21a2" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "FASTA collection" + } + ], + "label": "FASTA collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 478.1999969482422, + "height": 82.19999694824219, + "left": -337.5, + "right": -137.5, + "top": 396, + "width": 200, + "x": -337.5, + "y": 396 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "b990e20a-52da-44de-9a00-22ae2e400e5e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7867b0df-a52a-4c04-a488-c03e1db17631" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DDA_data collection" + } + ], + "label": "DDA_data collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 608.1999969482422, + "height": 82.19999694824219, + "left": -344.5, + "right": -144.5, + "top": 526, + "width": 200, + "x": -344.5, + "y": 526 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2a32fc5d-36c4-46ee-a2cd-b80be12da5e3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "14a26fc5-5e3e-4bca-84fc-057c6f828155" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3", + "errors": null, + "id": 4, + "input_connections": { + "input_opts|fasta_files": { + "id": 2, + "output_name": "output" + }, + "paramGroups_0|files": { + "id": 3, + "output_name": "output" + }, + "search_opts|template": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MaxQuant", + "outputs": [ + { + "name": "proteinGroups", + "type": "tabular" + }, + { + "name": "mqpar", + "type": "xml" + }, + { + "name": "peptides", + "type": "tabular" + }, + { + "name": "evidence", + "type": "tabular" + }, + { + "name": "msms", + "type": "tabular" + }, + { + "name": "ptxqc_report", + "type": "pdf" + } + ], + "position": { + "bottom": 681, + "height": 510, + "left": -82.5, + "right": 117.5, + "top": 171, + "width": 200, + "x": -82.5, + "y": 171 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3", + "tool_shed_repository": { + "changeset_revision": "ea0a1d50c83f", + "name": "maxquant", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_opts\": {\"ftype\": \".thermo.raw\", \"fasta_files\": {\"__class__\": \"ConnectedValue\"}, \"identifier_parse_rule\": \">([^ ]*)\", \"description_parse_rule\": \"^>.*\\\\|.*\\\\|[^ ]+ (.*) OS.*$\"}, \"output_opts\": {\"dry_run\": \"false\", \"output\": [\"proteinGroups\", \"mqpar\", \"peptides\", \"evidence\", \"msms\"]}, \"paramGroups\": [{\"__index__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}, \"maxMissedCleavages\": \"1\", \"fixedModifications\": [\"Carbamidomethyl (C)\"], \"variableModifications\": [\"Oxidation (M)\"], \"enzymes\": [\"Trypsin/P\"], \"digestion_mode\": \"0\", \"quant_method\": {\"select_quant_method\": \"\", \"__current_case__\": 0}}], \"protein_quant\": {\"peptides_for_quantification\": \"1\", \"only_unmod_prot\": {\"unmod_prot\": \"False\", \"__current_case__\": 1}, \"lfq_opts\": {\"separateLfq\": \"false\", \"lfqStabilizeLargeRatios\": \"true\", \"lfqRequireMsms\": \"true\", \"do_ibaq\": {\"ibaq\": \"False\", \"__current_case__\": 1}, \"advancedSiteIntensities\": \"true\"}}, \"qc\": {\"do_it\": \"true\", \"__current_case__\": 0, \"parameters\": \"true\", \"summary\": \"true\", \"proteingroups\": \"true\", \"evidence\": \"true\", \"msms\": \"true\", \"msmsscans\": \"true\"}, \"search_opts\": {\"template\": {\"__class__\": \"ConnectedValue\"}, \"min_peptide_len\": \"7\", \"max_peptide_mass\": \"4600\", \"min_unique_pep\": \"1\", \"calc_peak_properties\": \"false\", \"match_between_runs\": \"true\", \"incl_contaminants\": \"true\", \"decoy_mode\": \"revert\", \"psm_fdr\": \"0.01\", \"protein_fdr\": \"0.01\", \"min_pep_length\": \"8\", \"max_pep_length\": \"25\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6.10.43+galaxy3", + "type": "tool", + "uuid": "0ee17766-fdba-4ff9-b274-5a3c6a7f1e3d", + "workflow_outputs": [ + { + "label": null, + "output_name": "proteinGroups", + "uuid": "59c88bb8-68af-43df-991b-0a012cc639be" + }, + { + "label": null, + "output_name": "msms", + "uuid": "e1310278-385d-404f-b9ba-68d2fbd2dd25" + }, + { + "label": null, + "output_name": "evidence", + "uuid": "a9bef4a5-cdb4-4b74-a46e-fe7249f1e771" + }, + { + "label": null, + "output_name": "peptides", + "uuid": "c1a3b7df-3441-458c-9fef-8fdab2f19576" + }, + { + "label": null, + "output_name": "mqpar", + "uuid": "65605a07-5a17-4d31-b92b-afaf5dcb8837" + }, + { + "label": null, + "output_name": "ptxqc_report", + "uuid": "0b1667be-be49-4ea7-a3b2-48d099a44103" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "evidence" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 264.1999969482422, + "height": 93.19999694824219, + "left": 137.5, + "right": 337.5, + "top": 171, + "width": 200, + "x": 137.5, + "y": 171 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"len(c9.split(';')) < 2\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "22368d26-e6a2-41f8-99d2-321bddd04840", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "44b9a121-c925-41a9-945f-52c7c8aeceb9" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 4, + "output_name": "msms" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 384.1999969482422, + "height": 93.19999694824219, + "left": 137.5, + "right": 337.5, + "top": 291, + "width": 200, + "x": 137.5, + "y": 291 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"len(c12.split(';')) < 2\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "eb4fa570-9fdd-40a3-a980-f494cde96317", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "95eda6f0-e8b5-4cdc-8cf6-d6ed53933077" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/diapysef/diapysef/0.3.5.0", + "errors": null, + "id": 7, + "input_connections": { + "input_evidence": { + "id": 5, + "output_name": "out_file1" + }, + "input_irtassays": { + "id": 1, + "output_name": "output" + }, + "input_msms": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "diapysef library generation", + "outputs": [ + { + "name": "output_tabular", + "type": "tabular" + }, + { + "name": "output_pdf", + "type": "pdf" + } + ], + "position": { + "bottom": 559.3999938964844, + "height": 388.3999938964844, + "left": 357.5, + "right": 557.5, + "top": 171, + "width": 200, + "x": 357.5, + "y": 171 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/diapysef/diapysef/0.3.5.0", + "tool_shed_repository": { + "changeset_revision": "8eed818f5d48", + "name": "diapysef", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"alignment\": \"linear\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_evidence\": {\"__class__\": \"ConnectedValue\"}, \"input_irtassays\": {\"__class__\": \"ConnectedValue\"}, \"input_msms\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.5.0", + "type": "tool", + "uuid": "50c157a3-ceb5-4d34-aadf-a635f2d9c62c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_pdf", + "uuid": "3dde2b97-a71d-40e6-bfd5-a818577596c7" + }, + { + "label": null, + "output_name": "output_tabular", + "uuid": "9db078b5-7289-4de8-80e0-3af5466d5f4b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathassaygenerator/OpenSwathAssayGenerator/2.5+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "in": { + "id": 7, + "output_name": "output_tabular" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool OpenSwathAssayGenerator", + "name": "in" + }, + { + "description": "runtime parameter for tool OpenSwathAssayGenerator", + "name": "swath_windows_file" + }, + { + "description": "runtime parameter for tool OpenSwathAssayGenerator", + "name": "unimod_file" + } + ], + "label": null, + "name": "OpenSwathAssayGenerator", + "outputs": [ + { + "name": "out", + "type": "data" + } + ], + "position": { + "bottom": 590.2000122070312, + "height": 419.20001220703125, + "left": 577.5, + "right": 777.5, + "top": 171, + "width": 200, + "x": 577.5, + "y": 171 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathassaygenerator/OpenSwathAssayGenerator/2.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2a9ff56cb279", + "name": "openms_openswathassaygenerator", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"adv_opts_cond\": {\"adv_opts_selector\": \"advanced\", \"__current_case__\": 1, \"max_num_alternative_localizations\": \"10000\", \"disable_identification_ms2_precursors\": \"false\", \"disable_identification_specific_losses\": \"false\", \"enable_identification_unspecific_losses\": \"false\", \"enable_swath_specifity\": \"false\", \"force\": \"false\", \"test\": \"False\"}, \"allowed_fragment_charges\": \"1,2,3,4\", \"allowed_fragment_types\": \"b,y\", \"enable_detection_specific_losses\": \"false\", \"enable_detection_unspecific_losses\": \"false\", \"enable_ipf\": \"false\", \"in\": {\"__class__\": \"RuntimeValue\"}, \"max_transitions\": \"6\", \"min_transitions\": \"6\", \"out_type\": \"tsv\", \"precursor_lower_mz_limit\": \"400.0\", \"precursor_mz_threshold\": \"0.015\", \"precursor_upper_mz_limit\": \"1000.0\", \"product_lower_mz_limit\": \"350.0\", \"product_mz_threshold\": \"0.015\", \"product_upper_mz_limit\": \"2000.0\", \"swath_windows_file\": {\"__class__\": \"RuntimeValue\"}, \"unimod_file\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "ed923bff-cb4e-4d69-9b95-90c85e709fa2", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "b759b71c-1b1a-4240-9ee5-8294990dc07d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathdecoygenerator/OpenSwathDecoyGenerator/2.5+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "in": { + "id": 8, + "output_name": "out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool OpenSwathDecoyGenerator", + "name": "in" + } + ], + "label": null, + "name": "OpenSwathDecoyGenerator", + "outputs": [ + { + "name": "out", + "type": "data" + } + ], + "position": { + "bottom": 345.8000030517578, + "height": 174.8000030517578, + "left": 797.5, + "right": 997.5, + "top": 171, + "width": 200, + "x": 797.5, + "y": 171 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathdecoygenerator/OpenSwathDecoyGenerator/2.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "f861ec9fbe59", + "name": "openms_openswathdecoygenerator", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"adv_opts_cond\": {\"adv_opts_selector\": \"advanced\", \"__current_case__\": 1, \"min_decoy_fraction\": \"0.8\", \"aim_decoy_fraction\": \"1.0\", \"shuffle_max_attempts\": \"30\", \"shuffle_sequence_identity_threshold\": \"0.5\", \"shift_precursor_mz_shift\": \"0.0\", \"shift_product_mz_shift\": \"20.0\", \"product_mz_threshold\": \"0.015\", \"allowed_fragment_types\": \"b,y\", \"allowed_fragment_charges\": \"1,2,3,4\", \"enable_detection_specific_losses\": \"false\", \"enable_detection_unspecific_losses\": \"false\", \"separate\": \"false\", \"force\": \"false\", \"test\": \"False\"}, \"decoy_tag\": \"DECOY_\", \"in\": {\"__class__\": \"RuntimeValue\"}, \"method\": \"shuffle\", \"out_type\": \"tsv\", \"switchKR\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "fb0b6f0e-4a95-4fa0-80d3-8a6dfa0edf25", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "c068a0cc-c6e9-44ac-bc64-9714b89841f7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_targetedfileconverter/TargetedFileConverter/2.5+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "in": { + "id": 9, + "output_name": "out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool TargetedFileConverter", + "name": "in" + } + ], + "label": null, + "name": "TargetedFileConverter", + "outputs": [ + { + "name": "out", + "type": "data" + } + ], + "position": { + "bottom": 325.3999938964844, + "height": 154.39999389648438, + "left": 1017.5, + "right": 1217.5, + "top": 171, + "width": 200, + "x": 1017.5, + "y": 171 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_targetedfileconverter/TargetedFileConverter/2.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "dd71e020e2aa", + "name": "openms_targetedfileconverter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"adv_opts_cond\": {\"adv_opts_selector\": \"advanced\", \"__current_case__\": 1, \"legacy_traml_id\": \"false\", \"force\": \"false\", \"test\": \"False\"}, \"algorithm\": {\"retentionTimeInterpretation\": \"iRT\", \"override_group_label_check\": \"false\", \"force_invalid_mods\": \"false\"}, \"in\": {\"__class__\": \"RuntimeValue\"}, \"out_type\": \"pqp\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "c91c0e6d-282a-46ae-bb47-1425f1b0f1f3", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "5721be8a-32ce-4d4d-8d50-6deeae3b61d2" + } + ] + } + ], + "parent_id": "proteomics/DIA_lib_OSW", + "path": "topics/proteomics/tutorials/DIA_lib_OSW/workflows/Galaxy-Workflow-DIA_lib_Training_HEK_Ecoli_3_EG_data.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "DIA_lib_OSW", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-DIA_lib_OSW/versions/galaxy-workflow-dia-lib-training-hek-ecoli-3-eg-data", + "tutorial_id": "DIA_lib_OSW", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_lib_OSW/workflows/Galaxy-Workflow-DIA_lib_Training_HEK_Ecoli_3_EG_data.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_lib_OSW/workflows/Galaxy-Workflow-DIA_lib_Training_HEK_Ecoli_3_EG_data.html", + "version": 1, + "wfid": "proteomics-DIA_lib_OSW", + "wfname": "galaxy-workflow-dia-lib-training-hek-ecoli-3-eg-data", + "workflow": "Galaxy-Workflow-DIA_lib_Training_HEK_Ecoli_3_EG_data.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/diapysef/diapysef/0.3.5.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathassaygenerator/OpenSwathAssayGenerator/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathdecoygenerator/OpenSwathDecoyGenerator/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_targetedfileconverter/TargetedFileConverter/2.5+galaxy0" + ], + "workflowhub_id": "1224" + } + ], + "zenodo_link": "https://zenodo.org/record/4293493" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "pdaug_addclasslabel", + "owner": "jay", + "revisions": "7160bfd77aef", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_basic_plots", + "owner": "jay", + "revisions": "15b6eec94c40", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_merge_dataframes", + "owner": "jay", + "revisions": "2dbfb42d34bc", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_ml_models", + "owner": "jay", + "revisions": "aa0b1cb1260c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pdaug_sequence_property_based_descriptors", + "owner": "jay", + "revisions": "187c6f2d3b55", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: pdaug_addclasslabel\n owner: jay\n revisions: 7160bfd77aef\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_basic_plots\n owner: jay\n revisions: 15b6eec94c40\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_merge_dataframes\n owner: jay\n revisions: 2dbfb42d34bc\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_ml_models\n owner: jay\n revisions: aa0b1cb1260c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pdaug_sequence_property_based_descriptors\n owner: jay\n revisions: 187c6f2d3b55\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/tutorial.json", + "contributors": [ + { + "id": "jaidevjoshi83", + "joined": "2020-11", + "name": "Jayadev Joshi", + "orcid": "0000-0001-7589-5230", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jaidevjoshi83/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jaidevjoshi83.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + } + ], + "dir": "topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/ml-modeling-of-anti-cancer-peptides", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn, how to calculate peptide descriptor", + "Learn, how to create training data set from features?", + "Assessment of best ML algorithm in predicting anticancer peptide" + ], + "pageviews": 1295, + "pub_date": "2021-01-22", + "questions": [ + "Which machine learning (ML) algorithm is superior in classifying anticancer peptides (ACPs) and non-anticancer peptides (non-ACPs)?" + ], + "short_id": "T00225", + "short_tools": [ + "pdaug_sequence_property_based_descriptors", + "pdaug_basic_plots", + "pdaug_ml_models", + "pdaug_merge_dataframes", + "pdaug_addclasslabel" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "property-prediction", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "ML", + "cancer" + ], + "time_estimation": "30m", + "title": "Machine Learning Modeling of Anticancer Peptides", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_addclasslabel/pdaug_addclasslabel/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_basic_plots/pdaug_basic_plots/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_merge_dataframes/pdaug_merge_dataframes/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_ml_models/pdaug_ml_models/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_sequence_property_based_descriptors/pdaug_sequence_property_based_descriptors/0.1.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ml-modeling-of-anti-cancer-peptides", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 118, + "visitors": 845, + "workflows": [ + { + "creators": [], + "description": "ML Modeling of Anti-cancer Peptides", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nACPs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nnon-ACPs\"]\n 2[label=\"PDAUG Sequence Property Based Descriptors\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"PDAUG Sequence Property Based Descriptors\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"PDAUG Add Class Label\"]\n 2 -> 4 [label=\"output1\"]\n 5[label=\"PDAUG Add Class Label\"]\n 3 -> 5 [label=\"output1\"]\n 6[label=\"PDAUG Merge Dataframes\"]\n 4 -> 6 [label=\"OutFile1\"]\n 5 -> 6 [label=\"OutFile1\"]\n 7[label=\"PDAUG ML Models\"]\n 6 -> 7 [label=\"output1\"]\n 8[label=\"PDAUG ML Models\"]\n 6 -> 8 [label=\"output1\"]\n 9[label=\"PDAUG ML Models\"]\n 6 -> 9 [label=\"output1\"]\n 10[label=\"PDAUG ML Models\"]\n 6 -> 10 [label=\"output1\"]\n 11[label=\"PDAUG ML Models\"]\n 6 -> 11 [label=\"output1\"]\n 12[label=\"PDAUG ML Models\"]\n 6 -> 12 [label=\"output1\"]\n 13[label=\"PDAUG Merge Dataframes\"]\n 7 -> 13 [label=\"output1\"]\n 9 -> 13 [label=\"output1\"]\n 8 -> 13 [label=\"output1\"]\n 10 -> 13 [label=\"output1\"]\n 11 -> 13 [label=\"output1\"]\n 12 -> 13 [label=\"output1\"]\n 14[label=\"PDAUG Basic Plots\"]\n 13 -> 14 [label=\"output1\"]\n}", + "history": [ + { + "hash": "c6cb67762f0c2d329bb52c6e6fb805df376f9ea0", + "message": "Tutorials for PDAUG tool suite (#2150)", + "num": 1, + "short_hash": "c6cb67762", + "unix": "1611340147" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ACPs" + } + ], + "label": "ACPs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 136.59375, + "top": 125.359375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "471cb99c-89a3-4e6e-930a-b344d2b44b14", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6b2eaf3c-5598-44ce-a7e8-5f6e262c92b0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "non-ACPs" + } + ], + "label": "non-ACPs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 134, + "top": 202.328125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1690c4bb-afa2-47cf-9a34-381d59ac348d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6449070c-3e6b-4088-98a4-dcb7449bf279" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nACPs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nnon-ACPs\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"PDAUG Sequence Property Based Descriptors\"];\n 0 -->|output| 2;\n 3[\"PDAUG Sequence Property Based Descriptors\"];\n 1 -->|output| 3;\n 4[\"PDAUG Add Class Label\"];\n 2 -->|output1| 4;\n 5[\"PDAUG Add Class Label\"];\n 3 -->|output1| 5;\n 6[\"PDAUG Merge Dataframes\"];\n 4 -->|OutFile1| 6;\n 5 -->|OutFile1| 6;\n 7[\"PDAUG ML Models\"];\n 6 -->|output1| 7;\n 8[\"PDAUG ML Models\"];\n 6 -->|output1| 8;\n 9[\"PDAUG ML Models\"];\n 6 -->|output1| 9;\n 10[\"PDAUG ML Models\"];\n 6 -->|output1| 10;\n 11[\"PDAUG ML Models\"];\n 6 -->|output1| 11;\n 12[\"PDAUG ML Models\"];\n 6 -->|output1| 12;\n 13[\"PDAUG Merge Dataframes\"];\n 7 -->|output1| 13;\n 9 -->|output1| 13;\n 8 -->|output1| 13;\n 10 -->|output1| 13;\n 11 -->|output1| 13;\n 12 -->|output1| 13;\n 14[\"PDAUG Basic Plots\"];\n 13 -->|output1| 14;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "PeptideML", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ACPs" + } + ], + "label": "ACPs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 136.59375, + "top": 125.359375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "471cb99c-89a3-4e6e-930a-b344d2b44b14", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6b2eaf3c-5598-44ce-a7e8-5f6e262c92b0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "non-ACPs" + } + ], + "label": "non-ACPs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 134, + "top": 202.328125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1690c4bb-afa2-47cf-9a34-381d59ac348d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6449070c-3e6b-4088-98a4-dcb7449bf279" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_sequence_property_based_descriptors/pdaug_sequence_property_based_descriptors/0.1.0", + "errors": null, + "id": 2, + "input_connections": { + "input1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PDAUG Sequence Property Based Descriptors", + "outputs": [ + { + "name": "output1", + "type": "tabular" + } + ], + "position": { + "left": 325.609375, + "top": 142.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_sequence_property_based_descriptors/pdaug_sequence_property_based_descriptors/0.1.0", + "tool_shed_repository": { + "changeset_revision": "6b6aec52638d", + "name": "pdaug_sequence_property_based_descriptors", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"SelectDiscriptor\": {\"DesType\": \"CTD\", \"__current_case__\": 9}, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "d751bc15-62a7-4c2b-959d-ec32b7bf9929", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "4ce6e57c-1fb3-4ccb-857a-13f1a50e3fe7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_addclasslabel/pdaug_addclasslabel/0.1.0", + "errors": null, + "id": 4, + "input_connections": { + "input1": { + "id": 2, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "PDAUG Add Class Label", + "outputs": [ + { + "name": "OutFile1", + "type": "tabular" + } + ], + "position": { + "left": 517.234375, + "top": 142.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_addclasslabel/pdaug_addclasslabel/0.1.0", + "tool_shed_repository": { + "changeset_revision": "2df11ea23f10", + "name": "pdaug_addclasslabel", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"ClassLabel\": \"0\", \"ClassLabelTitle\": \"Class_label\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "37498ada-bad4-456d-91e6-f21a6fe98c5d", + "workflow_outputs": [ + { + "label": null, + "output_name": "OutFile1", + "uuid": "47d6dd33-c08f-4818-87f5-02eb73dc97b5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_merge_dataframes/pdaug_merge_dataframes/0.1.0", + "errors": null, + "id": 6, + "input_connections": { + "input1": [ + { + "id": 4, + "output_name": "OutFile1" + }, + { + "id": 5, + "output_name": "OutFile1" + } + ] + }, + "inputs": [], + "label": null, + "name": "PDAUG Merge Dataframes", + "outputs": [ + { + "name": "output1", + "type": "tabular" + } + ], + "position": { + "left": 708.859375, + "top": 142.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_merge_dataframes/pdaug_merge_dataframes/0.1.0", + "tool_shed_repository": { + "changeset_revision": "5bb52d4bf172", + "name": "pdaug_merge_dataframes", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "f8d1b048-a859-40d0-9572-f3a21230229d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "98bb1ac8-f0a1-48fa-9e77-55f0df88c35f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_ml_models/pdaug_ml_models/0.1.0", + "errors": null, + "id": 7, + "input_connections": { + "input1": { + "id": 6, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool PDAUG ML Models", + "name": "input1" + } + ], + "label": null, + "name": "PDAUG ML Models", + "outputs": [ + { + "name": "output1", + "type": "tabular" + }, + { + "name": "output2", + "type": "html" + } + ], + "position": { + "left": 900.46875, + "top": 142.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_ml_models/pdaug_ml_models/0.1.0", + "tool_shed_repository": { + "changeset_revision": "0973f093d98f", + "name": "pdaug_ml_models", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"SelMLAlgo\": {\"MLAlgo\": \"SVMC\", \"__current_case__\": 0, \"settings\": {\"advanced\": \"simple\", \"__current_case__\": 0}}, \"TestMethods\": {\"SelTestMethods\": \"Internal\", \"__current_case__\": 0, \"nFolds\": \"10\"}, \"input1\": {\"__class__\": \"RuntimeValue\"}, \"scalling\": \"Min_Max\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "670d3053-75fe-4e1f-80a3-ca5a8d46448c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "bf8f300a-b4d8-448b-9b6a-ce55bb5cb1a1" + }, + { + "label": null, + "output_name": "output2", + "uuid": "18a6b311-3cf4-4d6e-9fea-62b9633a9953" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_merge_dataframes/pdaug_merge_dataframes/0.1.0", + "errors": null, + "id": 13, + "input_connections": { + "input1": [ + { + "id": 7, + "output_name": "output1" + }, + { + "id": 9, + "output_name": "output1" + }, + { + "id": 8, + "output_name": "output1" + }, + { + "id": 10, + "output_name": "output1" + }, + { + "id": 11, + "output_name": "output1" + }, + { + "id": 12, + "output_name": "output1" + } + ] + }, + "inputs": [], + "label": null, + "name": "PDAUG Merge Dataframes", + "outputs": [ + { + "name": "output1", + "type": "tabular" + } + ], + "position": { + "left": 1092.09375, + "top": 142.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_merge_dataframes/pdaug_merge_dataframes/0.1.0", + "tool_shed_repository": { + "changeset_revision": "5bb52d4bf172", + "name": "pdaug_merge_dataframes", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "c5de6791-d223-450d-af1b-df0334d30290", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "1261809f-eb67-4012-84bb-24770f3177a2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_basic_plots/pdaug_basic_plots/0.1.0", + "errors": null, + "id": 14, + "input_connections": { + "SelPlotting|InFile": { + "id": 13, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "PDAUG Basic Plots", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 1283.6875, + "top": 142.703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/jay/pdaug_basic_plots/pdaug_basic_plots/0.1.0", + "tool_shed_repository": { + "changeset_revision": "7d247e27ff11", + "name": "pdaug_basic_plots", + "owner": "jay", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"SelPlotting\": {\"Plot\": \"HeatMap\", \"__current_case__\": 0, \"InFile\": {\"__class__\": \"ConnectedValue\"}, \"IndexColumn\": \"Algo\", \"x_label\": \"Performance measures\", \"y_label\": \"ML algorithms \"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0", + "type": "tool", + "uuid": "dad0ec0d-cef5-49f9-8592-f83bb8cb03e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8e28f651-ba58-43dc-b894-074fe90aa50a" + } + ] + } + ], + "parent_id": "proteomics/ml-modeling-of-anti-cancer-peptides", + "path": "topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/workflows/PeptideML.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "PeptideML", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-ml-modeling-of-anti-cancer-peptides/versions/peptideml", + "tutorial_id": "ml-modeling-of-anti-cancer-peptides", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/workflows/PeptideML.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/ml-modeling-of-anti-cancer-peptides/workflows/PeptideML.html", + "version": 1, + "wfid": "proteomics-ml-modeling-of-anti-cancer-peptides", + "wfname": "peptideml", + "workflow": "PeptideML.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_addclasslabel/pdaug_addclasslabel/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_basic_plots/pdaug_basic_plots/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_merge_dataframes/pdaug_merge_dataframes/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_ml_models/pdaug_ml_models/0.1.0", + "toolshed.g2.bx.psu.edu/repos/jay/pdaug_sequence_property_based_descriptors/pdaug_sequence_property_based_descriptors/0.1.0" + ], + "workflowhub_id": "1196" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4111092" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/ntails/tutorial.json", + "contributors": [ + { + "email": "sigloch+github@mailbox.org", + "former_affiliations": [ + "uni-freiburg" + ], + "id": "stortebecker", + "joined": "2017-09", + "name": "Florian Christoph Sigloch", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stortebecker/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stortebecker.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/proteomics/tutorials/ntails", + "edam_ontology": [ + "topic_0121" + ], + "edam_operation": [], + "edam_topic": [ + "Proteomics" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/ntails", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "N-TAILS enriches natural protein N-termini and neo-N-termini.", + "neo-N-termini are typically generated by protease cleavage.", + "N-TAILS can be used for analysis of protease cleavage." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-05-16", + "objectives": [ + "Run an N-TAILS data analysis." + ], + "pageviews": 972, + "pub_date": "2017-02-14", + "questions": [ + "How can protein N-termini be enriched for LC-MS/MS?", + "How to analyze the LC-MS/MS data?" + ], + "short_id": "T00226", + "short_tools": [ + "MzTabExporter", + "FileMerger", + "FalseDiscoveryRate", + "IDConflictResolver", + "MSGFPlusAdapter", + "FeatureFinderMultiplex", + "PeptideIndexer", + "ConsensusID", + "HighResPrecursorMassCorrector", + "FileFilter", + "IDFilter", + "IDMerger", + "IDMapper" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "special", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [], + "time_estimation": "1h", + "title": "Detection and quantitation of N-termini (degradomics) via N-TAILS", + "tools": [ + "ConsensusID", + "FalseDiscoveryRate", + "FeatureFinderMultiplex", + "FileFilter", + "FileMerger", + "HighResPrecursorMassCorrector", + "IDConflictResolver", + "IDFilter", + "IDMapper", + "IDMerger", + "MSGFPlusAdapter", + "MzTabExporter", + "PeptideIndexer" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ntails", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/ntails/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/ntails/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/ntails/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 86, + "visitors": 664, + "workflows": [ + { + "creators": [], + "description": "Detection and quantitation of N-termini (degradomics) via N-TAILS", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[label=\"FeatureFinderMultiplex\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"HighResPrecursorMassCorrector\"]\n 2 -> 3 [label=\"param_out_features\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"MSGFPlusAdapter\"]\n 1 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"param_out\"]\n 5[label=\"MSGFPlusAdapter\"]\n 1 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"param_out\"]\n 6[label=\"MSGFPlusAdapter\"]\n 3 -> 6 [label=\"param_out\"]\n 7[label=\"PeptideIndexer\"]\n 1 -> 7 [label=\"output\"]\n 4 -> 7 [label=\"param_out\"]\n 8[label=\"PeptideIndexer\"]\n 1 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"param_out\"]\n 9[label=\"PeptideIndexer\"]\n 1 -> 9 [label=\"output\"]\n 6 -> 9 [label=\"param_out\"]\n 10[label=\"IDMerger\"]\n 7 -> 10 [label=\"param_out\"]\n 8 -> 10 [label=\"param_out\"]\n 9 -> 10 [label=\"param_out\"]\n 11[label=\"ConsensusID\"]\n 10 -> 11 [label=\"param_out\"]\n 12[label=\"PeptideIndexer\"]\n 1 -> 12 [label=\"output\"]\n 11 -> 12 [label=\"param_out\"]\n 13[label=\"FalseDiscoveryRate\"]\n 12 -> 13 [label=\"param_out\"]\n 14[label=\"IDFilter\"]\n 13 -> 14 [label=\"param_out\"]\n 15[label=\"IDMapper\"]\n 14 -> 15 [label=\"param_out\"]\n 2 -> 15 [label=\"param_out\"]\n 16[label=\"IDConflictResolver\"]\n 15 -> 16 [label=\"param_out\"]\n 17[label=\"FileFilter\"]\n 16 -> 17 [label=\"param_out\"]\n 18[label=\"FileMerger\"]\n 17 -> 18 [label=\"param_out\"]\n 19[label=\"MzTabExporter\"]\n 18 -> 19 [label=\"param_out\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "2c1271b670d336517fb123fb632ce13c93c40465", + "message": "Restructure proteomics", + "num": 1, + "short_hash": "2c1271b67", + "unix": "1495544862" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection (mzML files)" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 199.9666748046875, + "top": 435.20001220703125 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection (mzML files)\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "7bf13771-4620-4563-b972-efaf74887ce5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "11ba0e33-3924-43e2-a8f9-85e0e6c12cfe" + } + ] + }, + { + "annotation": "", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "UniProt database (FASTA file)" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 241, + "top": 603.2166748046875 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"UniProt database (FASTA file)\"}", + "tool_version": null, + "type": "data_input", + "uuid": "05f5cbd8-8459-47a0-8faf-95c0821f25fc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3d25e478-d053-4d4e-9c7f-92fec2d6b09c" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"FeatureFinderMultiplex\"];\n 0 -->|output| 2;\n 3[\"HighResPrecursorMassCorrector\"];\n 2 -->|param_out_features| 3;\n 0 -->|output| 3;\n 4[\"MSGFPlusAdapter\"];\n 1 -->|output| 4;\n 3 -->|param_out| 4;\n 5[\"MSGFPlusAdapter\"];\n 1 -->|output| 5;\n 3 -->|param_out| 5;\n 6[\"MSGFPlusAdapter\"];\n 3 -->|param_out| 6;\n 7[\"PeptideIndexer\"];\n 1 -->|output| 7;\n 4 -->|param_out| 7;\n 8[\"PeptideIndexer\"];\n 1 -->|output| 8;\n 5 -->|param_out| 8;\n 9[\"PeptideIndexer\"];\n 1 -->|output| 9;\n 6 -->|param_out| 9;\n 10[\"IDMerger\"];\n 7 -->|param_out| 10;\n 8 -->|param_out| 10;\n 9 -->|param_out| 10;\n 11[\"ConsensusID\"];\n 10 -->|param_out| 11;\n 12[\"PeptideIndexer\"];\n 1 -->|output| 12;\n 11 -->|param_out| 12;\n 13[\"FalseDiscoveryRate\"];\n 12 -->|param_out| 13;\n 14[\"IDFilter\"];\n 13 -->|param_out| 14;\n 15[\"IDMapper\"];\n 14 -->|param_out| 15;\n 2 -->|param_out| 15;\n 16[\"IDConflictResolver\"];\n 15 -->|param_out| 16;\n 17[\"FileFilter\"];\n 16 -->|param_out| 17;\n 18[\"FileMerger\"];\n 17 -->|param_out| 18;\n 19[\"MzTabExporter\"];\n 18 -->|param_out| 19;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Tails Triple Dimethyl OpenMS2.1", + "outputs": [ + { + "annotation": "", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection (mzML files)" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 199.9666748046875, + "top": 435.20001220703125 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection (mzML files)\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "7bf13771-4620-4563-b972-efaf74887ce5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "11ba0e33-3924-43e2-a8f9-85e0e6c12cfe" + } + ] + }, + { + "annotation": "", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "UniProt database (FASTA file)" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 241, + "top": 603.2166748046875 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"UniProt database (FASTA file)\"}", + "tool_version": null, + "type": "data_input", + "uuid": "05f5cbd8-8459-47a0-8faf-95c0821f25fc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3d25e478-d053-4d4e-9c7f-92fec2d6b09c" + } + ] + }, + { + "annotation": "", + "content_id": "FeatureFinderMultiplex", + "id": 2, + "input_connections": { + "param_in": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FeatureFinderMultiplex", + "name": "param_in" + } + ], + "label": null, + "name": "FeatureFinderMultiplex", + "outputs": [ + { + "name": "param_out", + "type": "consensusxml" + }, + { + "name": "param_out_features", + "type": "featurexml" + }, + { + "name": "param_out_mzq", + "type": "mzq" + } + ], + "position": { + "left": 1228.9666748046875, + "top": 1174.88330078125 + }, + "post_job_actions": { + "HideDatasetActionparam_out_mzq": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "param_out_mzq" + } + }, + "tool_errors": null, + "tool_id": "FeatureFinderMultiplex", + "tool_shed_repository": { + "changeset_revision": "ca88bd28f116", + "name": "openms_featurefindermultiplex", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_algorithm_averagine_similarity\": \"\\\"0.6\\\"\", \"param_algorithm_rt_min\": \"\\\"3.0\\\"\", \"__page__\": 0, \"param_algorithm_missed_cleavages\": \"\\\"2\\\"\", \"param_algorithm_peptide_similarity\": \"\\\"0.7\\\"\", \"adv_opts\": \"{\\\"param_algorithm_knock_out\\\": \\\"true\\\", \\\"param_labels_Dimethyl4\\\": \\\"32.056407\\\", \\\"param_algorithm_isotopes_per_peptide\\\": \\\"3:6\\\", \\\"param_labels_Lys4\\\": \\\"4.0251069836\\\", \\\"param_labels_Dimethyl0\\\": \\\"28.0313\\\", \\\"param_labels_Lys8\\\": \\\"8.0141988132\\\", \\\"param_labels_ICPL10\\\": \\\"115.0667\\\", \\\"param_labels_Lys6\\\": \\\"6.0201290268\\\", \\\"param_labels_Arg10\\\": \\\"10.0082686\\\", \\\"param_labels_Dimethyl8\\\": \\\"36.07567\\\", \\\"adv_opts_selector\\\": \\\"advanced\\\", \\\"param_labels_ICPL6\\\": \\\"111.041593\\\", \\\"param_force\\\": \\\"false\\\", \\\"param_labels_Dimethyl6\\\": \\\"34.063117\\\", \\\"param_labels_Arg6\\\": \\\"6.0201290268\\\", \\\"__current_case__\\\": 1, \\\"param_algorithm_averagine_type\\\": \\\"peptide\\\", \\\"param_labels_ICPL0\\\": \\\"105.021464\\\", \\\"param_labels_Leu3\\\": \\\"3.01883\\\", \\\"param_labels_ICPL4\\\": \\\"109.046571\\\", \\\"param_algorithm_averagine_similarity_scaling\\\": \\\"0.6\\\"}\", \"param_algorithm_mz_tolerance\": \"\\\"15.0\\\"\", \"param_algorithm_charge\": \"\\\"1:5\\\"\", \"param_algorithm_mz_unit\": \"\\\"ppm\\\"\", \"param_algorithm_labels\": \"\\\"[Dimethyl0][Dimethyl4][Dimethyl8]\\\"\", \"param_algorithm_intensity_cutoff\": \"\\\"10.0\\\"\", \"param_algorithm_rt_typical\": \"\\\"50.0\\\"\", \"__rerun_remap_job_id__\": null, \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "627672fc-feef-4e31-9208-182a27df2533", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "6e1e9231-52a0-4d05-9491-31f4b162d405" + }, + { + "label": null, + "output_name": "param_out_features", + "uuid": "a8b8b589-661b-49ca-9832-556069bf98bc" + } + ] + }, + { + "annotation": "", + "content_id": "HighResPrecursorMassCorrector", + "id": 3, + "input_connections": { + "param_feature_in": { + "id": 2, + "output_name": "param_out_features" + }, + "param_in": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool HighResPrecursorMassCorrector", + "name": "param_feature_in" + }, + { + "description": "runtime parameter for tool HighResPrecursorMassCorrector", + "name": "param_in" + } + ], + "label": null, + "name": "HighResPrecursorMassCorrector", + "outputs": [ + { + "name": "param_out", + "type": "mzml" + }, + { + "name": "param_out_csv", + "type": "tabular" + } + ], + "position": { + "left": 484.54998779296875, + "top": 151.1999969482422 + }, + "post_job_actions": { + "HideDatasetActionparam_out_csv": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "param_out_csv" + }, + "RenameDatasetActionparam_out": { + "action_arguments": { + "newname": "HighRes_out" + }, + "action_type": "RenameDatasetAction", + "output_name": "param_out" + } + }, + "tool_errors": null, + "tool_id": "HighResPrecursorMassCorrector", + "tool_shed_repository": { + "changeset_revision": "9e26f5c770f8", + "name": "openms_highresprecursormasscorrector", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": 0, \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_feature_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_feature_rt_tolerance\": \"\\\"15.0\\\"\", \"param_nearest_peak_mz_tolerance_unit\": \"\\\"ppm\\\"\", \"param_feature_mz_tolerance_unit\": \"\\\"ppm\\\"\", \"param_feature_mz_tolerance\": \"\\\"40.0\\\"\", \"param_feature_keep_original\": \"\\\"false\\\"\", \"param_feature_assign_all_matching\": \"\\\"false\\\"\", \"param_feature_believe_charge\": \"\\\"false\\\"\", \"param_nearest_peak_mz_tolerance\": \"\\\"0.0\\\"\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "3d7f4c8b-1896-4365-b41a-77b152ec84b4", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "be0344fb-dccf-4d28-a45e-9d1aded44e41" + } + ] + }, + { + "annotation": "", + "content_id": "MSGFPlusAdapter", + "id": 4, + "input_connections": { + "param_database": { + "id": 1, + "output_name": "output" + }, + "param_in": { + "id": 3, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSGFPlusAdapter", + "name": "param_in" + }, + { + "description": "runtime parameter for tool MSGFPlusAdapter", + "name": "param_database" + } + ], + "label": null, + "name": "MSGFPlusAdapter", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + }, + { + "name": "param_mzid_out", + "type": "mzid" + } + ], + "position": { + "left": 849.0500030517578, + "top": 186.21665954589844 + }, + "post_job_actions": { + "HideDatasetActionparam_mzid_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "param_mzid_out" + } + }, + "tool_errors": null, + "tool_id": "MSGFPlusAdapter", + "tool_shed_repository": { + "changeset_revision": "2b2a7551a857", + "name": "openms_msgfplusadapter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_java_executable\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_max_precursor_charge\": \"\\\"4\\\"\", \"param_min_precursor_charge\": \"\\\"2\\\"\", \"param_min_peptide_length\": \"\\\"7\\\"\", \"param_precursor_error_units\": \"\\\"ppm\\\"\", \"param_protocol\": \"\\\"none\\\"\", \"__page__\": 0, \"__rerun_remap_job_id__\": null, \"param_tryptic\": \"\\\"semi\\\"\", \"param_max_mods\": \"\\\"3\\\"\", \"rep_param_fixed_modifications\": \"[{\\\"__index__\\\": 0, \\\"param_fixed_modifications\\\": \\\"Carbamidomethyl (C)\\\"}, {\\\"__index__\\\": 1, \\\"param_fixed_modifications\\\": \\\"Dimethyl (K)\\\"}, {\\\"__index__\\\": 2, \\\"param_fixed_modifications\\\": \\\"Dimethyl (N-term)\\\"}]\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_add_decoys\": \"\\\"false\\\"\", \"param_matches_per_spec\": \"\\\"1\\\"\", \"param_max_peptide_length\": \"\\\"40\\\"\", \"param_instrument\": \"\\\"Q_Exactive\\\"\", \"param_precursor_mass_tolerance\": \"\\\"20.0\\\"\", \"rep_param_variable_modifications\": \"[]\", \"param_add_features\": \"\\\"true\\\"\", \"param_enzyme\": \"\\\"ArgC\\\"\", \"param_database\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_fragment_method\": \"\\\"from_spectrum\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"param_java_memory\": \"\\\"3500\\\"\", \"param_isotope_error_range\": \"\\\"0,0\\\"\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "cc98863a-5f1a-42ef-bd30-a7c6002f3efa", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "7066dfd9-e896-462b-8877-68580da0cc08" + } + ] + }, + { + "annotation": "", + "content_id": "MSGFPlusAdapter", + "id": 5, + "input_connections": { + "param_database": { + "id": 1, + "output_name": "output" + }, + "param_in": { + "id": 3, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSGFPlusAdapter", + "name": "param_in" + }, + { + "description": "runtime parameter for tool MSGFPlusAdapter", + "name": "param_database" + } + ], + "label": null, + "name": "MSGFPlusAdapter", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + }, + { + "name": "param_mzid_out", + "type": "mzid" + } + ], + "position": { + "left": 887, + "top": 394.20001220703125 + }, + "post_job_actions": { + "HideDatasetActionparam_mzid_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "param_mzid_out" + } + }, + "tool_errors": null, + "tool_id": "MSGFPlusAdapter", + "tool_shed_repository": { + "changeset_revision": "2b2a7551a857", + "name": "openms_msgfplusadapter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_java_executable\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_max_precursor_charge\": \"\\\"4\\\"\", \"param_min_precursor_charge\": \"\\\"2\\\"\", \"param_min_peptide_length\": \"\\\"7\\\"\", \"param_precursor_error_units\": \"\\\"ppm\\\"\", \"param_protocol\": \"\\\"none\\\"\", \"__page__\": 0, \"__rerun_remap_job_id__\": null, \"param_tryptic\": \"\\\"semi\\\"\", \"param_max_mods\": \"\\\"3\\\"\", \"rep_param_fixed_modifications\": \"[{\\\"__index__\\\": 0, \\\"param_fixed_modifications\\\": \\\"Carbamidomethyl (C)\\\"}, {\\\"__index__\\\": 1, \\\"param_fixed_modifications\\\": \\\"Dimethyl:2H(4) (K)\\\"}, {\\\"__index__\\\": 2, \\\"param_fixed_modifications\\\": \\\"Dimethyl:2H(4) (N-term)\\\"}]\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_add_decoys\": \"\\\"false\\\"\", \"param_matches_per_spec\": \"\\\"1\\\"\", \"param_max_peptide_length\": \"\\\"40\\\"\", \"param_instrument\": \"\\\"Q_Exactive\\\"\", \"param_precursor_mass_tolerance\": \"\\\"20.0\\\"\", \"rep_param_variable_modifications\": \"[]\", \"param_add_features\": \"\\\"true\\\"\", \"param_enzyme\": \"\\\"ArgC\\\"\", \"param_database\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_fragment_method\": \"\\\"from_spectrum\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"param_java_memory\": \"\\\"3500\\\"\", \"param_isotope_error_range\": \"\\\"0,0\\\"\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "3a2ce94c-c7c0-43e8-a95a-29773f41ff83", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "7d1226d5-80ff-4f81-b2f8-1298517f98f8" + } + ] + }, + { + "annotation": "", + "content_id": "MSGFPlusAdapter", + "id": 6, + "input_connections": { + "param_in": { + "id": 3, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSGFPlusAdapter", + "name": "param_in" + }, + { + "description": "runtime parameter for tool MSGFPlusAdapter", + "name": "param_database" + } + ], + "label": null, + "name": "MSGFPlusAdapter", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + }, + { + "name": "param_mzid_out", + "type": "mzid" + } + ], + "position": { + "left": 892.5, + "top": 590 + }, + "post_job_actions": { + "HideDatasetActionparam_mzid_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "param_mzid_out" + } + }, + "tool_errors": null, + "tool_id": "MSGFPlusAdapter", + "tool_shed_repository": { + "changeset_revision": "2b2a7551a857", + "name": "openms_msgfplusadapter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_java_executable\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_max_precursor_charge\": \"\\\"4\\\"\", \"param_min_precursor_charge\": \"\\\"2\\\"\", \"param_min_peptide_length\": \"\\\"7\\\"\", \"param_precursor_error_units\": \"\\\"ppm\\\"\", \"param_protocol\": \"\\\"none\\\"\", \"__page__\": 0, \"__rerun_remap_job_id__\": null, \"param_tryptic\": \"\\\"semi\\\"\", \"param_max_mods\": \"\\\"3\\\"\", \"rep_param_fixed_modifications\": \"[{\\\"__index__\\\": 0, \\\"param_fixed_modifications\\\": \\\"Carbamidomethyl (C)\\\"}, {\\\"__index__\\\": 1, \\\"param_fixed_modifications\\\": \\\"Dimethyl:2H(6)13C(2) (K)\\\"}, {\\\"__index__\\\": 2, \\\"param_fixed_modifications\\\": \\\"Dimethyl:2H(6)13C(2) (N-term)\\\"}]\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_add_decoys\": \"\\\"false\\\"\", \"param_matches_per_spec\": \"\\\"1\\\"\", \"param_max_peptide_length\": \"\\\"40\\\"\", \"param_instrument\": \"\\\"Q_Exactive\\\"\", \"param_precursor_mass_tolerance\": \"\\\"20.0\\\"\", \"rep_param_variable_modifications\": \"[]\", \"param_add_features\": \"\\\"true\\\"\", \"param_enzyme\": \"\\\"ArgC\\\"\", \"param_database\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_fragment_method\": \"\\\"from_spectrum\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"param_java_memory\": \"\\\"3500\\\"\", \"param_isotope_error_range\": \"\\\"0,0\\\"\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "05593ca7-2056-4201-9ce7-60b4abc82ff5", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "22b3fa5a-a162-4ce1-8c07-8c3f84fc0551" + } + ] + }, + { + "annotation": "", + "content_id": "PeptideIndexer", + "id": 7, + "input_connections": { + "param_fasta": { + "id": 1, + "output_name": "output" + }, + "param_in": { + "id": 4, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool PeptideIndexer", + "name": "param_fasta" + }, + { + "description": "runtime parameter for tool PeptideIndexer", + "name": "param_in" + } + ], + "label": null, + "name": "PeptideIndexer", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + } + ], + "position": { + "left": 1191, + "top": 181.1999969482422 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "PeptideIndexer", + "tool_shed_repository": { + "changeset_revision": "539a3a4dcc9e", + "name": "openms_peptideindexer", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_write_protein_sequence\": \"\\\"true\\\"\", \"param_missing_decoy_action\": \"\\\"error\\\"\", \"param_filter_aaa_proteins\": \"\\\"false\\\"\", \"param_prefix\": \"\\\"true\\\"\", \"param_keep_unreferenced_proteins\": \"\\\"false\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__page__\": 0, \"param_allow_unmatched\": \"\\\"true\\\"\", \"param_decoy_string_position\": \"\\\"prefix\\\"\", \"param_mismatches_max\": \"\\\"0\\\"\", \"param_enzyme_name\": \"\\\"Trypsin/P\\\"\", \"param_enzyme_specificity\": \"\\\"semi\\\"\", \"param_decoy_string\": \"\\\"dec_\\\"\", \"__rerun_remap_job_id__\": null, \"param_write_protein_description\": \"\\\"true\\\"\", \"param_full_tolerant_search\": \"\\\"false\\\"\", \"param_fasta\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_aaa_max\": \"\\\"4\\\"\", \"param_annotate_proteins\": \"\\\"True\\\"\", \"param_IL_equivalent\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "6d75c013-51d3-49f5-8b26-876a8b1c06d5", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "92afc5d3-a20f-4f89-8b80-f6618ba430d0" + } + ] + }, + { + "annotation": "", + "content_id": "PeptideIndexer", + "id": 8, + "input_connections": { + "param_fasta": { + "id": 1, + "output_name": "output" + }, + "param_in": { + "id": 5, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool PeptideIndexer", + "name": "param_fasta" + }, + { + "description": "runtime parameter for tool PeptideIndexer", + "name": "param_in" + } + ], + "label": null, + "name": "PeptideIndexer", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + } + ], + "position": { + "left": 1155, + "top": 398.2166748046875 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "PeptideIndexer", + "tool_shed_repository": { + "changeset_revision": "539a3a4dcc9e", + "name": "openms_peptideindexer", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_write_protein_sequence\": \"\\\"true\\\"\", \"param_missing_decoy_action\": \"\\\"error\\\"\", \"param_filter_aaa_proteins\": \"\\\"false\\\"\", \"param_prefix\": \"\\\"true\\\"\", \"param_keep_unreferenced_proteins\": \"\\\"false\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__page__\": 0, \"param_allow_unmatched\": \"\\\"true\\\"\", \"param_decoy_string_position\": \"\\\"prefix\\\"\", \"param_mismatches_max\": \"\\\"0\\\"\", \"param_enzyme_name\": \"\\\"Trypsin/P\\\"\", \"param_enzyme_specificity\": \"\\\"semi\\\"\", \"param_decoy_string\": \"\\\"dec_\\\"\", \"__rerun_remap_job_id__\": null, \"param_write_protein_description\": \"\\\"true\\\"\", \"param_full_tolerant_search\": \"\\\"false\\\"\", \"param_fasta\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_aaa_max\": \"\\\"4\\\"\", \"param_annotate_proteins\": \"\\\"True\\\"\", \"param_IL_equivalent\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "8cd335cb-9d51-4c04-99b3-38fed4f3c3b6", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "9774a600-1f91-4927-932a-b887a1b6f73a" + } + ] + }, + { + "annotation": "", + "content_id": "IDMerger", + "id": 10, + "input_connections": { + "param_in": [ + { + "id": 7, + "output_name": "param_out" + }, + { + "id": 8, + "output_name": "param_out" + }, + { + "id": 9, + "output_name": "param_out" + } + ] + }, + "inputs": [ + { + "description": "runtime parameter for tool IDMerger", + "name": "param_add_to" + }, + { + "description": "runtime parameter for tool IDMerger", + "name": "param_in" + } + ], + "label": null, + "name": "IDMerger", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + } + ], + "position": { + "left": 1441, + "top": 352.20001220703125 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "IDMerger", + "tool_shed_repository": { + "changeset_revision": "18f93351f8b6", + "name": "openms_idmerger", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": \"[{\\\"__index__\\\": 0, \\\"param_in\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}, {\\\"__index__\\\": 1, \\\"param_in\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}]\", \"__page__\": 0, \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"param_annotate_file_origin\": \"\\\"false\\\"\", \"param_pepxml_protxml\": \"\\\"false\\\"\", \"param_add_to\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_in1\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "3616471f-09c7-4c6a-8118-e92619874f09", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "f78b508e-7e25-4d72-a870-9f12371c95ea" + } + ] + }, + { + "annotation": "", + "content_id": "ConsensusID", + "id": 11, + "input_connections": { + "param_in": { + "id": 10, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool ConsensusID", + "name": "param_in" + } + ], + "label": null, + "name": "ConsensusID", + "outputs": [ + { + "name": "param_out", + "type": "input" + } + ], + "position": { + "left": 1609, + "top": 470.20001220703125 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "ConsensusID", + "tool_shed_repository": { + "changeset_revision": "8960fb791701", + "name": "openms_consensusid", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": 0, \"param_algorithm\": \"\\\"best\\\"\", \"param_filter_considered_hits\": \"\\\"0\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"param_filter_count_empty\": \"\\\"false\\\"\", \"param_PEPIons_mass_tolerance\": \"\\\"0.5\\\"\", \"param_PEPIons_min_shared\": \"\\\"2\\\"\", \"param_PEPMatrix_penalty\": \"\\\"5\\\"\", \"param_filter_min_support\": \"\\\"0.0\\\"\", \"param_rt_delta\": \"\\\"0.1\\\"\", \"param_PEPMatrix_matrix\": \"\\\"identity\\\"\", \"param_mz_delta\": \"\\\"0.1\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "a397db69-017e-4988-9f94-7ecbc119e3f3", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "b05c7e3e-e094-4366-9163-e0c1984974b9" + } + ] + }, + { + "annotation": "", + "content_id": "PeptideIndexer", + "id": 12, + "input_connections": { + "param_fasta": { + "id": 1, + "output_name": "output" + }, + "param_in": { + "id": 11, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool PeptideIndexer", + "name": "param_fasta" + }, + { + "description": "runtime parameter for tool PeptideIndexer", + "name": "param_in" + } + ], + "label": null, + "name": "PeptideIndexer", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + } + ], + "position": { + "left": 1003, + "top": 820.2000122070312 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "PeptideIndexer", + "tool_shed_repository": { + "changeset_revision": "539a3a4dcc9e", + "name": "openms_peptideindexer", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_write_protein_sequence\": \"\\\"true\\\"\", \"param_missing_decoy_action\": \"\\\"error\\\"\", \"param_filter_aaa_proteins\": \"\\\"false\\\"\", \"param_prefix\": \"\\\"true\\\"\", \"param_keep_unreferenced_proteins\": \"\\\"false\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__page__\": 0, \"param_allow_unmatched\": \"\\\"true\\\"\", \"param_decoy_string_position\": \"\\\"prefix\\\"\", \"param_mismatches_max\": \"\\\"0\\\"\", \"param_enzyme_name\": \"\\\"Trypsin/P\\\"\", \"param_enzyme_specificity\": \"\\\"none\\\"\", \"param_decoy_string\": \"\\\"dec_\\\"\", \"__rerun_remap_job_id__\": null, \"param_write_protein_description\": \"\\\"true\\\"\", \"param_full_tolerant_search\": \"\\\"false\\\"\", \"param_fasta\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_aaa_max\": \"\\\"4\\\"\", \"param_annotate_proteins\": \"\\\"True\\\"\", \"param_IL_equivalent\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "868442d2-bb81-4d9a-b783-448377dce6d7", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "f026ce76-91ea-40df-99bb-00ae4bacf3f6" + } + ] + }, + { + "annotation": "", + "content_id": "IDFilter", + "id": 14, + "input_connections": { + "param_in": { + "id": 13, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool IDFilter", + "name": "param_whitelist_peptides" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_whitelist_proteins" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_blacklist_proteins" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_in" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_blacklist_peptides" + } + ], + "label": null, + "name": "IDFilter", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + } + ], + "position": { + "left": 1647.9666748046875, + "top": 808.88330078125 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "IDFilter", + "tool_shed_repository": { + "changeset_revision": "c427a8628cbe", + "name": "openms_idfilter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_whitelist_peptides\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_length\": \"\\\":\\\"\", \"param_keep_unreferenced_protein_hits\": \"\\\"false\\\"\", \"param_unique\": \"\\\"false\\\"\", \"param_whitelist_proteins\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_unique_per_protein\": \"\\\"false\\\"\", \"param_remove_decoys\": \"\\\"false\\\"\", \"param_score_prot\": \"\\\"0.0\\\"\", \"param_rt_p_value_1st_dim\": \"\\\"0.0\\\"\", \"param_best_n_protein_hits\": \"\\\"0\\\"\", \"param_min_length\": \"\\\"0\\\"\", \"__rerun_remap_job_id__\": null, \"param_precursor_mz\": \"\\\":\\\"\", \"param_mz_error\": \"\\\"-1.0\\\"\", \"rep_param_blacklist_modifications\": \"[]\", \"param_precursor_allow_missing\": \"\\\"false\\\"\", \"param_blacklist_proteins\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_delete_unreferenced_peptide_hits\": \"\\\"false\\\"\", \"param_precursor_rt\": \"\\\":\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__page__\": 0, \"param_charge\": \"\\\":\\\"\", \"param_var_mods\": \"\\\"false\\\"\", \"param_max_length\": \"\\\"0\\\"\", \"param_best_strict\": \"\\\"false\\\"\", \"rep_param_whitelist_protein_accessions\": \"[]\", \"rep_param_whitelist_modifications\": \"[]\", \"param_thresh_pep\": \"\\\"0.0\\\"\", \"param_mz_unit\": \"\\\"ppm\\\"\", \"param_best_n_peptide_hits\": \"\\\"0\\\"\", \"param_whitelist_by_seq_only\": \"\\\"false\\\"\", \"param_blacklist_peptides\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"param_score_pep\": \"\\\"0.05\\\"\", \"param_rt_p_value\": \"\\\"0.0\\\"\", \"param_min_charge\": \"\\\"1\\\"\", \"param_blacklist_ignore_modifications\": \"\\\"false\\\"\", \"rep_param_blacklist_protein_accessions\": \"[]\", \"param_whitelist_ignore_modifications\": \"\\\"false\\\"\", \"param_thresh_prot\": \"\\\"0.0\\\"\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "458f5b98-62dd-4650-86dc-f3fc3da4584e", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "ac38c879-b0a6-4260-a659-32bc6f531232" + } + ] + }, + { + "annotation": "", + "content_id": "IDMapper", + "id": 15, + "input_connections": { + "param_id": { + "id": 14, + "output_name": "param_out" + }, + "param_in": { + "id": 2, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool IDMapper", + "name": "param_id" + }, + { + "description": "runtime parameter for tool IDMapper", + "name": "param_in" + } + ], + "label": null, + "name": "IDMapper", + "outputs": [ + { + "name": "param_out", + "type": "input" + } + ], + "position": { + "left": 1979.9666748046875, + "top": 843.88330078125 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "IDMapper", + "tool_shed_repository": { + "changeset_revision": "b5d0905419da", + "name": "openms_idmapper", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_mz_tolerance\": \"\\\"30.0\\\"\", \"param_ignore_charge\": \"\\\"true\\\"\", \"param_feature_use_centroid_rt\": \"\\\"false\\\"\", \"__page__\": 0, \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"param_mz_measure\": \"\\\"ppm\\\"\", \"param_mz_reference\": \"\\\"precursor\\\"\", \"param_id\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_rt_tolerance\": \"\\\"50.0\\\"\", \"param_consensus_use_subelements\": \"\\\"true\\\"\", \"param_feature_use_centroid_mz\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "f199e8c6-c243-4fce-8dac-a62d504c9cdd", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "84923098-0cc0-4c3b-ac19-aa12ef6a5244" + } + ] + }, + { + "annotation": "", + "content_id": "IDConflictResolver", + "id": 16, + "input_connections": { + "param_in": { + "id": 15, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool IDConflictResolver", + "name": "param_in" + } + ], + "label": null, + "name": "IDConflictResolver", + "outputs": [ + { + "name": "param_out", + "type": "input" + } + ], + "position": { + "left": 2220.449951171875, + "top": 881.88330078125 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "IDConflictResolver", + "tool_shed_repository": { + "changeset_revision": "8a04ed1c1d1b", + "name": "openms_idconflictresolver", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": \"{\\\"param_force\\\": \\\"false\\\", \\\"adv_opts_selector\\\": \\\"advanced\\\", \\\"__current_case__\\\": 1}\", \"__page__\": 0, \"__rerun_remap_job_id__\": null, \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "6f4dc17d-b0fd-4b66-9487-3fda71316199", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "485d4684-835d-4ff0-9ca5-3400a0b8fa22" + } + ] + }, + { + "annotation": "", + "content_id": "FileFilter", + "id": 17, + "input_connections": { + "param_in": { + "id": 16, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FileFilter", + "name": "param_in" + }, + { + "description": "runtime parameter for tool FileFilter", + "name": "param_id_blacklist" + }, + { + "description": "runtime parameter for tool FileFilter", + "name": "param_consensus_blackorwhitelist_file" + } + ], + "label": null, + "name": "FileFilter", + "outputs": [ + { + "name": "param_out", + "type": "input" + } + ], + "position": { + "left": 2531, + "top": 786.88330078125 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "FileFilter", + "tool_shed_repository": { + "changeset_revision": "d6878d27f051", + "name": "openms_filefilter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"rep_param_id_sequences_whitelist\": \"[]\", \"param_algorithm_SignalToNoise_win_len\": \"\\\"200.0\\\"\", \"param_algorithm_SignalToNoise_bin_count\": \"\\\"30\\\"\", \"param_peak_options_sn\": \"\\\"0.0\\\"\", \"param_id_mz\": \"\\\"0.001\\\"\", \"param_spectra_select_polarity\": \"null\", \"param_spectra_remove_collision_energy\": \"\\\":\\\"\", \"param_id_blacklist_imperfect\": \"\\\"false\\\"\", \"param_mz\": \"\\\":\\\"\", \"param_int\": \"\\\":\\\"\", \"param_spectra_select_isolation_window_width\": \"\\\":\\\"\", \"param_peak_options_indexed_file\": \"\\\"false\\\"\", \"param_spectra_select_activation\": \"null\", \"param_id_remove_annotated_features\": \"\\\"false\\\"\", \"__page__\": 0, \"param_peak_options_no_chromatograms\": \"\\\"false\\\"\", \"rep_param_peak_options_pc_mz_list\": \"[]\", \"param_peak_options_numpress_masstime\": \"\\\"none\\\"\", \"param_peak_options_remove_chromatograms\": \"\\\"false\\\"\", \"rep_param_consensus_map\": \"[]\", \"param_peak_options_numpress_intensity\": \"\\\"none\\\"\", \"param_pc_mz\": \"\\\":\\\"\", \"__rerun_remap_job_id__\": null, \"param_spectra_select_mode\": \"null\", \"param_rt\": \"\\\":\\\"\", \"param_algorithm_SignalToNoise_write_log_messages\": \"\\\"true\\\"\", \"param_consensus_blackorwhitelist_use_ppm_tolerance\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_id_remove_unannotated_features\": \"\\\"true\\\"\", \"param_peak_options_sort_peaks\": \"\\\"false\\\"\", \"param_peak_options_int_precision\": \"\\\"32\\\"\", \"rep_param_id_accessions_whitelist\": \"[]\", \"param_peak_options_pc_mz_range\": \"\\\":\\\"\", \"param_out_type\": \"\\\"consensusXML\\\"\", \"param_spectra_remove_mode\": \"null\", \"param_consensus_blackorwhitelist_blacklist\": \"\\\"true\\\"\", \"rep_param_peak_options_level\": \"[{\\\"__index__\\\": 0, \\\"param_peak_options_level\\\": \\\"1 2 3\\\"}]\", \"rep_param_f_and_c_remove_meta\": \"[]\", \"param_f_and_c_size\": \"\\\":\\\"\", \"param_id_remove_unassigned_ids\": \"\\\"true\\\"\", \"param_spectra_remove_zoom\": \"\\\"false\\\"\", \"param_peak_options_mz_precision\": \"\\\"64\\\"\", \"param_sort\": \"\\\"false\\\"\", \"param_algorithm_SignalToNoise_min_required_elements\": \"\\\"10\\\"\", \"param_consensus_blackorwhitelist_rt\": \"\\\"60.0\\\"\", \"rep_param_peak_options_rm_pc_charge\": \"[]\", \"param_peak_options_numpress_intensity_error\": \"\\\"0.0001\\\"\", \"param_id_rt\": \"\\\"0.1\\\"\", \"param_id_keep_best_score_id\": \"\\\"false\\\"\", \"param_id_blacklist\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_spectra_select_collision_energy\": \"\\\":\\\"\", \"param_feature_q\": \"\\\":\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"param_f_and_c_charge\": \"\\\":\\\"\", \"param_consensus_map_and\": \"\\\"false\\\"\", \"param_spectra_select_zoom\": \"\\\"false\\\"\", \"param_consensus_blackorwhitelist_mz\": \"\\\"0.01\\\"\", \"param_consensus_blackorwhitelist_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"rep_param_consensus_blackorwhitelist_maps\": \"[]\", \"param_spectra_remove_activation\": \"null\", \"param_peak_options_numpress_masstime_error\": \"\\\"0.0001\\\"\", \"param_spectra_remove_isolation_window_width\": \"\\\":\\\"\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "77e6a295-f6e2-4d72-a7e3-94f682d916a7", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "55dc6d2b-f473-4496-abaf-86630ad0151b" + } + ] + }, + { + "annotation": "", + "content_id": "FileMerger", + "id": 18, + "input_connections": { + "param_in": { + "id": 17, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FileMerger", + "name": "param_in" + } + ], + "label": null, + "name": "FileMerger", + "outputs": [ + { + "name": "param_out", + "type": "featurexml" + }, + { + "name": "param_rt_concat_trafo_out", + "type": "trafoxml" + } + ], + "position": { + "left": 2832.966552734375, + "top": 1062.9000244140625 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "FileMerger", + "tool_shed_repository": { + "changeset_revision": "39e8fde08881", + "name": "openms_filemerger", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_raw_user_ms_level\": \"\\\"False\\\"\", \"param_raw_rt_auto\": \"\\\"false\\\"\", \"__page__\": 0, \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"param_raw_rt_filename\": \"\\\"false\\\"\", \"param_rt_concat_gap\": \"\\\"0.0\\\"\", \"param_annotate_file_origin\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null, \"param_raw_ms_level\": \"\\\"2\\\"\", \"rep_param_raw_rt_custom\": \"[]\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "d82505c8-6f1c-43a9-a9c7-c572ad2aa3c8", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "db9ffdb1-ef2f-4d53-9808-bef6de3d85b4" + }, + { + "label": null, + "output_name": "param_rt_concat_trafo_out", + "uuid": "47af80c0-5efb-43b3-a830-c3df9fc0528d" + } + ] + }, + { + "annotation": "", + "content_id": "MzTabExporter", + "id": 19, + "input_connections": { + "param_in": { + "id": 18, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MzTabExporter", + "name": "param_in" + } + ], + "label": null, + "name": "MzTabExporter", + "outputs": [ + { + "name": "param_out", + "type": "tabular" + } + ], + "position": { + "left": 3076.5, + "top": 1061.88330078125 + }, + "post_job_actions": {}, + "tool_errors": null, + "tool_id": "MzTabExporter", + "tool_shed_repository": { + "changeset_revision": "bf32e0bcf554", + "name": "openms_mztabexporter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__page__\": 0, \"__rerun_remap_job_id__\": null, \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.1.0", + "type": "tool", + "uuid": "3f6cb69e-8629-4fea-ab74-dec388ed0fd4", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "a6361de3-6865-4c6b-9920-d7a8c6a27645" + } + ] + } + ], + "parent_id": "proteomics/ntails", + "path": "topics/proteomics/tutorials/ntails/workflows/WF_ntails.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Tails Triple Dimethyl OpenMS2.1", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-ntails/versions/wf-ntails", + "tutorial_id": "ntails", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/ntails/workflows/WF_ntails.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/ntails/workflows/WF_ntails.html", + "version": 4, + "wfid": "proteomics-ntails", + "wfname": "wf-ntails", + "workflow": "WF_ntails.ga", + "workflow_tools": [ + "ConsensusID", + "FalseDiscoveryRate", + "FeatureFinderMultiplex", + "FileFilter", + "FileMerger", + "HighResPrecursorMassCorrector", + "IDConflictResolver", + "IDFilter", + "IDMapper", + "IDMerger", + "MSGFPlusAdapter", + "MzTabExporter", + "PeptideIndexer" + ], + "workflowhub_id": "1213" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "msconvert", + "owner": "galaxyp", + "revisions": "3cf310697624", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_openswathworkflow", + "owner": "galaxyp", + "revisions": "887be35bc42e", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_openswathworkflow", + "owner": "galaxyp", + "revisions": "2aebe58de46e", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pyprophet_export", + "owner": "galaxyp", + "revisions": "3cf580bf28e2", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pyprophet_merge", + "owner": "galaxyp", + "revisions": "a67b508b1dc5", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pyprophet_peptide", + "owner": "galaxyp", + "revisions": "4504b3bc1eed", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pyprophet_protein", + "owner": "galaxyp", + "revisions": "2320f48209fc", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pyprophet_score", + "owner": "galaxyp", + "revisions": "77f068ba47dd", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: msconvert\n owner: galaxyp\n revisions: 3cf310697624\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_openswathworkflow\n owner: galaxyp\n revisions: 887be35bc42e\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_openswathworkflow\n owner: galaxyp\n revisions: 2aebe58de46e\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pyprophet_export\n owner: galaxyp\n revisions: 3cf580bf28e2\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pyprophet_merge\n owner: galaxyp\n revisions: a67b508b1dc5\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pyprophet_peptide\n owner: galaxyp\n revisions: 4504b3bc1eed\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pyprophet_protein\n owner: galaxyp\n revisions: 2320f48209fc\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pyprophet_score\n owner: galaxyp\n revisions: 77f068ba47dd\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_Analysis_OSW/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "matthias.fahrner@uniklinik-freiburg.de", + "id": "matthias313", + "joined": "2019-03", + "name": "Matthias Fahrner", + "orcid": "0000-0001-7955-2518", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/matthias313/", + "twitter": "mfahrner313", + "url": "https://training.galaxyproject.org/training-material/api/contributors/matthias313.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + } + ], + "dir": "topics/proteomics/tutorials/DIA_Analysis_OSW", + "edam_operation": [ + "Filtering", + "Formatting" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/DIA_Analysis_OSW", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "OpenSwathWorkflow enables analysis of data independent acquisition mass spectrometry data", + "DIA data analysis of HEK-Ecoli Spike-in dataset" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Analysis of HEK-Ecoli Spike-in DIA data in Galaxy", + "Understanding DIA data principles and characteristics", + "Using OpenSwathworkflow to analyze HEK-Ecoli Spike-in DIA data" + ], + "pageviews": 3284, + "pub_date": "2020-12-02", + "questions": [ + "How to analyze data independent acquisition (DIA) mass spectrometry (MS) data using OpenSwathWorkflow?", + "How to detect different Spike-in amounts of Ecoli in a HEK-Ecoli Benchmark DIA dataset?" + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "DIA_lib_OSW" + ], + "type": "internal" + } + ], + "short_id": "T00211", + "short_tools": [ + "Grep1", + "msconvert", + "pyprophet_peptide", + "pyprophet_merge", + "pyprophet_protein", + "pyprophet_score", + "OpenSwathWorkflow", + "pyprophet_export" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "DIA" + ], + "time_estimation": "2H", + "title": "DIA Analysis using OpenSwathWorkflow", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathworkflow/OpenSwathWorkflow/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathworkflow/OpenSwathWorkflow/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_export/pyprophet_export/2.1.4.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_merge/pyprophet_merge/2.1.4.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_peptide/pyprophet_peptide/2.1.4.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_protein/pyprophet_protein/2.1.4.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_score/pyprophet_score/2.1.4.2" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "DIA_Analysis_OSW", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/DIA_Analysis_OSW/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_Analysis_OSW/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/DIA_Analysis_OSW/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 134, + "visitors": 2259, + "workflows": [ + { + "creators": [], + "description": "DIA Analysis Training using HEK Ecoli data in OSW", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput exp. design annotation\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\niRTassays.tsv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSpectral library\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\n\u201dInput Dataset Collection\u201d\"]\n 4[label=\"msconvert\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"OpenSwathWorkflow\"]\n 4 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"PyProphet merge\"]\n 5 -> 6 [label=\"out_osw\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"PyProphet score\"]\n 6 -> 7 [label=\"output\"]\n 8[label=\"PyProphet peptide\"]\n 7 -> 8 [label=\"output\"]\n 9[label=\"PyProphet peptide\"]\n 8 -> 9 [label=\"output\"]\n 10[label=\"PyProphet protein\"]\n 9 -> 10 [label=\"output\"]\n 11[label=\"PyProphet protein\"]\n 10 -> 11 [label=\"output\"]\n 12[label=\"PyProphet export\"]\n 0 -> 12 [label=\"output\"]\n 11 -> 12 [label=\"output\"]\n 13[label=\"Ecoli protein expression matrix\"]\n 12 -> 13 [label=\"protein_signal\"]\n}", + "history": [ + { + "hash": "15a13c3667af0db6a6ca380ca1b998c9faf625d3", + "message": "updated workflow annotation and name", + "num": 2, + "short_hash": "15a13c366", + "unix": "1606931443" + }, + { + "hash": "e8f20c190bc7a0d319835969a36114d939bd4dce", + "message": "generated three tutorials on DIA data analysis in galaxy", + "num": 1, + "short_hash": "e8f20c190", + "unix": "1606930318" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input exp. design annotation" + } + ], + "label": "Input exp. design annotation", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 646.1999969482422, + "height": 82.19999694824219, + "left": 490.5, + "right": 690.5, + "top": 564, + "width": 200, + "x": 490.5, + "y": 564 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a5d35883-fba0-4de7-a883-8bb6b2be333d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c5372600-b105-4692-8d32-60b4e882c235" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "iRTassays.tsv" + } + ], + "label": "iRTassays.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 184.8000030517578, + "height": 61.80000305175781, + "left": -1122.5, + "right": -922.5, + "top": 123, + "width": 200, + "x": -1122.5, + "y": 123 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "03ffba1e-879b-47ae-995d-ceb262b4ff4e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8307748d-8fe6-4cee-8ac8-4d65bb598b0a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Spectral library" + } + ], + "label": "Spectral library", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 426.1999969482422, + "height": 82.19999694824219, + "left": -1117.5, + "right": -917.5, + "top": 344, + "width": 200, + "x": -1117.5, + "y": 344 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a2c7f825-ad7c-4966-ad08-a1634f7b5453", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1caaf3b7-2710-4835-89da-816d079a9e8a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "\"Input Dataset Collection\"" + } + ], + "label": "\"Input Dataset Collection\"", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 469.1999969482422, + "height": 82.19999694824219, + "left": -1330.5, + "right": -1130.5, + "top": 387, + "width": 200, + "x": -1330.5, + "y": 387 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "e5b0dbc4-3478-4d5b-a220-ca720f06c787", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dee72339-437a-4b71-8aab-85fce61e7369" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput exp. design annotation\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\niRTassays.tsv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nSpectral library\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Collection\\n\u201dInput Dataset Collection\u201d\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"msconvert\"];\n 3 -->|output| 4;\n 5[\"OpenSwathWorkflow\"];\n 4 -->|output| 5;\n 2 -->|output| 5;\n 1 -->|output| 5;\n 6[\"PyProphet merge\"];\n 5 -->|out_osw| 6;\n 2 -->|output| 6;\n 7[\"PyProphet score\"];\n 6 -->|output| 7;\n 8[\"PyProphet peptide\"];\n 7 -->|output| 8;\n 9[\"PyProphet peptide\"];\n 8 -->|output| 9;\n 10[\"PyProphet protein\"];\n 9 -->|output| 10;\n 11[\"PyProphet protein\"];\n 10 -->|output| 11;\n 12[\"PyProphet export\"];\n 0 -->|output| 12;\n 11 -->|output| 12;\n 13[\"Ecoli protein expression matrix\"];\n 12 -->|protein_signal| 13;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "DIA_Analysis_OSW", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input exp. design annotation" + } + ], + "label": "Input exp. design annotation", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 646.1999969482422, + "height": 82.19999694824219, + "left": 490.5, + "right": 690.5, + "top": 564, + "width": 200, + "x": 490.5, + "y": 564 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a5d35883-fba0-4de7-a883-8bb6b2be333d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c5372600-b105-4692-8d32-60b4e882c235" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "iRTassays.tsv" + } + ], + "label": "iRTassays.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 184.8000030517578, + "height": 61.80000305175781, + "left": -1122.5, + "right": -922.5, + "top": 123, + "width": 200, + "x": -1122.5, + "y": 123 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "03ffba1e-879b-47ae-995d-ceb262b4ff4e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8307748d-8fe6-4cee-8ac8-4d65bb598b0a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Spectral library" + } + ], + "label": "Spectral library", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 426.1999969482422, + "height": 82.19999694824219, + "left": -1117.5, + "right": -917.5, + "top": 344, + "width": 200, + "x": -1117.5, + "y": 344 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a2c7f825-ad7c-4966-ad08-a1634f7b5453", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1caaf3b7-2710-4835-89da-816d079a9e8a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "\"Input Dataset Collection\"" + } + ], + "label": "\"Input Dataset Collection\"", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 469.1999969482422, + "height": 82.19999694824219, + "left": -1330.5, + "right": -1130.5, + "top": 387, + "width": 200, + "x": -1330.5, + "y": 387 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "e5b0dbc4-3478-4d5b-a220-ca720f06c787", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dee72339-437a-4b71-8aab-85fce61e7369" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "msconvert", + "outputs": [ + { + "name": "output", + "type": "mzml" + } + ], + "position": { + "bottom": 596.6000061035156, + "height": 113.60000610351562, + "left": -1122.5, + "right": -922.5, + "top": 483, + "width": 200, + "x": -1122.5, + "y": 483 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.1", + "tool_shed_repository": { + "changeset_revision": "3cf310697624", + "name": "msconvert", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"data_processing\": {\"peak_picking\": {\"pick_peaks\": \"true\", \"__current_case__\": 1, \"pick_peaks_ms_levels\": \"1-\", \"pick_peaks_algorithm\": \"vendor\"}, \"precursor_refinement\": {\"use_mzrefinement\": \"false\", \"__current_case__\": 0}, \"charge_state_calculation\": {\"charge_state_calculation_method\": \"false\", \"__current_case__\": 0}, \"thresholds\": [], \"filter_mz_windows\": {\"do_mzwindow_filter\": \"false\", \"__current_case__\": 0}, \"etd_filtering\": {\"do_etd_filtering\": \"false\", \"__current_case__\": 0}, \"ms2denoise\": {\"denoise\": \"false\", \"__current_case__\": 1}, \"ms2deisotope\": \"false\", \"demultiplex\": {\"demultiplex_on\": \"true\", \"__current_case__\": 0, \"massError\": \"10.0\", \"massErrorUnits\": \"PPM\", \"nnlsMaxIter\": \"50\", \"nnlsEps\": \"1e-10\", \"demuxBlockExtra\": \"0.0\", \"variableFill\": \"false\", \"noSumNormalize\": \"true\", \"optimization\": \"overlap_only\", \"interpolateRT\": \"true\", \"noWeighting\": \"true\", \"minWindowSize\": \"0.2\"}}, \"filtering\": {\"activation\": \"false\", \"indices\": [], \"scan_numbers\": [], \"strip_it\": \"false\", \"filter_ms_levels\": {\"do_ms_level_filter\": \"false\", \"__current_case__\": 0}, \"polarity\": \"false\", \"analyzer\": \"false\"}, \"general_options\": {\"combineIonMobilitySpectra\": \"false\", \"scan_summing\": {\"do_scan_summing\": \"false\", \"__current_case__\": 0}, \"simAsSpectra\": \"true\", \"srmAsSpectra\": \"false\", \"acceptZeroLengthSpectra\": \"false\", \"ignoreUnknownInstrumentError\": \"true\", \"multi_run_output\": {\"do_multi_run_output\": \"false\", \"__current_case__\": 0, \"runIndexSet\": \"0\"}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"license_agreement\": \"true\", \"output_type\": \"mzML\", \"settings\": {\"mz_encoding\": \"64\", \"intensity_encoding\": \"64\", \"binary_compression\": \"zlib\", \"gzip_compression\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.19052.1", + "type": "tool", + "uuid": "e83c6a83-748d-478f-a2cb-0992b2e8b780", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0fd858b9-4bca-44c8-baa3-e0e50e45ac1d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathworkflow/OpenSwathWorkflow/2.5+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "in": { + "id": 4, + "output_name": "output" + }, + "tr": { + "id": 2, + "output_name": "output" + }, + "tr_irt": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool OpenSwathWorkflow", + "name": "adv_opts_cond" + }, + { + "description": "runtime parameter for tool OpenSwathWorkflow", + "name": "swath_windows_file" + }, + { + "description": "runtime parameter for tool OpenSwathWorkflow", + "name": "tr_irt_nonlinear" + } + ], + "label": null, + "name": "OpenSwathWorkflow", + "outputs": [ + { + "name": "out_osw", + "type": "osw" + }, + { + "name": "ctd_out", + "type": "xml" + } + ], + "position": { + "bottom": 903.7999877929688, + "height": 540.7999877929688, + "left": -839.5, + "right": -639.5, + "top": 363, + "width": 200, + "x": -839.5, + "y": 363 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathworkflow/OpenSwathWorkflow/2.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2aebe58de46e", + "name": "openms_openswathworkflow", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"Calibration\": {\"ms1_im_calibration\": \"false\", \"im_correction_function\": \"linear\", \"debug_im_file\": \"\", \"debug_mz_file\": \"\"}, \"Library\": {\"retentionTimeInterpretation\": \"iRT\", \"override_group_label_check\": \"false\", \"force_invalid_mods\": \"false\"}, \"OPTIONAL_OUTPUTS\": [\"out_osw_FLAG\", \"ctd_out_FLAG\"], \"RTNormalization\": {\"alignmentMethod\": \"linear\", \"outlierMethod\": \"none\", \"useIterativeChauvenet\": \"false\", \"RANSACMaxIterations\": \"1000\", \"RANSACMaxPercentRTThreshold\": \"3\", \"RANSACSamplingSize\": \"10\", \"estimateBestPeptides\": \"true\", \"InitialQualityCutoff\": \"0.5\", \"OverallQualityCutoff\": \"5.5\", \"NrRTBins\": \"10\", \"MinPeptidesPerBin\": \"1\", \"MinBinsFilled\": \"7\", \"lowess\": {\"span\": \"0.666666666666667\"}, \"b_spline\": {\"num_nodes\": \"5\"}}, \"Scoring\": {\"stop_report_after_feature\": \"5\", \"rt_normalization_factor\": \"100.0\", \"quantification_cutoff\": \"0.0\", \"write_convex_hull\": \"false\", \"spectrum_addition_method\": \"simple\", \"add_up_spectra\": \"1\", \"spacing_for_spectra_resampling\": \"0.005\", \"uis_threshold_sn\": \"0\", \"uis_threshold_peak_area\": \"0\", \"scoring_model\": \"default\", \"im_extra_drift\": \"0.0\", \"strict\": \"true\", \"TransitionGroupPicker\": {\"stop_after_feature\": \"-1\", \"min_peak_width\": \"5.0\", \"peak_integration\": \"original\", \"background_subtraction\": \"none\", \"recalculate_peaks\": \"true\", \"use_precursors\": \"false\", \"use_consensus\": \"true\", \"recalculate_peaks_max_z\": \"0.75\", \"minimal_quality\": \"-1.5\", \"resample_boundary\": \"15.0\", \"compute_peak_quality\": \"false\", \"compute_peak_shape_metrics\": \"false\", \"compute_total_mi\": \"false\", \"boundary_selection_method\": \"largest\", \"PeakPickerMRM\": {\"sgolay_frame_length\": \"11\", \"sgolay_polynomial_order\": \"3\", \"gauss_width\": \"30.0\", \"use_gauss\": \"false\", \"peak_width\": \"-1.0\", \"signal_to_noise\": \"0.1\", \"write_sn_log_messages\": \"false\", \"remove_overlapping_peaks\": \"true\", \"method\": \"corrected\"}, \"PeakIntegrator\": {\"integration_type\": \"intensity_sum\", \"baseline_type\": \"base_to_base\", \"fit_EMG\": \"false\"}}, \"DIAScoring\": {\"dia_extraction_window\": \"0.05\", \"dia_extraction_unit\": \"Th\", \"dia_centroided\": \"false\", \"dia_byseries_intensity_min\": \"300.0\", \"dia_byseries_ppm_diff\": \"10.0\", \"dia_nr_isotopes\": \"4\", \"dia_nr_charges\": \"4\", \"peak_before_mono_max_ppm_diff\": \"20.0\"}, \"EMGScoring\": {\"max_iteration\": \"10\"}, \"Scores\": {\"use_shape_score\": \"true\", \"use_coelution_score\": \"true\", \"use_rt_score\": \"true\", \"use_library_score\": \"true\", \"use_intensity_score\": \"true\", \"use_nr_peaks_score\": \"true\", \"use_total_xic_score\": \"true\", \"use_total_mi_score\": \"false\", \"use_sn_score\": \"true\", \"use_mi_score\": \"false\", \"use_dia_scores\": \"true\", \"use_ms1_correlation\": \"false\", \"use_sonar_scores\": \"false\", \"use_ion_mobility_scores\": \"false\", \"use_ms1_fullscan\": \"false\", \"use_ms1_mi\": \"true\", \"use_uis_scores\": \"false\"}}, \"adv_opts_cond\": {\"adv_opts_selector\": \"advanced\", \"__current_case__\": 1, \"rt_norm\": {\"__class__\": \"RuntimeValue\"}, \"sort_swath_maps\": \"false\", \"enable_ms1\": \"true\", \"enable_ipf\": \"true\", \"out_chrom_type\": \"mzML\", \"min_upper_edge_dist\": \"0.0\", \"extra_rt_extraction_window\": \"100.0\", \"mz_extraction_window_unit\": \"ppm\", \"mz_extraction_window_ms1_unit\": \"ppm\", \"use_ms1_ion_mobility\": \"false\", \"matching_window_only\": \"false\", \"irt_mz_extraction_window\": \"10.0\", \"irt_mz_extraction_window_unit\": \"ppm\", \"irt_im_extraction_window\": \"-1.0\", \"min_rsq\": \"0.95\", \"min_coverage\": \"0.6\", \"split_file_input\": \"false\", \"use_elution_model_score\": \"false\", \"readOptions\": \"cacheWorkingInMemory\", \"mz_correction_function\": \"regression_delta_ppm\", \"extraction_function\": \"tophat\", \"batchSize\": \"1000\", \"ms1_isotopes\": \"3\", \"force\": \"false\", \"test\": \"False\"}, \"im_extraction_window_ms1\": \"-1.0\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"ion_mobility_window\": \"-1.0\", \"mz_extraction_window\": \"10.0\", \"mz_extraction_window_ms1\": \"10.0\", \"rt_extraction_window\": \"600.0\", \"sonar\": \"false\", \"swath_windows_file\": {\"__class__\": \"RuntimeValue\"}, \"tr\": {\"__class__\": \"ConnectedValue\"}, \"tr_irt\": {\"__class__\": \"ConnectedValue\"}, \"tr_irt_nonlinear\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "77259b26-ee12-4fff-a26b-4233bd95bf2c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_osw", + "uuid": "263858ee-f576-4b39-9f4b-1487bf60212e" + }, + { + "label": null, + "output_name": "ctd_out", + "uuid": "7a6e422b-1246-4ed9-945e-fa215225e53a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_merge/pyprophet_merge/2.1.4.0", + "errors": null, + "id": 6, + "input_connections": { + "inputs": { + "id": 5, + "output_name": "out_osw" + }, + "template": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PyProphet merge", + "outputs": [ + { + "name": "output", + "type": "osw" + } + ], + "position": { + "bottom": 307.8000030517578, + "height": 184.8000030517578, + "left": -682.5, + "right": -482.5, + "top": 123, + "width": 200, + "x": -682.5, + "y": 123 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_merge/pyprophet_merge/2.1.4.0", + "tool_shed_repository": { + "changeset_revision": "a67b508b1dc5", + "name": "pyprophet_merge", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"osw\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"inputs\": {\"__class__\": \"ConnectedValue\"}, \"same_run\": \"false\", \"template\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4.0", + "type": "tool", + "uuid": "cfe13aec-2644-4a6e-8a2b-d3dc6cd0aec8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "61dd81a7-9a2d-4e9b-b8cb-a93245e9dbbb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_score/pyprophet_score/2.1.4.2", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PyProphet score", + "outputs": [ + { + "name": "output", + "type": "osw" + }, + { + "name": "score_report", + "type": "pdf" + } + ], + "position": { + "bottom": 399.3999938964844, + "height": 276.3999938964844, + "left": -462.5, + "right": -262.5, + "top": 123, + "width": 200, + "x": -462.5, + "y": 123 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_score/pyprophet_score/2.1.4.2", + "tool_shed_repository": { + "changeset_revision": "77f068ba47dd", + "name": "pyprophet_score", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"osw\", \"apply_weights\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"conditional_classifier\": {\"classifier\": \"XGBoost\", \"__current_case__\": 1, \"xgb_autotune\": \"false\"}, \"group_id\": \"group_id\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"ipf_max_peakgroup_pep\": \"0.7\", \"ipf_max_peakgroup_rank\": \"1\", \"ipf_max_transition_isotope_overlap\": \"0.5\", \"ipf_min_transition_sn\": \"0.0\", \"level\": \"ms1ms2\", \"lfdr_adj\": \"1.5\", \"lfdr_eps\": \"1e-08\", \"lfdr_monotone\": \"true\", \"lfdr_transformation\": \"probit\", \"lfdr_truncate\": \"true\", \"parametric\": \"false\", \"pfdr\": \"false\", \"pi0_lambda_end\": \"0.5\", \"pi0_lambda_start\": \"0.1\", \"pi0_lambda_steps\": \"0.05\", \"pi0_method\": \"bootstrap\", \"pi0_smooth_df\": \"3\", \"pi0_smooth_log\": \"false\", \"ss_initial_fdr\": \"0.15\", \"ss_iteration_fdr\": \"0.05\", \"ss_main_score\": \"var_xcorr_shape\", \"ss_num_iter\": \"10\", \"test_mode\": \"false\", \"tric_chromprob\": \"false\", \"xeval_fraction\": \"0.5\", \"xeval_num_iter\": \"10\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4.2", + "type": "tool", + "uuid": "40fc02c5-56f8-4e65-9e52-cd59ed321f5b", + "workflow_outputs": [ + { + "label": null, + "output_name": "score_report", + "uuid": "78b03dbb-9561-4ccb-aa47-5ab90bf063ef" + }, + { + "label": null, + "output_name": "output", + "uuid": "70ab8388-f777-4fd3-8b5b-e34ef9b351f3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_peptide/pyprophet_peptide/2.1.4.0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PyProphet peptide", + "outputs": [ + { + "name": "peptide_plots", + "type": "pdf" + }, + { + "name": "output", + "type": "osw" + } + ], + "position": { + "bottom": 348.6000061035156, + "height": 225.60000610351562, + "left": -242.5, + "right": -42.5, + "top": 123, + "width": 200, + "x": -242.5, + "y": 123 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_peptide/pyprophet_peptide/2.1.4.0", + "tool_shed_repository": { + "changeset_revision": "4504b3bc1eed", + "name": "pyprophet_peptide", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"osw\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"context\": \"experiment-wide\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"lfdr_adj\": \"1.5\", \"lfdr_eps\": \"1e-08\", \"lfdr_monotone\": \"true\", \"lfdr_transformation\": \"probit\", \"lfdr_truncate\": \"true\", \"parametric\": \"false\", \"pfdr\": \"false\", \"pi0_lambda_end\": \"0.5\", \"pi0_lambda_start\": \"0.1\", \"pi0_lambda_steps\": \"0.05\", \"pi0_method\": \"bootstrap\", \"pi0_smooth_df\": \"3\", \"pi0_smooth_log\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4.0", + "type": "tool", + "uuid": "e1f109cb-bc55-4b81-9f74-d9d02553a91b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a4dc51f3-11f6-457b-aff8-0ea597114b92" + }, + { + "label": null, + "output_name": "peptide_plots", + "uuid": "f998ff80-a2ab-4b82-8b76-bb13ed2d207b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_peptide/pyprophet_peptide/2.1.4.0", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PyProphet peptide", + "outputs": [ + { + "name": "peptide_plots", + "type": "pdf" + }, + { + "name": "output", + "type": "osw" + } + ], + "position": { + "bottom": 348.6000061035156, + "height": 225.60000610351562, + "left": -22.5, + "right": 177.5, + "top": 123, + "width": 200, + "x": -22.5, + "y": 123 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_peptide/pyprophet_peptide/2.1.4.0", + "tool_shed_repository": { + "changeset_revision": "4504b3bc1eed", + "name": "pyprophet_peptide", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"osw\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"context\": \"global\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"lfdr_adj\": \"1.5\", \"lfdr_eps\": \"1e-08\", \"lfdr_monotone\": \"true\", \"lfdr_transformation\": \"probit\", \"lfdr_truncate\": \"true\", \"parametric\": \"false\", \"pfdr\": \"false\", \"pi0_lambda_end\": \"0.5\", \"pi0_lambda_start\": \"0.1\", \"pi0_lambda_steps\": \"0.05\", \"pi0_method\": \"bootstrap\", \"pi0_smooth_df\": \"3\", \"pi0_smooth_log\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4.0", + "type": "tool", + "uuid": "68693bad-fc8d-4e7a-94aa-137d8dcb3d98", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d1fb3ae7-3b84-4be6-8bb1-126a181c9269" + }, + { + "label": null, + "output_name": "peptide_plots", + "uuid": "bc401b01-b1a5-420a-a455-8fdd9cbc2b5c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_protein/pyprophet_protein/2.1.4.0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PyProphet protein", + "outputs": [ + { + "name": "output", + "type": "osw" + }, + { + "name": "protein_plots", + "type": "pdf" + } + ], + "position": { + "bottom": 348.6000061035156, + "height": 225.60000610351562, + "left": 197.5, + "right": 397.5, + "top": 123, + "width": 200, + "x": 197.5, + "y": 123 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_protein/pyprophet_protein/2.1.4.0", + "tool_shed_repository": { + "changeset_revision": "2320f48209fc", + "name": "pyprophet_protein", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"osw\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"context\": \"experiment-wide\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"lfdr_adj\": \"1.5\", \"lfdr_eps\": \"1e-08\", \"lfdr_monotone\": \"true\", \"lfdr_transformation\": \"probit\", \"lfdr_truncate\": \"true\", \"parametric\": \"false\", \"pfdr\": \"false\", \"pi0_lambda_end\": \"0.5\", \"pi0_lambda_start\": \"0.1\", \"pi0_lambda_steps\": \"0.05\", \"pi0_method\": \"bootstrap\", \"pi0_smooth_df\": \"3\", \"pi0_smooth_log\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4.0", + "type": "tool", + "uuid": "e8bc07ea-ba5d-4e3d-b439-894a786d7a63", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c2b6fd5f-add6-477f-892f-e282df6345d0" + }, + { + "label": null, + "output_name": "protein_plots", + "uuid": "699f4df0-df42-4acb-bd74-74aad82f3040" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_protein/pyprophet_protein/2.1.4.0", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 10, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PyProphet protein", + "outputs": [ + { + "name": "output", + "type": "osw" + }, + { + "name": "protein_plots", + "type": "pdf" + } + ], + "position": { + "bottom": 348.6000061035156, + "height": 225.60000610351562, + "left": 417.5, + "right": 617.5, + "top": 123, + "width": 200, + "x": 417.5, + "y": 123 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_protein/pyprophet_protein/2.1.4.0", + "tool_shed_repository": { + "changeset_revision": "2320f48209fc", + "name": "pyprophet_protein", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"osw\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"context\": \"global\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"lfdr_adj\": \"1.5\", \"lfdr_eps\": \"1e-08\", \"lfdr_monotone\": \"true\", \"lfdr_transformation\": \"probit\", \"lfdr_truncate\": \"true\", \"parametric\": \"false\", \"pfdr\": \"false\", \"pi0_lambda_end\": \"0.5\", \"pi0_lambda_start\": \"0.1\", \"pi0_lambda_steps\": \"0.05\", \"pi0_method\": \"bootstrap\", \"pi0_smooth_df\": \"3\", \"pi0_smooth_log\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4.0", + "type": "tool", + "uuid": "3d0fc6f5-1027-4074-bcd1-5f73b1493f5b", + "workflow_outputs": [ + { + "label": null, + "output_name": "protein_plots", + "uuid": "168a4e50-79f9-458c-876a-79cb5cad5198" + }, + { + "label": null, + "output_name": "output", + "uuid": "ec047143-40ef-4061-8c1a-2fb6e81a6e62" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_export/pyprophet_export/2.1.4.1", + "errors": null, + "id": 12, + "input_connections": { + "conditional_swath2stats|study_design": { + "id": 0, + "output_name": "output" + }, + "input": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PyProphet export", + "outputs": [ + { + "name": "export_file", + "type": "tabular" + }, + { + "name": "summary", + "type": "pdf" + }, + { + "name": "peptide_signal", + "type": "tabular" + }, + { + "name": "protein_signal", + "type": "tabular" + }, + { + "name": "msstats_input", + "type": "tabular" + } + ], + "position": { + "bottom": 666.7999877929688, + "height": 530.7999877929688, + "left": 754.5, + "right": 954.5, + "top": 136, + "width": 200, + "x": 754.5, + "y": 136 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_export/pyprophet_export/2.1.4.1", + "tool_shed_repository": { + "changeset_revision": "3cf580bf28e2", + "name": "pyprophet_export", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"osw\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"conditional_output\": {\"format\": \"legacy_merged\", \"__current_case__\": 1, \"transition_quant\": \"true\", \"max_transition_pep\": \"0.7\", \"ipf\": \"peptidoform\", \"ipf_max_peptidoform_pep\": \"0.4\", \"max_rs_peakgroup_qvalue\": \"0.05\", \"max_global_peptide_qvalue\": \"0.01\", \"max_global_protein_qvalue\": \"0.01\"}, \"conditional_swath2stats\": {\"swath2stats\": \"yes_swath2stats\", \"__current_case__\": 0, \"study_design\": {\"__class__\": \"ConnectedValue\"}, \"conditional_fdr_replica\": {\"calc_fdr_replica\": \"calc_fdr_replica_yes\", \"__current_case__\": 0, \"fft\": \"0.5\", \"n_range\": \"10.0\", \"fdr_target\": \"0.05\", \"n_replica\": \"2\"}, \"conditional_max_pep\": {\"filter_max_pep\": \"filter_max_pep_yes\", \"__current_case__\": 0, \"n_peptides_max\": \"10\"}, \"conditional_min_pep\": {\"filter_min_pep\": \"filter_min_pep_yes\", \"__current_case__\": 0, \"n_peptides_min\": \"2\"}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"peptide_error\": \"true\", \"protein_error\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4.1", + "type": "tool", + "uuid": "48d5be06-8816-4da4-a70d-12b5a219f07b", + "workflow_outputs": [ + { + "label": null, + "output_name": "msstats_input", + "uuid": "e287c3d3-cb72-4d70-809b-acb86932a2db" + }, + { + "label": null, + "output_name": "summary", + "uuid": "f5be16a2-f5a0-4abb-807c-079bddfaeb5c" + }, + { + "label": null, + "output_name": "export_file", + "uuid": "6d808fed-9f94-4a95-a0ad-ce0f41170e69" + }, + { + "label": null, + "output_name": "peptide_signal", + "uuid": "d044b25c-c339-4bdf-8c18-422a88f029b0" + }, + { + "label": null, + "output_name": "protein_signal", + "uuid": "d45a777c-0af4-4569-a427-8ae99e0314ff" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 12, + "output_name": "protein_signal" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select", + "name": "input" + } + ], + "label": "Ecoli protein expression matrix", + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 483.6000061035156, + "height": 113.60000610351562, + "left": 1058.5, + "right": 1258.5, + "top": 370, + "width": 200, + "x": 1058.5, + "y": 370 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"invert\": \"false\", \"pattern\": \"(ECOLI)|(Spike-in)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "5282f24d-8985-472e-9669-f5484a9a2594", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "26ace007-a011-453e-b37e-1a2056a6184b" + } + ] + } + ], + "parent_id": "proteomics/DIA_Analysis_OSW", + "path": "topics/proteomics/tutorials/DIA_Analysis_OSW/workflows/Galaxy-Workflow-_DIA_Training_using_HEK_Ecoli_3_EG_data_.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "DIA_Analysis_OSW", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-DIA_Analysis_OSW/versions/galaxy-workflow--dia-training-using-hek-ecoli-3-eg-data-", + "tutorial_id": "DIA_Analysis_OSW", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_Analysis_OSW/workflows/Galaxy-Workflow-_DIA_Training_using_HEK_Ecoli_3_EG_data_.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/DIA_Analysis_OSW/workflows/Galaxy-Workflow-_DIA_Training_using_HEK_Ecoli_3_EG_data_.html", + "version": 1, + "wfid": "proteomics-DIA_Analysis_OSW", + "wfname": "galaxy-workflow--dia-training-using-hek-ecoli-3-eg-data-", + "workflow": "Galaxy-Workflow-_DIA_Training_using_HEK_Ecoli_3_EG_data_.ga", + "workflow_tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_openswathworkflow/OpenSwathWorkflow/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_export/pyprophet_export/2.1.4.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_merge/pyprophet_merge/2.1.4.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_peptide/pyprophet_peptide/2.1.4.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_protein/pyprophet_protein/2.1.4.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_score/pyprophet_score/2.1.4.2" + ], + "workflowhub_id": "1180" + } + ], + "zenodo_link": "https://zenodo.org/record/4307762" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "metaquantome_db", + "owner": "galaxyp", + "revisions": "7c45aa1c9464", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_expand", + "owner": "galaxyp", + "revisions": "eb65ab160a10", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_filter", + "owner": "galaxyp", + "revisions": "7d1c20b315ff", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_sample", + "owner": "galaxyp", + "revisions": "49a957fb353a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_stat", + "owner": "galaxyp", + "revisions": "982a442a98dd", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "metaquantome_viz", + "owner": "galaxyp", + "revisions": "02da24eac445", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: metaquantome_db\n owner: galaxyp\n revisions: 7c45aa1c9464\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_expand\n owner: galaxyp\n revisions: eb65ab160a10\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_filter\n owner: galaxyp\n revisions: 7d1c20b315ff\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_sample\n owner: galaxyp\n revisions: 49a957fb353a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_stat\n owner: galaxyp\n revisions: 982a442a98dd\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: metaquantome_viz\n owner: galaxyp\n revisions: 02da24eac445\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-taxonomy/tutorial.json", + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "leith023@umn.edu", + "id": "emmaleith", + "joined": "2019-07", + "name": "Emma Leith", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emmaleith/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emmaleith.json" + }, + { + "email": "crane136@umn.edu", + "id": "mariecrane", + "joined": "2019-05", + "name": "Marie Crane", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mariecrane/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mariecrane.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + } + ], + "dir": "topics/proteomics/tutorials/metaquantome-taxonomy", + "edam_ontology": [ + "topic_0121", + "topic_3922", + "topic_3941", + "topic_3697", + "topic_3174", + "topic_0637" + ], + "edam_operation": [ + "Visualisation", + "Differential protein expression analysis", + "Functional clustering", + "Query and retrieval", + "Indexing", + "Filtering", + "Heat map generation", + "Statistical inference", + "Principal component visualisation", + "Quantification" + ], + "edam_topic": [ + "Proteomics", + "Proteogenomics", + "Metatranscriptomics", + "Microbial ecology", + "Metagenomics", + "Taxonomy" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "metaproteomics", + "metaquantome-function" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/metaquantome-taxonomy", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "All the inputs should have one column in common i.e. peptides.", + "Learning different tools such as Unipept, MEGAN, MetaGOmics etc. for taxonomic annotation of peptides will benefit." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-03-15", + "objectives": [ + "A taxonomy and quantitational analysis of metaproteomic mass spectrometry data." + ], + "pageviews": 502, + "pub_date": "2020-10-29", + "questions": [ + "How do I look at differentially expressed taxa?", + "Can we get top 5 or 10 taxa present in the sample?", + "How can I visualize my results?" + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "metaquantome-data-creation" + ], + "type": "internal" + } + ], + "short_id": "T00224", + "short_tools": [ + "metaquantome_db", + "metaquantome_sample", + "metaquantome_stat", + "metaquantome_expand", + "metaquantome_filter", + "metaquantome_viz" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "multi-omics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "microgalaxy" + ], + "time_estimation": "1h", + "title": "metaQuantome 3: Taxonomy", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metaquantome-taxonomy", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-taxonomy/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-taxonomy/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-taxonomy/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 158, + "visitors": 371, + "workflows": [ + { + "creators": [], + "description": "metaquantome-taxonomy", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"metaQuantome: create samples file\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTaxa\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIntensity\"]\n 3[label=\"metaQuantome: database\"]\n 4[label=\"metaQuantome: expand\"]\n 3 -> 4 [label=\"outfile\"]\n 2 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"samples_file\"]\n 5[label=\"metaQuantome: filter\"]\n 4 -> 5 [label=\"outfile\"]\n 0 -> 5 [label=\"samples_file\"]\n 6[label=\"metaQuantome: stat\"]\n 5 -> 6 [label=\"outfile\"]\n 0 -> 6 [label=\"samples_file\"]\n 7[label=\"T2-Bar-Plot\"]\n 6 -> 7 [label=\"outfile\"]\n 0 -> 7 [label=\"samples_file\"]\n 8[label=\"T7-T2_volcano-plot\"]\n 6 -> 8 [label=\"outfile\"]\n 0 -> 8 [label=\"samples_file\"]\n 9[label=\"T4-Bar-Plot\"]\n 6 -> 9 [label=\"outfile\"]\n 0 -> 9 [label=\"samples_file\"]\n 10[label=\"T7-Bar-Plot\"]\n 6 -> 10 [label=\"outfile\"]\n 0 -> 10 [label=\"samples_file\"]\n 11[label=\"T4-T2_volcano-plot\"]\n 6 -> 11 [label=\"outfile\"]\n 0 -> 11 [label=\"samples_file\"]\n}", + "history": [ + { + "hash": "23fe00a8ab231d19aad201787b67446f76d72128", + "message": "Update main_workflow.ga", + "num": 3, + "short_hash": "23fe00a8a", + "unix": "1636494825" + }, + { + "hash": "6508b46449968fac766df69a5fee4295fa7e362f", + "message": "Update main_workflow.ga", + "num": 2, + "short_hash": "6508b4644", + "unix": "1603158930" + }, + { + "hash": "426a2746eee3945edd669f81b15b222493c46c82", + "message": "tutorial skeletons generated by planemo", + "num": 1, + "short_hash": "426a2746e", + "unix": "1602853461" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Taxa" + } + ], + "label": "Taxa", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 306.6493225097656, + "top": 535.6250152587891 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "dea4289e-33b0-4215-8768-da6c65f8cd83", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fbf383a9-1774-483c-a1f1-1aa4d0a5659f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Intensity" + } + ], + "label": "Intensity", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 304.6180725097656, + "top": 659.6180877685547 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "be000472-cc47-456f-8791-b62c1a6308ec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "42e60127-395b-451f-a31c-191f6f82f2e0" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"metaQuantome: create samples file\"];\n 1[\"\u2139\ufe0f Input Dataset\\nTaxa\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nIntensity\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"metaQuantome: database\"];\n 4[\"metaQuantome: expand\"];\n 3 -->|outfile| 4;\n 2 -->|output| 4;\n 1 -->|output| 4;\n 0 -->|samples_file| 4;\n 5[\"metaQuantome: filter\"];\n 4 -->|outfile| 5;\n 0 -->|samples_file| 5;\n 6[\"metaQuantome: stat\"];\n 5 -->|outfile| 6;\n 0 -->|samples_file| 6;\n 7[\"T2-Bar-Plot\"];\n 6 -->|outfile| 7;\n 0 -->|samples_file| 7;\n 8[\"T7-T2_volcano-plot\"];\n 6 -->|outfile| 8;\n 0 -->|samples_file| 8;\n 9[\"T4-Bar-Plot\"];\n 6 -->|outfile| 9;\n 0 -->|samples_file| 9;\n 10[\"T7-Bar-Plot\"];\n 6 -->|outfile| 10;\n 0 -->|samples_file| 10;\n 11[\"T4-T2_volcano-plot\"];\n 6 -->|outfile| 11;\n 0 -->|samples_file| 11;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "metaquantome-taxonomy-workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.0-0", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "metaQuantome: create samples file", + "outputs": [ + { + "name": "samples_file", + "type": "tabular" + } + ], + "position": { + "left": 324.2882385253906, + "top": 367.9861297607422 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "40ca115438d2", + "name": "metaquantome_sample", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"samps_args\": {\"samps_src\": \"build\", \"__current_case__\": 0, \"samps\": [{\"__index__\": 0, \"group_name\": \"T2\", \"col_names\": \"T2_A1,T2_B1\"}, {\"__index__\": 1, \"group_name\": \"T4\", \"col_names\": \"T4A_1,T4B_1\"}, {\"__index__\": 2, \"group_name\": \"T7\", \"col_names\": \"T7A_1,T7B_1\"}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "8f8b3a5c-1ada-4b83-988b-46ff7e2e9468", + "workflow_outputs": [ + { + "label": null, + "output_name": "samples_file", + "uuid": "d0b1aed8-8212-4e20-b1b4-b10bf76a394d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Taxa" + } + ], + "label": "Taxa", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 306.6493225097656, + "top": 535.6250152587891 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "dea4289e-33b0-4215-8768-da6c65f8cd83", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fbf383a9-1774-483c-a1f1-1aa4d0a5659f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Intensity" + } + ], + "label": "Intensity", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 304.6180725097656, + "top": 659.6180877685547 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "be000472-cc47-456f-8791-b62c1a6308ec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "42e60127-395b-451f-a31c-191f6f82f2e0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.0-0", + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "metaQuantome: database", + "outputs": [ + { + "name": "outfile", + "type": "tar" + } + ], + "position": { + "left": 293.2986145019531, + "top": 780.0000152587891 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "860429737408", + "name": "metaquantome_db", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"databases\": [\"ncbi\", \"go\", \"ec\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "25b0969d-52fb-4942-b37f-d9bfb88d048b", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "4136ae07-b54f-4dea-bb43-b79259ea1df2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.0-0", + "errors": null, + "id": 4, + "input_connections": { + "db_tar": { + "id": 3, + "output_name": "outfile" + }, + "int_file": { + "id": 2, + "output_name": "output" + }, + "mode_args|tax_file": { + "id": 1, + "output_name": "output" + }, + "samps": { + "id": 0, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": null, + "name": "metaQuantome: expand", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 595.2430725097656, + "top": 528.0034942626953 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "4187b6df1a40", + "name": "metaquantome_expand", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tar\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"db_tar\": {\"__class__\": \"ConnectedValue\"}, \"int_file\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"t\", \"__current_case__\": 1, \"tax_file\": {\"__class__\": \"ConnectedValue\"}, \"pep_colname_tax\": \"peptide\", \"tax_colname\": \"taxon_id\"}, \"pep_colname_int\": \"peptide\", \"samps\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "6d9549b9-849e-4412-8a51-1aa88f34eb8c", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "8cc0c4b0-53d3-40b0-aae4-609a33c3de73" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.0-0", + "errors": null, + "id": 5, + "input_connections": { + "expand_file": { + "id": 4, + "output_name": "outfile" + }, + "samps": { + "id": 0, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": null, + "name": "metaQuantome: filter", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 626.2674255371094, + "top": 899.0104522705078 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "a1daafbf5233", + "name": "metaquantome_filter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"expand_file\": {\"__class__\": \"ConnectedValue\"}, \"min_child_nsamp\": \"1\", \"min_children_non_leaf\": \"2\", \"min_pep_nsamp\": \"1\", \"min_peptides\": \"1\", \"mode_args\": {\"mode\": \"t\", \"__current_case__\": 1}, \"qthreshold\": \"2\", \"samps\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "afab6ea9-b83d-426f-badc-14ca1e4596d9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "6d31b51a-5045-4a68-ba38-507d06331904" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.0-0", + "errors": null, + "id": 6, + "input_connections": { + "file": { + "id": 5, + "output_name": "outfile" + }, + "samps": { + "id": 0, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": null, + "name": "metaQuantome: stat", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 890.2951354980469, + "top": 523.9930877685547 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "b648e45fd3cf", + "name": "metaquantome_stat", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"control_group\": \"T2\", \"file\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"t\", \"__current_case__\": 1}, \"paired\": \"true\", \"parametric\": \"True\", \"samps\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "06bf363c-be87-4342-b803-38e5b0b9b1e0", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "b66b5425-b16e-4034-899e-033f15f94bbf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 0, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T2-Bar-Plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "left": 1236.3020935058594, + "top": 200.00000762939453 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"t\", \"__current_case__\": 1, \"plot\": {\"plottype\": \"bar\", \"__current_case__\": 0, \"target_rank\": \"genus\", \"meancol\": \"T2_mean\", \"nterms\": \"5\", \"barcol\": \"1\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "403554ac-e02a-423c-8342-a2813b4f160a", + "workflow_outputs": [ + { + "label": null, + "output_name": "plotdata", + "uuid": "0f00b678-12ee-40a4-919a-736998f1da10" + }, + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "5ce4440c-d524-47a1-a990-069824a9c20e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "errors": null, + "id": 8, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 0, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T7-T2_volcano-plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "left": 931.5625915527344, + "top": 947.6042022705078 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"t\", \"__current_case__\": 1, \"plot\": {\"plottype\": \"volcano\", \"__current_case__\": 1, \"fc_name\": \"log2fc_T7_over_T2\", \"fc_corr_p\": \"corrected_p_T7_over_T2\", \"textannot\": \"\", \"flip_fc\": \"false\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "56b5e0c8-654f-48a1-80f2-5dee80f2ea28", + "workflow_outputs": [ + { + "label": null, + "output_name": "plotdata", + "uuid": "8a5b5357-fdf6-4a08-80fc-ccc961e197d3" + }, + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "1885e756-240c-4c52-9a92-3031c86fa28b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "errors": null, + "id": 9, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 0, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T4-Bar-Plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "left": 1236.3020935058594, + "top": 540.0000152587891 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"t\", \"__current_case__\": 1, \"plot\": {\"plottype\": \"bar\", \"__current_case__\": 0, \"target_rank\": \"genus\", \"meancol\": \"T4_mean\", \"nterms\": \"5\", \"barcol\": \"1\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "a4d4199a-6fac-4027-9403-317561ea3ca0", + "workflow_outputs": [ + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "5db21144-afd7-486a-ad2e-e2186ccb2759" + }, + { + "label": null, + "output_name": "plotdata", + "uuid": "a6fb4b9a-b0fb-4a0e-af13-6cd78d2a804b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 0, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T7-Bar-Plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "left": 1244.3056335449219, + "top": 834.0104522705078 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"t\", \"__current_case__\": 1, \"plot\": {\"plottype\": \"bar\", \"__current_case__\": 0, \"target_rank\": \"genus\", \"meancol\": \"T7_mean\", \"nterms\": \"5\", \"barcol\": \"1\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "3e71e1e5-5f29-4e02-87d4-431a93d72eb0", + "workflow_outputs": [ + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "c49669b7-f4c9-4e84-89bf-86484a3e11d0" + }, + { + "label": null, + "output_name": "plotdata", + "uuid": "b17119dd-9b47-40ba-9610-53f1fbffab04" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "errors": null, + "id": 11, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + }, + "samps": { + "id": 0, + "output_name": "samples_file" + } + }, + "inputs": [], + "label": "T4-T2_volcano-plot", + "name": "metaQuantome: visualize", + "outputs": [ + { + "name": "wrapped_outfile", + "type": "html" + }, + { + "name": "plotdata", + "type": "tabular" + } + ], + "position": { + "left": 1275.2778015136719, + "top": 1161.0069732666016 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0", + "tool_shed_repository": { + "changeset_revision": "eb811f3018ea", + "name": "metaquantome_viz", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"height\": null, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"mode_args\": {\"mode\": \"t\", \"__current_case__\": 1, \"plot\": {\"plottype\": \"volcano\", \"__current_case__\": 1, \"fc_name\": \"log2fc_T4_over_T2\", \"fc_corr_p\": \"corrected_p_T4_over_T2\", \"textannot\": \"\", \"flip_fc\": \"false\"}}, \"samps\": {\"__class__\": \"ConnectedValue\"}, \"width\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy0", + "type": "tool", + "uuid": "6d7fa5d9-4ece-4f7c-9a5c-21366e78b7de", + "workflow_outputs": [ + { + "label": null, + "output_name": "wrapped_outfile", + "uuid": "c06ba8b9-d6ae-409a-8418-01a21e80c209" + }, + { + "label": null, + "output_name": "plotdata", + "uuid": "f18da0f4-0758-472d-94fa-737119726861" + } + ] + } + ], + "parent_id": "proteomics/metaquantome-taxonomy", + "path": "topics/proteomics/tutorials/metaquantome-taxonomy/workflows/main_workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "metaquantome-taxonomy-workflow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-metaquantome-taxonomy/versions/main-workflow", + "tutorial_id": "metaquantome-taxonomy", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-taxonomy/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-taxonomy/workflows/main_workflow.html", + "version": 2, + "wfid": "proteomics-metaquantome-taxonomy", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_db/metaquantome_db/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_expand/metaquantome_expand/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_filter/metaquantome_filter/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_sample/metaquantome_sample/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_stat/metaquantome_stat/2.0.0-0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/metaquantome_viz/metaquantome_viz/2.0.0-0" + ], + "workflowhub_id": "1155" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4110725" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "288462ec2630", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_expression_rnaseq_abbased", + "owner": "proteore", + "revisions": "dbeabf9bf091", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_filter_keywords_values", + "owner": "proteore", + "revisions": "33ca9ba2495a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_id_converter", + "owner": "proteore", + "revisions": "b6607b7e683f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_ms_observation_pepatlas", + "owner": "proteore", + "revisions": "299eb4a62e0c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_prot_features", + "owner": "proteore", + "revisions": "8df559ad14a7", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_tissue_specific_expression_data", + "owner": "proteore", + "revisions": "3e65e0249976", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_venn_diagram", + "owner": "proteore", + "revisions": "d1fd04dcb13a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: 288462ec2630\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_expression_rnaseq_abbased\n owner: proteore\n revisions: dbeabf9bf091\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_filter_keywords_values\n owner: proteore\n revisions: 33ca9ba2495a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_id_converter\n owner: proteore\n revisions: b6607b7e683f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_ms_observation_pepatlas\n owner: proteore\n revisions: 299eb4a62e0c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_prot_features\n owner: proteore\n revisions: 8df559ad14a7\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_tissue_specific_expression_data\n owner: proteore\n revisions: 3e65e0249976\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_venn_diagram\n owner: proteore\n revisions: d1fd04dcb13a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/biomarker_selection/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "florence.combes@cea.fr", + "id": "combesf", + "joined": "2019-04", + "name": "Florence Combes", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/combesf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/combesf.json" + }, + { + "id": "davidchristiany", + "joined": "2019-04", + "name": "David Christiany", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/davidchristiany/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/davidchristiany.json" + }, + { + "id": "vloux", + "joined": "2019-04", + "name": "Valentin Loux", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/vloux/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/vloux.json" + }, + { + "id": "yvandenb", + "joined": "2019-04", + "name": "Yves Vandenbrouck", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvandenb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvandenb.json" + } + ], + "dir": "topics/proteomics/tutorials/biomarker_selection", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/biomarker_selection", + "inexact_supported_servers": [ + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Public proteomics databases are useful resources for annotation of biomarker candidates" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Build a workflow implementing a strategy for the selection of tissue-leakage biomarkers using ProteoRE" + ], + "pageviews": 1899, + "pub_date": "2019-06-13", + "questions": [ + "How to mine public databases to retrieve info?", + "How to build a selection strategy by applying successive biochemical/cellular criteria to a list of gene/protein?", + "How to select biomarkers candidates using experimental information (transcriptomics & proteomics) and annotation from public databases?" + ], + "short_id": "T00213", + "short_tools": [ + "IDconverter", + "MQoutputfilter", + "prot_features", + "retr_pepatlas1", + "tp_cut_tool", + "retrieve_from_hpa", + "rna_abbased_data", + "Jvenn" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "post-process", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "DDA", + "human" + ], + "time_estimation": "3H", + "title": "Biomarker candidate identification", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.0.0", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_expression_rnaseq_abbased/rna_abbased_data/2019.03.07", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_filter_keywords_values/MQoutputfilter/2019.03.05", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_id_converter/IDconverter/2019.01.28", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_ms_observation_pepatlas/retr_pepatlas1/2019.02.01.1", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_prot_features/prot_features/2019.01.18", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_tissue_specific_expression_data/retrieve_from_hpa/2019.02.27", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_venn_diagram/Jvenn/2018.12.18" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "biomarker_selection", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/biomarker_selection/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/biomarker_selection/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/biomarker_selection/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 159, + "visitors": 1369, + "workflows": [ + { + "creators": [], + "description": "Biomarker candidate identification", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Build tissue-specific expression dataset\"]\n 1[label=\"Build tissue-specific expression dataset\"]\n 2[label=\"Filter by keywords and/or numerical value\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Venn diagram\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"kept_lines\"]\n 4[label=\"Cut\"]\n 3 -> 4 [label=\"output_text\"]\n 5[label=\"Filter by keywords and/or numerical value\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"Add expression data\"]\n 5 -> 6 [label=\"kept_lines\"]\n 7[label=\"Filter by keywords and/or numerical value\"]\n 6 -> 7 [label=\"output\"]\n 8[label=\"ID Converter\"]\n 7 -> 8 [label=\"kept_lines\"]\n 9[label=\"Add protein features\"]\n 8 -> 9 [label=\"output\"]\n 10[label=\"Filter by keywords and/or numerical value\"]\n 9 -> 10 [label=\"output\"]\n 11[label=\"Get MS/MS observations in tissue/fluid\"]\n 10 -> 11 [label=\"kept_lines\"]\n 12[label=\"Filter by keywords and/or numerical value\"]\n 11 -> 12 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "efe1128541cbed0185333343ba7bd94fb3bab869", + "message": "Add first version of biomarker selection tutorial", + "num": 1, + "short_hash": "efe112854", + "unix": "1556267888" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"Build tissue-specific expression dataset\"];\n 1[\"Build tissue-specific expression dataset\"];\n 2[\"Filter by keywords and/or numerical value\"];\n 1 -->|output| 2;\n 3[\"Venn diagram\"];\n 0 -->|output| 3;\n 2 -->|kept_lines| 3;\n 4[\"Cut\"];\n 3 -->|output_text| 4;\n 5[\"Filter by keywords and/or numerical value\"];\n 4 -->|output| 5;\n 6[\"Add expression data\"];\n 5 -->|kept_lines| 6;\n 7[\"Filter by keywords and/or numerical value\"];\n 6 -->|output| 7;\n 8[\"ID Converter\"];\n 7 -->|kept_lines| 8;\n 9[\"Add protein features\"];\n 8 -->|output| 9;\n 10[\"Filter by keywords and/or numerical value\"];\n 9 -->|output| 10;\n 11[\"Get MS/MS observations in tissue/fluid\"];\n 10 -->|kept_lines| 11;\n 12[\"Filter by keywords and/or numerical value\"];\n 11 -->|output| 12;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "'Biomarkers4Paris' Workflow", + "outputs": [], + "parent_id": "proteomics/biomarker_selection", + "path": "topics/proteomics/tutorials/biomarker_selection/workflows/main_workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "'Biomarkers4Paris' Workflow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-biomarker_selection/versions/main-workflow", + "tutorial_id": "biomarker_selection", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/biomarker_selection/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/biomarker_selection/workflows/main_workflow.html", + "version": 3, + "wfid": "proteomics-biomarker_selection", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.0.0", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_expression_rnaseq_abbased/rna_abbased_data/2019.03.07", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_filter_keywords_values/MQoutputfilter/2019.03.05", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_id_converter/IDconverter/2019.01.28", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_ms_observation_pepatlas/retr_pepatlas1/2019.02.01.1", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_prot_features/prot_features/2019.01.18", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_tissue_specific_expression_data/retrieve_from_hpa/2019.02.27", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_venn_diagram/Jvenn/2018.12.18" + ], + "workflowhub_id": "1232" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "msstatstmt", + "owner": "galaxyp", + "revisions": "bd1535813cfe", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unipept", + "owner": "galaxyp", + "revisions": "21a560af5913", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: msstatstmt\n owner: galaxyp\n revisions: bd1535813cfe\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unipept\n owner: galaxyp\n revisions: 21a560af5913\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-5-data-interpretation/tutorial.json", + "contributions": { + "authorship": [ + "subinamehta", + "katherine-d21", + "dechendb" + ], + "editing": [ + "pratikdjagtap", + "timothygriffin" + ] + }, + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "id": "katherine-d21", + "joined": "2023-08", + "name": "Katherine Do", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherine-d21/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherine-d21.json" + }, + { + "id": "dechendb", + "joined": "2023-06", + "name": "Dechen Bhuming", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dechendb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dechendb.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + } + ], + "dir": "topics/proteomics/tutorials/clinical-mp-5-data-interpretation", + "edam_operation": [ + "Visualisation", + "Prediction and recognition" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "metaproteomics" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/clinical-mp-5-data-interpretation", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Data interpretation and visualization of clinical samples." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Perform group comparison analysis.", + "Analyze significant proteins", + "Look at the taxonomic distribution of the quantified peptides" + ], + "pageviews": 73, + "pub_date": "2024-02-06", + "questions": [ + "Why do we need to interpret the data?", + "Can we visualize the data?" + ], + "recordings": [ + { + "captioners": [ + "katherine-d21" + ], + "date": "2024-06-21", + "galaxy_version": "23.1", + "length": "20M", + "speakers": [ + "katherine-d21" + ], + "youtube_id": "uDs9bXAwCHo" + } + ], + "redirect_from": [ + "/topics/proteomics/tutorials/clinical-mp-data-interpretation/tutorial", + "/short/proteomics/clinical-mp-5-data-interpretation", + "/short/T00417" + ], + "requirements": [ + { + "topic_name": "proteomics", + "type": "internal" + } + ], + "short_id": "T00417", + "short_tools": [ + "Grep1", + "unipept", + "msstatstmt" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "clinical-metaproteomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "label-TMT11" + ], + "time_estimation": "3H", + "title": "Clinical Metaproteomics 5: Data Interpretation", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstatstmt/msstatstmt/2.0.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.5.1" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "clinical-mp-5-data-interpretation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/clinical-mp-5-data-interpretation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-5-data-interpretation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-5-data-interpretation/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 558, + "visitors": 49, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + } + ], + "description": "Interpreting MaxQuant data using MSstats involves applying a rigorous statistical framework to glean meaningful insights from quantitative proteomic datasets", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQuantified Peptides\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMaxQuant Protein Groups\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMaxQuant Evidence\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnotation.txt\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nComparison Matrix\"]\n 5[label=\"Unipept\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Microbial Proteins\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Select\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"MSstatsTMT\"]\n 4 -> 8 [label=\"output\"]\n 3 -> 8 [label=\"output\"]\n 2 -> 8 [label=\"output\"]\n 6 -> 8 [label=\"out_file1\"]\n 9[label=\"HUMAN-Proteins\"]\n 7 -> 9 [label=\"out_file1\"]\n 10[label=\"MSstatsTMT\"]\n 4 -> 10 [label=\"output\"]\n 3 -> 10 [label=\"output\"]\n 2 -> 10 [label=\"output\"]\n 9 -> 10 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "e8db145f1d7e42048e01ecc851e6c2bf5caf0f1a", + "message": "add missing metadata", + "num": 2, + "short_hash": "e8db145f1", + "unix": "1723120021" + }, + { + "hash": "e0464fd1787b4ca7dea72ca77b7ab2ad03a8292a", + "message": "add workflows", + "num": 1, + "short_hash": "e0464fd17", + "unix": "1723118192" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Quantified Peptides" + } + ], + "label": "Quantified Peptides", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 189.871337890625, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "cd669a99-182a-48db-a2c6-f8d24323e353", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "MaxQuant Protein Groups" + } + ], + "label": "MaxQuant Protein Groups", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 289.65196228027344 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2ecd2d61-5e94-4dbd-a0cc-c30c343b38b4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "MaxQuant Evidence" + } + ], + "label": "MaxQuant Evidence", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 221.97045898437503, + "top": 568.7156335895269 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "11afae12-7cc4-402b-a0e3-cf6e53276674", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Annotation.txt" + } + ], + "label": "Annotation.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 293.3940978424075, + "top": 851.982536255788 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4ed9cd3d-2473-4b69-8ac8-3404e5628f85", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Comparison Matrix" + } + ], + "label": "Comparison Matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 307.5031433105469, + "top": 973.9487421100347 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "6c47825f-c68c-4f0e-a99b-a961f27c7719", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQuantified Peptides\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nMaxQuant Protein Groups\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nMaxQuant Evidence\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nAnnotation.txt\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nComparison Matrix\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Unipept\"];\n 0 -->|output| 5;\n 6[\"Microbial Proteins\"];\n 1 -->|output| 6;\n 7[\"Select\"];\n 1 -->|output| 7;\n 8[\"MSstatsTMT\"];\n 4 -->|output| 8;\n 3 -->|output| 8;\n 2 -->|output| 8;\n 6 -->|out_file1| 8;\n 9[\"HUMAN-Proteins\"];\n 7 -->|out_file1| 9;\n 10[\"MSstatsTMT\"];\n 4 -->|output| 10;\n 3 -->|output| 10;\n 2 -->|output| 10;\n 9 -->|out_file1| 10;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "WF5_Data_Interpretation_Worklow", + "outputs": [], + "parent_id": "proteomics/clinical-mp-5-data-interpretation", + "path": "topics/proteomics/tutorials/clinical-mp-5-data-interpretation/workflows/WF5_Data_Interpretation_Worklow.ga", + "tags": [ + "name:clinicalMP" + ], + "test_results": null, + "tests": false, + "title": "WF5_Data_Interpretation_Worklow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-clinical-mp-5-data-interpretation/versions/wf5-data-interpretation-worklow", + "tutorial_id": "clinical-mp-5-data-interpretation", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-5-data-interpretation/workflows/WF5_Data_Interpretation_Worklow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-5-data-interpretation/workflows/WF5_Data_Interpretation_Worklow.html", + "version": 1, + "wfid": "proteomics-clinical-mp-5-data-interpretation", + "wfname": "wf5-data-interpretation-worklow", + "workflow": "WF5_Data_Interpretation_Worklow.ga", + "workflow_tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstatstmt/msstatstmt/2.0.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.5.1" + ], + "workflowhub_id": "1352" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.10105821" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "flashlfq", + "owner": "galaxyp", + "revisions": "878f6725c4f3", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msconvert", + "owner": "galaxyp", + "revisions": "9ec469ff191a", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "7fdd9119cc4f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "7fdd9119cc4f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "209b7c5ee9d7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unipept", + "owner": "galaxyp", + "revisions": "4953dcd7dd39", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unipept", + "owner": "galaxyp", + "revisions": "9aaa46d45472", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unipept", + "owner": "galaxyp", + "revisions": "75b3b3d0adbf", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "33d61c89fb8d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: flashlfq\n owner: galaxyp\n revisions: 878f6725c4f3\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msconvert\n owner: galaxyp\n revisions: 9ec469ff191a\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 7fdd9119cc4f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 7fdd9119cc4f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 209b7c5ee9d7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unipept\n owner: galaxyp\n revisions: 4953dcd7dd39\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unipept\n owner: galaxyp\n revisions: 9aaa46d45472\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unipept\n owner: galaxyp\n revisions: 75b3b3d0adbf\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: 33d61c89fb8d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-data-creation/tutorial.json", + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "leith023@umn.edu", + "id": "emmaleith", + "joined": "2019-07", + "name": "Emma Leith", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/emmaleith/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/emmaleith.json" + }, + { + "email": "crane136@umn.edu", + "id": "mariecrane", + "joined": "2019-05", + "name": "Marie Crane", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mariecrane/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mariecrane.json" + } + ], + "dir": "topics/proteomics/tutorials/metaquantome-data-creation", + "edam_ontology": [ + "topic_0121", + "topic_3922", + "topic_3050", + "topic_0637" + ], + "edam_operation": [ + "Visualisation", + "Label-free quantification", + "Filtering", + "Formatting", + "Prediction and recognition" + ], + "edam_topic": [ + "Proteomics", + "Proteogenomics", + "Biodiversity", + "Taxonomy" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "metaproteomics" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/metaquantome-data-creation", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use dataset collections", + "With SearchGUI and PeptideShaker you can gain access to multiple search engines", + "Learning the basics of SQL queries can pay off" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-03-14", + "objectives": [ + "A taxonomy, functional and quantitational analysis of metaproteomic mass spectrometry data." + ], + "pageviews": 1343, + "pub_date": "2020-10-16", + "questions": [ + "How do I perform functional and taxonomy analysis on metaproteomics data?", + "How can I perform quantitation on metaproteomics data?", + "How do I create inputs that can be used in metaquantome to examine differentially expressed proteins?" + ], + "short_id": "T00222", + "short_tools": [ + "Grep1", + "msconvert", + "peptide_shaker", + "search_gui", + "Cut1", + "unipept", + "Filter1", + "query_tabular", + "tp_replace_in_line", + "Remove beginning1", + "regex1", + "flashlfq", + "tp_replace_in_column" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "multi-omics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "microgalaxy" + ], + "time_estimation": "1h", + "title": "metaQuantome 1: Data creation", + "tools": [ + "Cut1", + "Filter1", + "Grep1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/flashlfq/flashlfq/1.0.3.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.3.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metaquantome-data-creation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-data-creation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-data-creation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaquantome-data-creation/tutorial.json" + }, + "version": 20, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 228, + "visitors": 773, + "workflows": [ + { + "creators": [], + "description": "metaquantome-data-creation", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nExperiment_Design\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nFASTA_db\"]\n 3[label=\"mzml to mgf\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Search GUI\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"Peptide Shaker\"]\n 4 -> 5 [label=\"searchgui_results\"]\n 6[label=\"Replace Text\"]\n 5 -> 6 [label=\"output_psm\"]\n 7[label=\"Remove beginning\"]\n 5 -> 7 [label=\"output_peptides\"]\n 8[label=\"Unipept_lca\"]\n 5 -> 8 [label=\"output_peptides\"]\n 9[label=\"FlashLFQ\"]\n 1 -> 9 [label=\"output\"]\n 6 -> 9 [label=\"outfile\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Unipept_peptinfo\"]\n 7 -> 10 [label=\"out_file1\"]\n 11[label=\"Replace Text\"]\n 8 -> 11 [label=\"output_tsv\"]\n 12[label=\"Regex Find And Replace\"]\n 9 -> 12 [label=\"quantifiedPeptides\"]\n 13[label=\"selecting EC column\"]\n 10 -> 13 [label=\"output_ec_tsv\"]\n 14[label=\"filter 5% All_funct\"]\n 10 -> 14 [label=\"output_go_tsv\"]\n 15[label=\"GO_EC\"]\n 13 -> 15 [label=\"out_file1\"]\n 16[label=\"GO_BP\"]\n 14 -> 16 [label=\"output\"]\n 17[label=\"GO_CC\"]\n 14 -> 17 [label=\"output\"]\n 18[label=\"GO_MF\"]\n 14 -> 18 [label=\"output\"]\n}", + "history": [ + { + "hash": "72e53ea9af53237e2b615f69b8c95f7e1371396d", + "message": "Rename workflow.ga to main_workflow.ga", + "num": 14, + "short_hash": "72e53ea9a", + "unix": "1636569874" + }, + { + "hash": "b63d3bd0727a2182c18a765dc776ec8e35677046", + "message": "Rename main_workflow.ga to workflow.ga", + "num": 13, + "short_hash": "b63d3bd07", + "unix": "1636567614" + }, + { + "hash": "02a2548eca97ef7b2a0d5ac8b4ae145280ec9918", + "message": "Update main_workflow.ga", + "num": 12, + "short_hash": "02a2548ec", + "unix": "1636474235" + }, + { + "hash": "d4a710e9f76a5f0037efdf0e93711e87408ac272", + "message": "Update main_workflow.ga", + "num": 11, + "short_hash": "d4a710e9f", + "unix": "1636473894" + }, + { + "hash": "d0478e7ffd03b7adb6957eebf7fd90625fef7581", + "message": "Update main_workflow.ga", + "num": 10, + "short_hash": "d0478e7ff", + "unix": "1636473603" + }, + { + "hash": "2c4ad397f2f8887a6b0138d30f2e416d60341efd", + "message": "Fixed tool_state.", + "num": 9, + "short_hash": "2c4ad397f", + "unix": "1602877288" + }, + { + "hash": "f81d5946b9364c6a7b2a061e804c638db7f6a583", + "message": "Added collection to test.", + "num": 8, + "short_hash": "f81d5946b", + "unix": "1602873698" + }, + { + "hash": "70b86ecbfbcb239fe109e9e2e109a8a982f35fec", + "message": "Updated workflow.", + "num": 7, + "short_hash": "70b86ecbf", + "unix": "1602870731" + }, + { + "hash": "b8a5ce3d4a7d76e0453c2b25d34fadad21bc06c5", + "message": "Update main_workflow.ga", + "num": 6, + "short_hash": "b8a5ce3d4", + "unix": "1602803075" + }, + { + "hash": "71d516d05c099ba378eafd7eb1f7dedc3a288b65", + "message": "Update main_workflow.ga", + "num": 5, + "short_hash": "71d516d05", + "unix": "1602790259" + }, + { + "hash": "aa695993e63aa8d5ac99b842f23035d74a17978d", + "message": "Update main_workflow.ga", + "num": 4, + "short_hash": "aa695993e", + "unix": "1602507576" + }, + { + "hash": "dadb44fb528517637c96e074c9459bfd1c5a9ebb", + "message": "Update main_workflow.ga", + "num": 3, + "short_hash": "dadb44fb5", + "unix": "1602469286" + }, + { + "hash": "a45af5ea946c3fab63e502255a48edc8770b3237", + "message": "Update main_workflow.ga", + "num": 2, + "short_hash": "a45af5ea9", + "unix": "1602469238" + }, + { + "hash": "c042f2b7195179d8e45abac8d41122ab94538264", + "message": "planemo workflow-to-tutorial", + "num": 1, + "short_hash": "c042f2b71", + "unix": "1600357793" + } + ], + "inputs": [ + { + "annotation": "metaquantome-data-creation", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 134, + "height": 81, + "left": 347.53125, + "right": 547.53125, + "top": 53, + "width": 200, + "x": 347.53125, + "y": 53 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "a00a1b36-1600-4833-8cd3-df6ceec33349", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Experiment_Design" + } + ], + "label": "Experiment_Design", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 401.96875, + "height": 81, + "left": 525.640625, + "right": 725.640625, + "top": 320.96875, + "width": 200, + "x": 525.640625, + "y": 320.96875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "8dd6e50f-9951-4e8e-af47-783625e46786", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "FASTA_db" + } + ], + "label": "FASTA_db", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 629.03125, + "height": 61, + "left": -408, + "right": -208, + "top": 568.03125, + "width": 200, + "x": -408, + "y": 568.03125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a9156286-a9e9-402f-b1d9-3e55ddd86ce8", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nExperiment_Design\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nFASTA_db\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"mzml to mgf\"];\n 0 -->|output| 3;\n 4[\"Search GUI\"];\n 2 -->|output| 4;\n 3 -->|output| 4;\n 5[\"Peptide Shaker\"];\n 4 -->|searchgui_results| 5;\n 6[\"Replace Text\"];\n 5 -->|output_psm| 6;\n 7[\"Remove beginning\"];\n 5 -->|output_peptides| 7;\n 8[\"Unipept_lca\"];\n 5 -->|output_peptides| 8;\n 9[\"FlashLFQ\"];\n 1 -->|output| 9;\n 6 -->|outfile| 9;\n 0 -->|output| 9;\n 10[\"Unipept_peptinfo\"];\n 7 -->|out_file1| 10;\n 11[\"Replace Text\"];\n 8 -->|output_tsv| 11;\n 12[\"Regex Find And Replace\"];\n 9 -->|quantifiedPeptides| 12;\n 13[\"selecting EC column\"];\n 10 -->|output_ec_tsv| 13;\n 14[\"filter 5% All_funct\"];\n 10 -->|output_go_tsv| 14;\n 15[\"GO_EC\"];\n 13 -->|out_file1| 15;\n 16[\"GO_BP\"];\n 14 -->|output| 16;\n 17[\"GO_CC\"];\n 14 -->|output| 17;\n 18[\"GO_MF\"];\n 14 -->|output| 18;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "metaQuantome_datacreation_workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.0", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "mzml to mgf", + "name": "msconvert", + "outputs": [ + { + "name": "output", + "type": "mzml" + } + ], + "position": { + "bottom": 587.5, + "height": 132, + "left": -35.515625, + "right": 164.484375, + "top": 455.5, + "width": 200, + "x": -35.515625, + "y": 455.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.0", + "tool_shed_repository": { + "changeset_revision": "9ec469ff191a", + "name": "msconvert", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"data_processing\": {\"peak_picking\": {\"pick_peaks\": \"false\", \"__current_case__\": 0}, \"precursor_refinement\": {\"use_mzrefinement\": \"false\", \"__current_case__\": 0}, \"charge_state_calculation\": {\"charge_state_calculation_method\": \"false\", \"__current_case__\": 0}, \"thresholds\": [], \"filter_mz_windows\": {\"do_mzwindow_filter\": \"false\", \"__current_case__\": 0}, \"etd_filtering\": {\"do_etd_filtering\": \"false\", \"__current_case__\": 0}, \"ms2denoise\": {\"denoise\": \"false\", \"__current_case__\": 1}, \"ms2deisotope\": \"false\"}, \"filtering\": {\"activation\": \"false\", \"indices\": [], \"scan_numbers\": [], \"strip_it\": \"false\", \"filter_ms_levels\": {\"do_ms_level_filter\": \"false\", \"__current_case__\": 0}, \"polarity\": \"false\", \"analyzer\": \"false\"}, \"general_options\": {\"combineIonMobilitySpectra\": \"false\", \"scan_summing\": {\"do_scan_summing\": \"false\", \"__current_case__\": 0}, \"simAsSpectra\": \"false\", \"srmAsSpectra\": \"false\", \"acceptZeroLengthSpectra\": \"false\", \"ignoreUnknownInstrumentError\": \"false\", \"multi_run_output\": {\"do_multi_run_output\": \"false\", \"__current_case__\": 0, \"runIndexSet\": \"0\"}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"license_agreement\": \"true\", \"output_type\": \"mgf\", \"settings\": {\"mz_encoding\": \"64\", \"intensity_encoding\": \"32\", \"binary_compression\": \"zlib\", \"gzip_compression\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.19052.0", + "type": "tool", + "uuid": "4d7e9227-49af-4722-b4c3-b8976ba3ed80", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2dc2ec3e-d5c7-47ac-a7f7-7559cde14f84" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "errors": null, + "id": 5, + "input_connections": { + "searchgui_input": { + "id": 4, + "output_name": "searchgui_results" + } + }, + "inputs": [], + "label": null, + "name": "Peptide Shaker", + "outputs": [ + { + "name": "mzidentML", + "type": "mzid" + }, + { + "name": "output_certificate", + "type": "txt" + }, + { + "name": "output_psm", + "type": "tabular" + }, + { + "name": "output_peptides", + "type": "tabular" + }, + { + "name": "output_proteins", + "type": "tabular" + } + ], + "position": { + "bottom": 1001.046875, + "height": 452, + "left": 253.984375, + "right": 453.984375, + "top": 549.046875, + "width": 200, + "x": 253.984375, + "y": 549.046875 + }, + "post_job_actions": { + "HideDatasetActionmzidentML": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "mzidentML" + }, + "HideDatasetActionoutput_certificate": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_certificate" + }, + "HideDatasetActionoutput_proteins": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_proteins" + }, + "RenameDatasetActionoutput_peptides": { + "action_arguments": { + "newname": "PS: Peptide Report" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_peptides" + }, + "RenameDatasetActionoutput_psm": { + "action_arguments": { + "newname": "PS: PSM report" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_psm" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "tool_shed_repository": { + "changeset_revision": "7fdd9119cc4f", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"contact_options\": {\"contact_options_selector\": \"no\", \"__current_case__\": 0}, \"exporting_options\": {\"mzidentml_conditional\": {\"mzidentml_creation\": \"true\", \"__current_case__\": 0, \"include_sequences\": \"false\"}, \"zip_conditional\": {\"zip_output_boolean\": \"false\", \"__current_case__\": 0, \"export_cps\": \"false\"}, \"output_reports\": [\"3\", \"6\", \"9\", \"0\"]}, \"filtering_options\": {\"filtering_options_selector\": \"yes\", \"__current_case__\": 1, \"min_peptide_length\": \"6\", \"max_peptide_length\": \"60\", \"max_precursor_error\": \"10.0\", \"max_precursor_error_type\": \"1\", \"exclude_unknown_ptms\": \"true\"}, \"processing_options\": {\"processing_options_selector\": \"yes\", \"__current_case__\": 1, \"protein_fdr\": \"1.0\", \"peptide_fdr\": \"1.0\", \"psm_fdr\": \"1.0\", \"protein_fraction_mw_confidence\": \"95.0\", \"ptm_score\": {\"ptm_score_selector\": \"0\", \"__current_case__\": 0}, \"ptm_sequence_matching_type\": \"1\", \"ptm_alignment\": \"true\"}, \"searchgui_input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.36.3", + "type": "tool", + "uuid": "8fd27751-3809-4345-9c6d-9c39a87e8497", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_peptides", + "uuid": "a0c21a57-e285-44ce-9799-cfdf6d0a3909" + }, + { + "label": null, + "output_name": "output_psm", + "uuid": "c1c7a55c-a8fd-4191-94b9-9da22f9f7dba" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 5, + "output_name": "output_psm" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Replace Text", + "name": "infile" + } + ], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 525.46875, + "height": 112, + "left": 540.53125, + "right": 740.53125, + "top": 413.46875, + "width": 200, + "x": 540.53125, + "y": 413.46875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"RuntimeValue\"}, \"replacements\": [{\"__index__\": 0, \"column\": \"10\", \"find_pattern\": \".mzml.mgf\", \"replace_pattern\": \"\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3", + "type": "tool", + "uuid": "02703525-ccb2-4e08-8492-7369408ebd0f", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "e8950200-a8b8-4496-a374-9b18638fc258" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/flashlfq/flashlfq/1.0.3.0", + "errors": null, + "id": 9, + "input_connections": { + "experiment|experimental_design": { + "id": 1, + "output_name": "output" + }, + "idt": { + "id": 6, + "output_name": "outfile" + }, + "peak_lists": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FlashLFQ", + "outputs": [ + { + "name": "log", + "type": "txt" + }, + { + "name": "toml", + "type": "txt" + }, + { + "name": "quantifiedPeaks", + "type": "tabular" + }, + { + "name": "quantifiedPeptides", + "type": "tabular" + }, + { + "name": "quantifiedProteins", + "type": "tabular" + }, + { + "name": "foldChange", + "type": "tabular" + } + ], + "position": { + "bottom": 762.984375, + "height": 602, + "left": 829.640625, + "right": 1029.640625, + "top": 160.984375, + "width": 200, + "x": 829.640625, + "y": 160.984375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/flashlfq/flashlfq/1.0.3.0", + "tool_shed_repository": { + "changeset_revision": "878f6725c4f3", + "name": "flashlfq", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chg\": \"false\", \"experiment\": {\"use_design\": \"true\", \"__current_case__\": 1, \"experimental_design\": {\"__class__\": \"ConnectedValue\"}, \"nor\": \"true\", \"bayesian\": {\"calculate\": \"true\", \"__current_case__\": 1, \"ctr\": \"\", \"fcc\": null, \"sha\": \"false\", \"rmc\": \"false\", \"mcm\": \"500\", \"rns\": null}}, \"idt\": {\"__class__\": \"ConnectedValue\"}, \"int\": \"false\", \"iso\": \"5.0\", \"mbr\": \"true\", \"mrt\": \"2.5\", \"nis\": \"2\", \"peak_lists\": {\"__class__\": \"ConnectedValue\"}, \"ppm\": \"10.0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3.0", + "type": "tool", + "uuid": "4973090f-a0e3-49a2-8f7d-35e4e4711ba1", + "workflow_outputs": [ + { + "label": null, + "output_name": "log", + "uuid": "392d5313-7ebd-4cf4-aa57-07a70bbd1f17" + }, + { + "label": null, + "output_name": "quantifiedPeptides", + "uuid": "0898ffbe-32cc-4c19-b9ab-0e3c8df1087d" + }, + { + "label": null, + "output_name": "quantifiedProteins", + "uuid": "567e65b3-8a11-4bef-a8d0-c9164ee77f57" + }, + { + "label": null, + "output_name": "toml", + "uuid": "a3668df7-3900-4ddf-a61e-9c9cedd6811c" + }, + { + "label": null, + "output_name": "foldChange", + "uuid": "bdc79312-a96a-4d6a-9eec-b1f473a9d79b" + }, + { + "label": null, + "output_name": "quantifiedPeaks", + "uuid": "bf3be654-975b-4881-883a-f5abce69ccea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "errors": null, + "id": 11, + "input_connections": { + "infile": { + "id": 8, + "output_name": "output_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 1211.46875, + "height": 112, + "left": 1204.453125, + "right": 1404.453125, + "top": 1099.46875, + "width": 200, + "x": 1204.453125, + "y": 1099.46875 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "taxa" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"find_pattern\": \"#peptide\", \"replace_pattern\": \"peptide\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "294c390d-3c9b-43b8-a29e-c0f2f6ea8e8a", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "04a9fbe7-a95c-4a53-a7de-b101da2cae96" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.0", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 9, + "output_name": "quantifiedPeptides" + } + }, + "inputs": [], + "label": null, + "name": "Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 422, + "height": 112, + "left": 1185.609375, + "right": 1385.609375, + "top": 310, + "width": 200, + "x": 1185.609375, + "y": 310 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Intensity_file" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.0", + "tool_shed_repository": { + "changeset_revision": "209b7c5ee9d7", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"NH2-\", \"replacement\": \"\"}, {\"__index__\": 1, \"pattern\": \"-COOH\", \"replacement\": \"\"}, {\"__index__\": 2, \"pattern\": \"Sequence\", \"replacement\": \"peptide\"}, {\"__index__\": 3, \"pattern\": \"Intensity_\", \"replacement\": \"\"}], \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "98ced7a1-b64e-40bf-bebf-76d5526424f4", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "de9f47ae-fd6f-4a94-b3ec-2eae5d1d8a1c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 14, + "input_connections": { + "tables_0|table": { + "id": 10, + "output_name": "output_go_tsv" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "filter 5% (All_funct)", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 1102.03125, + "height": 202, + "left": 1158.046875, + "right": 1358.046875, + "top": 900.03125, + "width": 200, + "x": 1158.046875, + "y": 900.03125 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "ALL_functions" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"\"}, \"save_db\": \"false\", \"sqlquery\": \"SELECT Goterm.*\\nFROM Goterm \\nWHERE ((1.0*Goterm.protein_count)/(1.0*Goterm.total_protein_count)) >= 0.05\\n\\n\\n\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"Goterm\", \"column_names_from_first_line\": \"false\", \"col_names\": \"peptide,total_protein_count,go_term,protein_count,go_name,go_funct\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "de18b739-d785-4c22-b291-713134e68d5d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "25c14890-63ec-422f-be57-0377cd5fe7ff" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 15, + "input_connections": { + "tables_0|table": { + "id": 13, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "GO_EC", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 699.5, + "height": 182, + "left": 1423.09375, + "right": 1623.09375, + "top": 517.5, + "width": 200, + "x": 1423.09375, + "y": 517.5 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "go_ec" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": null}, \"save_db\": \"false\", \"sqlquery\": \"SELECT *\\nFROM ec\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"ec\", \"column_names_from_first_line\": \"false\", \"col_names\": \"peptide,go_ec\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "85158e37-3fc6-405f-9ad1-bf9ff70308e2", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6e69f54b-5573-463c-9c5d-1c34b09fcb20" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": "GO_BP", + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 832.96875, + "height": 92, + "left": 1489.109375, + "right": 1689.109375, + "top": 740.96875, + "width": 200, + "x": 1489.109375, + "y": 740.96875 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "go_bp" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c6=='biological process'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "b48f9e25-9725-404d-a77d-06a5a722dd29", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "07473a74-e477-4a19-8368-d437ecab74bd" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": "GO_CC", + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 985.9375, + "height": 92, + "left": 1493.140625, + "right": 1693.140625, + "top": 893.9375, + "width": 200, + "x": 1493.140625, + "y": 893.9375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "go_cc" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c6=='cellular component'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "2ad4113b-583f-48f1-9fa2-8bc111f84f81", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "68fadf94-d8c4-4e25-8093-48c783fa65e6" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 18, + "input_connections": { + "input": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": "GO_MF", + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 1116.0625, + "height": 92, + "left": 1484.109375, + "right": 1684.109375, + "top": 1024.0625, + "width": 200, + "x": 1484.109375, + "y": 1024.0625 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "go_mf" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c6=='molecular function'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "a5249831-e466-4ae6-8490-cb62ea43611e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "400504d4-18ba-4c89-a6db-388e72af8923" + } + ] + } + ], + "parent_id": "proteomics/metaquantome-data-creation", + "path": "topics/proteomics/tutorials/metaquantome-data-creation/workflows/main_workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": true, + "title": "metaQuantome_datacreation_workflow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-metaquantome-data-creation/versions/main-workflow", + "tutorial_id": "metaquantome-data-creation", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-data-creation/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaquantome-data-creation/workflows/main_workflow.html", + "version": 3, + "wfid": "proteomics-metaquantome-data-creation", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/flashlfq/flashlfq/1.0.3.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0" + ], + "workflowhub_id": "1177" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4037137" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "2889433c7ae1", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pep_pointer", + "owner": "galaxyp", + "revisions": "073a2965e3b2", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptide_genomic_coordinate", + "owner": "galaxyp", + "revisions": "5f49ffce52cb", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "33d61c89fb8d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 2889433c7ae1\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pep_pointer\n owner: galaxyp\n revisions: 073a2965e3b2\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptide_genomic_coordinate\n owner: galaxyp\n revisions: 5f49ffce52cb\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: 33d61c89fb8d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/tutorial.json", + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "rsajulga@umn.edu", + "id": "jraysajulga", + "joined": "2018-11", + "name": "Ray Sajulga", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jraysajulga/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jraysajulga.json" + }, + { + "email": "jj@umn.edu", + "id": "jj-umn", + "in_memoriam": "James \u2018JJ\u2019 Johnson, was a Galaxy community rock star most known for his indispensable contributions to the Galaxy Proteomics community.\n\nJJ\u2019s works will live on in so many Galaxy tools and workflows for years to come.", + "joined": "2017-09", + "name": "James Johnson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jj-umn/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jj-umn.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + } + ], + "dir": "topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "proteogenomics-dbcreation", + "proteogenomics-dbsearch" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/proteogenomics-novel-peptide-analysis", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Learning how to visualize proteomic data and to perform its genomic allocation" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "How to assign and visualize the genomic localization of these identified novel proteoforms?" + ], + "pageviews": 1822, + "pub_date": "2018-11-20", + "questions": [ + "How to verify the spectra of novel proteoforms?", + "How to assign genomic allocation to these novel proteoforms?" + ], + "recordings": [ + { + "captioners": [ + "subinamehta" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "40M", + "speakers": [ + "subinamehta" + ], + "youtube_id": "Ku274KwFh1Y" + } + ], + "short_id": "T00233", + "short_tools": [ + "pep_pointer", + "peptide_genomic_coordinate", + "query_tabular", + "ncbi_blastp_wrapper" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "multi-omics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "proteogenomics" + ], + "time_estimation": "30m", + "title": "Proteogenomics 3: Novel peptide analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/0.3.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pep_pointer/pep_pointer/0.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptide_genomic_coordinate/peptide_genomic_coordinate/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "proteogenomics-novel-peptide-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/tutorial.json" + }, + "version": 19, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 157, + "visitors": 1219, + "workflows": [ + { + "creators": [], + "description": "Proteogenomics 3: Novel peptide analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEdited_Mus_Musculus.GRCm38.86\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\npeptides for blast\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPSM Report\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmz_sqlite\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ngenomic mapping sqlite db\"]\n 5[label=\"NCBI BLAST+ blastp\"]\n 1 -> 5 [label=\"output\"]\n k88461c74131241d5bd54e7d7297ccd76[color=lightseagreen,label=\"Output\\nBLASTP_results\"]\n 5 -> k88461c74131241d5bd54e7d7297ccd76\n 6[label=\"PSM_Novel_Peptides\"]\n 5 -> 6 [label=\"output1\"]\n 2 -> 6 [label=\"output\"]\n k29c9a368a7e64e8b81ca131f63293093[color=lightseagreen,label=\"Output\\nPSM_Novel_Peptides\"]\n 6 -> k29c9a368a7e64e8b81ca131f63293093\n 7[label=\"Novel_Peptides\"]\n 6 -> 7 [label=\"output\"]\n k569546687aac423a89afaecf2b405b94[color=lightseagreen,label=\"Output\\nNovel_Peptides\"]\n 7 -> k569546687aac423a89afaecf2b405b94\n 8[label=\"Peptide Genomic Coodinate\"]\n 4 -> 8 [label=\"output\"]\n 3 -> 8 [label=\"output\"]\n 7 -> 8 [label=\"output\"]\n k60fd3e418cb74a49b5852a43117e9cf8[color=lightseagreen,label=\"Output\\nPeptide Genomic Coodinate on input dataset(s)\"]\n 8 -> k60fd3e418cb74a49b5852a43117e9cf8\n 9[label=\"PepPointer\"]\n 8 -> 9 [label=\"peptide_bed\"]\n 0 -> 9 [label=\"output\"]\n k3c410bedff794774b75c48659d291160[color=lightseagreen,label=\"Output\\nPepPointer on input dataset(s)\"]\n 9 -> k3c410bedff794774b75c48659d291160\n 10[label=\"Final_Summary_Novel_Peptides\"]\n 9 -> 10 [label=\"classified\"]\n 6 -> 10 [label=\"output\"]\n k50e64c95cd6847cb9e0cb3714b2f2431[color=lightseagreen,label=\"Output\\nFinal_Summary_Novel_Peptides\"]\n 10 -> k50e64c95cd6847cb9e0cb3714b2f2431\n}", + "history": [ + { + "hash": "6d0c1e528390a4617e1f467a5f24a4ffd240d039", + "message": "Update galaxy-workflow-mouse_novel_peptide_analysis.ga", + "num": 7, + "short_hash": "6d0c1e528", + "unix": "1611782322" + }, + { + "hash": "3284d3ba74c4cf199a07c5efcad7c911dc5b9658", + "message": "Update galaxy-workflow-mouse_novel_peptide_analysis.ga", + "num": 6, + "short_hash": "3284d3ba7", + "unix": "1611781479" + }, + { + "hash": "a17d756120453ccf9c9ba819da787dc7e378c649", + "message": "Update galaxy-workflow-mouse_novel_peptide_analysis.ga", + "num": 5, + "short_hash": "a17d75612", + "unix": "1611585589" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "715d5f2ee1d9cfa74c5230a0a4bf746df8758e87", + "message": "fix folder names", + "num": 1, + "short_hash": "715d5f2ee", + "unix": "1542746779" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Edited_Mus_Musculus.GRCm38.86" + } + ], + "label": "Edited_Mus_Musculus.GRCm38.86", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 404.25001525878906, + "height": 84, + "left": 448.75, + "right": 608.75, + "top": 320.25001525878906, + "width": 160, + "x": 448.75, + "y": 320.25001525878906 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "f4bb779b-d830-4b6e-974d-73a5b5111d2a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "77cd0e85-207b-4572-ab26-be78e1b4b3a8" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "peptides for blast" + } + ], + "label": "peptides for blast", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 548.2468795776367, + "height": 67.20001220703125, + "left": 442.96875, + "right": 602.96875, + "top": 481.04686737060547, + "width": 160, + "x": 442.96875, + "y": 481.04686737060547 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "14d01a35-1699-4246-9759-41156c9881d8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1bfa1662-4420-42e0-a189-0f9d16f4afa7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "PSM Report" + } + ], + "label": "PSM Report", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 647.4312744140625, + "height": 50.4000244140625, + "left": 440.98438262939453, + "right": 600.9843521118164, + "top": 597.03125, + "width": 159.99996948242188, + "x": 440.98438262939453, + "y": 597.03125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "6d7fee9d-ae62-4c9b-80af-94067aee67af", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3460165b-5fad-4884-8688-2138be1419f5" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mz_sqlite" + } + ], + "label": "mz_sqlite", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 770.4468688964844, + "height": 50.4000244140625, + "left": 440, + "right": 600, + "top": 720.0468444824219, + "width": 160, + "x": 440, + "y": 720.0468444824219 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "368d1a7a-f4f2-4b37-af4d-0410be56af33", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ce93f0ba-2e12-4ba9-92bc-e2c119a558d6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "genomic mapping sqlite db" + } + ], + "label": "genomic mapping sqlite db", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 857.2156524658203, + "height": 67.20001220703125, + "left": 440.15625, + "right": 600.15625, + "top": 790.0156402587891, + "width": 160, + "x": 440.15625, + "y": 790.0156402587891 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "35ef98c3-607e-4903-9f89-84ec48aaa385", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3aefda19-8fd0-42cd-a3c1-3480eb1364b4" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nEdited_Mus_Musculus.GRCm38.86\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\npeptides for blast\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nPSM Report\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nmz_sqlite\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\ngenomic mapping sqlite db\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"NCBI BLAST+ blastp\"];\n 1 -->|output| 5;\n 88461c74-1312-41d5-bd54-e7d7297ccd76[\"Output\\nBLASTP_results\"];\n 5 --> 88461c74-1312-41d5-bd54-e7d7297ccd76;\n style 88461c74-1312-41d5-bd54-e7d7297ccd76 stroke:#2c3143,stroke-width:4px;\n 6[\"PSM_Novel_Peptides\"];\n 5 -->|output1| 6;\n 2 -->|output| 6;\n 29c9a368-a7e6-4e8b-81ca-131f63293093[\"Output\\nPSM_Novel_Peptides\"];\n 6 --> 29c9a368-a7e6-4e8b-81ca-131f63293093;\n style 29c9a368-a7e6-4e8b-81ca-131f63293093 stroke:#2c3143,stroke-width:4px;\n 7[\"Novel_Peptides\"];\n 6 -->|output| 7;\n 56954668-7aac-423a-89af-aecf2b405b94[\"Output\\nNovel_Peptides\"];\n 7 --> 56954668-7aac-423a-89af-aecf2b405b94;\n style 56954668-7aac-423a-89af-aecf2b405b94 stroke:#2c3143,stroke-width:4px;\n 8[\"Peptide Genomic Coodinate\"];\n 4 -->|output| 8;\n 3 -->|output| 8;\n 7 -->|output| 8;\n 60fd3e41-8cb7-4a49-b585-2a43117e9cf8[\"Output\\nPeptide Genomic Coodinate on input dataset(s)\"];\n 8 --> 60fd3e41-8cb7-4a49-b585-2a43117e9cf8;\n style 60fd3e41-8cb7-4a49-b585-2a43117e9cf8 stroke:#2c3143,stroke-width:4px;\n 9[\"PepPointer\"];\n 8 -->|peptide_bed| 9;\n 0 -->|output| 9;\n 3c410bed-ff79-4774-b75c-48659d291160[\"Output\\nPepPointer on input dataset(s)\"];\n 9 --> 3c410bed-ff79-4774-b75c-48659d291160;\n style 3c410bed-ff79-4774-b75c-48659d291160 stroke:#2c3143,stroke-width:4px;\n 10[\"Final_Summary_Novel_Peptides\"];\n 9 -->|classified| 10;\n 6 -->|output| 10;\n 50e64c95-cd68-47cb-9e0c-b3714b2f2431[\"Output\\nFinal_Summary_Novel_Peptides\"];\n 10 --> 50e64c95-cd68-47cb-9e0c-b3714b2f2431;\n style 50e64c95-cd68-47cb-9e0c-b3714b2f2431 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "GTN Proteogemics3 Novel Peptide Analysis", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Edited_Mus_Musculus.GRCm38.86" + } + ], + "label": "Edited_Mus_Musculus.GRCm38.86", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 404.25001525878906, + "height": 84, + "left": 448.75, + "right": 608.75, + "top": 320.25001525878906, + "width": 160, + "x": 448.75, + "y": 320.25001525878906 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "f4bb779b-d830-4b6e-974d-73a5b5111d2a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "77cd0e85-207b-4572-ab26-be78e1b4b3a8" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "peptides for blast" + } + ], + "label": "peptides for blast", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 548.2468795776367, + "height": 67.20001220703125, + "left": 442.96875, + "right": 602.96875, + "top": 481.04686737060547, + "width": 160, + "x": 442.96875, + "y": 481.04686737060547 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "14d01a35-1699-4246-9759-41156c9881d8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1bfa1662-4420-42e0-a189-0f9d16f4afa7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "PSM Report" + } + ], + "label": "PSM Report", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 647.4312744140625, + "height": 50.4000244140625, + "left": 440.98438262939453, + "right": 600.9843521118164, + "top": 597.03125, + "width": 159.99996948242188, + "x": 440.98438262939453, + "y": 597.03125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "6d7fee9d-ae62-4c9b-80af-94067aee67af", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3460165b-5fad-4884-8688-2138be1419f5" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mz_sqlite" + } + ], + "label": "mz_sqlite", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 770.4468688964844, + "height": 50.4000244140625, + "left": 440, + "right": 600, + "top": 720.0468444824219, + "width": 160, + "x": 440, + "y": 720.0468444824219 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "368d1a7a-f4f2-4b37-af4d-0410be56af33", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ce93f0ba-2e12-4ba9-92bc-e2c119a558d6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "genomic mapping sqlite db" + } + ], + "label": "genomic mapping sqlite db", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 857.2156524658203, + "height": 67.20001220703125, + "left": 440.15625, + "right": 600.15625, + "top": 790.0156402587891, + "width": 160, + "x": 440.15625, + "y": 790.0156402587891 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "35ef98c3-607e-4903-9f89-84ec48aaa385", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3aefda19-8fd0-42cd-a3c1-3480eb1364b4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/0.3.3", + "errors": null, + "id": 5, + "input_connections": { + "query": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "NCBI BLAST+ blastp", + "outputs": [ + { + "name": "output1", + "type": "tabular" + } + ], + "position": { + "bottom": 569.8031387329102, + "height": 109.60000610351562, + "left": 673.5469055175781, + "right": 833.5469055175781, + "top": 460.20313262939453, + "width": 160, + "x": 673.5469055175781, + "y": 460.20313262939453 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "BLASTP_results" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/0.3.3", + "tool_shed_repository": { + "changeset_revision": "2889433c7ae1", + "name": "ncbi_blast_plus", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"advanced\", \"__current_case__\": 1, \"filter_query\": \"false\", \"matrix_gapcosts\": {\"matrix\": \"PAM30\", \"__current_case__\": 8, \"gap_costs\": \"-gapopen 9 -gapextend 1\"}, \"max_hits\": \"1\", \"max_hsps\": \"1\", \"word_size\": \"2\", \"window_size\": \"40\", \"threshold\": \"11\", \"comp_based_stats\": \"0\", \"parse_deflines\": \"false\", \"adv_optional_id_files_opts\": {\"adv_optional_id_files_opts_selector\": \"none\", \"__current_case__\": 0}, \"qcov_hsp_perc\": \"0.0\", \"use_sw_tback\": \"false\"}, \"blast_type\": \"blastp-short\", \"db_opts\": {\"db_opts_selector\": \"db\", \"__current_case__\": 0, \"database\": [\"nr_2018-01-22\"], \"histdb\": \"\", \"subject\": \"\"}, \"evalue_cutoff\": \"200000.0\", \"output\": {\"out_format\": \"ext\", \"__current_case__\": 1}, \"query\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.3", + "type": "tool", + "uuid": "8304a4ed-e1e4-45f3-a868-1d8eb6127968", + "workflow_outputs": [ + { + "label": "BLASTP_results", + "output_name": "output1", + "uuid": "88461c74-1312-41d5-bd54-e7d7297ccd76" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 6, + "input_connections": { + "tables_0|table": { + "id": 5, + "output_name": "output1" + }, + "tables_1|table": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "PSM_Novel_Peptides", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 673.8656387329102, + "height": 209.60000610351562, + "left": 897.0468902587891, + "right": 1057.046890258789, + "top": 464.26563262939453, + "width": 160, + "x": 897.0468902587891, + "y": 464.26563262939453 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "PSM_Novel_Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"false\", \"sqlquery\": \"SELECT distinct psm.*\\nFROM psm join blast ON psm.Sequence = blast.qseqid\\nWHERE blast.pident < 100 OR blast.gapopen >= 1 OR blast.length < blast.qlen\\nORDER BY psm.Sequence, psm.ID\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"blast\", \"column_names_from_first_line\": \"false\", \"col_names\": \"qseqid,sseqid,pident,length,mismatch,gapopen,qstart,qend,sstart,send,evalue,bitscore,sallseqid,score,nident,positive,gaps,ppos,qframe,sframe,qseq,sseq,qlen,slen,salltitles\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"qseqid\"}]}}, {\"__index__\": 1, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}]}, \"tbl_opts\": {\"table_name\": \"psm\", \"column_names_from_first_line\": \"false\", \"col_names\": \"ID,Proteins,Sequence,AAs_Before,AAs_After,Position,Modified_Sequence,Variable_Modifications,Fixed_Modifications,Spectrum_File,Spectrum_Title,Spectrum_Scan_Number,RT,mz,Measured_Charge,Identification_Charge,Theoretical_Mass,Isotope_Number,Precursor_mz_Error_ppm,Localization_Confidence,Probabilistic_PTM_score,Dscore,Confidence,Validation\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"Sequence\"}]}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "0da3b9ec-f964-4386-b150-a2e81adfd05d", + "workflow_outputs": [ + { + "label": "PSM_Novel_Peptides", + "output_name": "output", + "uuid": "29c9a368-a7e6-4e8b-81ca-131f63293093" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 7, + "input_connections": { + "tables_0|table": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "Novel_Peptides", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 644.25, + "height": 168, + "left": 1143.046875, + "right": 1303.046875, + "top": 476.25, + "width": 160, + "x": 1143.046875, + "y": 476.25 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Novel_Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"no\", \"__current_case__\": 1}, \"save_db\": \"false\", \"sqlquery\": \"SELECT distinct Sequence FROM psm\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}]}, \"tbl_opts\": {\"table_name\": \"psm\", \"column_names_from_first_line\": \"false\", \"col_names\": \"ID,Proteins,Sequence\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "5ad1e99c-bf3c-4e87-9fb6-1b5e305ee3fc", + "workflow_outputs": [ + { + "label": "Novel_Peptides", + "output_name": "output", + "uuid": "56954668-7aac-423a-89af-aecf2b405b94" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptide_genomic_coordinate/peptide_genomic_coordinate/0.1.1", + "errors": null, + "id": 8, + "input_connections": { + "mapping": { + "id": 4, + "output_name": "output" + }, + "mzsqlite": { + "id": 3, + "output_name": "output" + }, + "peptideinput": { + "id": 7, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Peptide Genomic Coodinate", + "outputs": [ + { + "name": "peptide_bed", + "type": "bed" + } + ], + "position": { + "bottom": 825.3500137329102, + "height": 209.60000610351562, + "left": 1368.9999389648438, + "right": 1528.9999389648438, + "top": 615.7500076293945, + "width": 160, + "x": 1368.9999389648438, + "y": 615.7500076293945 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptide_genomic_coordinate/peptide_genomic_coordinate/0.1.1", + "tool_shed_repository": { + "changeset_revision": "5f49ffce52cb", + "name": "peptide_genomic_coordinate", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"mapping\": {\"__class__\": \"ConnectedValue\"}, \"mzsqlite\": {\"__class__\": \"ConnectedValue\"}, \"peptideinput\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "8eae5eda-e1aa-4d74-8cb9-78172a809ddb", + "workflow_outputs": [ + { + "label": "Peptide Genomic Coodinate on input dataset(s)", + "output_name": "peptide_bed", + "uuid": "60fd3e41-8cb7-4a49-b585-2a43117e9cf8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pep_pointer/pep_pointer/0.1.3", + "errors": null, + "id": 9, + "input_connections": { + "bed": { + "id": 8, + "output_name": "peptide_bed" + }, + "gtf_input|gtf": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PepPointer", + "outputs": [ + { + "name": "classified", + "type": "tabular" + } + ], + "position": { + "bottom": 560.4656143188477, + "height": 151.19998168945312, + "left": 1601.5780639648438, + "right": 1761.5780639648438, + "top": 409.26563262939453, + "width": 160, + "x": 1601.5780639648438, + "y": 409.26563262939453 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/pep_pointer/pep_pointer/0.1.3", + "tool_shed_repository": { + "changeset_revision": "073a2965e3b2", + "name": "pep_pointer", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"bed\": {\"__class__\": \"ConnectedValue\"}, \"gtf_input\": {\"gtf_source\": \"history\", \"__current_case__\": 1, \"gtf\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.3", + "type": "tool", + "uuid": "54174fe8-f646-43b5-9491-0e117aaf75bd", + "workflow_outputs": [ + { + "label": "PepPointer on input dataset(s)", + "output_name": "classified", + "uuid": "3c410bed-ff79-4774-b75c-48659d291160" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 10, + "input_connections": { + "tables_0|table": { + "id": 9, + "output_name": "classified" + }, + "tables_1|table": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "Final_Summary_Novel_Peptides", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 585.9500274658203, + "height": 243.20001220703125, + "left": 1888.0000305175781, + "right": 2048.000030517578, + "top": 342.75001525878906, + "width": 160, + "x": 1888.0000305175781, + "y": 342.75001525878906 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Final_Summary_Novel_Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"false\", \"sqlquery\": \"SELECT psm.Sequence as PeptideSequence, count(psm.Sequence) as SpectralCount, psm.Proteins as Proteins, bed_pep_pointer.chrom as Chromosome, bed_pep_pointer.start as Start, bed_pep_pointer.end as End, bed_pep_pointer.strand as Strand, bed_pep_pointer.annot as Annotation, bed_pep_pointer.chrom||':'||bed_pep_pointer.start||'-'||bed_pep_pointer.end as GenomeCoordinate,'https://genome.ucsc.edu/cgi-bin/hgTracks?db=mm10&position='||bed_pep_pointer.chrom||'%3A'||bed_pep_pointer.start||'-'||bed_pep_pointer.end as UCSC_Genome_Browser \\nFROM psm \\nINNER JOIN bed_pep_pointer on bed_pep_pointer.peptide = psm.Sequence \\nGROUP BY psm.Sequence\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"bed_pep_pointer\", \"column_names_from_first_line\": \"false\", \"col_names\": \"chrom,start,end,peptide,score,strand,annot\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": []}}, {\"__index__\": 1, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}]}, \"tbl_opts\": {\"table_name\": \"psm\", \"column_names_from_first_line\": \"false\", \"col_names\": \"ID,Proteins,Sequence,AAs_Before,AAs_After,Position,Modified_Sequence,Variable_Modifications,Fixed_Modifications,Spectrum_File,Spectrum_Title,Spectrum_Scan_Number,RT,mz,Measured_Charge,Identification_Charge,Theoretical_Mass,Isotope_Number,Precursor_mz_Error_ppm,Localization_Confidence,Probabilistic_PTM_score,Dscore,Confidence,Validation\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "d962e688-4af1-49fc-907c-6e2f5d6c6d0f", + "workflow_outputs": [ + { + "label": "Final_Summary_Novel_Peptides", + "output_name": "output", + "uuid": "50e64c95-cd68-47cb-9e0c-b3714b2f2431" + } + ] + } + ], + "parent_id": "proteomics/proteogenomics-novel-peptide-analysis", + "path": "topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/workflows/galaxy-workflow-mouse_novel_peptide_analysis.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "GTN Proteogemics3 Novel Peptide Analysis", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteogenomics-novel-peptide-analysis/versions/galaxy-workflow-mouse-novel-peptide-analysis", + "tutorial_id": "proteogenomics-novel-peptide-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/workflows/galaxy-workflow-mouse_novel_peptide_analysis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-novel-peptide-analysis/workflows/galaxy-workflow-mouse_novel_peptide_analysis.html", + "version": 6, + "wfid": "proteomics-proteogenomics-novel-peptide-analysis", + "wfname": "galaxy-workflow-mouse-novel-peptide-analysis", + "workflow": "galaxy-workflow-mouse_novel_peptide_analysis.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/0.3.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pep_pointer/pep_pointer/0.1.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptide_genomic_coordinate/peptide_genomic_coordinate/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0" + ], + "workflowhub_id": "1236" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1489208" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_to_tabular", + "owner": "devteam", + "revisions": "7e801ab2b70e", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dbbuilder", + "owner": "galaxyp", + "revisions": "983bf725dfc2", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "revisions": "f546e7278f04", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maxquant", + "owner": "galaxyp", + "revisions": "9c52362ae7bb", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msconvert", + "owner": "galaxyp", + "revisions": "6153e8ada1ee", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "3ec27b4cee7c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "3ec27b4cee7c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "3ec27b4cee7c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "3ec27b4cee7c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filter_tabular", + "owner": "iuc", + "revisions": "557ec8d7087d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "cf34c344508d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_to_tabular\n owner: devteam\n revisions: 7e801ab2b70e\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dbbuilder\n owner: galaxyp\n revisions: 983bf725dfc2\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_merge_files_and_filter_unique_sequences\n owner: galaxyp\n revisions: f546e7278f04\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maxquant\n owner: galaxyp\n revisions: 9c52362ae7bb\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msconvert\n owner: galaxyp\n revisions: 6153e8ada1ee\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 3ec27b4cee7c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 3ec27b4cee7c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 3ec27b4cee7c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 3ec27b4cee7c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filter_tabular\n owner: iuc\n revisions: 557ec8d7087d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: cf34c344508d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-2-discovery/tutorial.json", + "contributions": { + "authorship": [ + "subinamehta", + "katherine-d21", + "dechendb" + ], + "editing": [ + "pratikdjagtap", + "timothygriffin" + ] + }, + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "id": "katherine-d21", + "joined": "2023-08", + "name": "Katherine Do", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherine-d21/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherine-d21.json" + }, + { + "id": "dechendb", + "joined": "2023-06", + "name": "Dechen Bhuming", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dechendb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dechendb.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + } + ], + "dir": "topics/proteomics/tutorials/clinical-mp-2-discovery", + "edam_operation": [ + "Visualisation", + "Imputation", + "Heat map generation", + "Standardisation and normalisation", + "Formatting", + "Principal component plotting", + "Protein quantification", + "Filtering", + "Clustering", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "clinical-mp-3-verification" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/clinical-mp-2-discovery", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Employ SearchGUI/PeptideShaker and MaxQuant for database searching", + "Extraction of confident microbial peptides for verification" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Perform Database searching using two algorithms", + "Extract confident peptides and proteins", + "Generate a microbial peptide panel for verification" + ], + "pageviews": 139, + "pub_date": "2024-02-06", + "questions": [ + "How to perform database searching?", + "How to extract microbial and Human protein and peptide sequences from the results" + ], + "recordings": [ + { + "captioners": [ + "katherine-d21" + ], + "date": "2024-06-21", + "galaxy_version": "23.1", + "length": "16M", + "speakers": [ + "katherine-d21" + ], + "youtube_id": "5Pg9LLfFGX4" + } + ], + "redirect_from": [ + "/topics/proteomics/tutorials/clinical-mp-discovery/tutorial", + "/short/proteomics/clinical-mp-2-discovery", + "/short/T00414" + ], + "requirements": [ + { + "topic_name": "proteomics", + "type": "internal" + } + ], + "short_id": "T00414", + "short_tools": [ + "Grep1", + "Grouping1", + "msconvert", + "fasta_cli", + "peptide_shaker", + "ident_params", + "maxquant", + "dbbuilder", + "search_gui", + "tp_cat", + "filter_tabular", + "Cut1", + "Filter1", + "query_tabular", + "fasta2tab", + "Remove beginning1", + "fasta_merge_files_and_filter_unique_sequences" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "clinical-metaproteomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "label-TMT11" + ], + "time_estimation": "3H", + "title": "Clinical Metaproteomics 2: Discovery", + "tools": [ + "Cut1", + "Filter1", + "Grep1", + "Grouping1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/2.0.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/fasta_cli/4.0.41+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/ident_params/4.0.41+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/2.0.33+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/4.0.41+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/3.3.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.3.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "clinical-mp-2-discovery", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/clinical-mp-2-discovery/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-2-discovery/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-2-discovery/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 451, + "visitors": 87, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + } + ], + "description": "Discovery workflow with SG/PS and MaxQuant to generate microbial peptides", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHuman UniProt Microbial Proteins from MetaNovo and cRAP \"]\n 1[label=\"Identification Parameters: PAR file\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nRAW files Dataset Collection\"]\n 3[label=\"Human SwissProt reviewed only\"]\n ke0de9f90a7104b55af6241ba1c2d8e1f[color=lightseagreen,label=\"Output\\nHuman SwissProt (reviewed only)\"]\n 3 -> ke0de9f90a7104b55af6241ba1c2d8e1f\n 4[label=\"Contaminants cRAP\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nExperimental Design Discovery MaxQuant\"]\n 6[label=\"FastaCLI__MetaNovo_Human_SwissProt_cRAP_with_decoys_on_data_1_MetaNovo_Human_SwissProt_cRAP_concatenated_target_decoy.fasta\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"msconvert\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Human SwissProt+cRAP\"]\n 3 -> 8 [label=\"output_database\"]\n 4 -> 8 [label=\"output_database\"]\n k2f14902fb0054c08b6d16d7ee0b4b199[color=lightseagreen,label=\"Output\\nHuman SwissProt+cRAP\"]\n 8 -> k2f14902fb0054c08b6d16d7ee0b4b199\n 9[label=\"MaxQuant\"]\n 0 -> 9 [label=\"output\"]\n 2 -> 9 [label=\"output\"]\n 5 -> 9 [label=\"output\"]\n 10[label=\"Search GUI\"]\n 6 -> 10 [label=\"input_database_concatenated_target_decoy\"]\n 1 -> 10 [label=\"Identification_Parameters_File\"]\n 7 -> 10 [label=\"output\"]\n 11[label=\"FASTA-to-Tabular\"]\n 8 -> 11 [label=\"output\"]\n 12[label=\"Select microbial peptides MQ\"]\n 9 -> 12 [label=\"peptides\"]\n kd7718bab9e754729bfb603bc3112a0e2[color=lightseagreen,label=\"Output\\nSelect microbial peptides (MQ)\"]\n 12 -> kd7718bab9e754729bfb603bc3112a0e2\n 13[label=\"Peptide Shaker\"]\n 10 -> 13 [label=\"searchgui_results\"]\n 14[label=\"Filter Tabular\"]\n 11 -> 14 [label=\"output\"]\n 15[label=\"MQ Peptide Sequences\"]\n 12 -> 15 [label=\"out_file1\"]\n 16[label=\"Select microbial peptides SGPS\"]\n 13 -> 16 [label=\"output_peptides\"]\n k14fd9080df924c61b1f13f700a166700[color=lightseagreen,label=\"Output\\nSelect microbial peptides (SGPS)\"]\n 16 -> k14fd9080df924c61b1f13f700a166700\n 17[label=\"Select microbial PSMs\"]\n 13 -> 17 [label=\"output_psm\"]\n 18[label=\"Remove beginning\"]\n 15 -> 18 [label=\"out_file1\"]\n 19[label=\"Filter confident microbial peptides\"]\n 16 -> 19 [label=\"out_file1\"]\n k1c6c953fd1924953938a9f401315bc0d[color=lightseagreen,label=\"Output\\nFilter confident microbial peptides\"]\n 19 -> k1c6c953fd1924953938a9f401315bc0d\n 20[label=\"Filter confident microbial PSMs\"]\n 17 -> 20 [label=\"out_file1\"]\n kd8ec7f0c7ba14733a3dc74a9ef298dc2[color=lightseagreen,label=\"Output\\nFilter confident microbial PSMs\"]\n 20 -> kd8ec7f0c7ba14733a3dc74a9ef298dc2\n 21[label=\"MQ Distinct Peptides\"]\n 18 -> 21 [label=\"out_file1\"]\n k07cae0170b394065b83eb5f2e27fe740[color=lightseagreen,label=\"Output\\nMQ Peptides\"]\n 21 -> k07cae0170b394065b83eb5f2e27fe740\n 22[label=\"Query Tabular\"]\n 20 -> 22 [label=\"out_file1\"]\n 20 -> 22 [label=\"out_file1\"]\n 14 -> 22 [label=\"output\"]\n 23[label=\"Cut\"]\n 22 -> 23 [label=\"output\"]\n 24[label=\"SGPS Distinct Peptides\"]\n 23 -> 24 [label=\"out_file1\"]\n kb6c61697ff5243c08fb4765d7b4204cc[color=lightseagreen,label=\"Output\\nSGPS Distinct Peptides\"]\n 24 -> kb6c61697ff5243c08fb4765d7b4204cc\n 25[label=\"SGPS-MQ Peptides\"]\n 21 -> 25 [label=\"out_file1\"]\n 24 -> 25 [label=\"out_file1\"]\n ka8c2de2ee32248309d282f79bf937013[color=lightseagreen,label=\"Output\\nSGPS-MQ Peptides\"]\n 25 -> ka8c2de2ee32248309d282f79bf937013\n 26[label=\"Distinct Peptides\"]\n 25 -> 26 [label=\"out_file1\"]\n kef0d91b1042f4a9fa2b6bf73d82f24f7[color=lightseagreen,label=\"Output\\nDistinct Peptides\"]\n 26 -> kef0d91b1042f4a9fa2b6bf73d82f24f7\n}", + "history": [ + { + "hash": "e0464fd1787b4ca7dea72ca77b7ab2ad03a8292a", + "message": "add workflows", + "num": 1, + "short_hash": "e0464fd17", + "unix": "1723118192" + } + ], + "inputs": [ + { + "annotation": "FastaCLI: MetaNovo Human SwissProt cRAP with decoys on data 1 (MetaNovo Human SwissProt cRAP_concatenated_target_decoy) (49,076 sequences)", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "FastaCLI: MetaNovo Human SwissProt cRAP with decoys on data 1 (MetaNovo Human SwissProt cRAP_concatenated_target_decoy) (49,076 sequences)", + "name": "Human UniProt Microbial Proteins (from MetaNovo) and cRAP " + } + ], + "label": "Human UniProt Microbial Proteins (from MetaNovo) and cRAP ", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 249.51593017578125, + "top": 272.60801696777344 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c0c1c1cf-e899-4b8e-b1b1-6a4f24d87ad1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "RAW files (Dataset Collection)" + } + ], + "label": "RAW files (Dataset Collection)", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 833.7075958251953 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"thermo.raw\"], \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c0f85358-244a-4254-ac94-e920a6cdbe39", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Experimental Design Discovery MaxQuant" + } + ], + "label": "Experimental Design Discovery MaxQuant", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 881.6298217773438, + "top": 922.0535430908203 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "9652a70a-de8c-4966-b7cf-121f1b9f0b54", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nHuman UniProt Microbial Proteins from MetaNovo and cRAP \"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Identification Parameters: PAR file\"];\n 2[\"\u2139\ufe0f Input Collection\\nRAW files Dataset Collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Human SwissProt reviewed only\"];\n e0de9f90-a710-4b55-af62-41ba1c2d8e1f[\"Output\\nHuman SwissProt (reviewed only)\"];\n 3 --> e0de9f90-a710-4b55-af62-41ba1c2d8e1f;\n style e0de9f90-a710-4b55-af62-41ba1c2d8e1f stroke:#2c3143,stroke-width:4px;\n 4[\"Contaminants cRAP\"];\n 5[\"\u2139\ufe0f Input Dataset\\nExperimental Design Discovery MaxQuant\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"FastaCLI__MetaNovo_Human_SwissProt_cRAP_with_decoys_on_data_1_MetaNovo_Human_SwissProt_cRAP_concatenated_target_decoy.fasta\"];\n 0 -->|output| 6;\n 7[\"msconvert\"];\n 2 -->|output| 7;\n 8[\"Human SwissProt+cRAP\"];\n 3 -->|output_database| 8;\n 4 -->|output_database| 8;\n 2f14902f-b005-4c08-b6d1-6d7ee0b4b199[\"Output\\nHuman SwissProt+cRAP\"];\n 8 --> 2f14902f-b005-4c08-b6d1-6d7ee0b4b199;\n style 2f14902f-b005-4c08-b6d1-6d7ee0b4b199 stroke:#2c3143,stroke-width:4px;\n 9[\"MaxQuant\"];\n 0 -->|output| 9;\n 2 -->|output| 9;\n 5 -->|output| 9;\n 10[\"Search GUI\"];\n 6 -->|input_database_concatenated_target_decoy| 10;\n 1 -->|Identification_Parameters_File| 10;\n 7 -->|output| 10;\n 11[\"FASTA-to-Tabular\"];\n 8 -->|output| 11;\n 12[\"Select microbial peptides MQ\"];\n 9 -->|peptides| 12;\n d7718bab-9e75-4729-bfb6-03bc3112a0e2[\"Output\\nSelect microbial peptides (MQ)\"];\n 12 --> d7718bab-9e75-4729-bfb6-03bc3112a0e2;\n style d7718bab-9e75-4729-bfb6-03bc3112a0e2 stroke:#2c3143,stroke-width:4px;\n 13[\"Peptide Shaker\"];\n 10 -->|searchgui_results| 13;\n 14[\"Filter Tabular\"];\n 11 -->|output| 14;\n 15[\"MQ Peptide Sequences\"];\n 12 -->|out_file1| 15;\n 16[\"Select microbial peptides SGPS\"];\n 13 -->|output_peptides| 16;\n 14fd9080-df92-4c61-b1f1-3f700a166700[\"Output\\nSelect microbial peptides (SGPS)\"];\n 16 --> 14fd9080-df92-4c61-b1f1-3f700a166700;\n style 14fd9080-df92-4c61-b1f1-3f700a166700 stroke:#2c3143,stroke-width:4px;\n 17[\"Select microbial PSMs\"];\n 13 -->|output_psm| 17;\n 18[\"Remove beginning\"];\n 15 -->|out_file1| 18;\n 19[\"Filter confident microbial peptides\"];\n 16 -->|out_file1| 19;\n 1c6c953f-d192-4953-938a-9f401315bc0d[\"Output\\nFilter confident microbial peptides\"];\n 19 --> 1c6c953f-d192-4953-938a-9f401315bc0d;\n style 1c6c953f-d192-4953-938a-9f401315bc0d stroke:#2c3143,stroke-width:4px;\n 20[\"Filter confident microbial PSMs\"];\n 17 -->|out_file1| 20;\n d8ec7f0c-7ba1-4733-a3dc-74a9ef298dc2[\"Output\\nFilter confident microbial PSMs\"];\n 20 --> d8ec7f0c-7ba1-4733-a3dc-74a9ef298dc2;\n style d8ec7f0c-7ba1-4733-a3dc-74a9ef298dc2 stroke:#2c3143,stroke-width:4px;\n 21[\"MQ Distinct Peptides\"];\n 18 -->|out_file1| 21;\n 07cae017-0b39-4065-b83e-b5f2e27fe740[\"Output\\nMQ Peptides\"];\n 21 --> 07cae017-0b39-4065-b83e-b5f2e27fe740;\n style 07cae017-0b39-4065-b83e-b5f2e27fe740 stroke:#2c3143,stroke-width:4px;\n 22[\"Query Tabular\"];\n 20 -->|out_file1| 22;\n 20 -->|out_file1| 22;\n 14 -->|output| 22;\n 23[\"Cut\"];\n 22 -->|output| 23;\n 24[\"SGPS Distinct Peptides\"];\n 23 -->|out_file1| 24;\n b6c61697-ff52-43c0-8fb4-765d7b4204cc[\"Output\\nSGPS Distinct Peptides\"];\n 24 --> b6c61697-ff52-43c0-8fb4-765d7b4204cc;\n style b6c61697-ff52-43c0-8fb4-765d7b4204cc stroke:#2c3143,stroke-width:4px;\n 25[\"SGPS-MQ Peptides\"];\n 21 -->|out_file1| 25;\n 24 -->|out_file1| 25;\n a8c2de2e-e322-4830-9d28-2f79bf937013[\"Output\\nSGPS-MQ Peptides\"];\n 25 --> a8c2de2e-e322-4830-9d28-2f79bf937013;\n style a8c2de2e-e322-4830-9d28-2f79bf937013 stroke:#2c3143,stroke-width:4px;\n 26[\"Distinct Peptides\"];\n 25 -->|out_file1| 26;\n ef0d91b1-042f-4a9f-a2b6-bf73d82f24f7[\"Output\\nDistinct Peptides\"];\n 26 --> ef0d91b1-042f-4a9f-a2b6-bf73d82f24f7;\n style ef0d91b1-042f-4a9f-a2b6-bf73d82f24f7 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "WF2_Discovery-Workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/ident_params/4.0.41+galaxy1", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Identification Parameters: PAR file", + "name": "Identification Parameters", + "outputs": [ + { + "name": "Identification_Parameters_File", + "type": "json" + } + ], + "position": { + "left": 814.9930419921875, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionIdentification_Parameters_File": { + "action_arguments": { + "newname": "Identification Parameters (PAR)" + }, + "action_type": "RenameDatasetAction", + "output_name": "Identification_Parameters_File" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/ident_params/4.0.41+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3ec27b4cee7c", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"spectrum_annotation_options\": {\"annotation_level\": \"0.75\", \"annotation_mz_tolerance\": \"0.5\", \"annotation_high_resolution\": true}, \"sequence_matching_options\": {\"sequence_matching_type\": \"2\", \"sequence_matching_x\": \"0.25\", \"sequence_matching_enzymatic_tags\": false, \"sequence_matching_max_ptms_per_tag\": \"3\", \"sequence_matching_min_amino_acid_score\": \"30\", \"sequence_matching_min_tag_length\": \"3\"}, \"import_filters_options\": {\"min_peptide_length\": \"8\", \"max_peptide_length\": \"30\", \"max_precursor_error\": \"10.0\", \"max_precursor_error_type\": \"1\", \"missed_cleavages_min\": null, \"missed_cleavages_max\": null, \"exclude_unknown_ptms\": true}, \"ptm_localization_options\": {\"ptm_score\": {\"ptm_score_selector\": \"1\", \"__current_case__\": 0, \"score_neutral_losses\": false, \"ptm_threshold\": \"95.0\"}, \"ptm_sequence_matching_type\": \"1\", \"ptm_alignment\": true}, \"gene_annotation_options\": {\"use_gene_mapping\": false, \"update_gene_mapping\": false}, \"protein_inference_options\": {\"simplify_protein_groups_conditional\": {\"simplify_protein_groups_selector\": \"yes\", \"__current_case__\": 1, \"simplify_protein_groups_evidence\": true, \"simplify_protein_groups_confidence\": true, \"simplify_protein_groups_confidence_threshold\": \"0.05\", \"simplify_protein_groups_enzymaticity\": true, \"simplify_protein_groups_variant\": true}, \"simplify_protein_pi_modifications\": true}, \"validation_levels_options\": {\"protein_fdr\": \"1.0\", \"peptide_fdr\": \"1.0\", \"psm_fdr\": \"1.0\"}, \"fraction_analysis_options\": {\"protein_fraction_mw_confidence\": \"95.0\"}, \"database_processing_options\": {\"decoy_conditional\": {\"create_decoy_selector\": \"yes\", \"__current_case__\": 1, \"decoy_tag\": \"_REVERSED\", \"decoy_type\": \"1\"}, \"decoy_file_tag\": \"_concatenated_target_decoy\"}}, \"searchengines_options\": {\"xtandem\": {\"xtandem_advanced\": \"no\", \"__current_case__\": 0}, \"myrimatch\": {\"myrimatch_advanced\": \"no\", \"__current_case__\": 0}, \"msgf\": {\"msgf_advanced\": \"no\", \"__current_case__\": 0}, \"ms_amanda\": {\"ms_amanda_advanced\": \"no\", \"__current_case__\": 0}, \"omssa\": {\"omssa_advanced\": \"no\", \"__current_case__\": 0}, \"comet\": {\"comet_advanced\": \"no\", \"__current_case__\": 0}, \"tide\": {\"tide_advanced\": \"no\", \"__current_case__\": 0}, \"directtag\": {\"directtag_advanced\": \"no\", \"__current_case__\": 0}, \"metamorpheus\": {\"metamorpheus_advanced\": \"no\", \"__current_case__\": 0}, \"novor\": {\"novor_advanced\": \"no\", \"__current_case__\": 0}, \"pepnovo\": {\"pepnovo_advanced\": \"no\", \"__current_case__\": 0}, \"pnovo\": {\"pnovo_advanced\": \"no\", \"__current_case__\": 0}}, \"spectrum_matching_options\": {\"fixed_modifications\": [\"Carbamidomethylation of C\", \"TMT 11-plex of K+4\", \"TMT 11-plex of peptide N-term\"], \"variable_modifications\": [\"Oxidation of M\"], \"digestion\": {\"cleavage\": \"0\", \"__current_case__\": 0, \"digests\": [{\"__index__\": 0, \"enzyme\": \"Trypsin\", \"missed_cleavages\": \"2\", \"specificity\": \"0\"}]}, \"precursor_ion_tol_units\": \"1\", \"precursor_ion_tol\": \"10.0\", \"fragment_tol_units\": \"0\", \"fragment_tol\": \"0.6\", \"min_charge\": \"2\", \"max_charge\": \"6\", \"forward_ion\": \"b\", \"reverse_ion\": \"y\", \"min_isotope\": \"0\", \"max_isotope\": \"1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0.41+galaxy1", + "type": "tool", + "uuid": "abaf5892-7976-4526-9cf6-a0c96b9222ea", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "Identification_Parameters_File", + "uuid": "4a0e51c2-f558-4c3b-bf33-3616f4583771" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "Human SwissProt (reviewed only)", + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "left": 634.6446672462531, + "top": 607.9219329733031 + }, + "post_job_actions": { + "RenameDatasetActionoutput_database": { + "action_arguments": { + "newname": "Human SwissProt (reviewed only)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_database" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "tool_shed_repository": { + "changeset_revision": "983bf725dfc2", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"9606\", \"taxon_id\": null, \"reviewed\": \"reviewed:true\", \"set\": \"keyword:KW-1185\", \"include_isoform\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.4", + "type": "tool", + "uuid": "5b0de886-9f18-4dd2-8e81-4b29467e727a", + "when": null, + "workflow_outputs": [ + { + "label": "Human SwissProt (reviewed only)", + "output_name": "output_database", + "uuid": "e0de9f90-a710-4b55-af62-41ba1c2d8e1f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 8, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 3, + "output_name": "output_database" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 4, + "output_name": "output_database" + } + }, + "inputs": [], + "label": "Human SwissProt+cRAP", + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 902.4973253039605, + "top": 577.0886700391638 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Human SwissProt+cRAP" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"uniqueness_criterion\": \"sequence\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "a35c2efa-70f2-41e8-bc46-cb2a245fdf57", + "when": null, + "workflow_outputs": [ + { + "label": "Human SwissProt+cRAP", + "output_name": "output", + "uuid": "2f14902f-b005-4c08-b6d1-6d7ee0b4b199" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/2.0.3.0+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input_opts|fasta_files": { + "id": 0, + "output_name": "output" + }, + "paramGroups_0|files": { + "id": 2, + "output_name": "output" + }, + "search_opts|template": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MaxQuant", + "name": "input_opts" + }, + { + "description": "runtime parameter for tool MaxQuant", + "name": "search_opts" + } + ], + "label": null, + "name": "MaxQuant", + "outputs": [ + { + "name": "proteinGroups", + "type": "tabular" + }, + { + "name": "mqpar", + "type": "xml" + }, + { + "name": "peptides", + "type": "tabular" + }, + { + "name": "msms", + "type": "tabular" + }, + { + "name": "msmsScans", + "type": "tabular" + }, + { + "name": "summary", + "type": "tabular" + }, + { + "name": "log", + "type": "txt" + }, + { + "name": "config", + "type": "txt" + } + ], + "position": { + "left": 1389.0771241398825, + "top": 778.3294605307798 + }, + "post_job_actions": { + "TagDatasetActionpeptides": { + "action_arguments": { + "tags": "#MQ_Peptides" + }, + "action_type": "TagDatasetAction", + "output_name": "peptides" + }, + "TagDatasetActionproteinGroups": { + "action_arguments": { + "tags": "#MQ_ProteinGroups" + }, + "action_type": "TagDatasetAction", + "output_name": "proteinGroups" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/2.0.3.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "9c52362ae7bb", + "name": "maxquant", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_opts\": {\"ftype\": \".thermo.raw\", \"fasta_files\": {\"__class__\": \"ConnectedValue\"}, \"identifier_parse_rule\": \">([^\\\\s]*)\", \"description_parse_rule\": \">(.*)\"}, \"output_opts\": {\"dry_run\": false, \"output\": [\"proteinGroups\", \"mqpar\", \"peptides\", \"msms\", \"msmsScans\", \"summary\", \"log\", \"config\"]}, \"paramGroups\": [{\"__index__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}, \"maxMissedCleavages\": \"2\", \"fixedModifications\": [\"Carbamidomethyl (C)\"], \"variableModifications\": [\"Oxidation (M)\"], \"enzymes\": [\"Trypsin/P\"], \"digestion_mode\": \"0\", \"quant_method\": {\"select_quant_method\": \"reporter_ion_ms2\", \"__current_case__\": 3, \"iso_labels\": {\"labeling\": \"tmt11plex\", \"__current_case__\": 4}, \"filter_by_pif\": {\"filter_pif\": \"True\", \"__current_case__\": 0, \"reporter_pif\": \"0.75\"}}}], \"protein_quant\": {\"peptides_for_quantification\": \"1\", \"only_unmod_prot\": {\"unmod_prot\": \"True\", \"__current_case__\": 0, \"mods_used_prot_quant\": [\"Oxidation (M)\"], \"discard_unmod_cpart_peptides\": true}, \"lfq_opts\": {\"separateLfq\": false, \"lfqStabilizeLargeRatios\": true, \"lfqRequireMsms\": true, \"do_ibaq\": {\"ibaq\": \"False\", \"__current_case__\": 1}, \"advancedSiteIntensities\": true}}, \"qc\": {\"do_it\": \"false\", \"__current_case__\": 1}, \"search_opts\": {\"template\": {\"__class__\": \"ConnectedValue\"}, \"min_peptide_len\": \"8\", \"max_peptide_mass\": \"4600\", \"min_unique_pep\": \"0\", \"calc_peak_properties\": false, \"mbr\": {\"match_between_runs\": \"True\", \"__current_case__\": 1, \"matching_time_window\": \"0.7\", \"matching_ion_mobility_window\": \"0.05\", \"alignment_time_window\": \"20\", \"alignment_ion_mobility_window\": \"1\", \"match_unidentified_features\": false}, \"incl_contaminants\": false, \"decoy_mode\": \"revert\", \"psm_fdr\": \"0.01\", \"protein_fdr\": \"0.01\", \"min_pep_length\": \"8\", \"max_pep_length\": \"50\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.3.0+galaxy0", + "type": "tool", + "uuid": "46c61a69-355c-44ac-9945-0e4d43f0b2ec", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "proteinGroups", + "uuid": "5306e0c0-bd4c-44ea-9f3c-817f959ed3d4" + }, + { + "label": null, + "output_name": "peptides", + "uuid": "a2bbaad0-27ba-491c-9462-efd4a1e8efb6" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 9, + "output_name": "peptides" + } + }, + "inputs": [], + "label": "Select microbial peptides (MQ)", + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1644.1114561742336, + "top": 809.3114768624164 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Select microbial peptides (MQ)" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"-v\", \"keep_header\": true, \"pattern\": \"(_HUMAN)|(_REVERSED)|(CON)|(con)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "cb9b81ce-c86e-4b07-ba18-3d1deddeded5", + "when": null, + "workflow_outputs": [ + { + "label": "Select microbial peptides (MQ)", + "output_name": "out_file1", + "uuid": "d7718bab-9e75-4729-bfb6-03bc3112a0e2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/2.0.33+galaxy1", + "errors": null, + "id": 13, + "input_connections": { + "searchgui_input": { + "id": 10, + "output_name": "searchgui_results" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Peptide Shaker", + "name": "optional_main_parameters" + }, + { + "description": "runtime parameter for tool Peptide Shaker", + "name": "optional_main_parameters" + }, + { + "description": "runtime parameter for tool Peptide Shaker", + "name": "optional_main_parameters" + } + ], + "label": null, + "name": "Peptide Shaker", + "outputs": [ + { + "name": "mzidentML", + "type": "mzid" + }, + { + "name": "output_certificate", + "type": "txt" + }, + { + "name": "output_psm", + "type": "tabular" + }, + { + "name": "output_peptides", + "type": "tabular" + }, + { + "name": "output_proteins", + "type": "tabular" + } + ], + "position": { + "left": 1376.5616292921313, + "top": 136.11307746315038 + }, + "post_job_actions": { + "TagDatasetActionoutput_peptides": { + "action_arguments": { + "tags": "#PS_Peptides" + }, + "action_type": "TagDatasetAction", + "output_name": "output_peptides" + }, + "TagDatasetActionoutput_psm": { + "action_arguments": { + "tags": "#PS_PSM" + }, + "action_type": "TagDatasetAction", + "output_name": "output_psm" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/2.0.33+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a6ff76e057fd", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exporting_options\": {\"zip_conditional\": {\"zip_output_boolean\": false, \"__current_case__\": 0, \"export_psdb\": false}, \"mzidentml_conditional\": {\"mzidentml_creation\": true, \"__current_case__\": 0, \"include_sequences\": false, \"contact_options\": {\"contact_options_selector\": \"no\", \"__current_case__\": 0}}, \"followup_conditional\": {\"followup_conditional_selector\": \"no\", \"__current_case__\": 0}, \"output_reports\": [\"3\", \"6\", \"9\", \"0\"]}, \"optional_main_parameters\": {\"input_optional_identification_parameters\": {\"__class__\": \"RuntimeValue\"}, \"input_fasta_file\": {\"__class__\": \"RuntimeValue\"}, \"input_optional_spectrum_files\": {\"__class__\": \"RuntimeValue\"}}, \"searchgui_input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.33+galaxy1", + "type": "tool", + "uuid": "d8293305-e003-4c82-9085-a6a6e27563f3", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_proteins", + "uuid": "3dfa370b-aaa1-4b0b-ab51-801ed5abf804" + }, + { + "label": null, + "output_name": "output_peptides", + "uuid": "062fabe0-3631-4888-9a0e-5ea16af9c564" + }, + { + "label": null, + "output_name": "mzidentML", + "uuid": "275ca0b9-f609-4cb7-8a1f-3ada482634fe" + }, + { + "label": null, + "output_name": "output_psm", + "uuid": "39e82c48-26d6-4717-9efe-06a73e37dfdc" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 13, + "output_name": "output_peptides" + } + }, + "inputs": [], + "label": "Select microbial peptides (SGPS)", + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1624.5012303811463, + "top": 133.08277443284737 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Select microbial peptides (SGPS)" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grep1", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"-v\", \"keep_header\": true, \"pattern\": \"(_HUMAN)|(_REVERSED)|(CON)|(con)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "088c67e2-5680-45ac-8fc6-58107304378b", + "when": null, + "workflow_outputs": [ + { + "label": "Select microbial peptides (SGPS)", + "output_name": "out_file1", + "uuid": "14fd9080-df92-4c61-b1f1-3f700a166700" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 19, + "input_connections": { + "input": { + "id": 16, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Filter confident microbial peptides", + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1882.4063928456353, + "top": 138.52877496551775 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Filter confident microbial peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c17=='Confident'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "a2763f6c-4bb4-4637-b9a5-4319b8176e57", + "when": null, + "workflow_outputs": [ + { + "label": "Filter confident microbial peptides", + "output_name": "out_file1", + "uuid": "1c6c953f-d192-4953-938a-9f401315bc0d" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 17, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Filter confident microbial PSMs", + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1892.8411851041578, + "top": 346.8881407177668 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Filter confident microbial PSMs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c24=='Confident'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "2986ffd8-f797-4bdd-ba33-e3383bb3cbd1", + "when": null, + "workflow_outputs": [ + { + "label": "Filter confident microbial PSMs", + "output_name": "out_file1", + "uuid": "d8ec7f0c-7ba1-4733-a3dc-74a9ef298dc2" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 21, + "input_connections": { + "input1": { + "id": 18, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "MQ Distinct Peptides", + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2692.1307728764114, + "top": 524.4947117996797 + }, + "post_job_actions": { + "EmailActionout_file1": { + "action_arguments": { + "host": "usegalaxy.eu" + }, + "action_type": "EmailAction", + "output_name": "out_file1" + }, + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "MQ Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grouping1", + "tool_state": "{\"groupcol\": \"1\", \"ignorecase\": false, \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "eadd5e67-4653-4895-bd99-d7ec8e8514f7", + "when": null, + "workflow_outputs": [ + { + "label": "MQ Peptides", + "output_name": "out_file1", + "uuid": "07cae017-0b39-4065-b83e-b5f2e27fe740" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 24, + "input_connections": { + "input1": { + "id": 23, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "SGPS Distinct Peptides", + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2692.21992119554, + "top": 329.70161173161625 + }, + "post_job_actions": { + "EmailActionout_file1": { + "action_arguments": { + "host": "usegalaxy.eu" + }, + "action_type": "EmailAction", + "output_name": "out_file1" + }, + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "SGPS Distinct Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grouping1", + "tool_state": "{\"groupcol\": \"1\", \"ignorecase\": false, \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "17433c88-5d56-453f-9371-dc2943eecac2", + "when": null, + "workflow_outputs": [ + { + "label": "SGPS Distinct Peptides", + "output_name": "out_file1", + "uuid": "b6c61697-ff52-43c0-8fb4-765d7b4204cc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "errors": null, + "id": 25, + "input_connections": { + "inputs": [ + { + "id": 21, + "output_name": "out_file1" + }, + { + "id": 24, + "output_name": "out_file1" + } + ] + }, + "inputs": [], + "label": "SGPS-MQ Peptides", + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 3005.427930624518, + "top": 411.55050647320707 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "SGPS-MQ Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "tool_shed_repository": { + "changeset_revision": "d698c222f354", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1", + "type": "tool", + "uuid": "967a29c5-8ef9-45de-918a-f99e3f9a058f", + "when": null, + "workflow_outputs": [ + { + "label": "SGPS-MQ Peptides", + "output_name": "out_file1", + "uuid": "a8c2de2e-e322-4830-9d28-2f79bf937013" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 26, + "input_connections": { + "input1": { + "id": 25, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Distinct Peptides", + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 3283.0311189112367, + "top": 419.0948684617405 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Distinct Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Grouping1", + "tool_state": "{\"groupcol\": \"1\", \"ignorecase\": false, \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "b5462dd0-3af9-41d4-a011-65d4244525a9", + "when": null, + "workflow_outputs": [ + { + "label": "Distinct Peptides", + "output_name": "out_file1", + "uuid": "ef0d91b1-042f-4a9f-a2b6-bf73d82f24f7" + } + ] + } + ], + "parent_id": "proteomics/clinical-mp-2-discovery", + "path": "topics/proteomics/tutorials/clinical-mp-2-discovery/workflows/WF2_Discovery-Workflow.ga", + "tags": [ + "name:clinicalMP" + ], + "test_results": null, + "tests": false, + "title": "WF2_Discovery-Workflow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-clinical-mp-2-discovery/versions/wf2-discovery-workflow", + "tutorial_id": "clinical-mp-2-discovery", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-2-discovery/workflows/WF2_Discovery-Workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-2-discovery/workflows/WF2_Discovery-Workflow.html", + "version": 1, + "wfid": "proteomics-clinical-mp-2-discovery", + "wfname": "wf2-discovery-workflow", + "workflow": "WF2_Discovery-Workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "Grep1", + "Grouping1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/2.0.3.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.20287.2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/fasta_cli/4.0.41+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/ident_params/4.0.41+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/2.0.33+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/4.0.41+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/3.3.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.3.0" + ], + "workflowhub_id": "1354" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.10105821" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "ddf54b12c295", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_to_tabular", + "owner": "devteam", + "revisions": "e7ed3c310b74", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "ef2c525bd8cd", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_fasta", + "owner": "devteam", + "revisions": "0a7799698fe5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bed_to_protein_map", + "owner": "galaxyp", + "revisions": "a7c58b43cbaa", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "custom_pro_db", + "owner": "galaxyp", + "revisions": "2c7df0077d28", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "revisions": "f546e7278f04", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gffcompare_to_bed", + "owner": "galaxyp", + "revisions": "ba5368c19dbd", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "209b7c5ee9d7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "translate_bed", + "owner": "galaxyp", + "revisions": "038ecf54cbec", + "tool_panel_section_label": "Operate on Genomic Intervals", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filter_tabular", + "owner": "iuc", + "revisions": "34d29339abab", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gffcompare", + "owner": "iuc", + "revisions": "0f710191a66d", + "tool_panel_section_label": "Filter and Sort", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "a86e80d3c09c", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "33d61c89fb8d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sqlite_to_tabular", + "owner": "iuc", + "revisions": "b722161a845a", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stringtie", + "owner": "iuc", + "revisions": "1ebd14235b92", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: ddf54b12c295\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_to_tabular\n owner: devteam\n revisions: e7ed3c310b74\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: ef2c525bd8cd\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_fasta\n owner: devteam\n revisions: 0a7799698fe5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bed_to_protein_map\n owner: galaxyp\n revisions: a7c58b43cbaa\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: custom_pro_db\n owner: galaxyp\n revisions: 2c7df0077d28\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_merge_files_and_filter_unique_sequences\n owner: galaxyp\n revisions: f546e7278f04\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gffcompare_to_bed\n owner: galaxyp\n revisions: ba5368c19dbd\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 209b7c5ee9d7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: translate_bed\n owner: galaxyp\n revisions: '038ecf54cbec'\n tool_panel_section_label: Operate on Genomic Intervals\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filter_tabular\n owner: iuc\n revisions: 34d29339abab\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gffcompare\n owner: iuc\n revisions: 0f710191a66d\n tool_panel_section_label: Filter and Sort\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: a86e80d3c09c\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: 33d61c89fb8d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sqlite_to_tabular\n owner: iuc\n revisions: b722161a845a\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stringtie\n owner: iuc\n revisions: 1ebd14235b92\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-dbcreation/tutorial.json", + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "rsajulga@umn.edu", + "id": "jraysajulga", + "joined": "2018-11", + "name": "Ray Sajulga", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jraysajulga/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jraysajulga.json" + }, + { + "email": "jj@umn.edu", + "id": "jj-umn", + "in_memoriam": "James \u2018JJ\u2019 Johnson, was a Galaxy community rock star most known for his indispensable contributions to the Galaxy Proteomics community.\n\nJJ\u2019s works will live on in so many Galaxy tools and workflows for years to come.", + "joined": "2017-09", + "name": "James Johnson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jj-umn/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jj-umn.json" + }, + { + "email": "kumar207@umn.edu", + "id": "pravs3683", + "joined": "2019-04", + "name": "Praveen Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pravs3683/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pravs3683.json" + } + ], + "dir": "topics/proteomics/tutorials/proteogenomics-dbcreation", + "edam_operation": [ + "Variant calling", + "Transcriptome assembly", + "Sequence annotation", + "Sequence alignment", + "RNA-Seq analysis", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "proteogenomics-dbsearch", + "proteogenomics-novel-peptide-analysis" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/proteogenomics-dbcreation", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Generating variant protein database", + "Generating genomic and variant mapping files for visualization" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Generating a customized Protein sequence database with variants, indels, splice junctions and known sequences." + ], + "pageviews": 7820, + "pub_date": "2018-11-20", + "questions": [ + "How to create a customized Protein Database from RNAseq data?" + ], + "recordings": [ + { + "captioners": [ + "emmaleith" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "40M", + "speakers": [ + "jj-umn" + ], + "youtube_id": "b_kZf8mXHdo" + } + ], + "short_id": "T00231", + "short_tools": [ + "hisat2", + "tab2fasta", + "sqlite_to_tabular", + "freebayes", + "custom_pro_db", + "gffcompare_to_bed", + "tp_cat", + "bed_to_protein_map", + "filter_tabular", + "translate_bed", + "gffcompare", + "query_tabular", + "fasta2tab", + "fasta_merge_files_and_filter_unique_sequences", + "regexColumn1", + "tp_replace_in_column", + "stringtie" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "multi-omics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "proteogenomics" + ], + "time_estimation": "30m", + "title": "Proteogenomics 1: Database Creation", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/bed_to_protein_map/bed_to_protein_map/0.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/custom_pro_db/custom_pro_db/1.22.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/gffcompare_to_bed/gffcompare_to_bed/0.2.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/translate_bed/translate_bed/0.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gffcompare/gffcompare/0.11.2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.1.1" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "proteogenomics-dbcreation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/proteogenomics-dbcreation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-dbcreation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteogenomics-dbcreation/tutorial.json" + }, + "version": 27, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 154, + "visitors": 4508, + "workflows": [ + { + "creators": [], + "description": "Proteogenomics Galaxy Training Network Database Creation", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nFASTQ_ProB_22LIST.fastqsanger\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMus_musculus.GRCm38.86.gtf\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTrimmed_ref_5000_uniprot_cRAP.fasta\"]\n 3[label=\"HISAT2\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Editing GTF File\"]\n 1 -> 4 [label=\"output\"]\n k70b6f719803f4fa98394a3b64b71ec01[color=lightseagreen,label=\"Output\\nchr_corrected_gtf\"]\n 4 -> k70b6f719803f4fa98394a3b64b71ec01\n 5[label=\"FASTA-to-Tabular\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"FreeBayes\"]\n 3 -> 6 [label=\"output_alignments\"]\n 7[label=\"StringTie\"]\n 4 -> 7 [label=\"outfile\"]\n 3 -> 7 [label=\"output_alignments\"]\n 8[label=\"Filter Tabular\"]\n 5 -> 8 [label=\"output\"]\n 9[label=\"CustomProDB\"]\n 3 -> 9 [label=\"output_alignments\"]\n 6 -> 9 [label=\"output_vcf\"]\n 10[label=\"GffCompare\"]\n 4 -> 10 [label=\"outfile\"]\n 7 -> 10 [label=\"output_gtf\"]\n 11[label=\"SQLite to tabular\"]\n 9 -> 11 [label=\"output_genomic_mapping_sqlite\"]\n 12[label=\"SQLite to tabular\"]\n 9 -> 12 [label=\"output_variant_annotation_sqlite\"]\n 13[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 9 -> 13 [label=\"output_rpkm\"]\n 9 -> 13 [label=\"output_snv\"]\n 9 -> 13 [label=\"output_indel\"]\n ka5054be9dd744d60a4c6494fdbcb97a1[color=lightseagreen,label=\"Output\\nCustomProDB_FASTA\"]\n 13 -> ka5054be9dd744d60a4c6494fdbcb97a1\n 14[label=\"FASTA-to-Tabular\"]\n 9 -> 14 [label=\"output_rpkm\"]\n 15[label=\"Convert gffCompare annotated GTF to BED\"]\n 10 -> 15 [label=\"transcripts_annotated\"]\n 16[label=\"Column Regex Find And Replace\"]\n 11 -> 16 [label=\"query_results\"]\n 17[label=\"Column Regex Find And Replace\"]\n 12 -> 17 [label=\"query_results\"]\n 18[label=\"FASTA-to-Tabular\"]\n 13 -> 18 [label=\"output\"]\n 19[label=\"Filter Tabular\"]\n 14 -> 19 [label=\"output\"]\n 20[label=\"Translate BED transcripts\"]\n 15 -> 20 [label=\"output\"]\n 21[label=\"Query Tabular\"]\n 17 -> 21 [label=\"out_file1\"]\n ke94684794ebd4ced8086c10e916b97c5[color=lightseagreen,label=\"Output\\nvariant_annoation_sqlite\"]\n 21 -> ke94684794ebd4ced8086c10e916b97c5\n 22[label=\"Column Regex Find And Replace\"]\n 18 -> 22 [label=\"output\"]\n 23[label=\"Reference Protein Accessions\"]\n 19 -> 23 [label=\"output\"]\n 8 -> 23 [label=\"output\"]\n k19aa5a8559334ab5ae76e4b1ec5b2f85[color=lightseagreen,label=\"Output\\nReference_Protein_Accessions\"]\n 23 -> k19aa5a8559334ab5ae76e4b1ec5b2f85\n 24[label=\"bed to protein map\"]\n 20 -> 24 [label=\"translation_bed\"]\n 25[label=\"Tabular-to-FASTA\"]\n 22 -> 25 [label=\"out_file1\"]\n 26[label=\"Concatenate datasets\"]\n 24 -> 26 [label=\"output\"]\n 16 -> 26 [label=\"out_file1\"]\n 27[label=\"FASTA Merge Files and Filter Unique Sequences\"]\n 2 -> 27 [label=\"output\"]\n 25 -> 27 [label=\"output\"]\n 20 -> 27 [label=\"translation_fasta\"]\n k924bce7c5c6a4cb3a45918784a55ae01[color=lightseagreen,label=\"Output\\nUniprot_cRAP_SAV_indel_translatedbed_FASTA\"]\n 27 -> k924bce7c5c6a4cb3a45918784a55ae01\n 28[label=\"Genomic_mapping_sqlite\"]\n 26 -> 28 [label=\"out_file1\"]\n k6542c4e5289a4be49b427a4e170ba198[color=lightseagreen,label=\"Output\\ngenomic_mapping_sqlite\"]\n 28 -> k6542c4e5289a4be49b427a4e170ba198\n}", + "history": [ + { + "hash": "28fc28c45aa8516e99a6f1f975814904be546a3a", + "message": "Update galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "num": 12, + "short_hash": "28fc28c45", + "unix": "1612811929" + }, + { + "hash": "1eca54ca9d40ba883df90c41f9e671ffd4e45d59", + "message": "Update galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "num": 11, + "short_hash": "1eca54ca9", + "unix": "1611784076" + }, + { + "hash": "0db38ae94eb41e0f3a8af428a741559473c8543f", + "message": "Update galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "num": 10, + "short_hash": "0db38ae94", + "unix": "1611783698" + }, + { + "hash": "13e2ffc4d065eb5e76df61af4d1627e1e74ad103", + "message": "Update galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "num": 9, + "short_hash": "13e2ffc4d", + "unix": "1611782854" + }, + { + "hash": "2c4b4646c61b3da411901fd4edc3e7f2270cd8bf", + "message": "Update galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "num": 8, + "short_hash": "2c4b4646c", + "unix": "1611782235" + }, + { + "hash": "f99b54e3c22e74a3572ee864041f4726f4838727", + "message": "Update galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "num": 7, + "short_hash": "f99b54e3c", + "unix": "1611781308" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 6, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 5, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "55fe079b2828d71aabb21fa0700f6f77ac76052c", + "message": "WoLF PSORT WF", + "num": 4, + "short_hash": "55fe079b2", + "unix": "1578933056" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 3, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "6eef55b7e8306d8ce46ac08e7799f6f65ae106aa", + "message": "Updated install_tutorial_requirements.sh + minor fixes (#1275)", + "num": 2, + "short_hash": "6eef55b7e", + "unix": "1551293676" + }, + { + "hash": "a928824de1a4881491bd2c63f7b60ba800319437", + "message": "add protegenomics dbcreation tutorial", + "num": 1, + "short_hash": "a928824de", + "unix": "1535188370" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "FASTQ_ProB_22LIST.fastqsanger" + } + ], + "label": "FASTQ_ProB_22LIST.fastqsanger", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 479.57811737060547, + "height": 84, + "left": 465.49999237060547, + "right": 625.5000228881836, + "top": 395.57811737060547, + "width": 160.00003051757812, + "x": 465.49999237060547, + "y": 395.57811737060547 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a4deaec6-bac9-4c6d-9b55-1db09bd68be5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8ce4f9b5-2fc0-4a8b-977c-0042f2f4bc60" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mus_musculus.GRCm38.86.gtf" + } + ], + "label": "Mus_musculus.GRCm38.86.gtf", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 717.5468978881836, + "height": 84.00003051757812, + "left": 448.46874237060547, + "right": 608.4687728881836, + "top": 633.5468673706055, + "width": 160.00003051757812, + "x": 448.46874237060547, + "y": 633.5468673706055 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "39d9897f-14c7-476a-a85d-08425745e5a3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "66e6bfc3-7f7f-415b-91be-a8d5deabe21f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Trimmed_ref_5000_uniprot_cRAP.fasta" + } + ], + "label": "Trimmed_ref_5000_uniprot_cRAP.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 186.8125, + "height": 84, + "left": 2539.6719360351562, + "right": 2699.6719360351562, + "top": 102.8125, + "width": 160, + "x": 2539.6719360351562, + "y": 102.8125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4ae4a7cf-adbd-4529-b4a5-e3a37d7c0120", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f8446100-0e31-437c-a642-27c70ec4d7ef" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nFASTQ_ProB_22LIST.fastqsanger\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nMus_musculus.GRCm38.86.gtf\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTrimmed_ref_5000_uniprot_cRAP.fasta\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"HISAT2\"];\n 0 -->|output| 3;\n 4[\"Editing GTF File\"];\n 1 -->|output| 4;\n 70b6f719-803f-4fa9-8394-a3b64b71ec01[\"Output\\nchr_corrected_gtf\"];\n 4 --> 70b6f719-803f-4fa9-8394-a3b64b71ec01;\n style 70b6f719-803f-4fa9-8394-a3b64b71ec01 stroke:#2c3143,stroke-width:4px;\n 5[\"FASTA-to-Tabular\"];\n 2 -->|output| 5;\n 6[\"FreeBayes\"];\n 3 -->|output_alignments| 6;\n 7[\"StringTie\"];\n 4 -->|outfile| 7;\n 3 -->|output_alignments| 7;\n 8[\"Filter Tabular\"];\n 5 -->|output| 8;\n 9[\"CustomProDB\"];\n 3 -->|output_alignments| 9;\n 6 -->|output_vcf| 9;\n 10[\"GffCompare\"];\n 4 -->|outfile| 10;\n 7 -->|output_gtf| 10;\n 11[\"SQLite to tabular\"];\n 9 -->|output_genomic_mapping_sqlite| 11;\n 12[\"SQLite to tabular\"];\n 9 -->|output_variant_annotation_sqlite| 12;\n 13[\"FASTA Merge Files and Filter Unique Sequences\"];\n 9 -->|output_rpkm| 13;\n 9 -->|output_snv| 13;\n 9 -->|output_indel| 13;\n a5054be9-dd74-4d60-a4c6-494fdbcb97a1[\"Output\\nCustomProDB_FASTA\"];\n 13 --> a5054be9-dd74-4d60-a4c6-494fdbcb97a1;\n style a5054be9-dd74-4d60-a4c6-494fdbcb97a1 stroke:#2c3143,stroke-width:4px;\n 14[\"FASTA-to-Tabular\"];\n 9 -->|output_rpkm| 14;\n 15[\"Convert gffCompare annotated GTF to BED\"];\n 10 -->|transcripts_annotated| 15;\n 16[\"Column Regex Find And Replace\"];\n 11 -->|query_results| 16;\n 17[\"Column Regex Find And Replace\"];\n 12 -->|query_results| 17;\n 18[\"FASTA-to-Tabular\"];\n 13 -->|output| 18;\n 19[\"Filter Tabular\"];\n 14 -->|output| 19;\n 20[\"Translate BED transcripts\"];\n 15 -->|output| 20;\n 21[\"Query Tabular\"];\n 17 -->|out_file1| 21;\n e9468479-4ebd-4ced-8086-c10e916b97c5[\"Output\\nvariant_annoation_sqlite\"];\n 21 --> e9468479-4ebd-4ced-8086-c10e916b97c5;\n style e9468479-4ebd-4ced-8086-c10e916b97c5 stroke:#2c3143,stroke-width:4px;\n 22[\"Column Regex Find And Replace\"];\n 18 -->|output| 22;\n 23[\"Reference Protein Accessions\"];\n 19 -->|output| 23;\n 8 -->|output| 23;\n 19aa5a85-5933-4ab5-ae76-e4b1ec5b2f85[\"Output\\nReference_Protein_Accessions\"];\n 23 --> 19aa5a85-5933-4ab5-ae76-e4b1ec5b2f85;\n style 19aa5a85-5933-4ab5-ae76-e4b1ec5b2f85 stroke:#2c3143,stroke-width:4px;\n 24[\"bed to protein map\"];\n 20 -->|translation_bed| 24;\n 25[\"Tabular-to-FASTA\"];\n 22 -->|out_file1| 25;\n 26[\"Concatenate datasets\"];\n 24 -->|output| 26;\n 16 -->|out_file1| 26;\n 27[\"FASTA Merge Files and Filter Unique Sequences\"];\n 2 -->|output| 27;\n 25 -->|output| 27;\n 20 -->|translation_fasta| 27;\n 924bce7c-5c6a-4cb3-a459-18784a55ae01[\"Output\\nUniprot_cRAP_SAV_indel_translatedbed_FASTA\"];\n 27 --> 924bce7c-5c6a-4cb3-a459-18784a55ae01;\n style 924bce7c-5c6a-4cb3-a459-18784a55ae01 stroke:#2c3143,stroke-width:4px;\n 28[\"Genomic_mapping_sqlite\"];\n 26 -->|out_file1| 28;\n 6542c4e5-289a-4be4-9b42-7a4e170ba198[\"Output\\ngenomic_mapping_sqlite\"];\n 28 --> 6542c4e5-289a-4be4-9b42-7a4e170ba198;\n style 6542c4e5-289a-4be4-9b42-7a4e170ba198 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "GTN Proteogenomics1 Database Creation", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "FASTQ_ProB_22LIST.fastqsanger" + } + ], + "label": "FASTQ_ProB_22LIST.fastqsanger", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 479.57811737060547, + "height": 84, + "left": 465.49999237060547, + "right": 625.5000228881836, + "top": 395.57811737060547, + "width": 160.00003051757812, + "x": 465.49999237060547, + "y": 395.57811737060547 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a4deaec6-bac9-4c6d-9b55-1db09bd68be5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8ce4f9b5-2fc0-4a8b-977c-0042f2f4bc60" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mus_musculus.GRCm38.86.gtf" + } + ], + "label": "Mus_musculus.GRCm38.86.gtf", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 717.5468978881836, + "height": 84.00003051757812, + "left": 448.46874237060547, + "right": 608.4687728881836, + "top": 633.5468673706055, + "width": 160.00003051757812, + "x": 448.46874237060547, + "y": 633.5468673706055 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "39d9897f-14c7-476a-a85d-08425745e5a3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "66e6bfc3-7f7f-415b-91be-a8d5deabe21f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Trimmed_ref_5000_uniprot_cRAP.fasta" + } + ], + "label": "Trimmed_ref_5000_uniprot_cRAP.fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 186.8125, + "height": 84, + "left": 2539.6719360351562, + "right": 2699.6719360351562, + "top": 102.8125, + "width": 160, + "x": 2539.6719360351562, + "y": 102.8125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4ae4a7cf-adbd-4529-b4a5-e3a37d7c0120", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f8446100-0e31-437c-a642-27c70ec4d7ef" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "errors": null, + "id": 3, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "HISAT2", + "outputs": [ + { + "name": "output_alignments", + "type": "bam" + } + ], + "position": { + "bottom": 504.17813873291016, + "height": 109.60000610351562, + "left": 716.5000152587891, + "right": 876.5000152587891, + "top": 394.57813262939453, + "width": 160, + "x": 716.5000152587891, + "y": 394.57813262939453 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "tool_shed_repository": { + "changeset_revision": "a86e80d3c09c", + "name": "hisat2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"input_options\": {\"input_options_selector\": \"defaults\", \"__current_case__\": 0}, \"alignment_options\": {\"alignment_options_selector\": \"defaults\", \"__current_case__\": 0}, \"scoring_options\": {\"scoring_options_selector\": \"defaults\", \"__current_case__\": 0}, \"spliced_options\": {\"spliced_options_selector\": \"defaults\", \"__current_case__\": 0}, \"reporting_options\": {\"reporting_options_selector\": \"defaults\", \"__current_case__\": 0}, \"output_options\": {\"output_options_selector\": \"defaults\", \"__current_case__\": 0}, \"other_options\": {\"other_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"rna_strandness\": \"\"}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"mm10\"}, \"sum\": {\"new_summary\": \"false\", \"summary_file\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "6ebfb19c-ad93-4506-96f8-8c6ecbff76d0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_alignments", + "uuid": "e3257606-a1f4-4a0e-9cfa-f2a5a5aee993" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "errors": null, + "id": 4, + "input_connections": { + "infile": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Replace Text", + "name": "infile" + } + ], + "label": "Editing GTF File", + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 949.1468658447266, + "height": 109.5999755859375, + "left": 715.5625152587891, + "right": 875.5625152587891, + "top": 839.5468902587891, + "width": 160, + "x": 715.5625152587891, + "y": 839.5468902587891 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "Edited_Mus_Musculus.GRCm38.86" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "tool_shed_repository": { + "changeset_revision": "a6f147a050a2", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"RuntimeValue\"}, \"replacements\": [{\"__index__\": 0, \"column\": \"1\", \"find_pattern\": \"^([1-9][0-9]*)$\", \"replace_pattern\": \"chr\\\\\\\\1\"}, {\"__index__\": 1, \"column\": \"1\", \"find_pattern\": \"^([XY])$\", \"replace_pattern\": \"chr\\\\\\\\1\"}, {\"__index__\": 2, \"column\": \"1\", \"find_pattern\": \"^MT$\", \"replace_pattern\": \"chrM\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "1771bf89-9c60-4d45-bbf9-15c937b5aa3a", + "workflow_outputs": [ + { + "label": "chr_corrected_gtf", + "output_name": "outfile", + "uuid": "70b6f719-803f-4fa9-8394-a3b64b71ec01" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 209.8312530517578, + "height": 92.80000305175781, + "left": 2793.7655639648438, + "right": 2953.7655639648438, + "top": 117.03125, + "width": 160, + "x": 2793.7655639648438, + "y": 117.03125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "7e801ab2b70e", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"descr_columns\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "1c90c734-44df-433a-8431-da0dae1e46d0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "55a4c3db-64ee-4631-aecd-11e9dc0d8bac" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.1", + "errors": null, + "id": 6, + "input_connections": { + "reference_source|batchmode|input_bams": { + "id": 3, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "FreeBayes", + "outputs": [ + { + "name": "output_vcf", + "type": "vcf" + } + ], + "position": { + "bottom": 534.3468780517578, + "height": 92.80001831054688, + "left": 1046.5625, + "right": 1206.5625, + "top": 441.54685974121094, + "width": 160, + "x": 1046.5625, + "y": 441.54685974121094 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.1", + "tool_shed_repository": { + "changeset_revision": "ef2c525bd8cd", + "name": "freebayes", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"coverage_options\": {\"coverage_options_selector\": \"do_not_set\", \"__current_case__\": 1}, \"options_type\": {\"options_type_selector\": \"simple\", \"__current_case__\": 1}, \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_bams\": {\"__class__\": \"ConnectedValue\"}}, \"ref_file\": \"mm10full\"}, \"target_limit_type\": {\"target_limit_type_selector\": \"do_not_limit\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "c02258e7-9b87-4a32-9a49-a4edb44a293f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_vcf", + "uuid": "3ce080ca-cae9-457f-8606-4357fd9c5736" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.1.1", + "errors": null, + "id": 7, + "input_connections": { + "guide|guide_source|ref_hist": { + "id": 4, + "output_name": "outfile" + }, + "input_bam": { + "id": 3, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "StringTie", + "outputs": [ + { + "name": "output_gtf", + "type": "gtf" + } + ], + "position": { + "bottom": 808.7781372070312, + "height": 151.20001220703125, + "left": 1039.53125, + "right": 1199.53125, + "top": 657.578125, + "width": 160, + "x": 1039.53125, + "y": 657.578125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.1.1", + "tool_shed_repository": { + "changeset_revision": "1ebd14235b92", + "name": "stringtie", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"adv\": {\"abundance_estimation\": \"false\", \"omit_sequences\": \"\", \"name_prefix\": \"\", \"fraction\": \"0.15\", \"min_tlen\": \"200\", \"min_anchor_len\": \"10\", \"min_anchor_cov\": \"1\", \"min_bundle_cov\": \"2\", \"bdist\": \"50\", \"bundle_fraction\": \"0.95\", \"disable_trimming\": \"false\", \"multi_mapping\": \"false\"}, \"chromInfo\": \"/panfs/roc/website/galaxyp.msi.umn.edu/galaxy/tool-data/shared/ucsc/chrom/mm10.len\", \"guide\": {\"use_guide\": \"yes\", \"__current_case__\": 1, \"guide_source\": {\"guide_gff_select\": \"history\", \"__current_case__\": 1, \"ref_hist\": {\"__class__\": \"ConnectedValue\"}}, \"input_estimation\": \"false\", \"special_outputs\": {\"special_outputs_select\": \"no\", \"__current_case__\": 2}, \"coverage_file\": \"false\"}, \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"long_reads\": \"false\", \"rna_strandness\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "fad69441-c09f-410c-8c49-34832d8e297d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_gtf", + "uuid": "12837520-843e-49c1-be1e-06a44985c2b9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 252.8000030517578, + "height": 92.80000305175781, + "left": 3066.40625, + "right": 3226.40625, + "top": 160, + "width": 160, + "x": 3066.40625, + "y": 160 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "34d29339abab", + "name": "filter_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1\"}}, {\"__index__\": 1, \"filter\": {\"filter_type\": \"replace\", \"__current_case__\": 8, \"column\": \"1\", \"regex_pattern\": \"^[^|]+[|]([^| ]+).*$\", \"regex_replace\": \"\\\\1\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "067ce402-0494-4d31-860f-50097b76449d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "adbd3988-0a8e-409c-b1b2-4939fe9611a4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/custom_pro_db/custom_pro_db/1.22.0", + "errors": null, + "id": 9, + "input_connections": { + "genome_annotation|bamInput": { + "id": 3, + "output_name": "output_alignments" + }, + "genome_annotation|vcfInput": { + "id": 6, + "output_name": "output_vcf" + } + }, + "inputs": [], + "label": null, + "name": "CustomProDB", + "outputs": [ + { + "name": "output_rpkm", + "type": "fasta" + }, + { + "name": "output_snv", + "type": "fasta" + }, + { + "name": "output_indel", + "type": "fasta" + }, + { + "name": "output_variant_annotation_rdata", + "type": "rdata" + }, + { + "name": "output_genomic_mapping_sqlite", + "type": "sqlite" + }, + { + "name": "output_variant_annotation_sqlite", + "type": "sqlite" + } + ], + "position": { + "bottom": 391.89999198913574, + "height": 342.3999938964844, + "left": 1294.6719360351562, + "right": 1454.6719360351562, + "top": 49.49999809265137, + "width": 160, + "x": 1294.6719360351562, + "y": 49.49999809265137 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/custom_pro_db/custom_pro_db/1.22.0", + "tool_shed_repository": { + "changeset_revision": "2c7df0077d28", + "name": "custom_pro_db", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"genome_annotation\": {\"source\": \"builtin\", \"__current_case__\": 0, \"builtin\": \"mm10_GRCm38.p5\", \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"vcfInput\": {\"__class__\": \"ConnectedValue\"}, \"dbsnpInCoding\": \"false\", \"cosmic\": \"false\"}, \"outputIndels\": \"true\", \"outputRData\": \"true\", \"outputSQLite\": \"true\", \"rpkmCutoff\": \"1.0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "3268fd0d-0aa0-45d2-ad2d-2ba443d94a2b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_rpkm", + "uuid": "2e2725cd-de12-4fa3-ae65-dfc52dbe45bf" + }, + { + "label": null, + "output_name": "output_snv", + "uuid": "9dddcd8b-25bc-4bc0-9240-fd3157340cbd" + }, + { + "label": null, + "output_name": "output_indel", + "uuid": "d8ba561c-2dc7-4668-ab3c-8d11a0bbc8db" + }, + { + "label": null, + "output_name": "output_variant_annotation_rdata", + "uuid": "951816e4-4410-4bf9-982c-0604ecfc5a4b" + }, + { + "label": null, + "output_name": "output_genomic_mapping_sqlite", + "uuid": "a856b8cf-185e-435a-8c5c-0e87fa5fb7ac" + }, + { + "label": null, + "output_name": "output_variant_annotation_sqlite", + "uuid": "045869cc-5493-439c-b870-b2be30170137" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gffcompare/gffcompare/0.11.2", + "errors": null, + "id": 10, + "input_connections": { + "annotation|ref_source|reference_annotation": { + "id": 4, + "output_name": "outfile" + }, + "gffinputs": { + "id": 7, + "output_name": "output_gtf" + } + }, + "inputs": [], + "label": null, + "name": "GffCompare", + "outputs": [ + { + "name": "refmap_output", + "type": "input" + }, + { + "name": "tmap_output", + "type": "input" + }, + { + "name": "transcripts_stats", + "type": "txt" + }, + { + "name": "transcripts_loci", + "type": "tabular" + }, + { + "name": "transcripts_tracking", + "type": "tabular" + }, + { + "name": "transcripts_annotated", + "type": "gtf" + } + ], + "position": { + "bottom": 1232.715576171875, + "height": 359.199951171875, + "left": 1283.6563110351562, + "right": 1443.6563110351562, + "top": 873.515625, + "width": 160, + "x": 1283.6563110351562, + "y": 873.515625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gffcompare/gffcompare/0.11.2", + "tool_shed_repository": { + "changeset_revision": "0f710191a66d", + "name": "gffcompare", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"gtf\", \"adv_output\": {\"p\": \"TCONS\", \"C\": \"false\", \"A\": \"false\", \"X\": \"false\", \"K\": \"false\"}, \"annotation\": {\"use_ref_annotation\": \"Yes\", \"__current_case__\": 0, \"ref_source\": {\"ref_source_sel\": \"history\", \"__current_case__\": 1, \"reference_annotation\": {\"__class__\": \"ConnectedValue\"}}, \"ignore_nonoverlapping_reference\": \"false\", \"ignore_nonoverlapping_transfrags\": \"false\", \"strict_match\": \"false\", \"refmap_tmap\": [\"refmap\", \"tmap\"]}, \"chr_stats\": \"false\", \"chromInfo\": \"/panfs/roc/website/galaxyp.msi.umn.edu/galaxy/tool-data/shared/ucsc/chrom/mm10.len\", \"discard_duplicates\": \"\", \"discard_single_exon\": \"\", \"gffinputs\": {\"__class__\": \"ConnectedValue\"}, \"max_dist_exon\": \"100\", \"max_dist_group\": \"100\", \"no_merge\": \"false\", \"seq_data\": {\"use_seq_data\": \"No\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "6b917971-f710-4e39-b795-edda6bb0042e", + "workflow_outputs": [ + { + "label": null, + "output_name": "transcripts_annotated", + "uuid": "94d389ff-4147-4d17-9a88-ee40b51b1385" + }, + { + "label": null, + "output_name": "transcripts_loci", + "uuid": "6572f472-1780-465a-94b1-194bc90100f5" + }, + { + "label": null, + "output_name": "transcripts_tracking", + "uuid": "b98508c8-733f-4a08-ad97-4878dea87ec7" + }, + { + "label": null, + "output_name": "transcripts_stats", + "uuid": "9b35be89-e7d9-4e01-b410-b5c3006879c8" + }, + { + "label": null, + "output_name": "refmap_output", + "uuid": "e9e58252-6620-43f7-88aa-be97ca06eda2" + }, + { + "label": null, + "output_name": "tmap_output", + "uuid": "48258492-2e3d-4e61-9789-b2e347306a17" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "errors": null, + "id": 11, + "input_connections": { + "sqlitedb": { + "id": 9, + "output_name": "output_genomic_mapping_sqlite" + } + }, + "inputs": [], + "label": null, + "name": "SQLite to tabular", + "outputs": [ + { + "name": "query_results", + "type": "tabular" + } + ], + "position": { + "bottom": 637.3312377929688, + "height": 92.79998779296875, + "left": 1521.1563110351562, + "right": 1681.1563110351562, + "top": 544.53125, + "width": 160, + "x": 1521.1563110351562, + "y": 544.53125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "b722161a845a", + "name": "sqlite_to_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"sqlite\", \"chromInfo\": \"/panfs/roc/website/galaxyp.msi.umn.edu/galaxy/tool-data/shared/ucsc/chrom/mm10.len\", \"query_result\": {\"header\": \"no\", \"__current_case__\": 1}, \"sqlitedb\": {\"__class__\": \"ConnectedValue\"}, \"sqlquery\": \"SELECT pro_name, chr_name, cds_chr_start - 1, cds_chr_end,strand,cds_start - 1, cds_end\\n FROM genomic_mapping\\n ORDER BY pro_name, cds_start, cds_end\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "235f73d3-b7b1-4c7b-956b-e4942ccd8a96", + "workflow_outputs": [ + { + "label": null, + "output_name": "query_results", + "uuid": "78c872b0-6405-4398-a4ce-217b5aea935d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "errors": null, + "id": 12, + "input_connections": { + "sqlitedb": { + "id": 9, + "output_name": "output_variant_annotation_sqlite" + } + }, + "inputs": [], + "label": null, + "name": "SQLite to tabular", + "outputs": [ + { + "name": "query_results", + "type": "tabular" + } + ], + "position": { + "bottom": 774.7062683105469, + "height": 92.79998779296875, + "left": 1518.1562805175781, + "right": 1678.1562805175781, + "top": 681.9062805175781, + "width": 160, + "x": 1518.1562805175781, + "y": 681.9062805175781 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "b722161a845a", + "name": "sqlite_to_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"sqlite\", \"chromInfo\": \"/panfs/roc/website/galaxyp.msi.umn.edu/galaxy/tool-data/shared/ucsc/chrom/mm10.len\", \"query_result\": {\"header\": \"no\", \"__current_case__\": 1}, \"sqlitedb\": {\"__class__\": \"ConnectedValue\"}, \"sqlquery\": \"SELECT var_pro_name,pro_name,cigar,annotation\\nFROM variant_annotation\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "0f9a44cc-2215-4576-96b1-0d58c71972ae", + "workflow_outputs": [ + { + "label": null, + "output_name": "query_results", + "uuid": "a43002ec-42c3-4796-9c37-5fd478a16534" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 13, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 9, + "output_name": "output_rpkm" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 9, + "output_name": "output_snv" + }, + "batchmode|input_fastas_2|input_fasta": { + "id": 9, + "output_name": "output_indel" + } + }, + "inputs": [], + "label": null, + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 432.9000053405762, + "height": 226.40000915527344, + "left": 1772.6718139648438, + "right": 1932.6718139648438, + "top": 206.49999618530273, + "width": 160, + "x": 1772.6718139648438, + "y": 206.49999618530273 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "CustomProDB_FASTA" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"accession_parser\": \"^>([^ |]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 2, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"uniqueness_criterion\": \"sequence\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "5f8e4568-d12e-4a43-86d1-f68fbb3b9da0", + "workflow_outputs": [ + { + "label": "CustomProDB_FASTA", + "output_name": "output", + "uuid": "a5054be9-dd74-4d60-a4c6-494fdbcb97a1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 9, + "output_name": "output_rpkm" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 75.04999923706055, + "height": 92.79999542236328, + "left": 2794.2657470703125, + "right": 2954.2657470703125, + "top": -17.749996185302734, + "width": 160, + "x": 2794.2657470703125, + "y": -17.749996185302734 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "7e801ab2b70e", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"descr_columns\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "3b77287d-b9c2-4bc9-968d-c98db680292f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5ec3c54b-c7a8-45b5-99c2-b9768bd8c037" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/gffcompare_to_bed/gffcompare_to_bed/0.2.1", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 10, + "output_name": "transcripts_annotated" + } + }, + "inputs": [], + "label": null, + "name": "Convert gffCompare annotated GTF to BED", + "outputs": [ + { + "name": "output", + "type": "bed" + } + ], + "position": { + "bottom": 1182.9781036376953, + "height": 126.39996337890625, + "left": 1517.6406860351562, + "right": 1677.6406860351562, + "top": 1056.578140258789, + "width": 160, + "x": 1517.6406860351562, + "y": 1056.578140258789 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/gffcompare_to_bed/gffcompare_to_bed/0.2.1", + "tool_shed_repository": { + "changeset_revision": "ba5368c19dbd", + "name": "gffcompare_to_bed", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"gtf\", \"chromInfo\": \"/panfs/roc/website/galaxyp.msi.umn.edu/galaxy/tool-data/shared/ucsc/chrom/mm10.len\", \"class_codes\": [\"j\", \"e\", \"i\", \"p\", \"u\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "397b735d-cfc5-4a63-8d8c-3cbda7dcf0ad", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a294134b-17fd-4590-affe-f1363a292ff1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 11, + "output_name": "query_results" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 636.8468475341797, + "height": 92.79998779296875, + "left": 1767.96875, + "right": 1927.96875, + "top": 544.0468597412109, + "width": 160, + "x": 1767.96875, + "y": 544.0468597412109 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "tool_shed_repository": { + "changeset_revision": "209b7c5ee9d7", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^(ENS[^_]+_\\\\d+:)([ACGTacgt]+)>([ACGTacgt]+)\\\\s*\", \"replacement\": \"\\\\1\\\\2_\\\\3\"}, {\"__index__\": 1, \"pattern\": \",([A-Y]\\\\d+[A-Y]?)\\\\s*\", \"replacement\": \".\\\\1\"}, {\"__index__\": 2, \"pattern\": \"^(ENS[^ |]*)\\\\s*\", \"replacement\": \"\\\\1\"}], \"field\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "286d169c-079e-42a3-beb5-7515c2109f3c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "4ade9d67-ccc6-481c-b749-b3363871ea56" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 12, + "output_name": "query_results" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 807.5812530517578, + "height": 92.79998779296875, + "left": 1745.5781555175781, + "right": 1905.5781555175781, + "top": 714.7812652587891, + "width": 160, + "x": 1745.5781555175781, + "y": 714.7812652587891 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "tool_shed_repository": { + "changeset_revision": "209b7c5ee9d7", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^(ENS[^_]+_\\\\d+:)([ACGTacgt]+)>([ACGTacgt]+)\\\\s*\", \"replacement\": \"\\\\1\\\\2_\\\\3\"}, {\"__index__\": 1, \"pattern\": \",([A-Y]\\\\d+[A-Y]?)\\\\s*\", \"replacement\": \".\\\\1\"}, {\"__index__\": 2, \"pattern\": \"^(ENS[^ |]*)\\\\s*\", \"replacement\": \"\\\\1\"}], \"field\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "3c96276e-032e-43cb-a7d0-8045941b9674", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "f6507937-030f-40b0-aff6-828d6e28aeae" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 18, + "input_connections": { + "input": { + "id": 13, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 416.9874954223633, + "height": 92.79998779296875, + "left": 2049.640655517578, + "right": 2209.640655517578, + "top": 324.18750762939453, + "width": 160, + "x": 2049.640655517578, + "y": 324.18750762939453 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "7e801ab2b70e", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"descr_columns\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "f77ceead-9781-4122-a033-e5e675d1d0af", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6f986155-b096-40f3-981b-edf3f3b75617" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "errors": null, + "id": 19, + "input_connections": { + "input": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 105.04999923706055, + "height": 92.79999542236328, + "left": 3064.4061279296875, + "right": 3224.4061279296875, + "top": 12.250003814697266, + "width": 160, + "x": 3064.4061279296875, + "y": 12.250003814697266 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "34d29339abab", + "name": "filter_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1\"}}, {\"__index__\": 1, \"filter\": {\"filter_type\": \"replace\", \"__current_case__\": 8, \"column\": \"1\", \"regex_pattern\": \"^([^ |]+).*$\", \"regex_replace\": \"\\\\1\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "c5a70a7c-b161-4468-8fe6-c5aa7a62ea97", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "02d27417-7639-4052-8f09-4d97225efb7b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/translate_bed/translate_bed/0.1.0", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 15, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Translate BED transcripts", + "outputs": [ + { + "name": "translation_bed", + "type": "bed" + }, + { + "name": "translation_fasta", + "type": "fasta" + } + ], + "position": { + "bottom": 1166.1468811035156, + "height": 117.5999755859375, + "left": 1742.6094055175781, + "right": 1902.6094055175781, + "top": 1048.5469055175781, + "width": 160, + "x": 1742.6094055175781, + "y": 1048.5469055175781 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/translate_bed/translate_bed/0.1.0", + "tool_shed_repository": { + "changeset_revision": "038ecf54cbec", + "name": "translate_bed", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"bed_filters\": {\"regions\": \"\", \"biotypes\": \"\"}, \"chromInfo\": \"/panfs/roc/website/galaxyp.msi.umn.edu/galaxy/tool-data/shared/ucsc/chrom/mm10.len\", \"fa_id\": {\"reference\": \"\", \"fa_db\": \"generic\", \"fa_sep\": \"\", \"id_prefix\": \"\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"ref\": {\"ref_source\": \"cached\", \"__current_case__\": 0, \"ref_loc\": \"mm10\"}, \"translations\": {\"translate\": \"cDNA_minus_CDS\", \"min_length\": \"10\", \"start_codon\": \"false\", \"enzyme\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "23639fe3-f5d9-40e7-9377-f0a9657a70df", + "workflow_outputs": [ + { + "label": null, + "output_name": "translation_fasta", + "uuid": "9de63997-d103-4efa-a7ec-0720d7b35b5e" + }, + { + "label": null, + "output_name": "translation_bed", + "uuid": "5512409b-e1d2-4722-9398-4af66e2df909" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 21, + "input_connections": { + "tables_0|table": { + "id": 17, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": null, + "name": "Query Tabular", + "outputs": [ + { + "name": "sqlitedb", + "type": "sqlite" + } + ], + "position": { + "bottom": 831.2187652587891, + "height": 168, + "left": 1982.6406860351562, + "right": 2142.6406860351562, + "top": 663.2187652587891, + "width": 160, + "x": 1982.6406860351562, + "y": 663.2187652587891 + }, + "post_job_actions": { + "RenameDatasetActionsqlitedb": { + "action_arguments": { + "newname": "variant_annoation.sqlite" + }, + "action_type": "RenameDatasetAction", + "output_name": "sqlitedb" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"true\", \"sqlquery\": \"\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"variant_annotation\", \"column_names_from_first_line\": \"false\", \"col_names\": \"name,reference,cigar,annotation\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"name,cigar\"}]}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "81d10709-f407-43c9-b867-b23d52759775", + "workflow_outputs": [ + { + "label": "variant_annoation_sqlite", + "output_name": "sqlitedb", + "uuid": "e9468479-4ebd-4ced-8086-c10e916b97c5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "errors": null, + "id": 22, + "input_connections": { + "input": { + "id": 18, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 427.9718780517578, + "height": 92.79998779296875, + "left": 2311.671905517578, + "right": 2471.671905517578, + "top": 335.17189025878906, + "width": 160, + "x": 2311.671905517578, + "y": 335.17189025878906 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "tool_shed_repository": { + "changeset_revision": "209b7c5ee9d7", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^(ENS[^_]+_\\\\d+:)([ACGTacgt]+)>([ACGTacgt]+)\\\\s*\", \"replacement\": \"\\\\1\\\\2_\\\\3\"}, {\"__index__\": 1, \"pattern\": \",([A-Y]\\\\d+[A-Y]?)\\\\s*\", \"replacement\": \".\\\\1\"}, {\"__index__\": 2, \"pattern\": \"^(ENS[^ |]*)\\\\s*\", \"replacement\": \"\\\\1\"}, {\"__index__\": 3, \"pattern\": \"^(.*)$\", \"replacement\": \"generic|\\\\1\"}], \"field\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "4fe7754b-ecb7-4447-b66d-5f8ab520c6ea", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "1c721b4b-9acf-4f5c-b5e6-4a5bad5aa3f7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "errors": null, + "id": 23, + "input_connections": { + "inputs": [ + { + "id": 19, + "output_name": "output" + }, + { + "id": 8, + "output_name": "output" + } + ] + }, + "inputs": [], + "label": "Reference Protein Accessions", + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 209.64999961853027, + "height": 126.4000015258789, + "left": 3312.6251220703125, + "right": 3472.6251220703125, + "top": 83.24999809265137, + "width": 160, + "x": 3312.6251220703125, + "y": 83.24999809265137 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Reference_Protein_Accessions" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "tool_shed_repository": { + "changeset_revision": "20344ce0c811", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "815c5137-f521-4c1c-9d38-e959ac23bfa6", + "workflow_outputs": [ + { + "label": "Reference_Protein_Accessions", + "output_name": "out_file1", + "uuid": "19aa5a85-5933-4ab5-ae76-e4b1ec5b2f85" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/bed_to_protein_map/bed_to_protein_map/0.2.0", + "errors": null, + "id": 24, + "input_connections": { + "input": { + "id": 20, + "output_name": "translation_bed" + } + }, + "inputs": [], + "label": null, + "name": "bed to protein map", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 1037.8718719482422, + "height": 143.20001220703125, + "left": 1954.1719055175781, + "right": 2114.171905517578, + "top": 894.6718597412109, + "width": 160, + "x": 1954.1719055175781, + "y": 894.6718597412109 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/bed_to_protein_map/bed_to_protein_map/0.2.0", + "tool_shed_repository": { + "changeset_revision": "a7c58b43cbaa", + "name": "bed_to_protein_map", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "f32d0b6f-c434-47ea-88b1-391147c88f92", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ec2b95fe-e600-490e-abde-a8b0d80d1ac9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "errors": null, + "id": 25, + "input_connections": { + "input": { + "id": 22, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Tabular-to-FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 478.0031204223633, + "height": 92.79998779296875, + "left": 2557.6718139648438, + "right": 2717.6718139648438, + "top": 385.20313262939453, + "width": 160, + "x": 2557.6718139648438, + "y": 385.20313262939453 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "tool_shed_repository": { + "changeset_revision": "0b4e36026794", + "name": "tabular_to_fasta", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"seq_col\": \"2\", \"title_col\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "10d46847-b9e3-43b5-868c-bc34ab8e16b5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a20fd7ce-326c-4fb2-845b-ba93bc2d24a5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "errors": null, + "id": 26, + "input_connections": { + "inputs": [ + { + "id": 24, + "output_name": "output" + }, + { + "id": 16, + "output_name": "out_file1" + } + ] + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 662.2062606811523, + "height": 92.80001831054688, + "left": 2288.093719482422, + "right": 2448.093719482422, + "top": 569.4062423706055, + "width": 160, + "x": 2288.093719482422, + "y": 569.4062423706055 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "tool_shed_repository": { + "changeset_revision": "20344ce0c811", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "943dd8be-c5e3-45cf-9b22-8b6d92e2fe4f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "e24d9b68-120f-43da-91a1-34f0daaceb7f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 27, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 2, + "output_name": "output" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 25, + "output_name": "output" + }, + "batchmode|input_fastas_2|input_fasta": { + "id": 20, + "output_name": "translation_fasta" + } + }, + "inputs": [], + "label": null, + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "bottom": 801.796875, + "height": 260, + "left": 2996.5780639648438, + "right": 3156.5780639648438, + "top": 541.796875, + "width": 160, + "x": 2996.5780639648438, + "y": 541.796875 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Uniprot_cRAP_SAV_indel_translatedbed.FASTA" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 2, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"uniqueness_criterion\": \"sequence\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "ee552030-2599-41c9-9bd1-0c6e3d311cae", + "workflow_outputs": [ + { + "label": "Uniprot_cRAP_SAV_indel_translatedbed_FASTA", + "output_name": "output", + "uuid": "924bce7c-5c6a-4cb3-a459-18784a55ae01" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 28, + "input_connections": { + "tables_0|table": { + "id": 26, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "Genomic_mapping_sqlite", + "name": "Query Tabular", + "outputs": [ + { + "name": "sqlitedb", + "type": "sqlite" + } + ], + "position": { + "bottom": 735.6281509399414, + "height": 184.80001831054688, + "left": 2532.6718139648438, + "right": 2692.6718139648438, + "top": 550.8281326293945, + "width": 160, + "x": 2532.6718139648438, + "y": 550.8281326293945 + }, + "post_job_actions": { + "RenameDatasetActionsqlitedb": { + "action_arguments": { + "newname": "genomic_mapping.sqlite" + }, + "action_type": "RenameDatasetAction", + "output_name": "sqlitedb" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"true\", \"sqlquery\": \"\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"feature_cds_map\", \"column_names_from_first_line\": \"false\", \"col_names\": \"name,chrom,start,end,strand,cds_start,cds_end\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"name,cds_start,cds_end\"}]}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "0af1f230-f319-41ab-946a-98ada6900f17", + "workflow_outputs": [ + { + "label": "genomic_mapping_sqlite", + "output_name": "sqlitedb", + "uuid": "6542c4e5-289a-4be4-9b42-7a4e170ba198" + } + ] + } + ], + "parent_id": "proteomics/proteogenomics-dbcreation", + "path": "topics/proteomics/tutorials/proteogenomics-dbcreation/workflows/galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "GTN Proteogenomics1 Database Creation", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteogenomics-dbcreation/versions/galaxy-workflow-mouse-rnaseq-dbcreation", + "tutorial_id": "proteogenomics-dbcreation", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-dbcreation/workflows/galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteogenomics-dbcreation/workflows/galaxy-workflow-mouse_rnaseq_dbcreation.html", + "version": 8, + "wfid": "proteomics-proteogenomics-dbcreation", + "wfname": "galaxy-workflow-mouse-rnaseq-dbcreation", + "workflow": "galaxy-workflow-mouse_rnaseq_dbcreation.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/bed_to_protein_map/bed_to_protein_map/0.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/custom_pro_db/custom_pro_db/1.22.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/gffcompare_to_bed/gffcompare_to_bed/0.2.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/translate_bed/translate_bed/0.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/filter_tabular/filter_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gffcompare/gffcompare/0.11.2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.1.1" + ], + "workflowhub_id": "1201" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1489208" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "7fdd9119cc4f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "7fdd9119cc4f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unipept", + "owner": "galaxyp", + "revisions": "9aaa46d45472", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "33d61c89fb8d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sqlite_to_tabular", + "owner": "iuc", + "revisions": "b722161a845a", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: peptideshaker\n owner: galaxyp\n revisions: 7fdd9119cc4f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 7fdd9119cc4f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unipept\n owner: galaxyp\n revisions: 9aaa46d45472\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: 33d61c89fb8d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sqlite_to_tabular\n owner: iuc\n revisions: b722161a845a\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaproteomics/tutorial.json", + "contributors": [ + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "jj@umn.edu", + "id": "jj-umn", + "in_memoriam": "James \u2018JJ\u2019 Johnson, was a Galaxy community rock star most known for his indispensable contributions to the Galaxy Proteomics community.\n\nJJ\u2019s works will live on in so many Galaxy tools and workflows for years to come.", + "joined": "2017-09", + "name": "James Johnson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jj-umn/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jj-umn.json" + }, + { + "elixir_node": "de", + "email": "blankclemens@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "blankclemens", + "joined": "2017-09", + "name": "Clemens Blank", + "orcid": "0000-0002-1726-2256", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankclemens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankclemens.json" + }, + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + } + ], + "dir": "topics/proteomics/tutorials/metaproteomics", + "edam_ontology": [ + "topic_0121", + "topic_3922", + "topic_3050", + "topic_0637" + ], + "edam_operation": [ + "Visualisation", + "Prediction and recognition" + ], + "edam_topic": [ + "Proteomics", + "Proteogenomics", + "Biodiversity", + "Taxonomy" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/metaproteomics", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use dataset collections", + "With SearchGUI and PeptideShaker you can gain access to multiple search engines", + "Learning the basics of SQL queries can pay off" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "A taxonomy and functional analysis of metaproteomic mass spectrometry data." + ], + "pageviews": 3750, + "pub_date": "2017-06-28", + "questions": [ + "How can I match metaproteomic mass spectrometry data to peptide sequences derived from shotgun metagenomic data?", + "How can I perform taxonomy analysis and visualize metaproteomics data?", + "How can I perform functional analysis on this metaproteomics data?" + ], + "recordings": [ + { + "captioners": [ + "emmaleith" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H", + "speakers": [ + "pratikdjagtap" + ], + "youtube_id": "3_yaPp-RCFw" + } + ], + "short_id": "T00221", + "short_tools": [ + "sqlite_to_tabular", + "peptide_shaker", + "search_gui", + "unipept", + "query_tabular" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "multi-omics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "microgalaxy" + ], + "time_estimation": "2h", + "title": "Metaproteomics tutorial", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.3.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "metaproteomics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/metaproteomics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaproteomics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/metaproteomics/tutorial.json" + }, + "version": 41, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 157, + "visitors": 2256, + "workflows": [ + { + "creators": [], + "description": "Metaproteomics tutorial", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSixgill generated protein FASTA File\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nDataset Collection of Bering Strait MGF Files\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGene Ontology Terms Selected\"]\n 3[label=\"Search GUI\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n k7516674ab5aa45b5b2e838c1889ad2e9[color=lightseagreen,label=\"Output\\nSearch GUI on input dataset(s)\"]\n 3 -> k7516674ab5aa45b5b2e838c1889ad2e9\n 4[label=\"Peptide Shaker\"]\n 3 -> 4 [label=\"searchgui_results\"]\n kddfe8d62a7b74e30a84d91c92fc60bd0[color=lightseagreen,label=\"Output\\nPeptide Shaker on input dataset(s): mzidentML file\"]\n 4 -> kddfe8d62a7b74e30a84d91c92fc60bd0\n 5[label=\"Query Tabular Select Peptides\"]\n 4 -> 5 [label=\"output_psm\"]\n 6[label=\"Unipept pept2prot\"]\n 5 -> 6 [label=\"output\"]\n 7[label=\"Unipept lca\"]\n 5 -> 7 [label=\"output\"]\n 8[label=\"Go Pop2Prot DB\"]\n 2 -> 8 [label=\"output\"]\n 6 -> 8 [label=\"output_tsv\"]\n 6 -> 8 [label=\"output_tsv\"]\n 4 -> 8 [label=\"output_psm\"]\n 9[label=\"Genera | PSMs | Peptides\"]\n 4 -> 9 [label=\"output_psm\"]\n 7 -> 9 [label=\"output_tsv\"]\n 10[label=\"GO Terms: Biological Processes\"]\n 8 -> 10 [label=\"sqlitedb\"]\n 11[label=\"GO Terms: Molecular Functions\"]\n 8 -> 11 [label=\"sqlitedb\"]\n 12[label=\"GO Terms: Cellular Localization\"]\n 8 -> 12 [label=\"sqlitedb\"]\n}", + "history": [ + { + "hash": "aab73d220b58b8cb43227624f29fa6ea618133e6", + "message": "Update workflow.ga", + "num": 10, + "short_hash": "aab73d220", + "unix": "1612840176" + }, + { + "hash": "1386c22b289e346728ded8a2c88f940af9ed2247", + "message": "Update workflow.ga", + "num": 9, + "short_hash": "1386c22b2", + "unix": "1612834619" + }, + { + "hash": "65c8cf73a1d5371e2cb99f59ab1eab2aea941dfc", + "message": "Update workflow.ga", + "num": 8, + "short_hash": "65c8cf73a", + "unix": "1612473524" + }, + { + "hash": "277c504ce90837b1883239a00872839f674aea8c", + "message": "Update workflow.ga", + "num": 7, + "short_hash": "277c504ce", + "unix": "1612473274" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 6, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 5, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "e4a786cd7a8c7abebd27fa8a6d945a197290345b", + "message": "Installing tools from workflows (#1269)", + "num": 4, + "short_hash": "e4a786cd7", + "unix": "1550581735" + }, + { + "hash": "30b28d4c0288107f216b1a9339bd043c511bfe80", + "message": "broken workflow", + "num": 3, + "short_hash": "30b28d4c0", + "unix": "1512315861" + }, + { + "hash": "2e53c11bf8ac4f010ef72c879a36e96df6ec0202", + "message": "Update workflow", + "num": 2, + "short_hash": "2e53c11bf", + "unix": "1502111726" + }, + { + "hash": "f6e08e286c8531ae382c7db6128ba2f419dc7d03", + "message": "Metaproteomics tutorial (#393)", + "num": 1, + "short_hash": "f6e08e286", + "unix": "1498643437" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sixgill generated protein FASTA File" + } + ], + "label": "Sixgill generated protein FASTA File", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 109.09375, + "height": 81, + "left": -232.5, + "right": -32.5, + "top": 28.09375, + "width": 200, + "x": -232.5, + "y": 28.09375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a3a731aa-022c-4d9b-89d3-475fc855e82e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1ca164ee-d66f-4b6c-b1de-e0841cb0b662" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Dataset Collection of Bering Strait MGF Files" + } + ], + "label": "Dataset Collection of Bering Strait MGF Files", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 288.03125, + "height": 101, + "left": -229.546875, + "right": -29.546875, + "top": 187.03125, + "width": 200, + "x": -229.546875, + "y": 187.03125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "ae22c03f-32ee-47af-9c46-064f32e93ee9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1864b353-ca39-4da9-82d4-4ba5124df3b0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Gene Ontology Terms (Selected)" + } + ], + "label": "Gene Ontology Terms (Selected)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 108.5, + "height": 81, + "left": 977.90625, + "right": 1177.90625, + "top": 27.5, + "width": 200, + "x": 977.90625, + "y": 27.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1dfff1a0-d645-4272-b524-39538fcdc95b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f3de0677-7d91-4e64-b644-e384a9b556cb" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSixgill generated protein FASTA File\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nDataset Collection of Bering Strait MGF Files\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nGene Ontology Terms Selected\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Search GUI\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 7516674a-b5aa-45b5-b2e8-38c1889ad2e9[\"Output\\nSearch GUI on input dataset(s)\"];\n 3 --> 7516674a-b5aa-45b5-b2e8-38c1889ad2e9;\n style 7516674a-b5aa-45b5-b2e8-38c1889ad2e9 stroke:#2c3143,stroke-width:4px;\n 4[\"Peptide Shaker\"];\n 3 -->|searchgui_results| 4;\n ddfe8d62-a7b7-4e30-a84d-91c92fc60bd0[\"Output\\nPeptide Shaker on input dataset(s): mzidentML file\"];\n 4 --> ddfe8d62-a7b7-4e30-a84d-91c92fc60bd0;\n style ddfe8d62-a7b7-4e30-a84d-91c92fc60bd0 stroke:#2c3143,stroke-width:4px;\n 5[\"Query Tabular Select Peptides\"];\n 4 -->|output_psm| 5;\n 6[\"Unipept pept2prot\"];\n 5 -->|output| 6;\n 7[\"Unipept lca\"];\n 5 -->|output| 7;\n 8[\"Go Pop2Prot DB\"];\n 2 -->|output| 8;\n 6 -->|output_tsv| 8;\n 6 -->|output_tsv| 8;\n 4 -->|output_psm| 8;\n 9[\"Genera | PSMs | Peptides\"];\n 4 -->|output_psm| 9;\n 7 -->|output_tsv| 9;\n 10[\"GO Terms: Biological Processes\"];\n 8 -->|sqlitedb| 10;\n 11[\"GO Terms: Molecular Functions\"];\n 8 -->|sqlitedb| 11;\n 12[\"GO Terms: Cellular Localization\"];\n 8 -->|sqlitedb| 12;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Metaproteomics_GTN", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sixgill generated protein FASTA File" + } + ], + "label": "Sixgill generated protein FASTA File", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 109.09375, + "height": 81, + "left": -232.5, + "right": -32.5, + "top": 28.09375, + "width": 200, + "x": -232.5, + "y": 28.09375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a3a731aa-022c-4d9b-89d3-475fc855e82e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1ca164ee-d66f-4b6c-b1de-e0841cb0b662" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Dataset Collection of Bering Strait MGF Files" + } + ], + "label": "Dataset Collection of Bering Strait MGF Files", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 288.03125, + "height": 101, + "left": -229.546875, + "right": -29.546875, + "top": 187.03125, + "width": 200, + "x": -229.546875, + "y": 187.03125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "ae22c03f-32ee-47af-9c46-064f32e93ee9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1864b353-ca39-4da9-82d4-4ba5124df3b0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Gene Ontology Terms (Selected)" + } + ], + "label": "Gene Ontology Terms (Selected)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 108.5, + "height": 81, + "left": 977.90625, + "right": 1177.90625, + "top": 27.5, + "width": 200, + "x": 977.90625, + "y": 27.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1dfff1a0-d645-4272-b524-39538fcdc95b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f3de0677-7d91-4e64-b644-e384a9b556cb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "errors": null, + "id": 3, + "input_connections": { + "input_database": { + "id": 0, + "output_name": "output" + }, + "peak_lists": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Search GUI", + "outputs": [ + { + "name": "searchgui_results", + "type": "searchgui_archive" + } + ], + "position": { + "bottom": 204, + "height": 162, + "left": -2.546875, + "right": 197.453125, + "top": 42, + "width": 200, + "x": -2.546875, + "y": 42 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "tool_shed_repository": { + "changeset_revision": "7fdd9119cc4f", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"searchgui_advanced\": {\"searchgui_advanced_selector\": \"basic\", \"__current_case__\": 0}, \"xtandem\": {\"xtandem_advanced\": \"no\", \"__current_case__\": 0}, \"omssa\": {\"omssa_advanced\": \"no\", \"__current_case__\": 0}, \"msgf\": {\"msgf_advanced\": \"no\", \"__current_case__\": 0}, \"ms_amanda\": {\"ms_amanda_advanced\": \"no\", \"__current_case__\": 0}, \"tide\": {\"tide_advanced\": \"no\", \"__current_case__\": 0}, \"myrimatch\": {\"myrimatch_advanced\": \"no\", \"__current_case__\": 0}, \"comet\": {\"comet_advanced\": \"no\", \"__current_case__\": 0}, \"directtag\": {\"directtag_advanced\": \"no\", \"__current_case__\": 0}, \"novor\": {\"novor_advanced\": \"no\", \"__current_case__\": 0}}, \"input_database\": {\"__class__\": \"ConnectedValue\"}, \"peak_lists\": {\"__class__\": \"ConnectedValue\"}, \"precursor_options\": {\"precursor_ion_tol_units\": \"1\", \"precursor_ion_tol\": \"10.0\", \"fragment_tol_units\": \"0\", \"fragment_tol\": \"0.5\", \"min_charge\": \"2\", \"max_charge\": \"4\", \"forward_ion\": \"b\", \"reverse_ion\": \"y\", \"min_isotope\": \"0\", \"max_isotope\": \"1\"}, \"protein_database_options\": {\"create_decoy\": \"true\", \"use_gene_mapping\": \"false\", \"update_gene_mapping\": \"false\"}, \"protein_digest_options\": {\"digestion\": {\"cleavage\": \"0\", \"__current_case__\": 0, \"digests\": [{\"__index__\": 0, \"enzyme\": \"Trypsin\", \"missed_cleavages\": \"2\"}]}}, \"protein_modification_options\": {\"fixed_modifications\": null, \"variable_modifications\": null}, \"search_engines_options\": {\"engines\": [\"X!Tandem\", \"MSGF\"]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.10.1", + "type": "tool", + "uuid": "7ebb4019-93b4-4bf0-8fab-c4a786040001", + "workflow_outputs": [ + { + "label": "Search GUI on input dataset(s)", + "output_name": "searchgui_results", + "uuid": "7516674a-b5aa-45b5-b2e8-38c1889ad2e9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "errors": null, + "id": 4, + "input_connections": { + "searchgui_input": { + "id": 3, + "output_name": "searchgui_results" + } + }, + "inputs": [], + "label": null, + "name": "Peptide Shaker", + "outputs": [ + { + "name": "mzidentML", + "type": "mzid" + }, + { + "name": "output_psm", + "type": "tabular" + }, + { + "name": "output_peptides", + "type": "tabular" + }, + { + "name": "output_proteins", + "type": "tabular" + } + ], + "position": { + "bottom": 683, + "height": 382, + "left": 80.453125, + "right": 280.453125, + "top": 301, + "width": 200, + "x": 80.453125, + "y": 301 + }, + "post_job_actions": { + "HideDatasetActionoutput_peptides": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_peptides" + }, + "HideDatasetActionoutput_proteins": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_proteins" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "tool_shed_repository": { + "changeset_revision": "7fdd9119cc4f", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"contact_options\": {\"contact_options_selector\": \"no\", \"__current_case__\": 0}, \"exporting_options\": {\"mzidentml_conditional\": {\"mzidentml_creation\": \"true\", \"__current_case__\": 0, \"include_sequences\": \"false\"}, \"zip_conditional\": {\"zip_output_boolean\": \"false\", \"__current_case__\": 0, \"export_cps\": \"false\"}, \"output_reports\": [\"3\", \"6\", \"9\"]}, \"filtering_options\": {\"filtering_options_selector\": \"no\", \"__current_case__\": 0}, \"processing_options\": {\"processing_options_selector\": \"no\", \"__current_case__\": 0}, \"searchgui_input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.36.3", + "type": "tool", + "uuid": "56edf0bc-6512-4191-8c36-b02bea23df83", + "workflow_outputs": [ + { + "label": "Peptide Shaker on input dataset(s): mzidentML file", + "output_name": "mzidentML", + "uuid": "ddfe8d62-a7b7-4e30-a84d-91c92fc60bd0" + }, + { + "label": null, + "output_name": "output_psm", + "uuid": "5bd10721-63b1-4b4b-a4bb-12f13d576e48" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 5, + "input_connections": { + "tables_0|table": { + "id": 4, + "output_name": "output_psm" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "Query Tabular Select Peptides", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 349.109375, + "height": 182, + "left": 415.5, + "right": 615.5, + "top": 167.109375, + "width": 200, + "x": 415.5, + "y": 167.109375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"no\", \"__current_case__\": 1}, \"save_db\": \"false\", \"sqlquery\": \"SELECT distinct sequence \\nFROM psm \\nWHERE confidence >= 95 \\nORDER BY sequence\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"regex\", \"__current_case__\": 6, \"regex_pattern\": \"^\\\\d\", \"regex_action\": \"include_match\"}}]}, \"tbl_opts\": {\"table_name\": \"psm\", \"column_names_from_first_line\": \"false\", \"col_names\": \"id,,sequence,,,,,,,,,,,,,,,,,,,,confidence,validation\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "2e566329-0e53-4dac-a62b-d9acbe971e53", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4fc155b2-ff21-492f-9a9f-541989357012" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.3.0", + "errors": null, + "id": 6, + "input_connections": { + "peptide_src|input_tsv": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": "Unipept pept2prot", + "name": "Unipept", + "outputs": [ + { + "name": "output_tsv", + "type": "tabular" + } + ], + "position": { + "bottom": 214.46875, + "height": 152, + "left": 686.90625, + "right": 886.90625, + "top": 62.46875, + "width": 200, + "x": 686.90625, + "y": 62.46875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.3.0", + "tool_shed_repository": { + "changeset_revision": "9aaa46d45472", + "name": "unipept", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"peptide_src\": {\"fmt\": \"tabular\", \"__current_case__\": 1, \"input_tsv\": {\"__class__\": \"ConnectedValue\"}, \"column\": \"1\"}, \"selected_outputs\": \"tsv\", \"strict\": \"false\", \"unipept\": {\"api\": \"pept2prot\", \"__current_case__\": 2, \"equate_il\": \"true\", \"extra\": \"true\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3.0", + "type": "tool", + "uuid": "87abdf8e-c93e-4383-8e0e-79504d6a1c8f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_tsv", + "uuid": "0ee1d427-69d3-4cda-afd4-d86dbd654c5f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.3.0", + "errors": null, + "id": 7, + "input_connections": { + "peptide_src|input_tsv": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": "Unipept lca", + "name": "Unipept", + "outputs": [ + { + "name": "output_json", + "type": "d3_hierarchy" + }, + { + "name": "output_tsv", + "type": "tabular" + } + ], + "position": { + "bottom": 687.484375, + "height": 202, + "left": 670.96875, + "right": 870.96875, + "top": 485.484375, + "width": 200, + "x": 670.96875, + "y": 485.484375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.3.0", + "tool_shed_repository": { + "changeset_revision": "9aaa46d45472", + "name": "unipept", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"peptide_src\": {\"fmt\": \"tabular\", \"__current_case__\": 1, \"input_tsv\": {\"__class__\": \"ConnectedValue\"}, \"column\": \"1\"}, \"selected_outputs\": [\"tsv\", \"json\"], \"strict\": \"false\", \"unipept\": {\"api\": \"pept2lca\", \"__current_case__\": 0, \"equate_il\": \"true\", \"extra\": \"false\", \"names\": \"true\", \"allfields\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3.0", + "type": "tool", + "uuid": "ea4ed3b9-6907-4feb-a656-b16f4a657a3e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_json", + "uuid": "4d83f563-1cd9-4db0-8f22-8e32b499f040" + }, + { + "label": null, + "output_name": "output_tsv", + "uuid": "0d262aad-5472-41b4-8926-a5335dac8610" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 8, + "input_connections": { + "tables_0|table": { + "id": 2, + "output_name": "output" + }, + "tables_1|table": { + "id": 6, + "output_name": "output_tsv" + }, + "tables_2|table": { + "id": 6, + "output_name": "output_tsv" + }, + "tables_3|table": { + "id": 4, + "output_name": "output_psm" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "Go Pop2Prot DB", + "name": "Query Tabular", + "outputs": [ + { + "name": "sqlitedb", + "type": "sqlite" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 580.109375, + "height": 382, + "left": 902.5, + "right": 1102.5, + "top": 198.109375, + "width": 200, + "x": 902.5, + "y": 198.109375 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Peptides and PSMs" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"true\", \"sqlquery\": \"SELECT sequence as \\\"peptide\\\", count(id) as \\\"PSMs\\\"\\nFROM bering_psms\\nWHERE confidence >= 95\\nGROUP BY sequence\\nORDER BY sequence\\n\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}]}, \"tbl_opts\": {\"table_name\": \"go\", \"column_names_from_first_line\": \"false\", \"col_names\": \"aspect,go_id,description\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"aspect,go_id\"}]}}, {\"__index__\": 1, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}, {\"__index__\": 1, \"filter\": {\"filter_type\": \"prepend_line_num\", \"__current_case__\": 2}}]}, \"tbl_opts\": {\"table_name\": \"bering_prot\", \"column_names_from_first_line\": \"false\", \"col_names\": \"id,peptide,uniprot_id,taxon_id,taxon_name,ec_references,go_references,refseq_ids,refseq_protein_ids,insdc_ids,insdc_protein_ids\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"id,peptide\"}]}}, {\"__index__\": 2, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"skip\", \"__current_case__\": 0, \"skip_lines\": \"1\"}}, {\"__index__\": 1, \"filter\": {\"filter_type\": \"prepend_line_num\", \"__current_case__\": 2}}, {\"__index__\": 2, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1,7\"}}, {\"__index__\": 3, \"filter\": {\"filter_type\": \"normalize\", \"__current_case__\": 9, \"columns\": \"2\", \"separator\": \" \"}}]}, \"tbl_opts\": {\"table_name\": \"bering_prot_go\", \"column_names_from_first_line\": \"false\", \"col_names\": \"id,go_reference\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"go_reference,id\"}]}}, {\"__index__\": 3, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"regex\", \"__current_case__\": 6, \"regex_pattern\": \"^\\\\d\", \"regex_action\": \"include_match\"}}, {\"__index__\": 1, \"filter\": {\"filter_type\": \"select_columns\", \"__current_case__\": 7, \"columns\": \"1,3,23,24\"}}]}, \"tbl_opts\": {\"table_name\": \"bering_psms\", \"column_names_from_first_line\": \"false\", \"col_names\": \"id,sequence,confidence,validation\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": [{\"__index__\": 0, \"unique\": \"false\", \"index_columns\": \"sequence,id\"}]}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "9c62adb5-c8ad-4692-98d2-f3e6964ee408", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5aa6b89c-9d27-453e-b898-fde8f34196e2" + }, + { + "label": null, + "output_name": "sqlitedb", + "uuid": "1c5e9fbb-cf66-4369-a0ac-be3637359966" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 9, + "input_connections": { + "tables_0|table": { + "id": 4, + "output_name": "output_psm" + }, + "tables_1|table": { + "id": 7, + "output_name": "output_tsv" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": "Genera | PSMs | Peptides", + "name": "Query Tabular", + "outputs": [ + { + "name": "sqlitedb", + "type": "sqlite" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 911.109375, + "height": 282, + "left": 955.5, + "right": 1155.5, + "top": 629.109375, + "width": 200, + "x": 955.5, + "y": 629.109375 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Genera | PSMs | Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"true\", \"sqlquery\": \"SELECT lca.genus,count(psm.sequence) as \\\"PSMs\\\",count(distinct psm.sequence) as \\\"DISTINCT PEPTIDES\\\" \\nFROM psm LEFT JOIN lca ON psm.sequence = lca.peptide \\nWHERE confidence >= 95 \\nGROUP BY lca.genus \\nORDER BY PSMs desc, 'DISTINCT PEPTIDES' desc\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"regex\", \"__current_case__\": 6, \"regex_pattern\": \"^\\\\d\", \"regex_action\": \"include_match\"}}]}, \"tbl_opts\": {\"table_name\": \"psm\", \"column_names_from_first_line\": \"false\", \"col_names\": \",,sequence,,,,,,,,,,,,,,,,,,,,confidence,validation\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": []}}, {\"__index__\": 1, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"regex\", \"__current_case__\": 6, \"regex_pattern\": \"#peptide\", \"regex_action\": \"exclude_match\"}}]}, \"tbl_opts\": {\"table_name\": \"lca\", \"column_names_from_first_line\": \"false\", \"col_names\": \"peptide,,,,,,,,,,,,,,,,,,,,,genus\", \"load_named_columns\": \"true\", \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "70beb05c-8f4f-49d8-8d51-101a116e3084", + "workflow_outputs": [ + { + "label": null, + "output_name": "sqlitedb", + "uuid": "2679b146-1262-4a79-87e3-6eef09d2ac9b" + }, + { + "label": null, + "output_name": "output", + "uuid": "f9a3fa9f-6984-4e69-8d40-e60702ea2e66" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "errors": null, + "id": 10, + "input_connections": { + "sqlitedb": { + "id": 8, + "output_name": "sqlitedb" + } + }, + "inputs": [], + "label": "GO Terms: Biological Processes", + "name": "SQLite to tabular", + "outputs": [ + { + "name": "query_results", + "type": "tabular" + } + ], + "position": { + "bottom": 247.609375, + "height": 112, + "left": 1298, + "right": 1498, + "top": 135.609375, + "width": 200, + "x": 1298, + "y": 135.609375 + }, + "post_job_actions": { + "RenameDatasetActionquery_results": { + "action_arguments": { + "newname": "GO Terms: Biological Processes" + }, + "action_type": "RenameDatasetAction", + "output_name": "query_results" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "b722161a845a", + "name": "sqlite_to_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"sqlitedb\": {\"__class__\": \"ConnectedValue\"}, \"sqlquery\": \"SELECT go.description, \\ncount(distinct bering_psms.sequence) as \\\"bering_peptides\\\", count(distinct bering_psms.id) as \\\"bering_psms\\\" \\nFROM go JOIN bering_prot_go ON go.go_id = bering_prot_go.go_reference JOIN bering_prot on bering_prot_go.id = bering_prot.id JOIN bering_psms ON bering_prot.peptide = bering_psms.sequence\\nWHERE go.aspect = 'biological_process'\\nGROUP BY go.description\\nORDER BY bering_peptides desc,bering_psms desc\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "d189e68e-b1de-4f30-89a7-319810b7d536", + "workflow_outputs": [ + { + "label": null, + "output_name": "query_results", + "uuid": "baad84e0-4201-4275-923d-dd5a0956ecef" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "errors": null, + "id": 11, + "input_connections": { + "sqlitedb": { + "id": 8, + "output_name": "sqlitedb" + } + }, + "inputs": [], + "label": "GO Terms: Molecular Functions", + "name": "SQLite to tabular", + "outputs": [ + { + "name": "query_results", + "type": "tabular" + } + ], + "position": { + "bottom": 386.609375, + "height": 112, + "left": 1310, + "right": 1510, + "top": 274.609375, + "width": 200, + "x": 1310, + "y": 274.609375 + }, + "post_job_actions": { + "RenameDatasetActionquery_results": { + "action_arguments": { + "newname": "GO Terms: Molecular Functions" + }, + "action_type": "RenameDatasetAction", + "output_name": "query_results" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "b722161a845a", + "name": "sqlite_to_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"sqlitedb\": {\"__class__\": \"ConnectedValue\"}, \"sqlquery\": \"SELECT go.description, \\ncount(distinct bering_psms.sequence) as \\\"bering_peptides\\\", count(distinct bering_psms.id) as \\\"bering_psms\\\" \\nFROM go JOIN bering_prot_go ON go.go_id = bering_prot_go.go_reference JOIN bering_prot on bering_prot_go.id = bering_prot.id JOIN bering_psms ON bering_prot.peptide = bering_psms.sequence\\nWHERE go.aspect = 'molecular_function'\\nGROUP BY go.description\\nORDER BY bering_peptides desc,bering_psms desc\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "d2a2e7cb-26be-4db9-b275-e805116f1832", + "workflow_outputs": [ + { + "label": null, + "output_name": "query_results", + "uuid": "62313ee8-9c3b-4f3e-92ae-cc095a3313a7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "errors": null, + "id": 12, + "input_connections": { + "sqlitedb": { + "id": 8, + "output_name": "sqlitedb" + } + }, + "inputs": [], + "label": "GO Terms: Cellular Localization", + "name": "SQLite to tabular", + "outputs": [ + { + "name": "query_results", + "type": "tabular" + } + ], + "position": { + "bottom": 546.609375, + "height": 112, + "left": 1311, + "right": 1511, + "top": 434.609375, + "width": 200, + "x": 1311, + "y": 434.609375 + }, + "post_job_actions": { + "RenameDatasetActionquery_results": { + "action_arguments": { + "newname": "GO Terms: Cellular Localization" + }, + "action_type": "RenameDatasetAction", + "output_name": "query_results" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0", + "tool_shed_repository": { + "changeset_revision": "b722161a845a", + "name": "sqlite_to_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"sqlitedb\": {\"__class__\": \"ConnectedValue\"}, \"sqlquery\": \"SELECT go.description, \\ncount(distinct bering_psms.sequence) as \\\"bering_peptides\\\", count(distinct bering_psms.id) as \\\"bering_psms\\\" \\nFROM go JOIN bering_prot_go ON go.go_id = bering_prot_go.go_reference JOIN bering_prot on bering_prot_go.id = bering_prot.id JOIN bering_psms ON bering_prot.peptide = bering_psms.sequence\\nWHERE go.aspect = 'cellular_component'\\nGROUP BY go.description\\nORDER BY bering_peptides desc,bering_psms desc\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0", + "type": "tool", + "uuid": "0068d768-bedb-4222-8fa7-741dcc41ce84", + "workflow_outputs": [ + { + "label": null, + "output_name": "query_results", + "uuid": "191c2b4f-e525-451a-be37-4c24f0490d83" + } + ] + } + ], + "parent_id": "proteomics/metaproteomics", + "path": "topics/proteomics/tutorials/metaproteomics/workflows/workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Metaproteomics_GTN", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-metaproteomics/versions/workflow", + "tutorial_id": "metaproteomics", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaproteomics/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/metaproteomics/workflows/workflow.html", + "version": 7, + "wfid": "proteomics-metaproteomics", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.16.36.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/3.3.10.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/unipept/unipept/4.3.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/sqlite_to_tabular/sqlite_to_tabular/2.0.0" + ], + "workflowhub_id": "1159" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.839701" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "maxquant", + "owner": "galaxyp", + "revisions": "e42225f8a659", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msstatstmt", + "owner": "galaxyp", + "revisions": "a5e394b36d87", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: maxquant\n owner: galaxyp\n revisions: e42225f8a659\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msstatstmt\n owner: galaxyp\n revisions: a5e394b36d87\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-msstats-tmt/tutorial.json", + "contributors": [ + { + "id": "KlemensFroehlich", + "joined": "2021-08", + "name": "Klemens Fr\u00f6hlich", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/KlemensFroehlich/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/KlemensFroehlich.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "email": "matthias.fahrner@uniklinik-freiburg.de", + "id": "matthias313", + "joined": "2019-03", + "name": "Matthias Fahrner", + "orcid": "0000-0001-7955-2518", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/matthias313/", + "twitter": "mfahrner313", + "url": "https://training.galaxyproject.org/training-material/api/contributors/matthias313.json" + } + ], + "dir": "topics/proteomics/tutorials/maxquant-msstats-tmt", + "edam_operation": [ + "Visualisation", + "Imputation", + "Heat map generation", + "Standardisation and normalisation", + "Principal component plotting", + "Protein quantification", + "Clustering", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/maxquant-msstats-tmt", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "MaxQuant in combination with MSstatsTMT enables quantitative analysis of TMT data." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn how to use MaxQuant and MSstats for the analysis of TMT labelled shotgun (DDA) data", + "Learn how to create an experimental design template for fractionated data in MaxQuant", + "Learn how to create an annotation file for MSstatsTMT" + ], + "pageviews": 4621, + "pub_date": "2021-08-13", + "questions": [ + "How to analyze tandem-mass-tag (TMT) labelled shotgun (DDA) data analysis in MaxQuant and MSstats?", + "Which proteins are differentially abundant between KMT9\u03b1 knock-down and control cells?" + ], + "short_id": "T00220", + "short_tools": [ + "maxquant", + "msstatstmt" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "DDA", + "TMT" + ], + "time_estimation": "3H", + "title": "MaxQuant and MSstats for the analysis of TMT data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.17.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstatstmt/msstatstmt/2.0.0+galaxy0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "maxquant-msstats-tmt", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/maxquant-msstats-tmt/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-msstats-tmt/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-msstats-tmt/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 102, + "visitors": 3357, + "workflows": [ + { + "creators": [], + "description": "MaxQuant and MSstats for the analysis of TMT data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nExperimental design template\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMSstats annotation file\"]\n 3[label=\"MaxQuant\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"MSstatsTMT\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"evidence\"]\n 3 -> 4 [label=\"proteinGroups\"]\n}", + "history": [ + { + "hash": "8926310c66f250b5e34d1b68039572f5ec8024d9", + "message": "correcting workflow", + "num": 2, + "short_hash": "8926310c6", + "unix": "1628863550" + }, + { + "hash": "0d66511e27870d0346a8da4d1a84e697501d055d", + "message": "new maxquant msstats tmt training", + "num": 1, + "short_hash": "0d66511e2", + "unix": "1628863148" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 241.5500030517578, + "height": 82.55000305175781, + "left": 567, + "right": 767, + "top": 159, + "width": 200, + "x": 567, + "y": 159 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "75fdd4a0-50ea-4d89-833e-13119df2b7fe", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2f2012bd-d7fe-43be-86d8-4c6d233ae83d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Experimental design template" + } + ], + "label": "Experimental design template", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 393.5500030517578, + "height": 82.55000305175781, + "left": 571, + "right": 771, + "top": 311, + "width": 200, + "x": 571, + "y": 311 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1b701c96-82fe-441d-afcc-51e4f7a1b09a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1796d087-a179-4174-aec3-a89f45c9a367" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "MSstats annotation file" + } + ], + "label": "MSstats annotation file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 851.5500030517578, + "height": 82.55000305175781, + "left": 813, + "right": 1013, + "top": 769, + "width": 200, + "x": 813, + "y": 769 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "01633bc9-8d2d-4b03-9100-958febc2cbec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1ff0fa8b-cf25-420f-acda-ac8a2d18b29e" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nExperimental design template\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nMSstats annotation file\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"MaxQuant\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 4[\"MSstatsTMT\"];\n 2 -->|output| 4;\n 3 -->|evidence| 4;\n 3 -->|proteinGroups| 4;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "MaxQuant MSstatsTMT Training", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 241.5500030517578, + "height": 82.55000305175781, + "left": 567, + "right": 767, + "top": 159, + "width": 200, + "x": 567, + "y": 159 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "75fdd4a0-50ea-4d89-833e-13119df2b7fe", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2f2012bd-d7fe-43be-86d8-4c6d233ae83d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Experimental design template" + } + ], + "label": "Experimental design template", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 393.5500030517578, + "height": 82.55000305175781, + "left": 571, + "right": 771, + "top": 311, + "width": 200, + "x": 571, + "y": 311 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1b701c96-82fe-441d-afcc-51e4f7a1b09a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1796d087-a179-4174-aec3-a89f45c9a367" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "MSstats annotation file" + } + ], + "label": "MSstats annotation file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 851.5500030517578, + "height": 82.55000305175781, + "left": 813, + "right": 1013, + "top": 769, + "width": 200, + "x": 813, + "y": 769 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "01633bc9-8d2d-4b03-9100-958febc2cbec", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1ff0fa8b-cf25-420f-acda-ac8a2d18b29e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.17.0+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "input_opts|fasta_files": { + "id": 0, + "output_name": "output" + }, + "search_opts|template": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MaxQuant", + "outputs": [ + { + "name": "proteinGroups", + "type": "tabular" + }, + { + "name": "mqpar", + "type": "xml" + }, + { + "name": "evidence", + "type": "tabular" + }, + { + "name": "log", + "type": "txt" + }, + { + "name": "ptxqc_report", + "type": "pdf" + } + ], + "position": { + "bottom": 677.6666870117188, + "height": 459.66668701171875, + "left": 855, + "right": 1055, + "top": 218, + "width": 200, + "x": 855, + "y": 218 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.17.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "e42225f8a659", + "name": "maxquant", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"__workflow_invocation_uuid__\": \"8b08afb0ed1d11eb85dd001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_opts\": {\"ftype\": \".thermo.raw\", \"fasta_files\": {\"__class__\": \"ConnectedValue\"}, \"identifier_parse_rule\": \">([^\\\\s]*)\", \"description_parse_rule\": \">(.*)\"}, \"output_opts\": {\"dry_run\": \"false\", \"output\": [\"proteinGroups\", \"mqpar\", \"evidence\", \"log\"]}, \"paramGroups\": [{\"__index__\": 0, \"files\": null, \"maxMissedCleavages\": \"2\", \"fixedModifications\": [\"Carbamidomethyl (C)\"], \"variableModifications\": [\"Acetyl (Protein N-term)\", \"Oxidation (M)\"], \"enzymes\": [\"Trypsin/P\"], \"digestion_mode\": \"0\", \"quant_method\": {\"select_quant_method\": \"reporter_ion_ms2\", \"__current_case__\": 3, \"iso_labels\": {\"labeling\": \"tmt11plex\", \"__current_case__\": 4}, \"filter_by_pif\": {\"filter_pif\": \"false\", \"__current_case__\": 1}}}], \"protein_quant\": {\"peptides_for_quantification\": \"1\", \"only_unmod_prot\": {\"unmod_prot\": \"True\", \"__current_case__\": 0, \"mods_used_prot_quant\": [\"Acetyl (Protein N-term)\", \"Oxidation (M)\"], \"discard_unmod_cpart_peptides\": \"true\"}, \"lfq_opts\": {\"separateLfq\": \"false\", \"lfqStabilizeLargeRatios\": \"true\", \"lfqRequireMsms\": \"true\", \"do_ibaq\": {\"ibaq\": \"False\", \"__current_case__\": 1}, \"advancedSiteIntensities\": \"true\"}}, \"qc\": {\"do_it\": \"true\", \"__current_case__\": 0, \"parameters\": \"true\", \"summary\": \"true\", \"proteingroups\": \"true\", \"evidence\": \"true\", \"msms\": \"true\", \"msmsscans\": \"true\"}, \"search_opts\": {\"template\": {\"__class__\": \"ConnectedValue\"}, \"min_peptide_len\": \"7\", \"max_peptide_mass\": \"4600\", \"min_unique_pep\": \"0\", \"calc_peak_properties\": \"false\", \"mbr\": {\"match_between_runs\": \"False\", \"__current_case__\": 0}, \"incl_contaminants\": \"true\", \"decoy_mode\": \"revert\", \"psm_fdr\": \"0.01\", \"protein_fdr\": \"0.01\", \"min_pep_length\": \"8\", \"max_pep_length\": \"25\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6.17.0+galaxy2", + "type": "tool", + "uuid": "3027c4ed-81fa-4116-961e-7242cf99be29", + "workflow_outputs": [ + { + "label": null, + "output_name": "evidence", + "uuid": "16cb3dce-2b9e-47bc-99ee-84ddfa57847c" + }, + { + "label": null, + "output_name": "proteinGroups", + "uuid": "55166a25-0f2d-49dc-91d3-c815fbc12aa0" + }, + { + "label": null, + "output_name": "ptxqc_report", + "uuid": "fcde55d8-f460-4e1e-a49c-d896fab5cf91" + }, + { + "label": null, + "output_name": "log", + "uuid": "83760cea-4e21-42be-b1ae-05408528ed3e" + }, + { + "label": null, + "output_name": "mqpar", + "uuid": "3d492abd-7e61-41c3-8238-4f7532a535a7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msstatstmt/msstatstmt/2.0.0+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input|annotation": { + "id": 2, + "output_name": "output" + }, + "input|evidence": { + "id": 3, + "output_name": "evidence" + }, + "input|proteinGroups": { + "id": 3, + "output_name": "proteinGroups" + } + }, + "inputs": [], + "label": null, + "name": "MSstatsTMT", + "outputs": [ + { + "name": "out_qc_plot", + "type": "pdf" + }, + { + "name": "out_group_comp", + "type": "tabular" + }, + { + "name": "out_group_volcano_plot", + "type": "pdf" + }, + { + "name": "out_group_comp_plot", + "type": "pdf" + } + ], + "position": { + "bottom": 710.6666870117188, + "height": 449.66668701171875, + "left": 1234, + "right": 1434, + "top": 261, + "width": 200, + "x": 1234, + "y": 261 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msstatstmt/msstatstmt/2.0.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8375a0035d79", + "name": "msstatstmt", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"group\": {\"group_comparison\": \"true\", \"__current_case__\": 1, \"use_comp_matrix\": {\"select\": \"false\", \"__current_case__\": 0}, \"moderated\": \"false\", \"adj_method\": \"BH\", \"remove_norm_channel\": \"true\", \"remove_empty_channel\": \"true\", \"selected_group_outputs\": [\"comparison_result\", \"VolcanoPlot\", \"ComparisonPlot\"], \"comparison_plots_opt\": {\"sig\": \"0.05\", \"FCcutoff\": null, \"logBase_pvalue\": \"10\", \"ylimUp\": null, \"ylimDown\": null, \"xlimUp\": null, \"axis_size\": \"10\", \"x_axis_size\": \"10\", \"y_axis_size\": \"10\", \"dot_size\": \"3\", \"text_size\": \"4\", \"text_angle\": \"90\", \"legend_size\": \"7\", \"ProteinName\": \"false\", \"colorkey\": \"true\", \"numProtein\": \"100\", \"clustering\": \"protein\", \"width\": \"8\", \"height\": \"5\", \"which_Protein\": {\"select\": \"all\", \"__current_case__\": 0}, \"which_Comparison\": {\"select\": \"all\", \"__current_case__\": 0}}}, \"input\": {\"input_src\": \"MaxQuant\", \"__current_case__\": 1, \"evidence\": {\"__class__\": \"ConnectedValue\"}, \"proteinGroups\": {\"__class__\": \"ConnectedValue\"}, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"proteinID\": \"Proteins\", \"input_options\": {\"rmProt_Onlyidentifiedbysite\": \"false\", \"useUniquePeptide\": \"true\", \"rmPSM_withMissing_withinRun\": \"false\", \"rmPSM_withfewMea_withinRun\": \"true\", \"rmProtein_with1Feature\": \"false\", \"summaryforMultipleRows\": \"sum\"}}, \"out_plots_opt\": {\"which_Protein\": {\"select\": \"all\", \"__current_case__\": 0}, \"width\": \"10\", \"height\": \"10\", \"adv\": {\"ylimUp\": \"false\", \"ylimDown\": \"false\", \"x_axis_size\": \"10\", \"y_axis_size\": \"10\", \"text_size\": \"4\", \"text_angle\": \"90\", \"legend_size\": \"7\", \"dot_size_profile\": \"2\", \"ncol_guide\": \"5\", \"originalPlot\": \"true\", \"summaryPlot\": \"true\"}}, \"proteinSummarization\": {\"method\": \"msstats\", \"global_norm\": \"true\", \"reference_norm\": \"true\", \"remove_norm_channel\": \"true\", \"remove_empty_channel\": \"true\", \"MBimpute\": \"true\", \"maxQuantileforCensored\": null}, \"selected_outputs\": [\"QCPlot\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.0+galaxy0", + "type": "tool", + "uuid": "b73daf20-e3e4-4a1d-bfd9-8597e5679cbb", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_group_comp_plot", + "uuid": "64c98726-4129-45b4-85e5-b8417982fff7" + }, + { + "label": null, + "output_name": "out_group_volcano_plot", + "uuid": "d3e07901-b18b-4727-80b8-086cdce12f9b" + }, + { + "label": null, + "output_name": "out_group_comp", + "uuid": "f387d202-696e-435a-adee-9c0f18e72538" + }, + { + "label": null, + "output_name": "out_qc_plot", + "uuid": "6b598ae7-595d-44bf-b677-a83a41724329" + } + ] + } + ], + "parent_id": "proteomics/maxquant-msstats-tmt", + "path": "topics/proteomics/tutorials/maxquant-msstats-tmt/workflows/main_workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "MaxQuant MSstatsTMT Training", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-maxquant-msstats-tmt/versions/main-workflow", + "tutorial_id": "maxquant-msstats-tmt", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-msstats-tmt/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-msstats-tmt/workflows/main_workflow.html", + "version": 1, + "wfid": "proteomics-maxquant-msstats-tmt", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.17.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstatstmt/msstatstmt/2.0.0+galaxy0" + ], + "workflowhub_id": "1227" + } + ], + "zenodo_link": "https://zenodo.org/record/5195800" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "proteore_clusterprofiler", + "owner": "proteore", + "revisions": "2f67202ffdb3", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_expression_rnaseq_abbased", + "owner": "proteore", + "revisions": "dbeabf9bf091", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_filter_keywords_values", + "owner": "proteore", + "revisions": "b4641c0f8a82", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_id_converter", + "owner": "proteore", + "revisions": "1e45ea50f145", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_reactome", + "owner": "proteore", + "revisions": "9cc475dcd0f2", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_reactome", + "owner": "proteore", + "revisions": "6c95f1b88627", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_tissue_specific_expression_data", + "owner": "proteore", + "revisions": "3e65e0249976", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "proteore_venn_diagram", + "owner": "proteore", + "revisions": "98b7912a9ceb", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: proteore_clusterprofiler\n owner: proteore\n revisions: 2f67202ffdb3\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_expression_rnaseq_abbased\n owner: proteore\n revisions: dbeabf9bf091\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_filter_keywords_values\n owner: proteore\n revisions: b4641c0f8a82\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_id_converter\n owner: proteore\n revisions: 1e45ea50f145\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_reactome\n owner: proteore\n revisions: 9cc475dcd0f2\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_reactome\n owner: proteore\n revisions: 6c95f1b88627\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_tissue_specific_expression_data\n owner: proteore\n revisions: 3e65e0249976\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: proteore_venn_diagram\n owner: proteore\n revisions: 98b7912a9ceb\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteome_annotation/tutorial.json", + "contributors": [ + { + "id": "vloux", + "joined": "2019-04", + "name": "Valentin Loux", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/vloux/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/vloux.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "florence.combes@cea.fr", + "id": "combesf", + "joined": "2019-04", + "name": "Florence Combes", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/combesf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/combesf.json" + }, + { + "id": "davidchristiany", + "joined": "2019-04", + "name": "David Christiany", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/davidchristiany/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/davidchristiany.json" + }, + { + "id": "yvandenb", + "joined": "2019-04", + "name": "Yves Vandenbrouck", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvandenb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvandenb.json" + } + ], + "dir": "topics/proteomics/tutorials/proteome_annotation", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/proteome_annotation", + "inexact_supported_servers": [ + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The Human Protein Atlas is a valuable resource for annotation and exploration of protein data", + "Conversion between different gene identifiers is sometimes required", + "The Reactome pathway database can be used to browse biological pathways" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Execute a complete annotation pipeline of a protein list identified by LC-MS/MS experiments" + ], + "pageviews": 3633, + "pub_date": "2019-09-12", + "questions": [ + "How to filter out technical contaminants?", + "How to check for tissue-specificity?", + "How to perform enrichment analysis?", + "How to map your protein list to pathways (Reactome)?", + "How to compare your proteome with other studies?" + ], + "recordings": [ + { + "captioners": [ + "combesf" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "yvesvdb" + ], + "youtube_id": "qG7GZc6BeGY" + } + ], + "short_id": "T00234", + "short_tools": [ + "IDconverter", + "MQoutputfilter", + "reactome_analysis", + "retrieve_from_hpa", + "rna_abbased_data", + "cluter_profiler", + "Jvenn" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "post-process", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "DDA", + "human" + ], + "time_estimation": "1H", + "title": "Annotating a protein list identified by LC-MS/MS experiments", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_clusterprofiler/cluter_profiler/2019.02.18", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_expression_rnaseq_abbased/rna_abbased_data/2019.03.07", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_filter_keywords_values/MQoutputfilter/2019.03.11", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_id_converter/IDconverter/2019.03.07", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_reactome/reactome_analysis/2018.12.12", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_reactome/reactome_analysis/2019.03.05", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_tissue_specific_expression_data/retrieve_from_hpa/2019.02.27", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_venn_diagram/Jvenn/2019.02.21" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "proteome_annotation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/proteome_annotation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteome_annotation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/proteome_annotation/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 175, + "visitors": 2408, + "workflows": [ + { + "creators": [], + "description": "Annotating a protein list identified by LC-MS/MS experiments", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[label=\"Build tissue-specific expression dataset\"]\n 4[label=\"Filter by keywords and/or numerical value\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"ID Converter\"]\n 3 -> 5 [label=\"output\"]\n 6[label=\"ID Converter\"]\n 4 -> 6 [label=\"kept_lines\"]\n 7[label=\"Venn diagram\"]\n 4 -> 7 [label=\"kept_lines\"]\n 0 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Add expression data\"]\n 6 -> 8 [label=\"output\"]\n 9[label=\"Filter by keywords and/or numerical value\"]\n 8 -> 9 [label=\"output\"]\n 10[label=\"GO terms classification and enrichment analysis\"]\n 5 -> 10 [label=\"output\"]\n 9 -> 10 [label=\"kept_lines\"]\n 11[label=\"Query pathway database\"]\n 9 -> 11 [label=\"kept_lines\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "a959d88d0da58e17d87c7a39b0d89e03765629df", + "message": "workflow update by Flo", + "num": 1, + "short_hash": "a959d88d0", + "unix": "1560843795" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Bredberg.txt" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Bredberg.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "98762c87-4a74-4e99-a0a8-b61360e4e123", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Lacombe_et_al_2017_OK.txt" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Lacombe_et_al_2017_OK.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "90836b07-3f58-40a5-914b-1f9036993489", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mucilli.txt" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mucilli.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "30b559f3-322c-4323-ae32-b6e6d6c9d210", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Build tissue-specific expression dataset\"];\n 4[\"Filter by keywords and/or numerical value\"];\n 1 -->|output| 4;\n 5[\"ID Converter\"];\n 3 -->|output| 5;\n 6[\"ID Converter\"];\n 4 -->|kept_lines| 6;\n 7[\"Venn diagram\"];\n 4 -->|kept_lines| 7;\n 0 -->|output| 7;\n 2 -->|output| 7;\n 8[\"Add expression data\"];\n 6 -->|output| 8;\n 9[\"Filter by keywords and/or numerical value\"];\n 8 -->|output| 9;\n 10[\"GO terms classification and enrichment analysis\"];\n 5 -->|output| 10;\n 9 -->|kept_lines| 10;\n 11[\"Query pathway database\"];\n 9 -->|kept_lines| 11;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "'Proteome Annotation'", + "outputs": [], + "parent_id": "proteomics/proteome_annotation", + "path": "topics/proteomics/tutorials/proteome_annotation/workflows/Galaxy-Workflow-_Proteome_annotation_.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "'Proteome Annotation'", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteome_annotation/versions/galaxy-workflow--proteome-annotation-", + "tutorial_id": "proteome_annotation", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteome_annotation/workflows/Galaxy-Workflow-_Proteome_annotation_.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteome_annotation/workflows/Galaxy-Workflow-_Proteome_annotation_.html", + "version": 3, + "wfid": "proteomics-proteome_annotation", + "wfname": "galaxy-workflow--proteome-annotation-", + "workflow": "Galaxy-Workflow-_Proteome_annotation_.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_clusterprofiler/cluter_profiler/2019.02.18", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_expression_rnaseq_abbased/rna_abbased_data/2019.03.07", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_filter_keywords_values/MQoutputfilter/2019.03.11", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_id_converter/IDconverter/2019.03.07", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_reactome/reactome_analysis/2019.03.05", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_tissue_specific_expression_data/retrieve_from_hpa/2019.02.27", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_venn_diagram/Jvenn/2019.02.21" + ], + "workflowhub_id": "1207" + }, + { + "creators": [], + "description": "Annotating a protein list identified by LC-MS/MS experiments", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nLacombe_et_al_2017.txt\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBredberg.txt\"]\n 10[label=\"View proteins on Reactome maps\"]\n 9 -> 10 [label=\"kept_lines\"]\n 11[label=\"GO terms classification and enrichment analysis\"]\n 5 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"kept_lines\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMucilli.txt\"]\n 3[label=\"Build a lung proteome as a background \"]\n 4[label=\"Filter technical contaminants\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"ID Converter\"]\n 3 -> 5 [label=\"output\"]\n 6[label=\"ID mapping UniProt <-> ENSG ID\"]\n 4 -> 6 [label=\"kept_lines\"]\n 7[label=\"MS/MS datasets comparison\"]\n 4 -> 7 [label=\"kept_lines\"]\n 1 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Add expression data\"]\n 6 -> 8 [label=\"output\"]\n 9[label=\"Filter biological contaminants\"]\n 8 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "a853f1694294a719690d1818388c4358460d12b1", + "message": "First draft of proteome annotation tutorial", + "num": 1, + "short_hash": "a853f1694", + "unix": "1556281728" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Lacombe_et_al_2017.txt" + } + ], + "label": "Lacombe_et_al_2017.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 284, + "top": 272 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Lacombe_et_al_2017.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "6e05c374-5a8c-45cc-bc41-060403961b92", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Bredberg.txt" + } + ], + "label": "Bredberg.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 511, + "top": 454 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Bredberg.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "c59cd601-5021-4665-a225-5881a856d796", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mucilli.txt" + } + ], + "label": "Mucilli.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 512, + "top": 532 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mucilli.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "aa14863c-2183-4e0e-be4a-3c34972ae040", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nLacombe_et_al_2017.txt\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nBredberg.txt\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"View proteins on Reactome maps\"];\n 9 -->|kept_lines| 10;\n 11[\"GO terms classification and enrichment analysis\"];\n 5 -->|output| 11;\n 9 -->|kept_lines| 11;\n 2[\"\u2139\ufe0f Input Dataset\\nMucilli.txt\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Build a lung proteome as a background \"];\n 4[\"Filter technical contaminants\"];\n 0 -->|output| 4;\n 5[\"ID Converter\"];\n 3 -->|output| 5;\n 6[\"ID mapping UniProt <-> ENSG ID\"];\n 4 -->|kept_lines| 6;\n 7[\"MS/MS datasets comparison\"];\n 4 -->|kept_lines| 7;\n 1 -->|output| 7;\n 2 -->|output| 7;\n 8[\"Add expression data\"];\n 6 -->|output| 8;\n 9[\"Filter biological contaminants\"];\n 8 -->|output| 9;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "ProteoRE ProteomeAnnotation Tutorial (release 2.0)", + "outputs": [], + "parent_id": "proteomics/proteome_annotation", + "path": "topics/proteomics/tutorials/proteome_annotation/workflows/main_workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "ProteoRE ProteomeAnnotation Tutorial (release 2.0)", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-proteome_annotation/versions/main-workflow", + "tutorial_id": "proteome_annotation", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteome_annotation/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/proteome_annotation/workflows/main_workflow.html", + "version": 4, + "wfid": "proteomics-proteome_annotation", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_clusterprofiler/cluter_profiler/2019.02.18", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_expression_rnaseq_abbased/rna_abbased_data/2019.03.07", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_filter_keywords_values/MQoutputfilter/2019.03.11", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_id_converter/IDconverter/2019.03.07", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_reactome/reactome_analysis/2018.12.12", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_tissue_specific_expression_data/retrieve_from_hpa/2019.02.27", + "toolshed.g2.bx.psu.edu/repos/proteore/proteore_venn_diagram/Jvenn/2019.02.21" + ], + "workflowhub_id": "1209" + } + ], + "zenodo_link": "https://zenodo.org/record/3405119" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "uniprot_rest_interface", + "owner": "bgruening", + "revisions": "054483e27a35", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_to_tabular", + "owner": "devteam", + "revisions": "e7ed3c310b74", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maxquant", + "owner": "galaxyp", + "revisions": "37d669de2828", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maxquant", + "owner": "galaxyp", + "revisions": "f522c08e900c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msstats", + "owner": "galaxyp", + "revisions": "593839e1f2c3", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msstats", + "owner": "galaxyp", + "revisions": "28434abe6c5c", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_heatmap2", + "owner": "iuc", + "revisions": "ca7cb0eaad62", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: uniprot_rest_interface\n owner: bgruening\n revisions: '054483e27a35'\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_to_tabular\n owner: devteam\n revisions: e7ed3c310b74\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maxquant\n owner: galaxyp\n revisions: 37d669de2828\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maxquant\n owner: galaxyp\n revisions: f522c08e900c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msstats\n owner: galaxyp\n revisions: 593839e1f2c3\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msstats\n owner: galaxyp\n revisions: 28434abe6c5c\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_heatmap2\n owner: iuc\n revisions: ca7cb0eaad62\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-msstats-dda-lfq/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "email": "matthias.fahrner@uniklinik-freiburg.de", + "id": "matthias313", + "joined": "2019-03", + "name": "Matthias Fahrner", + "orcid": "0000-0001-7955-2518", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/matthias313/", + "twitter": "mfahrner313", + "url": "https://training.galaxyproject.org/training-material/api/contributors/matthias313.json" + } + ], + "dir": "topics/proteomics/tutorials/maxquant-msstats-dda-lfq", + "edam_operation": [ + "Visualisation", + "Imputation", + "Heat map generation", + "Tag-based peptide identification", + "Standardisation and normalisation", + "Principal component plotting", + "Differential protein expression profiling", + "Protein quantification", + "Spectrum calculation", + "Clustering", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/maxquant-msstats-dda-lfq", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "MaxQuant offers a single tool solution for protein identification and quantification.", + "Label-free quantitation reveals the most abundant proteins in serum samples." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn how to use MaxQuant and MSstats for the analysis of label-free shotgun (DDA) data" + ], + "pageviews": 10460, + "pub_date": "2021-02-17", + "questions": [ + "How to perform label-free shotgun (DDA) data analysis in MaxQuant and MSstats?", + "Which proteins are differentially abundant in the two types of cutaneous squamous cell carcinomas?" + ], + "recordings": [ + { + "captioners": [ + "foellmelanie" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H", + "speakers": [ + "foellmelanie" + ], + "youtube_id": "IXdLAt2PAT4" + } + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "maxquant-label-free" + ], + "type": "internal" + } + ], + "short_id": "T00219", + "short_tools": [ + "Grep1", + "msstats", + "datamash_ops", + "maxquant", + "uniprot", + "ggplot2_heatmap2", + "tp_easyjoin_tool", + "tp_replace_in_column", + "Cut1", + "Filter1", + "fasta2tab", + "Summary_Statistics1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "label-free" + ], + "time_estimation": "2H", + "title": "MaxQuant and MSstats for the analysis of label-free data", + "tools": [ + "Cut1", + "Filter1", + "Grep1", + "Summary_Statistics1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot/0.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.22.0.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/4.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/datamash_ops/1.0.6", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.0.1" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "maxquant-msstats-dda-lfq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/maxquant-msstats-dda-lfq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-msstats-dda-lfq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-msstats-dda-lfq/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 162, + "visitors": 6154, + "workflows": [ + { + "creators": [], + "description": "MaxQuant and MSstats for the analysis of label-free data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nannotation file\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncomparison matrix\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nfasta protein database\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nraw files\"]\n 4[label=\"MaxQuant\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"Select\"]\n 4 -> 5 [label=\"proteinGroups\"]\n 6[label=\"Select\"]\n 4 -> 6 [label=\"evidence\"]\n 7[label=\"Replace Text\"]\n 5 -> 7 [label=\"out_file1\"]\n 8[label=\"Replace Text\"]\n 6 -> 8 [label=\"out_file1\"]\n 9[label=\"MSstats\"]\n 1 -> 9 [label=\"output\"]\n 0 -> 9 [label=\"output\"]\n 8 -> 9 [label=\"outfile\"]\n 7 -> 9 [label=\"outfile\"]\n 10[label=\"Datamash\"]\n 9 -> 10 [label=\"runlevel_data\"]\n 11[label=\"Summary Statistics\"]\n 9 -> 11 [label=\"runlevel_data\"]\n 12[label=\"Replace Text\"]\n 9 -> 12 [label=\"comparison_result\"]\n 13[label=\"Replace Text\"]\n 9 -> 13 [label=\"quant_sample_matrix\"]\n 14[label=\"Filter\"]\n 12 -> 14 [label=\"outfile\"]\n 15[label=\"Filter\"]\n 14 -> 15 [label=\"out_file1\"]\n 16[label=\"Filter\"]\n 14 -> 16 [label=\"out_file1\"]\n 17[label=\"Filter\"]\n 15 -> 17 [label=\"out_file1\"]\n 18[label=\"Filter\"]\n 16 -> 18 [label=\"out_file1\"]\n 19[label=\"Cut\"]\n 17 -> 19 [label=\"out_file1\"]\n 20[label=\"Cut\"]\n 18 -> 20 [label=\"out_file1\"]\n 21[label=\"Join\"]\n 13 -> 21 [label=\"outfile\"]\n 19 -> 21 [label=\"out_file1\"]\n 22[label=\"Join\"]\n 13 -> 22 [label=\"outfile\"]\n 20 -> 22 [label=\"out_file1\"]\n 23[label=\"heatmap2\"]\n 21 -> 23 [label=\"output\"]\n 24[label=\"UniProt\"]\n 21 -> 24 [label=\"output\"]\n 25[label=\"heatmap2\"]\n 22 -> 25 [label=\"output\"]\n 26[label=\"UniProt\"]\n 22 -> 26 [label=\"output\"]\n 27[label=\"FASTA-to-Tabular\"]\n 24 -> 27 [label=\"outfile_retrieve_fasta\"]\n 28[label=\"FASTA-to-Tabular\"]\n 26 -> 28 [label=\"outfile_retrieve_fasta\"]\n}", + "history": [ + { + "hash": "e1daddc515c5b61f6c9170e1415a3ea9a43ea096", + "message": "fixing broken boxes, adjusting results for actual set MSstats parameters", + "num": 3, + "short_hash": "e1daddc51", + "unix": "1622784375" + }, + { + "hash": "0463f30a6b57a55c89db3bffafeef808eb170a51", + "message": "changed Maxquant parameters and removed middle part of training", + "num": 2, + "short_hash": "0463f30a6", + "unix": "1622722954" + }, + { + "hash": "ae8154eef553947defbdf59c7ae4460dffbb33d9", + "message": "Adding new maxquant msstats tutorial", + "num": 1, + "short_hash": "ae8154eef", + "unix": "1613563165" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "annotation file" + } + ], + "label": "annotation file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 315.78334045410156, + "height": 81.95001220703125, + "left": -341.33331298828125, + "right": -141.33331298828125, + "top": 233.8333282470703, + "width": 200, + "x": -341.33331298828125, + "y": 233.8333282470703 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1884c487-3263-45f5-a735-61c3a466b830", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "comparison matrix" + } + ], + "label": "comparison matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 491.7833251953125, + "height": 81.95001220703125, + "left": -341.33331298828125, + "right": -141.33331298828125, + "top": 409.83331298828125, + "width": 200, + "x": -341.33331298828125, + "y": 409.83331298828125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ba82de42-628d-44c4-9795-33d8924a37b1", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "fasta protein database" + } + ], + "label": "fasta protein database", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 633.7833251953125, + "height": 81.95001220703125, + "left": -264.48333740234375, + "right": -64.48333740234375, + "top": 551.8333129882812, + "width": 200, + "x": -264.48333740234375, + "y": 551.8333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "740e4036-bc46-44cc-b270-1b3962760293", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw files" + } + ], + "label": "raw files", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 737.3833160400391, + "height": 61.55000305175781, + "left": -273.816650390625, + "right": -73.816650390625, + "top": 675.8333129882812, + "width": 200, + "x": -273.816650390625, + "y": 675.8333129882812 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "20726c07-2b97-4f61-8ece-02d09df86a21", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nannotation file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ncomparison matrix\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nfasta protein database\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Collection\\nraw files\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"MaxQuant\"];\n 2 -->|output| 4;\n 3 -->|output| 4;\n 5[\"Select\"];\n 4 -->|proteinGroups| 5;\n 6[\"Select\"];\n 4 -->|evidence| 6;\n 7[\"Replace Text\"];\n 5 -->|out_file1| 7;\n 8[\"Replace Text\"];\n 6 -->|out_file1| 8;\n 9[\"MSstats\"];\n 1 -->|output| 9;\n 0 -->|output| 9;\n 8 -->|outfile| 9;\n 7 -->|outfile| 9;\n 10[\"Datamash\"];\n 9 -->|runlevel_data| 10;\n 11[\"Summary Statistics\"];\n 9 -->|runlevel_data| 11;\n 12[\"Replace Text\"];\n 9 -->|comparison_result| 12;\n 13[\"Replace Text\"];\n 9 -->|quant_sample_matrix| 13;\n 14[\"Filter\"];\n 12 -->|outfile| 14;\n 15[\"Filter\"];\n 14 -->|out_file1| 15;\n 16[\"Filter\"];\n 14 -->|out_file1| 16;\n 17[\"Filter\"];\n 15 -->|out_file1| 17;\n 18[\"Filter\"];\n 16 -->|out_file1| 18;\n 19[\"Cut\"];\n 17 -->|out_file1| 19;\n 20[\"Cut\"];\n 18 -->|out_file1| 20;\n 21[\"Join\"];\n 13 -->|outfile| 21;\n 19 -->|out_file1| 21;\n 22[\"Join\"];\n 13 -->|outfile| 22;\n 20 -->|out_file1| 22;\n 23[\"heatmap2\"];\n 21 -->|output| 23;\n 24[\"UniProt\"];\n 21 -->|output| 24;\n 25[\"heatmap2\"];\n 22 -->|output| 25;\n 26[\"UniProt\"];\n 22 -->|output| 26;\n 27[\"FASTA-to-Tabular\"];\n 24 -->|outfile_retrieve_fasta| 27;\n 28[\"FASTA-to-Tabular\"];\n 26 -->|outfile_retrieve_fasta| 28;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Proteomics: MaxQuant and MSstats LFQ workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy4", + "errors": null, + "id": 4, + "input_connections": { + "input_opts|fasta_files": { + "id": 2, + "output_name": "output" + }, + "paramGroups_0|files": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MaxQuant", + "outputs": [ + { + "name": "proteinGroups", + "type": "tabular" + }, + { + "name": "evidence", + "type": "tabular" + }, + { + "name": "ptxqc_report", + "type": "pdf" + } + ], + "position": { + "bottom": 825.7666625976562, + "height": 357.26666259765625, + "left": 61.33332824707031, + "right": 261.3333282470703, + "top": 468.5, + "width": 200, + "x": 61.33332824707031, + "y": 468.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy4", + "tool_shed_repository": { + "changeset_revision": "f522c08e900c", + "name": "maxquant", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"__workflow_invocation_uuid__\": \"a5b196c8c2c611eb9ee3001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_opts\": {\"ftype\": \".thermo.raw\", \"fasta_files\": {\"__class__\": \"ConnectedValue\"}, \"identifier_parse_rule\": \">([^\\\\s]*)\", \"description_parse_rule\": \">(.*)\"}, \"output_opts\": {\"dry_run\": \"false\", \"output\": [\"proteinGroups\", \"evidence\"]}, \"paramGroups\": [{\"__index__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}, \"maxMissedCleavages\": \"2\", \"fixedModifications\": [\"Carbamidomethyl (C)\"], \"variableModifications\": [\"Acetyl (Protein N-term)\", \"Oxidation (M)\"], \"enzymes\": [\"Trypsin/P\"], \"digestion_mode\": \"0\", \"quant_method\": {\"select_quant_method\": \"lfq\", \"__current_case__\": 2, \"lfqMinRatioCount\": \"2\", \"lfqMinEdgesPerNode\": \"3\", \"lfqAvEdgesPerNode\": \"6\", \"lfqSkipNorm\": \"true\"}}], \"protein_quant\": {\"peptides_for_quantification\": \"1\", \"only_unmod_prot\": {\"unmod_prot\": \"True\", \"__current_case__\": 0, \"mods_used_prot_quant\": [\"Acetyl (Protein N-term)\", \"Oxidation (M)\"], \"discard_unmod_cpart_peptides\": \"true\"}, \"lfq_opts\": {\"separateLfq\": \"false\", \"lfqStabilizeLargeRatios\": \"true\", \"lfqRequireMsms\": \"true\", \"do_ibaq\": {\"ibaq\": \"False\", \"__current_case__\": 1}, \"advancedSiteIntensities\": \"true\"}}, \"qc\": {\"do_it\": \"true\", \"__current_case__\": 0, \"parameters\": \"true\", \"summary\": \"true\", \"proteingroups\": \"true\", \"evidence\": \"true\", \"msms\": \"true\", \"msmsscans\": \"true\"}, \"search_opts\": {\"template\": null, \"min_peptide_len\": \"7\", \"max_peptide_mass\": \"4600\", \"min_unique_pep\": \"1\", \"calc_peak_properties\": \"false\", \"mbr\": {\"match_between_runs\": \"True\", \"__current_case__\": 1, \"matching_time_window\": \"0.7\", \"matching_ion_mobility_window\": \"0.05\", \"alignment_time_window\": \"20\", \"alignment_ion_mobility_window\": \"1\", \"match_unidentified_features\": \"false\"}, \"incl_contaminants\": \"true\", \"decoy_mode\": \"revert\", \"psm_fdr\": \"0.01\", \"protein_fdr\": \"0.01\", \"min_pep_length\": \"8\", \"max_pep_length\": \"25\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6.10.43+galaxy4", + "type": "tool", + "uuid": "8eb1e949-4cfc-402e-971a-1ab02dd124db", + "workflow_outputs": [ + { + "label": null, + "output_name": "ptxqc_report", + "uuid": "934770a0-48e9-4901-b9a5-8c9dd97f6ef1" + }, + { + "label": null, + "output_name": "proteinGroups", + "uuid": "f6a17442-5d9b-4972-9b94-2ff2f55c02ff" + }, + { + "label": null, + "output_name": "evidence", + "uuid": "51525532-28c7-4e01-951f-8886fc19dedf" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "proteinGroups" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 268.03334045410156, + "height": 92.86666870117188, + "left": 76, + "right": 276, + "top": 175.1666717529297, + "width": 200, + "x": 76, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"(HUMAN)|(Majority)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "955e509e-f02c-4b30-ac4f-b2dd66a23468", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "e36fbdbe-c076-4efd-b792-1c6e3f190b14" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 4, + "output_name": "evidence" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 388.0333557128906, + "height": 92.86666870117188, + "left": 76, + "right": 276, + "top": 295.16668701171875, + "width": 200, + "x": 76, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"(HUMAN)|(Sequence)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "5e5ab4af-2096-4cd6-a93d-adec152e4bdd", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "d5069d61-91f6-4580-9574-a80962e19a43" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 268.03334045410156, + "height": 92.86666870117188, + "left": 296, + "right": 496, + "top": 175.1666717529297, + "width": 200, + "x": 296, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"column\": \"118\", \"find_pattern\": \"+\", \"replace_pattern\": \"\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3", + "type": "tool", + "uuid": "fdeab669-5c90-4169-9b10-969ed89bbdc7", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "0e37dd18-2246-456e-b03b-9da9f7b11ebd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "errors": null, + "id": 8, + "input_connections": { + "infile": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 388.0333557128906, + "height": 92.86666870117188, + "left": 296, + "right": 496, + "top": 295.16668701171875, + "width": 200, + "x": 296, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"column\": \"54\", \"find_pattern\": \"+\", \"replace_pattern\": \"\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3", + "type": "tool", + "uuid": "3e0d0a18-3cfb-4c90-a9e2-9fdc3af29786", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "00a0fa1a-91e7-4034-9484-cb788ccf6b16" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.22.0.1", + "errors": null, + "id": 9, + "input_connections": { + "group|comparison_matrix": { + "id": 1, + "output_name": "output" + }, + "input|annotation": { + "id": 0, + "output_name": "output" + }, + "input|evidence": { + "id": 8, + "output_name": "outfile" + }, + "input|proteinGroups": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MSstats", + "name": "group" + }, + { + "description": "runtime parameter for tool MSstats", + "name": "input" + }, + { + "description": "runtime parameter for tool MSstats", + "name": "input" + }, + { + "description": "runtime parameter for tool MSstats", + "name": "input" + } + ], + "label": null, + "name": "MSstats", + "outputs": [ + { + "name": "log", + "type": "txt" + }, + { + "name": "processed_data", + "type": "tabular" + }, + { + "name": "runlevel_data", + "type": "tabular" + }, + { + "name": "QCPlot", + "type": "pdf" + }, + { + "name": "quant_sample_matrix", + "type": "tabular" + }, + { + "name": "quant_group_matrix", + "type": "tabular" + }, + { + "name": "comparison_result", + "type": "tabular" + }, + { + "name": "VolcanoPlot", + "type": "pdf" + } + ], + "position": { + "bottom": 918.8332977294922, + "height": 743.6666259765625, + "left": 516, + "right": 716, + "top": 175.1666717529297, + "width": 200, + "x": 516, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.22.0.1", + "tool_shed_repository": { + "changeset_revision": "593839e1f2c3", + "name": "msstats", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dp_options\": {\"selected_outputs\": [\"log\", \"processed_data\", \"runlevel_data\", \"quant_sample_matrix\", \"quant_group_matrix\"], \"logTrans\": \"2\", \"norm\": {\"normalization\": \"equalizeMedians\", \"__current_case__\": 0}, \"fillIncompleteRows\": \"true\", \"features\": {\"featureSubset\": \"all\", \"__current_case__\": 0}, \"summarize\": {\"summaryMethod\": \"TMP\", \"__current_case__\": 0, \"MBimpute\": \"true\", \"remove50missing\": \"false\"}, \"censoredInt\": \"NA\", \"cutoffCensored\": \"minFeature\", \"maxQuantileforCensored\": \"0.999\", \"out_plots_opt\": {\"selected_vis_outputs\": [\"QCPlot\"], \"which_Protein\": {\"select\": \"allonly\", \"__current_case__\": 1}, \"width\": \"8\", \"height\": \"5\", \"proc_plots_advanced\": {\"featureName\": \"Transition\", \"ylimUp\": null, \"ylimDown\": null, \"scale\": \"false\", \"interval\": \"CI\", \"x_axis_size\": \"10\", \"y_axis_size\": \"10\", \"text_size\": \"4\", \"text_angle\": \"0\", \"legend_size\": \"7\", \"dot_size_profile\": \"2\", \"dot_size_condition\": \"3\", \"remove_uninformative_feature_outlier\": \"false\"}}}, \"group\": {\"group_comparison\": \"yes\", \"__current_case__\": 1, \"comparison_matrix\": {\"__class__\": \"RuntimeValue\"}, \"select_outputs\": [\"comparison_result\"], \"comparison_plots_opt\": {\"select_comparison_plots\": [\"VolcanoPlot\"], \"width\": \"8\", \"height\": \"5\", \"which_Protein\": {\"select\": \"all\", \"__current_case__\": 0}, \"comparison_vis_options\": {\"sig\": \"0.05\", \"FCcutoff\": \"1.5\", \"logBase_pvalue\": \"10\", \"ylimUp\": null, \"ylimDown\": null, \"xlimUp\": null, \"axis_size\": \"10\", \"x_axis_size\": \"10\", \"y_axis_size\": \"10\", \"dot_size\": \"3\", \"text_size\": \"4\", \"text_angle\": \"90\", \"legend_size\": \"7\", \"ProteinName\": \"false\", \"colorkey\": \"true\", \"numProtein\": \"100\", \"clustering\": \"protein\", \"which_Comparison\": {\"select\": \"all\", \"__current_case__\": 0}}}}, \"input\": {\"input_src\": \"MaxQuant\", \"__current_case__\": 1, \"evidence\": {\"__class__\": \"RuntimeValue\"}, \"proteinGroups\": {\"__class__\": \"RuntimeValue\"}, \"annotation\": {\"__class__\": \"RuntimeValue\"}, \"proteinID\": \"Leading.razor.protein\", \"input_options\": {\"useUniquePeptide\": \"true\", \"summaryforMultipleRows\": \"max\", \"fewMeasurements\": \"remove\", \"removeMpeptides\": \"false\", \"removeOxidationMpeptides\": \"false\", \"removeProtein_with1Peptide\": \"true\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.22.0.1", + "type": "tool", + "uuid": "b3968b97-c518-4333-be78-a10676d0c260", + "workflow_outputs": [ + { + "label": null, + "output_name": "comparison_result", + "uuid": "5d3ee1c6-32bb-4899-b7e7-e84477cc2127" + }, + { + "label": null, + "output_name": "log", + "uuid": "1dd1ac5c-eb19-4b9c-8786-b72776ebb1a4" + }, + { + "label": null, + "output_name": "processed_data", + "uuid": "7549686d-4219-4c17-9f4d-5d1ed7bb92cf" + }, + { + "label": null, + "output_name": "QCPlot", + "uuid": "44092c24-df36-4d05-91ae-5fca98f4bc36" + }, + { + "label": null, + "output_name": "quant_sample_matrix", + "uuid": "6aa35c51-4144-4aec-a597-4591386279b1" + }, + { + "label": null, + "output_name": "quant_group_matrix", + "uuid": "0c980fd2-d34a-4fb0-8adb-2e974c8261f0" + }, + { + "label": null, + "output_name": "runlevel_data", + "uuid": "14636105-8e4d-4f00-8da1-5468aa830132" + }, + { + "label": null, + "output_name": "VolcanoPlot", + "uuid": "91943356-70a8-4598-a24e-4ac6f6354e1c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/datamash_ops/1.0.6", + "errors": null, + "id": 10, + "input_connections": { + "in_file": { + "id": 9, + "output_name": "runlevel_data" + } + }, + "inputs": [], + "label": null, + "name": "Datamash", + "outputs": [ + { + "name": "out_file", + "type": "tabular" + } + ], + "position": { + "bottom": 288.43333435058594, + "height": 113.26666259765625, + "left": 736, + "right": 936, + "top": 175.1666717529297, + "width": 200, + "x": 736, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/datamash_ops/1.0.6", + "tool_shed_repository": { + "changeset_revision": "2f3c6f2dcf39", + "name": "datamash_ops", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"grouping\": \"8\", \"header_in\": \"true\", \"header_out\": \"true\", \"ignore_case\": \"false\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"need_sort\": \"true\", \"operations\": [{\"__index__\": 0, \"op_name\": \"count\", \"op_column\": \"1\"}], \"print_full_line\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.6", + "type": "tool", + "uuid": "4c334a37-a534-46b0-9d1c-9d0c1e91b8e7", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file", + "uuid": "9897b924-bd51-46f3-8e86-2282f96be68b" + } + ] + }, + { + "annotation": "", + "content_id": "Summary_Statistics1", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 9, + "output_name": "runlevel_data" + } + }, + "inputs": [], + "label": null, + "name": "Summary Statistics", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 408.433349609375, + "height": 113.26666259765625, + "left": 736, + "right": 936, + "top": 295.16668701171875, + "width": 200, + "x": 736, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "Summary_Statistics1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c4\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "14d4f8b8-2729-41b1-9f10-58eafdb43d5f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "105467da-afe7-470f-b3d3-1868ab1e2e50" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "errors": null, + "id": 12, + "input_connections": { + "infile": { + "id": 9, + "output_name": "comparison_result" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 508.0333557128906, + "height": 92.86666870117188, + "left": 736, + "right": 936, + "top": 415.16668701171875, + "width": 200, + "x": 736, + "y": 415.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"column\": \"1\", \"find_pattern\": \"sp\\\\|\", \"replace_pattern\": \"\"}, {\"__index__\": 1, \"column\": \"1\", \"find_pattern\": \"\\\\|.*\", \"replace_pattern\": \"\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3", + "type": "tool", + "uuid": "d79c82bc-9b4d-43b9-bb39-42b4cdf81bdb", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "851024bd-132d-4bd6-87c6-5249211d6666" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "errors": null, + "id": 13, + "input_connections": { + "infile": { + "id": 9, + "output_name": "quant_sample_matrix" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 628.0333557128906, + "height": 92.86666870117188, + "left": 736, + "right": 936, + "top": 535.1666870117188, + "width": 200, + "x": 736, + "y": 535.1666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"replacements\": [{\"__index__\": 0, \"column\": \"1\", \"find_pattern\": \"sp\\\\|\", \"replace_pattern\": \"\"}, {\"__index__\": 1, \"column\": \"1\", \"find_pattern\": \"\\\\|.*\", \"replace_pattern\": \"\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.3", + "type": "tool", + "uuid": "e3f8c7ce-c2cf-488a-bf80-eb18d677d8a7", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "02878b52-bd9d-4e3d-914a-3925430524d9" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 12, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 268.03334045410156, + "height": 92.86666870117188, + "left": 956, + "right": 1156, + "top": 175.1666717529297, + "width": 200, + "x": 956, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c8<0.05\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "a8c17ba0-9fd9-45cb-a195-bd3f6af256e8", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "3c3a85e8-3934-4439-9836-cfff976035e7" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 14, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 268.03334045410156, + "height": 92.86666870117188, + "left": 1176, + "right": 1376, + "top": 175.1666717529297, + "width": 200, + "x": 1176, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c3>0.58\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "d27bb3b9-ff30-4004-8cc1-60b0085bbeea", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "01a2b15e-f55e-4485-acf6-b24063e79b7c" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 14, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 388.0333557128906, + "height": 92.86666870117188, + "left": 1176, + "right": 1376, + "top": 295.16668701171875, + "width": 200, + "x": 1176, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c3<-0.58\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "8cd26d6e-9eab-4329-aa4f-4baeb79cba8e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9878106d-9970-49e2-9498-12786bf87859" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 268.03334045410156, + "height": 92.86666870117188, + "left": 1396, + "right": 1596, + "top": 175.1666717529297, + "width": 200, + "x": 1396, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c8>0\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "d748fc5d-a609-472d-b6cb-0b6ec18affe0", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "6c12e078-7e56-47c5-9524-462cc9e285c7" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 18, + "input_connections": { + "input": { + "id": 16, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 388.0333557128906, + "height": 92.86666870117188, + "left": 1396, + "right": 1596, + "top": 295.16668701171875, + "width": 200, + "x": 1396, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c8>0\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "fc4b67ba-8f8d-41b4-a797-20221cc7bcbd", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "de5996ce-55a9-45dc-876b-3877fa1b778b" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 19, + "input_connections": { + "input": { + "id": 17, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 268.03334045410156, + "height": 92.86666870117188, + "left": 1616, + "right": 1816, + "top": 175.1666717529297, + "width": 200, + "x": 1616, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c1\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "85e52e8f-4bc9-4c0f-9ea3-99e2f5939a83", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "466eb4ff-3685-425d-b1aa-4f6fb834dd70" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 388.0333557128906, + "height": 92.86666870117188, + "left": 1616, + "right": 1816, + "top": 295.16668701171875, + "width": 200, + "x": 1616, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c1\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "bf3841cb-6e7f-4a3d-988f-df196aca874a", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "9d0a535d-ed5b-448f-bbc4-795ec0b7ae4b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 21, + "input_connections": { + "infile1": { + "id": 13, + "output_name": "outfile" + }, + "infile2": { + "id": 19, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 298.43333435058594, + "height": 123.26666259765625, + "left": 1836, + "right": 2036, + "top": 175.1666717529297, + "width": 200, + "x": 1836, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": \"true\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "a006f45e-d6ee-457f-b9af-84d5d86c24b7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f24e4056-f3ba-40bd-ac6e-0421584ff7b9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 22, + "input_connections": { + "infile1": { + "id": 13, + "output_name": "outfile" + }, + "infile2": { + "id": 20, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 418.433349609375, + "height": 123.26666259765625, + "left": 1836, + "right": 2036, + "top": 295.16668701171875, + "width": 200, + "x": 1836, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": \"true\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "33d235ba-6450-4f5a-8f41-8611e2153ed9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a2e9e3a-6e50-4ee8-b599-b6186975f1fc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.0.1", + "errors": null, + "id": 23, + "input_connections": { + "input1": { + "id": 21, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "heatmap2", + "outputs": [ + { + "name": "output1", + "type": "pdf" + } + ], + "position": { + "bottom": 308.8333282470703, + "height": 133.66665649414062, + "left": 2056, + "right": 2256, + "top": 175.1666717529297, + "width": 200, + "x": 2056, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.0.1", + "tool_shed_repository": { + "changeset_revision": "ca7cb0eaad62", + "name": "ggplot2_heatmap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cluster_cond\": {\"cluster\": \"\", \"__current_case__\": 1}, \"colorscheme\": \"whrd\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"key\": \"\", \"labels\": \"both\", \"scale\": \"row\", \"title\": \"Upregulated proteins in metastasized cSCC\", \"transform\": \"none\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.1", + "type": "tool", + "uuid": "bee1e0b5-2251-4f85-8737-243dacef01a7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "cf47dbb9-afc4-4d9b-985b-0a18bd95ebfe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot/0.2", + "errors": null, + "id": 24, + "input_connections": { + "infile": { + "id": 21, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "UniProt", + "outputs": [ + { + "name": "outfile_retrieve_fasta", + "type": "fasta" + } + ], + "position": { + "bottom": 548.8333435058594, + "height": 133.66665649414062, + "left": 2056, + "right": 2256, + "top": 415.16668701171875, + "width": 200, + "x": 2056, + "y": 415.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot/0.2", + "tool_shed_repository": { + "changeset_revision": "054483e27a35", + "name": "uniprot_rest_interface", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"id_column\": \"1\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"tool\": {\"tool_choice\": \"retrieve\", \"__current_case__\": 1, \"format\": \"fasta\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2", + "type": "tool", + "uuid": "5f1dd559-3d47-464d-ac73-72684267aaf4", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_retrieve_fasta", + "uuid": "141b0dcd-080b-440d-81d0-85f7297d8054" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.0.1", + "errors": null, + "id": 25, + "input_connections": { + "input1": { + "id": 22, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "heatmap2", + "outputs": [ + { + "name": "output1", + "type": "pdf" + } + ], + "position": { + "bottom": 428.8333435058594, + "height": 133.66665649414062, + "left": 2056, + "right": 2256, + "top": 295.16668701171875, + "width": 200, + "x": 2056, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.0.1", + "tool_shed_repository": { + "changeset_revision": "ca7cb0eaad62", + "name": "ggplot2_heatmap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cluster_cond\": {\"cluster\": \"\", \"__current_case__\": 1}, \"colorscheme\": \"whrd\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"key\": \"\", \"labels\": \"both\", \"scale\": \"row\", \"title\": \"Upregulated proteins in RDEB cSCC\", \"transform\": \"none\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.1", + "type": "tool", + "uuid": "df17ae43-0885-4132-b75a-6917049e573c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output1", + "uuid": "1dd011a1-b91e-4b39-8fa6-c9585946df63" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot/0.2", + "errors": null, + "id": 26, + "input_connections": { + "infile": { + "id": 22, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "UniProt", + "outputs": [ + { + "name": "outfile_retrieve_fasta", + "type": "fasta" + } + ], + "position": { + "bottom": 668.8333435058594, + "height": 133.66665649414062, + "left": 2056, + "right": 2256, + "top": 535.1666870117188, + "width": 200, + "x": 2056, + "y": 535.1666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot/0.2", + "tool_shed_repository": { + "changeset_revision": "054483e27a35", + "name": "uniprot_rest_interface", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"id_column\": \"1\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"tool\": {\"tool_choice\": \"retrieve\", \"__current_case__\": 1, \"format\": \"fasta\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2", + "type": "tool", + "uuid": "c8c7914e-7c65-40b3-931b-c64b3848d383", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_retrieve_fasta", + "uuid": "ce31b047-1193-4937-9d7b-2a5c5d2c9d6d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 27, + "input_connections": { + "input": { + "id": 24, + "output_name": "outfile_retrieve_fasta" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 288.43333435058594, + "height": 113.26666259765625, + "left": 2276, + "right": 2476, + "top": 175.1666717529297, + "width": 200, + "x": 2276, + "y": 175.1666717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "e7ed3c310b74", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"descr_columns\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "da7d791d-50c8-4c98-80dd-dc5fdee242d4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bff31e15-ee6c-4972-9795-b478d0a0e9e7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "errors": null, + "id": 28, + "input_connections": { + "input": { + "id": 26, + "output_name": "outfile_retrieve_fasta" + } + }, + "inputs": [], + "label": null, + "name": "FASTA-to-Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 408.433349609375, + "height": 113.26666259765625, + "left": 2276, + "right": 2476, + "top": 295.16668701171875, + "width": 200, + "x": 2276, + "y": 295.16668701171875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "tool_shed_repository": { + "changeset_revision": "e7ed3c310b74", + "name": "fasta_to_tabular", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"descr_columns\": \"2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"keep_first\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "6df99dbd-ac3d-4574-90dd-11f93c65d4c4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f661462b-ca82-4621-9f2a-1c7892b89918" + } + ] + } + ], + "parent_id": "proteomics/maxquant-msstats-dda-lfq", + "path": "topics/proteomics/tutorials/maxquant-msstats-dda-lfq/workflows/main_workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Proteomics: MaxQuant and MSstats LFQ workflow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-maxquant-msstats-dda-lfq/versions/main-workflow", + "tutorial_id": "maxquant-msstats-dda-lfq", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-msstats-dda-lfq/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-msstats-dda-lfq/workflows/main_workflow.html", + "version": 3, + "wfid": "proteomics-maxquant-msstats-dda-lfq", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "Grep1", + "Summary_Statistics1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot/0.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_to_tabular/fasta2tab/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.22.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/datamash_ops/1.0.6", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.0.1" + ], + "workflowhub_id": "1240" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "78fad25eff17", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peptideshaker", + "owner": "galaxyp", + "revisions": "78fad25eff17", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: peptideshaker\n owner: galaxyp\n revisions: 78fad25eff17\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peptideshaker\n owner: galaxyp\n revisions: 78fad25eff17\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-id-sg-ps/tutorial.json", + "contributors": [ + { + "email": "sigloch+github@mailbox.org", + "former_affiliations": [ + "uni-freiburg" + ], + "id": "stortebecker", + "joined": "2017-09", + "name": "Florian Christoph Sigloch", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stortebecker/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stortebecker.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/proteomics/tutorials/protein-id-sg-ps", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/protein-id-sg-ps", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "LC-MS/MS raw files have to be locally converted to mgf/mzML prior to further analysis on most Galaxy servers.", + "SearchGUI can be used for running several peptide search engines at once.", + "PeptideShaker can be used to combine and evaluate the results, and to perform protein inference." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Protein identification from LC-MS/MS raw files." + ], + "pageviews": 4025, + "pub_date": "2017-06-12", + "questions": [ + "How to convert LC-MS/MS raw files?", + "How to identify peptides?", + "How to identify proteins?", + "How to evaluate the results?" + ], + "short_id": "T00229", + "short_tools": [ + "Grep1", + "peptide_shaker", + "PeakPickerHiRes", + "search_gui", + "FileConverter" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "DDA", + "HeLa" + ], + "time_estimation": "45m", + "title": "Peptide and Protein ID using SearchGUI and PeptideShaker", + "tools": [ + "FileConverter", + "Grep1", + "PeakPickerHiRes", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.11.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/2.9.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "protein-id-sg-ps", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/protein-id-sg-ps/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-id-sg-ps/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-id-sg-ps/tutorial.json" + }, + "version": 27, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 124, + "visitors": 2316, + "workflows": [ + { + "creators": [], + "description": "Peptide and Protein ID using SearchGUI and PeptideShaker", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput: Protein Database\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput: mzML file\"]\n 2[label=\"PeakPickerHiRes\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"FileConverter\"]\n 2 -> 3 [label=\"param_out\"]\n 4[label=\"Search GUI\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"param_out\"]\n 5[label=\"Peptide Shaker\"]\n 4 -> 5 [label=\"searchgui_results\"]\n 6[label=\"Select\"]\n 5 -> 6 [label=\"output_proteins\"]\n 7[label=\"Select\"]\n 5 -> 7 [label=\"output_proteins\"]\n 8[label=\"Select\"]\n 7 -> 8 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "2c1271b670d336517fb123fb632ce13c93c40465", + "message": "Restructure proteomics", + "num": 1, + "short_hash": "2c1271b67", + "unix": "1495544862" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input: Protein Database" + } + ], + "label": "Input: Protein Database", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 174.5, + "top": 159.5 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Input: Protein Database\"}", + "tool_version": null, + "type": "data_input", + "uuid": "430f7bca-2c95-4bc0-89a8-3ac797ca3363", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0636ac0b-9003-4371-a1d0-81d325a00496" + } + ] + }, + { + "annotation": "", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input: mzML file" + } + ], + "label": "Input: mzML file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 183, + "top": 286 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Input: mzML file\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4e937c9c-582e-4064-8b2f-515979f22cf8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0b857aa4-2008-4af6-aca4-7a949c012e84" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput: Protein Database\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput: mzML file\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"PeakPickerHiRes\"];\n 1 -->|output| 2;\n 3[\"FileConverter\"];\n 2 -->|param_out| 3;\n 4[\"Search GUI\"];\n 0 -->|output| 4;\n 3 -->|param_out| 4;\n 5[\"Peptide Shaker\"];\n 4 -->|searchgui_results| 5;\n 6[\"Select\"];\n 5 -->|output_proteins| 6;\n 7[\"Select\"];\n 5 -->|output_proteins| 7;\n 8[\"Select\"];\n 7 -->|out_file1| 8;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Peptide And Protein ID Tutorial", + "outputs": [ + { + "annotation": "", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input: Protein Database" + } + ], + "label": "Input: Protein Database", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 174.5, + "top": 159.5 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Input: Protein Database\"}", + "tool_version": null, + "type": "data_input", + "uuid": "430f7bca-2c95-4bc0-89a8-3ac797ca3363", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0636ac0b-9003-4371-a1d0-81d325a00496" + } + ] + }, + { + "annotation": "", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input: mzML file" + } + ], + "label": "Input: mzML file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 183, + "top": 286 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Input: mzML file\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4e937c9c-582e-4064-8b2f-515979f22cf8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0b857aa4-2008-4af6-aca4-7a949c012e84" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.11.0", + "id": 5, + "input_connections": { + "searchgui_input": { + "id": 4, + "output_name": "searchgui_results" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Peptide Shaker", + "name": "searchgui_input" + } + ], + "label": null, + "name": "Peptide Shaker", + "outputs": [ + { + "name": "mzidentML", + "type": "mzid" + }, + { + "name": "output_cps", + "type": "peptideshaker_archive" + }, + { + "name": "output_zip", + "type": "zip" + }, + { + "name": "output_certificate", + "type": "txt" + }, + { + "name": "output_hierarchical", + "type": "tabular" + }, + { + "name": "output_psm_phosphorylation", + "type": "tabular" + }, + { + "name": "output_psm", + "type": "tabular" + }, + { + "name": "output_peptides_phosphorylation", + "type": "tabular" + }, + { + "name": "output_peptides", + "type": "tabular" + }, + { + "name": "output_proteins_phosphorylation", + "type": "tabular" + }, + { + "name": "output_proteins", + "type": "tabular" + } + ], + "position": { + "left": 825, + "top": 397 + }, + "post_job_actions": { + "HideDatasetActionoutput_certificate": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_certificate" + }, + "HideDatasetActionoutput_cps": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_cps" + }, + "HideDatasetActionoutput_hierarchical": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_hierarchical" + }, + "HideDatasetActionoutput_peptides_phosphorylation": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_peptides_phosphorylation" + }, + "HideDatasetActionoutput_proteins_phosphorylation": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_proteins_phosphorylation" + }, + "HideDatasetActionoutput_psm_phosphorylation": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_psm_phosphorylation" + } + }, + "tool_errors": null, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.11.0", + "tool_shed_repository": { + "changeset_revision": "78fad25eff17", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": 0, \"outputs\": \"[\\\"mzidentML\\\", \\\"7\\\"]\", \"__rerun_remap_job_id__\": null, \"filtering_options\": \"{\\\"max_precursor_error_type\\\": \\\"1\\\", \\\"filtering_options_selector\\\": \\\"yes\\\", \\\"__current_case__\\\": 1, \\\"max_precursor_error\\\": \\\"10.0\\\", \\\"exclude_unknown_ptms\\\": \\\"true\\\", \\\"max_peptide_length\\\": \\\"30\\\", \\\"min_peptide_length\\\": \\\"6\\\"}\", \"searchgui_input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"processing_options\": \"{\\\"peptide_fdr\\\": \\\"1.0\\\", \\\"protein_fdr\\\": \\\"1.0\\\", \\\"protein_fraction_mw_confidence\\\": \\\"95.0\\\", \\\"ptm_score\\\": {\\\"ptm_score_selector\\\": \\\"0\\\", \\\"__current_case__\\\": 0}, \\\"ptm_alignment\\\": \\\"true\\\", \\\"__current_case__\\\": 1, \\\"processing_options_selector\\\": \\\"yes\\\", \\\"psm_fdr\\\": \\\"1.0\\\"}\"}", + "tool_version": "1.11.0", + "type": "tool", + "uuid": "7840a984-7e8e-44fa-b8bb-a14c1eae2809", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_proteins", + "uuid": "14017ead-5d4e-4313-81c1-9bd854a3b22b" + }, + { + "label": null, + "output_name": "mzidentML", + "uuid": "f40142a4-f928-44e7-8feb-6524b63d3b58" + }, + { + "label": null, + "output_name": "output_psm", + "uuid": "f4d84abd-8329-430f-9762-4e1503a6a5c4" + }, + { + "label": null, + "output_name": "output_zip", + "uuid": "b5133d31-7d96-43bb-b7ee-55dc79e2719c" + }, + { + "label": null, + "output_name": "output_peptides", + "uuid": "f53dd653-c534-42a5-a86f-cc83a4d9331b" + } + ] + }, + { + "annotation": "Output: all identified contaminants.", + "content_id": "Grep1", + "id": 6, + "input_connections": { + "input": { + "id": 5, + "output_name": "output_proteins" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select", + "name": "input" + } + ], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1149.5, + "top": 738.5 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "contaminant_proteins" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_errors": null, + "tool_id": "Grep1", + "tool_state": "{\"__page__\": 0, \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"invert\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null, \"pattern\": \"\\\"CONTAMINANT\\\"\"}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "913cd910-6e9a-4961-b1d6-9de03e7a5be0", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "71acf765-a1a8-449f-8e75-0f0e9cd7e97d" + } + ] + }, + { + "annotation": "Output: all identified proteins without common contaminants. CAVE: some proteins may be both!", + "content_id": "Grep1", + "id": 7, + "input_connections": { + "input": { + "id": 5, + "output_name": "output_proteins" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select", + "name": "input" + } + ], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1152.5, + "top": 842.5 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "non-contaminant_proteins" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_errors": null, + "tool_id": "Grep1", + "tool_state": "{\"__page__\": 0, \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"invert\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null, \"pattern\": \"\\\"CONTAMINANT\\\"\"}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "b4c96aea-4f92-4eff-a322-9e4f7935db9d", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "a935e7bb-b5aa-43db-aa3a-2e6de6420ac5" + } + ] + }, + { + "annotation": "Output: only those non-contaminant proteins not evaluated to be \"Doubtful\".", + "content_id": "Grep1", + "id": 8, + "input_connections": { + "input": { + "id": 7, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Select", + "name": "input" + } + ], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1361.5, + "top": 803.5 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "confident_non-contaminant_proteins" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_errors": null, + "tool_id": "Grep1", + "tool_state": "{\"__page__\": 0, \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"invert\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null, \"pattern\": \"\\\"Doubtful\\\"\"}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "02ee5bf0-89d2-4598-a4ae-fdc44c35e954", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "5a0a1a89-a613-44cb-9b7f-ea055b9cfdaf" + } + ] + } + ], + "parent_id": "proteomics/protein-id-sg-ps", + "path": "topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Peptide And Protein ID Tutorial", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-id-sg-ps/versions/wf-proteinid-sg-ps", + "tutorial_id": "protein-id-sg-ps", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS.html", + "version": 4, + "wfid": "proteomics-protein-id-sg-ps", + "wfname": "wf-proteinid-sg-ps", + "workflow": "wf_proteinID_SG_PS.ga", + "workflow_tools": [ + "FileConverter", + "Grep1", + "PeakPickerHiRes", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.11.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/2.9.0" + ], + "workflowhub_id": "1172" + }, + { + "creators": [], + "description": "Peptide and Protein ID using SearchGUI and PeptideShaker", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 2[label=\"PeakPickerHiRes\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"FileConverter\"]\n 2 -> 3 [label=\"param_out\"]\n 4[label=\"Search GUI\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"param_out\"]\n 5[label=\"Peptide Shaker\"]\n 4 -> 5 [label=\"searchgui_results\"]\n 6[label=\"Select\"]\n 5 -> 6 [label=\"output_proteins\"]\n 7[label=\"Select\"]\n 5 -> 7 [label=\"output_proteins\"]\n 8[label=\"Select\"]\n 7 -> 8 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "2c1271b670d336517fb123fb632ce13c93c40465", + "message": "Restructure proteomics", + "num": 1, + "short_hash": "2c1271b67", + "unix": "1495544862" + } + ], + "inputs": [ + { + "annotation": "Proteome Fasta database of organism of interest. Do not include decoys.", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Proteome Fasta database of organism of interest. Do not include decoys.", + "name": "Input protein FASTA database" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 216.5, + "top": 205.5 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Input protein FASTA database\"}", + "tool_version": null, + "type": "data_input", + "uuid": "74015737-98ed-47e3-8cda-3f6cf7f97078", + "workflow_outputs": [] + }, + { + "annotation": "Add all input files into a \"List of files\" first.", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Add all input files into a \"List of files\" first.", + "name": "Input: List of mzML files" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 165, + "top": 300 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input: List of mzML files\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "1b360056-d424-4942-af3b-064d22841df8", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"PeakPickerHiRes\"];\n 1 -->|output| 2;\n 3[\"FileConverter\"];\n 2 -->|param_out| 3;\n 4[\"Search GUI\"];\n 0 -->|output| 4;\n 3 -->|param_out| 4;\n 5[\"Peptide Shaker\"];\n 4 -->|searchgui_results| 5;\n 6[\"Select\"];\n 5 -->|output_proteins| 6;\n 7[\"Select\"];\n 5 -->|output_proteins| 7;\n 8[\"Select\"];\n 7 -->|out_file1| 8;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "ProteinID SG PS Tutorial WF datasetCollection", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.11.0", + "id": 5, + "input_connections": { + "searchgui_input": { + "id": 4, + "output_name": "searchgui_results" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Peptide Shaker", + "name": "searchgui_input" + } + ], + "label": null, + "name": "Peptide Shaker", + "outputs": [ + { + "name": "mzidentML", + "type": "mzid" + }, + { + "name": "output_cps", + "type": "peptideshaker_archive" + }, + { + "name": "output_zip", + "type": "zip" + }, + { + "name": "output_certificate", + "type": "txt" + }, + { + "name": "output_hierarchical", + "type": "tabular" + }, + { + "name": "output_psm_phosphorylation", + "type": "tabular" + }, + { + "name": "output_psm", + "type": "tabular" + }, + { + "name": "output_peptides_phosphorylation", + "type": "tabular" + }, + { + "name": "output_peptides", + "type": "tabular" + }, + { + "name": "output_proteins_phosphorylation", + "type": "tabular" + }, + { + "name": "output_proteins", + "type": "tabular" + } + ], + "position": { + "left": 1056, + "top": 210 + }, + "post_job_actions": { + "HideDatasetActionmzidentML": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "mzidentML" + }, + "HideDatasetActionoutput_certificate": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_certificate" + }, + "HideDatasetActionoutput_cps": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_cps" + }, + "HideDatasetActionoutput_hierarchical": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_hierarchical" + }, + "HideDatasetActionoutput_peptides_phosphorylation": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_peptides_phosphorylation" + }, + "HideDatasetActionoutput_proteins_phosphorylation": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_proteins_phosphorylation" + }, + "HideDatasetActionoutput_psm": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_psm" + }, + "HideDatasetActionoutput_psm_phosphorylation": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_psm_phosphorylation" + }, + "HideDatasetActionoutput_zip": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_zip" + } + }, + "tool_errors": null, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.11.0", + "tool_shed_repository": { + "changeset_revision": "78fad25eff17", + "name": "peptideshaker", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": 0, \"processing_options\": \"{\\\"processing_options_selector\\\": \\\"no\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"filtering_options\": \"{\\\"filtering_options_selector\\\": \\\"no\\\", \\\"__current_case__\\\": 0}\", \"searchgui_input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"outputs\": \"[\\\"zip\\\", \\\"mzidentML\\\", \\\"3\\\", \\\"5\\\", \\\"7\\\"]\", \"chromInfo\": \"\\\"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\\\"\"}", + "tool_version": "1.11.0", + "type": "tool", + "uuid": "814dcbd4-945f-496b-906d-58e7ad93ac8e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_proteins", + "uuid": "56f3da79-09c0-4ac8-8636-386de367f71e" + }, + { + "label": null, + "output_name": "output_peptides", + "uuid": "a5766292-49b9-4340-888b-6b8d4a7d773d" + } + ] + } + ], + "parent_id": "proteomics/protein-id-sg-ps", + "path": "topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS_multipleFiles.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "ProteinID SG PS Tutorial WF datasetCollection", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-id-sg-ps/versions/wf-proteinid-sg-ps-multiplefiles", + "tutorial_id": "protein-id-sg-ps", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS_multipleFiles.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-sg-ps/workflows/wf_proteinID_SG_PS_multipleFiles.html", + "version": 4, + "wfid": "proteomics-protein-id-sg-ps", + "wfname": "wf-proteinid-sg-ps-multiplefiles", + "workflow": "wf_proteinID_SG_PS_multipleFiles.ga", + "workflow_tools": [ + "FileConverter", + "Grep1", + "PeakPickerHiRes", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/peptide_shaker/1.11.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/peptideshaker/search_gui/2.9.0" + ], + "workflowhub_id": "1171" + } + ], + "zenodo_link": "https://zenodo.org/record/546301" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "288462ec2630", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "288462ec2630", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "288462ec2630", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "uniprot_rest_interface", + "owner": "bgruening", + "revisions": "f7ebd1b4783b", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unique", + "owner": "bgruening", + "revisions": "7ce75adb93be", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tmhmm_and_signalp", + "owner": "peterjc", + "revisions": "e6cc27d182a8", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: 288462ec2630\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 288462ec2630\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 288462ec2630\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: uniprot_rest_interface\n owner: bgruening\n revisions: f7ebd1b4783b\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unique\n owner: bgruening\n revisions: 7ce75adb93be\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tmhmm_and_signalp\n owner: peterjc\n revisions: e6cc27d182a8\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/secretome-prediction/tutorial.json", + "contributors": [ + { + "email": "sigloch+github@mailbox.org", + "former_affiliations": [ + "uni-freiburg" + ], + "id": "stortebecker", + "joined": "2017-09", + "name": "Florian Christoph Sigloch", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stortebecker/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stortebecker.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/proteomics/tutorials/secretome-prediction", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/secretome-prediction", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The cellular secretome contains more than the classically secreted proteins.", + "Localization predictions by multiple different algorithms can improve sensitivity and/or specificity." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Predict proteins in the cellular secretome by using GO-terms.", + "Predict proteins in the cellular secretome by using WolfPSORT.", + "Combine the results of both predictions." + ], + "pageviews": 865, + "pub_date": "2017-04-13", + "questions": [ + "How to predict cellular protein localization based upon GO-terms?", + "How to combine multiple localization predictions?" + ], + "short_id": "T00235", + "short_tools": [ + "Grep1", + "bg_uniq", + "get_subontology_from", + "tp_cut_tool", + "uniprot", + "wolf_psort", + "Convert characters1", + "term_id_vs_term_name", + "tp_easyjoin_tool", + "Filter1", + "comp1", + "tp_sorted_uniq" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "post-process", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "human", + "work-in-progress" + ], + "time_estimation": "30m", + "title": "Secretome Prediction", + "tools": [ + "Convert characters1", + "Filter1", + "Grep1", + "comp1", + "get_subontology_from", + "term_id_vs_term_name", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "toolshed.g2.bx.psu.edu/repos/peterjc/tmhmm_and_signalp/wolf_psort/0.0.8" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "secretome-prediction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/secretome-prediction/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/secretome-prediction/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/secretome-prediction/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 90, + "visitors": 564, + "workflows": [ + { + "creators": [], + "description": "version 1.0, 160318, published at https://github.com/Stortebecker/secretome_prediction", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[label=\"UniProt\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Select\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Get subontology from a given OBO term\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Get subontology from a given OBO term\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Get subontology from a given OBO term\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"Get subontology from a given OBO term\"]\n 2 -> 8 [label=\"output\"]\n 9[label=\"Get subontology from a given OBO term\"]\n 2 -> 9 [label=\"output\"]\n 10[label=\"WoLF PSORT\"]\n 3 -> 10 [label=\"outfile_retrieve_fasta\"]\n 11[label=\"Join\"]\n 0 -> 11 [label=\"output\"]\n 4 -> 11 [label=\"out_file1\"]\n 12[label=\"Get all the term IDs and term names of a given OBO ontology\"]\n 5 -> 12 [label=\"output\"]\n 13[label=\"Get all the term IDs and term names of a given OBO ontology\"]\n 6 -> 13 [label=\"output\"]\n 14[label=\"Get all the term IDs and term names of a given OBO ontology\"]\n 7 -> 14 [label=\"output\"]\n 15[label=\"Get all the term IDs and term names of a given OBO ontology\"]\n 8 -> 15 [label=\"output\"]\n 16[label=\"Get all the term IDs and term names of a given OBO ontology\"]\n 9 -> 16 [label=\"output\"]\n 17[label=\"Filter\"]\n 10 -> 17 [label=\"tabular_file\"]\n 18[label=\"Filter\"]\n 10 -> 18 [label=\"tabular_file\"]\n 19[label=\"Join\"]\n 12 -> 19 [label=\"output\"]\n 13 -> 19 [label=\"output\"]\n 20[label=\"Join\"]\n 14 -> 20 [label=\"output\"]\n 15 -> 20 [label=\"output\"]\n 21[label=\"Join\"]\n 17 -> 21 [label=\"out_file1\"]\n 18 -> 21 [label=\"out_file1\"]\n 22[label=\"Join\"]\n 19 -> 22 [label=\"output\"]\n 20 -> 22 [label=\"output\"]\n 23[label=\"Convert\"]\n 21 -> 23 [label=\"output\"]\n 24[label=\"Join\"]\n 22 -> 24 [label=\"output\"]\n 16 -> 24 [label=\"output\"]\n 25[label=\"Cut\"]\n 23 -> 25 [label=\"out_file1\"]\n 26[label=\"Compare two Datasets\"]\n 11 -> 26 [label=\"output\"]\n 24 -> 26 [label=\"output\"]\n 27[label=\"Unique\"]\n 26 -> 27 [label=\"out_file1\"]\n 28[label=\"Cut\"]\n 27 -> 28 [label=\"outfile\"]\n 29[label=\"Join\"]\n 25 -> 29 [label=\"output\"]\n 28 -> 29 [label=\"output\"]\n 30[label=\"Unique\"]\n 29 -> 30 [label=\"output\"]\n k14e0c6dc436b4c4c9292d5e00cca8c92[color=lightseagreen,label=\"Output\\nSecretome proteins\"]\n 30 -> k14e0c6dc436b4c4c9292d5e00cca8c92\n}", + "history": [ + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "55fe079b2828d71aabb21fa0700f6f77ac76052c", + "message": "WoLF PSORT WF", + "num": 3, + "short_hash": "55fe079b2", + "unix": "1578933056" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "2c1271b670d336517fb123fb632ce13c93c40465", + "message": "Restructure proteomics", + "num": 1, + "short_hash": "2c1271b67", + "unix": "1495544862" + } + ], + "inputs": [ + { + "annotation": "Input: Protein ID list\nFirst column has to be uniprot accessions", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Input: Protein ID list\nFirst column has to be uniprot accessions", + "name": "Custom Protein list (uniprot accession)" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 293, + "top": 377 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Custom Protein list (uniprot accession)\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4d60060c-188b-4a93-8320-36f9b43e5765", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "27022e50-f5dc-46b1-8b54-979f955eb050" + } + ] + }, + { + "annotation": "Input: Uniprot GO database file (choose the right organism)\nExample: ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/HUMAN/gene_association.goa_human.gz", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Input: Uniprot GO database file (choose the right organism)\nExample: ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/HUMAN/gene_association.goa_human.gz", + "name": "Uniprot GO database" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 290, + "top": 507 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Uniprot GO database\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e8f4a577-7b6a-4cd0-9a74-2e68c4ae6c5a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b8fa36c2-6bbf-40c1-a472-8d4a6a7096c3" + } + ] + }, + { + "annotation": "Input: Please downlad the Open Biomedical Ontology (OBO), i.e. \"GO term tree\" from\nhttp://purl.obolibrary.org/obo/go/go.obo", + "content_id": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Input: Please downlad the Open Biomedical Ontology (OBO), i.e. \"GO term tree\" from\nhttp://purl.obolibrary.org/obo/go/go.obo", + "name": "Open Biomedical Ontology (OBO)" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 293, + "top": 790 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Open Biomedical Ontology (OBO)\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0640e1c4-4d77-49da-8473-0018e0a5db09", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4725c10d-9e7a-4e3f-9874-c302c34687cb" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"UniProt\"];\n 0 -->|output| 3;\n 4[\"Select\"];\n 1 -->|output| 4;\n 5[\"Get subontology from a given OBO term\"];\n 2 -->|output| 5;\n 6[\"Get subontology from a given OBO term\"];\n 2 -->|output| 6;\n 7[\"Get subontology from a given OBO term\"];\n 2 -->|output| 7;\n 8[\"Get subontology from a given OBO term\"];\n 2 -->|output| 8;\n 9[\"Get subontology from a given OBO term\"];\n 2 -->|output| 9;\n 10[\"WoLF PSORT\"];\n 3 -->|outfile_retrieve_fasta| 10;\n 11[\"Join\"];\n 0 -->|output| 11;\n 4 -->|out_file1| 11;\n 12[\"Get all the term IDs and term names of a given OBO ontology\"];\n 5 -->|output| 12;\n 13[\"Get all the term IDs and term names of a given OBO ontology\"];\n 6 -->|output| 13;\n 14[\"Get all the term IDs and term names of a given OBO ontology\"];\n 7 -->|output| 14;\n 15[\"Get all the term IDs and term names of a given OBO ontology\"];\n 8 -->|output| 15;\n 16[\"Get all the term IDs and term names of a given OBO ontology\"];\n 9 -->|output| 16;\n 17[\"Filter\"];\n 10 -->|tabular_file| 17;\n 18[\"Filter\"];\n 10 -->|tabular_file| 18;\n 19[\"Join\"];\n 12 -->|output| 19;\n 13 -->|output| 19;\n 20[\"Join\"];\n 14 -->|output| 20;\n 15 -->|output| 20;\n 21[\"Join\"];\n 17 -->|out_file1| 21;\n 18 -->|out_file1| 21;\n 22[\"Join\"];\n 19 -->|output| 22;\n 20 -->|output| 22;\n 23[\"Convert\"];\n 21 -->|output| 23;\n 24[\"Join\"];\n 22 -->|output| 24;\n 16 -->|output| 24;\n 25[\"Cut\"];\n 23 -->|out_file1| 25;\n 26[\"Compare two Datasets\"];\n 11 -->|output| 26;\n 24 -->|output| 26;\n 27[\"Unique\"];\n 26 -->|out_file1| 27;\n 28[\"Cut\"];\n 27 -->|outfile| 28;\n 29[\"Join\"];\n 25 -->|output| 29;\n 28 -->|output| 29;\n 30[\"Unique\"];\n 29 -->|output| 30;\n 14e0c6dc-436b-4c4c-9292-d5e00cca8c92[\"Output\\nSecretome proteins\"];\n 30 --> 14e0c6dc-436b-4c4c-9292-d5e00cca8c92;\n style 14e0c6dc-436b-4c4c-9292-d5e00cca8c92 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Secreted Proteins Via GO Annotation And WoLF PSORT For shCTSB Paper", + "outputs": [ + { + "annotation": "Input: Protein ID list\nFirst column has to be uniprot accessions", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Input: Protein ID list\nFirst column has to be uniprot accessions", + "name": "Custom Protein list (uniprot accession)" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 293, + "top": 377 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Custom Protein list (uniprot accession)\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4d60060c-188b-4a93-8320-36f9b43e5765", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "27022e50-f5dc-46b1-8b54-979f955eb050" + } + ] + }, + { + "annotation": "Input: Uniprot GO database file (choose the right organism)\nExample: ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/HUMAN/gene_association.goa_human.gz", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Input: Uniprot GO database file (choose the right organism)\nExample: ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/HUMAN/gene_association.goa_human.gz", + "name": "Uniprot GO database" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 290, + "top": 507 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Uniprot GO database\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e8f4a577-7b6a-4cd0-9a74-2e68c4ae6c5a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b8fa36c2-6bbf-40c1-a472-8d4a6a7096c3" + } + ] + }, + { + "annotation": "Input: Please downlad the Open Biomedical Ontology (OBO), i.e. \"GO term tree\" from\nhttp://purl.obolibrary.org/obo/go/go.obo", + "content_id": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Input: Please downlad the Open Biomedical Ontology (OBO), i.e. \"GO term tree\" from\nhttp://purl.obolibrary.org/obo/go/go.obo", + "name": "Open Biomedical Ontology (OBO)" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 293, + "top": 790 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Open Biomedical Ontology (OBO)\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0640e1c4-4d77-49da-8473-0018e0a5db09", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4725c10d-9e7a-4e3f-9874-c302c34687cb" + } + ] + }, + { + "annotation": "Final output. Unique entries of all proteins that are either predicted by WoLF PSORT to be shed or secreted or annotated in the GO database to be shed or secreted.", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.0.0", + "id": 30, + "input_connections": { + "infile": { + "id": 29, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unique", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 1964.75, + "top": 787.75 + }, + "post_job_actions": { + "RenameDatasetActionoutfile": { + "action_arguments": { + "newname": "secretome_proteins" + }, + "action_type": "RenameDatasetAction", + "output_name": "outfile" + } + }, + "tool_errors": null, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.0.0", + "tool_shed_repository": { + "changeset_revision": "288462ec2630", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": 0, \"ignore_case\": \"\\\"False\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"is_numeric\": \"\\\"False\\\"\", \"infile\": \"null\"}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "5ca3dd78-27ed-4f4f-95f6-c25fa4fd43b6", + "workflow_outputs": [ + { + "label": "Secretome proteins", + "output_name": "outfile", + "uuid": "14e0c6dc-436b-4c4c-9292-d5e00cca8c92" + } + ] + } + ], + "parent_id": "proteomics/secretome-prediction", + "path": "topics/proteomics/tutorials/secretome-prediction/workflows/WF_secretomePrediction_goWolfpsort.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Secreted Proteins Via GO Annotation And WoLF PSORT For shCTSB Paper", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-secretome-prediction/versions/wf-secretomeprediction-gowolfpsort", + "tutorial_id": "secretome-prediction", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/secretome-prediction/workflows/WF_secretomePrediction_goWolfpsort.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/secretome-prediction/workflows/WF_secretomePrediction_goWolfpsort.html", + "version": 3, + "wfid": "proteomics-secretome-prediction", + "wfname": "wf-secretomeprediction-gowolfpsort", + "workflow": "WF_secretomePrediction_goWolfpsort.ga", + "workflow_tools": [ + "Convert characters1", + "Filter1", + "Grep1", + "comp1", + "get_subontology_from", + "term_id_vs_term_name", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/uniprot_rest_interface/uniprot/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/unique/bg_uniq/0.3", + "toolshed.g2.bx.psu.edu/repos/peterjc/tmhmm_and_signalp/wolf_psort/0.0.8" + ], + "workflowhub_id": "1143" + } + ], + "zenodo_link": "https://zenodo.org/record/519260" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_data_exporter", + "owner": "galaxyp", + "revisions": "d94770c22f13", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cardinal_quality_report", + "owner": "galaxyp", + "revisions": "16556ca0196b", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_data_exporter\n owner: galaxyp\n revisions: d94770c22f13\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cardinal_quality_report\n owner: galaxyp\n revisions: 16556ca0196b\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data", + "edam_ontology": [ + "topic_0121" + ], + "edam_operation": [], + "edam_topic": [ + "Proteomics" + ], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/mass-spectrometry-imaging-loading-exploring-data", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "imzML (continuous or processed file type) and Analyze7.5 can be uploaded into Galaxy via the composite upload.", + "The MSI Qualitycontrol tool gives valuable information before starting the analysis.", + "The MSI data exporter can be used any time during the analysis when it is necessary to dig deeper into the data. Galaxy provides many text manipulation tools that can directly be applied on the exported tabular file to filter, sort, plot, ... the data." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "How to upload an imzML file into Galaxy", + "Getting an overview of the MSI data with the MSI quality control tool", + "How to export MSI data as tabular files" + ], + "pageviews": 3612, + "pub_date": "2018-11-27", + "questions": [ + "Did the tryptic digestions work?", + "Is there an intensity gradient in the data?", + "How good is the m/z accuracy?" + ], + "short_id": "T00217", + "short_tools": [ + "Grep1", + "cardinal_quality_report", + "tp_sort_header_tool", + "cardinal_data_exporter" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "special", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "mouse", + "imaging" + ], + "time_estimation": "45m", + "title": "Mass spectrometry imaging: Loading and exploring MSI data", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_data_exporter/cardinal_data_exporter/1.12.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/1.12.1.2" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mass-spectrometry-imaging-loading-exploring-data", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 104, + "visitors": 2232, + "workflows": [ + { + "creators": [], + "description": "Mass spectrometry imaging: Loading and exploring MSI data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmouse_kidney_cut.i\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ninternal calibrants.tab\"]\n 2[label=\"MSI data exporter\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"MSI Qualitycontrol\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Sort\"]\n 2 -> 4 [label=\"feature_output\"]\n 5[label=\"Select\"]\n 2 -> 5 [label=\"pixel_output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "862b5b0bcff3928a16de9b43d6061c689fef9d7b", + "message": "Rename MS_imaging_loading_exploring_data.ga to ms_imaging_loading_exploring_data.ga", + "num": 1, + "short_hash": "862b5b0bc", + "unix": "1551717714" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mouse_kidney_cut.i" + } + ], + "label": "mouse_kidney_cut.i", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 208.9204559326172, + "top": 239.99999237060547 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mouse_kidney_cut.i\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bd40d0ba-d5ce-496f-9988-c8be1f81a75d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "internal calibrants.tab" + } + ], + "label": "internal calibrants.tab", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.92897033691406, + "top": 417.0028305053711 + }, + "tool_id": null, + "tool_state": "{\"name\": \"internal calibrants.tab\"}", + "tool_version": null, + "type": "data_input", + "uuid": "15455ea4-e2cc-4872-a441-d40e979c7660", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nmouse_kidney_cut.i\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ninternal calibrants.tab\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"MSI data exporter\"];\n 0 -->|output| 2;\n 3[\"MSI Qualitycontrol\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 4[\"Sort\"];\n 2 -->|feature_output| 4;\n 5[\"Select\"];\n 2 -->|pixel_output| 5;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "MS Imaging Loading Exploring Data", + "outputs": [], + "parent_id": "proteomics/mass-spectrometry-imaging-loading-exploring-data", + "path": "topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/workflows/ms_imaging_loading_exploring_data.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "MS Imaging Loading Exploring Data", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-mass-spectrometry-imaging-loading-exploring-data/versions/ms-imaging-loading-exploring-data", + "tutorial_id": "mass-spectrometry-imaging-loading-exploring-data", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/workflows/ms_imaging_loading_exploring_data.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/mass-spectrometry-imaging-loading-exploring-data/workflows/ms_imaging_loading_exploring_data.html", + "version": 4, + "wfid": "proteomics-mass-spectrometry-imaging-loading-exploring-data", + "wfname": "ms-imaging-loading-exploring-data", + "workflow": "ms_imaging_loading_exploring_data.ga", + "workflow_tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_data_exporter/cardinal_data_exporter/1.12.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/cardinal_quality_report/cardinal_quality_report/1.12.1.2" + ], + "workflowhub_id": "1184" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1560645" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dbbuilder", + "owner": "galaxyp", + "revisions": "983bf725dfc2", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "revisions": "f546e7278f04", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pepquery2", + "owner": "galaxyp", + "revisions": "a07976bbc4d9", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "uniprotxml_downloader", + "owner": "galaxyp", + "revisions": "a371252a2cf6", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "cf34c344508d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dbbuilder\n owner: galaxyp\n revisions: 983bf725dfc2\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_merge_files_and_filter_unique_sequences\n owner: galaxyp\n revisions: f546e7278f04\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pepquery2\n owner: galaxyp\n revisions: a07976bbc4d9\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: uniprotxml_downloader\n owner: galaxyp\n revisions: a371252a2cf6\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: cf34c344508d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-3-verification/tutorial.json", + "contributions": { + "authorship": [ + "subinamehta", + "katherine-d21", + "dechendb" + ], + "editing": [ + "pratikdjagtap", + "timothygriffin" + ] + }, + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "id": "katherine-d21", + "joined": "2023-08", + "name": "Katherine Do", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherine-d21/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherine-d21.json" + }, + { + "id": "dechendb", + "joined": "2023-06", + "name": "Dechen Bhuming", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dechendb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dechendb.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + } + ], + "dir": "topics/proteomics/tutorials/clinical-mp-3-verification", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "clinical-mp-4-quantitation" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/clinical-mp-3-verification", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Perform verification", + "Extraction of accession numbers for getting protein sequences" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Verification of peptides helps in confirming the presence of the peptides in our samplle" + ], + "pageviews": 78, + "pub_date": "2024-02-06", + "questions": [ + "Why do we need to verify our identified peptides", + "What is the importance of making a new database for quantification" + ], + "recordings": [ + { + "captioners": [ + "katherine-d21" + ], + "date": "2024-06-21", + "galaxy_version": "23.1", + "length": "16M", + "speakers": [ + "katherine-d21" + ], + "youtube_id": "wCVzWMQANGE" + } + ], + "redirect_from": [ + "/topics/proteomics/tutorials/clinical-mp-data-verification/tutorial", + "/short/proteomics/clinical-mp-3-verification", + "/short/T00415" + ], + "requirements": [ + { + "topic_name": "proteomics", + "type": "internal" + } + ], + "short_id": "T00415", + "short_tools": [ + "Grouping1", + "pepquery2", + "uniprotxml_downloader", + "dbbuilder", + "tp_cat", + "Cut1", + "Filter1", + "query_tabular", + "Remove beginning1", + "fasta_merge_files_and_filter_unique_sequences", + "collapse_dataset" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "clinical-metaproteomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "label-TMT11" + ], + "time_estimation": "3H", + "title": "Clinical Metaproteomics 3: Verification", + "tools": [ + "Cut1", + "Filter1", + "Grouping1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pepquery2/pepquery2/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/uniprotxml_downloader/uniprotxml_downloader/2.4.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.3.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "clinical-mp-3-verification", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/clinical-mp-3-verification/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-3-verification/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-3-verification/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 634, + "visitors": 42, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + } + ], + "description": "WF3- Peptide verification/validaiton workflow", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Human UniProt+Isoforms FASTA\"]\n k4bdae9fbeb484821a806e7dd3a8c7101[color=lightseagreen,label=\"Output\\nHuman UniProt+Isoforms FASTA\"]\n 0 -> k4bdae9fbeb484821a806e7dd3a8c7101\n 1[label=\"cRAP\"]\n k13ddaf34d3464cc4b5b6fee2b5e0c1aa[color=lightseagreen,label=\"Output\\ncRAP\"]\n 1 -> k13ddaf34d3464cc4b5b6fee2b5e0c1aa\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput MGFs Dataset Collection\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSGPS_peptide-report\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDistinct Peptides for PepQuery\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMaxQuant-peptide-report\"]\n 6[label=\"Human UniProt+Isoforms+cRAP FASTA\"]\n 0 -> 6 [label=\"output_database\"]\n 1 -> 6 [label=\"output_database\"]\n k62c376eb85a349768024bd72ac528af3[color=lightseagreen,label=\"Output\\nHuman UniProt+Isoforms+cRAP FASTA\"]\n 6 -> k62c376eb85a349768024bd72ac528af3\n 7[label=\"Cut\"]\n 3 -> 7 [label=\"output\"]\n 8[label=\"Cut\"]\n 5 -> 8 [label=\"output\"]\n 9[label=\"PepQuery2\"]\n 6 -> 9 [label=\"output\"]\n 4 -> 9 [label=\"output\"]\n 2 -> 9 [label=\"output\"]\n 10[label=\"Remove beginning\"]\n 7 -> 10 [label=\"out_file1\"]\n 11[label=\"Remove beginning\"]\n 8 -> 11 [label=\"out_file1\"]\n 12[label=\"Collapse Collection\"]\n 9 -> 12 [label=\"psm_rank_txt\"]\n 13[label=\"Concatenate datasets\"]\n 10 -> 13 [label=\"out_file1\"]\n 11 -> 13 [label=\"out_file1\"]\n 14[label=\"Filter\"]\n 12 -> 14 [label=\"output\"]\n 15[label=\"Remove beginning\"]\n 14 -> 15 [label=\"out_file1\"]\n 16[label=\"Cut\"]\n 15 -> 16 [label=\"out_file1\"]\n 17[label=\"Peptide and Protein from Peptide reports\"]\n 16 -> 17 [label=\"out_file1\"]\n 13 -> 17 [label=\"out_file1\"]\n kbc4e33da40644b78bb155732b08b9316[color=lightseagreen,label=\"Output\\nPeptide and Protein from Peptide reports\"]\n 17 -> kbc4e33da40644b78bb155732b08b9316\n 18[label=\"Remove beginning\"]\n 17 -> 18 [label=\"output\"]\n 19[label=\"Group\"]\n 18 -> 19 [label=\"out_file1\"]\n 20[label=\"Uniprot-ID from verified Peptides\"]\n 19 -> 20 [label=\"out_file1\"]\n kcd6c81d81f444129b5052ee4dde10cd2[color=lightseagreen,label=\"Output\\nUniprot-ID from verified Peptides\"]\n 20 -> kcd6c81d81f444129b5052ee4dde10cd2\n 21[label=\"UniProt\"]\n 20 -> 21 [label=\"output\"]\n 22[label=\"Quantitation Database for MaxQuant\"]\n 0 -> 22 [label=\"output_database\"]\n 1 -> 22 [label=\"output_database\"]\n 21 -> 22 [label=\"proteome\"]\n ka52b5136db74496f9b66ec1064f2301d[color=lightseagreen,label=\"Output\\nQuantitation Database for MaxQuant\"]\n 22 -> ka52b5136db74496f9b66ec1064f2301d\n}", + "history": [ + { + "hash": "e0464fd1787b4ca7dea72ca77b7ab2ad03a8292a", + "message": "add workflows", + "num": 1, + "short_hash": "e0464fd17", + "unix": "1723118192" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input MGFs Dataset Collection" + } + ], + "label": "Input MGFs Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 26.467106653090468, + "top": 441.64657624309564 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "4c4f20b4-3fa6-48a2-b4b0-6480a0dd230a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SGPS_peptide-report" + } + ], + "label": "SGPS_peptide-report", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 49.219598040314054, + "top": 775.0615167366277 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2d7b777c-8bb9-4de8-af72-4cae64cd5eaf", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Distinct Peptides for PepQuery" + } + ], + "label": "Distinct Peptides for PepQuery", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 974.964669791108, + "top": 210.36937340005647 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "dbc1b4b1-bb63-4c13-8adb-d9a0febc8e17", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "MaxQuant-peptide-report" + } + ], + "label": "MaxQuant-peptide-report", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 29.12351833088178, + "top": 1007.203580787368 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2c07aebc-8b9e-4f4e-9020-9a50664ac648", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"Human UniProt+Isoforms FASTA\"];\n 4bdae9fb-eb48-4821-a806-e7dd3a8c7101[\"Output\\nHuman UniProt+Isoforms FASTA\"];\n 0 --> 4bdae9fb-eb48-4821-a806-e7dd3a8c7101;\n style 4bdae9fb-eb48-4821-a806-e7dd3a8c7101 stroke:#2c3143,stroke-width:4px;\n 1[\"cRAP\"];\n 13ddaf34-d346-4cc4-b5b6-fee2b5e0c1aa[\"Output\\ncRAP\"];\n 1 --> 13ddaf34-d346-4cc4-b5b6-fee2b5e0c1aa;\n style 13ddaf34-d346-4cc4-b5b6-fee2b5e0c1aa stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nInput MGFs Dataset Collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nSGPS_peptide-report\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nDistinct Peptides for PepQuery\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nMaxQuant-peptide-report\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"Human UniProt+Isoforms+cRAP FASTA\"];\n 0 -->|output_database| 6;\n 1 -->|output_database| 6;\n 62c376eb-85a3-4976-8024-bd72ac528af3[\"Output\\nHuman UniProt+Isoforms+cRAP FASTA\"];\n 6 --> 62c376eb-85a3-4976-8024-bd72ac528af3;\n style 62c376eb-85a3-4976-8024-bd72ac528af3 stroke:#2c3143,stroke-width:4px;\n 7[\"Cut\"];\n 3 -->|output| 7;\n 8[\"Cut\"];\n 5 -->|output| 8;\n 9[\"PepQuery2\"];\n 6 -->|output| 9;\n 4 -->|output| 9;\n 2 -->|output| 9;\n 10[\"Remove beginning\"];\n 7 -->|out_file1| 10;\n 11[\"Remove beginning\"];\n 8 -->|out_file1| 11;\n 12[\"Collapse Collection\"];\n 9 -->|psm_rank_txt| 12;\n 13[\"Concatenate datasets\"];\n 10 -->|out_file1| 13;\n 11 -->|out_file1| 13;\n 14[\"Filter\"];\n 12 -->|output| 14;\n 15[\"Remove beginning\"];\n 14 -->|out_file1| 15;\n 16[\"Cut\"];\n 15 -->|out_file1| 16;\n 17[\"Peptide and Protein from Peptide reports\"];\n 16 -->|out_file1| 17;\n 13 -->|out_file1| 17;\n bc4e33da-4064-4b78-bb15-5732b08b9316[\"Output\\nPeptide and Protein from Peptide reports\"];\n 17 --> bc4e33da-4064-4b78-bb15-5732b08b9316;\n style bc4e33da-4064-4b78-bb15-5732b08b9316 stroke:#2c3143,stroke-width:4px;\n 18[\"Remove beginning\"];\n 17 -->|output| 18;\n 19[\"Group\"];\n 18 -->|out_file1| 19;\n 20[\"Uniprot-ID from verified Peptides\"];\n 19 -->|out_file1| 20;\n cd6c81d8-1f44-4129-b505-2ee4dde10cd2[\"Output\\nUniprot-ID from verified Peptides\"];\n 20 --> cd6c81d8-1f44-4129-b505-2ee4dde10cd2;\n style cd6c81d8-1f44-4129-b505-2ee4dde10cd2 stroke:#2c3143,stroke-width:4px;\n 21[\"UniProt\"];\n 20 -->|output| 21;\n 22[\"Quantitation Database for MaxQuant\"];\n 0 -->|output_database| 22;\n 1 -->|output_database| 22;\n 21 -->|proteome| 22;\n a52b5136-db74-496f-9b66-ec1064f2301d[\"Output\\nQuantitation Database for MaxQuant\"];\n 22 --> a52b5136-db74-496f-9b66-ec1064f2301d;\n style a52b5136-db74-496f-9b66-ec1064f2301d stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "WF3_VERIFICATION_WORKFLOW", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Human UniProt+Isoforms FASTA", + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "left": 0, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionoutput_database": { + "action_arguments": { + "newname": "Human UniProt+Isoforms FASTA" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_database" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "tool_shed_repository": { + "changeset_revision": "983bf725dfc2", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"__workflow_invocation_uuid__\": \"08a702aa736d11ee91a5001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"uniprot\", \"__current_case__\": 0, \"taxon\": \"9606\", \"taxon_id\": null, \"reviewed\": \"\", \"set\": \"keyword:KW-1185\", \"include_isoform\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.4", + "type": "tool", + "uuid": "ff0bbbc9-35b4-44a6-b6bb-a1969ca01eb6", + "when": null, + "workflow_outputs": [ + { + "label": "Human UniProt+Isoforms FASTA", + "output_name": "output_database", + "uuid": "4bdae9fb-eb48-4821-a806-e7dd3a8c7101" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "cRAP", + "name": "Protein Database Downloader", + "outputs": [ + { + "name": "output_database", + "type": "fasta" + } + ], + "position": { + "left": 20.775440205938253, + "top": 196.89138890513698 + }, + "post_job_actions": { + "RenameDatasetActionoutput_database": { + "action_arguments": { + "newname": "cRAP" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_database" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "tool_shed_repository": { + "changeset_revision": "983bf725dfc2", + "name": "dbbuilder", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"data\", \"__workflow_invocation_uuid__\": \"08a702aa736d11ee91a5001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"source\": {\"from\": \"cRAP\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.3.4", + "type": "tool", + "uuid": "fa25fdbf-2cec-48fc-94f3-7c47888753b0", + "when": null, + "workflow_outputs": [ + { + "label": "cRAP", + "output_name": "output_database", + "uuid": "13ddaf34-d346-4cc4-b5b6-fee2b5e0c1aa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 6, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 0, + "output_name": "output_database" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 1, + "output_name": "output_database" + } + }, + "inputs": [], + "label": "Human UniProt+Isoforms+cRAP FASTA", + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 497.09213191562515, + "top": 177.90819833483664 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Human UniProt+Isoforms+cRAP FASTA" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"__workflow_invocation_uuid__\": \"08a702aa736d11ee91a5001e67d2ec02\", \"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"uniqueness_criterion\": \"sequence\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "67f1d2d4-d347-49ff-a941-885987a8254e", + "when": null, + "workflow_outputs": [ + { + "label": "Human UniProt+Isoforms+cRAP FASTA", + "output_name": "output", + "uuid": "62c376eb-85a3-4976-8024-bd72ac528af3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.3.0", + "errors": null, + "id": 17, + "input_connections": { + "tables_0|table": { + "id": 16, + "output_name": "out_file1" + }, + "tables_1|table": { + "id": 13, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Peptide and Protein from Peptide reports", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2219.7817115852936, + "top": 625.4286563925251 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Peptide and Protein from Peptide reports" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.3.0", + "tool_shed_repository": { + "changeset_revision": "cf34c344508d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"08a702aa736d11ee91a5001e67d2ec02\", \"add_to_database\": {\"withdb\": null}, \"addqueries\": {\"queries\": []}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"\"}, \"save_db\": false, \"sqlquery\": \"select pep.mpep, prot.prot\\nFROM pep\\nINNER JOIN prot on pep.mpep=prot.pep \", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"pep\", \"column_names_from_first_line\": false, \"col_names\": \"mpep\", \"load_named_columns\": false, \"pkey_autoincr\": \"\", \"indexes\": []}}, {\"__index__\": 1, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"prot\", \"column_names_from_first_line\": false, \"col_names\": \"pep,prot\", \"load_named_columns\": false, \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0", + "type": "tool", + "uuid": "93abe6e7-0034-460f-b517-418c4ed9d43a", + "when": null, + "workflow_outputs": [ + { + "label": "Peptide and Protein from Peptide reports", + "output_name": "output", + "uuid": "bc4e33da-4064-4b78-bb15-5732b08b9316" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.3.0", + "errors": null, + "id": 20, + "input_connections": { + "tables_0|table": { + "id": 19, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Uniprot-ID from verified Peptides", + "name": "Query Tabular", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 2545.114966014936, + "top": 878.0953618681222 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Uniprot-ID from verified Peptides" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.3.0", + "tool_shed_repository": { + "changeset_revision": "cf34c344508d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"08a702aa736d11ee91a5001e67d2ec02\", \"add_to_database\": {\"withdb\": null}, \"addqueries\": {\"queries\": []}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"no\", \"__current_case__\": 1}, \"save_db\": false, \"sqlquery\": \"SELECT distinct(prot) AS Accession \\nfrom t1\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"ConnectedValue\"}, \"input_opts\": {\"linefilters\": [{\"__index__\": 0, \"filter\": {\"filter_type\": \"normalize\", \"__current_case__\": 12, \"columns\": \"2\", \"separator\": \";\"}}, {\"__index__\": 1, \"filter\": {\"filter_type\": \"replace\", \"__current_case__\": 11, \"column\": \"2\", \"regex_pattern\": \"(tr|sp)[|]\", \"regex_replace\": \"\", \"add\": null}}, {\"__index__\": 2, \"filter\": {\"filter_type\": \"replace\", \"__current_case__\": 11, \"column\": \"2\", \"regex_pattern\": \"[ ]+\", \"regex_replace\": \"\", \"add\": null}}, {\"__index__\": 3, \"filter\": {\"filter_type\": \"replace\", \"__current_case__\": 11, \"column\": \"2\", \"regex_pattern\": \"[|].*$\", \"regex_replace\": \"\", \"add\": null}}, {\"__index__\": 4, \"filter\": {\"filter_type\": \"normalize\", \"__current_case__\": 12, \"columns\": \"2\", \"separator\": \",\"}}]}, \"tbl_opts\": {\"table_name\": \"t1\", \"column_names_from_first_line\": true, \"col_names\": \"pep,prot\", \"load_named_columns\": false, \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0", + "type": "tool", + "uuid": "fcf0a38b-8b4c-4b11-8152-ef3f5375b9e6", + "when": null, + "workflow_outputs": [ + { + "label": "Uniprot-ID from verified Peptides", + "output_name": "output", + "uuid": "cd6c81d8-1f44-4129-b505-2ee4dde10cd2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "errors": null, + "id": 22, + "input_connections": { + "batchmode|input_fastas_0|input_fasta": { + "id": 0, + "output_name": "output_database" + }, + "batchmode|input_fastas_1|input_fasta": { + "id": 1, + "output_name": "output_database" + }, + "batchmode|input_fastas_2|input_fasta": { + "id": 21, + "output_name": "proteome" + } + }, + "inputs": [], + "label": "Quantitation Database for MaxQuant", + "name": "FASTA Merge Files and Filter Unique Sequences", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 3070.223999018992, + "top": 1289.3686346167783 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Quantitation Database for MaxQuant" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "tool_shed_repository": { + "changeset_revision": "f546e7278f04", + "name": "fasta_merge_files_and_filter_unique_sequences", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"__workflow_invocation_uuid__\": \"08a702aa736d11ee91a5001e67d2ec02\", \"accession_parser\": \"^>([^ ]+).*$\", \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_fastas\": [{\"__index__\": 0, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 2, \"input_fasta\": {\"__class__\": \"ConnectedValue\"}}]}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"uniqueness_criterion\": \"sequence\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "a6060517-ee4f-4196-991f-6adf06e192c4", + "when": null, + "workflow_outputs": [ + { + "label": "Quantitation Database for MaxQuant", + "output_name": "output", + "uuid": "a52b5136-db74-496f-9b66-ec1064f2301d" + } + ] + } + ], + "parent_id": "proteomics/clinical-mp-3-verification", + "path": "topics/proteomics/tutorials/clinical-mp-3-verification/workflows/WF3_Verification_Workflow.ga", + "tags": [ + "name:clinicalMP" + ], + "test_results": null, + "tests": false, + "title": "WF3_VERIFICATION_WORKFLOW", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-clinical-mp-3-verification/versions/wf3-verification-workflow", + "tutorial_id": "clinical-mp-3-verification", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-3-verification/workflows/WF3_Verification_Workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-3-verification/workflows/WF3_Verification_Workflow.html", + "version": 1, + "wfid": "proteomics-clinical-mp-3-verification", + "wfname": "wf3-verification-workflow", + "workflow": "WF3_Verification_Workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "Grouping1", + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/dbbuilder/dbbuilder/0.3.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/fasta_merge_files_and_filter_unique_sequences/fasta_merge_files_and_filter_unique_sequences/1.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/pepquery2/pepquery2/2.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/uniprotxml_downloader/uniprotxml_downloader/2.4.0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.3.0", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0" + ], + "workflowhub_id": "1351" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.10105821" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "histogram", + "owner": "devteam", + "revisions": "6f134426c2b0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_falsediscoveryrate", + "owner": "galaxyp", + "revisions": "c9eff69a7c62", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_featurefindermultiplex", + "owner": "galaxyp", + "revisions": "5e948629bc73", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_fidoadapter", + "owner": "galaxyp", + "revisions": "658494a2cb00", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_fileinfo", + "owner": "galaxyp", + "revisions": "52ba9695e752", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idconflictresolver", + "owner": "galaxyp", + "revisions": "c28f13cab67a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idmapper", + "owner": "galaxyp", + "revisions": "39caaa778d2e", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idposteriorerrorprobability", + "owner": "galaxyp", + "revisions": "111c3a00136d", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idscoreswitcher", + "owner": "galaxyp", + "revisions": "be74a8cd7d66", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_multiplexresolver", + "owner": "galaxyp", + "revisions": "fb647b7cf2c1", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_peptideindexer", + "owner": "galaxyp", + "revisions": "dd173849c3d8", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_proteinquantifier", + "owner": "galaxyp", + "revisions": "16026cdb1330", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_textexporter", + "owner": "galaxyp", + "revisions": "9020199dba0a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_xtandemadapter", + "owner": "galaxyp", + "revisions": "7f6a1f27553e", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: histogram\n owner: devteam\n revisions: 6f134426c2b0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_falsediscoveryrate\n owner: galaxyp\n revisions: c9eff69a7c62\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_featurefindermultiplex\n owner: galaxyp\n revisions: 5e948629bc73\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_fidoadapter\n owner: galaxyp\n revisions: 658494a2cb00\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_fileinfo\n owner: galaxyp\n revisions: 52ba9695e752\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idconflictresolver\n owner: galaxyp\n revisions: c28f13cab67a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idmapper\n owner: galaxyp\n revisions: 39caaa778d2e\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idposteriorerrorprobability\n owner: galaxyp\n revisions: 111c3a00136d\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idscoreswitcher\n owner: galaxyp\n revisions: be74a8cd7d66\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_multiplexresolver\n owner: galaxyp\n revisions: fb647b7cf2c1\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_peptideindexer\n owner: galaxyp\n revisions: dd173849c3d8\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_proteinquantifier\n owner: galaxyp\n revisions: 16026cdb1330\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_textexporter\n owner: galaxyp\n revisions: 9020199dba0a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_xtandemadapter\n owner: galaxyp\n revisions: 7f6a1f27553e\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-quant-sil/tutorial.json", + "contributors": [ + { + "email": "sigloch+github@mailbox.org", + "former_affiliations": [ + "uni-freiburg" + ], + "id": "stortebecker", + "joined": "2017-09", + "name": "Florian Christoph Sigloch", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stortebecker/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stortebecker.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "email": "matthias.fahrner@uniklinik-freiburg.de", + "id": "matthias313", + "joined": "2019-03", + "name": "Matthias Fahrner", + "orcid": "0000-0001-7955-2518", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/matthias313/", + "twitter": "mfahrner313", + "url": "https://training.galaxyproject.org/training-material/api/contributors/matthias313.json" + } + ], + "dir": "topics/proteomics/tutorials/protein-quant-sil", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/protein-quant-sil", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": 8638, + "mermaid": false + }, + "key_points": [ + "Peptides labelled with stable isotopes result in multiple parallel MS1 ion traces.", + "MS1 features can be used for relative protein quantitation.", + "Quantitations have to be mapped to PSMs.", + "PSM quantitations can be used to calculate protein quantitations.", + "Proper quantitation and mapping needs careful evaluation and optimization." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "MS1 feature quantitation and mapping of quantitations to peptide and protein IDs." + ], + "pageviews": 1586, + "pub_date": "2017-03-17", + "questions": [ + "What are MS1 features?", + "How to quantify based on MS1 features?", + "How to map MS1 features to MS2 identifications?", + "How to evaluate and optimize the results?" + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "database-handling", + "protein-id-oms" + ], + "type": "internal" + } + ], + "short_id": "T00230", + "short_tools": [ + "Grep1", + "IDPosteriorErrorProbability", + "ProteinQuantifier", + "IDConflictResolver", + "FalseDiscoveryRate", + "FidoAdapter", + "TextExporter", + "tp_tail_tool", + "FeatureFinderMultiplex", + "IDScoreSwitcher", + "PeptideIndexer", + "MultiplexResolver", + "histogram_rpy", + "Summary_Statistics1", + "FileInfo", + "XTandemAdapter", + "IDMapper" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "DDA", + "SILAC" + ], + "time_estimation": "1h", + "title": "Peptide and Protein Quantification via Stable Isotope Labelling (SIL)", + "tools": [ + "Grep1", + "Summary_Statistics1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_featurefindermultiplex/FeatureFinderMultiplex/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idconflictresolver/IDConflictResolver/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idmapper/IDMapper/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_multiplexresolver/MultiplexResolver/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_proteinquantifier/ProteinQuantifier/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_textexporter/TextExporter/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.6+galaxy0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "protein-quant-sil", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/protein-quant-sil/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-quant-sil/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-quant-sil/tutorial.json" + }, + "version": 31, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 96, + "visitors": 1095, + "workflows": [ + { + "creators": [], + "description": "Peptide and Protein Quantification via Stable Isotope Labelling (SIL)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmzml raw file\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nfasta file\"]\n 2[label=\"FeatureFinderMultiplex\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"XTandemAdapter\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"FileInfo\"]\n 3 -> 4 [label=\"out\"]\n 5[label=\"PeptideIndexer\"]\n 1 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"out\"]\n 6[label=\"IDPosteriorErrorProbability\"]\n 5 -> 6 [label=\"out\"]\n 7[label=\"FalseDiscoveryRate\"]\n 6 -> 7 [label=\"out\"]\n 8[label=\"IDScoreSwitcher\"]\n 7 -> 8 [label=\"out\"]\n 9[label=\"FileInfo\"]\n 8 -> 9 [label=\"out\"]\n 10[label=\"FidoAdapter\"]\n 8 -> 10 [label=\"out\"]\n 11[label=\"FalseDiscoveryRate\"]\n 10 -> 11 [label=\"out\"]\n 12[label=\"FileInfo\"]\n 11 -> 12 [label=\"out\"]\n 13[label=\"TextExporter\"]\n 11 -> 13 [label=\"out\"]\n 14[label=\"IDMapper\"]\n 11 -> 14 [label=\"out\"]\n 2 -> 14 [label=\"out_multiplets\"]\n 15[label=\"Select\"]\n 13 -> 15 [label=\"out\"]\n 16[label=\"Select\"]\n 13 -> 16 [label=\"out\"]\n 17[label=\"IDConflictResolver\"]\n 14 -> 17 [label=\"out\"]\n 18[label=\"MultiplexResolver\"]\n 17 -> 18 [label=\"out\"]\n 19[label=\"ProteinQuantifier\"]\n 18 -> 19 [label=\"out\"]\n 11 -> 19 [label=\"out\"]\n 20[label=\"Summary Statistics\"]\n 19 -> 20 [label=\"out\"]\n 21[label=\"Select last\"]\n 19 -> 21 [label=\"out\"]\n 22[label=\"Histogram\"]\n 21 -> 22 [label=\"outfile\"]\n}", + "history": [ + { + "hash": "54b4d9fcc78b1394f71f7affd51ca15e83b211d5", + "message": "Adding tags to workflows", + "num": 11, + "short_hash": "54b4d9fcc", + "unix": "1604224600" + }, + { + "hash": "ca84d739509bdb1ef8f3cfc64c15242ef0363407", + "message": "Updating Tutorials to OpenMS 2.6, adjusting of parameters and tools, adding tool versions", + "num": 10, + "short_hash": "ca84d7395", + "unix": "1604176914" + }, + { + "hash": "c5002c655c4206fb1d6712d1c1543f9b7ea2e3cb", + "message": "protein-quant-sil", + "num": 9, + "short_hash": "c5002c655", + "unix": "1601688681" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 8, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 7, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "e42145c47e6b093c441a431ec3c5671b7ddfc176", + "message": "Updated workflow", + "num": 6, + "short_hash": "e42145c47", + "unix": "1553096121" + }, + { + "hash": "3a0757df3e7b39d74c5e9e124018710702ca0ab0", + "message": "Enabled FFMult advanced options without changing any parameter", + "num": 5, + "short_hash": "3a0757df3", + "unix": "1511966670" + }, + { + "hash": "66e504fe259577c3473db9b51c320674d62eb504", + "message": "Workaround for ProteinQuantifier bug: changed '-include_all' to TRUE", + "num": 4, + "short_hash": "66e504fe2", + "unix": "1511867833" + }, + { + "hash": "ed8674c45632a609171092f22c9e16fbb69e1342", + "message": "Updated workflow parameters", + "num": 3, + "short_hash": "ed8674c45", + "unix": "1511865952" + }, + { + "hash": "c7d698525c66e52498ec708408d5045883619da2", + "message": "Fill workflow file with an empty workflow", + "num": 2, + "short_hash": "c7d698525", + "unix": "1496938362" + }, + { + "hash": "2c1271b670d336517fb123fb632ce13c93c40465", + "message": "Restructure proteomics", + "num": 1, + "short_hash": "2c1271b67", + "unix": "1495544862" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mzml raw file" + } + ], + "label": "mzml raw file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 307.1999969482422, + "height": 82.19999694824219, + "left": -1679, + "right": -1479, + "top": 225, + "width": 200, + "x": -1679, + "y": 225 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a2382c96-bff3-4807-bbb7-20f74d014134", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "da762be8-3c8c-42a9-b749-8a38a004b944" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "fasta file" + } + ], + "label": "fasta file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 466.8000030517578, + "height": 61.80000305175781, + "left": -1680, + "right": -1480, + "top": 405, + "width": 200, + "x": -1680, + "y": 405 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "94c0bbb8-89a2-43a2-980b-65f44c21aa51", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c9862313-9f50-4042-a35a-7db1f3af9a4d" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nmzml raw file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nfasta file\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"FeatureFinderMultiplex\"];\n 0 -->|output| 2;\n 3[\"XTandemAdapter\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 4[\"FileInfo\"];\n 3 -->|out| 4;\n 5[\"PeptideIndexer\"];\n 1 -->|output| 5;\n 3 -->|out| 5;\n 6[\"IDPosteriorErrorProbability\"];\n 5 -->|out| 6;\n 7[\"FalseDiscoveryRate\"];\n 6 -->|out| 7;\n 8[\"IDScoreSwitcher\"];\n 7 -->|out| 8;\n 9[\"FileInfo\"];\n 8 -->|out| 9;\n 10[\"FidoAdapter\"];\n 8 -->|out| 10;\n 11[\"FalseDiscoveryRate\"];\n 10 -->|out| 11;\n 12[\"FileInfo\"];\n 11 -->|out| 12;\n 13[\"TextExporter\"];\n 11 -->|out| 13;\n 14[\"IDMapper\"];\n 11 -->|out| 14;\n 2 -->|out_multiplets| 14;\n 15[\"Select\"];\n 13 -->|out| 15;\n 16[\"Select\"];\n 13 -->|out| 16;\n 17[\"IDConflictResolver\"];\n 14 -->|out| 17;\n 18[\"MultiplexResolver\"];\n 17 -->|out| 18;\n 19[\"ProteinQuantifier\"];\n 18 -->|out| 19;\n 11 -->|out| 19;\n 20[\"Summary Statistics\"];\n 19 -->|out| 20;\n 21[\"Select last\"];\n 19 -->|out| 21;\n 22[\"Histogram\"];\n 21 -->|outfile| 22;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Proteomics: Peptide and Protein Quantification via stable istobe labeling", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mzml raw file" + } + ], + "label": "mzml raw file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 307.1999969482422, + "height": 82.19999694824219, + "left": -1679, + "right": -1479, + "top": 225, + "width": 200, + "x": -1679, + "y": 225 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a2382c96-bff3-4807-bbb7-20f74d014134", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "da762be8-3c8c-42a9-b749-8a38a004b944" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "fasta file" + } + ], + "label": "fasta file", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 466.8000030517578, + "height": 61.80000305175781, + "left": -1680, + "right": -1480, + "top": 405, + "width": 200, + "x": -1680, + "y": 405 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "94c0bbb8-89a2-43a2-980b-65f44c21aa51", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c9862313-9f50-4042-a35a-7db1f3af9a4d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_featurefindermultiplex/FeatureFinderMultiplex/2.6+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "in": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FeatureFinderMultiplex", + "outputs": [ + { + "name": "out_multiplets", + "type": "consensusxml" + } + ], + "position": { + "bottom": 587.1999969482422, + "height": 195.1999969482422, + "left": -1373, + "right": -1173, + "top": 392, + "width": 200, + "x": -1373, + "y": 392 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_featurefindermultiplex/FeatureFinderMultiplex/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5e5771b511a3", + "name": "openms_featurefindermultiplex", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": [\"out_multiplets_FLAG\"], \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"algorithm\": {\"labels\": \"[ ][Arg6,Lys6]\", \"charge\": \"1:4\", \"isotopes_per_peptide\": \"3:6\", \"rt_typical\": \"40.0\", \"rt_band\": \"0.0\", \"rt_min\": \"2.0\", \"mz_tolerance\": \"10.0\", \"mz_unit\": \"ppm\", \"intensity_cutoff\": \"1000.0\", \"peptide_similarity\": \"0.5\", \"averagine_similarity\": \"0.4\", \"averagine_similarity_scaling\": \"0.95\", \"missed_cleavages\": \"1\", \"spectrum_type\": \"automatic\", \"averagine_type\": \"peptide\", \"knock_out\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"labels\": {\"Arg6\": \"6.0201290268\", \"Arg10\": \"10.0082686\", \"Lys4\": \"4.0251069836\", \"Lys6\": \"6.0201290268\", \"Lys8\": \"8.0141988132\", \"Leu3\": \"3.01883\", \"Dimethyl0\": \"28.0313\", \"Dimethyl4\": \"32.056407\", \"Dimethyl6\": \"34.063117\", \"Dimethyl8\": \"36.07567\", \"ICPL0\": \"105.021464\", \"ICPL4\": \"109.046571\", \"ICPL6\": \"111.041593\", \"ICPL10\": \"115.0667\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "eaa992c7-823d-46df-8e6c-161733ed043c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_multiplets", + "uuid": "c4519437-723f-4033-884e-90686600a9cd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.6+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "database": { + "id": 1, + "output_name": "output" + }, + "in": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "XTandemAdapter", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 317.1999969482422, + "height": 215.1999969482422, + "left": -1381, + "right": -1181, + "top": 102, + "width": 200, + "x": -1381, + "y": 102 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1add9bacdccd", + "name": "openms_xtandemadapter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": [\"out_FLAG\"], \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"database\": {\"__class__\": \"ConnectedValue\"}, \"default_config_file\": null, \"enzyme\": \"Trypsin\", \"fixed_modifications\": [\"Carbamidomethyl (C)\"], \"fragment_error_units\": \"ppm\", \"fragment_mass_tolerance\": \"10.0\", \"ignore_adapter_param\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"max_precursor_charge\": \"4\", \"max_valid_expect\": \"0.1\", \"minimum_fragment_mz\": \"150.0\", \"missed_cleavages\": \"1\", \"no_isotope_error\": \"false\", \"output_results\": \"all\", \"precursor_error_units\": \"ppm\", \"precursor_mass_tolerance\": \"10.0\", \"semi_cleavage\": \"false\", \"variable_modifications\": [\"Label:13C(6) (K)\", \"Label:13C(6) (R)\", \"Oxidation (M)\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "0118ed37-ce01-4abd-9551-e84807f0b008", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "2c114d65-1bd5-451a-9cd3-eaa334d3000b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "in": { + "id": 3, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FileInfo", + "outputs": [ + { + "name": "out", + "type": "txt" + } + ], + "position": { + "bottom": 385.6000061035156, + "height": 113.60000610351562, + "left": -1153, + "right": -953, + "top": 272, + "width": 200, + "x": -1153, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e8dce5e07fa5", + "name": "openms_fileinfo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"c\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"d\": \"false\", \"i\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"false\", \"p\": \"false\", \"s\": \"false\", \"v\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "a2a5218c-cdd7-4d84-904a-4fe5d9763927", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "4d3e6847-d51d-410f-9bbf-168ab598b108" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.6+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "fasta": { + "id": 1, + "output_name": "output" + }, + "in": { + "id": 3, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "PeptideIndexer", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 597.1999969482422, + "height": 205.1999969482422, + "left": -1153, + "right": -953, + "top": 392, + "width": 200, + "x": -1153, + "y": 392 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d8ee5700c66b", + "name": "openms_peptideindexer", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"IL_equivalent\": \"false\", \"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"aaa_max\": \"3\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"decoy_string\": \"\", \"decoy_string_position\": \"prefix\", \"enzyme\": {\"name\": \"auto\", \"specificity\": \"none\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"in\": {\"__class__\": \"ConnectedValue\"}, \"keep_unreferenced_proteins\": \"false\", \"mismatches_max\": \"0\", \"missing_decoy_action\": \"error\", \"unmatched_action\": \"error\", \"write_protein_description\": \"true\", \"write_protein_sequence\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "d7e47129-c738-4174-b7e4-4d387a5b24f1", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "dc35fedb-9094-4984-9936-0aeb83d98e72" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "in": { + "id": 5, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "IDPosteriorErrorProbability", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 446.8000030517578, + "height": 174.8000030517578, + "left": -933, + "right": -733, + "top": 272, + "width": 200, + "x": -933, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "711a081d80ba", + "name": "openms_idposteriorerrorprobability", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fit_algorithm\": {\"number_of_bins\": \"100\", \"incorrectly_assigned\": \"Gumbel\", \"max_nr_iterations\": \"1000\", \"neg_log_delta\": \"6\", \"outlier_handling\": \"ignore_iqr_outliers\"}, \"ignore_bad_data\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"prob_correct\": \"true\", \"split_charge\": \"false\", \"top_hits_only\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "3d87b974-366d-4ffa-b626-bb0c63bef28e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "c24e8bab-c848-46d1-b469-2537f21d4b69" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "in": { + "id": 6, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FalseDiscoveryRate", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 446.8000030517578, + "height": 174.8000030517578, + "left": -713, + "right": -513, + "top": 272, + "width": 200, + "x": -713, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "469690558892", + "name": "openms_falsediscoveryrate", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"FDR\": {\"PSM\": \"0.01\", \"protein\": \"1.0\", \"cleanup\": {\"remove_proteins_without_psms\": \"true\", \"remove_psms_without_proteins\": \"true\", \"remove_spectra_without_psms\": \"true\"}}, \"OPTIONAL_OUTPUTS\": null, \"PSM\": \"true\", \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"algorithm\": {\"no_qvalues\": \"false\", \"use_all_hits\": \"false\", \"split_charge_variants\": \"false\", \"treat_runs_separately\": \"false\", \"add_decoy_peptides\": \"true\", \"add_decoy_proteins\": \"false\", \"conservative\": \"true\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"protein\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "b9a62ef4-7758-41ed-a57f-07a761f34ea7", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "13259070-1f50-4f87-84b0-c1d3640db605" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.6+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "in": { + "id": 7, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "IDScoreSwitcher", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 406, + "height": 134, + "left": -493, + "right": -293, + "top": 272, + "width": 200, + "x": -493, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ec0d05b20eed", + "name": "openms_idscoreswitcher", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"new_score\": \"Posterior Probability_score\", \"new_score_orientation\": \"higher_better\", \"new_score_type\": \"\", \"old_score\": \"\", \"proteins\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "659bd32d-fbc8-4c81-a48e-6f1c118b9416", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "01759e5a-51ec-4358-89bf-040a35560402" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "in": { + "id": 8, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FileInfo", + "outputs": [ + { + "name": "out", + "type": "txt" + } + ], + "position": { + "bottom": 385.6000061035156, + "height": 113.60000610351562, + "left": -273, + "right": -73, + "top": 272, + "width": 200, + "x": -273, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e8dce5e07fa5", + "name": "openms_fileinfo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"c\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"d\": \"false\", \"i\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"false\", \"p\": \"false\", \"s\": \"false\", \"v\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "a871c553-362d-4e80-bbdb-9cb7b866e370", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "21b6c69b-b138-4db8-9950-de68dac93a05" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.6+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "in": { + "id": 8, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FidoAdapter", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 505.6000061035156, + "height": 113.60000610351562, + "left": -273, + "right": -73, + "top": 392, + "width": 200, + "x": -273, + "y": 392 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c3a5cd016963", + "name": "openms_fidoadapter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"all_PSMs\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"greedy_group_resolution\": \"true\", \"group_level\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"log2_states\": \"0\", \"no_cleanup\": \"false\", \"prob\": {\"protein\": \"0.0\", \"peptide\": \"0.0\", \"spurious\": \"0.0\"}, \"separate_runs\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "404e63ae-e855-4cef-9352-8fcb43de3f13", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "e1a8b9e2-3fe9-4c6d-b8c7-b292ce47374f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "in": { + "id": 10, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FalseDiscoveryRate", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 446.8000030517578, + "height": 174.8000030517578, + "left": -53, + "right": 147, + "top": 272, + "width": 200, + "x": -53, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "469690558892", + "name": "openms_falsediscoveryrate", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"FDR\": {\"PSM\": \"1.0\", \"protein\": \"0.01\", \"cleanup\": {\"remove_proteins_without_psms\": \"true\", \"remove_psms_without_proteins\": \"true\", \"remove_spectra_without_psms\": \"true\"}}, \"OPTIONAL_OUTPUTS\": null, \"PSM\": \"false\", \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"algorithm\": {\"no_qvalues\": \"false\", \"use_all_hits\": \"false\", \"split_charge_variants\": \"false\", \"treat_runs_separately\": \"false\", \"add_decoy_peptides\": \"false\", \"add_decoy_proteins\": \"false\", \"conservative\": \"true\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"protein\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "886f5485-8805-494f-99aa-f50c7c84e156", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "a047eec1-fc49-4adb-a48b-eebfcf86b4ba" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "in": { + "id": 11, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FileInfo", + "outputs": [ + { + "name": "out", + "type": "txt" + } + ], + "position": { + "bottom": 385.6000061035156, + "height": 113.60000610351562, + "left": 167, + "right": 367, + "top": 272, + "width": 200, + "x": 167, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e8dce5e07fa5", + "name": "openms_fileinfo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"c\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"d\": \"false\", \"i\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"false\", \"p\": \"false\", \"s\": \"false\", \"v\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "d13e8538-3432-4a00-9cca-7e8280947bb9", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "28b66dcf-19db-4d93-959d-ec6af66ed496" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_textexporter/TextExporter/2.6+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "in": { + "id": 11, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "TextExporter", + "outputs": [ + { + "name": "out", + "type": "tabular" + } + ], + "position": { + "bottom": 505.6000061035156, + "height": 113.60000610351562, + "left": 167, + "right": 367, + "top": 392, + "width": 200, + "x": 167, + "y": 392 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_textexporter/TextExporter/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1c596fdaf34a", + "name": "openms_textexporter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"consensus\": {\"sorting_method\": \"none\", \"sort_by_maps\": \"false\", \"sort_by_size\": \"false\"}, \"feature\": {\"minimal\": \"false\", \"add_metavalues\": \"-1\"}, \"id\": {\"proteins_only\": \"false\", \"peptides_only\": \"false\", \"protein_groups\": \"false\", \"first_dim_rt\": \"false\", \"add_metavalues\": \"-1\", \"add_hit_metavalues\": \"-1\", \"add_protein_hit_metavalues\": \"-1\"}, \"in\": {\"__class__\": \"ConnectedValue\"}, \"no_ids\": \"false\", \"quoting\": \"none\", \"replacement\": \"_\", \"separator\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "e206c716-a374-4810-a560-e57e6761aa2c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "b9156da0-a6b3-47d9-a352-836aee0451bc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idmapper/IDMapper/2.6+galaxy0", + "errors": null, + "id": 14, + "input_connections": { + "id": { + "id": 11, + "output_name": "out" + }, + "in": { + "id": 2, + "output_name": "out_multiplets" + } + }, + "inputs": [], + "label": null, + "name": "IDMapper", + "outputs": [ + { + "name": "out", + "type": "input" + } + ], + "position": { + "bottom": 788.3999938964844, + "height": 276.3999938964844, + "left": 167, + "right": 367, + "top": 512, + "width": 200, + "x": 167, + "y": 512 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idmapper/IDMapper/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2517c03f5cd3", + "name": "openms_idmapper", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"consensus\": {\"use_subelements\": \"true\", \"annotate_ids_with_subelements\": \"true\"}, \"feature\": {\"use_centroid_rt\": \"false\", \"use_centroid_mz\": \"true\"}, \"id\": {\"__class__\": \"ConnectedValue\"}, \"in\": {\"__class__\": \"ConnectedValue\"}, \"mz_measure\": \"ppm\", \"mz_reference\": \"peptide\", \"mz_tolerance\": \"10.0\", \"rt_tolerance\": \"20.0\", \"spectra\": {\"_in\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "f368bcfb-dcd6-4006-b0fb-54684f73f36c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "2385a34d-3bf9-4b1e-8c09-ececeec35479" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 13, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 365.1999969482422, + "height": 93.19999694824219, + "left": 387, + "right": 587, + "top": 272, + "width": 200, + "x": 387, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"CONTAMINANT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "bd3098ce-6f2f-4c3d-8580-35a559c5a07b", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "57f19087-b67a-40f4-9fcd-ab338a853e59" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 13, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 485.1999969482422, + "height": 93.19999694824219, + "left": 387, + "right": 587, + "top": 392, + "width": 200, + "x": 387, + "y": 392 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"9603dea81b7711eb9fdd001b21d75532\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"HUMAN\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "24029aca-9eb6-423a-9474-b05961073a01", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "19884cc2-1a3c-4f84-ab1d-192c8238ecd1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idconflictresolver/IDConflictResolver/2.6+galaxy0", + "errors": null, + "id": 17, + "input_connections": { + "in": { + "id": 14, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "IDConflictResolver", + "outputs": [ + { + "name": "out", + "type": "input" + } + ], + "position": { + "bottom": 666.3999938964844, + "height": 154.39999389648438, + "left": 387, + "right": 587, + "top": 512, + "width": 200, + "x": 387, + "y": 512 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idconflictresolver/IDConflictResolver/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "fb0e6f70a1df", + "name": "openms_idconflictresolver", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"resolve_between_features\": \"off\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "29e2c398-4df7-40c8-8fa7-b03eaeb86eb7", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "b261502d-5f97-4263-b79e-575000d63c07" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_multiplexresolver/MultiplexResolver/2.5+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "in": { + "id": 17, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "MultiplexResolver", + "outputs": [ + { + "name": "out", + "type": "consensusxml" + } + ], + "position": { + "bottom": 538.3999938964844, + "height": 266.3999938964844, + "left": 607, + "right": 807, + "top": 272, + "width": 200, + "x": 607, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_multiplexresolver/MultiplexResolver/2.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "fb647b7cf2c1", + "name": "openms_multiplexresolver", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"algorithm\": {\"labels\": \"[ ][Arg6,Lys6]\", \"missed_cleavages\": \"1\", \"mass_tolerance\": \"0.1\", \"mz_tolerance\": \"10\", \"rt_tolerance\": \"5\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"in_blacklist\": null, \"labels\": {\"Arg6\": \"6.0201290268\", \"Arg10\": \"10.0082686\", \"Lys4\": \"4.0251069836\", \"Lys6\": \"6.0201290268\", \"Lys8\": \"8.0141988132\", \"Leu3\": \"3.01883\", \"Dimethyl0\": \"28.0313\", \"Dimethyl4\": \"32.056407\", \"Dimethyl6\": \"34.063117\", \"Dimethyl8\": \"36.07567\", \"ICPL0\": \"105.021464\", \"ICPL4\": \"109.046571\", \"ICPL6\": \"111.041593\", \"ICPL10\": \"115.0667\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.5+galaxy0", + "type": "tool", + "uuid": "c8cead64-a291-4bbc-b400-df3b0c87cb05", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "2d191fe3-d682-4bc1-ac64-f5a5a2cdc04a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_proteinquantifier/ProteinQuantifier/2.6+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "in": { + "id": 18, + "output_name": "out" + }, + "protein_groups": { + "id": 11, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "ProteinQuantifier", + "outputs": [ + { + "name": "out", + "type": "csv" + }, + { + "name": "peptide_out", + "type": "csv" + } + ], + "position": { + "bottom": 619.6000061035156, + "height": 347.6000061035156, + "left": 827, + "right": 1027, + "top": 272, + "width": 200, + "x": 827, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_proteinquantifier/ProteinQuantifier/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "bb1e75938909", + "name": "openms_proteinquantifier", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": [\"out_FLAG\", \"peptide_out_FLAG\"], \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"average\": \"sum\", \"best_charge_and_fraction\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"consensus\": {\"normalize\": \"false\", \"fix_peptides\": \"false\"}, \"design\": null, \"format\": {\"separator\": \"\", \"quoting\": \"double\", \"replacement\": \"_\"}, \"greedy_group_resolution\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"include_all\": \"false\", \"protein_groups\": {\"__class__\": \"ConnectedValue\"}, \"ratios\": \"true\", \"ratiosSILAC\": \"false\", \"top\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "f45eb629-cead-420b-b277-a1d9dd781c70", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "69c464ef-cf41-4bd2-b8ea-e10560b8d6fd" + }, + { + "label": null, + "output_name": "peptide_out", + "uuid": "a9eeea33-4858-402a-a526-4ce950474f6f" + } + ] + }, + { + "annotation": "", + "content_id": "Summary_Statistics1", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 19, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "Summary Statistics", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 385.6000061035156, + "height": 113.60000610351562, + "left": 1047, + "right": 1247, + "top": 272, + "width": 200, + "x": 1047, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "Summary_Statistics1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c8\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "2271282e-d599-4d40-9b0c-42adb142874f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "ed52356c-4179-444a-9761-f7c0edf4c642" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "errors": null, + "id": 21, + "input_connections": { + "infile": { + "id": 19, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "Select last", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 485.1999969482422, + "height": 93.19999694824219, + "left": 1047, + "right": 1247, + "top": 392, + "width": 200, + "x": 1047, + "y": 392 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"csv\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"complement\": \"+\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"num_lines\": \"4\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "522bc5dc-d39a-4448-b887-848bb5cf5c55", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "52919249-1fb8-4481-95fc-ba6c40d4399c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "errors": null, + "id": 22, + "input_connections": { + "input": { + "id": 21, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Histogram", + "outputs": [ + { + "name": "out_file1", + "type": "pdf" + } + ], + "position": { + "bottom": 365.1999969482422, + "height": 93.19999694824219, + "left": 1267, + "right": 1467, + "top": 272, + "width": 200, + "x": 1267, + "y": 272 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "tool_shed_repository": { + "changeset_revision": "6f134426c2b0", + "name": "histogram", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"breaks\": \"20\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"density\": \"true\", \"frequency\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"numerical_column\": \"8\", \"title\": \"Histogram\", \"xlab\": \"V1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "67a0985f-236d-4b84-a51e-86c4cbf657b4", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "11f0da6d-4f57-487a-ae21-042b1d8badf6" + } + ] + } + ], + "parent_id": "proteomics/protein-quant-sil", + "path": "topics/proteomics/tutorials/protein-quant-sil/workflows/workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": true, + "title": "Proteomics: Peptide and Protein Quantification via stable istobe labeling", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-quant-sil/versions/workflow", + "tutorial_id": "protein-quant-sil", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-quant-sil/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-quant-sil/workflows/workflow.html", + "version": 7, + "wfid": "proteomics-protein-quant-sil", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "Grep1", + "Summary_Statistics1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_featurefindermultiplex/FeatureFinderMultiplex/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idconflictresolver/IDConflictResolver/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idmapper/IDMapper/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_multiplexresolver/MultiplexResolver/2.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_proteinquantifier/ProteinQuantifier/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_textexporter/TextExporter/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.6+galaxy0" + ], + "workflowhub_id": "1215" + } + ], + "zenodo_link": "https://zenodo.org/record/1051552" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "maxquant", + "owner": "galaxyp", + "revisions": "1f39c833f65f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: maxquant\n owner: galaxyp\n revisions: 1f39c833f65f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-4-quantitation/tutorial.json", + "contributions": { + "authorship": [ + "subinamehta", + "katherine-d21", + "dechendb" + ], + "editing": [ + "pratikdjagtap", + "timothygriffin" + ] + }, + "contributors": [ + { + "email": "subinamehta@gmail.com", + "id": "subinamehta", + "joined": "2018-06", + "linkedin": "subinamehta", + "matrix": "subinamehta:matrix.org", + "name": "Subina Mehta", + "orcid": "0000-0001-9818-0537", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/subinamehta/", + "twitter": "Subina_Mehta", + "url": "https://training.galaxyproject.org/training-material/api/contributors/subinamehta.json" + }, + { + "id": "katherine-d21", + "joined": "2023-08", + "name": "Katherine Do", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherine-d21/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherine-d21.json" + }, + { + "id": "dechendb", + "joined": "2023-06", + "name": "Dechen Bhuming", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dechendb/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dechendb.json" + }, + { + "email": "pjagtap@umn.edu", + "id": "pratikdjagtap", + "joined": "2017-09", + "name": "Pratik Jagtap", + "orcid": "0000-0003-0984-0973", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pratikdjagtap/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pratikdjagtap.json" + }, + { + "email": "tgriffin@umn.edu", + "github": false, + "id": "timothygriffin", + "joined": "2017-09", + "name": "Timothy J. Griffin", + "orcid": "0000-0001-6801-2559", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timothygriffin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timothygriffin.json" + } + ], + "dir": "topics/proteomics/tutorials/clinical-mp-4-quantitation", + "edam_operation": [ + "Visualisation", + "Imputation", + "Heat map generation", + "Standardisation and normalisation", + "Principal component plotting", + "Protein quantification", + "Clustering", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "clinical-mp-5-data-interpretation" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/clinical-mp-4-quantitation", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Quantified Microbial and Human peptides/proteins can be analyzed separately so that the results are more comparative." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-08", + "objectives": [ + "Perform quantitation using MaxQuant and extract microbial and human proteins and peptides." + ], + "pageviews": 66, + "pub_date": "2024-02-06", + "questions": [ + "How to perform quantitation?" + ], + "recordings": [ + { + "captioners": [ + "katherine-d21" + ], + "date": "2024-06-21", + "galaxy_version": "23.1", + "length": "8M", + "speakers": [ + "katherine-d21" + ], + "youtube_id": "_e0l1AtfZ4Y" + } + ], + "redirect_from": [ + "/topics/proteomics/tutorials/clinical-mp-quantitation/tutorial", + "/short/proteomics/clinical-mp-4-quantitation", + "/short/T00416" + ], + "requirements": [ + { + "topic_name": "proteomics", + "type": "internal" + } + ], + "short_id": "T00416", + "short_tools": [ + "Grep1", + "Cut1", + "Grouping1", + "maxquant" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "clinical-metaproteomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "label-TMT11" + ], + "time_estimation": "3H", + "title": "Clinical Metaproteomics 4: Quantitation", + "tools": [ + "Cut1", + "Grep1", + "Grouping1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.17.0+galaxy4" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "clinical-mp-4-quantitation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/clinical-mp-4-quantitation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-4-quantitation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/clinical-mp-4-quantitation/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 331, + "visitors": 40, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "identifier": "0000-0001-9818-0537", + "name": "Subina Mehta" + } + ], + "description": "Quantification using the MaxQuant tool", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nQuantitation_Database-For-MaxQuant\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nExperimental-Design Discovery MaxQuant\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Raw-files\"]\n 3[label=\"MaxQuant\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Select\"]\n 3 -> 4 [label=\"proteinGroups\"]\n 5[label=\"Select\"]\n 3 -> 5 [label=\"peptides\"]\n 6[label=\"Cut\"]\n 4 -> 6 [label=\"out_file1\"]\n 7[label=\"Cut\"]\n 5 -> 7 [label=\"out_file1\"]\n 8[label=\"Group\"]\n 6 -> 8 [label=\"out_file1\"]\n 9[label=\"Group\"]\n 7 -> 9 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "40391e78410baebc3f2ffd02ffbd1a3642903251", + "message": "add missing metadata", + "num": 2, + "short_hash": "40391e784", + "unix": "1723120010" + }, + { + "hash": "e0464fd1787b4ca7dea72ca77b7ab2ad03a8292a", + "message": "add workflows", + "num": 1, + "short_hash": "e0464fd17", + "unix": "1723118192" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Quantitation_Database-For-MaxQuant" + } + ], + "label": "Quantitation_Database-For-MaxQuant", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c2311b55-b0c7-4237-bed1-4b25bf1a1655", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Experimental-Design Discovery MaxQuant" + } + ], + "label": "Experimental-Design Discovery MaxQuant", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 69.76104736328125, + "top": 268.9728088378906 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d957f00d-79a9-4e2e-8e15-088444ca5605", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Raw-files" + } + ], + "label": "Input Raw-files", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 41.42888775537051, + "top": 531.8779602050781 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2864b493-6d12-4313-ad29-f3b1e2564aba", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nQuantitation_Database-For-MaxQuant\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nExperimental-Design Discovery MaxQuant\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nInput Raw-files\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"MaxQuant\"];\n 0 -->|output| 3;\n 2 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Select\"];\n 3 -->|proteinGroups| 4;\n 5[\"Select\"];\n 3 -->|peptides| 5;\n 6[\"Cut\"];\n 4 -->|out_file1| 6;\n 7[\"Cut\"];\n 5 -->|out_file1| 7;\n 8[\"Group\"];\n 6 -->|out_file1| 8;\n 9[\"Group\"];\n 7 -->|out_file1| 9;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "WF4_Quantitation_Workflow", + "outputs": [], + "parent_id": "proteomics/clinical-mp-4-quantitation", + "path": "topics/proteomics/tutorials/clinical-mp-4-quantitation/workflows/WF4_Quantitation_Workflow.ga", + "tags": [ + "name:clinicalMP" + ], + "test_results": null, + "tests": false, + "title": "WF4_Quantitation_Workflow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-clinical-mp-4-quantitation/versions/wf4-quantitation-workflow", + "tutorial_id": "clinical-mp-4-quantitation", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-4-quantitation/workflows/WF4_Quantitation_Workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/clinical-mp-4-quantitation/workflows/WF4_Quantitation_Workflow.html", + "version": 1, + "wfid": "proteomics-clinical-mp-4-quantitation", + "wfname": "wf4-quantitation-workflow", + "workflow": "WF4_Quantitation_Workflow.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "Grouping1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.17.0+galaxy4" + ], + "workflowhub_id": "1353" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.10105821" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "msconvert", + "owner": "galaxyp", + "revisions": "3cf310697624", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_consensusid", + "owner": "galaxyp", + "revisions": "4e77b8f12cd3", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_falsediscoveryrate", + "owner": "galaxyp", + "revisions": "f7fef900f5b2", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_falsediscoveryrate", + "owner": "galaxyp", + "revisions": "c9eff69a7c62", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_fidoadapter", + "owner": "galaxyp", + "revisions": "890025d6e426", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_fidoadapter", + "owner": "galaxyp", + "revisions": "658494a2cb00", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_fileinfo", + "owner": "galaxyp", + "revisions": "5ad830edc021", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_fileinfo", + "owner": "galaxyp", + "revisions": "52ba9695e752", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idfilter", + "owner": "galaxyp", + "revisions": "382cde407f81", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idmerger", + "owner": "galaxyp", + "revisions": "1c5f31b8d632", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idposteriorerrorprobability", + "owner": "galaxyp", + "revisions": "c69f69d7867a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idposteriorerrorprobability", + "owner": "galaxyp", + "revisions": "111c3a00136d", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idscoreswitcher", + "owner": "galaxyp", + "revisions": "476b5e296979", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_idscoreswitcher", + "owner": "galaxyp", + "revisions": "be74a8cd7d66", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_msgfplusadapter", + "owner": "galaxyp", + "revisions": "a407b6790342", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_peakpickerhires", + "owner": "galaxyp", + "revisions": "3d8d4ada5405", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_peptideindexer", + "owner": "galaxyp", + "revisions": "e039cc5c7aed", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_peptideindexer", + "owner": "galaxyp", + "revisions": "dd173849c3d8", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_textexporter", + "owner": "galaxyp", + "revisions": "9020199dba0a", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_xtandemadapter", + "owner": "galaxyp", + "revisions": "c8b225c69a7f", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "openms_xtandemadapter", + "owner": "galaxyp", + "revisions": "7f6a1f27553e", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: msconvert\n owner: galaxyp\n revisions: 3cf310697624\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_consensusid\n owner: galaxyp\n revisions: 4e77b8f12cd3\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_falsediscoveryrate\n owner: galaxyp\n revisions: f7fef900f5b2\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_falsediscoveryrate\n owner: galaxyp\n revisions: c9eff69a7c62\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_fidoadapter\n owner: galaxyp\n revisions: 890025d6e426\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_fidoadapter\n owner: galaxyp\n revisions: 658494a2cb00\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_fileinfo\n owner: galaxyp\n revisions: 5ad830edc021\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_fileinfo\n owner: galaxyp\n revisions: 52ba9695e752\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idfilter\n owner: galaxyp\n revisions: 382cde407f81\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idmerger\n owner: galaxyp\n revisions: 1c5f31b8d632\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idposteriorerrorprobability\n owner: galaxyp\n revisions: c69f69d7867a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idposteriorerrorprobability\n owner: galaxyp\n revisions: 111c3a00136d\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idscoreswitcher\n owner: galaxyp\n revisions: 476b5e296979\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_idscoreswitcher\n owner: galaxyp\n revisions: be74a8cd7d66\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_msgfplusadapter\n owner: galaxyp\n revisions: a407b6790342\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_peakpickerhires\n owner: galaxyp\n revisions: 3d8d4ada5405\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_peptideindexer\n owner: galaxyp\n revisions: e039cc5c7aed\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_peptideindexer\n owner: galaxyp\n revisions: dd173849c3d8\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_textexporter\n owner: galaxyp\n revisions: 9020199dba0a\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_xtandemadapter\n owner: galaxyp\n revisions: c8b225c69a7f\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: openms_xtandemadapter\n owner: galaxyp\n revisions: 7f6a1f27553e\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-id-oms/tutorial.json", + "contributors": [ + { + "email": "sigloch+github@mailbox.org", + "former_affiliations": [ + "uni-freiburg" + ], + "id": "stortebecker", + "joined": "2017-09", + "name": "Florian Christoph Sigloch", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stortebecker/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stortebecker.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/proteomics/tutorials/protein-id-oms", + "edam_operation": [ + "Filtering", + "Formatting" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "proteomics", + "tutorials": [ + "protein-quant-sil" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "proteomics/protein-id-oms", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "LC-MS/MS raw files have to be converted to mzML before using GalaxyP on most GalaxyP servers.", + "OpenMS provides many tools for proteomic analysis and guarantees compatibility by using open file formats.", + "OpenMS provides several thirdparty search engines and Fido for protein inference." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Protein identification from LC-MS/MS raw files." + ], + "pageviews": 4651, + "pub_date": "2017-10-16", + "questions": [ + "How to convert LC-MS/MS raw files?", + "How to identify peptides?", + "How to identify proteins?", + "How to evaluate the results?" + ], + "requirements": [ + { + "topic_name": "proteomics", + "tutorials": [ + "database-handling" + ], + "type": "internal" + } + ], + "short_id": "T00228", + "short_tools": [ + "Grep1", + "msconvert", + "IDMerger", + "IDPosteriorErrorProbability", + "PeakPickerHiRes", + "FidoAdapter", + "FalseDiscoveryRate", + "MSGFPlusAdapter", + "TextExporter", + "IDScoreSwitcher", + "ConsensusID", + "IDFilter", + "FileInfo", + "XTandemAdapter", + "PeptideIndexer" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "DDA", + "HeLa" + ], + "time_estimation": "45m", + "title": "Peptide and Protein ID using OpenMS tools", + "tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msconvert/msconvert/3.0.19052.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_consensusid/ConsensusID/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.2.0.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idfilter/IDFilter/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idmerger/IDMerger/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_msgfplusadapter/MSGFPlusAdapter/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peakpickerhires/PeakPickerHiRes/2.3.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_textexporter/TextExporter/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.2.0.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.6+galaxy0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "protein-id-oms", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/protein-id-oms/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-id-oms/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/protein-id-oms/tutorial.json" + }, + "version": 31, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 168, + "visitors": 2673, + "workflows": [ + { + "creators": [], + "description": "Peptide and Protein ID using OpenMS tools", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmzml input\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nfasta input\"]\n 2[label=\"PeakPickerHiRes\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"XTandemAdapter\"]\n 1 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"param_out\"]\n 4[label=\"FileInfo\"]\n 3 -> 4 [label=\"out\"]\n 5[label=\"PeptideIndexer\"]\n 1 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"out\"]\n 6[label=\"IDPosteriorErrorProbability\"]\n 5 -> 6 [label=\"out\"]\n 7[label=\"FalseDiscoveryRate\"]\n 6 -> 7 [label=\"out\"]\n 8[label=\"IDScoreSwitcher\"]\n 7 -> 8 [label=\"out\"]\n 9[label=\"FileInfo\"]\n 8 -> 9 [label=\"out\"]\n 10[label=\"FidoAdapter\"]\n 8 -> 10 [label=\"out\"]\n 11[label=\"FalseDiscoveryRate\"]\n 10 -> 11 [label=\"out\"]\n 12[label=\"FileInfo\"]\n 11 -> 12 [label=\"out\"]\n 13[label=\"TextExporter\"]\n 11 -> 13 [label=\"out\"]\n 14[label=\"Select\"]\n 13 -> 14 [label=\"out\"]\n 15[label=\"Select\"]\n 13 -> 15 [label=\"out\"]\n}", + "history": [ + { + "hash": "54b4d9fcc78b1394f71f7affd51ca15e83b211d5", + "message": "Adding tags to workflows", + "num": 9, + "short_hash": "54b4d9fcc", + "unix": "1604224600" + }, + { + "hash": "ca84d739509bdb1ef8f3cfc64c15242ef0363407", + "message": "Updating Tutorials to OpenMS 2.6, adjusting of parameters and tools, adding tool versions", + "num": 8, + "short_hash": "ca84d7395", + "unix": "1604176914" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 7, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 6, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "775a0b42554fad0d7106779b50b758f34f9388f0", + "message": "Updated workflow containing all follow up tools", + "num": 5, + "short_hash": "775a0b425", + "unix": "1553092201" + }, + { + "hash": "08f1e0dc3f10498a73acb658e65375b6589b7ce2", + "message": "Updated workflow for ID training", + "num": 4, + "short_hash": "08f1e0dc3", + "unix": "1553088979" + }, + { + "hash": "dbcc48eaa51d95815ca6a19bd643264e9db81825", + "message": "fix workflow name", + "num": 3, + "short_hash": "dbcc48eaa", + "unix": "1510677790" + }, + { + "hash": "b916508e1e11168c289f744f7acfc847e906285a", + "message": "Added workflow for two search engines, deleted ms2 PeakPicking and updated old workflow, added link to workflow in tutorial", + "num": 2, + "short_hash": "b916508e1", + "unix": "1510655977" + }, + { + "hash": "a6411f26e23a9e4754177332839416165c9b4658", + "message": "New tutorial \"Protein ID using OpenMS\" and major revision of \"Protein ID using SG/PS\" (#570)", + "num": 1, + "short_hash": "a6411f26e", + "unix": "1508148807" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mzml input" + } + ], + "label": "mzml input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 218.8000030517578, + "height": 61.80000305175781, + "left": 546, + "right": 746, + "top": 157, + "width": 200, + "x": 546, + "y": 157 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1604c094-ef2d-4094-a0f4-dc530fe8e359", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c7aacc63-3815-4e28-9c1d-9b2378799a97" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "fasta input" + } + ], + "label": "fasta input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 430.8000030517578, + "height": 61.80000305175781, + "left": 541, + "right": 741, + "top": 369, + "width": 200, + "x": 541, + "y": 369 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d948aea0-6741-4a7f-a07c-fd451674714e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b3071ae5-c01b-4cba-a31a-0b36943c2aca" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nmzml input\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nfasta input\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"PeakPickerHiRes\"];\n 0 -->|output| 2;\n 3[\"XTandemAdapter\"];\n 1 -->|output| 3;\n 2 -->|param_out| 3;\n 4[\"FileInfo\"];\n 3 -->|out| 4;\n 5[\"PeptideIndexer\"];\n 1 -->|output| 5;\n 3 -->|out| 5;\n 6[\"IDPosteriorErrorProbability\"];\n 5 -->|out| 6;\n 7[\"FalseDiscoveryRate\"];\n 6 -->|out| 7;\n 8[\"IDScoreSwitcher\"];\n 7 -->|out| 8;\n 9[\"FileInfo\"];\n 8 -->|out| 9;\n 10[\"FidoAdapter\"];\n 8 -->|out| 10;\n 11[\"FalseDiscoveryRate\"];\n 10 -->|out| 11;\n 12[\"FileInfo\"];\n 11 -->|out| 12;\n 13[\"TextExporter\"];\n 11 -->|out| 13;\n 14[\"Select\"];\n 13 -->|out| 14;\n 15[\"Select\"];\n 13 -->|out| 15;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Proteomics: Peptide and Protein ID using OpenMS", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mzml input" + } + ], + "label": "mzml input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 218.8000030517578, + "height": 61.80000305175781, + "left": 546, + "right": 746, + "top": 157, + "width": 200, + "x": 546, + "y": 157 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1604c094-ef2d-4094-a0f4-dc530fe8e359", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c7aacc63-3815-4e28-9c1d-9b2378799a97" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "fasta input" + } + ], + "label": "fasta input", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 430.8000030517578, + "height": 61.80000305175781, + "left": 541, + "right": 741, + "top": 369, + "width": 200, + "x": 541, + "y": 369 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d948aea0-6741-4a7f-a07c-fd451674714e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b3071ae5-c01b-4cba-a31a-0b36943c2aca" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peakpickerhires/PeakPickerHiRes/2.3.0", + "errors": null, + "id": 2, + "input_connections": { + "param_in": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PeakPickerHiRes", + "outputs": [ + { + "name": "param_out", + "type": "mzml" + } + ], + "position": { + "bottom": 325.6000061035156, + "height": 113.60000610351562, + "left": 852, + "right": 1052, + "top": 212, + "width": 200, + "x": 852, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peakpickerhires/PeakPickerHiRes/2.3.0", + "tool_shed_repository": { + "changeset_revision": "3d8d4ada5405", + "name": "openms_peakpickerhires", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"mzml\", \"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"param_algorithm_SignalToNoise_bin_count\": \"30\", \"param_algorithm_SignalToNoise_min_required_elements\": \"10\", \"param_algorithm_SignalToNoise_win_len\": \"200.0\", \"param_algorithm_SignalToNoise_write_log_messages\": \"true\", \"param_algorithm_report_FWHM\": \"false\", \"param_algorithm_report_FWHM_unit\": \"relative\", \"param_algorithm_signal_to_noise\": \"0.0\", \"param_in\": {\"__class__\": \"ConnectedValue\"}, \"rep_param_algorithm_ms_levels\": [{\"__index__\": 0, \"param_algorithm_ms_levels\": \"2\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.3.0", + "type": "tool", + "uuid": "09ceeb02-6c71-4ee3-b70a-ad879b4904e1", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "058dedba-3334-4687-8e34-c995a1d019c4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.6+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "database": { + "id": 1, + "output_name": "output" + }, + "in": { + "id": 2, + "output_name": "param_out" + } + }, + "inputs": [], + "label": null, + "name": "XTandemAdapter", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 427.1999969482422, + "height": 215.1999969482422, + "left": 1072, + "right": 1272, + "top": 212, + "width": 200, + "x": 1072, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1add9bacdccd", + "name": "openms_xtandemadapter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": [\"out_FLAG\"], \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"database\": {\"__class__\": \"ConnectedValue\"}, \"default_config_file\": null, \"enzyme\": \"Trypsin\", \"fixed_modifications\": [\"Carbamidomethyl (C)\"], \"fragment_error_units\": \"ppm\", \"fragment_mass_tolerance\": \"10.0\", \"ignore_adapter_param\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"max_precursor_charge\": \"4\", \"max_valid_expect\": \"0.1\", \"minimum_fragment_mz\": \"150.0\", \"missed_cleavages\": \"1\", \"no_isotope_error\": \"false\", \"output_results\": \"all\", \"precursor_error_units\": \"ppm\", \"precursor_mass_tolerance\": \"10.0\", \"semi_cleavage\": \"false\", \"variable_modifications\": [\"Oxidation (M)\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "5fe07f26-b2e1-4a10-a4ae-439ee6146c8b", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "893e0901-e84a-4212-837d-63036f8b4d51" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "in": { + "id": 3, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FileInfo", + "outputs": [ + { + "name": "out", + "type": "txt" + } + ], + "position": { + "bottom": 325.6000061035156, + "height": 113.60000610351562, + "left": 1292, + "right": 1492, + "top": 212, + "width": 200, + "x": 1292, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e8dce5e07fa5", + "name": "openms_fileinfo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"c\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"d\": \"false\", \"i\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"false\", \"p\": \"false\", \"s\": \"false\", \"v\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "0afb93c4-71a2-481a-a64d-936b394dde64", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "0e8d24f3-79a8-4914-802b-5f50f34bafa5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.6+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "fasta": { + "id": 1, + "output_name": "output" + }, + "in": { + "id": 3, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "PeptideIndexer", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 537.1999969482422, + "height": 205.1999969482422, + "left": 1292, + "right": 1492, + "top": 332, + "width": 200, + "x": 1292, + "y": 332 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d8ee5700c66b", + "name": "openms_peptideindexer", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"IL_equivalent\": \"false\", \"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"aaa_max\": \"3\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"decoy_string\": \"\", \"decoy_string_position\": \"prefix\", \"enzyme\": {\"name\": \"auto\", \"specificity\": \"none\"}, \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"in\": {\"__class__\": \"ConnectedValue\"}, \"keep_unreferenced_proteins\": \"false\", \"mismatches_max\": \"0\", \"missing_decoy_action\": \"error\", \"unmatched_action\": \"error\", \"write_protein_description\": \"true\", \"write_protein_sequence\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "39045d4c-f666-40f2-8c21-677271e734cc", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "ca346fb2-f01e-4374-bce7-8fe6eddf5d3c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "in": { + "id": 5, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "IDPosteriorErrorProbability", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 386.8000030517578, + "height": 174.8000030517578, + "left": 1512, + "right": 1712, + "top": 212, + "width": 200, + "x": 1512, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "711a081d80ba", + "name": "openms_idposteriorerrorprobability", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"fit_algorithm\": {\"number_of_bins\": \"100\", \"incorrectly_assigned\": \"Gumbel\", \"max_nr_iterations\": \"1000\", \"neg_log_delta\": \"6\", \"outlier_handling\": \"ignore_iqr_outliers\"}, \"ignore_bad_data\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"prob_correct\": \"true\", \"split_charge\": \"false\", \"top_hits_only\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "e0bdc6ec-b1ff-436e-8ebc-0fdd5f7206b7", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "584f8b3b-6e0c-492b-92ee-9996e27f4769" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "in": { + "id": 6, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FalseDiscoveryRate", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 386.8000030517578, + "height": 174.8000030517578, + "left": 1732, + "right": 1932, + "top": 212, + "width": 200, + "x": 1732, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "469690558892", + "name": "openms_falsediscoveryrate", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"FDR\": {\"PSM\": \"0.01\", \"protein\": \"1.0\", \"cleanup\": {\"remove_proteins_without_psms\": \"true\", \"remove_psms_without_proteins\": \"true\", \"remove_spectra_without_psms\": \"true\"}}, \"OPTIONAL_OUTPUTS\": null, \"PSM\": \"true\", \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"algorithm\": {\"no_qvalues\": \"false\", \"use_all_hits\": \"false\", \"split_charge_variants\": \"false\", \"treat_runs_separately\": \"false\", \"add_decoy_peptides\": \"true\", \"add_decoy_proteins\": \"false\", \"conservative\": \"true\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"protein\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "b0e90f52-67ab-497c-8cc0-81997cda5ec0", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "7d94c074-055a-4348-969f-c5e3e3404cd1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.6+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "in": { + "id": 7, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "IDScoreSwitcher", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 346, + "height": 134, + "left": 1952, + "right": 2152, + "top": 212, + "width": 200, + "x": 1952, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ec0d05b20eed", + "name": "openms_idscoreswitcher", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"new_score\": \"Posterior Probability_score\", \"new_score_orientation\": \"higher_better\", \"new_score_type\": \"\", \"old_score\": \"\", \"proteins\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "37c738f6-b896-4d1f-a9e6-2f962cca61a2", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "e5270102-64f5-4c7b-b798-ce031275dfc0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "in": { + "id": 8, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FileInfo", + "outputs": [ + { + "name": "out", + "type": "txt" + } + ], + "position": { + "bottom": 325.6000061035156, + "height": 113.60000610351562, + "left": 2172, + "right": 2372, + "top": 212, + "width": 200, + "x": 2172, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e8dce5e07fa5", + "name": "openms_fileinfo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"c\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"d\": \"false\", \"i\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"false\", \"p\": \"false\", \"s\": \"false\", \"v\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "64dd3889-3bd5-49b9-a84c-3d563764fa5a", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "5bbfd315-1b89-4565-9297-dcde01c15619" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.6+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "in": { + "id": 8, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FidoAdapter", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 445.6000061035156, + "height": 113.60000610351562, + "left": 2172, + "right": 2372, + "top": 332, + "width": 200, + "x": 2172, + "y": 332 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c3a5cd016963", + "name": "openms_fidoadapter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"all_PSMs\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"greedy_group_resolution\": \"true\", \"group_level\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"log2_states\": \"0\", \"no_cleanup\": \"false\", \"prob\": {\"protein\": \"0.0\", \"peptide\": \"0.0\", \"spurious\": \"0.0\"}, \"separate_runs\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "27b53d06-d3a7-42e4-8ad4-1b861ae38777", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "24c9df2d-4ed0-46cd-a949-60c8f21bc8eb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "in": { + "id": 10, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FalseDiscoveryRate", + "outputs": [ + { + "name": "out", + "type": "idxml" + } + ], + "position": { + "bottom": 386.8000030517578, + "height": 174.8000030517578, + "left": 2392, + "right": 2592, + "top": 212, + "width": 200, + "x": 2392, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "469690558892", + "name": "openms_falsediscoveryrate", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"FDR\": {\"PSM\": \"1.0\", \"protein\": \"0.01\", \"cleanup\": {\"remove_proteins_without_psms\": \"true\", \"remove_psms_without_proteins\": \"true\", \"remove_spectra_without_psms\": \"true\"}}, \"OPTIONAL_OUTPUTS\": null, \"PSM\": \"false\", \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"algorithm\": {\"no_qvalues\": \"false\", \"use_all_hits\": \"false\", \"split_charge_variants\": \"false\", \"treat_runs_separately\": \"false\", \"add_decoy_peptides\": \"false\", \"add_decoy_proteins\": \"false\", \"conservative\": \"true\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"protein\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "e6fdc81c-b3b9-4916-9810-ebba68cde517", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "bb2738e8-0258-4b31-a6e8-14ac4b750750" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "in": { + "id": 11, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "FileInfo", + "outputs": [ + { + "name": "out", + "type": "txt" + } + ], + "position": { + "bottom": 325.6000061035156, + "height": 113.60000610351562, + "left": 2612, + "right": 2812, + "top": 212, + "width": 200, + "x": 2612, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e8dce5e07fa5", + "name": "openms_fileinfo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"c\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"d\": \"false\", \"i\": \"false\", \"in\": {\"__class__\": \"ConnectedValue\"}, \"m\": \"false\", \"p\": \"false\", \"s\": \"false\", \"v\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "8f9e92ab-8d06-460c-9c2f-b4b8d701f3ee", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "f0910911-bcff-45c0-93b4-d966174ea637" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_textexporter/TextExporter/2.6+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "in": { + "id": 11, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "TextExporter", + "outputs": [ + { + "name": "out", + "type": "tabular" + } + ], + "position": { + "bottom": 445.6000061035156, + "height": 113.60000610351562, + "left": 2612, + "right": 2812, + "top": 332, + "width": 200, + "x": 2612, + "y": 332 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_textexporter/TextExporter/2.6+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1c596fdaf34a", + "name": "openms_textexporter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"OPTIONAL_OUTPUTS\": null, \"__input_ext\": \"input\", \"adv_opts_cond\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"consensus\": {\"sorting_method\": \"none\", \"sort_by_maps\": \"false\", \"sort_by_size\": \"false\"}, \"feature\": {\"minimal\": \"false\", \"add_metavalues\": \"-1\"}, \"id\": {\"proteins_only\": \"false\", \"peptides_only\": \"false\", \"protein_groups\": \"false\", \"first_dim_rt\": \"false\", \"add_metavalues\": \"-1\", \"add_hit_metavalues\": \"-1\", \"add_protein_hit_metavalues\": \"-1\"}, \"in\": {\"__class__\": \"ConnectedValue\"}, \"no_ids\": \"false\", \"quoting\": \"none\", \"replacement\": \"_\", \"separator\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6+galaxy0", + "type": "tool", + "uuid": "2fc7c7a5-4ae4-4205-b02e-e587b3c0ce68", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "293612b7-8f5c-4727-9805-5c060187883a" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 13, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 305.1999969482422, + "height": 93.19999694824219, + "left": 2832, + "right": 3032, + "top": 212, + "width": 200, + "x": 2832, + "y": 212 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"CONTAMINANT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "ab75d88c-15ca-48e5-ad26-effb00dd1dc9", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "cf9ac306-35ad-4846-a68d-ae635df7686e" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 13, + "output_name": "out" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 425.1999969482422, + "height": 93.19999694824219, + "left": 2832, + "right": 3032, + "top": 332, + "width": 200, + "x": 2832, + "y": 332 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"HUMAN\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "3a18c2c5-f301-47b0-b446-deb0726ee889", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "5f0e93ec-df5f-4c23-8b11-e298abec7fb7" + } + ] + } + ], + "parent_id": "proteomics/protein-id-oms", + "path": "topics/proteomics/tutorials/protein-id-oms/workflows/workflow.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Proteomics: Peptide and Protein ID using OpenMS", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-id-oms/versions/workflow", + "tutorial_id": "protein-id-oms", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-oms/workflows/workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-oms/workflows/workflow.html", + "version": 6, + "wfid": "proteomics-protein-id-oms", + "wfname": "workflow", + "workflow": "workflow.ga", + "workflow_tools": [ + "Grep1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peakpickerhires/PeakPickerHiRes/2.3.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_textexporter/TextExporter/2.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.6+galaxy0" + ], + "workflowhub_id": "1188" + }, + { + "creators": [], + "description": "Peptide and Protein ID using OpenMS tools", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmzML_test_dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHuman_database_including_decoys\"]\n 2[label=\"XTandemAdapter\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"MSGFPlusAdapter\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"IDPosteriorErrorProbability\"]\n 2 -> 4 [label=\"param_out\"]\n 5[label=\"IDPosteriorErrorProbability\"]\n 3 -> 5 [label=\"param_out\"]\n 6[label=\"IDMerger\"]\n 5 -> 6 [label=\"param_out\"]\n 4 -> 6 [label=\"param_out\"]\n 7[label=\"ConsensusID\"]\n 6 -> 7 [label=\"param_out\"]\n 8[label=\"PeptideIndexer\"]\n 1 -> 8 [label=\"output\"]\n 7 -> 8 [label=\"param_out\"]\n 9[label=\"FalseDiscoveryRate\"]\n 8 -> 9 [label=\"param_out\"]\n 10[label=\"IDScoreSwitcher\"]\n 9 -> 10 [label=\"param_out\"]\n 11[label=\"FileInfo\"]\n 9 -> 11 [label=\"param_out\"]\n 12[label=\"FidoAdapter\"]\n 10 -> 12 [label=\"param_out\"]\n 13[label=\"FalseDiscoveryRate\"]\n 12 -> 13 [label=\"param_out\"]\n 14[label=\"IDFilter\"]\n 13 -> 14 [label=\"param_out\"]\n 15[label=\"FileInfo\"]\n 14 -> 15 [label=\"param_out\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "643fab24d5e16da68d2ad7ec87252b68f520f62f", + "message": "update workflow", + "num": 2, + "short_hash": "643fab24d", + "unix": "1538518838" + }, + { + "hash": "b916508e1e11168c289f744f7acfc847e906285a", + "message": "Added workflow for two search engines, deleted ms2 PeakPicking and updated old workflow, added link to workflow in tutorial", + "num": 1, + "short_hash": "b916508e1", + "unix": "1510655977" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mzML_test_dataset" + } + ], + "label": "mzML_test_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 219 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mzML_test_dataset\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f388c78b-a105-4a24-897f-d2f3510d3cc4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "643ec67a-7144-4d78-a58a-527d2a582bbc" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Human_database_including_decoys" + } + ], + "label": "Human_database_including_decoys", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 324 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Human_database_including_decoys\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7b1b1907-1591-45af-a841-4c54ea936d81", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fbb8c863-7d41-4261-8651-a407818ca5c1" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nmzML_test_dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nHuman_database_including_decoys\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"XTandemAdapter\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"MSGFPlusAdapter\"];\n 1 -->|output| 3;\n 4[\"IDPosteriorErrorProbability\"];\n 2 -->|param_out| 4;\n 5[\"IDPosteriorErrorProbability\"];\n 3 -->|param_out| 5;\n 6[\"IDMerger\"];\n 5 -->|param_out| 6;\n 4 -->|param_out| 6;\n 7[\"ConsensusID\"];\n 6 -->|param_out| 7;\n 8[\"PeptideIndexer\"];\n 1 -->|output| 8;\n 7 -->|param_out| 8;\n 9[\"FalseDiscoveryRate\"];\n 8 -->|param_out| 9;\n 10[\"IDScoreSwitcher\"];\n 9 -->|param_out| 10;\n 11[\"FileInfo\"];\n 9 -->|param_out| 11;\n 12[\"FidoAdapter\"];\n 10 -->|param_out| 12;\n 13[\"FalseDiscoveryRate\"];\n 12 -->|param_out| 13;\n 14[\"IDFilter\"];\n 13 -->|param_out| 14;\n 15[\"FileInfo\"];\n 14 -->|param_out| 15;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Peptide And Protein ID Via OMS Using Two Search Engines", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mzML_test_dataset" + } + ], + "label": "mzML_test_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 219 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mzML_test_dataset\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f388c78b-a105-4a24-897f-d2f3510d3cc4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "643ec67a-7144-4d78-a58a-527d2a582bbc" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Human_database_including_decoys" + } + ], + "label": "Human_database_including_decoys", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 324 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Human_database_including_decoys\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7b1b1907-1591-45af-a841-4c54ea936d81", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fbb8c863-7d41-4261-8651-a407818ca5c1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.2.0", + "errors": null, + "id": 9, + "input_connections": { + "param_in": { + "id": 8, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FalseDiscoveryRate", + "name": "param_in" + } + ], + "label": null, + "name": "FalseDiscoveryRate", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + } + ], + "position": { + "left": 1888, + "top": 219 + }, + "post_job_actions": { + "RenameDatasetActionparam_out": { + "action_arguments": { + "newname": "Peptide IDs (idXML)" + }, + "action_type": "RenameDatasetAction", + "output_name": "param_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.2.0", + "tool_shed_repository": { + "changeset_revision": "f7fef900f5b2", + "name": "openms_falsediscoveryrate", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"param_algorithm_use_all_hits\": \"\\\"false\\\"\", \"param_PSM\": \"\\\"true\\\"\", \"param_FDR_PSM\": \"\\\"0.01\\\"\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"param_algorithm_split_charge_variants\": \"\\\"false\\\"\", \"param_algorithm_no_qvalues\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_algorithm_treat_runs_separately\": \"\\\"false\\\"\", \"param_protein\": \"\\\"false\\\"\", \"param_FDR_protein\": \"\\\"1.0\\\"\", \"param_algorithm_add_decoy_peptides\": \"\\\"true\\\"\"}", + "tool_version": "2.2.0", + "type": "tool", + "uuid": "c5dabcee-14be-4494-8a87-6b03843ebbd6", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "e42e42c6-0fec-49c4-a5fb-67e140445752" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.2.0", + "errors": null, + "id": 11, + "input_connections": { + "param_in": { + "id": 9, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FileInfo", + "name": "param_in" + } + ], + "label": null, + "name": "FileInfo", + "outputs": [ + { + "name": "param_out", + "type": "txt" + }, + { + "name": "param_out_tsv", + "type": "tabular" + } + ], + "position": { + "left": 2217, + "top": 352.5 + }, + "post_job_actions": { + "RenameDatasetActionparam_out": { + "action_arguments": { + "newname": "FileInfo Peptide IDs (txt)" + }, + "action_type": "RenameDatasetAction", + "output_name": "param_out" + }, + "RenameDatasetActionparam_out_tsv": { + "action_arguments": { + "newname": "FileInfo Peptide IDs (tabular)" + }, + "action_type": "RenameDatasetAction", + "output_name": "param_out_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.2.0", + "tool_shed_repository": { + "changeset_revision": "5ad830edc021", + "name": "openms_fileinfo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"param_v\": \"\\\"false\\\"\", \"param_p\": \"\\\"false\\\"\", \"param_s\": \"\\\"false\\\"\", \"param_m\": \"\\\"false\\\"\", \"param_i\": \"\\\"false\\\"\", \"param_d\": \"\\\"false\\\"\", \"param_c\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.2.0", + "type": "tool", + "uuid": "7c834594-54f3-4201-a45a-4c75c41825f0", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out_tsv", + "uuid": "118d2874-3da7-4133-ae7d-b6e47d2c5a1a" + }, + { + "label": null, + "output_name": "param_out", + "uuid": "36885b5d-64c4-46e4-8388-43c1058c6251" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idfilter/IDFilter/2.2.0", + "errors": null, + "id": 14, + "input_connections": { + "param_in": { + "id": 13, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool IDFilter", + "name": "param_whitelist_peptides" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_whitelist_proteins" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_blacklist_proteins" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_in" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_blacklist_peptides" + }, + { + "description": "runtime parameter for tool IDFilter", + "name": "param_digest_fasta" + } + ], + "label": null, + "name": "IDFilter", + "outputs": [ + { + "name": "param_out", + "type": "idxml" + } + ], + "position": { + "left": 3042, + "top": 220 + }, + "post_job_actions": { + "RenameDatasetActionparam_out": { + "action_arguments": { + "newname": "Protein IDs (idXML)" + }, + "action_type": "RenameDatasetAction", + "output_name": "param_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idfilter/IDFilter/2.2.0", + "tool_shed_repository": { + "changeset_revision": "382cde407f81", + "name": "openms_idfilter", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"param_whitelist_peptides\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_length\": \"\\\":\\\"\", \"param_keep_unreferenced_protein_hits\": \"\\\"false\\\"\", \"param_unique\": \"\\\"false\\\"\", \"param_whitelist_proteins\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_unique_per_protein\": \"\\\"false\\\"\", \"param_remove_decoys\": \"\\\"false\\\"\", \"param_score_prot\": \"\\\"0.01\\\"\", \"__rerun_remap_job_id__\": null, \"param_precursor_mz\": \"\\\":\\\"\", \"param_mz_error\": \"\\\"-1.0\\\"\", \"rep_param_blacklist_modifications\": \"[]\", \"param_blacklist_proteins\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"param_delete_unreferenced_peptide_hits\": \"\\\"false\\\"\", \"param_blacklist_ignore_modifications\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__page__\": null, \"param_charge\": \"\\\":\\\"\", \"param_var_mods\": \"\\\"false\\\"\", \"param_best_strict\": \"\\\"false\\\"\", \"param_digest_specificity\": \"\\\"full\\\"\", \"param_digest_missed_cleavages\": \"\\\"-1\\\"\", \"rep_param_whitelist_modifications\": \"[]\", \"param_mz_unit\": \"\\\"ppm\\\"\", \"rep_param_whitelist_protein_accessions\": \"[]\", \"param_best_n_peptide_hits\": \"\\\"0\\\"\", \"param_blacklist_peptides\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"param_score_pep\": \"\\\"0.0\\\"\", \"param_digest_methionine_cleavage\": \"\\\"false\\\"\", \"param_best_n_protein_hits\": \"\\\"0\\\"\", \"param_precursor_rt\": \"\\\":\\\"\", \"param_digest_fasta\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"rep_param_blacklist_protein_accessions\": \"[]\", \"param_whitelist_ignore_modifications\": \"\\\"false\\\"\", \"param_digest_enzyme\": \"\\\"Trypsin\\\"\"}", + "tool_version": "2.2.0", + "type": "tool", + "uuid": "7955e91e-a52b-4153-8222-3b16ae99fd94", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out", + "uuid": "fe8099a0-d4c5-4e0d-a21e-62406c69c137" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.2.0", + "errors": null, + "id": 15, + "input_connections": { + "param_in": { + "id": 14, + "output_name": "param_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FileInfo", + "name": "param_in" + } + ], + "label": null, + "name": "FileInfo", + "outputs": [ + { + "name": "param_out", + "type": "txt" + }, + { + "name": "param_out_tsv", + "type": "tabular" + } + ], + "position": { + "left": 3370, + "top": 219 + }, + "post_job_actions": { + "RenameDatasetActionparam_out": { + "action_arguments": { + "newname": "FileInfo Protein IDs (txt)" + }, + "action_type": "RenameDatasetAction", + "output_name": "param_out" + }, + "RenameDatasetActionparam_out_tsv": { + "action_arguments": { + "newname": "FileInfo Protein IDs (tabular)" + }, + "action_type": "RenameDatasetAction", + "output_name": "param_out_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.2.0", + "tool_shed_repository": { + "changeset_revision": "5ad830edc021", + "name": "openms_fileinfo", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"adv_opts\": \"{\\\"adv_opts_selector\\\": \\\"basic\\\", \\\"__current_case__\\\": 0}\", \"__rerun_remap_job_id__\": null, \"param_v\": \"\\\"false\\\"\", \"param_p\": \"\\\"false\\\"\", \"param_s\": \"\\\"false\\\"\", \"param_m\": \"\\\"false\\\"\", \"param_i\": \"\\\"false\\\"\", \"param_d\": \"\\\"false\\\"\", \"param_c\": \"\\\"false\\\"\", \"param_in\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.2.0", + "type": "tool", + "uuid": "0a22ddc7-00a6-424f-9ce2-5816423d49ba", + "workflow_outputs": [ + { + "label": null, + "output_name": "param_out_tsv", + "uuid": "97b4b4e9-1745-49fd-8b0c-bc5bce0ab5b2" + }, + { + "label": null, + "output_name": "param_out", + "uuid": "dc6535dd-cc02-4be9-bd2e-6a37f8e164c0" + } + ] + } + ], + "parent_id": "proteomics/protein-id-oms", + "path": "topics/proteomics/tutorials/protein-id-oms/workflows/workflow_two-search-engines.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": false, + "title": "Peptide And Protein ID Via OMS Using Two Search Engines", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-protein-id-oms/versions/workflow-two-search-engines", + "tutorial_id": "protein-id-oms", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-oms/workflows/workflow_two-search-engines.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/protein-id-oms/workflows/workflow_two-search-engines.html", + "version": 4, + "wfid": "proteomics-protein-id-oms", + "wfname": "workflow-two-search-engines", + "workflow": "workflow_two-search-engines.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_consensusid/ConsensusID/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_falsediscoveryrate/FalseDiscoveryRate/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fidoadapter/FidoAdapter/2.2.0.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_fileinfo/FileInfo/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idfilter/IDFilter/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idmerger/IDMerger/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idposteriorerrorprobability/IDPosteriorErrorProbability/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_idscoreswitcher/IDScoreSwitcher/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_msgfplusadapter/MSGFPlusAdapter/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_peptideindexer/PeptideIndexer/2.2.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/openms_xtandemadapter/XTandemAdapter/2.2.0.1" + ], + "workflowhub_id": "1191" + } + ], + "zenodo_link": "https://zenodo.org/record/546301" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "be25c075ed54", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "histogram", + "owner": "devteam", + "revisions": "6f134426c2b0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "maxquant", + "owner": "galaxyp", + "revisions": "37d669de2828", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "msstats", + "owner": "galaxyp", + "revisions": "52ac6fde9a5b", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: be25c075ed54\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: histogram\n owner: devteam\n revisions: 6f134426c2b0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: maxquant\n owner: galaxyp\n revisions: 37d669de2828\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: msstats\n owner: galaxyp\n revisions: 52ac6fde9a5b\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-label-free/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "email": "matthias.fahrner@uniklinik-freiburg.de", + "id": "matthias313", + "joined": "2019-03", + "name": "Matthias Fahrner", + "orcid": "0000-0001-7955-2518", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/matthias313/", + "twitter": "mfahrner313", + "url": "https://training.galaxyproject.org/training-material/api/contributors/matthias313.json" + } + ], + "dir": "topics/proteomics/tutorials/maxquant-label-free", + "edam_operation": [ + "Visualisation", + "Imputation", + "Heat map generation", + "Tag-based peptide identification", + "Standardisation and normalisation", + "Principal component plotting", + "Differential protein expression profiling", + "Protein quantification", + "Spectrum calculation", + "Clustering", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/maxquant-label-free", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "MaxQuant offers a single tool solution for protein identification and quantification.", + "Label-free quantitation reveals the most abundant proteins in serum samples." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Analysis of human serum proteome samples with label-free quantification in MaxQuant" + ], + "pageviews": 23901, + "pub_date": "2020-04-29", + "questions": [ + "How to perform label-free analysis in Maxquant?", + "Which are the most abundant proteins in serum?", + "How successful was the depletion of those in our experiment?" + ], + "short_id": "T00218", + "short_tools": [ + "Grep1", + "msstats", + "maxquant", + "Cut1", + "Filter1", + "tp_sort_header_tool", + "Add_a_column1", + "histogram_rpy" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "DDA", + "label-free" + ], + "time_estimation": "1H", + "title": "Label-free data analysis using MaxQuant", + "tools": [ + "Cut1", + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/msstats/msstats/3.20.1.0" + ], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "maxquant-label-free", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/maxquant-label-free/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-label-free/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/maxquant-label-free/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 102, + "visitors": 16079, + "workflows": [ + { + "creators": [], + "description": "Label-free data analysis using MaxQuant", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProtein_database\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSample1\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSample2\"]\n 3[label=\"MaxQuant\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Filter\"]\n 3 -> 4 [label=\"proteinGroups\"]\n 5[label=\"Select\"]\n 4 -> 5 [label=\"out_file1\"]\n 6[label=\"Cut\"]\n 5 -> 6 [label=\"out_file1\"]\n 7[label=\"Sort\"]\n 6 -> 7 [label=\"out_file1\"]\n 8[label=\"Compute\"]\n 6 -> 8 [label=\"out_file1\"]\n 9[label=\"Sort\"]\n 7 -> 9 [label=\"outfile\"]\n 10[label=\"Compute\"]\n 8 -> 10 [label=\"out_file1\"]\n 11[label=\"Cut\"]\n 10 -> 11 [label=\"out_file1\"]\n 12[label=\"Compute\"]\n 10 -> 12 [label=\"out_file1\"]\n 13[label=\"Histogram\"]\n 12 -> 13 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "1a316efffa5d21398409e859952e3f99ae0aac9a", + "message": "update wf parameter", + "num": 8, + "short_hash": "1a316efff", + "unix": "1605483358" + }, + { + "hash": "dffe67cc1cd22e5f34204ccd105a156188c88fc8", + "message": "Updating figure and workflow", + "num": 7, + "short_hash": "dffe67cc1", + "unix": "1604174052" + }, + { + "hash": "3fd8e24d19128f02d08c3dd8d44ca034fd0bba9d", + "message": "Adding steps to workflow", + "num": 6, + "short_hash": "3fd8e24d1", + "unix": "1603366973" + }, + { + "hash": "cf8b1cb0509e73e534c234076c8bd055379823c5", + "message": "Update some workflow names for consistency", + "num": 5, + "short_hash": "cf8b1cb05", + "unix": "1598836271" + }, + { + "hash": "cdab43efb540f8228bce6af36097b4ce2f7b8019", + "message": "update maxquant workflow histogram version to 1.0.4, add test", + "num": 4, + "short_hash": "cdab43efb", + "unix": "1596427673" + }, + { + "hash": "ba67a0dfefa95ef6538d0c229146b475ba806f0a", + "message": "Adding a few more follow up steps and improving some older training content", + "num": 3, + "short_hash": "ba67a0dfe", + "unix": "1591567276" + }, + { + "hash": "5d041fcf71bb9e8c35d11b00a7531b32de608ce2", + "message": "adding more stuff to the workflow", + "num": 2, + "short_hash": "5d041fcf7", + "unix": "1588178974" + }, + { + "hash": "83de9bde8bfd5f709f0e1347841e30664057b6c2", + "message": "Adding MaxQuant training and levels for other proteomics tutorials", + "num": 1, + "short_hash": "83de9bde8", + "unix": "1588175696" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Protein_database" + } + ], + "label": "Protein_database", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 525.6999969482422, + "height": 82.19999694824219, + "left": -15, + "right": 185, + "top": 443.5, + "width": 200, + "x": -15, + "y": 443.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "90cc78f2-681e-4855-8e66-e4884558be47", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bc660f8d-110e-4c33-909b-66c0c29748c9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sample1" + } + ], + "label": "Sample1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 637.3000030517578, + "height": 61.80000305175781, + "left": -49, + "right": 151, + "top": 575.5, + "width": 200, + "x": -49, + "y": 575.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "eb754bfe-49b1-406d-8eb9-842b8f1fab22", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a0693dc-6c4d-4fe8-8c8d-4846938278c3" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sample2" + } + ], + "label": "Sample2", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 766.3000030517578, + "height": 61.80000305175781, + "left": -42, + "right": 158, + "top": 704.5, + "width": 200, + "x": -42, + "y": 704.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "321c3baa-dd58-45ce-9a28-ee1eb7332f0f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0a8fcb2d-5b66-4e0f-bb8c-46017c426cf2" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nProtein_database\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSample1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nSample2\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"MaxQuant\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 2 -->|output| 3;\n 4[\"Filter\"];\n 3 -->|proteinGroups| 4;\n 5[\"Select\"];\n 4 -->|out_file1| 5;\n 6[\"Cut\"];\n 5 -->|out_file1| 6;\n 7[\"Sort\"];\n 6 -->|out_file1| 7;\n 8[\"Compute\"];\n 6 -->|out_file1| 8;\n 9[\"Sort\"];\n 7 -->|outfile| 9;\n 10[\"Compute\"];\n 8 -->|out_file1| 10;\n 11[\"Cut\"];\n 10 -->|out_file1| 11;\n 12[\"Compute\"];\n 10 -->|out_file1| 12;\n 13[\"Histogram\"];\n 12 -->|out_file1| 13;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Proteomics: MaxQuant workflow", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Protein_database" + } + ], + "label": "Protein_database", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 525.6999969482422, + "height": 82.19999694824219, + "left": -15, + "right": 185, + "top": 443.5, + "width": 200, + "x": -15, + "y": 443.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "90cc78f2-681e-4855-8e66-e4884558be47", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bc660f8d-110e-4c33-909b-66c0c29748c9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sample1" + } + ], + "label": "Sample1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 637.3000030517578, + "height": 61.80000305175781, + "left": -49, + "right": 151, + "top": 575.5, + "width": 200, + "x": -49, + "y": 575.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "eb754bfe-49b1-406d-8eb9-842b8f1fab22", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9a0693dc-6c4d-4fe8-8c8d-4846938278c3" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Sample2" + } + ], + "label": "Sample2", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 766.3000030517578, + "height": 61.80000305175781, + "left": -42, + "right": 158, + "top": 704.5, + "width": 200, + "x": -42, + "y": 704.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "321c3baa-dd58-45ce-9a28-ee1eb7332f0f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0a8fcb2d-5b66-4e0f-bb8c-46017c426cf2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3", + "errors": null, + "id": 3, + "input_connections": { + "input_opts|fasta_files": { + "id": 0, + "output_name": "output" + }, + "paramGroups_0|files": [ + { + "id": 1, + "output_name": "output" + }, + { + "id": 2, + "output_name": "output" + } + ] + }, + "inputs": [], + "label": null, + "name": "MaxQuant", + "outputs": [ + { + "name": "proteinGroups", + "type": "tabular" + }, + { + "name": "mqpar", + "type": "xml" + }, + { + "name": "peptides", + "type": "tabular" + }, + { + "name": "ptxqc_report", + "type": "pdf" + } + ], + "position": { + "bottom": 780.8999938964844, + "height": 408.3999938964844, + "left": 310, + "right": 510, + "top": 372.5, + "width": 200, + "x": 310, + "y": 372.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3", + "tool_shed_repository": { + "changeset_revision": "ea0a1d50c83f", + "name": "maxquant", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_opts\": {\"ftype\": \".thermo.raw\", \"fasta_files\": {\"__class__\": \"ConnectedValue\"}, \"identifier_parse_rule\": \">.*\\\\|(.*)\\\\|\", \"description_parse_rule\": \">(.*) OS\"}, \"output_opts\": {\"dry_run\": \"false\", \"output\": [\"proteinGroups\", \"mqpar\", \"peptides\"]}, \"paramGroups\": [{\"__index__\": 0, \"files\": {\"__class__\": \"ConnectedValue\"}, \"maxMissedCleavages\": \"1\", \"fixedModifications\": [\"Carbamidomethyl (C)\"], \"variableModifications\": null, \"enzymes\": [\"Trypsin/P\"], \"digestion_mode\": \"0\", \"quant_method\": {\"select_quant_method\": \"lfq\", \"__current_case__\": 2, \"lfqMinRatioCount\": \"2\", \"lfqMinEdgesPerNode\": \"3\", \"lfqAvEdgesPerNode\": \"6\", \"lfqSkipNorm\": \"true\"}}], \"protein_quant\": {\"peptides_for_quantification\": \"1\", \"only_unmod_prot\": {\"unmod_prot\": \"True\", \"__current_case__\": 0, \"mods_used_prot_quant\": [\"Acetyl (Protein N-term)\", \"Oxidation (M)\"], \"discard_unmod_cpart_peptides\": \"true\"}, \"lfq_opts\": {\"separateLfq\": \"false\", \"lfqStabilizeLargeRatios\": \"true\", \"lfqRequireMsms\": \"true\", \"do_ibaq\": {\"ibaq\": \"False\", \"__current_case__\": 1}, \"advancedSiteIntensities\": \"true\"}}, \"qc\": {\"do_it\": \"true\", \"__current_case__\": 0, \"parameters\": \"true\", \"summary\": \"true\", \"proteingroups\": \"true\", \"evidence\": \"true\", \"msms\": \"true\", \"msmsscans\": \"true\"}, \"search_opts\": {\"template\": null, \"min_peptide_len\": \"7\", \"max_peptide_mass\": \"4600\", \"min_unique_pep\": \"1\", \"calc_peak_properties\": \"false\", \"match_between_runs\": \"false\", \"incl_contaminants\": \"true\", \"decoy_mode\": \"revert\", \"psm_fdr\": \"0.01\", \"protein_fdr\": \"0.01\", \"min_pep_length\": \"8\", \"max_pep_length\": \"25\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6.10.43+galaxy3", + "type": "tool", + "uuid": "ae1d3f39-d1a8-4cd3-9534-64cc69f175a9", + "workflow_outputs": [ + { + "label": null, + "output_name": "peptides", + "uuid": "fe9cec5c-de9c-4c39-bddd-e7dd199f2564" + }, + { + "label": null, + "output_name": "ptxqc_report", + "uuid": "360aa96f-bebf-46b6-9b30-1d6940779216" + }, + { + "label": null, + "output_name": "proteinGroups", + "uuid": "c155ddc4-7084-4830-836d-b71f7557a86e" + }, + { + "label": null, + "output_name": "mqpar", + "uuid": "23b1a6e3-3da7-4c60-951b-71b1f4da33ba" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "proteinGroups" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 465.6999969482422, + "height": 93.19999694824219, + "left": 530, + "right": 730, + "top": 372.5, + "width": 200, + "x": 530, + "y": 372.5 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c38!=\\\"+\\\"\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "295e41a6-0642-414e-a939-8179f8b5f47d", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "7d51c925-9c11-4125-98f3-abe19bc22825" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 470.6999969482422, + "height": 93.19999694824219, + "left": 745, + "right": 945, + "top": 377.5, + "width": 200, + "x": 745, + "y": 377.5 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"false\", \"pattern\": \"(HUMAN)|(Majority)\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "f582f3e8-8308-49c3-a1ee-3ba9051f5a85", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "e88a2cae-98f1-471d-9131-338a6e1169fd" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 465.6999969482422, + "height": 93.19999694824219, + "left": 970, + "right": 1170, + "top": 372.5, + "width": 200, + "x": 970, + "y": 372.5 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c8,c32,c33\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "99557c29-6927-4736-afff-9a2be53e967e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "a97baff1-6f76-4400-98c7-138666974448" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 344.6999969482422, + "height": 93.19999694824219, + "left": 1162, + "right": 1362, + "top": 251.5, + "width": 200, + "x": 1162, + "y": 251.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"header\": \"1\", \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"2\", \"order\": \"r\", \"style\": \"g\"}], \"unique\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "c6da37e8-98fc-4ab2-8ec1-9a55510b09c5", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "44df6e3d-01b3-4136-b18b-694f4d153b32" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Compute", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 585.6999969482422, + "height": 93.19999694824219, + "left": 1190, + "right": 1390, + "top": 492.5, + "width": 200, + "x": 1190, + "y": 492.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "tool_shed_repository": { + "changeset_revision": "be25c075ed54", + "name": "column_maker", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"avoid_scientific_notation\": \"no\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"log(c2,2)\", \"header_lines_conditional\": {\"header_lines_select\": \"yes\", \"__current_case__\": 1, \"header_new_column_name\": \"log2 intensity sample1\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"round\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.0", + "type": "tool", + "uuid": "a73294a5-050b-436a-95c2-7042aa30bab3", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "ec3d0fb2-8ce0-48d9-92d5-590c2644e326" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 9, + "input_connections": { + "infile": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 339.6999969482422, + "height": 93.19999694824219, + "left": 1410, + "right": 1610, + "top": 246.5, + "width": 200, + "x": 1410, + "y": 246.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"header\": \"1\", \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"3\", \"order\": \"r\", \"style\": \"g\"}], \"unique\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "3f46dbc8-6684-4e43-bfca-114671eff459", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "9ea6d4d3-05a4-4b64-a36c-eb4417be546d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 8, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Compute", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 585.6999969482422, + "height": 93.19999694824219, + "left": 1410, + "right": 1610, + "top": 492.5, + "width": 200, + "x": 1410, + "y": 492.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "tool_shed_repository": { + "changeset_revision": "be25c075ed54", + "name": "column_maker", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"avoid_scientific_notation\": \"no\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"log(c3,2)\", \"header_lines_conditional\": {\"header_lines_select\": \"yes\", \"__current_case__\": 1, \"header_new_column_name\": \"log2 intensity sample2\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"round\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.0", + "type": "tool", + "uuid": "f164eec0-10d2-446d-ada7-db67303384f9", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "1905e349-23d8-4b81-a156-7e22977d3593" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 10, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 766.6999969482422, + "height": 93.19999694824219, + "left": 1568, + "right": 1768, + "top": 673.5, + "width": 200, + "x": 1568, + "y": 673.5 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"columnList\": \"c4,c5\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "7e308945-aa0f-494a-a59f-b960614e0a03", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "70c5c495-69e5-41e2-aefa-2bcc18aa5fd4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 10, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Compute", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 598.6999969482422, + "height": 93.19999694824219, + "left": 1707, + "right": 1907, + "top": 505.5, + "width": 200, + "x": 1707, + "y": 505.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "tool_shed_repository": { + "changeset_revision": "be25c075ed54", + "name": "column_maker", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"avoid_scientific_notation\": \"no\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"cond\": \"c4-c5\", \"header_lines_conditional\": {\"header_lines_select\": \"yes\", \"__current_case__\": 1, \"header_new_column_name\": \"log2 Fold Change\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"round\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.0", + "type": "tool", + "uuid": "55d7d873-c11c-47ce-8c53-022ab234f8e1", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "f61c7a19-b543-4f5a-afe0-44c06bb28cd4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 12, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Histogram", + "outputs": [ + { + "name": "out_file1", + "type": "pdf" + } + ], + "position": { + "bottom": 465.6999969482422, + "height": 93.19999694824219, + "left": 1850, + "right": 2050, + "top": 372.5, + "width": 200, + "x": 1850, + "y": 372.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "tool_shed_repository": { + "changeset_revision": "6f134426c2b0", + "name": "histogram", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"breaks\": \"0\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"density\": \"true\", \"frequency\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"numerical_column\": \"6\", \"title\": \"log2 Fold Change\", \"xlab\": \"V1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4", + "type": "tool", + "uuid": "0cffa4b8-d1df-4339-a6f8-18041a18c7e2", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "8b6f54e6-bea6-4dac-9226-f5468661fcd5" + } + ] + } + ], + "parent_id": "proteomics/maxquant-label-free", + "path": "topics/proteomics/tutorials/maxquant-label-free/workflows/maxquant_label_free.ga", + "tags": [ + "proteomics" + ], + "test_results": null, + "tests": true, + "title": "Proteomics: MaxQuant workflow", + "topic_id": "proteomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/proteomics-maxquant-label-free/versions/maxquant-label-free", + "tutorial_id": "maxquant-label-free", + "url": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-label-free/workflows/maxquant_label_free.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/proteomics/tutorials/maxquant-label-free/workflows/maxquant_label_free.html", + "version": 6, + "wfid": "proteomics-maxquant-label-free", + "wfname": "maxquant-label-free", + "workflow": "maxquant_label_free.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.3.0", + "toolshed.g2.bx.psu.edu/repos/devteam/histogram/histogram_rpy/1.0.4", + "toolshed.g2.bx.psu.edu/repos/galaxyp/maxquant/maxquant/1.6.10.43+galaxy3" + ], + "workflowhub_id": "1140" + } + ], + "zenodo_link": "https://zenodo.org/record/3774452" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "email": "melanie.foell@mol-med.uni-freiburg.de", + "id": "foellmelanie", + "joined": "2018-10", + "matrix": "foellmelanie:matrix.org", + "name": "Melanie F\u00f6ll", + "orcid": "0000-0002-1887-7543", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/foellmelanie/", + "twitter": "MCFoell", + "url": "https://training.galaxyproject.org/training-material/api/contributors/foellmelanie.json" + } + ], + "dir": "topics/proteomics/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "proteomics/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-08-08", + "pageviews": 5726884, + "priority": 1, + "pub_date": "2017-12-01", + "recordings": [ + { + "captioners": [ + "foellmelanie" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "20M", + "speakers": [ + "awspolly" + ], + "youtube_id": "2C96AvrFT38" + } + ], + "redirect_from": [ + "/topics/proteomics/slides/introduction", + "/short/proteomics/introduction/slides", + "/short/S00080" + ], + "short_id": "S00080", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "foellmelanie" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "20M", + "speakers": [ + "awspolly" + ], + "youtube_id": "2C96AvrFT38" + } + ], + "subtopic": "intro", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to proteomics, protein identification, quantification and statistical modelling", + "tools": [], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/introduction/slides.json" + }, + "version": 3, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/labelfree-vs-labelled/tutorial.json", + "contributors": [ + { + "email": "sigloch+github@mailbox.org", + "former_affiliations": [ + "uni-freiburg" + ], + "id": "stortebecker", + "joined": "2017-09", + "name": "Florian Christoph Sigloch", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stortebecker/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stortebecker.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/proteomics/tutorials/labelfree-vs-labelled", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "proteomics/labelfree-vs-labelled", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Label-free and labelled methods are not better or worse *per se*.", + "Different scientific question call for different quantitation methods.", + "Be wise in choosing the right method before starting your LC-MS/MS runs." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2022-10-18", + "objectives": [ + "Choose your quantitation method." + ], + "pageviews": 11544, + "pub_date": "2017-03-17", + "questions": [ + "What are benefits and drawbacks of different quantitation methods?", + "How to choose which quantitation method bests suits my need?" + ], + "short_id": "T00216", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "id-quant", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "DDA" + ], + "time_estimation": "15m", + "title": "Label-free versus Labelled - How to Choose Your Quantitation Method", + "tools": [], + "topic_name": "proteomics", + "topic_name_human": "Proteomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "labelfree-vs-labelled", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/proteomics/tutorials/labelfree-vs-labelled/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/labelfree-vs-labelled/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/proteomics/tutorials/labelfree-vs-labelled/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 55, + "visitors": 6916, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_fastx", + "owner": "iuc", + "revisions": "a8d69aee190e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "898b67846b47", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "d94aff5ee623", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_fastx\n owner: iuc\n revisions: a8d69aee190e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: 898b67846b47\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: d94aff5ee623\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/human-reads-removal/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/human-reads-removal", + "edam_operation": [ + "Generation", + "Data handling", + "Sequence file editing", + "Sequence alignment", + "Genome indexing", + "Read mapping" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/human-reads-removal", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Before submitting raw viral sequencing data to public databases you will want to remove human sequence traces", + "Human reads can be identified by mapping the data to the human reference genome", + "After mapping, you can extract the read identifiers of the non-human reads and use these to extract just the desired original sequenced reads from the input data" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Obtain viral (SARS-CoV-2) sequencing data with contaminating human reads from public sources", + "Organize the data into a collection", + "Preprocess and map the data against the human reference genome", + "Eliminate reads/read pairs that map to the human genome from the original data" + ], + "pageviews": 4759, + "pub_date": "2021-08-04", + "questions": [ + "How can you remove traces of human sequence data from a sequenced viral sample?" + ], + "requirements": [ + { + "topic_name": "sequence-analysis", + "tutorials": [ + "quality-control", + "mapping" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + } + ], + "short_id": "T00236", + "short_tools": [ + "Grep1", + "__UNZIP_COLLECTION__", + "samtools_fastx", + "__ZIP_COLLECTION__", + "seqtk_subseq", + "tp_replace_in_line", + "bwa_mem", + "trimmomatic" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "covid19" + ], + "time_estimation": "1h", + "title": "Removal of human reads from SARS-CoV-2 sequencing data", + "tools": [ + "Grep1", + "__UNZIP_COLLECTION__", + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.0", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "human-reads-removal", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/human-reads-removal/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/human-reads-removal/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/human-reads-removal/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 141, + "visitors": 3347, + "workflows": [ + { + "creators": [], + "description": "Removal of human reads from SARS-CoV-2 sequencing data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[label=\"Trimmomatic\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Unzip Collection\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Map with BWA-MEM\"]\n 1 -> 3 [label=\"fastq_out_paired\"]\n 4[label=\"Samtools fastx\"]\n 3 -> 4 [label=\"bam_output\"]\n 5[label=\"Select\"]\n 4 -> 5 [label=\"forward\"]\n 6[label=\"Replace Text\"]\n 5 -> 6 [label=\"out_file1\"]\n 7[label=\"seqtk_subseq\"]\n 2 -> 7 [label=\"forward\"]\n 6 -> 7 [label=\"outfile\"]\n 8[label=\"seqtk_subseq\"]\n 2 -> 8 [label=\"reverse\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"Paired-end collection of cleaned reads\"]\n 7 -> 9 [label=\"default\"]\n 8 -> 9 [label=\"default\"]\n kf24bbf28dc51440fa758ac05033f0645[color=lightseagreen,label=\"Output\\nCleaned Data\"]\n 9 -> kf24bbf28dc51440fa758ac05033f0645\n}", + "history": [ + { + "hash": "f71f6dde01e2dfe86a4b43526f119d9050693f84", + "message": "Address WF linting issues", + "num": 2, + "short_hash": "f71f6dde0", + "unix": "1628012579" + }, + { + "hash": "f232ad426455a30be4a74af21054384c23b07275", + "message": "Add new tutorial for cleaning SARS-CoV-2 data", + "num": 1, + "short_hash": "f232ad426", + "unix": "1628010649" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 564, + "height": 81, + "left": 296, + "right": 496, + "top": 483, + "width": 200, + "x": 296, + "y": 483 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d61c43e8-23ee-4f9a-9fd8-f58ffc134735", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b14c9326-21d3-4e0e-be24-7654e6b31b43" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Trimmomatic\"];\n 0 -->|output| 1;\n 2[\"Unzip Collection\"];\n 0 -->|output| 2;\n 3[\"Map with BWA-MEM\"];\n 1 -->|fastq_out_paired| 3;\n 4[\"Samtools fastx\"];\n 3 -->|bam_output| 4;\n 5[\"Select\"];\n 4 -->|forward| 5;\n 6[\"Replace Text\"];\n 5 -->|out_file1| 6;\n 7[\"seqtk_subseq\"];\n 2 -->|forward| 7;\n 6 -->|outfile| 7;\n 8[\"seqtk_subseq\"];\n 2 -->|reverse| 8;\n 6 -->|outfile| 8;\n 9[\"Paired-end collection of cleaned reads\"];\n 7 -->|default| 9;\n 8 -->|default| 9;\n f24bbf28-dc51-440f-a758-ac05033f0645[\"Output\\nCleaned Data\"];\n 9 --> f24bbf28-dc51-440f-a758-ac05033f0645;\n style f24bbf28-dc51-440f-a758-ac05033f0645 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "GTN - Sequence Analyses - Removal of human reads from SARS-CoV-2 sequencing data", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 564, + "height": 81, + "left": 296, + "right": 496, + "top": 483, + "width": 200, + "x": 296, + "y": 483 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d61c43e8-23ee-4f9a-9fd8-f58ffc134735", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b14c9326-21d3-4e0e-be24-7654e6b31b43" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "errors": null, + "id": 1, + "input_connections": { + "readtype|fastq_pair": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Trimmomatic", + "outputs": [ + { + "name": "fastq_out_paired", + "type": "input" + }, + { + "name": "fastq_out_unpaired", + "type": "input" + } + ], + "position": { + "bottom": 515, + "height": 202, + "left": 532, + "right": 732, + "top": 313, + "width": 200, + "x": 532, + "y": 313 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1", + "tool_shed_repository": { + "changeset_revision": "d94aff5ee623", + "name": "trimmomatic", + "owner": "pjbriggs", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"illuminaclip\": {\"do_illuminaclip\": \"false\", \"__current_case__\": 1}, \"operations\": [{\"__index__\": 0, \"operation\": {\"name\": \"SLIDINGWINDOW\", \"__current_case__\": 0, \"window_size\": \"4\", \"required_quality\": \"20\"}}], \"output_err\": \"false\", \"output_logs\": \"false\", \"readtype\": {\"single_or_paired\": \"collection\", \"__current_case__\": 2, \"fastq_pair\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.38.1", + "type": "tool", + "uuid": "ced9a15d-ca78-4cf5-b1a0-267920691879", + "workflow_outputs": [ + { + "label": null, + "output_name": "fastq_out_unpaired", + "uuid": "88e4c149-85d2-4c19-8a53-f242a3703e5e" + }, + { + "label": null, + "output_name": "fastq_out_paired", + "uuid": "fd0243b9-ef6a-445d-8fb9-f76d47c3f6fc" + } + ] + }, + { + "annotation": "", + "content_id": "__UNZIP_COLLECTION__", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Unzip Collection", + "outputs": [ + { + "name": "forward", + "type": "input" + }, + { + "name": "reverse", + "type": "input" + } + ], + "position": { + "bottom": 746, + "height": 182, + "left": 735, + "right": 935, + "top": 564, + "width": 200, + "x": 735, + "y": 564 + }, + "post_job_actions": {}, + "tool_id": "__UNZIP_COLLECTION__", + "tool_state": "{\"input\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "f6552b12-5845-486b-95f5-35a3eefaa109", + "workflow_outputs": [ + { + "label": null, + "output_name": "forward", + "uuid": "5fabd686-3611-4d28-aff3-c1286b461bbf" + }, + { + "label": null, + "output_name": "reverse", + "uuid": "9b0c1a5f-6d39-46c7-a16d-afbb9e34bcfe" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "errors": null, + "id": 3, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 1, + "output_name": "fastq_out_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Map with BWA-MEM", + "name": "fastq_input" + } + ], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "bottom": 487, + "height": 192, + "left": 753, + "right": 953, + "top": 295, + "width": 200, + "x": 753, + "y": 295 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "tool_shed_repository": { + "changeset_revision": "64f11cf59c6e", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"fastq_input\": {\"fastq_input_selector\": \"paired_collection\", \"__current_case__\": 2, \"fastq_input1\": {\"__class__\": \"RuntimeValue\"}, \"iset_stats\": \"\"}, \"output_sort\": \"coordinate\", \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"ref_file\": \"hg38\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.2", + "type": "tool", + "uuid": "c21129e8-b54f-4a7d-9af2-b8202434c342", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "f0ca56d9-f544-465c-ad37-6380ba0ac2ea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "bam_output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools fastx", + "outputs": [ + { + "name": "forward", + "type": "fasta" + } + ], + "position": { + "bottom": 447, + "height": 152, + "left": 973, + "right": 1173, + "top": 295, + "width": 200, + "x": 973, + "y": 295 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a8d69aee190e", + "name": "samtools_fastx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"copy_arb_tags\": \"\", \"copy_tags\": \"false\", \"exclusive_filter\": null, \"exclusive_filter_all\": null, \"idxout_cond\": {\"idxout_select\": \"no\", \"__current_case__\": 0}, \"inclusive_filter\": [\"4\", \"8\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"1085990\", \"output_fmt_cond\": {\"output_fmt_select\": \"fasta\", \"__current_case__\": 1}, \"outputs\": [\"r1\"], \"read_numbering\": \"-n\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "756ca036-b6b5-46e8-a230-81ed522ba950", + "workflow_outputs": [ + { + "label": null, + "output_name": "forward", + "uuid": "e82ae014-e75a-486c-93d6-af8cdd6e6f95" + } + ] + }, + { + "annotation": "", + "content_id": "Grep1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "forward" + } + }, + "inputs": [], + "label": null, + "name": "Select", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 387, + "height": 92, + "left": 1193, + "right": 1393, + "top": 295, + "width": 200, + "x": 1193, + "y": 295 + }, + "post_job_actions": {}, + "tool_id": "Grep1", + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"1085990\", \"invert\": \"\", \"keep_header\": \"false\", \"pattern\": \"^>.+\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "5ab56d83-be12-4498-a88e-16d37ef2e904", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "04aaed7c-6c4c-44d6-89b0-5bba0a58927b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Replace Text", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 387, + "height": 92, + "left": 1413, + "right": 1613, + "top": 295, + "width": 200, + "x": 1413, + "y": 295 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"infile|__identifier__\": \"1085990\", \"replacements\": [{\"__index__\": 0, \"find_pattern\": \"^>(.+)\", \"replace_pattern\": \"\\\\1\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "030b177e-2375-4856-b640-8ffd7f591aaf", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "f81d7560-8835-4307-b876-f56e22edf40e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 7, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "forward" + }, + "source|name_list": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "bottom": 416, + "height": 142, + "left": 1653, + "right": 1853, + "top": 274, + "width": 200, + "x": 1653, + "y": 274 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"in_file|__identifier__\": \"1085990\", \"l\": \"0\", \"name_list|__identifier__\": \"1085990\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "50599db8-7c04-4f0f-8cc7-ca9fbeb405ea", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "75989c7c-9b50-4286-b59a-e2ebefcd6206" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "errors": null, + "id": 8, + "input_connections": { + "in_file": { + "id": 2, + "output_name": "reverse" + }, + "source|name_list": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_subseq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "bottom": 572, + "height": 142, + "left": 1658, + "right": 1858, + "top": 430, + "width": 200, + "x": 1658, + "y": 430 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "58c8ece95b53", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"in_file\": {\"__class__\": \"ConnectedValue\"}, \"in_file|__identifier__\": \"1085990\", \"l\": \"0\", \"name_list|__identifier__\": \"1085990\", \"source\": {\"type\": \"name\", \"__current_case__\": 1, \"name_list\": {\"__class__\": \"ConnectedValue\"}}, \"t\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "6b8ac606-6490-4355-9111-001dbe15fd22", + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "1787644d-4796-4928-9458-7fc0779eb500" + } + ] + }, + { + "annotation": "", + "content_id": "__ZIP_COLLECTION__", + "errors": null, + "id": 9, + "input_connections": { + "input_forward": { + "id": 7, + "output_name": "default" + }, + "input_reverse": { + "id": 8, + "output_name": "default" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Zip Collection", + "name": "input_forward" + }, + { + "description": "runtime parameter for tool Zip Collection", + "name": "input_reverse" + } + ], + "label": "Paired-end collection of cleaned reads", + "name": "Zip Collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "bottom": 490.5, + "height": 142, + "left": 1939, + "right": 2139, + "top": 348.5, + "width": 200, + "x": 1939, + "y": 348.5 + }, + "post_job_actions": {}, + "tool_id": "__ZIP_COLLECTION__", + "tool_state": "{\"input_forward\": {\"__class__\": \"RuntimeValue\"}, \"input_reverse\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "381d0485-0164-410f-801d-7dfb7891663d", + "workflow_outputs": [ + { + "label": "Cleaned Data", + "output_name": "output", + "uuid": "f24bbf28-dc51-440f-a758-ac05033f0645" + } + ] + } + ], + "parent_id": "sequence-analysis/human-reads-removal", + "path": "topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.ga", + "tags": [ + "sequence-analysis" + ], + "test_results": null, + "tests": false, + "title": "GTN - Sequence Analyses - Removal of human reads from SARS-CoV-2 sequencing data", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-human-reads-removal/versions/human-reads-removal", + "tutorial_id": "human-reads-removal", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/human-reads-removal/workflows/human-reads-removal.html", + "version": 1, + "wfid": "sequence-analysis-human-reads-removal", + "wfname": "human-reads-removal", + "workflow": "human-reads-removal.ga", + "workflow_tools": [ + "Grep1", + "__UNZIP_COLLECTION__", + "__ZIP_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_fastx/samtools_fastx/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1" + ], + "workflowhub_id": "1276" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "ncbi_fcs_gx", + "owner": "iuc", + "revisions": "49f8eae39606", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_fcs_adaptor", + "owner": "richard-burhans", + "revisions": "d55ad8533d58", + "tool_panel_section_label": "Sequence Contamination Filtering", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: ncbi_fcs_gx\n owner: iuc\n revisions: 49f8eae39606\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_fcs_adaptor\n owner: richard-burhans\n revisions: d55ad8533d58\n tool_panel_section_label: Sequence Contamination Filtering\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-fcs/tutorial.json", + "contributions": { + "authorship": [ + "tvedtees" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "NIH" + ] + }, + "contributors": [ + { + "id": "tvedtees", + "joined": "2024-03", + "name": "Eric Tvedte", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tvedtees/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tvedtees.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "/training-material/shared/images/nih.png", + "funder": true, + "github": false, + "id": "NIH", + "name": "National Institutes of Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/NIH/", + "short_name": "NIH", + "url": "https://training.galaxyproject.org/training-material/api/funders/NIH.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/ncbi-fcs", + "edam_operation": [ + "Sequence assembly validation", + "Sequence contamination filtering", + "Sequence trimming" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/ncbi-fcs", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Contamination can arise from multiple sources and occur at multiple stages of a genome assembly project.", + "Contamination cleanup is essential for reliable comparative genomics analyses." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-04-16", + "objectives": [ + "Learn how to screen a genome assembly for adaptor and vector contamination.", + "Learn how to screen a genome assembly for non-host organism contamination." + ], + "pageviews": 425, + "pub_date": "2024-04-16", + "questions": [ + "Are the sequences in a genome assembly contaminant-free?" + ], + "short_id": "T00439", + "short_tools": [ + "ncbi_fcs_adaptor", + "ncbi_fcs_gx" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "90M", + "title": "Screening assembled genomes for contamination using NCBI FCS", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_fcs_gx/ncbi_fcs_gx/0.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/richard-burhans/ncbi_fcs_adaptor/ncbi_fcs_adaptor/0.5.0+galaxy0" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ncbi-fcs", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/ncbi-fcs/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-fcs/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-fcs/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 135, + "visitors": 302, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "name": "National Center for Biotechnology Information", + "url": "https://github.com/ncbi/fcs" + } + ], + "description": "This workflow performs contamination cleaning steps on assembled genomes. Users specify an input genome (fasta/fasta.gz) and taxonomic information corresponding to the source organism. There are two screening steps for foreign organism sequences (FCS-GX) and adaptors (FCS-adaptor), each followed by a cleaning step to remove identified contaminants. The final output is a cleaned genome. ", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput genome\"]\n 1[label=\"FCS-GX screen\"]\n 0 -> 1 [label=\"output\"]\n k9741edf24be645a3980d99b1aea18380[color=lightseagreen,label=\"Output\\nfcs_gx_action_report\"]\n 1 -> k9741edf24be645a3980d99b1aea18380\n kddedd49f8c574e3ea1583d66ce12f05c[color=lightseagreen,label=\"Output\\nfcs_gx_taxonomy_report\"]\n 1 -> kddedd49f8c574e3ea1583d66ce12f05c\n 2[label=\"FCS-GX clean\"]\n 1 -> 2 [label=\"action_report\"]\n 0 -> 2 [label=\"output\"]\n kf3a37b43d3044ec0a023197c9e0ce2e1[color=lightseagreen,label=\"Output\\ngx_contam_fasta\"]\n 2 -> kf3a37b43d3044ec0a023197c9e0ce2e1\n k56716c7cac7f42f7bbef62a36b4d3810[color=lightseagreen,label=\"Output\\ngx_clean_fasta\"]\n 2 -> k56716c7cac7f42f7bbef62a36b4d3810\n 3[label=\"FCS-adaptor screen\"]\n 2 -> 3 [label=\"clean_fasta\"]\n k6a4baf4680b04a96b8649201fc80cdb7[color=lightseagreen,label=\"Output\\nfcs_adaptor_report\"]\n 3 -> k6a4baf4680b04a96b8649201fc80cdb7\n k1cad7ab4a817436c9a63fd4e3c6b4bbb[color=lightseagreen,label=\"Output\\nadaptor_clean_fasta\"]\n 3 -> k1cad7ab4a817436c9a63fd4e3c6b4bbb\n 4[label=\"FCS-adaptor clean\"]\n 3 -> 4 [label=\"adaptor_report\"]\n 2 -> 4 [label=\"clean_fasta\"]\n k0da685707490408786c8739522e1a776[color=lightseagreen,label=\"Output\\nadaptor_contam_fasta\"]\n 4 -> k0da685707490408786c8739522e1a776\n k4985eb0730b04872ab8352ffeb619900[color=lightseagreen,label=\"Output\\nfinal_clean_fasta\"]\n 4 -> k4985eb0730b04872ab8352ffeb619900\n}", + "history": [ + { + "hash": "3cc782f4789a4e769a903fb810a7ad5c72385c6d", + "message": "Modify NIH funder. Add workflow license URL", + "num": 2, + "short_hash": "3cc782f47", + "unix": "1713210183" + }, + { + "hash": "05ae375a039cfb4ac8f226d77c106a6fed0764ae", + "message": "Suggested tutorial changes. Add workflow test.", + "num": 1, + "short_hash": "05ae375a0", + "unix": "1712757577" + } + ], + "inputs": [ + { + "annotation": "input must be an assembled genome in fasta/fasta.gz format. FCS is not intended to identify contaminants in sequencing reads inputs.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "input must be an assembled genome in fasta/fasta.gz format. FCS is not intended to identify contaminants in sequencing reads inputs.", + "name": "Input genome" + } + ], + "label": "Input genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 3.9375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta.gz\", \" fasta\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "a2066ff6-a9c6-4152-9537-a7d05d2bea00", + "when": null, + "workflow_outputs": [] + } + ], + "license": "http://www.usa.gov/publicdomain/label/1.0/", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput genome\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"FCS-GX screen\"];\n 0 -->|output| 1;\n 9741edf2-4be6-45a3-980d-99b1aea18380[\"Output\\nfcs_gx_action_report\"];\n 1 --> 9741edf2-4be6-45a3-980d-99b1aea18380;\n style 9741edf2-4be6-45a3-980d-99b1aea18380 stroke:#2c3143,stroke-width:4px;\n ddedd49f-8c57-4e3e-a158-3d66ce12f05c[\"Output\\nfcs_gx_taxonomy_report\"];\n 1 --> ddedd49f-8c57-4e3e-a158-3d66ce12f05c;\n style ddedd49f-8c57-4e3e-a158-3d66ce12f05c stroke:#2c3143,stroke-width:4px;\n 2[\"FCS-GX clean\"];\n 1 -->|action_report| 2;\n 0 -->|output| 2;\n f3a37b43-d304-4ec0-a023-197c9e0ce2e1[\"Output\\ngx_contam_fasta\"];\n 2 --> f3a37b43-d304-4ec0-a023-197c9e0ce2e1;\n style f3a37b43-d304-4ec0-a023-197c9e0ce2e1 stroke:#2c3143,stroke-width:4px;\n 56716c7c-ac7f-42f7-bbef-62a36b4d3810[\"Output\\ngx_clean_fasta\"];\n 2 --> 56716c7c-ac7f-42f7-bbef-62a36b4d3810;\n style 56716c7c-ac7f-42f7-bbef-62a36b4d3810 stroke:#2c3143,stroke-width:4px;\n 3[\"FCS-adaptor screen\"];\n 2 -->|clean_fasta| 3;\n 6a4baf46-80b0-4a96-b864-9201fc80cdb7[\"Output\\nfcs_adaptor_report\"];\n 3 --> 6a4baf46-80b0-4a96-b864-9201fc80cdb7;\n style 6a4baf46-80b0-4a96-b864-9201fc80cdb7 stroke:#2c3143,stroke-width:4px;\n 1cad7ab4-a817-436c-9a63-fd4e3c6b4bbb[\"Output\\nadaptor_clean_fasta\"];\n 3 --> 1cad7ab4-a817-436c-9a63-fd4e3c6b4bbb;\n style 1cad7ab4-a817-436c-9a63-fd4e3c6b4bbb stroke:#2c3143,stroke-width:4px;\n 4[\"FCS-adaptor clean\"];\n 3 -->|adaptor_report| 4;\n 2 -->|clean_fasta| 4;\n 0da68570-7490-4087-86c8-739522e1a776[\"Output\\nadaptor_contam_fasta\"];\n 4 --> 0da68570-7490-4087-86c8-739522e1a776;\n style 0da68570-7490-4087-86c8-739522e1a776 stroke:#2c3143,stroke-width:4px;\n 4985eb07-30b0-4872-ab83-52ffeb619900[\"Output\\nfinal_clean_fasta\"];\n 4 --> 4985eb07-30b0-4872-ab83-52ffeb619900;\n style 4985eb07-30b0-4872-ab83-52ffeb619900 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "NCBI Foreign Contamination Screen", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_fcs_gx/ncbi_fcs_gx/0.5.0+galaxy0", + "errors": null, + "id": 1, + "input_connections": { + "mode|fasta": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool NCBI FCS GX", + "name": "mode" + } + ], + "label": "FCS-GX screen", + "name": "NCBI FCS GX", + "outputs": [ + { + "name": "taxonomy_report", + "type": "tabular" + }, + { + "name": "action_report", + "type": "tabular" + } + ], + "position": { + "left": 355.5156127405953, + "top": 3.28126838910714 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_fcs_gx/ncbi_fcs_gx/0.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3cdb96f2855d", + "name": "ncbi_fcs_gx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"mode\": {\"mode_selector\": \"screen\", \"__current_case__\": 0, \"config_tag\": \"all\", \"fasta\": {\"__class__\": \"ConnectedValue\"}, \"id\": {\"id_selector\": \"gx_div\", \"__current_case__\": 0, \"div\": \"fung:budding yeasts\"}, \"species\": null, \"screen_adv\": {\"gx_align_exclude_taxa\": \"\", \"gx_extra_contam_divs\": null, \"split_fasta\": true, \"div\": \"\", \"database\": \"/cvmfs/data.galaxyproject.org/byhand/ncbi_fcs_gx/all\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.0+galaxy0", + "type": "tool", + "uuid": "7907456b-eaa7-4a3f-b53b-c250110a117a", + "when": null, + "workflow_outputs": [ + { + "label": "fcs_gx_action_report", + "output_name": "action_report", + "uuid": "9741edf2-4be6-45a3-980d-99b1aea18380" + }, + { + "label": "fcs_gx_taxonomy_report", + "output_name": "taxonomy_report", + "uuid": "ddedd49f-8c57-4e3e-a158-3d66ce12f05c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_fcs_gx/ncbi_fcs_gx/0.5.0+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "mode|action_report": { + "id": 1, + "output_name": "action_report" + }, + "mode|input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool NCBI FCS GX", + "name": "mode" + }, + { + "description": "runtime parameter for tool NCBI FCS GX", + "name": "mode" + } + ], + "label": "FCS-GX clean", + "name": "NCBI FCS GX", + "outputs": [ + { + "name": "contam_fasta", + "type": "fasta" + }, + { + "name": "clean_fasta", + "type": "fasta" + } + ], + "position": { + "left": 351.484375, + "top": 301.109375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_fcs_gx/ncbi_fcs_gx/0.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3cdb96f2855d", + "name": "ncbi_fcs_gx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"mode\": {\"mode_selector\": \"clean\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"action_report\": {\"__class__\": \"ConnectedValue\"}, \"min_seq_len\": \"200\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.0+galaxy0", + "type": "tool", + "uuid": "0eba0bee-4d7a-4a8d-824c-76d5ae5dcdaa", + "when": null, + "workflow_outputs": [ + { + "label": "gx_contam_fasta", + "output_name": "contam_fasta", + "uuid": "f3a37b43-d304-4ec0-a023-197c9e0ce2e1" + }, + { + "label": "gx_clean_fasta", + "output_name": "clean_fasta", + "uuid": "56716c7c-ac7f-42f7-bbef-62a36b4d3810" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/richard-burhans/ncbi_fcs_adaptor/ncbi_fcs_adaptor/0.5.0+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "clean_fasta" + } + }, + "inputs": [], + "label": "FCS-adaptor screen", + "name": "NCBI FCS Adaptor", + "outputs": [ + { + "name": "adaptor_report", + "type": "tabular" + }, + { + "name": "clean_fasta", + "type": "fasta" + } + ], + "position": { + "left": 701.53125, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/richard-burhans/ncbi_fcs_adaptor/ncbi_fcs_adaptor/0.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d55ad8533d58", + "name": "ncbi_fcs_adaptor", + "owner": "richard-burhans", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"optional_log\": null}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"tax\": \"--euk\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.0+galaxy0", + "type": "tool", + "uuid": "1c9a5183-76a7-4cd9-9511-72fd75101c13", + "when": null, + "workflow_outputs": [ + { + "label": "fcs_adaptor_report", + "output_name": "adaptor_report", + "uuid": "6a4baf46-80b0-4a96-b864-9201fc80cdb7" + }, + { + "label": "adaptor_clean_fasta", + "output_name": "clean_fasta", + "uuid": "1cad7ab4-a817-436c-9a63-fd4e3c6b4bbb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_fcs_gx/ncbi_fcs_gx/0.5.0+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "mode|action_report": { + "id": 3, + "output_name": "adaptor_report" + }, + "mode|input": { + "id": 2, + "output_name": "clean_fasta" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool NCBI FCS GX", + "name": "mode" + }, + { + "description": "runtime parameter for tool NCBI FCS GX", + "name": "mode" + } + ], + "label": "FCS-adaptor clean", + "name": "NCBI FCS GX", + "outputs": [ + { + "name": "contam_fasta", + "type": "fasta" + }, + { + "name": "clean_fasta", + "type": "fasta" + } + ], + "position": { + "left": 699, + "top": 302.78125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_fcs_gx/ncbi_fcs_gx/0.5.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3cdb96f2855d", + "name": "ncbi_fcs_gx", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"mode\": {\"mode_selector\": \"clean\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"action_report\": {\"__class__\": \"ConnectedValue\"}, \"min_seq_len\": \"200\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.5.0+galaxy0", + "type": "tool", + "uuid": "ee8b7bac-42a5-4b17-b8ef-f432c626bb80", + "when": null, + "workflow_outputs": [ + { + "label": "adaptor_contam_fasta", + "output_name": "contam_fasta", + "uuid": "0da68570-7490-4087-86c8-739522e1a776" + }, + { + "label": "final_clean_fasta", + "output_name": "clean_fasta", + "uuid": "4985eb07-30b0-4872-ab83-52ffeb619900" + } + ] + } + ], + "parent_id": "sequence-analysis/ncbi-fcs", + "path": "topics/sequence-analysis/tutorials/ncbi-fcs/workflows/NCBI-Foreign-Contamination-Screen.ga", + "tags": [ + "NCBI" + ], + "test_results": null, + "tests": true, + "title": "NCBI Foreign Contamination Screen", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-ncbi-fcs/versions/ncbi-foreign-contamination-screen", + "tutorial_id": "ncbi-fcs", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/ncbi-fcs/workflows/NCBI-Foreign-Contamination-Screen.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/ncbi-fcs/workflows/NCBI-Foreign-Contamination-Screen.html", + "version": 1, + "wfid": "sequence-analysis-ncbi-fcs", + "wfname": "ncbi-foreign-contamination-screen", + "workflow": "NCBI-Foreign-Contamination-Screen.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/ncbi_fcs_gx/ncbi_fcs_gx/0.5.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/richard-burhans/ncbi_fcs_adaptor/ncbi_fcs_adaptor/0.5.0+galaxy0" + ], + "workflowhub_id": null + } + ], + "zenodo_link": "https://zenodo.org/records/10932013" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bracken", + "owner": "iuc", + "revisions": "978ae4147c29", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bracken", + "owner": "iuc", + "revisions": "1d4bd12f01cf", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "c59d48774d03", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "cdee7158adf3", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "recentrifuge", + "owner": "iuc", + "revisions": "b5407cc2bf51", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bracken\n owner: iuc\n revisions: 978ae4147c29\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bracken\n owner: iuc\n revisions: 1d4bd12f01cf\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: c59d48774d03\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: cdee7158adf3\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: recentrifuge\n owner: iuc\n revisions: b5407cc2bf51\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/quality-contamination-control/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "clsiguret" + ], + "funding": [ + "abromics" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "ifb", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "clea.siguret@gmail.com", + "id": "clsiguret", + "joined": "2024-04", + "linkedin": "cl\u00e9a-siguret-58423b107", + "matrix": "clsiguret:matrix.org", + "name": "Clea Siguret", + "orcid": "0009-0005-6140-0379", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/clsiguret/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/clsiguret.json" + }, + { + "avatar": "/training-material/assets/images/abromics.png", + "funder": true, + "github": false, + "id": "abromics", + "joined": "2024-01", + "name": "ABRomics", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abromics/", + "url": "https://training.galaxyproject.org/training-material/api/funders/abromics.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/quality-contamination-control", + "edam_ontology": [ + "topic_3673", + "topic_0622", + "topic_3301", + "topic_3697" + ], + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Cross-assembly", + "Sequence composition calculation", + "Taxonomic classification", + "Expression analysis", + "Statistical calculation" + ], + "edam_topic": [ + "Whole genome sequencing", + "Genomics", + "Microbiology", + "Microbial ecology" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/quality-contamination-control", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Conduct quality control on every dataset before performing any other bioinformatics analysis", + "Review the quality metrics and, if necessary, improve the quality of your data", + "Check the impact of the quality control", + "Detect witch microorganisms are present and extract the species level", + "Check possible contamination in a bacterial isolate" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-07-15", + "objectives": [ + "Run tools to evaluate sequencing data on quality and quantity", + "Evaluate the output of quality control tools", + "Improve the quality of sequencing data", + "Run a series of tool to identify species in bacterial isolate sequencing data", + "Visualize the species abundance" + ], + "pageviews": 76, + "pub_date": "2024-07-15", + "questions": [ + "How to check the quality of MiSeq data?", + "What are the species in bacterial isolate sequencing data?" + ], + "short_id": "T00446", + "short_tools": [ + "fastp", + "est_abundance", + "fastqc", + "kraken2", + "recentrifuge", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "illumina", + "bacteria", + "microgalaxy" + ], + "time_estimation": "2H", + "title": "Quality and contamination control in bacterial isolate using Illumina MiSeq Data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.9+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.12.1+galaxy0", + "upload1" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "quality-contamination-control", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/quality-contamination-control/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/quality-contamination-control/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/quality-contamination-control/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 233, + "visitors": 61, + "workflows": [ + { + "creators": [ + { + "alternateName": "bebatut", + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "alternateName": "clsiguret", + "class": "Person", + "identifier": "https://orcid.org/0009-0005-6140-0379", + "name": "Clea Siguret" + } + ], + "description": "Quality and contamination control in bacterial isolate using Illumina MiSeq Data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDRR187559_1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDRR187559_2\"]\n 2[label=\"FastQC forward\"]\n 0 -> 2 [label=\"output\"]\n kd3aed14e51b840b09d6d548fff2ab63a[color=lightseagreen,label=\"Output\\nFastQC text_file (forward)\"]\n 2 -> kd3aed14e51b840b09d6d548fff2ab63a\n k6c9273387e024599a01d014a35a529e8[color=lightseagreen,label=\"Output\\nFastQC html_file (forward)\"]\n 2 -> k6c9273387e024599a01d014a35a529e8\n 3[label=\"FastQC reverse\"]\n 1 -> 3 [label=\"output\"]\n k30d76c09809d4415a1e6f244cfc34065[color=lightseagreen,label=\"Output\\nFastQC html_file (reverse)\"]\n 3 -> k30d76c09809d4415a1e6f244cfc34065\n kbbafb0728b124908ae0f10cc7f9086d3[color=lightseagreen,label=\"Output\\nFastQC text_file (reverse)\"]\n 3 -> kbbafb0728b124908ae0f10cc7f9086d3\n 4[label=\"fastp\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n k1a089ca0445a4322b74f60c7aefc7cd8[color=lightseagreen,label=\"Output\\nfastp report_html\"]\n 4 -> k1a089ca0445a4322b74f60c7aefc7cd8\n kb634addfdcb843e68016341de7eb5b87[color=lightseagreen,label=\"Output\\nDRR187559_filtered_\"]\n 4 -> kb634addfdcb843e68016341de7eb5b87\n k0a57afa4e75e470dad7b13e567ce54a3[color=lightseagreen,label=\"Output\\nDRR187559_filtered_1\"]\n 4 -> k0a57afa4e75e470dad7b13e567ce54a3\n kbb98c4d1bd1d47bdac564ac0e1e49d50[color=lightseagreen,label=\"Output\\nfastp_json\"]\n 4 -> kbb98c4d1bd1d47bdac564ac0e1e49d50\n 5[label=\"Kraken2\"]\n 4 -> 5 [label=\"out1\"]\n 4 -> 5 [label=\"out2\"]\n k54b85a5372ee4b73b1867fd55e8aab9b[color=lightseagreen,label=\"Output\\nkraken_report_tabular\"]\n 5 -> k54b85a5372ee4b73b1867fd55e8aab9b\n ka408a64458cd4f5eaf2515b5ea63aa76[color=lightseagreen,label=\"Output\\nkraken_report_reads\"]\n 5 -> ka408a64458cd4f5eaf2515b5ea63aa76\n 6[label=\"Bracken\"]\n 5 -> 6 [label=\"report_output\"]\n k8ca52af9f83942b6aa74f1a6a1dfbbc8[color=lightseagreen,label=\"Output\\nbracken_kraken_report\"]\n 6 -> k8ca52af9f83942b6aa74f1a6a1dfbbc8\n kae6c6464f5f54e5bb616d38166fc0133[color=lightseagreen,label=\"Output\\nbracken_report_tsv\"]\n 6 -> kae6c6464f5f54e5bb616d38166fc0133\n 7[label=\"Recentrifuge\"]\n 5 -> 7 [label=\"output\"]\n kbd947a1d0443465f86585d76d9ce69f8[color=lightseagreen,label=\"Output\\nrecentrifuge_report_html\"]\n 7 -> kbd947a1d0443465f86585d76d9ce69f8\n kc7457acb41bc4191b3fb6716e15fbe57[color=lightseagreen,label=\"Output\\nrecentrifuge_data_tabular\"]\n 7 -> kc7457acb41bc4191b3fb6716e15fbe57\n kb5694f2dc8cd4460bfff74fd0792ecb3[color=lightseagreen,label=\"Output\\nrecentrifuge_stats_tabular\"]\n 7 -> kb5694f2dc8cd4460bfff74fd0792ecb3\n k94f6ff070e0647ad88f8a058d0808537[color=lightseagreen,label=\"Output\\nrecentrifuge_logfile\"]\n 7 -> k94f6ff070e0647ad88f8a058d0808537\n}", + "history": [ + { + "hash": "b415560c3b517c8332ed6762dc86a54d0968b2f2", + "message": "Add tuto 'quality-contamination-control' + update learning pathway 'amr-gene-detection'", + "num": 1, + "short_hash": "b415560c3", + "unix": "1718877309" + } + ], + "inputs": [ + { + "annotation": "forward read", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "forward read", + "name": "DRR187559_1" + } + ], + "label": "DRR187559_1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 275.20001220703125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a39893cf-49cb-4c5c-9e71-0f8004a2a1ee", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "reverse read", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "reverse read", + "name": "DRR187559_2" + } + ], + "label": "DRR187559_2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 24, + "top": 530.1999969482422 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ca539dfd-e173-42d6-998a-0fc4c5f3d5b8", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nDRR187559_1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nDRR187559_2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"FastQC forward\"];\n 0 -->|output| 2;\n d3aed14e-51b8-40b0-9d6d-548fff2ab63a[\"Output\\nFastQC text_file (forward)\"];\n 2 --> d3aed14e-51b8-40b0-9d6d-548fff2ab63a;\n style d3aed14e-51b8-40b0-9d6d-548fff2ab63a stroke:#2c3143,stroke-width:4px;\n 6c927338-7e02-4599-a01d-014a35a529e8[\"Output\\nFastQC html_file (forward)\"];\n 2 --> 6c927338-7e02-4599-a01d-014a35a529e8;\n style 6c927338-7e02-4599-a01d-014a35a529e8 stroke:#2c3143,stroke-width:4px;\n 3[\"FastQC reverse\"];\n 1 -->|output| 3;\n 30d76c09-809d-4415-a1e6-f244cfc34065[\"Output\\nFastQC html_file (reverse)\"];\n 3 --> 30d76c09-809d-4415-a1e6-f244cfc34065;\n style 30d76c09-809d-4415-a1e6-f244cfc34065 stroke:#2c3143,stroke-width:4px;\n bbafb072-8b12-4908-ae0f-10cc7f9086d3[\"Output\\nFastQC text_file (reverse)\"];\n 3 --> bbafb072-8b12-4908-ae0f-10cc7f9086d3;\n style bbafb072-8b12-4908-ae0f-10cc7f9086d3 stroke:#2c3143,stroke-width:4px;\n 4[\"fastp\"];\n 0 -->|output| 4;\n 1 -->|output| 4;\n 1a089ca0-445a-4322-b74f-60c7aefc7cd8[\"Output\\nfastp report_html\"];\n 4 --> 1a089ca0-445a-4322-b74f-60c7aefc7cd8;\n style 1a089ca0-445a-4322-b74f-60c7aefc7cd8 stroke:#2c3143,stroke-width:4px;\n b634addf-dcb8-43e6-8016-341de7eb5b87[\"Output\\nDRR187559_filtered_\"];\n 4 --> b634addf-dcb8-43e6-8016-341de7eb5b87;\n style b634addf-dcb8-43e6-8016-341de7eb5b87 stroke:#2c3143,stroke-width:4px;\n 0a57afa4-e75e-470d-ad7b-13e567ce54a3[\"Output\\nDRR187559_filtered_1\"];\n 4 --> 0a57afa4-e75e-470d-ad7b-13e567ce54a3;\n style 0a57afa4-e75e-470d-ad7b-13e567ce54a3 stroke:#2c3143,stroke-width:4px;\n bb98c4d1-bd1d-47bd-ac56-4ac0e1e49d50[\"Output\\nfastp_json\"];\n 4 --> bb98c4d1-bd1d-47bd-ac56-4ac0e1e49d50;\n style bb98c4d1-bd1d-47bd-ac56-4ac0e1e49d50 stroke:#2c3143,stroke-width:4px;\n 5[\"Kraken2\"];\n 4 -->|out1| 5;\n 4 -->|out2| 5;\n 54b85a53-72ee-4b73-b186-7fd55e8aab9b[\"Output\\nkraken_report_tabular\"];\n 5 --> 54b85a53-72ee-4b73-b186-7fd55e8aab9b;\n style 54b85a53-72ee-4b73-b186-7fd55e8aab9b stroke:#2c3143,stroke-width:4px;\n a408a644-58cd-4f5e-af25-15b5ea63aa76[\"Output\\nkraken_report_reads\"];\n 5 --> a408a644-58cd-4f5e-af25-15b5ea63aa76;\n style a408a644-58cd-4f5e-af25-15b5ea63aa76 stroke:#2c3143,stroke-width:4px;\n 6[\"Bracken\"];\n 5 -->|report_output| 6;\n 8ca52af9-f839-42b6-aa74-f1a6a1dfbbc8[\"Output\\nbracken_kraken_report\"];\n 6 --> 8ca52af9-f839-42b6-aa74-f1a6a1dfbbc8;\n style 8ca52af9-f839-42b6-aa74-f1a6a1dfbbc8 stroke:#2c3143,stroke-width:4px;\n ae6c6464-f5f5-4e5b-b616-d38166fc0133[\"Output\\nbracken_report_tsv\"];\n 6 --> ae6c6464-f5f5-4e5b-b616-d38166fc0133;\n style ae6c6464-f5f5-4e5b-b616-d38166fc0133 stroke:#2c3143,stroke-width:4px;\n 7[\"Recentrifuge\"];\n 5 -->|output| 7;\n bd947a1d-0443-465f-8658-5d76d9ce69f8[\"Output\\nrecentrifuge_report_html\"];\n 7 --> bd947a1d-0443-465f-8658-5d76d9ce69f8;\n style bd947a1d-0443-465f-8658-5d76d9ce69f8 stroke:#2c3143,stroke-width:4px;\n c7457acb-41bc-4191-b3fb-6716e15fbe57[\"Output\\nrecentrifuge_data_tabular\"];\n 7 --> c7457acb-41bc-4191-b3fb-6716e15fbe57;\n style c7457acb-41bc-4191-b3fb-6716e15fbe57 stroke:#2c3143,stroke-width:4px;\n b5694f2d-c8cd-4460-bfff-74fd0792ecb3[\"Output\\nrecentrifuge_stats_tabular\"];\n 7 --> b5694f2d-c8cd-4460-bfff-74fd0792ecb3;\n style b5694f2d-c8cd-4460-bfff-74fd0792ecb3 stroke:#2c3143,stroke-width:4px;\n 94f6ff07-0e06-47ad-88f8-a058d0808537[\"Output\\nrecentrifuge_logfile\"];\n 7 --> 94f6ff07-0e06-47ad-88f8-a058d0808537;\n style 94f6ff07-0e06-47ad-88f8-a058d0808537 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Quality and contamination control in bacterial isolate using Illumina MiSeq Data", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "FastQC (forward)", + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 340, + "top": 0 + }, + "post_job_actions": { + "TagDatasetActionhtml_file": { + "action_arguments": { + "tags": "#unfiltered" + }, + "action_type": "TagDatasetAction", + "output_name": "html_file" + }, + "TagDatasetActiontext_file": { + "action_arguments": { + "tags": "#unfiltered" + }, + "action_type": "TagDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5ec9f6bceaee", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.bz2\", \"adapters\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.74+galaxy0", + "type": "tool", + "uuid": "1dd908a7-85da-4c90-b506-73fe598e0ce0", + "when": null, + "workflow_outputs": [ + { + "label": "FastQC text_file (forward)", + "output_name": "text_file", + "uuid": "d3aed14e-51b8-40b0-9d6d-548fff2ab63a" + }, + { + "label": "FastQC html_file (forward)", + "output_name": "html_file", + "uuid": "6c927338-7e02-4599-a01d-014a35a529e8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "FastQC (reverse)", + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 323, + "top": 612.5999755859375 + }, + "post_job_actions": { + "TagDatasetActionhtml_file": { + "action_arguments": { + "tags": "#unfiltered" + }, + "action_type": "TagDatasetAction", + "output_name": "html_file" + }, + "TagDatasetActiontext_file": { + "action_arguments": { + "tags": "#unfiltered" + }, + "action_type": "TagDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5ec9f6bceaee", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.bz2\", \"adapters\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.74+galaxy0", + "type": "tool", + "uuid": "198542e7-06ed-42ed-a725-6c8902cda430", + "when": null, + "workflow_outputs": [ + { + "label": "FastQC html_file (reverse)", + "output_name": "html_file", + "uuid": "30d76c09-809d-4415-a1e6-f244cfc34065" + }, + { + "label": "FastQC text_file (reverse)", + "output_name": "text_file", + "uuid": "bbafb072-8b12-4908-ae0f-10cc7f9086d3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "single_paired|in1": { + "id": 0, + "output_name": "output" + }, + "single_paired|in2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "fastp", + "outputs": [ + { + "name": "out1", + "type": "input" + }, + { + "name": "out2", + "type": "input" + }, + { + "name": "report_html", + "type": "html" + }, + { + "name": "report_json", + "type": "json" + } + ], + "position": { + "left": 578.603249768338, + "top": 384.1144483914405 + }, + "post_job_actions": { + "TagDatasetActionout1": { + "action_arguments": { + "tags": "#filtered" + }, + "action_type": "TagDatasetAction", + "output_name": "out1" + }, + "TagDatasetActionout2": { + "action_arguments": { + "tags": "#filtered" + }, + "action_type": "TagDatasetAction", + "output_name": "out2" + }, + "TagDatasetActionreport_html": { + "action_arguments": { + "tags": "#filtered" + }, + "action_type": "TagDatasetAction", + "output_name": "report_html" + }, + "TagDatasetActionreport_json": { + "action_arguments": { + "tags": "#filtered" + }, + "action_type": "TagDatasetAction", + "output_name": "report_json" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "65b93b623c77", + "name": "fastp", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"quality_filtering_options\": {\"disable_quality_filtering\": false, \"qualified_quality_phred\": null, \"unqualified_percent_limit\": null, \"n_base_limit\": null}, \"length_filtering_options\": {\"disable_length_filtering\": false, \"length_required\": \"30\", \"length_limit\": null}, \"low_complexity_filter\": {\"enable_low_complexity_filter\": false, \"complexity_threshold\": null}}, \"output_options\": {\"report_html\": true, \"report_json\": true}, \"overrepresented_sequence_analysis\": {\"overrepresentation_analysis\": false, \"overrepresentation_sampling\": null}, \"read_mod_options\": {\"polyg_tail_trimming\": {\"trimming_select\": \"\", \"__current_case__\": 1, \"poly_g_min_len\": null}, \"polyx_tail_trimming\": {\"polyx_trimming_select\": \"\", \"__current_case__\": 1}, \"umi_processing\": {\"umi\": false, \"umi_loc\": null, \"umi_len\": null, \"umi_prefix\": null}, \"cutting_by_quality_options\": {\"cut_by_quality5\": true, \"cut_by_quality3\": true, \"cut_window_size\": \"4\", \"cut_mean_quality\": \"20\"}, \"base_correction_options\": {\"correction\": false}}, \"single_paired\": {\"single_paired_selector\": \"paired\", \"__current_case__\": 1, \"in1\": {\"__class__\": \"ConnectedValue\"}, \"in2\": {\"__class__\": \"ConnectedValue\"}, \"adapter_trimming_options\": {\"disable_adapter_trimming\": false, \"adapter_sequence1\": null, \"adapter_sequence2\": null}, \"global_trimming_options\": {\"trim_front1\": null, \"trim_tail1\": null, \"trim_front2\": null, \"trim_tail2\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.23.2+galaxy0", + "type": "tool", + "uuid": "2e9aba48-2b99-46a1-a4de-72a8a2f6db84", + "when": null, + "workflow_outputs": [ + { + "label": "fastp report_html", + "output_name": "report_html", + "uuid": "1a089ca0-445a-4322-b74f-60c7aefc7cd8" + }, + { + "label": "DRR187559_filtered_", + "output_name": "out2", + "uuid": "b634addf-dcb8-43e6-8016-341de7eb5b87" + }, + { + "label": "DRR187559_filtered_1", + "output_name": "out1", + "uuid": "0a57afa4-e75e-470d-ad7b-13e567ce54a3" + }, + { + "label": "fastp_json", + "output_name": "report_json", + "uuid": "bb98c4d1-bd1d-47bd-ac56-4ac0e1e49d50" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "single_paired|forward_input": { + "id": 4, + "output_name": "out1" + }, + "single_paired|reverse_input": { + "id": 4, + "output_name": "out2" + } + }, + "inputs": [], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 850.4914977412587, + "top": 397.42238822577673 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "20e2f64aa1fe", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.0\", \"kraken2_database\": \"2023-08-24T153645Z_standard_prebuilt_pluspf_16gb_2022-06-07\", \"min_base_quality\": \"10\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"yes\", \"__current_case__\": 1, \"forward_input\": {\"__class__\": \"ConnectedValue\"}, \"reverse_input\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "75b7f2b8-2b63-4f1a-a877-4babef16a08b", + "when": null, + "workflow_outputs": [ + { + "label": "kraken_report_tabular", + "output_name": "report_output", + "uuid": "54b85a53-72ee-4b73-b186-7fd55e8aab9b" + }, + { + "label": "kraken_report_reads", + "output_name": "output", + "uuid": "a408a644-58cd-4f5e-af25-15b5ea63aa76" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.8+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 5, + "output_name": "report_output" + } + }, + "inputs": [], + "label": null, + "name": "Bracken", + "outputs": [ + { + "name": "report", + "type": "tabular" + }, + { + "name": "kraken_report", + "type": "tabular" + } + ], + "position": { + "left": 1140.1325234308401, + "top": 326.57184790597137 + }, + "post_job_actions": { + "RenameDatasetActionkraken_report": { + "action_arguments": { + "newname": "bracken_kraken_report" + }, + "action_type": "RenameDatasetAction", + "output_name": "kraken_report" + }, + "RenameDatasetActionreport": { + "action_arguments": { + "newname": "bracken_report_tsv" + }, + "action_type": "RenameDatasetAction", + "output_name": "report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "978ae4147c29", + "name": "bracken", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"kmer_distr\": \"bf6177af-7f5b-4005-9bec-fc7c89c3cb1c\", \"level\": \"S\", \"logfile_output\": false, \"out_report\": true, \"threshold\": \"10\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.8+galaxy0", + "type": "tool", + "uuid": "53b9c80b-f5f4-4fee-9778-fb4fd6b76165", + "when": null, + "workflow_outputs": [ + { + "label": "bracken_kraken_report", + "output_name": "kraken_report", + "uuid": "8ca52af9-f839-42b6-aa74-f1a6a1dfbbc8" + }, + { + "label": "bracken_report_tsv", + "output_name": "report", + "uuid": "ae6c6464-f5f5-4e5b-b616-d38166fc0133" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.12.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Recentrifuge", + "outputs": [ + { + "name": "html_report", + "type": "html" + }, + { + "name": "logfile", + "type": "txt" + }, + { + "name": "data_tsv", + "type": "tabular" + }, + { + "name": "stat_tsv", + "type": "tabular" + } + ], + "position": { + "left": 1132.0995834632697, + "top": 578.6187243531585 + }, + "post_job_actions": { + "RenameDatasetActiondata_tsv": { + "action_arguments": { + "newname": "recentrifuge_data_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "data_tsv" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "recentrifuge_report_html" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionlogfile": { + "action_arguments": { + "newname": "recentrifuge_logfile" + }, + "action_type": "RenameDatasetAction", + "output_name": "logfile" + }, + "RenameDatasetActionstat_tsv": { + "action_arguments": { + "newname": "recentrifuge_stats_tabular" + }, + "action_type": "RenameDatasetAction", + "output_name": "stat_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.12.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "b5407cc2bf51", + "name": "recentrifuge", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_option\": {\"controls\": \"0\", \"scoring\": null, \"minscore_value\": \"0\", \"mintaxa\": \"0\", \"exclude_taxa_name\": null, \"include_taxa_name\": null, \"avoidcross\": false}, \"database\": {\"database_name\": \"ncbi-2023-06-27\"}, \"file_type\": {\"filetype\": \"kraken\", \"__current_case__\": 3}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"more_advanced_option\": {\"ctrlminscore\": \"0\", \"ctrlmintaxa\": \"0\", \"summary\": \"ADD\", \"takeoutroot\": false, \"nokollapse\": false, \"strain\": true, \"sequential\": false}, \"output_option\": {\"extra\": \"TSV\", \"nohtml\": false, \"no_logfile\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.12.1+galaxy0", + "type": "tool", + "uuid": "4b3b34ad-2352-4e93-abbc-69da3ab9ee3a", + "when": null, + "workflow_outputs": [ + { + "label": "recentrifuge_report_html", + "output_name": "html_report", + "uuid": "bd947a1d-0443-465f-8658-5d76d9ce69f8" + }, + { + "label": "recentrifuge_data_tabular", + "output_name": "data_tsv", + "uuid": "c7457acb-41bc-4191-b3fb-6716e15fbe57" + }, + { + "label": "recentrifuge_stats_tabular", + "output_name": "stat_tsv", + "uuid": "b5694f2d-c8cd-4460-bfff-74fd0792ecb3" + }, + { + "label": "recentrifuge_logfile", + "output_name": "logfile", + "uuid": "94f6ff07-0e06-47ad-88f8-a058d0808537" + } + ] + } + ], + "parent_id": "sequence-analysis/quality-contamination-control", + "path": "topics/sequence-analysis/tutorials/quality-contamination-control/workflows/Quality_and_contamination_control_in_bacterial_isolate_using_Illumina_MiSeq_Data.ga", + "tags": [ + "sequence-analysis" + ], + "test_results": null, + "tests": true, + "title": "Quality and contamination control in bacterial isolate using Illumina MiSeq Data", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-quality-contamination-control/versions/quality-and-contamination-control-in-bacterial-isolate-using-illumina-miseq-data", + "tutorial_id": "quality-contamination-control", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/quality-contamination-control/workflows/Quality_and_contamination_control_in_bacterial_isolate_using_Illumina_MiSeq_Data.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/quality-contamination-control/workflows/Quality_and_contamination_control_in_bacterial_isolate_using_Illumina_MiSeq_Data.html", + "version": 1, + "wfid": "sequence-analysis-quality-contamination-control", + "wfname": "quality-and-contamination-control-in-bacterial-isolate-using-illumina-miseq-data", + "workflow": "Quality_and_contamination_control_in_bacterial_isolate_using_Illumina_MiSeq_Data.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bracken/est_abundance/2.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/recentrifuge/recentrifuge/1.12.1+galaxy0" + ], + "workflowhub_id": "1344" + } + ], + "zenodo_link": "https://zenodo.org/record/10669812" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastq_groomer", + "owner": "devteam", + "revisions": "47e5dbc3e790", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_masker_by_quality", + "owner": "devteam", + "revisions": "9dfda4e310ed", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_to_fasta", + "owner": "devteam", + "revisions": "77b41c89d856", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_to_tabular", + "owner": "devteam", + "revisions": "4b347702c4aa", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastx_reverse_complement", + "owner": "devteam", + "revisions": "6027ef51ef91", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "0e3cf9594bb7", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_fasta", + "owner": "devteam", + "revisions": "0a7799698fe5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ab1_fastq_converter", + "owner": "ecology", + "revisions": "307518fb51af", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "aligned_to_consensus", + "owner": "ecology", + "revisions": "0ccbe1c20fc3", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filter_by_fasta_ids", + "owner": "galaxyp", + "revisions": "dff7df6fcab5", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "503bcd6ebe4b", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unzip", + "owner": "imgteam", + "revisions": "57f0914ddb7b", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_element_identifiers", + "owner": "iuc", + "revisions": "d3c07d270a50", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_degap_seqs", + "owner": "iuc", + "revisions": "6f08af23888a", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mothur_merge_files", + "owner": "iuc", + "revisions": "bc20680d28d5", + "tool_panel_section_label": "Mothur", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qiime_align_seqs", + "owner": "iuc", + "revisions": "e8bb88f051ec", + "tool_panel_section_label": "Sequence analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastq_groomer\n owner: devteam\n revisions: 47e5dbc3e790\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_masker_by_quality\n owner: devteam\n revisions: 9dfda4e310ed\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_to_fasta\n owner: devteam\n revisions: 77b41c89d856\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_to_tabular\n owner: devteam\n revisions: 4b347702c4aa\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastx_reverse_complement\n owner: devteam\n revisions: 6027ef51ef91\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 0e3cf9594bb7\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_fasta\n owner: devteam\n revisions: 0a7799698fe5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ab1_fastq_converter\n owner: ecology\n revisions: 307518fb51af\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: aligned_to_consensus\n owner: ecology\n revisions: 0ccbe1c20fc3\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filter_by_fasta_ids\n owner: galaxyp\n revisions: dff7df6fcab5\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 503bcd6ebe4b\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unzip\n owner: imgteam\n revisions: 57f0914ddb7b\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_element_identifiers\n owner: iuc\n revisions: d3c07d270a50\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_degap_seqs\n owner: iuc\n revisions: 6f08af23888a\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mothur_merge_files\n owner: iuc\n revisions: bc20680d28d5\n tool_panel_section_label: Mothur\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qiime_align_seqs\n owner: iuc\n revisions: e8bb88f051ec\n tool_panel_section_label: Sequence analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/Manage_AB1_Sanger/tutorial.json", + "contributors": [ + { + "affiliations": [ + "pndb", + "gallantries", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "coline.royaux@mnhn.fr", + "id": "colineroyaux", + "joined": "2020-11", + "name": "Coline Royaux", + "orcid": "0000-0003-4308-5617", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/colineroyaux/", + "twitter": "ColineRoyaux", + "url": "https://training.galaxyproject.org/training-material/api/contributors/colineroyaux.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/Manage_AB1_Sanger", + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence file editing", + "Demultiplexing", + "Phylogenetic analysis", + "Taxonomic classification", + "Data handling", + "Sequence read processing", + "DNA barcoding", + "Sequence clustering" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/Manage_AB1_Sanger", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Check your data and results for mistakes afterward !!!! This procedure is useful but not perfect" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Learn how to manage sequencing files (AB1, FASTQ, FASTA)", + "Learn how to clean your Sanger sequences in an automated and reproducible way" + ], + "pageviews": 1709, + "pub_date": "2024-01-08", + "questions": [ + "How to clean Sanger sequencing files?" + ], + "short_id": "T00383", + "short_tools": [ + "filter_by_fasta_ids", + "mothur_merge_files", + "ncbi_blastn_wrapper", + "__SORTLIST__", + "qiime_align_seqs", + "fastq_masker_by_quality", + "unzip", + "seqtk_trimfq", + "fastq_groomer", + "regex1", + "tab2fasta", + "mothur_degap_seqs", + "seqtk_mergepe", + "collection_element_identifiers", + "cshl_fastx_reverse_complement", + "ab1_fastq_converter", + "cshl_fastq_to_fasta", + "__FILTER_FROM_FILE__", + "fastq_to_tabular", + "aligned_to_consensus" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Clean and manage Sanger sequences from raw files to aligned consensus", + "tools": [ + "__FILTER_FROM_FILE__", + "__SORTLIST__", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_masker_by_quality/fastq_masker_by_quality/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_fasta/cshl_fastq_to_fasta/1.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_tabular/fastq_to_tabular/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastx_reverse_complement/cshl_fastx_reverse_complement/1.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ecology/ab1_fastq_converter/ab1_fastq_converter/1.20.0", + "toolshed.g2.bx.psu.edu/repos/ecology/aligned_to_consensus/aligned_to_consensus/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_degap_seqs/mothur_degap_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/qiime_align_seqs/qiime_align_seqs/1.9.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_mergepe/1.3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_trimfq/1.3.1" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "Manage_AB1_Sanger", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/Manage_AB1_Sanger/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/Manage_AB1_Sanger/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/Manage_AB1_Sanger/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 137, + "visitors": 1316, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "name": "Coline Royaux" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nL sequences Forward\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nH sequences Reverse\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nLCOI primers\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHCOI primers\"]\n 4[label=\"ab1 to FASTQ converter\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"ab1 to FASTQ converter\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"What\u2019s your LCOI primer sequence identifier ?\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"What\u2019s your HCOI primer sequence identifier ?\"]\n 3 -> 7 [label=\"output\"]\n 8[label=\"seqtk_trimfq\"]\n 4 -> 8 [label=\"output\"]\n 9[label=\"seqtk_trimfq\"]\n 5 -> 9 [label=\"output\"]\n 10[label=\"Degap.seqs\"]\n 6 -> 10 [label=\"output\"]\n 11[label=\"Degap.seqs\"]\n 7 -> 11 [label=\"output\"]\n 12[label=\"Sort collection\"]\n 8 -> 12 [label=\"default\"]\n 13[label=\"FASTQ Groomer\"]\n 9 -> 13 [label=\"default\"]\n 14[label=\"Reverse-Complement\"]\n 11 -> 14 [label=\"out_fasta\"]\n 15[label=\"Reverse-Complement\"]\n 13 -> 15 [label=\"output_file\"]\n 16[label=\"Sort collection\"]\n 15 -> 16 [label=\"output\"]\n 17[label=\"seqtk_mergepe\"]\n 12 -> 17 [label=\"output\"]\n 16 -> 17 [label=\"output\"]\n 18[label=\"FASTQ Groomer\"]\n 17 -> 18 [label=\"default\"]\n 19[label=\"FASTQ to Tabular\"]\n 18 -> 19 [label=\"output_file\"]\n 20[label=\"Tabular-to-FASTA\"]\n 19 -> 20 [label=\"output_file\"]\n 21[label=\"Align sequences\"]\n 20 -> 21 [label=\"output\"]\n 22[label=\"Consensus sequence from aligned FASTA\"]\n 21 -> 22 [label=\"aligned_sequences\"]\n 23[label=\"Merge.files\"]\n 22 -> 23 [label=\"output\"]\n 24[label=\"Merge.files\"]\n 23 -> 24 [label=\"output\"]\n 14 -> 24 [label=\"output\"]\n 10 -> 24 [label=\"out_fasta\"]\n 25[label=\"Regex Find And Replace\"]\n 24 -> 25 [label=\"output\"]\n 26[label=\"Align sequences\"]\n 25 -> 26 [label=\"out_file1\"]\n 27[label=\"NCBI BLAST+ blastn\"]\n 25 -> 27 [label=\"out_file1\"]\n k31c2dd1a918e4648a407d0e3d7172253[color=lightseagreen,label=\"Output\\nw_blast_output\"]\n 27 -> k31c2dd1a918e4648a407d0e3d7172253\n k7514514f809a4a148981cb08c950b523[color=lightseagreen,label=\"Output\\nw_consensus_aligned_sequences\"]\n 27 -> k7514514f809a4a148981cb08c950b523\n}", + "history": [ + { + "hash": "bf907f6d3bcd09d391c9143bb2464b50c0fb9d7a", + "message": "Add creator and license", + "num": 2, + "short_hash": "bf907f6d3", + "unix": "1704192784" + }, + { + "hash": "03e5a4f54d25895ffe16fa5557c895ffa7b81262", + "message": "Remove colons", + "num": 1, + "short_hash": "03e5a4f54", + "unix": "1702999279" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "L sequences (Forward)" + } + ], + "label": "L sequences (Forward)", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 125.19532716773591 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"ab1\"], \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "8a638477-d771-41a6-8c73-c6bc548d2a63", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "H sequences (Reverse)" + } + ], + "label": "H sequences (Reverse)", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 11.09375, + "top": 453.7578937515429 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"ab1\"], \"tag\": \"\", \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "79715df2-d3e0-4491-af3f-2ab6bf8d0065", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "LCOI primers" + } + ], + "label": "LCOI primers", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2404.8908903486745, + "top": 220.80473862021637 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "711c7d32-6d82-46d7-8ee9-3258e1e11a05", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "HCOI primers" + } + ], + "label": "HCOI primers", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2408.903404638635, + "top": 389.37482504451754 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d23f0e22-e2ac-4c88-b7dc-f70035cfb1c2", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nL sequences Forward\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nH sequences Reverse\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nLCOI primers\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nHCOI primers\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"ab1 to FASTQ converter\"];\n 0 -->|output| 4;\n 5[\"ab1 to FASTQ converter\"];\n 1 -->|output| 5;\n 6[\"What\u2019s your LCOI primer sequence identifier ?\"];\n 2 -->|output| 6;\n 7[\"What\u2019s your HCOI primer sequence identifier ?\"];\n 3 -->|output| 7;\n 8[\"seqtk_trimfq\"];\n 4 -->|output| 8;\n 9[\"seqtk_trimfq\"];\n 5 -->|output| 9;\n 10[\"Degap.seqs\"];\n 6 -->|output| 10;\n 11[\"Degap.seqs\"];\n 7 -->|output| 11;\n 12[\"Sort collection\"];\n 8 -->|default| 12;\n 13[\"FASTQ Groomer\"];\n 9 -->|default| 13;\n 14[\"Reverse-Complement\"];\n 11 -->|out_fasta| 14;\n 15[\"Reverse-Complement\"];\n 13 -->|output_file| 15;\n 16[\"Sort collection\"];\n 15 -->|output| 16;\n 17[\"seqtk_mergepe\"];\n 12 -->|output| 17;\n 16 -->|output| 17;\n 18[\"FASTQ Groomer\"];\n 17 -->|default| 18;\n 19[\"FASTQ to Tabular\"];\n 18 -->|output_file| 19;\n 20[\"Tabular-to-FASTA\"];\n 19 -->|output_file| 20;\n 21[\"Align sequences\"];\n 20 -->|output| 21;\n 22[\"Consensus sequence from aligned FASTA\"];\n 21 -->|aligned_sequences| 22;\n 23[\"Merge.files\"];\n 22 -->|output| 23;\n 24[\"Merge.files\"];\n 23 -->|output| 24;\n 14 -->|output| 24;\n 10 -->|out_fasta| 24;\n 25[\"Regex Find And Replace\"];\n 24 -->|output| 25;\n 26[\"Align sequences\"];\n 25 -->|out_file1| 26;\n 27[\"NCBI BLAST+ blastn\"];\n 25 -->|out_file1| 27;\n 31c2dd1a-918e-4648-a407-d0e3d7172253[\"Output\\nw_blast_output\"];\n 27 --> 31c2dd1a-918e-4648-a407-d0e3d7172253;\n style 31c2dd1a-918e-4648-a407-d0e3d7172253 stroke:#2c3143,stroke-width:4px;\n 7514514f-809a-4a14-8981-cb08c950b523[\"Output\\nw_consensus_aligned_sequences\"];\n 27 --> 7514514f-809a-4a14-8981-cb08c950b523;\n style 7514514f-809a-4a14-8981-cb08c950b523 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Sanger1 : From AB1 to aligned consensus and primers fasta + BLAST", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/ab1_fastq_converter/ab1_fastq_converter/1.20.0", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "ab1 to FASTQ converter", + "outputs": [ + { + "name": "output", + "type": "fastq" + } + ], + "position": { + "left": 262.40633877840924, + "top": 88.5911568019689 + }, + "post_job_actions": { + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "#Forward" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/ab1_fastq_converter/ab1_fastq_converter/1.20.0", + "tool_shed_repository": { + "changeset_revision": "307518fb51af", + "name": "ab1_fastq_converter", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"tr\": {\"trim\": \"false\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.20.0", + "type": "tool", + "uuid": "54cdaa74-a83e-4c0b-baf7-90c854b6e65e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fcaa483b-90d1-40fc-b681-d8a5d421ccca" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_trimfq/1.3.1", + "errors": null, + "id": 8, + "input_connections": { + "in_file": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_trimfq", + "name": "mode" + } + ], + "label": null, + "name": "seqtk_trimfq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 510.1667695686167, + "top": 97.48960601311335 + }, + "post_job_actions": { + "TagDatasetActiondefault": { + "action_arguments": { + "tags": "TrimmedFastq" + }, + "action_type": "TagDatasetAction", + "output_name": "default" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_trimfq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"mode_select\": \"quality\", \"__current_case__\": 0, \"q\": \"0.05\", \"l\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "915f5560-b853-4b0a-bd5f-126d831e8f8c", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "d65ac032-9ff6-4fb7-9aa2-1931ed709384" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_trimfq/1.3.1", + "errors": null, + "id": 9, + "input_connections": { + "in_file": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool seqtk_trimfq", + "name": "mode" + } + ], + "label": null, + "name": "seqtk_trimfq", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 516.8334128639917, + "top": 432.987075214611 + }, + "post_job_actions": { + "TagDatasetActiondefault": { + "action_arguments": { + "tags": "TrimmedFastq" + }, + "action_type": "TagDatasetAction", + "output_name": "default" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_trimfq/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"mode\": {\"mode_select\": \"quality\", \"__current_case__\": 0, \"q\": \"0.05\", \"l\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "979d668f-f8e9-4a09-8d79-e02ed0c027b5", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "d1bf6174-2eec-4589-b890-9336c46f3623" + } + ] + }, + { + "annotation": "", + "content_id": "__SORTLIST__", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 8, + "output_name": "default" + } + }, + "inputs": [], + "label": null, + "name": "Sort collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 913.747383567731, + "top": 82.22452721670341 + }, + "post_job_actions": {}, + "tool_id": "__SORTLIST__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"sort_type\": {\"sort_type\": \"alpha\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "dbaab406-5db7-44e6-8694-04e78a7a5f11", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "be7cfe5d-d40b-40ca-b334-671f2f680e05" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "errors": null, + "id": 13, + "input_connections": { + "input_file": { + "id": 9, + "output_name": "default" + } + }, + "inputs": [], + "label": null, + "name": "FASTQ Groomer", + "outputs": [ + { + "name": "output_file", + "type": "fastqsanger" + } + ], + "position": { + "left": 771.7188193581324, + "top": 347.4557364362019 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "tool_shed_repository": { + "changeset_revision": "47e5dbc3e790", + "name": "fastq_groomer", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"input_type\": \"sanger\", \"options_type\": {\"options_type_selector\": \"advanced\", \"__current_case__\": 1, \"output_type\": \"sanger\", \"force_quality_encoding\": \"ascii\", \"summarize_input\": \"dont_summarize_input\", \"fix_id\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.5", + "type": "tool", + "uuid": "f4f69d89-8133-4ad1-ac1f-de948e788511", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_file", + "uuid": "64bbe1c0-fc65-4fb0-a4de-f6b0eb35086a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastx_reverse_complement/cshl_fastx_reverse_complement/1.0.2+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "input": { + "id": 13, + "output_name": "output_file" + } + }, + "inputs": [], + "label": null, + "name": "Reverse-Complement", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1011.3125887784095, + "top": 401.88283826503715 + }, + "post_job_actions": { + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "Reversed" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastx_reverse_complement/cshl_fastx_reverse_complement/1.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6027ef51ef91", + "name": "fastx_reverse_complement", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2+galaxy0", + "type": "tool", + "uuid": "fc621ad3-5725-4f10-8f1e-b5afa01a059c", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6d261e5a-8d3c-4055-ae85-5fd4fd6bb268" + } + ] + }, + { + "annotation": "", + "content_id": "__SORTLIST__", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 15, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Sort collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1242.4584406072447, + "top": 399.60162155694064 + }, + "post_job_actions": {}, + "tool_id": "__SORTLIST__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"sort_type\": {\"sort_type\": \"alpha\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "db0e7202-78c6-4726-a70d-64cd2627fb85", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "408d419f-bcae-4bcc-8b3a-e38fdbafcdd3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_mergepe/1.3.1", + "errors": null, + "id": 17, + "input_connections": { + "in_fq1": { + "id": 12, + "output_name": "output" + }, + "in_fq2": { + "id": 16, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "seqtk_mergepe", + "outputs": [ + { + "name": "default", + "type": "input" + } + ], + "position": { + "left": 1253.306789106719, + "top": 45.2514467179884 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_mergepe/1.3.1", + "tool_shed_repository": { + "changeset_revision": "3da72230c066", + "name": "seqtk", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_fq1\": {\"__class__\": \"ConnectedValue\"}, \"in_fq2\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "6010e92a-afb0-49ca-a73c-dacd0c5567e2", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "default", + "uuid": "9b2849cd-587d-438a-b77a-077f033c8ac1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "errors": null, + "id": 18, + "input_connections": { + "input_file": { + "id": 17, + "output_name": "default" + } + }, + "inputs": [], + "label": null, + "name": "FASTQ Groomer", + "outputs": [ + { + "name": "output_file", + "type": "fastqsanger" + } + ], + "position": { + "left": 1504.6579138638374, + "top": 31.193468490200797 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput_file": { + "action_arguments": { + "newtype": "fastqsanger" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "tool_shed_repository": { + "changeset_revision": "47e5dbc3e790", + "name": "fastq_groomer", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_file\": {\"__class__\": \"ConnectedValue\"}, \"input_type\": \"sanger\", \"options_type\": {\"options_type_selector\": \"advanced\", \"__current_case__\": 1, \"output_type\": \"sanger\", \"force_quality_encoding\": \"ascii\", \"summarize_input\": \"dont_summarize_input\", \"fix_id\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.5", + "type": "tool", + "uuid": "467c139a-27d3-42e9-af9c-83ffdf8dc339", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_file", + "uuid": "64bbe1c0-fc65-4fb0-a4de-f6b0eb35086a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/qiime_align_seqs/qiime_align_seqs/1.9.1.0", + "errors": null, + "id": 21, + "input_connections": { + "input_fasta_fp": { + "id": 20, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Align sequences", + "name": "min_length" + } + ], + "label": null, + "name": "Align sequences", + "outputs": [ + { + "name": "aligned_sequences", + "type": "fasta" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 2240.20532371138, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/qiime_align_seqs/qiime_align_seqs/1.9.1.0", + "tool_shed_repository": { + "changeset_revision": "e8bb88f051ec", + "name": "qiime_align_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment\": {\"alignment_method\": \"clustalw\", \"__current_case__\": 2}, \"input_fasta_fp\": {\"__class__\": \"ConnectedValue\"}, \"min_length\": {\"__class__\": \"RuntimeValue\"}, \"min_percent_id\": \"0.1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.1.0", + "type": "tool", + "uuid": "5283fe90-38e1-4a44-a9c3-f54f29cbad85", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "log", + "uuid": "d63ff33a-4e1a-4900-a59c-f3c14da1b7fc" + }, + { + "label": null, + "output_name": "aligned_sequences", + "uuid": "c049c7ef-cc65-487c-a3c7-28b6845273b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ecology/aligned_to_consensus/aligned_to_consensus/1.0.0", + "errors": null, + "id": 22, + "input_connections": { + "input": { + "id": 21, + "output_name": "aligned_sequences" + } + }, + "inputs": [], + "label": null, + "name": "Consensus sequence from aligned FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 2499.008880503396, + "top": 0.8750031686378801 + }, + "post_job_actions": { + "RemoveTagDatasetActionoutput": { + "action_arguments": { + "tags": "#Forward; #Reverse" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "output" + }, + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "#Consensus" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ecology/aligned_to_consensus/aligned_to_consensus/1.0.0", + "tool_shed_repository": { + "changeset_revision": "0ccbe1c20fc3", + "name": "aligned_to_consensus", + "owner": "ecology", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"gaps\": false, \"input\": {\"__class__\": \"ConnectedValue\"}, \"method\": \"chr_ambiguity\", \"outog\": false, \"seqtype\": \"DNA\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "69865435-ac6e-44d7-b0db-42bf338372a9", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "15b69469-bba8-4af3-8f1e-816cebc96645" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.39.5.0", + "errors": null, + "id": 23, + "input_connections": { + "merge|inputs": { + "id": 22, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Merge.files", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 2763.411217150582, + "top": 15.925027274602481 + }, + "post_job_actions": { + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "#AllSeqs" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "7bd37d6decd9", + "name": "mothur_merge_files", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"merge\": {\"type\": \"fasta\", \"__current_case__\": 0, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "bc874b27-7222-46e1-9753-64fa1a1b98bd", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "356f874b-c4d6-419c-afb7-15df5d285738" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.39.5.0", + "errors": null, + "id": 24, + "input_connections": { + "merge|inputs": [ + { + "id": 23, + "output_name": "output" + }, + { + "id": 14, + "output_name": "output" + }, + { + "id": 10, + "output_name": "out_fasta" + } + ] + }, + "inputs": [], + "label": null, + "name": "Merge.files", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 3443.4000227757297, + "top": 228.33828312924055 + }, + "post_job_actions": { + "RemoveTagDatasetActionoutput": { + "action_arguments": { + "tags": "#Forward ; #Reverse" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.39.5.0", + "tool_shed_repository": { + "changeset_revision": "7bd37d6decd9", + "name": "mothur_merge_files", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"merge\": {\"type\": \"fasta\", \"__current_case__\": 0, \"inputs\": {\"__class__\": \"ConnectedValue\"}}, \"savelog\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.39.5.0", + "type": "tool", + "uuid": "5f3ca9fa-eed1-45a5-8300-031268c7783d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "356f874b-c4d6-419c-afb7-15df5d285738" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "errors": null, + "id": 25, + "input_connections": { + "input": { + "id": 24, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 3700.2137599467087, + "top": 225.93423217156686 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "tool_shed_repository": { + "changeset_revision": "503bcd6ebe4b", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"([A-Z-])>\", \"replacement\": \"\\\\1\\\\n>\"}], \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.3", + "type": "tool", + "uuid": "8eb5a8e5-5935-4052-a5d3-000426e25a99", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "b0c0361f-3434-4f77-b1e6-0fd97c225559" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/qiime_align_seqs/qiime_align_seqs/1.9.1.0", + "errors": null, + "id": 26, + "input_connections": { + "input_fasta_fp": { + "id": 25, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Align sequences", + "outputs": [ + { + "name": "aligned_sequences", + "type": "fasta" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 3971.6876053119054, + "top": 187.59371966347155 + }, + "post_job_actions": { + "TagDatasetActionaligned_sequences": { + "action_arguments": { + "tags": "#Aligned" + }, + "action_type": "TagDatasetAction", + "output_name": "aligned_sequences" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/qiime_align_seqs/qiime_align_seqs/1.9.1.0", + "tool_shed_repository": { + "changeset_revision": "e8bb88f051ec", + "name": "qiime_align_seqs", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment\": {\"alignment_method\": \"mafft\", \"__current_case__\": 4}, \"input_fasta_fp\": {\"__class__\": \"ConnectedValue\"}, \"min_length\": null, \"min_percent_id\": \"0.1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.1.0", + "type": "tool", + "uuid": "a6fde88b-d89a-4fe2-ac12-0c82f16429e0", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "aligned_sequences", + "uuid": "c049c7ef-cc65-487c-a3c7-28b6845273b7" + }, + { + "label": null, + "output_name": "log", + "uuid": "d63ff33a-4e1a-4900-a59c-f3c14da1b7fc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy2", + "errors": null, + "id": 27, + "input_connections": { + "query": { + "id": 25, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "NCBI BLAST+ blastn", + "outputs": [ + { + "name": "output1", + "type": "tabular" + } + ], + "position": { + "left": 3984.640583018545, + "top": 451.7552266775396 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "0e3cf9594bb7", + "name": "ncbi_blast_plus", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"advanced\", \"__current_case__\": 1, \"filter_query\": true, \"strand\": \"-strand both\", \"max_hits\": \"10\", \"max_hsps\": null, \"identity_cutoff\": \"0.0\", \"word_size\": null, \"ungapped\": false, \"parse_deflines\": false, \"adv_optional_id_files_opts\": {\"adv_optional_id_files_opts_selector\": \"none\", \"__current_case__\": 0}, \"qcov_hsp_perc\": \"0.0\", \"window_size\": null, \"gapopen\": null, \"gapextend\": null}, \"blast_type\": \"megablast\", \"db_opts\": {\"db_opts_selector\": \"db\", \"__current_case__\": 0, \"database\": [\"nt_2021-6-21\"], \"histdb\": \"\", \"subject\": \"\"}, \"evalue_cutoff\": \"0.001\", \"output\": {\"out_format\": \"cols\", \"__current_case__\": 2, \"std_cols\": [\"qseqid\", \"pident\", \"mismatch\", \"gapopen\"], \"ext_cols\": [\"gaps\", \"salltitles\"], \"ids_cols\": [\"saccver\"], \"misc_cols\": null, \"tax_cols\": null}, \"query\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.10.1+galaxy2", + "type": "tool", + "uuid": "335762a1-b65e-4510-a3bc-c6148648c8c2", + "when": null, + "workflow_outputs": [ + { + "label": "w_blast_output", + "output_name": "blast_output", + "uuid": "31c2dd1a-918e-4648-a407-d0e3d7172253" + }, + { + "label": "w_consensus_aligned_sequences", + "output_name": "consensus_aligned_sequences", + "uuid": "7514514f-809a-4a14-8981-cb08c950b523" + } + ] + } + ], + "parent_id": "sequence-analysis/Manage_AB1_Sanger", + "path": "topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Sanger1_From-AB1-to-aligned-consensus-and-primers-fasta-+-BLAST.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Sanger1 : From AB1 to aligned consensus and primers fasta + BLAST", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-Manage_AB1_Sanger/versions/sanger1-from-ab1-to-aligned-consensus-and-primers-fasta---blast", + "tutorial_id": "Manage_AB1_Sanger", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Sanger1_From-AB1-to-aligned-consensus-and-primers-fasta-+-BLAST.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Sanger1_From-AB1-to-aligned-consensus-and-primers-fasta-+-BLAST.html", + "version": 1, + "wfid": "sequence-analysis-Manage_AB1_Sanger", + "wfname": "sanger1-from-ab1-to-aligned-consensus-and-primers-fasta---blast", + "workflow": "Sanger1_From-AB1-to-aligned-consensus-and-primers-fasta-+-BLAST.ga", + "workflow_tools": [ + "__SORTLIST__", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_tabular/fastq_to_tabular/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastx_reverse_complement/cshl_fastx_reverse_complement/1.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ecology/ab1_fastq_converter/ab1_fastq_converter/1.20.0", + "toolshed.g2.bx.psu.edu/repos/ecology/aligned_to_consensus/aligned_to_consensus/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_degap_seqs/mothur_degap_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/qiime_align_seqs/qiime_align_seqs/1.9.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_mergepe/1.3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_trimfq/1.3.1" + ], + "workflowhub_id": "1287" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4308-5617", + "name": "Coline Royaux" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAOPEP_and_CHD8_sequences_20220907.zip?download=1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPrim\"]\n 2[label=\"Unzip\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Filter FASTA\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Filter FASTA\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Extract element identifiers\"]\n 2 -> 5 [label=\"unzipped\"]\n 6[label=\"Degap.seqs\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Degap.seqs\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Regex Find And Replace\"]\n 5 -> 8 [label=\"output\"]\n 9[label=\"Regex Find And Replace\"]\n 5 -> 9 [label=\"output\"]\n 10[label=\"Reverse-Complement\"]\n 7 -> 10 [label=\"out_fasta\"]\n 11[label=\"Filter collection\"]\n 8 -> 11 [label=\"out_file1\"]\n 2 -> 11 [label=\"unzipped\"]\n 12[label=\"Filter collection\"]\n 9 -> 12 [label=\"out_file1\"]\n 11 -> 12 [label=\"output_discarded\"]\n 13[label=\"ab1 to FASTQ converter\"]\n 11 -> 13 [label=\"output_filtered\"]\n 14[label=\"ab1 to FASTQ converter\"]\n 12 -> 14 [label=\"output_filtered\"]\n 15[label=\"seqtk_trimfq\"]\n 13 -> 15 [label=\"output\"]\n 16[label=\"seqtk_trimfq\"]\n 14 -> 16 [label=\"output\"]\n 17[label=\"FASTQ Groomer\"]\n 15 -> 17 [label=\"default\"]\n 18[label=\"Sort collection\"]\n 16 -> 18 [label=\"default\"]\n 19[label=\"Sort collection\"]\n 17 -> 19 [label=\"output_file\"]\n 20[label=\"Reverse-Complement\"]\n 19 -> 20 [label=\"output\"]\n 21[label=\"seqtk_mergepe\"]\n 18 -> 21 [label=\"output\"]\n 20 -> 21 [label=\"output\"]\n 22[label=\"FASTQ Groomer\"]\n 21 -> 22 [label=\"default\"]\n 23[label=\"FASTQ to Tabular\"]\n 22 -> 23 [label=\"output_file\"]\n 24[label=\"Tabular-to-FASTA\"]\n 23 -> 24 [label=\"output_file\"]\n 25[label=\"Align sequences\"]\n 24 -> 25 [label=\"output\"]\n 26[label=\"Consensus sequence from aligned FASTA\"]\n 25 -> 26 [label=\"aligned_sequences\"]\n 27[label=\"Merge.files\"]\n 26 -> 27 [label=\"output\"]\n 28[label=\"Merge.files\"]\n 27 -> 28 [label=\"output\"]\n 10 -> 28 [label=\"output\"]\n 6 -> 28 [label=\"out_fasta\"]\n 29[label=\"Regex Find And Replace\"]\n 28 -> 29 [label=\"output\"]\n 30[label=\"Align sequences\"]\n 29 -> 30 [label=\"out_file1\"]\n 31[label=\"NCBI BLAST+ blastn\"]\n 29 -> 31 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "9b2a39983d90c6094d400a9288bf711577ef5690", + "message": "Update workflow", + "num": 2, + "short_hash": "9b2a39983", + "unix": "1704193918" + }, + { + "hash": "1d51e2dc3ebda3fca99a60be425d69edd4681702", + "message": "Move files from ecology to sequence analysis", + "num": 1, + "short_hash": "1d51e2dc3", + "unix": "1702992927" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "AOPEP_and_CHD8_sequences_20220907.zip?download=1" + } + ], + "label": "AOPEP_and_CHD8_sequences_20220907.zip?download=1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 658.2072063088361 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2113bd7f-ee7f-462e-9d96-0181a1cd8219", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Prim" + } + ], + "label": "Prim", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4123.210210680649, + "top": 561.120359751304 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ceb12523-7e38-428e-a26d-c05ff85e0749", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAOPEP_and_CHD8_sequences_20220907.zip?download=1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nPrim\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Unzip\"];\n 0 -->|output| 2;\n 3[\"Filter FASTA\"];\n 1 -->|output| 3;\n 4[\"Filter FASTA\"];\n 1 -->|output| 4;\n 5[\"Extract element identifiers\"];\n 2 -->|unzipped| 5;\n 6[\"Degap.seqs\"];\n 3 -->|output| 6;\n 7[\"Degap.seqs\"];\n 4 -->|output| 7;\n 8[\"Regex Find And Replace\"];\n 5 -->|output| 8;\n 9[\"Regex Find And Replace\"];\n 5 -->|output| 9;\n 10[\"Reverse-Complement\"];\n 7 -->|out_fasta| 10;\n 11[\"Filter collection\"];\n 8 -->|out_file1| 11;\n 2 -->|unzipped| 11;\n 12[\"Filter collection\"];\n 9 -->|out_file1| 12;\n 11 -->|output_discarded| 12;\n 13[\"ab1 to FASTQ converter\"];\n 11 -->|output_filtered| 13;\n 14[\"ab1 to FASTQ converter\"];\n 12 -->|output_filtered| 14;\n 15[\"seqtk_trimfq\"];\n 13 -->|output| 15;\n 16[\"seqtk_trimfq\"];\n 14 -->|output| 16;\n 17[\"FASTQ Groomer\"];\n 15 -->|default| 17;\n 18[\"Sort collection\"];\n 16 -->|default| 18;\n 19[\"Sort collection\"];\n 17 -->|output_file| 19;\n 20[\"Reverse-Complement\"];\n 19 -->|output| 20;\n 21[\"seqtk_mergepe\"];\n 18 -->|output| 21;\n 20 -->|output| 21;\n 22[\"FASTQ Groomer\"];\n 21 -->|default| 22;\n 23[\"FASTQ to Tabular\"];\n 22 -->|output_file| 23;\n 24[\"Tabular-to-FASTA\"];\n 23 -->|output_file| 24;\n 25[\"Align sequences\"];\n 24 -->|output| 25;\n 26[\"Consensus sequence from aligned FASTA\"];\n 25 -->|aligned_sequences| 26;\n 27[\"Merge.files\"];\n 26 -->|output| 27;\n 28[\"Merge.files\"];\n 27 -->|output| 28;\n 10 -->|output| 28;\n 6 -->|out_fasta| 28;\n 29[\"Regex Find And Replace\"];\n 28 -->|output| 29;\n 30[\"Align sequences\"];\n 29 -->|out_file1| 30;\n 31[\"NCBI BLAST+ blastn\"];\n 29 -->|out_file1| 31;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "Training Sanger sequences CHD8", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastx_reverse_complement/cshl_fastx_reverse_complement/1.0.2+galaxy0", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 19, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Reverse-Complement", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 2835.744215956759, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastx_reverse_complement/cshl_fastx_reverse_complement/1.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6027ef51ef91", + "name": "fastx_reverse_complement", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger\", \"__workflow_invocation_uuid__\": \"f12bdb84904311eeb9fd00505691a2f4\", \"chromInfo\": \"/shared/ifbstor1/galaxy/mutable-config/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2+galaxy0", + "type": "tool", + "uuid": "1933ab2e-90bb-4535-899b-1379d85fbd64", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c999ceff-4f83-4cf6-bd3b-c38f2128b86d" + } + ] + } + ], + "parent_id": "sequence-analysis/Manage_AB1_Sanger", + "path": "topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Training-Sanger-sequences-CHD8.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Training Sanger sequences CHD8", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-Manage_AB1_Sanger/versions/training-sanger-sequences-chd8", + "tutorial_id": "Manage_AB1_Sanger", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Training-Sanger-sequences-CHD8.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/Manage_AB1_Sanger/workflows/Training-Sanger-sequences-CHD8.html", + "version": 1, + "wfid": "sequence-analysis-Manage_AB1_Sanger", + "wfname": "training-sanger-sequences-chd8", + "workflow": "Training-Sanger-sequences-CHD8.ga", + "workflow_tools": [ + "__FILTER_FROM_FILE__", + "__SORTLIST__", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_groomer/fastq_groomer/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_tabular/fastq_to_tabular/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/fastx_reverse_complement/cshl_fastx_reverse_complement/1.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastn_wrapper/2.10.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ecology/ab1_fastq_converter/ab1_fastq_converter/1.20.0", + "toolshed.g2.bx.psu.edu/repos/ecology/aligned_to_consensus/aligned_to_consensus/1.0.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.3", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_degap_seqs/mothur_degap_seqs/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/mothur_merge_files/mothur_merge_files/1.39.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/qiime_align_seqs/qiime_align_seqs/1.9.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_mergepe/1.3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_trimfq/1.3.1" + ], + "workflowhub_id": "1292" + } + ], + "zenodo_link": "https://zenodo.org/records/7104640" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "trim_galore", + "owner": "bgruening", + "revisions": "949f01671246", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_filter", + "owner": "devteam", + "revisions": "cb20f99fd45b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_filter", + "owner": "devteam", + "revisions": "993b19f20c76", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bowtie2", + "owner": "devteam", + "revisions": "a6d65b0c67af", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "24c5d43cb545", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "145f6d74ff5e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "fed4aa48ba09", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "1cfc579079a6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "4542035c1075", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "c1a4b5f3b432", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "75c93c70d094", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: trim_galore\n owner: bgruening\n revisions: 949f01671246\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_filter\n owner: devteam\n revisions: cb20f99fd45b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_filter\n owner: devteam\n revisions: 993b19f20c76\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bowtie2\n owner: devteam\n revisions: a6d65b0c67af\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 24c5d43cb545\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 145f6d74ff5e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: fed4aa48ba09\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 1cfc579079a6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 4542035c1075\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: c1a4b5f3b432\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 75c93c70d094\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/mapping/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "email": "wolffj@informatik.uni-freiburg.de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "joachimwolff", + "joined": "2017-09", + "name": "Joachim Wolff", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/joachimwolff/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/joachimwolff.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/mapping", + "edam_ontology": [ + "topic_0102" + ], + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Read mapping", + "Sequence alignment analysis", + "Sequence composition calculation", + "Read pre-processing", + "Data handling", + "Validation", + "Genome visualisation", + "Sequence trimming", + "Statistical calculation" + ], + "edam_topic": [ + "Mapping" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "ref-based" + ], + "type": "internal" + }, + { + "topic_name": "epigenetics", + "tutorials": [ + "formation_of_super-structures_on_xi" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "sequence-analysis/mapping", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Know your data!", + "Mapping is not trivial", + "There are many mapping algorithms, it depends on your data which one to choose" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Run a tool to map reads to a reference genome", + "Explain what is a BAM file and what it contains", + "Use genome browser to understand your data" + ], + "pageviews": 5821018, + "pub_date": "2016-10-04", + "questions": [ + "What is mapping?", + "What two things are crucial for a correct mapping?", + "What is BAM?" + ], + "recordings": [ + { + "captioners": [ + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "20M", + "speakers": [ + "pvanheus" + ], + "youtube_id": "1wm-62E2NkY" + } + ], + "requirements": [ + { + "topic_name": "sequence-analysis", + "tutorials": [ + "quality-control" + ], + "type": "internal" + } + ], + "short_id": "T00237", + "short_tools": [ + "samtools_stats", + "jbrowse", + "multiqc", + "bowtie2", + "bamFilter", + "fastqc", + "trim_galore" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "blankenberg" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "10M", + "speakers": [ + "pvanheus" + ], + "youtube_id": "7FhHb8EV3EU" + } + ], + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "1h", + "title": "Mapping", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.5.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.5", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mapping", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/mapping/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/mapping/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/mapping/tutorial.json" + }, + "version": 40, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 314, + "visitors": 2116959, + "workflows": [ + { + "creators": [], + "description": "Mapping", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreads_1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreads_2\"]\n 2[label=\"FastQC\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"FastQC\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Trim Galore!\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"MultiQC\"]\n 3 -> 5 [label=\"text_file\"]\n 2 -> 5 [label=\"text_file\"]\n 6[label=\"Bowtie2\"]\n 4 -> 6 [label=\"trimmed_reads_pair1\"]\n 4 -> 6 [label=\"trimmed_reads_pair2\"]\n kcb22563afece4b639d85ff5817edb5c3[color=lightseagreen,label=\"Output\\nbowtie2_mapping_stats\"]\n 6 -> kcb22563afece4b639d85ff5817edb5c3\n 7[label=\"Samtools stats\"]\n 6 -> 7 [label=\"output\"]\n k490620d4f0834999bb3373a2a1f736b4[color=lightseagreen,label=\"Output\\nbam_stats_1\"]\n 7 -> k490620d4f0834999bb3373a2a1f736b4\n 8[label=\"JBrowse\"]\n 6 -> 8 [label=\"output\"]\n}", + "history": [ + { + "hash": "505f7550f2798d344c73ae11ff158fa77cf90584", + "message": "update-workflows", + "num": 5, + "short_hash": "505f7550f", + "unix": "1618939337" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "469053ce23c700f73325c5f1b668b8fa48d48252", + "message": "avoiding duplicate name", + "num": 2, + "short_hash": "469053ce2", + "unix": "1578995047" + }, + { + "hash": "27d11fd7fc4673db6c431f3a7d9529fd5ade273d", + "message": "add variant with jbrowse output", + "num": 1, + "short_hash": "27d11fd7f", + "unix": "1557229186" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reads_1" + } + ], + "label": "reads_1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 285.5, + "height": 61, + "left": 405.5, + "right": 605.5, + "top": 224.5, + "width": 200, + "x": 405.5, + "y": 224.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "71f77373-c9b8-441c-bbf3-b168fbb69220", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reads_2" + } + ], + "label": "reads_2", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 710.5, + "height": 61, + "left": 330.5, + "right": 530.5, + "top": 649.5, + "width": 200, + "x": 330.5, + "y": 649.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3da9f126-0edf-4243-88f7-e1d1528840f6", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nreads_1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nreads_2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"FastQC\"];\n 0 -->|output| 2;\n 3[\"FastQC\"];\n 1 -->|output| 3;\n 4[\"Trim Galore!\"];\n 0 -->|output| 4;\n 1 -->|output| 4;\n 5[\"MultiQC\"];\n 3 -->|text_file| 5;\n 2 -->|text_file| 5;\n 6[\"Bowtie2\"];\n 4 -->|trimmed_reads_pair1| 6;\n 4 -->|trimmed_reads_pair2| 6;\n cb22563a-fece-4b63-9d85-ff5817edb5c3[\"Output\\nbowtie2_mapping_stats\"];\n 6 --> cb22563a-fece-4b63-9d85-ff5817edb5c3;\n style cb22563a-fece-4b63-9d85-ff5817edb5c3 stroke:#2c3143,stroke-width:4px;\n 7[\"Samtools stats\"];\n 6 -->|output| 7;\n 490620d4-f083-4999-bb33-73a2a1f736b4[\"Output\\nbam_stats_1\"];\n 7 --> 490620d4-f083-4999-bb33-73a2a1f736b4;\n style 490620d4-f083-4999-bb33-73a2a1f736b4 stroke:#2c3143,stroke-width:4px;\n 8[\"JBrowse\"];\n 6 -->|output| 8;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "GTN - Sequence Analyses - Mapping - Jbrowse (imported from uploaded file)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "results_0|software_cond|output_0|input": [ + { + "id": 3, + "output_name": "text_file" + }, + { + "id": 2, + "output_name": "text_file" + } + ] + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "bottom": 513.5, + "height": 182, + "left": 1150.5, + "right": 1350.5, + "top": 331.5, + "width": 200, + "x": 1150.5, + "y": 331.5 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "75c93c70d094", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": \"false\", \"flat\": \"false\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "cb721d2b-697e-4722-9c26-4909ee315e42", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "1d156863-b350-4bf7-b68c-406c6c1ef582" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "library|input_1": { + "id": 4, + "output_name": "trimmed_reads_pair1" + }, + "library|input_2": { + "id": 4, + "output_name": "trimmed_reads_pair2" + } + }, + "inputs": [], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "bottom": 989.5, + "height": 252, + "left": 1170.5, + "right": 1370.5, + "top": 737.5, + "width": 200, + "x": 1170.5, + "y": 737.5 + }, + "post_job_actions": { + "HideDatasetActionoutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "09b2cdb7ace5", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"mm10\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.2+galaxy0", + "type": "tool", + "uuid": "7e2ff666-517c-46d8-9a25-c31bd6ffa55a", + "workflow_outputs": [ + { + "label": "bowtie2_mapping_stats", + "output_name": "mapping_stats", + "uuid": "cb22563a-fece-4b63-9d85-ff5817edb5c3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Samtools stats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 352.5, + "height": 112, + "left": 1532.5, + "right": 1732.5, + "top": 240.5, + "width": 200, + "x": 1532.5, + "y": 240.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "145f6d74ff5e", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"addref_cond\": {\"addref_select\": \"no\", \"__current_case__\": 0}, \"cond_region\": {\"select_region\": \"no\", \"__current_case__\": 0}, \"cov_threshold\": null, \"coverage_cond\": {\"coverage_select\": \"no\", \"__current_case__\": 0}, \"filter_by_flags\": {\"filter_flags\": \"nofilter\", \"__current_case__\": 1}, \"gc_depth\": \"20000.0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"insert_size\": \"8000\", \"most_inserts\": \"0.99\", \"read_length\": null, \"remove_dups\": \"false\", \"remove_overlaps\": \"false\", \"sparse\": \"false\", \"split_output_cond\": {\"split_output_selector\": \"no\", \"__current_case__\": 0}, \"trim_quality\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.2+galaxy2", + "type": "tool", + "uuid": "8b468a5b-01e5-4beb-8aef-fa079e3f7c2a", + "workflow_outputs": [ + { + "label": "bam_stats_1", + "output_name": "output", + "uuid": "490620d4-f083-4999-bb33-73a2a1f736b4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.1+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 1019.5, + "height": 132, + "left": 1536.5, + "right": 1736.5, + "top": 887.5, + "width": 200, + "x": 1536.5, + "y": 887.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "1cfc579079a6", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_select\": \"create\", \"__current_case__\": 0}, \"gencode\": \"1\", \"jbgen\": {\"defaultLocation\": \"\", \"trackPadding\": \"20\", \"shareLink\": \"true\", \"aboutDescription\": \"\", \"show_tracklist\": \"true\", \"show_nav\": \"true\", \"show_overview\": \"true\", \"show_menu\": \"true\", \"hideGenomeOptions\": \"false\"}, \"plugins\": {\"BlastView\": \"true\", \"ComboTrackSelector\": \"false\", \"GCContent\": \"false\"}, \"reference_genome\": {\"genome_type_select\": \"indexed\", \"__current_case__\": 0, \"genomes\": \"mm10full\"}, \"standalone\": \"true\", \"track_groups\": [{\"__index__\": 0, \"category\": \"Default\", \"data_tracks\": [{\"__index__\": 0, \"data_format\": {\"data_format_select\": \"pileup\", \"__current_case__\": 3, \"annotation\": {\"__class__\": \"ConnectedValue\"}, \"auto_snp\": \"true\", \"chunkSizeLimit\": \"5000000\", \"track_visibility\": \"default_on\", \"override_apollo_plugins\": \"False\", \"override_apollo_drag\": \"False\"}}]}], \"uglyTestingHack\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.1+galaxy0", + "type": "tool", + "uuid": "90ba0a17-0370-4cdf-8ddb-6d60f17f1b49", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d62f841d-3f68-485b-8da6-af60a48f404d" + } + ] + } + ], + "parent_id": "sequence-analysis/mapping", + "path": "topics/sequence-analysis/tutorials/mapping/workflows/mapping-jbrowse.ga", + "tags": [ + "sequence-analysis" + ], + "test_results": null, + "tests": false, + "title": "GTN - Sequence Analyses - Mapping - Jbrowse (imported from uploaded file)", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-mapping/versions/mapping-jbrowse", + "tutorial_id": "mapping", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/mapping/workflows/mapping-jbrowse.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/mapping/workflows/mapping-jbrowse.html", + "version": 5, + "wfid": "sequence-analysis-mapping", + "wfname": "mapping-jbrowse", + "workflow": "mapping-jbrowse.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1" + ], + "workflowhub_id": "1269" + }, + { + "creators": [], + "description": "Mapping", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreads_1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreads_2\"]\n 2[label=\"FastQC\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"FastQC\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Trim Galore!\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"MultiQC\"]\n 3 -> 5 [label=\"text_file\"]\n 2 -> 5 [label=\"text_file\"]\n 6[label=\"Bowtie2\"]\n 4 -> 6 [label=\"trimmed_reads_pair1\"]\n 4 -> 6 [label=\"trimmed_reads_pair2\"]\n kd267491228a645f3ac486635eabe47b7[color=lightseagreen,label=\"Output\\nbowtie2_mapping_stats\"]\n 6 -> kd267491228a645f3ac486635eabe47b7\n 7[label=\"Stats\"]\n 6 -> 7 [label=\"output\"]\n k96de3c0c4d7e423b8e9b9a12a011d726[color=lightseagreen,label=\"Output\\nbam_stats_1\"]\n 7 -> k96de3c0c4d7e423b8e9b9a12a011d726\n 8[label=\"Filter\"]\n 6 -> 8 [label=\"output\"]\n 9[label=\"Stats\"]\n 8 -> 9 [label=\"out_file1\"]\n k9603a94adcd84c1f89cdbb31d8572783[color=lightseagreen,label=\"Output\\nbam_stats_2\"]\n 9 -> k9603a94adcd84c1f89cdbb31d8572783\n}", + "history": [ + { + "hash": "505f7550f2798d344c73ae11ff158fa77cf90584", + "message": "update-workflows", + "num": 4, + "short_hash": "505f7550f", + "unix": "1618939337" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "c06c5b15160d8a4e1f1fc6d254c0590b82865f43", + "message": "Expand mapping tutorial and add workflow + tests", + "num": 1, + "short_hash": "c06c5b151", + "unix": "1536937277" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reads_1" + } + ], + "label": "reads_1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": -18, + "height": 61, + "left": -85, + "right": 115, + "top": -79, + "width": 200, + "x": -85, + "y": -79 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "71f77373-c9b8-441c-bbf3-b168fbb69220", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reads_2" + } + ], + "label": "reads_2", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 407, + "height": 61, + "left": -160, + "right": 40, + "top": 346, + "width": 200, + "x": -160, + "y": 346 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3da9f126-0edf-4243-88f7-e1d1528840f6", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nreads_1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nreads_2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"FastQC\"];\n 0 -->|output| 2;\n 3[\"FastQC\"];\n 1 -->|output| 3;\n 4[\"Trim Galore!\"];\n 0 -->|output| 4;\n 1 -->|output| 4;\n 5[\"MultiQC\"];\n 3 -->|text_file| 5;\n 2 -->|text_file| 5;\n 6[\"Bowtie2\"];\n 4 -->|trimmed_reads_pair1| 6;\n 4 -->|trimmed_reads_pair2| 6;\n d2674912-28a6-45f3-ac48-6635eabe47b7[\"Output\\nbowtie2_mapping_stats\"];\n 6 --> d2674912-28a6-45f3-ac48-6635eabe47b7;\n style d2674912-28a6-45f3-ac48-6635eabe47b7 stroke:#2c3143,stroke-width:4px;\n 7[\"Stats\"];\n 6 -->|output| 7;\n 96de3c0c-4d7e-423b-8e9b-9a12a011d726[\"Output\\nbam_stats_1\"];\n 7 --> 96de3c0c-4d7e-423b-8e9b-9a12a011d726;\n style 96de3c0c-4d7e-423b-8e9b-9a12a011d726 stroke:#2c3143,stroke-width:4px;\n 8[\"Filter\"];\n 6 -->|output| 8;\n 9[\"Stats\"];\n 8 -->|out_file1| 9;\n 9603a94a-dcd8-4c1f-89cd-bb31d8572783[\"Output\\nbam_stats_2\"];\n 9 --> 9603a94a-dcd8-4c1f-89cd-bb31d8572783;\n style 9603a94a-dcd8-4c1f-89cd-bb31d8572783 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "GTN - Sequence Analyses - Mapping (imported from uploaded file)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "library|input_1": { + "id": 4, + "output_name": "trimmed_reads_pair1" + }, + "library|input_2": { + "id": 4, + "output_name": "trimmed_reads_pair2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Bowtie2", + "name": "library" + }, + { + "description": "runtime parameter for tool Bowtie2", + "name": "library" + } + ], + "label": null, + "name": "Bowtie2", + "outputs": [ + { + "name": "output", + "type": "bam" + }, + { + "name": "mapping_stats", + "type": "txt" + } + ], + "position": { + "bottom": 684, + "height": 252, + "left": 594, + "right": 794, + "top": 432, + "width": 200, + "x": 594, + "y": 432 + }, + "post_job_actions": { + "HideDatasetActionoutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "09b2cdb7ace5", + "name": "bowtie2", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"simple\", \"__current_case__\": 0, \"presets\": \"no_presets\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"RuntimeValue\"}, \"input_2\": {\"__class__\": \"RuntimeValue\"}, \"unaligned_file\": \"false\", \"aligned_file\": \"false\", \"paired_options\": {\"paired_options_selector\": \"no\", \"__current_case__\": 1}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"mm10\"}, \"rg\": {\"rg_selector\": \"do_not_set\", \"__current_case__\": 3}, \"sam_options\": {\"sam_options_selector\": \"no\", \"__current_case__\": 1}, \"save_mapping_stats\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.2+galaxy0", + "type": "tool", + "uuid": "2d04b2e4-a2fe-4ce6-8894-5a752031171b", + "workflow_outputs": [ + { + "label": "bowtie2_mapping_stats", + "output_name": "mapping_stats", + "uuid": "d2674912-28a6-45f3-ac48-6635eabe47b7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Stats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 29, + "height": 92, + "left": 1042, + "right": 1242, + "top": -63, + "width": 200, + "x": 1042, + "y": -63 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "tool_shed_repository": { + "changeset_revision": "24c5d43cb545", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\", \"coverage_max\": \"1000\", \"coverage_min\": \"1\", \"coverage_step\": \"1\", \"filter_by_flags\": {\"filter_flags\": \"nofilter\", \"__current_case__\": 1}, \"gc_depth\": \"20000.0\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"insert_size\": \"8000\", \"most_inserts\": \"0.99\", \"read_length\": null, \"remove_dups\": \"false\", \"split_output\": {\"split_output_selector\": \"no\", \"__current_case__\": 0}, \"trim_quality\": \"0\", \"use_reference\": {\"use_ref_selector\": \"yes\", \"__current_case__\": 0, \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"ref_file\": \"mm10full\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.1", + "type": "tool", + "uuid": "898dd71d-9b58-4286-a6ae-5403cb284341", + "workflow_outputs": [ + { + "label": "bam_stats_1", + "output_name": "output", + "uuid": "96de3c0c-4d7e-423b-8e9b-9a12a011d726" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "errors": null, + "id": 9, + "input_connections": { + "input_file": { + "id": 8, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Stats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 619, + "height": 92, + "left": 1172, + "right": 1372, + "top": 527, + "width": 200, + "x": 1172, + "y": 527 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "tool_shed_repository": { + "changeset_revision": "24c5d43cb545", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\", \"coverage_max\": \"1000\", \"coverage_min\": \"1\", \"coverage_step\": \"1\", \"filter_by_flags\": {\"filter_flags\": \"nofilter\", \"__current_case__\": 1}, \"gc_depth\": \"20000.0\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"insert_size\": \"8000\", \"most_inserts\": \"0.99\", \"read_length\": null, \"remove_dups\": \"false\", \"split_output\": {\"split_output_selector\": \"no\", \"__current_case__\": 0}, \"trim_quality\": \"0\", \"use_reference\": {\"use_ref_selector\": \"yes\", \"__current_case__\": 0, \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"ref_file\": \"mm10full\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.1", + "type": "tool", + "uuid": "cb1e8297-24f1-4553-8111-1a2a48bfc12a", + "workflow_outputs": [ + { + "label": "bam_stats_2", + "output_name": "output", + "uuid": "9603a94a-dcd8-4c1f-89cd-bb31d8572783" + } + ] + } + ], + "parent_id": "sequence-analysis/mapping", + "path": "topics/sequence-analysis/tutorials/mapping/workflows/mapping.ga", + "tags": [ + "sequence-analysis" + ], + "test_results": { + "eu": { + "summary": { + "num_errors": 0, + "num_failures": 0, + "num_skips": 0, + "num_tests": 1 + }, + "tests": [ + { + "data": { + "end_datetime": "2023-05-19T16:33:47.079379", + "inputs": "---\nreads_1:\n class: File\n location: https://zenodo.org/record/1324070/files/wt_H3K4me3_read1.fastq.gz\nreads_2:\n class: File\n location: https://zenodo.org/record/1324070/files/wt_H3K4me3_read2.fastq.gz\n", + "invocation_details": { + "details": { + "error_message": "", + "history_id": "2e96b0bf6abd6b74", + "history_state": "ok", + "invocation_id": "6284e34d09b1b06d", + "invocation_state": "scheduled", + "workflow_id": "507e9a109418ad9c" + }, + "steps": { + "0. reads_1": { + "action": null, + "id": "239cd24984e05a43", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 0, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d86765ce9b5492a01ba912", + "src": "hda", + "uuid": "689bd625-8e53-484d-a369-e8f88e298ae8" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:30:12.217904", + "workflow_step_id": "a07c7d9026192889", + "workflow_step_label": "reads_1", + "workflow_step_uuid": "71f77373-c9b8-441c-bbf3-b168fbb69220" + }, + "1. reads_2": { + "action": null, + "id": "1da8d9ea66ac45a3", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 1, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d8676511241aa0be025fbe", + "src": "hda", + "uuid": "654f0d1a-35d6-4c17-863b-1ed725a10d3c" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:30:12.217908", + "workflow_step_id": "8b783f04ae56b16d", + "workflow_step_label": "reads_2", + "workflow_step_uuid": "3da9f126-0edf-4243-88f7-e1d1528840f6" + }, + "2. Unnamed step": { + "action": null, + "id": "d11da588620ce6e9", + "job_id": "11ac94870d0bb33adde30cbebfc7b5aa", + "jobs": [ + { + "command_line": "ln -s '/data/dnb08/galaxy_db/files/6/8/9/dataset_689bd625-8e53-484d-a369-e8f88e298ae8.dat' 'wt_H3K4me3_read1_fastq_gz.gz' && mkdir -p '/data/jwd05e/main/060/058/60058034/working/dataset_efc9b134-bbc0-4a68-9655-0ee02cf880af_files' && fastqc --outdir '/data/jwd05e/main/060/058/60058034/working/dataset_efc9b134-bbc0-4a68-9655-0ee02cf880af_files' --quiet --extract --kmers 7 -f 'fastq' 'wt_H3K4me3_read1_fastq_gz.gz' && cp '/data/jwd05e/main/060/058/60058034/working/dataset_efc9b134-bbc0-4a68-9655-0ee02cf880af_files'/*/fastqc_data.txt output.txt && cp '/data/jwd05e/main/060/058/60058034/working/dataset_efc9b134-bbc0-4a68-9655-0ee02cf880af_files'/*\\.html output.html", + "command_version": null, + "create_time": "2023-05-19T14:30:12.209933", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__fastqc@0.11.8", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "fastqc", + "version": "0.11.8" + } + ], + "exit_code": 0, + "external_id": "43534317", + "galaxy_version": "23.0", + "history_id": "2e96b0bf6abd6b74", + "id": "11ac94870d0bb33adde30cbebfc7b5aa", + "inputs": { + "input_file": { + "id": "4838ba20a6d86765ce9b5492a01ba912", + "src": "hda", + "uuid": "689bd625-8e53-484d-a369-e8f88e298ae8" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-1589.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-1589.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "8.0000000", + "title": "Cores Allocated", + "value": "8" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "31129.0000000", + "title": "Memory Allocated (MB)", + "value": "31129" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684506662.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:31:02" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684506713.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:31:53" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "51.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "51 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "12375662744.0000000", + "title": "CPU Time", + "value": "12.375662744 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "32749125632.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "30.5 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "268595200.0000000", + "title": "Max memory usage (MEM)", + "value": "256.2 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "268595200.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "256.2 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "html_file": { + "id": "4838ba20a6d8676572288659e6a2bd0b", + "src": "hda", + "uuid": "efc9b134-bbc0-4a68-9655-0ee02cf880af" + }, + "text_file": { + "id": "4838ba20a6d86765100e931edbfb8029", + "src": "hda", + "uuid": "718a2f6a-6747-4754-a9da-60a98a6c5957" + } + }, + "params": { + "__input_ext": "\"fastqsanger.gz\"", + "__workflow_invocation_uuid__": "\"9ef558e0f65111eda6f2001e67d2ec02\"", + "adapters": null, + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "contaminants": null, + "dbkey": "\"?\"", + "kmers": "\"7\"", + "limits": null, + "min_length": null, + "nogroup": "false" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T14:31:54.552522", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 2, + "output_collections": {}, + "outputs": { + "html_file": { + "id": "4838ba20a6d8676572288659e6a2bd0b", + "src": "hda", + "uuid": "efc9b134-bbc0-4a68-9655-0ee02cf880af" + }, + "text_file": { + "id": "4838ba20a6d86765100e931edbfb8029", + "src": "hda", + "uuid": "718a2f6a-6747-4754-a9da-60a98a6c5957" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:31:54.529698", + "workflow_step_id": "1e8dd70f0c41cadf", + "workflow_step_label": null, + "workflow_step_uuid": "f9d0ea7d-f2e3-41b2-bc11-4d40665a4439" + }, + "3. Unnamed step": { + "action": null, + "id": "76778945e7e793e5", + "job_id": "11ac94870d0bb33af53ebe6a5976a7e4", + "jobs": [ + { + "command_line": "ln -s '/data/dnb08/galaxy_db/files/6/5/4/dataset_654f0d1a-35d6-4c17-863b-1ed725a10d3c.dat' 'wt_H3K4me3_read2_fastq_gz.gz' && mkdir -p '/data/jwd02f/main/060/058/60058035/working/dataset_5f25fcad-3405-4aa3-a343-8eb710d98761_files' && fastqc --outdir '/data/jwd02f/main/060/058/60058035/working/dataset_5f25fcad-3405-4aa3-a343-8eb710d98761_files' --quiet --extract --kmers 7 -f 'fastq' 'wt_H3K4me3_read2_fastq_gz.gz' && cp '/data/jwd02f/main/060/058/60058035/working/dataset_5f25fcad-3405-4aa3-a343-8eb710d98761_files'/*/fastqc_data.txt output.txt && cp '/data/jwd02f/main/060/058/60058035/working/dataset_5f25fcad-3405-4aa3-a343-8eb710d98761_files'/*\\.html output.html", + "command_version": null, + "create_time": "2023-05-19T14:30:12.324932", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__fastqc@0.11.8", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "fastqc", + "version": "0.11.8" + } + ], + "exit_code": 0, + "external_id": "43534318", + "galaxy_version": "23.0", + "history_id": "2e96b0bf6abd6b74", + "id": "11ac94870d0bb33af53ebe6a5976a7e4", + "inputs": { + "input_file": { + "id": "4838ba20a6d8676511241aa0be025fbe", + "src": "hda", + "uuid": "654f0d1a-35d6-4c17-863b-1ed725a10d3c" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-1589.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-1589.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "8.0000000", + "title": "Cores Allocated", + "value": "8" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "31129.0000000", + "title": "Memory Allocated (MB)", + "value": "31129" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684506662.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:31:02" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684506721.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:32:01" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "59.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "59 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "13599783917.0000000", + "title": "CPU Time", + "value": "13.599783917 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "32749125632.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "30.5 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "231440384.0000000", + "title": "Max memory usage (MEM)", + "value": "220.7 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "231440384.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "220.7 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "html_file": { + "id": "4838ba20a6d8676521dd17a9b62d385f", + "src": "hda", + "uuid": "5f25fcad-3405-4aa3-a343-8eb710d98761" + }, + "text_file": { + "id": "4838ba20a6d8676577d1d2d4d95b125f", + "src": "hda", + "uuid": "0a0a3867-f5f7-4690-9776-09274436e562" + } + }, + "params": { + "__input_ext": "\"fastqsanger.gz\"", + "__workflow_invocation_uuid__": "\"9ef558e0f65111eda6f2001e67d2ec02\"", + "adapters": null, + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "contaminants": null, + "dbkey": "\"?\"", + "kmers": "\"7\"", + "limits": null, + "min_length": null, + "nogroup": "false" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T14:32:05.448601", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 3, + "output_collections": {}, + "outputs": { + "html_file": { + "id": "4838ba20a6d8676521dd17a9b62d385f", + "src": "hda", + "uuid": "5f25fcad-3405-4aa3-a343-8eb710d98761" + }, + "text_file": { + "id": "4838ba20a6d8676577d1d2d4d95b125f", + "src": "hda", + "uuid": "0a0a3867-f5f7-4690-9776-09274436e562" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:32:05.428308", + "workflow_step_id": "7c2802e0bfd4ecd0", + "workflow_step_label": null, + "workflow_step_uuid": "faa4b55f-0b0c-4696-b61e-f281007aa8a1" + }, + "4. Unnamed step": { + "action": null, + "id": "1504cb0a755f30bb", + "job_id": "11ac94870d0bb33a0920faa96345e33f", + "jobs": [ + { + "command_line": "ln -s '/data/dnb08/galaxy_db/files/6/8/9/dataset_689bd625-8e53-484d-a369-e8f88e298ae8.dat' input_1.fastq.gz && ln -s '/data/dnb08/galaxy_db/files/6/5/4/dataset_654f0d1a-35d6-4c17-863b-1ed725a10d3c.dat' input_2.fastq.gz && trim_galore --phred33 --output_dir ./ --paired input_1.fastq.gz input_2.fastq.gz && if [ -f input_1_trimmed.fq.gz ] ; then mv input_1_trimmed.fq.gz input_1_trimmed.fq ; fi && if [ -f input_1_val_1.fq.gz ] ; then mv input_1_val_1.fq.gz input_1_val_1.fq ; fi && if [ -f input_2_val_2.fq.gz ] ; then mv input_2_val_2.fq.gz input_2_val_2.fq ; fi && if [ -f input_1_unpaired_1.fq.gz ] ; then mv input_1_unpaired_1.fq.gz input_1_unpaired_1.fq ; fi && if [ -f input_2_unpaired_2.fq.gz ] ; then mv input_2_unpaired_2.fq.gz input_2_unpaired_2.fq ; fi", + "command_version": "Quality-/Adapter-/RRBS-Trimming\n (powered by Cutadapt)\n version 0.4.3\n\n Last update: 07 12 2016", + "create_time": "2023-05-19T14:30:12.446388", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__trim-galore@0.4.3", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "trim-galore", + "version": "0.4.3" + } + ], + "exit_code": 0, + "external_id": "43534319", + "galaxy_version": "23.0", + "history_id": "2e96b0bf6abd6b74", + "id": "11ac94870d0bb33a0920faa96345e33f", + "inputs": { + "input_mate1": { + "id": "4838ba20a6d86765ce9b5492a01ba912", + "src": "hda", + "uuid": "689bd625-8e53-484d-a369-e8f88e298ae8" + }, + "input_mate2": { + "id": "4838ba20a6d8676511241aa0be025fbe", + "src": "hda", + "uuid": "654f0d1a-35d6-4c17-863b-1ed725a10d3c" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m100-8763.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m100-8763.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "5.0000000", + "title": "Cores Allocated", + "value": "5" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "19456.0000000", + "title": "Memory Allocated (MB)", + "value": "19456" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684506638.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:30:38" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684506671.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:31:11" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "33.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "33 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "15323583745.0000000", + "title": "CPU Time", + "value": "15.323583745 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "20401094656.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "19.0 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "216088576.0000000", + "title": "Max memory usage (MEM)", + "value": "206.1 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "216088576.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "206.1 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "trimmed_reads_pair1": { + "id": "4838ba20a6d86765439b06bcf8677007", + "src": "hda", + "uuid": "64981dba-44f7-4768-8b63-e63defba2ecf" + }, + "trimmed_reads_pair2": { + "id": "4838ba20a6d867658f72f66dd1d7e6cc", + "src": "hda", + "uuid": "0764cea4-72ed-4a8c-93b2-88bd066afc4e" + } + }, + "params": { + "__input_ext": "\"input\"", + "__workflow_invocation_uuid__": "\"9ef558e0f65111eda6f2001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"", + "params": "{\"__current_case__\": 0, \"settingsType\": \"default\"}", + "rrbs": "{\"__current_case__\": 0, \"settingsType\": \"default\"}", + "singlePaired": "{\"__current_case__\": 1, \"input_mate1\": {\"values\": [{\"id\": 137415404, \"src\": \"hda\"}]}, \"input_mate2\": {\"values\": [{\"id\": 137415461, \"src\": \"hda\"}]}, \"sPaired\": \"paired\", \"three_prime_clip_R1\": null, \"three_prime_clip_R2\": null, \"trim1\": false, \"trimming\": {\"__current_case__\": 0, \"trimming_select\": \"\"}}" + }, + "state": "ok", + "stderr": "Path to Cutadapt set as: 'cutadapt' (default)\nCutadapt seems to be working fine (tested command 'cutadapt --version')\n\n\nAUTO-DETECTING ADAPTER TYPE\n===========================\nAttempting to auto-detect adapter type from the first 1 million sequences of the first file (>> input_1.fastq.gz <<)\n\nFound perfect matches for the following adapter sequences:\nAdapter type\tCount\tSequence\tSequences analysed\tPercentage\nIllumina\t2\tAGATCGGAAGAGC\t50000\t0.00\nsmallRNA\t0\tTGGAATTCTCGG\t50000\t0.00\nNextera\t0\tCTGTCTCTTATA\t50000\t0.00\nUsing Illumina adapter for trimming (count: 2). Second best hit was smallRNA (count: 0)\n\nWriting report to './input_1.fastq.gz_trimming_report.txt'\n\nSUMMARISING RUN PARAMETERS\n==========================\nInput filename: input_1.fastq.gz\nTrimming mode: paired-end\nTrim Galore version: 0.4.3\nCutadapt version: 1.13\nQuality Phred score cutoff: 20\nQuality encoding type selected: ASCII+33\nAdapter sequence: 'AGATCGGAAGAGC' (Illumina TruSeq, Sanger iPCR; auto-detected)\nMaximum trimming error rate: 0.1 (default)\nMinimum required adapter overlap (stringency): 1 bp\nMinimum required sequence length for both reads before a sequence pair gets removed: 20 bp\nOutput file(s) will be GZIP compressed\n\nWriting final adapter and quality trimmed output to input_1_trimmed.fq.gz\n\n\n >>> Now performing quality (cutoff 20) and adapter trimming in a single pass for the adapter sequence: 'AGATCGGAAGAGC' from file input_1.fastq.gz <<< \nThis is cutadapt 1.13 with Python 3.6.1\nCommand line parameters: -f fastq -e 0.1 -q 20 -O 1 -a AGATCGGAAGAGC input_1.fastq.gz\nTrimming 1 adapter with at most 10.0% errors in single-end mode ...\nFinished in 0.85 s (17 us/read; 3.52 M reads/minute).\n\n=== Summary ===\n\nTotal reads processed: 50,000\nReads with adapters: 14,011 (28.0%)\nReads written (passing filters): 50,000 (100.0%)\n\nTotal basepairs processed: 2,550,000 bp\nQuality-trimmed: 34,012 bp (1.3%)\nTotal written (filtered): 2,495,795 bp (97.9%)\n\n=== Adapter 1 ===\n\nSequence: AGATCGGAAGAGC; Type: regular 3'; Length: 13; Trimmed: 14011 times.\n\nNo. of allowed errors:\n0-9 bp: 0; 10-13 bp: 1\n\nBases preceding removed adapters:\n A: 27.3%\n C: 33.3%\n G: 24.8%\n T: 14.6%\n none/other: 0.0%\n\nOverview of removed sequences\nlength\tcount\texpect\tmax.err\terror counts\n1\t9379\t12500.0\t0\t9379\n2\t3646\t3125.0\t0\t3646\n3\t791\t781.2\t0\t791\n4\t134\t195.3\t0\t134\n5\t33\t48.8\t0\t33\n6\t9\t12.2\t0\t9\n7\t3\t3.1\t0\t3\n8\t1\t0.8\t0\t1\n9\t1\t0.2\t0\t0 1\n10\t3\t0.0\t1\t0 3\n11\t1\t0.0\t1\t1\n15\t1\t0.0\t1\t1\n16\t1\t0.0\t1\t0 1\n19\t1\t0.0\t1\t1\n27\t1\t0.0\t1\t0 1\n28\t1\t0.0\t1\t0 1\n32\t1\t0.0\t1\t0 1\n36\t1\t0.0\t1\t0 1\n43\t1\t0.0\t1\t0 1\n49\t1\t0.0\t1\t0 1\n50\t1\t0.0\t1\t0 1\n\n\nRUN STATISTICS FOR INPUT FILE: input_1.fastq.gz\n=============================================\n50000 sequences processed in total\nThe length threshold of paired-end sequences gets evaluated later on (in the validation step)\n\nWriting report to './input_2.fastq.gz_trimming_report.txt'\n\nSUMMARISING RUN PARAMETERS\n==========================\nInput filename: input_2.fastq.gz\nTrimming mode: paired-end\nTrim Galore version: 0.4.3\nCutadapt version: 1.13\nQuality Phred score cutoff: 20\nQuality encoding type selected: ASCII+33\nAdapter sequence: 'AGATCGGAAGAGC' (Illumina TruSeq, Sanger iPCR; auto-detected)\nMaximum trimming error rate: 0.1 (default)\nMinimum required adapter overlap (stringency): 1 bp\nMinimum required sequence length for both reads before a sequence pair gets removed: 20 bp\nOutput file(s) will be GZIP compressed\n\nWriting final adapter and quality trimmed output to input_2_trimmed.fq.gz\n\n\n >>> Now performing quality (cutoff 20) and adapter trimming in a single pass for the adapter sequence: 'AGATCGGAAGAGC' from file input_2.fastq.gz <<< \nThis is cutadapt 1.13 with Python 3.6.1\nCommand line parameters: -f fastq -e 0.1 -q 20 -O 1 -a AGATCGGAAGAGC input_2.fastq.gz\nTrimming 1 adapter with at most 10.0% errors in single-end mode ...\nFinished in 0.91 s (18 us/read; 3.30 M reads/minute).\n\n=== Summary ===\n\nTotal reads processed: 50,000\nReads with adapters: 13,787 (27.6%)\nReads written (passing filters): 50,000 (100.0%)\n\nTotal basepairs processed: 2,550,000 bp\nQuality-trimmed: 120,340 bp (4.7%)\nTotal written (filtered): 2,410,008 bp (94.5%)\n\n=== Adapter 1 ===\n\nSequence: AGATCGGAAGAGC; Type: regular 3'; Length: 13; Trimmed: 13787 times.\n\nNo. of allowed errors:\n0-9 bp: 0; 10-13 bp: 1\n\nBases preceding removed adapters:\n A: 27.6%\n C: 32.8%\n G: 24.6%\n T: 15.0%\n none/other: 0.0%\n\nOverview of removed sequences\nlength\tcount\texpect\tmax.err\terror counts\n1\t9236\t12500.0\t0\t9236\n2\t3546\t3125.0\t0\t3546\n3\t827\t781.2\t0\t827\n4\t131\t195.3\t0\t131\n5\t36\t48.8\t0\t36\n6\t3\t12.2\t0\t3\n7\t2\t3.1\t0\t2\n9\t1\t0.2\t0\t0 1\n11\t2\t0.0\t1\t1 1\n15\t1\t0.0\t1\t1\n19\t1\t0.0\t1\t1\n42\t1\t0.0\t1\t0 1\n\n\nRUN STATISTICS FOR INPUT FILE: input_2.fastq.gz\n=============================================\n50000 sequences processed in total\nThe length threshold of paired-end sequences gets evaluated later on (in the validation step)\n\nValidate paired-end files input_1_trimmed.fq.gz and input_2_trimmed.fq.gz\nfile_1: input_1_trimmed.fq.gz, file_2: input_2_trimmed.fq.gz\n\n\n>>>>> Now validing the length of the 2 paired-end infiles: input_1_trimmed.fq.gz and input_2_trimmed.fq.gz <<<<<\nWriting validated paired-end read 1 reads to input_1_val_1.fq.gz\nWriting validated paired-end read 2 reads to input_2_val_2.fq.gz\n\nTotal number of sequences analysed: 50000\n\nNumber of sequence pairs removed because at least one read was shorter than the length cutoff (20 bp): 1639 (3.28%)\n\nDeleting both intermediate output files input_1_trimmed.fq.gz and input_2_trimmed.fq.gz\n\n====================================================================================================\n\n\ngzip: stdout: Broken pipe\n", + "stdout": "1.13\n", + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1", + "tool_stderr": "Path to Cutadapt set as: 'cutadapt' (default)\nCutadapt seems to be working fine (tested command 'cutadapt --version')\n\n\nAUTO-DETECTING ADAPTER TYPE\n===========================\nAttempting to auto-detect adapter type from the first 1 million sequences of the first file (>> input_1.fastq.gz <<)\n\nFound perfect matches for the following adapter sequences:\nAdapter type\tCount\tSequence\tSequences analysed\tPercentage\nIllumina\t2\tAGATCGGAAGAGC\t50000\t0.00\nsmallRNA\t0\tTGGAATTCTCGG\t50000\t0.00\nNextera\t0\tCTGTCTCTTATA\t50000\t0.00\nUsing Illumina adapter for trimming (count: 2). Second best hit was smallRNA (count: 0)\n\nWriting report to './input_1.fastq.gz_trimming_report.txt'\n\nSUMMARISING RUN PARAMETERS\n==========================\nInput filename: input_1.fastq.gz\nTrimming mode: paired-end\nTrim Galore version: 0.4.3\nCutadapt version: 1.13\nQuality Phred score cutoff: 20\nQuality encoding type selected: ASCII+33\nAdapter sequence: 'AGATCGGAAGAGC' (Illumina TruSeq, Sanger iPCR; auto-detected)\nMaximum trimming error rate: 0.1 (default)\nMinimum required adapter overlap (stringency): 1 bp\nMinimum required sequence length for both reads before a sequence pair gets removed: 20 bp\nOutput file(s) will be GZIP compressed\n\nWriting final adapter and quality trimmed output to input_1_trimmed.fq.gz\n\n\n >>> Now performing quality (cutoff 20) and adapter trimming in a single pass for the adapter sequence: 'AGATCGGAAGAGC' from file input_1.fastq.gz <<< \nThis is cutadapt 1.13 with Python 3.6.1\nCommand line parameters: -f fastq -e 0.1 -q 20 -O 1 -a AGATCGGAAGAGC input_1.fastq.gz\nTrimming 1 adapter with at most 10.0% errors in single-end mode ...\nFinished in 0.85 s (17 us/read; 3.52 M reads/minute).\n\n=== Summary ===\n\nTotal reads processed: 50,000\nReads with adapters: 14,011 (28.0%)\nReads written (passing filters): 50,000 (100.0%)\n\nTotal basepairs processed: 2,550,000 bp\nQuality-trimmed: 34,012 bp (1.3%)\nTotal written (filtered): 2,495,795 bp (97.9%)\n\n=== Adapter 1 ===\n\nSequence: AGATCGGAAGAGC; Type: regular 3'; Length: 13; Trimmed: 14011 times.\n\nNo. of allowed errors:\n0-9 bp: 0; 10-13 bp: 1\n\nBases preceding removed adapters:\n A: 27.3%\n C: 33.3%\n G: 24.8%\n T: 14.6%\n none/other: 0.0%\n\nOverview of removed sequences\nlength\tcount\texpect\tmax.err\terror counts\n1\t9379\t12500.0\t0\t9379\n2\t3646\t3125.0\t0\t3646\n3\t791\t781.2\t0\t791\n4\t134\t195.3\t0\t134\n5\t33\t48.8\t0\t33\n6\t9\t12.2\t0\t9\n7\t3\t3.1\t0\t3\n8\t1\t0.8\t0\t1\n9\t1\t0.2\t0\t0 1\n10\t3\t0.0\t1\t0 3\n11\t1\t0.0\t1\t1\n15\t1\t0.0\t1\t1\n16\t1\t0.0\t1\t0 1\n19\t1\t0.0\t1\t1\n27\t1\t0.0\t1\t0 1\n28\t1\t0.0\t1\t0 1\n32\t1\t0.0\t1\t0 1\n36\t1\t0.0\t1\t0 1\n43\t1\t0.0\t1\t0 1\n49\t1\t0.0\t1\t0 1\n50\t1\t0.0\t1\t0 1\n\n\nRUN STATISTICS FOR INPUT FILE: input_1.fastq.gz\n=============================================\n50000 sequences processed in total\nThe length threshold of paired-end sequences gets evaluated later on (in the validation step)\n\nWriting report to './input_2.fastq.gz_trimming_report.txt'\n\nSUMMARISING RUN PARAMETERS\n==========================\nInput filename: input_2.fastq.gz\nTrimming mode: paired-end\nTrim Galore version: 0.4.3\nCutadapt version: 1.13\nQuality Phred score cutoff: 20\nQuality encoding type selected: ASCII+33\nAdapter sequence: 'AGATCGGAAGAGC' (Illumina TruSeq, Sanger iPCR; auto-detected)\nMaximum trimming error rate: 0.1 (default)\nMinimum required adapter overlap (stringency): 1 bp\nMinimum required sequence length for both reads before a sequence pair gets removed: 20 bp\nOutput file(s) will be GZIP compressed\n\nWriting final adapter and quality trimmed output to input_2_trimmed.fq.gz\n\n\n >>> Now performing quality (cutoff 20) and adapter trimming in a single pass for the adapter sequence: 'AGATCGGAAGAGC' from file input_2.fastq.gz <<< \nThis is cutadapt 1.13 with Python 3.6.1\nCommand line parameters: -f fastq -e 0.1 -q 20 -O 1 -a AGATCGGAAGAGC input_2.fastq.gz\nTrimming 1 adapter with at most 10.0% errors in single-end mode ...\nFinished in 0.91 s (18 us/read; 3.30 M reads/minute).\n\n=== Summary ===\n\nTotal reads processed: 50,000\nReads with adapters: 13,787 (27.6%)\nReads written (passing filters): 50,000 (100.0%)\n\nTotal basepairs processed: 2,550,000 bp\nQuality-trimmed: 120,340 bp (4.7%)\nTotal written (filtered): 2,410,008 bp (94.5%)\n\n=== Adapter 1 ===\n\nSequence: AGATCGGAAGAGC; Type: regular 3'; Length: 13; Trimmed: 13787 times.\n\nNo. of allowed errors:\n0-9 bp: 0; 10-13 bp: 1\n\nBases preceding removed adapters:\n A: 27.6%\n C: 32.8%\n G: 24.6%\n T: 15.0%\n none/other: 0.0%\n\nOverview of removed sequences\nlength\tcount\texpect\tmax.err\terror counts\n1\t9236\t12500.0\t0\t9236\n2\t3546\t3125.0\t0\t3546\n3\t827\t781.2\t0\t827\n4\t131\t195.3\t0\t131\n5\t36\t48.8\t0\t36\n6\t3\t12.2\t0\t3\n7\t2\t3.1\t0\t2\n9\t1\t0.2\t0\t0 1\n11\t2\t0.0\t1\t1 1\n15\t1\t0.0\t1\t1\n19\t1\t0.0\t1\t1\n42\t1\t0.0\t1\t0 1\n\n\nRUN STATISTICS FOR INPUT FILE: input_2.fastq.gz\n=============================================\n50000 sequences processed in total\nThe length threshold of paired-end sequences gets evaluated later on (in the validation step)\n\nValidate paired-end files input_1_trimmed.fq.gz and input_2_trimmed.fq.gz\nfile_1: input_1_trimmed.fq.gz, file_2: input_2_trimmed.fq.gz\n\n\n>>>>> Now validing the length of the 2 paired-end infiles: input_1_trimmed.fq.gz and input_2_trimmed.fq.gz <<<<<\nWriting validated paired-end read 1 reads to input_1_val_1.fq.gz\nWriting validated paired-end read 2 reads to input_2_val_2.fq.gz\n\nTotal number of sequences analysed: 50000\n\nNumber of sequence pairs removed because at least one read was shorter than the length cutoff (20 bp): 1639 (3.28%)\n\nDeleting both intermediate output files input_1_trimmed.fq.gz and input_2_trimmed.fq.gz\n\n====================================================================================================\n\n\ngzip: stdout: Broken pipe\n", + "tool_stdout": "1.13\n", + "traceback": null, + "update_time": "2023-05-19T14:31:12.868610", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 4, + "output_collections": {}, + "outputs": { + "trimmed_reads_pair1": { + "id": "4838ba20a6d86765439b06bcf8677007", + "src": "hda", + "uuid": "64981dba-44f7-4768-8b63-e63defba2ecf" + }, + "trimmed_reads_pair2": { + "id": "4838ba20a6d867658f72f66dd1d7e6cc", + "src": "hda", + "uuid": "0764cea4-72ed-4a8c-93b2-88bd066afc4e" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:31:12.847743", + "workflow_step_id": "0cdaaf28f2c92138", + "workflow_step_label": null, + "workflow_step_uuid": "ba2566a8-447f-45ed-98d1-1fd1a5ba6ab4" + }, + "5. Unnamed step": { + "action": null, + "id": "c06c2ed6eeedc161", + "job_id": "11ac94870d0bb33a0cd484c99b4bfb1e", + "jobs": [ + { + "command_line": "die() { echo \"$@\" 1>&2 ; exit 1; } && mkdir multiqc_WDir && mkdir multiqc_WDir/fastqc_0 && mkdir 'multiqc_WDir/fastqc_0/data_0' && mkdir 'multiqc_WDir/fastqc_0/data_0/file_0' && ln -s '/data/dnb08/galaxy_db/files/0/a/0/dataset_0a0a3867-f5f7-4690-9776-09274436e562.dat' 'multiqc_WDir/fastqc_0/data_0/file_0/fastqc_data.txt' && mkdir 'multiqc_WDir/fastqc_0/data_0/file_1' && ln -s '/data/dnb08/galaxy_db/files/7/1/8/dataset_718a2f6a-6747-4754-a9da-60a98a6c5957.dat' 'multiqc_WDir/fastqc_0/data_0/file_1/fastqc_data.txt' && multiqc multiqc_WDir --filename \"report\"", + "command_version": null, + "create_time": "2023-05-19T14:30:12.574335", + "dependencies": [], + "exit_code": 0, + "external_id": "43534360", + "galaxy_version": "23.0", + "history_id": "2e96b0bf6abd6b74", + "id": "11ac94870d0bb33a0cd484c99b4bfb1e", + "inputs": { + "results_0|software_cond|output_0|input": { + "id": "4838ba20a6d8676577d1d2d4d95b125f", + "src": "hda", + "uuid": "0a0a3867-f5f7-4690-9776-09274436e562" + }, + "results_0|software_cond|output_0|input1": { + "id": "4838ba20a6d8676577d1d2d4d95b125f", + "src": "hda", + "uuid": "0a0a3867-f5f7-4690-9776-09274436e562" + }, + "results_0|software_cond|output_0|input2": { + "id": "4838ba20a6d86765100e931edbfb8029", + "src": "hda", + "uuid": "718a2f6a-6747-4754-a9da-60a98a6c5957" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-4973.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-4973.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "11673.0000000", + "title": "Memory Allocated (MB)", + "value": "11673" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684506732.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:32:12" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684506804.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:33:24" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "72.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "1 minute" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "11111220478.0000000", + "title": "CPU Time", + "value": "11.111220478 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "21474836480.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "20.0 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "246882304.0000000", + "title": "Max memory usage (MEM)", + "value": "235.4 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "246882304.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "235.4 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": { + "stats": { + "id": "cfa32fe2043782fe", + "src": "hdca" + } + }, + "outputs": { + "__new_primary_file_stats|fastqc__": { + "id": "4838ba20a6d86765af3f1d3773b3e6e6", + "src": "hda", + "uuid": "3b7d0c75-6916-4fe8-b043-2f548a0b6178" + }, + "__new_primary_file_stats|general_stats__": { + "id": "4838ba20a6d86765eeebdf0f28fa6046", + "src": "hda", + "uuid": "25a75644-bd77-40a5-b740-fbc4cf4b2873" + }, + "__new_primary_file_stats|sources__": { + "id": "4838ba20a6d8676552f11ea459caefac", + "src": "hda", + "uuid": "707ab880-1526-47de-be63-f6466c1857ff" + }, + "html_report": { + "id": "4838ba20a6d86765ec54819e54cbe660", + "src": "hda", + "uuid": "a7901748-d8a1-40f0-a656-40796763ae98" + } + }, + "params": { + "__input_ext": "\"txt\"", + "__workflow_invocation_uuid__": "\"9ef558e0f65111eda6f2001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "comment": "\"\"", + "dbkey": "\"?\"", + "export": "false", + "flat": "false", + "results": "[{\"__index__\": 0, \"software_cond\": {\"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"input\": {\"values\": [{\"id\": 137415695, \"src\": \"hda\"}, {\"id\": 137415693, \"src\": \"hda\"}]}, \"type\": \"data\"}], \"software\": \"fastqc\"}}]", + "saveLog": "false", + "title": "\"\"" + }, + "state": "ok", + "stderr": "[WARNING] multiqc : MultiQC Version v1.14 now available!\n[INFO ] multiqc : This is MultiQC v1.9\n[INFO ] multiqc : Template : default\n[INFO ] multiqc : Searching : /data/jwd02f/main/060/058/60058037/working/multiqc_WDir\n[INFO ] fastqc : Found 2 reports\n[INFO ] multiqc : Compressing plot data\n[INFO ] multiqc : Report : report.html\n[INFO ] multiqc : Data : report_data\n[INFO ] multiqc : MultiQC complete\n", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9", + "tool_stderr": "[WARNING] multiqc : MultiQC Version v1.14 now available!\n[INFO ] multiqc : This is MultiQC v1.9\n[INFO ] multiqc : Template : default\n[INFO ] multiqc : Searching : /data/jwd02f/main/060/058/60058037/working/multiqc_WDir\n[INFO ] fastqc : Found 2 reports\n[INFO ] multiqc : Compressing plot data\n[INFO ] multiqc : Report : report.html\n[INFO ] multiqc : Data : report_data\n[INFO ] multiqc : MultiQC complete\n", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T14:33:25.724813", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 5, + "output_collections": { + "stats": { + "id": "cfa32fe2043782fe", + "src": "hdca" + } + }, + "outputs": { + "html_report": { + "id": "4838ba20a6d86765ec54819e54cbe660", + "src": "hda", + "uuid": "a7901748-d8a1-40f0-a656-40796763ae98" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:33:25.705737", + "workflow_step_id": "076bed37af53db03", + "workflow_step_label": null, + "workflow_step_uuid": "0f4492d6-2e63-466f-98e7-9f2921d4c039" + }, + "6. Unnamed step": { + "action": null, + "id": "ac35c3e9e0f36f77", + "job_id": "11ac94870d0bb33a600088ef54ecdb6d", + "jobs": [ + { + "command_line": "set -o | grep -q pipefail && set -o pipefail; ln -f -s '/data/dnb08/galaxy_db/files/6/4/9/dataset_64981dba-44f7-4768-8b63-e63defba2ecf.dat' input_f.fastq.gz && ln -f -s '/data/dnb08/galaxy_db/files/0/7/6/dataset_0764cea4-72ed-4a8c-93b2-88bd066afc4e.dat' input_r.fastq.gz && bowtie2 -p ${GALAXY_SLOTS:-4} -x '/data/db/reference_genomes/mm10/bowtie2_index/mm10' -1 'input_f.fastq.gz' -2 'input_r.fastq.gz' 2> '/data/jwd02f/main/060/058/60058038/outputs/galaxy_dataset_b1360a80-c9bb-4fb9-ac3e-00aac0213e44.dat' | samtools sort --no-PG -@${GALAXY_SLOTS:-2} -T \"${TMPDIR:-.}\" -O bam -o '/data/jwd02f/main/060/058/60058038/outputs/galaxy_dataset_014de858-c517-4e2a-a491-c14c99491b03.dat'", + "command_version": "/usr/local/tools/_conda/envs/mulled-v1-2c9d0d73d81f016cd458c97e185f638410841f3ecf7ae79158d90e0d58249513/bin/bowtie2-align-s version 2.4.2\n64-bit\nBuilt on default-bf91a638-95fa-4b77-97c5-abccd9855c3e\nMon Nov 2 17:36:36 UTC 2020\nCompiler: gcc version 7.5.0 (crosstool-NG 1.24.0.131_87df0e6_dirty) \nOptions: -O3 -msse2 -funroll-loops -g3 -fvisibility-inlines-hidden -std=c++17 -fmessage-length=0 -march=nocona -mtune=haswell -ftree-vectorize -fPIC -fstack-protector-strong -fno-plt -O2 -ffunction-sections -pipe -isystem /usr/local/tools/_conda/envs/mulled-v1-2c9d0d73d81f016cd458c97e185f638410841f3ecf7ae79158d90e0d58249513/include -fdebug-prefix-map=/opt/conda/conda-bld/bowtie2_1604337828546/work=/usr/local/src/conda/bowtie2-2.4.2 -fdebug-prefix-map=/usr/local/tools/_conda/envs/mulled-v1-2c9d0d73d81f016cd458c97e185f638410841f3ecf7ae79158d90e0d58249513=/usr/local/src/conda-prefix -DPOPCNT_CAPABILITY -DWITH_TBB -std=c++11 -DNO_SPINLOCK -DWITH_QUEUELOCK=1\nSizeof {int, long, long long, void*, size_t, off_t}: {4, 8, 8, 8, 8, 8}", + "create_time": "2023-05-19T14:30:12.695266", + "dependencies": [], + "exit_code": 0, + "external_id": "43534339", + "galaxy_version": "23.0", + "history_id": "2e96b0bf6abd6b74", + "id": "11ac94870d0bb33a600088ef54ecdb6d", + "inputs": { + "input_1": { + "id": "4838ba20a6d86765439b06bcf8677007", + "src": "hda", + "uuid": "64981dba-44f7-4768-8b63-e63defba2ecf" + }, + "input_2": { + "id": "4838ba20a6d867658f72f66dd1d7e6cc", + "src": "hda", + "uuid": "0764cea4-72ed-4a8c-93b2-88bd066afc4e" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-4973.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-4973.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "8.0000000", + "title": "Cores Allocated", + "value": "8" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "20480.0000000", + "title": "Memory Allocated (MB)", + "value": "20480" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684506680.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:31:20" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684506731.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:32:11" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "51.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "51 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "36889533091.0000000", + "title": "CPU Time", + "value": "36.889533091 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "21474836480.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "20.0 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "6388858880.0000000", + "title": "Max memory usage (MEM)", + "value": "6.0 GB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "6388858880.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "6.0 GB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "mapping_stats": { + "id": "4838ba20a6d867656446378f71ad820b", + "src": "hda", + "uuid": "b1360a80-c9bb-4fb9-ac3e-00aac0213e44" + }, + "output": { + "id": "4838ba20a6d86765af291d8ab2af5e96", + "src": "hda", + "uuid": "014de858-c517-4e2a-a491-c14c99491b03" + } + }, + "params": { + "__input_ext": "\"input\"", + "__workflow_invocation_uuid__": "\"9ef558e0f65111eda6f2001e67d2ec02\"", + "analysis_type": "{\"__current_case__\": 0, \"analysis_type_selector\": \"simple\", \"presets\": \"no_presets\"}", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"", + "library": "{\"__current_case__\": 1, \"aligned_file\": false, \"input_1\": {\"values\": [{\"id\": 137415696, \"src\": \"hda\"}]}, \"input_2\": {\"values\": [{\"id\": 137415697, \"src\": \"hda\"}]}, \"paired_options\": {\"__current_case__\": 1, \"paired_options_selector\": \"no\"}, \"type\": \"paired\", \"unaligned_file\": false}", + "reference_genome": "{\"__current_case__\": 0, \"index\": \"mm10\", \"source\": \"indexed\"}", + "rg": "{\"__current_case__\": 3, \"rg_selector\": \"do_not_set\"}", + "sam_options": "{\"__current_case__\": 1, \"sam_options_selector\": \"no\"}", + "save_mapping_stats": "true" + }, + "state": "ok", + "stderr": "[bam_sort_core] merging from 0 files and 8 in-memory blocks...\n", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "tool_stderr": "[bam_sort_core] merging from 0 files and 8 in-memory blocks...\n", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T14:32:13.080341", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 6, + "output_collections": {}, + "outputs": { + "mapping_stats": { + "id": "4838ba20a6d867656446378f71ad820b", + "src": "hda", + "uuid": "b1360a80-c9bb-4fb9-ac3e-00aac0213e44" + }, + "output": { + "id": "4838ba20a6d86765af291d8ab2af5e96", + "src": "hda", + "uuid": "014de858-c517-4e2a-a491-c14c99491b03" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:32:13.062698", + "workflow_step_id": "de91ab1f4d5a7cd4", + "workflow_step_label": null, + "workflow_step_uuid": "2d04b2e4-a2fe-4ce6-8894-5a752031171b" + }, + "7. Unnamed step": { + "action": null, + "id": "83d212dd0df7f7f8", + "job_id": "11ac94870d0bb33a8145f91d85cf7ba7", + "jobs": [ + { + "command_line": "samtools stats '/data/dnb08/galaxy_db/files/0/1/4/dataset_014de858-c517-4e2a-a491-c14c99491b03.dat' --coverage 1,1000,1 --GC-depth 20000.0 --insert-size 8000 --most-inserts 0.99 --trim-quality 0 --ref-seq '/data/db/reference_genomes/mm10/seq/mm10.fa' > '/data/jwd01/main/060/058/60058039/outputs/galaxy_dataset_9de6afbf-b266-439b-b405-215a8d1d90f4.dat'", + "command_version": "Version: 1.3.1 (using htslib 1.3.1)", + "create_time": "2023-05-19T14:30:12.801865", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__samtools@1.3.1", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "samtools", + "version": "1.3.1" + } + ], + "exit_code": 0, + "external_id": "43534364", + "galaxy_version": "23.0", + "history_id": "2e96b0bf6abd6b74", + "id": "11ac94870d0bb33a8145f91d85cf7ba7", + "inputs": { + "input_file": { + "id": "4838ba20a6d86765af291d8ab2af5e96", + "src": "hda", + "uuid": "014de858-c517-4e2a-a491-c14c99491b03" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c28m475-1207.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c28m475-1207.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684506752.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:32:32" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684506806.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:33:26" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "54.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "54 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "17841669661.0000000", + "title": "CPU Time", + "value": "17.841669661 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "1402118144.0000000", + "title": "Max memory usage (MEM)", + "value": "1.3 GB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "1402118144.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "1.3 GB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d8676528f7337e9709f706", + "src": "hda", + "uuid": "9de6afbf-b266-439b-b405-215a8d1d90f4" + } + }, + "params": { + "__input_ext": "\"bam\"", + "__workflow_invocation_uuid__": "\"9ef558e0f65111eda6f2001e67d2ec02\"", + "chromInfo": "\"/data/db/data_managers/mm10/len/mm10.len\"", + "coverage_max": "\"1000\"", + "coverage_min": "\"1\"", + "coverage_step": "\"1\"", + "dbkey": "\"mm10\"", + "filter_by_flags": "{\"__current_case__\": 1, \"filter_flags\": \"nofilter\"}", + "gc_depth": "\"20000.0\"", + "insert_size": "\"8000\"", + "most_inserts": "\"0.99\"", + "read_length": null, + "remove_dups": "false", + "split_output": "{\"__current_case__\": 0, \"split_output_selector\": \"no\"}", + "trim_quality": "\"0\"", + "use_reference": "{\"__current_case__\": 0, \"reference_source\": {\"__current_case__\": 0, \"ref_file\": \"mm10full\", \"reference_source_selector\": \"cached\"}, \"use_ref_selector\": \"yes\"}" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T14:33:37.050310", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 7, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d8676528f7337e9709f706", + "src": "hda", + "uuid": "9de6afbf-b266-439b-b405-215a8d1d90f4" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:33:36.956022", + "workflow_step_id": "74a208880456b021", + "workflow_step_label": null, + "workflow_step_uuid": "898dd71d-9b58-4286-a6ae-5403cb284341" + }, + "8. Unnamed step": { + "action": null, + "id": "53b676dcfcf6d669", + "job_id": "11ac94870d0bb33a4dcd57b031359dae", + "jobs": [ + { + "command_line": "cp '/data/jwd05e/main/060/058/60058040/configs/tmpr1btgj1_' '/data/jwd05e/main/060/058/60058040/outputs/galaxy_dataset_b3362212-c40a-470a-b0e0-89a4c7bc6d26.dat' && ln -s '/data/dnb08/galaxy_db/files/0/1/4/dataset_014de858-c517-4e2a-a491-c14c99491b03.dat' localbam.bam && ln -s '/data/dnb08/galaxy_db/files/_metadata_files/3/b/6/metadata_3b6f911b-633e-41e4-a35b-86b3615b2257.dat' localbam.bam.bai && cat '/data/jwd05e/main/060/058/60058040/configs/tmpr1btgj1_' && bamtools filter -script '/data/jwd05e/main/060/058/60058040/configs/tmpr1btgj1_' -in localbam.bam -out '/data/jwd05e/main/060/058/60058040/outputs/galaxy_dataset_11b4a85c-d4af-4e9d-9890-63e2517ff346.dat'", + "command_version": null, + "create_time": "2023-05-19T14:30:12.913255", + "dependencies": [], + "exit_code": 0, + "external_id": "43534362", + "galaxy_version": "23.0", + "history_id": "2e96b0bf6abd6b74", + "id": "11ac94870d0bb33a4dcd57b031359dae", + "inputs": { + "input_bam": { + "id": "4838ba20a6d86765af291d8ab2af5e96", + "src": "hda", + "uuid": "014de858-c517-4e2a-a491-c14c99491b03" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m225-7327.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m225-7327.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684506749.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:32:29" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684506773.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:32:53" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "24.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "24 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "13735913869.0000000", + "title": "CPU Time", + "value": "13.735913869 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "218013696.0000000", + "title": "Max memory usage (MEM)", + "value": "207.9 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "218013696.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "207.9 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "out_file1": { + "id": "4838ba20a6d8676586fc63a32e96cd1a", + "src": "hda", + "uuid": "11b4a85c-d4af-4e9d-9890-63e2517ff346" + }, + "out_file2": { + "id": "4838ba20a6d86765332d056e72acf04a", + "src": "hda", + "uuid": "b3362212-c40a-470a-b0e0-89a4c7bc6d26" + } + }, + "params": { + "__input_ext": "\"bam\"", + "__workflow_invocation_uuid__": "\"9ef558e0f65111eda6f2001e67d2ec02\"", + "chromInfo": "\"/data/db/data_managers/mm10/len/mm10.len\"", + "conditions": "[{\"__index__\": 0, \"filters\": [{\"__index__\": 0, \"bam_property\": {\"__current_case__\": 14, \"bam_property_selector\": \"mapQuality\", \"bam_property_value\": \">=20\"}}]}]", + "dbkey": "\"mm10\"", + "rule_configuration": "{\"__current_case__\": 0, \"rules_selector\": false}" + }, + "state": "ok", + "stderr": "", + "stdout": "\n\n\n \n{\n \"filters\": [\n {\n \"id\": \"1\",\n \"mapQuality\": \">=20\"\n }\n ]\n}\n\n ", + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "tool_stderr": "", + "tool_stdout": "\n\n\n \n{\n \"filters\": [\n {\n \"id\": \"1\",\n \"mapQuality\": \">=20\"\n }\n ]\n}\n\n ", + "traceback": null, + "update_time": "2023-05-19T14:32:55.076647", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 8, + "output_collections": {}, + "outputs": { + "out_file1": { + "id": "4838ba20a6d8676586fc63a32e96cd1a", + "src": "hda", + "uuid": "11b4a85c-d4af-4e9d-9890-63e2517ff346" + }, + "out_file2": { + "id": "4838ba20a6d86765332d056e72acf04a", + "src": "hda", + "uuid": "b3362212-c40a-470a-b0e0-89a4c7bc6d26" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:32:55.059256", + "workflow_step_id": "4964c8b8ced0b316", + "workflow_step_label": null, + "workflow_step_uuid": "9fca8663-299c-4a3e-9d21-c3f5b89936c9" + }, + "9. Unnamed step": { + "action": null, + "id": "d10aa175eaaa29cb", + "job_id": "11ac94870d0bb33a4d625b480e3a88e5", + "jobs": [ + { + "command_line": "samtools stats '/data/dnb08/galaxy_db/files/1/1/b/dataset_11b4a85c-d4af-4e9d-9890-63e2517ff346.dat' --coverage 1,1000,1 --GC-depth 20000.0 --insert-size 8000 --most-inserts 0.99 --trim-quality 0 --ref-seq '/data/db/reference_genomes/mm10/seq/mm10.fa' > '/data/jwd05e/main/060/058/60058041/outputs/galaxy_dataset_94cccd62-deee-4ce5-8952-739603b253f7.dat'", + "command_version": "Version: 1.3.1 (using htslib 1.3.1)", + "create_time": "2023-05-19T14:30:13.010837", + "dependencies": [], + "exit_code": 0, + "external_id": "43534369", + "galaxy_version": "23.0", + "history_id": "2e96b0bf6abd6b74", + "id": "11ac94870d0bb33a4d625b480e3a88e5", + "inputs": { + "input_file": { + "id": "4838ba20a6d8676586fc63a32e96cd1a", + "src": "hda", + "uuid": "11b4a85c-d4af-4e9d-9890-63e2517ff346" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c28m475-1207.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c28m475-1207.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684506791.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:33:11" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684506812.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:33:32" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "21.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "21 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "16061028698.0000000", + "title": "CPU Time", + "value": "16.061028698 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "4160749568.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "3.9 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "199102464.0000000", + "title": "Max memory usage (MEM)", + "value": "189.9 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "199102464.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "189.9 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d86765c665b3763e979c0a", + "src": "hda", + "uuid": "94cccd62-deee-4ce5-8952-739603b253f7" + } + }, + "params": { + "__input_ext": "\"bam\"", + "__workflow_invocation_uuid__": "\"9ef558e0f65111eda6f2001e67d2ec02\"", + "chromInfo": "\"/data/db/data_managers/mm10/len/mm10.len\"", + "coverage_max": "\"1000\"", + "coverage_min": "\"1\"", + "coverage_step": "\"1\"", + "dbkey": "\"mm10\"", + "filter_by_flags": "{\"__current_case__\": 1, \"filter_flags\": \"nofilter\"}", + "gc_depth": "\"20000.0\"", + "insert_size": "\"8000\"", + "most_inserts": "\"0.99\"", + "read_length": null, + "remove_dups": "false", + "split_output": "{\"__current_case__\": 0, \"split_output_selector\": \"no\"}", + "trim_quality": "\"0\"", + "use_reference": "{\"__current_case__\": 0, \"reference_source\": {\"__current_case__\": 0, \"ref_file\": \"mm10full\", \"reference_source_selector\": \"cached\"}, \"use_ref_selector\": \"yes\"}" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T14:33:32.811917", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 9, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d86765c665b3763e979c0a", + "src": "hda", + "uuid": "94cccd62-deee-4ce5-8952-739603b253f7" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:33:32.796651", + "workflow_step_id": "d00ffb828650fb93", + "workflow_step_label": null, + "workflow_step_uuid": "cb1e8297-24f1-4553-8111-1a2a48bfc12a" + } + } + }, + "problem_log": "No log for this engine type.", + "start_datetime": "2023-05-19T16:26:39.476426", + "status": "success" + }, + "doc": "Test sample data for Sequence analysis:Mapping", + "has_data": true, + "id": "mapping.ga_0", + "test_type": "galaxy_workflow" + } + ], + "version": "0.1" + } + }, + "tests": true, + "title": "GTN - Sequence Analyses - Mapping (imported from uploaded file)", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-mapping/versions/mapping", + "tutorial_id": "mapping", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/mapping/workflows/mapping.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/mapping/workflows/mapping.html", + "version": 4, + "wfid": "sequence-analysis-mapping", + "wfname": "mapping", + "workflow": "mapping.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bowtie2/bowtie2/2.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9" + ], + "workflowhub_id": "1265" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1324070" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqe", + "owner": "iuc", + "revisions": "89d299153577", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "75c93c70d094", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nanoplot", + "owner": "iuc", + "revisions": "0f1c34698076", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pycoqc", + "owner": "iuc", + "revisions": "fae03f3d4bf7", + "tool_panel_section_label": "Nanopore", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "660cffd8d92a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "44e2cc14f75b", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqe\n owner: iuc\n revisions: 89d299153577\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 75c93c70d094\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nanoplot\n owner: iuc\n revisions: 0f1c34698076\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pycoqc\n owner: iuc\n revisions: fae03f3d4bf7\n tool_panel_section_label: Nanopore\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 660cffd8d92a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 44e2cc14f75b\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/quality-control/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + }, + { + "email": "alexandre.cormier@ifremer.fr", + "id": "alexcorm", + "joined": "2021-11", + "name": "Alexandre Cormier", + "orcid": "0000-0002-7775-8413", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/alexcorm/", + "twitter": "allanssx", + "url": "https://training.galaxyproject.org/training-material/api/contributors/alexcorm.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "email": "laura.leroi@ifremer.fr", + "id": "lleroi", + "joined": "2021-11", + "name": "Laura Leroi", + "orcid": "0000-0003-3748-4179", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lleroi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lleroi.json" + }, + { + "email": "erwan.corre@sb-roscoff.fr", + "id": "r1corre", + "joined": "2019-04", + "name": "Erwan Corre", + "orcid": "0000-0001-6354-2278", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/r1corre/", + "twitter": "r1corre", + "url": "https://training.galaxyproject.org/training-material/api/contributors/r1corre.json" + }, + { + "email": "stephanie.robin@inrae.fr", + "id": "stephanierobin", + "joined": "2021-11", + "name": "St\u00e9phanie Robin", + "orcid": "0000-0001-7379-9173", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/stephanierobin/", + "twitter": "robinstphanie1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/stephanierobin.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "email": "c.hyde@qcif.edu.au", + "id": "neoformit", + "joined": "2022-02", + "name": "Cameron Hyde", + "orcid": "0000-0002-5913-9766", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/neoformit/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/neoformit.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/quality-control", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Box-Whisker plot plotting", + "Sequence composition calculation", + "Read pre-processing", + "Scatter plot plotting", + "Validation", + "Sequence trimming", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "sequence-analysis", + "tutorials": [ + "mapping" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "sequence-analysis/quality-control", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 23197, + "mermaid": false + }, + "key_points": [ + "Perform quality control on every dataset before running any other bioinformatics analysis", + "Assess the quality metrics and improve quality if necessary", + "Check the impact of the quality control", + "Different tools are available to provide additional quality metrics", + "For paired-end reads analyze the forward and reverse reads together" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Assess short reads FASTQ quality using FASTQE \ud83e\uddec\ud83d\ude0e and FastQC", + "Assess long reads FASTQ quality using Nanoplot and PycoQC", + "Perform quality correction with Cutadapt (short reads)", + "Summarise quality metrics MultiQC", + "Process single-end and paired-end data" + ], + "pageviews": 5886178, + "pub_date": "2016-10-04", + "questions": [ + "How to perform quality control of NGS raw data?", + "What are the quality parameters to check for a dataset?", + "How to improve the quality of a dataset?" + ], + "recordings": [ + { + "captioners": [ + "LonsBio" + ], + "date": "2023-05-19", + "length": "50M", + "speakers": [ + "LonsBio" + ], + "youtube_id": "coaMGvZazoc" + }, + { + "captioners": [ + "bebatut", + "nagoue", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H10M", + "speakers": [ + "heylf" + ], + "youtube_id": "QJRlX2hWDKM" + } + ], + "short_id": "T00239", + "short_tools": [ + "nanoplot", + "pycoqc", + "fastqe", + "multiqc", + "fastqc", + "cutadapt" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "ennovytje", + "nagoue", + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "40M", + "speakers": [ + "heylf" + ], + "youtube_id": "BWonTPS4zB8" + } + ], + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "1H30M", + "title": "Quality Control", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastqe/fastqe/0.2.6+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/nanoplot/nanoplot/1.41.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pycoqc/pycoqc/2.5.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/3.4+galaxy2" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "quality-control", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/quality-control/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/quality-control/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/quality-control/tutorial.json" + }, + "version": 41, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 336, + "visitors": 2145817, + "workflows": [ + { + "creators": [], + "description": "Quality Control", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreads_2\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreads_1\"]\n 2[label=\"FastQC\"]\n 0 -> 2 [label=\"output\"]\n k1f4fad7b11e74ec5b73d835080c47e70[color=lightseagreen,label=\"Output\\nreads_2_fastqc\"]\n 2 -> k1f4fad7b11e74ec5b73d835080c47e70\n 3[label=\"Cutadapt\"]\n 1 -> 3 [label=\"output\"]\n k12a1bc96cfdd4ed8b062433833e09aee[color=lightseagreen,label=\"Output\\nreads_1_cutadapt\"]\n 3 -> k12a1bc96cfdd4ed8b062433833e09aee\n 4[label=\"FastQC\"]\n 1 -> 4 [label=\"output\"]\n k12e19f0b102a44709bc8e362bb4e2c91[color=lightseagreen,label=\"Output\\nreads_1_fastqc\"]\n 4 -> k12e19f0b102a44709bc8e362bb4e2c91\n 5[label=\"Cutadapt\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n kb7c138cc10d04bd0b960a3b5e60f29cd[color=lightseagreen,label=\"Output\\nreads_cutadapt\"]\n 5 -> kb7c138cc10d04bd0b960a3b5e60f29cd\n 6[label=\"MultiQC\"]\n 4 -> 6 [label=\"text_file\"]\n 2 -> 6 [label=\"text_file\"]\n kfa7f541db9be4283afa18398d89f345e[color=lightseagreen,label=\"Output\\nmultiqc\"]\n 6 -> kfa7f541db9be4283afa18398d89f345e\n}", + "history": [ + { + "hash": "505f7550f2798d344c73ae11ff158fa77cf90584", + "message": "update-workflows", + "num": 6, + "short_hash": "505f7550f", + "unix": "1618939337" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7b4cb6d1d70496ae6f59dbbc4383d5ec6c16c8ad", + "message": "Replace Trim Galore with Cutadapt", + "num": 3, + "short_hash": "7b4cb6d1d", + "unix": "1537804789" + }, + { + "hash": "2204ebb5ee73708e3ade6ece3b20a34cbe333236", + "message": "Expand the QC tutorial and add workflow testing", + "num": 2, + "short_hash": "2204ebb5e", + "unix": "1536843430" + }, + { + "hash": "3048a0c69fe2aee55827dcadb806c11636496884", + "message": "workflows", + "num": 1, + "short_hash": "3048a0c69", + "unix": "1498583960" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reads_2" + } + ], + "label": "reads_2", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": -144, + "height": 61, + "left": 359, + "right": 559, + "top": -205, + "width": 200, + "x": 359, + "y": -205 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "11e6b420-32a1-431d-8eb4-b707a1e9b2df", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reads_1" + } + ], + "label": "reads_1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": -231, + "height": 61, + "left": 359, + "right": 559, + "top": -292, + "width": 200, + "x": 359, + "y": -292 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3ba96dd1-e62d-4c22-b5b9-92a03e9b0c46", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nreads_2\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nreads_1\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"FastQC\"];\n 0 -->|output| 2;\n 1f4fad7b-11e7-4ec5-b73d-835080c47e70[\"Output\\nreads_2_fastqc\"];\n 2 --> 1f4fad7b-11e7-4ec5-b73d-835080c47e70;\n style 1f4fad7b-11e7-4ec5-b73d-835080c47e70 stroke:#2c3143,stroke-width:4px;\n 3[\"Cutadapt\"];\n 1 -->|output| 3;\n 12a1bc96-cfdd-4ed8-b062-433833e09aee[\"Output\\nreads_1_cutadapt\"];\n 3 --> 12a1bc96-cfdd-4ed8-b062-433833e09aee;\n style 12a1bc96-cfdd-4ed8-b062-433833e09aee stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC\"];\n 1 -->|output| 4;\n 12e19f0b-102a-4470-9bc8-e362bb4e2c91[\"Output\\nreads_1_fastqc\"];\n 4 --> 12e19f0b-102a-4470-9bc8-e362bb4e2c91;\n style 12e19f0b-102a-4470-9bc8-e362bb4e2c91 stroke:#2c3143,stroke-width:4px;\n 5[\"Cutadapt\"];\n 1 -->|output| 5;\n 0 -->|output| 5;\n b7c138cc-10d0-4bd0-b960-a3b5e60f29cd[\"Output\\nreads_cutadapt\"];\n 5 --> b7c138cc-10d0-4bd0-b960-a3b5e60f29cd;\n style b7c138cc-10d0-4bd0-b960-a3b5e60f29cd stroke:#2c3143,stroke-width:4px;\n 6[\"MultiQC\"];\n 4 -->|text_file| 6;\n 2 -->|text_file| 6;\n fa7f541d-b9be-4283-afa1-8398d89f345e[\"Output\\nmultiqc\"];\n 6 --> fa7f541d-b9be-4283-afa1-8398d89f345e;\n style fa7f541d-b9be-4283-afa1-8398d89f345e stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:24 +0000", + "name": "GTN - Sequence Analyses - Quality Control (imported from uploaded file)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "input_file" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": 199, + "height": 272, + "left": 617, + "right": 817, + "top": -73, + "width": 200, + "x": 617, + "y": -73 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "f48fa351-4a73-4daa-b993-2210274ae84d", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "aa19933c-2d76-4fd2-ab45-7a4f0a3baab1" + }, + { + "label": "reads_2_fastqc", + "output_name": "text_file", + "uuid": "1f4fad7b-11e7-4ec5-b73d-835080c47e70" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "errors": null, + "id": 3, + "input_connections": { + "library|input_1": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "bottom": 306, + "height": 162, + "left": 617, + "right": 817, + "top": 144, + "width": 200, + "x": 617, + "y": 144 + }, + "post_job_actions": { + "HideDatasetActionout1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "tool_shed_repository": { + "changeset_revision": "660cffd8d92a", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"error_rate\": \"0.1\", \"no_indels\": \"false\", \"count\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \"false\"}, \"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"20\", \"max\": \"0\", \"no_trim\": \"false\", \"mask_adapter\": \"false\", \"max_n\": null, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\"}, \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.3", + "type": "tool", + "uuid": "ddd70253-72b8-4a5e-8025-56a579b01975", + "workflow_outputs": [ + { + "label": "reads_1_cutadapt", + "output_name": "report", + "uuid": "12a1bc96-cfdd-4ed8-b062-433833e09aee" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "input_file" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": -20, + "height": 272, + "left": 617, + "right": 817, + "top": -292, + "width": 200, + "x": 617, + "y": -292 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"RuntimeValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "026332e1-70ba-4705-b75e-d228fafacc92", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "2b5a1c8d-a6e7-46f3-bf0a-3ccc35102538" + }, + { + "label": "reads_1_fastqc", + "output_name": "text_file", + "uuid": "12e19f0b-102a-4470-9bc8-e362bb4e2c91" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "errors": null, + "id": 5, + "input_connections": { + "library|input_1": { + "id": 1, + "output_name": "output" + }, + "library|input_2": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + }, + { + "name": "out2", + "type": "fastqsanger" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "bottom": 848, + "height": 262, + "left": 617, + "right": 817, + "top": 586, + "width": 200, + "x": 617, + "y": 586 + }, + "post_job_actions": { + "HideDatasetActionout1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out1" + }, + "HideDatasetActionout2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "tool_shed_repository": { + "changeset_revision": "660cffd8d92a", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"error_rate\": \"0.1\", \"no_indels\": \"false\", \"count\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \"false\"}, \"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"20\", \"max\": \"0\", \"no_trim\": \"false\", \"mask_adapter\": \"false\", \"max_n\": null, \"pair_filter\": \"any\"}, \"library\": {\"type\": \"paired\", \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\"}}, \"output_options\": {\"report\": \"true\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\"}, \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.3", + "type": "tool", + "uuid": "5ff1e523-c42b-42cd-8857-84d7d83802f8", + "workflow_outputs": [ + { + "label": "reads_cutadapt", + "output_name": "report", + "uuid": "b7c138cc-10d0-4bd0-b960-a3b5e60f29cd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "results_0|software_cond|output_0|input": [ + { + "id": 4, + "output_name": "text_file" + }, + { + "id": 2, + "output_name": "text_file" + } + ] + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "bottom": -130, + "height": 162, + "left": 945, + "right": 1145, + "top": -292, + "width": 200, + "x": 945, + "y": -292 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "75c93c70d094", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": \"false\", \"flat\": \"false\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"RuntimeValue\"}}]}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "abf34a41-0150-42fc-b56a-a29eb92c24c3", + "workflow_outputs": [ + { + "label": "multiqc", + "output_name": "html_report", + "uuid": "fa7f541d-b9be-4283-afa1-8398d89f345e" + } + ] + } + ], + "parent_id": "sequence-analysis/quality-control", + "path": "topics/sequence-analysis/tutorials/quality-control/workflows/quality_control.ga", + "tags": [ + "sequence-analysis" + ], + "test_results": { + "eu": { + "summary": { + "num_errors": 0, + "num_failures": 0, + "num_skips": 0, + "num_tests": 1 + }, + "tests": [ + { + "data": { + "end_datetime": "2023-05-19T17:08:59.654933", + "inputs": "---\nreads_1:\n class: File\n location: https://zenodo.org/record/61771/files/GSM461178_untreat_paired_subset_1.fastq\nreads_2:\n class: File\n location: https://zenodo.org/record/61771/files/GSM461178_untreat_paired_subset_2.fastq\n", + "invocation_details": { + "details": { + "error_message": "", + "history_id": "2f1f9fa04aab9b59", + "history_state": "ok", + "invocation_id": "1375254bd7688d41", + "invocation_state": "scheduled", + "workflow_id": "8d2820cd545d11e7" + }, + "steps": { + "0. reads_1": { + "action": null, + "id": "09aab9ccfa6260cb", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 0, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d86765ff25d30589db09fe", + "src": "hda", + "uuid": "3835c7cb-1707-4e6f-85d2-6f1ad5c31bc4" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:59:03.317312", + "workflow_step_id": "41e0f8150fe3cff2", + "workflow_step_label": "reads_1", + "workflow_step_uuid": "3ba96dd1-e62d-4c22-b5b9-92a03e9b0c46" + }, + "1. reads_2": { + "action": null, + "id": "53088303de376bb8", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 1, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d867656914ebcc68e736a5", + "src": "hda", + "uuid": "9968668a-3051-4e02-aa3d-4997838a0985" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:59:03.317318", + "workflow_step_id": "ada35db989250a9c", + "workflow_step_label": "reads_2", + "workflow_step_uuid": "11e6b420-32a1-431d-8eb4-b707a1e9b2df" + }, + "2. Unnamed step": { + "action": null, + "id": "d94b4b21ddc3e0c3", + "job_id": "11ac94870d0bb33a2a3328a31b8b1d2e", + "jobs": [ + { + "command_line": "ln -s '/data/dnb08/galaxy_db/files/3/8/3/dataset_3835c7cb-1707-4e6f-85d2-6f1ad5c31bc4.dat' 'GSM461178_untreat_paired_subset_1_fastq' && mkdir -p '/data/jwd01/main/060/059/60059402/working/dataset_a0107efb-9924-481b-99eb-5e7c74c4c697_files' && fastqc --outdir '/data/jwd01/main/060/059/60059402/working/dataset_a0107efb-9924-481b-99eb-5e7c74c4c697_files' --quiet --extract --kmers 7 -f 'fastq' 'GSM461178_untreat_paired_subset_1_fastq' && cp '/data/jwd01/main/060/059/60059402/working/dataset_a0107efb-9924-481b-99eb-5e7c74c4c697_files'/*/fastqc_data.txt output.txt && cp '/data/jwd01/main/060/059/60059402/working/dataset_a0107efb-9924-481b-99eb-5e7c74c4c697_files'/*\\.html output.html", + "command_version": null, + "create_time": "2023-05-19T14:59:03.313089", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__fastqc@0.11.8", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "fastqc", + "version": "0.11.8" + } + ], + "exit_code": 0, + "external_id": "43535387", + "galaxy_version": "23.0", + "history_id": "2f1f9fa04aab9b59", + "id": "11ac94870d0bb33a2a3328a31b8b1d2e", + "inputs": { + "input_file": { + "id": "4838ba20a6d86765ff25d30589db09fe", + "src": "hda", + "uuid": "3835c7cb-1707-4e6f-85d2-6f1ad5c31bc4" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-1589.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-1589.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "8.0000000", + "title": "Cores Allocated", + "value": "8" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "31129.0000000", + "title": "Memory Allocated (MB)", + "value": "31129" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684508692.0000000", + "title": "Job Start Time", + "value": "2023-05-19 17:04:52" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684508707.0000000", + "title": "Job End Time", + "value": "2023-05-19 17:05:07" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "15.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "15 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "12194724984.0000000", + "title": "CPU Time", + "value": "12.194724984 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "32749125632.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "30.5 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "357576704.0000000", + "title": "Max memory usage (MEM)", + "value": "341.0 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "357576704.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "341.0 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "html_file": { + "id": "4838ba20a6d867651957556f6b54741b", + "src": "hda", + "uuid": "a0107efb-9924-481b-99eb-5e7c74c4c697" + }, + "text_file": { + "id": "4838ba20a6d86765967c147adffa4ae2", + "src": "hda", + "uuid": "8aadb0d6-4752-43b3-9a70-b58359fe1659" + } + }, + "params": { + "__input_ext": "\"fastqsanger\"", + "__workflow_invocation_uuid__": "\"a085c588f65511ed82b7001e67d2ec02\"", + "adapters": null, + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "contaminants": null, + "dbkey": "\"?\"", + "kmers": "\"7\"", + "limits": null, + "min_length": null, + "nogroup": "false" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T15:05:09.851510", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 2, + "output_collections": {}, + "outputs": { + "html_file": { + "id": "4838ba20a6d867651957556f6b54741b", + "src": "hda", + "uuid": "a0107efb-9924-481b-99eb-5e7c74c4c697" + }, + "text_file": { + "id": "4838ba20a6d86765967c147adffa4ae2", + "src": "hda", + "uuid": "8aadb0d6-4752-43b3-9a70-b58359fe1659" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T15:05:09.811263", + "workflow_step_id": "4b6834f9ae6537d8", + "workflow_step_label": null, + "workflow_step_uuid": "026332e1-70ba-4705-b75e-d228fafacc92" + }, + "3. Unnamed step": { + "action": null, + "id": "c5c312487856832c", + "job_id": "11ac94870d0bb33a14ad54e496e129b6", + "jobs": [ + { + "command_line": "ln -f -s '/data/dnb08/galaxy_db/files/3/8/3/dataset_3835c7cb-1707-4e6f-85d2-6f1ad5c31bc4.dat' 'GSM461178_untreat_paired_subset_1_fastq.fq' && cutadapt -j ${GALAXY_SLOTS:-1} --output='out1.fq' --error-rate=0.1 --times=1 --overlap=3 --minimum-length=20 --quality-cutoff=20 'GSM461178_untreat_paired_subset_1_fastq.fq' > report.txt", + "command_version": "1.16", + "create_time": "2023-05-19T14:59:03.399654", + "dependencies": [], + "exit_code": 0, + "external_id": "43535389", + "galaxy_version": "23.0", + "history_id": "2f1f9fa04aab9b59", + "id": "11ac94870d0bb33a14ad54e496e129b6", + "inputs": { + "input_1": { + "id": "4838ba20a6d86765ff25d30589db09fe", + "src": "hda", + "uuid": "3835c7cb-1707-4e6f-85d2-6f1ad5c31bc4" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-6547.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-6547.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "5.0000000", + "title": "Cores Allocated", + "value": "5" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "19456.0000000", + "title": "Memory Allocated (MB)", + "value": "19456" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684508382.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:59:42" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684508412.0000000", + "title": "Job End Time", + "value": "2023-05-19 17:00:12" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "30.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "30 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "7314785524.0000000", + "title": "CPU Time", + "value": "7.314785524 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "20401094656.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "19.0 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "251256832.0000000", + "title": "Max memory usage (MEM)", + "value": "239.6 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "251256832.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "239.6 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "out1": { + "id": "4838ba20a6d8676528f2966e438993df", + "src": "hda", + "uuid": "5096388f-425a-42a1-b99e-4f0174665371" + }, + "report": { + "id": "4838ba20a6d8676504b9c2c33c839b66", + "src": "hda", + "uuid": "b9909c1d-09b1-47ec-9135-48915855c294" + } + }, + "params": { + "__input_ext": "\"input\"", + "__workflow_invocation_uuid__": "\"a085c588f65511ed82b7001e67d2ec02\"", + "adapter_options": "{\"count\": \"1\", \"error_rate\": \"0.1\", \"match_read_wildcards\": false, \"no_indels\": false, \"overlap\": \"3\"}", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"", + "filter_options": "{\"discard\": false, \"discard_untrimmed\": false, \"mask_adapter\": false, \"max\": \"0\", \"max_n\": null, \"min\": \"20\", \"no_trim\": false, \"pair_filter\": \"any\"}", + "library": "{\"__current_case__\": 0, \"input_1\": {\"values\": [{\"id\": 137417465, \"src\": \"hda\"}]}, \"r1\": {\"adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\", \"front_adapters\": []}, \"type\": \"single\"}", + "output_options": "{\"info_file\": false, \"report\": true, \"rest_file\": false, \"too_long_file\": false, \"too_short_file\": false, \"untrimmed_file\": false, \"wildcard_file\": false}", + "read_mod_options": "{\"length\": \"0\", \"length_tag\": \"\", \"nextseq_trim\": \"0\", \"prefix\": \"\", \"quality_cutoff\": \"20\", \"strip_suffix\": \"\", \"suffix\": \"\", \"trim_n\": false}" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T15:00:22.417608", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 3, + "output_collections": {}, + "outputs": { + "out1": { + "id": "4838ba20a6d8676528f2966e438993df", + "src": "hda", + "uuid": "5096388f-425a-42a1-b99e-4f0174665371" + }, + "report": { + "id": "4838ba20a6d8676504b9c2c33c839b66", + "src": "hda", + "uuid": "b9909c1d-09b1-47ec-9135-48915855c294" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T15:00:21.982154", + "workflow_step_id": "17cb0d9cde915ee1", + "workflow_step_label": null, + "workflow_step_uuid": "ddd70253-72b8-4a5e-8025-56a579b01975" + }, + "4. Unnamed step": { + "action": null, + "id": "a380f2e9cccfcc65", + "job_id": "11ac94870d0bb33aae939aa0a3d41382", + "jobs": [ + { + "command_line": "ln -s '/data/dnb08/galaxy_db/files/9/9/6/dataset_9968668a-3051-4e02-aa3d-4997838a0985.dat' 'GSM461178_untreat_paired_subset_2_fastq' && mkdir -p '/data/jwd05e/main/060/059/60059404/working/dataset_3bc9888e-ec3f-4ae0-b61c-db19dec8e43e_files' && fastqc --outdir '/data/jwd05e/main/060/059/60059404/working/dataset_3bc9888e-ec3f-4ae0-b61c-db19dec8e43e_files' --quiet --extract --kmers 7 -f 'fastq' 'GSM461178_untreat_paired_subset_2_fastq' && cp '/data/jwd05e/main/060/059/60059404/working/dataset_3bc9888e-ec3f-4ae0-b61c-db19dec8e43e_files'/*/fastqc_data.txt output.txt && cp '/data/jwd05e/main/060/059/60059404/working/dataset_3bc9888e-ec3f-4ae0-b61c-db19dec8e43e_files'/*\\.html output.html", + "command_version": null, + "create_time": "2023-05-19T14:59:03.488111", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__fastqc@0.11.8", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "fastqc", + "version": "0.11.8" + } + ], + "exit_code": 0, + "external_id": "43535386", + "galaxy_version": "23.0", + "history_id": "2f1f9fa04aab9b59", + "id": "11ac94870d0bb33aae939aa0a3d41382", + "inputs": { + "input_file": { + "id": "4838ba20a6d867656914ebcc68e736a5", + "src": "hda", + "uuid": "9968668a-3051-4e02-aa3d-4997838a0985" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-1589.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-1589.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "8.0000000", + "title": "Cores Allocated", + "value": "8" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "31129.0000000", + "title": "Memory Allocated (MB)", + "value": "31129" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684508676.0000000", + "title": "Job Start Time", + "value": "2023-05-19 17:04:36" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684508692.0000000", + "title": "Job End Time", + "value": "2023-05-19 17:04:52" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "16.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "16 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "13539752576.0000000", + "title": "CPU Time", + "value": "13.539752576 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "32749125632.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "30.5 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "411770880.0000000", + "title": "Max memory usage (MEM)", + "value": "392.7 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "411770880.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "392.7 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "html_file": { + "id": "4838ba20a6d867650e70120b79b974b3", + "src": "hda", + "uuid": "3bc9888e-ec3f-4ae0-b61c-db19dec8e43e" + }, + "text_file": { + "id": "4838ba20a6d867656a6422c26474bdc5", + "src": "hda", + "uuid": "edecc2ea-fa52-4947-9c41-f5956870688a" + } + }, + "params": { + "__input_ext": "\"fastqsanger\"", + "__workflow_invocation_uuid__": "\"a085c588f65511ed82b7001e67d2ec02\"", + "adapters": null, + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "contaminants": null, + "dbkey": "\"?\"", + "kmers": "\"7\"", + "limits": null, + "min_length": null, + "nogroup": "false" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T15:04:54.529461", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 4, + "output_collections": {}, + "outputs": { + "html_file": { + "id": "4838ba20a6d867650e70120b79b974b3", + "src": "hda", + "uuid": "3bc9888e-ec3f-4ae0-b61c-db19dec8e43e" + }, + "text_file": { + "id": "4838ba20a6d867656a6422c26474bdc5", + "src": "hda", + "uuid": "edecc2ea-fa52-4947-9c41-f5956870688a" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T15:04:54.499181", + "workflow_step_id": "fc590094641a1ae9", + "workflow_step_label": null, + "workflow_step_uuid": "f48fa351-4a73-4daa-b993-2210274ae84d" + }, + "5. Unnamed step": { + "action": null, + "id": "6a0711aa69933475", + "job_id": "11ac94870d0bb33abd6fe235967051f6", + "jobs": [ + { + "command_line": "ln -f -s '/data/dnb08/galaxy_db/files/3/8/3/dataset_3835c7cb-1707-4e6f-85d2-6f1ad5c31bc4.dat' 'GSM461178_untreat_paired_subset_1_fastq.fq' && ln -f -s '/data/dnb08/galaxy_db/files/9/9/6/dataset_9968668a-3051-4e02-aa3d-4997838a0985.dat' 'GSM461178_untreat_paired_subset_2_fastq.fq' && cutadapt -j ${GALAXY_SLOTS:-1} --output='out1.fq' --paired-output='out2.fq' --error-rate=0.1 --times=1 --overlap=3 --minimum-length=20 --pair-filter=any --quality-cutoff=20 'GSM461178_untreat_paired_subset_1_fastq.fq' 'GSM461178_untreat_paired_subset_2_fastq.fq' > report.txt", + "command_version": "1.16", + "create_time": "2023-05-19T14:59:03.590819", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__cutadapt@1.16", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "cutadapt", + "version": "1.16" + } + ], + "exit_code": 0, + "external_id": "43535388", + "galaxy_version": "23.0", + "history_id": "2f1f9fa04aab9b59", + "id": "11ac94870d0bb33abd6fe235967051f6", + "inputs": { + "input_1": { + "id": "4838ba20a6d86765ff25d30589db09fe", + "src": "hda", + "uuid": "3835c7cb-1707-4e6f-85d2-6f1ad5c31bc4" + }, + "input_2": { + "id": "4838ba20a6d867656914ebcc68e736a5", + "src": "hda", + "uuid": "9968668a-3051-4e02-aa3d-4997838a0985" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-6547.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-6547.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "5.0000000", + "title": "Cores Allocated", + "value": "5" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "19456.0000000", + "title": "Memory Allocated (MB)", + "value": "19456" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684508356.0000000", + "title": "Job Start Time", + "value": "2023-05-19 16:59:16" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684508381.0000000", + "title": "Job End Time", + "value": "2023-05-19 16:59:41" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "25.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "25 seconds" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "8873728303.0000000", + "title": "CPU Time", + "value": "8.873728303 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "20401094656.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "19.0 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "362237952.0000000", + "title": "Max memory usage (MEM)", + "value": "345.5 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "362237952.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "345.5 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "out1": { + "id": "4838ba20a6d867658b181ea162b2bff2", + "src": "hda", + "uuid": "5647f1a7-5cfe-4e7e-8a12-733901cbbc2f" + }, + "out2": { + "id": "4838ba20a6d8676511267a23c1bb707d", + "src": "hda", + "uuid": "7936d330-0e1e-43d9-abc8-e01e2e8ce871" + }, + "report": { + "id": "4838ba20a6d86765b7823a727e8a67cd", + "src": "hda", + "uuid": "d3748a3d-cb92-4c98-a590-d687c708ddc8" + } + }, + "params": { + "__input_ext": "\"input\"", + "__workflow_invocation_uuid__": "\"a085c588f65511ed82b7001e67d2ec02\"", + "adapter_options": "{\"count\": \"1\", \"error_rate\": \"0.1\", \"match_read_wildcards\": false, \"no_indels\": false, \"overlap\": \"3\"}", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"", + "filter_options": "{\"discard\": false, \"discard_untrimmed\": false, \"mask_adapter\": false, \"max\": \"0\", \"max_n\": null, \"min\": \"20\", \"no_trim\": false, \"pair_filter\": \"any\"}", + "library": "{\"__current_case__\": 1, \"input_1\": {\"values\": [{\"id\": 137417465, \"src\": \"hda\"}]}, \"input_2\": {\"values\": [{\"id\": 137417509, \"src\": \"hda\"}]}, \"r1\": {\"adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\", \"front_adapters\": []}, \"r2\": {\"adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\", \"front_adapters2\": []}, \"type\": \"paired\"}", + "output_options": "{\"info_file\": false, \"report\": true, \"rest_file\": false, \"too_long_file\": false, \"too_short_file\": false, \"untrimmed_file\": false, \"wildcard_file\": false}", + "read_mod_options": "{\"length\": \"0\", \"length_tag\": \"\", \"nextseq_trim\": \"0\", \"prefix\": \"\", \"quality_cutoff\": \"20\", \"strip_suffix\": \"\", \"suffix\": \"\", \"trim_n\": false}" + }, + "state": "ok", + "stderr": "", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "tool_stderr": "", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T14:59:42.633522", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 5, + "output_collections": {}, + "outputs": { + "out1": { + "id": "4838ba20a6d867658b181ea162b2bff2", + "src": "hda", + "uuid": "5647f1a7-5cfe-4e7e-8a12-733901cbbc2f" + }, + "out2": { + "id": "4838ba20a6d8676511267a23c1bb707d", + "src": "hda", + "uuid": "7936d330-0e1e-43d9-abc8-e01e2e8ce871" + }, + "report": { + "id": "4838ba20a6d86765b7823a727e8a67cd", + "src": "hda", + "uuid": "d3748a3d-cb92-4c98-a590-d687c708ddc8" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T14:59:42.614406", + "workflow_step_id": "1c99f44f251d0c5a", + "workflow_step_label": null, + "workflow_step_uuid": "5ff1e523-c42b-42cd-8857-84d7d83802f8" + }, + "6. Unnamed step": { + "action": null, + "id": "c0e9eb97be074ab9", + "job_id": "11ac94870d0bb33a3e4f5384f33fb7c3", + "jobs": [ + { + "command_line": "die() { echo \"$@\" 1>&2 ; exit 1; } && mkdir multiqc_WDir && mkdir multiqc_WDir/fastqc_0 && mkdir 'multiqc_WDir/fastqc_0/data_0' && mkdir 'multiqc_WDir/fastqc_0/data_0/file_0' && ln -s '/data/dnb08/galaxy_db/files/8/a/a/dataset_8aadb0d6-4752-43b3-9a70-b58359fe1659.dat' 'multiqc_WDir/fastqc_0/data_0/file_0/fastqc_data.txt' && mkdir 'multiqc_WDir/fastqc_0/data_0/file_1' && ln -s '/data/dnb08/galaxy_db/files/e/d/e/dataset_edecc2ea-fa52-4947-9c41-f5956870688a.dat' 'multiqc_WDir/fastqc_0/data_0/file_1/fastqc_data.txt' && multiqc multiqc_WDir --filename \"report\"", + "command_version": null, + "create_time": "2023-05-19T14:59:03.693709", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/__multiqc@1.9", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "multiqc", + "version": "1.9" + } + ], + "exit_code": 0, + "external_id": "43535462", + "galaxy_version": "23.0", + "history_id": "2f1f9fa04aab9b59", + "id": "11ac94870d0bb33a3e4f5384f33fb7c3", + "inputs": { + "results_0|software_cond|output_0|input": { + "id": "4838ba20a6d86765967c147adffa4ae2", + "src": "hda", + "uuid": "8aadb0d6-4752-43b3-9a70-b58359fe1659" + }, + "results_0|software_cond|output_0|input1": { + "id": "4838ba20a6d86765967c147adffa4ae2", + "src": "hda", + "uuid": "8aadb0d6-4752-43b3-9a70-b58359fe1659" + }, + "results_0|software_cond|output_0|input2": { + "id": "4838ba20a6d867656a6422c26474bdc5", + "src": "hda", + "uuid": "edecc2ea-fa52-4947-9c41-f5956870688a" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c36m225-7634.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c36m225-7634.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "11673.0000000", + "title": "Memory Allocated (MB)", + "value": "11673" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684508719.0000000", + "title": "Job Start Time", + "value": "2023-05-19 17:05:19" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684508927.0000000", + "title": "Job End Time", + "value": "2023-05-19 17:08:47" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "208.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "3 minutes" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "15451533789.0000000", + "title": "CPU Time", + "value": "15.451533789 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "12348030976.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "11.5 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "243441664.0000000", + "title": "Max memory usage (MEM)", + "value": "232.2 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "243441664.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "232.2 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": { + "stats": { + "id": "b2ed5bced30ea70a", + "src": "hdca" + } + }, + "outputs": { + "__new_primary_file_stats|fastqc__": { + "id": "4838ba20a6d8676552151abe856ca468", + "src": "hda", + "uuid": "a0afcc44-22b6-4019-938e-4c8b313de6ea" + }, + "__new_primary_file_stats|general_stats__": { + "id": "4838ba20a6d867656f4643c70fbd40cc", + "src": "hda", + "uuid": "d41e3789-24ea-4080-868b-0edab34c49a6" + }, + "__new_primary_file_stats|sources__": { + "id": "4838ba20a6d8676518ad2e8586cc7f6b", + "src": "hda", + "uuid": "b697c224-e6d6-4f53-a3df-16fe5ca4444c" + }, + "html_report": { + "id": "4838ba20a6d867657c9b5bfe8c22949d", + "src": "hda", + "uuid": "a42df514-e2c2-4f72-a9b8-e065ef58237f" + } + }, + "params": { + "__input_ext": "\"txt\"", + "__workflow_invocation_uuid__": "\"a085c588f65511ed82b7001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "comment": "\"\"", + "dbkey": "\"?\"", + "export": "false", + "flat": "false", + "results": "[{\"__index__\": 0, \"software_cond\": {\"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"input\": {\"values\": [{\"id\": 137417582, \"src\": \"hda\"}, {\"id\": 137417586, \"src\": \"hda\"}]}, \"type\": \"data\"}], \"software\": \"fastqc\"}}]", + "saveLog": "false", + "title": "\"\"" + }, + "state": "ok", + "stderr": "[WARNING] multiqc : MultiQC Version v1.14 now available!\n[INFO ] multiqc : This is MultiQC v1.9\n[INFO ] multiqc : Template : default\n[INFO ] multiqc : Searching : /data/jwd05e/main/060/059/60059406/working/multiqc_WDir\n[INFO ] fastqc : Found 2 reports\n[INFO ] multiqc : Compressing plot data\n[INFO ] multiqc : Report : report.html\n[INFO ] multiqc : Data : report_data\n[INFO ] multiqc : MultiQC complete\n", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "tool_stderr": "[WARNING] multiqc : MultiQC Version v1.14 now available!\n[INFO ] multiqc : This is MultiQC v1.9\n[INFO ] multiqc : Template : default\n[INFO ] multiqc : Searching : /data/jwd05e/main/060/059/60059406/working/multiqc_WDir\n[INFO ] fastqc : Found 2 reports\n[INFO ] multiqc : Compressing plot data\n[INFO ] multiqc : Report : report.html\n[INFO ] multiqc : Data : report_data\n[INFO ] multiqc : MultiQC complete\n", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-19T15:08:50.825299", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 6, + "output_collections": { + "stats": { + "id": "b2ed5bced30ea70a", + "src": "hdca" + } + }, + "outputs": { + "html_report": { + "id": "4838ba20a6d867657c9b5bfe8c22949d", + "src": "hda", + "uuid": "a42df514-e2c2-4f72-a9b8-e065ef58237f" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-19T15:08:50.808688", + "workflow_step_id": "40e61d72c5cedf2a", + "workflow_step_label": null, + "workflow_step_uuid": "abf34a41-0150-42fc-b56a-a29eb92c24c3" + } + } + }, + "problem_log": "No log for this engine type.", + "start_datetime": "2023-05-19T16:55:58.620842", + "status": "success" + }, + "doc": "Test sample data for Sequence-analyses:Quality-control", + "has_data": true, + "id": "quality_control.ga_0", + "test_type": "galaxy_workflow" + } + ], + "version": "0.1" + } + }, + "tests": true, + "title": "GTN - Sequence Analyses - Quality Control (imported from uploaded file)", + "topic_id": "sequence-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/sequence-analysis-quality-control/versions/quality-control", + "tutorial_id": "quality-control", + "url": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/quality-control/workflows/quality_control.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/sequence-analysis/tutorials/quality-control/workflows/quality_control.html", + "version": 5, + "wfid": "sequence-analysis-quality-control", + "wfname": "quality-control", + "workflow": "quality_control.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3" + ], + "workflowhub_id": "1282" + } + ], + "zenodo_link": "https://zenodo.org/records/61771" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "diamond", + "owner": "bgruening", + "revisions": "e8ac2b53f262", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "0e3cf9594bb7", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ncbi_blast_plus", + "owner": "devteam", + "revisions": "0e3cf9594bb7", + "tool_panel_section_label": "NCBI Blast", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: diamond\n owner: bgruening\n revisions: e8ac2b53f262\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 0e3cf9594bb7\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ncbi_blast_plus\n owner: devteam\n revisions: 0e3cf9594bb7\n tool_panel_section_label: NCBI Blast\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland/tutorial.json", + "contributions": { + "authorship": [ + "deeptivarshney" + ], + "funding": [ + "madland", + "nfdi4plants" + ] + }, + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "deeptivarshney", + "joined": "2022-12", + "name": "Deepti Varshney", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/deeptivarshney/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/deeptivarshney.json" + }, + { + "avatar": "/training-material/shared/images/logo-madland.jpg", + "funder": true, + "github": false, + "id": "madland", + "joined": "2024-07", + "name": "MAdLand", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/madland/", + "url": "https://training.galaxyproject.org/training-material/api/funders/madland.json" + }, + { + "avatar": "/training-material/shared/images/logo-dataplant.svg", + "funder": true, + "id": "nfdi4plants", + "joined": "2024-07", + "name": "DataPLANT", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nfdi4plants/", + "url": "https://training.galaxyproject.org/training-material/api/funders/nfdi4plants.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland", + "edam_operation": [ + "Sequence alignment analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/ncbi-blast-against-the-madland", + "inexact_supported_servers": [ + "Center for Phage Technology (CPT)", + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Blast tool searches a database of sequences for similar sequences to a query sequence.", + "Diamond quickly aligns large-scale data sets using a compressed version of the reference sequences called a \"database diamond\".", + "MAdLand is a database of fully sequenced plant and algal genomes, with an emphasis on non-seed plants and streptophyte algae that can be use for sequence similarity search." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-31", + "objectives": [ + "Load FASTA sequence into Galaxy", + "Perform NCBI-Blast+ analysis against MAdLandDB" + ], + "pageviews": 1348, + "pub_date": "2023-01-16", + "questions": [ + "What is MAdLand DB?", + "How can we perform Blast analysis on Galaxy?" + ], + "short_id": "T00238", + "short_tools": [ + "ncbi_blastx_wrapper", + "ncbi_blastp_wrapper", + "bg_diamond" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Center for Phage Technology (CPT)", + "url": "https://cpt.tamu.edu/galaxy-public/", + "usegalaxy": false + }, + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "plants" + ], + "time_estimation": "15m", + "title": "NCBI BLAST+ against the MAdLand", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/diamond/bg_diamond/2.0.15+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastp_wrapper/2.10.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/devteam/ncbi_blast_plus/ncbi_blastx_wrapper/2.10.1+galaxy2" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ncbi-blast-against-the-madland", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/ncbi-blast-against-the-madland/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 166, + "visitors": 1042, + "zenodo_link": "https://zenodo.org/records/7524427" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "17359b808b01", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: 17359b808b01\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json", + "contributions": { + "authorship": [ + "nakucher", + "avahoffman", + "robertmeller" + ], + "editing": [ + "katherinecox", + "cutsort", + "nakucher" + ], + "funding": [ + "nhgri-gdscn", + "nhgri-anvil" + ], + "infrastructure": [ + "cansavvy", + "avahoffman", + "katherinecox", + "ehumph", + "cutsort" + ] + }, + "contributors": [ + { + "email": "nkucher3@jhu.edu", + "id": "nakucher", + "joined": "2023-06", + "name": "Natalie Kucher", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nakucher/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nakucher.json" + }, + { + "id": "avahoffman", + "joined": "2023-06", + "name": "Ava Hoffman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avahoffman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/avahoffman.json" + }, + { + "id": "robertmeller", + "joined": "2023-06", + "name": "Robert Meller", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/robertmeller/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/robertmeller.json" + }, + { + "id": "katherinecox", + "joined": "2023-06", + "name": "Katherine Cox", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherinecox/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherinecox.json" + }, + { + "id": "cutsort", + "joined": "2023-06", + "name": "Frederick Tan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cutsort/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cutsort.json" + }, + { + "email": "nkucher3@jhu.edu", + "id": "nakucher", + "joined": "2023-06", + "name": "Natalie Kucher", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nakucher/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nakucher.json" + }, + { + "id": "cansavvy", + "joined": "2023-06", + "name": "Candace Savonen", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cansavvy/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cansavvy.json" + }, + { + "id": "avahoffman", + "joined": "2023-06", + "name": "Ava Hoffman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/avahoffman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/avahoffman.json" + }, + { + "id": "katherinecox", + "joined": "2023-06", + "name": "Katherine Cox", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/katherinecox/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/katherinecox.json" + }, + { + "id": "ehumph", + "joined": "2023-06", + "name": "Elizabeth Humphries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ehumph/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ehumph.json" + }, + { + "id": "cutsort", + "joined": "2023-06", + "name": "Frederick Tan", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cutsort/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cutsort.json" + }, + { + "avatar": "https://www.ashg.org/wp-content/uploads/2021/07/nhgri-logo-800x167-1.png", + "funder": true, + "funding_id": "75N92022P00232", + "github": false, + "id": "nhgri-gdscn", + "joined": "2023-06", + "name": "National Human Genome Research Institute Genomic Data Science Community Network", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nhgri-gdscn/", + "short_name": "NHGRI GDS Community Network", + "url": "https://training.galaxyproject.org/training-material/api/funders/nhgri-gdscn.json" + }, + { + "avatar": "https://www.ashg.org/wp-content/uploads/2021/07/nhgri-logo-800x167-1.png", + "funder": true, + "funding_id": "U24HG010263", + "github": false, + "id": "nhgri-anvil", + "joined": "2023-06", + "name": "National Human Genome Research Institute Genomic Data Science Analysis, Visualization, and Informatics Lab-Space", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nhgri-anvil/", + "short_name": "NHGRI ANVIL", + "url": "https://training.galaxyproject.org/training-material/api/funders/nhgri-anvil.json" + } + ], + "dir": "topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil", + "edam_operation": [ + "Sequencing quality control", + "Generation", + "Read mapping", + "Genome visualisation", + "Genome indexing", + "Sequence alignment", + "Sequence composition calculation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "sequence-analysis/sars-with-galaxy-on-anvil", + "inexact_supported_servers": [ + "Galaxy@AuBi", + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Use Galaxy on the AnVIL cloud computing resource to check data, perform an alignment, and visualize the results." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Gather and evaluate experimental evidence, including qualitative and quantitative data", + "Generate and interpret graphs displaying experimental results", + "Critique large data sets and use bioinformatics to assess genetics data", + "Tap into the interdisciplinary nature of science" + ], + "pageviews": 899, + "pub_date": "2023-07-10", + "questions": [ + "How do I check my data quality?", + "How do I put together my dataset of fragmented sequences into a full sequence?", + "How do I visually explore the variants in my SARS-CoV-2 sample?" + ], + "short_id": "T00356", + "short_tools": [ + "fastqc", + "bwa_mem", + "jbrowse" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "covid19", + "gmod", + "jbrowse1" + ], + "time_estimation": "1H", + "title": "SARS-CoV-2 Viral Sample Alignment and Variant Visualization", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0" + ], + "topic_name": "sequence-analysis", + "topic_name_human": "Sequence analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-with-galaxy-on-anvil", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/sequence-analysis/tutorials/sars-with-galaxy-on-anvil/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 283, + "visitors": 691, + "zenodo_link": "https://doi.org/10.5281/zenodo.8115178" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "music_construct_eset", + "owner": "bgruening", + "revisions": "2cfd0db49bbc", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "music_construct_eset", + "owner": "bgruening", + "revisions": "7ffaa0968da3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "music_deconvolution", + "owner": "bgruening", + "revisions": "56371b5a2da9", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "music_inspect_eset", + "owner": "bgruening", + "revisions": "8c64a2da3869", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: music_construct_eset\n owner: bgruening\n revisions: 2cfd0db49bbc\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: music_construct_eset\n owner: bgruening\n revisions: 7ffaa0968da3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: music_deconvolution\n owner: bgruening\n revisions: 56371b5a2da9\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: music_inspect_eset\n owner: bgruening\n revisions: 8c64a2da3869\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + } + ], + "dir": "topics/single-cell/tutorials/bulk-music", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "bulk-music-2-preparescref" + ], + "type": "internal" + } + ], + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/bulk-music", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Deconvolution tools show individual cell type proportions in bulk RNA-seq data", + "Bulk RNA-seq can be complimented by scRNA-seq data" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Construct Bulk and scRNA Expression Set Objects", + "Inspect these objects for various properties", + "Measure the abundance of certain cell type cluster markers compared to others" + ], + "pageviews": 3553, + "priority": 1, + "pub_date": "2022-02-11", + "questions": [ + "How do we infer cell type proportions from bulk RNA-seq data?", + "How are these cell types grouped together?" + ], + "recordings": [ + { + "captioners": [ + "mtekman", + "nomadscientist" + ], + "date": "2021-03-08", + "galaxy_version": "21.09", + "length": "20M", + "speakers": [ + "nomadscientist" + ], + "youtube_id": "nfAUXP3W-jM" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/bulk-music/tutorial", + "/short/single-cell/bulk-music", + "/short/T00240" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-intro" + ], + "type": "internal" + } + ], + "short_id": "T00240", + "short_tools": [ + "music_construct_eset", + "music_inspect_eset", + "music_deconvolution" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "deconvo", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "transcriptomics" + ], + "time_estimation": "2h", + "title": "Bulk RNA Deconvolution with MuSiC", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_deconvolution/music_deconvolution/0.1.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_inspect_eset/music_inspect_eset/0.1.1+galaxy3" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bulk-music", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/bulk-music/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 98, + "visitors": 2774, + "workflows": [ + { + "creators": [], + "description": "Bulk RNA Deconvolution with MuSiC", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nscRNA Assay Tabular\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nscRNA Phenotype Tabular\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nscRNA Metadata\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBulk RNA Assay Tabular\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nBulk RNA Annotation\"]\n 5[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nCell Types List\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCell Markers C1\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCell Markers C2\"]\n 8[label=\"Construct scRNA ESet Object\"]\n 0 -> 8 [label=\"output\"]\n 2 -> 8 [label=\"output\"]\n 1 -> 8 [label=\"output\"]\n k872b3dd2322c47ccb5b9071a9f939320[color=lightseagreen,label=\"Output\\nConstruct Expression Set Object on input dataset(s): RData ESet Object\"]\n 8 -> k872b3dd2322c47ccb5b9071a9f939320\n 9[label=\"Construct Bulk RNA ESet Object\"]\n 4 -> 9 [label=\"output\"]\n 3 -> 9 [label=\"output\"]\n 10[label=\"Extract Cell Types\"]\n 8 -> 10 [label=\"out_rds\"]\n 11[label=\"Extract General Info\"]\n 8 -> 11 [label=\"out_rds\"]\n k1733593f847d4adb91f4fd78c077b074[color=lightseagreen,label=\"Output\\nInspect Expression Set Object on input dataset(s): Inspection Result\"]\n 11 -> k1733593f847d4adb91f4fd78c077b074\n 12[label=\"Extract General Info Bulk\"]\n 9 -> 12 [label=\"out_rds\"]\n 13[label=\"Music: Estimate Cell Proportions\"]\n 9 -> 13 [label=\"out_rds\"]\n 5 -> 13 [label=\"output\"]\n 8 -> 13 [label=\"out_rds\"]\n 14[label=\"Music: Compute Dendrogram\"]\n 9 -> 14 [label=\"out_rds\"]\n 6 -> 14 [label=\"output\"]\n 7 -> 14 [label=\"output\"]\n 8 -> 14 [label=\"out_rds\"]\n kdf2e83a5ac67460f8b0fac3f3b63280f[color=lightseagreen,label=\"Output\\nMuSiC on input dataset(s): PDF Plots\"]\n 14 -> kdf2e83a5ac67460f8b0fac3f3b63280f\n}", + "history": [ + { + "hash": "e2453dfb588ab6bdcb28a0991c6800683e9947fe", + "message": "use full tool ID", + "num": 2, + "short_hash": "e2453dfb5", + "unix": "1684159247" + }, + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "scRNA Assay Tabular" + } + ], + "label": "scRNA Assay Tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 234.6999969482422, + "height": 82.19999694824219, + "left": 360, + "right": 560, + "top": 152.5, + "width": 200, + "x": 360, + "y": 152.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0d219185-0933-4459-ade3-30f96b00511d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c67225bf-f947-45ed-ae5b-5c9367ef8cab" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "scRNA Phenotype Tabular" + } + ], + "label": "scRNA Phenotype Tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 338.1999969482422, + "height": 82.19999694824219, + "left": 359, + "right": 559, + "top": 256, + "width": 200, + "x": 359, + "y": 256 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9ca6d554-decc-4b57-b6f4-723a60e5a0cc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "59f0e53a-13ee-4ab6-8cdf-40482dfc0f75" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "scRNA Metadata" + } + ], + "label": "scRNA Metadata", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 424.8000030517578, + "height": 61.80000305175781, + "left": 357, + "right": 557, + "top": 363, + "width": 200, + "x": 357, + "y": 363 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "4efc5ad2-5000-4b60-92e8-df022c6f8a7f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f45df54a-4591-49bb-91be-06a497ceb14d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Bulk RNA Assay Tabular" + } + ], + "label": "Bulk RNA Assay Tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 544.1999969482422, + "height": 82.19999694824219, + "left": 358, + "right": 558, + "top": 462, + "width": 200, + "x": 358, + "y": 462 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "809894bc-62b0-43a8-af73-d19c359b2e4e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4a8ebd19-87c9-4b3d-89ad-26316b1460f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Bulk RNA Annotation" + } + ], + "label": "Bulk RNA Annotation", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 645.1999969482422, + "height": 82.19999694824219, + "left": 358, + "right": 558, + "top": 563, + "width": 200, + "x": 358, + "y": 563 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "1c008bcf-8ea8-4f48-89ec-623190301fc9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5663f93d-b38f-4f7c-9ed2-7aa5a5e0273e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cell Types List" + } + ], + "label": "Cell Types List", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 314.3000030517578, + "height": 61.80000305175781, + "left": 928, + "right": 1128, + "top": 252.5, + "width": 200, + "x": 928, + "y": 252.5 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "f98985a7-458a-4b2f-a924-8ca4ecdaa037", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6440740d-b72c-422b-a46c-d3de32c25076" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cell Markers C1" + } + ], + "label": "Cell Markers C1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 388.3000030517578, + "height": 61.80000305175781, + "left": 927, + "right": 1127, + "top": 326.5, + "width": 200, + "x": 927, + "y": 326.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d2940a2a-808b-43ec-9ed7-59a8915b4fbd", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b87c6860-8b9d-4412-8aa7-506ea09bfc16" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cell Markers C2" + } + ], + "label": "Cell Markers C2", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 459.3000030517578, + "height": 61.80000305175781, + "left": 932, + "right": 1132, + "top": 397.5, + "width": 200, + "x": 932, + "y": 397.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b13d3354-a633-4eeb-8edf-4f14c4209240", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3f07162a-d2f4-411e-a276-6437c7149ecc" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nscRNA Assay Tabular\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nscRNA Phenotype Tabular\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nscRNA Metadata\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nBulk RNA Assay Tabular\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nBulk RNA Annotation\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Parameter\\nCell Types List\"];\n style 5 fill:#ded,stroke:#393,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nCell Markers C1\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nCell Markers C2\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"Construct scRNA ESet Object\"];\n 0 -->|output| 8;\n 2 -->|output| 8;\n 1 -->|output| 8;\n 872b3dd2-322c-47cc-b5b9-071a9f939320[\"Output\\nConstruct Expression Set Object on input dataset(s): RData ESet Object\"];\n 8 --> 872b3dd2-322c-47cc-b5b9-071a9f939320;\n style 872b3dd2-322c-47cc-b5b9-071a9f939320 stroke:#2c3143,stroke-width:4px;\n 9[\"Construct Bulk RNA ESet Object\"];\n 4 -->|output| 9;\n 3 -->|output| 9;\n 10[\"Extract Cell Types\"];\n 8 -->|out_rds| 10;\n 11[\"Extract General Info\"];\n 8 -->|out_rds| 11;\n 1733593f-847d-4adb-91f4-fd78c077b074[\"Output\\nInspect Expression Set Object on input dataset(s): Inspection Result\"];\n 11 --> 1733593f-847d-4adb-91f4-fd78c077b074;\n style 1733593f-847d-4adb-91f4-fd78c077b074 stroke:#2c3143,stroke-width:4px;\n 12[\"Extract General Info Bulk\"];\n 9 -->|out_rds| 12;\n 13[\"Music: Estimate Cell Proportions\"];\n 9 -->|out_rds| 13;\n 5 -->|output| 13;\n 8 -->|out_rds| 13;\n 14[\"Music: Compute Dendrogram\"];\n 9 -->|out_rds| 14;\n 6 -->|output| 14;\n 7 -->|output| 14;\n 8 -->|out_rds| 14;\n df2e83a5-ac67-460f-8b0f-ac3f3b63280f[\"Output\\nMuSiC on input dataset(s): PDF Plots\"];\n 14 --> df2e83a5-ac67-460f-8b0f-ac3f3b63280f;\n style df2e83a5-ac67-460f-8b0f-ac3f3b63280f stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "MuSiC Workflow", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "scRNA Assay Tabular" + } + ], + "label": "scRNA Assay Tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 234.6999969482422, + "height": 82.19999694824219, + "left": 360, + "right": 560, + "top": 152.5, + "width": 200, + "x": 360, + "y": 152.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0d219185-0933-4459-ade3-30f96b00511d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c67225bf-f947-45ed-ae5b-5c9367ef8cab" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "scRNA Phenotype Tabular" + } + ], + "label": "scRNA Phenotype Tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 338.1999969482422, + "height": 82.19999694824219, + "left": 359, + "right": 559, + "top": 256, + "width": 200, + "x": 359, + "y": 256 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9ca6d554-decc-4b57-b6f4-723a60e5a0cc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "59f0e53a-13ee-4ab6-8cdf-40482dfc0f75" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "scRNA Metadata" + } + ], + "label": "scRNA Metadata", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 424.8000030517578, + "height": 61.80000305175781, + "left": 357, + "right": 557, + "top": 363, + "width": 200, + "x": 357, + "y": 363 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "4efc5ad2-5000-4b60-92e8-df022c6f8a7f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f45df54a-4591-49bb-91be-06a497ceb14d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Bulk RNA Assay Tabular" + } + ], + "label": "Bulk RNA Assay Tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 544.1999969482422, + "height": 82.19999694824219, + "left": 358, + "right": 558, + "top": 462, + "width": 200, + "x": 358, + "y": 462 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "809894bc-62b0-43a8-af73-d19c359b2e4e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4a8ebd19-87c9-4b3d-89ad-26316b1460f9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Bulk RNA Annotation" + } + ], + "label": "Bulk RNA Annotation", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 645.1999969482422, + "height": 82.19999694824219, + "left": 358, + "right": 558, + "top": 563, + "width": 200, + "x": 358, + "y": 563 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "1c008bcf-8ea8-4f48-89ec-623190301fc9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5663f93d-b38f-4f7c-9ed2-7aa5a5e0273e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cell Types List" + } + ], + "label": "Cell Types List", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 314.3000030517578, + "height": 61.80000305175781, + "left": 928, + "right": 1128, + "top": 252.5, + "width": 200, + "x": 928, + "y": 252.5 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "f98985a7-458a-4b2f-a924-8ca4ecdaa037", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6440740d-b72c-422b-a46c-d3de32c25076" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cell Markers C1" + } + ], + "label": "Cell Markers C1", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 388.3000030517578, + "height": 61.80000305175781, + "left": 927, + "right": 1127, + "top": 326.5, + "width": 200, + "x": 927, + "y": 326.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d2940a2a-808b-43ec-9ed7-59a8915b4fbd", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b87c6860-8b9d-4412-8aa7-506ea09bfc16" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cell Markers C2" + } + ], + "label": "Cell Markers C2", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 459.3000030517578, + "height": 61.80000305175781, + "left": 932, + "right": 1132, + "top": 397.5, + "width": 200, + "x": 932, + "y": 397.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b13d3354-a633-4eeb-8edf-4f14c4209240", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3f07162a-d2f4-411e-a276-6437c7149ecc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "exprs_file": { + "id": 0, + "output_name": "output" + }, + "metadata_0|row_names": { + "id": 2, + "output_name": "output" + }, + "pdata_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Construct Expression Set Object", + "name": "exprs_file" + }, + { + "description": "runtime parameter for tool Construct Expression Set Object", + "name": "pdata_file" + } + ], + "label": "Construct scRNA ESet Object", + "name": "Construct Expression Set Object", + "outputs": [ + { + "name": "out_tab", + "type": "tabular" + }, + { + "name": "out_rds", + "type": "rdata" + } + ], + "position": { + "bottom": 435.8999938964844, + "height": 286.3999938964844, + "left": 637, + "right": 837, + "top": 149.5, + "width": 200, + "x": 637, + "y": 149.5 + }, + "post_job_actions": { + "HideDatasetActionout_tab": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_tab" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2cfd0db49bbc", + "name": "music_construct_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation\": \"\", \"expdata\": {\"name\": \"\", \"lab\": \"\", \"contact\": \"\", \"title\": \"\", \"abstract\": \"\", \"url\": \"\", \"other\": [{\"__index__\": 0, \"field\": \"notes\", \"comment\": \"Created in Galaxy\"}]}, \"exprs_file\": {\"__class__\": \"RuntimeValue\"}, \"metadata\": [{\"__index__\": 0, \"row_names\": {\"__class__\": \"ConnectedValue\"}, \"label_desc\": \"\"}], \"pdata_file\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy0", + "type": "tool", + "uuid": "2e56a895-db92-4961-9d04-9860ef4d6007", + "workflow_outputs": [ + { + "label": "Construct Expression Set Object on input dataset(s): RData ESet Object", + "output_name": "out_rds", + "uuid": "872b3dd2-322c-47cc-b5b9-071a9f939320" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "annotation": { + "id": 4, + "output_name": "output" + }, + "exprs_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Construct Expression Set Object", + "name": "exprs_file" + }, + { + "description": "runtime parameter for tool Construct Expression Set Object", + "name": "pdata_file" + } + ], + "label": "Construct Bulk RNA ESet Object", + "name": "Construct Expression Set Object", + "outputs": [ + { + "name": "out_tab", + "type": "tabular" + }, + { + "name": "out_rds", + "type": "rdata" + } + ], + "position": { + "bottom": 746.3999938964844, + "height": 286.3999938964844, + "left": 638, + "right": 838, + "top": 460, + "width": 200, + "x": 638, + "y": 460 + }, + "post_job_actions": { + "HideDatasetActionout_tab": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_tab" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2cfd0db49bbc", + "name": "music_construct_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation\": {\"__class__\": \"ConnectedValue\"}, \"expdata\": {\"name\": \"\", \"lab\": \"\", \"contact\": \"\", \"title\": \"\", \"abstract\": \"\", \"url\": \"\", \"other\": [{\"__index__\": 0, \"field\": \"notes\", \"comment\": \"Created in Galaxy\"}]}, \"exprs_file\": {\"__class__\": \"RuntimeValue\"}, \"metadata\": [], \"pdata_file\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy0", + "type": "tool", + "uuid": "4646fe87-4f29-48cf-b751-a1edb4e9fd7d", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_rds", + "uuid": "f27399d6-39f8-4712-a632-ee34b891306d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_inspect_eset/music_inspect_eset/0.1.1+galaxy3", + "errors": null, + "id": 10, + "input_connections": { + "rds_eset": { + "id": 8, + "output_name": "out_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Inspect Expression Set Object", + "name": "rds_eset" + } + ], + "label": "Extract Cell Types", + "name": "Inspect Expression Set Object", + "outputs": [ + { + "name": "out_tab", + "type": "tabular" + } + ], + "position": { + "bottom": 244.39999389648438, + "height": 154.39999389648438, + "left": 926, + "right": 1126, + "top": 90, + "width": 200, + "x": 926, + "y": 90 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_inspect_eset/music_inspect_eset/0.1.1+galaxy3", + "tool_shed_repository": { + "changeset_revision": "8c64a2da3869", + "name": "music_inspect_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inspector\": \"fData\", \"rds_eset\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy0", + "type": "tool", + "uuid": "04fa6a76-2262-4608-bf42-f0bd17419226", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_tab", + "uuid": "3c2f499e-2f78-4aeb-bd5b-82b4606dea16" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_inspect_eset/music_inspect_eset/0.1.1+galaxy3", + "errors": null, + "id": 11, + "input_connections": { + "rds_eset": { + "id": 8, + "output_name": "out_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Inspect Expression Set Object", + "name": "rds_eset" + } + ], + "label": "Extract General Info", + "name": "Inspect Expression Set Object", + "outputs": [ + { + "name": "out_tab", + "type": "tabular" + } + ], + "position": { + "bottom": 692.8999938964844, + "height": 154.39999389648438, + "left": 948, + "right": 1148, + "top": 538.5, + "width": 200, + "x": 948, + "y": 538.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_inspect_eset/music_inspect_eset/0.1.1+galaxy3", + "tool_shed_repository": { + "changeset_revision": "8c64a2da3869", + "name": "music_inspect_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inspector\": \"print\", \"rds_eset\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy0", + "type": "tool", + "uuid": "4a8ff055-fa99-4867-97e5-a3d1ec49b9bc", + "workflow_outputs": [ + { + "label": "Inspect Expression Set Object on input dataset(s): Inspection Result", + "output_name": "out_tab", + "uuid": "1733593f-847d-4adb-91f4-fd78c077b074" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_inspect_eset/music_inspect_eset/0.1.1+galaxy3", + "errors": null, + "id": 12, + "input_connections": { + "rds_eset": { + "id": 9, + "output_name": "out_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Inspect Expression Set Object", + "name": "rds_eset" + } + ], + "label": "Extract General Info (Bulk)", + "name": "Inspect Expression Set Object", + "outputs": [ + { + "name": "out_tab", + "type": "tabular" + } + ], + "position": { + "bottom": 861.3999938964844, + "height": 154.39999389648438, + "left": 945, + "right": 1145, + "top": 707, + "width": 200, + "x": 945, + "y": 707 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_inspect_eset/music_inspect_eset/0.1.1+galaxy3", + "tool_shed_repository": { + "changeset_revision": "8c64a2da3869", + "name": "music_inspect_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inspector\": \"print\", \"rds_eset\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy0", + "type": "tool", + "uuid": "83ae4dc4-ff8a-4df7-8d47-c52e4f79c97f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_tab", + "uuid": "d2312cc5-cea1-4f07-a0cf-0574a0923c28" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_deconvolution/music_deconvolution/0.1.1+galaxy3", + "errors": null, + "id": 13, + "input_connections": { + "bulk_eset": { + "id": 9, + "output_name": "out_rds" + }, + "do|celltypes": { + "id": 5, + "output_name": "output" + }, + "scrna_eset": { + "id": 8, + "output_name": "out_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MuSiC", + "name": "bulk_eset" + }, + { + "description": "runtime parameter for tool MuSiC", + "name": "scrna_eset" + } + ], + "label": "Music: Estimate Cell Proportions", + "name": "MuSiC", + "outputs": [ + { + "name": "summaries", + "type": "input" + }, + { + "name": "out_pdf", + "type": "pdf" + } + ], + "position": { + "bottom": 536.3999938964844, + "height": 286.3999938964844, + "left": 1325, + "right": 1525, + "top": 250, + "width": 200, + "x": 1325, + "y": 250 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_deconvolution/music_deconvolution/0.1.1+galaxy3", + "tool_shed_repository": { + "changeset_revision": "56371b5a2da9", + "name": "music_deconvolution", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"bulk_eset\": {\"__class__\": \"RuntimeValue\"}, \"do\": {\"method\": \"estimateprops\", \"__current_case__\": 0, \"celltypes_label\": \"cellType\", \"samples_label\": \"sampleID\", \"celltypes\": {\"__class__\": \"ConnectedValue\"}, \"methods\": [\"MuSiC\", \"NNLS\"], \"phenotype_factors\": \"\", \"phenotype_gene\": \"\", \"sample_groups\": \"\", \"sample_disease_group\": \"\", \"sample_disease_group_scale\": \"5\", \"healthy_phenotype\": \"\", \"compare_title\": \"\"}, \"scrna_eset\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy0", + "type": "tool", + "uuid": "d5ff6923-3386-4407-8c50-0ec641a7fe0e", + "workflow_outputs": [ + { + "label": null, + "output_name": "summaries", + "uuid": "ff64eeaa-56f4-4ef0-b458-5cf7c402ff84" + }, + { + "label": null, + "output_name": "out_pdf", + "uuid": "30e55eec-e403-4b10-a62c-5a503be0fb9f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_deconvolution/music_deconvolution/0.1.1+galaxy3", + "errors": null, + "id": 14, + "input_connections": { + "bulk_eset": { + "id": 9, + "output_name": "out_rds" + }, + "do|cluster_groups_0|marker_list": { + "id": 6, + "output_name": "output" + }, + "do|cluster_groups_1|marker_list": { + "id": 7, + "output_name": "output" + }, + "scrna_eset": { + "id": 8, + "output_name": "out_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MuSiC", + "name": "bulk_eset" + }, + { + "description": "runtime parameter for tool MuSiC", + "name": "scrna_eset" + } + ], + "label": "Music: Compute Dendrogram", + "name": "MuSiC", + "outputs": [ + { + "name": "out_pdf", + "type": "pdf" + }, + { + "name": "out_tab", + "type": "tabular" + } + ], + "position": { + "bottom": 898.7000122070312, + "height": 337.20001220703125, + "left": 1333, + "right": 1533, + "top": 561.5, + "width": 200, + "x": 1333, + "y": 561.5 + }, + "post_job_actions": { + "HideDatasetActionout_tab": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_tab" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_deconvolution/music_deconvolution/0.1.1+galaxy3", + "tool_shed_repository": { + "changeset_revision": "56371b5a2da9", + "name": "music_deconvolution", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"bulk_eset\": {\"__class__\": \"RuntimeValue\"}, \"do\": {\"method\": \"dendrogram\", \"__current_case__\": 1, \"celltypes_label\": \"cellType\", \"clustertype_label\": \"clusterType\", \"samples_label\": \"sampleID\", \"celltypes\": \"\", \"cluster_groups\": [{\"__index__\": 0, \"cluster_id\": \"C1\", \"celltypes\": \"\", \"marker_name\": \"\", \"marker_list\": {\"__class__\": \"RuntimeValue\"}}, {\"__index__\": 1, \"cluster_id\": \"C2\", \"celltypes\": \"\", \"marker_name\": \"\", \"marker_list\": {\"__class__\": \"RuntimeValue\"}}]}, \"scrna_eset\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy0", + "type": "tool", + "uuid": "86a3a936-ef2a-4eee-80e9-63f247463719", + "workflow_outputs": [ + { + "label": "MuSiC on input dataset(s): PDF Plots", + "output_name": "out_pdf", + "uuid": "df2e83a5-ac67-460f-8b0f-ac3f3b63280f" + } + ] + } + ], + "parent_id": "single-cell/bulk-music", + "path": "topics/single-cell/tutorials/bulk-music/workflows/main_workflow.ga", + "tags": [ + "transcriptomics", + "single-cell" + ], + "test_results": null, + "tests": false, + "title": "MuSiC Workflow", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music/versions/main-workflow", + "tutorial_id": "bulk-music", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music/workflows/main_workflow.html", + "version": 2, + "wfid": "single-cell-bulk-music", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_deconvolution/music_deconvolution/0.1.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_inspect_eset/music_inspect_eset/0.1.1+galaxy3" + ], + "workflowhub_id": "1234" + } + ], + "zenodo_link": "https://zenodo.org/record/5719228" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "dropletutils", + "owner": "iuc", + "revisions": "a9caad671439", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "75c93c70d094", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rna_starsolo", + "owner": "iuc", + "revisions": "13022c3d3076", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: dropletutils\n owner: iuc\n revisions: a9caad671439\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 75c93c70d094\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rna_starsolo\n owner: iuc\n revisions: 13022c3d3076\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-preprocessing-tenx/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "hrhotz@googlemail.com", + "fediverse": "https://genomic.social/@hrhotz", + "fediverse_flavor": "mastodon", + "id": "hrhotz", + "joined": "2017-09", + "linkedin": "hans-rudolf-hotz-542b31", + "location": { + "country": "CH", + "lat": 47.57, + "lon": 7.6 + }, + "matrix": "hrhotz:matrix.org", + "name": "Hans-Rudolf Hotz", + "orcid": "0000-0002-2799-424X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hrhotz/", + "twitter": "hrhotz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hrhotz.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-preprocessing-tenx", + "edam_operation": [ + "Sequencing quality control", + "Community profiling", + "Validation", + "Sequence alignment", + "Loading" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-scanpy-pbmc3k" + ], + "type": "internal" + } + ], + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-preprocessing-tenx", + "inexact_supported_servers": [ + "HyPhy HIV NGS Tools", + "UseGalaxy.fr", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": 12940, + "mermaid": false + }, + "key_points": [ + "Barcode FASTQ Reads are used to parse cDNA sequencing Reads.", + "A raw matrix is too large to process alone, and need to be filtered into a high quality one for downstream analysis" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Demultiplex single-cell FASTQ data from 10X Genomics", + "Learn about transparent matrix formats", + "Understand the importance of high and low quality cells" + ], + "pageviews": 10662, + "priority": 1, + "pub_date": "2019-09-11", + "questions": [ + "What is 10X?", + "What is STARsolo and what is Cell Ranger?", + "What are BCL and MTX files?", + "What is an HDF5 file, and why is it important?" + ], + "recordings": [ + { + "captioners": [ + "pavanvidem" + ], + "date": "2023-05-19", + "galaxy_version": "23.01", + "length": "19M", + "speakers": [ + "pavanvidem" + ], + "youtube_id": "IIiOcgiXviE" + }, + { + "captioners": [ + "khanteymoori" + ], + "date": "2021-03-18", + "galaxy_version": "21.01", + "length": "5M", + "speakers": [ + "nomadscientist" + ], + "youtube_id": "vNBNFkF0L4U" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-preprocessing-tenx/tutorial", + "/short/single-cell/scrna-preprocessing-tenx", + "/short/T00252" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-preprocessing" + ], + "type": "internal" + } + ], + "short_id": "T00252", + "short_tools": [ + "rna_starsolo", + "dropletutils", + "multiqc" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "firstsc", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "HyPhy HIV NGS Tools", + "url": "https://galaxy.hyphy.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "10x" + ], + "time_estimation": "1h", + "title": "Pre-processing of 10X Single-Cell RNA Datasets", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/dropletutils/dropletutils/1.10.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.10b+galaxy3" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-preprocessing-tenx", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-preprocessing-tenx/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-preprocessing-tenx/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-preprocessing-tenx/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 107, + "visitors": 8207, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-8170-8806", + "name": "Wendi Bacon" + }, + { + "class": "Person", + "identifier": "0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "0000-0002-4181-2676", + "name": "Mehmet Tekman" + }, + { + "class": "Person", + "identifier": "0000-0002-2799-424X", + "name": "Hans-Rudolf Hotz" + }, + { + "class": "Person", + "identifier": "0000-0002-6833-9049", + "name": "Daniel Blankenberg" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nHomo_sapiens.GRCh37.75.gtf\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsubset_pbmc_1k_v3_S1_L001_R1_001.fastq.gz\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsubset_pbmc_1k_v3_S1_L002_R1_001.fastq.gz\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsubset_pbmc_1k_v3_S1_L002_R2_001.fastq.gz\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsubset_pbmc_1k_v3_S1_L001_R2_001.fastq.gz\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\n3M-february-2018.txt.gz\"]\n 6[label=\"RNA STARSolo\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"output\"]\n 5 -> 6 [label=\"output\"]\n 7[label=\"DropletUtils\"]\n 6 -> 7 [label=\"output_matrix\"]\n 6 -> 7 [label=\"output_barcodes\"]\n 6 -> 7 [label=\"output_genes\"]\n 8[label=\"DropletUtils\"]\n 6 -> 8 [label=\"output_matrix\"]\n 6 -> 8 [label=\"output_barcodes\"]\n 6 -> 8 [label=\"output_genes\"]\n 9[label=\"DropletUtils\"]\n 6 -> 9 [label=\"output_matrix\"]\n 6 -> 9 [label=\"output_barcodes\"]\n 6 -> 9 [label=\"output_genes\"]\n}", + "history": [ + { + "hash": "a72ffa88609dce58d84066d5e173ab7f7dfaaa8a", + "message": "add author ids", + "num": 3, + "short_hash": "a72ffa886", + "unix": "1684436873" + }, + { + "hash": "3dead543d9798a6456c609bf50844dff6a42ea60", + "message": "Update workflow authors", + "num": 2, + "short_hash": "3dead543d", + "unix": "1684436577" + }, + { + "hash": "5d8104ecc67f388338f9bb292c56453b8556542d", + "message": "Update 10x scRNA preprocessing tutorial", + "num": 1, + "short_hash": "5d8104ecc", + "unix": "1684419217" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Homo_sapiens.GRCh37.75.gtf" + } + ], + "label": "Homo_sapiens.GRCh37.75.gtf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "8b20f887-9a5a-4a62-9ec5-20ae950c4af3", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "subset_pbmc_1k_v3_S1_L001_R1_001.fastq.gz" + } + ], + "label": "subset_pbmc_1k_v3_S1_L001_R1_001.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 123 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e6ecb480-0530-406f-b10d-542769def2ee", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "subset_pbmc_1k_v3_S1_L002_R1_001.fastq.gz" + } + ], + "label": "subset_pbmc_1k_v3_S1_L002_R1_001.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 266 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c45a8335-5384-4904-9735-0711a9928c6f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "subset_pbmc_1k_v3_S1_L002_R2_001.fastq.gz" + } + ], + "label": "subset_pbmc_1k_v3_S1_L002_R2_001.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 409 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "727d1244-f775-4709-bbea-eecaca8588f3", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "subset_pbmc_1k_v3_S1_L001_R2_001.fastq.gz" + } + ], + "label": "subset_pbmc_1k_v3_S1_L001_R2_001.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 552 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "183c20fc-aa5a-43bf-a3f2-e496bbe30f43", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "3M-february-2018.txt.gz" + } + ], + "label": "3M-february-2018.txt.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 695 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "9be1bade-3ff5-4d99-9ffb-cc909273464c", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nHomo_sapiens.GRCh37.75.gtf\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nsubset_pbmc_1k_v3_S1_L001_R1_001.fastq.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nsubset_pbmc_1k_v3_S1_L002_R1_001.fastq.gz\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nsubset_pbmc_1k_v3_S1_L002_R2_001.fastq.gz\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nsubset_pbmc_1k_v3_S1_L001_R2_001.fastq.gz\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\n3M-february-2018.txt.gz\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"RNA STARSolo\"];\n 0 -->|output| 6;\n 1 -->|output| 6;\n 2 -->|output| 6;\n 3 -->|output| 6;\n 4 -->|output| 6;\n 5 -->|output| 6;\n 7[\"DropletUtils\"];\n 6 -->|output_matrix| 7;\n 6 -->|output_barcodes| 7;\n 6 -->|output_genes| 7;\n 8[\"DropletUtils\"];\n 6 -->|output_matrix| 8;\n 6 -->|output_barcodes| 8;\n 6 -->|output_genes| 8;\n 9[\"DropletUtils\"];\n 6 -->|output_matrix| 9;\n 6 -->|output_barcodes| 9;\n 6 -->|output_genes| 9;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Preprocessing of 10X scRNA-seq data", + "outputs": [], + "parent_id": "single-cell/scrna-preprocessing-tenx", + "path": "topics/single-cell/tutorials/scrna-preprocessing-tenx/workflows/scRNA-seq-Preprocessing-TenX.ga", + "tags": [ + "single-cell", + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "Preprocessing of 10X scRNA-seq data", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-preprocessing-tenx/versions/scrna-seq-preprocessing-tenx", + "tutorial_id": "scrna-preprocessing-tenx", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing-tenx/workflows/scRNA-seq-Preprocessing-TenX.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing-tenx/workflows/scRNA-seq-Preprocessing-TenX.html", + "version": 1, + "wfid": "single-cell-scrna-preprocessing-tenx", + "wfname": "scrna-seq-preprocessing-tenx", + "workflow": "scRNA-seq-Preprocessing-TenX.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/dropletutils/dropletutils/1.10.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/rna_starsolo/rna_starsolo/2.7.10b+galaxy3" + ], + "workflowhub_id": "1220" + } + ], + "zenodo_link": "https://zenodo.org/record/3457880" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "ee98d611afc6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "episcanpy_build_matrix", + "owner": "iuc", + "revisions": "31a21ba2c5ea", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "episcanpy_preprocess", + "owner": "iuc", + "revisions": "29f5f25b9935", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "macs2", + "owner": "iuc", + "revisions": "424aefbd7777", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "macs2", + "owner": "iuc", + "revisions": "640d3af5d833", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot", + "owner": "iuc", + "revisions": "6adf98e782f3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot", + "owner": "iuc", + "revisions": "aa0c474463c2", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sinto_barcode", + "owner": "iuc", + "revisions": "d1b34ac42b8f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sinto_fragments", + "owner": "iuc", + "revisions": "29e6bfb2cf49", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: ee98d611afc6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: episcanpy_build_matrix\n owner: iuc\n revisions: 31a21ba2c5ea\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: episcanpy_preprocess\n owner: iuc\n revisions: 29f5f25b9935\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: macs2\n owner: iuc\n revisions: 424aefbd7777\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: macs2\n owner: iuc\n revisions: 640d3af5d833\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot\n owner: iuc\n revisions: 6adf98e782f3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot\n owner: iuc\n revisions: aa0c474463c2\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sinto_barcode\n owner: iuc\n revisions: d1b34ac42b8f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sinto_fragments\n owner: iuc\n revisions: 29e6bfb2cf49\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scatac-preprocessing-tenx/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/single-cell/tutorials/scatac-preprocessing-tenx", + "edam_operation": [ + "Sequencing quality control", + "Imputation", + "Peak calling", + "Enrichment analysis", + "Sequence alignment", + "Mapping", + "Sequence composition calculation", + "Read mapping", + "Genome indexing", + "Gene regulatory network analysis", + "Generation", + "Differential gene expression analysis", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-scanpy-pbmc3k", + "scatac-standard-processing-snapatac2" + ], + "type": "internal" + } + ], + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scatac-preprocessing-tenx", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Bulk ATAC-seq like mapping and peak calling", + "Creating a scATAC-seq count matrix requires positions of open chromatin regions" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-11", + "objectives": [ + "Demultiplex single-cell FASTQ data from 10X Genomics", + "Learn about transparent matrix formats", + "Create a high-quality count matrix starting from scATAC-seq FASTQ files" + ], + "pageviews": 4163, + "priority": 1, + "pub_date": "2023-04-24", + "questions": [ + "What is 10X?", + "What are single-cell ATAC fragments and MTX files?", + "What is an Anndata file, and why is it important?" + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/satac-preprocessing-tenx/tutorial", + "/short/single-cell/scatac-preprocessing-tenx", + "/short/T00335" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-preprocessing-tenx" + ], + "type": "internal" + } + ], + "short_id": "T00335", + "short_tools": [ + "episcanpy_preprocess", + "anndata_inspect", + "sinto_fragments", + "scanpy_plot", + "bedtools_sortbed", + "sinto_barcode", + "fastqc", + "macs2_callpeak", + "episcanpy_build_matrix", + "tp_sorted_uniq", + "bwa_mem" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "scmultiomics", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "epigenetics" + ], + "time_estimation": "1h", + "title": "Pre-processing of 10X Single-Cell ATAC-seq Datasets", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.30.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/episcanpy_build_matrix/episcanpy_build_matrix/0.3.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/episcanpy_preprocess/episcanpy_preprocess/0.3.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.1.1.20160309.6", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/sinto_barcode/sinto_barcode/0.9.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/sinto_fragments/sinto_fragments/0.9.0+galaxy1" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scatac-preprocessing-tenx", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scatac-preprocessing-tenx/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scatac-preprocessing-tenx/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scatac-preprocessing-tenx/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 67, + "visitors": 3511, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-5192-126X", + "name": "Pavankumar Videm" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nscATAC-seq Anndata\"]\n 1[label=\"scATAC-seq Preprocessing\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"scATAC-seq Preprocessing\"]\n 1 -> 2 [label=\"anndata_out\"]\n 3[label=\"scATAC-seq Preprocessing\"]\n 2 -> 3 [label=\"anndata_out\"]\n 4[label=\"Plot\"]\n 3 -> 4 [label=\"anndata_out\"]\n 5[label=\"scATAC-seq Preprocessing\"]\n 3 -> 5 [label=\"anndata_out\"]\n 6[label=\"scATAC-seq Preprocessing\"]\n 3 -> 6 [label=\"anndata_out\"]\n 7[label=\"scATAC-seq Preprocessing\"]\n 3 -> 7 [label=\"anndata_out\"]\n 8[label=\"scATAC-seq Preprocessing\"]\n 3 -> 8 [label=\"anndata_out\"]\n 9[label=\"scATAC-seq Preprocessing\"]\n 8 -> 9 [label=\"anndata_out\"]\n 10[label=\"scATAC-seq Preprocessing\"]\n 9 -> 10 [label=\"anndata_out\"]\n 11[label=\"scATAC-seq Preprocessing\"]\n 10 -> 11 [label=\"anndata_out\"]\n 12[label=\"Plot\"]\n 11 -> 12 [label=\"anndata_out\"]\n}", + "history": [ + { + "hash": "094d1948af4063fe1165b564f128a8a3a447b037", + "message": "Add workflow tests", + "num": 1, + "short_hash": "094d1948a", + "unix": "1682339007" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "scATAC-seq Anndata" + } + ], + "label": "scATAC-seq Anndata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 522 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2e2b15be-c7c1-4ebb-bb2c-5b269c563ae4", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nscATAC-seq Anndata\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"scATAC-seq Preprocessing\"];\n 0 -->|output| 1;\n 2[\"scATAC-seq Preprocessing\"];\n 1 -->|anndata_out| 2;\n 3[\"scATAC-seq Preprocessing\"];\n 2 -->|anndata_out| 3;\n 4[\"Plot\"];\n 3 -->|anndata_out| 4;\n 5[\"scATAC-seq Preprocessing\"];\n 3 -->|anndata_out| 5;\n 6[\"scATAC-seq Preprocessing\"];\n 3 -->|anndata_out| 6;\n 7[\"scATAC-seq Preprocessing\"];\n 3 -->|anndata_out| 7;\n 8[\"scATAC-seq Preprocessing\"];\n 3 -->|anndata_out| 8;\n 9[\"scATAC-seq Preprocessing\"];\n 8 -->|anndata_out| 9;\n 10[\"scATAC-seq Preprocessing\"];\n 9 -->|anndata_out| 10;\n 11[\"scATAC-seq Preprocessing\"];\n 10 -->|anndata_out| 11;\n 12[\"Plot\"];\n 11 -->|anndata_out| 12;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "scATAC-seq Count Matrix Filtering", + "outputs": [], + "parent_id": "single-cell/scatac-preprocessing-tenx", + "path": "topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-Count-Matrix-Filtering.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "scATAC-seq Count Matrix Filtering", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scatac-preprocessing-tenx/versions/scatac-seq-count-matrix-filtering", + "tutorial_id": "scatac-preprocessing-tenx", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-Count-Matrix-Filtering.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-Count-Matrix-Filtering.html", + "version": 1, + "wfid": "single-cell-scatac-preprocessing-tenx", + "wfname": "scatac-seq-count-matrix-filtering", + "workflow": "scATAC-seq-Count-Matrix-Filtering.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/episcanpy_preprocess/episcanpy_preprocess/0.3.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1" + ], + "workflowhub_id": "1275" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-5192-126X", + "name": "Pavankumar Videm" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nForward reads FASTQ R1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBarcodes FASTQ R2\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReverse reads FASTQ R3\"]\n 3[label=\"Sinto barcode\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"FastQC\"]\n 3 -> 4 [label=\"read1_out\"]\n 5[label=\"FastQC\"]\n 3 -> 5 [label=\"read2_out\"]\n 6[label=\"Map with BWA-MEM\"]\n 3 -> 6 [label=\"read1_out\"]\n 3 -> 6 [label=\"read2_out\"]\n 7[label=\"Sinto fragments\"]\n 6 -> 7 [label=\"bam_output\"]\n 8[label=\"bedtools SortBED\"]\n 7 -> 8 [label=\"fragments\"]\n 9[label=\"MACS2 callpeak\"]\n 8 -> 9 [label=\"output\"]\n 10[label=\"Unique\"]\n 9 -> 10 [label=\"output_narrowpeaks\"]\n 11[label=\"Build count matrix\"]\n 8 -> 11 [label=\"output\"]\n 10 -> 11 [label=\"outfile\"]\n 12[label=\"Inspect AnnData\"]\n 11 -> 12 [label=\"anndata_out\"]\n 13[label=\"Inspect AnnData\"]\n 11 -> 13 [label=\"anndata_out\"]\n 14[label=\"Inspect AnnData\"]\n 11 -> 14 [label=\"anndata_out\"]\n 15[label=\"Inspect AnnData\"]\n 11 -> 15 [label=\"anndata_out\"]\n}", + "history": [ + { + "hash": "094d1948af4063fe1165b564f128a8a3a447b037", + "message": "Add workflow tests", + "num": 1, + "short_hash": "094d1948a", + "unix": "1682339007" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Forward reads FASTQ (R1)" + } + ], + "label": "Forward reads FASTQ (R1)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ec67a5c0-4854-4344-af16-7772c1c0742b", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Barcodes FASTQ (R2)" + } + ], + "label": "Barcodes FASTQ (R2)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 120 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "50c6de05-b355-4733-bc1d-96dc1ca058e1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reverse reads FASTQ (R3)" + } + ], + "label": "Reverse reads FASTQ (R3)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 240 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "8a73ff78-6e0a-41ab-9ac3-523cbd486021", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nForward reads FASTQ R1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nBarcodes FASTQ R2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nReverse reads FASTQ R3\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Sinto barcode\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 2 -->|output| 3;\n 4[\"FastQC\"];\n 3 -->|read1_out| 4;\n 5[\"FastQC\"];\n 3 -->|read2_out| 5;\n 6[\"Map with BWA-MEM\"];\n 3 -->|read1_out| 6;\n 3 -->|read2_out| 6;\n 7[\"Sinto fragments\"];\n 6 -->|bam_output| 7;\n 8[\"bedtools SortBED\"];\n 7 -->|fragments| 8;\n 9[\"MACS2 callpeak\"];\n 8 -->|output| 9;\n 10[\"Unique\"];\n 9 -->|output_narrowpeaks| 10;\n 11[\"Build count matrix\"];\n 8 -->|output| 11;\n 10 -->|outfile| 11;\n 12[\"Inspect AnnData\"];\n 11 -->|anndata_out| 12;\n 13[\"Inspect AnnData\"];\n 11 -->|anndata_out| 13;\n 14[\"Inspect AnnData\"];\n 11 -->|anndata_out| 14;\n 15[\"Inspect AnnData\"];\n 11 -->|anndata_out| 15;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "scATAC-seq FASTQ to Count Matrix", + "outputs": [], + "parent_id": "single-cell/scatac-preprocessing-tenx", + "path": "topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-FASTQ-to-Count-Matrix.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "scATAC-seq FASTQ to Count Matrix", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scatac-preprocessing-tenx/versions/scatac-seq-fastq-to-count-matrix", + "tutorial_id": "scatac-preprocessing-tenx", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-FASTQ-to-Count-Matrix.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scatac-preprocessing-tenx/workflows/scATAC-seq-FASTQ-to-Count-Matrix.html", + "version": 1, + "wfid": "single-cell-scatac-preprocessing-tenx", + "wfname": "scatac-seq-fastq-to-count-matrix", + "workflow": "scATAC-seq-FASTQ-to-Count-Matrix.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_sortbed/2.30.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/episcanpy_build_matrix/episcanpy_build_matrix/0.3.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/macs2/macs2_callpeak/2.2.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sinto_barcode/sinto_barcode/0.9.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/sinto_fragments/sinto_fragments/0.9.0+galaxy1" + ], + "workflowhub_id": "1208" + } + ], + "zenodo_link": "https://zenodo.org/record/7855968" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "scater_create_qcmetric_ready_sce", + "owner": "iuc", + "revisions": "fd808de478b1", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scater_filter", + "owner": "iuc", + "revisions": "b7ea9f09c02f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scater_plot_dist_scatter", + "owner": "iuc", + "revisions": "2e41b35b5bdd", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scater_plot_pca", + "owner": "iuc", + "revisions": "46fc6751d746", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: scater_create_qcmetric_ready_sce\n owner: iuc\n revisions: fd808de478b1\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scater_filter\n owner: iuc\n revisions: b7ea9f09c02f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scater_plot_dist_scatter\n owner: iuc\n revisions: 2e41b35b5bdd\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scater_plot_pca\n owner: iuc\n revisions: 46fc6751d746\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-scater-qc/tutorial.json", + "contributors": [ + { + "id": "ethering", + "joined": "2019-10", + "name": "Graham Etherington", + "orcid": "0000-0002-5003-1425", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ethering/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ethering.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-scater-qc", + "edam_operation": [ + "Sequencing quality control", + "Sequence visualisation", + "Read pre-processing" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-raceid" + ], + "type": "internal" + } + ], + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-scater-qc", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Single-cell RNA-seq data is often noisy", + "scater can be used to apply the visualise-filter-visualise paradigm of quality control" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Examine scRNA-seq data for low-quality cells", + "Visualise data with various types of plots", + "Filtering low-quality cells with the appropriate approach" + ], + "pageviews": 609, + "priority": 1, + "pub_date": "2019-10-23", + "questions": [ + "How to ensure the quality of single-cell RNA-seq data?", + "What are the confounding factors that may affect the interpretation of downstream analyses?" + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-scater-qc/tutorial", + "/short/single-cell/scrna-scater-qc", + "/short/T00255" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-plates-batches-barcodes" + ], + "type": "internal" + } + ], + "short_id": "T00255", + "short_tools": [ + "scater_plot_dist_scatter", + "scater_filter", + "scater_plot_pca", + "scater_create_qcmetric_ready_sce" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "tricks", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": null, + "time_estimation": "1H", + "title": "Single-cell quality control with scater", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/scater_create_qcmetric_ready_sce/scater_create_qcmetric_ready_sce/1.12.2", + "toolshed.g2.bx.psu.edu/repos/iuc/scater_filter/scater_filter/1.12.2", + "toolshed.g2.bx.psu.edu/repos/iuc/scater_plot_dist_scatter/scater_plot_dist_scatter/1.12.2", + "toolshed.g2.bx.psu.edu/repos/iuc/scater_plot_pca/scater_plot_pca/1.12.2" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-scater-qc", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-scater-qc/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-scater-qc/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-scater-qc/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 45, + "visitors": 536, + "workflows": [ + { + "creators": [], + "description": "Single-cell quality control with scater", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nannotation.txt\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncounts.txt\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmt_controls.txt\"]\n 3[label=\"Scater: Calculate QC metrics\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Scater: plot library QC\"]\n 3 -> 4 [label=\"output_loom\"]\n 5[label=\"Scater: filter SCE\"]\n 3 -> 5 [label=\"output_loom\"]\n 6[label=\"Scater: plot library QC\"]\n 5 -> 6 [label=\"output_loom\"]\n 7[label=\"Scater: PCA plot\"]\n 5 -> 7 [label=\"output_loom\"]\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "annotation.txt" + } + ], + "label": "annotation.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"annotation.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3575b170-465d-4e4a-bae1-ff4c1efa142a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "counts.txt" + } + ], + "label": "counts.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 320 + }, + "tool_id": null, + "tool_state": "{\"name\": \"counts.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "03bc455e-52cc-4a2e-9a00-049f0fab721f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mt_controls.txt" + } + ], + "label": "mt_controls.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 440 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mt_controls.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f59c9ecb-0d03-4e93-8f46-5d3ed1b75aea", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nannotation.txt\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ncounts.txt\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nmt_controls.txt\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Scater: Calculate QC metrics\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 2 -->|output| 3;\n 4[\"Scater: plot library QC\"];\n 3 -->|output_loom| 4;\n 5[\"Scater: filter SCE\"];\n 3 -->|output_loom| 5;\n 6[\"Scater: plot library QC\"];\n 5 -->|output_loom| 6;\n 7[\"Scater: PCA plot\"];\n 5 -->|output_loom| 7;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Scater", + "outputs": [], + "parent_id": "single-cell/scrna-scater-qc", + "path": "topics/single-cell/tutorials/scrna-scater-qc/workflows/main_workflow.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "Scater", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-scater-qc/versions/main-workflow", + "tutorial_id": "scrna-scater-qc", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-scater-qc/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-scater-qc/workflows/main_workflow.html", + "version": 1, + "wfid": "single-cell-scrna-scater-qc", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/scater_create_qcmetric_ready_sce/scater_create_qcmetric_ready_sce/1.12.2", + "toolshed.g2.bx.psu.edu/repos/iuc/scater_filter/scater_filter/1.12.2", + "toolshed.g2.bx.psu.edu/repos/iuc/scater_plot_dist_scatter/scater_plot_dist_scatter/1.12.2", + "toolshed.g2.bx.psu.edu/repos/iuc/scater_plot_pca/scater_plot_pca/1.12.2" + ], + "workflowhub_id": "1241" + } + ], + "zenodo_link": "https://zenodo.org/record/3386291" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_filter", + "owner": "devteam", + "revisions": "cb20f99fd45b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "24c5d43cb545", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "featurecounts", + "owner": "iuc", + "revisions": "f3a5f075498f", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "featurecounts", + "owner": "iuc", + "revisions": "ea04b737afa0", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "df99138d2776", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "c1a4b5f3b432", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "2055c2667eb3", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "7ed2edc1337f", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "umi_tools_count", + "owner": "iuc", + "revisions": "b557acca0b56", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "umi_tools_count", + "owner": "iuc", + "revisions": "8250ea3a1501", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "umi_tools_extract", + "owner": "iuc", + "revisions": "828dba98cdb4", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "umi_tools_extract", + "owner": "iuc", + "revisions": "6a675c3aa610", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_filter\n owner: devteam\n revisions: cb20f99fd45b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 24c5d43cb545\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: featurecounts\n owner: iuc\n revisions: f3a5f075498f\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: featurecounts\n owner: iuc\n revisions: ea04b737afa0\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: df99138d2776\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: c1a4b5f3b432\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 2055c2667eb3\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 7ed2edc1337f\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: umi_tools_count\n owner: iuc\n revisions: b557acca0b56\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: umi_tools_count\n owner: iuc\n revisions: 8250ea3a1501\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: umi_tools_extract\n owner: iuc\n revisions: 828dba98cdb4\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: umi_tools_extract\n owner: iuc\n revisions: 6a675c3aa610\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-preprocessing/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anikaerxleben@gmail.com", + "id": "erxleben", + "joined": "2017-09", + "name": "Anika Erxleben", + "orcid": "0000-0002-7427-6478", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/erxleben/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/erxleben.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-preprocessing", + "edam_operation": [ + "Sequencing quality control", + "RNA-Seq quantification", + "Read summarisation", + "Data handling", + "Validation", + "Sequence alignment", + "Sequence alignment analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-umis" + ], + "type": "internal" + } + ], + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-preprocessing", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": 39191, + "mermaid": false + }, + "key_points": [ + "Verifying the distribution of barcodes via a FASTQC plot", + "Relocating barcodes into headers", + "Merging matrices from different batches together", + "Removing unwanted barcodes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-10-10", + "objectives": [ + "Demultiplex FASTQ data via UMI-tools", + "Understand and validate the extraction of barcodes", + "Obtain an overview of general alignment and quantification techniques", + "Generate a count matrix for downstream single-cell RNA analysis" + ], + "pageviews": 5732812, + "priority": 1, + "pub_date": "2019-02-22", + "questions": [ + "What is single-cell?", + "How do we process a batch?", + "How do we process multiple batches?", + "How do we check for cross-contamination?" + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna_preprocessing/tutorial", + "/topics/transcriptomics/tutorials/scrna-preprocessing/tutorial", + "/short/single-cell/scrna-preprocessing", + "/short/T00251" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-intro" + ], + "type": "internal" + } + ], + "short_id": "T00251", + "short_tools": [ + "samtools_stats", + "multiqc", + "umi_tools_count", + "umi_tools_extract", + "collection_column_join", + "bamFilter", + "featurecounts", + "tp_sed_tool", + "rna_star", + "__FLATTEN__" + ], + "slides": true, + "slides_recordings": false, + "subtopic": "end-to-end", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": null, + "time_estimation": "3h", + "title": "Pre-processing of Single-Cell RNA Data", + "tools": [ + "__FLATTEN__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.2", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.9", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.5.2b-2", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.7a", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count/0.5.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count/0.5.5.1", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.5.1" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-preprocessing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-preprocessing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-preprocessing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-preprocessing/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 290, + "visitors": 2068274, + "workflows": [ + { + "creators": [], + "description": "Pre-processing of Single-Cell RNA Data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nList of FACS pairs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBarcodes\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGTF file UCSC\"]\n 3[label=\"Flatten Collection\"]\n 0 -> 3 [label=\"output\"]\n 4[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nCelSeq2: Single Batch mm10\"]\n 1 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Column Join\"]\n 4 -> 5 [label=\"9:out_counts\"]\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "List of FACS pairs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 119.5, + "top": 260 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c50ee411-e25e-4570-97bf-f0a05af2458e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "37307bc9-a8de-4fb4-8482-4a3554c9af36" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Barcodes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 566.5, + "top": 429.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "cb331533-4896-419f-83ca-196c5daf2c03", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d863899f-2ea8-49d1-acc9-a2cca1f9fce3" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "GTF file (UCSC)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 568.5, + "top": 521 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "ac1f89bb-52b9-41ac-a6d4-f8dfd4d21550", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "51046a1f-f629-4e6a-aac1-eb563eeb693b" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nList of FACS pairs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nBarcodes\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nGTF file UCSC\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Flatten Collection\"];\n 0 -->|output| 3;\n 4[\"\ud83d\udee0\ufe0f Subworkflow\\nCelSeq2: Single Batch mm10\"];\n style 4 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 4;\n 3 -->|output| 4;\n 2 -->|output| 4;\n 5[\"Column Join\"];\n 4 -->|9:out_counts| 5;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "CelSeq2: Multi Batch (mm10)", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "List of FACS pairs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 119.5, + "top": 260 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c50ee411-e25e-4570-97bf-f0a05af2458e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "37307bc9-a8de-4fb4-8482-4a3554c9af36" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Barcodes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 566.5, + "top": 429.5 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "cb331533-4896-419f-83ca-196c5daf2c03", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d863899f-2ea8-49d1-acc9-a2cca1f9fce3" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "GTF file (UCSC)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 568.5, + "top": 521 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "ac1f89bb-52b9-41ac-a6d4-f8dfd4d21550", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "51046a1f-f629-4e6a-aac1-eb563eeb693b" + } + ] + }, + { + "annotation": "", + "id": 4, + "input_connections": { + "Barcodes (single-col)": { + "id": 1, + "input_subworkflow_step_id": 1, + "output_name": "output" + }, + "Batch": { + "id": 3, + "input_subworkflow_step_id": 0, + "output_name": "output" + }, + "GTF file (UCSC)": { + "id": 2, + "input_subworkflow_step_id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "CelSeq2: Single Batch mm10", + "outputs": [], + "position": { + "left": 879, + "top": 293.5 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "format-version": "0.1", + "name": "CelSeq2: Single Batch mm10", + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Batch", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 286, + "top": 470.90625 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c451df86-a25e-409c-9f2e-33c22a0f1bb9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d46989fb-ef46-4506-8932-d66cee38e62a" + } + ] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Barcodes (single-col)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 302.5, + "top": 552 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "4ac7860e-01d4-4009-b1fd-899fab778eb5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2c66b77f-5ee0-4991-971c-3c43d8e7841d" + } + ] + }, + "10": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 9, + "output_name": "out_counts" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Text transformation", + "name": "infile" + } + ], + "label": "Fix Headers", + "name": "Text transformation", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1919.90625, + "top": 528.40625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "a6f147a050a2", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": \"{\\\"__current_case__\\\": 0, \\\"adv_opts_selector\\\": \\\"basic\\\"}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"code\": \"\\\"1 s|\\\\\\\\w+_([ACTG]+)\\\\\\\\b|\\\\\\\\1|g\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "1d1e09f7-119f-4086-b8b7-a9fb61cea637", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2aa0f119-75c6-4b6b-8260-ff66f54167a4" + } + ] + }, + "2": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "GTF file (UCSC)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 313.5, + "top": 828.90625 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "0455bae6-58da-4ec3-9688-72aba9f676fe", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7ca9e0df-159c-43f7-a0b3-e546fcd9b2c9" + } + ] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.3.2", + "errors": null, + "id": 3, + "input_connections": { + "barcodes|filter_barcode_file": { + "id": 1, + "output_name": "output" + }, + "input_type|input_readpair": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool UMI-tools extract", + "name": "input_type" + }, + { + "description": "runtime parameter for tool UMI-tools extract", + "name": "barcodes" + } + ], + "label": null, + "name": "UMI-tools extract", + "outputs": [ + { + "name": "out", + "type": "input" + }, + { + "name": "out1", + "type": "input" + }, + { + "name": "out2", + "type": "input" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 554.5, + "top": 469.90625 + }, + "post_job_actions": { + "HideDatasetActionout": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out" + }, + "HideDatasetActionout1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out1" + }, + "HideDatasetActionout_log": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_log" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.3.2", + "tool_shed_repository": { + "changeset_revision": "99aea37a7ff7", + "name": "umi_tools_extract", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"extract_method\": \"\\\"string\\\"\", \"input_type\": \"{\\\"__current_case__\\\": 2, \\\"barcode\\\": {\\\"__current_case__\\\": 0, \\\"barcode_select\\\": \\\"first_read_only\\\"}, \\\"input_readpair\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"type\\\": \\\"paired_collection\\\"}\", \"__rerun_remap_job_id__\": null, \"bc_pattern\": \"\\\"NNNNNNCCCCCC\\\"\", \"print_log\": \"\\\"true\\\"\", \"prime3\": \"\\\"true\\\"\", \"quality\": \"{\\\"__current_case__\\\": 0, \\\"quality_selector\\\": \\\"false\\\"}\", \"barcodes\": \"{\\\"__current_case__\\\": 1, \\\"filter_barcode_file\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"filter_correct\\\": \\\"false\\\", \\\"use_barcodes\\\": \\\"yes\\\"}\"}", + "tool_version": "0.5.3.2", + "type": "tool", + "uuid": "0b94d2ea-1889-4b88-b0a2-ac7b0a3452e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "out2", + "uuid": "c24e1482-bbff-4a22-8747-2ab0330fb5af" + } + ] + }, + "4": { + "annotation": "The genome should match that of the GTF file", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.5.2b-2", + "errors": null, + "id": 4, + "input_connections": { + "refGenomeSource|GTFconditional|sjdbGTFfile": { + "id": 2, + "output_name": "output" + }, + "singlePaired|input1": { + "id": 3, + "output_name": "out2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RNA STAR", + "name": "quantMode" + }, + { + "description": "runtime parameter for tool RNA STAR", + "name": "singlePaired" + } + ], + "label": "Alignment (mm10)", + "name": "RNA STAR", + "outputs": [ + { + "name": "output_log", + "type": "txt" + }, + { + "name": "chimeric_junctions", + "type": "interval" + }, + { + "name": "chimeric_reads", + "type": "bam" + }, + { + "name": "splice_junctions", + "type": "interval" + }, + { + "name": "mapped_reads", + "type": "bam" + }, + { + "name": "reads_per_gene", + "type": "tabular" + } + ], + "position": { + "left": 832.5, + "top": 581.90625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.5.2b-2", + "tool_shed_repository": { + "changeset_revision": "2055c2667eb3", + "name": "rgrnastar", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"singlePaired\": \"{\\\"__current_case__\\\": 0, \\\"input1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"sPaired\\\": \\\"single\\\"}\", \"output_params\": \"{\\\"__current_case__\\\": 1, \\\"output_select\\\": \\\"no\\\"}\", \"__rerun_remap_job_id__\": null, \"params\": \"{\\\"__current_case__\\\": 0, \\\"settingsType\\\": \\\"default\\\"}\", \"refGenomeSource\": \"{\\\"GTFconditional\\\": {\\\"GTFselect\\\": \\\"without-gtf\\\", \\\"__current_case__\\\": 1, \\\"genomeDir\\\": \\\"mm10\\\", \\\"sjdbGTFfile\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"sjdbOverhang\\\": \\\"100\\\"}, \\\"__current_case__\\\": 0, \\\"geneSource\\\": \\\"indexed\\\"}\", \"quantMode\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.5.2b-2", + "type": "tool", + "uuid": "1e4a54be-b2fb-496a-8247-ccba4ffe6f3b", + "workflow_outputs": [ + { + "label": null, + "output_name": "chimeric_reads", + "uuid": "f44d1ce2-b0a0-4aca-b9da-d47a9151dd8f" + }, + { + "label": null, + "output_name": "chimeric_junctions", + "uuid": "a70f8d45-eaa8-40f4-a755-99e7004ad0ee" + }, + { + "label": null, + "output_name": "reads_per_gene", + "uuid": "70ef8c03-6a54-4c88-81b6-e178dbf776c7" + }, + { + "label": null, + "output_name": "splice_junctions", + "uuid": "0896bee8-d853-4467-8143-96a4d314774c" + }, + { + "label": null, + "output_name": "mapped_reads", + "uuid": "956818b5-dc81-440c-8c2a-b10869547c70" + }, + { + "label": null, + "output_name": "output_log", + "uuid": "5714f89a-1d7f-4634-95ce-2b089e5cc83d" + } + ] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "errors": null, + "id": 5, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "mapped_reads" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Stats", + "name": "input_file" + } + ], + "label": null, + "name": "Stats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1338.5, + "top": 403 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "tool_shed_repository": { + "changeset_revision": "24c5d43cb545", + "name": "samtools_stats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"coverage_max\": \"\\\"1000\\\"\", \"__page__\": null, \"input_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"gc_depth\": \"\\\"20000.0\\\"\", \"insert_size\": \"\\\"8000\\\"\", \"most_inserts\": \"\\\"0.99\\\"\", \"coverage_step\": \"\\\"1\\\"\", \"coverage_min\": \"\\\"1\\\"\", \"read_length\": \"\\\"\\\"\", \"trim_quality\": \"\\\"0\\\"\", \"filter_by_flags\": \"{\\\"__current_case__\\\": 1, \\\"filter_flags\\\": \\\"nofilter\\\"}\", \"split_output\": \"{\\\"__current_case__\\\": 0, \\\"split_output_selector\\\": \\\"no\\\"}\", \"use_reference\": \"{\\\"__current_case__\\\": 1, \\\"use_ref_selector\\\": \\\"no\\\"}\", \"__rerun_remap_job_id__\": null, \"remove_dups\": \"\\\"false\\\"\"}", + "tool_version": "2.0.1", + "type": "tool", + "uuid": "36ad81d4-f920-4ca6-83c2-66516b2229f2", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "eed5af2c-48f7-4227-8d76-0686c0537ccc" + } + ] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.2", + "errors": null, + "id": 6, + "input_connections": { + "alignment": { + "id": 4, + "output_name": "mapped_reads" + }, + "anno|reference_gene_sets": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool featureCounts", + "name": "anno" + }, + { + "description": "runtime parameter for tool featureCounts", + "name": "alignment" + } + ], + "label": null, + "name": "featureCounts", + "outputs": [ + { + "name": "output_medium", + "type": "tabular" + }, + { + "name": "output_bam", + "type": "bam" + }, + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_full", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + }, + { + "name": "output_feature_lengths", + "type": "tabular" + }, + { + "name": "output_jcounts", + "type": "tabular" + } + ], + "position": { + "left": 1141.5, + "top": 814 + }, + "post_job_actions": { + "HideDatasetActionoutput_feature_lengths": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_feature_lengths" + }, + "HideDatasetActionoutput_full": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_full" + }, + "HideDatasetActionoutput_jcounts": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_jcounts" + }, + "HideDatasetActionoutput_medium": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_medium" + }, + "HideDatasetActionoutput_short": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_short" + }, + "HideDatasetActionoutput_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.2", + "tool_shed_repository": { + "changeset_revision": "f3a5f075498f", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"pe_parameters\": \"{\\\"exclude_chimerics\\\": \\\"true\\\", \\\"fragment_counting_enabled\\\": {\\\"__current_case__\\\": 1, \\\"fragment_counting\\\": \\\"\\\"}, \\\"only_both_ends\\\": \\\"false\\\"}\", \"strand_specificity\": \"\\\"0\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"format\": \"\\\"tabdel_short\\\"\", \"include_feature_length_file\": \"\\\"false\\\"\", \"anno\": \"{\\\"__current_case__\\\": 2, \\\"anno_select\\\": \\\"history\\\", \\\"reference_gene_sets\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\", \"extended_parameters\": \"{\\\"R\\\": \\\"true\\\", \\\"by_read_group\\\": \\\"false\\\", \\\"contribute_to_multiple_features\\\": \\\"false\\\", \\\"count_split_alignments_only\\\": \\\"false\\\", \\\"exon_exon_junction_read_counting_enabled\\\": {\\\"__current_case__\\\": 1, \\\"count_exon_exon_junction_reads\\\": \\\"false\\\"}, \\\"frac_overlap\\\": \\\"0\\\", \\\"frac_overlap_feature\\\": \\\"0\\\", \\\"gff_feature_attribute\\\": \\\"gene_id\\\", \\\"gff_feature_type\\\": \\\"exon\\\", \\\"ignore_dup\\\": \\\"false\\\", \\\"largest_overlap\\\": \\\"false\\\", \\\"long_reads\\\": \\\"false\\\", \\\"mapping_quality\\\": \\\"12\\\", \\\"min_overlap\\\": \\\"1\\\", \\\"multimapping_enabled\\\": {\\\"__current_case__\\\": 1, \\\"multimapping_counts\\\": \\\"\\\"}, \\\"primary\\\": \\\"false\\\", \\\"read_extension_3p\\\": \\\"0\\\", \\\"read_extension_5p\\\": \\\"0\\\", \\\"read_reduction\\\": \\\"\\\", \\\"summarization_level\\\": \\\"false\\\"}\", \"alignment\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "1.6.2", + "type": "tool", + "uuid": "9506153d-d997-43a4-8ce1-216690415561", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_bam", + "uuid": "87abf585-aae9-4af3-aed7-541795d65faf" + } + ] + }, + "7": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.5.0", + "errors": null, + "id": 7, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 1643.5, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.5.0", + "tool_shed_repository": { + "changeset_revision": "df99138d2776", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\\\"\\\"\", \"__page__\": null, \"title\": \"\\\"\\\"\", \"__rerun_remap_job_id__\": null, \"results\": \"[{\\\"__index__\\\": 0, \\\"software_cond\\\": {\\\"__current_case__\\\": 20, \\\"output\\\": [{\\\"__index__\\\": 0, \\\"type\\\": {\\\"__current_case__\\\": 0, \\\"input\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"type\\\": \\\"stats\\\"}}], \\\"software\\\": \\\"samtools\\\"}}, {\\\"__index__\\\": 1, \\\"software_cond\\\": {\\\"__current_case__\\\": 7, \\\"output\\\": [{\\\"__index__\\\": 0, \\\"input\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"type\\\": \\\"data\\\"}], \\\"software\\\": \\\"fastqc\\\"}}, {\\\"__index__\\\": 2, \\\"software_cond\\\": {\\\"__current_case__\\\": 7, \\\"output\\\": [{\\\"__index__\\\": 0, \\\"input\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"type\\\": \\\"data\\\"}], \\\"software\\\": \\\"fastqc\\\"}}]\", \"saveLog\": \"\\\"false\\\"\"}", + "tool_version": "1.5.0", + "type": "tool", + "uuid": "c56b2cfb-18c4-4f17-9f5c-a84009e00050", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "2845973b-96f5-44c6-b454-b3e09601972b" + }, + { + "label": null, + "output_name": "log", + "uuid": "9dfc4543-d1d9-40f4-b703-61993f05fbee" + }, + { + "label": null, + "output_name": "html_report", + "uuid": "452d04bd-cdcc-4074-839d-6a70ad44ba55" + } + ] + }, + "8": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "errors": null, + "id": 8, + "input_connections": { + "input_bam": { + "id": 6, + "output_name": "output_bam" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Filter", + "name": "input_bam" + } + ], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file2", + "type": "txt" + }, + { + "name": "out_file1", + "type": "bam" + } + ], + "position": { + "left": 1440.5, + "top": 627.5 + }, + "post_job_actions": { + "HideDatasetActionout_file2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_file2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "tool_shed_repository": { + "changeset_revision": "bd735cae4ce6", + "name": "bamtools_filter", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_bam\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"rule_configuration\": \"{\\\"__current_case__\\\": 1, \\\"rules\\\": \\\"(1 | 2) & 3 & 4\\\", \\\"rules_selector\\\": \\\"true\\\"}\", \"conditions\": \"[{\\\"__index__\\\": 0, \\\"filters\\\": [{\\\"__index__\\\": 0, \\\"bam_property\\\": {\\\"__current_case__\\\": 0, \\\"bam_property_selector\\\": \\\"alignmentFlag\\\", \\\"bam_property_value\\\": \\\"0\\\"}}]}, {\\\"__index__\\\": 1, \\\"filters\\\": [{\\\"__index__\\\": 0, \\\"bam_property\\\": {\\\"__current_case__\\\": 0, \\\"bam_property_selector\\\": \\\"alignmentFlag\\\", \\\"bam_property_value\\\": \\\"16\\\"}}]}, {\\\"__index__\\\": 2, \\\"filters\\\": [{\\\"__index__\\\": 0, \\\"bam_property\\\": {\\\"__current_case__\\\": 21, \\\"bam_property_selector\\\": \\\"tag\\\", \\\"bam_property_value\\\": \\\"nM:<3\\\"}}]}, {\\\"__index__\\\": 3, \\\"filters\\\": [{\\\"__index__\\\": 0, \\\"bam_property\\\": {\\\"__current_case__\\\": 21, \\\"bam_property_selector\\\": \\\"tag\\\", \\\"bam_property_value\\\": \\\"NH:<2\\\"}}]}]\", \"__page__\": null}", + "tool_version": "2.4.1", + "type": "tool", + "uuid": "e65c9b1a-65d2-46dc-8199-0f87acf7f6b1", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "50f1d2af-ca7e-46b1-a9a6-99931ee1fcb5" + } + ] + }, + "9": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count/0.5.3.2", + "errors": null, + "id": 9, + "input_connections": { + "input_bam": { + "id": 8, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool UMI-tools count", + "name": "input_bam" + } + ], + "label": null, + "name": "UMI-tools count", + "outputs": [ + { + "name": "out_counts", + "type": "tabular" + } + ], + "position": { + "left": 1703.5, + "top": 590 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count/0.5.3.2", + "tool_shed_repository": { + "changeset_revision": "b557acca0b56", + "name": "umi_tools_count", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"wide_format_cell_counts\": \"\\\"true\\\"\", \"cond_extra\": \"{\\\"__current_case__\\\": 1, \\\"prepender\\\": \\\"dataset name\\\"}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"edit_distance_threshold\": \"\\\"1\\\"\", \"paired\": \"\\\"false\\\"\", \"input_bam\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"method\": \"\\\"unique\\\"\", \"advanced\": \"{\\\"gene_tag\\\": \\\"XT\\\", \\\"mapping_quality\\\": \\\"0\\\", \\\"per_cell\\\": \\\"true\\\", \\\"per_contig\\\": \\\"false\\\", \\\"random_seed\\\": \\\"0\\\", \\\"skip_tags_regex\\\": \\\"\\\"}\", \"barcodes\": \"{\\\"__current_case__\\\": 0, \\\"extract_umi_method\\\": \\\"read_id\\\", \\\"umi_separator\\\": \\\"_\\\"}\"}", + "tool_version": "0.5.3.2", + "type": "tool", + "uuid": "89675c5a-ef94-49a5-889c-c53ba1074f80", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_counts", + "uuid": "209f3dd6-974f-4e76-a206-c86114a6697f" + } + ] + } + }, + "tags": "", + "uuid": "ee17e23b-42b1-48e8-ad5e-bcb0b7fa8cf0" + }, + "tool_id": "0600e24fe786d72f", + "type": "subworkflow", + "uuid": "e86d6331-50b9-412a-b895-0bda5408d366", + "workflow_outputs": [ + { + "label": null, + "output_name": "4:mapped_reads", + "uuid": "0a5f54e7-09dc-4c35-980a-b617fcfaa2eb" + }, + { + "label": null, + "output_name": "7:html_report", + "uuid": "fea13497-e4cb-47b1-a64d-6883e19def0f" + }, + { + "label": null, + "output_name": "0:output", + "uuid": "65f46424-6d76-4d1f-acd0-aef24e26d10b" + }, + { + "label": null, + "output_name": "10:output", + "uuid": "cc791e7c-9cbb-481d-8deb-39d33f7b2857" + }, + { + "label": null, + "output_name": "4:chimeric_reads", + "uuid": "c6ad66bf-5fde-4440-ab54-4997211c2c3d" + }, + { + "label": null, + "output_name": "4:reads_per_gene", + "uuid": "b4ea5261-7733-4b7e-8e30-1d3535e9cb57" + }, + { + "label": null, + "output_name": "9:out_counts", + "uuid": "58562166-7b2d-4b0d-9172-14a02d7a989a" + }, + { + "label": null, + "output_name": "4:chimeric_junctions", + "uuid": "c33a7acd-f5bc-4ac5-b3d3-a6fb2892c9f6" + }, + { + "label": null, + "output_name": "6:output_bam", + "uuid": "1601b4a1-a302-425d-bad6-7b71d14f9726" + }, + { + "label": null, + "output_name": "8:out_file1", + "uuid": "a7b1aa8e-61cd-4b1c-8fa9-3c85d4113ea5" + }, + { + "label": null, + "output_name": "7:stats", + "uuid": "ac17c572-784c-456e-b3c7-ebaf15c2109e" + }, + { + "label": null, + "output_name": "5:output", + "uuid": "5c220f46-2525-471f-8fd6-0eb17dc689ad" + }, + { + "label": null, + "output_name": "7:log", + "uuid": "3ad7aac8-e4a0-4df1-beb6-88cdcb106e7a" + }, + { + "label": null, + "output_name": "3:out2", + "uuid": "4ff34341-786c-4c66-95c7-6985e4c66ad7" + }, + { + "label": null, + "output_name": "1:output", + "uuid": "78bfe4ce-528c-4d16-8e73-f721b09676be" + }, + { + "label": null, + "output_name": "2:output", + "uuid": "603d0608-7866-4f1d-be85-6a4f3116d5b8" + }, + { + "label": null, + "output_name": "4:splice_junctions", + "uuid": "7f85f228-75da-4933-8157-e6eb4f15bd98" + }, + { + "label": null, + "output_name": "4:output_log", + "uuid": "86003cab-1a90-4871-b489-27eb49715574" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "errors": null, + "id": 5, + "input_connections": { + "input_tabular": { + "id": 4, + "output_name": "9:out_counts" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Column Join", + "name": "input_tabular" + } + ], + "label": null, + "name": "Column Join", + "outputs": [ + { + "name": "tabular_output", + "type": "tabular" + }, + { + "name": "script_output", + "type": "txt" + } + ], + "position": { + "left": 1277.5, + "top": 288 + }, + "post_job_actions": { + "HideDatasetActionscript_output": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "script_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "tool_shed_repository": { + "changeset_revision": "58228a4d58fe", + "name": "collection_column_join", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"identifier_column\": \"\\\"1\\\"\", \"include_outputs\": \"null\", \"__rerun_remap_job_id__\": null, \"input_tabular\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"fill_char\": \"\\\".\\\"\", \"old_col_in_header\": \"\\\"true\\\"\", \"has_header\": \"\\\"1\\\"\"}", + "tool_version": "0.0.3", + "type": "tool", + "uuid": "174c32b6-444c-4762-b9c1-c84201e656ab", + "workflow_outputs": [ + { + "label": null, + "output_name": "tabular_output", + "uuid": "2167fa1b-4865-40b1-9c61-82dd6ba8ccc7" + } + ] + } + ], + "parent_id": "single-cell/scrna-preprocessing", + "path": "topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_mp_celseq.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "CelSeq2: Multi Batch (mm10)", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-preprocessing/versions/scrna-mp-celseq", + "tutorial_id": "scrna-preprocessing", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_mp_celseq.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_mp_celseq.html", + "version": 1, + "wfid": "single-cell-scrna-preprocessing", + "wfname": "scrna-mp-celseq", + "workflow": "scrna_mp_celseq.ga", + "workflow_tools": [ + "__FLATTEN__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.5.0", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.5.2b-2", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count/0.5.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.3.2" + ], + "workflowhub_id": "1218" + }, + { + "creators": [], + "description": "Pre-processing of Single-Cell RNA Data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nBatch\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBarcodes single-col\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGTF file UCSC\"]\n 3[label=\"UMI-tools extract\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Alignment Choose a Genome\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"out2\"]\n 5[label=\"Filter\"]\n 4 -> 5 [label=\"mapped_reads\"]\n 6[label=\"featureCounts\"]\n 5 -> 6 [label=\"out_file1\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"UMI-tools count\"]\n 6 -> 7 [label=\"output_bam\"]\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Batch", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 286, + "top": 293.9166717529297 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c451df86-a25e-409c-9f2e-33c22a0f1bb9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d46989fb-ef46-4506-8932-d66cee38e62a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Barcodes (single-col)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 302.5, + "top": 375 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "4ac7860e-01d4-4009-b1fd-899fab778eb5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2c66b77f-5ee0-4991-971c-3c43d8e7841d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "GTF file (UCSC)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 313.5, + "top": 651.9166717529297 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "0455bae6-58da-4ec3-9688-72aba9f676fe", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7ca9e0df-159c-43f7-a0b3-e546fcd9b2c9" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nBatch\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nBarcodes single-col\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nGTF file UCSC\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"UMI-tools extract\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 4[\"Alignment Choose a Genome\"];\n 2 -->|output| 4;\n 3 -->|out2| 4;\n 5[\"Filter\"];\n 4 -->|mapped_reads| 5;\n 6[\"featureCounts\"];\n 5 -->|out_file1| 6;\n 2 -->|output| 6;\n 7[\"UMI-tools count\"];\n 6 -->|output_bam| 7;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "CelSeq2: Single Batch (mm10)", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Batch", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 286, + "top": 293.9166717529297 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c451df86-a25e-409c-9f2e-33c22a0f1bb9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d46989fb-ef46-4506-8932-d66cee38e62a" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Barcodes (single-col)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 302.5, + "top": 375 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "4ac7860e-01d4-4009-b1fd-899fab778eb5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2c66b77f-5ee0-4991-971c-3c43d8e7841d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "GTF file (UCSC)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 313.5, + "top": 651.9166717529297 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "0455bae6-58da-4ec3-9688-72aba9f676fe", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "7ca9e0df-159c-43f7-a0b3-e546fcd9b2c9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.3.2", + "errors": null, + "id": 3, + "input_connections": { + "barcodes|filter_barcode_file": { + "id": 1, + "output_name": "output" + }, + "input_type|input_readpair": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool UMI-tools extract", + "name": "input_type" + }, + { + "description": "runtime parameter for tool UMI-tools extract", + "name": "barcodes" + } + ], + "label": null, + "name": "UMI-tools extract", + "outputs": [ + { + "name": "out", + "type": "input" + }, + { + "name": "out1", + "type": "input" + }, + { + "name": "out2", + "type": "input" + }, + { + "name": "out_log", + "type": "txt" + } + ], + "position": { + "left": 554.5, + "top": 292.9166717529297 + }, + "post_job_actions": { + "HideDatasetActionout": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out" + }, + "HideDatasetActionout1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out1" + }, + "HideDatasetActionout_log": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_log" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.3.2", + "tool_shed_repository": { + "changeset_revision": "99aea37a7ff7", + "name": "umi_tools_extract", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"extract_method\": \"\\\"string\\\"\", \"input_type\": \"{\\\"input_readpair\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"barcode\\\": {\\\"barcode_select\\\": \\\"first_read_only\\\", \\\"__current_case__\\\": 0}, \\\"type\\\": \\\"paired_collection\\\", \\\"__current_case__\\\": 2}\", \"__rerun_remap_job_id__\": null, \"bc_pattern\": \"\\\"NNNNNNCCCCCC\\\"\", \"print_log\": \"\\\"true\\\"\", \"prime3\": \"\\\"true\\\"\", \"quality\": \"{\\\"quality_selector\\\": \\\"false\\\", \\\"__current_case__\\\": 0}\", \"barcodes\": \"{\\\"filter_correct\\\": \\\"false\\\", \\\"filter_barcode_file\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"__current_case__\\\": 1, \\\"use_barcodes\\\": \\\"yes\\\"}\"}", + "tool_version": "0.5.3.2", + "type": "tool", + "uuid": "0b94d2ea-1889-4b88-b0a2-ac7b0a3452e5", + "workflow_outputs": [ + { + "label": null, + "output_name": "out2", + "uuid": "c24e1482-bbff-4a22-8747-2ab0330fb5af" + } + ] + }, + { + "annotation": "The genome should match that of the GTF file", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.5.2b-2", + "errors": null, + "id": 4, + "input_connections": { + "refGenomeSource|GTFconditional|sjdbGTFfile": { + "id": 2, + "output_name": "output" + }, + "singlePaired|input1": { + "id": 3, + "output_name": "out2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RNA STAR", + "name": "singlePaired" + } + ], + "label": "Alignment (Choose a Genome)", + "name": "RNA STAR", + "outputs": [ + { + "name": "output_log", + "type": "txt" + }, + { + "name": "chimeric_junctions", + "type": "interval" + }, + { + "name": "chimeric_reads", + "type": "bam" + }, + { + "name": "splice_junctions", + "type": "interval" + }, + { + "name": "mapped_reads", + "type": "bam" + }, + { + "name": "reads_per_gene", + "type": "tabular" + } + ], + "position": { + "left": 832.5, + "top": 404.9166717529297 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.5.2b-2", + "tool_shed_repository": { + "changeset_revision": "2055c2667eb3", + "name": "rgrnastar", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"singlePaired\": \"{\\\"sPaired\\\": \\\"single\\\", \\\"input1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"__current_case__\\\": 0}\", \"output_params\": \"{\\\"__current_case__\\\": 1, \\\"output_select\\\": \\\"no\\\"}\", \"__rerun_remap_job_id__\": null, \"params\": \"{\\\"settingsType\\\": \\\"default\\\", \\\"__current_case__\\\": 0}\", \"refGenomeSource\": \"{\\\"GTFconditional\\\": {\\\"genomeDir\\\": \\\"mm10\\\", \\\"sjdbGTFfile\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"GTFselect\\\": \\\"without-gtf\\\", \\\"__current_case__\\\": 1, \\\"sjdbOverhang\\\": \\\"100\\\"}, \\\"geneSource\\\": \\\"indexed\\\", \\\"__current_case__\\\": 0}\", \"quantMode\": \"\\\"false\\\"\"}", + "tool_version": "2.5.2b-2", + "type": "tool", + "uuid": "1e4a54be-b2fb-496a-8247-ccba4ffe6f3b", + "workflow_outputs": [ + { + "label": null, + "output_name": "chimeric_reads", + "uuid": "f44d1ce2-b0a0-4aca-b9da-d47a9151dd8f" + }, + { + "label": null, + "output_name": "chimeric_junctions", + "uuid": "a70f8d45-eaa8-40f4-a755-99e7004ad0ee" + }, + { + "label": null, + "output_name": "reads_per_gene", + "uuid": "70ef8c03-6a54-4c88-81b6-e178dbf776c7" + }, + { + "label": null, + "output_name": "splice_junctions", + "uuid": "0896bee8-d853-4467-8143-96a4d314774c" + }, + { + "label": null, + "output_name": "mapped_reads", + "uuid": "956818b5-dc81-440c-8c2a-b10869547c70" + }, + { + "label": null, + "output_name": "output_log", + "uuid": "5714f89a-1d7f-4634-95ce-2b089e5cc83d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.2", + "errors": null, + "id": 6, + "input_connections": { + "alignment": { + "id": 5, + "output_name": "out_file1" + }, + "anno|reference_gene_sets": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool featureCounts", + "name": "anno" + }, + { + "description": "runtime parameter for tool featureCounts", + "name": "alignment" + } + ], + "label": null, + "name": "featureCounts", + "outputs": [ + { + "name": "output_medium", + "type": "tabular" + }, + { + "name": "output_bam", + "type": "bam" + }, + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_full", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + }, + { + "name": "output_feature_lengths", + "type": "tabular" + }, + { + "name": "output_jcounts", + "type": "tabular" + } + ], + "position": { + "left": 1224.5, + "top": 717 + }, + "post_job_actions": { + "HideDatasetActionoutput_feature_lengths": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_feature_lengths" + }, + "HideDatasetActionoutput_full": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_full" + }, + "HideDatasetActionoutput_jcounts": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_jcounts" + }, + "HideDatasetActionoutput_medium": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_medium" + }, + "HideDatasetActionoutput_short": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_short" + }, + "HideDatasetActionoutput_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.2", + "tool_shed_repository": { + "changeset_revision": "f3a5f075498f", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"pe_parameters\": \"{\\\"only_both_ends\\\": \\\"false\\\", \\\"exclude_chimerics\\\": \\\"true\\\", \\\"fragment_counting_enabled\\\": {\\\"fragment_counting\\\": \\\"\\\", \\\"__current_case__\\\": 1}}\", \"format\": \"\\\"tabdel_short\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"strand_specificity\": \"\\\"1\\\"\", \"include_feature_length_file\": \"\\\"false\\\"\", \"anno\": \"{\\\"anno_select\\\": \\\"history\\\", \\\"reference_gene_sets\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"__current_case__\\\": 2}\", \"extended_parameters\": \"{\\\"gff_feature_attribute\\\": \\\"gene_id\\\", \\\"exon_exon_junction_read_counting_enabled\\\": {\\\"__current_case__\\\": 1, \\\"count_exon_exon_junction_reads\\\": \\\"false\\\"}, \\\"read_extension_3p\\\": \\\"0\\\", \\\"frac_overlap_feature\\\": \\\"0\\\", \\\"min_overlap\\\": \\\"1\\\", \\\"read_extension_5p\\\": \\\"0\\\", \\\"contribute_to_multiple_features\\\": \\\"false\\\", \\\"frac_overlap\\\": \\\"0\\\", \\\"primary\\\": \\\"false\\\", \\\"count_split_alignments_only\\\": \\\"false\\\", \\\"by_read_group\\\": \\\"false\\\", \\\"ignore_dup\\\": \\\"false\\\", \\\"mapping_quality\\\": \\\"12\\\", \\\"summarization_level\\\": \\\"false\\\", \\\"R\\\": \\\"true\\\", \\\"largest_overlap\\\": \\\"false\\\", \\\"read_reduction\\\": \\\"\\\", \\\"multimapping_enabled\\\": {\\\"multimapping_counts\\\": \\\"\\\", \\\"__current_case__\\\": 1}, \\\"long_reads\\\": \\\"false\\\", \\\"gff_feature_type\\\": \\\"exon\\\"}\", \"alignment\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "1.6.2", + "type": "tool", + "uuid": "9506153d-d997-43a4-8ce1-216690415561", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_bam", + "uuid": "87abf585-aae9-4af3-aed7-541795d65faf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count/0.5.3.2", + "errors": null, + "id": 7, + "input_connections": { + "input_bam": { + "id": 6, + "output_name": "output_bam" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool UMI-tools count", + "name": "input_bam" + } + ], + "label": null, + "name": "UMI-tools count", + "outputs": [ + { + "name": "out_counts", + "type": "tabular" + } + ], + "position": { + "left": 1536.5, + "top": 802 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count/0.5.3.2", + "tool_shed_repository": { + "changeset_revision": "b557acca0b56", + "name": "umi_tools_count", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"wide_format_cell_counts\": \"\\\"true\\\"\", \"cond_extra\": \"{\\\"prepender\\\": \\\"none\\\", \\\"__current_case__\\\": 0}\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"edit_distance_threshold\": \"\\\"1\\\"\", \"paired\": \"\\\"false\\\"\", \"input_bam\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"method\": \"\\\"unique\\\"\", \"advanced\": \"{\\\"random_seed\\\": \\\"0\\\", \\\"gene_tag\\\": \\\"XT\\\", \\\"per_contig\\\": \\\"false\\\", \\\"mapping_quality\\\": \\\"0\\\", \\\"skip_tags_regex\\\": \\\"\\\", \\\"per_cell\\\": \\\"true\\\"}\", \"barcodes\": \"{\\\"umi_separator\\\": \\\"_\\\", \\\"extract_umi_method\\\": \\\"read_id\\\", \\\"__current_case__\\\": 0}\"}", + "tool_version": "0.5.3.2", + "type": "tool", + "uuid": "89675c5a-ef94-49a5-889c-c53ba1074f80", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_counts", + "uuid": "209f3dd6-974f-4e76-a206-c86114a6697f" + } + ] + } + ], + "parent_id": "single-cell/scrna-preprocessing", + "path": "topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_pp_celseq.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "CelSeq2: Single Batch (mm10)", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-preprocessing/versions/scrna-pp-celseq", + "tutorial_id": "scrna-preprocessing", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_pp_celseq.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-preprocessing/workflows/scrna_pp_celseq.html", + "version": 1, + "wfid": "single-cell-scrna-preprocessing", + "wfname": "scrna-pp-celseq", + "workflow": "scrna_pp_celseq.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.2", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.5.2b-2", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_count/umi_tools_count/0.5.3.2", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.3.2" + ], + "workflowhub_id": "1214" + } + ], + "zenodo_link": "https://zenodo.org/record/3253142" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "alevin", + "owner": "bgruening", + "revisions": "e32b215b7c04", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "droplet_barcode_plot", + "owner": "ebi-gxa", + "revisions": "8f605643ccfd", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dropletutils_empty_drops", + "owner": "ebi-gxa", + "revisions": "fa662ca7ae7f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dropletutils_read_10x", + "owner": "ebi-gxa", + "revisions": "ca62f52e0d7f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gtf2gene_list", + "owner": "ebi-gxa", + "revisions": "14b3f2a4523b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "salmon_kallisto_mtx_to_10x", + "owner": "ebi-gxa", + "revisions": "88f5a0a6a818", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sceasy_convert", + "owner": "iuc", + "revisions": "2062be7efc84", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: alevin\n owner: bgruening\n revisions: e32b215b7c04\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: droplet_barcode_plot\n owner: ebi-gxa\n revisions: 8f605643ccfd\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dropletutils_empty_drops\n owner: ebi-gxa\n revisions: fa662ca7ae7f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dropletutils_read_10x\n owner: ebi-gxa\n revisions: ca62f52e0d7f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gtf2gene_list\n owner: ebi-gxa\n revisions: 14b3f2a4523b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: salmon_kallisto_mtx_to_10x\n owner: ebi-gxa\n revisions: 88f5a0a6a818\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sceasy_convert\n owner: iuc\n revisions: 2062be7efc84\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "answer_histories": [ + { + "date": "2024-03-22", + "history": "https://usegalaxy.eu/u/j.jakiela/h/generating-a-single-cell-matrix-alevin", + "label": "UseGalaxy.eu" + }, + { + "date": "2024-01-01", + "history": "https://humancellatlas.usegalaxy.eu/u/wendi.bacon.training/h/cs1pre-processing-with-alevin---answer-key", + "label": "Older Alevin version" + } + ], + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_alevin/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist", + "pinin4fjords" + ], + "editing": [ + "hexylena" + ], + "testing": [ + "wee-snufkin" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "email": "jmanning@ebi.ac.uk", + "id": "pinin4fjords", + "joined": "2021-02", + "name": "Jonathan Manning", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pinin4fjords/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pinin4fjords.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_alevin", + "edam_operation": [ + "RNA-Seq quantification", + "Sequence composition calculation", + "Gene expression analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin-combine-datasets" + ], + "type": "internal" + } + ], + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-case_alevin", + "inexact_supported_servers": [], + "input_histories": [ + { + "history": "https://humancellatlas.usegalaxy.eu/u/wendi.bacon.training/h/cs1pre-processing-with-alevin---input-1", + "label": "UseGalaxy.eu" + } + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Create a scanpy-accessible AnnData object from FASTQ files, including relevant gene metadata" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Generate a cellxgene matrix for droplet-based single cell sequencing data", + "Interpret quality control (QC) plots to make informed decisions on cell thresholds", + "Find relevant information in GTF files for the particulars of their study, and include this in data matrix metadata" + ], + "pageviews": 3412, + "priority": 1, + "pub_date": "2021-03-03", + "questions": [ + "I have some single cell FASTQ files I want to analyse. Where do I start?" + ], + "recordings": [ + { + "captioners": [ + "nomadscientist" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "nomadscientist" + ], + "youtube_id": "3ytm2AU6QUc" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/droplet-quantification-preprocessing/tutorial", + "/topics/transcriptomics/tutorials/scrna-case_alevin/tutorial", + "/short/single-cell/scrna-case_alevin", + "/short/T00245" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-intro", + "scrna-umis" + ], + "type": "internal" + } + ], + "short_id": "T00245", + "short_tools": [ + "dropletutils_read_10x", + "sceasy_convert", + "_dropletBarcodePlot", + "Cut1", + "alevin", + "dropletutils_empty_drops", + "join1", + "_ensembl_gtf2gene_list", + "_salmon_kallisto_mtx_to_10x" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication" + ], + "time_estimation": "2H", + "title": "Generating a single cell matrix using Alevin", + "tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/alevin/alevin/1.10.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/droplet_barcode_plot/_dropletBarcodePlot/1.6.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/dropletutils_empty_drops/dropletutils_empty_drops/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/dropletutils_read_10x/dropletutils_read_10x/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/gtf2gene_list/_ensembl_gtf2gene_list/1.52.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/salmon_kallisto_mtx_to_10x/_salmon_kallisto_mtx_to_10x/0.0.1+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/sceasy_convert/sceasy_convert/0.0.7+galaxy2" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_alevin", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_alevin/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_alevin/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_alevin/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 169, + "visitors": 2300, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + }, + { + "class": "Person", + "identifier": "0000-0002-8170-8806", + "name": "Wendi Bacon" + } + ], + "description": "This workflow generates a single cell matrix using Alevin. ", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGTF file\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference FASTA\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRead 1 - containing cell barcode & UMI\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRead 2 - containing transcript\"]\n 4[label=\"GTF2GeneList\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Transcript-gene mapping\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n k773cb4ae56c349c0b582ee69d620def3[color=lightseagreen,label=\"Output\\nfasta_output\"]\n 5 -> k773cb4ae56c349c0b582ee69d620def3\n ka30424b51ddc43249ff6dc5883adcce0[color=lightseagreen,label=\"Output\\nfeature_annotation\"]\n 5 -> ka30424b51ddc43249ff6dc5883adcce0\n 6[label=\"Alevin Processed\"]\n 2 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 5 -> 6 [label=\"fasta_output\"]\n 1 -> 6 [label=\"output\"]\n 5 -> 6 [label=\"feature_annotation\"]\n ka87beb551baf458ebd09bb5ac6ea6e9a[color=lightseagreen,label=\"Output\\nraw_cb_frequency_txt\"]\n 6 -> ka87beb551baf458ebd09bb5ac6ea6e9a\n kc9390a50775c4f0f88e50984d570902c[color=lightseagreen,label=\"Output\\nsalmon_quant_log\"]\n 6 -> kc9390a50775c4f0f88e50984d570902c\n k2cebc438ddc041e089ba49b4bd3e2160[color=lightseagreen,label=\"Output\\nquants_mat_mtx\"]\n 6 -> k2cebc438ddc041e089ba49b4bd3e2160\n k89fa1aad9ec6435197d5f05cac09e08e[color=lightseagreen,label=\"Output\\nquants_mat_cols_txt\"]\n 6 -> k89fa1aad9ec6435197d5f05cac09e08e\n k3b3dda805d354c519ca090a2f909755f[color=lightseagreen,label=\"Output\\nquants_mat_rows_txt\"]\n 6 -> k3b3dda805d354c519ca090a2f909755f\n 7[label=\"Alevin - no processing\"]\n 2 -> 7 [label=\"output\"]\n 3 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"fasta_output\"]\n 1 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"feature_annotation\"]\n k25d4d8f6d166447080fed0fdb0702371[color=lightseagreen,label=\"Output\\nquants_mat_rows_txt_1\"]\n 7 -> k25d4d8f6d166447080fed0fdb0702371\n kd9ed1457792b4eafa9fc2407bcd90da7[color=lightseagreen,label=\"Output\\nquants_mat_mtx_1\"]\n 7 -> kd9ed1457792b4eafa9fc2407bcd90da7\n k40df6aa83dfa4946bbc8cacf4ca2a20e[color=lightseagreen,label=\"Output\\nquants_mat_cols_txt_1\"]\n 7 -> k40df6aa83dfa4946bbc8cacf4ca2a20e\n 8[label=\"Droplet rank plot - raw barcodes\"]\n 6 -> 8 [label=\"raw_cb_frequency_txt\"]\n 9[label=\"Droplet rank plot - Alevin barcodes\"]\n 6 -> 9 [label=\"quants_mat_mtx\"]\n 10[label=\"salmonKallistoMtxTo10x\"]\n 7 -> 10 [label=\"quants_mat_rows_txt\"]\n 7 -> 10 [label=\"quants_mat_cols_txt\"]\n 7 -> 10 [label=\"quants_mat_mtx\"]\n 11[label=\"Join two Datasets\"]\n 10 -> 11 [label=\"genes_out\"]\n 4 -> 11 [label=\"feature_annotation\"]\n 12[label=\"Cut\"]\n 11 -> 12 [label=\"out_file1\"]\n 13[label=\"DropletUtils Read10x\"]\n 10 -> 13 [label=\"barcodes_out\"]\n 12 -> 13 [label=\"out_file1\"]\n 10 -> 13 [label=\"matrix_out\"]\n 14[label=\"DropletUtils emptyDrops\"]\n 13 -> 14 [label=\"output_rds\"]\n 15[label=\"SCEasy Converter\"]\n 14 -> 15 [label=\"output_rdata\"]\n}", + "history": [ + { + "hash": "927da941a1ce7627ff0d5d5635d74cfa8abdff1f", + "message": "add workflow tests", + "num": 2, + "short_hash": "927da941a", + "unix": "1711095976" + }, + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "You can find the file containing the gene information for your species here: \nhttp://www.ensembl.org/info/data/ftp/index.html/", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "You can find the file containing the gene information for your species here: \nhttp://www.ensembl.org/info/data/ftp/index.html/", + "name": "GTF file" + } + ], + "label": "GTF file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 58.60616823526459, + "top": 88.90721532236475 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "09e96b1f-f0e5-4e1a-b418-cd4ecc706e35", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "You can find this file for your species here: http://www.ensembl.org/info/data/ftp/index.html/", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "You can find this file for your species here: http://www.ensembl.org/info/data/ftp/index.html/", + "name": "Reference FASTA" + } + ], + "label": "Reference FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 83.54487198456434, + "top": 288.0815521308393 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "43c0a6ac-36dc-4b35-9bca-83063de43a8a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "This should be a fast file containing the shorter read - i.e. the cell barcode and the unique molecular identifier", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "This should be a fast file containing the shorter read - i.e. the cell barcode and the unique molecular identifier", + "name": "Read 1 - containing cell barcode & UMI" + } + ], + "label": "Read 1 - containing cell barcode & UMI", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.18723338168473447, + "top": 439.63352912048805 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ed68f7dd-faa4-453e-9050-8fbfb0027928", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "This should be the read containing the transcript", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "This should be the read containing the transcript", + "name": "Read 2 - containing transcript" + } + ], + "label": "Read 2 - containing transcript", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 611.9759545962928 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "508c574e-8ca2-46b0-b753-b96c5b797fd2", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGTF file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference FASTA\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nRead 1 - containing cell barcode & UMI\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nRead 2 - containing transcript\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"GTF2GeneList\"];\n 0 -->|output| 4;\n 5[\"Transcript-gene mapping\"];\n 1 -->|output| 5;\n 0 -->|output| 5;\n 773cb4ae-56c3-49c0-b582-ee69d620def3[\"Output\\nfasta_output\"];\n 5 --> 773cb4ae-56c3-49c0-b582-ee69d620def3;\n style 773cb4ae-56c3-49c0-b582-ee69d620def3 stroke:#2c3143,stroke-width:4px;\n a30424b5-1ddc-4324-9ff6-dc5883adcce0[\"Output\\nfeature_annotation\"];\n 5 --> a30424b5-1ddc-4324-9ff6-dc5883adcce0;\n style a30424b5-1ddc-4324-9ff6-dc5883adcce0 stroke:#2c3143,stroke-width:4px;\n 6[\"Alevin Processed\"];\n 2 -->|output| 6;\n 3 -->|output| 6;\n 5 -->|fasta_output| 6;\n 1 -->|output| 6;\n 5 -->|feature_annotation| 6;\n a87beb55-1baf-458e-bd09-bb5ac6ea6e9a[\"Output\\nraw_cb_frequency_txt\"];\n 6 --> a87beb55-1baf-458e-bd09-bb5ac6ea6e9a;\n style a87beb55-1baf-458e-bd09-bb5ac6ea6e9a stroke:#2c3143,stroke-width:4px;\n c9390a50-775c-4f0f-88e5-0984d570902c[\"Output\\nsalmon_quant_log\"];\n 6 --> c9390a50-775c-4f0f-88e5-0984d570902c;\n style c9390a50-775c-4f0f-88e5-0984d570902c stroke:#2c3143,stroke-width:4px;\n 2cebc438-ddc0-41e0-89ba-49b4bd3e2160[\"Output\\nquants_mat_mtx\"];\n 6 --> 2cebc438-ddc0-41e0-89ba-49b4bd3e2160;\n style 2cebc438-ddc0-41e0-89ba-49b4bd3e2160 stroke:#2c3143,stroke-width:4px;\n 89fa1aad-9ec6-4351-97d5-f05cac09e08e[\"Output\\nquants_mat_cols_txt\"];\n 6 --> 89fa1aad-9ec6-4351-97d5-f05cac09e08e;\n style 89fa1aad-9ec6-4351-97d5-f05cac09e08e stroke:#2c3143,stroke-width:4px;\n 3b3dda80-5d35-4c51-9ca0-90a2f909755f[\"Output\\nquants_mat_rows_txt\"];\n 6 --> 3b3dda80-5d35-4c51-9ca0-90a2f909755f;\n style 3b3dda80-5d35-4c51-9ca0-90a2f909755f stroke:#2c3143,stroke-width:4px;\n 7[\"Alevin - no processing\"];\n 2 -->|output| 7;\n 3 -->|output| 7;\n 5 -->|fasta_output| 7;\n 1 -->|output| 7;\n 5 -->|feature_annotation| 7;\n 25d4d8f6-d166-4470-80fe-d0fdb0702371[\"Output\\nquants_mat_rows_txt_1\"];\n 7 --> 25d4d8f6-d166-4470-80fe-d0fdb0702371;\n style 25d4d8f6-d166-4470-80fe-d0fdb0702371 stroke:#2c3143,stroke-width:4px;\n d9ed1457-792b-4eaf-a9fc-2407bcd90da7[\"Output\\nquants_mat_mtx_1\"];\n 7 --> d9ed1457-792b-4eaf-a9fc-2407bcd90da7;\n style d9ed1457-792b-4eaf-a9fc-2407bcd90da7 stroke:#2c3143,stroke-width:4px;\n 40df6aa8-3dfa-4946-bbc8-cacf4ca2a20e[\"Output\\nquants_mat_cols_txt_1\"];\n 7 --> 40df6aa8-3dfa-4946-bbc8-cacf4ca2a20e;\n style 40df6aa8-3dfa-4946-bbc8-cacf4ca2a20e stroke:#2c3143,stroke-width:4px;\n 8[\"Droplet rank plot - raw barcodes\"];\n 6 -->|raw_cb_frequency_txt| 8;\n 9[\"Droplet rank plot - Alevin barcodes\"];\n 6 -->|quants_mat_mtx| 9;\n 10[\"salmonKallistoMtxTo10x\"];\n 7 -->|quants_mat_rows_txt| 10;\n 7 -->|quants_mat_cols_txt| 10;\n 7 -->|quants_mat_mtx| 10;\n 11[\"Join two Datasets\"];\n 10 -->|genes_out| 11;\n 4 -->|feature_annotation| 11;\n 12[\"Cut\"];\n 11 -->|out_file1| 12;\n 13[\"DropletUtils Read10x\"];\n 10 -->|barcodes_out| 13;\n 12 -->|out_file1| 13;\n 10 -->|matrix_out| 13;\n 14[\"DropletUtils emptyDrops\"];\n 13 -->|output_rds| 14;\n 15[\"SCEasy Converter\"];\n 14 -->|output_rdata| 15;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Generating a single cell matrix using Alevin", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/gtf2gene_list/_ensembl_gtf2gene_list/1.52.0+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "cdnas|fasta_input": { + "id": 1, + "output_name": "output" + }, + "gtf_input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Transcript-gene mapping", + "name": "GTF2GeneList", + "outputs": [ + { + "name": "feature_annotation", + "type": "tsv" + }, + { + "name": "fasta_output", + "type": "fasta.gz" + } + ], + "position": { + "left": 374.4625157115551, + "top": 351.46516186147346 + }, + "post_job_actions": { + "RenameDatasetActionfasta_output": { + "action_arguments": { + "newname": "Filtered fasta" + }, + "action_type": "RenameDatasetAction", + "output_name": "fasta_output" + }, + "RenameDatasetActionfeature_annotation": { + "action_arguments": { + "newname": "Map" + }, + "action_type": "RenameDatasetAction", + "output_name": "feature_annotation" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/gtf2gene_list/_ensembl_gtf2gene_list/1.52.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "14b3f2a4523b", + "name": "gtf2gene_list", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"cdnas\": {\"parse_cdnas\": true, \"__current_case__\": 0, \"fasta_input\": {\"__class__\": \"ConnectedValue\"}, \"cdnas_field\": \"transcript_id\", \"parse_cdna_names\": false, \"filter_cdnas\": true}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"feature_type\": \"transcript\", \"fields\": \"transcript_id,gene_id\", \"fill_empty\": \"\", \"first_field\": \"transcript_id\", \"gtf_input\": {\"__class__\": \"ConnectedValue\"}, \"mito\": {\"mark_mito\": false, \"__current_case__\": 1}, \"noheader\": true, \"version_transcripts\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.52.0+galaxy0", + "type": "tool", + "uuid": "098be95e-54cb-4d1f-96a7-3e79ec4870b6", + "when": null, + "workflow_outputs": [ + { + "label": "fasta_output", + "output_name": "fasta_output", + "uuid": "773cb4ae-56c3-49c0-b582-ee69d620def3" + }, + { + "label": "feature_annotation", + "output_name": "feature_annotation", + "uuid": "a30424b5-1ddc-4324-9ff6-dc5883adcce0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/alevin/alevin/1.10.1+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "pairstraight|file1": { + "id": 2, + "output_name": "output" + }, + "pairstraight|file2": { + "id": 3, + "output_name": "output" + }, + "refTranscriptSource|s_index|fasta": { + "id": 5, + "output_name": "fasta_output" + }, + "refTranscriptSource|s_index|genome": { + "id": 1, + "output_name": "output" + }, + "tgmap": { + "id": 5, + "output_name": "feature_annotation" + } + }, + "inputs": [], + "label": "Alevin Processed", + "name": "Alevin", + "outputs": [ + { + "name": "quants_mat_mtx", + "type": "mtx" + }, + { + "name": "quants_mat_gz", + "type": "gz" + }, + { + "name": "quants_mat_cols_txt", + "type": "txt" + }, + { + "name": "quants_mat_rows_txt", + "type": "txt" + }, + { + "name": "quants_tier_mat", + "type": "gz" + }, + { + "name": "featureDump_txt", + "type": "txt" + }, + { + "name": "raw_cb_frequency_txt", + "type": "txt" + }, + { + "name": "whitelist_txt", + "type": "txt" + }, + { + "name": "salmon_quant_log", + "type": "txt" + } + ], + "position": { + "left": 646.2074090941105, + "top": 77.77185227276172 + }, + "post_job_actions": { + "HideDatasetActionfeatureDump_txt": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "featureDump_txt" + }, + "HideDatasetActionquants_tier_mat": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "quants_tier_mat" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/alevin/alevin/1.10.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e32b215b7c04", + "name": "alevin", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"optional\": {\"whitelist\": null, \"noDedup\": false, \"mrna\": null, \"rrna\": null, \"dumpMtx\": true, \"forceCells\": null, \"expectCells\": null, \"numCellBootstraps\": \"0\", \"minScoreFraction\": null, \"keepCBFraction\": null, \"maxNumBarcodes\": \"100000\", \"freqThreshold\": \"10\"}, \"output_files\": [\"salmon_log\", \"dumpFeatures\"], \"pairstraight\": {\"readselect\": \"paired\", \"__current_case__\": 0, \"file1\": {\"__class__\": \"ConnectedValue\"}, \"file2\": {\"__class__\": \"ConnectedValue\"}, \"libtype\": {\"strandedness\": \"A\", \"__current_case__\": 0}}, \"protocol_cond\": {\"protocol\": \"--dropseq\", \"__current_case__\": 0}, \"refTranscriptSource\": {\"TranscriptSource\": \"history\", \"__current_case__\": 1, \"s_index\": {\"fasta\": {\"__class__\": \"ConnectedValue\"}, \"genome\": {\"__class__\": \"ConnectedValue\"}, \"kmer\": \"31\", \"phash\": false}}, \"tgmap\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.10.1+galaxy0", + "type": "tool", + "uuid": "7e94ce4f-e45d-4be8-8994-df14c329cba8", + "when": null, + "workflow_outputs": [ + { + "label": "raw_cb_frequency_txt", + "output_name": "raw_cb_frequency_txt", + "uuid": "a87beb55-1baf-458e-bd09-bb5ac6ea6e9a" + }, + { + "label": "salmon_quant_log", + "output_name": "salmon_quant_log", + "uuid": "c9390a50-775c-4f0f-88e5-0984d570902c" + }, + { + "label": "quants_mat_mtx", + "output_name": "quants_mat_mtx", + "uuid": "2cebc438-ddc0-41e0-89ba-49b4bd3e2160" + }, + { + "label": "quants_mat_cols_txt", + "output_name": "quants_mat_cols_txt", + "uuid": "89fa1aad-9ec6-4351-97d5-f05cac09e08e" + }, + { + "label": "quants_mat_rows_txt", + "output_name": "quants_mat_rows_txt", + "uuid": "3b3dda80-5d35-4c51-9ca0-90a2f909755f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/alevin/alevin/1.10.1+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "pairstraight|file1": { + "id": 2, + "output_name": "output" + }, + "pairstraight|file2": { + "id": 3, + "output_name": "output" + }, + "refTranscriptSource|s_index|fasta": { + "id": 5, + "output_name": "fasta_output" + }, + "refTranscriptSource|s_index|genome": { + "id": 1, + "output_name": "output" + }, + "tgmap": { + "id": 5, + "output_name": "feature_annotation" + } + }, + "inputs": [], + "label": "Alevin - no processing", + "name": "Alevin", + "outputs": [ + { + "name": "quants_mat_mtx", + "type": "mtx" + }, + { + "name": "quants_mat_gz", + "type": "gz" + }, + { + "name": "quants_mat_cols_txt", + "type": "txt" + }, + { + "name": "quants_mat_rows_txt", + "type": "txt" + }, + { + "name": "quants_tier_mat", + "type": "gz" + }, + { + "name": "featureDump_txt", + "type": "txt" + }, + { + "name": "raw_cb_frequency_txt", + "type": "txt" + }, + { + "name": "whitelist_txt", + "type": "txt" + }, + { + "name": "salmon_quant_log", + "type": "txt" + } + ], + "position": { + "left": 746.3694565659698, + "top": 916.0501011256805 + }, + "post_job_actions": { + "HideDatasetActionfeatureDump_txt": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "featureDump_txt" + }, + "HideDatasetActionquants_tier_mat": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "quants_tier_mat" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/alevin/alevin/1.10.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "e32b215b7c04", + "name": "alevin", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"optional\": {\"whitelist\": null, \"noDedup\": false, \"mrna\": null, \"rrna\": null, \"dumpMtx\": true, \"forceCells\": null, \"expectCells\": null, \"numCellBootstraps\": \"0\", \"minScoreFraction\": null, \"keepCBFraction\": \"1.0\", \"maxNumBarcodes\": \"100000\", \"freqThreshold\": \"3\"}, \"output_files\": [\"salmon_log\", \"dumpFeatures\"], \"pairstraight\": {\"readselect\": \"paired\", \"__current_case__\": 0, \"file1\": {\"__class__\": \"ConnectedValue\"}, \"file2\": {\"__class__\": \"ConnectedValue\"}, \"libtype\": {\"strandedness\": \"A\", \"__current_case__\": 0}}, \"protocol_cond\": {\"protocol\": \"--dropseq\", \"__current_case__\": 0}, \"refTranscriptSource\": {\"TranscriptSource\": \"history\", \"__current_case__\": 1, \"s_index\": {\"fasta\": {\"__class__\": \"ConnectedValue\"}, \"genome\": {\"__class__\": \"ConnectedValue\"}, \"kmer\": \"31\", \"phash\": false}}, \"tgmap\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.10.1+galaxy0", + "type": "tool", + "uuid": "ee90c5ca-c7be-4544-b49e-e6568486ab8d", + "when": null, + "workflow_outputs": [ + { + "label": "quants_mat_rows_txt_1", + "output_name": "quants_mat_rows_txt", + "uuid": "25d4d8f6-d166-4470-80fe-d0fdb0702371" + }, + { + "label": "quants_mat_mtx_1", + "output_name": "quants_mat_mtx", + "uuid": "d9ed1457-792b-4eaf-a9fc-2407bcd90da7" + }, + { + "label": "quants_mat_cols_txt_1", + "output_name": "quants_mat_cols_txt", + "uuid": "40df6aa8-3dfa-4946-bbc8-cacf4ca2a20e" + } + ] + } + ], + "parent_id": "single-cell/scrna-case_alevin", + "path": "topics/single-cell/tutorials/scrna-case_alevin/workflows/Generating-a-single-cell-matrix-using-Alevin.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Generating a single cell matrix using Alevin", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_alevin/versions/generating-a-single-cell-matrix-using-alevin", + "tutorial_id": "scrna-case_alevin", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_alevin/workflows/Generating-a-single-cell-matrix-using-Alevin.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_alevin/workflows/Generating-a-single-cell-matrix-using-Alevin.html", + "version": 2, + "wfid": "single-cell-scrna-case_alevin", + "wfname": "generating-a-single-cell-matrix-using-alevin", + "workflow": "Generating-a-single-cell-matrix-using-Alevin.ga", + "workflow_tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/alevin/alevin/1.10.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/droplet_barcode_plot/_dropletBarcodePlot/1.6.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/dropletutils_empty_drops/dropletutils_empty_drops/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/dropletutils_read_10x/dropletutils_read_10x/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/gtf2gene_list/_ensembl_gtf2gene_list/1.52.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/salmon_kallisto_mtx_to_10x/_salmon_kallisto_mtx_to_10x/0.0.1+galaxy6", + "toolshed.g2.bx.psu.edu/repos/iuc/sceasy_convert/sceasy_convert/0.0.7+galaxy2" + ], + "workflowhub_id": "1263" + } + ], + "zenodo_link": "https://zenodo.org/record/4574153" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_to_tabular", + "owner": "devteam", + "revisions": "4b347702c4aa", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_fastq", + "owner": "devteam", + "revisions": "2dcfbbf9071a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_ops", + "owner": "ebi-gxa", + "revisions": "a0274bc43b7e", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dropletutils_read_10x", + "owner": "ebi-gxa", + "revisions": "ca62f52e0d7f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_create", + "owner": "ebi-gxa", + "revisions": "ada68a9d0aec", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "revisions": "356fa6c27341", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sceasy_convert", + "owner": "ebi-gxa", + "revisions": "f62bc418173f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_read10x", + "owner": "ebi-gxa", + "revisions": "301cf1b4b43d", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "399da6b5ec21", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "6f0d0c784f09", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "ee98d611afc6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_transpose", + "owner": "iuc", + "revisions": "ac092723240d", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_transpose", + "owner": "iuc", + "revisions": "374cb875d38a", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_transpose", + "owner": "iuc", + "revisions": "a513e3fbb4c5", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dropletutils", + "owner": "iuc", + "revisions": "a9caad671439", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sceasy_convert", + "owner": "iuc", + "revisions": "2062be7efc84", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_to_tabular\n owner: devteam\n revisions: 4b347702c4aa\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_fastq\n owner: devteam\n revisions: 2dcfbbf9071a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_ops\n owner: ebi-gxa\n revisions: a0274bc43b7e\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dropletutils_read_10x\n owner: ebi-gxa\n revisions: ca62f52e0d7f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_create\n owner: ebi-gxa\n revisions: ada68a9d0aec\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter_cells\n owner: ebi-gxa\n revisions: 356fa6c27341\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sceasy_convert\n owner: ebi-gxa\n revisions: f62bc418173f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_read10x\n owner: ebi-gxa\n revisions: 301cf1b4b43d\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 399da6b5ec21\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: 6f0d0c784f09\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: ee98d611afc6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_transpose\n owner: iuc\n revisions: ac092723240d\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_transpose\n owner: iuc\n revisions: 374cb875d38a\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_transpose\n owner: iuc\n revisions: a513e3fbb4c5\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dropletutils\n owner: iuc\n revisions: a9caad671439\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sceasy_convert\n owner: iuc\n revisions: 2062be7efc84\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-data-ingest/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "hexhowells", + "nomadscientist" + ], + "editing": [ + "hexylena" + ], + "funding": [ + "elixir-fair-data" + ], + "testing": [ + "pavanvidem", + "mtekman" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "email": "hexhowells@gmail.com", + "id": "hexhowells", + "joined": "2023-06", + "name": "Morgan Howells", + "orcid": "0009-0008-9422-6380", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexhowells/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexhowells.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This work has been funded by the ELIXIR-UK FAIR Data Stewardship training UKRI award (MR/V038966/1)", + "funding_system": "ukri", + "github": false, + "id": "elixir-fair-data", + "joined": "2023-06", + "name": "ELIXIR-UK: FAIR Data Stewardship training", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-fair-data/", + "short_name": "ELIXIR Fair Data", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-fair-data.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-data-ingest", + "edam_operation": [ + "Loading", + "Community profiling" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "type": "internal" + } + ], + "hands_on": true, + "id": "single-cell/scrna-data-ingest", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Single cell data from different sources may have unfamiliar formatting and thus may require different ways of ingesting it into Galaxy.", + "There are many ways of importing single cell files into Galaxy and converting between single cell formats." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-04-10", + "objectives": [ + "You will identify different single cell files formats.", + "You will import single cell data into Galaxy using different methods.", + "You will manipulate the metadata and matrix files.", + "You will perform conversions between the most common single cell formats.", + "You will downsample FASTQ files." + ], + "pageviews": 779, + "priority": 1, + "pub_date": "2024-02-13", + "questions": [ + "What are the most popular single cell datatypes?", + "What if the format of my files is different than that used in the tutorial I want to follow?", + "Where should I start the analysis, depending on the format of my data?", + "How do I ingest data into Galaxy?", + "How do I convert datasets between formats?" + ], + "short_id": "T00418", + "short_tools": [ + "anndata_ops", + "dropletutils_read_10x", + "anndata_inspect", + "sceasy_convert", + "tp_cut_tool", + "scanpy_filter_cells", + "datamash_transpose", + "tp_tail_tool", + "seurat_read10x", + "Cut1", + "tabular_to_fastq", + "Filter1", + "fastq_to_tabular", + "monocle3_create", + "dropletutils", + "join1", + "regexColumn1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "datamanipulation", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "data management", + "data import" + ], + "time_estimation": "1H", + "title": "Converting between common single cell data formats", + "tools": [ + "Cut1", + "Filter1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_to_tabular/fastq_to_tabular/1.1.5", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fastq/tabular_to_fastq/1.1.5", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy92", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/dropletutils_read_10x/dropletutils_read_10x/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy93", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/sceasy_convert/sceasy_convert/0.0.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/3.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/dropletutils/dropletutils/1.10.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/sceasy_convert/sceasy_convert/0.0.7+galaxy2" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-data-ingest", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-data-ingest/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-data-ingest/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-data-ingest/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 113, + "visitors": 632, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + } + ], + "description": "AnnData to CDS format conversion (manually using Galaxy buttons). This workflow does not include renaming the column containing gene symbols. ", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnData\"]\n 1[label=\"Inspect AnnData\"]\n 0 -> 1 [label=\"output\"]\n k7bdb825c6a894a34bbd9a79c309c9750[color=lightseagreen,label=\"Output\\nInspect AnnData: obs\"]\n 1 -> k7bdb825c6a894a34bbd9a79c309c9750\n 2[label=\"Inspect AnnData\"]\n 0 -> 2 [label=\"output\"]\n k79a2e3e54bd642de864ca5dc2412cb86[color=lightseagreen,label=\"Output\\nInspect AnnData: var\"]\n 2 -> k79a2e3e54bd642de864ca5dc2412cb86\n 3[label=\"Inspect AnnData\"]\n 0 -> 3 [label=\"output\"]\n k7a2549547e324e8abd4ca79abf9db8d8[color=lightseagreen,label=\"Output\\nInspect AnnData: X\"]\n 3 -> k7a2549547e324e8abd4ca79abf9db8d8\n 4[label=\"Transpose\"]\n 3 -> 4 [label=\"X\"]\n 5[label=\"Monocle3 create\"]\n 1 -> 5 [label=\"obs\"]\n 4 -> 5 [label=\"out_file\"]\n 2 -> 5 [label=\"var\"]\n k6bf4a0ea3cb9470c98630a7eb0bc3d8c[color=lightseagreen,label=\"Output\\nCDS Monocle file\"]\n 5 -> k6bf4a0ea3cb9470c98630a7eb0bc3d8c\n}", + "history": [ + { + "hash": "40f55005d0fc9cb755f3155628100d21a7b56f9c", + "message": "workflow tests", + "num": 3, + "short_hash": "40f55005d", + "unix": "1702677296" + }, + { + "hash": "0ab6c516044186646461c89de7f967ece1cda149", + "message": "remove old workflows", + "num": 2, + "short_hash": "0ab6c5160", + "unix": "1702676696" + }, + { + "hash": "52dc12cd227d3066ec364ddcf50d8c8ce9752119", + "message": "anndata -> cds workflow tests", + "num": 1, + "short_hash": "52dc12cd2", + "unix": "1702504124" + } + ], + "inputs": [ + { + "annotation": "Input file in AnnData format", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Input file in AnnData format", + "name": "AnnData" + } + ], + "label": "AnnData", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "803b5429-24a8-4ba8-b9f0-d9012a23d190", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAnnData\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Inspect AnnData\"];\n 0 -->|output| 1;\n 7bdb825c-6a89-4a34-bbd9-a79c309c9750[\"Output\\nInspect AnnData: obs\"];\n 1 --> 7bdb825c-6a89-4a34-bbd9-a79c309c9750;\n style 7bdb825c-6a89-4a34-bbd9-a79c309c9750 stroke:#2c3143,stroke-width:4px;\n 2[\"Inspect AnnData\"];\n 0 -->|output| 2;\n 79a2e3e5-4bd6-42de-864c-a5dc2412cb86[\"Output\\nInspect AnnData: var\"];\n 2 --> 79a2e3e5-4bd6-42de-864c-a5dc2412cb86;\n style 79a2e3e5-4bd6-42de-864c-a5dc2412cb86 stroke:#2c3143,stroke-width:4px;\n 3[\"Inspect AnnData\"];\n 0 -->|output| 3;\n 7a254954-7e32-4e8a-bd4c-a79abf9db8d8[\"Output\\nInspect AnnData: X\"];\n 3 --> 7a254954-7e32-4e8a-bd4c-a79abf9db8d8;\n style 7a254954-7e32-4e8a-bd4c-a79abf9db8d8 stroke:#2c3143,stroke-width:4px;\n 4[\"Transpose\"];\n 3 -->|X| 4;\n 5[\"Monocle3 create\"];\n 1 -->|obs| 5;\n 4 -->|out_file| 5;\n 2 -->|var| 5;\n 6bf4a0ea-3cb9-470c-9863-0a7eb0bc3d8c[\"Output\\nCDS Monocle file\"];\n 5 --> 6bf4a0ea-3cb9-470c-9863-0a7eb0bc3d8c;\n style 6bf4a0ea-3cb9-470c-9863-0a7eb0bc3d8c stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "AnnData to Cell Data Set (CDS) conversion", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "obs", + "type": "tabular" + } + ], + "position": { + "left": 256.73787564688695, + "top": 79.01355786263034 + }, + "post_job_actions": { + "RenameDatasetActionobs": { + "action_arguments": { + "newname": "Cell barcodes" + }, + "action_type": "RenameDatasetAction", + "output_name": "obs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"obs\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "3dd0c427-0689-47b4-bfe4-1ad3127972d8", + "when": null, + "workflow_outputs": [ + { + "label": "Inspect AnnData: obs", + "output_name": "obs", + "uuid": "7bdb825c-6a89-4a34-bbd9-a79c309c9750" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "var", + "type": "tabular" + } + ], + "position": { + "left": 298.0404350277319, + "top": 221.00360766192858 + }, + "post_job_actions": { + "RenameDatasetActionvar": { + "action_arguments": { + "newname": "Genes" + }, + "action_type": "RenameDatasetAction", + "output_name": "var" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"var\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "dd941b59-7d88-4f2a-8241-9ce658bab555", + "when": null, + "workflow_outputs": [ + { + "label": "Inspect AnnData: var", + "output_name": "var", + "uuid": "79a2e3e5-4bd6-42de-864c-a5dc2412cb86" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "X", + "type": "tabular" + } + ], + "position": { + "left": 362.5640208496929, + "top": 368.5465046492902 + }, + "post_job_actions": { + "RenameDatasetActionX": { + "action_arguments": { + "newname": "Expression matrix" + }, + "action_type": "RenameDatasetAction", + "output_name": "X" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"X\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "535c49c0-591e-47b6-8816-20ee58cd7e37", + "when": null, + "workflow_outputs": [ + { + "label": "Inspect AnnData: X", + "output_name": "X", + "uuid": "7a254954-7e32-4e8a-bd4c-a79abf9db8d8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "errors": null, + "id": 5, + "input_connections": { + "cell_metadata": { + "id": 1, + "output_name": "obs" + }, + "expression_matrix": { + "id": 4, + "output_name": "out_file" + }, + "gene_annotation": { + "id": 2, + "output_name": "var" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 create", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 848.1105796111376, + "top": 495.7890097555672 + }, + "post_job_actions": { + "RenameDatasetActionoutput_rds": { + "action_arguments": { + "newname": "CDS Monocle file" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_rds" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "ada68a9d0aec", + "name": "monocle3_create", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"cell_metadata\": {\"__class__\": \"ConnectedValue\"}, \"cell_metadata_format\": \"tsv\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"expression_matrix\": {\"__class__\": \"ConnectedValue\"}, \"expression_matrix_format\": \"tsv\", \"gene_annotation\": {\"__class__\": \"ConnectedValue\"}, \"gene_annotation_format\": \"tsv\", \"introspective\": true, \"output_object_format\": \"cds3\", \"verbose\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy2", + "type": "tool", + "uuid": "17a4bbe9-5a3c-4c54-b581-c24588ccf397", + "when": null, + "workflow_outputs": [ + { + "label": "CDS Monocle file", + "output_name": "output_rds", + "uuid": "6bf4a0ea-3cb9-470c-9863-0a7eb0bc3d8c" + } + ] + } + ], + "parent_id": "single-cell/scrna-data-ingest", + "path": "topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Cell-Data-Set-(CDS)-conversion.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "AnnData to Cell Data Set (CDS) conversion", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-data-ingest/versions/anndata-to-cell-data-set--cds--conversion", + "tutorial_id": "scrna-data-ingest", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Cell-Data-Set-(CDS)-conversion.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Cell-Data-Set-(CDS)-conversion.html", + "version": 1, + "wfid": "single-cell-scrna-data-ingest", + "wfname": "anndata-to-cell-data-set--cds--conversion", + "workflow": "AnnData-to-Cell-Data-Set-(CDS)-conversion.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.8+galaxy1" + ], + "workflowhub_id": "1251" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + }, + { + "class": "Person", + "identifier": "0009-0008-9422-6380", + "name": "Morgan Howells" + } + ], + "description": "AnnData to Seurat format conversion (manually using Galaxy buttons)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnData\"]\n 1[label=\"Inspect AnnData\"]\n 0 -> 1 [label=\"output\"]\n k6d03d7138d714f6a9f83cd999f423ebf[color=lightseagreen,label=\"Output\\nInspect AnnData: obs\"]\n 1 -> k6d03d7138d714f6a9f83cd999f423ebf\n 2[label=\"Inspect AnnData\"]\n 0 -> 2 [label=\"output\"]\n kea025a8a6f3a4e38a3afdb406886c7de[color=lightseagreen,label=\"Output\\nInspect AnnData: X\"]\n 2 -> kea025a8a6f3a4e38a3afdb406886c7de\n 3[label=\"Transpose\"]\n 2 -> 3 [label=\"X\"]\n 4[label=\"DropletUtils\"]\n 3 -> 4 [label=\"out_file\"]\n 5[label=\"Seurat Read10x\"]\n 4 -> 5 [label=\"barcodes_out\"]\n 4 -> 5 [label=\"genes_out\"]\n 4 -> 5 [label=\"matrix_out\"]\n 1 -> 5 [label=\"obs\"]\n ke5fec5dc470648e5832605e70290552d[color=lightseagreen,label=\"Output\\nConverted Seurat object\"]\n 5 -> ke5fec5dc470648e5832605e70290552d\n}", + "history": [ + { + "hash": "40f55005d0fc9cb755f3155628100d21a7b56f9c", + "message": "workflow tests", + "num": 3, + "short_hash": "40f55005d", + "unix": "1702677296" + }, + { + "hash": "0ab6c516044186646461c89de7f967ece1cda149", + "message": "remove old workflows", + "num": 2, + "short_hash": "0ab6c5160", + "unix": "1702676696" + }, + { + "hash": "76f9d75302f0e7054b3ba853717e4281fe551dcb", + "message": "anndata -> seurat workflow tests", + "num": 1, + "short_hash": "76f9d7530", + "unix": "1702493030" + } + ], + "inputs": [ + { + "annotation": "Input file in AnnData format", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Input file in AnnData format", + "name": "AnnData" + } + ], + "label": "AnnData", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f783e6c3-808c-4dd2-84dd-6130c8230970", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAnnData\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Inspect AnnData\"];\n 0 -->|output| 1;\n 6d03d713-8d71-4f6a-9f83-cd999f423ebf[\"Output\\nInspect AnnData: obs\"];\n 1 --> 6d03d713-8d71-4f6a-9f83-cd999f423ebf;\n style 6d03d713-8d71-4f6a-9f83-cd999f423ebf stroke:#2c3143,stroke-width:4px;\n 2[\"Inspect AnnData\"];\n 0 -->|output| 2;\n ea025a8a-6f3a-4e38-a3af-db406886c7de[\"Output\\nInspect AnnData: X\"];\n 2 --> ea025a8a-6f3a-4e38-a3af-db406886c7de;\n style ea025a8a-6f3a-4e38-a3af-db406886c7de stroke:#2c3143,stroke-width:4px;\n 3[\"Transpose\"];\n 2 -->|X| 3;\n 4[\"DropletUtils\"];\n 3 -->|out_file| 4;\n 5[\"Seurat Read10x\"];\n 4 -->|barcodes_out| 5;\n 4 -->|genes_out| 5;\n 4 -->|matrix_out| 5;\n 1 -->|obs| 5;\n e5fec5dc-4706-48e5-8326-05e70290552d[\"Output\\nConverted Seurat object\"];\n 5 --> e5fec5dc-4706-48e5-8326-05e70290552d;\n style e5fec5dc-4706-48e5-8326-05e70290552d stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "AnnData to Seurat conversion", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "obs", + "type": "tabular" + } + ], + "position": { + "left": 242.47774426074216, + "top": 60.81245422363281 + }, + "post_job_actions": { + "RenameDatasetActionobs": { + "action_arguments": { + "newname": "Observations" + }, + "action_type": "RenameDatasetAction", + "output_name": "obs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6f0d0c784f09", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"obs\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "202fdb30-8c0e-4a43-9909-2fcc051a4331", + "when": null, + "workflow_outputs": [ + { + "label": "Inspect AnnData: obs", + "output_name": "obs", + "uuid": "6d03d713-8d71-4f6a-9f83-cd999f423ebf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "X", + "type": "tabular" + } + ], + "position": { + "left": 276.0902404785156, + "top": 273.5749816894531 + }, + "post_job_actions": { + "RenameDatasetActionX": { + "action_arguments": { + "newname": "Matrix" + }, + "action_type": "RenameDatasetAction", + "output_name": "X" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6f0d0c784f09", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"X\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "2d2961d5-fe61-4c57-af14-cad6f77e8ebc", + "when": null, + "workflow_outputs": [ + { + "label": "Inspect AnnData: X", + "output_name": "X", + "uuid": "ea025a8a-6f3a-4e38-a3af-db406886c7de" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/3.2.3+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input|barcodes": { + "id": 4, + "output_name": "barcodes_out" + }, + "input|genes": { + "id": 4, + "output_name": "genes_out" + }, + "input|matrix": { + "id": 4, + "output_name": "matrix_out" + }, + "metadata": { + "id": 1, + "output_name": "obs" + } + }, + "inputs": [], + "label": null, + "name": "Seurat Read10x", + "outputs": [ + { + "name": "rds_seurat_file", + "type": "rdata" + } + ], + "position": { + "left": 1031.8776962017364, + "top": 646.6030063546 + }, + "post_job_actions": { + "RenameDatasetActionrds_seurat_file": { + "action_arguments": { + "newname": "Converted Seurat object" + }, + "action_type": "RenameDatasetAction", + "output_name": "rds_seurat_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/3.2.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "301cf1b4b43d", + "name": "seurat_read10x", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"rds_seurat\", \"input\": {\"format\": \"mtx\", \"__current_case__\": 1, \"matrix\": {\"__class__\": \"ConnectedValue\"}, \"genes\": {\"__class__\": \"ConnectedValue\"}, \"barcodes\": {\"__class__\": \"ConnectedValue\"}}, \"metadata\": {\"__class__\": \"ConnectedValue\"}, \"min_cells\": null, \"min_features\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.2.3+galaxy0", + "type": "tool", + "uuid": "72c0273d-01fa-45bd-af67-3dd0ef51b761", + "when": null, + "workflow_outputs": [ + { + "label": "Converted Seurat object", + "output_name": "rds_seurat_file", + "uuid": "e5fec5dc-4706-48e5-8326-05e70290552d" + } + ] + } + ], + "parent_id": "single-cell/scrna-data-ingest", + "path": "topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Seurat-conversion.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "AnnData to Seurat conversion", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-data-ingest/versions/anndata-to-seurat-conversion", + "tutorial_id": "scrna-data-ingest", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Seurat-conversion.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-Seurat-conversion.html", + "version": 1, + "wfid": "single-cell-scrna-data-ingest", + "wfname": "anndata-to-seurat-conversion", + "workflow": "AnnData-to-Seurat-conversion.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/3.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/dropletutils/dropletutils/1.10.0+galaxy2" + ], + "workflowhub_id": "1255" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + }, + { + "class": "Person", + "identifier": "0009-0008-9422-6380", + "name": "Morgan Howells" + } + ], + "description": "AnnData to SCE format conversion (manually using Galaxy buttons)", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnData\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nCell ID column\"]\n 2[label=\"Inspect AnnData\"]\n 0 -> 2 [label=\"output\"]\n k8b9200c296e640faa8e91e99638c733f[color=lightseagreen,label=\"Output\\nInspect AnnData: obs\"]\n 2 -> k8b9200c296e640faa8e91e99638c733f\n 3[label=\"Inspect AnnData\"]\n 0 -> 3 [label=\"output\"]\n k9fc4ce5a8384484db1cdc0f5137cf821[color=lightseagreen,label=\"Output\\nInspect AnnData: X\"]\n 3 -> k9fc4ce5a8384484db1cdc0f5137cf821\n 4[label=\"Transpose\"]\n 3 -> 4 [label=\"X\"]\n 5[label=\"DropletUtils\"]\n 4 -> 5 [label=\"out_file\"]\n 6[label=\"DropletUtils Read10x\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"obs\"]\n 5 -> 6 [label=\"barcodes_out\"]\n 5 -> 6 [label=\"genes_out\"]\n 5 -> 6 [label=\"matrix_out\"]\n k3256e23f2026407daa250f8c0f3ae3f7[color=lightseagreen,label=\"Output\\nConverted SCE object\"]\n 6 -> k3256e23f2026407daa250f8c0f3ae3f7\n}", + "history": [ + { + "hash": "40f55005d0fc9cb755f3155628100d21a7b56f9c", + "message": "workflow tests", + "num": 3, + "short_hash": "40f55005d", + "unix": "1702677296" + }, + { + "hash": "0ab6c516044186646461c89de7f967ece1cda149", + "message": "remove old workflows", + "num": 2, + "short_hash": "0ab6c5160", + "unix": "1702676696" + }, + { + "hash": "2a9fd3b3fd1b460506187899fa2e131965f01b1f", + "message": "anndata -> sce workflow tests", + "num": 1, + "short_hash": "2a9fd3b3f", + "unix": "1702500992" + } + ], + "inputs": [ + { + "annotation": "Input file in AnnData format", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Input file in AnnData format", + "name": "AnnData" + } + ], + "label": "AnnData", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e72a00ec-ff08-430a-b280-a5bf32471e29", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Values must match those provided in the expression matrix.", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Values must match those provided in the expression matrix.", + "name": "Cell ID column" + } + ], + "label": "Cell ID column", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 866.3226554462807, + "top": 666.1848951363122 + }, + "tool_id": null, + "tool_state": "{\"default\": \"index\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "6c5ffe4e-7b55-4bb9-a43d-9e44a2b80a18", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e2afe6bf-f006-463c-9ded-0f825c6c3cea" + } + ] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAnnData\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nCell ID column\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"Inspect AnnData\"];\n 0 -->|output| 2;\n 8b9200c2-96e6-40fa-a8e9-1e99638c733f[\"Output\\nInspect AnnData: obs\"];\n 2 --> 8b9200c2-96e6-40fa-a8e9-1e99638c733f;\n style 8b9200c2-96e6-40fa-a8e9-1e99638c733f stroke:#2c3143,stroke-width:4px;\n 3[\"Inspect AnnData\"];\n 0 -->|output| 3;\n 9fc4ce5a-8384-484d-b1cd-c0f5137cf821[\"Output\\nInspect AnnData: X\"];\n 3 --> 9fc4ce5a-8384-484d-b1cd-c0f5137cf821;\n style 9fc4ce5a-8384-484d-b1cd-c0f5137cf821 stroke:#2c3143,stroke-width:4px;\n 4[\"Transpose\"];\n 3 -->|X| 4;\n 5[\"DropletUtils\"];\n 4 -->|out_file| 5;\n 6[\"DropletUtils Read10x\"];\n 1 -->|output| 6;\n 2 -->|obs| 6;\n 5 -->|barcodes_out| 6;\n 5 -->|genes_out| 6;\n 5 -->|matrix_out| 6;\n 3256e23f-2026-407d-aa25-0f8c0f3ae3f7[\"Output\\nConverted SCE object\"];\n 6 --> 3256e23f-2026-407d-aa25-0f8c0f3ae3f7;\n style 3256e23f-2026-407d-aa25-0f8c0f3ae3f7 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "AnnData to SingleCellExperiment (SCE) conversion", + "outputs": [ + { + "annotation": "Values must match those provided in the expression matrix.", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Values must match those provided in the expression matrix.", + "name": "Cell ID column" + } + ], + "label": "Cell ID column", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 866.3226554462807, + "top": 666.1848951363122 + }, + "tool_id": null, + "tool_state": "{\"default\": \"index\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "6c5ffe4e-7b55-4bb9-a43d-9e44a2b80a18", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e2afe6bf-f006-463c-9ded-0f825c6c3cea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "obs", + "type": "tabular" + } + ], + "position": { + "left": 239.28745034461005, + "top": 80.85001820462972 + }, + "post_job_actions": { + "RenameDatasetActionobs": { + "action_arguments": { + "newname": "Observations" + }, + "action_type": "RenameDatasetAction", + "output_name": "obs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6f0d0c784f09", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"obs\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "23221982-02e3-49e2-9834-4dc205cfc95a", + "when": null, + "workflow_outputs": [ + { + "label": "Inspect AnnData: obs", + "output_name": "obs", + "uuid": "8b9200c2-96e6-40fa-a8e9-1e99638c733f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "X", + "type": "tabular" + } + ], + "position": { + "left": 287.0783614242933, + "top": 230.26711592888955 + }, + "post_job_actions": { + "RenameDatasetActionX": { + "action_arguments": { + "newname": "Matrix" + }, + "action_type": "RenameDatasetAction", + "output_name": "X" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6f0d0c784f09", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"X\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "21e60473-83c4-4458-84c1-4fd7853e49b5", + "when": null, + "workflow_outputs": [ + { + "label": "Inspect AnnData: X", + "output_name": "X", + "uuid": "9fc4ce5a-8384-484d-b1cd-c0f5137cf821" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/dropletutils_read_10x/dropletutils_read_10x/1.0.4+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "add_metadata|cell_id_column": { + "id": 1, + "output_name": "output" + }, + "add_metadata|metadata_files": { + "id": 2, + "output_name": "obs" + }, + "barcodes": { + "id": 5, + "output_name": "barcodes_out" + }, + "genes": { + "id": 5, + "output_name": "genes_out" + }, + "matrix": { + "id": 5, + "output_name": "matrix_out" + } + }, + "inputs": [], + "label": null, + "name": "DropletUtils Read10x", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 1197.34937037914, + "top": 645.5739866720206 + }, + "post_job_actions": { + "RenameDatasetActionoutput_rds": { + "action_arguments": { + "newname": "Converted SCE object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_rds" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/dropletutils_read_10x/dropletutils_read_10x/1.0.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ca62f52e0d7f", + "name": "dropletutils_read_10x", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_metadata\": {\"add_metadata_file\": true, \"__current_case__\": 0, \"metadata_files\": {\"__class__\": \"ConnectedValue\"}, \"cell_id_column\": {\"__class__\": \"ConnectedValue\"}}, \"barcodes\": {\"__class__\": \"ConnectedValue\"}, \"genes\": {\"__class__\": \"ConnectedValue\"}, \"matrix\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.4+galaxy0", + "type": "tool", + "uuid": "a9f92b9d-af96-43ad-b3b3-b8a42089f32f", + "when": null, + "workflow_outputs": [ + { + "label": "Converted SCE object", + "output_name": "output_rds", + "uuid": "3256e23f-2026-407d-aa25-0f8c0f3ae3f7" + } + ] + } + ], + "parent_id": "single-cell/scrna-data-ingest", + "path": "topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-SingleCellExperiment-(SCE)-conversion.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "AnnData to SingleCellExperiment (SCE) conversion", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-data-ingest/versions/anndata-to-singlecellexperiment--sce--conversion", + "tutorial_id": "scrna-data-ingest", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-SingleCellExperiment-(SCE)-conversion.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-data-ingest/workflows/AnnData-to-SingleCellExperiment-(SCE)-conversion.html", + "version": 1, + "wfid": "single-cell-scrna-data-ingest", + "wfname": "anndata-to-singlecellexperiment--sce--conversion", + "workflow": "AnnData-to-SingleCellExperiment-(SCE)-conversion.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/dropletutils_read_10x/dropletutils_read_10x/1.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/dropletutils/dropletutils/1.10.0+galaxy2" + ], + "workflowhub_id": "1247" + } + ], + "zenodo_link": "https://zenodo.org/record/4574153" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-intro/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-intro", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-preprocessing" + ], + "type": "internal" + } + ], + "hands_on": false, + "id": "single-cell/scrna-intro", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 20144, + "mermaid": false + }, + "key_points": [ + "scRNA-seq requires much pre-processing before analysis can be performed.", + "Groups of similarly profiled-cells are compared against other groups.", + "Detectability issues requires careful consideration at all stages.", + "Clustering is an integral part of an analysis." + ], + "layout": "tutorial_slides", + "level": "Intermediate", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-08-08", + "objectives": [ + "To understand the pitfalls in scRNA-seq sequencing and amplification, and how they are overcome.", + "Know the types of variation in an analysis and how to control for them.", + "Grasp what dimension reduction is, and how it might be performed.", + "Be familiarised with the main types of clustering techniques and when to use them." + ], + "pageviews": 5612842, + "priority": 1, + "pub_date": "2021-01-29", + "questions": [ + "How are samples compared?", + "How are cells captured?", + "How does bulk RNA-seq differ from scRNA-seq?", + "Why is clustering important?" + ], + "recordings": [ + { + "captioners": [ + "mtekman" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "20M", + "speakers": [ + "awspolly" + ], + "youtube_id": "D3qvYWZMFa0" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-intro/slides", + "/short/single-cell/scrna-intro/slides", + "/short/S00084" + ], + "short_id": "S00084", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "mtekman" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "20M", + "speakers": [ + "awspolly" + ], + "youtube_id": "D3qvYWZMFa0" + } + ], + "subtopic": "scintroduction", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": null, + "time_estimation": "30m", + "title": "An introduction to scRNA-seq data analysis", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "scrna-intro", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-intro/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-intro/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-intro/slides.json" + }, + "version": 5, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 152, + "visitors": 2029238, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/alevin-commandline/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "nomadscientist" + ], + "editing": [ + "pavanvidem", + "mtekman" + ], + "funding": [ + "eosc-life" + ], + "testing": [ + "pavanvidem" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "avatar": "https://www.eosc-life.eu/wp-content/themes/eosc-life-v2/assets/images/eosclogo.png", + "funder": true, + "funding_id": "824087", + "funding_statement": "EOSC-Life has received funding from the European Union\u2019s Horizon 2020 programme under grant agreement number 824087", + "funding_system": "cordis", + "github": false, + "id": "eosc-life", + "joined": "2023-04", + "members": [ + "bgruening" + ], + "name": "EOSC-Life", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eosc-life/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eosc-life.json" + } + ], + "dir": "topics/single-cell/tutorials/alevin-commandline", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin-combine-datasets" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "single-cell/alevin-commandline", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Create a SCE object from FASTQ files, including relevant gene and cell metadata, and do it all in Jupyter Notebook!" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-13", + "notebook": { + "language": "bash", + "snippet": "topics/single-cell/tutorials/alevin-commandline/preamble.md" + }, + "objectives": [ + "Generate a cellxgene matrix for droplet-based single cell sequencing data", + "Interpret quality control (QC) plots to make informed decisions on cell thresholds", + "Find relevant information in GTF files for the particulars of their study, and include this in data matrix metadata" + ], + "pageviews": 241, + "priority": 1, + "pub_date": "2023-12-08", + "questions": [ + "I have some single cell FASTQ files I want to analyse. Where do I start?", + "How to generate a single cell matrix using command line?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin" + ], + "type": "internal" + } + ], + "short_id": "T00378", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS-code", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication" + ], + "time_estimation": "2H", + "title": "Generating a single cell matrix using Alevin and combining datasets (bash + R)", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "alevin-commandline", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/alevin-commandline/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/alevin-commandline/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/alevin-commandline/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 146, + "visitors": 205, + "zenodo_link": null + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "12615d397df7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_ops", + "owner": "ebi-gxa", + "revisions": "a4774b7b2e85", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "retrieve_scxa", + "owner": "ebi-gxa", + "revisions": "72b6e1747e37", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_read_10x", + "owner": "ebi-gxa", + "revisions": "9afcfcd1d215", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "6f0d0c784f09", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "ee98d611afc6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "ed4996a16f7f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: 12615d397df7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_ops\n owner: ebi-gxa\n revisions: a4774b7b2e85\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: retrieve_scxa\n owner: ebi-gxa\n revisions: 72b6e1747e37\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_read_10x\n owner: ebi-gxa\n revisions: 9afcfcd1d215\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: 6f0d0c784f09\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: ee98d611afc6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: ed4996a16f7f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "answer_histories": [ + { + "date": "2024-03-26", + "history": "https://usegalaxy.eu/u/j.jakiela/h/combining-datasets-key-history", + "label": "UseGalaxy.eu" + }, + { + "date": "2024-03-26", + "history": "https://usegalaxy.eu/u/j.jakiela/h/all-total-samples-processed-after-alevin-into-single-object", + "label": "All total samples - processed after Alevin into single object (UseGalaxy.eu)" + } + ], + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist", + "pinin4fjords" + ], + "editing": [ + "hexylena" + ], + "testing": [ + "wee-snufkin" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "email": "jmanning@ebi.ac.uk", + "id": "pinin4fjords", + "joined": "2021-02", + "name": "Jonathan Manning", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pinin4fjords/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pinin4fjords.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_alevin-combine-datasets", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_basic-pipeline" + ], + "type": "internal" + } + ], + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-case_alevin-combine-datasets", + "inexact_supported_servers": [ + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "input_histories": [ + { + "history": "https://usegalaxy.eu/u/j.jakiela/h/combining-datasets-input", + "label": "UseGalaxy.eu" + }, + { + "history": "https://usegalaxy.org/u/juliajot/h/combining-datasets-input", + "label": "UseGalaxy.org" + } + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Create a single scanpy-accessible AnnData object from multiple AnnData files, including relevant cell metadata according to the study design", + "Retreive partially analysed data from a public repository" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Combine data matrices from different samples in the same experiment", + "Label the metadata for downstream processing" + ], + "pageviews": 2373, + "priority": 2, + "pub_date": "2022-09-08", + "questions": [ + "I have some AnnData files from different samples that I want to combine into a single file. How can I combine these and label them within the object?" + ], + "recordings": [ + { + "captioners": [ + "hrukkudyr" + ], + "date": "2023-05-09", + "length": "11M", + "speakers": [ + "hrukkudyr" + ], + "youtube_id": "22t-4qvHnow" + }, + { + "captioners": [ + "nomadscientist" + ], + "date": "2021-02-15", + "galaxy_version": "21.09", + "length": "11M", + "speakers": [ + "nomadscientist" + ], + "youtube_id": "U8pVa6csmUE" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-case_alevin-combine-datasets/tutorial", + "/short/single-cell/scrna-case_alevin-combine-datasets", + "/short/T00246" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-intro", + "scrna-umis", + "scrna-case_alevin" + ], + "type": "internal" + } + ], + "short_id": "T00246", + "short_tools": [ + "anndata_ops", + "anndata_manipulate", + "scanpy_read_10x", + "anndata_inspect", + "Paste1", + "Cut1", + "retrieve_scxa", + "tp_replace_in_column" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication" + ], + "time_estimation": "1H", + "title": "Combining single cell datasets after pre-processing", + "tools": [ + "Cut1", + "Paste1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_alevin-combine-datasets", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 131, + "visitors": 1673, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + }, + { + "class": "Person", + "identifier": "0000-0002-8170-8806", + "name": "Wendi Bacon" + } + ], + "description": "Updated March 2024", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nN701\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nN702\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nN703\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nN704\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nN705\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nN706\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nN707\"]\n 7[label=\"Concatenating Datasets\"]\n 0 -> 7 [label=\"output\"]\n 1 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 3 -> 7 [label=\"output\"]\n 4 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"output\"]\n 6 -> 7 [label=\"output\"]\n k168d4710570a43b1998a2164154eebc5[color=lightseagreen,label=\"Output\\nCombined Object\"]\n 7 -> k168d4710570a43b1998a2164154eebc5\n 8[label=\"Inspect AnnData\"]\n 7 -> 8 [label=\"anndata\"]\n 9[label=\"Inspect AnnData\"]\n 7 -> 9 [label=\"anndata\"]\n 10[label=\"Inspect AnnData\"]\n 7 -> 10 [label=\"anndata\"]\n 11[label=\"Replace Text\"]\n 9 -> 11 [label=\"obs\"]\n 12[label=\"Replace Text\"]\n 9 -> 12 [label=\"obs\"]\n 13[label=\"Cut\"]\n 11 -> 13 [label=\"outfile\"]\n k8b026c35f9db4bcd8cf554b7d6fb5aea[color=lightseagreen,label=\"Output\\nSex metadata\"]\n 13 -> k8b026c35f9db4bcd8cf554b7d6fb5aea\n 14[label=\"Cut\"]\n 12 -> 14 [label=\"outfile\"]\n k6f55548b5ded42b8b2f7c7f1a327a068[color=lightseagreen,label=\"Output\\nGenotype metadata\"]\n 14 -> k6f55548b5ded42b8b2f7c7f1a327a068\n 15[label=\"Paste\"]\n 14 -> 15 [label=\"out_file1\"]\n 13 -> 15 [label=\"out_file1\"]\n k2f0ea0f3f2f744b2b8f005d8cbb364a6[color=lightseagreen,label=\"Output\\nCell metadata\"]\n 15 -> k2f0ea0f3f2f744b2b8f005d8cbb364a6\n 16[label=\"Adding in cell metadata\"]\n 7 -> 16 [label=\"anndata\"]\n 15 -> 16 [label=\"out_file1\"]\n k2720386c727349d6abb09bd14f6cb68c[color=lightseagreen,label=\"Output\\nAnnData with Cell Metadata\"]\n 16 -> k2720386c727349d6abb09bd14f6cb68c\n 17[label=\"Batching Cell Metadata\"]\n 16 -> 17 [label=\"anndata\"]\n kb950c8dbabe14cb0af58d291d3b74a83[color=lightseagreen,label=\"Output\\nBatched Object\"]\n 17 -> kb950c8dbabe14cb0af58d291d3b74a83\n 18[label=\"Calculating mitochondrial \"]\n 17 -> 18 [label=\"anndata\"]\n k2417284d825243ff84bf6f15ef11cd05[color=lightseagreen,label=\"Output\\nAnnotated AnnData\"]\n 18 -> k2417284d825243ff84bf6f15ef11cd05\n}", + "history": [ + { + "hash": "923c71c756c805a4ce7f2b794fa721aa6a4966f4", + "message": "workflow tests", + "num": 1, + "short_hash": "923c71c75", + "unix": "1711487790" + } + ], + "inputs": [ + { + "annotation": "Dataset to be combined", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Dataset to be combined", + "name": "N701" + } + ], + "label": "N701", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 12.9765625, + "top": 159.9921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f5f24f48-9a1d-49f2-b351-ec3dbea3a6c6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Dataset to be combined", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Dataset to be combined", + "name": "N702" + } + ], + "label": "N702", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 8.9921875, + "top": 241 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "509506fb-e5ef-4509-92dd-196aa797870a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Dataset to be combined", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Dataset to be combined", + "name": "N703" + } + ], + "label": "N703", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 322.9921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f4726f7b-d956-45b7-b1e0-b9df93b9892c", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Dataset to be combined", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Dataset to be combined", + "name": "N704" + } + ], + "label": "N704", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.984375, + "top": 434 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "908341bb-6451-4360-a2ec-a1af73fb941e", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Dataset to be combined", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "Dataset to be combined", + "name": "N705" + } + ], + "label": "N705", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6, + "top": 538.9921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "6c534b76-c5cc-4bbe-b180-376200e29b75", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Dataset to be combined", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "Dataset to be combined", + "name": "N706" + } + ], + "label": "N706", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 7.000041058980229, + "top": 640.0000146155871 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "b512e8b6-85f2-45b7-a057-d0af216b26f0", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Dataset to be combined", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "Dataset to be combined", + "name": "N707" + } + ], + "label": "N707", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 7, + "top": 741 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "6aee1bd4-2698-4572-aa78-1b166f27eff2", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nN701\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nN702\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nN703\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nN704\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nN705\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nN706\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nN707\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"Concatenating Datasets\"];\n 0 -->|output| 7;\n 1 -->|output| 7;\n 2 -->|output| 7;\n 3 -->|output| 7;\n 4 -->|output| 7;\n 5 -->|output| 7;\n 6 -->|output| 7;\n 168d4710-570a-43b1-998a-2164154eebc5[\"Output\\nCombined Object\"];\n 7 --> 168d4710-570a-43b1-998a-2164154eebc5;\n style 168d4710-570a-43b1-998a-2164154eebc5 stroke:#2c3143,stroke-width:4px;\n 8[\"Inspect AnnData\"];\n 7 -->|anndata| 8;\n 9[\"Inspect AnnData\"];\n 7 -->|anndata| 9;\n 10[\"Inspect AnnData\"];\n 7 -->|anndata| 10;\n 11[\"Replace Text\"];\n 9 -->|obs| 11;\n 12[\"Replace Text\"];\n 9 -->|obs| 12;\n 13[\"Cut\"];\n 11 -->|outfile| 13;\n 8b026c35-f9db-4bcd-8cf5-54b7d6fb5aea[\"Output\\nSex metadata\"];\n 13 --> 8b026c35-f9db-4bcd-8cf5-54b7d6fb5aea;\n style 8b026c35-f9db-4bcd-8cf5-54b7d6fb5aea stroke:#2c3143,stroke-width:4px;\n 14[\"Cut\"];\n 12 -->|outfile| 14;\n 6f55548b-5ded-42b8-b2f7-c7f1a327a068[\"Output\\nGenotype metadata\"];\n 14 --> 6f55548b-5ded-42b8-b2f7-c7f1a327a068;\n style 6f55548b-5ded-42b8-b2f7-c7f1a327a068 stroke:#2c3143,stroke-width:4px;\n 15[\"Paste\"];\n 14 -->|out_file1| 15;\n 13 -->|out_file1| 15;\n 2f0ea0f3-f2f7-44b2-b8f0-05d8cbb364a6[\"Output\\nCell metadata\"];\n 15 --> 2f0ea0f3-f2f7-44b2-b8f0-05d8cbb364a6;\n style 2f0ea0f3-f2f7-44b2-b8f0-05d8cbb364a6 stroke:#2c3143,stroke-width:4px;\n 16[\"Adding in cell metadata\"];\n 7 -->|anndata| 16;\n 15 -->|out_file1| 16;\n 2720386c-7273-49d6-abb0-9bd14f6cb68c[\"Output\\nAnnData with Cell Metadata\"];\n 16 --> 2720386c-7273-49d6-abb0-9bd14f6cb68c;\n style 2720386c-7273-49d6-abb0-9bd14f6cb68c stroke:#2c3143,stroke-width:4px;\n 17[\"Batching Cell Metadata\"];\n 16 -->|anndata| 17;\n b950c8db-abe1-4cb0-af58-d291d3b74a83[\"Output\\nBatched Object\"];\n 17 --> b950c8db-abe1-4cb0-af58-d291d3b74a83;\n style b950c8db-abe1-4cb0-af58-d291d3b74a83 stroke:#2c3143,stroke-width:4px;\n 18[\"Calculating mitochondrial \"];\n 17 -->|anndata| 18;\n 2417284d-8252-43ff-84bf-6f15ef11cd05[\"Output\\nAnnotated AnnData\"];\n 18 --> 2417284d-8252-43ff-84bf-6f15ef11cd05;\n style 2417284d-8252-43ff-84bf-6f15ef11cd05 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Combining datasets after pre-processing", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + }, + "manipulate|other_adatas": [ + { + "id": 1, + "output_name": "output" + }, + { + "id": 2, + "output_name": "output" + }, + { + "id": 3, + "output_name": "output" + }, + { + "id": 4, + "output_name": "output" + }, + { + "id": 5, + "output_name": "output" + }, + { + "id": 6, + "output_name": "output" + } + ] + }, + "inputs": [ + { + "description": "runtime parameter for tool Manipulate AnnData", + "name": "manipulate" + } + ], + "label": "Concatenating Datasets", + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 295.0234375, + "top": 410 + }, + "post_job_actions": { + "RenameDatasetActionanndata": { + "action_arguments": { + "newname": "Combined AnnData" + }, + "action_type": "RenameDatasetAction", + "output_name": "anndata" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ed4996a16f7f", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"concatenate\", \"__current_case__\": 0, \"other_adatas\": {\"__class__\": \"ConnectedValue\"}, \"join\": \"inner\", \"batch_key\": \"batch\", \"index_unique\": \"-\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "4dfd7670-2dd9-46d4-9c97-aaf33524d076", + "when": null, + "workflow_outputs": [ + { + "label": "Combined Object", + "output_name": "anndata", + "uuid": "168d4710-570a-43b1-998a-2164154eebc5" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 11, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1129.03125, + "top": 280 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Sex metadata" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c8\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "731604ed-f075-49b5-9beb-752b69cdc388", + "when": null, + "workflow_outputs": [ + { + "label": "Sex metadata", + "output_name": "out_file1", + "uuid": "8b026c35-f9db-4bcd-8cf5-54b7d6fb5aea" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 12, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1129.03125, + "top": 423.9921875 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Genotype metadata" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c8\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "1021770e-eb6d-4e23-b75f-76f5827e37e1", + "when": null, + "workflow_outputs": [ + { + "label": "Genotype metadata", + "output_name": "out_file1", + "uuid": "6f55548b-5ded-42b8-b2f7-c7f1a327a068" + } + ] + }, + { + "annotation": "", + "content_id": "Paste1", + "errors": null, + "id": 15, + "input_connections": { + "input1": { + "id": 14, + "output_name": "out_file1" + }, + "input2": { + "id": 13, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Paste", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1407.046875, + "top": 380.984375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Cell metadata" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Paste1", + "tool_state": "{\"delimiter\": \"T\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "78b0f142-dc1d-4c64-8ea8-58d704646c55", + "when": null, + "workflow_outputs": [ + { + "label": "Cell metadata", + "output_name": "out_file1", + "uuid": "2f0ea0f3-f2f7-44b2-b8f0-05d8cbb364a6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 7, + "output_name": "anndata" + }, + "manipulate|new_annot": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Manipulate AnnData", + "name": "manipulate" + } + ], + "label": "Adding in cell metadata", + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 557.03125, + "top": 630.9765625 + }, + "post_job_actions": { + "RenameDatasetActionanndata": { + "action_arguments": { + "newname": "AnnData with Cell Metadata" + }, + "action_type": "RenameDatasetAction", + "output_name": "anndata" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ed4996a16f7f", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"add_annotation\", \"__current_case__\": 6, \"var_obs\": \"obs\", \"new_annot\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "d30f8445-4d7d-43d4-a5b2-06b62286a70d", + "when": null, + "workflow_outputs": [ + { + "label": "AnnData with Cell Metadata", + "output_name": "anndata", + "uuid": "2720386c-7273-49d6-abb0-9bd14f6cb68c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 16, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Batching Cell Metadata", + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 795.03125, + "top": 644.9765625 + }, + "post_job_actions": { + "RenameDatasetActionanndata": { + "action_arguments": { + "newname": "Batched AnnData" + }, + "action_type": "RenameDatasetAction", + "output_name": "anndata" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ed4996a16f7f", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"rename_categories\", \"__current_case__\": 3, \"key\": \"batch\", \"categories\": \"N701,N702,N703,N704,N705,N706,N707\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "e3e2f437-6fd1-432b-8dc0-2133c1b3fee3", + "when": null, + "workflow_outputs": [ + { + "label": "Batched Object", + "output_name": "anndata", + "uuid": "b950c8db-abe1-4cb0-af58-d291d3b74a83" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.9.3+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "input_obj_file": { + "id": 17, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Calculating mitochondrial ", + "name": "AnnData Operations", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1041.03125, + "top": 641 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Annotated AnnData" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.9.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a4774b7b2e85", + "name": "anndata_ops", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_cell_metadata\": {\"default\": false, \"__current_case__\": 1}, \"copy_adata_to_raw\": false, \"copy_e\": {\"default\": false, \"__current_case__\": 1}, \"copy_l\": {\"default\": false, \"__current_case__\": 1}, \"copy_o\": {\"default\": false, \"__current_case__\": 1}, \"copy_r\": {\"default\": false, \"__current_case__\": 1}, \"copy_u\": {\"default\": false, \"__current_case__\": 1}, \"copy_x\": {\"default\": false, \"__current_case__\": 1}, \"field_unique\": null, \"gene_flags\": [{\"__index__\": 0, \"startswith\": \"True\", \"flag\": \"mito\"}], \"gene_symbols_field\": \"NA.\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"modifications\": [], \"output_format\": \"anndata_h5ad\", \"sanitize_varm\": false, \"split_on_obs\": {\"default\": false, \"__current_case__\": 1}, \"swap_layer_to_x\": {\"default\": false, \"__current_case__\": 1}, \"top_genes\": \"50\", \"var_modifications\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.3+galaxy0", + "type": "tool", + "uuid": "0db28a98-06c8-43a6-b72a-da2e84965d3a", + "when": null, + "workflow_outputs": [ + { + "label": "Annotated AnnData", + "output_name": "output_h5ad", + "uuid": "2417284d-8252-43ff-84bf-6f15ef11cd05" + } + ] + } + ], + "parent_id": "single-cell/scrna-case_alevin-combine-datasets", + "path": "topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/workflows/Combining-datasets-after-pre-processing.ga", + "tags": [ + "name:training", + "name:single-cell" + ], + "test_results": null, + "tests": true, + "title": "Combining datasets after pre-processing", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_alevin-combine-datasets/versions/combining-datasets-after-pre-processing", + "tutorial_id": "scrna-case_alevin-combine-datasets", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/workflows/Combining-datasets-after-pre-processing.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_alevin-combine-datasets/workflows/Combining-datasets-after-pre-processing.html", + "version": 1, + "wfid": "single-cell-scrna-case_alevin-combine-datasets", + "wfname": "combining-datasets-after-pre-processing", + "workflow": "Combining-datasets-after-pre-processing.ga", + "workflow_tools": [ + "Cut1", + "Paste1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0" + ], + "workflowhub_id": "1225" + } + ], + "zenodo_link": "https://zenodo.org/records/10852529" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "562f3c677828", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_transpose", + "owner": "iuc", + "revisions": "22c2a1ac7ae3", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "raceid_clustering", + "owner": "iuc", + "revisions": "a4b734cd253b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "raceid_filtnormconf", + "owner": "iuc", + "revisions": "43c146e25a43", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "raceid_inspectclusters", + "owner": "iuc", + "revisions": "41f34e925bd5", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "raceid_inspecttrajectory", + "owner": "iuc", + "revisions": "c8434a623268", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "raceid_trajectory", + "owner": "iuc", + "revisions": "72979cac22b2", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 562f3c677828\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_transpose\n owner: iuc\n revisions: 22c2a1ac7ae3\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: raceid_clustering\n owner: iuc\n revisions: a4b734cd253b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: raceid_filtnormconf\n owner: iuc\n revisions: 43c146e25a43\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: raceid_inspectclusters\n owner: iuc\n revisions: 41f34e925bd5\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: raceid_inspecttrajectory\n owner: iuc\n revisions: c8434a623268\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: raceid_trajectory\n owner: iuc\n revisions: 72979cac22b2\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-raceid/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "email": "a.ostrovsky@mac.com", + "id": "astrovsky01", + "joined": "2019-06", + "name": "Alex Ostrovsky", + "orcid": "0000-0002-7901-7109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/astrovsky01.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-raceid", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-preprocessing-tenx" + ], + "type": "internal" + } + ], + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-raceid", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 10933, + "mermaid": false + }, + "key_points": [ + "Clustering single-cell RNA-seq data is often noisy", + "RaceID can be used to cluster cells based on the their gene expression profiles", + "StemID describes a hierarchical relationship between clusters to find multipotent progenitor stem cells to provide an understanding of cell development", + "FateID predicts the potential lineages that cells within specific clusters are inclined towards" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Filtering, normalising, and clustering cells in a matrix", + "Assessing the quality of individual clusters", + "Inferring cell type lineages", + "Examining gene expression", + "Determining the top most expressive genes per cluster", + "Correcting for unwanted variation" + ], + "pageviews": 885, + "priority": 2, + "pub_date": "2019-03-25", + "questions": [ + "What is normalisation and why is it necessary?", + "How many types of unwanted variation are there?", + "How are biological phenotypes clustered?", + "What is the difference between PCA and tSNE?", + "What is the difference between cell trajectory and cell fate?" + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-raceid/tutorial", + "/short/single-cell/scrna-raceid", + "/short/T00253" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-scater-qc" + ], + "type": "internal" + } + ], + "short_id": "T00253", + "short_tools": [ + "datamash_ops", + "raceid_inspecttrajectory", + "datamash_transpose", + "tp_head_tool", + "raceid_clustering", + "tp_sed_tool", + "raceid_filtnormconf", + "raceid_trajectory", + "raceid_inspectclusters" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "end-to-end", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": null, + "time_estimation": "3H", + "title": "Downstream Single-cell RNA analysis with RaceID", + "tools": [ + "raceid_clustering", + "raceid_filtnormconf", + "raceid_inspectclusters", + "raceid_inspecttrajectory", + "raceid_trajectory", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_head_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/raceid_clustering/raceid_clustering/0.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/raceid_filtnormconf/raceid_filtnormconf/0.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/raceid_inspectclusters/raceid_inspectclusters/0.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/raceid_inspecttrajectory/raceid_inspecttrajectory/0.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/raceid_trajectory/raceid_trajectory/0.2.3+galaxy0" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-raceid", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-raceid/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-raceid/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-raceid/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 78, + "visitors": 749, + "workflows": [ + { + "creators": [], + "description": "Downstream Single-cell RNA analysis with RaceID", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTabular Matrix\"]\n 1[label=\"Initial processing using RaceID\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Clustering using RaceID\"]\n 1 -> 2 [label=\"outrdat\"]\n 3[label=\"Lineage computation using StemID\"]\n 2 -> 3 [label=\"outrdat\"]\n 4[label=\"Cluster Inspection using RaceID\"]\n 2 -> 4 [label=\"outrdat\"]\n 5[label=\"Cluster Inspection using RaceID\"]\n 2 -> 5 [label=\"outrdat\"]\n 6[label=\"Cluster Inspection using RaceID\"]\n 2 -> 6 [label=\"outrdat\"]\n 7[label=\"Lineage Branch Analysis using StemID\"]\n 3 -> 7 [label=\"outrdat\"]\n 8[label=\"Lineage Branch Analysis using StemID\"]\n 3 -> 8 [label=\"outrdat\"]\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tabular Matrix" + } + ], + "label": "Tabular Matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 167.21666717529297, + "height": 48.96665954589844, + "left": 38.75, + "right": 198.75, + "top": 118.25000762939453, + "width": 160, + "x": 38.75, + "y": 118.25000762939453 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ba3fe014-c728-486e-8ce4-55be24df0682", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0c858705-5e28-44e0-8023-46aec4a01725" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nTabular Matrix\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Initial processing using RaceID\"];\n 0 -->|output| 1;\n 2[\"Clustering using RaceID\"];\n 1 -->|outrdat| 2;\n 3[\"Lineage computation using StemID\"];\n 2 -->|outrdat| 3;\n 4[\"Cluster Inspection using RaceID\"];\n 2 -->|outrdat| 4;\n 5[\"Cluster Inspection using RaceID\"];\n 2 -->|outrdat| 5;\n 6[\"Cluster Inspection using RaceID\"];\n 2 -->|outrdat| 6;\n 7[\"Lineage Branch Analysis using StemID\"];\n 3 -->|outrdat| 7;\n 8[\"Lineage Branch Analysis using StemID\"];\n 3 -->|outrdat| 8;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "RaceID Workflow", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tabular Matrix" + } + ], + "label": "Tabular Matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 167.21666717529297, + "height": 48.96665954589844, + "left": 38.75, + "right": 198.75, + "top": 118.25000762939453, + "width": 160, + "x": 38.75, + "y": 118.25000762939453 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ba3fe014-c728-486e-8ce4-55be24df0682", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0c858705-5e28-44e0-8023-46aec4a01725" + } + ] + }, + { + "annotation": "", + "content_id": "raceid_filtnormconf", + "errors": null, + "id": 1, + "input_connections": { + "intable": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Initial processing using RaceID", + "outputs": [ + { + "name": "outtable", + "type": "tabular" + }, + { + "name": "outpdf", + "type": "pdf" + }, + { + "name": "outrdat", + "type": "rdata" + }, + { + "name": "outlog", + "type": "txt" + } + ], + "position": { + "bottom": 410.7666702270508, + "height": 293.76666259765625, + "left": 272.5, + "right": 432.5, + "top": 117.00000762939453, + "width": 160, + "x": 272.5, + "y": 117.00000762939453 + }, + "post_job_actions": {}, + "tool_id": "raceid_filtnormconf", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/tmp/tmp8dp_jicw/galaxy-dev/tool-data/shared/ucsc/chrom/?.len\", \"filt\": {\"mintotal\": \"3000\", \"minexpr\": \"5\", \"minnumber\": \"5\", \"hist_geq_one\": \"false\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"intable\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.3+galaxy0", + "type": "tool", + "uuid": "6fd8dbde-93d2-4903-865f-78cc3c2fa299", + "workflow_outputs": [ + { + "label": null, + "output_name": "outtable", + "uuid": "d9293468-efef-4a10-89a6-0064a1740afd" + }, + { + "label": null, + "output_name": "outpdf", + "uuid": "358ddb8a-a6ca-4162-8d53-354902f905cf" + }, + { + "label": null, + "output_name": "outrdat", + "uuid": "68451b36-8875-45ca-bdb9-e315cc836e49" + }, + { + "label": null, + "output_name": "outlog", + "uuid": "35505252-c65a-4572-9d66-b0e69893c01b" + } + ] + }, + { + "annotation": "", + "content_id": "raceid_clustering", + "errors": null, + "id": 2, + "input_connections": { + "inputrds": { + "id": 1, + "output_name": "outrdat" + } + }, + "inputs": [], + "label": null, + "name": "Clustering using RaceID", + "outputs": [ + { + "name": "outpdf", + "type": "pdf" + }, + { + "name": "outrdat", + "type": "rdata" + }, + { + "name": "outassignments", + "type": "tabular" + }, + { + "name": "outgenelist", + "type": "tabular" + }, + { + "name": "outlog", + "type": "txt" + } + ], + "position": { + "bottom": 466.46668243408203, + "height": 350.7166748046875, + "left": 520, + "right": 680, + "top": 115.75000762939453, + "width": 160, + "x": 520, + "y": 115.75000762939453 + }, + "post_job_actions": {}, + "tool_id": "raceid_clustering", + "tool_state": "{\"__input_ext\": \"rdata\", \"chromInfo\": \"/tmp/tmp8dp_jicw/galaxy-dev/tool-data/shared/ucsc/chrom/?.len\", \"clust\": {\"metric\": \"pearson\", \"funcluster\": \"kmedoids\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"extra\": {\"tablelim\": \"25\", \"plotlim\": \"10\", \"foldchange\": \"1.0\", \"pvalue\": \"0.01\"}, \"inputrds\": {\"__class__\": \"ConnectedValue\"}, \"outlier\": {\"outminc\": \"5\", \"outlg\": \"2\", \"final\": \"false\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"tsne\": {\"perplexity\": \"30\", \"knn\": \"10\", \"umap_nn\": \"15\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.3+galaxy0", + "type": "tool", + "uuid": "ca88c6cb-03e0-400c-8942-4c7ac0545a67", + "workflow_outputs": [ + { + "label": null, + "output_name": "outpdf", + "uuid": "48b02eb6-1b70-4d1f-a210-03aa93a189d8" + }, + { + "label": null, + "output_name": "outrdat", + "uuid": "e59d7dff-7e4b-42b4-ba62-09858f83c75c" + }, + { + "label": null, + "output_name": "outassignments", + "uuid": "2514a8cc-48a9-4cf2-9640-8663f81d6cd6" + }, + { + "label": null, + "output_name": "outgenelist", + "uuid": "b69f7d2f-4efe-41ca-ac2f-c74d45c2327e" + }, + { + "label": null, + "output_name": "outlog", + "uuid": "68cbc6ab-4697-4042-b5a0-0d9cd842e09a" + } + ] + }, + { + "annotation": "", + "content_id": "raceid_trajectory", + "errors": null, + "id": 3, + "input_connections": { + "inputrds": { + "id": 2, + "output_name": "outrdat" + } + }, + "inputs": [], + "label": null, + "name": "Lineage computation using StemID", + "outputs": [ + { + "name": "outpdf", + "type": "pdf" + }, + { + "name": "outrdat", + "type": "rdata" + } + ], + "position": { + "bottom": 298.08333587646484, + "height": 179.8333282470703, + "left": 778.75, + "right": 938.75, + "top": 118.25000762939453, + "width": 160, + "x": 778.75, + "y": 118.25000762939453 + }, + "post_job_actions": {}, + "tool_id": "raceid_trajectory", + "tool_state": "{\"__input_ext\": \"rdata\", \"chromInfo\": \"/tmp/tmp8dp_jicw/galaxy-dev/tool-data/shared/ucsc/chrom/?.len\", \"comppval\": {\"pthr\": \"0.01\", \"sensitive\": \"false\"}, \"compscore\": {\"nn\": \"1\", \"scthr\": \"0.0\"}, \"inputrds\": {\"__class__\": \"ConnectedValue\"}, \"plotgraph\": {\"showcells\": \"false\", \"scthr\": \"0.0\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"projback\": {\"pdishuf\": \"2000\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"projcell\": {\"knn\": \"3\", \"cthr\": \"5\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"use_log\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.3+galaxy0", + "type": "tool", + "uuid": "515732a4-cba5-402a-9cc8-11980c4815c6", + "workflow_outputs": [ + { + "label": null, + "output_name": "outpdf", + "uuid": "5de0f2cb-41a8-4278-8faa-20cdb534f3c4" + }, + { + "label": null, + "output_name": "outrdat", + "uuid": "91b567ed-cf6e-4ff4-a84d-186d49502dff" + } + ] + }, + { + "annotation": "", + "content_id": "raceid_inspectclusters", + "errors": null, + "id": 4, + "input_connections": { + "inputrds": { + "id": 2, + "output_name": "outrdat" + } + }, + "inputs": [], + "label": null, + "name": "Cluster Inspection using RaceID", + "outputs": [ + { + "name": "outpdf", + "type": "pdf" + }, + { + "name": "outlog", + "type": "txt" + } + ], + "position": { + "bottom": 512.9500045776367, + "height": 147.1999969482422, + "left": 773.75, + "right": 933.75, + "top": 365.75000762939453, + "width": 160, + "x": 773.75, + "y": 365.75000762939453 + }, + "post_job_actions": {}, + "tool_id": "raceid_inspectclusters", + "tool_state": "{\"__input_ext\": \"rdata\", \"chromInfo\": \"/tmp/tmp8dp_jicw/galaxy-dev/tool-data/shared/ucsc/chrom/?.len\", \"diffgtest\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"gois\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"inputrds\": {\"__class__\": \"ConnectedValue\"}, \"plotgen\": {\"do_opt\": \"yes\", \"__current_case__\": 1, \"clusts_plot\": \"\"}, \"plotsym\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.3+galaxy0", + "type": "tool", + "uuid": "727ee241-4de7-408f-867a-fc1ed21c23cb", + "workflow_outputs": [ + { + "label": null, + "output_name": "outpdf", + "uuid": "051cbdaa-6513-4239-91b6-e22004f6469f" + }, + { + "label": null, + "output_name": "outlog", + "uuid": "bf324238-9739-4960-90c0-2935d225bd42" + } + ] + }, + { + "annotation": "", + "content_id": "raceid_inspectclusters", + "errors": null, + "id": 5, + "input_connections": { + "inputrds": { + "id": 2, + "output_name": "outrdat" + } + }, + "inputs": [], + "label": null, + "name": "Cluster Inspection using RaceID", + "outputs": [ + { + "name": "outpdf", + "type": "pdf" + }, + { + "name": "outlog", + "type": "txt" + } + ], + "position": { + "bottom": 712.9500045776367, + "height": 147.1999969482422, + "left": 773.75, + "right": 933.75, + "top": 565.7500076293945, + "width": 160, + "x": 773.75, + "y": 565.7500076293945 + }, + "post_job_actions": {}, + "tool_id": "raceid_inspectclusters", + "tool_state": "{\"__input_ext\": \"rdata\", \"chromInfo\": \"/tmp/tmp8dp_jicw/galaxy-dev/tool-data/shared/ucsc/chrom/?.len\", \"diffgtest\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"gois\": {\"do_opt\": \"yes\", \"__current_case__\": 1, \"inspect_goi_genes\": \"Gstm3, St3gal4, Gna11\", \"inspect_goi_cells\": \"\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"inputrds\": {\"__class__\": \"ConnectedValue\"}, \"plotgen\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"plotsym\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.3+galaxy0", + "type": "tool", + "uuid": "6db63f68-65bc-4bb5-96a2-9d3e75712287", + "workflow_outputs": [ + { + "label": null, + "output_name": "outpdf", + "uuid": "344cd8bc-01a1-4614-8def-806815a615af" + }, + { + "label": null, + "output_name": "outlog", + "uuid": "3268d277-37a0-4081-ae95-8c7a83efb903" + } + ] + }, + { + "annotation": "", + "content_id": "raceid_inspectclusters", + "errors": null, + "id": 6, + "input_connections": { + "inputrds": { + "id": 2, + "output_name": "outrdat" + } + }, + "inputs": [], + "label": null, + "name": "Cluster Inspection using RaceID", + "outputs": [ + { + "name": "outpdf", + "type": "pdf" + }, + { + "name": "outlog", + "type": "txt" + } + ], + "position": { + "bottom": 827.9499664306641, + "height": 147.1999969482422, + "left": 1035, + "right": 1195, + "top": 680.7499694824219, + "width": 160, + "x": 1035, + "y": 680.7499694824219 + }, + "post_job_actions": {}, + "tool_id": "raceid_inspectclusters", + "tool_state": "{\"__input_ext\": \"rdata\", \"chromInfo\": \"/tmp/tmp8dp_jicw/galaxy-dev/tool-data/shared/ucsc/chrom/?.len\", \"diffgtest\": {\"do_opt\": \"yes\", \"__current_case__\": 1, \"set_a\": {\"name_set\": \"Cells in 1\", \"meth\": {\"type\": \"cln\", \"__current_case__\": 0, \"selector\": \"1\"}}, \"set_b\": {\"name_set\": \"Cells in 3\", \"meth\": {\"type\": \"cln\", \"__current_case__\": 0, \"selector\": \"3\"}}, \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}, \"gois\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"inputrds\": {\"__class__\": \"ConnectedValue\"}, \"plotgen\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"plotsym\": {\"do_opt\": \"no\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.3+galaxy0", + "type": "tool", + "uuid": "57c7332a-c6f5-484f-8a5c-d5467d320e72", + "workflow_outputs": [ + { + "label": null, + "output_name": "outpdf", + "uuid": "d028c3e8-3acb-44ba-968a-74b1cdfb4bb1" + }, + { + "label": null, + "output_name": "outlog", + "uuid": "8f9f3e29-3c56-4fcf-af0a-f2bea2c10234" + } + ] + }, + { + "annotation": "", + "content_id": "raceid_inspecttrajectory", + "errors": null, + "id": 7, + "input_connections": { + "inputrds": { + "id": 3, + "output_name": "outrdat" + } + }, + "inputs": [], + "label": null, + "name": "Lineage Branch Analysis using StemID", + "outputs": [ + { + "name": "outpdf", + "type": "pdf" + }, + { + "name": "outdiffgenes", + "type": "tabular" + }, + { + "name": "outlog", + "type": "txt" + } + ], + "position": { + "bottom": 372.61666107177734, + "height": 253.1166534423828, + "left": 1041.25, + "right": 1201.25, + "top": 119.50000762939453, + "width": 160, + "x": 1041.25, + "y": 119.50000762939453 + }, + "post_job_actions": {}, + "tool_id": "raceid_inspecttrajectory", + "tool_state": "{\"__input_ext\": \"rdata\", \"chromInfo\": \"/tmp/tmp8dp_jicw/galaxy-dev/tool-data/shared/ucsc/chrom/?.len\", \"inputrds\": {\"__class__\": \"ConnectedValue\"}, \"trjfid\": {\"basic\": {\"doit\": \"no\", \"__current_case__\": 0}}, \"trjsid\": {\"basic\": {\"doit\": \"yes\", \"__current_case__\": 1, \"i\": \"3\", \"br\": \"1,3,5\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.3+galaxy0", + "type": "tool", + "uuid": "4a519b59-2319-4811-969e-3b872f95c377", + "workflow_outputs": [ + { + "label": null, + "output_name": "outpdf", + "uuid": "1e19e4d3-802d-4713-b920-ba8264bce2d0" + }, + { + "label": null, + "output_name": "outdiffgenes", + "uuid": "814ac5ce-500d-4ea2-bbc7-ab8c4f5d2962" + }, + { + "label": null, + "output_name": "outlog", + "uuid": "4404cdf2-ee33-4e08-8fed-83b52bbfad88" + } + ] + }, + { + "annotation": "", + "content_id": "raceid_inspecttrajectory", + "errors": null, + "id": 8, + "input_connections": { + "inputrds": { + "id": 3, + "output_name": "outrdat" + } + }, + "inputs": [], + "label": null, + "name": "Lineage Branch Analysis using StemID", + "outputs": [ + { + "name": "outpdf", + "type": "pdf" + }, + { + "name": "outlog", + "type": "txt" + } + ], + "position": { + "bottom": 625.5833358764648, + "height": 179.8333282470703, + "left": 1040, + "right": 1200, + "top": 445.75000762939453, + "width": 160, + "x": 1040, + "y": 445.75000762939453 + }, + "post_job_actions": {}, + "tool_id": "raceid_inspecttrajectory", + "tool_state": "{\"__input_ext\": \"rdata\", \"chromInfo\": \"/tmp/tmp8dp_jicw/galaxy-dev/tool-data/shared/ucsc/chrom/?.len\", \"inputrds\": {\"__class__\": \"ConnectedValue\"}, \"trjfid\": {\"basic\": {\"doit\": \"yes\", \"__current_case__\": 1, \"cellsfromz\": \"1,3,5\", \"use\": {\"def\": \"yes\", \"__current_case__\": 0}, \"som\": {\"doit\": \"no\", \"__current_case__\": 0}}}, \"trjsid\": {\"basic\": {\"doit\": \"no\", \"__current_case__\": 0}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2.3+galaxy0", + "type": "tool", + "uuid": "883ffd05-1545-449f-8028-c45c0f9edfd5", + "workflow_outputs": [ + { + "label": null, + "output_name": "outpdf", + "uuid": "8ef7bad4-ff15-42d2-acc4-6c5bc5de89e4" + }, + { + "label": null, + "output_name": "outlog", + "uuid": "23f0fab3-0128-443a-a26a-a3e40cee4578" + } + ] + } + ], + "parent_id": "single-cell/scrna-raceid", + "path": "topics/single-cell/tutorials/scrna-raceid/workflows/main_workflow.ga", + "tags": [ + "transcriptomics", + "single-cell" + ], + "test_results": null, + "tests": false, + "title": "RaceID Workflow", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-raceid/versions/main-workflow", + "tutorial_id": "scrna-raceid", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-raceid/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-raceid/workflows/main_workflow.html", + "version": 1, + "wfid": "single-cell-scrna-raceid", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "raceid_clustering", + "raceid_filtnormconf", + "raceid_inspectclusters", + "raceid_inspecttrajectory", + "raceid_trajectory" + ], + "workflowhub_id": "1205" + } + ], + "zenodo_link": "https://zenodo.org/record/1511582" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_import", + "owner": "iuc", + "revisions": "93dd15e13e6a", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "6f0d0c784f09", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "ed4996a16f7f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "4c07ddedc198", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "revisions": "6acb08931836", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter", + "owner": "iuc", + "revisions": "a03ff8633507", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_inspect", + "owner": "iuc", + "revisions": "3081ff5c84a3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_normalize", + "owner": "iuc", + "revisions": "94c19fb1281c", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot", + "owner": "iuc", + "revisions": "9b0cdb8cf6be", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_remove_confounders", + "owner": "iuc", + "revisions": "458e8f43a775", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_import\n owner: iuc\n revisions: 93dd15e13e6a\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: 6f0d0c784f09\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: ed4996a16f7f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 4c07ddedc198\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_cluster_reduce_dimension\n owner: iuc\n revisions: 6acb08931836\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter\n owner: iuc\n revisions: a03ff8633507\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_inspect\n owner: iuc\n revisions: 3081ff5c84a3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_normalize\n owner: iuc\n revisions: 94c19fb1281c\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot\n owner: iuc\n revisions: 9b0cdb8cf6be\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_remove_confounders\n owner: iuc\n revisions: 458e8f43a775\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-scanpy-pbmc3k/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "hrhotz@googlemail.com", + "fediverse": "https://genomic.social/@hrhotz", + "fediverse_flavor": "mastodon", + "id": "hrhotz", + "joined": "2017-09", + "linkedin": "hans-rudolf-hotz-542b31", + "location": { + "country": "CH", + "lat": 47.57, + "lon": 7.6 + }, + "matrix": "hrhotz:matrix.org", + "name": "Hans-Rudolf Hotz", + "orcid": "0000-0002-2799-424X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hrhotz/", + "twitter": "hrhotz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hrhotz.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "email": "dianachj@informatik.uni-freiburg.de", + "id": "dianichj", + "joined": "2024-08", + "name": "Diana Chiang Jurado", + "orcid": "0000-0002-5857-1477", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dianichj/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dianichj.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-scanpy-pbmc3k", + "edam_operation": [ + "Differential gene expression analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-scanpy-pbmc3k", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "scRNA-seq data analysis is complex and exploratory process, still in development", + "Different tools and parameters should be tested for each step of the process" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-16", + "objectives": [ + "Describe an AnnData object to store single-cell data", + "Explain the preprocessing steps for single-cell data", + "Evaluate quality of single-cell data and apply steps to select and filter cells and genes based on QC", + "Execute data normalization and scaling", + "Identify highly variable genes", + "Construct and run a dimensionality reduction using Principal Component Analysis", + "Perform a graph-based clustering for cells", + "Identify marker genes for the clusters", + "Construct and run a cell type annotation for the clusters" + ], + "pageviews": 5734803, + "priority": 2, + "pub_date": "2019-12-19", + "questions": [ + "What are the steps to prepare single-cell RNA-Seq data for clustering?", + "How to cluster cells in single-cell RNA-Seq data?", + "How cell type annotation can be assigned to cell clusters?" + ], + "recordings": [ + { + "captioners": [ + "hrhotz" + ], + "date": "2021-03-18", + "length": "45M", + "speakers": [ + "nomadscientist" + ], + "youtube_id": "nefB35Bi1l4" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-scanpy-pbmc3k/tutorial", + "/short/single-cell/scrna-scanpy-pbmc3k", + "/short/T00254" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-preprocessing", + "scrna-preprocessing-tenx" + ], + "type": "internal" + } + ], + "short_id": "T00254", + "short_tools": [ + "anndata_manipulate", + "cat1", + "anndata_inspect", + "scanpy_inspect", + "scanpy_plot", + "datamash_ops", + "scanpy_normalize", + "tp_grep_tool", + "tp_awk_tool", + "tp_tail_tool", + "scanpy_cluster_reduce_dimension", + "Filter1", + "anndata_import", + "tp_replace_in_line", + "scanpy_filter", + "scanpy_remove_confounders" + ], + "slides": true, + "slides_recordings": false, + "subtopic": "firstsc", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "10x" + ], + "time_estimation": "8H", + "title": "Clustering 3K PBMCs with Scanpy", + "tools": [ + "Filter1", + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_remove_confounders/scanpy_remove_confounders/1.9.6+galaxy1" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-scanpy-pbmc3k", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-scanpy-pbmc3k/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-scanpy-pbmc3k/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-scanpy-pbmc3k/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 274, + "visitors": 2069109, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "0000-0002-2799-424X", + "name": "Hans-Rudolf Hotz" + }, + { + "class": "Person", + "identifier": "0000-0002-4181-2676", + "name": "Mehmet Tekman" + }, + { + "class": "Person", + "identifier": "0000-0002-5192-126X", + "name": "Pavankumar Videm" + } + ], + "description": "Workflow based on clustering 3K PBMCs with Scanpy tutorial", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBarcodes\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenes\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMatrix\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmito header\"]\n 4[label=\"Import Anndata and loom\"]\n 2 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Inspect AnnData\"]\n 4 -> 5 [label=\"anndata\"]\n 6[label=\"Inspect AnnData\"]\n 4 -> 6 [label=\"anndata\"]\n 7[label=\"Inspect AnnData\"]\n 4 -> 7 [label=\"anndata\"]\n 8[label=\"Filter\"]\n 4 -> 8 [label=\"anndata\"]\n 9[label=\"Inspect AnnData\"]\n 4 -> 9 [label=\"anndata\"]\n 10[label=\"Inspect AnnData\"]\n 8 -> 10 [label=\"anndata_out\"]\n 11[label=\"Select last\"]\n 10 -> 11 [label=\"var\"]\n 12[label=\"Text reformatting\"]\n 11 -> 12 [label=\"outfile\"]\n 13[label=\"Search in textfiles\"]\n 11 -> 13 [label=\"outfile\"]\n 14[label=\"Replace Text\"]\n 12 -> 14 [label=\"outfile\"]\n 15[label=\"Concatenate datasets\"]\n 3 -> 15 [label=\"output\"]\n 14 -> 15 [label=\"outfile\"]\n 16[label=\"Manipulate AnnData\"]\n 8 -> 16 [label=\"anndata_out\"]\n 15 -> 16 [label=\"out_file1\"]\n 17[label=\"Inspect and manipulate\"]\n 16 -> 17 [label=\"anndata\"]\n 18[label=\"Inspect AnnData\"]\n 16 -> 18 [label=\"anndata\"]\n 19[label=\"Plot\"]\n 17 -> 19 [label=\"anndata_out\"]\n k4ab8b8104e7946b2b74074e267f5e209[color=lightseagreen,label=\"Output\\nout_png\"]\n 19 -> k4ab8b8104e7946b2b74074e267f5e209\n 20[label=\"Filter\"]\n 17 -> 20 [label=\"anndata_out\"]\n 21[label=\"Plot\"]\n 17 -> 21 [label=\"anndata_out\"]\n k02478047eb044a4eb1fff3cb3c7673d5[color=lightseagreen,label=\"Output\\nout_png\"]\n 21 -> k02478047eb044a4eb1fff3cb3c7673d5\n 22[label=\"Plot\"]\n 17 -> 22 [label=\"anndata_out\"]\n k3eb66a4a79fe43a3889bd43daeae5e17[color=lightseagreen,label=\"Output\\nout_png\"]\n 22 -> k3eb66a4a79fe43a3889bd43daeae5e17\n 23[label=\"Filter\"]\n 20 -> 23 [label=\"anndata_out\"]\n 24[label=\"Manipulate AnnData\"]\n 23 -> 24 [label=\"anndata_out\"]\n 25[label=\"Normalize\"]\n 24 -> 25 [label=\"anndata\"]\n 26[label=\"Inspect and manipulate\"]\n 25 -> 26 [label=\"anndata_out\"]\n 27[label=\"Manipulate AnnData\"]\n 26 -> 27 [label=\"anndata_out\"]\n 28[label=\"Filter\"]\n 27 -> 28 [label=\"anndata\"]\n 29[label=\"Manipulate AnnData\"]\n 28 -> 29 [label=\"anndata_out\"]\n 30[label=\"Plot\"]\n 28 -> 30 [label=\"anndata_out\"]\n 31[label=\"Remove confounders\"]\n 29 -> 31 [label=\"anndata\"]\n 32[label=\"Inspect and manipulate\"]\n 31 -> 32 [label=\"anndata_out\"]\n 33[label=\"Cluster, infer trajectories and embed\"]\n 32 -> 33 [label=\"anndata_out\"]\n k96cbb37ee75544799f14f0e14f689868[color=lightseagreen,label=\"Output\\nanndata_out\"]\n 33 -> k96cbb37ee75544799f14f0e14f689868\n 34[label=\"Plot\"]\n 33 -> 34 [label=\"anndata_out\"]\n 35[label=\"Plot\"]\n 33 -> 35 [label=\"anndata_out\"]\n k5dc45ef9c56e4dbd9817367c981a2041[color=lightseagreen,label=\"Output\\nout_png\"]\n 35 -> k5dc45ef9c56e4dbd9817367c981a2041\n 36[label=\"Inspect and manipulate\"]\n 33 -> 36 [label=\"anndata_out\"]\n 37[label=\"Plot\"]\n 33 -> 37 [label=\"anndata_out\"]\n 38[label=\"Plot\"]\n 33 -> 38 [label=\"anndata_out\"]\n 39[label=\"Cluster, infer trajectories and embed\"]\n 36 -> 39 [label=\"anndata_out\"]\n 40[label=\"Cluster, infer trajectories and embed\"]\n 39 -> 40 [label=\"anndata_out\"]\n 41[label=\"Plot\"]\n 39 -> 41 [label=\"anndata_out\"]\n k29513947d16c48b293ffdd78cd99ecb7[color=lightseagreen,label=\"Output\\nout_png\"]\n 41 -> k29513947d16c48b293ffdd78cd99ecb7\n 42[label=\"Inspect and manipulate\"]\n 40 -> 42 [label=\"anndata_out\"]\n 43[label=\"Inspect and manipulate\"]\n 40 -> 43 [label=\"anndata_out\"]\n kda91ad5add9c482eaccc8e42d645e7b1[color=lightseagreen,label=\"Output\\nanndata_out\"]\n 43 -> kda91ad5add9c482eaccc8e42d645e7b1\n 44[label=\"Plot\"]\n 40 -> 44 [label=\"anndata_out\"]\n 45[label=\"Inspect AnnData\"]\n 42 -> 45 [label=\"anndata_out\"]\n k868797a3ab7445bf96d184451a16f882[color=lightseagreen,label=\"Output\\nuns_rank_genes_groups_names\"]\n 45 -> k868797a3ab7445bf96d184451a16f882\n 46[label=\"Plot\"]\n 42 -> 46 [label=\"anndata_out\"]\n 47[label=\"Plot\"]\n 43 -> 47 [label=\"anndata_out\"]\n k2d0426368fd142e3af8d83b4d613f075[color=lightseagreen,label=\"Output\\nout_png\"]\n 47 -> k2d0426368fd142e3af8d83b4d613f075\n 48[label=\"Manipulate AnnData\"]\n 43 -> 48 [label=\"anndata_out\"]\n k51289df3101f4c6cae85a8f46c2f33ea[color=lightseagreen,label=\"Output\\nanndata\"]\n 48 -> k51289df3101f4c6cae85a8f46c2f33ea\n 49[label=\"Inspect and manipulate\"]\n 43 -> 49 [label=\"anndata_out\"]\n 50[label=\"Inspect AnnData\"]\n 43 -> 50 [label=\"anndata_out\"]\n ke617acd1e59d4f20b39d9dc0f832b0db[color=lightseagreen,label=\"Output\\nuns_rank_genes_groups_names\"]\n 50 -> ke617acd1e59d4f20b39d9dc0f832b0db\n 51[label=\"Plot\"]\n 43 -> 51 [label=\"anndata_out\"]\n k983e7cee7028456c9db2bf0ad3e52de5[color=lightseagreen,label=\"Output\\nout_png\"]\n 51 -> k983e7cee7028456c9db2bf0ad3e52de5\n 52[label=\"Inspect clusters\"]\n 43 -> 52 [label=\"anndata_out\"]\n 53[label=\"Plot\"]\n 43 -> 53 [label=\"anndata_out\"]\n k734099bbf4544d8cbc78a269b0570c41[color=lightseagreen,label=\"Output\\nout_png\"]\n 53 -> k734099bbf4544d8cbc78a269b0570c41\n 54[label=\"Plot\"]\n 43 -> 54 [label=\"anndata_out\"]\n 55[label=\"Plot\"]\n 43 -> 55 [label=\"anndata_out\"]\n k39f2d4b6f2e841b3a00aa2c5b54face2[color=lightseagreen,label=\"Output\\nout_png\"]\n 55 -> k39f2d4b6f2e841b3a00aa2c5b54face2\n 56[label=\"Plot\"]\n 48 -> 56 [label=\"anndata\"]\n ke0979d1eeb874a7b904fa5116c7b8fff[color=lightseagreen,label=\"Output\\nout_svg\"]\n 56 -> ke0979d1eeb874a7b904fa5116c7b8fff\n 57[label=\"Plot\"]\n 48 -> 57 [label=\"anndata\"]\n 58[label=\"Plot\"]\n 48 -> 58 [label=\"anndata\"]\n kbd14e6442a324a81bd83042ee46d118a[color=lightseagreen,label=\"Output\\nout_png\"]\n 58 -> kbd14e6442a324a81bd83042ee46d118a\n 59[label=\"Plot\"]\n 49 -> 59 [label=\"anndata_out\"]\n ke9cf90dbac4248768abd183fea271666[color=lightseagreen,label=\"Output\\ncollection_png\"]\n 59 -> ke9cf90dbac4248768abd183fea271666\n 60[label=\"Plot\"]\n 49 -> 60 [label=\"anndata_out\"]\n kaef215b1dbb4447b9297c90536842c8e[color=lightseagreen,label=\"Output\\nout_png\"]\n 60 -> kaef215b1dbb4447b9297c90536842c8e\n 61[label=\"Datamash\"]\n 52 -> 61 [label=\"obs\"]\n}", + "history": [ + { + "hash": "88dc627137c8b99caffc83600d6d35a033cd44f2", + "message": "add CC 4.0 license", + "num": 3, + "short_hash": "88dc62713", + "unix": "1700584865" + }, + { + "hash": "f5d15e8694d7b1bacc7dd018fb760089e9ae6b1f", + "message": "add links to a control history and workflow", + "num": 2, + "short_hash": "f5d15e869", + "unix": "1700584101" + }, + { + "hash": "a0fbcfe2e2ee8733c5ceb6d36827b747adfad15a", + "message": "add workflow and tests", + "num": 1, + "short_hash": "a0fbcfe2e", + "unix": "1700582886" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Barcodes" + } + ], + "label": "Barcodes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 786 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "51e797e4-a9e9-496a-92c0-e45f4c9ebd5d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genes" + } + ], + "label": "Genes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 888 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "614e3951-97a8-4b9a-8052-5e900febcc9f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Matrix" + } + ], + "label": "Matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 990 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e08d9bbd-0761-47dd-b87a-9a0aff2b963b", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mito header" + } + ], + "label": "mito header", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1679.9999999999977, + "top": 1106 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d798c58a-1b8e-4b1a-be24-3703fa627c0d", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nBarcodes\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGenes\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nMatrix\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nmito header\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Import Anndata and loom\"];\n 2 -->|output| 4;\n 0 -->|output| 4;\n 1 -->|output| 4;\n 5[\"Inspect AnnData\"];\n 4 -->|anndata| 5;\n 6[\"Inspect AnnData\"];\n 4 -->|anndata| 6;\n 7[\"Inspect AnnData\"];\n 4 -->|anndata| 7;\n 8[\"Filter\"];\n 4 -->|anndata| 8;\n 9[\"Inspect AnnData\"];\n 4 -->|anndata| 9;\n 10[\"Inspect AnnData\"];\n 8 -->|anndata_out| 10;\n 11[\"Select last\"];\n 10 -->|var| 11;\n 12[\"Text reformatting\"];\n 11 -->|outfile| 12;\n 13[\"Search in textfiles\"];\n 11 -->|outfile| 13;\n 14[\"Replace Text\"];\n 12 -->|outfile| 14;\n 15[\"Concatenate datasets\"];\n 3 -->|output| 15;\n 14 -->|outfile| 15;\n 16[\"Manipulate AnnData\"];\n 8 -->|anndata_out| 16;\n 15 -->|out_file1| 16;\n 17[\"Inspect and manipulate\"];\n 16 -->|anndata| 17;\n 18[\"Inspect AnnData\"];\n 16 -->|anndata| 18;\n 19[\"Plot\"];\n 17 -->|anndata_out| 19;\n 4ab8b810-4e79-46b2-b740-74e267f5e209[\"Output\\nout_png\"];\n 19 --> 4ab8b810-4e79-46b2-b740-74e267f5e209;\n style 4ab8b810-4e79-46b2-b740-74e267f5e209 stroke:#2c3143,stroke-width:4px;\n 20[\"Filter\"];\n 17 -->|anndata_out| 20;\n 21[\"Plot\"];\n 17 -->|anndata_out| 21;\n 02478047-eb04-4a4e-b1ff-f3cb3c7673d5[\"Output\\nout_png\"];\n 21 --> 02478047-eb04-4a4e-b1ff-f3cb3c7673d5;\n style 02478047-eb04-4a4e-b1ff-f3cb3c7673d5 stroke:#2c3143,stroke-width:4px;\n 22[\"Plot\"];\n 17 -->|anndata_out| 22;\n 3eb66a4a-79fe-43a3-889b-d43daeae5e17[\"Output\\nout_png\"];\n 22 --> 3eb66a4a-79fe-43a3-889b-d43daeae5e17;\n style 3eb66a4a-79fe-43a3-889b-d43daeae5e17 stroke:#2c3143,stroke-width:4px;\n 23[\"Filter\"];\n 20 -->|anndata_out| 23;\n 24[\"Manipulate AnnData\"];\n 23 -->|anndata_out| 24;\n 25[\"Normalize\"];\n 24 -->|anndata| 25;\n 26[\"Inspect and manipulate\"];\n 25 -->|anndata_out| 26;\n 27[\"Manipulate AnnData\"];\n 26 -->|anndata_out| 27;\n 28[\"Filter\"];\n 27 -->|anndata| 28;\n 29[\"Manipulate AnnData\"];\n 28 -->|anndata_out| 29;\n 30[\"Plot\"];\n 28 -->|anndata_out| 30;\n 31[\"Remove confounders\"];\n 29 -->|anndata| 31;\n 32[\"Inspect and manipulate\"];\n 31 -->|anndata_out| 32;\n 33[\"Cluster, infer trajectories and embed\"];\n 32 -->|anndata_out| 33;\n 96cbb37e-e755-4479-9f14-f0e14f689868[\"Output\\nanndata_out\"];\n 33 --> 96cbb37e-e755-4479-9f14-f0e14f689868;\n style 96cbb37e-e755-4479-9f14-f0e14f689868 stroke:#2c3143,stroke-width:4px;\n 34[\"Plot\"];\n 33 -->|anndata_out| 34;\n 35[\"Plot\"];\n 33 -->|anndata_out| 35;\n 5dc45ef9-c56e-4dbd-9817-367c981a2041[\"Output\\nout_png\"];\n 35 --> 5dc45ef9-c56e-4dbd-9817-367c981a2041;\n style 5dc45ef9-c56e-4dbd-9817-367c981a2041 stroke:#2c3143,stroke-width:4px;\n 36[\"Inspect and manipulate\"];\n 33 -->|anndata_out| 36;\n 37[\"Plot\"];\n 33 -->|anndata_out| 37;\n 38[\"Plot\"];\n 33 -->|anndata_out| 38;\n 39[\"Cluster, infer trajectories and embed\"];\n 36 -->|anndata_out| 39;\n 40[\"Cluster, infer trajectories and embed\"];\n 39 -->|anndata_out| 40;\n 41[\"Plot\"];\n 39 -->|anndata_out| 41;\n 29513947-d16c-48b2-93ff-dd78cd99ecb7[\"Output\\nout_png\"];\n 41 --> 29513947-d16c-48b2-93ff-dd78cd99ecb7;\n style 29513947-d16c-48b2-93ff-dd78cd99ecb7 stroke:#2c3143,stroke-width:4px;\n 42[\"Inspect and manipulate\"];\n 40 -->|anndata_out| 42;\n 43[\"Inspect and manipulate\"];\n 40 -->|anndata_out| 43;\n da91ad5a-dd9c-482e-accc-8e42d645e7b1[\"Output\\nanndata_out\"];\n 43 --> da91ad5a-dd9c-482e-accc-8e42d645e7b1;\n style da91ad5a-dd9c-482e-accc-8e42d645e7b1 stroke:#2c3143,stroke-width:4px;\n 44[\"Plot\"];\n 40 -->|anndata_out| 44;\n 45[\"Inspect AnnData\"];\n 42 -->|anndata_out| 45;\n 868797a3-ab74-45bf-96d1-84451a16f882[\"Output\\nuns_rank_genes_groups_names\"];\n 45 --> 868797a3-ab74-45bf-96d1-84451a16f882;\n style 868797a3-ab74-45bf-96d1-84451a16f882 stroke:#2c3143,stroke-width:4px;\n 46[\"Plot\"];\n 42 -->|anndata_out| 46;\n 47[\"Plot\"];\n 43 -->|anndata_out| 47;\n 2d042636-8fd1-42e3-af8d-83b4d613f075[\"Output\\nout_png\"];\n 47 --> 2d042636-8fd1-42e3-af8d-83b4d613f075;\n style 2d042636-8fd1-42e3-af8d-83b4d613f075 stroke:#2c3143,stroke-width:4px;\n 48[\"Manipulate AnnData\"];\n 43 -->|anndata_out| 48;\n 51289df3-101f-4c6c-ae85-a8f46c2f33ea[\"Output\\nanndata\"];\n 48 --> 51289df3-101f-4c6c-ae85-a8f46c2f33ea;\n style 51289df3-101f-4c6c-ae85-a8f46c2f33ea stroke:#2c3143,stroke-width:4px;\n 49[\"Inspect and manipulate\"];\n 43 -->|anndata_out| 49;\n 50[\"Inspect AnnData\"];\n 43 -->|anndata_out| 50;\n e617acd1-e59d-4f20-b39d-9dc0f832b0db[\"Output\\nuns_rank_genes_groups_names\"];\n 50 --> e617acd1-e59d-4f20-b39d-9dc0f832b0db;\n style e617acd1-e59d-4f20-b39d-9dc0f832b0db stroke:#2c3143,stroke-width:4px;\n 51[\"Plot\"];\n 43 -->|anndata_out| 51;\n 983e7cee-7028-456c-9db2-bf0ad3e52de5[\"Output\\nout_png\"];\n 51 --> 983e7cee-7028-456c-9db2-bf0ad3e52de5;\n style 983e7cee-7028-456c-9db2-bf0ad3e52de5 stroke:#2c3143,stroke-width:4px;\n 52[\"Inspect clusters\"];\n 43 -->|anndata_out| 52;\n 53[\"Plot\"];\n 43 -->|anndata_out| 53;\n 734099bb-f454-4d8c-bc78-a269b0570c41[\"Output\\nout_png\"];\n 53 --> 734099bb-f454-4d8c-bc78-a269b0570c41;\n style 734099bb-f454-4d8c-bc78-a269b0570c41 stroke:#2c3143,stroke-width:4px;\n 54[\"Plot\"];\n 43 -->|anndata_out| 54;\n 55[\"Plot\"];\n 43 -->|anndata_out| 55;\n 39f2d4b6-f2e8-41b3-a00a-a2c5b54face2[\"Output\\nout_png\"];\n 55 --> 39f2d4b6-f2e8-41b3-a00a-a2c5b54face2;\n style 39f2d4b6-f2e8-41b3-a00a-a2c5b54face2 stroke:#2c3143,stroke-width:4px;\n 56[\"Plot\"];\n 48 -->|anndata| 56;\n e0979d1e-eb87-4a7b-904f-a5116c7b8fff[\"Output\\nout_svg\"];\n 56 --> e0979d1e-eb87-4a7b-904f-a5116c7b8fff;\n style e0979d1e-eb87-4a7b-904f-a5116c7b8fff stroke:#2c3143,stroke-width:4px;\n 57[\"Plot\"];\n 48 -->|anndata| 57;\n 58[\"Plot\"];\n 48 -->|anndata| 58;\n bd14e644-2a32-4a81-bd83-042ee46d118a[\"Output\\nout_png\"];\n 58 --> bd14e644-2a32-4a81-bd83-042ee46d118a;\n style bd14e644-2a32-4a81-bd83-042ee46d118a stroke:#2c3143,stroke-width:4px;\n 59[\"Plot\"];\n 49 -->|anndata_out| 59;\n e9cf90db-ac42-4876-8abd-183fea271666[\"Output\\ncollection_png\"];\n 59 --> e9cf90db-ac42-4876-8abd-183fea271666;\n style e9cf90db-ac42-4876-8abd-183fea271666 stroke:#2c3143,stroke-width:4px;\n 60[\"Plot\"];\n 49 -->|anndata_out| 60;\n aef215b1-dbb4-447b-9297-c90536842c8e[\"Output\\nout_png\"];\n 60 --> aef215b1-dbb4-447b-9297-c90536842c8e;\n style aef215b1-dbb4-447b-9297-c90536842c8e stroke:#2c3143,stroke-width:4px;\n 61[\"Datamash\"];\n 52 -->|obs| 61;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Clustering 3k PBMC with Scanpy", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "adata": { + "id": 17, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 2799.999999999996, + "top": 931 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.scatter\", \"__current_case__\": 0, \"type\": {\"type\": \"xy\", \"__current_case__\": 0, \"x\": \"n_genes_by_counts\", \"y\": \"pct_counts_mito\", \"log\": false, \"color\": \"\", \"layers\": {\"use_layers\": \"false\", \"__current_case__\": 1}}, \"use_raw\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"color_map\": null, \"palette\": null, \"frameon\": true, \"size\": null, \"title\": \"\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "8cd94050-8147-45a7-8c16-274bdc987a35", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "4ab8b810-4e79-46b2-b740-74e267f5e209" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 21, + "input_connections": { + "adata": { + "id": 17, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 2799.999999999996, + "top": 1199 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.scatter\", \"__current_case__\": 0, \"type\": {\"type\": \"xy\", \"__current_case__\": 0, \"x\": \"total_counts\", \"y\": \"n_genes_by_counts\", \"log\": false, \"color\": \"\", \"layers\": {\"use_layers\": \"false\", \"__current_case__\": 1}}, \"use_raw\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"color_map\": null, \"palette\": null, \"frameon\": true, \"size\": null, \"title\": \"\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "748883c6-9abf-464b-8dad-746f9d7ae9af", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "02478047-eb04-4a4e-b1ff-f3cb3c7673d5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 22, + "input_connections": { + "adata": { + "id": 17, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 2799.999999999996, + "top": 1333 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"n_genes_by_counts, total_counts, pct_counts_mito\"}, \"groupby\": \"\", \"log\": false, \"use_raw\": false, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"True\", \"__current_case__\": 0, \"width\": null, \"height\": null}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": null, \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "dbea9c99-c513-45bb-be11-f1e995ea29cc", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "3eb66a4a-79fe-43a3-889b-d43daeae5e17" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 30, + "input_connections": { + "adata": { + "id": 28, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 4759.999999999994, + "top": 1209 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.highly_variable_genes\", \"__current_case__\": 7, \"log\": false, \"highly_variable_genes\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "b74ac6fe-664f-4751-aa40-e584c4846be3", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "2dfc6706-ccdb-43ca-87b6-40cf80f8e31c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.9.6+galaxy1", + "errors": null, + "id": 33, + "input_connections": { + "adata": { + "id": 32, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Cluster, infer trajectories and embed", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 5599.999999999994, + "top": 1055 + }, + "post_job_actions": { + "RenameDatasetActionanndata_out": { + "action_arguments": { + "newname": "3k PBMC with only HVG, after scaling and PCA" + }, + "action_type": "RenameDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6acb08931836", + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"tl.pca\", \"__current_case__\": 3, \"n_comps\": \"50\", \"dtype\": \"float32\", \"pca\": {\"chunked\": \"False\", \"__current_case__\": 1, \"zero_center\": true, \"svd_solver\": \"arpack\", \"random_state\": \"0\"}, \"use_highly_variable\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "ae913706-975b-4b63-8432-313b325a4306", + "when": null, + "workflow_outputs": [ + { + "label": "anndata_out", + "output_name": "anndata_out", + "uuid": "96cbb37e-e755-4479-9f14-f0e14f689868" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 34, + "input_connections": { + "adata": { + "id": 33, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 5879.999999999994, + "top": 787 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.pca_loadings\", \"__current_case__\": 10, \"components\": \"1,2,3\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "e074111c-968e-444a-827d-9928727e9792", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "630f48d2-915e-4d59-b25b-b99a957b1cce" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 35, + "input_connections": { + "adata": { + "id": 33, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 5879.999999999994, + "top": 921 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.pca_variance_ratio\", \"__current_case__\": 11, \"n_pcs\": \"30\", \"log\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "bb708b36-d4d4-424e-8262-4a792dd2098f", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "5dc45ef9-c56e-4dbd-9817-367c981a2041" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 37, + "input_connections": { + "adata": { + "id": 33, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 5879.999999999994, + "top": 1209 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.pca_overview\", \"__current_case__\": 12, \"color\": \"\", \"use_raw\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [{\"__index__\": 0, \"axis1\": \"1\", \"axis2\": \"2\"}, {\"__index__\": 1, \"axis1\": \"2\", \"axis2\": \"3\"}], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": null, \"palette\": null, \"frameon\": true, \"ncols\": \"2\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "bd73b843-6b62-4b87-8712-6e2ded015eb1", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "630f48d2-915e-4d59-b25b-b99a957b1cce" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 38, + "input_connections": { + "adata": { + "id": 33, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 5879.999999999994, + "top": 1343 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.pca_overview\", \"__current_case__\": 12, \"color\": \"CST3, NKG7, PPBP\", \"use_raw\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [{\"__index__\": 0, \"axis1\": \"1\", \"axis2\": \"2\"}, {\"__index__\": 1, \"axis1\": \"2\", \"axis2\": \"3\"}], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": null, \"palette\": null, \"frameon\": true, \"ncols\": \"2\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "4884a876-9340-4e66-843f-f1849df0f52b", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "630f48d2-915e-4d59-b25b-b99a957b1cce" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 41, + "input_connections": { + "adata": { + "id": 39, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 6439.999999999994, + "top": 1209 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"CST3, NKG7, PPBP\", \"use_raw\": false, \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": null, \"palette\": null, \"frameon\": true, \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "efe6eab5-4014-4c80-a425-809d20cf6672", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "29513947-d16c-48b2-93ff-dd78cd99ecb7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.9.6+galaxy1", + "errors": null, + "id": 43, + "input_connections": { + "adata": { + "id": 40, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Inspect and manipulate", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 6719.999999999994, + "top": 1055 + }, + "post_job_actions": { + "RenameDatasetActionanndata_out": { + "action_arguments": { + "newname": "3k PBMC with only HVG, after scaling, PCA, KNN graph, UMAP, clustering, marker genes with Wilcoxon test" + }, + "action_type": "RenameDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3081ff5c84a3", + "name": "scanpy_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"method\": {\"method\": \"tl.rank_genes_groups\", \"__current_case__\": 4, \"groupby\": \"louvain\", \"use_raw\": true, \"groups\": \"\", \"ref\": {\"rest\": \"rest\", \"__current_case__\": 0}, \"n_genes\": \"100\", \"tl_rank_genes_groups_method\": {\"method\": \"wilcoxon\", \"__current_case__\": 1, \"corr_method\": \"benjamini-hochberg\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "636ce34b-e448-4108-8c36-08bb9552f3d9", + "when": null, + "workflow_outputs": [ + { + "label": "anndata_out", + "output_name": "anndata_out", + "uuid": "da91ad5a-dd9c-482e-accc-8e42d645e7b1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "errors": null, + "id": 45, + "input_connections": { + "input": { + "id": 42, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "uns_rank_genes_groups_names", + "type": "tabular" + }, + { + "name": "uns_rank_genes_groups_scores", + "type": "tabular" + }, + { + "name": "uns_rank_genes_groups_logfoldchanges", + "type": "tabular" + }, + { + "name": "uns_rank_genes_groups_pvals", + "type": "tabular" + }, + { + "name": "uns_rank_genes_groups_pvals_adj", + "type": "tabular" + } + ], + "position": { + "left": 6999.999999999994, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6f0d0c784f09", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"uns\", \"__current_case__\": 5, \"uns_info\": \"rank_genes_groups\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "a4ce5de4-7791-48f6-bcdf-97a9a6c930cb", + "when": null, + "workflow_outputs": [ + { + "label": "uns_rank_genes_groups_names", + "output_name": "uns_rank_genes_groups_names", + "uuid": "868797a3-ab74-45bf-96d1-84451a16f882" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 47, + "input_connections": { + "adata": { + "id": 43, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 6999.999999999994, + "top": 614 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"CST3, NKG7, PPBP\"}, \"groupby\": \"louvain\", \"log\": false, \"use_raw\": false, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "8030a8a4-0fb2-41b4-b7b6-a3fee0e1348c", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "2d042636-8fd1-42e3-af8d-83b4d613f075" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "errors": null, + "id": 48, + "input_connections": { + "input": { + "id": 43, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 6999.999999999994, + "top": 748 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ed4996a16f7f", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"rename_categories\", \"__current_case__\": 3, \"key\": \"louvain\", \"categories\": \"CD4+ T, CD14+, B, CD8+ T, FCGR3A+, NK, Dendritic, Megakaryocytes\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "6ac832fd-39f6-4e07-b386-56001eacc343", + "when": null, + "workflow_outputs": [ + { + "label": "anndata", + "output_name": "anndata", + "uuid": "51289df3-101f-4c6c-ae85-a8f46c2f33ea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "errors": null, + "id": 50, + "input_connections": { + "input": { + "id": 43, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "uns_rank_genes_groups_names", + "type": "tabular" + }, + { + "name": "uns_rank_genes_groups_scores", + "type": "tabular" + }, + { + "name": "uns_rank_genes_groups_logfoldchanges", + "type": "tabular" + }, + { + "name": "uns_rank_genes_groups_pvals", + "type": "tabular" + }, + { + "name": "uns_rank_genes_groups_pvals_adj", + "type": "tabular" + } + ], + "position": { + "left": 6999.999999999994, + "top": 1056 + }, + "post_job_actions": { + "RenameDatasetActionuns_rank_genes_groups_names": { + "action_arguments": { + "newname": "Ranked genes with Wilcoxon test" + }, + "action_type": "RenameDatasetAction", + "output_name": "uns_rank_genes_groups_names" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6f0d0c784f09", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"uns\", \"__current_case__\": 5, \"uns_info\": \"rank_genes_groups\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "4755a9d9-1cda-4ade-8b1b-4514835fd3d1", + "when": null, + "workflow_outputs": [ + { + "label": "uns_rank_genes_groups_names", + "output_name": "uns_rank_genes_groups_names", + "uuid": "e617acd1-e59d-4f20-b39d-9dc0f832b0db" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 51, + "input_connections": { + "adata": { + "id": 43, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 6999.999999999994, + "top": 1536 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.rank_genes_groups_heatmap\", \"__current_case__\": 26, \"groups\": \"\", \"n_genes\": \"20\", \"key\": \"\", \"log\": false, \"use_raw\": true, \"dendrogram\": true, \"var_group_positions\": [], \"var_group_rotation\": null, \"figsize\": {\"test\": \"no\", \"__current_case__\": 1}, \"layer\": \"\", \"gene_symbols\": \"\", \"swap_axes\": false, \"show_gene_labels\": false, \"matplotlib_pyplot_imshow\": {\"cmap\": \"viridis\", \"interpolation\": \"None\", \"alpha\": null, \"vmin\": null, \"vmax\": null, \"origin\": \"upper\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "92ad3339-6642-4452-a993-aade06db8c56", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "983e7cee-7028-456c-9db2-bf0ad3e52de5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 53, + "input_connections": { + "adata": { + "id": 43, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 6999.999999999994, + "top": 1824 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"louvain, LDHB, LYZ, CD74, CCL5, LST1, NKG7, HLA-DPA1, PF4\", \"use_raw\": true, \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": null, \"palette\": null, \"frameon\": true, \"ncols\": \"2\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "f54debde-f7a9-4615-8a81-6a4406ebcc02", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "734099bb-f454-4d8c-bc78-a269b0570c41" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 55, + "input_connections": { + "adata": { + "id": 43, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 6999.999999999994, + "top": 2092 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.stacked_violin\", \"__current_case__\": 4, \"var_names\": {\"type\": \"custom\", \"__current_case__\": 1, \"var_names\": \"LDHB, LYZ, CD74, CCL5, LST1, NKG7, HLA-DPA1, PF4\"}, \"groupby\": \"louvain\", \"num_categories\": \"8\", \"gene_symbols\": \"\", \"log\": false, \"use_raw\": true, \"dendrogram\": false, \"var_group_positions\": [], \"var_group_rotation\": null, \"figsize\": {\"test\": \"yes\", \"__current_case__\": 0, \"width\": \"10\", \"height\": \"10\"}, \"layer\": \"\", \"swap_axes\": true, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"scale\": \"width\"}, \"row_palette\": \"muted\", \"standard_scale\": \"None\", \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "9386a889-5f57-4c24-b804-d1018a2c4d24", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "39f2d4b6-f2e8-41b3-a00a-a2c5b54face2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 56, + "input_connections": { + "adata": { + "id": 48, + "output_name": "anndata" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_svg", + "type": "svg" + } + ], + "position": { + "left": 7279.999999999994, + "top": 529 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"svg\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"louvain\", \"use_raw\": true, \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"on data\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": null, \"palette\": null, \"frameon\": true, \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "90fc9851-6092-46b7-a5ec-c3f5b49345c9", + "when": null, + "workflow_outputs": [ + { + "label": "out_svg", + "output_name": "out_svg", + "uuid": "e0979d1e-eb87-4a7b-904f-a5116c7b8fff" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 58, + "input_connections": { + "adata": { + "id": 48, + "output_name": "anndata" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 7279.999999999994, + "top": 797 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.dotplot\", \"__current_case__\": 2, \"var_names\": {\"type\": \"custom\", \"__current_case__\": 1, \"var_names\": \"IL7R, CCR7, CD8A, CD14, LYZ, MS4A1, CD79A, GNLY, NKG7, KLRB1, FCER1A, CST3, PPBP, FCGR3A\"}, \"groupby\": \"louvain\", \"num_categories\": \"8\", \"gene_symbols\": \"\", \"log\": false, \"use_raw\": true, \"dendrogram\": true, \"var_group_positions\": [{\"__index__\": 0, \"start\": \"0\", \"end\": \"1\", \"label\": \"CD4+T\"}, {\"__index__\": 1, \"start\": \"2\", \"end\": \"2\", \"label\": \"CD8\"}, {\"__index__\": 2, \"start\": \"3\", \"end\": \"4\", \"label\": \"CD14+\"}, {\"__index__\": 3, \"start\": \"5\", \"end\": \"6\", \"label\": \"B\"}, {\"__index__\": 4, \"start\": \"7\", \"end\": \"9\", \"label\": \"NK\"}, {\"__index__\": 5, \"start\": \"10\", \"end\": \"11\", \"label\": \"Dendritic\"}, {\"__index__\": 6, \"start\": \"12\", \"end\": \"12\", \"label\": \"Megakaryocytes\"}, {\"__index__\": 7, \"start\": \"13\", \"end\": \"13\", \"label\": \"FCGR3A+\"}], \"var_group_rotation\": null, \"figsize\": {\"test\": \"no\", \"__current_case__\": 1}, \"layer\": \"\", \"color_map\": \"viridis\", \"dot_max\": null, \"dot_min\": null, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "7234b677-3502-42bb-a1ca-7c62a6118a52", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "bd14e644-2a32-4a81-bd83-042ee46d118a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 59, + "input_connections": { + "adata": { + "id": 49, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "collection_png", + "type": "input" + } + ], + "position": { + "left": 7279.999999999994, + "top": 931 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.rank_genes_groups_violin\", \"__current_case__\": 24, \"groups\": \"\", \"genes\": {\"select\": \"n_genes\", \"__current_case__\": 0, \"n_genes\": \"10\"}, \"gene_symbols\": \"\", \"use_raw\": true, \"split\": true, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"scale\": \"width\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "1f003b20-da10-4f6f-84f6-2d335b3b1102", + "when": null, + "workflow_outputs": [ + { + "label": "collection_png", + "output_name": "collection_png", + "uuid": "e9cf90db-ac42-4876-8abd-183fea271666" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "errors": null, + "id": 60, + "input_connections": { + "adata": { + "id": 49, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 7279.999999999994, + "top": 1065 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "9b0cdb8cf6be", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.rank_genes_groups\", \"__current_case__\": 23, \"groups\": \"\", \"n_genes\": \"20\", \"gene_symbols\": \"\", \"fontsize\": \"8\", \"ncols\": \"4\", \"sharey\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy1", + "type": "tool", + "uuid": "c2a9e741-d871-45e3-b71e-813b08500091", + "when": null, + "workflow_outputs": [ + { + "label": "out_png", + "output_name": "out_png", + "uuid": "aef215b1-dbb4-447b-9297-c90536842c8e" + } + ] + } + ], + "parent_id": "single-cell/scrna-scanpy-pbmc3k", + "path": "topics/single-cell/tutorials/scrna-scanpy-pbmc3k/workflows/Clustering-3k-PBMC-with-Scanpy.ga", + "tags": [ + "name:scRNA-seq", + "name:single-cell" + ], + "test_results": null, + "tests": true, + "title": "Clustering 3k PBMC with Scanpy", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-scanpy-pbmc3k/versions/clustering-3k-pbmc-with-scanpy", + "tutorial_id": "scrna-scanpy-pbmc3k", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-scanpy-pbmc3k/workflows/Clustering-3k-PBMC-with-Scanpy.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-scanpy-pbmc3k/workflows/Clustering-3k-PBMC-with-Scanpy.html", + "version": 1, + "wfid": "single-cell-scrna-scanpy-pbmc3k", + "wfname": "clustering-3k-pbmc-with-scanpy", + "workflow": "Clustering-3k-PBMC-with-Scanpy.ga", + "workflow_tools": [ + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_remove_confounders/scanpy_remove_confounders/1.9.6+galaxy1" + ], + "workflowhub_id": "1259" + } + ], + "zenodo_link": "https://zenodo.org/record/3581213" + }, + { + "abbreviations": { + "PBMCs": "peripheral blood mononuclear cells", + "QC": "quality control", + "TSS": "transcription start sites", + "TSSe": "transcription start site enrichment", + "UMAP": "Uniform Manifold Approximation and Projection", + "scATAC-seq": "Single-cell Assay for Transposase-Accessible Chromatin using sequencing" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "replace_column_by_key_value_file", + "owner": "bgruening", + "revisions": "d533e4b75800", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "2477830927ec", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cut_columns", + "owner": "devteam", + "revisions": "cec635fab700", + "tool_panel_section_label": "Single Cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_compute_length", + "owner": "devteam", + "revisions": "7d37cfda8e00", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_ops", + "owner": "ebi-gxa", + "revisions": "a4774b7b2e85", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "6f0d0c784f09", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "ed4996a16f7f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter", + "owner": "iuc", + "revisions": "d636ce5cde16", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_inspect", + "owner": "iuc", + "revisions": "f54f0f0598ad", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_normalize", + "owner": "iuc", + "revisions": "d844935c906c", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot", + "owner": "iuc", + "revisions": "f7446fd8d5e7", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snapatac2_clustering", + "owner": "iuc", + "revisions": "afb90d3485df", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snapatac2_peaks_and_motif", + "owner": "iuc", + "revisions": "88192fe25375", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snapatac2_plotting", + "owner": "iuc", + "revisions": "370d45e0d1a8", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snapatac2_preprocessing", + "owner": "iuc", + "revisions": "fef8f61cb34c", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: replace_column_by_key_value_file\n owner: bgruening\n revisions: d533e4b75800\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 2477830927ec\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cut_columns\n owner: devteam\n revisions: cec635fab700\n tool_panel_section_label: Single Cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_compute_length\n owner: devteam\n revisions: 7d37cfda8e00\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_ops\n owner: ebi-gxa\n revisions: a4774b7b2e85\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: 6f0d0c784f09\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: ed4996a16f7f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter\n owner: iuc\n revisions: d636ce5cde16\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_inspect\n owner: iuc\n revisions: f54f0f0598ad\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_normalize\n owner: iuc\n revisions: d844935c906c\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot\n owner: iuc\n revisions: f7446fd8d5e7\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snapatac2_clustering\n owner: iuc\n revisions: afb90d3485df\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snapatac2_peaks_and_motif\n owner: iuc\n revisions: 88192fe25375\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snapatac2_plotting\n owner: iuc\n revisions: 370d45e0d1a8\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snapatac2_preprocessing\n owner: iuc\n revisions: fef8f61cb34c\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scatac-standard-processing-snapatac2/tutorial.json", + "contributions": { + "authorship": [ + "timonschlegel" + ], + "editing": [ + "pavanvidem", + "bgruening" + ], + "testing": [ + "pavanvidem" + ] + }, + "contributors": [ + { + "id": "timonschlegel", + "joined": "2024-05", + "name": "Timon Schlegel", + "orcid": "0009-0001-3228-105X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/timonschlegel/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/timonschlegel.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/single-cell/tutorials/scatac-standard-processing-snapatac2", + "edam_operation": [ + "Generation", + "Genome indexing", + "Sequence alignment", + "Read mapping", + "Differential gene expression analysis" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scatac-standard-processing-snapatac2", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Single-cell ATAC-seq can identify open chromatin sites", + "Dimension reduction is required to simplify the data while preserving important information about the relationships of cells to each other.", + "Clusters of similar cells can be annotated to their respective cell-types" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Learn how single-cell ATAC-seq data is processed", + "Create a count-matrix from a 10X fragment file", + "Perform filtering, dimension reduction and clustering on AnnData matrices", + "Generate and filter a cell-by-gene matrix", + "Identify marker genes for the clusters and annotate the cell types" + ], + "pageviews": 240, + "priority": 2, + "pub_date": "2024-07-11", + "questions": [ + "What does ATAC-seq data tell us about the cell?", + "Which steps are necessary to cluster the cells of single-cell ATAC-seq data?", + "Why is dimension reduction important for the analysis of single-cell data?" + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scatac-standard-processing-snapatac2/tutorial", + "/short/single-cell/scatac-standard-processing-snapatac2", + "/short/T00445" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scatac-preprocessing-tenx" + ], + "type": "internal" + } + ], + "short_id": "T00445", + "short_tools": [ + "anndata_ops", + "anndata_manipulate", + "anndata_inspect", + "snapatac2_clustering", + "scanpy_inspect", + "scanpy_plot", + "snapatac2_plotting", + "replace_column_with_key_value_file", + "scanpy_normalize", + "snapatac2_peaks_and_motif", + "snapatac2_preprocessing", + "Cut1", + "fasta_compute_length", + "scanpy_filter", + "bwa_mem" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "scmultiomics", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "10x", + "epigenetics", + "single-cell" + ], + "time_estimation": "4H", + "title": "Single-cell ATAC-seq standard processing with SnapATAC2", + "tools": [ + "Cut1", + "toolshed.g2.bx.psu.edu/repos/bgruening/replace_column_by_key_value_file/replace_column_with_key_value_file/0.2", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.18", + "toolshed.g2.bx.psu.edu/repos/devteam/cut_columns/Cut1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.3", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.9.6+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.9.6+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.9.6+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_peaks_and_motif/snapatac2_peaks_and_motif/2.6.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scatac-standard-processing-snapatac2", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scatac-standard-processing-snapatac2/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scatac-standard-processing-snapatac2/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scatac-standard-processing-snapatac2/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 66, + "visitors": 170, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-3228-105X", + "name": "Timon Schlegel" + } + ], + "description": "Workflow of Tutorial \"Single-cell ATAC-seq standard processing with SnapATAC2\".\nThis workflow takes a fragment file as input and performs the standard steps of scATAC-seq analysis: filtering, dimension reduction, embedding and visualization of marker genes with SnapATAC2.\nIn an alternative step, the fragment file can also be generated from a BAM file. ", + "features": { + "comments": true, + "parameters": true, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow Inputs\n```galaxy\ninvocation_inputs()\n```\n\n## Workflow Outputs\n```galaxy\ninvocation_outputs()\n```\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nFragment_file\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nchromosome_sizes.tabular\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ngene_annotation\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nBam-file\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nKeys for annotations of obs/cells or vars/genes\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReplace_file\"]\n 6[label=\"pp.import_data\"]\n 1 -> 6 [label=\"output\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"pp.make_fragment_file\"]\n 3 -> 7 [label=\"output\"]\n 8[label=\"pl.frag_size_distr\"]\n 6 -> 8 [label=\"anndata_out\"]\n k265d602044e2408c9eb602cbc9ac23a7[color=lightseagreen,label=\"Output\\nplot frag_size\"]\n 8 -> k265d602044e2408c9eb602cbc9ac23a7\n 9[label=\"pl.frag_size_distr_log\"]\n 6 -> 9 [label=\"anndata_out\"]\n ka37cd3c3e07e4bea899fee44cee8370b[color=lightseagreen,label=\"Output\\nplot log frag_size\"]\n 9 -> ka37cd3c3e07e4bea899fee44cee8370b\n 10[label=\"metrics.tsse\"]\n 6 -> 10 [label=\"anndata_out\"]\n 2 -> 10 [label=\"output\"]\n k233284e5c1844330a1d32d03951c4ce7[color=lightseagreen,label=\"Output\\nanndata tsse\"]\n 10 -> k233284e5c1844330a1d32d03951c4ce7\n 11[label=\"pp.import_data-sorted_by_barcodes\"]\n 1 -> 11 [label=\"output\"]\n 7 -> 11 [label=\"fragments_out\"]\n k50ef9fe7bb084957bc45079ed78f9ee8[color=lightseagreen,label=\"Output\\nanndata\"]\n 11 -> k50ef9fe7bb084957bc45079ed78f9ee8\n 12[label=\"pl.tsse\"]\n 10 -> 12 [label=\"anndata_out\"]\n k9a5c0f9c04234822871eba8317f2fa7b[color=lightseagreen,label=\"Output\\nplot tsse\"]\n 12 -> k9a5c0f9c04234822871eba8317f2fa7b\n 13[label=\"pp.filter_cells\"]\n 10 -> 13 [label=\"anndata_out\"]\n kb58dc4ad6bf04f3199f44f8deb13427c[color=lightseagreen,label=\"Output\\nanndata filter cells\"]\n 13 -> kb58dc4ad6bf04f3199f44f8deb13427c\n 14[label=\"pp.add_tile_matrix\"]\n 13 -> 14 [label=\"anndata_out\"]\n kd4b64fc4fd354781b7990d07fe8fe438[color=lightseagreen,label=\"Output\\nanndata tile matrix\"]\n 14 -> kd4b64fc4fd354781b7990d07fe8fe438\n 15[label=\"pp.select_features\"]\n 14 -> 15 [label=\"anndata_out\"]\n kf531f6bd3fc648b9bb3366de7928e670[color=lightseagreen,label=\"Output\\nanndata select features\"]\n 15 -> kf531f6bd3fc648b9bb3366de7928e670\n 16[label=\"pp.scrublet\"]\n 15 -> 16 [label=\"anndata_out\"]\n k5b17aa3a3694440f9022cf9761feb760[color=lightseagreen,label=\"Output\\nanndata scrublet\"]\n 16 -> k5b17aa3a3694440f9022cf9761feb760\n 17[label=\"pp.filter_doublets\"]\n 16 -> 17 [label=\"anndata_out\"]\n k3838cf9da0184aa78852893b2f60ec2a[color=lightseagreen,label=\"Output\\nanndata filter doublets\"]\n 17 -> k3838cf9da0184aa78852893b2f60ec2a\n 18[label=\"tl.spectral\"]\n 17 -> 18 [label=\"anndata_out\"]\n k778835168ac440b58b755750639d9fc4[color=lightseagreen,label=\"Output\\nanndata spectral\"]\n 18 -> k778835168ac440b58b755750639d9fc4\n 19[label=\"tl.umap\"]\n 18 -> 19 [label=\"anndata_out\"]\n k062a54717b7a4d9bbf6cfe9bbbc5d2ad[color=lightseagreen,label=\"Output\\nanndata umap\"]\n 19 -> k062a54717b7a4d9bbf6cfe9bbbc5d2ad\n 20[label=\"pp.knn\"]\n 19 -> 20 [label=\"anndata_out\"]\n kb7ebe580993848e587184df197126615[color=lightseagreen,label=\"Output\\nanndata knn\"]\n 20 -> kb7ebe580993848e587184df197126615\n 21[label=\"tl.leiden\"]\n 20 -> 21 [label=\"anndata_out\"]\n k9970eb96013b4d97bbbf2d1f4663b73c[color=lightseagreen,label=\"Output\\nanndata_leiden_clustering\"]\n 21 -> k9970eb96013b4d97bbbf2d1f4663b73c\n 22[label=\"pl.umap\"]\n 21 -> 22 [label=\"anndata_out\"]\n k4fff8ec87d6f48719e42d6c1791d6aa9[color=lightseagreen,label=\"Output\\numap_leiden-clusters\"]\n 22 -> k4fff8ec87d6f48719e42d6c1791d6aa9\n 23[label=\"make_gene_matrix\"]\n 21 -> 23 [label=\"anndata_out\"]\n 2 -> 23 [label=\"output\"]\n k9a5c2e235b5941aeaceb0e47ce9e7b1a[color=lightseagreen,label=\"Output\\nanndata gene matrix\"]\n 23 -> k9a5c2e235b5941aeaceb0e47ce9e7b1a\n 24[label=\"scanpy_filter_genes\"]\n 23 -> 24 [label=\"anndata_out\"]\n k7a9b22dfe0e549d99fa12efe316d6d66[color=lightseagreen,label=\"Output\\nanndata filter genes\"]\n 24 -> k7a9b22dfe0e549d99fa12efe316d6d66\n 25[label=\"Normalize\"]\n 24 -> 25 [label=\"anndata_out\"]\n k7dddd4c819444f50b331857d03cc9631[color=lightseagreen,label=\"Output\\nanndata normalize\"]\n 25 -> k7dddd4c819444f50b331857d03cc9631\n 26[label=\"pp.log1p\"]\n 25 -> 26 [label=\"anndata_out\"]\n k40ace30a21e14bf28e08ad93b62fb2ee[color=lightseagreen,label=\"Output\\nanndata log1p\"]\n 26 -> k40ace30a21e14bf28e08ad93b62fb2ee\n 27[label=\"external.pp.magic\"]\n 26 -> 27 [label=\"anndata_out\"]\n k8c1c7aa9b9dd467b971573773aea093f[color=lightseagreen,label=\"Output\\nanndata_magic\"]\n 27 -> k8c1c7aa9b9dd467b971573773aea093f\n 28[label=\"Copy obsm\"]\n 21 -> 28 [label=\"anndata_out\"]\n 27 -> 28 [label=\"anndata_out\"]\n k2c3825d371514eef97d0c8a31ca6fd3e[color=lightseagreen,label=\"Output\\nanndata_gene-matrix_leiden\"]\n 28 -> k2c3825d371514eef97d0c8a31ca6fd3e\n 29[label=\"umap_plot_with_scanpy\"]\n 28 -> 29 [label=\"output_h5ad\"]\n 4 -> 29 [label=\"output\"]\n k4cfbbb70156b48d7b14bdb21198d9b6d[color=lightseagreen,label=\"Output\\numap_marker-genes\"]\n 29 -> k4cfbbb70156b48d7b14bdb21198d9b6d\n 30[label=\"Inspect observations\"]\n 28 -> 30 [label=\"output_h5ad\"]\n 31[label=\"Cut leiden from table\"]\n 30 -> 31 [label=\"obs\"]\n k11c22200a54e458582c48457dbbfb53c[color=lightseagreen,label=\"Output\\nleiden annotation\"]\n 31 -> k11c22200a54e458582c48457dbbfb53c\n 32[label=\"Replace leiden\"]\n 31 -> 32 [label=\"out_file1\"]\n 5 -> 32 [label=\"output\"]\n k467de06179e641488a65c06383a14012[color=lightseagreen,label=\"Output\\ncell type annotation\"]\n 32 -> k467de06179e641488a65c06383a14012\n 33[label=\"Manipulate AnnData\"]\n 28 -> 33 [label=\"output_h5ad\"]\n 32 -> 33 [label=\"outfile_replace\"]\n kcbba6173f4394fd58423946aa625112b[color=lightseagreen,label=\"Output\\nanndata_cell_type\"]\n 33 -> kcbba6173f4394fd58423946aa625112b\n 34[label=\"Plot cell types\"]\n 33 -> 34 [label=\"anndata\"]\n kc28c53ae8ee747d78a00352908bb7c1a[color=lightseagreen,label=\"Output\\numap_cell-type\"]\n 34 -> kc28c53ae8ee747d78a00352908bb7c1a\n 35[label=\"Final Anndata general info\"]\n 33 -> 35 [label=\"anndata\"]\n k379a85d1a2044b0b8b3386e5582fc51f[color=lightseagreen,label=\"Output\\ngeneral\"]\n 35 -> k379a85d1a2044b0b8b3386e5582fc51f\n}", + "history": [ + { + "hash": "747cf76eb0ac7e1a046715c274e302d31ea720f5", + "message": "updated snapatac2 version to 2.6.4", + "num": 2, + "short_hash": "747cf76eb", + "unix": "1723136381" + }, + { + "hash": "9740cbbaddce4bd770c90ec91e8990d0cddf3bc8", + "message": "Update workflow and add tests", + "num": 1, + "short_hash": "9740cbbad", + "unix": "1720704591" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Fragment_file" + } + ], + "label": "Fragment_file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 67.17018491581389, + "top": 354.56754754491556 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4f5ba41c-e6b0-4650-ad92-59029b87ef44", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "chromosome_sizes.tabular" + } + ], + "label": "chromosome_sizes.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 68.17018491581389, + "top": 455.5596085802506 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "9431a94a-1399-458c-8e40-d19725a52701", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "gene_annotation" + } + ], + "label": "gene_annotation", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 59.084574366332504, + "top": 597.3149223682577 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "a1de7d61-0483-4217-84d9-89e3dc46f403", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Bam-file" + } + ], + "label": "Bam-file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 67.53440796800412, + "top": 743.7297383396873 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ddc6a5b2-45e6-4a49-a2b5-2d36b98bee2d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Comma-separated list of obs/cells and vars/genes", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "Comma-separated list of obs/cells and vars/genes", + "name": "Keys for annotations of obs/cells or vars/genes" + } + ], + "label": "Keys for annotations of obs/cells or vars/genes", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 6317.296690866118, + "top": 925.3289621684261 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "2bced0d9-2c35-4a59-a2d7-295312b09948", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "591d2291-9647-4a37-bf54-984a153a049f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Replace_file" + } + ], + "label": "Replace_file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 7286.446262020649, + "top": 972.2617918997179 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"tabular\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d741c4c6-0e32-46b8-9167-ee1d168839d9", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nFragment_file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nchromosome_sizes.tabular\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ngene_annotation\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nBam-file\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nKeys for annotations of obs/cells or vars/genes\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nReplace_file\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"pp.import_data\"];\n 1 -->|output| 6;\n 0 -->|output| 6;\n 7[\"pp.make_fragment_file\"];\n 3 -->|output| 7;\n 8[\"pl.frag_size_distr\"];\n 6 -->|anndata_out| 8;\n 265d6020-44e2-408c-9eb6-02cbc9ac23a7[\"Output\\nplot frag_size\"];\n 8 --> 265d6020-44e2-408c-9eb6-02cbc9ac23a7;\n style 265d6020-44e2-408c-9eb6-02cbc9ac23a7 stroke:#2c3143,stroke-width:4px;\n 9[\"pl.frag_size_distr_log\"];\n 6 -->|anndata_out| 9;\n a37cd3c3-e07e-4bea-899f-ee44cee8370b[\"Output\\nplot log frag_size\"];\n 9 --> a37cd3c3-e07e-4bea-899f-ee44cee8370b;\n style a37cd3c3-e07e-4bea-899f-ee44cee8370b stroke:#2c3143,stroke-width:4px;\n 10[\"metrics.tsse\"];\n 6 -->|anndata_out| 10;\n 2 -->|output| 10;\n 233284e5-c184-4330-a1d3-2d03951c4ce7[\"Output\\nanndata tsse\"];\n 10 --> 233284e5-c184-4330-a1d3-2d03951c4ce7;\n style 233284e5-c184-4330-a1d3-2d03951c4ce7 stroke:#2c3143,stroke-width:4px;\n 11[\"pp.import_data-sorted_by_barcodes\"];\n 1 -->|output| 11;\n 7 -->|fragments_out| 11;\n 50ef9fe7-bb08-4957-bc45-079ed78f9ee8[\"Output\\nanndata\"];\n 11 --> 50ef9fe7-bb08-4957-bc45-079ed78f9ee8;\n style 50ef9fe7-bb08-4957-bc45-079ed78f9ee8 stroke:#2c3143,stroke-width:4px;\n 12[\"pl.tsse\"];\n 10 -->|anndata_out| 12;\n 9a5c0f9c-0423-4822-871e-ba8317f2fa7b[\"Output\\nplot tsse\"];\n 12 --> 9a5c0f9c-0423-4822-871e-ba8317f2fa7b;\n style 9a5c0f9c-0423-4822-871e-ba8317f2fa7b stroke:#2c3143,stroke-width:4px;\n 13[\"pp.filter_cells\"];\n 10 -->|anndata_out| 13;\n b58dc4ad-6bf0-4f31-99f4-4f8deb13427c[\"Output\\nanndata filter cells\"];\n 13 --> b58dc4ad-6bf0-4f31-99f4-4f8deb13427c;\n style b58dc4ad-6bf0-4f31-99f4-4f8deb13427c stroke:#2c3143,stroke-width:4px;\n 14[\"pp.add_tile_matrix\"];\n 13 -->|anndata_out| 14;\n d4b64fc4-fd35-4781-b799-0d07fe8fe438[\"Output\\nanndata tile matrix\"];\n 14 --> d4b64fc4-fd35-4781-b799-0d07fe8fe438;\n style d4b64fc4-fd35-4781-b799-0d07fe8fe438 stroke:#2c3143,stroke-width:4px;\n 15[\"pp.select_features\"];\n 14 -->|anndata_out| 15;\n f531f6bd-3fc6-48b9-bb33-66de7928e670[\"Output\\nanndata select features\"];\n 15 --> f531f6bd-3fc6-48b9-bb33-66de7928e670;\n style f531f6bd-3fc6-48b9-bb33-66de7928e670 stroke:#2c3143,stroke-width:4px;\n 16[\"pp.scrublet\"];\n 15 -->|anndata_out| 16;\n 5b17aa3a-3694-440f-9022-cf9761feb760[\"Output\\nanndata scrublet\"];\n 16 --> 5b17aa3a-3694-440f-9022-cf9761feb760;\n style 5b17aa3a-3694-440f-9022-cf9761feb760 stroke:#2c3143,stroke-width:4px;\n 17[\"pp.filter_doublets\"];\n 16 -->|anndata_out| 17;\n 3838cf9d-a018-4aa7-8852-893b2f60ec2a[\"Output\\nanndata filter doublets\"];\n 17 --> 3838cf9d-a018-4aa7-8852-893b2f60ec2a;\n style 3838cf9d-a018-4aa7-8852-893b2f60ec2a stroke:#2c3143,stroke-width:4px;\n 18[\"tl.spectral\"];\n 17 -->|anndata_out| 18;\n 77883516-8ac4-40b5-8b75-5750639d9fc4[\"Output\\nanndata spectral\"];\n 18 --> 77883516-8ac4-40b5-8b75-5750639d9fc4;\n style 77883516-8ac4-40b5-8b75-5750639d9fc4 stroke:#2c3143,stroke-width:4px;\n 19[\"tl.umap\"];\n 18 -->|anndata_out| 19;\n 062a5471-7b7a-4d9b-bf6c-fe9bbbc5d2ad[\"Output\\nanndata umap\"];\n 19 --> 062a5471-7b7a-4d9b-bf6c-fe9bbbc5d2ad;\n style 062a5471-7b7a-4d9b-bf6c-fe9bbbc5d2ad stroke:#2c3143,stroke-width:4px;\n 20[\"pp.knn\"];\n 19 -->|anndata_out| 20;\n b7ebe580-9938-48e5-8718-4df197126615[\"Output\\nanndata knn\"];\n 20 --> b7ebe580-9938-48e5-8718-4df197126615;\n style b7ebe580-9938-48e5-8718-4df197126615 stroke:#2c3143,stroke-width:4px;\n 21[\"tl.leiden\"];\n 20 -->|anndata_out| 21;\n 9970eb96-013b-4d97-bbbf-2d1f4663b73c[\"Output\\nanndata_leiden_clustering\"];\n 21 --> 9970eb96-013b-4d97-bbbf-2d1f4663b73c;\n style 9970eb96-013b-4d97-bbbf-2d1f4663b73c stroke:#2c3143,stroke-width:4px;\n 22[\"pl.umap\"];\n 21 -->|anndata_out| 22;\n 4fff8ec8-7d6f-4871-9e42-d6c1791d6aa9[\"Output\\numap_leiden-clusters\"];\n 22 --> 4fff8ec8-7d6f-4871-9e42-d6c1791d6aa9;\n style 4fff8ec8-7d6f-4871-9e42-d6c1791d6aa9 stroke:#2c3143,stroke-width:4px;\n 23[\"make_gene_matrix\"];\n 21 -->|anndata_out| 23;\n 2 -->|output| 23;\n 9a5c2e23-5b59-41ae-aceb-0e47ce9e7b1a[\"Output\\nanndata gene matrix\"];\n 23 --> 9a5c2e23-5b59-41ae-aceb-0e47ce9e7b1a;\n style 9a5c2e23-5b59-41ae-aceb-0e47ce9e7b1a stroke:#2c3143,stroke-width:4px;\n 24[\"scanpy_filter_genes\"];\n 23 -->|anndata_out| 24;\n 7a9b22df-e0e5-49d9-9fa1-2efe316d6d66[\"Output\\nanndata filter genes\"];\n 24 --> 7a9b22df-e0e5-49d9-9fa1-2efe316d6d66;\n style 7a9b22df-e0e5-49d9-9fa1-2efe316d6d66 stroke:#2c3143,stroke-width:4px;\n 25[\"Normalize\"];\n 24 -->|anndata_out| 25;\n 7dddd4c8-1944-4f50-b331-857d03cc9631[\"Output\\nanndata normalize\"];\n 25 --> 7dddd4c8-1944-4f50-b331-857d03cc9631;\n style 7dddd4c8-1944-4f50-b331-857d03cc9631 stroke:#2c3143,stroke-width:4px;\n 26[\"pp.log1p\"];\n 25 -->|anndata_out| 26;\n 40ace30a-21e1-4bf2-8e08-ad93b62fb2ee[\"Output\\nanndata log1p\"];\n 26 --> 40ace30a-21e1-4bf2-8e08-ad93b62fb2ee;\n style 40ace30a-21e1-4bf2-8e08-ad93b62fb2ee stroke:#2c3143,stroke-width:4px;\n 27[\"external.pp.magic\"];\n 26 -->|anndata_out| 27;\n 8c1c7aa9-b9dd-467b-9715-73773aea093f[\"Output\\nanndata_magic\"];\n 27 --> 8c1c7aa9-b9dd-467b-9715-73773aea093f;\n style 8c1c7aa9-b9dd-467b-9715-73773aea093f stroke:#2c3143,stroke-width:4px;\n 28[\"Copy obsm\"];\n 21 -->|anndata_out| 28;\n 27 -->|anndata_out| 28;\n 2c3825d3-7151-4eef-97d0-c8a31ca6fd3e[\"Output\\nanndata_gene-matrix_leiden\"];\n 28 --> 2c3825d3-7151-4eef-97d0-c8a31ca6fd3e;\n style 2c3825d3-7151-4eef-97d0-c8a31ca6fd3e stroke:#2c3143,stroke-width:4px;\n 29[\"umap_plot_with_scanpy\"];\n 28 -->|output_h5ad| 29;\n 4 -->|output| 29;\n 4cfbbb70-156b-48d7-b14b-db21198d9b6d[\"Output\\numap_marker-genes\"];\n 29 --> 4cfbbb70-156b-48d7-b14b-db21198d9b6d;\n style 4cfbbb70-156b-48d7-b14b-db21198d9b6d stroke:#2c3143,stroke-width:4px;\n 30[\"Inspect observations\"];\n 28 -->|output_h5ad| 30;\n 31[\"Cut leiden from table\"];\n 30 -->|obs| 31;\n 11c22200-a54e-4585-82c4-8457dbbfb53c[\"Output\\nleiden annotation\"];\n 31 --> 11c22200-a54e-4585-82c4-8457dbbfb53c;\n style 11c22200-a54e-4585-82c4-8457dbbfb53c stroke:#2c3143,stroke-width:4px;\n 32[\"Replace leiden\"];\n 31 -->|out_file1| 32;\n 5 -->|output| 32;\n 467de061-79e6-4148-8a65-c06383a14012[\"Output\\ncell type annotation\"];\n 32 --> 467de061-79e6-4148-8a65-c06383a14012;\n style 467de061-79e6-4148-8a65-c06383a14012 stroke:#2c3143,stroke-width:4px;\n 33[\"Manipulate AnnData\"];\n 28 -->|output_h5ad| 33;\n 32 -->|outfile_replace| 33;\n cbba6173-f439-4fd5-8423-946aa625112b[\"Output\\nanndata_cell_type\"];\n 33 --> cbba6173-f439-4fd5-8423-946aa625112b;\n style cbba6173-f439-4fd5-8423-946aa625112b stroke:#2c3143,stroke-width:4px;\n 34[\"Plot cell types\"];\n 33 -->|anndata| 34;\n c28c53ae-8ee7-47d7-8a00-352908bb7c1a[\"Output\\numap_cell-type\"];\n 34 --> c28c53ae-8ee7-47d7-8a00-352908bb7c1a;\n style c28c53ae-8ee7-47d7-8a00-352908bb7c1a stroke:#2c3143,stroke-width:4px;\n 35[\"Final Anndata general info\"];\n 33 -->|anndata| 35;\n 379a85d1-a204-4b0b-8b33-86e5582fc51f[\"Output\\ngeneral\"];\n 35 --> 379a85d1-a204-4b0b-8b33-86e5582fc51f;\n style 379a85d1-a204-4b0b-8b33-86e5582fc51f stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Workflow - Standard processing of 10X single cell ATAC-seq data with SnapATAC2", + "outputs": [ + { + "annotation": "Comma-separated list of obs/cells and vars/genes", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "Comma-separated list of obs/cells and vars/genes", + "name": "Keys for annotations of obs/cells or vars/genes" + } + ], + "label": "Keys for annotations of obs/cells or vars/genes", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 6317.296690866118, + "top": 925.3289621684261 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "2bced0d9-2c35-4a59-a2d7-295312b09948", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "591d2291-9647-4a37-bf54-984a153a049f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "method|adata": { + "id": 6, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Plotting", + "name": "method" + } + ], + "label": "pl.frag_size_distr", + "name": "SnapATAC2 Plotting", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 976.2484628301277, + "top": 50.363557618794744 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "c01f0a08ab43", + "name": "snapatac2_plotting", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pl.frag_size_distr\", \"__current_case__\": 0, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"log_scale\": false, \"width\": \"600\", \"height\": \"400\", \"out_file\": \"png\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "62b9a255-2b4a-42a7-93a2-b8790d36148f", + "when": null, + "workflow_outputs": [ + { + "label": "plot frag_size", + "output_name": "out_png", + "uuid": "265d6020-44e2-408c-9eb6-02cbc9ac23a7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "method|adata": { + "id": 6, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Plotting", + "name": "method" + } + ], + "label": "pl.frag_size_distr_log", + "name": "SnapATAC2 Plotting", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 971.9878217859592, + "top": 178.50521031008577 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "c01f0a08ab43", + "name": "snapatac2_plotting", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pl.frag_size_distr\", \"__current_case__\": 0, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"log_scale\": true, \"width\": \"600\", \"height\": \"400\", \"out_file\": \"png\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "6665080c-ba86-4a70-b901-394770382862", + "when": null, + "workflow_outputs": [ + { + "label": "plot log frag_size", + "output_name": "out_png", + "uuid": "a37cd3c3-e07e-4bea-899f-ee44cee8370b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "method|adata": { + "id": 6, + "output_name": "anndata_out" + }, + "method|gene_anno": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + }, + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + } + ], + "label": "metrics.tsse", + "name": "SnapATAC2 Preprocessing", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 976.5191068126845, + "top": 321.5929676948151 + }, + "post_job_actions": { + "TagDatasetActionanndata_out": { + "action_arguments": { + "tags": "non_filtered_matrix" + }, + "action_type": "TagDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "48d9421bf176", + "name": "snapatac2_preprocessing", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"metrics.tsse\", \"__current_case__\": 12, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"gene_anno\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "1d16ec89-ce71-4f81-a6c9-b785247666f0", + "when": null, + "workflow_outputs": [ + { + "label": "anndata tsse", + "output_name": "anndata_out", + "uuid": "233284e5-c184-4330-a1d3-2d03951c4ce7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "method|chrom_sizes": { + "id": 1, + "output_name": "output" + }, + "method|fragment_file": { + "id": 7, + "output_name": "fragments_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + }, + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + }, + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + } + ], + "label": "pp.import_data-sorted_by_barcodes", + "name": "SnapATAC2 Preprocessing", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 1033.1679120853273, + "top": 703.9571480740287 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "48d9421bf176", + "name": "snapatac2_preprocessing", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.import_data\", \"__current_case__\": 1, \"fragment_file\": {\"__class__\": \"ConnectedValue\"}, \"chrom_sizes\": {\"__class__\": \"ConnectedValue\"}, \"min_num_fragments\": \"200\", \"sorted_by_barcode\": true, \"whitelist\": {\"__class__\": \"RuntimeValue\"}, \"chrM\": \"chrM, M\", \"shift_left\": \"0\", \"shift_right\": \"0\", \"chunk_size\": \"2000\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "b92fe42b-af1d-4f83-b1cd-7e4c173d8c2c", + "when": null, + "workflow_outputs": [ + { + "label": "anndata", + "output_name": "anndata_out", + "uuid": "50ef9fe7-bb08-4957-bc45-079ed78f9ee8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "method|adata": { + "id": 10, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Plotting", + "name": "method" + } + ], + "label": "pl.tsse", + "name": "SnapATAC2 Plotting", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 1234.1672018887232, + "top": 181.36234265283736 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "c01f0a08ab43", + "name": "snapatac2_plotting", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pl.tsse\", \"__current_case__\": 1, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"min_fragment\": \"500\", \"width\": \"600\", \"height\": \"400\", \"out_file\": \"png\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "9db3b159-cfe6-4f24-ad2e-79e6ab1f1c6c", + "when": null, + "workflow_outputs": [ + { + "label": "plot tsse", + "output_name": "out_png", + "uuid": "9a5c0f9c-0423-4822-871e-ba8317f2fa7b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "errors": null, + "id": 13, + "input_connections": { + "method|adata": { + "id": 10, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + } + ], + "label": "pp.filter_cells", + "name": "SnapATAC2 Preprocessing", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 1900.828125, + "top": 498.703125 + }, + "post_job_actions": { + "HideDatasetActionanndata_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "48d9421bf176", + "name": "snapatac2_preprocessing", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.filter_cells\", \"__current_case__\": 4, \"adata\": {\"__class__\": \"RuntimeValue\"}, \"min_counts\": \"5000\", \"min_tsse\": \"10.0\", \"max_counts\": \"100000\", \"max_tsse\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "067a4964-4e96-456e-848e-ea414a745d66", + "when": null, + "workflow_outputs": [ + { + "label": "anndata filter cells", + "output_name": "anndata_out", + "uuid": "b58dc4ad-6bf0-4f31-99f4-4f8deb13427c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "errors": null, + "id": 14, + "input_connections": { + "method|adata": { + "id": 13, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + } + ], + "label": "pp.add_tile_matrix", + "name": "SnapATAC2 Preprocessing", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 2244.497498607226, + "top": 531.5176822961781 + }, + "post_job_actions": { + "HideDatasetActionanndata_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "48d9421bf176", + "name": "snapatac2_preprocessing", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.add_tile_matrix\", \"__current_case__\": 2, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"bin_size\": \"500\", \"chunk_size\": \"500\", \"exclude_chroms\": \"chrM, chrY, M, Y\", \"min_frag_size\": null, \"max_frag_size\": null, \"count_frag_as_reads\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "de6e8e48-f792-4163-9289-f5fa7690fa3c", + "when": null, + "workflow_outputs": [ + { + "label": "anndata tile matrix", + "output_name": "anndata_out", + "uuid": "d4b64fc4-fd35-4781-b799-0d07fe8fe438" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "errors": null, + "id": 15, + "input_connections": { + "method|adata": { + "id": 14, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + }, + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + }, + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + } + ], + "label": "pp.select_features", + "name": "SnapATAC2 Preprocessing", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 2262.8393353215497, + "top": 793.2107306253445 + }, + "post_job_actions": { + "HideDatasetActionanndata_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "48d9421bf176", + "name": "snapatac2_preprocessing", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.select_features\", \"__current_case__\": 5, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"n_features\": \"250000\", \"filter_lower_quantile\": \"0.005\", \"filter_upper_quantile\": \"0.005\", \"whitelist\": {\"__class__\": \"RuntimeValue\"}, \"blacklist\": {\"__class__\": \"RuntimeValue\"}, \"max_iter\": \"1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "0f99ab71-fb4c-4d8f-b248-854b7661e365", + "when": null, + "workflow_outputs": [ + { + "label": "anndata select features", + "output_name": "anndata_out", + "uuid": "f531f6bd-3fc6-48b9-bb33-66de7928e670" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "method|adata": { + "id": 15, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + } + ], + "label": "pp.scrublet", + "name": "SnapATAC2 Preprocessing", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 2586.191666804627, + "top": 949.4798428594668 + }, + "post_job_actions": { + "HideDatasetActionanndata_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "48d9421bf176", + "name": "snapatac2_preprocessing", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.scrublet\", \"__current_case__\": 6, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"features\": \"\", \"n_comps\": \"15\", \"sim_doublet_ratio\": \"2.0\", \"expected_doublet_rate\": \"0.1\", \"n_neighbors\": null, \"use_approx_neighbors\": false, \"random_state\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "a944b129-dedb-4a9a-a1c7-1a4ddd51fac6", + "when": null, + "workflow_outputs": [ + { + "label": "anndata scrublet", + "output_name": "anndata_out", + "uuid": "5b17aa3a-3694-440f-9022-cf9761feb760" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "errors": null, + "id": 17, + "input_connections": { + "method|adata": { + "id": 16, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + } + ], + "label": "pp.filter_doublets", + "name": "SnapATAC2 Preprocessing", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 2635.9329633142843, + "top": 663.8944755224237 + }, + "post_job_actions": { + "HideDatasetActionanndata_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "48d9421bf176", + "name": "snapatac2_preprocessing", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.filter_doublets\", \"__current_case__\": 7, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"probability_threshold\": \"0.5\", \"score_threshold\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "edb303e1-aaf9-4f4c-ab5a-b4197997eb95", + "when": null, + "workflow_outputs": [ + { + "label": "anndata filter doublets", + "output_name": "anndata_out", + "uuid": "3838cf9d-a018-4aa7-8852-893b2f60ec2a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "errors": null, + "id": 18, + "input_connections": { + "method|adata": { + "id": 17, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Clustering", + "name": "method" + }, + { + "description": "runtime parameter for tool SnapATAC2 Clustering", + "name": "method" + } + ], + "label": "tl.spectral", + "name": "SnapATAC2 Clustering", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 3084.96875, + "top": 555.0625 + }, + "post_job_actions": { + "HideDatasetActionanndata_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "94ae400dde2f", + "name": "snapatac2_clustering", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"tl.spectral\", \"__current_case__\": 0, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"n_comps\": \"30\", \"features\": {\"__class__\": \"RuntimeValue\"}, \"random_state\": \"0\", \"sample_size\": null, \"chunk_size\": \"20000\", \"distance_metric\": \"cosine\", \"weighted_by_sd\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "282c336d-2ff5-460b-889d-58ef74574199", + "when": null, + "workflow_outputs": [ + { + "label": "anndata spectral", + "output_name": "anndata_out", + "uuid": "77883516-8ac4-40b5-8b75-5750639d9fc4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "method|adata": { + "id": 18, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Clustering", + "name": "method" + } + ], + "label": "tl.umap", + "name": "SnapATAC2 Clustering", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 3098.912527828772, + "top": 841.6746200330715 + }, + "post_job_actions": { + "HideDatasetActionanndata_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "94ae400dde2f", + "name": "snapatac2_clustering", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"tl.umap\", \"__current_case__\": 1, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"n_comps\": \"2\", \"use_dims\": null, \"use_rep\": \"X_spectral\", \"key_added\": \"umap\", \"random_state\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "ea0844bb-c3d7-45f7-bd12-73b8325e8816", + "when": null, + "workflow_outputs": [ + { + "label": "anndata umap", + "output_name": "anndata_out", + "uuid": "062a5471-7b7a-4d9b-bf6c-fe9bbbc5d2ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "errors": null, + "id": 20, + "input_connections": { + "method|adata": { + "id": 19, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Clustering", + "name": "method" + } + ], + "label": "pp.knn", + "name": "SnapATAC2 Clustering", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 3537.197366261425, + "top": 667.2386060771821 + }, + "post_job_actions": { + "HideDatasetActionanndata_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "94ae400dde2f", + "name": "snapatac2_clustering", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.knn\", \"__current_case__\": 2, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"n_neighbors\": \"50\", \"use_dims\": \"\", \"use_rep\": \"X_spectral\", \"algorithm\": \"kdtree\", \"random_state\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "8628dcfa-cec9-488a-9ea1-9b9caa315290", + "when": null, + "workflow_outputs": [ + { + "label": "anndata knn", + "output_name": "anndata_out", + "uuid": "b7ebe580-9938-48e5-8718-4df197126615" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "errors": null, + "id": 21, + "input_connections": { + "method|adata": { + "id": 20, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Clustering", + "name": "method" + } + ], + "label": "tl.leiden", + "name": "SnapATAC2 Clustering", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 3836.579452840314, + "top": 625.923381281925 + }, + "post_job_actions": { + "DeleteIntermediatesActionanndata_out": { + "action_arguments": {}, + "action_type": "DeleteIntermediatesAction", + "output_name": "anndata_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "94ae400dde2f", + "name": "snapatac2_clustering", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"tl.leiden\", \"__current_case__\": 3, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"resolution\": \"1.0\", \"objective_function\": \"modularity\", \"min_cluster_size\": \"5\", \"n_iterations\": \"-1\", \"random_state\": \"0\", \"key_added\": \"leiden\", \"weighted\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "64840a63-5cb4-4bdd-a088-78e5739819a7", + "when": null, + "workflow_outputs": [ + { + "label": "anndata_leiden_clustering", + "output_name": "anndata_out", + "uuid": "9970eb96-013b-4d97-bbbf-2d1f4663b73c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "errors": null, + "id": 22, + "input_connections": { + "method|adata": { + "id": 21, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Plotting", + "name": "method" + } + ], + "label": "pl.umap", + "name": "SnapATAC2 Plotting", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 4174.404258334524, + "top": 534.0748356757703 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "c01f0a08ab43", + "name": "snapatac2_plotting", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 2, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"leiden\", \"use_rep\": \"X_umap\", \"marker_size\": null, \"marker_opacity\": \"1.0\", \"sample_size\": null, \"width\": \"600\", \"height\": \"500\", \"out_file\": \"png\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "46564bf3-03e6-4a9b-b160-a10ddbb69197", + "when": null, + "workflow_outputs": [ + { + "label": "umap_leiden-clusters", + "output_name": "out_png", + "uuid": "4fff8ec8-7d6f-4871-9e42-d6c1791d6aa9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "errors": null, + "id": 23, + "input_connections": { + "method|adata": { + "id": 21, + "output_name": "anndata_out" + }, + "method|gene_anno": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + }, + { + "description": "runtime parameter for tool SnapATAC2 Preprocessing", + "name": "method" + } + ], + "label": "make_gene_matrix", + "name": "SnapATAC2 Preprocessing", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 4560.8801354196185, + "top": 781.9723996031015 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "48d9421bf176", + "name": "snapatac2_preprocessing", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.make_gene_matrix\", \"__current_case__\": 3, \"adata\": {\"__class__\": \"ConnectedValue\"}, \"gene_anno\": {\"__class__\": \"ConnectedValue\"}, \"chunk_size\": \"500\", \"use_x\": false, \"id_type\": \"gene\", \"transcript_name_key\": \"transcript_name\", \"transcript_id_key\": \"transcript_id\", \"gene_name_key\": \"gene_name\", \"gene_id_key\": \"gene_id\", \"min_frag_size\": null, \"max_frag_size\": null, \"count_frag_as_reads\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.6.4+galaxy1", + "type": "tool", + "uuid": "76286f1f-1153-487f-8146-22e9fbc0e843", + "when": null, + "workflow_outputs": [ + { + "label": "anndata gene matrix", + "output_name": "anndata_out", + "uuid": "9a5c2e23-5b59-41ae-aceb-0e47ce9e7b1a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.9.6+galaxy3", + "errors": null, + "id": 24, + "input_connections": { + "adata": { + "id": 23, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "scanpy_filter_genes", + "name": "Filter", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 4914.636475213905, + "top": 577.4812733437685 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.9.6+galaxy3", + "tool_shed_repository": { + "changeset_revision": "d636ce5cde16", + "name": "scanpy_filter", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.filter_genes\", \"__current_case__\": 1, \"filter\": {\"filter\": \"min_cells\", \"__current_case__\": 2, \"min_cells\": \"5\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy3", + "type": "tool", + "uuid": "7dfff544-95f9-4309-8094-31a0acfa525e", + "when": null, + "workflow_outputs": [ + { + "label": "anndata filter genes", + "output_name": "anndata_out", + "uuid": "7a9b22df-e0e5-49d9-9fa1-2efe316d6d66" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.9.6+galaxy3", + "errors": null, + "id": 25, + "input_connections": { + "adata": { + "id": 24, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Normalize", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 5246.771945926951, + "top": 559.3328161085777 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.9.6+galaxy3", + "tool_shed_repository": { + "changeset_revision": "d844935c906c", + "name": "scanpy_normalize", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.normalize_total\", \"__current_case__\": 0, \"target_sum\": null, \"exclude_highly_expressed\": {\"exclude_highly_expressed\": \"False\", \"__current_case__\": 1}, \"key_added\": \"\", \"layers\": \"\", \"layer_norm\": \"None\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy3", + "type": "tool", + "uuid": "7629e178-c715-4b96-b5c3-523050cac768", + "when": null, + "workflow_outputs": [ + { + "label": "anndata normalize", + "output_name": "anndata_out", + "uuid": "7dddd4c8-1944-4f50-b331-857d03cc9631" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.9.6+galaxy3", + "errors": null, + "id": 26, + "input_connections": { + "adata": { + "id": 25, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "pp.log1p", + "name": "Inspect and manipulate", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 5571.598835062394, + "top": 560.0237842861073 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.9.6+galaxy3", + "tool_shed_repository": { + "changeset_revision": "f54f0f0598ad", + "name": "scanpy_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"pp.log1p\", \"__current_case__\": 5}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy3", + "type": "tool", + "uuid": "8a57a670-5511-462f-b342-d2a6c868a7a8", + "when": null, + "workflow_outputs": [ + { + "label": "anndata log1p", + "output_name": "anndata_out", + "uuid": "40ace30a-21e1-4bf2-8e08-ad93b62fb2ee" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.9.6+galaxy3", + "errors": null, + "id": 27, + "input_connections": { + "adata": { + "id": 26, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "external.pp.magic", + "name": "Normalize", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 5919.286956493308, + "top": 543.2768617443896 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.9.6+galaxy3", + "tool_shed_repository": { + "changeset_revision": "d844935c906c", + "name": "scanpy_normalize", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"method\": {\"method\": \"external.pp.magic\", \"__current_case__\": 4, \"name_list\": \"all_genes\", \"knn\": \"5\", \"decay\": \"1\", \"knn_max\": null, \"t\": \"3\", \"n_pca\": \"100\", \"solver\": \"approximate\", \"knn_dist\": \"euclidean\", \"random_state\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy3", + "type": "tool", + "uuid": "0bdfc7e0-2f37-4122-9c33-517e6743e971", + "when": null, + "workflow_outputs": [ + { + "label": "anndata_magic", + "output_name": "anndata_out", + "uuid": "8c1c7aa9-b9dd-467b-9715-73773aea093f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.9.3+galaxy0", + "errors": null, + "id": 28, + "input_connections": { + "copy_e|embedding_sources": { + "id": 21, + "output_name": "anndata_out" + }, + "input_obj_file": { + "id": 27, + "output_name": "anndata_out" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool AnnData Operations", + "name": "copy_e" + } + ], + "label": "Copy obsm", + "name": "AnnData Operations", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 6310.074636497004, + "top": 564.1397165041963 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.9.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a4774b7b2e85", + "name": "anndata_ops", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_cell_metadata\": {\"default\": false, \"__current_case__\": 1}, \"copy_adata_to_raw\": false, \"copy_e\": {\"default\": true, \"__current_case__\": 0, \"embedding_keys\": [{\"__index__\": 0, \"contains\": null}], \"embedding_sources\": {\"__class__\": \"ConnectedValue\"}}, \"copy_l\": {\"default\": false, \"__current_case__\": 1}, \"copy_o\": {\"default\": false, \"__current_case__\": 1}, \"copy_r\": {\"default\": false, \"__current_case__\": 1}, \"copy_u\": {\"default\": false, \"__current_case__\": 1}, \"copy_x\": {\"default\": false, \"__current_case__\": 1}, \"field_unique\": null, \"gene_flags\": [], \"gene_symbols_field\": \"index\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"modifications\": [], \"output_format\": \"anndata_h5ad\", \"sanitize_varm\": false, \"split_on_obs\": {\"default\": false, \"__current_case__\": 1}, \"swap_layer_to_x\": {\"default\": false, \"__current_case__\": 1}, \"top_genes\": \"50\", \"var_modifications\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.3+galaxy0", + "type": "tool", + "uuid": "117972e9-cf57-4b98-a032-39acedadc428", + "when": null, + "workflow_outputs": [ + { + "label": "anndata_gene-matrix_leiden", + "output_name": "output_h5ad", + "uuid": "2c3825d3-7151-4eef-97d0-c8a31ca6fd3e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy3", + "errors": null, + "id": 29, + "input_connections": { + "adata": { + "id": 28, + "output_name": "output_h5ad" + }, + "method|color": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Plot", + "name": "method" + } + ], + "label": "umap_plot_with_scanpy", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 6625.542217976416, + "top": 759.4084323967407 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy3", + "tool_shed_repository": { + "changeset_revision": "f7446fd8d5e7", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": {\"__class__\": \"ConnectedValue\"}, \"use_raw\": false, \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": null, \"palette\": null, \"frameon\": true, \"ncols\": \"2\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy3", + "type": "tool", + "uuid": "9a3a0713-a10d-40d1-80b8-7b66fdf4f6b9", + "when": null, + "workflow_outputs": [ + { + "label": "umap_marker-genes", + "output_name": "out_png", + "uuid": "4cfbbb70-156b-48d7-b14b-db21198d9b6d" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 31, + "input_connections": { + "input": { + "id": 30, + "output_name": "obs" + } + }, + "inputs": [], + "label": "Cut leiden from table", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 7290.77139785132, + "top": 805.5918074906932 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c8\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "7c8a2055-a457-4001-baba-a46c75b9e506", + "when": null, + "workflow_outputs": [ + { + "label": "leiden annotation", + "output_name": "out_file1", + "uuid": "11c22200-a54e-4585-82c4-8457dbbfb53c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/replace_column_by_key_value_file/replace_column_with_key_value_file/0.2", + "errors": null, + "id": 32, + "input_connections": { + "original_file": { + "id": 31, + "output_name": "out_file1" + }, + "replace_information": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": "Replace leiden", + "name": "Replace column", + "outputs": [ + { + "name": "outfile_replace", + "type": "txt" + } + ], + "position": { + "left": 7610.590154939628, + "top": 714.8720707586833 + }, + "post_job_actions": { + "ChangeDatatypeActionoutfile_replace": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "outfile_replace" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/replace_column_by_key_value_file/replace_column_with_key_value_file/0.2", + "tool_shed_repository": { + "changeset_revision": "d533e4b75800", + "name": "replace_column_by_key_value_file", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column_replace\": \"1\", \"delimiter\": \"tab\", \"original_file\": {\"__class__\": \"ConnectedValue\"}, \"pass_comments\": \"#\", \"replace_information\": {\"__class__\": \"ConnectedValue\"}, \"skip_lines\": \"0\", \"unknowns_strategy\": \"skip\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2", + "type": "tool", + "uuid": "94ec122d-0eb2-43e7-bf79-3b3ad6e0a7e8", + "when": null, + "workflow_outputs": [ + { + "label": "cell type annotation", + "output_name": "outfile_replace", + "uuid": "467de061-79e6-4148-8a65-c06383a14012" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "errors": null, + "id": 33, + "input_connections": { + "input": { + "id": 28, + "output_name": "output_h5ad" + }, + "manipulate|new_annot": { + "id": 32, + "output_name": "outfile_replace" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Manipulate AnnData", + "name": "manipulate" + } + ], + "label": null, + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 7951.665647831622, + "top": 529.7790878349768 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ed4996a16f7f", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"add_annotation\", \"__current_case__\": 6, \"var_obs\": \"obs\", \"new_annot\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "8002dcb8-d903-4a46-a2df-6a0cf4e4407f", + "when": null, + "workflow_outputs": [ + { + "label": "anndata_cell_type", + "output_name": "anndata", + "uuid": "cbba6173-f439-4fd5-8423-946aa625112b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy3", + "errors": null, + "id": 34, + "input_connections": { + "adata": { + "id": 33, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Plot cell types", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 8306.897077852367, + "top": 563.5673448508458 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy3", + "tool_shed_repository": { + "changeset_revision": "f7446fd8d5e7", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"cell_type\", \"use_raw\": false, \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"on data\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": null, \"palette\": null, \"frameon\": true, \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": null}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9.6+galaxy3", + "type": "tool", + "uuid": "ad9c86ff-9843-44f7-815d-026a3a4d6eef", + "when": null, + "workflow_outputs": [ + { + "label": "umap_cell-type", + "output_name": "out_png", + "uuid": "c28c53ae-8ee7-47d7-8a00-352908bb7c1a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "errors": null, + "id": 35, + "input_connections": { + "input": { + "id": 33, + "output_name": "anndata" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Inspect AnnData", + "name": "input" + } + ], + "label": "Final Anndata general info", + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 8297.002377504208, + "top": 760.6562767663465 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6f0d0c784f09", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.10.3+galaxy0", + "type": "tool", + "uuid": "d178ea23-94a0-42c0-87db-44f2cc23d5dc", + "when": null, + "workflow_outputs": [ + { + "label": "general", + "output_name": "general", + "uuid": "379a85d1-a204-4b0b-8b33-86e5582fc51f" + } + ] + } + ], + "parent_id": "single-cell/scatac-standard-processing-snapatac2", + "path": "topics/single-cell/tutorials/scatac-standard-processing-snapatac2/workflows/Standard-processing-of-10X-single-cell-ATAC-seq-data-with-SnapATAC2.ga", + "tags": [ + "scATAC-seq", + "epigenetics" + ], + "test_results": null, + "tests": true, + "title": "Workflow - Standard processing of 10X single cell ATAC-seq data with SnapATAC2", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scatac-standard-processing-snapatac2/versions/standard-processing-of-10x-single-cell-atac-seq-data-with-snapatac2", + "tutorial_id": "scatac-standard-processing-snapatac2", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scatac-standard-processing-snapatac2/workflows/Standard-processing-of-10X-single-cell-ATAC-seq-data-with-SnapATAC2.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scatac-standard-processing-snapatac2/workflows/Standard-processing-of-10X-single-cell-ATAC-seq-data-with-SnapATAC2.html", + "version": 2, + "wfid": "single-cell-scatac-standard-processing-snapatac2", + "wfname": "standard-processing-of-10x-single-cell-atac-seq-data-with-snapatac2", + "workflow": "Standard-processing-of-10X-single-cell-ATAC-seq-data-with-SnapATAC2.ga", + "workflow_tools": [ + "Cut1", + "toolshed.g2.bx.psu.edu/repos/bgruening/replace_column_by_key_value_file/replace_column_with_key_value_file/0.2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.9.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.10.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.9.6+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.9.6+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.9.6+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.9.6+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_clustering/snapatac2_clustering/2.6.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_plotting/snapatac2_plotting/2.6.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snapatac2_preprocessing/snapatac2_preprocessing/2.6.4+galaxy1" + ], + "workflowhub_id": "1343" + } + ], + "zenodo_link": "https://zenodo.org/records/12707159" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_FilterPlotandExploreRStudio/tutorial.json", + "contributions": { + "authorship": [ + "Camila-goclowski" + ], + "editing": [ + "nomadscientist", + "hexylena", + "mtekman", + "shiltemann", + "pavanvidem" + ] + }, + "contributors": [ + { + "email": "camila.goclowski@gmail.com", + "id": "Camila-goclowski", + "joined": "2023-01", + "linkedin": "camila-goclowski", + "name": "Camila Goclowski", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Camila-goclowski/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Camila-goclowski.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_FilterPlotandExploreRStudio", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/scrna-case_FilterPlotandExploreRStudio", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Being able to switch between Galaxy and RStudio when analyzing datasets can be useful when looking to adjust default parameters within Seurat's functions and workflow.", + "Seurat in RStudio gives more flexibility and specificity of analyses, but Galaxy offers great reproducibility and ease of analysis.", + "Beginning to learn the syntax and use of R will expand your" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-07", + "notebook": { + "language": "r", + "snippet": "topics/single-cell/tutorials/scrna-case_FilterPlotandExploreRStudio/preamble.md" + }, + "objectives": [ + "Interpret quality control plots to direct parameter decisions", + "Repeat analysis from matrix to clustering to labelling clusters", + "Identify decision-making points", + "Appraise data outputs and decisions", + "Explain why single cell analysis is an iterative process (i.e. the first plots you generate are not final, but rather you go back and re-analyse your data repeatedly)" + ], + "pageviews": 2151, + "priority": 2, + "pub_date": "2023-10-02", + "questions": [ + "Is my single cell dataset a quality dataset?", + "How do I pick thresholds and parameters in my analysis? What\u2019s a \u201creasonable\u201d number, and will the world collapse if I pick the wrong one?", + "How do I generate and annotate cell clusters?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin-combine-datasets", + "scrna-case_basic-pipeline" + ], + "type": "internal" + } + ], + "short_id": "T00366", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS-code", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication", + "R" + ], + "time_estimation": "3H", + "title": "Filter, plot, and explore single cell RNA-seq data with Seurat (R)", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_FilterPlotandExploreRStudio", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_FilterPlotandExploreRStudio/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_FilterPlotandExploreRStudio/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_FilterPlotandExploreRStudio/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 45, + "visitors": 1933, + "zenodo_link": "https://zenodo.org/record/7053673" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_ops", + "owner": "ebi-gxa", + "revisions": "a0274bc43b7e", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hca_matrix_downloader", + "owner": "ebi-gxa", + "revisions": "c3c85b67d118", + "tool_panel_section_label": "Single Cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "retrieve_scxa", + "owner": "ebi-gxa", + "revisions": "72b6e1747e37", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_read_10x", + "owner": "ebi-gxa", + "revisions": "d253d69ff19f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_read_10x", + "owner": "ebi-gxa", + "revisions": "9afcfcd1d215", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_read10x", + "owner": "ebi-gxa", + "revisions": "301cf1b4b43d", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "503bcd6ebe4b", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sceasy_convert", + "owner": "iuc", + "revisions": "d70139524747", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_ops\n owner: ebi-gxa\n revisions: a0274bc43b7e\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hca_matrix_downloader\n owner: ebi-gxa\n revisions: c3c85b67d118\n tool_panel_section_label: Single Cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: retrieve_scxa\n owner: ebi-gxa\n revisions: 72b6e1747e37\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_read_10x\n owner: ebi-gxa\n revisions: d253d69ff19f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_read_10x\n owner: ebi-gxa\n revisions: 9afcfcd1d215\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_read10x\n owner: ebi-gxa\n revisions: 301cf1b4b43d\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 503bcd6ebe4b\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sceasy_convert\n owner: iuc\n revisions: d70139524747\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/EBI-retrieval/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin", + "nomadscientist" + ], + "funding": [ + "elixir-fair-data" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This work has been funded by the ELIXIR-UK FAIR Data Stewardship training UKRI award (MR/V038966/1)", + "funding_system": "ukri", + "github": false, + "id": "elixir-fair-data", + "joined": "2023-06", + "name": "ELIXIR-UK: FAIR Data Stewardship training", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-fair-data/", + "short_name": "ELIXIR Fair Data", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-fair-data.json" + } + ], + "dir": "topics/single-cell/tutorials/EBI-retrieval", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_basic-pipeline" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "single-cell/EBI-retrieval", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The EMBL-EBI Single-cell Expression Atlas contains high quality datasets.", + "Metadata manipulation is key for generating the correctly formatted files.", + "To use Scanpy tools, you have to transform your metadata into an AnnData object.", + "To use Seurat tools, you have to transform your metadata into a Seurat object." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-13", + "objectives": [ + "You will retrieve raw data from the EBI Single Cell Expression Atlas and Human Cell Atlas.", + "You will manipulate the metadata and matrix files.", + "You will combine the metadata and matrix files into an AnnData or Seurat object for downstream analysis." + ], + "pageviews": 226, + "priority": 2, + "pub_date": "2023-11-14", + "questions": [ + "How do I use the EBI Single Cell Expression Atlas and Human Cell Atlas?", + "How can I reformat and manipulate the downloaded files to create the correct input for downstream analysis?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets" + ], + "type": "internal" + } + ], + "short_id": "T00374", + "short_tools": [ + "anndata_ops", + "scanpy_read_10x", + "sceasy_convert", + "tp_find_and_replace", + "tp_grep_tool", + "hca_matrix_downloader", + "seurat_read10x", + "retrieve_scxa", + "regexColumn1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "datamanipulation", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "data import", + "data management" + ], + "time_estimation": "15m", + "title": "Importing files from public atlases", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy92", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/hca_matrix_downloader/hca_matrix_downloader/v0.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/3.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/sceasy_convert/sceasy_convert/0.0.7+galaxy1" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "EBI-retrieval", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/EBI-retrieval/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/EBI-retrieval/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/EBI-retrieval/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 165, + "visitors": 166, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + } + ], + "description": "Creates input file for Filter, Plot, Explore tutorial", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nSC-Atlas experiment accession\"]\n 1[label=\"EBI SCXA Data Retrieval\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Rename batch numbers\"]\n 1 -> 2 [label=\"design_tsv\"]\n 3[label=\"Mito genes check\"]\n 1 -> 3 [label=\"genes_tsv\"]\n kb0762cfd58bd4c39ae412dca4289c541[color=lightseagreen,label=\"Output\\nMito genes check\"]\n 3 -> kb0762cfd58bd4c39ae412dca4289c541\n 4[label=\"Rename cell metadata headers\"]\n 2 -> 4 [label=\"out_file1\"]\n 5[label=\"Create AnnData\"]\n 1 -> 5 [label=\"barcode_tsv\"]\n 4 -> 5 [label=\"outfile\"]\n 1 -> 5 [label=\"genes_tsv\"]\n 1 -> 5 [label=\"matrix_mtx\"]\n k938cd59461cf4037a58bc09c065db505[color=lightseagreen,label=\"Output\\nAnnData object\"]\n 5 -> k938cd59461cf4037a58bc09c065db505\n 6[label=\"Seurat Read10x\"]\n 1 -> 6 [label=\"barcode_tsv\"]\n 1 -> 6 [label=\"genes_tsv\"]\n 1 -> 6 [label=\"matrix_mtx\"]\n 4 -> 6 [label=\"outfile\"]\n kc24e9d83c17540a29c36eeb486fe323e[color=lightseagreen,label=\"Output\\nSeurat object\"]\n 6 -> kc24e9d83c17540a29c36eeb486fe323e\n 7[label=\"AnnData Operations\"]\n 5 -> 7 [label=\"output_h5ad\"]\n kb47f801fbedb4136a5e9378a815a1799[color=lightseagreen,label=\"Output\\nMito-counted AnnData for downstream analysis\"]\n 7 -> kb47f801fbedb4136a5e9378a815a1799\n}", + "history": [ + { + "hash": "a6e3cf848bad2cf19f48ca286c52821f558a6b52", + "message": "new tests", + "num": 2, + "short_hash": "a6e3cf848", + "unix": "1702552191" + }, + { + "hash": "914bf924a609d64b3f3f69d8b78b44a584d90581", + "message": "ebi scxa updated workflow tests", + "num": 1, + "short_hash": "914bf924a", + "unix": "1702547068" + } + ], + "inputs": [ + { + "annotation": "EBI Single Cell Atlas accession for the experiment that you want to retrieve.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "EBI Single Cell Atlas accession for the experiment that you want to retrieve.", + "name": "SC-Atlas experiment accession" + } + ], + "label": "SC-Atlas experiment accession", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"default\": \"E-MTAB-6945\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "ca016294-33ee-47fc-9a42-36a0288d353d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dcf5b67e-9773-4ca5-8e33-b0f875e91d77" + } + ] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nSC-Atlas experiment accession\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"EBI SCXA Data Retrieval\"];\n 0 -->|output| 1;\n 2[\"Rename batch numbers\"];\n 1 -->|design_tsv| 2;\n 3[\"Mito genes check\"];\n 1 -->|genes_tsv| 3;\n b0762cfd-58bd-4c39-ae41-2dca4289c541[\"Output\\nMito genes check\"];\n 3 --> b0762cfd-58bd-4c39-ae41-2dca4289c541;\n style b0762cfd-58bd-4c39-ae41-2dca4289c541 stroke:#2c3143,stroke-width:4px;\n 4[\"Rename cell metadata headers\"];\n 2 -->|out_file1| 4;\n 5[\"Create AnnData\"];\n 1 -->|barcode_tsv| 5;\n 4 -->|outfile| 5;\n 1 -->|genes_tsv| 5;\n 1 -->|matrix_mtx| 5;\n 938cd594-61cf-4037-a58b-c09c065db505[\"Output\\nAnnData object\"];\n 5 --> 938cd594-61cf-4037-a58b-c09c065db505;\n style 938cd594-61cf-4037-a58b-c09c065db505 stroke:#2c3143,stroke-width:4px;\n 6[\"Seurat Read10x\"];\n 1 -->|barcode_tsv| 6;\n 1 -->|genes_tsv| 6;\n 1 -->|matrix_mtx| 6;\n 4 -->|outfile| 6;\n c24e9d83-c175-40a2-9c36-eeb486fe323e[\"Output\\nSeurat object\"];\n 6 --> c24e9d83-c175-40a2-9c36-eeb486fe323e;\n style c24e9d83-c175-40a2-9c36-eeb486fe323e stroke:#2c3143,stroke-width:4px;\n 7[\"AnnData Operations\"];\n 5 -->|output_h5ad| 7;\n b47f801f-bedb-4136-a5e9-378a815a1799[\"Output\\nMito-counted AnnData for downstream analysis\"];\n 7 --> b47f801f-bedb-4136-a5e9-378a815a1799;\n style b47f801f-bedb-4136-a5e9-378a815a1799 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "EBI SCXA to AnnData (Scanpy) or Seurat Object", + "outputs": [ + { + "annotation": "EBI Single Cell Atlas accession for the experiment that you want to retrieve.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "EBI Single Cell Atlas accession for the experiment that you want to retrieve.", + "name": "SC-Atlas experiment accession" + } + ], + "label": "SC-Atlas experiment accession", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"default\": \"E-MTAB-6945\", \"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "ca016294-33ee-47fc-9a42-36a0288d353d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "dcf5b67e-9773-4ca5-8e33-b0f875e91d77" + } + ] + }, + { + "annotation": "Shows how mitochondrial genes are annotated.", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "errors": null, + "id": 3, + "input_connections": { + "infile": { + "id": 1, + "output_name": "genes_tsv" + } + }, + "inputs": [], + "label": "Mito genes check", + "name": "Search in textfiles", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 791.9068204609299, + "top": 717.1702369809638 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Mito genes check" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tsv\", \"case_sensitive\": \"-i\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"color\": \"COLOR\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"lines_after\": \"0\", \"lines_before\": \"0\", \"regex_type\": \"-P\", \"url_paste\": \"mt\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "51b0361d-00dd-45cf-98db-90b2242b6cb3", + "when": null, + "workflow_outputs": [ + { + "label": "Mito genes check", + "output_name": "output", + "uuid": "b0762cfd-58bd-4c39-ae41-2dca4289c541" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy9", + "errors": null, + "id": 5, + "input_connections": { + "barcodes": { + "id": 1, + "output_name": "barcode_tsv" + }, + "cell_meta": { + "id": 4, + "output_name": "outfile" + }, + "genes": { + "id": 1, + "output_name": "genes_tsv" + }, + "matrix": { + "id": 1, + "output_name": "matrix_mtx" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy Read10x", + "name": "gene_meta" + } + ], + "label": "Create AnnData", + "name": "Scanpy Read10x", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1025.6788601346032, + "top": 534.8213953419395 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "AnnData object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "9afcfcd1d215", + "name": "scanpy_read_10x", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"barcodes\": {\"__class__\": \"ConnectedValue\"}, \"cell_meta\": {\"__class__\": \"ConnectedValue\"}, \"gene_meta\": {\"__class__\": \"RuntimeValue\"}, \"genes\": {\"__class__\": \"ConnectedValue\"}, \"matrix\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"var_names\": \"gene_ids\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "e02346a9-9da0-40fc-85ef-3492cbb73b44", + "when": null, + "workflow_outputs": [ + { + "label": "AnnData object", + "output_name": "output_h5ad", + "uuid": "938cd594-61cf-4037-a58b-c09c065db505" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/3.2.3+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input|barcodes": { + "id": 1, + "output_name": "barcode_tsv" + }, + "input|genes": { + "id": 1, + "output_name": "genes_tsv" + }, + "input|matrix": { + "id": 1, + "output_name": "matrix_mtx" + }, + "metadata": { + "id": 4, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Seurat Read10x", + "outputs": [ + { + "name": "rds_seurat_file", + "type": "rdata" + } + ], + "position": { + "left": 1564.7962994380462, + "top": 864.6368384275628 + }, + "post_job_actions": { + "RenameDatasetActionrds_seurat_file": { + "action_arguments": { + "newname": "Seurat object" + }, + "action_type": "RenameDatasetAction", + "output_name": "rds_seurat_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/3.2.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "301cf1b4b43d", + "name": "seurat_read10x", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"rds_seurat\", \"input\": {\"format\": \"mtx\", \"__current_case__\": 1, \"matrix\": {\"__class__\": \"ConnectedValue\"}, \"genes\": {\"__class__\": \"ConnectedValue\"}, \"barcodes\": {\"__class__\": \"ConnectedValue\"}}, \"metadata\": {\"__class__\": \"ConnectedValue\"}, \"min_cells\": null, \"min_features\": null, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.2.3+galaxy0", + "type": "tool", + "uuid": "1aa185bd-1392-438d-adea-21ed201bc9db", + "when": null, + "workflow_outputs": [ + { + "label": "Seurat object", + "output_name": "rds_seurat_file", + "uuid": "c24e9d83-c175-40a2-9c36-eeb486fe323e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy92", + "errors": null, + "id": 7, + "input_connections": { + "input_obj_file": { + "id": 5, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "AnnData Operations", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1310.0874938964844, + "top": 792.8125610351562 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Mito-counted AnnData for downstream analysis" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy92", + "tool_shed_repository": { + "changeset_revision": "a0274bc43b7e", + "name": "anndata_ops", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_cell_metadata\": {\"default\": false, \"__current_case__\": 1}, \"copy_adata_to_raw\": false, \"copy_e\": {\"default\": false, \"__current_case__\": 1}, \"copy_l\": {\"default\": false, \"__current_case__\": 1}, \"copy_o\": {\"default\": false, \"__current_case__\": 1}, \"copy_r\": {\"default\": false, \"__current_case__\": 1}, \"copy_u\": {\"default\": false, \"__current_case__\": 1}, \"copy_x\": {\"default\": false, \"__current_case__\": 1}, \"field_unique\": null, \"gene_flags\": [{\"__index__\": 0, \"startswith\": \"mt-\", \"flag\": \"mito\"}], \"gene_symbols_field\": \"Symbol\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"modifications\": [], \"output_format\": \"anndata_h5ad\", \"sanitize_varm\": false, \"split_on_obs\": {\"default\": false, \"__current_case__\": 1}, \"swap_layer_to_x\": {\"default\": false, \"__current_case__\": 1}, \"top_genes\": \"50\", \"var_modifications\": [{\"__index__\": 0, \"from_var\": \"gene_symbols\", \"to_var\": \"Symbol\", \"keep_original\": false, \"make_unique\": false}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy92", + "type": "tool", + "uuid": "b4616c2c-96f1-4474-97f3-cdbecd37e65b", + "when": null, + "workflow_outputs": [ + { + "label": "Mito-counted AnnData for downstream analysis", + "output_name": "output_h5ad", + "uuid": "b47f801f-bedb-4136-a5e9-378a815a1799" + } + ] + } + ], + "parent_id": "single-cell/EBI-retrieval", + "path": "topics/single-cell/tutorials/EBI-retrieval/workflows/EBI-SCXA-to-AnnData-(Scanpy)-or-Seurat-Object.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "EBI SCXA to AnnData (Scanpy) or Seurat Object", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-EBI-retrieval/versions/ebi-scxa-to-anndata--scanpy--or-seurat-object", + "tutorial_id": "EBI-retrieval", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/EBI-retrieval/workflows/EBI-SCXA-to-AnnData-(Scanpy)-or-Seurat-Object.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/EBI-retrieval/workflows/EBI-SCXA-to-AnnData-(Scanpy)-or-Seurat-Object.html", + "version": 1, + "wfid": "single-cell-EBI-retrieval", + "wfname": "ebi-scxa-to-anndata--scanpy--or-seurat-object", + "workflow": "EBI-SCXA-to-AnnData-(Scanpy)-or-Seurat-Object.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy92", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/3.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.3" + ], + "workflowhub_id": "1210" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "add_value", + "owner": "devteam", + "revisions": "745871c0b055", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_regress_variable", + "owner": "ebi-gxa", + "revisions": "36daab33aecf", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "ee98d611afc6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "3d748954434b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "revisions": "aaa5da8e73a9", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_inspect", + "owner": "iuc", + "revisions": "c5d3684f7c4c", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot", + "owner": "iuc", + "revisions": "aa0c474463c2", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "table_compute", + "owner": "iuc", + "revisions": "3bf5661c0280", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: add_value\n owner: devteam\n revisions: 745871c0b055\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_regress_variable\n owner: ebi-gxa\n revisions: 36daab33aecf\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: ee98d611afc6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: 3d748954434b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_cluster_reduce_dimension\n owner: iuc\n revisions: aaa5da8e73a9\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_inspect\n owner: iuc\n revisions: c5d3684f7c4c\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot\n owner: iuc\n revisions: aa0c474463c2\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: table_compute\n owner: iuc\n revisions: 3bf5661c0280\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_cell-cycle/tutorial.json", + "contributions": { + "authorship": [ + "MarisaJL" + ], + "editing": [ + "nomadscientist" + ], + "testing": [ + "hrukkudyr" + ] + }, + "contributors": [ + { + "email": "marisa.loach@open.ac.uk", + "id": "MarisaJL", + "joined": "2022-10", + "name": "Marisa Loach", + "orcid": "0000-0001-6979-6930", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/MarisaJL/", + "twitter": "Marisa_Loach", + "url": "https://training.galaxyproject.org/training-material/api/contributors/MarisaJL.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "email": "grt67@open.ac.uk", + "id": "hrukkudyr", + "joined": "2022-09", + "name": "Graeme Tyson", + "orcid": "0000-0002-1748-2806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hrukkudyr/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hrukkudyr.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_cell-cycle", + "edam_operation": [ + "Differential gene expression analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/scrna-case_cell-cycle", + "inexact_supported_servers": [ + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Cell cycle genes can conceal what is happening in your data if cells are grouping together according to their stage in the cycle", + "Identifying the cell cycle genes and using them to regress out the effects of the cell cycle can reveal underlying patterns in the data" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Identify the cell cycle genes", + "Use the cell cycle genes to regress out the effects of the cell cycle", + "Create PCA plots to understand the impact of the regression" + ], + "pageviews": 1603, + "priority": 2, + "pub_date": "2023-01-25", + "questions": [ + "How can I reduce the effects of the cell cycle on my scRNA-seq data?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets", + "scrna-case_basic-pipeline" + ], + "type": "internal" + } + ], + "short_id": "T00248", + "short_tools": [ + "anndata_manipulate", + "cat1", + "anndata_inspect", + "scanpy_inspect", + "scanpy_plot", + "sort1", + "tp_easyjoin_tool", + "scanpy_regress_variable", + "scanpy_cluster_reduce_dimension", + "table_compute", + "addValue" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "tricks", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x" + ], + "time_estimation": "1H", + "title": "Removing the effects of the cell cycle", + "tools": [ + "cat1", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_regress_variable/scanpy_regress_variable/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_cell-cycle", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_cell-cycle/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_cell-cycle/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_cell-cycle/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 48, + "visitors": 1329, + "workflows": [ + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnData After QC, normalisation, scaling\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nS Phase Genes\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG2M Phase Genes\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPasted Entry\"]\n 4[label=\"Inspect AnnData\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"All Cell Cycle Genes Concatenate S and G2M Genes\"]\n 1 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Inspect and manipulate\"]\n 0 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Table Compute\"]\n 4 -> 7 [label=\"var\"]\n 8[label=\"Add column\"]\n 5 -> 8 [label=\"out_file1\"]\n 9[label=\"Scanpy RegressOut\"]\n 6 -> 9 [label=\"anndata_out\"]\n k026b02d397ee4847934740773ab76356[color=lightseagreen,label=\"Output\\nScanpy RegressOut on input dataset(s): Regressed out AnnData\"]\n 9 -> k026b02d397ee4847934740773ab76356\n 10[label=\"Add column\"]\n 7 -> 10 [label=\"table\"]\n 11[label=\"Join\"]\n 10 -> 11 [label=\"out_file1\"]\n 8 -> 11 [label=\"out_file1\"]\n 12[label=\"Sort\"]\n 11 -> 12 [label=\"output\"]\n 13[label=\"Table Compute\"]\n 12 -> 13 [label=\"out_file1\"]\n 14[label=\"Concatenate datasets\"]\n 3 -> 14 [label=\"output\"]\n 13 -> 14 [label=\"table\"]\n 15[label=\"Manipulate AnnData\"]\n 6 -> 15 [label=\"anndata_out\"]\n 14 -> 15 [label=\"out_file1\"]\n 16[label=\"Manipulate AnnData\"]\n 9 -> 16 [label=\"output_h5ad\"]\n 14 -> 16 [label=\"out_file1\"]\n 17[label=\"Manipulate AnnData\"]\n 15 -> 17 [label=\"anndata\"]\n 18[label=\"Manipulate AnnData\"]\n 16 -> 18 [label=\"anndata\"]\n 19[label=\"Cluster, infer trajectories and embed\"]\n 17 -> 19 [label=\"anndata\"]\n 20[label=\"Cluster, infer trajectories and embed\"]\n 18 -> 20 [label=\"anndata\"]\n k09d97ef7ed924d90a5972032581c2d4a[color=lightseagreen,label=\"Output\\nCluster, infer trajectories and embed (tl.louvain) on input dataset(s): Annotated data matrix\"]\n 20 -> k09d97ef7ed924d90a5972032581c2d4a\n 21[label=\"Plot\"]\n 19 -> 21 [label=\"anndata_out\"]\n 22[label=\"Plot\"]\n 20 -> 22 [label=\"anndata_out\"]\n}", + "history": [ + { + "hash": "f70e87e49ec1315f959cb4532d667ab976ae61f4", + "message": "Moving to single cell", + "num": 1, + "short_hash": "f70e87e49", + "unix": "1669054986" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "AnnData (After QC, normalisation, scaling)" + } + ], + "label": "AnnData (After QC, normalisation, scaling)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 646.9375, + "top": 474.125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "abf51bba-7bf3-442f-8d25-bb8008efdab1", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "S Phase Genes" + } + ], + "label": "S Phase Genes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 1029.3646240234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "20c44e44-d3da-47b3-a761-5b9714629e8e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G2M Phase Genes" + } + ], + "label": "G2M Phase Genes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 17.21875, + "top": 1184.7708740234375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "5ed158d1-a7eb-4750-892c-f123c80bfe89", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Pasted Entry" + } + ], + "label": "Pasted Entry", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1955.0625, + "top": 0.0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bd171b20-fde0-4346-8d3e-274a3592485d", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAnnData After QC, normalisation, scaling\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nS Phase Genes\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nG2M Phase Genes\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nPasted Entry\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Inspect AnnData\"];\n 0 -->|output| 4;\n 5[\"All Cell Cycle Genes Concatenate S and G2M Genes\"];\n 1 -->|output| 5;\n 2 -->|output| 5;\n 6[\"Inspect and manipulate\"];\n 0 -->|output| 6;\n 2 -->|output| 6;\n 1 -->|output| 6;\n 7[\"Table Compute\"];\n 4 -->|var| 7;\n 8[\"Add column\"];\n 5 -->|out_file1| 8;\n 9[\"Scanpy RegressOut\"];\n 6 -->|anndata_out| 9;\n 026b02d3-97ee-4847-9347-40773ab76356[\"Output\\nScanpy RegressOut on input dataset(s): Regressed out AnnData\"];\n 9 --> 026b02d3-97ee-4847-9347-40773ab76356;\n style 026b02d3-97ee-4847-9347-40773ab76356 stroke:#2c3143,stroke-width:4px;\n 10[\"Add column\"];\n 7 -->|table| 10;\n 11[\"Join\"];\n 10 -->|out_file1| 11;\n 8 -->|out_file1| 11;\n 12[\"Sort\"];\n 11 -->|output| 12;\n 13[\"Table Compute\"];\n 12 -->|out_file1| 13;\n 14[\"Concatenate datasets\"];\n 3 -->|output| 14;\n 13 -->|table| 14;\n 15[\"Manipulate AnnData\"];\n 6 -->|anndata_out| 15;\n 14 -->|out_file1| 15;\n 16[\"Manipulate AnnData\"];\n 9 -->|output_h5ad| 16;\n 14 -->|out_file1| 16;\n 17[\"Manipulate AnnData\"];\n 15 -->|anndata| 17;\n 18[\"Manipulate AnnData\"];\n 16 -->|anndata| 18;\n 19[\"Cluster, infer trajectories and embed\"];\n 17 -->|anndata| 19;\n 20[\"Cluster, infer trajectories and embed\"];\n 18 -->|anndata| 20;\n 09d97ef7-ed92-4d90-a597-2032581c2d4a[\"Output\\nCluster, infer trajectories and embed (tl.louvain) on input dataset(s): Annotated data matrix\"];\n 20 --> 09d97ef7-ed92-4d90-a597-2032581c2d4a;\n style 09d97ef7-ed92-4d90-a597-2032581c2d4a stroke:#2c3143,stroke-width:4px;\n 21[\"Plot\"];\n 19 -->|anndata_out| 21;\n 22[\"Plot\"];\n 20 -->|anndata_out| 22;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Cell Cycle Regression Workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "var", + "type": "tabular" + } + ], + "position": { + "left": 459.125, + "top": 133.625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"var\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "96b7447e-c65c-4955-b3c5-a381f707fb3d", + "workflow_outputs": [ + { + "label": null, + "output_name": "var", + "uuid": "1ffba0d7-dc80-4e44-bd74-77cf007f1446" + } + ] + }, + { + "annotation": "", + "content_id": "cat1", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 1, + "output_name": "output" + }, + "queries_0|input2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "All Cell Cycle Genes (Concatenate S and G2M Genes)", + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 445.59375, + "top": 1010.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "cat1", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [{\"__index__\": 0, \"input2\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "7d0769c1-4b8d-4d29-bcc7-aed030503ccc", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "dd200c78-68fe-4a66-85e7-76710e20e4ae" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.7.1+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + }, + "method|g2m_genes|file": { + "id": 2, + "output_name": "output" + }, + "method|s_genes|file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect and manipulate", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 1839.84375, + "top": 567.9375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c5d3684f7c4c", + "name": "scanpy_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"method\": {\"method\": \"tl.score_genes_cell_cycle\", \"__current_case__\": 3, \"s_genes\": {\"format\": \"file\", \"__current_case__\": 1, \"file\": {\"__class__\": \"ConnectedValue\"}}, \"g2m_genes\": {\"format\": \"file\", \"__current_case__\": 1, \"file\": {\"__class__\": \"ConnectedValue\"}}, \"n_bins\": \"25\", \"random_state\": \"0\", \"use_raw\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "11e0487f-e5a9-44c1-b3e5-2fe50ee207d4", + "workflow_outputs": [ + { + "label": null, + "output_name": "anndata_out", + "uuid": "0852740e-92ea-496a-bfeb-86184b8f8570" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "errors": null, + "id": 7, + "input_connections": { + "singtabop|input": { + "id": 4, + "output_name": "var" + } + }, + "inputs": [], + "label": null, + "name": "Table Compute", + "outputs": [ + { + "name": "table", + "type": "tabular" + } + ], + "position": { + "left": 781.4375, + "top": 125.09375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "93a3ce78ce55", + "name": "table_compute", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"out_opts\": [\"ignore_nas\"], \"precision\": \"6\", \"singtabop\": {\"use_type\": \"single\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"col_row_names\": null, \"adv\": {\"header\": null, \"nrows\": null, \"skipfooter\": null, \"skip_blank_lines\": \"true\"}, \"user\": {\"mode\": \"select\", \"__current_case__\": 1, \"select_cols_wanted\": \"1\", \"select_rows_wanted\": \"2:15396\", \"select_keepdupe\": [\"select_cols_keepdupe\", \"select_rows_keepdupe\"]}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.4+galaxy0", + "type": "tool", + "uuid": "e02f60d9-596f-4e18-9770-633ac1fc9a5a", + "workflow_outputs": [ + { + "label": null, + "output_name": "table", + "uuid": "ddb059b1-92b2-4989-8313-dbd144a11269" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Add column", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 730.125, + "top": 940.9375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "tool_shed_repository": { + "changeset_revision": "745871c0b055", + "name": "add_value", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exp\": \"TRUE\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"iterate\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "8270c2b8-343c-4a96-918e-7615844a9e08", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "11c1edc1-5969-4b69-939f-8b3ef484a28d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_regress_variable/scanpy_regress_variable/1.8.1+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "input_obj_file": { + "id": 6, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RegressOut", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 2373.3958740234375, + "top": 934.0416870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_regress_variable/scanpy_regress_variable/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "36daab33aecf", + "name": "scanpy_regress_variable", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"save_layer\": \"\", \"save_raw\": \"false\", \"variable_keys\": \"phase\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "5624944c-4504-4d72-8692-363ae5419e34", + "workflow_outputs": [ + { + "label": "Scanpy RegressOut on input dataset(s): Regressed out AnnData", + "output_name": "output_h5ad", + "uuid": "026b02d3-97ee-4847-9347-40773ab76356" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 7, + "output_name": "table" + } + }, + "inputs": [], + "label": null, + "name": "Add column", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1190.8125, + "top": 142.65625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "tool_shed_repository": { + "changeset_revision": "745871c0b055", + "name": "add_value", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exp\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"iterate\": \"yes\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "3920392c-5481-42be-aa3c-e0ae807d145d", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "27b6bae1-3786-4cbb-a943-e792f4320bc4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 11, + "input_connections": { + "infile1": { + "id": 10, + "output_name": "out_file1" + }, + "infile2": { + "id": 8, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1471.15625, + "top": 154.25 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"FALSE\", \"header\": \"false\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \"-a 1 -a 2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.2", + "type": "tool", + "uuid": "ea5dbe23-1636-4f14-ad7d-7d9c0926115c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "48e95afc-ac2c-4ab8-80a6-224bf9486af8" + } + ] + }, + { + "annotation": "", + "content_id": "sort1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Sort", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1733.7083740234375, + "top": 146.0625 + }, + "post_job_actions": {}, + "tool_id": "sort1", + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"4cdf4fce5b9d11edba32001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"column\": \"2\", \"column_set\": [], \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"order\": \"ASC\", \"style\": \"num\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "0e870357-b257-4e99-9d7e-06775c763579", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "735a9c42-3440-4370-9ef4-755c081ef2cc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "singtabop|input": { + "id": 12, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Table Compute", + "outputs": [ + { + "name": "table", + "type": "tabular" + } + ], + "position": { + "left": 1953.6875, + "top": 146.0625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "93a3ce78ce55", + "name": "table_compute", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"out_opts\": [\"ignore_nas\"], \"precision\": \"6\", \"singtabop\": {\"use_type\": \"single\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"col_row_names\": null, \"adv\": {\"header\": null, \"nrows\": null, \"skipfooter\": null, \"skip_blank_lines\": \"true\"}, \"user\": {\"mode\": \"select\", \"__current_case__\": 1, \"select_cols_wanted\": \"3\", \"select_rows_wanted\": \"1:15395\", \"select_keepdupe\": [\"select_cols_keepdupe\", \"select_rows_keepdupe\"]}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.4+galaxy0", + "type": "tool", + "uuid": "45f07fc8-3ff4-4e21-a1a6-7a764986930f", + "workflow_outputs": [ + { + "label": null, + "output_name": "table", + "uuid": "58fbdecd-859a-42a6-a166-980a2625e01f" + } + ] + }, + { + "annotation": "", + "content_id": "cat1", + "errors": null, + "id": 14, + "input_connections": { + "input1": { + "id": 3, + "output_name": "output" + }, + "queries_0|input2": { + "id": 13, + "output_name": "table" + } + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2173.65625, + "top": 146.0625 + }, + "post_job_actions": {}, + "tool_id": "cat1", + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"4cdf4fce5b9d11edba32001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [{\"__index__\": 0, \"input2\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "92d869ca-9989-4699-8069-1632a4c3d159", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "b946b4c9-ad29-4f7e-b2bc-2023265bdc10" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 9, + "output_name": "output_h5ad" + }, + "manipulate|new_annot": { + "id": 14, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 2813.729248046875, + "top": 194.28125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3d748954434b", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"add_annotation\", \"__current_case__\": 6, \"var_obs\": \"var\", \"new_annot\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "b441e4be-4438-4e6e-8ba7-b4cfd3be4eb0", + "workflow_outputs": [ + { + "label": null, + "output_name": "anndata", + "uuid": "b7370b49-ef2f-4427-8ea0-70f8159efd3c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 15, + "output_name": "anndata" + } + }, + "inputs": [], + "label": null, + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 2794.041748046875, + "top": 1071.2396240234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3d748954434b", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"filter\", \"__current_case__\": 7, \"var_obs\": \"var\", \"filter\": {\"filter\": \"key\", \"__current_case__\": 0, \"key\": \"CC_genes\", \"filter_key\": {\"type\": \"boolean\", \"__current_case__\": 2, \"value\": \"true\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "82e3a365-be59-4ca8-a82d-596c7b4056ba", + "workflow_outputs": [ + { + "label": null, + "output_name": "anndata", + "uuid": "3c56a2bd-26d8-4566-b9f9-0f0896651f8c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "errors": null, + "id": 18, + "input_connections": { + "input": { + "id": 16, + "output_name": "anndata" + } + }, + "inputs": [], + "label": null, + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 2826, + "top": 690.625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3d748954434b", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"filter\", \"__current_case__\": 7, \"var_obs\": \"var\", \"filter\": {\"filter\": \"key\", \"__current_case__\": 0, \"key\": \"CC_genes\", \"filter_key\": {\"type\": \"boolean\", \"__current_case__\": 2, \"value\": \"true\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "77b6cf83-c02a-49c4-9ae4-c02fa88510d5", + "workflow_outputs": [ + { + "label": null, + "output_name": "anndata", + "uuid": "8968536f-6774-4b4f-b1cf-0535133911f7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "adata": { + "id": 17, + "output_name": "anndata" + } + }, + "inputs": [], + "label": null, + "name": "Cluster, infer trajectories and embed", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 3119.666748046875, + "top": 1062.2396240234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "aaa5da8e73a9", + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"method\": {\"method\": \"tl.pca\", \"__current_case__\": 3, \"n_comps\": \"50\", \"dtype\": \"float32\", \"pca\": {\"chunked\": \"False\", \"__current_case__\": 1, \"zero_center\": \"true\", \"svd_solver\": \"auto\", \"random_state\": \"0\"}, \"use_highly_variable\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "0dc6efda-15c2-4c62-a381-887c3d29c017", + "workflow_outputs": [ + { + "label": null, + "output_name": "anndata_out", + "uuid": "b194bcae-6ae7-494d-ba15-68a6b14e59f3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "errors": null, + "id": 20, + "input_connections": { + "adata": { + "id": 18, + "output_name": "anndata" + } + }, + "inputs": [], + "label": null, + "name": "Cluster, infer trajectories and embed", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "left": 3115.635498046875, + "top": 699.0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "aaa5da8e73a9", + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"method\": {\"method\": \"tl.pca\", \"__current_case__\": 3, \"n_comps\": \"50\", \"dtype\": \"float32\", \"pca\": {\"chunked\": \"False\", \"__current_case__\": 1, \"zero_center\": \"true\", \"svd_solver\": \"auto\", \"random_state\": \"0\"}, \"use_highly_variable\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "c776b1f6-4eac-40fa-9f19-1fb8fb2b530e", + "workflow_outputs": [ + { + "label": "Cluster, infer trajectories and embed (tl.louvain) on input dataset(s): Annotated data matrix", + "output_name": "anndata_out", + "uuid": "09d97ef7-ed92-4d90-a597-2032581c2d4a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 21, + "input_connections": { + "adata": { + "id": 19, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 3397.70849609375, + "top": 1056.2708740234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.pca_overview\", \"__current_case__\": 12, \"color\": \"phase\", \"use_raw\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "500c400f-02e5-40ab-8e33-684ecef4aeff", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "908ff564-db8c-41e3-90e8-fee85df325d0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 22, + "input_connections": { + "adata": { + "id": 20, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 3411.70849609375, + "top": 726.2291870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.pca_overview\", \"__current_case__\": 12, \"color\": \"phase\", \"use_raw\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "beb0ba6d-3a0f-4bec-a045-3cdf62053d6d", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "9737f727-e959-4773-b964-38b225b7c7ee" + } + ] + } + ], + "parent_id": "single-cell/scrna-case_cell-cycle", + "path": "topics/single-cell/tutorials/scrna-case_cell-cycle/workflows/main_workflow.ga", + "tags": [ + "single-cell", + "10x", + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "Cell Cycle Regression Workflow", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_cell-cycle/versions/main-workflow", + "tutorial_id": "scrna-case_cell-cycle", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_cell-cycle/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_cell-cycle/workflows/main_workflow.html", + "version": 1, + "wfid": "single-cell-scrna-case_cell-cycle", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "cat1", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/add_value/addValue/1.0.0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_regress_variable/scanpy_regress_variable/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0" + ], + "workflowhub_id": "1246" + } + ], + "zenodo_link": "https://zenodo.org/record/7311628/" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case-jupyter_basic-pipeline/tutorial.json", + "contributions": { + "authorship": [ + "hexhowells", + "nomadscientist" + ] + }, + "contributors": [ + { + "email": "hexhowells@gmail.com", + "id": "hexhowells", + "joined": "2023-06", + "name": "Morgan Howells", + "orcid": "0009-0008-9422-6380", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexhowells/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexhowells.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case-jupyter_basic-pipeline", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_JUPYTER-trajectories", + "scrna-case_monocle3-trajectories" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "single-cell/scrna-case-jupyter_basic-pipeline", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Single cell data is huge, and must have its many (# genes) dimensions reduced for analysis", + "Analysis is more subjective than we think, and biological understanding of the samples as well as many iterations of analysis are important to give us our best change of attaining real biological insights" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-15", + "notebook": { + "language": "python", + "snippet": "topics/single-cell/tutorials/scrna-case-jupyter_basic-pipeline/preamble.md" + }, + "objectives": [ + "Interpret quality control plots to direct parameter decisions", + "Repeat analysis from matrix to clustering", + "Identify decision-making points", + "Appraise data outputs and decisions", + "Explain why single cell analysis is an iterative (i.e. the first plots you generate are not final, but rather you go back and re-analyse your data repeatedly) process" + ], + "pageviews": 1903, + "priority": 2, + "pub_date": "2023-08-25", + "questions": [ + "Is my single cell dataset a quality dataset?", + "How do I generate and annotate cell clusters?", + "How do I pick thresholds and parameters in my analysis? What's a \"reasonable\" number, and will the world collapse if I pick the wrong one?" + ], + "recordings": [ + { + "bot-timestamp": 1722971660, + "captioners": [ + "hexhowells" + ], + "date": "2024-08-06", + "galaxy_version": "24.1.2.dev0", + "length": "13M", + "speakers": [ + "hexhowells" + ], + "youtube_id": "40w0WVohv4E" + } + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets" + ], + "type": "internal" + } + ], + "short_id": "T00358", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS-code", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication", + "Python" + ], + "time_estimation": "3H", + "title": "Filter, plot and explore single-cell RNA-seq data with Scanpy (Python)", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case-jupyter_basic-pipeline", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case-jupyter_basic-pipeline/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case-jupyter_basic-pipeline/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case-jupyter_basic-pipeline/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 74, + "visitors": 1660, + "zenodo_link": "https://zenodo.org/record/7053673" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "umi_tools_extract", + "owner": "iuc", + "revisions": "6a675c3aa610", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seq_filter_by_id", + "owner": "peterjc", + "revisions": "141612f8c3e3", + "tool_panel_section_label": "Filter and Sort", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: umi_tools_extract\n owner: iuc\n revisions: 6a675c3aa610\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seq_filter_by_id\n owner: peterjc\n revisions: 141612f8c3e3\n tool_panel_section_label: Filter and Sort\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-umis/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-umis", + "edam_operation": [ + "Sequencing quality control", + "Sequence composition calculation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-umis", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Verifying the distribution of barcodes via a FASTQC plot", + "Relocating barcodes into headers", + "Removing unwanted barcodes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Demultiplex FASTQ data via UMI-tools", + "Understand and validate the extraction of barcodes" + ], + "pageviews": 5963, + "priority": 2, + "pub_date": "2019-02-20", + "questions": [ + "What are barcodes?", + "What is their purpose?", + "How are barcodes formatted?" + ], + "recordings": [ + { + "captioners": [ + "khanteymoori" + ], + "date": "2021-03-18", + "galaxy_version": "21.01", + "length": "10M", + "speakers": [ + "nomadscientist" + ], + "youtube_id": "AJ17BicjmYU" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-umis/tutorial", + "/short/single-cell/scrna-umis", + "/short/T00256" + ], + "short_id": "T00256", + "short_tools": [ + "seq_filter_by_id", + "umi_tools_extract", + "fastqc" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "scintroduction", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": null, + "time_estimation": "2h", + "title": "Understanding Barcodes", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/0.5.5.1", + "toolshed.g2.bx.psu.edu/repos/peterjc/seq_filter_by_id/seq_filter_by_id/0.2.7" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-umis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-umis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-umis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-umis/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 70, + "visitors": 4694, + "zenodo_link": "https://zenodo.org/record/2573177" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "scanpy_compute_graph", + "owner": "ebi-gxa", + "revisions": "6417cccad133", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "revisions": "2ccd9f9e2cd0", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_parameter_iterator", + "owner": "ebi-gxa", + "revisions": "73d43034c860", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "revisions": "35f6611fb8c3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_tsne", + "owner": "ebi-gxa", + "revisions": "181d61d2f3cd", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_umap", + "owner": "ebi-gxa", + "revisions": "bd4a244faeb8", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: scanpy_compute_graph\n owner: ebi-gxa\n revisions: 6417cccad133\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_find_cluster\n owner: ebi-gxa\n revisions: 2ccd9f9e2cd0\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_parameter_iterator\n owner: ebi-gxa\n revisions: 73d43034c860\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot_embed\n owner: ebi-gxa\n revisions: 35f6611fb8c3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_tsne\n owner: ebi-gxa\n revisions: 181d61d2f3cd\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_umap\n owner: ebi-gxa\n revisions: bd4a244faeb8\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scanpy_parameter_iterator/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin" + ], + "funding": [ + "eosc-life" + ], + "testing": [ + "nomadscientist" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "avatar": "https://www.eosc-life.eu/wp-content/themes/eosc-life-v2/assets/images/eosclogo.png", + "funder": true, + "funding_id": "824087", + "funding_statement": "EOSC-Life has received funding from the European Union\u2019s Horizon 2020 programme under grant agreement number 824087", + "funding_system": "cordis", + "github": false, + "id": "eosc-life", + "joined": "2023-04", + "members": [ + "bgruening" + ], + "name": "EOSC-Life", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eosc-life/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eosc-life.json" + } + ], + "dir": "topics/single-cell/tutorials/scanpy_parameter_iterator", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/scanpy_parameter_iterator", + "inexact_supported_servers": [ + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Scanpy ParameterIterator can be used for k nearest neighbours (Scanpy ComputeGraph), perplexity (Scanpy RunTSNE) and resolution (Scanpy FindCluster).", + "You can enter the parameter values either as a list or as values to be iterated in step.", + "Parameter Iterator is a useful tool to quickly and easily compare the differences in the outputs caused by changing parameter values. Hence it allows us to choose the optimal parameter values." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-12-05", + "objectives": [ + "Execute the Scanpy Parameter Iterator", + "Recognise what tools you can use Parameter Iterator with", + "Operate tools working on dataset collections", + "Compare plots resulting from different parameters values" + ], + "pageviews": 135, + "priority": 3, + "pub_date": "2023-07-19", + "questions": [ + "How can I run a tool with multiple parameter values?", + "Do I have to enter parameter values manually each time I want to check a new value?", + "What tools can take multiple values at once and iterate over them?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets", + "scrna-case_basic-pipeline" + ], + "type": "internal" + } + ], + "short_id": "T00357", + "short_tools": [ + "scanpy_plot_embed", + "scanpy_run_tsne", + "scanpy_find_cluster", + "scanpy_compute_graph", + "scanpy_parameter_iterator", + "scanpy_run_umap" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "tricks", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": null, + "time_estimation": "2H", + "title": "Scanpy Parameter Iterator", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_parameter_iterator/scanpy_parameter_iterator/0.0.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scanpy_parameter_iterator", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scanpy_parameter_iterator/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scanpy_parameter_iterator/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scanpy_parameter_iterator/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 94, + "visitors": 118, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nScanpy RunPCA: AnnData object\"]\n 1[label=\"ParameterIterator n-neighbors\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nScanpy ComputeGraph on data X and data Y: Graph object AnnData\"]\n 3[label=\"ParameterIterator perplexity\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nScanpy RunUMAP on data X: UMAP object AnnData\"]\n 5[label=\"ParameterIterator resolution\"]\n 6[label=\"Scanpy ComputeGraph\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"parameter_iteration\"]\n k1e60c7cd7e02450fa403f3df1e548757[color=lightseagreen,label=\"Output\\nScanpy ComputeGraph on collection X: Graph object AnnData (n-neighbours)\"]\n 6 -> k1e60c7cd7e02450fa403f3df1e548757\n 7[label=\"Scanpy RunTSNE\"]\n 2 -> 7 [label=\"output\"]\n 3 -> 7 [label=\"parameter_iteration\"]\n k15143fea5e2b4b25b5d10726da910f67[color=lightseagreen,label=\"Output\\nScanpy RunTSNE on collection X: tSNE object AnnData (perplexity)\"]\n 7 -> k15143fea5e2b4b25b5d10726da910f67\n 8[label=\"Scanpy FindCluster\"]\n 4 -> 8 [label=\"output\"]\n 5 -> 8 [label=\"parameter_iteration\"]\n k6fdddfe7c4da442186a09819ce4c769c[color=lightseagreen,label=\"Output\\nScanpy FindCluster on collection X: Clusters AnnData (resolution)\"]\n 8 -> k6fdddfe7c4da442186a09819ce4c769c\n 9[label=\"Scanpy RunTSNE\"]\n 6 -> 9 [label=\"output_h5ad\"]\n k7c988247b1674733859ffcd582f91959[color=lightseagreen,label=\"Output\\nScanpy RunTSNE on collection X: tSNE object AnnData (n-neighbours)\"]\n 9 -> k7c988247b1674733859ffcd582f91959\n 10[label=\"Scanpy RunUMAP\"]\n 7 -> 10 [label=\"output_h5ad\"]\n k1f5abfa2845c47639f87e4b167aa7bc8[color=lightseagreen,label=\"Output\\nScanpy RunUMAP on collection X: UMAP object AnnData (perplexity)\"]\n 10 -> k1f5abfa2845c47639f87e4b167aa7bc8\n 11[label=\"Scanpy PlotEmbed\"]\n 8 -> 11 [label=\"output_h5ad\"]\n k99185d1e047f47f2908107506e1c17df[color=lightseagreen,label=\"Output\\nresolution_pca_plots\"]\n 11 -> k99185d1e047f47f2908107506e1c17df\n 12[label=\"Scanpy PlotEmbed\"]\n 8 -> 12 [label=\"output_h5ad\"]\n k65d7b619865940089e56db21fda6ce8c[color=lightseagreen,label=\"Output\\nresolution_umap_plots\"]\n 12 -> k65d7b619865940089e56db21fda6ce8c\n 13[label=\"Scanpy PlotEmbed\"]\n 8 -> 13 [label=\"output_h5ad\"]\n kbdcaf8375fc44024a87aeabfa0110127[color=lightseagreen,label=\"Output\\nresolution_tsne_plots\"]\n 13 -> kbdcaf8375fc44024a87aeabfa0110127\n 14[label=\"Scanpy RunUMAP\"]\n 9 -> 14 [label=\"output_h5ad\"]\n k8a0b3d69e7df4977b8ebec478b914a26[color=lightseagreen,label=\"Output\\nScanpy RunUMAP on collection X: UMAP object AnnData (n-neighbours)\"]\n 14 -> k8a0b3d69e7df4977b8ebec478b914a26\n 15[label=\"Scanpy FindCluster\"]\n 10 -> 15 [label=\"output_h5ad\"]\n kc2e0d48f9f0e44528fb5e78420578c65[color=lightseagreen,label=\"Output\\nScanpy FindCluster on collection X: Clusters AnnData (perplexity)\"]\n 15 -> kc2e0d48f9f0e44528fb5e78420578c65\n 16[label=\"Scanpy FindCluster\"]\n 14 -> 16 [label=\"output_h5ad\"]\n kc952b32e99d54b94a6d7be59439c4dca[color=lightseagreen,label=\"Output\\nScanpy FindCluster on collection X: Clusters AnnData (n-neighbours)\"]\n 16 -> kc952b32e99d54b94a6d7be59439c4dca\n 17[label=\"Scanpy PlotEmbed\"]\n 15 -> 17 [label=\"output_h5ad\"]\n k44c0ec07b64e428f92545217e8041416[color=lightseagreen,label=\"Output\\nperplexity_plots\"]\n 17 -> k44c0ec07b64e428f92545217e8041416\n 18[label=\"Scanpy PlotEmbed\"]\n 16 -> 18 [label=\"output_h5ad\"]\n k0b30f5738ebd45829bcd58ba5c778658[color=lightseagreen,label=\"Output\\nn-neighbors_plots\"]\n 18 -> k0b30f5738ebd45829bcd58ba5c778658\n}", + "history": [ + { + "hash": "331d2c1b553213fe663c01d608bba47638414644", + "message": "updated workflow tests", + "num": 2, + "short_hash": "331d2c1b5", + "unix": "1689307889" + }, + { + "hash": "68fc015a7fae9417a5365fb3edda17a5aaf9d87b", + "message": "add workflow tests", + "num": 1, + "short_hash": "68fc015a7", + "unix": "1686208349" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Scanpy RunPCA: AnnData object" + } + ], + "label": "Scanpy RunPCA: AnnData object", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 25.151777265812267, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ce25265d-8c04-490f-bd84-dd417a635456", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Scanpy ComputeGraph on data X and data Y: Graph object AnnData" + } + ], + "label": "Scanpy ComputeGraph on data X and data Y: Graph object AnnData", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 31.588610949585586, + "top": 368.3566064231565 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "fae9d652-9474-4b6c-9bd2-9e0eb6cb5ab4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Scanpy RunUMAP on data X: UMAP object AnnData" + } + ], + "label": "Scanpy RunUMAP on data X: UMAP object AnnData", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 12.794588175128467, + "top": 688.9871973265816 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "6f462fe5-e34b-4d8f-93bc-61b0d0e99488", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nScanpy RunPCA: AnnData object\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"ParameterIterator n-neighbors\"];\n 2[\"\u2139\ufe0f Input Dataset\\nScanpy ComputeGraph on data X and data Y: Graph object AnnData\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"ParameterIterator perplexity\"];\n 4[\"\u2139\ufe0f Input Dataset\\nScanpy RunUMAP on data X: UMAP object AnnData\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"ParameterIterator resolution\"];\n 6[\"Scanpy ComputeGraph\"];\n 0 -->|output| 6;\n 1 -->|parameter_iteration| 6;\n 1e60c7cd-7e02-450f-a403-f3df1e548757[\"Output\\nScanpy ComputeGraph on collection X: Graph object AnnData (n-neighbours)\"];\n 6 --> 1e60c7cd-7e02-450f-a403-f3df1e548757;\n style 1e60c7cd-7e02-450f-a403-f3df1e548757 stroke:#2c3143,stroke-width:4px;\n 7[\"Scanpy RunTSNE\"];\n 2 -->|output| 7;\n 3 -->|parameter_iteration| 7;\n 15143fea-5e2b-4b25-b5d1-0726da910f67[\"Output\\nScanpy RunTSNE on collection X: tSNE object AnnData (perplexity)\"];\n 7 --> 15143fea-5e2b-4b25-b5d1-0726da910f67;\n style 15143fea-5e2b-4b25-b5d1-0726da910f67 stroke:#2c3143,stroke-width:4px;\n 8[\"Scanpy FindCluster\"];\n 4 -->|output| 8;\n 5 -->|parameter_iteration| 8;\n 6fdddfe7-c4da-4421-86a0-9819ce4c769c[\"Output\\nScanpy FindCluster on collection X: Clusters AnnData (resolution)\"];\n 8 --> 6fdddfe7-c4da-4421-86a0-9819ce4c769c;\n style 6fdddfe7-c4da-4421-86a0-9819ce4c769c stroke:#2c3143,stroke-width:4px;\n 9[\"Scanpy RunTSNE\"];\n 6 -->|output_h5ad| 9;\n 7c988247-b167-4733-859f-fcd582f91959[\"Output\\nScanpy RunTSNE on collection X: tSNE object AnnData (n-neighbours)\"];\n 9 --> 7c988247-b167-4733-859f-fcd582f91959;\n style 7c988247-b167-4733-859f-fcd582f91959 stroke:#2c3143,stroke-width:4px;\n 10[\"Scanpy RunUMAP\"];\n 7 -->|output_h5ad| 10;\n 1f5abfa2-845c-4763-9f87-e4b167aa7bc8[\"Output\\nScanpy RunUMAP on collection X: UMAP object AnnData (perplexity)\"];\n 10 --> 1f5abfa2-845c-4763-9f87-e4b167aa7bc8;\n style 1f5abfa2-845c-4763-9f87-e4b167aa7bc8 stroke:#2c3143,stroke-width:4px;\n 11[\"Scanpy PlotEmbed\"];\n 8 -->|output_h5ad| 11;\n 99185d1e-047f-47f2-9081-07506e1c17df[\"Output\\nresolution_pca_plots\"];\n 11 --> 99185d1e-047f-47f2-9081-07506e1c17df;\n style 99185d1e-047f-47f2-9081-07506e1c17df stroke:#2c3143,stroke-width:4px;\n 12[\"Scanpy PlotEmbed\"];\n 8 -->|output_h5ad| 12;\n 65d7b619-8659-4008-9e56-db21fda6ce8c[\"Output\\nresolution_umap_plots\"];\n 12 --> 65d7b619-8659-4008-9e56-db21fda6ce8c;\n style 65d7b619-8659-4008-9e56-db21fda6ce8c stroke:#2c3143,stroke-width:4px;\n 13[\"Scanpy PlotEmbed\"];\n 8 -->|output_h5ad| 13;\n bdcaf837-5fc4-4024-a87a-eabfa0110127[\"Output\\nresolution_tsne_plots\"];\n 13 --> bdcaf837-5fc4-4024-a87a-eabfa0110127;\n style bdcaf837-5fc4-4024-a87a-eabfa0110127 stroke:#2c3143,stroke-width:4px;\n 14[\"Scanpy RunUMAP\"];\n 9 -->|output_h5ad| 14;\n 8a0b3d69-e7df-4977-b8eb-ec478b914a26[\"Output\\nScanpy RunUMAP on collection X: UMAP object AnnData (n-neighbours)\"];\n 14 --> 8a0b3d69-e7df-4977-b8eb-ec478b914a26;\n style 8a0b3d69-e7df-4977-b8eb-ec478b914a26 stroke:#2c3143,stroke-width:4px;\n 15[\"Scanpy FindCluster\"];\n 10 -->|output_h5ad| 15;\n c2e0d48f-9f0e-4452-8fb5-e78420578c65[\"Output\\nScanpy FindCluster on collection X: Clusters AnnData (perplexity)\"];\n 15 --> c2e0d48f-9f0e-4452-8fb5-e78420578c65;\n style c2e0d48f-9f0e-4452-8fb5-e78420578c65 stroke:#2c3143,stroke-width:4px;\n 16[\"Scanpy FindCluster\"];\n 14 -->|output_h5ad| 16;\n c952b32e-99d5-4b94-a6d7-be59439c4dca[\"Output\\nScanpy FindCluster on collection X: Clusters AnnData (n-neighbours)\"];\n 16 --> c952b32e-99d5-4b94-a6d7-be59439c4dca;\n style c952b32e-99d5-4b94-a6d7-be59439c4dca stroke:#2c3143,stroke-width:4px;\n 17[\"Scanpy PlotEmbed\"];\n 15 -->|output_h5ad| 17;\n 44c0ec07-b64e-428f-9254-5217e8041416[\"Output\\nperplexity_plots\"];\n 17 --> 44c0ec07-b64e-428f-9254-5217e8041416;\n style 44c0ec07-b64e-428f-9254-5217e8041416 stroke:#2c3143,stroke-width:4px;\n 18[\"Scanpy PlotEmbed\"];\n 16 -->|output_h5ad| 18;\n 0b30f573-8ebd-4582-9bcd-58ba5c778658[\"Output\\nn-neighbors_plots\"];\n 18 --> 0b30f573-8ebd-4582-9bcd-58ba5c778658;\n style 0b30f573-8ebd-4582-9bcd-58ba5c778658 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Scanpy Parameter Iterator workflow full (imported from URL)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "errors": null, + "id": 6, + "input_connections": { + "input_obj_file": { + "id": 0, + "output_name": "output" + }, + "settings|n_neighbors_file": { + "id": 1, + "output_name": "parameter_iteration" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy ComputeGraph", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 311.6945808886878, + "top": 0.08716619391159292 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Scanpy ComputeGraph on collection X: Graph object AnnData (n-neighbours)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "6417cccad133", + "name": "scanpy_compute_graph", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"n_neighbors_file|__identifier__\": \"n-neighbors_10\", \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"key_added\": \"\", \"n_neighbors\": \"15\", \"n_neighbors_file\": {\"__class__\": \"ConnectedValue\"}, \"use_rep\": \"X_pca\", \"n_pcs\": \"20\", \"knn\": true, \"method\": \"umap\", \"metric\": \"euclidean\", \"random_seed\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "d8928b9b-012d-469c-8916-7a42b88b8bd6", + "when": null, + "workflow_outputs": [ + { + "label": "Scanpy ComputeGraph on collection X: Graph object AnnData (n-neighbours)", + "output_name": "output_h5ad", + "uuid": "1e60c7cd-7e02-450f-a403-f3df1e548757" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "errors": null, + "id": 7, + "input_connections": { + "input_obj_file": { + "id": 2, + "output_name": "output" + }, + "settings|perplexity_file": { + "id": 3, + "output_name": "parameter_iteration" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RunTSNE", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_embed", + "type": "tabular" + } + ], + "position": { + "left": 284.8446053027503, + "top": 367.1121982373686 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Scanpy RunTSNE on collection X: tSNE object AnnData (perplexity)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "181d61d2f3cd", + "name": "scanpy_run_tsne", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"embeddings\": true, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"perplexity_file|__identifier__\": \"perplexity_15.0\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"key_added\": null, \"perplexity\": \"30.0\", \"perplexity_file\": {\"__class__\": \"ConnectedValue\"}, \"early_exaggeration\": \"12.0\", \"learning_rate\": \"1000.0\", \"fast_tsne\": false, \"n_job\": null, \"n_pc\": null, \"random_seed\": \"0\"}, \"use_rep\": \"X_pca\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "90f289f5-8589-4094-a415-72105bd42346", + "when": null, + "workflow_outputs": [ + { + "label": "Scanpy RunTSNE on collection X: tSNE object AnnData (perplexity)", + "output_name": "output_h5ad", + "uuid": "15143fea-5e2b-4b25-b5d1-0726da910f67" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "errors": null, + "id": 8, + "input_connections": { + "input_obj_file": { + "id": 4, + "output_name": "output" + }, + "settings|resolution_file": { + "id": 5, + "output_name": "parameter_iteration" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FindCluster", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_txt", + "type": "tsv" + } + ], + "position": { + "left": 299.9946351604703, + "top": 682.3122048475996 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Scanpy FindCluster on collection X: Clusters AnnData (resolution)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "2ccd9f9e2cd0", + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"method\": \"louvain\", \"output_cluster\": true, \"output_format\": \"anndata_h5ad\", \"resolution_file|__identifier__\": \"resolution_0.2\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"neighbors_key\": \"neighbors\", \"layer\": \"\", \"key_added\": null, \"resolution\": \"1.0\", \"resolution_file\": {\"__class__\": \"ConnectedValue\"}, \"restrict_to\": null, \"use_weights\": false, \"random_seed\": \"0\", \"directed\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "0854fbcc-e57c-421c-8320-3eb5d1fdba1e", + "when": null, + "workflow_outputs": [ + { + "label": "Scanpy FindCluster on collection X: Clusters AnnData (resolution)", + "output_name": "output_h5ad", + "uuid": "6fdddfe7-c4da-4421-86a0-9819ce4c769c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "errors": null, + "id": 9, + "input_connections": { + "input_obj_file": { + "id": 6, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RunTSNE", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_embed", + "type": "tabular" + } + ], + "position": { + "left": 583.120210023914, + "top": 5.5371860303373746 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Scanpy RunTSNE on collection X: tSNE object AnnData (n-neighbours)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "181d61d2f3cd", + "name": "scanpy_run_tsne", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"embeddings\": true, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"n-neighbors_10\", \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"key_added\": null, \"perplexity\": \"30.0\", \"perplexity_file\": null, \"early_exaggeration\": \"12.0\", \"learning_rate\": \"1000.0\", \"fast_tsne\": false, \"n_job\": null, \"n_pc\": null, \"random_seed\": \"0\"}, \"use_rep\": \"X_pca\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "727487bc-89e8-478c-81f7-3b3a2db1d2d7", + "when": null, + "workflow_outputs": [ + { + "label": "Scanpy RunTSNE on collection X: tSNE object AnnData (n-neighbours)", + "output_name": "output_h5ad", + "uuid": "7c988247-b167-4733-859f-fcd582f91959" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9", + "errors": null, + "id": 10, + "input_connections": { + "input_obj_file": { + "id": 7, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RunUMAP", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_embed", + "type": "tabular" + } + ], + "position": { + "left": 580.3870931396372, + "top": 371.3332390321145 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Scanpy RunUMAP on collection X: UMAP object AnnData (perplexity)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "bd4a244faeb8", + "name": "scanpy_run_umap", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"embeddings\": true, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"perplexity_15.0\", \"key_added\": null, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": true, \"__current_case__\": 0}, \"use_graph\": \"neighbors\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "2b98c2ef-aea6-4581-9155-e780f4d5c5eb", + "when": null, + "workflow_outputs": [ + { + "label": "Scanpy RunUMAP on collection X: UMAP object AnnData (perplexity)", + "output_name": "output_h5ad", + "uuid": "1f5abfa2-845c-4763-9f87-e4b167aa7bc8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 11, + "input_connections": { + "input_obj_file": { + "id": 8, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 610.8375710947927, + "top": 629.3556101888285 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"basis\": \"pca\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"color_by\": \"louvain\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": null, \"gene_symbols_field\": null, \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"resolution_0.2\", \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "6dc51709-4987-4944-99d4-386cc9233d1b", + "when": null, + "workflow_outputs": [ + { + "label": "resolution_pca_plots", + "output_name": "output_png", + "uuid": "99185d1e-047f-47f2-9081-07506e1c17df" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 12, + "input_connections": { + "input_obj_file": { + "id": 8, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 601.9354642911717, + "top": 807.4162217137739 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"basis\": \"umap\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"color_by\": \"louvain\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": null, \"gene_symbols_field\": null, \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"resolution_0.2\", \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "4098f10f-19d7-4745-aeb5-2d5ceb436fb1", + "when": null, + "workflow_outputs": [ + { + "label": "resolution_umap_plots", + "output_name": "output_png", + "uuid": "65d7b619-8659-4008-9e56-db21fda6ce8c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 13, + "input_connections": { + "input_obj_file": { + "id": 8, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 593.5750000507026, + "top": 977.1437760474608 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"basis\": \"tsne\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"color_by\": \"louvain\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": null, \"gene_symbols_field\": null, \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"resolution_0.2\", \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "b1d539e5-05cf-4359-87c9-19b2d22dcdb7", + "when": null, + "workflow_outputs": [ + { + "label": "resolution_tsne_plots", + "output_name": "output_png", + "uuid": "bdcaf837-5fc4-4024-a87a-eabfa0110127" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9", + "errors": null, + "id": 14, + "input_connections": { + "input_obj_file": { + "id": 9, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RunUMAP", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_embed", + "type": "tabular" + } + ], + "position": { + "left": 843.1624694773969, + "top": 18.380633385427693 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Scanpy RunUMAP on collection X: UMAP object AnnData (n-neighbours)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "bd4a244faeb8", + "name": "scanpy_run_umap", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"embeddings\": true, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"n-neighbors_10\", \"key_added\": null, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": true, \"__current_case__\": 0}, \"use_graph\": \"neighbors\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "e61b46a4-847c-45d6-90e3-b1547fa95634", + "when": null, + "workflow_outputs": [ + { + "label": "Scanpy RunUMAP on collection X: UMAP object AnnData (n-neighbours)", + "output_name": "output_h5ad", + "uuid": "8a0b3d69-e7df-4977-b8eb-ec478b914a26" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "errors": null, + "id": 15, + "input_connections": { + "input_obj_file": { + "id": 10, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FindCluster", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_txt", + "type": "tsv" + } + ], + "position": { + "left": 860.8525296481835, + "top": 354.84265238442265 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Scanpy FindCluster on collection X: Clusters AnnData (perplexity)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "2ccd9f9e2cd0", + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"perplexity_15.0\", \"method\": \"louvain\", \"output_cluster\": true, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"neighbors_key\": \"neighbors\", \"layer\": \"\", \"key_added\": null, \"resolution\": \"0.6\", \"resolution_file\": null, \"restrict_to\": null, \"use_weights\": false, \"random_seed\": \"0\", \"directed\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "2ec67307-cf3a-45a7-b973-d0dd915ec5b5", + "when": null, + "workflow_outputs": [ + { + "label": "Scanpy FindCluster on collection X: Clusters AnnData (perplexity)", + "output_name": "output_h5ad", + "uuid": "c2e0d48f-9f0e-4452-8fb5-e78420578c65" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "errors": null, + "id": 16, + "input_connections": { + "input_obj_file": { + "id": 14, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FindCluster", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_txt", + "type": "tsv" + } + ], + "position": { + "left": 1110.1696213010753, + "top": 27.962176176922693 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Scanpy FindCluster on collection X: Clusters AnnData (n-neighbours)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "2ccd9f9e2cd0", + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"n-neighbors_10\", \"method\": \"louvain\", \"output_cluster\": true, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"neighbors_key\": \"neighbors\", \"layer\": \"\", \"key_added\": null, \"resolution\": \"0.6\", \"resolution_file\": null, \"restrict_to\": null, \"use_weights\": false, \"random_seed\": \"0\", \"directed\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "a427d6bd-a860-4ff1-a614-3c48baa04737", + "when": null, + "workflow_outputs": [ + { + "label": "Scanpy FindCluster on collection X: Clusters AnnData (n-neighbours)", + "output_name": "output_h5ad", + "uuid": "c952b32e-99d5-4b94-a6d7-be59439c4dca" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 17, + "input_connections": { + "input_obj_file": { + "id": 15, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 1122.427370848608, + "top": 356.74062604698014 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"basis\": \"tsne\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"color_by\": \"louvain\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": null, \"gene_symbols_field\": null, \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"perplexity_15.0\", \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "900f5cef-ad85-4b7d-b4c3-1c3a86c64e29", + "when": null, + "workflow_outputs": [ + { + "label": "perplexity_plots", + "output_name": "output_png", + "uuid": "44c0ec07-b64e-428f-9254-5217e8041416" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 18, + "input_connections": { + "input_obj_file": { + "id": 16, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 1378.4911495849283, + "top": 64.43740029026476 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"basis\": \"umap\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"color_by\": \"louvain\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": null, \"gene_symbols_field\": null, \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"input_obj_file|__identifier__\": \"n-neighbors_10\", \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "b2682b86-da4c-427e-b793-24faa66f5c8f", + "when": null, + "workflow_outputs": [ + { + "label": "n-neighbors_plots", + "output_name": "output_png", + "uuid": "0b30f573-8ebd-4582-9bcd-58ba5c778658" + } + ] + } + ], + "parent_id": "single-cell/scanpy_parameter_iterator", + "path": "topics/single-cell/tutorials/scanpy_parameter_iterator/workflows/Scanpy-Parameter-Iterator-workflow-full.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Scanpy Parameter Iterator workflow full (imported from URL)", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scanpy_parameter_iterator/versions/scanpy-parameter-iterator-workflow-full", + "tutorial_id": "scanpy_parameter_iterator", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scanpy_parameter_iterator/workflows/Scanpy-Parameter-Iterator-workflow-full.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scanpy_parameter_iterator/workflows/Scanpy-Parameter-Iterator-workflow-full.html", + "version": 1, + "wfid": "single-cell-scanpy_parameter_iterator", + "wfname": "scanpy-parameter-iterator-workflow-full", + "workflow": "Scanpy-Parameter-Iterator-workflow-full.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_parameter_iterator/scanpy_parameter_iterator/0.0.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9" + ], + "workflowhub_id": "1243" + } + ], + "zenodo_link": "https://zenodo.org/record/8011681" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_ops", + "owner": "ebi-gxa", + "revisions": "890fb06a2893", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_ops", + "owner": "ebi-gxa", + "revisions": "825dfd66e3fb", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "revisions": "e9283529cba1", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "unzip", + "owner": "imgteam", + "revisions": "57f0914ddb7b", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_import", + "owner": "iuc", + "revisions": "fb9e030ffae4", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "ee98d611afc6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "3d748954434b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_ops\n owner: ebi-gxa\n revisions: 890fb06a2893\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_ops\n owner: ebi-gxa\n revisions: 825dfd66e3fb\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter_cells\n owner: ebi-gxa\n revisions: e9283529cba1\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: unzip\n owner: imgteam\n revisions: 57f0914ddb7b\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_import\n owner: iuc\n revisions: fb9e030ffae4\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: ee98d611afc6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: 3d748954434b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-ncbi-anndata/tutorial.json", + "contributions": { + "authorship": [ + "hexhowells" + ], + "editing": [ + "nomadscientist", + "pavanvidem", + "mtekman", + "hexylena" + ], + "funding": [ + "elixir-fair-data" + ], + "testing": [ + "pavanvidem" + ] + }, + "contributors": [ + { + "email": "hexhowells@gmail.com", + "id": "hexhowells", + "joined": "2023-06", + "name": "Morgan Howells", + "orcid": "0009-0008-9422-6380", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexhowells/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexhowells.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "funder": true, + "funding_id": "MR/V038966/1", + "funding_statement": "This work has been funded by the ELIXIR-UK FAIR Data Stewardship training UKRI award (MR/V038966/1)", + "funding_system": "ukri", + "github": false, + "id": "elixir-fair-data", + "joined": "2023-06", + "name": "ELIXIR-UK: FAIR Data Stewardship training", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-fair-data/", + "short_name": "ELIXIR Fair Data", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-fair-data.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-ncbi-anndata", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "type": "internal" + } + ], + "hands_on": true, + "id": "single-cell/scrna-ncbi-anndata", + "inexact_supported_servers": [ + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Single cell data often requires additional processing and conversion before it is able to be analysed.", + "Metadata and annotations can be added in both manually and automatically with various tools and resources." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-04-10", + "objectives": [ + "Analyse gene data from NCBI.", + "Convert raw gene expression data into the AnnData format.", + "Add metadata to the AnnData object to prepare it for analysis." + ], + "pageviews": 183, + "priority": 3, + "pub_date": "2023-12-13", + "questions": [ + "How do I understand NCBI data?", + "How can I convert raw gene data to the AnnData format?", + "How do I manually and automatically add metadata to my AnnData object?" + ], + "short_id": "T00380", + "short_tools": [ + "anndata_ops", + "anndata_manipulate", + "anndata_inspect", + "scanpy_filter_cells", + "Paste1", + "Cut1", + "unzip", + "anndata_import", + "tp_replace_in_column" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "datamanipulation", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "data management", + "data import" + ], + "time_estimation": "1H", + "title": "Converting NCBI Data to the AnnData Format", + "tools": [ + "Cut1", + "Paste1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/imgteam/unzip/unzip/6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-ncbi-anndata", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-ncbi-anndata/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-ncbi-anndata/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-ncbi-anndata/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 87, + "visitors": 151, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0009-0008-9422-6380", + "name": "Morgan Howells" + }, + { + "class": "Person", + "identifier": "0000-0002-5192-126X", + "name": "Pavankumar Videm" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353219_PA_PB1B_Pool_2_S24_L001_dge.txt\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353223_PA_PB2B_Pool_2_S26_L001_dge.txt\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353218_PA_PB1B_Pool_1_2_S74_L003_dge.txt\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353216_PA_PB1A_Pool_1_3_S50_L002_dge.txt\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353221_PA_PB2A_Pool_1_3_S25_L001_dge.txt\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353215_PA_AUG_PB_1B_S2_dge.txt\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353222_PA_PB2B_Pool_1_3_S52_L002_dge.txt\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353220_PA_PB1B_Pool_3_S51_L002_dge.txt\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353217_PA_PB1A_Pool_2_S107_L004_dge.txt\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSM5353214_PA_AUG_PB_1A_S1_dge.txt\"]\n 10[label=\"Import Anndata and loom\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"Import Anndata and loom\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Import Anndata and loom\"]\n 2 -> 12 [label=\"output\"]\n 13[label=\"Import Anndata and loom\"]\n 3 -> 13 [label=\"output\"]\n 14[label=\"Import Anndata and loom\"]\n 4 -> 14 [label=\"output\"]\n 15[label=\"Import Anndata and loom\"]\n 5 -> 15 [label=\"output\"]\n 16[label=\"Import Anndata and loom\"]\n 6 -> 16 [label=\"output\"]\n 17[label=\"Import Anndata and loom\"]\n 7 -> 17 [label=\"output\"]\n 18[label=\"Import Anndata and loom\"]\n 8 -> 18 [label=\"output\"]\n 19[label=\"Import Anndata and loom\"]\n 9 -> 19 [label=\"output\"]\n 20[label=\"Manipulate AnnData\"]\n 10 -> 20 [label=\"anndata\"]\n 21[label=\"Manipulate AnnData\"]\n 11 -> 21 [label=\"anndata\"]\n 22[label=\"Manipulate AnnData\"]\n 12 -> 22 [label=\"anndata\"]\n 23[label=\"Manipulate AnnData\"]\n 13 -> 23 [label=\"anndata\"]\n 24[label=\"Manipulate AnnData\"]\n 14 -> 24 [label=\"anndata\"]\n 25[label=\"Manipulate AnnData\"]\n 15 -> 25 [label=\"anndata\"]\n 26[label=\"Manipulate AnnData\"]\n 16 -> 26 [label=\"anndata\"]\n 27[label=\"Manipulate AnnData\"]\n 17 -> 27 [label=\"anndata\"]\n 28[label=\"Manipulate AnnData\"]\n 18 -> 28 [label=\"anndata\"]\n 29[label=\"Manipulate AnnData\"]\n 19 -> 29 [label=\"anndata\"]\n 30[label=\"Manipulate AnnData\"]\n 29 -> 30 [label=\"anndata\"]\n 23 -> 30 [label=\"anndata\"]\n 24 -> 30 [label=\"anndata\"]\n 21 -> 30 [label=\"anndata\"]\n 25 -> 30 [label=\"anndata\"]\n 22 -> 30 [label=\"anndata\"]\n 27 -> 30 [label=\"anndata\"]\n 28 -> 30 [label=\"anndata\"]\n 26 -> 30 [label=\"anndata\"]\n 20 -> 30 [label=\"anndata\"]\n 31[label=\"Inspect AnnData\"]\n 30 -> 31 [label=\"anndata\"]\n 32[label=\"Replace Text\"]\n 31 -> 32 [label=\"obs\"]\n 33[label=\"Replace Text\"]\n 31 -> 33 [label=\"obs\"]\n 34[label=\"Replace Text\"]\n 31 -> 34 [label=\"obs\"]\n 35[label=\"Replace Text\"]\n 31 -> 35 [label=\"obs\"]\n 36[label=\"Cut\"]\n 32 -> 36 [label=\"outfile\"]\n 37[label=\"Cut\"]\n 33 -> 37 [label=\"outfile\"]\n 38[label=\"Cut\"]\n 34 -> 38 [label=\"outfile\"]\n 39[label=\"Cut\"]\n 35 -> 39 [label=\"outfile\"]\n 40[label=\"Paste\"]\n 37 -> 40 [label=\"out_file1\"]\n 36 -> 40 [label=\"out_file1\"]\n 41[label=\"Paste\"]\n 40 -> 41 [label=\"out_file1\"]\n 38 -> 41 [label=\"out_file1\"]\n 42[label=\"Paste\"]\n 41 -> 42 [label=\"out_file1\"]\n 39 -> 42 [label=\"out_file1\"]\n 43[label=\"Manipulate AnnData\"]\n 30 -> 43 [label=\"anndata\"]\n 42 -> 43 [label=\"out_file1\"]\n 44[label=\"Scanpy FilterCells\"]\n 43 -> 44 [label=\"anndata\"]\n 45[label=\"AnnData Operations\"]\n 44 -> 45 [label=\"output_h5ad\"]\n k98fdc0798b714841a9aaa3adda888616[color=lightseagreen,label=\"Output\\noutput_h5ad\"]\n 45 -> k98fdc0798b714841a9aaa3adda888616\n 46[label=\"Inspect AnnData\"]\n 45 -> 46 [label=\"output_h5ad\"]\n ke4df84253c1e439cabe542b705eed1b3[color=lightseagreen,label=\"Output\\nobs\"]\n 46 -> ke4df84253c1e439cabe542b705eed1b3\n}", + "history": [ + { + "hash": "5503254f3b981f79a46ba83ca14a882d772380e4", + "message": "Update to a working worflow and change test files type to tabular", + "num": 2, + "short_hash": "5503254f3", + "unix": "1702491243" + }, + { + "hash": "cd3728b55641562a98d26242ac7862218c25aa09", + "message": "add workflow", + "num": 1, + "short_hash": "cd3728b55", + "unix": "1702408106" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353219_PA_PB1B_Pool_2_S24_L001_dge.txt" + } + ], + "label": "GSM5353219_PA_PB1B_Pool_2_S24_L001_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 6 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "fc2d53ef-3b4c-437b-bec7-e7b84f8f6c54", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353223_PA_PB2B_Pool_2_S26_L001_dge.txt" + } + ], + "label": "GSM5353223_PA_PB2B_Pool_2_S26_L001_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 160 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7e556424-a80d-4114-be2e-7c9ced71f048", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353218_PA_PB1B_Pool_1_2_S74_L003_dge.txt" + } + ], + "label": "GSM5353218_PA_PB1B_Pool_1_2_S74_L003_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 314 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ea1f8502-ed3c-45ac-bf09-36a1771dec28", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353216_PA_PB1A_Pool_1_3_S50_L002_dge.txt" + } + ], + "label": "GSM5353216_PA_PB1A_Pool_1_3_S50_L002_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 468 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "473c66ce-eb30-483e-bf74-a04f0b452f67", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353221_PA_PB2A_Pool_1_3_S25_L001_dge.txt" + } + ], + "label": "GSM5353221_PA_PB2A_Pool_1_3_S25_L001_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 622 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "6b5fc504-7162-4cbb-90a4-97b3fc4f792b", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353215_PA_AUG_PB_1B_S2_dge.txt" + } + ], + "label": "GSM5353215_PA_AUG_PB_1B_S2_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 776 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "99d79b05-7b7a-4986-93e6-6957c34afdca", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353222_PA_PB2B_Pool_1_3_S52_L002_dge.txt" + } + ], + "label": "GSM5353222_PA_PB2B_Pool_1_3_S52_L002_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 930 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3f690013-56d0-4046-a64f-42ddd71ceb81", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353220_PA_PB1B_Pool_3_S51_L002_dge.txt" + } + ], + "label": "GSM5353220_PA_PB1B_Pool_3_S51_L002_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 1084 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "9fce1b9d-52e4-40e5-9c3c-32c1d901aeb1", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353217_PA_PB1A_Pool_2_S107_L004_dge.txt" + } + ], + "label": "GSM5353217_PA_PB1A_Pool_2_S107_L004_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 1238 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2222b107-d0bc-4daf-bee0-d8573375ff43", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSM5353214_PA_AUG_PB_1A_S1_dge.txt" + } + ], + "label": "GSM5353214_PA_AUG_PB_1A_S1_dge.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 1392 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7b4a0b40-4a1a-4d89-bb13-6f150be24c9c", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGSM5353219_PA_PB1B_Pool_2_S24_L001_dge.txt\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGSM5353223_PA_PB2B_Pool_2_S26_L001_dge.txt\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nGSM5353218_PA_PB1B_Pool_1_2_S74_L003_dge.txt\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nGSM5353216_PA_PB1A_Pool_1_3_S50_L002_dge.txt\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nGSM5353221_PA_PB2A_Pool_1_3_S25_L001_dge.txt\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nGSM5353215_PA_AUG_PB_1B_S2_dge.txt\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nGSM5353222_PA_PB2B_Pool_1_3_S52_L002_dge.txt\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nGSM5353220_PA_PB1B_Pool_3_S51_L002_dge.txt\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nGSM5353217_PA_PB1A_Pool_2_S107_L004_dge.txt\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Dataset\\nGSM5353214_PA_AUG_PB_1A_S1_dge.txt\"];\n style 9 stroke:#2c3143,stroke-width:4px;\n 10[\"Import Anndata and loom\"];\n 0 -->|output| 10;\n 11[\"Import Anndata and loom\"];\n 1 -->|output| 11;\n 12[\"Import Anndata and loom\"];\n 2 -->|output| 12;\n 13[\"Import Anndata and loom\"];\n 3 -->|output| 13;\n 14[\"Import Anndata and loom\"];\n 4 -->|output| 14;\n 15[\"Import Anndata and loom\"];\n 5 -->|output| 15;\n 16[\"Import Anndata and loom\"];\n 6 -->|output| 16;\n 17[\"Import Anndata and loom\"];\n 7 -->|output| 17;\n 18[\"Import Anndata and loom\"];\n 8 -->|output| 18;\n 19[\"Import Anndata and loom\"];\n 9 -->|output| 19;\n 20[\"Manipulate AnnData\"];\n 10 -->|anndata| 20;\n 21[\"Manipulate AnnData\"];\n 11 -->|anndata| 21;\n 22[\"Manipulate AnnData\"];\n 12 -->|anndata| 22;\n 23[\"Manipulate AnnData\"];\n 13 -->|anndata| 23;\n 24[\"Manipulate AnnData\"];\n 14 -->|anndata| 24;\n 25[\"Manipulate AnnData\"];\n 15 -->|anndata| 25;\n 26[\"Manipulate AnnData\"];\n 16 -->|anndata| 26;\n 27[\"Manipulate AnnData\"];\n 17 -->|anndata| 27;\n 28[\"Manipulate AnnData\"];\n 18 -->|anndata| 28;\n 29[\"Manipulate AnnData\"];\n 19 -->|anndata| 29;\n 30[\"Manipulate AnnData\"];\n 29 -->|anndata| 30;\n 23 -->|anndata| 30;\n 24 -->|anndata| 30;\n 21 -->|anndata| 30;\n 25 -->|anndata| 30;\n 22 -->|anndata| 30;\n 27 -->|anndata| 30;\n 28 -->|anndata| 30;\n 26 -->|anndata| 30;\n 20 -->|anndata| 30;\n 31[\"Inspect AnnData\"];\n 30 -->|anndata| 31;\n 32[\"Replace Text\"];\n 31 -->|obs| 32;\n 33[\"Replace Text\"];\n 31 -->|obs| 33;\n 34[\"Replace Text\"];\n 31 -->|obs| 34;\n 35[\"Replace Text\"];\n 31 -->|obs| 35;\n 36[\"Cut\"];\n 32 -->|outfile| 36;\n 37[\"Cut\"];\n 33 -->|outfile| 37;\n 38[\"Cut\"];\n 34 -->|outfile| 38;\n 39[\"Cut\"];\n 35 -->|outfile| 39;\n 40[\"Paste\"];\n 37 -->|out_file1| 40;\n 36 -->|out_file1| 40;\n 41[\"Paste\"];\n 40 -->|out_file1| 41;\n 38 -->|out_file1| 41;\n 42[\"Paste\"];\n 41 -->|out_file1| 42;\n 39 -->|out_file1| 42;\n 43[\"Manipulate AnnData\"];\n 30 -->|anndata| 43;\n 42 -->|out_file1| 43;\n 44[\"Scanpy FilterCells\"];\n 43 -->|anndata| 44;\n 45[\"AnnData Operations\"];\n 44 -->|output_h5ad| 45;\n 98fdc079-8b71-4841-a9aa-a3adda888616[\"Output\\noutput_h5ad\"];\n 45 --> 98fdc079-8b71-4841-a9aa-a3adda888616;\n style 98fdc079-8b71-4841-a9aa-a3adda888616 stroke:#2c3143,stroke-width:4px;\n 46[\"Inspect AnnData\"];\n 45 -->|output_h5ad| 46;\n e4df8425-3c1e-439c-abe5-42b705eed1b3[\"Output\\nobs\"];\n 46 --> e4df8425-3c1e-439c-abe5-42b705eed1b3;\n style e4df8425-3c1e-439c-abe5-42b705eed1b3 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "NCBI to Anndata", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "errors": null, + "id": 45, + "input_connections": { + "input_obj_file": { + "id": 44, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "AnnData Operations", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 3369.999842902977, + "top": 610 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "890fb06a2893", + "name": "anndata_ops", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"copy_adata_to_raw\": false, \"copy_e\": {\"default\": false, \"__current_case__\": 1}, \"copy_l\": {\"default\": false, \"__current_case__\": 1}, \"copy_o\": {\"default\": false, \"__current_case__\": 1}, \"copy_r\": {\"default\": false, \"__current_case__\": 1}, \"copy_u\": {\"default\": false, \"__current_case__\": 1}, \"copy_x\": {\"default\": false, \"__current_case__\": 1}, \"gene_flags\": [{\"__index__\": 0, \"startswith\": \"MT-\", \"flag\": \"mito\"}], \"gene_symbols_field\": \"index\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"modifications\": [], \"output_format\": \"anndata_h5ad\", \"sanitize_varm\": false, \"top_genes\": \"50\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "c53d106a-f45b-477d-ab64-ad266c248411", + "when": null, + "workflow_outputs": [ + { + "label": "output_h5ad", + "output_name": "output_h5ad", + "uuid": "98fdc079-8b71-4841-a9aa-a3adda888616" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 46, + "input_connections": { + "input": { + "id": 45, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "obs", + "type": "tabular" + } + ], + "position": { + "left": 3649.9996418187607, + "top": 642 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"obs\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "60a81f95-32e1-47a7-8a95-07586eb9ed6a", + "when": null, + "workflow_outputs": [ + { + "label": "obs", + "output_name": "obs", + "uuid": "e4df8425-3c1e-439c-abe5-42b705eed1b3" + } + ] + } + ], + "parent_id": "single-cell/scrna-ncbi-anndata", + "path": "topics/single-cell/tutorials/scrna-ncbi-anndata/workflows/NCBI_to_Anndata.ga", + "tags": [ + "name:single-cell", + "name:data-management" + ], + "test_results": null, + "tests": true, + "title": "NCBI to Anndata", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-ncbi-anndata/versions/ncbi-to-anndata", + "tutorial_id": "scrna-ncbi-anndata", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-ncbi-anndata/workflows/NCBI_to_Anndata.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-ncbi-anndata/workflows/NCBI_to_Anndata.html", + "version": 1, + "wfid": "single-cell-scrna-ncbi-anndata", + "wfname": "ncbi-to-anndata", + "workflow": "NCBI_to_Anndata.ga", + "workflow_tools": [ + "Cut1", + "Paste1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_column/1.1.3", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1" + ], + "workflowhub_id": "1272" + } + ], + "zenodo_link": "https://zenodo.org/record/10101768" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "anndata_ops", + "owner": "ebi-gxa", + "revisions": "890fb06a2893", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_ops", + "owner": "ebi-gxa", + "revisions": "7ebc22f77d86", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_compute_graph", + "owner": "ebi-gxa", + "revisions": "bc9e8de21efb", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_compute_graph", + "owner": "ebi-gxa", + "revisions": "6417cccad133", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "revisions": "55ccc0a121bc", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "revisions": "e9283529cba1", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter_genes", + "owner": "ebi-gxa", + "revisions": "da611a744112", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter_genes", + "owner": "ebi-gxa", + "revisions": "474a69c47184", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "revisions": "ad6995afd2e6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "revisions": "2ccd9f9e2cd0", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_find_markers", + "owner": "ebi-gxa", + "revisions": "49653e680ea4", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_find_markers", + "owner": "ebi-gxa", + "revisions": "81c34e67f262", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_find_variable_genes", + "owner": "ebi-gxa", + "revisions": "4667fe07bd68", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_find_variable_genes", + "owner": "ebi-gxa", + "revisions": "2861ca3bfe4d", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_normalise_data", + "owner": "ebi-gxa", + "revisions": "8d9c22419c56", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_normalise_data", + "owner": "ebi-gxa", + "revisions": "6b97ffba31da", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "revisions": "56d22aa6cb3b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "revisions": "35f6611fb8c3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_pca", + "owner": "ebi-gxa", + "revisions": "3ee74b58c72d", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_pca", + "owner": "ebi-gxa", + "revisions": "59028945c857", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_tsne", + "owner": "ebi-gxa", + "revisions": "8b0d6f6f44c8", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_tsne", + "owner": "ebi-gxa", + "revisions": "181d61d2f3cd", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_umap", + "owner": "ebi-gxa", + "revisions": "fe562424a0a6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_umap", + "owner": "ebi-gxa", + "revisions": "bd4a244faeb8", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_scale_data", + "owner": "ebi-gxa", + "revisions": "5605f8452eb3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_scale_data", + "owner": "ebi-gxa", + "revisions": "f86b2c3bc459", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "ee98d611afc6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "3d748954434b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot", + "owner": "iuc", + "revisions": "aa0c474463c2", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: anndata_ops\n owner: ebi-gxa\n revisions: 890fb06a2893\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_ops\n owner: ebi-gxa\n revisions: 7ebc22f77d86\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_compute_graph\n owner: ebi-gxa\n revisions: bc9e8de21efb\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_compute_graph\n owner: ebi-gxa\n revisions: 6417cccad133\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter_cells\n owner: ebi-gxa\n revisions: 55ccc0a121bc\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter_cells\n owner: ebi-gxa\n revisions: e9283529cba1\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter_genes\n owner: ebi-gxa\n revisions: da611a744112\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter_genes\n owner: ebi-gxa\n revisions: 474a69c47184\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_find_cluster\n owner: ebi-gxa\n revisions: ad6995afd2e6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_find_cluster\n owner: ebi-gxa\n revisions: 2ccd9f9e2cd0\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_find_markers\n owner: ebi-gxa\n revisions: 49653e680ea4\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_find_markers\n owner: ebi-gxa\n revisions: 81c34e67f262\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_find_variable_genes\n owner: ebi-gxa\n revisions: 4667fe07bd68\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_find_variable_genes\n owner: ebi-gxa\n revisions: 2861ca3bfe4d\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_normalise_data\n owner: ebi-gxa\n revisions: 8d9c22419c56\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_normalise_data\n owner: ebi-gxa\n revisions: 6b97ffba31da\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot_embed\n owner: ebi-gxa\n revisions: 56d22aa6cb3b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot_embed\n owner: ebi-gxa\n revisions: 35f6611fb8c3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_pca\n owner: ebi-gxa\n revisions: 3ee74b58c72d\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_pca\n owner: ebi-gxa\n revisions: 59028945c857\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_tsne\n owner: ebi-gxa\n revisions: 8b0d6f6f44c8\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_tsne\n owner: ebi-gxa\n revisions: 181d61d2f3cd\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_umap\n owner: ebi-gxa\n revisions: fe562424a0a6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_umap\n owner: ebi-gxa\n revisions: bd4a244faeb8\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_scale_data\n owner: ebi-gxa\n revisions: 5605f8452eb3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_scale_data\n owner: ebi-gxa\n revisions: f86b2c3bc459\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: ee98d611afc6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: 3d748954434b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot\n owner: iuc\n revisions: aa0c474463c2\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "answer_histories": [ + { + "date": "2023-10-10", + "history": "https://usegalaxy.eu/u/j.jakiela/h/filter-plot-and-explore-single-cell-rna-seq-data-updated", + "label": "UseGalaxy.eu" + }, + { + "date": "2024-02-28", + "history": "https://usegalaxy.eu/u/wendi.bacon.training/h/cs3filter-plot-and-explore-single-cell-rna-seq-data---answer-key-2", + "label": "Older version" + } + ], + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_basic-pipeline/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist" + ], + "editing": [ + "hexylena", + "wee-snufkin" + ], + "testing": [ + "wee-snufkin" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_basic-pipeline", + "edam_operation": [ + "Differential gene expression analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_JUPYTER-trajectories", + "scrna-case_monocle3-trajectories" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "single-cell/scrna-case_basic-pipeline", + "inexact_supported_servers": [ + "UseGalaxy.org.au" + ], + "input_histories": [ + { + "history": "https://usegalaxy.eu/u/j.jakiela/h/filter-plot-explore-tutorial-input", + "label": "UseGalaxy.eu" + } + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Single cell data is huge, and must have its many (# genes) dimensions reduced for analysis", + "Analysis is more subjective than we think, and biological understanding of the samples as well as many iterations of analysis are important to give us our best change of attaining real biological insights" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Interpret quality control plots to direct parameter decisions", + "Repeat analysis from matrix to clustering", + "Identify decision-making points", + "Appraise data outputs and decisions", + "Explain why single cell analysis is an iterative (i.e. the first plots you generate are not final, but rather you go back and re-analyse your data repeatedly) process" + ], + "pageviews": 5840, + "priority": 3, + "pub_date": "2021-03-24", + "questions": [ + "Is my single cell dataset a quality dataset?", + "How do I generate and annotate cell clusters?", + "How do I pick thresholds and parameters in my analysis? What's a \"reasonable\" number, and will the world collapse if I pick the wrong one?" + ], + "recordings": [ + { + "captioners": [ + "nomadscientist" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "nomadscientist" + ], + "youtube_id": "M6iepSJh0EQ" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-seq-basic-pipeline/tutorial", + "/topics/transcriptomics/tutorials/scrna-case_basic-pipeline/tutorial", + "/short/single-cell/scrna-case_basic-pipeline", + "/short/T00247" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets" + ], + "type": "internal" + } + ], + "short_id": "T00247", + "short_tools": [ + "scanpy_normalise_data", + "scanpy_filter_cells", + "Cut1", + "scanpy_run_umap", + "scanpy_find_markers", + "scanpy_run_pca", + "anndata_manipulate", + "anndata_ops", + "scanpy_find_cluster", + "scanpy_filter_genes", + "join1", + "scanpy_scale_data", + "scanpy_plot_embed", + "anndata_inspect", + "scanpy_plot", + "interactive_tool_cellxgene", + "scanpy_find_variable_genes", + "scanpy_run_tsne", + "scanpy_compute_graph" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication" + ], + "time_estimation": "3H", + "title": "Filter, plot and explore single-cell RNA-seq data with Scanpy", + "tools": [ + "Cut1", + "interactive_tool_cellxgene", + "join1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy91", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_genes/scanpy_filter_genes/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_genes/scanpy_filter_genes/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_variable_genes/scanpy_find_variable_genes/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_variable_genes/scanpy_find_variable_genes/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_normalise_data/scanpy_normalise_data/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_normalise_data/scanpy_normalise_data/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_pca/scanpy_run_pca/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_pca/scanpy_run_pca/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_scale_data/scanpy_scale_data/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_scale_data/scanpy_scale_data/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_basic-pipeline", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_basic-pipeline/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_basic-pipeline/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_basic-pipeline/tutorial.json" + }, + "version": 18, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 144, + "visitors": 3733, + "workflows": [ + { + "creators": [], + "description": "Updated tool versions Aug 24 2022", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMito-counted AnnData\"]\n 1[label=\"Inspect AnnData\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Scanpy FilterCells\"]\n 0 -> 2 [label=\"output\"]\n k08175d7ff4f4413cad86f59587ff692e[color=lightseagreen,label=\"Output\\nGenes-filtered Object\"]\n 2 -> k08175d7ff4f4413cad86f59587ff692e\n 3[label=\"Plot\"]\n 0 -> 3 [label=\"output\"]\n kbfc499ee630a498b9be6696d9bb78837[color=lightseagreen,label=\"Output\\nScatter - genes x UMIs\"]\n 3 -> kbfc499ee630a498b9be6696d9bb78837\n 4[label=\"Plot\"]\n 0 -> 4 [label=\"output\"]\n kf2c78ef37d314930954c0133cce27a41[color=lightseagreen,label=\"Output\\nScatter - mito x genes\"]\n 4 -> kf2c78ef37d314930954c0133cce27a41\n 5[label=\"Plot\"]\n 0 -> 5 [label=\"output\"]\n k348818e69def41fda3906f8525c57cd8[color=lightseagreen,label=\"Output\\nViolin - genotype - log\"]\n 5 -> k348818e69def41fda3906f8525c57cd8\n 6[label=\"Plot\"]\n 0 -> 6 [label=\"output\"]\n k844f5e7c78c84f288e15cea35ada8fef[color=lightseagreen,label=\"Output\\nViolin - batch - log\"]\n 6 -> k844f5e7c78c84f288e15cea35ada8fef\n 7[label=\"Inspect AnnData\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Plot\"]\n 0 -> 8 [label=\"output\"]\n k3b1232c5d16a434d806e79fd77f7c05f[color=lightseagreen,label=\"Output\\nScatter - mito x UMIs\"]\n 8 -> k3b1232c5d16a434d806e79fd77f7c05f\n 9[label=\"Inspect AnnData\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Plot\"]\n 0 -> 10 [label=\"output\"]\n ka639cdc0da404df9834823117528b24a[color=lightseagreen,label=\"Output\\nViolin - sex - log\"]\n 10 -> ka639cdc0da404df9834823117528b24a\n 11[label=\"Plot\"]\n 2 -> 11 [label=\"output_h5ad\"]\n k69bf3e4263e24b5b9d635aac9d6b5691[color=lightseagreen,label=\"Output\\nViolin - Filterbygenes\"]\n 11 -> k69bf3e4263e24b5b9d635aac9d6b5691\n 12[label=\"Scanpy FilterCells\"]\n 2 -> 12 [label=\"output_h5ad\"]\n kf378cb4e0a7749d9b92a752dbea4b09a[color=lightseagreen,label=\"Output\\nCounts-filtered Object\"]\n 12 -> kf378cb4e0a7749d9b92a752dbea4b09a\n 13[label=\"Inspect AnnData\"]\n 2 -> 13 [label=\"output_h5ad\"]\n kf9e862dbeb2241248fe00fdcfcfb8393[color=lightseagreen,label=\"Output\\nGeneral - Filterbygenes\"]\n 13 -> kf9e862dbeb2241248fe00fdcfcfb8393\n 14[label=\"Inspect AnnData\"]\n 12 -> 14 [label=\"output_h5ad\"]\n k794f72b5c2c346a0ac15b9f1e94941d2[color=lightseagreen,label=\"Output\\nGeneral - Filterbycounts\"]\n 14 -> k794f72b5c2c346a0ac15b9f1e94941d2\n 15[label=\"Scanpy FilterCells\"]\n 12 -> 15 [label=\"output_h5ad\"]\n kb915da6664354871baa03e494ba73c96[color=lightseagreen,label=\"Output\\nMito-filtered Object\"]\n 15 -> kb915da6664354871baa03e494ba73c96\n 16[label=\"Plot\"]\n 12 -> 16 [label=\"output_h5ad\"]\n k3aef86d7d34d4b24bc97bf8c97d8d2fa[color=lightseagreen,label=\"Output\\nViolin - Filterbycounts\"]\n 16 -> k3aef86d7d34d4b24bc97bf8c97d8d2fa\n 17[label=\"Inspect AnnData\"]\n 15 -> 17 [label=\"output_h5ad\"]\n kcd94a4c656654bdf88ea4f4d41efa893[color=lightseagreen,label=\"Output\\nGeneral - Filterbymito\"]\n 17 -> kcd94a4c656654bdf88ea4f4d41efa893\n 18[label=\"Scanpy FilterGenes\"]\n 15 -> 18 [label=\"output_h5ad\"]\n kee63ef0a98ed45cbb1441154f84ae452[color=lightseagreen,label=\"Output\\nFiltered Object\"]\n 18 -> kee63ef0a98ed45cbb1441154f84ae452\n 19[label=\"Plot\"]\n 15 -> 19 [label=\"output_h5ad\"]\n k7e48a14f08fd45abb613606bf64dcf9d[color=lightseagreen,label=\"Output\\nViolin - Filterbymito\"]\n 19 -> k7e48a14f08fd45abb613606bf64dcf9d\n 20[label=\"Inspect AnnData\"]\n 18 -> 20 [label=\"output_h5ad\"]\n kd59efa9bd0494f0e8bd88ae982a45d0a[color=lightseagreen,label=\"Output\\nGeneral - Filtered object\"]\n 20 -> kd59efa9bd0494f0e8bd88ae982a45d0a\n 21[label=\"Scanpy NormaliseData\"]\n 18 -> 21 [label=\"output_h5ad\"]\n 22[label=\"Scanpy FindVariableGenes\"]\n 21 -> 22 [label=\"output_h5ad\"]\n 23[label=\"Scanpy ScaleData\"]\n 22 -> 23 [label=\"output_h5ad\"]\n 24[label=\"Scanpy RunPCA\"]\n 23 -> 24 [label=\"output_h5ad\"]\n 25[label=\"Plot\"]\n 24 -> 25 [label=\"output_h5ad\"]\n k993dea99990f460abeb946e5c97ee898[color=lightseagreen,label=\"Output\\nPCA Variance\"]\n 25 -> k993dea99990f460abeb946e5c97ee898\n 26[label=\"Scanpy ComputeGraph\"]\n 24 -> 26 [label=\"output_h5ad\"]\n 27[label=\"Scanpy RunTSNE\"]\n 26 -> 27 [label=\"output_h5ad\"]\n 28[label=\"Scanpy RunUMAP\"]\n 27 -> 28 [label=\"output_h5ad\"]\n 29[label=\"Scanpy FindCluster\"]\n 28 -> 29 [label=\"output_h5ad\"]\n 30[label=\"Scanpy FindMarkers\"]\n 29 -> 30 [label=\"output_h5ad\"]\n k308b49614d50442b9bcabbb1992426ba[color=lightseagreen,label=\"Output\\nMarkers - cluster\"]\n 30 -> k308b49614d50442b9bcabbb1992426ba\n k035bbbcefb5748c883d52b0cd0376541[color=lightseagreen,label=\"Output\\nFinal object\"]\n 30 -> k035bbbcefb5748c883d52b0cd0376541\n 31[label=\"Scanpy FindMarkers\"]\n 29 -> 31 [label=\"output_h5ad\"]\n k1705e219192a4f529b2664fcbcd303ea[color=lightseagreen,label=\"Output\\nMarkers - genotype\"]\n 31 -> k1705e219192a4f529b2664fcbcd303ea\n 32[label=\"Scanpy PlotEmbed\"]\n 30 -> 32 [label=\"output_h5ad\"]\n 33[label=\"Scanpy PlotEmbed\"]\n 30 -> 33 [label=\"output_h5ad\"]\n 34[label=\"Manipulate AnnData\"]\n 30 -> 34 [label=\"output_h5ad\"]\n 35[label=\"Scanpy PlotEmbed\"]\n 30 -> 35 [label=\"output_h5ad\"]\n 36[label=\"Inspect AnnData\"]\n 30 -> 36 [label=\"output_h5ad\"]\n 37[label=\"AnnData Operations\"]\n 34 -> 37 [label=\"anndata\"]\n 30 -> 37 [label=\"output_h5ad\"]\n 38[label=\"Join two Datasets\"]\n 30 -> 38 [label=\"output_tsv\"]\n 36 -> 38 [label=\"var\"]\n 39[label=\"Join two Datasets\"]\n 31 -> 39 [label=\"output_tsv\"]\n 36 -> 39 [label=\"var\"]\n 40[label=\"AnnData Operations\"]\n 37 -> 40 [label=\"output_h5ad\"]\n ka6d48df0403f4efca75f9504a960884e[color=lightseagreen,label=\"Output\\nFinal cell annotated object\"]\n 40 -> ka6d48df0403f4efca75f9504a960884e\n 41[label=\"Cut\"]\n 38 -> 41 [label=\"out_file1\"]\n k0ee7f9b6b0654e2693df6e6e2fe458a9[color=lightseagreen,label=\"Output\\nMarkers - cluster - named\"]\n 41 -> k0ee7f9b6b0654e2693df6e6e2fe458a9\n 42[label=\"Cut\"]\n 39 -> 42 [label=\"out_file1\"]\n kfdb88faa9b764edbb89b427c098a473e[color=lightseagreen,label=\"Output\\nMarkers - genotype - named\"]\n 42 -> kfdb88faa9b764edbb89b427c098a473e\n 43[label=\"Scanpy PlotEmbed\"]\n 40 -> 43 [label=\"output_h5ad\"]\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mito-counted AnnData" + } + ], + "label": "Mito-counted AnnData", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 736.1875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "60316d4a-07b0-4eea-a889-eef54798c5e0", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nMito-counted AnnData\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Inspect AnnData\"];\n 0 -->|output| 1;\n 2[\"Scanpy FilterCells\"];\n 0 -->|output| 2;\n 08175d7f-f4f4-413c-ad86-f59587ff692e[\"Output\\nGenes-filtered Object\"];\n 2 --> 08175d7f-f4f4-413c-ad86-f59587ff692e;\n style 08175d7f-f4f4-413c-ad86-f59587ff692e stroke:#2c3143,stroke-width:4px;\n 3[\"Plot\"];\n 0 -->|output| 3;\n bfc499ee-630a-498b-9be6-696d9bb78837[\"Output\\nScatter - genes x UMIs\"];\n 3 --> bfc499ee-630a-498b-9be6-696d9bb78837;\n style bfc499ee-630a-498b-9be6-696d9bb78837 stroke:#2c3143,stroke-width:4px;\n 4[\"Plot\"];\n 0 -->|output| 4;\n f2c78ef3-7d31-4930-954c-0133cce27a41[\"Output\\nScatter - mito x genes\"];\n 4 --> f2c78ef3-7d31-4930-954c-0133cce27a41;\n style f2c78ef3-7d31-4930-954c-0133cce27a41 stroke:#2c3143,stroke-width:4px;\n 5[\"Plot\"];\n 0 -->|output| 5;\n 348818e6-9def-41fd-a390-6f8525c57cd8[\"Output\\nViolin - genotype - log\"];\n 5 --> 348818e6-9def-41fd-a390-6f8525c57cd8;\n style 348818e6-9def-41fd-a390-6f8525c57cd8 stroke:#2c3143,stroke-width:4px;\n 6[\"Plot\"];\n 0 -->|output| 6;\n 844f5e7c-78c8-4f28-8e15-cea35ada8fef[\"Output\\nViolin - batch - log\"];\n 6 --> 844f5e7c-78c8-4f28-8e15-cea35ada8fef;\n style 844f5e7c-78c8-4f28-8e15-cea35ada8fef stroke:#2c3143,stroke-width:4px;\n 7[\"Inspect AnnData\"];\n 0 -->|output| 7;\n 8[\"Plot\"];\n 0 -->|output| 8;\n 3b1232c5-d16a-434d-806e-79fd77f7c05f[\"Output\\nScatter - mito x UMIs\"];\n 8 --> 3b1232c5-d16a-434d-806e-79fd77f7c05f;\n style 3b1232c5-d16a-434d-806e-79fd77f7c05f stroke:#2c3143,stroke-width:4px;\n 9[\"Inspect AnnData\"];\n 0 -->|output| 9;\n 10[\"Plot\"];\n 0 -->|output| 10;\n a639cdc0-da40-4df9-8348-23117528b24a[\"Output\\nViolin - sex - log\"];\n 10 --> a639cdc0-da40-4df9-8348-23117528b24a;\n style a639cdc0-da40-4df9-8348-23117528b24a stroke:#2c3143,stroke-width:4px;\n 11[\"Plot\"];\n 2 -->|output_h5ad| 11;\n 69bf3e42-63e2-4b5b-9d63-5aac9d6b5691[\"Output\\nViolin - Filterbygenes\"];\n 11 --> 69bf3e42-63e2-4b5b-9d63-5aac9d6b5691;\n style 69bf3e42-63e2-4b5b-9d63-5aac9d6b5691 stroke:#2c3143,stroke-width:4px;\n 12[\"Scanpy FilterCells\"];\n 2 -->|output_h5ad| 12;\n f378cb4e-0a77-49d9-b92a-752dbea4b09a[\"Output\\nCounts-filtered Object\"];\n 12 --> f378cb4e-0a77-49d9-b92a-752dbea4b09a;\n style f378cb4e-0a77-49d9-b92a-752dbea4b09a stroke:#2c3143,stroke-width:4px;\n 13[\"Inspect AnnData\"];\n 2 -->|output_h5ad| 13;\n f9e862db-eb22-4124-8fe0-0fdcfcfb8393[\"Output\\nGeneral - Filterbygenes\"];\n 13 --> f9e862db-eb22-4124-8fe0-0fdcfcfb8393;\n style f9e862db-eb22-4124-8fe0-0fdcfcfb8393 stroke:#2c3143,stroke-width:4px;\n 14[\"Inspect AnnData\"];\n 12 -->|output_h5ad| 14;\n 794f72b5-c2c3-46a0-ac15-b9f1e94941d2[\"Output\\nGeneral - Filterbycounts\"];\n 14 --> 794f72b5-c2c3-46a0-ac15-b9f1e94941d2;\n style 794f72b5-c2c3-46a0-ac15-b9f1e94941d2 stroke:#2c3143,stroke-width:4px;\n 15[\"Scanpy FilterCells\"];\n 12 -->|output_h5ad| 15;\n b915da66-6435-4871-baa0-3e494ba73c96[\"Output\\nMito-filtered Object\"];\n 15 --> b915da66-6435-4871-baa0-3e494ba73c96;\n style b915da66-6435-4871-baa0-3e494ba73c96 stroke:#2c3143,stroke-width:4px;\n 16[\"Plot\"];\n 12 -->|output_h5ad| 16;\n 3aef86d7-d34d-4b24-bc97-bf8c97d8d2fa[\"Output\\nViolin - Filterbycounts\"];\n 16 --> 3aef86d7-d34d-4b24-bc97-bf8c97d8d2fa;\n style 3aef86d7-d34d-4b24-bc97-bf8c97d8d2fa stroke:#2c3143,stroke-width:4px;\n 17[\"Inspect AnnData\"];\n 15 -->|output_h5ad| 17;\n cd94a4c6-5665-4bdf-88ea-4f4d41efa893[\"Output\\nGeneral - Filterbymito\"];\n 17 --> cd94a4c6-5665-4bdf-88ea-4f4d41efa893;\n style cd94a4c6-5665-4bdf-88ea-4f4d41efa893 stroke:#2c3143,stroke-width:4px;\n 18[\"Scanpy FilterGenes\"];\n 15 -->|output_h5ad| 18;\n ee63ef0a-98ed-45cb-b144-1154f84ae452[\"Output\\nFiltered Object\"];\n 18 --> ee63ef0a-98ed-45cb-b144-1154f84ae452;\n style ee63ef0a-98ed-45cb-b144-1154f84ae452 stroke:#2c3143,stroke-width:4px;\n 19[\"Plot\"];\n 15 -->|output_h5ad| 19;\n 7e48a14f-08fd-45ab-b613-606bf64dcf9d[\"Output\\nViolin - Filterbymito\"];\n 19 --> 7e48a14f-08fd-45ab-b613-606bf64dcf9d;\n style 7e48a14f-08fd-45ab-b613-606bf64dcf9d stroke:#2c3143,stroke-width:4px;\n 20[\"Inspect AnnData\"];\n 18 -->|output_h5ad| 20;\n d59efa9b-d049-4f0e-8bd8-8ae982a45d0a[\"Output\\nGeneral - Filtered object\"];\n 20 --> d59efa9b-d049-4f0e-8bd8-8ae982a45d0a;\n style d59efa9b-d049-4f0e-8bd8-8ae982a45d0a stroke:#2c3143,stroke-width:4px;\n 21[\"Scanpy NormaliseData\"];\n 18 -->|output_h5ad| 21;\n 22[\"Scanpy FindVariableGenes\"];\n 21 -->|output_h5ad| 22;\n 23[\"Scanpy ScaleData\"];\n 22 -->|output_h5ad| 23;\n 24[\"Scanpy RunPCA\"];\n 23 -->|output_h5ad| 24;\n 25[\"Plot\"];\n 24 -->|output_h5ad| 25;\n 993dea99-990f-460a-beb9-46e5c97ee898[\"Output\\nPCA Variance\"];\n 25 --> 993dea99-990f-460a-beb9-46e5c97ee898;\n style 993dea99-990f-460a-beb9-46e5c97ee898 stroke:#2c3143,stroke-width:4px;\n 26[\"Scanpy ComputeGraph\"];\n 24 -->|output_h5ad| 26;\n 27[\"Scanpy RunTSNE\"];\n 26 -->|output_h5ad| 27;\n 28[\"Scanpy RunUMAP\"];\n 27 -->|output_h5ad| 28;\n 29[\"Scanpy FindCluster\"];\n 28 -->|output_h5ad| 29;\n 30[\"Scanpy FindMarkers\"];\n 29 -->|output_h5ad| 30;\n 308b4961-4d50-442b-9bca-bbb1992426ba[\"Output\\nMarkers - cluster\"];\n 30 --> 308b4961-4d50-442b-9bca-bbb1992426ba;\n style 308b4961-4d50-442b-9bca-bbb1992426ba stroke:#2c3143,stroke-width:4px;\n 035bbbce-fb57-48c8-83d5-2b0cd0376541[\"Output\\nFinal object\"];\n 30 --> 035bbbce-fb57-48c8-83d5-2b0cd0376541;\n style 035bbbce-fb57-48c8-83d5-2b0cd0376541 stroke:#2c3143,stroke-width:4px;\n 31[\"Scanpy FindMarkers\"];\n 29 -->|output_h5ad| 31;\n 1705e219-192a-4f52-9b26-64fcbcd303ea[\"Output\\nMarkers - genotype\"];\n 31 --> 1705e219-192a-4f52-9b26-64fcbcd303ea;\n style 1705e219-192a-4f52-9b26-64fcbcd303ea stroke:#2c3143,stroke-width:4px;\n 32[\"Scanpy PlotEmbed\"];\n 30 -->|output_h5ad| 32;\n 33[\"Scanpy PlotEmbed\"];\n 30 -->|output_h5ad| 33;\n 34[\"Manipulate AnnData\"];\n 30 -->|output_h5ad| 34;\n 35[\"Scanpy PlotEmbed\"];\n 30 -->|output_h5ad| 35;\n 36[\"Inspect AnnData\"];\n 30 -->|output_h5ad| 36;\n 37[\"AnnData Operations\"];\n 34 -->|anndata| 37;\n 30 -->|output_h5ad| 37;\n 38[\"Join two Datasets\"];\n 30 -->|output_tsv| 38;\n 36 -->|var| 38;\n 39[\"Join two Datasets\"];\n 31 -->|output_tsv| 39;\n 36 -->|var| 39;\n 40[\"AnnData Operations\"];\n 37 -->|output_h5ad| 40;\n a6d48df0-403f-4efc-a75f-9504a960884e[\"Output\\nFinal cell annotated object\"];\n 40 --> a6d48df0-403f-4efc-a75f-9504a960884e;\n style a6d48df0-403f-4efc-a75f-9504a960884e stroke:#2c3143,stroke-width:4px;\n 41[\"Cut\"];\n 38 -->|out_file1| 41;\n 0ee7f9b6-b065-4e26-93df-6e6e2fe458a9[\"Output\\nMarkers - cluster - named\"];\n 41 --> 0ee7f9b6-b065-4e26-93df-6e6e2fe458a9;\n style 0ee7f9b6-b065-4e26-93df-6e6e2fe458a9 stroke:#2c3143,stroke-width:4px;\n 42[\"Cut\"];\n 39 -->|out_file1| 42;\n fdb88faa-9b76-4edb-b89b-427c098a473e[\"Output\\nMarkers - genotype - named\"];\n 42 --> fdb88faa-9b76-4edb-b89b-427c098a473e;\n style fdb88faa-9b76-4edb-b89b-427c098a473e stroke:#2c3143,stroke-width:4px;\n 43[\"Scanpy PlotEmbed\"];\n 40 -->|output_h5ad| 43;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "CS3_Filter, Plot and Explore Single-cell RNA-seq Data", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "obs", + "type": "tabular" + } + ], + "position": { + "left": 277.8984375, + "top": 21.0703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"obs\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "99ffbf79-3be8-4905-b978-e56b02327314", + "workflow_outputs": [ + { + "label": null, + "output_name": "obs", + "uuid": "6e2bd8b0-8203-4dfe-9c28-054d863bd277" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_obj_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FilterCells", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 277.8984375, + "top": 238.2421875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Genes-filtered Object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "55ccc0a121bc", + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"categories\": [], \"export_mtx\": \"false\", \"force_recalc\": \"false\", \"gene_name\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"parameters\": [{\"__index__\": 0, \"name\": \"log1p_n_genes_by_counts\", \"min\": \"5.7\", \"max\": \"20.0\"}], \"save_layer\": null, \"save_raw\": \"false\", \"subsets\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "ab02dab9-1c72-4987-929c-6b67baae1e6d", + "workflow_outputs": [ + { + "label": "Genes-filtered Object", + "output_name": "output_h5ad", + "uuid": "08175d7f-f4f4-413c-ad86-f59587ff692e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.8984375, + "top": 434.28125 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Scatter - genes x UMIs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.scatter\", \"__current_case__\": 0, \"type\": {\"type\": \"xy\", \"__current_case__\": 0, \"x\": \"log1p_total_counts\", \"y\": \"log1p_n_genes_by_counts\", \"color\": \"pct_counts_mito\", \"layers\": {\"use_layers\": \"false\", \"__current_case__\": 1}}, \"use_raw\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"color_map\": \"None\", \"palette\": \"default\", \"frameon\": \"true\", \"size\": null, \"title\": \"\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "767da31e-dc80-4d11-9f8e-8b1589029dcc", + "workflow_outputs": [ + { + "label": "Scatter - genes x UMIs", + "output_name": "out_png", + "uuid": "bfc499ee-630a-498b-9be6-696d9bb78837" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.8984375, + "top": 588.25 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Scatter - mito x genes" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.scatter\", \"__current_case__\": 0, \"type\": {\"type\": \"xy\", \"__current_case__\": 0, \"x\": \"log1p_n_genes_by_counts\", \"y\": \"pct_counts_mito\", \"color\": \"\", \"layers\": {\"use_layers\": \"false\", \"__current_case__\": 1}}, \"use_raw\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"color_map\": \"None\", \"palette\": \"default\", \"frameon\": \"true\", \"size\": null, \"title\": \"\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "ad0b1195-4bb2-46be-bb8a-8fd5de416372", + "workflow_outputs": [ + { + "label": "Scatter - mito x genes", + "output_name": "out_png", + "uuid": "f2c78ef3-7d31-4930-954c-0133cce27a41" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.8984375, + "top": 742.28125 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - genotype - log" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"genotype\", \"log\": \"false\", \"use_raw\": \"false\", \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "a6a5b2f9-9765-4f5d-b4cf-7c513b8eed3c", + "workflow_outputs": [ + { + "label": "Violin - genotype - log", + "output_name": "out_png", + "uuid": "348818e6-9def-41fd-a390-6f8525c57cd8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.8984375, + "top": 896.3046875 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - batch - log" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"batch\", \"log\": \"false\", \"use_raw\": \"false\", \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "a6d8ecf9-1510-4c1a-8665-ddf25b0ca395", + "workflow_outputs": [ + { + "label": "Violin - batch - log", + "output_name": "out_png", + "uuid": "844f5e7c-78c8-4f28-8e15-cea35ada8fef" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "var", + "type": "tabular" + } + ], + "position": { + "left": 277.8984375, + "top": 1029.3046875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"var\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "9445c5ea-8c75-48f2-b7a1-fd0e43c625c7", + "workflow_outputs": [ + { + "label": null, + "output_name": "var", + "uuid": "ba910718-a539-4b77-b3e8-087711e13eaf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.8984375, + "top": 1267.2734375 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Scatter - mito x UMIs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.scatter\", \"__current_case__\": 0, \"type\": {\"type\": \"xy\", \"__current_case__\": 0, \"x\": \"log1p_total_counts\", \"y\": \"pct_counts_mito\", \"color\": \"\", \"layers\": {\"use_layers\": \"false\", \"__current_case__\": 1}}, \"use_raw\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"color_map\": \"None\", \"palette\": \"default\", \"frameon\": \"true\", \"size\": null, \"title\": \"\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "7225da9d-e700-49f7-bb78-20f2954872bd", + "workflow_outputs": [ + { + "label": "Scatter - mito x UMIs", + "output_name": "out_png", + "uuid": "3b1232c5-d16a-434d-806e-79fd77f7c05f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 277.8984375, + "top": 1421.234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "549b599e-1b3d-4be4-bfe7-91c50cef7ef7", + "workflow_outputs": [ + { + "label": null, + "output_name": "general", + "uuid": "8fbf3a0b-bf46-48ff-8f64-bb7018d51382" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.8984375, + "top": 1617.2109375 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - sex - log" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"sex\", \"log\": \"false\", \"use_raw\": \"false\", \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "d21d8d66-0488-4382-bed4-b8534c08169f", + "workflow_outputs": [ + { + "label": "Violin - sex - log", + "output_name": "out_png", + "uuid": "a639cdc0-da40-4df9-8348-23117528b24a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "adata": { + "id": 2, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 555.9140625, + "top": 84.2109375 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - Filterbygenes" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"genotype\", \"log\": \"false\", \"use_raw\": \"false\", \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "0ceca44a-91f3-4c85-8dfe-7c958c373fed", + "workflow_outputs": [ + { + "label": "Violin - Filterbygenes", + "output_name": "out_png", + "uuid": "69bf3e42-63e2-4b5b-9d63-5aac9d6b5691" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "input_obj_file": { + "id": 2, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FilterCells", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 555.9140625, + "top": 238.2421875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Counts-filtered Object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "55ccc0a121bc", + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"categories\": [], \"export_mtx\": \"false\", \"force_recalc\": \"false\", \"gene_name\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"parameters\": [{\"__index__\": 0, \"name\": \"log1p_total_counts\", \"min\": \"6.3\", \"max\": \"20.0\"}], \"save_layer\": null, \"save_raw\": \"false\", \"subsets\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "2b612ba2-7539-43a7-963c-da6172101f1f", + "workflow_outputs": [ + { + "label": "Counts-filtered Object", + "output_name": "output_h5ad", + "uuid": "f378cb4e-0a77-49d9-b92a-752dbea4b09a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 2, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 555.9140625, + "top": 434.28125 + }, + "post_job_actions": { + "RenameDatasetActiongeneral": { + "action_arguments": { + "newname": "General - Filterbygenes" + }, + "action_type": "RenameDatasetAction", + "output_name": "general" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "47b02be1-43e4-4bd3-a20f-ebfeddd29ad0", + "workflow_outputs": [ + { + "label": "General - Filterbygenes", + "output_name": "general", + "uuid": "f9e862db-eb22-4124-8fe0-0fdcfcfb8393" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 12, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 834.046875, + "top": 63.21875 + }, + "post_job_actions": { + "RenameDatasetActiongeneral": { + "action_arguments": { + "newname": "General - Filterbycounts" + }, + "action_type": "RenameDatasetAction", + "output_name": "general" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "85d4b86e-cff4-41bf-92d5-a4d53c72f950", + "workflow_outputs": [ + { + "label": "General - Filterbycounts", + "output_name": "general", + "uuid": "794f72b5-c2c3-46a0-ac15-b9f1e94941d2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "input_obj_file": { + "id": 12, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FilterCells", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 834.046875, + "top": 238.2421875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Mito-filtered Object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "55ccc0a121bc", + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"categories\": [], \"export_mtx\": \"false\", \"force_recalc\": \"false\", \"gene_name\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"parameters\": [{\"__index__\": 0, \"name\": \"pct_counts_mito\", \"min\": \"0.0\", \"max\": \"4.5\"}], \"save_layer\": null, \"save_raw\": \"false\", \"subsets\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "47ab6b8d-2130-4885-b972-84f3a444b707", + "workflow_outputs": [ + { + "label": "Mito-filtered Object", + "output_name": "output_h5ad", + "uuid": "b915da66-6435-4871-baa0-3e494ba73c96" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "adata": { + "id": 12, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 834.046875, + "top": 434.28125 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - Filterbycounts" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"genotype\", \"log\": \"false\", \"use_raw\": \"false\", \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "dbf56597-b286-43b9-bc04-f1e3995f7bc0", + "workflow_outputs": [ + { + "label": "Violin - Filterbycounts", + "output_name": "out_png", + "uuid": "3aef86d7-d34d-4b24-bc97-bf8c97d8d2fa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 15, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 1111.96875, + "top": 73.1796875 + }, + "post_job_actions": { + "RenameDatasetActiongeneral": { + "action_arguments": { + "newname": "General - Filterbymito" + }, + "action_type": "RenameDatasetAction", + "output_name": "general" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "d221b80d-63e9-42a8-8d4b-25f8f22b9696", + "workflow_outputs": [ + { + "label": "General - Filterbymito", + "output_name": "general", + "uuid": "cd94a4c6-5665-4bdf-88ea-4f4d41efa893" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_genes/scanpy_filter_genes/1.8.1+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "input_obj_file": { + "id": 15, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FilterGenes", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1111.96875, + "top": 248.21875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Filtered Object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_genes/scanpy_filter_genes/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "da611a744112", + "name": "scanpy_filter_genes", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"categories\": [], \"export_mtx\": \"false\", \"force_recalc\": \"false\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"parameters\": [{\"__index__\": 0, \"name\": \"n_cells\", \"min\": \"3.0\", \"max\": \"1000000000.0\"}], \"save_layer\": null, \"save_raw\": \"false\", \"subsets\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "84dc3ac3-d79f-4dcd-b81b-f876de010f5e", + "workflow_outputs": [ + { + "label": "Filtered Object", + "output_name": "output_h5ad", + "uuid": "ee63ef0a-98ed-45cb-b144-1154f84ae452" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "adata": { + "id": 15, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 1111.96875, + "top": 423.296875 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - Filterbymito" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"genotype\", \"log\": \"false\", \"use_raw\": \"false\", \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "972b30ab-cf6c-43a7-a41d-9679cbae7be6", + "workflow_outputs": [ + { + "label": "Violin - Filterbymito", + "output_name": "out_png", + "uuid": "7e48a14f-08fd-45ab-b613-606bf64dcf9d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 1390.0078125, + "top": 42.140625 + }, + "post_job_actions": { + "RenameDatasetActiongeneral": { + "action_arguments": { + "newname": "General - Filtered object" + }, + "action_type": "RenameDatasetAction", + "output_name": "general" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "78767f76-7f3c-416d-ac79-28f6104bb3b9", + "workflow_outputs": [ + { + "label": "General - Filtered object", + "output_name": "general", + "uuid": "d59efa9b-d049-4f0e-8bd8-8ae982a45d0a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_normalise_data/scanpy_normalise_data/1.8.1+galaxy0", + "errors": null, + "id": 21, + "input_connections": { + "input_obj_file": { + "id": 18, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy NormaliseData", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1390.0078125, + "top": 217.2421875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_normalise_data/scanpy_normalise_data/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8d9c22419c56", + "name": "scanpy_normalise_data", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"export_mtx\": \"false\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"save_layer\": null, \"save_raw\": \"false\", \"settings\": {\"default\": \"true\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "405a3674-8eca-4444-abc8-9f79112efafe", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "4b7c5849-0c06-4167-b1e5-f19a2f9204af" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_variable_genes/scanpy_find_variable_genes/1.8.1+galaxy0", + "errors": null, + "id": 22, + "input_connections": { + "input_obj_file": { + "id": 21, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FindVariableGenes", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1668.9375, + "top": 218.2421875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_variable_genes/scanpy_find_variable_genes/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "4667fe07bd68", + "name": "scanpy_find_variable_genes", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"batch_key\": \"\", \"filter\": \"false\", \"flavor\": \"seurat\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"max_disp\": \"50.0\", \"max_mean\": \"3.0\", \"min_disp\": \"0.5\", \"min_mean\": \"0.0125\", \"n_bin\": \"20\", \"n_top_gene\": null, \"output_format\": \"anndata_h5ad\", \"span\": \"0.3\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "53fa19a2-55bd-43af-b0c9-a41d42554a6b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "2add5ce8-fffb-46ef-8d92-158b3f9a252b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_scale_data/scanpy_scale_data/1.8.1+galaxy0", + "errors": null, + "id": 23, + "input_connections": { + "input_obj_file": { + "id": 22, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy ScaleData", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1946.1875, + "top": 227.203125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_scale_data/scanpy_scale_data/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5605f8452eb3", + "name": "scanpy_scale_data", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"save_layer\": null, \"save_raw\": \"false\", \"scale_max\": \"10.0\", \"zero_center\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "a4106855-a661-4d6d-9208-99afcfc0eb55", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "46ef29d8-4233-4cf9-b7d8-0b317dbfd37f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_pca/scanpy_run_pca/1.8.1+galaxy0", + "errors": null, + "id": 24, + "input_connections": { + "input_obj_file": { + "id": 23, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RunPCA", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 2224.1640625, + "top": 227.203125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_pca/scanpy_run_pca/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3ee74b58c72d", + "name": "scanpy_run_pca", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"extra_outputs\": null, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"n_pcs\": \"50\", \"output_format\": \"anndata_h5ad\", \"run_mode\": {\"chunked\": \"false\", \"__current_case__\": 1, \"zero_center\": \"true\", \"svd_solver\": null, \"random_seed\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "5a1ce297-23e9-46da-be5c-9c01a3a5a9dd", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "7f75826e-ccd3-417b-9925-d1cbf231d27a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 25, + "input_connections": { + "adata": { + "id": 24, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 2502.1875, + "top": 97.46875 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "PCA Variance" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.pca_variance_ratio\", \"__current_case__\": 11, \"n_pcs\": \"50\", \"log\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "04b47edc-87e5-4913-abe1-e525f62b9aa4", + "workflow_outputs": [ + { + "label": "PCA Variance", + "output_name": "out_png", + "uuid": "993dea99-990f-460a-beb9-46e5c97ee898" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy1", + "errors": null, + "id": 26, + "input_connections": { + "input_obj_file": { + "id": 24, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy ComputeGraph", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 2502.1875, + "top": 229.2265625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "bc9e8de21efb", + "name": "scanpy_compute_graph", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": \"false\", \"__current_case__\": 1, \"key_added\": \"\", \"n_neighbors\": \"15\", \"n_neighbors_file\": null, \"use_rep\": \"X_pca\", \"n_pcs\": \"20\", \"knn\": \"true\", \"method\": \"umap\", \"metric\": \"euclidean\", \"random_seed\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy1", + "type": "tool", + "uuid": "f0da837f-8547-4368-9160-f4416f91768f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "cf488e9d-4171-4ed2-9fa0-a9083077eed7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy1", + "errors": null, + "id": 27, + "input_connections": { + "input_obj_file": { + "id": 26, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy RunTSNE", + "name": "settings" + } + ], + "label": null, + "name": "Scanpy RunTSNE", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_embed", + "type": "tabular" + } + ], + "position": { + "left": 2780.1875, + "top": 289.234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "8b0d6f6f44c8", + "name": "scanpy_run_tsne", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"embeddings\": \"true\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": \"false\", \"__current_case__\": 1, \"key_added\": \"\", \"perplexity\": \"30.0\", \"perplexity_file\": {\"__class__\": \"RuntimeValue\"}, \"early_exaggeration\": \"12.0\", \"learning_rate\": \"1000.0\", \"fast_tsne\": \"false\", \"n_job\": null, \"n_pc\": null, \"random_seed\": \"0\"}, \"use_rep\": \"X_pca\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy1", + "type": "tool", + "uuid": "1638ac03-a75c-4081-a33d-da080f0de1c7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "1b78023b-ad9b-46d0-b75e-ffa3b12a52ee" + }, + { + "label": null, + "output_name": "output_embed", + "uuid": "e1b399d8-fe94-438e-9bc3-22fe695f70a2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy0", + "errors": null, + "id": 28, + "input_connections": { + "input_obj_file": { + "id": 27, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RunUMAP", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_embed", + "type": "tabular" + } + ], + "position": { + "left": 3058.171875, + "top": 371.296875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "fe562424a0a6", + "name": "scanpy_run_umap", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"embeddings\": \"true\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"key_added\": \"\", \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": \"true\", \"__current_case__\": 0}, \"use_graph\": \"neighbors\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "f0847b39-f0b3-4422-a013-b1e0fc5d10af", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_embed", + "uuid": "174f4c1d-9901-4fb8-be47-c53e3155d93f" + }, + { + "label": null, + "output_name": "output_h5ad", + "uuid": "d7fad373-884b-4374-9e97-141302f576ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy0", + "errors": null, + "id": 29, + "input_connections": { + "input_obj_file": { + "id": 28, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy FindCluster", + "name": "settings" + } + ], + "label": null, + "name": "Scanpy FindCluster", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_txt", + "type": "tsv" + } + ], + "position": { + "left": 3336.1796875, + "top": 415.296875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ad6995afd2e6", + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"method\": \"louvain\", \"output_cluster\": \"true\", \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": \"false\", \"__current_case__\": 1, \"neighbors_key\": \"neighbors\", \"layer\": \"\", \"key_added\": \"\", \"resolution\": \"0.6\", \"resolution_file\": {\"__class__\": \"RuntimeValue\"}, \"restrict_to\": \"\", \"use_weights\": \"false\", \"random_seed\": \"0\", \"directed\": \"true\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "684c6061-1703-4ed3-837a-f08aa49f496d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_txt", + "uuid": "8de66f85-2979-4d67-b9d6-a24ff1e480d3" + }, + { + "label": null, + "output_name": "output_h5ad", + "uuid": "980e4933-b0d6-4b92-aee8-ef76691aa958" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy0", + "errors": null, + "id": 30, + "input_connections": { + "input_obj_file": { + "id": 29, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy FindMarkers", + "name": "groupby_file" + } + ], + "label": null, + "name": "Scanpy FindMarkers", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_tsv", + "type": "tabular" + } + ], + "position": { + "left": 3614.1640625, + "top": 504.265625 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Final object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + }, + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Markers - cluster" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "49653e680ea4", + "name": "scanpy_find_markers", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"groupby\": \"louvain\", \"groupby_file\": {\"__class__\": \"RuntimeValue\"}, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"n_genes\": \"50\", \"output_format\": \"anndata_h5ad\", \"output_markers\": \"true\", \"settings\": {\"default\": \"true\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "b5fcde30-03d3-44b0-9d6a-094512e76172", + "workflow_outputs": [ + { + "label": "Markers - cluster", + "output_name": "output_tsv", + "uuid": "308b4961-4d50-442b-9bca-bbb1992426ba" + }, + { + "label": "Final object", + "output_name": "output_h5ad", + "uuid": "035bbbce-fb57-48c8-83d5-2b0cd0376541" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy0", + "errors": null, + "id": 31, + "input_connections": { + "input_obj_file": { + "id": 29, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy FindMarkers", + "name": "groupby_file" + } + ], + "label": null, + "name": "Scanpy FindMarkers", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_tsv", + "type": "tabular" + } + ], + "position": { + "left": 3614.1640625, + "top": 1110.296875 + }, + "post_job_actions": { + "HideDatasetActionoutput_h5ad": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_h5ad" + }, + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Markers - genotype" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "49653e680ea4", + "name": "scanpy_find_markers", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"groupby\": \"genotype\", \"groupby_file\": {\"__class__\": \"RuntimeValue\"}, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"n_genes\": \"50\", \"output_format\": \"anndata_h5ad\", \"output_markers\": \"true\", \"settings\": {\"default\": \"true\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "cf2af5fd-4210-4a5a-b514-9786eebeb6f8", + "workflow_outputs": [ + { + "label": "Markers - genotype", + "output_name": "output_tsv", + "uuid": "1705e219-192a-4f52-9b26-64fcbcd303ea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "errors": null, + "id": 32, + "input_connections": { + "input_obj_file": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 3902.203125, + "top": 75.1328125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "56d22aa6cb3b", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"basis\": \"tsne\", \"color_by\": \"louvain,sex,batch,genotype,Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,log1p_total_counts\", \"components\": \"\", \"edges\": \"false\", \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": \"false\", \"fig_size\": \"4,4\", \"fig_title\": \"\", \"gene_symbols_field\": \"Symbol\", \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": \"false\", \"use_raw\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "a41e2d67-8264-477d-9a61-9a9f86681a91", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_png", + "uuid": "a76a5c05-f1c3-414e-8663-4951fdbbb1f5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "errors": null, + "id": 33, + "input_connections": { + "input_obj_file": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 3902.203125, + "top": 292.2421875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "56d22aa6cb3b", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"basis\": \"umap\", \"color_by\": \"louvain,sex,batch,genotype,Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,log1p_total_counts\", \"components\": \"\", \"edges\": \"false\", \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": \"false\", \"fig_size\": \"4,4\", \"fig_title\": \"\", \"gene_symbols_field\": \"Symbol\", \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": \"false\", \"use_raw\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "4402764b-f095-494c-abfe-97f8854c6c25", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_png", + "uuid": "22e2c0b2-db19-4689-b2fc-7f9fcff14611" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "errors": null, + "id": 34, + "input_connections": { + "input": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 3902.203125, + "top": 509.2890625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3d748954434b", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"rename_categories\", \"__current_case__\": 3, \"key\": \"louvain\", \"categories\": \"DP-M4,DP-M3,DP-M1,T-mat,DN,DP-L,DP-M2,Macrophages\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "91b502ec-5b8b-40a2-b70b-1d30581434ef", + "workflow_outputs": [ + { + "label": null, + "output_name": "anndata", + "uuid": "8a35be0b-4004-4dce-810b-e5b9d33590b9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "errors": null, + "id": 35, + "input_connections": { + "input_obj_file": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 3902.203125, + "top": 705.234375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "56d22aa6cb3b", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"basis\": \"pca\", \"color_by\": \"louvain,sex,batch,genotype,Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,log1p_total_counts\", \"components\": \"\", \"edges\": \"false\", \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": \"false\", \"fig_size\": \"4,4\", \"fig_title\": \"\", \"gene_symbols_field\": \"Symbol\", \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": \"false\", \"use_raw\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "2a77ae44-dc08-4b53-ae43-215ba91d6260", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_png", + "uuid": "ea42965c-0f03-404d-9a5a-a070170dc4b2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 36, + "input_connections": { + "input": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "var", + "type": "tabular" + } + ], + "position": { + "left": 3902.203125, + "top": 922.2890625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"h5ad\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"var\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "c9832ad2-4cff-4316-a43a-11ba2691601d", + "workflow_outputs": [ + { + "label": null, + "output_name": "var", + "uuid": "d890f37a-aa1e-4b3c-8f63-04ecfeaa8f73" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "errors": null, + "id": 37, + "input_connections": { + "copy_o|obs_sources": { + "id": 34, + "output_name": "anndata" + }, + "input_obj_file": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "AnnData Operations", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 4386.2109375, + "top": 257.1875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "890fb06a2893", + "name": "anndata_ops", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_adata_to_raw\": \"false\", \"copy_e\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_l\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_o\": {\"default\": \"true\", \"__current_case__\": 0, \"obs_keys\": [{\"__index__\": 0, \"contains\": \"louvain\"}], \"obs_sources\": {\"__class__\": \"ConnectedValue\"}}, \"copy_r\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_u\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_x\": {\"default\": \"false\", \"__current_case__\": 1}, \"gene_flags\": [], \"gene_symbols_field\": \"index\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"modifications\": [], \"output_format\": \"anndata_h5ad\", \"sanitize_varm\": \"false\", \"top_genes\": \"50\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "573bf376-2011-4572-ad91-84df828f1242", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "50717627-47ed-40bc-bf18-17198416a57f" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 38, + "input_connections": { + "input1": { + "id": 30, + "output_name": "output_tsv" + }, + "input2": { + "id": 36, + "output_name": "var" + } + }, + "inputs": [], + "label": null, + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 4190.2109375, + "top": 976.3046875 + }, + "post_job_actions": {}, + "tool_id": "join1", + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"field1\": \"4\", \"field2\": \"2\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "db6d5777-a3dd-467d-8541-91bb998e0e72", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "cb6967d5-7390-4d2e-b2c4-1d8a9e2d3c69" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 39, + "input_connections": { + "input1": { + "id": 31, + "output_name": "output_tsv" + }, + "input2": { + "id": 36, + "output_name": "var" + } + }, + "inputs": [], + "label": null, + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 4178.2109375, + "top": 1199.2890625 + }, + "post_job_actions": {}, + "tool_id": "join1", + "tool_state": "{\"field1\": \"4\", \"field2\": \"2\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "f4db0e7d-dfc8-4f77-bca0-997a0347304b", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "54cdb2bd-437b-47e4-90c1-e99e0b468574" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "errors": null, + "id": 40, + "input_connections": { + "input_obj_file": { + "id": 37, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "AnnData Operations", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 4468.2109375, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Final cell annotated object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "890fb06a2893", + "name": "anndata_ops", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"copy_adata_to_raw\": \"false\", \"copy_e\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_l\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_o\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_r\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_u\": {\"default\": \"false\", \"__current_case__\": 1}, \"copy_x\": {\"default\": \"false\", \"__current_case__\": 1}, \"gene_flags\": [], \"gene_symbols_field\": \"index\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"modifications\": [{\"__index__\": 0, \"from_obs\": \"louvain_0\", \"to_obs\": \"cell_type\", \"keep_original\": \"false\"}], \"output_format\": \"anndata_h5ad\", \"sanitize_varm\": \"false\", \"top_genes\": \"50\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "584bf7e3-05d7-4010-ba67-98375379c621", + "workflow_outputs": [ + { + "label": "Final cell annotated object", + "output_name": "output_h5ad", + "uuid": "a6d48df0-403f-4efc-a75f-9504a960884e" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 41, + "input_connections": { + "input": { + "id": 38, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 4468.2109375, + "top": 1014.2890625 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Markers - cluster - named" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c2,c3,c4,c11,c5,c6,c7,c8\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "45fddc4f-1b9d-4464-b08b-c502d4d05a30", + "workflow_outputs": [ + { + "label": "Markers - cluster - named", + "output_name": "out_file1", + "uuid": "0ee7f9b6-b065-4e26-93df-6e6e2fe458a9" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 42, + "input_connections": { + "input": { + "id": 39, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 4468.2109375, + "top": 1199.2890625 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Markers - genotype - named" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c2,c3,c4,c11,c5,c6,c7,c8\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "995cfd57-925a-470e-879b-8d7eb619c67b", + "workflow_outputs": [ + { + "label": "Markers - genotype - named", + "output_name": "out_file1", + "uuid": "fdb88faa-9b76-4edb-b89b-427c098a473e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "errors": null, + "id": 43, + "input_connections": { + "input_obj_file": { + "id": 40, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy PlotEmbed", + "name": "input_obj_file" + } + ], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 4653.7109375, + "top": 231.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "56d22aa6cb3b", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"basis\": \"umap\", \"color_by\": \"sex,batch,genotype,Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,log1p_total_counts,Hba-a1,cell_type\", \"components\": \"\", \"edges\": \"false\", \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": \"false\", \"fig_size\": \"4,4\", \"fig_title\": \"\", \"gene_symbols_field\": \"Symbol\", \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"RuntimeValue\"}, \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": \"false\", \"use_raw\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy0", + "type": "tool", + "uuid": "ff379bdf-e875-4803-baa0-b11bd71666db", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_png", + "uuid": "cb97c2f3-8e23-45d0-bc96-faf2f06b59d0" + } + ] + } + ], + "parent_id": "single-cell/scrna-case_basic-pipeline", + "path": "topics/single-cell/tutorials/scrna-case_basic-pipeline/workflows/CS3_Filter,_Plot_and_Explore_Single-cell_RNA-seq_Data.ga", + "tags": [ + "name:transcriptomics", + "name:training", + "name:singlecell" + ], + "test_results": null, + "tests": false, + "title": "CS3_Filter, Plot and Explore Single-cell RNA-seq Data", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_basic-pipeline/versions/cs3-filter--plot-and-explore-single-cell-rna-seq-data", + "tutorial_id": "scrna-case_basic-pipeline", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_basic-pipeline/workflows/CS3_Filter,_Plot_and_Explore_Single-cell_RNA-seq_Data.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_basic-pipeline/workflows/CS3_Filter,_Plot_and_Explore_Single-cell_RNA-seq_Data.html", + "version": 1, + "wfid": "single-cell-scrna-case_basic-pipeline", + "wfname": "cs3-filter--plot-and-explore-single-cell-rna-seq-data", + "workflow": "CS3_Filter,_Plot_and_Explore_Single-cell_RNA-seq_Data.ga", + "workflow_tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_genes/scanpy_filter_genes/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_variable_genes/scanpy_find_variable_genes/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_normalise_data/scanpy_normalise_data/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_pca/scanpy_run_pca/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_scale_data/scanpy_scale_data/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1" + ], + "workflowhub_id": "1219" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-8170-8806", + "name": "Wendi Bacon" + }, + { + "class": "Person", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + } + ], + "description": "Filter, Plot and Explore Single-cell RNA-seq Data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMito-counted AnnData\"]\n 1[label=\"Inspect AnnData\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Scanpy FilterCells\"]\n 0 -> 2 [label=\"output\"]\n k6a00b14bd3f84771963a76115c8eaf2f[color=lightseagreen,label=\"Output\\nGenes-filtered Object\"]\n 2 -> k6a00b14bd3f84771963a76115c8eaf2f\n 3[label=\"Plot\"]\n 0 -> 3 [label=\"output\"]\n kc123842eb2d243ad81f06ba3b45d4021[color=lightseagreen,label=\"Output\\nScatter - genes x UMIs\"]\n 3 -> kc123842eb2d243ad81f06ba3b45d4021\n 4[label=\"Plot\"]\n 0 -> 4 [label=\"output\"]\n kf1020d4d555e42faba2152a151b91a5b[color=lightseagreen,label=\"Output\\nScatter - mito x genes\"]\n 4 -> kf1020d4d555e42faba2152a151b91a5b\n 5[label=\"Plot\"]\n 0 -> 5 [label=\"output\"]\n ka7fe60208f1e470a9ed3f2b5e95516e0[color=lightseagreen,label=\"Output\\nViolin - genotype - log\"]\n 5 -> ka7fe60208f1e470a9ed3f2b5e95516e0\n 6[label=\"Plot\"]\n 0 -> 6 [label=\"output\"]\n k15e501bc8ddb451989ebdde431ea96c1[color=lightseagreen,label=\"Output\\nViolin - batch - log\"]\n 6 -> k15e501bc8ddb451989ebdde431ea96c1\n 7[label=\"Inspect AnnData\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Plot\"]\n 0 -> 8 [label=\"output\"]\n keff22f46baa64e00ba82d5e12ce26ff0[color=lightseagreen,label=\"Output\\nScatter - mito x UMIs\"]\n 8 -> keff22f46baa64e00ba82d5e12ce26ff0\n 9[label=\"Inspect AnnData\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Plot\"]\n 0 -> 10 [label=\"output\"]\n k56677ca4129c476c85ec69d1bb3d800d[color=lightseagreen,label=\"Output\\nViolin - sex - log\"]\n 10 -> k56677ca4129c476c85ec69d1bb3d800d\n 11[label=\"Plot\"]\n 2 -> 11 [label=\"output_h5ad\"]\n kacb61ea4bcb945dbbeefe2bf1a176701[color=lightseagreen,label=\"Output\\nViolin - Filterbygenes\"]\n 11 -> kacb61ea4bcb945dbbeefe2bf1a176701\n 12[label=\"Scanpy FilterCells\"]\n 2 -> 12 [label=\"output_h5ad\"]\n k5185366245194229a2eab22a53e7ef73[color=lightseagreen,label=\"Output\\nCounts-filtered Object\"]\n 12 -> k5185366245194229a2eab22a53e7ef73\n 13[label=\"Inspect AnnData\"]\n 2 -> 13 [label=\"output_h5ad\"]\n k362a7fe624bb4398ae48870f4b4bb774[color=lightseagreen,label=\"Output\\nGeneral - Filterbygenes\"]\n 13 -> k362a7fe624bb4398ae48870f4b4bb774\n 14[label=\"Inspect AnnData\"]\n 12 -> 14 [label=\"output_h5ad\"]\n kedf2414993414fe7b10c3fcf092faaa5[color=lightseagreen,label=\"Output\\nGeneral - Filterbycounts\"]\n 14 -> kedf2414993414fe7b10c3fcf092faaa5\n 15[label=\"Scanpy FilterCells\"]\n 12 -> 15 [label=\"output_h5ad\"]\n ka88ec405265f4a59a75e34e3b05b0096[color=lightseagreen,label=\"Output\\nMito-filtered Object\"]\n 15 -> ka88ec405265f4a59a75e34e3b05b0096\n 16[label=\"Plot\"]\n 12 -> 16 [label=\"output_h5ad\"]\n ka7c8b0d982d34438a212b5f7c56d36b8[color=lightseagreen,label=\"Output\\nViolin - Filterbycounts\"]\n 16 -> ka7c8b0d982d34438a212b5f7c56d36b8\n 17[label=\"Inspect AnnData\"]\n 15 -> 17 [label=\"output_h5ad\"]\n k56882809e19f451a8010bc55dcee482f[color=lightseagreen,label=\"Output\\nGeneral - Filterbymito\"]\n 17 -> k56882809e19f451a8010bc55dcee482f\n 18[label=\"Scanpy FilterGenes\"]\n 15 -> 18 [label=\"output_h5ad\"]\n k00846477dec5408a83b2105fff7ce05b[color=lightseagreen,label=\"Output\\nFiltered Object\"]\n 18 -> k00846477dec5408a83b2105fff7ce05b\n 19[label=\"Plot\"]\n 15 -> 19 [label=\"output_h5ad\"]\n k7582e11320044255a1f3d3123373f342[color=lightseagreen,label=\"Output\\nViolin - Filterbymito\"]\n 19 -> k7582e11320044255a1f3d3123373f342\n 20[label=\"Inspect AnnData\"]\n 18 -> 20 [label=\"output_h5ad\"]\n k2d870a40c6024a1cafef450489354d39[color=lightseagreen,label=\"Output\\nGeneral - Filtered object\"]\n 20 -> k2d870a40c6024a1cafef450489354d39\n 21[label=\"Scanpy NormaliseData\"]\n 18 -> 21 [label=\"output_h5ad\"]\n 22[label=\"Scanpy FindVariableGenes\"]\n 21 -> 22 [label=\"output_h5ad\"]\n ka0eb92b102634179b7af4bd9bcc9c960[color=lightseagreen,label=\"Output\\nUse_me_FVG\"]\n 22 -> ka0eb92b102634179b7af4bd9bcc9c960\n 23[label=\"Scanpy ScaleData\"]\n 22 -> 23 [label=\"output_h5ad\"]\n k5776dbb90cac40c09bae9accae16a7a0[color=lightseagreen,label=\"Output\\nUse_me_Scaled\"]\n 23 -> k5776dbb90cac40c09bae9accae16a7a0\n 24[label=\"Scanpy RunPCA\"]\n 23 -> 24 [label=\"output_h5ad\"]\n 25[label=\"Plot\"]\n 24 -> 25 [label=\"output_h5ad\"]\n kf0b6f578050f49369ee79956b0760c6f[color=lightseagreen,label=\"Output\\nPCA Variance\"]\n 25 -> kf0b6f578050f49369ee79956b0760c6f\n 26[label=\"Scanpy ComputeGraph\"]\n 24 -> 26 [label=\"output_h5ad\"]\n 27[label=\"Scanpy RunTSNE\"]\n 26 -> 27 [label=\"output_h5ad\"]\n 28[label=\"Scanpy RunUMAP\"]\n 27 -> 28 [label=\"output_h5ad\"]\n 29[label=\"Scanpy FindCluster\"]\n 28 -> 29 [label=\"output_h5ad\"]\n 30[label=\"Scanpy FindMarkers\"]\n 29 -> 30 [label=\"output_h5ad\"]\n k7cfe5c9c1c8041b4b669633b1d7d40e3[color=lightseagreen,label=\"Output\\nMarkers - cluster\"]\n 30 -> k7cfe5c9c1c8041b4b669633b1d7d40e3\n k98e98405951e4c6cbe013c925ae35449[color=lightseagreen,label=\"Output\\nFinal object\"]\n 30 -> k98e98405951e4c6cbe013c925ae35449\n 31[label=\"Scanpy FindMarkers\"]\n 29 -> 31 [label=\"output_h5ad\"]\n k1e9f229deb344a5ba6d9e70c7b0581f4[color=lightseagreen,label=\"Output\\nMarkers - genotype\"]\n 31 -> k1e9f229deb344a5ba6d9e70c7b0581f4\n 32[label=\"Scanpy PlotEmbed\"]\n 30 -> 32 [label=\"output_h5ad\"]\n 33[label=\"Scanpy PlotEmbed\"]\n 30 -> 33 [label=\"output_h5ad\"]\n 34[label=\"Manipulate AnnData\"]\n 30 -> 34 [label=\"output_h5ad\"]\n 35[label=\"Scanpy PlotEmbed\"]\n 30 -> 35 [label=\"output_h5ad\"]\n 36[label=\"Inspect AnnData\"]\n 30 -> 36 [label=\"output_h5ad\"]\n 37[label=\"AnnData Operations\"]\n 34 -> 37 [label=\"anndata\"]\n 30 -> 37 [label=\"output_h5ad\"]\n 38[label=\"Join two Datasets\"]\n 30 -> 38 [label=\"output_tsv\"]\n 36 -> 38 [label=\"var\"]\n 39[label=\"Join two Datasets\"]\n 31 -> 39 [label=\"output_tsv\"]\n 36 -> 39 [label=\"var\"]\n 40[label=\"AnnData Operations\"]\n 37 -> 40 [label=\"output_h5ad\"]\n k10bd70f8ffcb442b9647e5b947b6d35e[color=lightseagreen,label=\"Output\\nFinal cell annotated object\"]\n 40 -> k10bd70f8ffcb442b9647e5b947b6d35e\n 41[label=\"Cut\"]\n 38 -> 41 [label=\"out_file1\"]\n k4f822c1c91c54be48f9bd5bdda0a037e[color=lightseagreen,label=\"Output\\nMarkers - cluster - named\"]\n 41 -> k4f822c1c91c54be48f9bd5bdda0a037e\n 42[label=\"Cut\"]\n 39 -> 42 [label=\"out_file1\"]\n k3b471f3d263d42999b7d8a8ae1aa556e[color=lightseagreen,label=\"Output\\nMarkers - genotype - named\"]\n 42 -> k3b471f3d263d42999b7d8a8ae1aa556e\n 43[label=\"Scanpy PlotEmbed\"]\n 40 -> 43 [label=\"output_h5ad\"]\n}", + "history": [ + { + "hash": "9a3fc8a6dad6c8d1b7b9897056cc75af00a12c57", + "message": "new workflow tests", + "num": 1, + "short_hash": "9a3fc8a6d", + "unix": "1686345087" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mito-counted AnnData" + } + ], + "label": "Mito-counted AnnData", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 761.9687652587891 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "1d8303cb-de77-4164-923c-127a4e60d8e6", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nMito-counted AnnData\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Inspect AnnData\"];\n 0 -->|output| 1;\n 2[\"Scanpy FilterCells\"];\n 0 -->|output| 2;\n 6a00b14b-d3f8-4771-963a-76115c8eaf2f[\"Output\\nGenes-filtered Object\"];\n 2 --> 6a00b14b-d3f8-4771-963a-76115c8eaf2f;\n style 6a00b14b-d3f8-4771-963a-76115c8eaf2f stroke:#2c3143,stroke-width:4px;\n 3[\"Plot\"];\n 0 -->|output| 3;\n c123842e-b2d2-43ad-81f0-6ba3b45d4021[\"Output\\nScatter - genes x UMIs\"];\n 3 --> c123842e-b2d2-43ad-81f0-6ba3b45d4021;\n style c123842e-b2d2-43ad-81f0-6ba3b45d4021 stroke:#2c3143,stroke-width:4px;\n 4[\"Plot\"];\n 0 -->|output| 4;\n f1020d4d-555e-42fa-ba21-52a151b91a5b[\"Output\\nScatter - mito x genes\"];\n 4 --> f1020d4d-555e-42fa-ba21-52a151b91a5b;\n style f1020d4d-555e-42fa-ba21-52a151b91a5b stroke:#2c3143,stroke-width:4px;\n 5[\"Plot\"];\n 0 -->|output| 5;\n a7fe6020-8f1e-470a-9ed3-f2b5e95516e0[\"Output\\nViolin - genotype - log\"];\n 5 --> a7fe6020-8f1e-470a-9ed3-f2b5e95516e0;\n style a7fe6020-8f1e-470a-9ed3-f2b5e95516e0 stroke:#2c3143,stroke-width:4px;\n 6[\"Plot\"];\n 0 -->|output| 6;\n 15e501bc-8ddb-4519-89eb-dde431ea96c1[\"Output\\nViolin - batch - log\"];\n 6 --> 15e501bc-8ddb-4519-89eb-dde431ea96c1;\n style 15e501bc-8ddb-4519-89eb-dde431ea96c1 stroke:#2c3143,stroke-width:4px;\n 7[\"Inspect AnnData\"];\n 0 -->|output| 7;\n 8[\"Plot\"];\n 0 -->|output| 8;\n eff22f46-baa6-4e00-ba82-d5e12ce26ff0[\"Output\\nScatter - mito x UMIs\"];\n 8 --> eff22f46-baa6-4e00-ba82-d5e12ce26ff0;\n style eff22f46-baa6-4e00-ba82-d5e12ce26ff0 stroke:#2c3143,stroke-width:4px;\n 9[\"Inspect AnnData\"];\n 0 -->|output| 9;\n 10[\"Plot\"];\n 0 -->|output| 10;\n 56677ca4-129c-476c-85ec-69d1bb3d800d[\"Output\\nViolin - sex - log\"];\n 10 --> 56677ca4-129c-476c-85ec-69d1bb3d800d;\n style 56677ca4-129c-476c-85ec-69d1bb3d800d stroke:#2c3143,stroke-width:4px;\n 11[\"Plot\"];\n 2 -->|output_h5ad| 11;\n acb61ea4-bcb9-45db-beef-e2bf1a176701[\"Output\\nViolin - Filterbygenes\"];\n 11 --> acb61ea4-bcb9-45db-beef-e2bf1a176701;\n style acb61ea4-bcb9-45db-beef-e2bf1a176701 stroke:#2c3143,stroke-width:4px;\n 12[\"Scanpy FilterCells\"];\n 2 -->|output_h5ad| 12;\n 51853662-4519-4229-a2ea-b22a53e7ef73[\"Output\\nCounts-filtered Object\"];\n 12 --> 51853662-4519-4229-a2ea-b22a53e7ef73;\n style 51853662-4519-4229-a2ea-b22a53e7ef73 stroke:#2c3143,stroke-width:4px;\n 13[\"Inspect AnnData\"];\n 2 -->|output_h5ad| 13;\n 362a7fe6-24bb-4398-ae48-870f4b4bb774[\"Output\\nGeneral - Filterbygenes\"];\n 13 --> 362a7fe6-24bb-4398-ae48-870f4b4bb774;\n style 362a7fe6-24bb-4398-ae48-870f4b4bb774 stroke:#2c3143,stroke-width:4px;\n 14[\"Inspect AnnData\"];\n 12 -->|output_h5ad| 14;\n edf24149-9341-4fe7-b10c-3fcf092faaa5[\"Output\\nGeneral - Filterbycounts\"];\n 14 --> edf24149-9341-4fe7-b10c-3fcf092faaa5;\n style edf24149-9341-4fe7-b10c-3fcf092faaa5 stroke:#2c3143,stroke-width:4px;\n 15[\"Scanpy FilterCells\"];\n 12 -->|output_h5ad| 15;\n a88ec405-265f-4a59-a75e-34e3b05b0096[\"Output\\nMito-filtered Object\"];\n 15 --> a88ec405-265f-4a59-a75e-34e3b05b0096;\n style a88ec405-265f-4a59-a75e-34e3b05b0096 stroke:#2c3143,stroke-width:4px;\n 16[\"Plot\"];\n 12 -->|output_h5ad| 16;\n a7c8b0d9-82d3-4438-a212-b5f7c56d36b8[\"Output\\nViolin - Filterbycounts\"];\n 16 --> a7c8b0d9-82d3-4438-a212-b5f7c56d36b8;\n style a7c8b0d9-82d3-4438-a212-b5f7c56d36b8 stroke:#2c3143,stroke-width:4px;\n 17[\"Inspect AnnData\"];\n 15 -->|output_h5ad| 17;\n 56882809-e19f-451a-8010-bc55dcee482f[\"Output\\nGeneral - Filterbymito\"];\n 17 --> 56882809-e19f-451a-8010-bc55dcee482f;\n style 56882809-e19f-451a-8010-bc55dcee482f stroke:#2c3143,stroke-width:4px;\n 18[\"Scanpy FilterGenes\"];\n 15 -->|output_h5ad| 18;\n 00846477-dec5-408a-83b2-105fff7ce05b[\"Output\\nFiltered Object\"];\n 18 --> 00846477-dec5-408a-83b2-105fff7ce05b;\n style 00846477-dec5-408a-83b2-105fff7ce05b stroke:#2c3143,stroke-width:4px;\n 19[\"Plot\"];\n 15 -->|output_h5ad| 19;\n 7582e113-2004-4255-a1f3-d3123373f342[\"Output\\nViolin - Filterbymito\"];\n 19 --> 7582e113-2004-4255-a1f3-d3123373f342;\n style 7582e113-2004-4255-a1f3-d3123373f342 stroke:#2c3143,stroke-width:4px;\n 20[\"Inspect AnnData\"];\n 18 -->|output_h5ad| 20;\n 2d870a40-c602-4a1c-afef-450489354d39[\"Output\\nGeneral - Filtered object\"];\n 20 --> 2d870a40-c602-4a1c-afef-450489354d39;\n style 2d870a40-c602-4a1c-afef-450489354d39 stroke:#2c3143,stroke-width:4px;\n 21[\"Scanpy NormaliseData\"];\n 18 -->|output_h5ad| 21;\n 22[\"Scanpy FindVariableGenes\"];\n 21 -->|output_h5ad| 22;\n a0eb92b1-0263-4179-b7af-4bd9bcc9c960[\"Output\\nUse_me_FVG\"];\n 22 --> a0eb92b1-0263-4179-b7af-4bd9bcc9c960;\n style a0eb92b1-0263-4179-b7af-4bd9bcc9c960 stroke:#2c3143,stroke-width:4px;\n 23[\"Scanpy ScaleData\"];\n 22 -->|output_h5ad| 23;\n 5776dbb9-0cac-40c0-9bae-9accae16a7a0[\"Output\\nUse_me_Scaled\"];\n 23 --> 5776dbb9-0cac-40c0-9bae-9accae16a7a0;\n style 5776dbb9-0cac-40c0-9bae-9accae16a7a0 stroke:#2c3143,stroke-width:4px;\n 24[\"Scanpy RunPCA\"];\n 23 -->|output_h5ad| 24;\n 25[\"Plot\"];\n 24 -->|output_h5ad| 25;\n f0b6f578-050f-4936-9ee7-9956b0760c6f[\"Output\\nPCA Variance\"];\n 25 --> f0b6f578-050f-4936-9ee7-9956b0760c6f;\n style f0b6f578-050f-4936-9ee7-9956b0760c6f stroke:#2c3143,stroke-width:4px;\n 26[\"Scanpy ComputeGraph\"];\n 24 -->|output_h5ad| 26;\n 27[\"Scanpy RunTSNE\"];\n 26 -->|output_h5ad| 27;\n 28[\"Scanpy RunUMAP\"];\n 27 -->|output_h5ad| 28;\n 29[\"Scanpy FindCluster\"];\n 28 -->|output_h5ad| 29;\n 30[\"Scanpy FindMarkers\"];\n 29 -->|output_h5ad| 30;\n 7cfe5c9c-1c80-41b4-b669-633b1d7d40e3[\"Output\\nMarkers - cluster\"];\n 30 --> 7cfe5c9c-1c80-41b4-b669-633b1d7d40e3;\n style 7cfe5c9c-1c80-41b4-b669-633b1d7d40e3 stroke:#2c3143,stroke-width:4px;\n 98e98405-951e-4c6c-be01-3c925ae35449[\"Output\\nFinal object\"];\n 30 --> 98e98405-951e-4c6c-be01-3c925ae35449;\n style 98e98405-951e-4c6c-be01-3c925ae35449 stroke:#2c3143,stroke-width:4px;\n 31[\"Scanpy FindMarkers\"];\n 29 -->|output_h5ad| 31;\n 1e9f229d-eb34-4a5b-a6d9-e70c7b0581f4[\"Output\\nMarkers - genotype\"];\n 31 --> 1e9f229d-eb34-4a5b-a6d9-e70c7b0581f4;\n style 1e9f229d-eb34-4a5b-a6d9-e70c7b0581f4 stroke:#2c3143,stroke-width:4px;\n 32[\"Scanpy PlotEmbed\"];\n 30 -->|output_h5ad| 32;\n 33[\"Scanpy PlotEmbed\"];\n 30 -->|output_h5ad| 33;\n 34[\"Manipulate AnnData\"];\n 30 -->|output_h5ad| 34;\n 35[\"Scanpy PlotEmbed\"];\n 30 -->|output_h5ad| 35;\n 36[\"Inspect AnnData\"];\n 30 -->|output_h5ad| 36;\n 37[\"AnnData Operations\"];\n 34 -->|anndata| 37;\n 30 -->|output_h5ad| 37;\n 38[\"Join two Datasets\"];\n 30 -->|output_tsv| 38;\n 36 -->|var| 38;\n 39[\"Join two Datasets\"];\n 31 -->|output_tsv| 39;\n 36 -->|var| 39;\n 40[\"AnnData Operations\"];\n 37 -->|output_h5ad| 40;\n 10bd70f8-ffcb-442b-9647-e5b947b6d35e[\"Output\\nFinal cell annotated object\"];\n 40 --> 10bd70f8-ffcb-442b-9647-e5b947b6d35e;\n style 10bd70f8-ffcb-442b-9647-e5b947b6d35e stroke:#2c3143,stroke-width:4px;\n 41[\"Cut\"];\n 38 -->|out_file1| 41;\n 4f822c1c-91c5-4be4-8f9b-d5bdda0a037e[\"Output\\nMarkers - cluster - named\"];\n 41 --> 4f822c1c-91c5-4be4-8f9b-d5bdda0a037e;\n style 4f822c1c-91c5-4be4-8f9b-d5bdda0a037e stroke:#2c3143,stroke-width:4px;\n 42[\"Cut\"];\n 39 -->|out_file1| 42;\n 3b471f3d-263d-4299-9b7d-8a8ae1aa556e[\"Output\\nMarkers - genotype - named\"];\n 42 --> 3b471f3d-263d-4299-9b7d-8a8ae1aa556e;\n style 3b471f3d-263d-4299-9b7d-8a8ae1aa556e stroke:#2c3143,stroke-width:4px;\n 43[\"Scanpy PlotEmbed\"];\n 40 -->|output_h5ad| 43;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Filter, Plot and Explore Single-cell RNA-seq Data updated", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "obs", + "type": "tabular" + } + ], + "position": { + "left": 277.87506103515625, + "top": 46.953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"obs\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "02ce9919-9e22-40cf-8d35-dd11bc87479d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "obs", + "uuid": "71b6c011-cce0-476b-a468-ef4a8b6c3f2b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "errors": null, + "id": 2, + "input_connections": { + "input_obj_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FilterCells", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 277.87506103515625, + "top": 264.01561737060547 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Genes-filtered Object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "e9283529cba1", + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"categories\": [], \"export_mtx\": false, \"force_recalc\": false, \"gene_name\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"parameters\": [{\"__index__\": 0, \"name\": \"log1p_n_genes_by_counts\", \"min\": \"5.7\", \"max\": \"20.0\"}], \"save_layer\": null, \"save_raw\": false, \"subsets\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "c7141742-50d6-4119-8e2e-827d3feb7cda", + "when": null, + "workflow_outputs": [ + { + "label": "Genes-filtered Object", + "output_name": "output_h5ad", + "uuid": "6a00b14b-d3f8-4771-963a-76115c8eaf2f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.87506103515625, + "top": 460.0468444824219 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Scatter - genes x UMIs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.scatter\", \"__current_case__\": 0, \"type\": {\"type\": \"xy\", \"__current_case__\": 0, \"x\": \"log1p_total_counts\", \"y\": \"log1p_n_genes_by_counts\", \"color\": \"pct_counts_mito\", \"layers\": {\"use_layers\": \"false\", \"__current_case__\": 1}}, \"use_raw\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"color_map\": \"None\", \"palette\": \"default\", \"frameon\": true, \"size\": null, \"title\": \"\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "f3193244-6053-47a5-89f9-eaa0993f3eca", + "when": null, + "workflow_outputs": [ + { + "label": "Scatter - genes x UMIs", + "output_name": "out_png", + "uuid": "c123842e-b2d2-43ad-81f0-6ba3b45d4021" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.87506103515625, + "top": 614.0000152587891 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Scatter - mito x genes" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.scatter\", \"__current_case__\": 0, \"type\": {\"type\": \"xy\", \"__current_case__\": 0, \"x\": \"log1p_n_genes_by_counts\", \"y\": \"pct_counts_mito\", \"color\": \"\", \"layers\": {\"use_layers\": \"false\", \"__current_case__\": 1}}, \"use_raw\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"color_map\": \"None\", \"palette\": \"default\", \"frameon\": true, \"size\": null, \"title\": \"\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "babba57e-e1e1-4af8-849e-7f1f88842b51", + "when": null, + "workflow_outputs": [ + { + "label": "Scatter - mito x genes", + "output_name": "out_png", + "uuid": "f1020d4d-555e-42fa-ba21-52a151b91a5b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 278.98952554536163, + "top": 768.0374811275927 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - genotype - log" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"genotype\", \"log\": false, \"use_raw\": false, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "a7b1206d-c867-4ffa-bc48-a7bd311b4cfb", + "when": null, + "workflow_outputs": [ + { + "label": "Violin - genotype - log", + "output_name": "out_png", + "uuid": "a7fe6020-8f1e-470a-9ed3-f2b5e95516e0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 277.87506103515625, + "top": 922.0468902587891 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - batch - log" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"batch\", \"log\": false, \"use_raw\": false, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "43e45438-9dda-4e43-90e9-bbfead684d40", + "when": null, + "workflow_outputs": [ + { + "label": "Violin - batch - log", + "output_name": "out_png", + "uuid": "15e501bc-8ddb-4519-89eb-dde431ea96c1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "var", + "type": "tabular" + } + ], + "position": { + "left": 277.8749630368968, + "top": 1055.0375737787456 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"var\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "52409dab-0f57-417a-9aa2-0d14923b8820", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "var", + "uuid": "70ea04da-1d7b-47fa-939e-d01258f6f81d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 279.20030309822187, + "top": 1293.0249965988953 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Scatter - mito x UMIs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.scatter\", \"__current_case__\": 0, \"type\": {\"type\": \"xy\", \"__current_case__\": 0, \"x\": \"log1p_total_counts\", \"y\": \"pct_counts_mito\", \"color\": \"\", \"layers\": {\"use_layers\": \"false\", \"__current_case__\": 1}}, \"use_raw\": false, \"sort_order\": true, \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"color_map\": \"None\", \"palette\": \"default\", \"frameon\": true, \"size\": null, \"title\": \"\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "fea33591-4efa-488d-873c-2ef9ec1ad6e5", + "when": null, + "workflow_outputs": [ + { + "label": "Scatter - mito x UMIs", + "output_name": "out_png", + "uuid": "eff22f46-baa6-4e00-ba82-d5e12ce26ff0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 277.87506103515625, + "top": 1447.0156860351562 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "a6a5e239-9708-4044-9104-596fb6f130e8", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "general", + "uuid": "9ddf445d-8b0f-4ffd-b71a-81ff28deb4a1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "adata": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 276.53750483025266, + "top": 1641.8978917275417 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - sex - log" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"sex\", \"log\": false, \"use_raw\": false, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "64a75bd5-b091-45c1-a8f0-007efd803c16", + "when": null, + "workflow_outputs": [ + { + "label": "Violin - sex - log", + "output_name": "out_png", + "uuid": "56677ca4-129c-476c-85ec-69d1bb3d800d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 11, + "input_connections": { + "adata": { + "id": 2, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 555.9375, + "top": 110.03124237060547 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - Filterbygenes" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"genotype\", \"log\": false, \"use_raw\": false, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "6b3eb9a5-8014-497f-a3db-aea4a39080e9", + "when": null, + "workflow_outputs": [ + { + "label": "Violin - Filterbygenes", + "output_name": "out_png", + "uuid": "acb61ea4-bcb9-45db-beef-e2bf1a176701" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "errors": null, + "id": 12, + "input_connections": { + "input_obj_file": { + "id": 2, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FilterCells", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 555.9375, + "top": 264.01561737060547 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Counts-filtered Object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "e9283529cba1", + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"categories\": [], \"export_mtx\": false, \"force_recalc\": false, \"gene_name\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"parameters\": [{\"__index__\": 0, \"name\": \"log1p_total_counts\", \"min\": \"6.3\", \"max\": \"20.0\"}], \"save_layer\": null, \"save_raw\": false, \"subsets\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "64f0c049-6f2a-47ad-bb7b-1a9516fceca6", + "when": null, + "workflow_outputs": [ + { + "label": "Counts-filtered Object", + "output_name": "output_h5ad", + "uuid": "51853662-4519-4229-a2ea-b22a53e7ef73" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 2, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 555.9375, + "top": 460.0468444824219 + }, + "post_job_actions": { + "RenameDatasetActiongeneral": { + "action_arguments": { + "newname": "General - Filterbygenes" + }, + "action_type": "RenameDatasetAction", + "output_name": "general" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "9691c915-a455-4c55-89c4-129afc19842d", + "when": null, + "workflow_outputs": [ + { + "label": "General - Filterbygenes", + "output_name": "general", + "uuid": "362a7fe6-24bb-4398-ae48-870f4b4bb774" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 14, + "input_connections": { + "input": { + "id": 12, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 833.9688110351562, + "top": 89.03125762939453 + }, + "post_job_actions": { + "RenameDatasetActiongeneral": { + "action_arguments": { + "newname": "General - Filterbycounts" + }, + "action_type": "RenameDatasetAction", + "output_name": "general" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "d0fc1afa-8f79-4ba7-bc94-c7a5bddb27e1", + "when": null, + "workflow_outputs": [ + { + "label": "General - Filterbycounts", + "output_name": "general", + "uuid": "edf24149-9341-4fe7-b10c-3fcf092faaa5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "errors": null, + "id": 15, + "input_connections": { + "input_obj_file": { + "id": 12, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FilterCells", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 835.0770432726613, + "top": 264.01253840544547 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Mito-filtered Object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "e9283529cba1", + "name": "scanpy_filter_cells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"categories\": [], \"export_mtx\": false, \"force_recalc\": false, \"gene_name\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"parameters\": [{\"__index__\": 0, \"name\": \"pct_counts_mito\", \"min\": \"0.0\", \"max\": \"4.5\"}], \"save_layer\": null, \"save_raw\": false, \"subsets\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "ddab098e-c545-4eeb-865a-d728213832a2", + "when": null, + "workflow_outputs": [ + { + "label": "Mito-filtered Object", + "output_name": "output_h5ad", + "uuid": "a88ec405-265f-4a59-a75e-34e3b05b0096" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "adata": { + "id": 12, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 833.9625270516542, + "top": 458.9230379613743 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - Filterbycounts" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"genotype\", \"log\": false, \"use_raw\": false, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "55957a47-4968-465c-8b31-fb044d3ed1e3", + "when": null, + "workflow_outputs": [ + { + "label": "Violin - Filterbycounts", + "output_name": "out_png", + "uuid": "a7c8b0d9-82d3-4438-a212-b5f7c56d36b8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 15, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 1111.9688415527344, + "top": 98.99999618530273 + }, + "post_job_actions": { + "RenameDatasetActiongeneral": { + "action_arguments": { + "newname": "General - Filterbymito" + }, + "action_type": "RenameDatasetAction", + "output_name": "general" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "7c6883be-1a11-4b58-8c0c-0f5b87a84ec8", + "when": null, + "workflow_outputs": [ + { + "label": "General - Filterbymito", + "output_name": "general", + "uuid": "56882809-e19f-451a-8010-bc55dcee482f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_genes/scanpy_filter_genes/1.8.1+galaxy9", + "errors": null, + "id": 18, + "input_connections": { + "input_obj_file": { + "id": 15, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FilterGenes", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1111.9688415527344, + "top": 274.00001525878906 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Filtered Object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_genes/scanpy_filter_genes/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "474a69c47184", + "name": "scanpy_filter_genes", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"categories\": [], \"export_mtx\": false, \"force_recalc\": false, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"parameters\": [{\"__index__\": 0, \"name\": \"n_cells\", \"min\": \"3.0\", \"max\": \"1000000000.0\"}], \"save_layer\": null, \"save_raw\": false, \"subsets\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "61272c94-406b-4a3f-9bf5-a7ebbf1e3dee", + "when": null, + "workflow_outputs": [ + { + "label": "Filtered Object", + "output_name": "output_h5ad", + "uuid": "00846477-dec5-408a-83b2-105fff7ce05b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "adata": { + "id": 15, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 1111.9688415527344, + "top": 449.04685974121094 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "Violin - Filterbymito" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"log1p_total_counts,log1p_n_genes_by_counts,pct_counts_mito\"}, \"groupby\": \"genotype\", \"log\": false, \"use_raw\": false, \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"1.0\"}}, \"multi_panel\": {\"multi_panel\": \"False\", \"__current_case__\": 1}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "b192226f-02d2-4196-a4f1-1cd27b8434bd", + "when": null, + "workflow_outputs": [ + { + "label": "Violin - Filterbymito", + "output_name": "out_png", + "uuid": "7582e113-2004-4255-a1f3-d3123373f342" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 20, + "input_connections": { + "input": { + "id": 18, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "general", + "type": "txt" + } + ], + "position": { + "left": 1389.9688720703125, + "top": 68.01563262939453 + }, + "post_job_actions": { + "RenameDatasetActiongeneral": { + "action_arguments": { + "newname": "General - Filtered object" + }, + "action_type": "RenameDatasetAction", + "output_name": "general" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"general\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "2aa06b62-4c69-45a1-9330-f69838076dab", + "when": null, + "workflow_outputs": [ + { + "label": "General - Filtered object", + "output_name": "general", + "uuid": "2d870a40-c602-4a1c-afef-450489354d39" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_normalise_data/scanpy_normalise_data/1.8.1+galaxy9", + "errors": null, + "id": 21, + "input_connections": { + "input_obj_file": { + "id": 18, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy NormaliseData", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1389.9688720703125, + "top": 243.03123474121094 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_normalise_data/scanpy_normalise_data/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "6b97ffba31da", + "name": "scanpy_normalise_data", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"export_mtx\": false, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"save_layer\": null, \"save_raw\": false, \"settings\": {\"default\": true, \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "23a495af-28ed-40fb-8ed2-e0a9c0d6d5af", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "182d3dbe-a691-48cb-a784-2bceb1f9fdeb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_variable_genes/scanpy_find_variable_genes/1.8.1+galaxy9", + "errors": null, + "id": 22, + "input_connections": { + "input_obj_file": { + "id": 21, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy FindVariableGenes", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1666.8230043154201, + "top": 243.02502669087463 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Use_me_FVG" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_variable_genes/scanpy_find_variable_genes/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "2861ca3bfe4d", + "name": "scanpy_find_variable_genes", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"batch_key\": \"\", \"filter\": false, \"flavor\": \"seurat\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"max_disp\": \"50.0\", \"max_mean\": \"3.0\", \"min_disp\": \"0.5\", \"min_mean\": \"0.0125\", \"n_bin\": \"20\", \"n_top_gene\": \"2000\", \"output_format\": \"anndata_h5ad\", \"span\": \"0.3\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "a8525f8d-4acc-437e-8c29-3213f7b969e2", + "when": null, + "workflow_outputs": [ + { + "label": "Use_me_FVG", + "output_name": "output_h5ad", + "uuid": "a0eb92b1-0263-4179-b7af-4bd9bcc9c960" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_scale_data/scanpy_scale_data/1.8.1+galaxy9", + "errors": null, + "id": 23, + "input_connections": { + "input_obj_file": { + "id": 22, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy ScaleData", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 1946.0000610351562, + "top": 252.99999237060547 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Use_me_Scaled" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_scale_data/scanpy_scale_data/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "f86b2c3bc459", + "name": "scanpy_scale_data", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"save_layer\": null, \"save_raw\": false, \"scale_max\": \"10.0\", \"zero_center\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "4bc539e1-2913-448f-bde6-d1ec35a10a51", + "when": null, + "workflow_outputs": [ + { + "label": "Use_me_Scaled", + "output_name": "output_h5ad", + "uuid": "5776dbb9-0cac-40c0-9bae-9accae16a7a0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_pca/scanpy_run_pca/1.8.1+galaxy9", + "errors": null, + "id": 24, + "input_connections": { + "input_obj_file": { + "id": 23, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RunPCA", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 2225.1144284467173, + "top": 251.885462533716 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_pca/scanpy_run_pca/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "59028945c857", + "name": "scanpy_run_pca", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"extra_outputs\": null, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"n_pcs\": \"50\", \"output_format\": \"anndata_h5ad\", \"run_mode\": {\"chunked\": false, \"__current_case__\": 1, \"zero_center\": true, \"svd_solver\": null, \"random_seed\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "e71440f2-7c95-49ae-bb54-17ad4ee206bd", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "608852db-340a-4ddd-9e62-744d0cb77dde" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "errors": null, + "id": 25, + "input_connections": { + "adata": { + "id": 24, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "left": 2502.000045776367, + "top": 122.01560974121094 + }, + "post_job_actions": { + "RenameDatasetActionout_png": { + "action_arguments": { + "newname": "PCA Variance" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "aa0c474463c2", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": false}, \"format\": \"png\", \"method\": {\"method\": \"pl.pca_variance_ratio\", \"__current_case__\": 11, \"n_pcs\": \"50\", \"log\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy1", + "type": "tool", + "uuid": "1b34902c-7a3f-47cb-94c0-b96c6bd7ba1b", + "when": null, + "workflow_outputs": [ + { + "label": "PCA Variance", + "output_name": "out_png", + "uuid": "f0b6f578-050f-4936-9ee7-9956b0760c6f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "errors": null, + "id": 26, + "input_connections": { + "input_obj_file": { + "id": 24, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy ComputeGraph", + "name": "settings" + } + ], + "label": null, + "name": "Scanpy ComputeGraph", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 2502.000045776367, + "top": 255.03124237060547 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "6417cccad133", + "name": "scanpy_compute_graph", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"key_added\": \"\", \"n_neighbors\": \"15\", \"n_neighbors_file\": {\"__class__\": \"RuntimeValue\"}, \"use_rep\": \"X_pca\", \"n_pcs\": \"20\", \"knn\": true, \"method\": \"umap\", \"metric\": \"euclidean\", \"random_seed\": \"0\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "6e66aa61-710a-46f2-bca6-b6e104ff28ca", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "019dc123-b822-47fb-960e-fd48cafc10e1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "errors": null, + "id": 27, + "input_connections": { + "input_obj_file": { + "id": 26, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy RunTSNE", + "name": "settings" + } + ], + "label": null, + "name": "Scanpy RunTSNE", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_embed", + "type": "tabular" + } + ], + "position": { + "left": 2780.0000762939453, + "top": 315.04688262939453 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "181d61d2f3cd", + "name": "scanpy_run_tsne", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"embeddings\": true, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"key_added\": \"\", \"perplexity\": \"30.0\", \"perplexity_file\": {\"__class__\": \"RuntimeValue\"}, \"early_exaggeration\": \"12.0\", \"learning_rate\": \"1000.0\", \"fast_tsne\": false, \"n_job\": null, \"n_pc\": null, \"random_seed\": \"0\"}, \"use_rep\": \"X_pca\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "a09fcea0-184d-472e-a22a-09567f10705d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_embed", + "uuid": "91d7f71d-73df-4955-a0b7-fb86904e3b27" + }, + { + "label": null, + "output_name": "output_h5ad", + "uuid": "2cdbd6fa-f4d7-46c5-83fa-200b8bf48501" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9", + "errors": null, + "id": 28, + "input_connections": { + "input_obj_file": { + "id": 27, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Scanpy RunUMAP", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_embed", + "type": "tabular" + } + ], + "position": { + "left": 3058.000068664551, + "top": 397.04689025878906 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "bd4a244faeb8", + "name": "scanpy_run_umap", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"embeddings\": true, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"key_added\": \"\", \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": true, \"__current_case__\": 0}, \"use_graph\": \"neighbors\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "d657ab30-f8df-410a-a8f8-880b2a1842e1", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "ed6a1cd1-f7dc-4174-a083-6d634dbe1b34" + }, + { + "label": null, + "output_name": "output_embed", + "uuid": "a30c795c-9317-4f04-b206-89088235dc6d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "errors": null, + "id": 29, + "input_connections": { + "input_obj_file": { + "id": 28, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy FindCluster", + "name": "settings" + } + ], + "label": null, + "name": "Scanpy FindCluster", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_txt", + "type": "tsv" + } + ], + "position": { + "left": 3336.0000610351562, + "top": 441.0469055175781 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "2ccd9f9e2cd0", + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"method\": \"louvain\", \"output_cluster\": true, \"output_format\": \"anndata_h5ad\", \"settings\": {\"default\": false, \"__current_case__\": 1, \"neighbors_key\": \"neighbors\", \"layer\": \"\", \"key_added\": \"\", \"resolution\": \"0.6\", \"resolution_file\": {\"__class__\": \"RuntimeValue\"}, \"restrict_to\": \"\", \"use_weights\": false, \"random_seed\": \"0\", \"directed\": true}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "21b1bed3-b826-4219-b99b-22c33061768e", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_txt", + "uuid": "13459467-b675-4076-8529-91a8bedc5501" + }, + { + "label": null, + "output_name": "output_h5ad", + "uuid": "cd0d1987-4c25-4ade-a499-9288342d52aa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy9", + "errors": null, + "id": 30, + "input_connections": { + "input_obj_file": { + "id": 29, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy FindMarkers", + "name": "groupby_file" + } + ], + "label": null, + "name": "Scanpy FindMarkers", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_tsv", + "type": "tabular" + } + ], + "position": { + "left": 3614.0000534057617, + "top": 530.0156402587891 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Final object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + }, + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Markers - cluster" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "81c34e67f262", + "name": "scanpy_find_markers", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"groupby\": \"louvain\", \"groupby_file\": {\"__class__\": \"RuntimeValue\"}, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"n_genes\": \"50\", \"output_format\": \"anndata_h5ad\", \"output_markers\": true, \"settings\": {\"default\": true, \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "bcd329a1-a1b2-401a-9f4e-ba3e01f062a7", + "when": null, + "workflow_outputs": [ + { + "label": "Markers - cluster", + "output_name": "output_tsv", + "uuid": "7cfe5c9c-1c80-41b4-b669-633b1d7d40e3" + }, + { + "label": "Final object", + "output_name": "output_h5ad", + "uuid": "98e98405-951e-4c6c-be01-3c925ae35449" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy9", + "errors": null, + "id": 31, + "input_connections": { + "input_obj_file": { + "id": 29, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy FindMarkers", + "name": "groupby_file" + } + ], + "label": null, + "name": "Scanpy FindMarkers", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + }, + { + "name": "output_tsv", + "type": "tabular" + } + ], + "position": { + "left": 3614.0000534057617, + "top": 1136.0469055175781 + }, + "post_job_actions": { + "HideDatasetActionoutput_h5ad": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_h5ad" + }, + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Markers - genotype" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "81c34e67f262", + "name": "scanpy_find_markers", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"groupby\": \"genotype\", \"groupby_file\": {\"__class__\": \"RuntimeValue\"}, \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"n_genes\": \"50\", \"output_format\": \"anndata_h5ad\", \"output_markers\": true, \"settings\": {\"default\": true, \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "fef645a2-5159-41f6-a910-fd99ca48b513", + "when": null, + "workflow_outputs": [ + { + "label": "Markers - genotype", + "output_name": "output_tsv", + "uuid": "1e9f229d-eb34-4a5b-a6d9-e70c7b0581f4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 32, + "input_connections": { + "input_obj_file": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy PlotEmbed", + "name": "input_obj_file" + } + ], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 3900.885245493235, + "top": 102.06455225986635 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"basis\": \"tsne\", \"color_by\": \"louvain,sex,batch,genotype,Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,log1p_total_counts\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": \"\", \"gene_symbols_field\": \"Symbol\", \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"RuntimeValue\"}, \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "e2f88d64-42c4-42a3-8152-e9d680280a42", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_png", + "uuid": "a3df76e7-84ab-4dc8-a08a-e45e8d2091c7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 33, + "input_connections": { + "input_obj_file": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy PlotEmbed", + "name": "input_obj_file" + } + ], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 3905.3432253483716, + "top": 319.15199020651033 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"basis\": \"umap\", \"color_by\": \"louvain,sex,batch,genotype,Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,log1p_total_counts\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": \"\", \"gene_symbols_field\": \"Symbol\", \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"RuntimeValue\"}, \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "89c6456b-3f1c-4cc1-86c3-2a46debf6da9", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_png", + "uuid": "41663669-5ea9-44e1-bd3d-f9515a6499d4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "errors": null, + "id": 34, + "input_connections": { + "input": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "left": 3902.000045776367, + "top": 535.0468444824219 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "3d748954434b", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"rename_categories\", \"__current_case__\": 3, \"key\": \"louvain\", \"categories\": \"DP-M4,DP-M3,DP-M1,T-mat,DN,DP-L,DP-M2,Macrophages\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "5642c686-66c7-4462-af54-090fe91f83de", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "anndata", + "uuid": "82521e5a-3438-4b2c-8164-fd111c0e9604" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 35, + "input_connections": { + "input_obj_file": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy PlotEmbed", + "name": "input_obj_file" + } + ], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 3902.000045776367, + "top": 731.0312652587891 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"basis\": \"pca\", \"color_by\": \"louvain,sex,batch,genotype,Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,log1p_total_counts\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": \"\", \"gene_symbols_field\": \"Symbol\", \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"RuntimeValue\"}, \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "d6331822-fde8-4172-b28e-0f4089d24901", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_png", + "uuid": "986bfb38-fc90-4b28-aa46-c19856dd5ba9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 36, + "input_connections": { + "input": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "var", + "type": "tabular" + } + ], + "position": { + "left": 3899.770771786677, + "top": 948.0374627272056 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"var\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "58cb02fe-78cc-455c-a5ec-ba7091d909d6", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "var", + "uuid": "60e229a4-73a2-45b4-95ef-894728376f7d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy91", + "errors": null, + "id": 37, + "input_connections": { + "copy_o|obs_sources": { + "id": 34, + "output_name": "anndata" + }, + "input_obj_file": { + "id": 30, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "AnnData Operations", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 4190.000076293945, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy91", + "tool_shed_repository": { + "changeset_revision": "7ebc22f77d86", + "name": "anndata_ops", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_cell_metadata\": {\"default\": false, \"__current_case__\": 1}, \"copy_adata_to_raw\": false, \"copy_e\": {\"default\": false, \"__current_case__\": 1}, \"copy_l\": {\"default\": false, \"__current_case__\": 1}, \"copy_o\": {\"default\": true, \"__current_case__\": 0, \"obs_keys\": [{\"__index__\": 0, \"contains\": \"louvain\"}], \"obs_sources\": {\"__class__\": \"ConnectedValue\"}}, \"copy_r\": {\"default\": false, \"__current_case__\": 1}, \"copy_u\": {\"default\": false, \"__current_case__\": 1}, \"copy_x\": {\"default\": false, \"__current_case__\": 1}, \"field_unique\": null, \"gene_flags\": [], \"gene_symbols_field\": \"index\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"modifications\": [], \"output_format\": \"anndata_h5ad\", \"sanitize_varm\": false, \"top_genes\": \"50\", \"var_modifications\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy91", + "type": "tool", + "uuid": "8e6882a9-3d0b-4b93-b5e9-5852643a7411", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_h5ad", + "uuid": "28b9308e-7f03-44d5-a81b-2e654353f6f8" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 38, + "input_connections": { + "input1": { + "id": 30, + "output_name": "output_tsv" + }, + "input2": { + "id": 36, + "output_name": "var" + } + }, + "inputs": [], + "label": null, + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 4190.000076293945, + "top": 1002.0468902587891 + }, + "post_job_actions": {}, + "tool_id": "join1", + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"field1\": \"4\", \"field2\": \"2\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "6e6e5028-78a9-47d7-8df0-d183075c3da6", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "fb12a596-f691-4045-ac12-a3909b084f3e" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 39, + "input_connections": { + "input1": { + "id": 31, + "output_name": "output_tsv" + }, + "input2": { + "id": 36, + "output_name": "var" + } + }, + "inputs": [], + "label": null, + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 4190.000076293945, + "top": 1187.0468139648438 + }, + "post_job_actions": {}, + "tool_id": "join1", + "tool_state": "{\"__input_ext\": \"tabular\", \"__workflow_invocation_uuid__\": \"190c9dc088ac11eb8307001e67d2ec02\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"field1\": \"4\", \"field2\": \"2\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "5f0e9d28-cad2-4716-8b07-616c521fcce1", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "ddf27680-03a3-44b6-8217-9e8d560f449f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy91", + "errors": null, + "id": 40, + "input_connections": { + "input_obj_file": { + "id": 37, + "output_name": "output_h5ad" + } + }, + "inputs": [], + "label": null, + "name": "AnnData Operations", + "outputs": [ + { + "name": "output_h5ad", + "type": "h5ad" + } + ], + "position": { + "left": 4468.000030517578, + "top": 25.859375 + }, + "post_job_actions": { + "RenameDatasetActionoutput_h5ad": { + "action_arguments": { + "newname": "Final cell annotated object" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_h5ad" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy91", + "tool_shed_repository": { + "changeset_revision": "7ebc22f77d86", + "name": "anndata_ops", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_cell_metadata\": {\"default\": false, \"__current_case__\": 1}, \"copy_adata_to_raw\": false, \"copy_e\": {\"default\": false, \"__current_case__\": 1}, \"copy_l\": {\"default\": false, \"__current_case__\": 1}, \"copy_o\": {\"default\": false, \"__current_case__\": 1}, \"copy_r\": {\"default\": false, \"__current_case__\": 1}, \"copy_u\": {\"default\": false, \"__current_case__\": 1}, \"copy_x\": {\"default\": false, \"__current_case__\": 1}, \"field_unique\": null, \"gene_flags\": [], \"gene_symbols_field\": \"index\", \"input_obj_file\": {\"__class__\": \"ConnectedValue\"}, \"modifications\": [{\"__index__\": 0, \"from_obs\": \"louvain_0\", \"to_obs\": \"cell_type\", \"keep_original\": false, \"make_unique\": false}], \"output_format\": \"anndata_h5ad\", \"sanitize_varm\": false, \"top_genes\": \"50\", \"var_modifications\": [], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy91", + "type": "tool", + "uuid": "4afeffe6-16b4-4a59-baef-ca0f15a6a6db", + "when": null, + "workflow_outputs": [ + { + "label": "Final cell annotated object", + "output_name": "output_h5ad", + "uuid": "10bd70f8-ffcb-442b-9647-e5b947b6d35e" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 41, + "input_connections": { + "input": { + "id": 38, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 4468.000030517578, + "top": 1040.0468444824219 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Markers - cluster - named" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c2,c3,c4,c11,c5,c6,c7,c8\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "25c9cbaf-4543-455e-bc1f-22b57cb2d8be", + "when": null, + "workflow_outputs": [ + { + "label": "Markers - cluster - named", + "output_name": "out_file1", + "uuid": "4f822c1c-91c5-4be4-8f9b-d5bdda0a037e" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 42, + "input_connections": { + "input": { + "id": 39, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 4468.000030517578, + "top": 1225.0468444824219 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Markers - genotype - named" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c2,c3,c4,c11,c5,c6,c7,c8\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "7f87b07e-5b61-4429-a8d3-25d2f7f778ac", + "when": null, + "workflow_outputs": [ + { + "label": "Markers - genotype - named", + "output_name": "out_file1", + "uuid": "3b471f3d-263d-4299-9b7d-8a8ae1aa556e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "errors": null, + "id": 43, + "input_connections": { + "input_obj_file": { + "id": 40, + "output_name": "output_h5ad" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy PlotEmbed", + "name": "input_obj_file" + } + ], + "label": null, + "name": "Scanpy PlotEmbed", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 4653.500061035156, + "top": 257.28126525878906 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "tool_shed_repository": { + "changeset_revision": "35f6611fb8c3", + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"basis\": \"umap\", \"color_by\": \"sex,batch,genotype,Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,Hba-a1,log1p_total_counts,cell_type\", \"components\": \"\", \"edges\": false, \"edges_color\": \"\", \"edges_width\": \"0.1\", \"fig_dpi\": \"80\", \"fig_fontsize\": \"10\", \"fig_frame\": false, \"fig_size\": \"4,4\", \"fig_title\": \"\", \"gene_symbols_field\": \"Symbol\", \"groups\": \"\", \"input_format\": \"anndata\", \"input_obj_file\": {\"__class__\": \"RuntimeValue\"}, \"layer\": \"\", \"legend_fontsize\": \"15\", \"legend_loc\": \"right margin\", \"neighbors_key\": \"\", \"point_size\": null, \"projection\": \"2d\", \"sort_order\": false, \"use_raw\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.1+galaxy9", + "type": "tool", + "uuid": "d0930dc2-d747-49ff-ac8a-32bdda581012", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output_png", + "uuid": "180f366c-6007-4b0a-9c59-b05e2e4bb757" + } + ] + } + ], + "parent_id": "single-cell/scrna-case_basic-pipeline", + "path": "topics/single-cell/tutorials/scrna-case_basic-pipeline/workflows/Filter,-Plot-and-Explore-Single-cell-RNA-seq-Data-updated.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "Filter, Plot and Explore Single-cell RNA-seq Data updated", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_basic-pipeline/versions/filter--plot-and-explore-single-cell-rna-seq-data-updated", + "tutorial_id": "scrna-case_basic-pipeline", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_basic-pipeline/workflows/Filter,-Plot-and-Explore-Single-cell-RNA-seq-Data-updated.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_basic-pipeline/workflows/Filter,-Plot-and-Explore-Single-cell-RNA-seq-Data-updated.html", + "version": 1, + "wfid": "single-cell-scrna-case_basic-pipeline", + "wfname": "filter--plot-and-explore-single-cell-rna-seq-data-updated", + "workflow": "Filter,-Plot-and-Explore-Single-cell-RNA-seq-Data-updated.ga", + "workflow_tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/anndata_ops/anndata_ops/1.8.1+galaxy91", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_cells/scanpy_filter_cells/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_filter_genes/scanpy_filter_genes/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_markers/scanpy_find_markers/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_variable_genes/scanpy_find_variable_genes/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_normalise_data/scanpy_normalise_data/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_pca/scanpy_run_pca/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_tsne/scanpy_run_tsne/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_umap/scanpy_run_umap/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_scale_data/scanpy_scale_data/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy1" + ], + "workflowhub_id": "1212" + } + ], + "zenodo_link": "https://zenodo.org/record/7053673" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "anndata_import", + "owner": "iuc", + "revisions": "55e35e9203cf", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "9bd945a03d7b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "revisions": "aaa5da8e73a9", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_filter", + "owner": "iuc", + "revisions": "b409c2486353", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_inspect", + "owner": "iuc", + "revisions": "c5d3684f7c4c", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_normalize", + "owner": "iuc", + "revisions": "ab55fe8030b6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot", + "owner": "iuc", + "revisions": "6adf98e782f3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_remove_confounders", + "owner": "iuc", + "revisions": "bf2017df9837", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: anndata_import\n owner: iuc\n revisions: 55e35e9203cf\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: 9bd945a03d7b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_cluster_reduce_dimension\n owner: iuc\n revisions: aaa5da8e73a9\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_filter\n owner: iuc\n revisions: b409c2486353\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_inspect\n owner: iuc\n revisions: c5d3684f7c4c\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_normalize\n owner: iuc\n revisions: ab55fe8030b6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot\n owner: iuc\n revisions: 6adf98e782f3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_remove_confounders\n owner: iuc\n revisions: bf2017df9837\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plant/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "email": "beatrizserrano.galaxy@gmail.com", + "id": "beatrizserrano", + "joined": "2020-07", + "linkedin": "beatriz-serrano", + "matrix": "beatrizserrano:matrix.org", + "name": "Beatriz Serrano-Solano", + "orcid": "0000-0002-5862-6132", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/beatrizserrano/", + "twitter": "BSerranoSolano", + "url": "https://training.galaxyproject.org/training-material/api/contributors/beatrizserrano.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-plant", + "edam_operation": [ + "Differential gene expression analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "gitter": "Galaxy-Training-Network/galaxy-single-cell", + "hands_on": true, + "id": "single-cell/scrna-plant", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Filtering parameters are dependent on the dataset, and should be explored using scatter or violin plots", + "A DotPlot is a fantastic way to validate clusters across different analyses" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Perform filtering, dimensionality reduction, and clustering", + "Generate a DotPlot emulating the original paper using a different analysis tool", + "Determine robust clusters across scRNA-seq pipelines" + ], + "pageviews": 2387, + "priority": 3, + "pub_date": "2021-04-08", + "questions": [ + "Can we reclaim cell markers using a different analysis method?", + "Are highly variable genes paramount to the analysis?" + ], + "recordings": [ + { + "captioners": [ + "mtekman" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "55M", + "speakers": [ + "mtekman" + ], + "youtube_id": "yKlJ5ESri7o" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-plant/tutorial", + "/short/single-cell/scrna-plant", + "/short/T00250" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-scanpy-pbmc3k" + ], + "type": "internal" + } + ], + "short_id": "T00250", + "short_tools": [ + "anndata_manipulate", + "scanpy_inspect", + "scanpy_plot", + "scanpy_normalize", + "scanpy_cluster_reduce_dimension", + "anndata_import", + "scanpy_filter", + "scanpy_remove_confounders" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "end-to-end", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "plants", + "paper-replication" + ], + "time_estimation": "2H", + "title": "Analysis of plant scRNA-Seq Data with Scanpy", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.7.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_remove_confounders/scanpy_remove_confounders/1.7.1+galaxy0" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-plant", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-plant/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plant/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plant/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 85, + "visitors": 1878, + "workflows": [ + { + "creators": [], + "description": "Downstream Single-cell RNA Plant analysis with ScanPy", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nLeiden Resolution\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSHR CSV.gz\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nWT CSV.gz\"]\n 3[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMin Genes\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMin Cells\"]\n 5[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMax Features\"]\n 6[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMax Lib Size\"]\n 7[label=\"Import Anndata and loom\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"Import Anndata and loom\"]\n 2 -> 8 [label=\"output\"]\n 9[label=\"Manipulate AnnData\"]\n 7 -> 9 [label=\"anndata\"]\n 8 -> 9 [label=\"anndata\"]\n 10[label=\"Rename Batches\"]\n 9 -> 10 [label=\"anndata\"]\n k680180f6edfc4f66b2657a63aaa22b39[color=lightseagreen,label=\"Output\\nscRNA Concatenated Datasets\"]\n 10 -> k680180f6edfc4f66b2657a63aaa22b39\n 11[label=\"QC metrics\"]\n 10 -> 11 [label=\"anndata\"]\n 12[label=\"Filter genes\"]\n 11 -> 12 [label=\"anndata_out\"]\n 3 -> 12 [label=\"output\"]\n 13[label=\"Plot Violin\"]\n 11 -> 13 [label=\"anndata_out\"]\n 14[label=\"Filter Cells\"]\n 12 -> 14 [label=\"anndata_out\"]\n 4 -> 14 [label=\"output\"]\n 15[label=\"Filter Max Features\"]\n 14 -> 15 [label=\"anndata_out\"]\n 5 -> 15 [label=\"output\"]\n 16[label=\"Filter Max Library Size\"]\n 15 -> 16 [label=\"anndata\"]\n 6 -> 16 [label=\"output\"]\n 17[label=\"Save RAW\"]\n 16 -> 17 [label=\"anndata\"]\n 18[label=\"Norm to 1e4\"]\n 17 -> 18 [label=\"anndata\"]\n 19[label=\"Log1p\"]\n 18 -> 19 [label=\"anndata_out\"]\n 20[label=\"Regress total counts\"]\n 19 -> 20 [label=\"anndata_out\"]\n 21[label=\"Scale\"]\n 20 -> 21 [label=\"anndata_out\"]\n 22[label=\"PCA\"]\n 21 -> 22 [label=\"anndata_out\"]\n 23[label=\"Neighborhod\"]\n 22 -> 23 [label=\"anndata_out\"]\n 24[label=\"UMAP\"]\n 23 -> 24 [label=\"anndata_out\"]\n 25[label=\"Leiden\"]\n 24 -> 25 [label=\"anndata_out\"]\n 0 -> 25 [label=\"output\"]\n k48cf046584ba461abdb961625626de42[color=lightseagreen,label=\"Output\\nscRNA with clusters Dataset\"]\n 25 -> k48cf046584ba461abdb961625626de42\n 26[label=\"Plot PCA batch\"]\n 24 -> 26 [label=\"anndata_out\"]\n 27[label=\"Plot UMAP batch\"]\n 24 -> 27 [label=\"anndata_out\"]\n 28[label=\"Plot UMAP leiden, batch\"]\n 25 -> 28 [label=\"anndata_out\"]\n 29[label=\"Rename Clusters\"]\n 25 -> 29 [label=\"anndata_out\"]\n 30[label=\"Complex DotPlot\"]\n 25 -> 30 [label=\"anndata_out\"]\n 31[label=\"Complex DotPlot with new labels\"]\n 29 -> 31 [label=\"anndata\"]\n 32[label=\"Plot UMAP with new labels\"]\n 29 -> 32 [label=\"anndata\"]\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Leiden Resolution" + } + ], + "label": "Leiden Resolution", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 195.5, + "height": 84, + "left": 121.5, + "right": 321.5, + "top": 111.5, + "width": 200, + "x": 121.5, + "y": 111.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 0.35, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "eddf8108-6913-40d2-819d-a84677dee3f4", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SHR (CSV.gz)" + } + ], + "label": "SHR (CSV.gz)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 302, + "height": 84, + "left": 116, + "right": 316, + "top": 218, + "width": 200, + "x": 116, + "y": 218 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4cf4f111-d63b-47ad-bcbf-8ebb290b3431", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "WT (CSV.gz)" + } + ], + "label": "WT (CSV.gz)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 403, + "height": 84, + "left": 114, + "right": 314, + "top": 319, + "width": 200, + "x": 114, + "y": 319 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "94fba59a-ba9d-452d-b325-cb558201f674", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Min Genes" + } + ], + "label": "Min Genes", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 503.75, + "height": 64.25, + "left": 16, + "right": 216, + "top": 439.5, + "width": 200, + "x": 16, + "y": 439.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 100, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "c9a62328-f049-43b6-92fb-df5c42982573", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Min Cells" + } + ], + "label": "Min Cells", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 578.75, + "height": 64.25, + "left": 17, + "right": 217, + "top": 514.5, + "width": 200, + "x": 17, + "y": 514.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 2, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "7bf5f0e1-b482-45c3-9bcb-10ca93e6b7dc", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Max Features" + } + ], + "label": "Max Features", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 671.5, + "height": 84, + "left": 23, + "right": 223, + "top": 587.5, + "width": 200, + "x": 23, + "y": 587.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 12000.0, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "8902a917-75fb-49c6-9e5d-15f87bd91d46", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Max Lib Size" + } + ], + "label": "Max Lib Size", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 764.5, + "height": 84, + "left": 15, + "right": 215, + "top": 680.5, + "width": 200, + "x": 15, + "y": 680.5 + }, + "tool_id": null, + "tool_state": "{\"default\": 120000.0, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "db068cdb-53c4-48a3-95c2-141fa83c271b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nLeiden Resolution\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSHR CSV.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nWT CSV.gz\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Parameter\\nMin Genes\"];\n style 3 fill:#ded,stroke:#393,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nMin Cells\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Parameter\\nMax Features\"];\n style 5 fill:#ded,stroke:#393,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Parameter\\nMax Lib Size\"];\n style 6 fill:#ded,stroke:#393,stroke-width:4px;\n 7[\"Import Anndata and loom\"];\n 1 -->|output| 7;\n 8[\"Import Anndata and loom\"];\n 2 -->|output| 8;\n 9[\"Manipulate AnnData\"];\n 7 -->|anndata| 9;\n 8 -->|anndata| 9;\n 10[\"Rename Batches\"];\n 9 -->|anndata| 10;\n 680180f6-edfc-4f66-b265-7a63aaa22b39[\"Output\\nscRNA Concatenated Datasets\"];\n 10 --> 680180f6-edfc-4f66-b265-7a63aaa22b39;\n style 680180f6-edfc-4f66-b265-7a63aaa22b39 stroke:#2c3143,stroke-width:4px;\n 11[\"QC metrics\"];\n 10 -->|anndata| 11;\n 12[\"Filter genes\"];\n 11 -->|anndata_out| 12;\n 3 -->|output| 12;\n 13[\"Plot Violin\"];\n 11 -->|anndata_out| 13;\n 14[\"Filter Cells\"];\n 12 -->|anndata_out| 14;\n 4 -->|output| 14;\n 15[\"Filter Max Features\"];\n 14 -->|anndata_out| 15;\n 5 -->|output| 15;\n 16[\"Filter Max Library Size\"];\n 15 -->|anndata| 16;\n 6 -->|output| 16;\n 17[\"Save RAW\"];\n 16 -->|anndata| 17;\n 18[\"Norm to 1e4\"];\n 17 -->|anndata| 18;\n 19[\"Log1p\"];\n 18 -->|anndata_out| 19;\n 20[\"Regress total counts\"];\n 19 -->|anndata_out| 20;\n 21[\"Scale\"];\n 20 -->|anndata_out| 21;\n 22[\"PCA\"];\n 21 -->|anndata_out| 22;\n 23[\"Neighborhod\"];\n 22 -->|anndata_out| 23;\n 24[\"UMAP\"];\n 23 -->|anndata_out| 24;\n 25[\"Leiden\"];\n 24 -->|anndata_out| 25;\n 0 -->|output| 25;\n 48cf0465-84ba-461a-bdb9-61625626de42[\"Output\\nscRNA with clusters Dataset\"];\n 25 --> 48cf0465-84ba-461a-bdb9-61625626de42;\n style 48cf0465-84ba-461a-bdb9-61625626de42 stroke:#2c3143,stroke-width:4px;\n 26[\"Plot PCA batch\"];\n 24 -->|anndata_out| 26;\n 27[\"Plot UMAP batch\"];\n 24 -->|anndata_out| 27;\n 28[\"Plot UMAP leiden, batch\"];\n 25 -->|anndata_out| 28;\n 29[\"Rename Clusters\"];\n 25 -->|anndata_out| 29;\n 30[\"Complex DotPlot\"];\n 25 -->|anndata_out| 30;\n 31[\"Complex DotPlot with new labels\"];\n 29 -->|anndata| 31;\n 32[\"Plot UMAP with new labels\"];\n 29 -->|anndata| 32;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "scRNA Plant Analysis", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Rename Batches", + "name": "Manipulate AnnData", + "outputs": [ + { + "name": "anndata", + "type": "h5ad" + } + ], + "position": { + "bottom": 354.3999938964844, + "height": 136.39999389648438, + "left": 955, + "right": 1155, + "top": 218, + "width": 200, + "x": 955, + "y": 218 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8db95f488f0f", + "name": "anndata_manipulate", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"manipulate\": {\"function\": \"rename_categories\", \"__current_case__\": 3, \"key\": \"batch\", \"categories\": \"shr, wt\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy0", + "type": "tool", + "uuid": "0a25ffc3-ac58-4c17-9f22-b4127952027a", + "workflow_outputs": [ + { + "label": "scRNA Concatenated Datasets", + "output_name": "anndata", + "uuid": "680180f6-edfc-4f66-b265-7a63aaa22b39" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 13, + "input_connections": { + "adata": { + "id": 11, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Plot Violin", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 259.8000030517578, + "height": 116.65000915527344, + "left": 1867.2833251953125, + "right": 2067.2833251953125, + "top": 143.14999389648438, + "width": 200, + "x": 1867.2833251953125, + "y": 143.14999389648438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.violin\", \"__current_case__\": 3, \"key_variables\": {\"type\": \"custom\", \"__current_case__\": 2, \"keys\": \"n_genes_by_counts, total_counts\"}, \"groupby\": \"batch\", \"log\": \"false\", \"use_raw\": \"false\", \"violin_plot\": {\"stripplot\": {\"stripplot\": \"True\", \"__current_case__\": 0, \"jitter\": {\"jitter\": \"True\", \"__current_case__\": 0, \"size\": \"0.4\"}}, \"multi_panel\": {\"multi_panel\": \"True\", \"__current_case__\": 0, \"width\": null, \"height\": null}, \"scale\": \"width\"}, \"xlabel\": \"\", \"rotation\": null, \"seaborn_violinplot\": {\"bw\": \"scott\", \"orient\": null, \"linewidth\": \"0.0\", \"color\": \"AliceBlue\", \"saturation\": \"0.75\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "9dfc1e59-71aa-40b8-b504-2498a8dc5409", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "2fb1d919-0e60-4c81-92d2-83c28b1ef654" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "errors": null, + "id": 25, + "input_connections": { + "adata": { + "id": 24, + "output_name": "anndata_out" + }, + "method|resolution": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Leiden", + "name": "Cluster, infer trajectories and embed", + "outputs": [ + { + "name": "anndata_out", + "type": "h5ad" + } + ], + "position": { + "bottom": 562.0500030517578, + "height": 147.0500030517578, + "left": 1389, + "right": 1589, + "top": 415, + "width": 200, + "x": 1389, + "y": 415 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "35bc2eb568ed", + "name": "scanpy_cluster_reduce_dimension", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"method\": {\"method\": \"tl.leiden\", \"__current_case__\": 1, \"resolution\": {\"__class__\": \"ConnectedValue\"}, \"random_state\": \"0\", \"key_added\": \"leiden\", \"use_weights\": \"false\", \"n_iterations\": \"-1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "99494ea7-377c-4f3d-a45a-18bfd81b7888", + "workflow_outputs": [ + { + "label": "scRNA with clusters Dataset", + "output_name": "anndata_out", + "uuid": "48cf0465-84ba-461a-bdb9-61625626de42" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 26, + "input_connections": { + "adata": { + "id": 24, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Plot PCA (batch)", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 277.5500030517578, + "height": 136.40000915527344, + "left": 1629.433349609375, + "right": 1829.433349609375, + "top": 141.14999389648438, + "width": 200, + "x": 1629.433349609375, + "y": 141.14999389648438 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.pca\", \"__current_case__\": 9, \"color\": \"batch\", \"use_raw\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": null, \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "e2daa4c6-9a39-4c42-852e-4f61b65202c2", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "72d1a264-3ace-4d2e-910a-5e2a0fa6721f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 27, + "input_connections": { + "adata": { + "id": 24, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Plot UMAP (batch)", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 406.3999938964844, + "height": 136.39999389648438, + "left": 1862, + "right": 2062, + "top": 270, + "width": 200, + "x": 1862, + "y": 270 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"batch\", \"use_raw\": \"false\", \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": \"14\", \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "e70d8e14-1983-4381-8feb-bba7d5dbb4d6", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "c223e762-7e90-41e1-b354-bbe6e278b5c0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 28, + "input_connections": { + "adata": { + "id": 25, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Plot UMAP (leiden, batch)", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 442.5500030517578, + "height": 136.40000915527344, + "left": 1630.433349609375, + "right": 1830.433349609375, + "top": 306.1499938964844, + "width": 200, + "x": 1630.433349609375, + "y": 306.1499938964844 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"leiden, batch\", \"use_raw\": \"false\", \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"right margin\", \"legend_fontsize\": \"14\", \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "b88358ff-0dda-4c2e-bce6-124a0ab8fa28", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "26c65cd9-74aa-4574-a5f3-ac10caced4da" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 30, + "input_connections": { + "adata": { + "id": 25, + "output_name": "anndata_out" + } + }, + "inputs": [], + "label": "Complex DotPlot", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 557.3999938964844, + "height": 136.39999389648438, + "left": 1861, + "right": 2061, + "top": 421, + "width": 200, + "x": 1861, + "y": 421 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.dotplot\", \"__current_case__\": 2, \"var_names\": {\"type\": \"custom\", \"__current_case__\": 1, \"var_names\": \"AT1G26680,COBL2,AT3G55180,NCED2,AT5G22550,ATL63,RGF8,TEL1,DUF9,AGL42,PLT1,PLT2,PER3,PER9,PBL15,TBL30,AT2G48130,AT3G22620,AED3,T3P18-7,MBK21-8,NPF6-4,CYP71B34,IAMT1,AT1G31950,F14G6-22,GL2,ANL2,PMEI4,MUD21-4,EXPA7,MES15,ADF8,COBL9,TPR14,BHLH144,MYB83,SCPL35,MYB46,COBL4,PIN7,PIN3 \"}, \"groupby\": \"leiden\", \"num_categories\": \"9\", \"log\": \"false\", \"use_raw\": \"true\", \"dendrogram\": \"false\", \"var_group_positions\": [{\"__index__\": 0, \"start\": \"0\", \"end\": \"5\", \"label\": \"Columella\"}, {\"__index__\": 1, \"start\": \"6\", \"end\": \"9\", \"label\": \"QC\"}, {\"__index__\": 2, \"start\": \"10\", \"end\": \"11\", \"label\": \"NC\"}, {\"__index__\": 3, \"start\": \"12\", \"end\": \"17\", \"label\": \"Endodermis\"}, {\"__index__\": 4, \"start\": \"18\", \"end\": \"23\", \"label\": \"Cortex\"}, {\"__index__\": 5, \"start\": \"24\", \"end\": \"29\", \"label\": \"Atrichoblast\"}, {\"__index__\": 6, \"start\": \"30\", \"end\": \"34\", \"label\": \"Trichoblast\"}, {\"__index__\": 7, \"start\": \"35\", \"end\": \"39\", \"label\": \"Xylem\"}, {\"__index__\": 8, \"start\": \"40\", \"end\": \"41\", \"label\": \"VC\"}], \"var_group_rotation\": null, \"figsize\": {\"test\": \"no\", \"__current_case__\": 1}, \"layer\": \"\", \"color_map\": \"viridis\", \"dot_max\": null, \"dot_min\": null, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "625a157f-f08f-4137-a27b-721bee0feb59", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "b35ffb5a-5f29-4105-a016-c02ceee0d9da" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 31, + "input_connections": { + "adata": { + "id": 29, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Complex DotPlot with new labels", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 733.4666748046875, + "height": 156.79998779296875, + "left": 1860.449951171875, + "right": 2060.449951171875, + "top": 576.6666870117188, + "width": 200, + "x": 1860.449951171875, + "y": 576.6666870117188 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.dotplot\", \"__current_case__\": 2, \"var_names\": {\"type\": \"custom\", \"__current_case__\": 1, \"var_names\": \"AT1G26680,COBL2,AT3G55180,NCED2,AT5G22550,ATL63,RGF8,TEL1,DUF9,AGL42,PLT1,PLT2,PER3,PER9,PBL15,TBL30,AT2G48130,AT3G22620,AED3,T3P18-7,MBK21-8,NPF6-4,CYP71B34,IAMT1,AT1G31950,F14G6-22,GL2,ANL2,PMEI4,MUD21-4,EXPA7,MES15,ADF8,COBL9,TPR14,BHLH144,MYB83,SCPL35,MYB46,COBL4,PIN7,PIN3 \"}, \"groupby\": \"leiden\", \"num_categories\": \"9\", \"log\": \"false\", \"use_raw\": \"true\", \"dendrogram\": \"false\", \"var_group_positions\": [{\"__index__\": 0, \"start\": \"0\", \"end\": \"5\", \"label\": \"Columella\"}, {\"__index__\": 1, \"start\": \"6\", \"end\": \"9\", \"label\": \"QC\"}, {\"__index__\": 2, \"start\": \"10\", \"end\": \"11\", \"label\": \"NC\"}, {\"__index__\": 3, \"start\": \"12\", \"end\": \"17\", \"label\": \"Endodermis\"}, {\"__index__\": 4, \"start\": \"18\", \"end\": \"23\", \"label\": \"Cortex\"}, {\"__index__\": 5, \"start\": \"24\", \"end\": \"29\", \"label\": \"Atrichoblast\"}, {\"__index__\": 6, \"start\": \"30\", \"end\": \"34\", \"label\": \"Trichoblast\"}, {\"__index__\": 7, \"start\": \"35\", \"end\": \"39\", \"label\": \"Xylem\"}, {\"__index__\": 8, \"start\": \"40\", \"end\": \"41\", \"label\": \"VC\"}], \"var_group_rotation\": null, \"figsize\": {\"test\": \"no\", \"__current_case__\": 1}, \"layer\": \"\", \"color_map\": \"viridis\", \"dot_max\": null, \"dot_min\": null, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "a2f04375-1e67-4764-ae78-2678dcf2c03a", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "329e95de-cf53-4c0b-9a9b-ad30632ceeb8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "errors": null, + "id": 32, + "input_connections": { + "adata": { + "id": 29, + "output_name": "anndata" + } + }, + "inputs": [], + "label": "Plot UMAP with new labels", + "name": "Plot", + "outputs": [ + { + "name": "out_png", + "type": "png" + } + ], + "position": { + "bottom": 885.3999938964844, + "height": 136.39999389648438, + "left": 1863, + "right": 2063, + "top": 749, + "width": 200, + "x": 1863, + "y": 749 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6adf98e782f3", + "name": "scanpy_plot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adata\": {\"__class__\": \"ConnectedValue\"}, \"advanced_common\": {\"show_log\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"format\": \"png\", \"method\": {\"method\": \"pl.umap\", \"__current_case__\": 14, \"color\": \"leiden, batch\", \"use_raw\": \"false\", \"edges\": {\"edges\": \"False\", \"__current_case__\": 1}, \"arrows\": \"false\", \"sort_order\": \"true\", \"groups\": \"\", \"plot\": {\"components\": [], \"projection\": \"2d\", \"legend_loc\": \"on data\", \"legend_fontsize\": \"14\", \"legend_fontweight\": \"normal\", \"size\": null, \"color_map\": \"None\", \"palette\": \"rainbow\", \"frameon\": \"true\", \"ncols\": \"4\", \"wspace\": \"0.1\", \"hspace\": \"0.25\", \"title\": \"\"}, \"matplotlib_pyplot_scatter\": {\"alpha\": null, \"vmin\": null, \"vmax\": null, \"linewidths\": \"0.0\", \"edgecolors\": \"face\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.1+galaxy0", + "type": "tool", + "uuid": "c83c81b0-cd9e-41c5-8b72-4b024b7260dc", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_png", + "uuid": "579d19d3-a98c-4e3a-92aa-0b65e2ffcefd" + } + ] + } + ], + "parent_id": "single-cell/scrna-plant", + "path": "topics/single-cell/tutorials/scrna-plant/workflows/main_workflow.ga", + "tags": [ + "transcriptomics", + "single-cell" + ], + "test_results": null, + "tests": false, + "title": "scRNA Plant Analysis", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-plant/versions/main-workflow", + "tutorial_id": "scrna-plant", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-plant/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-plant/workflows/main_workflow.html", + "version": 1, + "wfid": "single-cell-scrna-plant", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_import/anndata_import/0.7.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_cluster_reduce_dimension/scanpy_cluster_reduce_dimension/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_filter/scanpy_filter/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_inspect/scanpy_inspect/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_normalize/scanpy_normalize/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_plot/scanpy_plot/1.7.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/scanpy_remove_confounders/scanpy_remove_confounders/1.7.1+galaxy0" + ], + "workflowhub_id": "1266" + } + ], + "zenodo_link": "https://zenodo.org/record/4597857" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plates-batches-barcodes/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "email": "a.ostrovsky@mac.com", + "id": "astrovsky01", + "joined": "2019-06", + "name": "Alex Ostrovsky", + "orcid": "0000-0002-7901-7109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/astrovsky01.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-plates-batches-barcodes", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "single-cell/scrna-plates-batches-barcodes", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 7126, + "mermaid": false + }, + "key_points": [ + "Balanced batches and replicates allow bioinformatic batch correction", + "A sequencing lane often contains multiple batches, and is itself a batch effect!" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-10-10", + "objectives": [ + "How to set up plates to prevent batch effect", + "Proper naming conventions when dealing with scRNA-seq samples" + ], + "pageviews": 5726884, + "priority": 3, + "pub_date": "2019-02-16", + "questions": [ + "What is a batch when it comes to single cells?", + "What\u2019s the difference between a barcode and an index?", + "What is batch effect and how do you prevent it?", + "What is a lane?" + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-plates-batches-barcodes/slides", + "/short/single-cell/scrna-plates-batches-barcodes/slides", + "/short/S00085" + ], + "short_id": "S00085", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "scintroduction", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": null, + "time_estimation": "1h", + "title": "Plates, Batches, and Barcodes", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "scrna-plates-batches-barcodes", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-plates-batches-barcodes/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plates-batches-barcodes/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-plates-batches-barcodes/slides.json" + }, + "version": 2, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_JUPYTER-trajectories/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist", + "wee-snufkin", + "mtekman" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_JUPYTER-trajectories", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/scrna-case_JUPYTER-trajectories", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Trajectory analysis is less robust than pure plotting methods, as such 'inferred relationships' are a bigger mathematical leap", + "As always with single-cell analysis, you must know enough biology to deduce if your analysis is reasonable, before exploring or deducing novel insight" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "notebook": { + "language": "python", + "snippet": "topics/single-cell/tutorials/scrna-case_JUPYTER-trajectories/preamble.md" + }, + "objectives": [ + "Execute multiple plotting methods designed to maintain lineage relationships between cells", + "Interpret these plots" + ], + "pageviews": 3234, + "priority": 3, + "pub_date": "2021-04-07", + "questions": [ + "How can I infer lineage relationships between single cells based on their RNA, without a time series?" + ], + "recordings": [ + { + "captioners": [ + "nomadscientist" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "10M", + "speakers": [ + "nomadscientist" + ], + "youtube_id": "VEyTmwDIgPI" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-JUPYTER-trajectories/tutorial", + "/topics/transcriptomics/tutorials/scrna-case_JUPYTER-trajectories/tutorial", + "/short/single-cell/scrna-case_JUPYTER-trajectories", + "/short/T00244" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets", + "scrna-case_basic-pipeline" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "galaxy-intro-jupyter" + ], + "type": "internal" + } + ], + "short_id": "T00244", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS-code", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication", + "Python" + ], + "time_estimation": "2H", + "title": "Inferring single cell trajectories with Scanpy (Python)", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_JUPYTER-trajectories", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_JUPYTER-trajectories/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_JUPYTER-trajectories/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_JUPYTER-trajectories/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 80, + "visitors": 2724, + "zenodo_link": "https://zenodo.org/record/7075718" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "retrieve_scxa", + "owner": "ebi-gxa", + "revisions": "72b6e1747e37", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_filter_cells", + "owner": "ebi-gxa", + "revisions": "cd9f564bd63f", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_find_clusters", + "owner": "ebi-gxa", + "revisions": "d541e9e62beb", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_find_markers", + "owner": "ebi-gxa", + "revisions": "07fc9f4841b3", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_find_neighbours", + "owner": "ebi-gxa", + "revisions": "ba897c57bdd9", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_find_variable_genes", + "owner": "ebi-gxa", + "revisions": "948fc0276b4f", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_normalise_data", + "owner": "ebi-gxa", + "revisions": "3f49bc9c9213", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_plot", + "owner": "ebi-gxa", + "revisions": "95d79f1134f0", + "tool_panel_section_label": "HCA-Scanpy", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_read10x", + "owner": "ebi-gxa", + "revisions": "f5db0e853f57", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_run_pca", + "owner": "ebi-gxa", + "revisions": "8ded486b0014", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_run_umap", + "owner": "ebi-gxa", + "revisions": "b9424c715a0d", + "tool_panel_section_label": "HCA-Scanpy", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seurat_scale_data", + "owner": "ebi-gxa", + "revisions": "5e9ba303f9e1", + "tool_panel_section_label": "Seurat", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: retrieve_scxa\n owner: ebi-gxa\n revisions: 72b6e1747e37\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_filter_cells\n owner: ebi-gxa\n revisions: cd9f564bd63f\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_find_clusters\n owner: ebi-gxa\n revisions: d541e9e62beb\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_find_markers\n owner: ebi-gxa\n revisions: 07fc9f4841b3\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_find_neighbours\n owner: ebi-gxa\n revisions: ba897c57bdd9\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_find_variable_genes\n owner: ebi-gxa\n revisions: 948fc0276b4f\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_normalise_data\n owner: ebi-gxa\n revisions: 3f49bc9c9213\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_plot\n owner: ebi-gxa\n revisions: 95d79f1134f0\n tool_panel_section_label: HCA-Scanpy\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_read10x\n owner: ebi-gxa\n revisions: f5db0e853f57\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_run_pca\n owner: ebi-gxa\n revisions: 8ded486b0014\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_run_umap\n owner: ebi-gxa\n revisions: b9424c715a0d\n tool_panel_section_label: HCA-Scanpy\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seurat_scale_data\n owner: ebi-gxa\n revisions: 5e9ba303f9e1\n tool_panel_section_label: Seurat\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_FilterPlotandExplore_SeuratTools/tutorial.json", + "contributions": { + "authorship": [ + "Camila-goclowski", + "pcm32" + ], + "editing": [ + "pavanvidem", + "hexylena" + ] + }, + "contributors": [ + { + "email": "camila.goclowski@gmail.com", + "id": "Camila-goclowski", + "joined": "2023-01", + "linkedin": "camila-goclowski", + "name": "Camila Goclowski", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Camila-goclowski/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Camila-goclowski.json" + }, + { + "id": "pcm32", + "joined": "2019-06", + "name": "Pablo Moreno", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pcm32/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pcm32.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_FilterPlotandExplore_SeuratTools", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/scrna-case_FilterPlotandExplore_SeuratTools", + "inexact_supported_servers": [], + "input_histories": [ + { + "history": "https://singlecell.usegalaxy.eu/u/camila-goclowski/h/tool-based-seurat-fpe-input-data", + "label": "UseGalaxy.eu" + } + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-13", + "objectives": [ + "Interpret quality control plots to direct parameter decisions", + "Repeat analysis from matrix to clustering to labelling clusters", + "Identify decision-making points", + "Appraise data outputs and decisions", + "Explain why single cell analysis is an iterative process (i.e. the first plots you generate are not final, but rather you go back and re-analyse your data repeatedly)" + ], + "pageviews": 391, + "priority": 3, + "pub_date": "2024-04-09", + "questions": [ + "Is my single cell dataset a quality dataset?", + "How do I pick thresholds and parameters in my analysis? What\u2019s a \u201creasonable\u201d number, and will the world collapse if I pick the wrong one?", + "How do I generate and annotate cell clusters?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-intro", + "scrna-preprocessing-tenx" + ], + "type": "internal" + } + ], + "short_id": "T00438", + "short_tools": [ + "seurat_find_markers", + "seurat_filter_cells", + "seurat_run_umap", + "seurat_scale_data", + "seurat_find_neighbours", + "seurat_find_variable_genes", + "seurat_read10x", + "retrieve_scxa", + "seurat_run_pca", + "seurat_find_clusters", + "seurat_normalise_data", + "seurat_plot" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication" + ], + "time_estimation": "3H", + "title": "Filter, plot, and explore single cell RNA-seq data with Seurat", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_filter_cells/seurat_filter_cells/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_find_clusters/seurat_find_clusters/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_find_markers/seurat_find_markers/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_find_neighbours/seurat_find_neighbours/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_find_variable_genes/seurat_find_variable_genes/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_normalise_data/seurat_normalise_data/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_plot/seurat_plot/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_read10x/seurat_read10x/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_run_pca/seurat_run_pca/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_run_umap/seurat_run_umap/4.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/seurat_scale_data/seurat_scale_data/4.0.4+galaxy0" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_FilterPlotandExplore_SeuratTools", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_FilterPlotandExplore_SeuratTools/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_FilterPlotandExplore_SeuratTools/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_FilterPlotandExplore_SeuratTools/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 25, + "visitors": 338, + "zenodo_link": "https://zenodo.org/record/7053673" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "music_compare", + "owner": "bgruening", + "revisions": "4447ed460308", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: music_compare\n owner: bgruening\n revisions: 4447ed460308\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-4-compare/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist", + "mtekman" + ], + "testing": [ + "MarisaJL" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "email": "marisa.loach@open.ac.uk", + "id": "MarisaJL", + "joined": "2022-10", + "name": "Marisa Loach", + "orcid": "0000-0001-6979-6930", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/MarisaJL/", + "twitter": "Marisa_Loach", + "url": "https://training.galaxyproject.org/training-material/api/contributors/MarisaJL.json" + } + ], + "dir": "topics/single-cell/tutorials/bulk-music-4-compare", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/bulk-music-4-compare", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Deconvolution can be used to compare cell type distributions from bulk RNA-seq datasets" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Apply the MuSiC deconvolution to samples and compare the cell type distributions", + "Compare the results from analysing different types of input, for example, whether combining disease and healthy references or not yields better results" + ], + "pageviews": 295, + "priority": 4, + "pub_date": "2023-01-20", + "questions": [ + "How do the cell type distributions vary in bulk RNA samples across my variable of interest?", + "For example, are beta cell proportions different in the pancreas data from diabetes and healthy patients?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "bulk-music", + "bulk-music-2-preparescref", + "bulk-music-3-preparebulk" + ], + "type": "internal" + } + ], + "short_id": "T00243", + "short_tools": [ + "music_compare" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "deconvo", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "transcriptomics" + ], + "time_estimation": "1H", + "title": "Comparing inferred cell compositions using MuSiC deconvolution", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/music_compare/music_compare/0.1.1+galaxy4" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bulk-music-4-compare", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/bulk-music-4-compare/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-4-compare/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-4-compare/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 49, + "visitors": 166, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-8170-8806", + "name": "Wendi Bacon" + }, + { + "class": "Person", + "identifier": "0000-0002-4181-2676", + "name": "Mehmet Tekman" + } + ], + "description": "This workflow runs 3 comparisons using MuSiC Deconvolution compare: where datasets cell compositions are inferred from a reference containing healthy and diseased cells; where diseased are inferred from disease and healthy from healthy; and where both diseased and healthy are inferred from a healthy reference.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nESet Object - Single cell:T2D\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nESet Object - Single cell:normal\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nESet Object - Bulk:normal\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nESet Object - Bulk:T2D\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nESet Object - Single cell Total\"]\n 5[label=\"MuSiC Compare: Like with like\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"MuSiC Compare: healthyscref\"]\n 2 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"MuSiC Compare - Altogether\"]\n 2 -> 7 [label=\"output\"]\n 3 -> 7 [label=\"output\"]\n 4 -> 7 [label=\"output\"]\n}", + "history": [ + { + "hash": "9a561b3752745eab20cececd5346ee0a7449da28", + "message": "update workflows", + "num": 1, + "short_hash": "9a561b375", + "unix": "1669581042" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ESet Object - Single cell:T2D" + } + ], + "label": "ESet Object - Single cell:T2D", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.0234375, + "top": 87.03125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "16ac774b-2363-4b80-aef3-c931c2e7be39", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ESet Object - Single cell:normal" + } + ], + "label": "ESet Object - Single cell:normal", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.0234375, + "top": 194.046875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a12a2c75-60f9-4914-af0f-1e4c90d6232e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ESet Object - Bulk:normal" + } + ], + "label": "ESet Object - Bulk:normal", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.0234375, + "top": 316.0546875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "631202df-1a51-4fac-8ca9-65b8e6959082", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ESet Object - Bulk:T2D" + } + ], + "label": "ESet Object - Bulk:T2D", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.0234375, + "top": 438.0390625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "e841325f-0707-4ac9-9937-700d1bf5fa03", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ESet Object - Single cell Total" + } + ], + "label": "ESet Object - Single cell Total", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 556.0390625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "676d2c4b-58c3-438b-ae55-e294ee43e377", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nESet Object - Single cell:T2D\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nESet Object - Single cell:normal\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nESet Object - Bulk:normal\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nESet Object - Bulk:T2D\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nESet Object - Single cell Total\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"MuSiC Compare: Like with like\"];\n 2 -->|output| 5;\n 1 -->|output| 5;\n 3 -->|output| 5;\n 0 -->|output| 5;\n 6[\"MuSiC Compare: healthyscref\"];\n 2 -->|output| 6;\n 3 -->|output| 6;\n 1 -->|output| 6;\n 7[\"MuSiC Compare - Altogether\"];\n 2 -->|output| 7;\n 3 -->|output| 7;\n 4 -->|output| 7;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "MuSiC-Deconvolution: Compare", + "outputs": [ + { + "annotation": "Here the T2D bulk sample is inferred from the sc T2D sample, while the normal bulk sample is inferred from the sc normal sample", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_compare/music_compare/0.1.1+galaxy4", + "errors": null, + "id": 5, + "input_connections": { + "scrna_groups_0|bulk_groups_0|bulk_eset": { + "id": 2, + "output_name": "output" + }, + "scrna_groups_0|scrna_eset": { + "id": 1, + "output_name": "output" + }, + "scrna_groups_1|bulk_groups_0|bulk_eset": { + "id": 3, + "output_name": "output" + }, + "scrna_groups_1|scrna_eset": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "MuSiC Compare: Like with like", + "name": "MuSiC Compare", + "outputs": [ + { + "name": "dtables", + "type": "input" + }, + { + "name": "stats", + "type": "input" + }, + { + "name": "out_heatmulti_pdf", + "type": "pdf" + }, + { + "name": "out_heatsumm_pdf", + "type": "pdf" + } + ], + "position": { + "left": 730.265625, + "top": 0 + }, + "post_job_actions": { + "RemoveTagDatasetActiondtables": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "dtables" + }, + "RemoveTagDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "RemoveTagDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "RemoveTagDatasetActionstats": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActiondtables": { + "action_arguments": { + "newname": "MuSiC-like4like-tables" + }, + "action_type": "RenameDatasetAction", + "output_name": "dtables" + }, + "RenameDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "newname": "MuSiC-like4like-plots" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "RenameDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "newname": "MuSiC-like4like-individualmaps" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MuSiC-like4like-stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "TagDatasetActiondtables": { + "action_arguments": { + "tags": "#like4like" + }, + "action_type": "TagDatasetAction", + "output_name": "dtables" + }, + "TagDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "tags": "#like4like" + }, + "action_type": "TagDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "TagDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "tags": "#like4like" + }, + "action_type": "TagDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "TagDatasetActionstats": { + "action_arguments": { + "tags": "#like4like" + }, + "action_type": "TagDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_compare/music_compare/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "4447ed460308", + "name": "music_compare", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dendro_setting\": \"None\", \"est_method\": \"MuSiC\", \"filter\": {\"out_list_cells\": \"\", \"out_list_facts\": \"\"}, \"scrna_groups\": [{\"__index__\": 0, \"name\": \"scRNA_set:Normal\", \"scrna_eset\": {\"__class__\": \"ConnectedValue\"}, \"adv\": {\"celltypes_label\": \"Inferred cell type - author labels\", \"samples_label\": \"Individual\", \"celltypes\": \"alpha cell,beta cell,delta cell,gamma cell,acinar cell,ductal cell\"}, \"bulk_groups\": [{\"__index__\": 0, \"name\": \"Bulk_set:Normal\", \"bulk_eset\": {\"__class__\": \"ConnectedValue\"}, \"factor_group\": \"Disease\", \"adv\": {\"phenotype_factors\": \"\", \"phenotype_factors_always_exclude\": \"sampleID,SubjectName\"}}]}, {\"__index__\": 1, \"name\": \"scRNA_set:T2D\", \"scrna_eset\": {\"__class__\": \"ConnectedValue\"}, \"adv\": {\"celltypes_label\": \"Inferred cell type - author labels\", \"samples_label\": \"Individual\", \"celltypes\": \"alpha cell,beta cell,delta cell,gamma cell,acinar cell,ductal cell\"}, \"bulk_groups\": [{\"__index__\": 0, \"name\": \"bulk_set:T2D\", \"bulk_eset\": {\"__class__\": \"ConnectedValue\"}, \"factor_group\": \"Disease\", \"adv\": {\"phenotype_factors\": \"\", \"phenotype_factors_always_exclude\": \"sampleID,SubjectName\"}}]}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy4", + "type": "tool", + "uuid": "1aa07374-4bd9-4c8a-8e23-8c9c3b7faa78", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "f23ddfe7-40e1-4232-985a-1deae154e13e" + }, + { + "label": null, + "output_name": "dtables", + "uuid": "2a29e3ef-e447-4336-a5e4-c781f21eeeb6" + }, + { + "label": null, + "output_name": "out_heatsumm_pdf", + "uuid": "ba82c5ac-05df-4ded-b6b4-0bac2cc3cc8b" + }, + { + "label": null, + "output_name": "out_heatmulti_pdf", + "uuid": "f7f8627a-7a04-4ec4-8e65-7b4cd65ade13" + } + ] + }, + { + "annotation": "Here the T2D bulk sample and the normal sample are separately compared separately against the healthy sc reference only (excluding unhealthy sc reference)", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_compare/music_compare/0.1.1+galaxy4", + "errors": null, + "id": 6, + "input_connections": { + "scrna_groups_0|bulk_groups_0|bulk_eset": { + "id": 2, + "output_name": "output" + }, + "scrna_groups_0|bulk_groups_1|bulk_eset": { + "id": 3, + "output_name": "output" + }, + "scrna_groups_0|scrna_eset": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "MuSiC Compare: healthyscref", + "name": "MuSiC Compare", + "outputs": [ + { + "name": "dtables", + "type": "input" + }, + { + "name": "stats", + "type": "input" + }, + { + "name": "out_heatmulti_pdf", + "type": "pdf" + }, + { + "name": "out_heatsumm_pdf", + "type": "pdf" + } + ], + "position": { + "left": 992.265625, + "top": 211 + }, + "post_job_actions": { + "RemoveTagDatasetActiondtables": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "dtables" + }, + "RemoveTagDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "RemoveTagDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "RemoveTagDatasetActionstats": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActiondtables": { + "action_arguments": { + "newname": "MuSiC-healthyscref-tables" + }, + "action_type": "RenameDatasetAction", + "output_name": "dtables" + }, + "RenameDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "newname": "MuSiC-healthyscref-plots" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "RenameDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "newname": "MuSiC-healthyscref-individualmaps" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MuSiC-healthyscref-stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "TagDatasetActiondtables": { + "action_arguments": { + "tags": "#healthyscref" + }, + "action_type": "TagDatasetAction", + "output_name": "dtables" + }, + "TagDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "tags": "#healthyscref" + }, + "action_type": "TagDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "TagDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "tags": "#healthyscref" + }, + "action_type": "TagDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "TagDatasetActionstats": { + "action_arguments": { + "tags": "#healthyscref" + }, + "action_type": "TagDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_compare/music_compare/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "4447ed460308", + "name": "music_compare", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dendro_setting\": \"None\", \"est_method\": \"MuSiC\", \"filter\": {\"out_list_cells\": \"\", \"out_list_facts\": \"\"}, \"scrna_groups\": [{\"__index__\": 0, \"name\": \"scRNA_set:Normal\", \"scrna_eset\": {\"__class__\": \"ConnectedValue\"}, \"adv\": {\"celltypes_label\": \"Inferred cell type - author labels\", \"samples_label\": \"Individual\", \"celltypes\": \"alpha cell,beta cell,delta cell,gamma cell,acinar cell,ductal cell\"}, \"bulk_groups\": [{\"__index__\": 0, \"name\": \"Bulk_set:Normal\", \"bulk_eset\": {\"__class__\": \"ConnectedValue\"}, \"factor_group\": \"Disease\", \"adv\": {\"phenotype_factors\": \"\", \"phenotype_factors_always_exclude\": \"sampleID,SubjectName\"}}, {\"__index__\": 1, \"name\": \"Bulk_set:T2D\", \"bulk_eset\": {\"__class__\": \"ConnectedValue\"}, \"factor_group\": \"Disease\", \"adv\": {\"phenotype_factors\": \"\", \"phenotype_factors_always_exclude\": \"sampleID,SubjectName\"}}]}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy4", + "type": "tool", + "uuid": "2d6961e3-6437-4fae-92d1-25695b55d4c4", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_heatsumm_pdf", + "uuid": "07325b72-c3f2-403e-bd83-a751603228ef" + }, + { + "label": null, + "output_name": "out_heatmulti_pdf", + "uuid": "b75a92b4-f4eb-4bd6-a895-ba7285e80d65" + }, + { + "label": null, + "output_name": "stats", + "uuid": "693bd310-705d-466b-9c35-1d7803bf16d7" + }, + { + "label": null, + "output_name": "dtables", + "uuid": "e8a7c664-1510-4bc8-bb3a-bde0596dd2fd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_compare/music_compare/0.1.1+galaxy4", + "errors": null, + "id": 7, + "input_connections": { + "scrna_groups_0|bulk_groups_0|bulk_eset": { + "id": 2, + "output_name": "output" + }, + "scrna_groups_0|bulk_groups_1|bulk_eset": { + "id": 3, + "output_name": "output" + }, + "scrna_groups_0|scrna_eset": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": "MuSiC Compare - Altogether", + "name": "MuSiC Compare", + "outputs": [ + { + "name": "dtables", + "type": "input" + }, + { + "name": "stats", + "type": "input" + }, + { + "name": "out_heatmulti_pdf", + "type": "pdf" + }, + { + "name": "out_heatsumm_pdf", + "type": "pdf" + } + ], + "position": { + "left": 426.2890625, + "top": 203.0390625 + }, + "post_job_actions": { + "RemoveTagDatasetActiondtables": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "dtables" + }, + "RemoveTagDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "RemoveTagDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "RemoveTagDatasetActionstats": { + "action_arguments": { + "tags": "#singlecell,#bulk" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActiondtables": { + "action_arguments": { + "newname": "MuSiC-combined-tables" + }, + "action_type": "RenameDatasetAction", + "output_name": "dtables" + }, + "RenameDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "newname": "MuSiC-combined-plots" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "RenameDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "newname": "MuSiC-combined-individualmaps" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MuSiC-combined-stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + }, + "TagDatasetActiondtables": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "TagDatasetAction", + "output_name": "dtables" + }, + "TagDatasetActionout_heatmulti_pdf": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "TagDatasetAction", + "output_name": "out_heatmulti_pdf" + }, + "TagDatasetActionout_heatsumm_pdf": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "TagDatasetAction", + "output_name": "out_heatsumm_pdf" + }, + "TagDatasetActionstats": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "TagDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_compare/music_compare/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "4447ed460308", + "name": "music_compare", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dendro_setting\": \"None\", \"est_method\": \"MuSiC\", \"filter\": {\"out_list_cells\": \"\", \"out_list_facts\": \"\"}, \"scrna_groups\": [{\"__index__\": 0, \"name\": \"scRNA_set\", \"scrna_eset\": {\"__class__\": \"ConnectedValue\"}, \"adv\": {\"celltypes_label\": \"Inferred cell type - author labels\", \"samples_label\": \"Individual\", \"celltypes\": \"alpha cell,beta cell,delta cell,gamma cell,acinar cell,ductal cell\"}, \"bulk_groups\": [{\"__index__\": 0, \"name\": \"Bulk_healthy\", \"bulk_eset\": {\"__class__\": \"ConnectedValue\"}, \"factor_group\": \"Disease\", \"adv\": {\"phenotype_factors\": \"\", \"phenotype_factors_always_exclude\": \"sampleID,SubjectName\"}}, {\"__index__\": 1, \"name\": \"Bulk_disease\", \"bulk_eset\": {\"__class__\": \"ConnectedValue\"}, \"factor_group\": \"Disease\", \"adv\": {\"phenotype_factors\": \"\", \"phenotype_factors_always_exclude\": \"sampleID,SubjectName\"}}]}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.1+galaxy4", + "type": "tool", + "uuid": "bcea8743-e92e-4a04-b4da-34ca073ecd52", + "workflow_outputs": [ + { + "label": null, + "output_name": "dtables", + "uuid": "812202ce-076d-46fa-8a80-a1f5f4c53a7a" + }, + { + "label": null, + "output_name": "out_heatmulti_pdf", + "uuid": "cd5b8aa7-da07-49ba-8775-8bcbdd900150" + }, + { + "label": null, + "output_name": "stats", + "uuid": "93d46757-18b9-486b-ab59-b8bc1cb5fd7f" + }, + { + "label": null, + "output_name": "out_heatsumm_pdf", + "uuid": "35cfefba-a8e6-49b0-9cef-2a01b038ecb0" + } + ] + } + ], + "parent_id": "single-cell/bulk-music-4-compare", + "path": "topics/single-cell/tutorials/bulk-music-4-compare/workflows/compare.ga", + "tags": [ + "name:singlecell", + "name:transcriptomics", + "name:training" + ], + "test_results": null, + "tests": false, + "title": "MuSiC-Deconvolution: Compare", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music-4-compare/versions/compare", + "tutorial_id": "bulk-music-4-compare", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-4-compare/workflows/compare.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-4-compare/workflows/compare.html", + "version": 1, + "wfid": "single-cell-bulk-music-4-compare", + "wfname": "compare", + "workflow": "compare.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/music_compare/music_compare/0.1.1+galaxy4" + ], + "workflowhub_id": "1223" + } + ], + "zenodo_link": "https://zenodo.org/record/7319925" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "add_line_to_file", + "owner": "bgruening", + "revisions": "8e251055b1a9", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "music_construct_eset", + "owner": "bgruening", + "revisions": "282819d09a4f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "music_manipulate_eset", + "owner": "bgruening", + "revisions": "22232092be53", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "retrieve_scxa", + "owner": "ebi-gxa", + "revisions": "cd6b80f62fcc", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "retrieve_scxa", + "owner": "ebi-gxa", + "revisions": "72b6e1747e37", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_read_10x", + "owner": "ebi-gxa", + "revisions": "d253d69ff19f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "399da6b5ec21", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "ee98d611afc6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "annotatemyids", + "owner": "iuc", + "revisions": "fe3ca740a485", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_transpose", + "owner": "iuc", + "revisions": "ac092723240d", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "table_compute", + "owner": "iuc", + "revisions": "3bf5661c0280", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: add_line_to_file\n owner: bgruening\n revisions: 8e251055b1a9\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: music_construct_eset\n owner: bgruening\n revisions: 282819d09a4f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: music_manipulate_eset\n owner: bgruening\n revisions: 22232092be53\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: retrieve_scxa\n owner: ebi-gxa\n revisions: cd6b80f62fcc\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: retrieve_scxa\n owner: ebi-gxa\n revisions: 72b6e1747e37\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_read_10x\n owner: ebi-gxa\n revisions: d253d69ff19f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 399da6b5ec21\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: ee98d611afc6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: annotatemyids\n owner: iuc\n revisions: fe3ca740a485\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_transpose\n owner: iuc\n revisions: ac092723240d\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: table_compute\n owner: iuc\n revisions: 3bf5661c0280\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-2-preparescref/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist", + "mtekman" + ], + "testing": [ + "MarisaJL" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "email": "marisa.loach@open.ac.uk", + "id": "MarisaJL", + "joined": "2022-10", + "name": "Marisa Loach", + "orcid": "0000-0001-6979-6930", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/MarisaJL/", + "twitter": "Marisa_Loach", + "url": "https://training.galaxyproject.org/training-material/api/contributors/MarisaJL.json" + } + ], + "dir": "topics/single-cell/tutorials/bulk-music-2-preparescref", + "edam_operation": [ + "Annotation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "bulk-music-3-preparebulk" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "single-cell/bulk-music-2-preparescref", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The EMBL-EBI Single-cell expression atlas contains high quality datasets.", + "Metadata manipulation is key for generating the correctly formatted resource." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-13", + "objectives": [ + "You will retrieve raw data from the EMBL-EBI Single cell expression atlas.", + "You will manipulate the metadata and matrix files.", + "You will combine the metadata and matrix files into an ESet object for MuSiC deconvolution.", + "You will create multiple ESet objects - both combined and separated out by disease phenotype for your single cell reference." + ], + "pageviews": 1029, + "priority": 4, + "pub_date": "2023-01-20", + "questions": [ + "Where can I find good quality scRNA-seq reference datasets?", + "How can I reformat and manipulate these downloads to create the right format for MuSiC?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "bulk-music" + ], + "type": "internal" + } + ], + "short_id": "T00241", + "short_tools": [ + "scanpy_read_10x", + "regex1", + "anndata_inspect", + "music_construct_eset", + "sort1", + "tp_cut_tool", + "tp_awk_tool", + "tp_easyjoin_tool", + "datamash_transpose", + "Cut1", + "retrieve_scxa", + "music_manipulate_eset", + "tp_sed_tool", + "table_compute", + "annotatemyids", + "join1", + "add_line_to_file" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "datamanipulation", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "data management" + ], + "time_estimation": "1H", + "title": "Matrix Exchange Format to ESet | Creating a single-cell RNA-seq reference dataset for deconvolution", + "tools": [ + "Cut1", + "join1", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/add_line_to_file/add_line_to_file/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.14.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bulk-music-2-preparescref", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/bulk-music-2-preparescref/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-2-preparescref/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-2-preparescref/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 126, + "visitors": 580, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-8170-8806", + "name": "Wendi Bacon" + }, + { + "class": "Person", + "identifier": "0000-0002-4181-2676", + "name": "Mehmet Tekman" + } + ], + "description": "This workflow creates an ESet object from scRNA metadata file and EBI SCXA retrieveal", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"EBI SCXA Data Retrieval\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSingle cell metadata\"]\n 2[label=\"Scanpy Read10x\"]\n 0 -> 2 [label=\"barcode_tsv\"]\n 0 -> 2 [label=\"genes_tsv\"]\n 0 -> 2 [label=\"matrix_mtx\"]\n k6bd01730f0b548248cfcd563cc9c7f7d[color=lightseagreen,label=\"Output\\nScanpy Read10x on input dataset(s): anndata\"]\n 2 -> k6bd01730f0b548248cfcd563cc9c7f7d\n 3[label=\"Inspect AnnData\"]\n 2 -> 3 [label=\"output_h5\"]\n 4[label=\"Transpose\"]\n 3 -> 4 [label=\"X\"]\n 5[label=\"annotateMyIDs\"]\n 4 -> 5 [label=\"out_file\"]\n kc39c7d69550e4b54a412317b599c5e55[color=lightseagreen,label=\"Output\\nannotateMyIDs on input dataset(s): Annotated IDs\"]\n 5 -> kc39c7d69550e4b54a412317b599c5e55\n 6[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\n1st step removed - Convert from Ensembl to GeneSymbol, summing duplicate genes\"]\n 5 -> 6 [label=\"out_tab\"]\n 4 -> 6 [label=\"out_file\"]\n 7[label=\"Construct Expression Set Object\"]\n 6 -> 7 [label=\"Gene Symbol Count Matrix\"]\n 1 -> 7 [label=\"output\"]\n ke8c91df04e6c4eb29807c2679b494958[color=lightseagreen,label=\"Output\\nConstruct Expression Set Object on input dataset(s): RData ESet Object\"]\n 7 -> ke8c91df04e6c4eb29807c2679b494958\n k2912d09bb1784035b7c87038392e2bf2[color=lightseagreen,label=\"Output\\nConstruct Expression Set Object on input dataset(s): General Info\"]\n 7 -> k2912d09bb1784035b7c87038392e2bf2\n 8[label=\"Manipulate Expression Set Object\"]\n 7 -> 8 [label=\"out_rds\"]\n k08de92d832fe4b479038298cdd13fac5[color=lightseagreen,label=\"Output\\nManipulate Expression Set Object on input dataset(s): ExpressionSet Object\"]\n 8 -> k08de92d832fe4b479038298cdd13fac5\n 9[label=\"Manipulate Expression Set Object\"]\n 7 -> 9 [label=\"out_rds\"]\n}", + "history": [ + { + "hash": "9a561b3752745eab20cececd5346ee0a7449da28", + "message": "update workflows", + "num": 1, + "short_hash": "9a561b375", + "unix": "1669581042" + } + ], + "inputs": [ + { + "annotation": "This should be output from the MuSiC Deconvolution | Data generation | sc | metadata workflow", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "This should be output from the MuSiC Deconvolution | Data generation | sc | metadata workflow", + "name": "Single cell metadata" + } + ], + "label": "Single cell metadata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1160.0208740234375, + "top": 364 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f43195bc-96ef-4c07-8537-2e91c50b554c", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"EBI SCXA Data Retrieval\"];\n 1[\"\u2139\ufe0f Input Dataset\\nSingle cell metadata\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Scanpy Read10x\"];\n 0 -->|barcode_tsv| 2;\n 0 -->|genes_tsv| 2;\n 0 -->|matrix_mtx| 2;\n 6bd01730-f0b5-4824-8cfc-d563cc9c7f7d[\"Output\\nScanpy Read10x on input dataset(s): anndata\"];\n 2 --> 6bd01730-f0b5-4824-8cfc-d563cc9c7f7d;\n style 6bd01730-f0b5-4824-8cfc-d563cc9c7f7d stroke:#2c3143,stroke-width:4px;\n 3[\"Inspect AnnData\"];\n 2 -->|output_h5| 3;\n 4[\"Transpose\"];\n 3 -->|X| 4;\n 5[\"annotateMyIDs\"];\n 4 -->|out_file| 5;\n c39c7d69-550e-4b54-a412-317b599c5e55[\"Output\\nannotateMyIDs on input dataset(s): Annotated IDs\"];\n 5 --> c39c7d69-550e-4b54-a412-317b599c5e55;\n style c39c7d69-550e-4b54-a412-317b599c5e55 stroke:#2c3143,stroke-width:4px;\n 6[\"\ud83d\udee0\ufe0f Subworkflow\\n1st step removed - Convert from Ensembl to GeneSymbol, summing duplicate genes\"];\n style 6 fill:#edd,stroke:#900,stroke-width:4px;\n 5 -->|out_tab| 6;\n 4 -->|out_file| 6;\n 7[\"Construct Expression Set Object\"];\n 6 -->|Gene Symbol Count Matrix| 7;\n 1 -->|output| 7;\n e8c91df0-4e6c-4eb2-9807-c2679b494958[\"Output\\nConstruct Expression Set Object on input dataset(s): RData ESet Object\"];\n 7 --> e8c91df0-4e6c-4eb2-9807-c2679b494958;\n style e8c91df0-4e6c-4eb2-9807-c2679b494958 stroke:#2c3143,stroke-width:4px;\n 2912d09b-b178-4035-b7c8-7038392e2bf2[\"Output\\nConstruct Expression Set Object on input dataset(s): General Info\"];\n 7 --> 2912d09b-b178-4035-b7c8-7038392e2bf2;\n style 2912d09b-b178-4035-b7c8-7038392e2bf2 stroke:#2c3143,stroke-width:4px;\n 8[\"Manipulate Expression Set Object\"];\n 7 -->|out_rds| 8;\n 08de92d8-32fe-4b47-9038-298cdd13fac5[\"Output\\nManipulate Expression Set Object on input dataset(s): ExpressionSet Object\"];\n 8 --> 08de92d8-32fe-4b47-9038-298cdd13fac5;\n style 08de92d8-32fe-4b47-9038-298cdd13fac5 stroke:#2c3143,stroke-width:4px;\n 9[\"Manipulate Expression Set Object\"];\n 7 -->|out_rds| 9;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "MuSiC-Deconvolution: Data generation | sc | matrix + ESet", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.2+galaxy2", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "EBI SCXA Data Retrieval", + "outputs": [ + { + "name": "matrix_mtx", + "type": "txt" + }, + { + "name": "genes_tsv", + "type": "tsv" + }, + { + "name": "barcode_tsv", + "type": "tsv" + }, + { + "name": "design_tsv", + "type": "tsv" + } + ], + "position": { + "left": 0.0, + "top": 408.46875 + }, + "post_job_actions": { + "TagDatasetActionbarcode_tsv": { + "action_arguments": { + "tags": "#ebi" + }, + "action_type": "TagDatasetAction", + "output_name": "barcode_tsv" + }, + "TagDatasetActiondesign_tsv": { + "action_arguments": { + "tags": "#ebi" + }, + "action_type": "TagDatasetAction", + "output_name": "design_tsv" + }, + "TagDatasetActiongenes_tsv": { + "action_arguments": { + "tags": "#ebi" + }, + "action_type": "TagDatasetAction", + "output_name": "genes_tsv" + }, + "TagDatasetActionmatrix_mtx": { + "action_arguments": { + "tags": "#matrix,#ebi,#singlecell" + }, + "action_type": "TagDatasetAction", + "output_name": "matrix_mtx" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.2+galaxy2", + "tool_shed_repository": { + "changeset_revision": "72b6e1747e37", + "name": "retrieve_scxa", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"accession\": \"E-MTAB-5061\", \"matrix_type\": \"raw\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "c6e24135-aa36-4d1f-83af-378c4882dba7", + "workflow_outputs": [ + { + "label": null, + "output_name": "barcode_tsv", + "uuid": "c859047e-d5cd-42fd-9b79-3c6089279774" + }, + { + "label": null, + "output_name": "design_tsv", + "uuid": "974ffbbe-2218-4867-8775-e267b3311f95" + }, + { + "label": null, + "output_name": "genes_tsv", + "uuid": "6a8dd992-ccd9-403a-a94d-742a2249aaa7" + }, + { + "label": null, + "output_name": "matrix_mtx", + "uuid": "0273aaac-0d5b-40dd-a1d9-50a17e5f406a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "barcodes": { + "id": 0, + "output_name": "barcode_tsv" + }, + "genes": { + "id": 0, + "output_name": "genes_tsv" + }, + "matrix": { + "id": 0, + "output_name": "matrix_mtx" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Scanpy Read10x", + "name": "cell_meta" + }, + { + "description": "runtime parameter for tool Scanpy Read10x", + "name": "gene_meta" + } + ], + "label": null, + "name": "Scanpy Read10x", + "outputs": [ + { + "name": "output_h5", + "type": "h5" + } + ], + "position": { + "left": 277.97918701171875, + "top": 325.96875 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput_h5": { + "action_arguments": { + "newtype": "h5ad" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output_h5" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d253d69ff19f", + "name": "scanpy_read_10x", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"barcodes\": {\"__class__\": \"ConnectedValue\"}, \"cell_meta\": {\"__class__\": \"RuntimeValue\"}, \"gene_meta\": {\"__class__\": \"RuntimeValue\"}, \"genes\": {\"__class__\": \"ConnectedValue\"}, \"matrix\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"anndata\", \"var_names\": \"gene_ids\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "432bc2f8-5e5c-489a-ab84-fd3ccd40ec99", + "workflow_outputs": [ + { + "label": "Scanpy Read10x on input dataset(s): anndata", + "output_name": "output_h5", + "uuid": "6bd01730-f0b5-4824-8cfc-d563cc9c7f7d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 2, + "output_name": "output_h5" + } + }, + "inputs": [], + "label": null, + "name": "Inspect AnnData", + "outputs": [ + { + "name": "X", + "type": "tabular" + } + ], + "position": { + "left": 565.0208740234375, + "top": 322.46875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"X\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "27acc627-ce13-4572-b4bb-e8ecb9c80bb4", + "workflow_outputs": [ + { + "label": null, + "output_name": "X", + "uuid": "e2548214-2e98-4faa-bd8a-ce539df4cef8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "errors": null, + "id": 4, + "input_connections": { + "in_file": { + "id": 3, + "output_name": "X" + } + }, + "inputs": [], + "label": null, + "name": "Transpose", + "outputs": [ + { + "name": "out_file", + "type": "input" + } + ], + "position": { + "left": 831.010498046875, + "top": 329.46875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "ac092723240d", + "name": "datamash_transpose", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "5ea8bf51-59c9-4074-960f-56a355d16bae", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file", + "uuid": "4ca75360-6d9a-458c-a837-bd61fd5bdae1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.14.0+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "id_file": { + "id": 4, + "output_name": "out_file" + } + }, + "inputs": [], + "label": null, + "name": "annotateMyIDs", + "outputs": [ + { + "name": "out_tab", + "type": "tabular" + } + ], + "position": { + "left": 881.5208740234375, + "top": 67.5 + }, + "post_job_actions": { + "RemoveTagDatasetActionout_tab": { + "action_arguments": { + "tags": "#matrix" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_tab" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.14.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fe3ca740a485", + "name": "annotatemyids", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"file_has_header\": \"true\", \"id_file\": {\"__class__\": \"ConnectedValue\"}, \"id_type\": \"ENSEMBL\", \"organism\": \"Hs\", \"output_cols\": [\"SYMBOL\"], \"remove_dups\": \"false\", \"rscriptOpt\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "4e551e90-930f-4904-b859-8a107400eb1e", + "workflow_outputs": [ + { + "label": "annotateMyIDs on input dataset(s): Annotated IDs", + "output_name": "out_tab", + "uuid": "c39c7d69-550e-4b54-a412-317b599c5e55" + } + ] + }, + { + "annotation": "", + "id": 6, + "input_connections": { + "Annotated IDs": { + "id": 5, + "input_subworkflow_step_id": 0, + "output_name": "out_tab" + }, + "Expression Matrix (Gene Rows)": { + "id": 4, + "input_subworkflow_step_id": 1, + "output_name": "out_file" + } + }, + "inputs": [], + "label": null, + "name": "1st step removed - Convert from Ensembl to GeneSymbol, summing duplicate genes", + "outputs": [], + "position": { + "left": 1184.510498046875, + "top": 0 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "", + "name": "Mehmet Tekman" + } + ], + "format-version": "0.1", + "name": "1st step removed - Convert from Ensembl to GeneSymbol, summing duplicate genes", + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Annotated IDs" + } + ], + "label": "Annotated IDs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.5, + "top": 127.52500915527344 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "d81929a3-775c-4421-ba06-6a4c69f74ff7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8ac19ec5-b4f9-499b-93fb-c624b9c04b22" + } + ] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Expression Matrix (Gene Rows)" + } + ], + "label": "Expression Matrix (Gene Rows)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 237.01251220703125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cb8ea816-9239-421d-ae4c-8bba1b07d2f9", + "workflow_outputs": [] + }, + "10": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 9, + "output_name": "table" + } + }, + "inputs": [], + "label": "Final Count Matrix with Gene Symbol ID's", + "name": "Text transformation", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1284.0125732421875, + "top": 386.07501220703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"1 s/^gene//\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "417aedef-9d94-43b1-a3cd-adef81d7132a", + "workflow_outputs": [ + { + "label": "Gene Symbol Count Matrix", + "output_name": "output", + "uuid": "3cefa576-db2d-44f6-8cf2-26c846cf5d88" + } + ] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Text reformatting", + "name": "infile" + } + ], + "label": "Group Ensembl Duplicates", + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 328.01251220703125, + "top": 220.0124969482422 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"BEGIN {\\n ordering[\\\"test\\\"]\\n delete ordering[\\\"test\\\"]\\n}\\nNR > 1 {\\n if (gene[$1]){\\n gene[$1] = gene[$1]\\\":\\\"$2\\n } else {\\n gene[$1] = $2\\n ordering[length(ordering)+1] = $1\\n }\\n \\n}\\n\\nEND {\\n for (o=0; o < length(ordering); ++o){\\n print ordering[o]\\\"\\\\t\\\"gene[ordering[o]]\\n }\\n}\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "51d68e09-2af1-4c81-9ca8-b76afe06e9f7", + "workflow_outputs": [] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 3, + "input_connections": { + "infile1": { + "id": 1, + "output_name": "output" + }, + "infile2": { + "id": 2, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Merge Gene Symbol and matrix together", + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 330.98748779296875, + "top": 352.0249938964844 + }, + "post_job_actions": { + "HideDatasetActionoutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": \"true\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "76d38310-a221-4b70-bcb9-296b4870bb52", + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 4, + "input_connections": { + "infile": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": "Relocate the Gene Symbol column to 1st column", + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 580.9625244140625, + "top": 381.01251220703125 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"{print $NF\\\"\\\\t\\\"$0}\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "f1d4e7aa-4ac7-4258-a1eb-a335cad2c861", + "workflow_outputs": [] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Remove second column with Ensembl ID's", + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 580.0, + "top": 236.01251220703125 + }, + "post_job_actions": { + "HideDatasetActionoutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"2\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "334f4810-84e0-4b5c-962f-0e2e6fbcc5f8", + "workflow_outputs": [] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": "Count Unique occurences of Gene Symbol", + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 832.987548828125, + "top": 0.0 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"{ gene[$1] = gene[$1] + 1 }\\n\\nEND {\\n for (ge in gene){\\n print ge\\\"\\\\t\\\"gene[ge]\\n }\\n}\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "111ebd66-534f-4b17-9d60-aeff287fe500", + "workflow_outputs": [] + }, + "7": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": "Group rows by Gene Symbol and append their values (Long Format)", + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 833.9625244140625, + "top": 246.05001831054688 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"NR == 1 {\\n for (i=2; i <= NF; i++){\\n cellorder[i] = $i\\n }\\n}\\n\\nNR > 1 {\\n for (i=2; i <= NF; i++){\\n if (cellorder[i] == \\\"0\\\" || $1 == \\\"NA\\\"){\\n } else {\\n bc[$1\\\"\\\\t\\\"cellorder[i]] = bc[$1\\\"\\\\t\\\"cellorder[i]] + $i\\n }\\n }\\n}\\n\\nEND {\\n print \\\"gene\\\\tbar\\\\tvalue\\\"\\n for (key in bc){\\n print key\\\"\\\\t\\\"bc[key]\\n }\\n}\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "e2ce8f93-c8e2-490a-a3b6-3e580c0a6604", + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "content_id": "sort1", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Unique Gene Symbol Occurences, sorted in descending frequency.", + "name": "Sort", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1067.9625244140625, + "top": 2.0625 + }, + "post_job_actions": {}, + "tool_id": "sort1", + "tool_state": "{\"column\": \"2\", \"column_set\": [], \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"order\": \"DESC\", \"style\": \"num\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "73ec3cc4-738e-4815-9ed0-a657e56f0706", + "workflow_outputs": [ + { + "label": "Report of Duplicate Genes", + "output_name": "out_file1", + "uuid": "fb52cadb-3832-49bb-ac12-5ba2600ea26d" + } + ] + }, + "9": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "singtabop|input": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Pivot Long Format to Wide Format (Matrix)", + "name": "Table Compute", + "outputs": [ + { + "name": "table", + "type": "tabular" + } + ], + "position": { + "left": 1057.987548828125, + "top": 298.0249938964844 + }, + "post_job_actions": { + "HideDatasetActiontable": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3bf5661c0280", + "name": "table_compute", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"out_opts\": [\"output_headers_col\", \"output_headers_row\"], \"precision\": \"6\", \"singtabop\": {\"use_type\": \"single\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"col_row_names\": [\"has_col_names\"], \"adv\": {\"header\": null, \"nrows\": null, \"skipfooter\": null, \"skip_blank_lines\": \"true\"}, \"user\": {\"mode\": \"fulltable\", \"__current_case__\": 4, \"general\": {\"use\": \"pivot\", \"__current_case__\": 2, \"index\": \"gene\", \"column\": \"bar\", \"values\": \"value\", \"aggfunc\": null, \"colfun_map\": []}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "571a650f-5b76-4103-98f1-7a8400f1abbd", + "workflow_outputs": [] + } + }, + "tags": "", + "uuid": "1eccbdc6-6b28-4cbf-abbe-59145eeee57e" + }, + "tool_id": 171553, + "type": "subworkflow", + "uuid": "ff79cab7-702d-4172-8a10-9e64815de427", + "workflow_outputs": [ + { + "label": null, + "output_name": "Gene Symbol Count Matrix", + "uuid": "bc5b731e-deb9-4117-ba1d-3f891cb61e66" + }, + { + "label": null, + "output_name": "Report of Duplicate Genes", + "uuid": "3dfa19cf-db53-4923-b2c1-abe2c37d3457" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy4", + "errors": null, + "id": 7, + "input_connections": { + "exprs_file": { + "id": 6, + "output_name": "Gene Symbol Count Matrix" + }, + "pdata_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Construct Expression Set Object", + "outputs": [ + { + "name": "out_txt", + "type": "txt" + }, + { + "name": "out_rds", + "type": "rdata" + } + ], + "position": { + "left": 1439.0208740234375, + "top": 151 + }, + "post_job_actions": { + "RemoveTagDatasetActionout_rds": { + "action_arguments": { + "tags": "#metadata,#matrix" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_rds" + }, + "TagDatasetActionout_rds": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "TagDatasetAction", + "output_name": "out_rds" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "282819d09a4f", + "name": "music_construct_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation\": \"\", \"expdata\": {\"name\": \"\", \"lab\": \"\", \"contact\": \"\", \"title\": \"\", \"abstract\": \"\", \"url\": \"\", \"other\": [{\"__index__\": 0, \"field\": \"notes\", \"comment\": \"Created in Galaxy\"}]}, \"exprs_file\": {\"__class__\": \"ConnectedValue\"}, \"metadata\": [], \"pdata_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "ca9a2794-404f-4460-8377-f2bc142b37a4", + "workflow_outputs": [ + { + "label": "Construct Expression Set Object on input dataset(s): RData ESet Object", + "output_name": "out_rds", + "uuid": "e8c91df0-4e6c-4eb2-9807-c2679b494958" + }, + { + "label": "Construct Expression Set Object on input dataset(s): General Info", + "output_name": "out_txt", + "uuid": "2912d09b-b178-4035-b7c8-7038392e2bf2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "errors": null, + "id": 8, + "input_connections": { + "rds_eset": { + "id": 7, + "output_name": "out_rds" + } + }, + "inputs": [], + "label": null, + "name": "Manipulate Expression Set Object", + "outputs": [ + { + "name": "out_eset", + "type": "rdata" + } + ], + "position": { + "left": 1729.52099609375, + "top": 157.5 + }, + "post_job_actions": { + "RemoveTagDatasetActionout_eset": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_eset" + }, + "TagDatasetActionout_eset": { + "action_arguments": { + "tags": "#normal" + }, + "action_type": "TagDatasetAction", + "output_name": "out_eset" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "22232092be53", + "name": "music_manipulate_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"combine_eset\": {\"do\": \"No\", \"__current_case__\": 0}, \"rds_eset\": {\"__class__\": \"ConnectedValue\"}, \"subset_eset\": {\"do\": \"Yes\", \"__current_case__\": 1, \"subset_yes\": {\"by\": \"phenotype\", \"__current_case__\": 3, \"pheno_samples\": [{\"__index__\": 0, \"column\": \"Disease\", \"values\": \"normal\"}], \"pheno_genes\": []}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "4f5f4bed-c2cf-4fe8-8d29-32b3e178932b", + "workflow_outputs": [ + { + "label": "Manipulate Expression Set Object on input dataset(s): ExpressionSet Object", + "output_name": "out_eset", + "uuid": "08de92d8-32fe-4b47-9038-298cdd13fac5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "errors": null, + "id": 9, + "input_connections": { + "rds_eset": { + "id": 7, + "output_name": "out_rds" + } + }, + "inputs": [], + "label": null, + "name": "Manipulate Expression Set Object", + "outputs": [ + { + "name": "out_eset", + "type": "rdata" + } + ], + "position": { + "left": 1725.52099609375, + "top": 402.4895935058594 + }, + "post_job_actions": { + "RemoveTagDatasetActionout_eset": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_eset" + }, + "TagDatasetActionout_eset": { + "action_arguments": { + "tags": "#T2D" + }, + "action_type": "TagDatasetAction", + "output_name": "out_eset" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "22232092be53", + "name": "music_manipulate_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"combine_eset\": {\"do\": \"No\", \"__current_case__\": 0}, \"rds_eset\": {\"__class__\": \"ConnectedValue\"}, \"subset_eset\": {\"do\": \"Yes\", \"__current_case__\": 1, \"subset_yes\": {\"by\": \"phenotype\", \"__current_case__\": 3, \"pheno_samples\": [{\"__index__\": 0, \"column\": \"Disease\", \"values\": \"type II diabetes mellitus\"}], \"pheno_genes\": []}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "175ce542-ca00-4a2c-bb63-1f08bf41b16e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_eset", + "uuid": "bdf6c2ca-9ded-487f-8c7c-7b5e5e7ec42f" + } + ] + } + ], + "parent_id": "single-cell/bulk-music-2-preparescref", + "path": "topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_matrix.ga", + "tags": [ + "name:singlecell", + "name:training", + "name:transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "MuSiC-Deconvolution: Data generation | sc | matrix + ESet", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music-2-preparescref/versions/sc-matrix", + "tutorial_id": "bulk-music-2-preparescref", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_matrix.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_matrix.html", + "version": 1, + "wfid": "single-cell-bulk-music-2-preparescref", + "wfname": "sc-matrix", + "workflow": "sc_matrix.ga", + "workflow_tools": [ + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_read_10x/scanpy_read_10x/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.14.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0" + ], + "workflowhub_id": "1261" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-8170-8806", + "name": "Wendi Bacon" + }, + { + "class": "Person", + "identifier": "0000-0002-4181-2676", + "name": "Mehmet Tekman" + } + ], + "description": "This workflow generates from only an EBI SCXA reference the metadata for creating an ESet object\n", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"EBI SCXA Data Retrieval\"]\n 1[label=\"Cut\"]\n 0 -> 1 [label=\"design_tsv\"]\n 2[label=\"Add line to file\"]\n 0 -> 2 [label=\"barcode_tsv\"]\n 3[label=\"Reformatting metadata columns\"]\n 1 -> 3 [label=\"out_file1\"]\n 4[label=\"Join two Datasets\"]\n 2 -> 4 [label=\"outfile\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"Advanced Cut\"]\n 4 -> 5 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "9a561b3752745eab20cececd5346ee0a7449da28", + "message": "update workflows", + "num": 1, + "short_hash": "9a561b375", + "unix": "1669581042" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"EBI SCXA Data Retrieval\"];\n 1[\"Cut\"];\n 0 -->|design_tsv| 1;\n 2[\"Add line to file\"];\n 0 -->|barcode_tsv| 2;\n 3[\"Reformatting metadata columns\"];\n 1 -->|out_file1| 3;\n 4[\"Join two Datasets\"];\n 2 -->|outfile| 4;\n 3 -->|out_file1| 4;\n 5[\"Advanced Cut\"];\n 4 -->|out_file1| 5;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "MuSiC-Deconvolution: Data generation | sc | metadata", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.1+galaxy1", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "EBI SCXA Data Retrieval", + "outputs": [ + { + "name": "matrix_mtx", + "type": "txt" + }, + { + "name": "genes_tsv", + "type": "tsv" + }, + { + "name": "barcode_tsv", + "type": "tsv" + }, + { + "name": "design_tsv", + "type": "tsv" + } + ], + "position": { + "left": 0.0, + "top": 10.5 + }, + "post_job_actions": { + "ChangeDatatypeActionbarcode_tsv": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "barcode_tsv" + }, + "TagDatasetActionbarcode_tsv": { + "action_arguments": { + "tags": "#ebi,#singlecell,#metadata" + }, + "action_type": "TagDatasetAction", + "output_name": "barcode_tsv" + }, + "TagDatasetActiondesign_tsv": { + "action_arguments": { + "tags": "#ebi" + }, + "action_type": "TagDatasetAction", + "output_name": "design_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "cd6b80f62fcc", + "name": "retrieve_scxa", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"accession\": \"E-MTAB-5061\", \"matrix_type\": \"raw\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "836f6c68-fa15-4f1d-8db5-a432c6c783f8", + "workflow_outputs": [ + { + "label": null, + "output_name": "matrix_mtx", + "uuid": "ecafd465-5cb3-4484-868f-8922ae3db395" + }, + { + "label": null, + "output_name": "genes_tsv", + "uuid": "25d87e34-ad87-4987-a626-589b42b0a10d" + }, + { + "label": null, + "output_name": "barcode_tsv", + "uuid": "9f57847e-944c-4b00-a33b-bd60ef0814ec" + }, + { + "label": null, + "output_name": "design_tsv", + "uuid": "d8857eeb-49da-4772-b8e7-7237c7a0ade0" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "design_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 282.01043701171875, + "top": 270.5 + }, + "post_job_actions": { + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "#singlecell" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c4,c6,c8,c10,c14,c20,c24,c26,c30,c32,c34\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "fc140e5f-6659-4a8f-bacc-ccf78e50cf39", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "3d887d75-9e58-4a8b-b8c3-9f30b65d17aa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/add_line_to_file/add_line_to_file/0.1.0", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "barcode_tsv" + } + }, + "inputs": [], + "label": null, + "name": "Add line to file", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 687.5, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/add_line_to_file/add_line_to_file/0.1.0", + "tool_shed_repository": { + "changeset_revision": "8e251055b1a9", + "name": "add_line_to_file", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile\": {\"__class__\": \"ConnectedValue\"}, \"options\": \"header\", \"text_input\": \"Cell\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "e8ac2324-aa96-40c6-a4f4-e2f3896136c9", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "e07a7e35-8f57-479a-b328-6d988627d5fb" + } + ] + }, + { + "annotation": "Adjust this step as necessary", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.2", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 1, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Reformatting metadata columns", + "name": "Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 586.03125, + "top": 150.45834350585938 + }, + "post_job_actions": { + "ChangeDatatypeActionout_file1": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "out_file1" + }, + "TagDatasetActionout_file1": { + "action_arguments": { + "tags": "#metadata" + }, + "action_type": "TagDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.2", + "tool_shed_repository": { + "changeset_revision": "399da6b5ec21", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"\\\"Sample Characteristic\\\\[individual\\\\]\\\"\", \"replacement\": \"Individual\"}, {\"__index__\": 1, \"pattern\": \"\\\"Sample Characteristic\\\\[sex\\\\]\\\"\", \"replacement\": \"Sex\"}, {\"__index__\": 2, \"pattern\": \"\\\"Sample Characteristic\\\\[age\\\\]\\\"\", \"replacement\": \"Age\"}, {\"__index__\": 3, \"pattern\": \"\\\"Sample Characteristic\\\\[body mass index\\\\]\\\"\", \"replacement\": \"BMI\"}, {\"__index__\": 4, \"pattern\": \" kilogram per square meter\", \"replacement\": \"\"}, {\"__index__\": 5, \"pattern\": \"HbA1c \", \"replacement\": \"\"}, {\"__index__\": 6, \"pattern\": \"\\\"Sample Characteristic\\\\[clinical information\\\\]\\\"\", \"replacement\": \"HbA1c\"}, {\"__index__\": 7, \"pattern\": \"%\", \"replacement\": \"\"}, {\"__index__\": 8, \"pattern\": \"\\\"Sample Characteristic\\\\[disease\\\\]\\\"\", \"replacement\": \"Disease\"}, {\"__index__\": 9, \"pattern\": \"\\\"Sample Characteristic\\\\[single cell quality\\\\]\\\"\", \"replacement\": \"Single cell quality\"}, {\"__index__\": 10, \"pattern\": \"\\\"Sample Characteristic\\\\[submitted single cell quality\\\\]\\\"\", \"replacement\": \"Submitted single cell quality\"}, {\"__index__\": 11, \"pattern\": \"\\\"Factor Value\\\\[inferred cell type - ontology labels\\\\]\\\"\", \"replacement\": \"Inferred cell type - ontology label\"}, {\"__index__\": 12, \"pattern\": \"\\\"\\\"\", \"replacement\": \"\"}, {\"__index__\": 13, \"pattern\": \"\\\"\", \"replacement\": \"\"}, {\"__index__\": 14, \"pattern\": \"Factor Value\\\\[inferred cell type - authors labels\\\\]\", \"replacement\": \"Inferred cell type - author labels\"}], \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "e5b0bcd3-a94c-4942-bed0-6d8f51e36e22", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "45757c76-0453-426f-b729-4c9d7b5688c9" + } + ] + }, + { + "annotation": "Experimental designs often include extra stuff (likely the barcodes not meeting the EBI pre-processing criteria), so this way we streamline down to only those barcodes in the barcodes file.", + "content_id": "join1", + "errors": null, + "id": 4, + "input_connections": { + "input1": { + "id": 2, + "output_name": "outfile" + }, + "input2": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 857.0208740234375, + "top": 166.46875 + }, + "post_job_actions": {}, + "tool_id": "join1", + "tool_state": "{\"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"\", \"unmatched\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "0f40eba6-5e09-45de-a6b8-64b4bdcabd3f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "39583bc2-7e06-4088-abcc-bb8b994767bb" + } + ] + }, + { + "annotation": "Gets rid of the duplicated columns", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1106.8125, + "top": 110.29167175292969 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"1\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "f5795ca8-4172-42d5-a898-ab71fe195024", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f7c57eb1-71ae-4850-8e99-16fafe763bbf" + } + ] + } + ], + "parent_id": "single-cell/bulk-music-2-preparescref", + "path": "topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_metadata.ga", + "tags": [ + "name:singlecell", + "name:transcriptomics", + "name:training", + "name:deconvolution" + ], + "test_results": null, + "tests": false, + "title": "MuSiC-Deconvolution: Data generation | sc | metadata", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music-2-preparescref/versions/sc-metadata", + "tutorial_id": "bulk-music-2-preparescref", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_metadata.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-2-preparescref/workflows/sc_metadata.html", + "version": 1, + "wfid": "single-cell-bulk-music-2-preparescref", + "wfname": "sc-metadata", + "workflow": "sc_metadata.ga", + "workflow_tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/add_line_to_file/add_line_to_file/0.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/retrieve_scxa/retrieve_scxa/v0.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.2" + ], + "workflowhub_id": "1257" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "scanpy_compute_graph", + "owner": "ebi-gxa", + "revisions": "6417cccad133", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_find_cluster", + "owner": "ebi-gxa", + "revisions": "ad6995afd2e6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot_embed", + "owner": "ebi-gxa", + "revisions": "35f6611fb8c3", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_plot_trajectory", + "owner": "ebi-gxa", + "revisions": "f489ccdd423c", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_diffmap", + "owner": "ebi-gxa", + "revisions": "e2ca1846080f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_dpt", + "owner": "ebi-gxa", + "revisions": "2e06dabb3f2f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_fdg", + "owner": "ebi-gxa", + "revisions": "7c6581b57ad4", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "scanpy_run_paga", + "owner": "ebi-gxa", + "revisions": "4e7d55438238", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_manipulate", + "owner": "iuc", + "revisions": "3d748954434b", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: scanpy_compute_graph\n owner: ebi-gxa\n revisions: 6417cccad133\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_find_cluster\n owner: ebi-gxa\n revisions: ad6995afd2e6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot_embed\n owner: ebi-gxa\n revisions: 35f6611fb8c3\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_plot_trajectory\n owner: ebi-gxa\n revisions: f489ccdd423c\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_diffmap\n owner: ebi-gxa\n revisions: e2ca1846080f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_dpt\n owner: ebi-gxa\n revisions: 2e06dabb3f2f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_fdg\n owner: ebi-gxa\n revisions: 7c6581b57ad4\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: scanpy_run_paga\n owner: ebi-gxa\n revisions: 4e7d55438238\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_manipulate\n owner: iuc\n revisions: 3d748954434b\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "answer_histories": [ + { + "date": "2023-12-14", + "history": "https://humancellatlas.usegalaxy.eu/u/marisa_jl/h/inferring-trajectories-using-scanpy---example-history", + "label": "UseGalaxy.eu" + } + ], + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_trajectories/tutorial.json", + "contributions": { + "authorship": [ + "MarisaJL", + "nomadscientist", + "wee-snufkin", + "mtekman" + ], + "editing": [ + "pavanvidem", + "hexylena" + ] + }, + "contributors": [ + { + "email": "marisa.loach@open.ac.uk", + "id": "MarisaJL", + "joined": "2022-10", + "name": "Marisa Loach", + "orcid": "0000-0001-6979-6930", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/MarisaJL/", + "twitter": "Marisa_Loach", + "url": "https://training.galaxyproject.org/training-material/api/contributors/MarisaJL.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_trajectories", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/scrna-case_trajectories", + "inexact_supported_servers": [ + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "input_histories": [ + { + "history": "https://usegalaxy.eu/u/wendi.bacon.training/h/cs4inferred-trajectory-analysis-using-python-jupyter-notebook-in-galaxy---input", + "label": "UseGalaxy.eu" + } + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Trajectory analysis is less robust than pure plotting methods, as such 'inferred relationships' are a bigger mathematical leap", + "As always with single-cell analysis, you must know enough biology to deduce if your analysis is reasonable, before exploring or deducing novel insight" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-13", + "objectives": [ + "Execute multiple plotting methods designed to identify lineage relationships between cells", + "Interpret these plots" + ], + "pageviews": 487, + "priority": 4, + "pub_date": "2023-12-08", + "questions": [ + "How can I infer lineage relationships between single cells based on their RNA, without a time series?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets", + "scrna-case_basic-pipeline" + ], + "type": "internal" + } + ], + "short_id": "T00379", + "short_tools": [ + "anndata_manipulate", + "scanpy_plot_embed", + "scanpy_run_diffmap", + "scanpy_run_dpt", + "scanpy_plot_trajectory", + "scanpy_find_cluster", + "scanpy_compute_graph", + "scanpy_run_paga", + "scanpy_run_fdg" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication" + ], + "time_estimation": "3H", + "title": "Inferring single cell trajectories with Scanpy", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_find_cluster/scanpy_find_cluster/1.8.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_trajectory/scanpy_plot_trajectory/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_diffmap/scanpy_run_diffmap/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_dpt/scanpy_run_dpt/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_fdg/scanpy_run_fdg/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_paga/scanpy_run_paga/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_trajectories", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_trajectories/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_trajectories/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_trajectories/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 140, + "visitors": 405, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "name": "Marisa Loach" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput Anndata\"]\n 1[label=\"Manipulate AnnData\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Scanpy RunFDG\"]\n 1 -> 2 [label=\"anndata\"]\n 3[label=\"Scanpy PlotEmbed\"]\n 2 -> 3 [label=\"output_h5ad\"]\n 4[label=\"Scanpy DiffusionMap\"]\n 2 -> 4 [label=\"output_h5ad\"]\n 5[label=\"Scanpy ComputeGraph\"]\n 4 -> 5 [label=\"output_h5ad\"]\n 6[label=\"Scanpy RunFDG\"]\n 5 -> 6 [label=\"output_h5ad\"]\n 7[label=\"Scanpy PlotEmbed\"]\n 6 -> 7 [label=\"output_h5ad\"]\n 8[label=\"Scanpy PAGA\"]\n 6 -> 8 [label=\"output_h5ad\"]\n 9[label=\"Scanpy PlotTrajectory\"]\n 8 -> 9 [label=\"output_h5ad\"]\n 10[label=\"Scanpy RunFDG\"]\n 9 -> 10 [label=\"output_h5ad\"]\n 11[label=\"Scanpy PlotEmbed\"]\n 10 -> 11 [label=\"output_h5ad\"]\n 12[label=\"Scanpy PlotEmbed\"]\n 10 -> 12 [label=\"output_h5ad\"]\n 13[label=\"Scanpy PlotEmbed\"]\n 10 -> 13 [label=\"output_h5ad\"]\n 14[label=\"Final Anndata with Trajectory and DPT\"]\n 10 -> 14 [label=\"output_h5ad\"]\n 15[label=\"Scanpy PlotEmbed\"]\n 14 -> 15 [label=\"output_h5ad\"]\n}", + "history": [ + { + "hash": "8968634ab94d0a0b5c6820fea074291ce56c18bc", + "message": "Rename main_workflow.ga to inferring-trajectories-with-scanpy-workflow.ga", + "num": 1, + "short_hash": "8968634ab", + "unix": "1695826444" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Anndata" + } + ], + "label": "Input Anndata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 83.78581206728259 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f5fb0643-f45a-49d4-9e0d-c5aaded62055", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput Anndata\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Manipulate AnnData\"];\n 0 -->|output| 1;\n 2[\"Scanpy RunFDG\"];\n 1 -->|anndata| 2;\n 3[\"Scanpy PlotEmbed\"];\n 2 -->|output_h5ad| 3;\n 4[\"Scanpy DiffusionMap\"];\n 2 -->|output_h5ad| 4;\n 5[\"Scanpy ComputeGraph\"];\n 4 -->|output_h5ad| 5;\n 6[\"Scanpy RunFDG\"];\n 5 -->|output_h5ad| 6;\n 7[\"Scanpy PlotEmbed\"];\n 6 -->|output_h5ad| 7;\n 8[\"Scanpy PAGA\"];\n 6 -->|output_h5ad| 8;\n 9[\"Scanpy PlotTrajectory\"];\n 8 -->|output_h5ad| 9;\n 10[\"Scanpy RunFDG\"];\n 9 -->|output_h5ad| 10;\n 11[\"Scanpy PlotEmbed\"];\n 10 -->|output_h5ad| 11;\n 12[\"Scanpy PlotEmbed\"];\n 10 -->|output_h5ad| 12;\n 13[\"Scanpy PlotEmbed\"];\n 10 -->|output_h5ad| 13;\n 14[\"Final Anndata with Trajectory and DPT\"];\n 10 -->|output_h5ad| 14;\n 15[\"Scanpy PlotEmbed\"];\n 14 -->|output_h5ad| 15;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Inferring Trajectories with Scanpy Tutorial Workflow", + "outputs": [], + "parent_id": "single-cell/scrna-case_trajectories", + "path": "topics/single-cell/tutorials/scrna-case_trajectories/workflows/inferring-trajectories-with-scanpy-workflow.ga", + "tags": [ + "name:singlecell" + ], + "test_results": null, + "tests": true, + "title": "Inferring Trajectories with Scanpy Tutorial Workflow", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_trajectories/versions/inferring-trajectories-with-scanpy-workflow", + "tutorial_id": "scrna-case_trajectories", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_trajectories/workflows/inferring-trajectories-with-scanpy-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_trajectories/workflows/inferring-trajectories-with-scanpy-workflow.html", + "version": 1, + "wfid": "single-cell-scrna-case_trajectories", + "wfname": "inferring-trajectories-with-scanpy-workflow", + "workflow": "inferring-trajectories-with-scanpy-workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_compute_graph/scanpy_compute_graph/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_embed/scanpy_plot_embed/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_plot_trajectory/scanpy_plot_trajectory/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_diffmap/scanpy_run_diffmap/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_dpt/scanpy_run_dpt/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_fdg/scanpy_run_fdg/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/scanpy_run_paga/scanpy_run_paga/1.8.1+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_manipulate/anndata_manipulate/0.7.5+galaxy1" + ], + "workflowhub_id": "1238" + } + ], + "zenodo_link": "https://zenodo.org/record/7075718" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-data-formats/tutorial.json", + "contributors": [ + { + "email": "hexhowells@gmail.com", + "id": "hexhowells", + "joined": "2023-06", + "name": "Morgan Howells", + "orcid": "0009-0008-9422-6380", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexhowells/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexhowells.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-data-formats", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "single-cell/scrna-data-formats", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Single-cell data consists of four main sections", + "Single-cell data can come in a variety of formats", + "Different data formats are required for different languages and packages", + "There are various public single-cell atlases that consist of useful data" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-07-26", + "objectives": [ + "Learn the basic structure of single-cell data", + "Be able to recognise different types of single-cell metadata", + "Learn the common data formats used for storing single-cell data", + "Become familiar with some popular sources for public single-cell data" + ], + "pageviews": 71655, + "priority": 4, + "pub_date": "2024-07-26", + "questions": [ + "What does single-cell data look like?", + "What are the common single-cell formats?", + "Where can public single-cell data be found?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-intro" + ], + "type": "internal" + } + ], + "short_id": "S00123", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "scintroduction", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": null, + "title": "Single-cell Formats and Resources", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-data-formats", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-data-formats/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-data-formats/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-data-formats/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 144, + "visitors": 29367 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case-cell-annotation/tutorial.json", + "contributors": [ + { + "email": "hexhowells@gmail.com", + "id": "hexhowells", + "joined": "2023-06", + "name": "Morgan Howells", + "orcid": "0009-0008-9422-6380", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexhowells/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexhowells.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case-cell-annotation", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "single-cell/scrna-case-cell-annotation", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Automated cell annotation is a useful tool for automatically assigning cell type labels to cell data.", + "There are various algorithms and methods that can be used for conducting cell annotation with each method having its own strengths and weaknesses.", + "Automated cell annotation isn't perfect, when analysing results it's important to identify common issues that could occur." + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-10-10", + "objectives": [ + "Learn the different methods underlying automated cell annotation", + "Understand the data needed to annotate cells", + "Be able to choose the most appropriate method for your data", + "Recognise the common issues and be able to resolve them" + ], + "pageviews": 1192560, + "priority": 4, + "pub_date": "2023-09-04", + "questions": [ + "What is automated cell annotation?", + "How is automated cell annotation performed?", + "What methods are available?", + "What is the best method to choose for your data?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-intro" + ], + "type": "internal" + } + ], + "short_id": "S00110", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "scintroduction", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": null, + "title": "Automated Cell Annotation", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case-cell-annotation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case-cell-annotation/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case-cell-annotation/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case-cell-annotation/slides.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 147, + "visitors": 508507 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_monocle3-rstudio/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin" + ], + "editing": [ + "hexylena", + "pavanvidem", + "nomadscientist" + ], + "funding": [ + "eosc-life" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "avatar": "https://www.eosc-life.eu/wp-content/themes/eosc-life-v2/assets/images/eosclogo.png", + "funder": true, + "funding_id": "824087", + "funding_statement": "EOSC-Life has received funding from the European Union\u2019s Horizon 2020 programme under grant agreement number 824087", + "funding_system": "cordis", + "github": false, + "id": "eosc-life", + "joined": "2023-04", + "members": [ + "bgruening" + ], + "name": "EOSC-Life", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/eosc-life/", + "url": "https://training.galaxyproject.org/training-material/api/funders/eosc-life.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_monocle3-rstudio", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/scrna-case_monocle3-rstudio", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Monocle3 in R gives more flexibility when it comes to differential expression analysis and plotting, but Galaxy offers great reproducibility and ease of analysis.", + "Comparing the output of several different methods applied on the same dataset might be useful to confirm the results, to ensure that the findings are reliable and even sometimes to find a new piece of information." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-07", + "notebook": { + "language": "r", + "snippet": "topics/single-cell/tutorials/scrna-case_monocle3-rstudio/preamble.md" + }, + "objectives": [ + "Identify which operations are necessary to transform an AnnData object into the files needed for Monocle", + "Describe the Monocle3 functions in R", + "Recognise steps that can be performed in R, but not with current Galaxy tools", + "Repeat the Monocle3 workflow and choose appropriate parameter values", + "Compare the outputs from Scanpy, Monocle in Galaxy and Monocle in R", + "Describe differential expression analysis methods" + ], + "pageviews": 4140, + "priority": 4, + "pub_date": "2023-04-12", + "questions": [ + "How do I perform a trajectory analysis using Monocle3 in R?", + "What should I do when Galaxy's Monocle tools are not enough?", + "How do I assign cell types to the clusters?", + "How do I infer lineage relationships between clusters, without a time series?", + "How do I perform batch correction and differential expression analysis in Monocle?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets", + "scrna-case_basic-pipeline" + ], + "type": "internal" + } + ], + "short_id": "T00336", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS-code", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication", + "R" + ], + "time_estimation": "3H", + "title": "Inferring single cell trajectories with Monocle3 (R)", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_monocle3-rstudio", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_monocle3-rstudio/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_monocle3-rstudio/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_monocle3-rstudio/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 53, + "visitors": 3575, + "zenodo_link": "https://zenodo.org/record/7455590" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "music_construct_eset", + "owner": "bgruening", + "revisions": "282819d09a4f", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "music_manipulate_eset", + "owner": "bgruening", + "revisions": "22232092be53", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "399da6b5ec21", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "annotatemyids", + "owner": "iuc", + "revisions": "fe3ca740a485", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_remove_by_header", + "owner": "iuc", + "revisions": "2040e4c2750a", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "table_compute", + "owner": "iuc", + "revisions": "3bf5661c0280", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: music_construct_eset\n owner: bgruening\n revisions: 282819d09a4f\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: music_manipulate_eset\n owner: bgruening\n revisions: 22232092be53\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 399da6b5ec21\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: annotatemyids\n owner: iuc\n revisions: fe3ca740a485\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_remove_by_header\n owner: iuc\n revisions: 2040e4c2750a\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: table_compute\n owner: iuc\n revisions: 3bf5661c0280\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-3-preparebulk/tutorial.json", + "contributions": { + "authorship": [ + "nomadscientist", + "mtekman" + ], + "testing": [ + "MarisaJL" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "elixir_node": "de", + "email": "mtekman89@gmail.com", + "former_affiliations": [ + "elixir-europe" + ], + "id": "mtekman", + "joined": "2018-11", + "name": "Mehmet Tekman", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mtekman/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mtekman.json" + }, + { + "email": "marisa.loach@open.ac.uk", + "id": "MarisaJL", + "joined": "2022-10", + "name": "Marisa Loach", + "orcid": "0000-0001-6979-6930", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/MarisaJL/", + "twitter": "Marisa_Loach", + "url": "https://training.galaxyproject.org/training-material/api/contributors/MarisaJL.json" + } + ], + "dir": "topics/single-cell/tutorials/bulk-music-3-preparebulk", + "edam_operation": [ + "Annotation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "single-cell", + "tutorials": [ + "bulk-music-4-compare" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "single-cell/bulk-music-3-preparebulk", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The EMBL-EBI Expression Atlas contains high quality datasets.", + "Metadata manipulation is key for generating the correctly formatted resource." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-13", + "objectives": [ + "You will retrieve raw data from the EMBL-EBI Expression Atlas.", + "You will manipulate the metadata and matrix files.", + "You will combine the metadata and matrix files into an ESet object for MuSiC deconvolution.", + "You will create multiple ESet objects - both combined and separated out by disease phenotype for your bulk dataset." + ], + "pageviews": 854, + "priority": 5, + "pub_date": "2023-01-20", + "questions": [ + "Where can I find good quality RNA-seq datasets?", + "How can I reformat and manipulate these downloads to create the right format for MuSiC?" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "bulk-music", + "bulk-music-2-preparescref" + ], + "type": "internal" + } + ], + "short_id": "T00242", + "short_tools": [ + "music_construct_eset", + "tp_cut_tool", + "sort1", + "tp_awk_tool", + "tp_easyjoin_tool", + "music_manipulate_eset", + "tp_sed_tool", + "table_compute", + "annotatemyids", + "regex1", + "column_remove_by_header" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "datamanipulation", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "transcriptomics", + "data management" + ], + "time_estimation": "1H", + "title": "Bulk matrix to ESet | Creating the bulk RNA-seq dataset for deconvolution", + "tools": [ + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.14.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/column_remove_by_header/column_remove_by_header/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "bulk-music-3-preparebulk", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/bulk-music-3-preparebulk/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-3-preparebulk/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/bulk-music-3-preparebulk/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 100, + "visitors": 470, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-8170-8806", + "name": "Wendi Bacon" + }, + { + "class": "Person", + "identifier": "0000-0002-4181-2676", + "name": "Mehmet Tekman" + } + ], + "description": "This workflow creates bulk ESet objects from uploaded raw matrix & metadata files", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Expression matrix\"]\n 1[label=\"Metadata\"]\n 2[label=\"annotateMyIDs\"]\n 0 -> 2 [label=\"output_tabular\"]\n k8415bac06beb467da0fafb6465987ff7[color=lightseagreen,label=\"Output\\nannotateMyIDs on input dataset(s): Annotated IDs\"]\n 2 -> k8415bac06beb467da0fafb6465987ff7\n 3[label=\"Regex Find And Replace\"]\n 1 -> 3 [label=\"output\"]\n 4[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nCopy of Convert from Ensembl to GeneSymbol, summing duplicate genes\"]\n 2 -> 4 [label=\"out_tab\"]\n 0 -> 4 [label=\"output_tabular\"]\n 5[label=\"Construct Expression Set Object\"]\n 4 -> 5 [label=\"Gene Symbol Count Matrix\"]\n 3 -> 5 [label=\"out_file1\"]\n 6[label=\"Manipulate Expression Set Object\"]\n 5 -> 6 [label=\"out_rds\"]\n k88196d0b72544794b08a5409f19c8323[color=lightseagreen,label=\"Output\\nManipulate Expression Set Object on input dataset(s): ExpressionSet Object\"]\n 6 -> k88196d0b72544794b08a5409f19c8323\n 7[label=\"Manipulate Expression Set Object\"]\n 5 -> 7 [label=\"out_rds\"]\n}", + "history": [ + { + "hash": "9a561b3752745eab20cececd5346ee0a7449da28", + "message": "update workflows", + "num": 1, + "short_hash": "9a561b375", + "unix": "1669581042" + } + ], + "inputs": [], + "license": null, + "mermaid": "flowchart TD\n 0[\"Expression matrix\"];\n 1[\"Metadata\"];\n 2[\"annotateMyIDs\"];\n 0 -->|output_tabular| 2;\n 8415bac0-6beb-467d-a0fa-fb6465987ff7[\"Output\\nannotateMyIDs on input dataset(s): Annotated IDs\"];\n 2 --> 8415bac0-6beb-467d-a0fa-fb6465987ff7;\n style 8415bac0-6beb-467d-a0fa-fb6465987ff7 stroke:#2c3143,stroke-width:4px;\n 3[\"Regex Find And Replace\"];\n 1 -->|output| 3;\n 4[\"\ud83d\udee0\ufe0f Subworkflow\\nCopy of Convert from Ensembl to GeneSymbol, summing duplicate genes\"];\n style 4 fill:#edd,stroke:#900,stroke-width:4px;\n 2 -->|out_tab| 4;\n 0 -->|output_tabular| 4;\n 5[\"Construct Expression Set Object\"];\n 4 -->|Gene Symbol Count Matrix| 5;\n 3 -->|out_file1| 5;\n 6[\"Manipulate Expression Set Object\"];\n 5 -->|out_rds| 6;\n 88196d0b-7254-4794-b08a-5409f19c8323[\"Output\\nManipulate Expression Set Object on input dataset(s): ExpressionSet Object\"];\n 6 --> 88196d0b-7254-4794-b08a-5409f19c8323;\n style 88196d0b-7254-4794-b08a-5409f19c8323 stroke:#2c3143,stroke-width:4px;\n 7[\"Manipulate Expression Set Object\"];\n 5 -->|out_rds| 7;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "MuSiC-Deconvolution: Data generation | bulk | ESet", + "outputs": [ + { + "annotation": "While the EBI data has the gene symbols in it, these are duplicated, so we still need to thin down the duplications.", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/column_remove_by_header/column_remove_by_header/1.0", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "runtime parameter for tool Remove columns", + "name": "input_tabular" + } + ], + "label": "Expression matrix", + "name": "Remove columns", + "outputs": [ + { + "name": "output_tabular", + "type": "tabular" + } + ], + "position": { + "left": 0.0, + "top": 262.5 + }, + "post_job_actions": { + "TagDatasetActionoutput_tabular": { + "action_arguments": { + "tags": "#bulk,#ebi,#matrix" + }, + "action_type": "TagDatasetAction", + "output_name": "output_tabular" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/column_remove_by_header/column_remove_by_header/1.0", + "tool_shed_repository": { + "changeset_revision": "2040e4c2750a", + "name": "column_remove_by_header", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"headers\": [{\"__index__\": 0, \"name\": \"Gene Name\"}], \"input_tabular\": {\"__class__\": \"RuntimeValue\"}, \"keep_columns\": \"false\", \"strip_characters\": \"#\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "aea0ab42-9fd6-4d16-a5f0-d1ce8cc698b1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_tabular", + "uuid": "88efcecd-d1c7-4946-8a18-491ad704f096" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "runtime parameter for tool Advanced Cut", + "name": "input" + } + ], + "label": "Metadata", + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 9.0, + "top": 455.5 + }, + "post_job_actions": { + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "#bulk,#ebi,#metadata" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"3\\n5\\n7\\n8\\n9\\n10\\n11\\n12\\n13\\n15\\n16\\n17\\n18\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "456f7c3d-3e34-44d4-b952-440927543a9c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "71d445d7-061f-41bf-a968-a6705be82fdd" + } + ] + }, + { + "annotation": "Convert EnsemblID to Gene Symbol. Note that some EnsemblID's have multiple Gene Symbols.", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.14.0+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "id_file": { + "id": 0, + "output_name": "output_tabular" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool annotateMyIDs", + "name": "id_file" + } + ], + "label": null, + "name": "annotateMyIDs", + "outputs": [ + { + "name": "out_tab", + "type": "tabular" + } + ], + "position": { + "left": 290.0, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.14.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fe3ca740a485", + "name": "annotatemyids", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"file_has_header\": \"true\", \"id_file\": {\"__class__\": \"RuntimeValue\"}, \"id_type\": \"ENSEMBL\", \"organism\": \"Hs\", \"output_cols\": [\"SYMBOL\"], \"remove_dups\": \"false\", \"rscriptOpt\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "faff29fb-e920-4767-9da2-f68820116c3b", + "workflow_outputs": [ + { + "label": "annotateMyIDs on input dataset(s): Annotated IDs", + "output_name": "out_tab", + "uuid": "8415bac0-6beb-467d-a0fa-fb6465987ff7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.2", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Regex Find And Replace", + "name": "input" + } + ], + "label": null, + "name": "Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 466.0, + "top": 422.5 + }, + "post_job_actions": { + "ChangeDatatypeActionout_file1": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.2", + "tool_shed_repository": { + "changeset_revision": "399da6b5ec21", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"Sample Characteristic\\\\[age\\\\]\", \"replacement\": \"Age\"}, {\"__index__\": 1, \"pattern\": \" year\", \"replacement\": \"\"}, {\"__index__\": 2, \"pattern\": \"Sample Characteristic\\\\[body mass index\\\\]\", \"replacement\": \"BMI\"}, {\"__index__\": 3, \"pattern\": \"Sample Characteristic\\\\[disease\\\\]\", \"replacement\": \"Disease\"}, {\"__index__\": 4, \"pattern\": \"Sample Characteristic\\\\[individual\\\\]\", \"replacement\": \"Individual\"}, {\"__index__\": 5, \"pattern\": \"Sample Characteristic\\\\[sex\\\\]\", \"replacement\": \"Sex\"}], \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "e0bf890a-f327-424b-b6fa-353c4141c900", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "af0da388-91c7-4b22-b9a8-abe3c6655c1b" + } + ] + }, + { + "annotation": "", + "id": 4, + "input_connections": { + "Annotated IDs": { + "id": 2, + "input_subworkflow_step_id": 0, + "output_name": "out_tab" + }, + "Expression Matrix (Gene Rows)": { + "id": 0, + "input_subworkflow_step_id": 1, + "output_name": "output_tabular" + } + }, + "inputs": [], + "label": null, + "name": "Copy of Convert from Ensembl to GeneSymbol, summing duplicate genes", + "outputs": [], + "position": { + "left": 525.5, + "top": 36.5 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "", + "name": "Mehmet Tekman" + } + ], + "format-version": "0.1", + "name": "Copy of Convert from Ensembl to GeneSymbol, summing duplicate genes", + "steps": { + "0": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Annotated IDs" + } + ], + "label": "Annotated IDs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.5, + "top": 127.52500915527344 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a5355f15-68b7-4551-ac47-49ac73b00edf", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e6ac7216-b2c6-4232-b911-eb1285ed8a9f" + } + ] + }, + "1": { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Expression Matrix (Gene Rows)" + } + ], + "label": "Expression Matrix (Gene Rows)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 237.01251220703125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "9aa181ba-56bd-4360-9d50-907bee463505", + "workflow_outputs": [] + }, + "10": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 9, + "output_name": "table" + } + }, + "inputs": [], + "label": "Final Count Matrix with Gene Symbol ID's", + "name": "Text transformation", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1284.0125732421875, + "top": 386.07501220703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"1 s/^gene//\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "16452009-e11e-4aeb-8404-6c70e13490ac", + "workflow_outputs": [ + { + "label": "Gene Symbol Count Matrix", + "output_name": "output", + "uuid": "f7b8537e-6349-437a-9b89-d9bab0e1e581" + } + ] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Text reformatting", + "name": "infile" + } + ], + "label": "Group Ensembl Duplicates", + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 328.01251220703125, + "top": 220.0124969482422 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"BEGIN {\\n ordering[\\\"test\\\"]\\n delete ordering[\\\"test\\\"]\\n}\\nNR > 1 {\\n if (gene[$1]){\\n gene[$1] = gene[$1]\\\":\\\"$2\\n } else {\\n gene[$1] = $2\\n ordering[length(ordering)+1] = $1\\n }\\n \\n}\\n\\nEND {\\n for (o=0; o < length(ordering); ++o){\\n print ordering[o]\\\"\\\\t\\\"gene[ordering[o]]\\n }\\n}\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "e5b51c32-bd3a-440f-a05a-8c1c36384e3c", + "workflow_outputs": [] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "errors": null, + "id": 3, + "input_connections": { + "infile1": { + "id": 1, + "output_name": "output" + }, + "infile2": { + "id": 2, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Merge Gene Symbol and matrix together", + "name": "Join", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 330.98748779296875, + "top": 352.0249938964844 + }, + "post_job_actions": { + "HideDatasetActionoutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"column1\": \"1\", \"column2\": \"1\", \"empty_string_filler\": \"0\", \"header\": \"true\", \"ignore_case\": \"false\", \"infile1\": {\"__class__\": \"ConnectedValue\"}, \"infile2\": {\"__class__\": \"ConnectedValue\"}, \"jointype\": \" \", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "0ac51cc9-c0b0-4b3d-961c-503860cf423f", + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 4, + "input_connections": { + "infile": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": "Relocate the Gene Symbol column to 1st column", + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 580.9625244140625, + "top": 381.01251220703125 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"{print $NF\\\"\\\\t\\\"$0}\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "44880f2a-430c-4b00-a0b3-e4673fe395ce", + "workflow_outputs": [] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Remove second column with Ensembl ID's", + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 580.0, + "top": 236.01251220703125 + }, + "post_job_actions": { + "HideDatasetActionoutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"2\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "104cb55a-f297-4464-b3b6-7021ffd0ae9c", + "workflow_outputs": [] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 6, + "input_connections": { + "infile": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": "Count Unique occurences of Gene Symbol", + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 832.987548828125, + "top": 0.0 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"{ gene[$1] = gene[$1] + 1 }\\n\\nEND {\\n for (ge in gene){\\n print ge\\\"\\\\t\\\"gene[ge]\\n }\\n}\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "1f84d0c1-b187-4299-a2bd-172964ef3732", + "workflow_outputs": [] + }, + "7": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": "Group rows by Gene Symbol and append their values (Long Format)", + "name": "Text reformatting", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 833.9625244140625, + "top": 246.05001831054688 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"code\": \"NR == 1 {\\n for (i=2; i <= NF; i++){\\n cellorder[i] = $i\\n }\\n}\\n\\nNR > 1 {\\n for (i=2; i <= NF; i++){\\n if (cellorder[i] == \\\"0\\\" || $1 == \\\"NA\\\"){\\n } else {\\n bc[$1\\\"\\\\t\\\"cellorder[i]] = bc[$1\\\"\\\\t\\\"cellorder[i]] + $i\\n }\\n }\\n}\\n\\nEND {\\n print \\\"gene\\\\tbar\\\\tvalue\\\"\\n for (key in bc){\\n print key\\\"\\\\t\\\"bc[key]\\n }\\n}\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "8ac449d7-da88-44b0-bfe2-092d8cd47af9", + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "content_id": "sort1", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Unique Gene Symbol Occurences, sorted in descending frequency.", + "name": "Sort", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1067.9625244140625, + "top": 2.0625 + }, + "post_job_actions": {}, + "tool_id": "sort1", + "tool_state": "{\"column\": \"2\", \"column_set\": [], \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"order\": \"DESC\", \"style\": \"num\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "d3a9bfd0-372a-493c-a83a-578427a7fe17", + "workflow_outputs": [ + { + "label": "Report of Duplicate Genes", + "output_name": "out_file1", + "uuid": "274c3805-5b98-4a64-8dcd-c269750b852e" + } + ] + }, + "9": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "singtabop|input": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Pivot Long Format to Wide Format (Matrix)", + "name": "Table Compute", + "outputs": [ + { + "name": "table", + "type": "tabular" + } + ], + "position": { + "left": 1057.987548828125, + "top": 298.0249938964844 + }, + "post_job_actions": { + "HideDatasetActiontable": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3bf5661c0280", + "name": "table_compute", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"out_opts\": [\"output_headers_col\", \"output_headers_row\"], \"precision\": \"6\", \"singtabop\": {\"use_type\": \"single\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"col_row_names\": [\"has_col_names\"], \"adv\": {\"header\": null, \"nrows\": null, \"skipfooter\": null, \"skip_blank_lines\": \"true\"}, \"user\": {\"mode\": \"fulltable\", \"__current_case__\": 4, \"general\": {\"use\": \"pivot\", \"__current_case__\": 2, \"index\": \"gene\", \"column\": \"bar\", \"values\": \"value\", \"aggfunc\": null, \"colfun_map\": []}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "6c98c17e-43ca-4620-a2f7-a919c24bee20", + "workflow_outputs": [] + } + }, + "tags": "", + "uuid": "463a98af-e99f-47d8-9a05-f601d39b506a" + }, + "tool_id": 171557, + "type": "subworkflow", + "uuid": "319ba9b4-9af0-4a4d-a3d5-b700d1745d3f", + "workflow_outputs": [ + { + "label": null, + "output_name": "Report of Duplicate Genes", + "uuid": "915c757d-6fb1-41d2-a9f7-b8b30a29794a" + }, + { + "label": null, + "output_name": "Gene Symbol Count Matrix", + "uuid": "24ace210-3eac-4f62-8781-366e00cff2dc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy4", + "errors": null, + "id": 5, + "input_connections": { + "exprs_file": { + "id": 4, + "output_name": "Gene Symbol Count Matrix" + }, + "pdata_file": { + "id": 3, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Construct Expression Set Object", + "name": "exprs_file" + }, + { + "description": "runtime parameter for tool Construct Expression Set Object", + "name": "pdata_file" + } + ], + "label": null, + "name": "Construct Expression Set Object", + "outputs": [ + { + "name": "out_txt", + "type": "txt" + }, + { + "name": "out_rds", + "type": "rdata" + } + ], + "position": { + "left": 883.0, + "top": 343.5 + }, + "post_job_actions": { + "RemoveTagDatasetActionout_rds": { + "action_arguments": { + "tags": "#metadata,#matrix" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_rds" + }, + "TagDatasetActionout_rds": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "TagDatasetAction", + "output_name": "out_rds" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "282819d09a4f", + "name": "music_construct_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation\": \"\", \"expdata\": {\"name\": \"\", \"lab\": \"\", \"contact\": \"\", \"title\": \"\", \"abstract\": \"\", \"url\": \"\", \"other\": [{\"__index__\": 0, \"field\": \"notes\", \"comment\": \"Created in Galaxy\"}]}, \"exprs_file\": {\"__class__\": \"RuntimeValue\"}, \"metadata\": [], \"pdata_file\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "8e428b8e-bda7-4fdb-8daa-2197d1d1d357", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_rds", + "uuid": "28490366-fb29-40df-852c-2f5da6f1a6ce" + }, + { + "label": null, + "output_name": "out_txt", + "uuid": "426d6040-bf0f-4312-babf-2ae9c928eff1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "errors": null, + "id": 6, + "input_connections": { + "rds_eset": { + "id": 5, + "output_name": "out_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Manipulate Expression Set Object", + "name": "rds_eset" + } + ], + "label": null, + "name": "Manipulate Expression Set Object", + "outputs": [ + { + "name": "out_eset", + "type": "rdata" + } + ], + "position": { + "left": 1186.5, + "top": 300.5 + }, + "post_job_actions": { + "RemoveTagDatasetActionout_eset": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_eset" + }, + "TagDatasetActionout_eset": { + "action_arguments": { + "tags": "#normal" + }, + "action_type": "TagDatasetAction", + "output_name": "out_eset" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "22232092be53", + "name": "music_manipulate_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"combine_eset\": {\"do\": \"No\", \"__current_case__\": 0}, \"rds_eset\": {\"__class__\": \"RuntimeValue\"}, \"subset_eset\": {\"do\": \"Yes\", \"__current_case__\": 1, \"subset_yes\": {\"by\": \"phenotype\", \"__current_case__\": 3, \"pheno_samples\": [{\"__index__\": 0, \"column\": \"Disease\", \"values\": \"normal\"}], \"pheno_genes\": []}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "f7cd1cd9-42bf-4a24-82a3-6720a7783771", + "workflow_outputs": [ + { + "label": "Manipulate Expression Set Object on input dataset(s): ExpressionSet Object", + "output_name": "out_eset", + "uuid": "88196d0b-7254-4794-b08a-5409f19c8323" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "errors": null, + "id": 7, + "input_connections": { + "rds_eset": { + "id": 5, + "output_name": "out_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Manipulate Expression Set Object", + "name": "rds_eset" + } + ], + "label": null, + "name": "Manipulate Expression Set Object", + "outputs": [ + { + "name": "out_eset", + "type": "rdata" + } + ], + "position": { + "left": 1183.5, + "top": 528.5 + }, + "post_job_actions": { + "RemoveTagDatasetActionout_eset": { + "action_arguments": { + "tags": "#combined" + }, + "action_type": "RemoveTagDatasetAction", + "output_name": "out_eset" + }, + "TagDatasetActionout_eset": { + "action_arguments": { + "tags": "#T2D" + }, + "action_type": "TagDatasetAction", + "output_name": "out_eset" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "tool_shed_repository": { + "changeset_revision": "22232092be53", + "name": "music_manipulate_eset", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"combine_eset\": {\"do\": \"No\", \"__current_case__\": 0}, \"rds_eset\": {\"__class__\": \"RuntimeValue\"}, \"subset_eset\": {\"do\": \"Yes\", \"__current_case__\": 1, \"subset_yes\": {\"by\": \"phenotype\", \"__current_case__\": 3, \"pheno_samples\": [{\"__index__\": 0, \"column\": \"Disease\", \"values\": \"type II diabetes mellitus\"}], \"pheno_genes\": []}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "8dc9defa-1ae9-4e6b-8479-5034763c7c2f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_eset", + "uuid": "ecab164b-a19b-4b78-8b6d-491aa2d5c1e7" + } + ] + } + ], + "parent_id": "single-cell/bulk-music-3-preparebulk", + "path": "topics/single-cell/tutorials/bulk-music-3-preparebulk/workflows/bulk_ESet.ga", + "tags": [ + "name:singlecell", + "name:transcriptomics", + "name:training" + ], + "test_results": null, + "tests": false, + "title": "MuSiC-Deconvolution: Data generation | bulk | ESet", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-bulk-music-3-preparebulk/versions/bulk-eset", + "tutorial_id": "bulk-music-3-preparebulk", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-3-preparebulk/workflows/bulk_ESet.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/bulk-music-3-preparebulk/workflows/bulk_ESet.html", + "version": 1, + "wfid": "single-cell-bulk-music-3-preparebulk", + "wfname": "bulk-eset", + "workflow": "bulk_ESet.ga", + "workflow_tools": [ + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_construct_eset/music_construct_eset/0.1.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/music_manipulate_eset/music_manipulate_eset/0.1.1+galaxy4", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regex1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.14.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/column_remove_by_header/column_remove_by_header/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0" + ], + "workflowhub_id": "1230" + } + ], + "zenodo_link": "https://zenodo.org/record/7319173" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_create", + "owner": "ebi-gxa", + "revisions": "ada68a9d0aec", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_diffexp", + "owner": "ebi-gxa", + "revisions": "d43a608d14ac", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_learngraph", + "owner": "ebi-gxa", + "revisions": "5f877012f7af", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_ordercells", + "owner": "ebi-gxa", + "revisions": "3e77dc421569", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_partition", + "owner": "ebi-gxa", + "revisions": "d98b4705eb4c", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "revisions": "91980addce5e", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_preprocess", + "owner": "ebi-gxa", + "revisions": "c150370b514c", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_reducedim", + "owner": "ebi-gxa", + "revisions": "8900e2a18603", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "monocle3_topmarkers", + "owner": "ebi-gxa", + "revisions": "a4ab4af54b1a", + "tool_panel_section_label": "Monocle3", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "399da6b5ec21", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "anndata_inspect", + "owner": "iuc", + "revisions": "ee98d611afc6", + "tool_panel_section_label": "Single-cell", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_transpose", + "owner": "iuc", + "revisions": "ac092723240d", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_create\n owner: ebi-gxa\n revisions: ada68a9d0aec\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_diffexp\n owner: ebi-gxa\n revisions: d43a608d14ac\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_learngraph\n owner: ebi-gxa\n revisions: 5f877012f7af\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_ordercells\n owner: ebi-gxa\n revisions: 3e77dc421569\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_partition\n owner: ebi-gxa\n revisions: d98b4705eb4c\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_plotcells\n owner: ebi-gxa\n revisions: 91980addce5e\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_preprocess\n owner: ebi-gxa\n revisions: c150370b514c\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_reducedim\n owner: ebi-gxa\n revisions: 8900e2a18603\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: monocle3_topmarkers\n owner: ebi-gxa\n revisions: a4ab4af54b1a\n tool_panel_section_label: Monocle3\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: 399da6b5ec21\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: anndata_inspect\n owner: iuc\n revisions: ee98d611afc6\n tool_panel_section_label: Single-cell\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_transpose\n owner: iuc\n revisions: ac092723240d\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "answer_histories": [ + { + "date": "2024-03-04", + "history": "https://humancellatlas.usegalaxy.eu/u/j.jakiela/h/monoce3-tutorial-workflow", + "label": "UseGalaxy.eu (includes AnnData to CDS conversion)" + } + ], + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/tutorial.json", + "contributions": { + "authorship": [ + "wee-snufkin" + ], + "editing": [ + "hexylena", + "nomadscientist" + ], + "funding": [ + "epsrc-training-grant" + ], + "testing": [ + "nomadscientist" + ] + }, + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "bio": "Senior Lecturer at The Open University", + "elixir_node": "uk", + "email": "wendi.bacon@open.ac.uk", + "fediverse": "https://mstdn.science/@wendibacon1", + "fediverse_flavor": "mastodon", + "id": "nomadscientist", + "joined": "2020-03", + "matrix": "nomadscientist:matrix.org", + "name": "Wendi Bacon", + "orcid": "0000-0002-8170-8806", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nomadscientist/", + "twitter": "WendiBacon1", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nomadscientist.json" + }, + { + "funder": true, + "funding_statement": "The research internship was supported through EPSRC Training Grant DTP 2020-2021 Open University", + "github": false, + "id": "epsrc-training-grant", + "joined": "2022-09", + "name": "EPSRC Training Grant DTP 2020-2021 Open University", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/epsrc-training-grant/", + "short_name": "EPSRC/OU", + "url": "https://training.galaxyproject.org/training-material/api/funders/epsrc-training-grant.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-case_monocle3-trajectories", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "single-cell/scrna-case_monocle3-trajectories", + "inexact_supported_servers": [], + "input_histories": [ + { + "history": "https://usegalaxy.eu/u/j.jakiela/h/cds-input-file-for-monocle3-tutorial", + "label": "CDS file (UseGalaxy.eu)" + } + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "You should understand your data object sufficiently to be able to extract relevant information for further analysis.", + "Trajectory analysis is highly dependent on the parameter values you choose, as such \u2018inferred relationships\u2019 are a bigger mathematical leap. Therefore, you should always check if the output makes biological sense before proceeding to the next step.", + "Comparing the output of two different methods applied on the same dataset might be useful to confirm the results, to ensure that the findings are reliable and even sometimes to find a new piece of information." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Identify which operations to perform on an AnnData object to obtain the files needed for Monocle", + "Follow the Monocle3 workflow and choose the right parameter values", + "Compare the outputs from Scanpy and Monocle", + "Interpet trajectory analysis results" + ], + "pageviews": 3461, + "priority": 5, + "pub_date": "2022-09-30", + "questions": [ + "How can I prepare input files for Monocle starting from an AnnData object?", + "How can I infer lineage relationships between clusters, without a time series?", + "What can trajectory analysis tell us?" + ], + "recordings": [ + { + "captioners": [ + "wee-snufkin" + ], + "date": "2023-04-11", + "length": "15M", + "speakers": [ + "wee-snufkin" + ], + "youtube_id": "Espl6qSbu3Y" + } + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-case_monocle3-trajectories/tutorial", + "/short/single-cell/scrna-case_monocle3-trajectories", + "/short/T00249" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-case_alevin", + "scrna-case_alevin-combine-datasets", + "scrna-case_basic-pipeline", + "scrna-case_JUPYTER-trajectories", + "scrna-data-ingest" + ], + "type": "internal" + } + ], + "short_id": "T00249", + "short_tools": [ + "anndata_inspect", + "monocle3_preprocess", + "monocle3_topmarkers", + "tp_cut_tool", + "monocle3_partition", + "datamash_transpose", + "regexColumn1", + "monocle3_learnGraph", + "Cut1", + "monocle3_diffExp", + "Filter1", + "monocle3_plotCells", + "monocle3_create", + "join1", + "monocle3_orderCells", + "monocle3_reduceDim" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "single-cell-CS", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "10x", + "paper-replication" + ], + "time_estimation": "2H", + "title": "Inferring single cell trajectories with Monocle3", + "tools": [ + "Cut1", + "Filter1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_diffexp/monocle3_diffExp/0.1.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_learngraph/monocle3_learnGraph/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_ordercells/monocle3_orderCells/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_partition/monocle3_partition/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_preprocess/monocle3_preprocess/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_reducedim/monocle3_reduceDim/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_topmarkers/monocle3_topmarkers/0.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2" + ], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-case_monocle3-trajectories", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-case_monocle3-trajectories/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/tutorial.json" + }, + "version": 19, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 93, + "visitors": 2742, + "workflows": [ + { + "creators": [], + "description": "Preparing and filtering gene and cell annotations files and expression matrix to be passed as input for Monocle", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnData to extract genes & cells annotations\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnData before processing to extract clean expression matrix\"]\n 2[label=\"Extract cell annotations\"]\n 0 -> 2 [label=\"output\"]\n k9d66a21742694fb49a4e520eedbb0c9d[color=lightseagreen,label=\"Output\\nExtracted cell annotations (obs)\"]\n 2 -> k9d66a21742694fb49a4e520eedbb0c9d\n 3[label=\"Extract gene annotations\"]\n 0 -> 3 [label=\"output\"]\n k03537e97d6684ce2ba6b2952a18a2752[color=lightseagreen,label=\"Output\\nExtracted gene annotations (var)\"]\n 3 -> k03537e97d6684ce2ba6b2952a18a2752\n 4[label=\"Extract clean expression matrix\"]\n 1 -> 4 [label=\"output\"]\n k963462c84ae0486c8173d98339127850[color=lightseagreen,label=\"Output\\nUnprocessed expression matrix\"]\n 4 -> k963462c84ae0486c8173d98339127850\n 5[label=\"Filter out unwanted cell types\"]\n 2 -> 5 [label=\"obs\"]\n k5dcb70298d03445dbb3ea3119e502be4[color=lightseagreen,label=\"Output\\nCells without macrophages\"]\n 5 -> k5dcb70298d03445dbb3ea3119e502be4\n 6[label=\"gene_short_name annotation\"]\n 3 -> 6 [label=\"var\"]\n k15fd415b2d734a1d92ad200bb2e73853[color=lightseagreen,label=\"Output\\nGenes table with gene_short_name colname\"]\n 6 -> k15fd415b2d734a1d92ad200bb2e73853\n 7[label=\"Cut cells IDs\"]\n 5 -> 7 [label=\"out_file1\"]\n kf9bde24943b944248285e437549223e2[color=lightseagreen,label=\"Output\\nFiltered cells IDs \"]\n 7 -> kf9bde24943b944248285e437549223e2\n 8[label=\"Cut genes IDs\"]\n 6 -> 8 [label=\"out_file1\"]\n kb22efa1ddb99435f935774150ac9a437[color=lightseagreen,label=\"Output\\nGenes IDs\"]\n 8 -> kb22efa1ddb99435f935774150ac9a437\n 9[label=\"Filter matrix by cells\"]\n 7 -> 9 [label=\"out_file1\"]\n 4 -> 9 [label=\"X\"]\n kb45f18b6e38541a1a8f0f94e6616e2b3[color=lightseagreen,label=\"Output\\nPre-filtered matrix (by cells)\"]\n 9 -> kb45f18b6e38541a1a8f0f94e6616e2b3\n 10[label=\"Remove duplicate column cells IDs\"]\n 9 -> 10 [label=\"out_file1\"]\n kf4d6a5819b4241dc9a4a278fe5d6591c[color=lightseagreen,label=\"Output\\nFiltered matrix (by cells) \"]\n 10 -> kf4d6a5819b4241dc9a4a278fe5d6591c\n 11[label=\"Transpose matrix\"]\n 10 -> 11 [label=\"output\"]\n ke4eb8fb3202841fb8acab1c0a6e6bfe5[color=lightseagreen,label=\"Output\\nfiltered matrix (by cells) transposed\"]\n 11 -> ke4eb8fb3202841fb8acab1c0a6e6bfe5\n 12[label=\"Filter matrix by genes\"]\n 8 -> 12 [label=\"out_file1\"]\n 11 -> 12 [label=\"out_file\"]\n kc04812550187407c9f29f4c0069d9285[color=lightseagreen,label=\"Output\\nPre-filtered matrix (by cells & genes)\"]\n 12 -> kc04812550187407c9f29f4c0069d9285\n 13[label=\"Remove duplicate column genes IDs\"]\n 12 -> 13 [label=\"out_file1\"]\n k4dcd8e6012984886be8faf1eac9f20f7[color=lightseagreen,label=\"Output\\nFiltered matrix (by cells & genes)\"]\n 13 -> k4dcd8e6012984886be8faf1eac9f20f7\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "AnnData to extract genes & cells annotations" + } + ], + "label": "AnnData to extract genes & cells annotations", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 246.58749389648438 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "508b2552-1e42-4f6c-9821-1efab3b2bf6a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "AnnData before processing to extract clean expression matrix" + } + ], + "label": "AnnData before processing to extract clean expression matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 530.25, + "top": 1.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "b881b18a-5a3c-4d86-93bf-377fb9edb907", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAnnData to extract genes & cells annotations\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nAnnData before processing to extract clean expression matrix\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Extract cell annotations\"];\n 0 -->|output| 2;\n 9d66a217-4269-4fb4-9a4e-520eedbb0c9d[\"Output\\nExtracted cell annotations (obs)\"];\n 2 --> 9d66a217-4269-4fb4-9a4e-520eedbb0c9d;\n style 9d66a217-4269-4fb4-9a4e-520eedbb0c9d stroke:#2c3143,stroke-width:4px;\n 3[\"Extract gene annotations\"];\n 0 -->|output| 3;\n 03537e97-d668-4ce2-ba6b-2952a18a2752[\"Output\\nExtracted gene annotations (var)\"];\n 3 --> 03537e97-d668-4ce2-ba6b-2952a18a2752;\n style 03537e97-d668-4ce2-ba6b-2952a18a2752 stroke:#2c3143,stroke-width:4px;\n 4[\"Extract clean expression matrix\"];\n 1 -->|output| 4;\n 963462c8-4ae0-486c-8173-d98339127850[\"Output\\nUnprocessed expression matrix\"];\n 4 --> 963462c8-4ae0-486c-8173-d98339127850;\n style 963462c8-4ae0-486c-8173-d98339127850 stroke:#2c3143,stroke-width:4px;\n 5[\"Filter out unwanted cell types\"];\n 2 -->|obs| 5;\n 5dcb7029-8d03-445d-bb3e-a3119e502be4[\"Output\\nCells without macrophages\"];\n 5 --> 5dcb7029-8d03-445d-bb3e-a3119e502be4;\n style 5dcb7029-8d03-445d-bb3e-a3119e502be4 stroke:#2c3143,stroke-width:4px;\n 6[\"gene_short_name annotation\"];\n 3 -->|var| 6;\n 15fd415b-2d73-4a1d-92ad-200bb2e73853[\"Output\\nGenes table with gene_short_name colname\"];\n 6 --> 15fd415b-2d73-4a1d-92ad-200bb2e73853;\n style 15fd415b-2d73-4a1d-92ad-200bb2e73853 stroke:#2c3143,stroke-width:4px;\n 7[\"Cut cells IDs\"];\n 5 -->|out_file1| 7;\n f9bde249-43b9-4424-8285-e437549223e2[\"Output\\nFiltered cells IDs \"];\n 7 --> f9bde249-43b9-4424-8285-e437549223e2;\n style f9bde249-43b9-4424-8285-e437549223e2 stroke:#2c3143,stroke-width:4px;\n 8[\"Cut genes IDs\"];\n 6 -->|out_file1| 8;\n b22efa1d-db99-435f-9357-74150ac9a437[\"Output\\nGenes IDs\"];\n 8 --> b22efa1d-db99-435f-9357-74150ac9a437;\n style b22efa1d-db99-435f-9357-74150ac9a437 stroke:#2c3143,stroke-width:4px;\n 9[\"Filter matrix by cells\"];\n 7 -->|out_file1| 9;\n 4 -->|X| 9;\n b45f18b6-e385-41a1-a8f0-f94e6616e2b3[\"Output\\nPre-filtered matrix (by cells)\"];\n 9 --> b45f18b6-e385-41a1-a8f0-f94e6616e2b3;\n style b45f18b6-e385-41a1-a8f0-f94e6616e2b3 stroke:#2c3143,stroke-width:4px;\n 10[\"Remove duplicate column cells IDs\"];\n 9 -->|out_file1| 10;\n f4d6a581-9b42-41dc-9a4a-278fe5d6591c[\"Output\\nFiltered matrix (by cells) \"];\n 10 --> f4d6a581-9b42-41dc-9a4a-278fe5d6591c;\n style f4d6a581-9b42-41dc-9a4a-278fe5d6591c stroke:#2c3143,stroke-width:4px;\n 11[\"Transpose matrix\"];\n 10 -->|output| 11;\n e4eb8fb3-2028-41fb-8aca-b1c0a6e6bfe5[\"Output\\nfiltered matrix (by cells) transposed\"];\n 11 --> e4eb8fb3-2028-41fb-8aca-b1c0a6e6bfe5;\n style e4eb8fb3-2028-41fb-8aca-b1c0a6e6bfe5 stroke:#2c3143,stroke-width:4px;\n 12[\"Filter matrix by genes\"];\n 8 -->|out_file1| 12;\n 11 -->|out_file| 12;\n c0481255-0187-407c-9f29-f4c0069d9285[\"Output\\nPre-filtered matrix (by cells & genes)\"];\n 12 --> c0481255-0187-407c-9f29-f4c0069d9285;\n style c0481255-0187-407c-9f29-f4c0069d9285 stroke:#2c3143,stroke-width:4px;\n 13[\"Remove duplicate column genes IDs\"];\n 12 -->|out_file1| 13;\n 4dcd8e60-1298-4886-be8f-af1eac9f20f7[\"Output\\nFiltered matrix (by cells & genes)\"];\n 13 --> 4dcd8e60-1298-4886-be8f-af1eac9f20f7;\n style 4dcd8e60-1298-4886-be8f-af1eac9f20f7 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "AnnData object to Monocle input files", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Extract cell annotations", + "name": "Inspect AnnData", + "outputs": [ + { + "name": "obs", + "type": "tabular" + } + ], + "position": { + "left": 249.8125, + "top": 152.60000610351562 + }, + "post_job_actions": { + "RenameDatasetActionobs": { + "action_arguments": { + "newname": "Extracted cell annotations (obs)" + }, + "action_type": "RenameDatasetAction", + "output_name": "obs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"obs\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "d141a849-3a8f-4c1d-b8a9-53006ddfa93c", + "workflow_outputs": [ + { + "label": "Extracted cell annotations (obs)", + "output_name": "obs", + "uuid": "9d66a217-4269-4fb4-9a4e-520eedbb0c9d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Extract gene annotations", + "name": "Inspect AnnData", + "outputs": [ + { + "name": "var", + "type": "tabular" + } + ], + "position": { + "left": 246.9375, + "top": 317.2250061035156 + }, + "post_job_actions": { + "RenameDatasetActionvar": { + "action_arguments": { + "newname": "Extracted gene annotations (var)" + }, + "action_type": "RenameDatasetAction", + "output_name": "var" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"var\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "687a0f41-408e-4db9-8725-a7fded4691b1", + "workflow_outputs": [ + { + "label": "Extracted gene annotations (var)", + "output_name": "var", + "uuid": "03537e97-d668-4ce2-ba6b-2952a18a2752" + } + ] + }, + { + "annotation": "Unprocessed means here before normalisation or dimensionality reduction. For this step, must have cell IDs as rownames.", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Extract clean expression matrix", + "name": "Inspect AnnData", + "outputs": [ + { + "name": "X", + "type": "tabular" + } + ], + "position": { + "left": 756.3375244140625, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionX": { + "action_arguments": { + "newname": "Unprocessed expression matrix" + }, + "action_type": "RenameDatasetAction", + "output_name": "X" + }, + "RenameDatasetActionvar": { + "action_arguments": { + "newname": "Extracted gene annotations (var)" + }, + "action_type": "RenameDatasetAction", + "output_name": "var" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"X\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "9fd9b2d2-88b2-4388-a06b-e39f76a5d9e7", + "workflow_outputs": [ + { + "label": "Unprocessed expression matrix", + "output_name": "X", + "uuid": "963462c8-4ae0-486c-8173-d98339127850" + } + ] + }, + { + "annotation": "Double-check the cell_type column number", + "content_id": "Filter1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 2, + "output_name": "obs" + } + }, + "inputs": [], + "label": "Filter out unwanted cell types", + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 494.8374938964844, + "top": 150.66250610351562 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Cells input data for Monocle3" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c22!='Macrophages'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "43cdae35-76c2-411c-8326-28706ca3e6ab", + "workflow_outputs": [ + { + "label": "Cells without macrophages", + "output_name": "out_file1", + "uuid": "5dcb7029-8d03-445d-bb3e-a3119e502be4" + } + ] + }, + { + "annotation": "Check the number of the column with genes names (using column) and its header (Find Regex)", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.2", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 3, + "output_name": "var" + } + }, + "inputs": [], + "label": "gene_short_name annotation", + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 490.3999938964844, + "top": 317.07501220703125 + }, + "post_job_actions": { + "ChangeDatatypeActionout_file1": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "out_file1" + }, + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Genes input data for Monocle3" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.2", + "tool_shed_repository": { + "changeset_revision": "399da6b5ec21", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"Symbol\", \"replacement\": \"gene_short_name\"}], \"field\": \"3\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "8a9b95d8-8e29-4520-a1b8-4344f0429cf8", + "workflow_outputs": [ + { + "label": "Genes table with gene_short_name colname", + "output_name": "out_file1", + "uuid": "15fd415b-2d73-4a1d-92ad-200bb2e73853" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Cut cells IDs", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 744.8250122070312, + "top": 156 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Filtered cells IDs " + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "863d2026-8351-43cd-ba4b-6ad685984be4", + "workflow_outputs": [ + { + "label": "Filtered cells IDs ", + "output_name": "out_file1", + "uuid": "f9bde249-43b9-4424-8285-e437549223e2" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Cut genes IDs", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 746.7000122070312, + "top": 353.70001220703125 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Genes IDs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "52315cef-6f1c-4043-adfa-81c269b36fdb", + "workflow_outputs": [ + { + "label": "Genes IDs", + "output_name": "out_file1", + "uuid": "b22efa1d-db99-435f-9357-74150ac9a437" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 9, + "input_connections": { + "input1": { + "id": 7, + "output_name": "out_file1" + }, + "input2": { + "id": 4, + "output_name": "X" + } + }, + "inputs": [], + "label": "Filter matrix (by cells)", + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 999.2750244140625, + "top": 152.22500610351562 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Pre-filtered matrix (by cells)" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "join1", + "tool_state": "{\"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "977279d5-cb04-44b6-97b9-9281dc3da96c", + "workflow_outputs": [ + { + "label": "Pre-filtered matrix (by cells)", + "output_name": "out_file1", + "uuid": "b45f18b6-e385-41a1-a8f0-f94e6616e2b3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Remove duplicate column (cells IDs)", + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1243.2000732421875, + "top": 153.47500610351562 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Filtered matrix (by cells) " + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"1\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "2b66d7f9-efdb-48bb-b1c2-b414bb74e4f7", + "workflow_outputs": [ + { + "label": "Filtered matrix (by cells) ", + "output_name": "output", + "uuid": "f4d6a581-9b42-41dc-9a4a-278fe5d6591c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "errors": null, + "id": 11, + "input_connections": { + "in_file": { + "id": 10, + "output_name": "output" + } + }, + "inputs": [], + "label": "Transpose matrix", + "name": "Transpose", + "outputs": [ + { + "name": "out_file", + "type": "input" + } + ], + "position": { + "left": 1477.8875732421875, + "top": 157.41250610351562 + }, + "post_job_actions": { + "RenameDatasetActionout_file": { + "action_arguments": { + "newname": "filtered matrix (by cells) transposed" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "ac092723240d", + "name": "datamash_transpose", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0+galaxy2", + "type": "tool", + "uuid": "91f1a39a-9e94-40ff-b6ad-c40c4d56e2b0", + "workflow_outputs": [ + { + "label": "filtered matrix (by cells) transposed", + "output_name": "out_file", + "uuid": "e4eb8fb3-2028-41fb-8aca-b1c0a6e6bfe5" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 12, + "input_connections": { + "input1": { + "id": 8, + "output_name": "out_file1" + }, + "input2": { + "id": 11, + "output_name": "out_file" + } + }, + "inputs": [], + "label": "Filter matrix (by genes)", + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 994.4500122070312, + "top": 344.38751220703125 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Pre-filtered matrix (by cells & genes)" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "join1", + "tool_state": "{\"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "a3a1faee-b050-4459-8b42-96568363bde3", + "workflow_outputs": [ + { + "label": "Pre-filtered matrix (by cells & genes)", + "output_name": "out_file1", + "uuid": "c0481255-0187-407c-9f29-f4c0069d9285" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 12, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Remove duplicate column (genes IDs)", + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1226.5250244140625, + "top": 414.9624938964844 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Expression matrix for Monocle3" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"1\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "34771621-b504-4720-8830-363f2d264468", + "workflow_outputs": [ + { + "label": "Filtered matrix (by cells & genes)", + "output_name": "output", + "uuid": "4dcd8e60-1298-4886-be8f-af1eac9f20f7" + } + ] + } + ], + "parent_id": "single-cell/scrna-case_monocle3-trajectories", + "path": "topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-AnnData_object_to_Monocle_input_files.ga", + "tags": [ + "name:trajectory_analysis", + "name:transcriptomics", + "name:scRNA-seq" + ], + "test_results": null, + "tests": false, + "title": "AnnData object to Monocle input files", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_monocle3-trajectories/versions/galaxy-workflow-anndata-object-to-monocle-input-files", + "tutorial_id": "scrna-case_monocle3-trajectories", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-AnnData_object_to_Monocle_input_files.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-AnnData_object_to_Monocle_input_files.html", + "version": 1, + "wfid": "single-cell-scrna-case_monocle3-trajectories", + "wfname": "galaxy-workflow-anndata-object-to-monocle-input-files", + "workflow": "Galaxy-Workflow-AnnData_object_to_Monocle_input_files.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2" + ], + "workflowhub_id": "1233" + }, + { + "creators": [], + "description": "Trajectory analysis using Monocle3, starting from 3 input files: expression matrix, gene and cell annotations", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nExpression matrix input\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCell annotations input\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGene annotations input\"]\n 3[label=\"Monocle3 create\"]\n 1 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n k30db218df9e5426dac9b7823743ab5fb[color=lightseagreen,label=\"Output\\nMonocle3 create on input dataset(s): cds3\"]\n 3 -> k30db218df9e5426dac9b7823743ab5fb\n 4[label=\"Monocle3 preprocess\"]\n 3 -> 4 [label=\"output_rds\"]\n k38996ee00c004a01ad18f2e505eaf780[color=lightseagreen,label=\"Output\\nMonocle3 preprocess on input dataset(s): cds3\"]\n 4 -> k38996ee00c004a01ad18f2e505eaf780\n 5[label=\"Monocle3 reduceDim\"]\n 4 -> 5 [label=\"output_rds\"]\n k21edf68f72df457daad7c5fc5afa2b6b[color=lightseagreen,label=\"Output\\nMonocle3 reduceDim on input dataset(s): cds3\"]\n 5 -> k21edf68f72df457daad7c5fc5afa2b6b\n 6[label=\"Monocle3 partition\"]\n 5 -> 6 [label=\"output_rds\"]\n kfdb0e52027c443a08f27a25832a0816d[color=lightseagreen,label=\"Output\\nMonocle3 partition on input dataset(s): cds3\"]\n 6 -> kfdb0e52027c443a08f27a25832a0816d\n 7[label=\"Plot cell type\"]\n 5 -> 7 [label=\"output_rds\"]\n k5e309658e20f4da18841818f16fa8f01[color=lightseagreen,label=\"Output\\nCell type plot\"]\n 7 -> k5e309658e20f4da18841818f16fa8f01\n 8[label=\"Plot genotype\"]\n 5 -> 8 [label=\"output_rds\"]\n kaca3b2c02d3b4a4e8732cf6ddc7844a4[color=lightseagreen,label=\"Output\\nGenotype plot\"]\n 8 -> kaca3b2c02d3b4a4e8732cf6ddc7844a4\n 9[label=\"Plot batch\"]\n 5 -> 9 [label=\"output_rds\"]\n kc8eec2e41a6447bb812b4002968c57c8[color=lightseagreen,label=\"Output\\nBatch plot\"]\n 9 -> kc8eec2e41a6447bb812b4002968c57c8\n 10[label=\"Plot sex\"]\n 5 -> 10 [label=\"output_rds\"]\n kc75954dd34d54a20bcf3e5cd92d74885[color=lightseagreen,label=\"Output\\nSex plot\"]\n 10 -> kc75954dd34d54a20bcf3e5cd92d74885\n 11[label=\"Monocle3 top markers\"]\n 6 -> 11 [label=\"output_rds\"]\n 12[label=\"Plot genes\"]\n 6 -> 12 [label=\"output_rds\"]\n kf91c22a38c6d432a92c5cb010115fa86[color=lightseagreen,label=\"Output\\nGene expression plot\"]\n 12 -> kf91c22a38c6d432a92c5cb010115fa86\n 13[label=\"Plot partition\"]\n 6 -> 13 [label=\"output_rds\"]\n kf4c5f89bedd7489cb4a2a7a3e7d6a89d[color=lightseagreen,label=\"Output\\nPartition plot\"]\n 13 -> kf4c5f89bedd7489cb4a2a7a3e7d6a89d\n 14[label=\"Plot cluster\"]\n 6 -> 14 [label=\"output_rds\"]\n ka2c1a628d79d4e37ad33de92033021a8[color=lightseagreen,label=\"Output\\nCluster plot\"]\n 14 -> ka2c1a628d79d4e37ad33de92033021a8\n 15[label=\"Monocle3 learnGraph\"]\n 6 -> 15 [label=\"output_rds\"]\n ked2003aa4680409f8d79e79b878a786c[color=lightseagreen,label=\"Output\\nMonocle3 learnGraph on input dataset(s): cds3\"]\n 15 -> ked2003aa4680409f8d79e79b878a786c\n 16[label=\"Plot learned trajectory\"]\n 15 -> 16 [label=\"output_rds\"]\n k6fa555f1b4f24e5dbce1ed462d8e056d[color=lightseagreen,label=\"Output\\nCell types & learned trajectory path plot\"]\n 16 -> k6fa555f1b4f24e5dbce1ed462d8e056d\n 17[label=\"Monocle3 orderCells\"]\n 15 -> 17 [label=\"output_rds\"]\n k96d104123d7f4970b5416f4367fa3f37[color=lightseagreen,label=\"Output\\nMonocle3 orderCells on input dataset(s): cds3\"]\n 17 -> k96d104123d7f4970b5416f4367fa3f37\n 18[label=\"Monocle3 diffExp\"]\n 17 -> 18 [label=\"output_rds\"]\n kdb1dc4572d6e47ccb7ced0a4d23e9498[color=lightseagreen,label=\"Output\\nDifferential expression of genes - table\"]\n 18 -> kdb1dc4572d6e47ccb7ced0a4d23e9498\n 19[label=\"Plot pseudotime\"]\n 17 -> 19 [label=\"output_rds\"]\n kd1b3efd20a814dad8652589c2678fbaa[color=lightseagreen,label=\"Output\\nPseudotime plot\"]\n 19 -> kd1b3efd20a814dad8652589c2678fbaa\n}", + "history": [ + { + "hash": "327fd2b842f45de3dc2a30067714352675ad69ae", + "message": "Making a single cell topics", + "num": 1, + "short_hash": "327fd2b84", + "unix": "1668273265" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Expression matrix input" + } + ], + "label": "Expression matrix input", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 217.8125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "12799b9c-8461-4f0e-b1a2-488549faaf36", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cell annotations input" + } + ], + "label": "Cell annotations input", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2, + "top": 325.125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "44aa523a-de56-42cd-8535-e88739c5a9b0", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Gene annotations input" + } + ], + "label": "Gene annotations input", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 434.8000183105469 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4e9b54cf-acc0-4117-9348-c757260c52ac", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nExpression matrix input\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nCell annotations input\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nGene annotations input\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Monocle3 create\"];\n 1 -->|output| 3;\n 0 -->|output| 3;\n 2 -->|output| 3;\n 30db218d-f9e5-426d-ac9b-7823743ab5fb[\"Output\\nMonocle3 create on input dataset(s): cds3\"];\n 3 --> 30db218d-f9e5-426d-ac9b-7823743ab5fb;\n style 30db218d-f9e5-426d-ac9b-7823743ab5fb stroke:#2c3143,stroke-width:4px;\n 4[\"Monocle3 preprocess\"];\n 3 -->|output_rds| 4;\n 38996ee0-0c00-4a01-ad18-f2e505eaf780[\"Output\\nMonocle3 preprocess on input dataset(s): cds3\"];\n 4 --> 38996ee0-0c00-4a01-ad18-f2e505eaf780;\n style 38996ee0-0c00-4a01-ad18-f2e505eaf780 stroke:#2c3143,stroke-width:4px;\n 5[\"Monocle3 reduceDim\"];\n 4 -->|output_rds| 5;\n 21edf68f-72df-457d-aad7-c5fc5afa2b6b[\"Output\\nMonocle3 reduceDim on input dataset(s): cds3\"];\n 5 --> 21edf68f-72df-457d-aad7-c5fc5afa2b6b;\n style 21edf68f-72df-457d-aad7-c5fc5afa2b6b stroke:#2c3143,stroke-width:4px;\n 6[\"Monocle3 partition\"];\n 5 -->|output_rds| 6;\n fdb0e520-27c4-43a0-8f27-a25832a0816d[\"Output\\nMonocle3 partition on input dataset(s): cds3\"];\n 6 --> fdb0e520-27c4-43a0-8f27-a25832a0816d;\n style fdb0e520-27c4-43a0-8f27-a25832a0816d stroke:#2c3143,stroke-width:4px;\n 7[\"Plot cell type\"];\n 5 -->|output_rds| 7;\n 5e309658-e20f-4da1-8841-818f16fa8f01[\"Output\\nCell type plot\"];\n 7 --> 5e309658-e20f-4da1-8841-818f16fa8f01;\n style 5e309658-e20f-4da1-8841-818f16fa8f01 stroke:#2c3143,stroke-width:4px;\n 8[\"Plot genotype\"];\n 5 -->|output_rds| 8;\n aca3b2c0-2d3b-4a4e-8732-cf6ddc7844a4[\"Output\\nGenotype plot\"];\n 8 --> aca3b2c0-2d3b-4a4e-8732-cf6ddc7844a4;\n style aca3b2c0-2d3b-4a4e-8732-cf6ddc7844a4 stroke:#2c3143,stroke-width:4px;\n 9[\"Plot batch\"];\n 5 -->|output_rds| 9;\n c8eec2e4-1a64-47bb-812b-4002968c57c8[\"Output\\nBatch plot\"];\n 9 --> c8eec2e4-1a64-47bb-812b-4002968c57c8;\n style c8eec2e4-1a64-47bb-812b-4002968c57c8 stroke:#2c3143,stroke-width:4px;\n 10[\"Plot sex\"];\n 5 -->|output_rds| 10;\n c75954dd-34d5-4a20-bcf3-e5cd92d74885[\"Output\\nSex plot\"];\n 10 --> c75954dd-34d5-4a20-bcf3-e5cd92d74885;\n style c75954dd-34d5-4a20-bcf3-e5cd92d74885 stroke:#2c3143,stroke-width:4px;\n 11[\"Monocle3 top markers\"];\n 6 -->|output_rds| 11;\n 12[\"Plot genes\"];\n 6 -->|output_rds| 12;\n f91c22a3-8c6d-432a-92c5-cb010115fa86[\"Output\\nGene expression plot\"];\n 12 --> f91c22a3-8c6d-432a-92c5-cb010115fa86;\n style f91c22a3-8c6d-432a-92c5-cb010115fa86 stroke:#2c3143,stroke-width:4px;\n 13[\"Plot partition\"];\n 6 -->|output_rds| 13;\n f4c5f89b-edd7-489c-b4a2-a7a3e7d6a89d[\"Output\\nPartition plot\"];\n 13 --> f4c5f89b-edd7-489c-b4a2-a7a3e7d6a89d;\n style f4c5f89b-edd7-489c-b4a2-a7a3e7d6a89d stroke:#2c3143,stroke-width:4px;\n 14[\"Plot cluster\"];\n 6 -->|output_rds| 14;\n a2c1a628-d79d-4e37-ad33-de92033021a8[\"Output\\nCluster plot\"];\n 14 --> a2c1a628-d79d-4e37-ad33-de92033021a8;\n style a2c1a628-d79d-4e37-ad33-de92033021a8 stroke:#2c3143,stroke-width:4px;\n 15[\"Monocle3 learnGraph\"];\n 6 -->|output_rds| 15;\n ed2003aa-4680-409f-8d79-e79b878a786c[\"Output\\nMonocle3 learnGraph on input dataset(s): cds3\"];\n 15 --> ed2003aa-4680-409f-8d79-e79b878a786c;\n style ed2003aa-4680-409f-8d79-e79b878a786c stroke:#2c3143,stroke-width:4px;\n 16[\"Plot learned trajectory\"];\n 15 -->|output_rds| 16;\n 6fa555f1-b4f2-4e5d-bce1-ed462d8e056d[\"Output\\nCell types & learned trajectory path plot\"];\n 16 --> 6fa555f1-b4f2-4e5d-bce1-ed462d8e056d;\n style 6fa555f1-b4f2-4e5d-bce1-ed462d8e056d stroke:#2c3143,stroke-width:4px;\n 17[\"Monocle3 orderCells\"];\n 15 -->|output_rds| 17;\n 96d10412-3d7f-4970-b541-6f4367fa3f37[\"Output\\nMonocle3 orderCells on input dataset(s): cds3\"];\n 17 --> 96d10412-3d7f-4970-b541-6f4367fa3f37;\n style 96d10412-3d7f-4970-b541-6f4367fa3f37 stroke:#2c3143,stroke-width:4px;\n 18[\"Monocle3 diffExp\"];\n 17 -->|output_rds| 18;\n db1dc457-2d6e-47cc-b7ce-d0a4d23e9498[\"Output\\nDifferential expression of genes - table\"];\n 18 --> db1dc457-2d6e-47cc-b7ce-d0a4d23e9498;\n style db1dc457-2d6e-47cc-b7ce-d0a4d23e9498 stroke:#2c3143,stroke-width:4px;\n 19[\"Plot pseudotime\"];\n 17 -->|output_rds| 19;\n d1b3efd2-0a81-4dad-8652-589c2678fbaa[\"Output\\nPseudotime plot\"];\n 19 --> d1b3efd2-0a81-4dad-8652-589c2678fbaa;\n style d1b3efd2-0a81-4dad-8652-589c2678fbaa stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Monocle3 workflow", + "outputs": [ + { + "annotation": "Check the data format that you're using.", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "errors": null, + "id": 3, + "input_connections": { + "cell_metadata": { + "id": 1, + "output_name": "output" + }, + "expression_matrix": { + "id": 0, + "output_name": "output" + }, + "gene_annotation": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 create", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 246.32499980926514, + "top": 178.5875015258789 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "ada68a9d0aec", + "name": "monocle3_create", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"cell_metadata\": {\"__class__\": \"ConnectedValue\"}, \"cell_metadata_format\": \"tsv\", \"expression_matrix\": {\"__class__\": \"ConnectedValue\"}, \"expression_matrix_format\": \"tsv\", \"gene_annotation\": {\"__class__\": \"ConnectedValue\"}, \"gene_annotation_format\": \"tsv\", \"introspective\": \"true\", \"output_object_format\": \"cds3\", \"verbose\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy2", + "type": "tool", + "uuid": "1f5c64e4-c198-44ed-81db-ed3c2b7ef455", + "workflow_outputs": [ + { + "label": "Monocle3 create on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "30db218d-f9e5-426d-ac9b-7823743ab5fb" + } + ] + }, + { + "annotation": "You might want to change the dimensionality of the reduced space here.", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_preprocess/monocle3_preprocess/0.1.4+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_object_file": { + "id": 3, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 preprocess", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 478.1999969482422, + "top": 469.82501220703125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_preprocess/monocle3_preprocess/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c150370b514c", + "name": "monocle3_preprocess", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": \"true\", \"method\": \"PCA\", \"no_scaling\": \"false\", \"norm_method\": \"log\", \"num_dim\": \"250\", \"output_object_format\": \"cds3\", \"pseudo_count\": \"1.0\", \"residual_model_formula_str\": \"\", \"use_genes\": \"\", \"verbose\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "8f4413dc-d6e7-4228-afe5-dd04d417b7d0", + "workflow_outputs": [ + { + "label": "Monocle3 preprocess on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "38996ee0-0c00-4a01-ad18-f2e505eaf780" + } + ] + }, + { + "annotation": "UMAP/tSNE/PCA/LSI.\nHowever for further steps you need to use UMAP.", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_reducedim/monocle3_reduceDim/0.1.4+galaxy0", + "errors": null, + "id": 5, + "input_connections": { + "input_object_file": { + "id": 4, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 reduceDim", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 712.3875122070312, + "top": 472.5500183105469 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_reducedim/monocle3_reduceDim/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8900e2a18603", + "name": "monocle3_reducedim", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": \"true\", \"max_components\": \"2\", \"output_object_format\": \"cds3\", \"preprocess_method\": \"PCA\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "9079a42f-1df6-436c-8d63-2e7879704224", + "workflow_outputs": [ + { + "label": "Monocle3 reduceDim on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "21edf68f-72df-457d-aad7-c5fc5afa2b6b" + } + ] + }, + { + "annotation": "You might want to change resolution (affects clusters) and/or q-value (affects partitions).", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_partition/monocle3_partition/0.1.4+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input_object_file": { + "id": 5, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 partition", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 980.0250244140625, + "top": 182.1875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_partition/monocle3_partition/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d98b4705eb4c", + "name": "monocle3_partition", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": \"true\", \"knn\": \"20\", \"louvain_iter\": \"1\", \"output_object_format\": \"cds3\", \"partition_qval\": \"1.0\", \"reduction_method\": \"UMAP\", \"resolution\": \"0.00015\", \"verbose\": \"false\", \"weight\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "a76d9a00-df4e-4be0-bec9-cd2eaac4869f", + "workflow_outputs": [ + { + "label": "Monocle3 partition on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "fdb0e520-27c4-43a0-8f27-a25832a0816d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input_object_file": { + "id": 5, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot cell type", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 979.6500244140625, + "top": 333.0500183105469 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Cell type plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"cell_type\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"false\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "57a79107-9586-43b9-8bc5-d0de75da5332", + "workflow_outputs": [ + { + "label": "Cell type plot", + "output_name": "output_tsv", + "uuid": "5e309658-e20f-4da1-8841-818f16fa8f01" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "input_object_file": { + "id": 5, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot genotype", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 984.2125244140625, + "top": 458.95001220703125 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Genotype plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"genotype\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"false\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "c6585610-4e06-4d55-8078-e4043d1d5f58", + "workflow_outputs": [ + { + "label": "Genotype plot", + "output_name": "output_tsv", + "uuid": "aca3b2c0-2d3b-4a4e-8732-cf6ddc7844a4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "input_object_file": { + "id": 5, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot batch", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 981.8375244140625, + "top": 586.4625244140625 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Batch plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"batch\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"false\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "37669b84-76b3-4a19-800b-e2b132a05ea7", + "workflow_outputs": [ + { + "label": "Batch plot", + "output_name": "output_tsv", + "uuid": "c8eec2e4-1a64-47bb-812b-4002968c57c8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "input_object_file": { + "id": 5, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot sex", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 980.5250244140625, + "top": 711.1500244140625 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Sex plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"sex\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"false\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "355f936d-0ae4-48ee-a02d-224970ff0766", + "workflow_outputs": [ + { + "label": "Sex plot", + "output_name": "output_tsv", + "uuid": "c75954dd-34d5-4a20-bcf3-e5cd92d74885" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_topmarkers/monocle3_topmarkers/0.1.5+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "input_object": { + "id": 6, + "output_name": "output_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Monocle3 top markers", + "name": "ref_cells" + } + ], + "label": null, + "name": "Monocle3 top markers", + "outputs": [ + { + "name": "top_markers_plot", + "type": "pdf" + }, + { + "name": "top_markers_table", + "type": "tabular" + } + ], + "position": { + "left": 1242.4625244140625, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActiontop_markers_plot": { + "action_arguments": { + "newname": "Top markers plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "top_markers_plot" + }, + "RenameDatasetActiontop_markers_table": { + "action_arguments": { + "newname": "Top markers table" + }, + "action_type": "RenameDatasetAction", + "output_name": "top_markers_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_topmarkers/monocle3_topmarkers/0.1.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a4ab4af54b1a", + "name": "monocle3_topmarkers", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_fraction_expression\": \"0.1\", \"genes_to_test_per_group\": \"25\", \"group_cells_by\": \"cell_type\", \"input_object\": {\"__class__\": \"ConnectedValue\"}, \"marker_sig_test\": \"false\", \"plot_top_markers\": \"true\", \"ref_cells\": {\"source\": \"file\", \"__current_case__\": 0, \"file\": {\"__class__\": \"RuntimeValue\"}}, \"save_full_markers\": \"false\", \"top_n_markers\": \"5\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy0", + "type": "tool", + "uuid": "94ab5f08-9ca4-4aec-96d6-37c682ec0ce8", + "workflow_outputs": [ + { + "label": null, + "output_name": "top_markers_table", + "uuid": "15564ba2-06bf-4c0f-9b13-442ff71beb77" + }, + { + "label": null, + "output_name": "top_markers_plot", + "uuid": "234ab088-cceb-490a-ae86-8f8eb17404b2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 12, + "input_connections": { + "input_object_file": { + "id": 6, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot genes", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1241.9625244140625, + "top": 269.7375030517578 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Gene expression plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"cell_type\", \"genes\": \"Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,Hba-a1\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"true\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "cd8e9efe-28ae-467b-955e-0f0a1dd9df12", + "workflow_outputs": [ + { + "label": "Gene expression plot", + "output_name": "output_tsv", + "uuid": "f91c22a3-8c6d-432a-92c5-cb010115fa86" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 13, + "input_connections": { + "input_object_file": { + "id": 6, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot partition", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1241.7374877929688, + "top": 415.82501220703125 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Partition plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"partition\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"true\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "80577381-8927-45cd-988d-13f767bde986", + "workflow_outputs": [ + { + "label": "Partition plot", + "output_name": "output_tsv", + "uuid": "f4c5f89b-edd7-489c-b4a2-a7a3e7d6a89d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 14, + "input_connections": { + "input_object_file": { + "id": 6, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot cluster", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1242.6500244140625, + "top": 545.8625183105469 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Cluster plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"cluster\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"true\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "3373bac2-0966-4892-9235-ede1d7d78b25", + "workflow_outputs": [ + { + "label": "Cluster plot", + "output_name": "output_tsv", + "uuid": "a2c1a628-d79d-4e37-ad33-de92033021a8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_learngraph/monocle3_learnGraph/0.1.4+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "input_object_file": { + "id": 6, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 learnGraph", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 1243.5250244140625, + "top": 674.7374877929688 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_learngraph/monocle3_learnGraph/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5f877012f7af", + "name": "monocle3_learngraph", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"euclidean_distance_ratio\": \"1.0\", \"geodesic_distance_ratio\": \"0.33\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": \"true\", \"minimal_branch_len\": \"10\", \"no_close_loop\": \"false\", \"no_partition\": \"false\", \"no_prune_graph\": \"false\", \"orthogonal_proj_tip\": \"false\", \"output_object_format\": \"cds3\", \"verbose\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "7702b786-61d1-41eb-9663-923869f634ff", + "workflow_outputs": [ + { + "label": "Monocle3 learnGraph on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "ed2003aa-4680-409f-8d79-e79b878a786c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "input_object_file": { + "id": 15, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot learned trajectory", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1493.9625244140625, + "top": 524.3875122070312 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Learned trajectory plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"cell_type\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"true\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "23372f7d-e1d2-4abc-8ec3-20daa8c7acc8", + "workflow_outputs": [ + { + "label": "Cell types & learned trajectory path plot", + "output_name": "output_tsv", + "uuid": "6fa555f1-b4f2-4e5d-bce1-ed462d8e056d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_ordercells/monocle3_orderCells/0.1.4+galaxy0", + "errors": null, + "id": 17, + "input_connections": { + "input_object_file": { + "id": 15, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 orderCells", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 1497.5875244140625, + "top": 675.0499877929688 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_ordercells/monocle3_orderCells/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3e77dc421569", + "name": "monocle3_ordercells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"cell_phenotype\": \"cell_type\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": \"true\", \"output_object_format\": \"cds3\", \"reduction_method\": \"UMAP\", \"root_cells\": \"\", \"root_pr_nodes\": \"\", \"root_type\": \"DN\", \"verbose\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "cf7fa5f7-8f5c-4b0c-90c0-d3c8f1300a52", + "workflow_outputs": [ + { + "label": "Monocle3 orderCells on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "96d10412-3d7f-4970-b541-6f4367fa3f37" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_diffexp/monocle3_diffExp/0.1.4+galaxy1", + "errors": null, + "id": 18, + "input_connections": { + "input_object_file": { + "id": 17, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 diffExp", + "outputs": [ + { + "name": "output_tsv", + "type": "tsv" + } + ], + "position": { + "left": 1742.3375244140625, + "top": 549.5500183105469 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Differential expression of genes - table" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_diffexp/monocle3_diffExp/0.1.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "d43a608d14ac", + "name": "monocle3_diffexp", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alternative\": \"greater\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"knn\": \"20\", \"method\": \"Moran_I\", \"neighbor_graph\": \"knn\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy1", + "type": "tool", + "uuid": "14770294-f992-4a57-9ad8-423ac3227dda", + "workflow_outputs": [ + { + "label": "Differential expression of genes - table", + "output_name": "output_tsv", + "uuid": "db1dc457-2d6e-47cc-b7ce-d0a4d23e9498" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "input_object_file": { + "id": 17, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot pseudotime", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1746.6500244140625, + "top": 696.5499877929688 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Pseudotime plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"pseudotime\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": \"false\", \"label_cell_groups\": \"true\", \"label_groups_by_cluster\": \"false\", \"label_leaves\": \"false\", \"label_roots\": \"false\", \"no_trajectory_graph\": \"false\", \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": \"false\", \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "54ac162c-c68a-402e-85c8-f41b1d8e5a07", + "workflow_outputs": [ + { + "label": "Pseudotime plot", + "output_name": "output_tsv", + "uuid": "d1b3efd2-0a81-4dad-8652-589c2678fbaa" + } + ] + } + ], + "parent_id": "single-cell/scrna-case_monocle3-trajectories", + "path": "topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-Monocle3_workflow.ga", + "tags": [ + "name:trajectory_analysis", + "name:transcriptomics", + "name:scRNA-seq" + ], + "test_results": null, + "tests": false, + "title": "Monocle3 workflow", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_monocle3-trajectories/versions/galaxy-workflow-monocle3-workflow", + "tutorial_id": "scrna-case_monocle3-trajectories", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-Monocle3_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Galaxy-Workflow-Monocle3_workflow.html", + "version": 1, + "wfid": "single-cell-scrna-case_monocle3-trajectories", + "wfname": "galaxy-workflow-monocle3-workflow", + "workflow": "Galaxy-Workflow-Monocle3_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_diffexp/monocle3_diffExp/0.1.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_learngraph/monocle3_learnGraph/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_ordercells/monocle3_orderCells/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_partition/monocle3_partition/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_preprocess/monocle3_preprocess/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_reducedim/monocle3_reduceDim/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_topmarkers/monocle3_topmarkers/0.1.5+galaxy0" + ], + "workflowhub_id": "1237" + }, + { + "creators": [ + { + "class": "Organization", + "identifier": "0009-0001-2017-8805", + "name": "Julia Jakiela" + } + ], + "description": "Trajectory analysis using Monocle3, starting from AnnData", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnData to extract genes & cells annotations\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnData before processing to extract clean expression matrix\"]\n 2[label=\"Extract cell annotations\"]\n 0 -> 2 [label=\"output\"]\n k0646798d3a5d420aa7cfcde6cec722d5[color=lightseagreen,label=\"Output\\nExtracted cell annotations (obs)\"]\n 2 -> k0646798d3a5d420aa7cfcde6cec722d5\n 3[label=\"Extract gene annotations\"]\n 0 -> 3 [label=\"output\"]\n k8416274568b041a5b06ea285440ba095[color=lightseagreen,label=\"Output\\nExtracted gene annotations (var)\"]\n 3 -> k8416274568b041a5b06ea285440ba095\n 4[label=\"Extract clean expression matrix\"]\n 1 -> 4 [label=\"output\"]\n k3f03af0cac414450b5ba639a79ea543b[color=lightseagreen,label=\"Output\\nUnprocessed expression matrix\"]\n 4 -> k3f03af0cac414450b5ba639a79ea543b\n 5[label=\"Filter out macrophages\"]\n 2 -> 5 [label=\"obs\"]\n kfb81e9a10603419a83f50c9f94939b16[color=lightseagreen,label=\"Output\\nCells without macrophages\"]\n 5 -> kfb81e9a10603419a83f50c9f94939b16\n 6[label=\"gene_short_name annotation\"]\n 3 -> 6 [label=\"var\"]\n k94a60e6ccdf748e58b55d221cef22688[color=lightseagreen,label=\"Output\\nGenes table with gene_short_name colname\"]\n 6 -> k94a60e6ccdf748e58b55d221cef22688\n 7[label=\"Cut cells IDs\"]\n 5 -> 7 [label=\"out_file1\"]\n k34146c302666481f8d49a849d5d3aa91[color=lightseagreen,label=\"Output\\nFiltered cells IDs \"]\n 7 -> k34146c302666481f8d49a849d5d3aa91\n 8[label=\"Cut genes IDs\"]\n 6 -> 8 [label=\"out_file1\"]\n k8f38fb93cb304fbc90c57f6bd023feea[color=lightseagreen,label=\"Output\\nGenes IDs\"]\n 8 -> k8f38fb93cb304fbc90c57f6bd023feea\n 9[label=\"Filter matrix by cells\"]\n 7 -> 9 [label=\"out_file1\"]\n 4 -> 9 [label=\"X\"]\n kf654c0455fea43f996d6492c810593d2[color=lightseagreen,label=\"Output\\nPre-filtered matrix (by cells)\"]\n 9 -> kf654c0455fea43f996d6492c810593d2\n 10[label=\"Remove duplicate column cells IDs\"]\n 9 -> 10 [label=\"out_file1\"]\n kf633c125a4d04fa7ab87022349f4ac70[color=lightseagreen,label=\"Output\\nFiltered matrix (by cells) \"]\n 10 -> kf633c125a4d04fa7ab87022349f4ac70\n 11[label=\"Transpose matrix\"]\n 10 -> 11 [label=\"output\"]\n k3202091e1afc4f5089221f9e50c490fc[color=lightseagreen,label=\"Output\\nfiltered matrix (by cells) transposed\"]\n 11 -> k3202091e1afc4f5089221f9e50c490fc\n 12[label=\"Filter matrix by genes\"]\n 8 -> 12 [label=\"out_file1\"]\n 11 -> 12 [label=\"out_file\"]\n k6c23cbd5a1b5428e8ff9ebac4893ad88[color=lightseagreen,label=\"Output\\nPre-filtered matrix (by cells & genes)\"]\n 12 -> k6c23cbd5a1b5428e8ff9ebac4893ad88\n 13[label=\"Remove duplicate column genes IDs\"]\n 12 -> 13 [label=\"out_file1\"]\n k258393260b5d4e7491ec24e22c08f7c5[color=lightseagreen,label=\"Output\\nFiltered matrix (by cells & genes)\"]\n 13 -> k258393260b5d4e7491ec24e22c08f7c5\n 14[label=\"Monocle3 create\"]\n 5 -> 14 [label=\"out_file1\"]\n 13 -> 14 [label=\"output\"]\n 6 -> 14 [label=\"out_file1\"]\n kf8c5589ca70d416ea9deebc987f61fc3[color=lightseagreen,label=\"Output\\nMonocle3 create on input dataset(s): cds3\"]\n 14 -> kf8c5589ca70d416ea9deebc987f61fc3\n 15[label=\"Monocle3 preprocess\"]\n 14 -> 15 [label=\"output_rds\"]\n kc134942f60e74cd08c32da4a303b879d[color=lightseagreen,label=\"Output\\nMonocle3 preprocess on input dataset(s): cds3\"]\n 15 -> kc134942f60e74cd08c32da4a303b879d\n 16[label=\"Monocle3 reduceDim\"]\n 15 -> 16 [label=\"output_rds\"]\n k2c9fb1082a1c41dfa8d881a18b66d2a1[color=lightseagreen,label=\"Output\\nMonocle3 reduceDim on input dataset(s): cds3\"]\n 16 -> k2c9fb1082a1c41dfa8d881a18b66d2a1\n 17[label=\"Monocle3 partition\"]\n 16 -> 17 [label=\"output_rds\"]\n k93371c10658347fc830f9a90dc980766[color=lightseagreen,label=\"Output\\nMonocle3 partition on input dataset(s): cds3\"]\n 17 -> k93371c10658347fc830f9a90dc980766\n 18[label=\"Plot cell type\"]\n 16 -> 18 [label=\"output_rds\"]\n kf096d06082e848479e8fb22c9288f565[color=lightseagreen,label=\"Output\\nCell type plot\"]\n 18 -> kf096d06082e848479e8fb22c9288f565\n 19[label=\"Plot genotype\"]\n 16 -> 19 [label=\"output_rds\"]\n kaab28bb1e2e74b7d9b2b1cab64bea287[color=lightseagreen,label=\"Output\\nGenotype plot\"]\n 19 -> kaab28bb1e2e74b7d9b2b1cab64bea287\n 20[label=\"Plot batch\"]\n 16 -> 20 [label=\"output_rds\"]\n k9b362eee923847c5a4c285f3995430f4[color=lightseagreen,label=\"Output\\nBatch plot\"]\n 20 -> k9b362eee923847c5a4c285f3995430f4\n 21[label=\"Plot sex\"]\n 16 -> 21 [label=\"output_rds\"]\n kc2a1e104ef2d4b66ac2bbf0251714434[color=lightseagreen,label=\"Output\\nSex plot\"]\n 21 -> kc2a1e104ef2d4b66ac2bbf0251714434\n 22[label=\"Monocle3 top markers\"]\n 17 -> 22 [label=\"output_rds\"]\n 23[label=\"Plot genes\"]\n 17 -> 23 [label=\"output_rds\"]\n ke886737982c64c32a2d30b24670269ae[color=lightseagreen,label=\"Output\\nGene expression plot\"]\n 23 -> ke886737982c64c32a2d30b24670269ae\n 24[label=\"Plot partition\"]\n 17 -> 24 [label=\"output_rds\"]\n k3f7b0a7c85d6430b8385fa9a76385c0e[color=lightseagreen,label=\"Output\\nPartition plot\"]\n 24 -> k3f7b0a7c85d6430b8385fa9a76385c0e\n 25[label=\"Plot cluster\"]\n 17 -> 25 [label=\"output_rds\"]\n k40b65826f73e4054a56db241985d6996[color=lightseagreen,label=\"Output\\nCluster plot\"]\n 25 -> k40b65826f73e4054a56db241985d6996\n 26[label=\"Monocle3 learnGraph\"]\n 17 -> 26 [label=\"output_rds\"]\n k294b1a49cec649d0bcd43a954da67bec[color=lightseagreen,label=\"Output\\nMonocle3 learnGraph on input dataset(s): cds3\"]\n 26 -> k294b1a49cec649d0bcd43a954da67bec\n 27[label=\"Plot learned trajectory\"]\n 26 -> 27 [label=\"output_rds\"]\n kc85ddefe8eaf4d2193edca0859286bf0[color=lightseagreen,label=\"Output\\nCell types & learned trajectory path plot\"]\n 27 -> kc85ddefe8eaf4d2193edca0859286bf0\n 28[label=\"Monocle3 orderCells\"]\n 26 -> 28 [label=\"output_rds\"]\n k5aea5752b7674fc887411f4d1c659a41[color=lightseagreen,label=\"Output\\nMonocle3 orderCells on input dataset(s): cds3\"]\n 28 -> k5aea5752b7674fc887411f4d1c659a41\n 29[label=\"Monocle3 diffExp\"]\n 28 -> 29 [label=\"output_rds\"]\n k3c2986249f064e52b2a8fb834b87c296[color=lightseagreen,label=\"Output\\nDifferential expression of genes - table\"]\n 29 -> k3c2986249f064e52b2a8fb834b87c296\n 30[label=\"Plot pseudotime\"]\n 28 -> 30 [label=\"output_rds\"]\n k813d15bb07714aed92264874c1ddba59[color=lightseagreen,label=\"Output\\nPseudotime plot\"]\n 30 -> k813d15bb07714aed92264874c1ddba59\n}", + "history": [ + { + "hash": "aa56146e23f13b8cde4e0fdf6cea9c5fd1869126", + "message": "add workflow tests", + "num": 1, + "short_hash": "aa56146e2", + "unix": "1684177910" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "AnnData to extract genes & cells annotations" + } + ], + "label": "AnnData to extract genes & cells annotations", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 246.58749999999998 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "238ce18a-d909-4cb9-83e9-39c0eb9ad8b6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "AnnData before processing to extract clean expression matrix" + } + ], + "label": "AnnData before processing to extract clean expression matrix", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 530.25, + "top": 1.625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "5088bde0-ba67-426e-a075-be10f3d515c6", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nAnnData to extract genes & cells annotations\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nAnnData before processing to extract clean expression matrix\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Extract cell annotations\"];\n 0 -->|output| 2;\n 0646798d-3a5d-420a-a7cf-cde6cec722d5[\"Output\\nExtracted cell annotations (obs)\"];\n 2 --> 0646798d-3a5d-420a-a7cf-cde6cec722d5;\n style 0646798d-3a5d-420a-a7cf-cde6cec722d5 stroke:#2c3143,stroke-width:4px;\n 3[\"Extract gene annotations\"];\n 0 -->|output| 3;\n 84162745-68b0-41a5-b06e-a285440ba095[\"Output\\nExtracted gene annotations (var)\"];\n 3 --> 84162745-68b0-41a5-b06e-a285440ba095;\n style 84162745-68b0-41a5-b06e-a285440ba095 stroke:#2c3143,stroke-width:4px;\n 4[\"Extract clean expression matrix\"];\n 1 -->|output| 4;\n 3f03af0c-ac41-4450-b5ba-639a79ea543b[\"Output\\nUnprocessed expression matrix\"];\n 4 --> 3f03af0c-ac41-4450-b5ba-639a79ea543b;\n style 3f03af0c-ac41-4450-b5ba-639a79ea543b stroke:#2c3143,stroke-width:4px;\n 5[\"Filter out macrophages\"];\n 2 -->|obs| 5;\n fb81e9a1-0603-419a-83f5-0c9f94939b16[\"Output\\nCells without macrophages\"];\n 5 --> fb81e9a1-0603-419a-83f5-0c9f94939b16;\n style fb81e9a1-0603-419a-83f5-0c9f94939b16 stroke:#2c3143,stroke-width:4px;\n 6[\"gene_short_name annotation\"];\n 3 -->|var| 6;\n 94a60e6c-cdf7-48e5-8b55-d221cef22688[\"Output\\nGenes table with gene_short_name colname\"];\n 6 --> 94a60e6c-cdf7-48e5-8b55-d221cef22688;\n style 94a60e6c-cdf7-48e5-8b55-d221cef22688 stroke:#2c3143,stroke-width:4px;\n 7[\"Cut cells IDs\"];\n 5 -->|out_file1| 7;\n 34146c30-2666-481f-8d49-a849d5d3aa91[\"Output\\nFiltered cells IDs \"];\n 7 --> 34146c30-2666-481f-8d49-a849d5d3aa91;\n style 34146c30-2666-481f-8d49-a849d5d3aa91 stroke:#2c3143,stroke-width:4px;\n 8[\"Cut genes IDs\"];\n 6 -->|out_file1| 8;\n 8f38fb93-cb30-4fbc-90c5-7f6bd023feea[\"Output\\nGenes IDs\"];\n 8 --> 8f38fb93-cb30-4fbc-90c5-7f6bd023feea;\n style 8f38fb93-cb30-4fbc-90c5-7f6bd023feea stroke:#2c3143,stroke-width:4px;\n 9[\"Filter matrix by cells\"];\n 7 -->|out_file1| 9;\n 4 -->|X| 9;\n f654c045-5fea-43f9-96d6-492c810593d2[\"Output\\nPre-filtered matrix (by cells)\"];\n 9 --> f654c045-5fea-43f9-96d6-492c810593d2;\n style f654c045-5fea-43f9-96d6-492c810593d2 stroke:#2c3143,stroke-width:4px;\n 10[\"Remove duplicate column cells IDs\"];\n 9 -->|out_file1| 10;\n f633c125-a4d0-4fa7-ab87-022349f4ac70[\"Output\\nFiltered matrix (by cells) \"];\n 10 --> f633c125-a4d0-4fa7-ab87-022349f4ac70;\n style f633c125-a4d0-4fa7-ab87-022349f4ac70 stroke:#2c3143,stroke-width:4px;\n 11[\"Transpose matrix\"];\n 10 -->|output| 11;\n 3202091e-1afc-4f50-8922-1f9e50c490fc[\"Output\\nfiltered matrix (by cells) transposed\"];\n 11 --> 3202091e-1afc-4f50-8922-1f9e50c490fc;\n style 3202091e-1afc-4f50-8922-1f9e50c490fc stroke:#2c3143,stroke-width:4px;\n 12[\"Filter matrix by genes\"];\n 8 -->|out_file1| 12;\n 11 -->|out_file| 12;\n 6c23cbd5-a1b5-428e-8ff9-ebac4893ad88[\"Output\\nPre-filtered matrix (by cells & genes)\"];\n 12 --> 6c23cbd5-a1b5-428e-8ff9-ebac4893ad88;\n style 6c23cbd5-a1b5-428e-8ff9-ebac4893ad88 stroke:#2c3143,stroke-width:4px;\n 13[\"Remove duplicate column genes IDs\"];\n 12 -->|out_file1| 13;\n 25839326-0b5d-4e74-91ec-24e22c08f7c5[\"Output\\nFiltered matrix (by cells & genes)\"];\n 13 --> 25839326-0b5d-4e74-91ec-24e22c08f7c5;\n style 25839326-0b5d-4e74-91ec-24e22c08f7c5 stroke:#2c3143,stroke-width:4px;\n 14[\"Monocle3 create\"];\n 5 -->|out_file1| 14;\n 13 -->|output| 14;\n 6 -->|out_file1| 14;\n f8c5589c-a70d-416e-a9de-ebc987f61fc3[\"Output\\nMonocle3 create on input dataset(s): cds3\"];\n 14 --> f8c5589c-a70d-416e-a9de-ebc987f61fc3;\n style f8c5589c-a70d-416e-a9de-ebc987f61fc3 stroke:#2c3143,stroke-width:4px;\n 15[\"Monocle3 preprocess\"];\n 14 -->|output_rds| 15;\n c134942f-60e7-4cd0-8c32-da4a303b879d[\"Output\\nMonocle3 preprocess on input dataset(s): cds3\"];\n 15 --> c134942f-60e7-4cd0-8c32-da4a303b879d;\n style c134942f-60e7-4cd0-8c32-da4a303b879d stroke:#2c3143,stroke-width:4px;\n 16[\"Monocle3 reduceDim\"];\n 15 -->|output_rds| 16;\n 2c9fb108-2a1c-41df-a8d8-81a18b66d2a1[\"Output\\nMonocle3 reduceDim on input dataset(s): cds3\"];\n 16 --> 2c9fb108-2a1c-41df-a8d8-81a18b66d2a1;\n style 2c9fb108-2a1c-41df-a8d8-81a18b66d2a1 stroke:#2c3143,stroke-width:4px;\n 17[\"Monocle3 partition\"];\n 16 -->|output_rds| 17;\n 93371c10-6583-47fc-830f-9a90dc980766[\"Output\\nMonocle3 partition on input dataset(s): cds3\"];\n 17 --> 93371c10-6583-47fc-830f-9a90dc980766;\n style 93371c10-6583-47fc-830f-9a90dc980766 stroke:#2c3143,stroke-width:4px;\n 18[\"Plot cell type\"];\n 16 -->|output_rds| 18;\n f096d060-82e8-4847-9e8f-b22c9288f565[\"Output\\nCell type plot\"];\n 18 --> f096d060-82e8-4847-9e8f-b22c9288f565;\n style f096d060-82e8-4847-9e8f-b22c9288f565 stroke:#2c3143,stroke-width:4px;\n 19[\"Plot genotype\"];\n 16 -->|output_rds| 19;\n aab28bb1-e2e7-4b7d-9b2b-1cab64bea287[\"Output\\nGenotype plot\"];\n 19 --> aab28bb1-e2e7-4b7d-9b2b-1cab64bea287;\n style aab28bb1-e2e7-4b7d-9b2b-1cab64bea287 stroke:#2c3143,stroke-width:4px;\n 20[\"Plot batch\"];\n 16 -->|output_rds| 20;\n 9b362eee-9238-47c5-a4c2-85f3995430f4[\"Output\\nBatch plot\"];\n 20 --> 9b362eee-9238-47c5-a4c2-85f3995430f4;\n style 9b362eee-9238-47c5-a4c2-85f3995430f4 stroke:#2c3143,stroke-width:4px;\n 21[\"Plot sex\"];\n 16 -->|output_rds| 21;\n c2a1e104-ef2d-4b66-ac2b-bf0251714434[\"Output\\nSex plot\"];\n 21 --> c2a1e104-ef2d-4b66-ac2b-bf0251714434;\n style c2a1e104-ef2d-4b66-ac2b-bf0251714434 stroke:#2c3143,stroke-width:4px;\n 22[\"Monocle3 top markers\"];\n 17 -->|output_rds| 22;\n 23[\"Plot genes\"];\n 17 -->|output_rds| 23;\n e8867379-82c6-4c32-a2d3-0b24670269ae[\"Output\\nGene expression plot\"];\n 23 --> e8867379-82c6-4c32-a2d3-0b24670269ae;\n style e8867379-82c6-4c32-a2d3-0b24670269ae stroke:#2c3143,stroke-width:4px;\n 24[\"Plot partition\"];\n 17 -->|output_rds| 24;\n 3f7b0a7c-85d6-430b-8385-fa9a76385c0e[\"Output\\nPartition plot\"];\n 24 --> 3f7b0a7c-85d6-430b-8385-fa9a76385c0e;\n style 3f7b0a7c-85d6-430b-8385-fa9a76385c0e stroke:#2c3143,stroke-width:4px;\n 25[\"Plot cluster\"];\n 17 -->|output_rds| 25;\n 40b65826-f73e-4054-a56d-b241985d6996[\"Output\\nCluster plot\"];\n 25 --> 40b65826-f73e-4054-a56d-b241985d6996;\n style 40b65826-f73e-4054-a56d-b241985d6996 stroke:#2c3143,stroke-width:4px;\n 26[\"Monocle3 learnGraph\"];\n 17 -->|output_rds| 26;\n 294b1a49-cec6-49d0-bcd4-3a954da67bec[\"Output\\nMonocle3 learnGraph on input dataset(s): cds3\"];\n 26 --> 294b1a49-cec6-49d0-bcd4-3a954da67bec;\n style 294b1a49-cec6-49d0-bcd4-3a954da67bec stroke:#2c3143,stroke-width:4px;\n 27[\"Plot learned trajectory\"];\n 26 -->|output_rds| 27;\n c85ddefe-8eaf-4d21-93ed-ca0859286bf0[\"Output\\nCell types & learned trajectory path plot\"];\n 27 --> c85ddefe-8eaf-4d21-93ed-ca0859286bf0;\n style c85ddefe-8eaf-4d21-93ed-ca0859286bf0 stroke:#2c3143,stroke-width:4px;\n 28[\"Monocle3 orderCells\"];\n 26 -->|output_rds| 28;\n 5aea5752-b767-4fc8-8741-1f4d1c659a41[\"Output\\nMonocle3 orderCells on input dataset(s): cds3\"];\n 28 --> 5aea5752-b767-4fc8-8741-1f4d1c659a41;\n style 5aea5752-b767-4fc8-8741-1f4d1c659a41 stroke:#2c3143,stroke-width:4px;\n 29[\"Monocle3 diffExp\"];\n 28 -->|output_rds| 29;\n 3c298624-9f06-4e52-b2a8-fb834b87c296[\"Output\\nDifferential expression of genes - table\"];\n 29 --> 3c298624-9f06-4e52-b2a8-fb834b87c296;\n style 3c298624-9f06-4e52-b2a8-fb834b87c296 stroke:#2c3143,stroke-width:4px;\n 30[\"Plot pseudotime\"];\n 28 -->|output_rds| 30;\n 813d15bb-0771-4aed-9226-4874c1ddba59[\"Output\\nPseudotime plot\"];\n 30 --> 813d15bb-0771-4aed-9226-4874c1ddba59;\n style 813d15bb-0771-4aed-9226-4874c1ddba59 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Trajectory analysis using Monocle3 - full tutorial workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Extract cell annotations", + "name": "Inspect AnnData", + "outputs": [ + { + "name": "obs", + "type": "tabular" + } + ], + "position": { + "left": 249.8125, + "top": 152.60000000000002 + }, + "post_job_actions": { + "RenameDatasetActionobs": { + "action_arguments": { + "newname": "Extracted cell annotations (obs)" + }, + "action_type": "RenameDatasetAction", + "output_name": "obs" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"obs\", \"__current_case__\": 3}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "0274a1cc-d36e-4616-ac1c-7c908cb79741", + "when": null, + "workflow_outputs": [ + { + "label": "Extracted cell annotations (obs)", + "output_name": "obs", + "uuid": "0646798d-3a5d-420a-a7cf-cde6cec722d5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Extract gene annotations", + "name": "Inspect AnnData", + "outputs": [ + { + "name": "var", + "type": "tabular" + } + ], + "position": { + "left": 246.9375, + "top": 317.225 + }, + "post_job_actions": { + "RenameDatasetActionvar": { + "action_arguments": { + "newname": "Extracted gene annotations (var)" + }, + "action_type": "RenameDatasetAction", + "output_name": "var" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"var\", \"__current_case__\": 4}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "442d992d-c2b7-42a6-8bd6-a0b5bdbed63b", + "when": null, + "workflow_outputs": [ + { + "label": "Extracted gene annotations (var)", + "output_name": "var", + "uuid": "84162745-68b0-41a5-b06e-a285440ba095" + } + ] + }, + { + "annotation": "Unprocessed means here before normalisation or dimensionality reduction. For this step, must have cell IDs as rownames.", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Extract clean expression matrix", + "name": "Inspect AnnData", + "outputs": [ + { + "name": "X", + "type": "tabular" + } + ], + "position": { + "left": 756.3375, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActionX": { + "action_arguments": { + "newname": "Unprocessed expression matrix" + }, + "action_type": "RenameDatasetAction", + "output_name": "X" + }, + "RenameDatasetActionvar": { + "action_arguments": { + "newname": "Extracted gene annotations (var)" + }, + "action_type": "RenameDatasetAction", + "output_name": "var" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "ee98d611afc6", + "name": "anndata_inspect", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"inspect\": {\"info\": \"X\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.5+galaxy1", + "type": "tool", + "uuid": "4ff12dd4-4c92-458f-9005-082b1d5855b6", + "when": null, + "workflow_outputs": [ + { + "label": "Unprocessed expression matrix", + "output_name": "X", + "uuid": "3f03af0c-ac41-4450-b5ba-639a79ea543b" + } + ] + }, + { + "annotation": "Double-check the cell_type column number", + "content_id": "Filter1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 2, + "output_name": "obs" + } + }, + "inputs": [], + "label": "Filter out macrophages", + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 494.8375, + "top": 150.66250000000002 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Cells input data for Monocle3" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c22!='Macrophages'\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "77d92db9-bac8-413b-9b34-26e95dd796d8", + "when": null, + "workflow_outputs": [ + { + "label": "Cells without macrophages", + "output_name": "out_file1", + "uuid": "fb81e9a1-0603-419a-83f5-0c9f94939b16" + } + ] + }, + { + "annotation": "Check the number of the column with genes names (using column) and its header (Find Regex)", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.2", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 3, + "output_name": "var" + } + }, + "inputs": [], + "label": "gene_short_name annotation", + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 490.4125, + "top": 317.07500000000005 + }, + "post_job_actions": { + "ChangeDatatypeActionout_file1": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "out_file1" + }, + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Genes input data for Monocle3" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.2", + "tool_shed_repository": { + "changeset_revision": "399da6b5ec21", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"Symbol\", \"replacement\": \"gene_short_name\"}], \"field\": \"3\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "8d164f98-ff06-4bfa-8907-3f2817050f45", + "when": null, + "workflow_outputs": [ + { + "label": "Genes table with gene_short_name colname", + "output_name": "out_file1", + "uuid": "94a60e6c-cdf7-48e5-8b55-d221cef22688" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 5, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Cut cells IDs", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 744.8249999999999, + "top": 156 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Filtered cells IDs " + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "4883e9df-97dc-4442-836a-3cb83299e87e", + "when": null, + "workflow_outputs": [ + { + "label": "Filtered cells IDs ", + "output_name": "out_file1", + "uuid": "34146c30-2666-481f-8d49-a849d5d3aa91" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Cut genes IDs", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 776.6999999999999, + "top": 287.70000000000005 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Genes IDs" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "d356aea8-8fbf-4272-a07e-cd8f94cc32c5", + "when": null, + "workflow_outputs": [ + { + "label": "Genes IDs", + "output_name": "out_file1", + "uuid": "8f38fb93-cb30-4fbc-90c5-7f6bd023feea" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 9, + "input_connections": { + "input1": { + "id": 7, + "output_name": "out_file1" + }, + "input2": { + "id": 4, + "output_name": "X" + } + }, + "inputs": [], + "label": "Filter matrix (by cells)", + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 999.275, + "top": 152.22500000000002 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Pre-filtered matrix (by cells)" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "join1", + "tool_state": "{\"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "a96f2429-beda-45c0-b6a4-96bb0f955993", + "when": null, + "workflow_outputs": [ + { + "label": "Pre-filtered matrix (by cells)", + "output_name": "out_file1", + "uuid": "f654c045-5fea-43f9-96d6-492c810593d2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Remove duplicate column (cells IDs)", + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1243.1999999999998, + "top": 153.47500000000002 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Filtered matrix (by cells) " + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"1\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "5eb41326-4ed4-41ed-a56e-a366a0934c7c", + "when": null, + "workflow_outputs": [ + { + "label": "Filtered matrix (by cells) ", + "output_name": "output", + "uuid": "f633c125-a4d0-4fa7-ab87-022349f4ac70" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "errors": null, + "id": 11, + "input_connections": { + "in_file": { + "id": 10, + "output_name": "output" + } + }, + "inputs": [], + "label": "Transpose matrix", + "name": "Transpose", + "outputs": [ + { + "name": "out_file", + "type": "input" + } + ], + "position": { + "left": 1477.8874999999998, + "top": 157.41250000000002 + }, + "post_job_actions": { + "RenameDatasetActionout_file": { + "action_arguments": { + "newname": "filtered matrix (by cells) transposed" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2", + "tool_shed_repository": { + "changeset_revision": "ac092723240d", + "name": "datamash_transpose", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0+galaxy2", + "type": "tool", + "uuid": "943e7a30-a9d5-4967-a7a0-8e46b62d3a82", + "when": null, + "workflow_outputs": [ + { + "label": "filtered matrix (by cells) transposed", + "output_name": "out_file", + "uuid": "3202091e-1afc-4f50-8922-1f9e50c490fc" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 12, + "input_connections": { + "input1": { + "id": 8, + "output_name": "out_file1" + }, + "input2": { + "id": 11, + "output_name": "out_file" + } + }, + "inputs": [], + "label": "Filter matrix (by genes)", + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1018.4499999999999, + "top": 334.38750000000005 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Pre-filtered matrix (by cells & genes)" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "join1", + "tool_state": "{\"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"-H\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"-p\", \"unmatched\": \"-u\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "08510ae9-d7b9-4baa-b1a1-419666e00f99", + "when": null, + "workflow_outputs": [ + { + "label": "Pre-filtered matrix (by cells & genes)", + "output_name": "out_file1", + "uuid": "6c23cbd5-a1b5-428e-8ff9-ebac4893ad88" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 12, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Remove duplicate column (genes IDs)", + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1244.525, + "top": 446.9625 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Expression matrix for Monocle3" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"1\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "5d24766e-4b42-454d-a51d-d00220904fa5", + "when": null, + "workflow_outputs": [ + { + "label": "Filtered matrix (by cells & genes)", + "output_name": "output", + "uuid": "25839326-0b5d-4e74-91ec-24e22c08f7c5" + } + ] + }, + { + "annotation": "Check the data format that you're using.", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "errors": null, + "id": 14, + "input_connections": { + "cell_metadata": { + "id": 5, + "output_name": "out_file1" + }, + "expression_matrix": { + "id": 13, + "output_name": "output" + }, + "gene_annotation": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 create", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 772.4625, + "top": 423.225 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "tool_shed_repository": { + "changeset_revision": "ada68a9d0aec", + "name": "monocle3_create", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"cell_metadata\": {\"__class__\": \"ConnectedValue\"}, \"cell_metadata_format\": \"tsv\", \"expression_matrix\": {\"__class__\": \"ConnectedValue\"}, \"expression_matrix_format\": \"tsv\", \"gene_annotation\": {\"__class__\": \"ConnectedValue\"}, \"gene_annotation_format\": \"tsv\", \"introspective\": true, \"output_object_format\": \"cds3\", \"verbose\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy2", + "type": "tool", + "uuid": "9442eea0-3f85-473a-b1be-d1f1059ea7a2", + "when": null, + "workflow_outputs": [ + { + "label": "Monocle3 create on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "f8c5589c-a70d-416e-a9de-ebc987f61fc3" + } + ] + }, + { + "annotation": "You might want to change the dimensionality of the reduced space here.", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_preprocess/monocle3_preprocess/0.1.4+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "input_object_file": { + "id": 14, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 preprocess", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 1010.3375, + "top": 748.45 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_preprocess/monocle3_preprocess/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "c150370b514c", + "name": "monocle3_preprocess", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": true, \"method\": \"PCA\", \"no_scaling\": false, \"norm_method\": \"log\", \"num_dim\": \"250\", \"output_object_format\": \"cds3\", \"pseudo_count\": \"1.0\", \"residual_model_formula_str\": \"\", \"use_genes\": \"\", \"verbose\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "f387e0f8-e12e-4245-9950-00932e1cf01f", + "when": null, + "workflow_outputs": [ + { + "label": "Monocle3 preprocess on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "c134942f-60e7-4cd0-8c32-da4a303b879d" + } + ] + }, + { + "annotation": "UMAP/tSNE/PCA/LSI.\nHowever for further steps you need to use UMAP.", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_reducedim/monocle3_reduceDim/0.1.4+galaxy0", + "errors": null, + "id": 16, + "input_connections": { + "input_object_file": { + "id": 15, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 reduceDim", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 1244.525, + "top": 751.175 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_reducedim/monocle3_reduceDim/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "8900e2a18603", + "name": "monocle3_reducedim", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": true, \"max_components\": \"2\", \"output_object_format\": \"cds3\", \"preprocess_method\": \"PCA\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "9222db79-f707-4a5e-bc7a-03a1ed08566e", + "when": null, + "workflow_outputs": [ + { + "label": "Monocle3 reduceDim on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "2c9fb108-2a1c-41df-a8d8-81a18b66d2a1" + } + ] + }, + { + "annotation": "You might want to change resolution (affects clusters) and/or q-value (affects partitions).", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_partition/monocle3_partition/0.1.4+galaxy0", + "errors": null, + "id": 17, + "input_connections": { + "input_object_file": { + "id": 16, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 partition", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 1512.1374999999998, + "top": 460.82500000000005 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_partition/monocle3_partition/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d98b4705eb4c", + "name": "monocle3_partition", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": true, \"knn\": \"20\", \"louvain_iter\": \"1\", \"output_object_format\": \"cds3\", \"partition_qval\": \"1.0\", \"reduction_method\": \"UMAP\", \"resolution\": \"0.00015\", \"verbose\": false, \"weight\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "5faefffb-713e-4136-8977-52a38f7e0163", + "when": null, + "workflow_outputs": [ + { + "label": "Monocle3 partition on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "93371c10-6583-47fc-830f-9a90dc980766" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 18, + "input_connections": { + "input_object_file": { + "id": 16, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot cell type", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1511.7624999999998, + "top": 611.6875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Cell type plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"cell_type\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": false, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "467b9e34-0b66-4efb-94fd-1bff63a77cb7", + "when": null, + "workflow_outputs": [ + { + "label": "Cell type plot", + "output_name": "output_tsv", + "uuid": "f096d060-82e8-4847-9e8f-b22c9288f565" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 19, + "input_connections": { + "input_object_file": { + "id": 16, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot genotype", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1512.3249999999998, + "top": 737.575 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Genotype plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"genotype\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": false, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "a1b5bb16-98e5-4c3f-a993-f5dda109d4d0", + "when": null, + "workflow_outputs": [ + { + "label": "Genotype plot", + "output_name": "output_tsv", + "uuid": "aab28bb1-e2e7-4b7d-9b2b-1cab64bea287" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 20, + "input_connections": { + "input_object_file": { + "id": 16, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot batch", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1513.9499999999998, + "top": 865.0875000000001 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Batch plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"batch\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": false, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "a2b82c13-3ea1-42c0-82cf-971413c84652", + "when": null, + "workflow_outputs": [ + { + "label": "Batch plot", + "output_name": "output_tsv", + "uuid": "9b362eee-9238-47c5-a4c2-85f3995430f4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 21, + "input_connections": { + "input_object_file": { + "id": 16, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot sex", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1512.6374999999998, + "top": 989.7750000000001 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Sex plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"sex\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": false, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "505ed22b-8f1b-44a9-a418-5f782b661144", + "when": null, + "workflow_outputs": [ + { + "label": "Sex plot", + "output_name": "output_tsv", + "uuid": "c2a1e104-ef2d-4b66-ac2b-bf0251714434" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_topmarkers/monocle3_topmarkers/0.1.5+galaxy0", + "errors": null, + "id": 22, + "input_connections": { + "input_object": { + "id": 17, + "output_name": "output_rds" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Monocle3 top markers", + "name": "ref_cells" + } + ], + "label": null, + "name": "Monocle3 top markers", + "outputs": [ + { + "name": "top_markers_plot", + "type": "pdf" + }, + { + "name": "top_markers_table", + "type": "tabular" + } + ], + "position": { + "left": 1774.5750000000003, + "top": 278.625 + }, + "post_job_actions": { + "RenameDatasetActiontop_markers_plot": { + "action_arguments": { + "newname": "Top markers plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "top_markers_plot" + }, + "RenameDatasetActiontop_markers_table": { + "action_arguments": { + "newname": "Top markers table" + }, + "action_type": "RenameDatasetAction", + "output_name": "top_markers_table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_topmarkers/monocle3_topmarkers/0.1.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "a4ab4af54b1a", + "name": "monocle3_topmarkers", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"filter_fraction_expression\": \"0.1\", \"genes_to_test_per_group\": \"25\", \"group_cells_by\": \"cell_type\", \"input_object\": {\"__class__\": \"ConnectedValue\"}, \"marker_sig_test\": false, \"plot_top_markers\": true, \"ref_cells\": {\"source\": \"file\", \"__current_case__\": 0, \"file\": {\"__class__\": \"RuntimeValue\"}}, \"save_full_markers\": false, \"top_n_markers\": \"5\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy0", + "type": "tool", + "uuid": "887da147-7ef4-4d06-8144-f79699f577ce", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "top_markers_plot", + "uuid": "4848e4ed-5f47-4f82-a3c9-43b7a3273005" + }, + { + "label": null, + "output_name": "top_markers_table", + "uuid": "25a0cba5-8992-4871-a13b-d022db6a0f6e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 23, + "input_connections": { + "input_object_file": { + "id": 17, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot genes", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1774.0750000000003, + "top": 548.3625 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Gene expression plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"cell_type\", \"genes\": \"Il2ra,Cd8b1,Cd8a,Cd4,Itm2a,Aif1,Hba-a1\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": true, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "daea9f03-93e9-4af4-911c-f3fc73086560", + "when": null, + "workflow_outputs": [ + { + "label": "Gene expression plot", + "output_name": "output_tsv", + "uuid": "e8867379-82c6-4c32-a2d3-0b24670269ae" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 24, + "input_connections": { + "input_object_file": { + "id": 17, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot partition", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1773.85, + "top": 694.45 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Partition plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"partition\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": true, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "99fa4062-74c2-4236-94f0-e3e3dc85c7a2", + "when": null, + "workflow_outputs": [ + { + "label": "Partition plot", + "output_name": "output_tsv", + "uuid": "3f7b0a7c-85d6-430b-8385-fa9a76385c0e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 25, + "input_connections": { + "input_object_file": { + "id": 17, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot cluster", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 1774.7625000000003, + "top": 824.4875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Cluster plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"cluster\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": true, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "935fbc13-4775-48d9-bfda-96e065df3cbd", + "when": null, + "workflow_outputs": [ + { + "label": "Cluster plot", + "output_name": "output_tsv", + "uuid": "40b65826-f73e-4054-a56d-b241985d6996" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_learngraph/monocle3_learnGraph/0.1.4+galaxy0", + "errors": null, + "id": 26, + "input_connections": { + "input_object_file": { + "id": 17, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 learnGraph", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 1775.6375000000003, + "top": 953.375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_learngraph/monocle3_learnGraph/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "5f877012f7af", + "name": "monocle3_learngraph", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"euclidean_distance_ratio\": \"1.0\", \"geodesic_distance_ratio\": \"0.33\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": true, \"minimal_branch_len\": \"10\", \"no_close_loop\": false, \"no_partition\": false, \"no_prune_graph\": false, \"orthogonal_proj_tip\": false, \"output_object_format\": \"cds3\", \"verbose\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "2afce1c2-6bd3-475c-88fd-7377a1698c24", + "when": null, + "workflow_outputs": [ + { + "label": "Monocle3 learnGraph on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "294b1a49-cec6-49d0-bcd4-3a954da67bec" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 27, + "input_connections": { + "input_object_file": { + "id": 26, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot learned trajectory", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 2026.0750000000003, + "top": 803.0125 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Learned trajectory plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"cell_type\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": true, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "7284b7d6-792e-4e3e-b23a-9733ce8ba001", + "when": null, + "workflow_outputs": [ + { + "label": "Cell types & learned trajectory path plot", + "output_name": "output_tsv", + "uuid": "c85ddefe-8eaf-4d21-93ed-ca0859286bf0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_ordercells/monocle3_orderCells/0.1.4+galaxy0", + "errors": null, + "id": 28, + "input_connections": { + "input_object_file": { + "id": 26, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 orderCells", + "outputs": [ + { + "name": "output_rds", + "type": "rdata" + } + ], + "position": { + "left": 2029.7000000000003, + "top": 953.675 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_ordercells/monocle3_orderCells/0.1.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3e77dc421569", + "name": "monocle3_ordercells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"cell_phenotype\": \"cell_type\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"introspective\": true, \"output_object_format\": \"cds3\", \"reduction_method\": \"UMAP\", \"root_cells\": \"\", \"root_pr_nodes\": \"\", \"root_type\": \"DN\", \"verbose\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy0", + "type": "tool", + "uuid": "e8c75441-228e-4a64-b80a-16c9dd763169", + "when": null, + "workflow_outputs": [ + { + "label": "Monocle3 orderCells on input dataset(s): cds3", + "output_name": "output_rds", + "uuid": "5aea5752-b767-4fc8-8741-1f4d1c659a41" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_diffexp/monocle3_diffExp/0.1.4+galaxy1", + "errors": null, + "id": 29, + "input_connections": { + "input_object_file": { + "id": 28, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": null, + "name": "Monocle3 diffExp", + "outputs": [ + { + "name": "output_tsv", + "type": "tsv" + } + ], + "position": { + "left": 2274.4500000000003, + "top": 828.1875 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Differential expression of genes - table" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_diffexp/monocle3_diffExp/0.1.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "d43a608d14ac", + "name": "monocle3_diffexp", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alternative\": \"greater\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"knn\": \"20\", \"method\": \"Moran_I\", \"neighbor_graph\": \"knn\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.4+galaxy1", + "type": "tool", + "uuid": "6a7d9923-d68b-411b-a0e5-d1bf4716f7b1", + "when": null, + "workflow_outputs": [ + { + "label": "Differential expression of genes - table", + "output_name": "output_tsv", + "uuid": "3c298624-9f06-4e52-b2a8-fb834b87c296" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "errors": null, + "id": 30, + "input_connections": { + "input_object_file": { + "id": 28, + "output_name": "output_rds" + } + }, + "inputs": [], + "label": "Plot pseudotime", + "name": "Monocle3 plotCells", + "outputs": [ + { + "name": "output_tsv", + "type": "png" + } + ], + "position": { + "left": 2278.7625000000003, + "top": 975.175 + }, + "post_job_actions": { + "RenameDatasetActionoutput_tsv": { + "action_arguments": { + "newname": "Pseudotime plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_tsv" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "tool_shed_repository": { + "changeset_revision": "91980addce5e", + "name": "monocle3_plotcells", + "owner": "ebi-gxa", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alpha\": \"1.0\", \"cell_size\": \"1.5\", \"color_cells_by\": \"pseudotime\", \"genes\": \"\", \"input_object_file\": {\"__class__\": \"ConnectedValue\"}, \"input_object_format\": \"cds3\", \"label_branch_points\": false, \"label_cell_groups\": true, \"label_groups_by_cluster\": false, \"label_leaves\": false, \"label_roots\": false, \"no_trajectory_graph\": false, \"norm_method\": \"log\", \"reduction_method\": \"UMAP\", \"verbose\": false, \"xdim\": \"1\", \"ydim\": \"2\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.5+galaxy1", + "type": "tool", + "uuid": "1f9b4306-ec3c-4b2d-9c0e-40a2589afd1d", + "when": null, + "workflow_outputs": [ + { + "label": "Pseudotime plot", + "output_name": "output_tsv", + "uuid": "813d15bb-0771-4aed-9226-4874c1ddba59" + } + ] + } + ], + "parent_id": "single-cell/scrna-case_monocle3-trajectories", + "path": "topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Trajectory-analysis-using-Monocle3---full-tutorial-workflow.ga", + "tags": [ + "name:trajectory_analysis", + "name:transcriptomics", + "name:scRNA-seq", + "name:single_cell" + ], + "test_results": null, + "tests": true, + "title": "Trajectory analysis using Monocle3 - full tutorial workflow", + "topic_id": "single-cell", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/single-cell-scrna-case_monocle3-trajectories/versions/trajectory-analysis-using-monocle3---full-tutorial-workflow", + "tutorial_id": "scrna-case_monocle3-trajectories", + "url": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Trajectory-analysis-using-Monocle3---full-tutorial-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/single-cell/tutorials/scrna-case_monocle3-trajectories/workflows/Trajectory-analysis-using-Monocle3---full-tutorial-workflow.html", + "version": 1, + "wfid": "single-cell-scrna-case_monocle3-trajectories", + "wfname": "trajectory-analysis-using-monocle3---full-tutorial-workflow", + "workflow": "Trajectory-analysis-using-Monocle3---full-tutorial-workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_create/monocle3_create/0.1.4+galaxy2", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_diffexp/monocle3_diffExp/0.1.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_learngraph/monocle3_learnGraph/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_ordercells/monocle3_orderCells/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_partition/monocle3_partition/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_plotcells/monocle3_plotCells/0.1.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_preprocess/monocle3_preprocess/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_reducedim/monocle3_reduceDim/0.1.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/ebi-gxa/monocle3_topmarkers/monocle3_topmarkers/0.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/anndata_inspect/anndata_inspect/0.7.5+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0+galaxy2" + ], + "workflowhub_id": "1228" + } + ], + "zenodo_link": "https://zenodo.org/records/10397366" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-trajectories/tutorial.json", + "contributors": [ + { + "email": "juliajot36@gmail.com", + "id": "wee-snufkin", + "joined": "2022-06", + "name": "Julia Jakiela", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wee-snufkin/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wee-snufkin.json" + } + ], + "dir": "topics/single-cell/tutorials/scrna-trajectories", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "single-cell/scrna-trajectories", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Trajectory analysis in pseudotime is a powerful way to get insight into the differentiation and development of cells.", + "There are multiple methods and algorithms used in trajectory analysis and depending on the dataset, some might work better than others.", + "Trajectory analysis is quite sensitive and thus you should always check if the output makes biological sense." + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-10-10", + "objectives": [ + "Become familiar with the methods of trajectory inference", + "Learn how the algorithms produce outputs", + "Be able to choose the method appropriate for your specific data", + "Gain insight into methods currently available in Galaxy" + ], + "pageviews": 2640568, + "priority": 5, + "pub_date": "2022-09-30", + "questions": [ + "What is trajectory analysis?", + "What are the main methods of trajectory inference?", + "How are the decisions about the trajectory analysis made?", + "What to take into account when choosing the method for your data?" + ], + "redirect_from": [ + "/topics/transcriptomics/tutorials/scrna-case_monocle3-trajectories/slides", + "/short/single-cell/scrna-trajectories/slides", + "/short/S00111" + ], + "requirements": [ + { + "topic_name": "single-cell", + "tutorials": [ + "scrna-intro" + ], + "type": "internal" + } + ], + "short_id": "S00111", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "scintroduction", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": null, + "title": "Trajectory analysis", + "tools": [], + "topic_name": "single-cell", + "topic_name_human": "Single Cell", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "scrna-trajectories", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/single-cell/tutorials/scrna-trajectories/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-trajectories/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/single-cell/tutorials/scrna-trajectories/slides.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 142, + "visitors": 1107674 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "plotly_ml_performance_plots", + "owner": "bgruening", + "revisions": "85da91bbdbfb", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "plotly_regression_performance_plots", + "owner": "bgruening", + "revisions": "389227fa1864", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_ensemble", + "owner": "bgruening", + "revisions": "1a53edc4b438", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_svm_classifier", + "owner": "bgruening", + "revisions": "f9639b488779", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: plotly_ml_performance_plots\n owner: bgruening\n revisions: 85da91bbdbfb\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: plotly_regression_performance_plots\n owner: bgruening\n revisions: 389227fa1864\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_ensemble\n owner: bgruening\n revisions: 1a53edc4b438\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_svm_classifier\n owner: bgruening\n revisions: f9639b488779\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/classification_regression/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/statistics/tutorials/classification_regression", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/classification_regression", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "There is two types of machine learning's supervised approaches, classification and regression.", + "In supervised approaches, the target for each sample is known.", + "For classification and regression tasks, data is divided into training and test sets.", + "Using classification, the categories of rows are learned using the training set and predicted using the test set.", + "Using regression, real-valued targets are learned using the training set and predicted using the test set." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Explain the types of supervised machine learning - classification and regression.", + "Learn how to make predictions using the training and test dataset.", + "Visualize the predictions." + ], + "pageviews": 9612, + "pub_date": "2019-03-07", + "questions": [ + "what are classification and regression techniques?", + "How they can be used for prediction?", + "How visualizations can be used to analyze predictions?" + ], + "short_id": "T00263", + "short_tools": [ + "plotly_ml_performance_plots", + "sklearn_ensemble", + "plotly_regression_performance_plots", + "sklearn_svm_classifier" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Machine learning: classification and regression", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_ml_performance_plots/plotly_ml_performance_plots/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.8.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "classification_regression", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/classification_regression/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/classification_regression/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/classification_regression/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 42, + "visitors": 5179, + "workflows": [ + { + "creators": [], + "description": "Machine learning: classification and regression", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbreast-w_train\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbreast-w_targets\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbreast-w_test\"]\n 3[label=\"Support vector machines SVMs\"]\n 0 -> 3 [label=\"output\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Support vector machines SVMs\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"outfile_fit\"]\n 5[label=\"Plot confusion matrix, precision, recall and ROC and AUC curves\"]\n 3 -> 5 [label=\"outfile_fit\"]\n 4 -> 5 [label=\"outfile_predict\"]\n 1 -> 5 [label=\"output\"]\n k0fac82f3c1b2482fa31f30b623a0f223[color=lightseagreen,label=\"Output\\noutput_roc\"]\n 5 -> k0fac82f3c1b2482fa31f30b623a0f223\n k431f35967b8044f083eedda8c58e1e8c[color=lightseagreen,label=\"Output\\noutput_confusion\"]\n 5 -> k431f35967b8044f083eedda8c58e1e8c\n kab62de11fa694d599ebed5d0562f3c18[color=lightseagreen,label=\"Output\\noutput_prf\"]\n 5 -> kab62de11fa694d599ebed5d0562f3c18\n}", + "history": [ + { + "hash": "9063201053ffa01e885d51cd4360b9c40340d878", + "message": "Add labels to workflow_outputs for classification_LSVC.ga, add test from usegalaxy-eu/workflow-testing", + "num": 6, + "short_hash": "906320105", + "unix": "1590546250" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "9f881ab875f38f8d4299a1fb0bc2f22b422d1eda", + "message": "checking ML tutorials, updating workflows", + "num": 3, + "short_hash": "9f881ab87", + "unix": "1578588754" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "0ccef31bbd7dd97e0d631e51180c00fa36959ade", + "message": "Update workflows", + "num": 1, + "short_hash": "0ccef31bb", + "unix": "1560808556" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "breast-w_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 249, + "top": 202 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "86076921-8735-478b-b872-5042728124b0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "196e8588-e089-4b6a-b319-34ad1b73e531" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "breast-w_targets", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 468, + "top": 202 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "6c281658-889f-4313-a7e0-29bc6109c21b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1cc8efcb-1cfc-439b-89c6-43ac874d3de7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "breast-w_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 239, + "top": 524 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "fd467fb3-5476-4975-8ffe-9f0806618059", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a6c87668-0127-4b79-aef5-8dd725bbb576" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nbreast-w_train\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nbreast-w_targets\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nbreast-w_test\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Support vector machines SVMs\"];\n 0 -->|output| 3;\n 0 -->|output| 3;\n 4[\"Support vector machines SVMs\"];\n 2 -->|output| 4;\n 3 -->|outfile_fit| 4;\n 5[\"Plot confusion matrix, precision, recall and ROC and AUC curves\"];\n 3 -->|outfile_fit| 5;\n 4 -->|outfile_predict| 5;\n 1 -->|output| 5;\n 0fac82f3-c1b2-482f-a31f-30b623a0f223[\"Output\\noutput_roc\"];\n 5 --> 0fac82f3-c1b2-482f-a31f-30b623a0f223;\n style 0fac82f3-c1b2-482f-a31f-30b623a0f223 stroke:#2c3143,stroke-width:4px;\n 431f3596-7b80-44f0-83ee-dda8c58e1e8c[\"Output\\noutput_confusion\"];\n 5 --> 431f3596-7b80-44f0-83ee-dda8c58e1e8c;\n style 431f3596-7b80-44f0-83ee-dda8c58e1e8c stroke:#2c3143,stroke-width:4px;\n ab62de11-fa69-4d59-9ebe-d5d0562f3c18[\"Output\\noutput_prf\"];\n 5 --> ab62de11-fa69-4d59-9ebe-d5d0562f3c18;\n style ab62de11-fa69-4d59-9ebe-d5d0562f3c18 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Classification LSVC", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "breast-w_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 249, + "top": 202 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "86076921-8735-478b-b872-5042728124b0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "196e8588-e089-4b6a-b319-34ad1b73e531" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "breast-w_targets", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 468, + "top": 202 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "6c281658-889f-4313-a7e0-29bc6109c21b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1cc8efcb-1cfc-439b-89c6-43ac874d3de7" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "breast-w_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 239, + "top": 524 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "fd467fb3-5476-4975-8ffe-9f0806618059", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a6c87668-0127-4b79-aef5-8dd725bbb576" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1", + "errors": null, + "id": 3, + "input_connections": { + "selected_tasks|selected_algorithms|input_options|infile1": { + "id": 0, + "output_name": "output" + }, + "selected_tasks|selected_algorithms|input_options|infile2": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Support vector machines (SVMs)", + "outputs": [ + { + "name": "outfile_fit", + "type": "zip" + } + ], + "position": { + "left": 377, + "top": 317 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1", + "tool_shed_repository": { + "changeset_revision": "2df8f5c30edc", + "name": "sklearn_svm_classifier", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"selected_tasks\": \"{\\\"__current_case__\\\": 1, \\\"selected_algorithms\\\": {\\\"__current_case__\\\": 2, \\\"input_options\\\": {\\\"__current_case__\\\": 0, \\\"column_selector_options_1\\\": {\\\"__current_case__\\\": 3, \\\"col1\\\": \\\"target\\\", \\\"selected_column_selector_option\\\": \\\"all_but_by_header_name\\\"}, \\\"column_selector_options_2\\\": {\\\"__current_case__\\\": 2, \\\"col2\\\": \\\"target\\\", \\\"selected_column_selector_option2\\\": \\\"by_header_name\\\"}, \\\"header1\\\": \\\"true\\\", \\\"header2\\\": \\\"true\\\", \\\"infile1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"infile2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"selected_input\\\": \\\"tabular\\\"}, \\\"options\\\": {\\\"C\\\": \\\"1.0\\\", \\\"dual\\\": \\\"true\\\", \\\"fit_intercept\\\": \\\"true\\\", \\\"intercept_scaling\\\": \\\"1.0\\\", \\\"loss\\\": \\\"squared_hinge\\\", \\\"max_iter\\\": \\\"1000\\\", \\\"multi_class\\\": \\\"ovr\\\", \\\"penalty\\\": \\\"l2\\\", \\\"random_state\\\": \\\"\\\", \\\"tol\\\": \\\"0.001\\\"}, \\\"selected_algorithm\\\": \\\"LinearSVC\\\"}, \\\"selected_task\\\": \\\"train\\\"}\", \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "a8696fa7-2bf4-41a5-867e-deb896432e3b", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_fit", + "uuid": "367a0a7b-3681-4125-ba0f-fb1b3cba1d54" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_ml_performance_plots/plotly_ml_performance_plots/0.1", + "errors": null, + "id": 5, + "input_connections": { + "infile_input": { + "id": 1, + "output_name": "output" + }, + "infile_output": { + "id": 4, + "output_name": "outfile_predict" + }, + "infile_trained_model": { + "id": 3, + "output_name": "outfile_fit" + } + }, + "inputs": [], + "label": null, + "name": "Plot confusion matrix, precision, recall and ROC and AUC curves", + "outputs": [ + { + "name": "output_confusion", + "type": "html" + }, + { + "name": "output_prf", + "type": "html" + }, + { + "name": "output_roc", + "type": "html" + } + ], + "position": { + "left": 921, + "top": 242 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_ml_performance_plots/plotly_ml_performance_plots/0.1", + "tool_shed_repository": { + "changeset_revision": "85da91bbdbfb", + "name": "plotly_ml_performance_plots", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile_trained_model\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"__rerun_remap_job_id__\": null, \"infile_output\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"infile_input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"__page__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "f92a43d9-1900-4c66-8e7c-5d3772ab0420", + "workflow_outputs": [ + { + "label": "output_roc", + "output_name": "output_roc", + "uuid": "0fac82f3-c1b2-482f-a31f-30b623a0f223" + }, + { + "label": "output_confusion", + "output_name": "output_confusion", + "uuid": "431f3596-7b80-44f0-83ee-dda8c58e1e8c" + }, + { + "label": "output_prf", + "output_name": "output_prf", + "uuid": "ab62de11-fa69-4d59-9ebe-d5d0562f3c18" + } + ] + } + ], + "parent_id": "statistics/classification_regression", + "path": "topics/statistics/tutorials/classification_regression/workflows/classification_LSVC.ga", + "tags": [ + "ml", + "statistics" + ], + "test_results": null, + "tests": true, + "title": "Classification LSVC", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-classification_regression/versions/classification-lsvc", + "tutorial_id": "classification_regression", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_regression/workflows/classification_LSVC.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_regression/workflows/classification_LSVC.html", + "version": 6, + "wfid": "statistics-classification_regression", + "wfname": "classification-lsvc", + "workflow": "classification_LSVC.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_ml_performance_plots/plotly_ml_performance_plots/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1" + ], + "workflowhub_id": "1294" + }, + { + "creators": [], + "description": "Machine learning: classification and regression", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbody_fat_test\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbody_fat_train\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbody_fat_test_labels\"]\n 3[label=\"Ensemble methods\"]\n 1 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Ensemble methods\"]\n 0 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"outfile_fit\"]\n 5[label=\"Plot actual vs predicted curves and residual plots\"]\n 4 -> 5 [label=\"outfile_predict\"]\n 2 -> 5 [label=\"output\"]\n kcf1a5f94f79d4d13b142c3e20e25b658[color=lightseagreen,label=\"Output\\noutput_scatter_plot\"]\n 5 -> kcf1a5f94f79d4d13b142c3e20e25b658\n ke86ba3fd3f854ba9ad664c1e5caa875a[color=lightseagreen,label=\"Output\\noutput_actual_vs_pred\"]\n 5 -> ke86ba3fd3f854ba9ad664c1e5caa875a\n k2cbc04d3d2d94623b63d51f1b024d611[color=lightseagreen,label=\"Output\\noutput_residual_plot\"]\n 5 -> k2cbc04d3d2d94623b63d51f1b024d611\n}", + "history": [ + { + "hash": "4e0ed121f1596d0145ab9f06a81fcaea55d7190e", + "message": "add labels to workflow_outputs for regression_GradientBoosting.ga, add test from usegalaxy-eu/workflow-testing with updated labels and input sources", + "num": 6, + "short_hash": "4e0ed121f", + "unix": "1590546263" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "9f881ab875f38f8d4299a1fb0bc2f22b422d1eda", + "message": "checking ML tutorials, updating workflows", + "num": 3, + "short_hash": "9f881ab87", + "unix": "1578588754" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "0ccef31bbd7dd97e0d631e51180c00fa36959ade", + "message": "Update workflows", + "num": 1, + "short_hash": "0ccef31bb", + "unix": "1560808556" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "body_fat_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 130, + "top": 160 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "e6c70e79-d455-454c-bccd-f5589583c830", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "335110c2-934f-42dc-a686-833e327aa245" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "body_fat_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 137, + "top": 247 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "708bdce8-5d2a-43d0-bf72-c3f5e7cd7e33", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b4c5cb03-3664-48c1-8605-ea4c5bc4ae41" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "body_fat_test_labels", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 530, + "top": 287 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "d4347e45-accc-4ff0-ab63-c68dc470dc0a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "df37899e-c4f9-483f-91b8-3c01c96b34d8" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nbody_fat_test\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nbody_fat_train\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nbody_fat_test_labels\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Ensemble methods\"];\n 1 -->|output| 3;\n 1 -->|output| 3;\n 4[\"Ensemble methods\"];\n 0 -->|output| 4;\n 3 -->|outfile_fit| 4;\n 5[\"Plot actual vs predicted curves and residual plots\"];\n 4 -->|outfile_predict| 5;\n 2 -->|output| 5;\n cf1a5f94-f79d-4d13-b142-c3e20e25b658[\"Output\\noutput_scatter_plot\"];\n 5 --> cf1a5f94-f79d-4d13-b142-c3e20e25b658;\n style cf1a5f94-f79d-4d13-b142-c3e20e25b658 stroke:#2c3143,stroke-width:4px;\n e86ba3fd-3f85-4ba9-ad66-4c1e5caa875a[\"Output\\noutput_actual_vs_pred\"];\n 5 --> e86ba3fd-3f85-4ba9-ad66-4c1e5caa875a;\n style e86ba3fd-3f85-4ba9-ad66-4c1e5caa875a stroke:#2c3143,stroke-width:4px;\n 2cbc04d3-d2d9-4623-b63d-51f1b024d611[\"Output\\noutput_residual_plot\"];\n 5 --> 2cbc04d3-d2d9-4623-b63d-51f1b024d611;\n style 2cbc04d3-d2d9-4623-b63d-51f1b024d611 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Regression GradientBoosting", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "body_fat_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 130, + "top": 160 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "e6c70e79-d455-454c-bccd-f5589583c830", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "335110c2-934f-42dc-a686-833e327aa245" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "body_fat_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 137, + "top": 247 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "708bdce8-5d2a-43d0-bf72-c3f5e7cd7e33", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b4c5cb03-3664-48c1-8605-ea4c5bc4ae41" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "body_fat_test_labels", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 530, + "top": 287 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "d4347e45-accc-4ff0-ab63-c68dc470dc0a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "df37899e-c4f9-483f-91b8-3c01c96b34d8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.8.1", + "errors": null, + "id": 3, + "input_connections": { + "selected_tasks|selected_algorithms|input_options|infile1": { + "id": 1, + "output_name": "output" + }, + "selected_tasks|selected_algorithms|input_options|infile2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Ensemble methods", + "outputs": [ + { + "name": "outfile_fit", + "type": "zip" + } + ], + "position": { + "left": 259, + "top": 390 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.8.1", + "tool_shed_repository": { + "changeset_revision": "af0523c606a7", + "name": "sklearn_ensemble", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"selected_tasks\": \"{\\\"__current_case__\\\": 1, \\\"selected_algorithms\\\": {\\\"__current_case__\\\": 5, \\\"input_options\\\": {\\\"__current_case__\\\": 0, \\\"column_selector_options_1\\\": {\\\"__current_case__\\\": 3, \\\"col1\\\": \\\"target\\\", \\\"selected_column_selector_option\\\": \\\"all_but_by_header_name\\\"}, \\\"column_selector_options_2\\\": {\\\"__current_case__\\\": 2, \\\"col2\\\": \\\"target\\\", \\\"selected_column_selector_option2\\\": \\\"by_header_name\\\"}, \\\"header1\\\": \\\"true\\\", \\\"header2\\\": \\\"true\\\", \\\"infile1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"infile2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"selected_input\\\": \\\"tabular\\\"}, \\\"options\\\": {\\\"alpha\\\": \\\"0.9\\\", \\\"criterion\\\": \\\"friedman_mse\\\", \\\"learning_rate\\\": \\\"0.1\\\", \\\"loss\\\": \\\"ls\\\", \\\"max_depth\\\": \\\"3\\\", \\\"max_leaf_nodes\\\": \\\"\\\", \\\"min_impurity_decrease\\\": \\\"0.0\\\", \\\"min_samples_leaf\\\": \\\"1.0\\\", \\\"min_samples_split\\\": \\\"2.0\\\", \\\"min_weight_fraction_leaf\\\": \\\"0.0\\\", \\\"n_estimators\\\": \\\"100\\\", \\\"presort\\\": \\\"auto\\\", \\\"random_state\\\": \\\"\\\", \\\"select_max_features\\\": {\\\"__current_case__\\\": 0, \\\"max_features\\\": \\\"auto\\\"}, \\\"subsample\\\": \\\"1.0\\\", \\\"verbose\\\": \\\"0\\\", \\\"warm_start\\\": \\\"false\\\"}, \\\"selected_algorithm\\\": \\\"GradientBoostingRegressor\\\"}, \\\"selected_task\\\": \\\"train\\\"}\", \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "42790459-3ce7-437c-abae-89d24f08f6ee", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_fit", + "uuid": "0744a05e-6fa3-4170-84f9-76154dc93e41" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "errors": null, + "id": 5, + "input_connections": { + "infile_input": { + "id": 2, + "output_name": "output" + }, + "infile_output": { + "id": 4, + "output_name": "outfile_predict" + } + }, + "inputs": [], + "label": null, + "name": "Plot actual vs predicted curves and residual plots", + "outputs": [ + { + "name": "output_actual_vs_pred", + "type": "html" + }, + { + "name": "output_scatter_plot", + "type": "html" + }, + { + "name": "output_residual_plot", + "type": "html" + } + ], + "position": { + "left": 810.5, + "top": 246 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "tool_shed_repository": { + "changeset_revision": "389227fa1864", + "name": "plotly_regression_performance_plots", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"infile_output\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"infile_input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": null, + "type": "tool", + "uuid": "2e33d8c7-79aa-4c07-b3f6-fd3c0bc67b74", + "workflow_outputs": [ + { + "label": "output_scatter_plot", + "output_name": "output_scatter_plot", + "uuid": "cf1a5f94-f79d-4d13-b142-c3e20e25b658" + }, + { + "label": "output_actual_vs_pred", + "output_name": "output_actual_vs_pred", + "uuid": "e86ba3fd-3f85-4ba9-ad66-4c1e5caa875a" + }, + { + "label": "output_residual_plot", + "output_name": "output_residual_plot", + "uuid": "2cbc04d3-d2d9-4623-b63d-51f1b024d611" + } + ] + } + ], + "parent_id": "statistics/classification_regression", + "path": "topics/statistics/tutorials/classification_regression/workflows/regression_GradientBoosting.ga", + "tags": [ + "ml", + "statistics" + ], + "test_results": null, + "tests": true, + "title": "Regression GradientBoosting", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-classification_regression/versions/regression-gradientboosting", + "tutorial_id": "classification_regression", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_regression/workflows/regression_GradientBoosting.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_regression/workflows/regression_GradientBoosting.html", + "version": 6, + "wfid": "statistics-classification_regression", + "wfname": "regression-gradientboosting", + "workflow": "regression_GradientBoosting.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.8.1" + ], + "workflowhub_id": "1288" + } + ], + "zenodo_link": "https://zenodo.org/record/2579649" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "sklearn_numeric_clustering", + "owner": "bgruening", + "revisions": "1dd433d2c92c", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_point", + "owner": "iuc", + "revisions": "e3a675da7fd0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: sklearn_numeric_clustering\n owner: bgruening\n revisions: 1dd433d2c92c\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_point\n owner: iuc\n revisions: e3a675da7fd0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/clustering_machinelearning/tutorial.json", + "contributors": [ + { + "email": "khanteymoori@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "khanteymoori", + "joined": "2019-07", + "name": "Alireza Khanteymoori", + "orcid": "0000-0001-6811-9196", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khanteymoori/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khanteymoori.json" + }, + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + } + ], + "dir": "topics/statistics/tutorials/clustering_machinelearning", + "edam_operation": [ + "Visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/clustering_machinelearning", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Using clustering methods, clusters inside a dataset are drawn using hierarchical, k-means and DBSCAN", + "For each clustering algorithm, the number of clusters and their respective hyperparameters should be optimised based on the dataset" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-01-15", + "objectives": [ + "Learn clustering background", + "Learn hierarchical clustering algorithm", + "Learn k-means clustering algorithm", + "Learn DBSCAN clustering algorithm", + "Apply clustering algorithms to different datasets", + "Learn how to visualize clusters" + ], + "pageviews": 13130, + "pub_date": "2020-05-08", + "questions": [ + "How to use clustering algorithms to categorize data in different clusters" + ], + "short_id": "T00264", + "short_tools": [ + "ggplot2_point", + "csv_to_tabular", + "sklearn_numeric_clustering" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Clustering in Machine Learning", + "tools": [ + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_numeric_clustering/sklearn_numeric_clustering/1.0.8.1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "clustering_machinelearning", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/clustering_machinelearning/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/clustering_machinelearning/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/clustering_machinelearning/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 58, + "visitors": 7665, + "workflows": [ + { + "creators": [], + "description": "Clustering in Machine Learning", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\niris\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncircles\"]\n 10[label=\"Numeric Clustering\"]\n 2 -> 10 [label=\"output\"]\n 11[label=\"Numeric Clustering\"]\n 2 -> 11 [label=\"output\"]\n 12[label=\"Numeric Clustering\"]\n 3 -> 12 [label=\"tabular\"]\n 13[label=\"Numeric Clustering\"]\n 3 -> 13 [label=\"tabular\"]\n 14[label=\"Numeric Clustering\"]\n 3 -> 14 [label=\"tabular\"]\n 15[label=\"Scatterplot with ggplot2\"]\n 5 -> 15 [label=\"outfile\"]\n k275528af4af34dc6a958737f4d2f89bd[color=lightseagreen,label=\"Output\\nheirarchical_clustering_circles\"]\n 15 -> k275528af4af34dc6a958737f4d2f89bd\n 16[label=\"Scatterplot with ggplot2\"]\n 6 -> 16 [label=\"outfile\"]\n k870b03ca6b2c42abbbcc6c4bbecf8ea9[color=lightseagreen,label=\"Output\\nkmeans_clustering_circles\"]\n 16 -> k870b03ca6b2c42abbbcc6c4bbecf8ea9\n 17[label=\"Scatterplot with ggplot2\"]\n 7 -> 17 [label=\"outfile\"]\n k9664ba0546644ceb8f930974b20bf9e1[color=lightseagreen,label=\"Output\\ndbscan_clustering_circles\"]\n 17 -> k9664ba0546644ceb8f930974b20bf9e1\n 18[label=\"Scatterplot with ggplot2\"]\n 9 -> 18 [label=\"outfile\"]\n kd82a44837f38461496b42a9b3316c808[color=lightseagreen,label=\"Output\\nheirarchical_clustering_moon\"]\n 18 -> kd82a44837f38461496b42a9b3316c808\n 19[label=\"Scatterplot with ggplot2\"]\n 10 -> 19 [label=\"outfile\"]\n k00c0ca584ee546068c1bc172431e5dbd[color=lightseagreen,label=\"Output\\ndbscan_clustering_moon\"]\n 19 -> k00c0ca584ee546068c1bc172431e5dbd\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmoon\"]\n 20[label=\"Scatterplot with ggplot2\"]\n 11 -> 20 [label=\"outfile\"]\n k5717bf2283e346a28f6d12a1fa41439b[color=lightseagreen,label=\"Output\\nkmeans_clustering_moon\"]\n 20 -> k5717bf2283e346a28f6d12a1fa41439b\n 21[label=\"Scatterplot with ggplot2\"]\n 12 -> 21 [label=\"outfile\"]\n k0ace8714ff3a4efda64970924b1e6230[color=lightseagreen,label=\"Output\\nheirarchical_clustering_iris\"]\n 21 -> k0ace8714ff3a4efda64970924b1e6230\n 22[label=\"Scatterplot with ggplot2\"]\n 13 -> 22 [label=\"outfile\"]\n ke6f69d7dc9e340238daf87f6b0afc3fd[color=lightseagreen,label=\"Output\\nkmeans_clustering_iris\"]\n 22 -> ke6f69d7dc9e340238daf87f6b0afc3fd\n 23[label=\"Scatterplot with ggplot2\"]\n 14 -> 23 [label=\"outfile\"]\n k119d1cde567a47f099de00d3557c38a2[color=lightseagreen,label=\"Output\\ndbscan_clustering_iris\"]\n 23 -> k119d1cde567a47f099de00d3557c38a2\n 3[label=\"Convert CSV to tabular\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Scatterplot with ggplot2\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Numeric Clustering\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Numeric Clustering\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Numeric Clustering\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"Scatterplot with ggplot2\"]\n 2 -> 8 [label=\"output\"]\n 9[label=\"Numeric Clustering\"]\n 2 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "6e1f4b5d32d30511c71dcbcca2f2cbb4a81b068c", + "message": "test for clustering workflow and update to the workflow to have workflow_outputs", + "num": 2, + "short_hash": "6e1f4b5d3", + "unix": "1595488265" + }, + { + "hash": "3741978d02740dd112eb6406568c404b0b0a7452", + "message": "images are modified, workflow is added, zenodo is updatet and tiny changes", + "num": 1, + "short_hash": "3741978d0", + "unix": "1588939838" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "iris" + } + ], + "label": "iris", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"iris\"}", + "tool_version": null, + "type": "data_input", + "uuid": "8ea6762f-5566-4e0d-85f2-f6ff2db47c1b", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "circles" + } + ], + "label": "circles", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 320 + }, + "tool_id": null, + "tool_state": "{\"name\": \"circles\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3eb71a88-7eab-4f3c-9956-9a1cf50c4dff", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "moon" + } + ], + "label": "moon", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 440 + }, + "tool_id": null, + "tool_state": "{\"name\": \"moon\"}", + "tool_version": null, + "type": "data_input", + "uuid": "84e54369-42be-439e-993c-c211e27c1b80", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\niris\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ncircles\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Numeric Clustering\"];\n 2 -->|output| 10;\n 11[\"Numeric Clustering\"];\n 2 -->|output| 11;\n 12[\"Numeric Clustering\"];\n 3 -->|tabular| 12;\n 13[\"Numeric Clustering\"];\n 3 -->|tabular| 13;\n 14[\"Numeric Clustering\"];\n 3 -->|tabular| 14;\n 15[\"Scatterplot with ggplot2\"];\n 5 -->|outfile| 15;\n 275528af-4af3-4dc6-a958-737f4d2f89bd[\"Output\\nheirarchical_clustering_circles\"];\n 15 --> 275528af-4af3-4dc6-a958-737f4d2f89bd;\n style 275528af-4af3-4dc6-a958-737f4d2f89bd stroke:#2c3143,stroke-width:4px;\n 16[\"Scatterplot with ggplot2\"];\n 6 -->|outfile| 16;\n 870b03ca-6b2c-42ab-bbcc-6c4bbecf8ea9[\"Output\\nkmeans_clustering_circles\"];\n 16 --> 870b03ca-6b2c-42ab-bbcc-6c4bbecf8ea9;\n style 870b03ca-6b2c-42ab-bbcc-6c4bbecf8ea9 stroke:#2c3143,stroke-width:4px;\n 17[\"Scatterplot with ggplot2\"];\n 7 -->|outfile| 17;\n 9664ba05-4664-4ceb-8f93-0974b20bf9e1[\"Output\\ndbscan_clustering_circles\"];\n 17 --> 9664ba05-4664-4ceb-8f93-0974b20bf9e1;\n style 9664ba05-4664-4ceb-8f93-0974b20bf9e1 stroke:#2c3143,stroke-width:4px;\n 18[\"Scatterplot with ggplot2\"];\n 9 -->|outfile| 18;\n d82a4483-7f38-4614-96b4-2a9b3316c808[\"Output\\nheirarchical_clustering_moon\"];\n 18 --> d82a4483-7f38-4614-96b4-2a9b3316c808;\n style d82a4483-7f38-4614-96b4-2a9b3316c808 stroke:#2c3143,stroke-width:4px;\n 19[\"Scatterplot with ggplot2\"];\n 10 -->|outfile| 19;\n 00c0ca58-4ee5-4606-8c1b-c172431e5dbd[\"Output\\ndbscan_clustering_moon\"];\n 19 --> 00c0ca58-4ee5-4606-8c1b-c172431e5dbd;\n style 00c0ca58-4ee5-4606-8c1b-c172431e5dbd stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nmoon\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 20[\"Scatterplot with ggplot2\"];\n 11 -->|outfile| 20;\n 5717bf22-83e3-46a2-8f6d-12a1fa41439b[\"Output\\nkmeans_clustering_moon\"];\n 20 --> 5717bf22-83e3-46a2-8f6d-12a1fa41439b;\n style 5717bf22-83e3-46a2-8f6d-12a1fa41439b stroke:#2c3143,stroke-width:4px;\n 21[\"Scatterplot with ggplot2\"];\n 12 -->|outfile| 21;\n 0ace8714-ff3a-4efd-a649-70924b1e6230[\"Output\\nheirarchical_clustering_iris\"];\n 21 --> 0ace8714-ff3a-4efd-a649-70924b1e6230;\n style 0ace8714-ff3a-4efd-a649-70924b1e6230 stroke:#2c3143,stroke-width:4px;\n 22[\"Scatterplot with ggplot2\"];\n 13 -->|outfile| 22;\n e6f69d7d-c9e3-4023-8daf-87f6b0afc3fd[\"Output\\nkmeans_clustering_iris\"];\n 22 --> e6f69d7d-c9e3-4023-8daf-87f6b0afc3fd;\n style e6f69d7d-c9e3-4023-8daf-87f6b0afc3fd stroke:#2c3143,stroke-width:4px;\n 23[\"Scatterplot with ggplot2\"];\n 14 -->|outfile| 23;\n 119d1cde-567a-47f0-99de-00d3557c38a2[\"Output\\ndbscan_clustering_iris\"];\n 23 --> 119d1cde-567a-47f0-99de-00d3557c38a2;\n style 119d1cde-567a-47f0-99de-00d3557c38a2 stroke:#2c3143,stroke-width:4px;\n 3[\"Convert CSV to tabular\"];\n 0 -->|output| 3;\n 4[\"Scatterplot with ggplot2\"];\n 1 -->|output| 4;\n 5[\"Numeric Clustering\"];\n 1 -->|output| 5;\n 6[\"Numeric Clustering\"];\n 1 -->|output| 6;\n 7[\"Numeric Clustering\"];\n 1 -->|output| 7;\n 8[\"Scatterplot with ggplot2\"];\n 2 -->|output| 8;\n 9[\"Numeric Clustering\"];\n 2 -->|output| 9;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Clustering in Machine Learning", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 15, + "input_connections": { + "input1": { + "id": 5, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 640, + "top": 680 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"3\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"X\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"Hierarchical Clustering on Circles Data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Y\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "86da9f0e-b190-4def-b4a5-6e62fb2b6fd3", + "workflow_outputs": [ + { + "label": "heirarchical_clustering_circles", + "output_name": "output1", + "uuid": "275528af-4af3-4dc6-a958-737f4d2f89bd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 16, + "input_connections": { + "input1": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 640, + "top": 800 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"3\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"X\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"K-means Clustering on Circles Data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Y\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "0df119aa-bdfb-4fd3-9062-98faae31ed04", + "workflow_outputs": [ + { + "label": "kmeans_clustering_circles", + "output_name": "output1", + "uuid": "870b03ca-6b2c-42ab-bbcc-6c4bbecf8ea9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 17, + "input_connections": { + "input1": { + "id": 7, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 640, + "top": 1040 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"3\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"X\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"DBSCAN Clustering on Circles Data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Y\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "16c3f360-fccf-4638-884a-307f91c7c7bb", + "workflow_outputs": [ + { + "label": "dbscan_clustering_circles", + "output_name": "output1", + "uuid": "9664ba05-4664-4ceb-8f93-0974b20bf9e1" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 18, + "input_connections": { + "input1": { + "id": 9, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 640, + "top": 560 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"3\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"X\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"Hierarchical Clustering on Moon Data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Y\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "70b1ca6c-19ba-41c8-8707-fe25a0f83f5f", + "workflow_outputs": [ + { + "label": "heirarchical_clustering_moon", + "output_name": "output1", + "uuid": "d82a4483-7f38-4614-96b4-2a9b3316c808" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 19, + "input_connections": { + "input1": { + "id": 10, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 640, + "top": 1160 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"3\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"X\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"DBSCAN Clustering on Moon Data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Y\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "06c68d29-3008-4c83-b8db-5076dc67da11", + "workflow_outputs": [ + { + "label": "dbscan_clustering_moon", + "output_name": "output1", + "uuid": "00c0ca58-4ee5-4606-8c1b-c172431e5dbd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 20, + "input_connections": { + "input1": { + "id": 11, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 640, + "top": 920 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"3\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"X\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"K-means Clustering on Moon Data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Y\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "d62fb208-c3ba-472e-af50-d757cde6a837", + "workflow_outputs": [ + { + "label": "kmeans_clustering_moon", + "output_name": "output1", + "uuid": "5717bf22-83e3-46a2-8f6d-12a1fa41439b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 21, + "input_connections": { + "input1": { + "id": 12, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 860, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"6\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"Sepal length\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"Hierarchical Clustering in Iris data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Sepal width\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "fa31d028-44bc-4ebf-9123-1fdb5bddb477", + "workflow_outputs": [ + { + "label": "heirarchical_clustering_iris", + "output_name": "output1", + "uuid": "0ace8714-ff3a-4efd-a649-70924b1e6230" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 22, + "input_connections": { + "input1": { + "id": 13, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 860, + "top": 320 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"6\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"Sepal length\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"K-means Clustering in Iris data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Sepal width\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "497d818f-d5a8-43fd-b8ee-163497561918", + "workflow_outputs": [ + { + "label": "kmeans_clustering_iris", + "output_name": "output1", + "uuid": "e6f69d7d-c9e3-4023-8daf-87f6b0afc3fd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "errors": null, + "id": 23, + "input_connections": { + "input1": { + "id": 14, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Scatterplot with ggplot2", + "outputs": [ + { + "name": "output1", + "type": "png" + } + ], + "position": { + "left": 860, + "top": 440 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "87908c76ca8d", + "name": "ggplot2_point", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"axis_text_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"axis_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"factor\\\": {\\\"__current_case__\\\": 1, \\\"colororder\\\": \\\"1\\\", \\\"colors\\\": \\\"Set2\\\", \\\"factorcol\\\": \\\"6\\\", \\\"factoring\\\": \\\"Single\\\"}, \\\"gridlinecust\\\": \\\"default\\\", \\\"legend\\\": \\\"yes\\\", \\\"plot_title_customization\\\": {\\\"__current_case__\\\": 0, \\\"axis_customization\\\": \\\"default\\\"}, \\\"points\\\": {\\\"__current_case__\\\": 1, \\\"alpha\\\": \\\"1.0\\\", \\\"pointcolor\\\": \\\"black\\\", \\\"pointoptions\\\": \\\"defined\\\", \\\"size\\\": \\\"2.0\\\"}, \\\"scaling\\\": {\\\"__current_case__\\\": 0, \\\"plot_scaling\\\": \\\"Automatic\\\"}, \\\"theme\\\": \\\"bw\\\", \\\"transform\\\": \\\"none\\\", \\\"type\\\": \\\"points\\\"}\", \"xlab\": \"\\\"Sepal length\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"title\": \"\\\"DBSCAN Clustering in Iris data\\\"\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"xplot\": \"\\\"1\\\"\", \"yplot\": \"\\\"2\\\"\", \"ylab\": \"\\\"Sepal width\\\"\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"out\": \"{\\\"additional_output_format\\\": \\\"none\\\", \\\"dpi_output_dim\\\": \\\"300.0\\\", \\\"height_output_dim\\\": \\\"7.0\\\", \\\"unit_output_dim\\\": \\\"in\\\", \\\"width_output_dim\\\": \\\"7.0\\\"}\"}", + "tool_version": "2.2.1+galaxy2", + "type": "tool", + "uuid": "27049b9b-3f88-4bc0-95e1-42e6866bd593", + "workflow_outputs": [ + { + "label": "dbscan_clustering_iris", + "output_name": "output1", + "uuid": "119d1cde-567a-47f0-99de-00d3557c38a2" + } + ] + } + ], + "parent_id": "statistics/clustering_machinelearning", + "path": "topics/statistics/tutorials/clustering_machinelearning/workflows/clustering.ga", + "tags": [ + "statistics", + "clustering", + "ml" + ], + "test_results": null, + "tests": true, + "title": "Clustering in Machine Learning", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-clustering_machinelearning/versions/clustering", + "tutorial_id": "clustering_machinelearning", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/clustering_machinelearning/workflows/clustering.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/clustering_machinelearning/workflows/clustering.html", + "version": 2, + "wfid": "statistics-clustering_machinelearning", + "wfname": "clustering", + "workflow": "clustering.ga", + "workflow_tools": [ + "csv_to_tabular", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_numeric_clustering/sklearn_numeric_clustering/1.0.8.1", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point/ggplot2_point/2.2.1+galaxy2" + ], + "workflowhub_id": "1302" + } + ], + "zenodo_link": "https://zenodo.org/record/3813447" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "keras_model_builder", + "owner": "bgruening", + "revisions": "66d7efc06000", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_model_config", + "owner": "bgruening", + "revisions": "f22a9297440f", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_train_and_eval", + "owner": "bgruening", + "revisions": "818f9b69d8a0", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "model_prediction", + "owner": "bgruening", + "revisions": "9991c4ddde14", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "plotly_regression_performance_plots", + "owner": "bgruening", + "revisions": "389227fa1864", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: keras_model_builder\n owner: bgruening\n revisions: 66d7efc06000\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_model_config\n owner: bgruening\n revisions: f22a9297440f\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_train_and_eval\n owner: bgruening\n revisions: 818f9b69d8a0\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: model_prediction\n owner: bgruening\n revisions: 9991c4ddde14\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: plotly_regression_performance_plots\n owner: bgruening\n revisions: 389227fa1864\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/FNN/tutorial.json", + "contributors": [ + { + "email": "kxk302@gmail.com", + "id": "kxk302", + "joined": "2021-02", + "name": "Kaivan Kamali", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kxk302/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kxk302.json" + } + ], + "dir": "topics/statistics/tutorials/FNN", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "statistics", + "tutorials": [ + "RNN" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "statistics/FNN", + "inexact_supported_servers": [ + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": 2165, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand the inspiration for neural networks", + "Learn various activation functions, and classification/regression problems solved by neural networks", + "Discuss various cost/loss functions and the backpropagation algorithm", + "Learn how to create a neural network using Galaxy's deep learning tools", + "Solve a simple regression problem, car purchase price prediction, via FNN in Galaxy" + ], + "pageviews": 5180093, + "pub_date": "2021-04-28", + "questions": [ + "What is a feedforward neural network (FNN)?", + "What are some applications of FNN?" + ], + "recordings": [ + { + "captioners": [ + "kxk302" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H10M", + "speakers": [ + "kxk302" + ], + "youtube_id": "VbzJDkyPL4A" + } + ], + "requirements": [ + { + "topic_name": "statistics", + "tutorials": [ + "intro_deep_learning" + ], + "type": "internal" + } + ], + "short_id": "T00258", + "short_tools": [ + "keras_model_builder", + "keras_model_config", + "model_prediction", + "plotly_regression_performance_plots", + "keras_train_and_eval" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Deep Learning (Part 1) - Feedforward neural networks (FNN)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "FNN", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/FNN/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/FNN/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/FNN/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 197, + "visitors": 1919945, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-6585-3619", + "name": "Kaivan Kamali" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nX_test\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nX_train\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ny_test\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ny_train\"]\n 4[label=\"Create a deep learning model architecture\"]\n 5[label=\"Create deep learning model\"]\n 4 -> 5 [label=\"outfile\"]\n 6[label=\"Deep learning training and evaluation\"]\n 5 -> 6 [label=\"outfile\"]\n 1 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Model Prediction\"]\n 6 -> 7 [label=\"outfile_object\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Plot actual vs predicted curves and residual plots\"]\n 2 -> 8 [label=\"output\"]\n 7 -> 8 [label=\"outfile_predict\"]\n}", + "history": [ + { + "hash": "72508012689459bf074ee58d075b7e92d91044f0", + "message": "Got rid of . in workflow name", + "num": 1, + "short_hash": "725080126", + "unix": "1697492492" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "X_test" + } + ], + "label": "X_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d9e33ebf-398b-41f5-83d4-aecd6f42817d", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "X_train" + } + ], + "label": "X_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ad5497f9-1638-4f14-835e-4ba48ccccfad", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "y_test" + } + ], + "label": "y_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e9939b7b-c469-4823-9339-799a0b47397e", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "y_train" + } + ], + "label": "y_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "978203ee-a2bc-4cf7-ad01-0793b7e27431", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nX_test\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nX_train\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ny_test\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\ny_train\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Create a deep learning model architecture\"];\n 5[\"Create deep learning model\"];\n 4 -->|outfile| 5;\n 6[\"Deep learning training and evaluation\"];\n 5 -->|outfile| 6;\n 1 -->|output| 6;\n 3 -->|output| 6;\n 7[\"Model Prediction\"];\n 6 -->|outfile_object| 7;\n 0 -->|output| 7;\n 8[\"Plot actual vs predicted curves and residual plots\"];\n 2 -->|output| 8;\n 7 -->|outfile_predict| 8;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Intro_To_FNN_v1_0_10_0", + "outputs": [], + "parent_id": "statistics/FNN", + "path": "topics/statistics/tutorials/FNN/workflows/Intro_To_FNN_v1_0_10_0.ga", + "tags": [ + "statistics", + "ml", + "fnn" + ], + "test_results": null, + "tests": true, + "title": "Intro_To_FNN_v1_0_10_0", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-FNN/versions/intro-to-fnn-v1-0-10-0", + "tutorial_id": "FNN", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/FNN/workflows/Intro_To_FNN_v1_0_10_0.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/FNN/workflows/Intro_To_FNN_v1_0_10_0.html", + "version": 1, + "wfid": "statistics-FNN", + "wfname": "intro-to-fnn-v1-0-10-0", + "workflow": "Intro_To_FNN_v1_0_10_0.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1" + ], + "workflowhub_id": "1308" + } + ], + "zenodo_link": "https://zenodo.org/record/4660497" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "plotly_regression_performance_plots", + "owner": "bgruening", + "revisions": "389227fa1864", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_build_pipeline", + "owner": "bgruening", + "revisions": "4c4ec859c31a", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_ensemble", + "owner": "bgruening", + "revisions": "060ca94ac049", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_generalized_linear", + "owner": "bgruening", + "revisions": "d4808d5b83da", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_searchcv", + "owner": "bgruening", + "revisions": "7626ea9c2e1b", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: plotly_regression_performance_plots\n owner: bgruening\n revisions: 389227fa1864\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_build_pipeline\n owner: bgruening\n revisions: 4c4ec859c31a\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_ensemble\n owner: bgruening\n revisions: 060ca94ac049\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_generalized_linear\n owner: bgruening\n revisions: d4808d5b83da\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_searchcv\n owner: bgruening\n revisions: 7626ea9c2e1b\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/regression_machinelearning/tutorial.json", + "contributors": [ + { + "email": "khanteymoori@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "khanteymoori", + "joined": "2019-07", + "name": "Alireza Khanteymoori", + "orcid": "0000-0001-6811-9196", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khanteymoori/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khanteymoori.json" + }, + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/statistics/tutorials/regression_machinelearning", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/regression_machinelearning", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Using regression, real-valued targets are learned using the training set and predicted using the test set.", + "For each regression algorithm, its parameters should be optimized based on the dataset." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn regression background", + "Apply regression based machine learning algorithms", + "Learn ageing biomarkers and predict age from DNA methylation datasets", + "Learn how visualizations can be used to analyze predictions" + ], + "pageviews": 3093, + "pub_date": "2020-01-25", + "questions": [ + "How to use regression techniques to create predictive models from biological datasets?" + ], + "recordings": [ + { + "captioners": [ + "anuprulez" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H29M", + "speakers": [ + "anuprulez" + ], + "youtube_id": "qxaWQjtEOzM" + } + ], + "short_id": "T00271", + "short_tools": [ + "sklearn_ensemble", + "plotly_regression_performance_plots", + "sklearn_generalized_linear", + "Remove beginning1", + "sklearn_build_pipeline", + "sklearn_searchcv" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Regression in Machine Learning", + "tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_generalized_linear/sklearn_generalized_linear/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.11.0" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "regression_machinelearning", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/regression_machinelearning/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/regression_machinelearning/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/regression_machinelearning/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 55, + "visitors": 2506, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "identifier": "https://orcid.org/0000-0002-2068-4695", + "name": "Anup Kumar" + } + ], + "description": "Regression in Machine Learning", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrain_rows\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_rows_labels\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_rows\"]\n 3[label=\"Pipeline Builder\"]\n 4[label=\"Generalized linear models\"]\n 0 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Ensemble methods\"]\n 0 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Remove beginning\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Hyperparameter Search\"]\n 3 -> 7 [label=\"outfile\"]\n 0 -> 7 [label=\"output\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Generalized linear models\"]\n 2 -> 8 [label=\"output\"]\n 4 -> 8 [label=\"outfile_fit\"]\n 9[label=\"Ensemble methods\"]\n 2 -> 9 [label=\"output\"]\n 5 -> 9 [label=\"outfile_fit\"]\n 10[label=\"Ensemble methods\"]\n 2 -> 10 [label=\"output\"]\n 7 -> 10 [label=\"outfile_object\"]\n 11[label=\"Plot actual vs predicted curves and residual plots\"]\n 6 -> 11 [label=\"out_file1\"]\n 8 -> 11 [label=\"outfile_predict\"]\n 12[label=\"Plot actual vs predicted curves and residual plots\"]\n 1 -> 12 [label=\"output\"]\n 9 -> 12 [label=\"outfile_predict\"]\n 13[label=\"Plot actual vs predicted curves and residual plots\"]\n 1 -> 13 [label=\"output\"]\n 10 -> 13 [label=\"outfile_predict\"]\n}", + "history": [ + { + "hash": "e0c8a62ac28e9885d241177353ae0f7f0e6eff53", + "message": "add workflow test file for regression tutorial", + "num": 1, + "short_hash": "e0c8a62ac", + "unix": "1716282987" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "train_rows" + } + ], + "label": "train_rows", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 4.477616495160982 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "881f9b46-b78f-4bfd-b043-570553d521e7", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_rows_labels" + } + ], + "label": "test_rows_labels", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 94.24427909281724 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3f9d15eb-3b30-458c-88cd-91f9fb6e9f4a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_rows" + } + ], + "label": "test_rows", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 184.0109416904735 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "eaa20c2d-5d1f-427c-9214-6b5efbf23ce7", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ntrain_rows\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ntest_rows_labels\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ntest_rows\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Pipeline Builder\"];\n 4[\"Generalized linear models\"];\n 0 -->|output| 4;\n 0 -->|output| 4;\n 5[\"Ensemble methods\"];\n 0 -->|output| 5;\n 0 -->|output| 5;\n 6[\"Remove beginning\"];\n 1 -->|output| 6;\n 7[\"Hyperparameter Search\"];\n 3 -->|outfile| 7;\n 0 -->|output| 7;\n 0 -->|output| 7;\n 8[\"Generalized linear models\"];\n 2 -->|output| 8;\n 4 -->|outfile_fit| 8;\n 9[\"Ensemble methods\"];\n 2 -->|output| 9;\n 5 -->|outfile_fit| 9;\n 10[\"Ensemble methods\"];\n 2 -->|output| 10;\n 7 -->|outfile_object| 10;\n 11[\"Plot actual vs predicted curves and residual plots\"];\n 6 -->|out_file1| 11;\n 8 -->|outfile_predict| 11;\n 12[\"Plot actual vs predicted curves and residual plots\"];\n 1 -->|output| 12;\n 9 -->|outfile_predict| 12;\n 13[\"Plot actual vs predicted curves and residual plots\"];\n 1 -->|output| 13;\n 10 -->|outfile_predict| 13;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "ml_regression", + "outputs": [], + "parent_id": "statistics/regression_machinelearning", + "path": "topics/statistics/tutorials/regression_machinelearning/workflows/ml_regression.ga", + "tags": [ + "statistics", + "regression", + "ml" + ], + "test_results": null, + "tests": true, + "title": "ml_regression", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-regression_machinelearning/versions/ml-regression", + "tutorial_id": "regression_machinelearning", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/regression_machinelearning/workflows/ml_regression.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/regression_machinelearning/workflows/ml_regression.html", + "version": 1, + "wfid": "statistics-regression_machinelearning", + "wfname": "ml-regression", + "workflow": "ml_regression.ga", + "workflow_tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_generalized_linear/sklearn_generalized_linear/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.11.0" + ], + "workflowhub_id": "1328" + } + ], + "zenodo_link": "https://zenodo.org/record/2545213" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "pancancer_alternative_genes_pathwaymapper", + "owner": "vijay", + "revisions": "c594c4333b76", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_apply_weights", + "owner": "vijay", + "revisions": "3543d3e66ecb", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_classifier", + "owner": "vijay", + "revisions": "20b049f5b3f5", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_compare_within_models", + "owner": "vijay", + "revisions": "84ac2a86bde1", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_external_sample_status_prediction", + "owner": "vijay", + "revisions": "8f426aeccfe3", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_map_mutation_class", + "owner": "vijay", + "revisions": "54c85c40dce1", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_pathway_count_heatmaps", + "owner": "vijay", + "revisions": "dc1d71493ebf", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_targene_cell_line_predictions", + "owner": "vijay", + "revisions": "872aab514d37", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_targene_pharmacology", + "owner": "vijay", + "revisions": "aa5e0e353148", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_targene_summary_figures", + "owner": "vijay", + "revisions": "d533f991e22e", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_visualize_decisions", + "owner": "vijay", + "revisions": "f6dd27775d28", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pancancer_within_disease_analysis", + "owner": "vijay", + "revisions": "99d944bfe9b3", + "tool_panel_section_label": "Statistics and machine learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: pancancer_alternative_genes_pathwaymapper\n owner: vijay\n revisions: c594c4333b76\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_apply_weights\n owner: vijay\n revisions: 3543d3e66ecb\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_classifier\n owner: vijay\n revisions: 20b049f5b3f5\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_compare_within_models\n owner: vijay\n revisions: 84ac2a86bde1\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_external_sample_status_prediction\n owner: vijay\n revisions: 8f426aeccfe3\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_map_mutation_class\n owner: vijay\n revisions: 54c85c40dce1\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_pathway_count_heatmaps\n owner: vijay\n revisions: dc1d71493ebf\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_targene_cell_line_predictions\n owner: vijay\n revisions: 872aab514d37\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_targene_pharmacology\n owner: vijay\n revisions: aa5e0e353148\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_targene_summary_figures\n owner: vijay\n revisions: d533f991e22e\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_visualize_decisions\n owner: vijay\n revisions: f6dd27775d28\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pancancer_within_disease_analysis\n owner: vijay\n revisions: 99d944bfe9b3\n tool_panel_section_label: Statistics and machine learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/tutorial.json", + "contributors": [ + { + "id": "nvk747", + "joined": "2018-07", + "name": "Vijay", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nvk747/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nvk747.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + } + ], + "dir": "topics/statistics/tutorials/aberrant_pi3k_pathway_analysis", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/aberrant_pi3k_pathway_analysis", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Machine learning based Aberrant pathway activity analysis can distinguish normal and tumor samples. Also can identify transcriptomic signature of tumors associated with oncogene or tumor suppressor gene mutations.", + "Correlations from classifier predictions and pharmacological responses determine drug sensitivity among cancer cell lines and can be useful in improving personalized medicine approaches.", + "Classifier models generated from the suite-papaa can identify potential biomarkers with in the transcriptomic signature of tumors." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn to predict aberrant pathway activity using RNA-Seq data, mutational status and copy number variation data from TCGA.", + "Apply logistic regression based machine learning algorithms on TCGA data." + ], + "pageviews": 1063, + "pub_date": "2021-05-06", + "questions": [ + "How to predict aberrant pathway activity in The Cancer Genome Atlas (TCGA) using Machine learning approaches?" + ], + "short_id": "T00260", + "short_tools": [ + "pancancer_alternative_genes_pathwaymapper", + "pancancer_visualize_decisions", + "pancancer_pathway_count_heatmaps", + "pancancer_external_sample_status_prediction", + "pancancer_targene_cell_line_predictions", + "pancancer_classifier", + "pancancer_map_mutation_class", + "pancancer_compare_within_models", + "pancancer_targene_summary_figures", + "pancancer_apply_weights", + "pancancer_targene_pharmacology", + "pancancer_within_disease_analysis" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "Machine learning", + "Pan-cancer", + "cancer biomarkers", + "oncogenes and tumor suppressor genes" + ], + "time_estimation": "1H30M", + "title": "PAPAA PI3K_OG: PanCancer Aberrant Pathway Activity Analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_alternative_genes_pathwaymapper/pancancer_alternative_genes_pathwaymapper/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_apply_weights/pancancer_apply_weights/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_classifier/pancancer_classifier/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_compare_within_models/pancancer_compare_within_models/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_external_sample_status_prediction/pancancer_external_sample_status_prediction/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_map_mutation_class/pancancer_map_mutation_class/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_pathway_count_heatmaps/pancancer_pathway_count_heatmaps/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_targene_cell_line_predictions/pancancer_targene_cell_line_predictions/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_targene_pharmacology/pancancer_targene_pharmacology/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_targene_summary_figures/pancancer_targene_summary_figures/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_visualize_decisions/pancancer_visualize_decisions/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_within_disease_analysis/pancancer_within_disease_analysis/0.1.9" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "aberrant_pi3k_pathway_analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 202, + "visitors": 657, + "workflows": [ + { + "creators": [], + "description": "PanCancer Aberrant Pathway Activity Analysis: PI3K example", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\npancan_rnaseq_freeze.tsv\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\npancan_mutation_freeze.tsv\"]\n 10[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSE69822_pi3k_sign.txt\"]\n 11[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGSE69822_pi3k_trans.csv\"]\n 12[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGDSC_CCLE_common_mut_cnv_binary.tsv.gz\"]\n 13[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nccle_rnaseq_genes_rpkm_20180929_mod.tsv.gz\"]\n 14[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGDSC_EXP_CCLE_converted_name.tsv.gz\"]\n 15[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCCLE_MUT_CNA_AMP_DEL_binary_Revealer.tsv\"]\n 16[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncompounds_of_interest.txt\"]\n 17[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncosmic_cancer_classification.tsv\"]\n 18[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\npath_rtk_ras_pi3k_genes.txt\"]\n 19[label=\"PAPAA: PanCancer classifier\"]\n 17 -> 19 [label=\"output\"]\n 3 -> 19 [label=\"output\"]\n 2 -> 19 [label=\"output\"]\n 1 -> 19 [label=\"output\"]\n 4 -> 19 [label=\"output\"]\n 5 -> 19 [label=\"output\"]\n 0 -> 19 [label=\"output\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncopy_number_loss_status.tsv\"]\n 20[label=\"PAPAA: PanCancer within disease analysis\"]\n 17 -> 20 [label=\"output\"]\n 3 -> 20 [label=\"output\"]\n 2 -> 20 [label=\"output\"]\n 1 -> 20 [label=\"output\"]\n 4 -> 20 [label=\"output\"]\n 5 -> 20 [label=\"output\"]\n 0 -> 20 [label=\"output\"]\n 21[label=\"PAPAA: PanCancer apply weights\"]\n 17 -> 21 [label=\"output\"]\n 3 -> 21 [label=\"output\"]\n 2 -> 21 [label=\"output\"]\n 1 -> 21 [label=\"output\"]\n 4 -> 21 [label=\"output\"]\n 5 -> 21 [label=\"output\"]\n 19 -> 21 [label=\"classifier_coefficients\"]\n 19 -> 21 [label=\"classifier_summary\"]\n 0 -> 21 [label=\"output\"]\n 22[label=\"PAPAA: PanCancer external sample status prediction\"]\n 19 -> 22 [label=\"classifier_summary\"]\n 11 -> 22 [label=\"output\"]\n 19 -> 22 [label=\"classifier_coefficients\"]\n 10 -> 22 [label=\"output\"]\n 23[label=\"PAPAA: PanCancer compare within models\"]\n 19 -> 23 [label=\"classifier_coefficients\"]\n 19 -> 23 [label=\"classifier_summary\"]\n 20 -> 23 [label=\"classifier_coefficients\"]\n 20 -> 23 [label=\"classifier_summary\"]\n 24[label=\"PAPAA: PanCancer visualize decisions\"]\n 21 -> 24 [label=\"classifier_decisions\"]\n 25[label=\"PAPAA: PanCancer alternative genes pathwaymapper\"]\n 21 -> 25 [label=\"classifier_decisions\"]\n 3 -> 25 [label=\"output\"]\n 2 -> 25 [label=\"output\"]\n 1 -> 25 [label=\"output\"]\n 5 -> 25 [label=\"output\"]\n 18 -> 25 [label=\"output\"]\n 26[label=\"PAPAA: PanCancer map mutation class\"]\n 21 -> 26 [label=\"classifier_decisions\"]\n 3 -> 26 [label=\"output\"]\n 2 -> 26 [label=\"output\"]\n 6 -> 26 [label=\"output\"]\n 18 -> 26 [label=\"output\"]\n 27[label=\"PAPAA: PanCancer pathway count heatmaps\"]\n 25 -> 27 [label=\"all_gene_metric_ranks\"]\n 21 -> 27 [label=\"classifier_decisions\"]\n 17 -> 27 [label=\"output\"]\n 3 -> 27 [label=\"output\"]\n 2 -> 27 [label=\"output\"]\n 1 -> 27 [label=\"output\"]\n 4 -> 27 [label=\"output\"]\n 5 -> 27 [label=\"output\"]\n 18 -> 27 [label=\"output\"]\n 25 -> 27 [label=\"pathway_metrics_pathwaymapper\"]\n 0 -> 27 [label=\"output\"]\n 28[label=\"PAPAA: PanCancer targene summary figures\"]\n 25 -> 28 [label=\"all_gene_metric_ranks\"]\n 19 -> 28 [label=\"classifier_summary\"]\n 26 -> 28 [label=\"mutation_classification_scores\"]\n 19 -> 28 [label=\"classifier_coefficients\"]\n 27 -> 28 [label=\"path_events_per_sample\"]\n 19 -> 28 [label=\"summary_counts\"]\n 29[label=\"PAPAA: PanCancer targene cell line predictions\"]\n 28 -> 29 [label=\"amino_acid_mutation_scores\"]\n 7 -> 29 [label=\"output\"]\n 15 -> 29 [label=\"output\"]\n 13 -> 29 [label=\"output\"]\n 19 -> 29 [label=\"classifier_summary\"]\n 8 -> 29 [label=\"output\"]\n 9 -> 29 [label=\"output\"]\n 12 -> 29 [label=\"output\"]\n 14 -> 29 [label=\"output\"]\n 28 -> 29 [label=\"nucleotide_mutation_scores\"]\n 19 -> 29 [label=\"classifier_coefficients\"]\n 18 -> 29 [label=\"output\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncopy_number_gain_status.tsv\"]\n 30[label=\"PAPAA: PanCancer targene pharmacology\"]\n 16 -> 30 [label=\"output\"]\n 29 -> 30 [label=\"gdsc1_ccle_targene_pharmacology_predictions\"]\n 29 -> 30 [label=\"gdsc1_targene_pharmacology_predictions\"]\n 29 -> 30 [label=\"gdsc2_ccle_targene_pharmacology_predictions\"]\n 29 -> 30 [label=\"gdsc2_targene_pharmacology_predictions\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmutation_burden_freeze.tsv\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsample_freeze.tsv\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmc3.v0.2.8.PUBLIC.maf\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCCLE_DepMap_18Q1_maf_20180207.txt\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ngdsc1_ccle_pharm_fitted_dose_data.txt\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ngdsc2_ccle_pharm_fitted_dose_data.txt\"]\n}", + "history": [ + { + "hash": "7ea290c2bf6caf772265aa2a77f2b3c2ed976239", + "message": "aberrant_pi3k_activity_tutorial update-18", + "num": 5, + "short_hash": "7ea290c2b", + "unix": "1608318040" + }, + { + "hash": "34bebb50ba04a773e3548ca5648714a73baffb35", + "message": "reformat workflow and add tags and annotation", + "num": 4, + "short_hash": "34bebb50b", + "unix": "1608304565" + }, + { + "hash": "b0a2a036f47e662fcc522d0275deaf6579abf15b", + "message": "aberrant_pi3k_activity_tutorial update-17", + "num": 3, + "short_hash": "b0a2a036f", + "unix": "1608220697" + }, + { + "hash": "d49e2046f964c70efc6eddffdcdde0b424444d6c", + "message": "pi3k_aberrant_activity_tutorial update-12", + "num": 2, + "short_hash": "d49e2046f", + "unix": "1608048752" + }, + { + "hash": "5eeb04b8888e1cd2216696b70312102ecab548c5", + "message": "pi3k_aberrant activity tutorial edit-8", + "num": 1, + "short_hash": "5eeb04b88", + "unix": "1607726416" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "pancan_rnaseq_freeze.tsv" + } + ], + "label": "pancan_rnaseq_freeze.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 100 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a5f07814-0162-40f0-bc9f-33c4aae981bd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "pancan_mutation_freeze.tsv" + } + ], + "label": "pancan_mutation_freeze.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 154.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "085443c7-55ab-486a-9231-cbd7bf0f9f13", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 10, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSE69822_pi3k_sign.txt" + } + ], + "label": "GSE69822_pi3k_sign.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 665 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "dc7daff3-f271-486a-873c-562122ae633f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 11, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GSE69822_pi3k_trans.csv" + } + ], + "label": "GSE69822_pi3k_trans.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 719.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "eb46a60a-e122-4d04-817a-a77518b35495", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 12, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GDSC_CCLE_common_mut_cnv_binary.tsv.gz" + } + ], + "label": "GDSC_CCLE_common_mut_cnv_binary.tsv.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 774 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "255c456d-686d-4509-b420-1ba0831a9300", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 13, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ccle_rnaseq_genes_rpkm_20180929_mod.tsv.gz" + } + ], + "label": "ccle_rnaseq_genes_rpkm_20180929_mod.tsv.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 838.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b4fae5c5-59ef-4c15-b796-8934c3988ace", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 14, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GDSC_EXP_CCLE_converted_name.tsv.gz" + } + ], + "label": "GDSC_EXP_CCLE_converted_name.tsv.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 903 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a20c0bf6-07ee-47f3-9170-4fa80c792e70", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 15, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "CCLE_MUT_CNA_AMP_DEL_binary_Revealer.tsv" + } + ], + "label": "CCLE_MUT_CNA_AMP_DEL_binary_Revealer.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 967.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "fb05135f-4178-44e4-bac6-05f00976098b", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 16, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "compounds_of_interest.txt" + } + ], + "label": "compounds_of_interest.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 1032 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9a2ce838-ed30-40c9-b7c8-1863ccbc020e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 17, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "cosmic_cancer_classification.tsv" + } + ], + "label": "cosmic_cancer_classification.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 1086.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4f425257-9b54-48c7-828c-72812aa6e8fa", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 18, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "path_rtk_ras_pi3k_genes.txt" + } + ], + "label": "path_rtk_ras_pi3k_genes.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 1151 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "87edb72c-ff8c-4b05-902d-e31a6bdcefc8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "copy_number_loss_status.tsv" + } + ], + "label": "copy_number_loss_status.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 209 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "e1e7ce2e-0dee-4cc7-bed0-428b1ef6045c", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "copy_number_gain_status.tsv" + } + ], + "label": "copy_number_gain_status.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 263.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "237f24d7-f089-47db-9bdb-89b804d346cb", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutation_burden_freeze.tsv" + } + ], + "label": "mutation_burden_freeze.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 318 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "297e1125-93e2-4dd6-ac9a-4728fef8862a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "sample_freeze.tsv" + } + ], + "label": "sample_freeze.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 372.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0cbc8b0f-1933-46a9-8645-2ddf805198cd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mc3.v0.2.8.PUBLIC.maf" + } + ], + "label": "mc3.v0.2.8.PUBLIC.maf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 417 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9c34e447-97a8-4f2d-b485-c4ca627f4021", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "CCLE_DepMap_18Q1_maf_20180207.txt" + } + ], + "label": "CCLE_DepMap_18Q1_maf_20180207.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 471.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "e788af12-1a46-4b65-b714-6e4cea14b047", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "gdsc1_ccle_pharm_fitted_dose_data.txt" + } + ], + "label": "gdsc1_ccle_pharm_fitted_dose_data.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 536 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "f8953224-c89d-4980-8620-2f85e964bdea", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "gdsc2_ccle_pharm_fitted_dose_data.txt" + } + ], + "label": "gdsc2_ccle_pharm_fitted_dose_data.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 155.9921875, + "top": 600.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "562ae27c-b15d-4732-89ab-82d5b6135f88", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\npancan_rnaseq_freeze.tsv\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\npancan_mutation_freeze.tsv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"\u2139\ufe0f Input Dataset\\nGSE69822_pi3k_sign.txt\"];\n style 10 stroke:#2c3143,stroke-width:4px;\n 11[\"\u2139\ufe0f Input Dataset\\nGSE69822_pi3k_trans.csv\"];\n style 11 stroke:#2c3143,stroke-width:4px;\n 12[\"\u2139\ufe0f Input Dataset\\nGDSC_CCLE_common_mut_cnv_binary.tsv.gz\"];\n style 12 stroke:#2c3143,stroke-width:4px;\n 13[\"\u2139\ufe0f Input Dataset\\nccle_rnaseq_genes_rpkm_20180929_mod.tsv.gz\"];\n style 13 stroke:#2c3143,stroke-width:4px;\n 14[\"\u2139\ufe0f Input Dataset\\nGDSC_EXP_CCLE_converted_name.tsv.gz\"];\n style 14 stroke:#2c3143,stroke-width:4px;\n 15[\"\u2139\ufe0f Input Dataset\\nCCLE_MUT_CNA_AMP_DEL_binary_Revealer.tsv\"];\n style 15 stroke:#2c3143,stroke-width:4px;\n 16[\"\u2139\ufe0f Input Dataset\\ncompounds_of_interest.txt\"];\n style 16 stroke:#2c3143,stroke-width:4px;\n 17[\"\u2139\ufe0f Input Dataset\\ncosmic_cancer_classification.tsv\"];\n style 17 stroke:#2c3143,stroke-width:4px;\n 18[\"\u2139\ufe0f Input Dataset\\npath_rtk_ras_pi3k_genes.txt\"];\n style 18 stroke:#2c3143,stroke-width:4px;\n 19[\"PAPAA: PanCancer classifier\"];\n 17 -->|output| 19;\n 3 -->|output| 19;\n 2 -->|output| 19;\n 1 -->|output| 19;\n 4 -->|output| 19;\n 5 -->|output| 19;\n 0 -->|output| 19;\n 2[\"\u2139\ufe0f Input Dataset\\ncopy_number_loss_status.tsv\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 20[\"PAPAA: PanCancer within disease analysis\"];\n 17 -->|output| 20;\n 3 -->|output| 20;\n 2 -->|output| 20;\n 1 -->|output| 20;\n 4 -->|output| 20;\n 5 -->|output| 20;\n 0 -->|output| 20;\n 21[\"PAPAA: PanCancer apply weights\"];\n 17 -->|output| 21;\n 3 -->|output| 21;\n 2 -->|output| 21;\n 1 -->|output| 21;\n 4 -->|output| 21;\n 5 -->|output| 21;\n 19 -->|classifier_coefficients| 21;\n 19 -->|classifier_summary| 21;\n 0 -->|output| 21;\n 22[\"PAPAA: PanCancer external sample status prediction\"];\n 19 -->|classifier_summary| 22;\n 11 -->|output| 22;\n 19 -->|classifier_coefficients| 22;\n 10 -->|output| 22;\n 23[\"PAPAA: PanCancer compare within models\"];\n 19 -->|classifier_coefficients| 23;\n 19 -->|classifier_summary| 23;\n 20 -->|classifier_coefficients| 23;\n 20 -->|classifier_summary| 23;\n 24[\"PAPAA: PanCancer visualize decisions\"];\n 21 -->|classifier_decisions| 24;\n 25[\"PAPAA: PanCancer alternative genes pathwaymapper\"];\n 21 -->|classifier_decisions| 25;\n 3 -->|output| 25;\n 2 -->|output| 25;\n 1 -->|output| 25;\n 5 -->|output| 25;\n 18 -->|output| 25;\n 26[\"PAPAA: PanCancer map mutation class\"];\n 21 -->|classifier_decisions| 26;\n 3 -->|output| 26;\n 2 -->|output| 26;\n 6 -->|output| 26;\n 18 -->|output| 26;\n 27[\"PAPAA: PanCancer pathway count heatmaps\"];\n 25 -->|all_gene_metric_ranks| 27;\n 21 -->|classifier_decisions| 27;\n 17 -->|output| 27;\n 3 -->|output| 27;\n 2 -->|output| 27;\n 1 -->|output| 27;\n 4 -->|output| 27;\n 5 -->|output| 27;\n 18 -->|output| 27;\n 25 -->|pathway_metrics_pathwaymapper| 27;\n 0 -->|output| 27;\n 28[\"PAPAA: PanCancer targene summary figures\"];\n 25 -->|all_gene_metric_ranks| 28;\n 19 -->|classifier_summary| 28;\n 26 -->|mutation_classification_scores| 28;\n 19 -->|classifier_coefficients| 28;\n 27 -->|path_events_per_sample| 28;\n 19 -->|summary_counts| 28;\n 29[\"PAPAA: PanCancer targene cell line predictions\"];\n 28 -->|amino_acid_mutation_scores| 29;\n 7 -->|output| 29;\n 15 -->|output| 29;\n 13 -->|output| 29;\n 19 -->|classifier_summary| 29;\n 8 -->|output| 29;\n 9 -->|output| 29;\n 12 -->|output| 29;\n 14 -->|output| 29;\n 28 -->|nucleotide_mutation_scores| 29;\n 19 -->|classifier_coefficients| 29;\n 18 -->|output| 29;\n 3[\"\u2139\ufe0f Input Dataset\\ncopy_number_gain_status.tsv\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 30[\"PAPAA: PanCancer targene pharmacology\"];\n 16 -->|output| 30;\n 29 -->|gdsc1_ccle_targene_pharmacology_predictions| 30;\n 29 -->|gdsc1_targene_pharmacology_predictions| 30;\n 29 -->|gdsc2_ccle_targene_pharmacology_predictions| 30;\n 29 -->|gdsc2_targene_pharmacology_predictions| 30;\n 4[\"\u2139\ufe0f Input Dataset\\nmutation_burden_freeze.tsv\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nsample_freeze.tsv\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nmc3.v0.2.8.PUBLIC.maf\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nCCLE_DepMap_18Q1_maf_20180207.txt\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\ngdsc1_ccle_pharm_fitted_dose_data.txt\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Dataset\\ngdsc2_ccle_pharm_fitted_dose_data.txt\"];\n style 9 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "papaa@0.1.9_PI3K_OG_model_tutorial", + "outputs": [], + "parent_id": "statistics/aberrant_pi3k_pathway_analysis", + "path": "topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/workflows/main_workflow.ga", + "tags": [ + "statistics", + "classification", + "ml", + "cancer" + ], + "test_results": null, + "tests": false, + "title": "papaa@0.1.9_PI3K_OG_model_tutorial", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-aberrant_pi3k_pathway_analysis/versions/main-workflow", + "tutorial_id": "aberrant_pi3k_pathway_analysis", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/aberrant_pi3k_pathway_analysis/workflows/main_workflow.html", + "version": 1, + "wfid": "statistics-aberrant_pi3k_pathway_analysis", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_alternative_genes_pathwaymapper/pancancer_alternative_genes_pathwaymapper/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_apply_weights/pancancer_apply_weights/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_classifier/pancancer_classifier/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_compare_within_models/pancancer_compare_within_models/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_external_sample_status_prediction/pancancer_external_sample_status_prediction/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_map_mutation_class/pancancer_map_mutation_class/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_pathway_count_heatmaps/pancancer_pathway_count_heatmaps/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_targene_cell_line_predictions/pancancer_targene_cell_line_predictions/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_targene_pharmacology/pancancer_targene_pharmacology/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_targene_summary_figures/pancancer_targene_summary_figures/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_visualize_decisions/pancancer_visualize_decisions/0.1.9", + "toolshed.g2.bx.psu.edu/repos/vijay/pancancer_within_disease_analysis/pancancer_within_disease_analysis/0.1.9" + ], + "workflowhub_id": "1284" + } + ], + "zenodo_link": "https://zenodo.org/record/4306639" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "sklearn_svm_classifier", + "owner": "bgruening", + "revisions": "f9639b488779", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: sklearn_svm_classifier\n owner: bgruening\n revisions: f9639b488779\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/machinelearning/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + } + ], + "dir": "topics/statistics/tutorials/machinelearning", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/machinelearning", + "inexact_supported_servers": [ + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Machine learning algorithms learn features from data.", + "It is used for multiple tasks such as classification, regression, clustering and so on.", + "Multiple learning tasks can be performed using Galaxy's machine learning tools.", + "For the classification and regression tasks, data is divided into training and test sets.", + "Each sample/record in the training data has a category/class/label.", + "A machine learning algorithm learns features from the training data and do predictions on the test data." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Provide the basics of machine learning and its variants.", + "Learn how to do classification using the training and test data.", + "Learn how to use Galaxy's machine learning tools." + ], + "pageviews": 2717, + "pub_date": "2018-11-05", + "questions": [ + "What is machine learning?", + "Why is it useful?", + "What are its different approaches?" + ], + "requirements": null, + "short_id": "T00270", + "short_tools": [ + "sklearn_svm_classifier" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Basics of machine learning", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "machinelearning", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/machinelearning/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/machinelearning/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/machinelearning/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 168, + "visitors": 1951, + "workflows": [ + { + "creators": [], + "description": "Basics of machine learning", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbreast-w_train\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nbreast-w_test\"]\n 2[label=\"Support vector machines SVMs\"]\n 0 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Support vector machines SVMs\"]\n 1 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"outfile_fit\"]\n k03e30bebfc0141848649057c13bb626a[color=lightseagreen,label=\"Output\\noutfile_predict\"]\n 3 -> k03e30bebfc0141848649057c13bb626a\n}", + "history": [ + { + "hash": "6f18e04f0d03d9f42bc3dc88d708eadacd4acd96", + "message": "Add workflow_outputs to machine_learning.ga for testing, add a test", + "num": 5, + "short_hash": "6f18e04f0", + "unix": "1590540700" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "9f881ab875f38f8d4299a1fb0bc2f22b422d1eda", + "message": "checking ML tutorials, updating workflows", + "num": 2, + "short_hash": "9f881ab87", + "unix": "1578588754" + }, + { + "hash": "b6985b9499618c6ad25d58d67358618504d608a3", + "message": "workflow for machine_learning", + "num": 1, + "short_hash": "b6985b949", + "unix": "1550745160" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "breast-w_train" + } + ], + "label": "breast-w_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"breast-w_train\"}", + "tool_version": null, + "type": "data_input", + "uuid": "fa0bbf50-4881-407c-b9be-78cc96c2f00d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "breast-w_test" + } + ], + "label": "breast-w_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 289.76666259765625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"breast-w_test\"}", + "tool_version": null, + "type": "data_input", + "uuid": "b3b595f7-7a7a-416e-934d-84c6af042169", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nbreast-w_train\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nbreast-w_test\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Support vector machines SVMs\"];\n 0 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Support vector machines SVMs\"];\n 1 -->|output| 3;\n 2 -->|outfile_fit| 3;\n 03e30beb-fc01-4184-8649-057c13bb626a[\"Output\\noutfile_predict\"];\n 3 --> 03e30beb-fc01-4184-8649-057c13bb626a;\n style 03e30beb-fc01-4184-8649-057c13bb626a stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Machine Learning", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1", + "errors": null, + "id": 3, + "input_connections": { + "selected_tasks|infile_data": { + "id": 1, + "output_name": "output" + }, + "selected_tasks|infile_model": { + "id": 2, + "output_name": "outfile_fit" + } + }, + "inputs": [], + "label": null, + "name": "Support vector machines (SVMs)", + "outputs": [ + { + "name": "outfile_predict", + "type": "tabular" + } + ], + "position": { + "left": 788.5333251953125, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1", + "tool_shed_repository": { + "changeset_revision": "2df8f5c30edc", + "name": "sklearn_svm_classifier", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"selected_tasks\": \"{\\\"__current_case__\\\": 0, \\\"header\\\": \\\"true\\\", \\\"infile_data\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"infile_model\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"prediction_options\\\": {\\\"__current_case__\\\": 0, \\\"prediction_option\\\": \\\"predict\\\"}, \\\"selected_task\\\": \\\"load\\\"}\", \"chromInfo\": \"\\\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.8.1", + "type": "tool", + "uuid": "98bd60bb-4e32-4c11-9955-eade434a3817", + "workflow_outputs": [ + { + "label": "outfile_predict", + "output_name": "outfile_predict", + "uuid": "03e30beb-fc01-4184-8649-057c13bb626a" + } + ] + } + ], + "parent_id": "statistics/machinelearning", + "path": "topics/statistics/tutorials/machinelearning/workflows/machine_learning.ga", + "tags": [ + "ml", + "statistics" + ], + "test_results": { + "eu": { + "summary": { + "num_errors": 0, + "num_failures": 0, + "num_skips": 0, + "num_tests": 1 + }, + "tests": [ + { + "data": { + "end_datetime": "2023-05-23T13:04:36.233588", + "inputs": { + "breast-w_test": { + "class": "File", + "filetype": "tabular", + "location": "https://zenodo.org/api/files/0d468136-5025-4c0f-bf8b-a8277a513a93/breast-w_test.tsv" + }, + "breast-w_train": { + "class": "File", + "filetype": "tabular", + "location": "https://zenodo.org/api/files/0d468136-5025-4c0f-bf8b-a8277a513a93/breast-w_train.tsv" + } + }, + "invocation_details": { + "details": { + "error_message": "", + "history_id": "2507553dd7587c83", + "history_state": "ok", + "invocation_id": "f5ae862b1590700e", + "invocation_state": "scheduled", + "workflow_id": "1017f47ddfcbe87f" + }, + "steps": { + "0. breast-w_train": { + "action": null, + "id": "e6252d7ebd7b816c", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 0, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d86765c9cd0650a6a12ca3", + "src": "hda", + "uuid": "b175db07-7724-4a00-83b4-5a6cae8c6763" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-23T10:59:49.573476", + "workflow_step_id": "646ce6c1fd8f1f07", + "workflow_step_label": "breast-w_train", + "workflow_step_uuid": "fa0bbf50-4881-407c-b9be-78cc96c2f00d" + }, + "1. breast-w_test": { + "action": null, + "id": "9974f0360058d84f", + "job_id": null, + "jobs": [], + "model_class": "WorkflowInvocationStep", + "order_index": 1, + "output_collections": {}, + "outputs": { + "output": { + "id": "4838ba20a6d867654de1bc22fefb9f52", + "src": "hda", + "uuid": "c438049f-86b6-415a-a9a0-554efa397b28" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-23T10:59:49.573483", + "workflow_step_id": "5b42eb6dee4ed8f3", + "workflow_step_label": "breast-w_test", + "workflow_step_uuid": "b3b595f7-7a7a-416e-934d-84c6af042169" + }, + "2. Unnamed step": { + "action": null, + "id": "1c214839f0e68f30", + "job_id": "11ac94870d0bb33a9209f9a6c46d5330", + "jobs": [ + { + "command_line": "python '/data/jwd02f/main/060/156/60156804/configs/tmpyxkw996c' '/data/jwd02f/main/060/156/60156804/configs/tmp5q24hxye'", + "command_version": "1.0.8.1", + "create_time": "2023-05-23T10:59:49.569976", + "dependencies": [], + "exit_code": 0, + "external_id": "43631361", + "galaxy_version": "23.0", + "history_id": "2507553dd7587c83", + "id": "11ac94870d0bb33a9209f9a6c46d5330", + "inputs": { + "selected_tasks|selected_algorithms|infile1": { + "id": "4838ba20a6d86765c9cd0650a6a12ca3", + "src": "hda", + "uuid": "b175db07-7724-4a00-83b4-5a6cae8c6763" + }, + "selected_tasks|selected_algorithms|infile2": { + "id": "4838ba20a6d86765c9cd0650a6a12ca3", + "src": "hda", + "uuid": "b175db07-7724-4a00-83b4-5a6cae8c6763" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c125m425-1660.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c125m425-1660.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684839593.0000000", + "title": "Job Start Time", + "value": "2023-05-23 12:59:53" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684839787.0000000", + "title": "Job End Time", + "value": "2023-05-23 13:03:07" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "194.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "3 minutes" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "22317680902.0000000", + "title": "CPU Time", + "value": "22.317680902 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "10737418240.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "10.0 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "427237376.0000000", + "title": "Max memory usage (MEM)", + "value": "407.4 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "427237376.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "407.4 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "outfile_fit": { + "id": "4838ba20a6d86765b565f48d5ac913b1", + "src": "hda", + "uuid": "1a17ebe9-c0e0-4ebd-bae0-5159331683bb" + } + }, + "params": { + "__input_ext": "\"tabular\"", + "__workflow_invocation_uuid__": "\"ebe5f326f95811ed916d001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"", + "selected_tasks": "{\"__current_case__\": 1, \"selected_algorithms\": {\"__current_case__\": 2, \"input_options\": {\"__current_case__\": 0, \"column_selector_options_1\": {\"__current_case__\": 3, \"col1\": \"target\", \"selected_column_selector_option\": \"all_but_by_header_name\"}, \"column_selector_options_2\": {\"__current_case__\": 2, \"col2\": \"target\", \"selected_column_selector_option2\": \"by_header_name\"}, \"header1\": true, \"header2\": true, \"infile1\": {\"values\": [{\"id\": 137642769, \"src\": \"hda\"}]}, \"infile2\": {\"values\": [{\"id\": 137642769, \"src\": \"hda\"}]}, \"selected_input\": \"tabular\"}, \"options\": {\"C\": \"1.0\", \"dual\": true, \"fit_intercept\": true, \"intercept_scaling\": \"1.0\", \"loss\": \"squared_hinge\", \"max_iter\": \"1000\", \"multi_class\": \"ovr\", \"penalty\": \"l2\", \"random_state\": null, \"tol\": \"0.001\"}, \"selected_algorithm\": \"LinearSVC\"}, \"selected_task\": \"train\"}" + }, + "state": "ok", + "stderr": "OMP: Info #212: KMP_AFFINITY: decoding x2APIC ids.\nOMP: Info #210: KMP_AFFINITY: Affinity capable, using global cpuid leaf 11 info\nOMP: Info #154: KMP_AFFINITY: Initial OS proc set respected: 0-124\nOMP: Info #156: KMP_AFFINITY: 125 available OS procs\nOMP: Info #157: KMP_AFFINITY: Uniform topology\nOMP: Info #179: KMP_AFFINITY: 125 packages x 1 cores/pkg x 1 threads/core (125 total cores)\nOMP: Info #214: KMP_AFFINITY: OS proc to physical thread map:\nOMP: Info #171: KMP_AFFINITY: OS proc 0 maps to package 0 \nOMP: Info #171: KMP_AFFINITY: OS proc 1 maps to package 1 \nOMP: Info #171: KMP_AFFINITY: OS proc 2 maps to package 2 \nOMP: Info #171: KMP_AFFINITY: OS proc 3 maps to package 3 \nOMP: Info #171: KMP_AFFINITY: OS proc 4 maps to package 4 \nOMP: Info #171: KMP_AFFINITY: OS proc 5 maps to package 5 \nOMP: Info #171: KMP_AFFINITY: OS proc 6 maps to package 6 \nOMP: Info #171: KMP_AFFINITY: OS proc 7 maps to package 7 \nOMP: Info #171: KMP_AFFINITY: OS proc 8 maps to package 8 \nOMP: Info #171: KMP_AFFINITY: OS proc 9 maps to package 9 \nOMP: Info #171: KMP_AFFINITY: OS proc 10 maps to package 10 \nOMP: Info #171: KMP_AFFINITY: OS proc 11 maps to package 11 \nOMP: Info #171: KMP_AFFINITY: OS proc 12 maps to package 12 \nOMP: Info #171: KMP_AFFINITY: OS proc 13 maps to package 13 \nOMP: Info #171: KMP_AFFINITY: OS proc 14 maps to package 14 \nOMP: Info #171: KMP_AFFINITY: OS proc 15 maps to package 15 \nOMP: Info #171: KMP_AFFINITY: OS proc 16 maps to package 16 \nOMP: Info #171: KMP_AFFINITY: OS proc 17 maps to package 17 \nOMP: Info #171: KMP_AFFINITY: OS proc 18 maps to package 18 \nOMP: Info #171: KMP_AFFINITY: OS proc 19 maps to package 19 \nOMP: Info #171: KMP_AFFINITY: OS proc 20 maps to package 20 \nOMP: Info #171: KMP_AFFINITY: OS proc 21 maps to package 21 \nOMP: Info #171: KMP_AFFINITY: OS proc 22 maps to package 22 \nOMP: Info #171: KMP_AFFINITY: OS proc 23 maps to package 23 \nOMP: Info #171: KMP_AFFINITY: OS proc 24 maps to package 24 \nOMP: Info #171: KMP_AFFINITY: OS proc 25 maps to package 25 \nOMP: Info #171: KMP_AFFINITY: OS proc 26 maps to package 26 \nOMP: Info #171: KMP_AFFINITY: OS proc 27 maps to package 27 \nOMP: Info #171: KMP_AFFINITY: OS proc 28 maps to package 28 \nOMP: Info #171: KMP_AFFINITY: OS proc 29 maps to package 29 \nOMP: Info #171: KMP_AFFINITY: OS proc 30 maps to package 30 \nOMP: Info #171: KMP_AFFINITY: OS proc 31 maps to package 31 \nOMP: Info #171: KMP_AFFINITY: OS proc 32 maps to package 32 \nOMP: Info #171: KMP_AFFINITY: OS proc 33 maps to package 33 \nOMP: Info #171: KMP_AFFINITY: OS proc 34 maps to package 34 \nOMP: Info #171: KMP_AFFINITY: OS proc 35 maps to package 35 \nOMP: Info #171: KMP_AFFINITY: OS proc 36 maps to package 36 \nOMP: Info #171: KMP_AFFINITY: OS proc 37 maps to package 37 \nOMP: Info #171: KMP_AFFINITY: OS proc 38 maps to package 38 \nOMP: Info #171: KMP_AFFINITY: OS proc 39 maps to package 39 \nOMP: Info #171: KMP_AFFINITY: OS proc 40 maps to package 40 \nOMP: Info #171: KMP_AFFINITY: OS proc 41 maps to package 41 \nOMP: Info #171: KMP_AFFINITY: OS proc 42 maps to package 42 \nOMP: Info #171: KMP_AFFINITY: OS proc 43 maps to package 43 \nOMP: Info #171: KMP_AFFINITY: OS proc 44 maps to package 44 \nOMP: Info #171: KMP_AFFINITY: OS proc 45 maps to package 45 \nOMP: Info #171: KMP_AFFINITY: OS proc 46 maps to package 46 \nOMP: Info #171: KMP_AFFINITY: OS proc 47 maps to package 47 \nOMP: Info #171: KMP_AFFINITY: OS proc 48 maps to package 48 \nOMP: Info #171: KMP_AFFINITY: OS proc 49 maps to package 49 \nOMP: Info #171: KMP_AFFINITY: OS proc 50 maps to package 50 \nOMP: Info #171: KMP_AFFINITY: OS proc 51 maps to package 51 \nOMP: Info #171: KMP_AFFINITY: OS proc 52 maps to package 52 \nOMP: Info #171: KMP_AFFINITY: OS proc 53 maps to package 53 \nOMP: Info #171: KMP_AFFINITY: OS proc 54 maps to package 54 \nOMP: Info #171: KMP_AFFINITY: OS proc 55 maps to package 55 \nOMP: Info #171: KMP_AFFINITY: OS proc 56 maps to package 56 \nOMP: Info #171: KMP_AFFINITY: OS proc 57 maps to package 57 \nOMP: Info #171: KMP_AFFINITY: OS proc 58 maps to package 58 \nOMP: Info #171: KMP_AFFINITY: OS proc 59 maps to package 59 \nOMP: Info #171: KMP_AFFINITY: OS proc 60 maps to package 60 \nOMP: Info #171: KMP_AFFINITY: OS proc 61 maps to package 61 \nOMP: Info #171: KMP_AFFINITY: OS proc 62 maps to package 62 \nOMP: Info #171: KMP_AFFINITY: OS proc 63 maps to package 63 \nOMP: Info #171: KMP_AFFINITY: OS proc 64 maps to package 64 \nOMP: Info #171: KMP_AFFINITY: OS proc 65 maps to package 65 \nOMP: Info #171: KMP_AFFINITY: OS proc 66 maps to package 66 \nOMP: Info #171: KMP_AFFINITY: OS proc 67 maps to package 67 \nOMP: Info #171: KMP_AFFINITY: OS proc 68 maps to package 68 \nOMP: Info #171: KMP_AFFINITY: OS proc 69 maps to package 69 \nOMP: Info #171: KMP_AFFINITY: OS proc 70 maps to package 70 \nOMP: Info #171: KMP_AFFINITY: OS proc 71 maps to package 71 \nOMP: Info #171: KMP_AFFINITY: OS proc 72 maps to package 72 \nOMP: Info #171: KMP_AFFINITY: OS proc 73 maps to package 73 \nOMP: Info #171: KMP_AFFINITY: OS proc 74 maps to package 74 \nOMP: Info #171: KMP_AFFINITY: OS proc 75 maps to package 75 \nOMP: Info #171: KMP_AFFINITY: OS proc 76 maps to package 76 \nOMP: Info #171: KMP_AFFINITY: OS proc 77 maps to package 77 \nOMP: Info #171: KMP_AFFINITY: OS proc 78 maps to package 78 \nOMP: Info #171: KMP_AFFINITY: OS proc 79 maps to package 79 \nOMP: Info #171: KMP_AFFINITY: OS proc 80 maps to package 80 \nOMP: Info #171: KMP_AFFINITY: OS proc 81 maps to package 81 \nOMP: Info #171: KMP_AFFINITY: OS proc 82 maps to package 82 \nOMP: Info #171: KMP_AFFINITY: OS proc 83 maps to package 83 \nOMP: Info #171: KMP_AFFINITY: OS proc 84 maps to package 84 \nOMP: Info #171: KMP_AFFINITY: OS proc 85 maps to package 85 \nOMP: Info #171: KMP_AFFINITY: OS proc 86 maps to package 86 \nOMP: Info #171: KMP_AFFINITY: OS proc 87 maps to package 87 \nOMP: Info #171: KMP_AFFINITY: OS proc 88 maps to package 88 \nOMP: Info #171: KMP_AFFINITY: OS proc 89 maps to package 89 \nOMP: Info #171: KMP_AFFINITY: OS proc 90 maps to package 90 \nOMP: Info #171: KMP_AFFINITY: OS proc 91 maps to package 91 \nOMP: Info #171: KMP_AFFINITY: OS proc 92 maps to package 92 \nOMP: Info #171: KMP_AFFINITY: OS proc 93 maps to package 93 \nOMP: Info #171: KMP_AFFINITY: OS proc 94 maps to package 94 \nOMP: Info #171: KMP_AFFINITY: OS proc 95 maps to package 95 \nOMP: Info #171: KMP_AFFINITY: OS proc 96 maps to package 96 \nOMP: Info #171: KMP_AFFINITY: OS proc 97 maps to package 97 \nOMP: Info #171: KMP_AFFINITY: OS proc 98 maps to package 98 \nOMP: Info #171: KMP_AFFINITY: OS proc 99 maps to package 99 \nOMP: Info #171: KMP_AFFINITY: OS proc 100 maps to package 100 \nOMP: Info #171: KMP_AFFINITY: OS proc 101 maps to package 101 \nOMP: Info #171: KMP_AFFINITY: OS proc 102 maps to package 102 \nOMP: Info #171: KMP_AFFINITY: OS proc 103 maps to package 103 \nOMP: Info #171: KMP_AFFINITY: OS proc 104 maps to package 104 \nOMP: Info #171: KMP_AFFINITY: OS proc 105 maps to package 105 \nOMP: Info #171: KMP_AFFINITY: OS proc 106 maps to package 106 \nOMP: Info #171: KMP_AFFINITY: OS proc 107 maps to package 107 \nOMP: Info #171: KMP_AFFINITY: OS proc 108 maps to package 108 \nOMP: Info #171: KMP_AFFINITY: OS proc 109 maps to package 109 \nOMP: Info #171: KMP_AFFINITY: OS proc 110 maps to package 110 \nOMP: Info #171: KMP_AFFINITY: OS proc 111 maps to package 111 \nOMP: Info #171: KMP_AFFINITY: OS proc 112 maps to package 112 \nOMP: Info #171: KMP_AFFINITY: OS proc 113 maps to package 113 \nOMP: Info #171: KMP_AFFINITY: OS proc 114 maps to package 114 \nOMP: Info #171: KMP_AFFINITY: OS proc 115 maps to package 115 \nOMP: Info #171: KMP_AFFINITY: OS proc 116 maps to package 116 \nOMP: Info #171: KMP_AFFINITY: OS proc 117 maps to package 117 \nOMP: Info #171: KMP_AFFINITY: OS proc 118 maps to package 118 \nOMP: Info #171: KMP_AFFINITY: OS proc 119 maps to package 119 \nOMP: Info #171: KMP_AFFINITY: OS proc 120 maps to package 120 \nOMP: Info #171: KMP_AFFINITY: OS proc 121 maps to package 121 \nOMP: Info #171: KMP_AFFINITY: OS proc 122 maps to package 122 \nOMP: Info #171: KMP_AFFINITY: OS proc 123 maps to package 123 \nOMP: Info #171: KMP_AFFINITY: OS proc 124 maps to package 124 \nOMP: Info #250: KMP_AFFINITY: pid 2936157 tid 2936157 thread 0 bound to OS proc set 0\nUsing TensorFlow backend.\n/usr/local/tools/_conda/envs/mulled-v1-26f90eb9c8055941081cb6eaef4d0dffb23aadd383641e5d6e58562e0bb08f59/lib/python3.6/site-packages/sklearn/externals/joblib/__init__.py:15: DeprecationWarning: sklearn.externals.joblib is deprecated in 0.21 and will be removed in 0.23. Please import this functionality directly from joblib, which can be installed with: pip install joblib. If this warning is raised when loading pickled models, you may need to re-serialize those models with scikit-learn 0.21+.\n warnings.warn(msg, category=DeprecationWarning)\n", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1", + "tool_stderr": "OMP: Info #212: KMP_AFFINITY: decoding x2APIC ids.\nOMP: Info #210: KMP_AFFINITY: Affinity capable, using global cpuid leaf 11 info\nOMP: Info #154: KMP_AFFINITY: Initial OS proc set respected: 0-124\nOMP: Info #156: KMP_AFFINITY: 125 available OS procs\nOMP: Info #157: KMP_AFFINITY: Uniform topology\nOMP: Info #179: KMP_AFFINITY: 125 packages x 1 cores/pkg x 1 threads/core (125 total cores)\nOMP: Info #214: KMP_AFFINITY: OS proc to physical thread map:\nOMP: Info #171: KMP_AFFINITY: OS proc 0 maps to package 0 \nOMP: Info #171: KMP_AFFINITY: OS proc 1 maps to package 1 \nOMP: Info #171: KMP_AFFINITY: OS proc 2 maps to package 2 \nOMP: Info #171: KMP_AFFINITY: OS proc 3 maps to package 3 \nOMP: Info #171: KMP_AFFINITY: OS proc 4 maps to package 4 \nOMP: Info #171: KMP_AFFINITY: OS proc 5 maps to package 5 \nOMP: Info #171: KMP_AFFINITY: OS proc 6 maps to package 6 \nOMP: Info #171: KMP_AFFINITY: OS proc 7 maps to package 7 \nOMP: Info #171: KMP_AFFINITY: OS proc 8 maps to package 8 \nOMP: Info #171: KMP_AFFINITY: OS proc 9 maps to package 9 \nOMP: Info #171: KMP_AFFINITY: OS proc 10 maps to package 10 \nOMP: Info #171: KMP_AFFINITY: OS proc 11 maps to package 11 \nOMP: Info #171: KMP_AFFINITY: OS proc 12 maps to package 12 \nOMP: Info #171: KMP_AFFINITY: OS proc 13 maps to package 13 \nOMP: Info #171: KMP_AFFINITY: OS proc 14 maps to package 14 \nOMP: Info #171: KMP_AFFINITY: OS proc 15 maps to package 15 \nOMP: Info #171: KMP_AFFINITY: OS proc 16 maps to package 16 \nOMP: Info #171: KMP_AFFINITY: OS proc 17 maps to package 17 \nOMP: Info #171: KMP_AFFINITY: OS proc 18 maps to package 18 \nOMP: Info #171: KMP_AFFINITY: OS proc 19 maps to package 19 \nOMP: Info #171: KMP_AFFINITY: OS proc 20 maps to package 20 \nOMP: Info #171: KMP_AFFINITY: OS proc 21 maps to package 21 \nOMP: Info #171: KMP_AFFINITY: OS proc 22 maps to package 22 \nOMP: Info #171: KMP_AFFINITY: OS proc 23 maps to package 23 \nOMP: Info #171: KMP_AFFINITY: OS proc 24 maps to package 24 \nOMP: Info #171: KMP_AFFINITY: OS proc 25 maps to package 25 \nOMP: Info #171: KMP_AFFINITY: OS proc 26 maps to package 26 \nOMP: Info #171: KMP_AFFINITY: OS proc 27 maps to package 27 \nOMP: Info #171: KMP_AFFINITY: OS proc 28 maps to package 28 \nOMP: Info #171: KMP_AFFINITY: OS proc 29 maps to package 29 \nOMP: Info #171: KMP_AFFINITY: OS proc 30 maps to package 30 \nOMP: Info #171: KMP_AFFINITY: OS proc 31 maps to package 31 \nOMP: Info #171: KMP_AFFINITY: OS proc 32 maps to package 32 \nOMP: Info #171: KMP_AFFINITY: OS proc 33 maps to package 33 \nOMP: Info #171: KMP_AFFINITY: OS proc 34 maps to package 34 \nOMP: Info #171: KMP_AFFINITY: OS proc 35 maps to package 35 \nOMP: Info #171: KMP_AFFINITY: OS proc 36 maps to package 36 \nOMP: Info #171: KMP_AFFINITY: OS proc 37 maps to package 37 \nOMP: Info #171: KMP_AFFINITY: OS proc 38 maps to package 38 \nOMP: Info #171: KMP_AFFINITY: OS proc 39 maps to package 39 \nOMP: Info #171: KMP_AFFINITY: OS proc 40 maps to package 40 \nOMP: Info #171: KMP_AFFINITY: OS proc 41 maps to package 41 \nOMP: Info #171: KMP_AFFINITY: OS proc 42 maps to package 42 \nOMP: Info #171: KMP_AFFINITY: OS proc 43 maps to package 43 \nOMP: Info #171: KMP_AFFINITY: OS proc 44 maps to package 44 \nOMP: Info #171: KMP_AFFINITY: OS proc 45 maps to package 45 \nOMP: Info #171: KMP_AFFINITY: OS proc 46 maps to package 46 \nOMP: Info #171: KMP_AFFINITY: OS proc 47 maps to package 47 \nOMP: Info #171: KMP_AFFINITY: OS proc 48 maps to package 48 \nOMP: Info #171: KMP_AFFINITY: OS proc 49 maps to package 49 \nOMP: Info #171: KMP_AFFINITY: OS proc 50 maps to package 50 \nOMP: Info #171: KMP_AFFINITY: OS proc 51 maps to package 51 \nOMP: Info #171: KMP_AFFINITY: OS proc 52 maps to package 52 \nOMP: Info #171: KMP_AFFINITY: OS proc 53 maps to package 53 \nOMP: Info #171: KMP_AFFINITY: OS proc 54 maps to package 54 \nOMP: Info #171: KMP_AFFINITY: OS proc 55 maps to package 55 \nOMP: Info #171: KMP_AFFINITY: OS proc 56 maps to package 56 \nOMP: Info #171: KMP_AFFINITY: OS proc 57 maps to package 57 \nOMP: Info #171: KMP_AFFINITY: OS proc 58 maps to package 58 \nOMP: Info #171: KMP_AFFINITY: OS proc 59 maps to package 59 \nOMP: Info #171: KMP_AFFINITY: OS proc 60 maps to package 60 \nOMP: Info #171: KMP_AFFINITY: OS proc 61 maps to package 61 \nOMP: Info #171: KMP_AFFINITY: OS proc 62 maps to package 62 \nOMP: Info #171: KMP_AFFINITY: OS proc 63 maps to package 63 \nOMP: Info #171: KMP_AFFINITY: OS proc 64 maps to package 64 \nOMP: Info #171: KMP_AFFINITY: OS proc 65 maps to package 65 \nOMP: Info #171: KMP_AFFINITY: OS proc 66 maps to package 66 \nOMP: Info #171: KMP_AFFINITY: OS proc 67 maps to package 67 \nOMP: Info #171: KMP_AFFINITY: OS proc 68 maps to package 68 \nOMP: Info #171: KMP_AFFINITY: OS proc 69 maps to package 69 \nOMP: Info #171: KMP_AFFINITY: OS proc 70 maps to package 70 \nOMP: Info #171: KMP_AFFINITY: OS proc 71 maps to package 71 \nOMP: Info #171: KMP_AFFINITY: OS proc 72 maps to package 72 \nOMP: Info #171: KMP_AFFINITY: OS proc 73 maps to package 73 \nOMP: Info #171: KMP_AFFINITY: OS proc 74 maps to package 74 \nOMP: Info #171: KMP_AFFINITY: OS proc 75 maps to package 75 \nOMP: Info #171: KMP_AFFINITY: OS proc 76 maps to package 76 \nOMP: Info #171: KMP_AFFINITY: OS proc 77 maps to package 77 \nOMP: Info #171: KMP_AFFINITY: OS proc 78 maps to package 78 \nOMP: Info #171: KMP_AFFINITY: OS proc 79 maps to package 79 \nOMP: Info #171: KMP_AFFINITY: OS proc 80 maps to package 80 \nOMP: Info #171: KMP_AFFINITY: OS proc 81 maps to package 81 \nOMP: Info #171: KMP_AFFINITY: OS proc 82 maps to package 82 \nOMP: Info #171: KMP_AFFINITY: OS proc 83 maps to package 83 \nOMP: Info #171: KMP_AFFINITY: OS proc 84 maps to package 84 \nOMP: Info #171: KMP_AFFINITY: OS proc 85 maps to package 85 \nOMP: Info #171: KMP_AFFINITY: OS proc 86 maps to package 86 \nOMP: Info #171: KMP_AFFINITY: OS proc 87 maps to package 87 \nOMP: Info #171: KMP_AFFINITY: OS proc 88 maps to package 88 \nOMP: Info #171: KMP_AFFINITY: OS proc 89 maps to package 89 \nOMP: Info #171: KMP_AFFINITY: OS proc 90 maps to package 90 \nOMP: Info #171: KMP_AFFINITY: OS proc 91 maps to package 91 \nOMP: Info #171: KMP_AFFINITY: OS proc 92 maps to package 92 \nOMP: Info #171: KMP_AFFINITY: OS proc 93 maps to package 93 \nOMP: Info #171: KMP_AFFINITY: OS proc 94 maps to package 94 \nOMP: Info #171: KMP_AFFINITY: OS proc 95 maps to package 95 \nOMP: Info #171: KMP_AFFINITY: OS proc 96 maps to package 96 \nOMP: Info #171: KMP_AFFINITY: OS proc 97 maps to package 97 \nOMP: Info #171: KMP_AFFINITY: OS proc 98 maps to package 98 \nOMP: Info #171: KMP_AFFINITY: OS proc 99 maps to package 99 \nOMP: Info #171: KMP_AFFINITY: OS proc 100 maps to package 100 \nOMP: Info #171: KMP_AFFINITY: OS proc 101 maps to package 101 \nOMP: Info #171: KMP_AFFINITY: OS proc 102 maps to package 102 \nOMP: Info #171: KMP_AFFINITY: OS proc 103 maps to package 103 \nOMP: Info #171: KMP_AFFINITY: OS proc 104 maps to package 104 \nOMP: Info #171: KMP_AFFINITY: OS proc 105 maps to package 105 \nOMP: Info #171: KMP_AFFINITY: OS proc 106 maps to package 106 \nOMP: Info #171: KMP_AFFINITY: OS proc 107 maps to package 107 \nOMP: Info #171: KMP_AFFINITY: OS proc 108 maps to package 108 \nOMP: Info #171: KMP_AFFINITY: OS proc 109 maps to package 109 \nOMP: Info #171: KMP_AFFINITY: OS proc 110 maps to package 110 \nOMP: Info #171: KMP_AFFINITY: OS proc 111 maps to package 111 \nOMP: Info #171: KMP_AFFINITY: OS proc 112 maps to package 112 \nOMP: Info #171: KMP_AFFINITY: OS proc 113 maps to package 113 \nOMP: Info #171: KMP_AFFINITY: OS proc 114 maps to package 114 \nOMP: Info #171: KMP_AFFINITY: OS proc 115 maps to package 115 \nOMP: Info #171: KMP_AFFINITY: OS proc 116 maps to package 116 \nOMP: Info #171: KMP_AFFINITY: OS proc 117 maps to package 117 \nOMP: Info #171: KMP_AFFINITY: OS proc 118 maps to package 118 \nOMP: Info #171: KMP_AFFINITY: OS proc 119 maps to package 119 \nOMP: Info #171: KMP_AFFINITY: OS proc 120 maps to package 120 \nOMP: Info #171: KMP_AFFINITY: OS proc 121 maps to package 121 \nOMP: Info #171: KMP_AFFINITY: OS proc 122 maps to package 122 \nOMP: Info #171: KMP_AFFINITY: OS proc 123 maps to package 123 \nOMP: Info #171: KMP_AFFINITY: OS proc 124 maps to package 124 \nOMP: Info #250: KMP_AFFINITY: pid 2936157 tid 2936157 thread 0 bound to OS proc set 0\nUsing TensorFlow backend.\n/usr/local/tools/_conda/envs/mulled-v1-26f90eb9c8055941081cb6eaef4d0dffb23aadd383641e5d6e58562e0bb08f59/lib/python3.6/site-packages/sklearn/externals/joblib/__init__.py:15: DeprecationWarning: sklearn.externals.joblib is deprecated in 0.21 and will be removed in 0.23. Please import this functionality directly from joblib, which can be installed with: pip install joblib. If this warning is raised when loading pickled models, you may need to re-serialize those models with scikit-learn 0.21+.\n warnings.warn(msg, category=DeprecationWarning)\n", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-23T11:03:10.618603", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 2, + "output_collections": {}, + "outputs": { + "outfile_fit": { + "id": "4838ba20a6d86765b565f48d5ac913b1", + "src": "hda", + "uuid": "1a17ebe9-c0e0-4ebd-bae0-5159331683bb" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-23T11:03:10.590397", + "workflow_step_id": "3500dc3fab19a665", + "workflow_step_label": null, + "workflow_step_uuid": "159f5d0f-2ff6-46f3-8e42-7b7c1f9c346e" + }, + "3. Unnamed step": { + "action": null, + "id": "06d0cb6c722a3ad0", + "job_id": "11ac94870d0bb33a7b20a18462093261", + "jobs": [ + { + "command_line": "python '/data/jwd02f/main/060/156/60156805/configs/tmpsg_iolk6' '/data/jwd02f/main/060/156/60156805/configs/tmpbg5s306r'", + "command_version": "1.0.8.1", + "create_time": "2023-05-23T10:59:49.663928", + "dependencies": [ + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/mulled-v1-26f90eb9c8055941081cb6eaef4d0dffb23aadd383641e5d6e58562e0bb08f59", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "python", + "version": "3.6" + }, + { + "cacheable": false, + "dependency_resolver": { + "auto_init": true, + "auto_install": false, + "can_uninstall_dependencies": true, + "ensure_channels": "conda-forge,bioconda", + "model_class": "CondaDependencyResolver", + "prefix": "/usr/local/tools/_conda", + "read_only": false, + "resolver_type": "conda", + "resolves_simple_dependencies": true, + "use_local": false, + "versionless": false + }, + "dependency_type": "conda", + "environment_path": "/usr/local/tools/_conda/envs/mulled-v1-26f90eb9c8055941081cb6eaef4d0dffb23aadd383641e5d6e58562e0bb08f59", + "exact": true, + "model_class": "MergedCondaDependency", + "name": "Galaxy-ML", + "version": "0.8.1" + } + ], + "exit_code": 0, + "external_id": "43631439", + "galaxy_version": "23.0", + "history_id": "2507553dd7587c83", + "id": "11ac94870d0bb33a7b20a18462093261", + "inputs": { + "infile_data": { + "id": "4838ba20a6d867654de1bc22fefb9f52", + "src": "hda", + "uuid": "c438049f-86b6-415a-a9a0-554efa397b28" + }, + "infile_model": { + "id": "4838ba20a6d86765b565f48d5ac913b1", + "src": "hda", + "uuid": "1a17ebe9-c0e0-4ebd-bae0-5159331683bb" + } + }, + "job_messages": [], + "job_metrics": [ + { + "name": "hostname", + "plugin": "hostname", + "raw_value": "vgcnbwc-worker-c28m475-9818.novalocal", + "title": "hostname", + "value": "vgcnbwc-worker-c28m475-9818.novalocal" + }, + { + "name": "galaxy_slots", + "plugin": "core", + "raw_value": "1.0000000", + "title": "Cores Allocated", + "value": "1" + }, + { + "name": "galaxy_memory_mb", + "plugin": "core", + "raw_value": "3891.0000000", + "title": "Memory Allocated (MB)", + "value": "3891" + }, + { + "name": "start_epoch", + "plugin": "core", + "raw_value": "1684839797.0000000", + "title": "Job Start Time", + "value": "2023-05-23 13:03:17" + }, + { + "name": "end_epoch", + "plugin": "core", + "raw_value": "1684839860.0000000", + "title": "Job End Time", + "value": "2023-05-23 13:04:20" + }, + { + "name": "runtime_seconds", + "plugin": "core", + "raw_value": "63.0000000", + "title": "Job Runtime (Wall Clock)", + "value": "1 minute" + }, + { + "name": "cpuacct.usage", + "plugin": "cgroup", + "raw_value": "17604876182.0000000", + "title": "CPU Time", + "value": "17.604876182 seconds" + }, + { + "name": "memory.failcnt", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Failed to allocate memory count", + "value": 0.0 + }, + { + "name": "memory.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "12348030976.0000000", + "title": "Memory limit on cgroup (MEM)", + "value": "11.5 GB" + }, + { + "name": "memory.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "276676608.0000000", + "title": "Max memory usage (MEM)", + "value": "263.9 MB" + }, + { + "name": "memory.memsw.limit_in_bytes", + "plugin": "cgroup", + "raw_value": "9223372036854771712.0000000", + "title": "Memory limit on cgroup (MEM+SWP)", + "value": "8.0 EB" + }, + { + "name": "memory.memsw.max_usage_in_bytes", + "plugin": "cgroup", + "raw_value": "276676608.0000000", + "title": "Max memory usage (MEM+SWP)", + "value": "263.9 MB" + }, + { + "name": "memory.oom_control.oom_kill_disable", + "plugin": "cgroup", + "raw_value": "1.0000000", + "title": "OOM Control enabled", + "value": "No" + }, + { + "name": "memory.oom_control.under_oom", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Was OOM Killer active?", + "value": "No" + }, + { + "name": "memory.soft_limit_in_bytes", + "plugin": "cgroup", + "raw_value": "0E-7", + "title": "Memory softlimit on cgroup", + "value": "0 bytes" + } + ], + "job_stderr": "", + "job_stdout": "", + "model_class": "Job", + "output_collections": {}, + "outputs": { + "outfile_predict": { + "id": "4838ba20a6d8676528bf3db1c2ee4fdf", + "src": "hda", + "uuid": "aa9ff12d-ae53-4540-a498-636aa43c3466" + } + }, + "params": { + "__input_ext": "\"zip\"", + "__workflow_invocation_uuid__": "\"ebe5f326f95811ed916d001e67d2ec02\"", + "chromInfo": "\"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\"", + "dbkey": "\"?\"", + "selected_tasks": "{\"__current_case__\": 0, \"header\": true, \"infile_data\": {\"values\": [{\"id\": 137643085, \"src\": \"hda\"}]}, \"infile_model\": {\"values\": [{\"id\": 137643284, \"src\": \"hda\"}]}, \"prediction_options\": {\"__current_case__\": 0, \"prediction_option\": \"predict\"}, \"selected_task\": \"load\"}" + }, + "state": "ok", + "stderr": "OMP: Info #212: KMP_AFFINITY: decoding x2APIC ids.\nOMP: Info #210: KMP_AFFINITY: Affinity capable, using global cpuid leaf 11 info\nOMP: Info #154: KMP_AFFINITY: Initial OS proc set respected: 0-27\nOMP: Info #156: KMP_AFFINITY: 28 available OS procs\nOMP: Info #157: KMP_AFFINITY: Uniform topology\nOMP: Info #179: KMP_AFFINITY: 28 packages x 1 cores/pkg x 1 threads/core (28 total cores)\nOMP: Info #214: KMP_AFFINITY: OS proc to physical thread map:\nOMP: Info #171: KMP_AFFINITY: OS proc 0 maps to package 0 \nOMP: Info #171: KMP_AFFINITY: OS proc 1 maps to package 1 \nOMP: Info #171: KMP_AFFINITY: OS proc 2 maps to package 2 \nOMP: Info #171: KMP_AFFINITY: OS proc 3 maps to package 3 \nOMP: Info #171: KMP_AFFINITY: OS proc 4 maps to package 4 \nOMP: Info #171: KMP_AFFINITY: OS proc 5 maps to package 5 \nOMP: Info #171: KMP_AFFINITY: OS proc 6 maps to package 6 \nOMP: Info #171: KMP_AFFINITY: OS proc 7 maps to package 7 \nOMP: Info #171: KMP_AFFINITY: OS proc 8 maps to package 8 \nOMP: Info #171: KMP_AFFINITY: OS proc 9 maps to package 9 \nOMP: Info #171: KMP_AFFINITY: OS proc 10 maps to package 10 \nOMP: Info #171: KMP_AFFINITY: OS proc 11 maps to package 11 \nOMP: Info #171: KMP_AFFINITY: OS proc 12 maps to package 12 \nOMP: Info #171: KMP_AFFINITY: OS proc 13 maps to package 13 \nOMP: Info #171: KMP_AFFINITY: OS proc 14 maps to package 14 \nOMP: Info #171: KMP_AFFINITY: OS proc 15 maps to package 15 \nOMP: Info #171: KMP_AFFINITY: OS proc 16 maps to package 16 \nOMP: Info #171: KMP_AFFINITY: OS proc 17 maps to package 17 \nOMP: Info #171: KMP_AFFINITY: OS proc 18 maps to package 18 \nOMP: Info #171: KMP_AFFINITY: OS proc 19 maps to package 19 \nOMP: Info #171: KMP_AFFINITY: OS proc 20 maps to package 20 \nOMP: Info #171: KMP_AFFINITY: OS proc 21 maps to package 21 \nOMP: Info #171: KMP_AFFINITY: OS proc 22 maps to package 22 \nOMP: Info #171: KMP_AFFINITY: OS proc 23 maps to package 23 \nOMP: Info #171: KMP_AFFINITY: OS proc 24 maps to package 24 \nOMP: Info #171: KMP_AFFINITY: OS proc 25 maps to package 25 \nOMP: Info #171: KMP_AFFINITY: OS proc 26 maps to package 26 \nOMP: Info #171: KMP_AFFINITY: OS proc 27 maps to package 27 \nOMP: Info #250: KMP_AFFINITY: pid 2127423 tid 2127423 thread 0 bound to OS proc set 0\nUsing TensorFlow backend.\n/usr/local/tools/_conda/envs/mulled-v1-26f90eb9c8055941081cb6eaef4d0dffb23aadd383641e5d6e58562e0bb08f59/lib/python3.6/site-packages/sklearn/externals/joblib/__init__.py:15: DeprecationWarning: sklearn.externals.joblib is deprecated in 0.21 and will be removed in 0.23. Please import this functionality directly from joblib, which can be installed with: pip install joblib. If this warning is raised when loading pickled models, you may need to re-serialize those models with scikit-learn 0.21+.\n warnings.warn(msg, category=DeprecationWarning)\n", + "stdout": "", + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1", + "tool_stderr": "OMP: Info #212: KMP_AFFINITY: decoding x2APIC ids.\nOMP: Info #210: KMP_AFFINITY: Affinity capable, using global cpuid leaf 11 info\nOMP: Info #154: KMP_AFFINITY: Initial OS proc set respected: 0-27\nOMP: Info #156: KMP_AFFINITY: 28 available OS procs\nOMP: Info #157: KMP_AFFINITY: Uniform topology\nOMP: Info #179: KMP_AFFINITY: 28 packages x 1 cores/pkg x 1 threads/core (28 total cores)\nOMP: Info #214: KMP_AFFINITY: OS proc to physical thread map:\nOMP: Info #171: KMP_AFFINITY: OS proc 0 maps to package 0 \nOMP: Info #171: KMP_AFFINITY: OS proc 1 maps to package 1 \nOMP: Info #171: KMP_AFFINITY: OS proc 2 maps to package 2 \nOMP: Info #171: KMP_AFFINITY: OS proc 3 maps to package 3 \nOMP: Info #171: KMP_AFFINITY: OS proc 4 maps to package 4 \nOMP: Info #171: KMP_AFFINITY: OS proc 5 maps to package 5 \nOMP: Info #171: KMP_AFFINITY: OS proc 6 maps to package 6 \nOMP: Info #171: KMP_AFFINITY: OS proc 7 maps to package 7 \nOMP: Info #171: KMP_AFFINITY: OS proc 8 maps to package 8 \nOMP: Info #171: KMP_AFFINITY: OS proc 9 maps to package 9 \nOMP: Info #171: KMP_AFFINITY: OS proc 10 maps to package 10 \nOMP: Info #171: KMP_AFFINITY: OS proc 11 maps to package 11 \nOMP: Info #171: KMP_AFFINITY: OS proc 12 maps to package 12 \nOMP: Info #171: KMP_AFFINITY: OS proc 13 maps to package 13 \nOMP: Info #171: KMP_AFFINITY: OS proc 14 maps to package 14 \nOMP: Info #171: KMP_AFFINITY: OS proc 15 maps to package 15 \nOMP: Info #171: KMP_AFFINITY: OS proc 16 maps to package 16 \nOMP: Info #171: KMP_AFFINITY: OS proc 17 maps to package 17 \nOMP: Info #171: KMP_AFFINITY: OS proc 18 maps to package 18 \nOMP: Info #171: KMP_AFFINITY: OS proc 19 maps to package 19 \nOMP: Info #171: KMP_AFFINITY: OS proc 20 maps to package 20 \nOMP: Info #171: KMP_AFFINITY: OS proc 21 maps to package 21 \nOMP: Info #171: KMP_AFFINITY: OS proc 22 maps to package 22 \nOMP: Info #171: KMP_AFFINITY: OS proc 23 maps to package 23 \nOMP: Info #171: KMP_AFFINITY: OS proc 24 maps to package 24 \nOMP: Info #171: KMP_AFFINITY: OS proc 25 maps to package 25 \nOMP: Info #171: KMP_AFFINITY: OS proc 26 maps to package 26 \nOMP: Info #171: KMP_AFFINITY: OS proc 27 maps to package 27 \nOMP: Info #250: KMP_AFFINITY: pid 2127423 tid 2127423 thread 0 bound to OS proc set 0\nUsing TensorFlow backend.\n/usr/local/tools/_conda/envs/mulled-v1-26f90eb9c8055941081cb6eaef4d0dffb23aadd383641e5d6e58562e0bb08f59/lib/python3.6/site-packages/sklearn/externals/joblib/__init__.py:15: DeprecationWarning: sklearn.externals.joblib is deprecated in 0.21 and will be removed in 0.23. Please import this functionality directly from joblib, which can be installed with: pip install joblib. If this warning is raised when loading pickled models, you may need to re-serialize those models with scikit-learn 0.21+.\n warnings.warn(msg, category=DeprecationWarning)\n", + "tool_stdout": "", + "traceback": null, + "update_time": "2023-05-23T11:04:23.019377", + "user_email": "hxr@informatik.uni-freiburg.de" + } + ], + "model_class": "WorkflowInvocationStep", + "order_index": 3, + "output_collections": {}, + "outputs": { + "outfile_predict": { + "id": "4838ba20a6d8676528bf3db1c2ee4fdf", + "src": "hda", + "uuid": "aa9ff12d-ae53-4540-a498-636aa43c3466" + } + }, + "state": "scheduled", + "subworkflow": null, + "subworkflow_invocation_id": null, + "update_time": "2023-05-23T11:04:23.001451", + "workflow_step_id": "2fb04d30a406970c", + "workflow_step_label": null, + "workflow_step_uuid": "98bd60bb-4e32-4c11-9955-eade434a3817" + } + } + }, + "problem_log": "No log for this engine type.", + "start_datetime": "2023-05-23T12:56:36.643889", + "status": "success" + }, + "doc": "Test Basics of Machine Learning workflow", + "has_data": true, + "id": "machine_learning.ga_0", + "test_type": "galaxy_workflow" + } + ], + "version": "0.1" + } + }, + "tests": true, + "title": "Machine Learning", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-machinelearning/versions/machine-learning", + "tutorial_id": "machinelearning", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/machinelearning/workflows/machine_learning.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/machinelearning/workflows/machine_learning.html", + "version": 5, + "wfid": "statistics-machinelearning", + "wfname": "machine-learning", + "workflow": "machine_learning.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.8.1" + ], + "workflowhub_id": "1320" + } + ], + "zenodo_link": "https://zenodo.org/record/1468039" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "iwtomics_loadandplot", + "owner": "iuc", + "revisions": "ce633cc8f5f9", + "tool_panel_section_label": "Statistics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "iwtomics_plotwithscale", + "owner": "iuc", + "revisions": "1bc9150ed125", + "tool_panel_section_label": "Statistics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "iwtomics_testandplot", + "owner": "iuc", + "revisions": "94965e369be4", + "tool_panel_section_label": "Statistics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: iwtomics_loadandplot\n owner: iuc\n revisions: ce633cc8f5f9\n tool_panel_section_label: Statistics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: iwtomics_plotwithscale\n owner: iuc\n revisions: 1bc9150ed125\n tool_panel_section_label: Statistics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: iwtomics_testandplot\n owner: iuc\n revisions: 94965e369be4\n tool_panel_section_label: Statistics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/iwtomics/tutorial.json", + "contributors": [ + { + "email": "mac78@psu.edu", + "id": "marziacremona", + "joined": "2018-02", + "name": "Marzia A Cremona", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/marziacremona/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/marziacremona.json" + }, + { + "email": "fabio.cumbo@gmail.com", + "id": "cumbof", + "joined": "2018-02", + "linkedin": "fabiocumbo", + "name": "Fabio Cumbo", + "orcid": "0000-0003-2920-5838", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cumbof/", + "twitter": "cumbofabio", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cumbof.json" + } + ], + "dir": "topics/statistics/tutorials/iwtomics", + "edam_operation": [ + "Peak calling", + "Genome annotation", + "Comparison", + "Differentially-methylated region identification", + "Differential gene expression analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/iwtomics", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "High-resolution omics data can be represented as curves along the genome", + "IWTomics permits to visualize these data", + "The Interval-Wise Testing detects statistically significant differences between pairs of genomic regions", + "The Interval-Wise Testing corrects p-values taking into consideration the ordered nature of measurements along the genome", + "Locations and scales do not need to be specified at the outset, indeed IWTomics permits to detect them" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Pre-process high-resolution omics data", + "Create pointwise boxplots corresponding to different groups of genomic regions", + "Perform the Interval-Wise Testing between two groups of genomic regions", + "Visualize and inspect test results", + "Detect relevant locations and scales" + ], + "pageviews": 443, + "pub_date": "2018-06-14", + "questions": [ + "How to visualize high-resolution omics data in different groups of genomic regions?", + "How to evaluate differences in high-resolution omics data between groups of genomic regions?", + "How to detect locations and scales at which the significant effects unfold?" + ], + "requirements": null, + "short_id": "T00269", + "short_tools": [ + "iwtomics_plotwithscale", + "iwtomics_testandplot", + "iwtomics_loadandplot" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1h", + "title": "Interval-Wise Testing for omics data", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/iwtomics_loadandplot/iwtomics_loadandplot/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/iwtomics_plotwithscale/iwtomics_plotwithscale/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/iwtomics_testandplot/iwtomics_testandplot/1.0.0.0" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "iwtomics", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/iwtomics/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/iwtomics/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/iwtomics/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 196, + "visitors": 322, + "workflows": [ + { + "creators": [], + "description": "Interval-Wise Testing for omics data", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nETn_fixed.bed\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nControl.bed\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nfeatures_header.tabular\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nregions_header.tabular\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRecombination_hotspots.txt\"]\n 5[label=\"IWTomics Load\"]\n 4 -> 5 [label=\"output\"]\n 2 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"output\"]\n 6[label=\"IWTomics Test\"]\n 5 -> 6 [label=\"outfeatures\"]\n 5 -> 6 [label=\"outrdata\"]\n 5 -> 6 [label=\"outregions\"]\n 7[label=\"IWTomics Plot with Threshold\"]\n 6 -> 7 [label=\"iwtomicsselectedfeatures\"]\n 6 -> 7 [label=\"iwtomicsrdata\"]\n 6 -> 7 [label=\"iwtomicstests\"]\n}", + "history": [ + { + "hash": "b97fcf8dbc18d441d3e8e6eb7a2e4f01fda1cb14", + "message": "Updating IWTomics data", + "num": 6, + "short_hash": "b97fcf8db", + "unix": "1634825035" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 3, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "251bebcf11feffcbd9a103e1ac5898def74c861e", + "message": "workflow fixed", + "num": 2, + "short_hash": "251bebcf1", + "unix": "1528895196" + }, + { + "hash": "5752bb6b95a47c674c4600c00537a015f6357967", + "message": "IWTomics Workflow", + "num": 1, + "short_hash": "5752bb6b9", + "unix": "1528889546" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "ETn_fixed.bed" + } + ], + "label": "ETn_fixed.bed", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"ETn_fixed.bed\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7709e0ee-56fc-491d-afad-b10c18758c07", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Control.bed" + } + ], + "label": "Control.bed", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 320 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Control.bed\"}", + "tool_version": null, + "type": "data_input", + "uuid": "9c4be2e1-6f14-4ec4-a0e8-3ec4e21a6523", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "features_header.tabular" + } + ], + "label": "features_header.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 680 + }, + "tool_id": null, + "tool_state": "{\"name\": \"features_header.tabular\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4a071a64-59d3-481d-8d84-f063c38ddac7", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "regions_header.tabular" + } + ], + "label": "regions_header.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 560 + }, + "tool_id": null, + "tool_state": "{\"name\": \"regions_header.tabular\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ac9cf2c6-9bbc-42b4-b4fb-f0fcf92dcee6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Recombination_hotspots.txt" + } + ], + "label": "Recombination_hotspots.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 440 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Recombination_hotspots.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "946f863d-0ef4-42b1-bb87-25247e31d4d9", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nETn_fixed.bed\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nControl.bed\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nfeatures_header.tabular\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nregions_header.tabular\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nRecombination_hotspots.txt\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"IWTomics Load\"];\n 4 -->|output| 5;\n 2 -->|output| 5;\n 0 -->|output| 5;\n 1 -->|output| 5;\n 3 -->|output| 5;\n 6[\"IWTomics Test\"];\n 5 -->|outfeatures| 6;\n 5 -->|outrdata| 6;\n 5 -->|outregions| 6;\n 7[\"IWTomics Plot with Threshold\"];\n 6 -->|iwtomicsselectedfeatures| 7;\n 6 -->|iwtomicsrdata| 7;\n 6 -->|iwtomicstests| 7;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Workflow Constructed From History 'IWTomics Workflow'", + "outputs": [], + "parent_id": "statistics/iwtomics", + "path": "topics/statistics/tutorials/iwtomics/workflows/IWTomics_Workflow.ga", + "tags": [ + "genomics", + "iwtomics", + "statistics" + ], + "test_results": null, + "tests": false, + "title": "Workflow Constructed From History 'IWTomics Workflow'", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-iwtomics/versions/iwtomics-workflow", + "tutorial_id": "iwtomics", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/iwtomics/workflows/IWTomics_Workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/iwtomics/workflows/IWTomics_Workflow.html", + "version": 5, + "wfid": "statistics-iwtomics", + "wfname": "iwtomics-workflow", + "workflow": "IWTomics_Workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/iwtomics_loadandplot/iwtomics_loadandplot/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/iwtomics_plotwithscale/iwtomics_plotwithscale/1.0.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/iwtomics_testandplot/iwtomics_testandplot/1.0.0.0" + ], + "workflowhub_id": "1317" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.5589610" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "pmids_to_pubtator_matrix", + "owner": "iuc", + "revisions": "69714f06f18b", + "tool_panel_section_label": "Other Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pubmed_by_queries", + "owner": "iuc", + "revisions": "02e46a96e98a", + "tool_panel_section_label": "Other Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: pmids_to_pubtator_matrix\n owner: iuc\n revisions: 69714f06f18b\n tool_panel_section_label: Other Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pubmed_by_queries\n owner: iuc\n revisions: 02e46a96e98a\n tool_panel_section_label: Other Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/text-mining_simtext/tutorial.json", + "contributors": [ + { + "email": "mgramm2@smail.uni-koeln.de", + "id": "mgramm1", + "joined": "2021-03", + "name": "Marie Gramm", + "orcid": "0000-0002-4217-5277", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mgramm1/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mgramm1.json" + }, + { + "email": "dennislal.group@gmail.com", + "id": "dlalgroup", + "joined": "2021-03", + "name": "Dennis Lal group", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dlalgroup/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dlalgroup.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + } + ], + "dir": "topics/statistics/tutorials/text-mining_simtext", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/text-mining_simtext", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The SimText toolset allows large-scale literature analysis of a set of biomedical entities such as genes or diseases", + "The similarities among the biomedical entities can be explored interactively", + "The litertaure based grouping can be compared to an existing grouping to discover similarities/ relationships hidden in the literature" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Learn how to use the SimText toolset", + "Upload a table with biomedical entities in Galaxy", + "Retrieve PubMed data for each of the biomedical entities", + "Extract biomedical terms from the PubMed data for each biomedical entity", + "Analyze the similarity among the biomedical entities based on the extracted data in an interactive app" + ], + "pageviews": 549, + "pub_date": "2021-04-05", + "questions": [ + "How can I automatically collect PubMed data for a set of biomedical entities such as genes?", + "How can I analyze similarities among biomedical entities based on PubMed data on large-scale?" + ], + "short_id": "T00272", + "short_tools": [ + "pmids_to_pubtator_matrix", + "interactive_tool_simtext_app", + "pubmed_by_queries" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "1H", + "title": "Text-mining with the SimText toolset", + "tools": [ + "interactive_tool_simtext_app", + "toolshed.g2.bx.psu.edu/repos/iuc/pmids_to_pubtator_matrix/pmids_to_pubtator_matrix/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/pubmed_by_queries/pubmed_by_queries/0.0.2" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "text-mining_simtext", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/text-mining_simtext/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/text-mining_simtext/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/text-mining_simtext/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 120, + "visitors": 389, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "", + "name": "" + } + ], + "description": "In this workflow the similarity among set of search queries (e.g. genes) is analyzed based on the associated vocabulary in PubMed. The last tool is an interactive tool that enables the inspection of the data.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"PubMed query\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"PMIDs to PubTator\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"simtext_app\"]\n 0 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n}", + "history": [ + { + "hash": "9ac4bf8f255f80662ab8f0025629d20f5f31f8ca", + "message": "Change topic of training to statistics", + "num": 1, + "short_hash": "9ac4bf8f2", + "unix": "1617184494" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 302.5, + "height": 81, + "left": 399, + "right": 599, + "top": 221.5, + "width": 200, + "x": 399, + "y": 221.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ad71fad8-ef64-470f-891a-257ca4316fd6", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"PubMed query\"];\n 0 -->|output| 1;\n 2[\"PMIDs to PubTator\"];\n 1 -->|output| 2;\n 3[\"simtext_app\"];\n 0 -->|output| 3;\n 2 -->|output| 3;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Simtext training workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pubmed_by_queries/pubmed_by_queries/0.0.2", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PubMed query", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 432.5, + "height": 112, + "left": 626, + "right": 826, + "top": 320.5, + "width": 200, + "x": 626, + "y": 320.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pubmed_by_queries/pubmed_by_queries/0.0.2", + "tool_shed_repository": { + "changeset_revision": "02e46a96e98a", + "name": "pubmed_by_queries", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"abstract\": \"false\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"number\": \"500\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.2", + "type": "tool", + "uuid": "918db7a9-14d9-4cab-85fd-34d8791d28d3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0813cbe0-f6e4-4e3a-a85b-b443e5f97332" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pmids_to_pubtator_matrix/pmids_to_pubtator_matrix/0.0.2", + "errors": null, + "id": 2, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PMIDs to PubTator", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 432.5, + "height": 112, + "left": 854, + "right": 1054, + "top": 320.5, + "width": 200, + "x": 854, + "y": 320.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pmids_to_pubtator_matrix/pmids_to_pubtator_matrix/0.0.2", + "tool_shed_repository": { + "changeset_revision": "69714f06f18b", + "name": "pmids_to_pubtator_matrix", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"byid\": \"false\", \"categories\": [\"Gene\", \"Disease\"], \"input\": {\"__class__\": \"ConnectedValue\"}, \"number\": \"100\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.2", + "type": "tool", + "uuid": "4ffbee0f-d699-49e3-bf5d-50520d273ab1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "02b09bfc-bfc1-47d7-b389-04d926e6b5b8" + } + ] + }, + { + "annotation": "", + "content_id": "interactive_tool_simtext_app", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + }, + "matrix": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "simtext_app", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 346.5, + "height": 122, + "left": 1089, + "right": 1289, + "top": 224.5, + "width": 200, + "x": 1089, + "y": 224.5 + }, + "post_job_actions": {}, + "tool_id": "interactive_tool_simtext_app", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"matrix\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.2", + "type": "tool", + "uuid": "aa5c3877-6243-4a19-92a6-3530c2f57d22", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "05e1fd38-276e-42d0-9c9c-60ed7c2c22c9" + } + ] + } + ], + "parent_id": "statistics/text-mining_simtext", + "path": "topics/statistics/tutorials/text-mining_simtext/workflows/main_workflow.ga", + "tags": [ + "text-mining", + "statistics", + "visualisation", + "PubMed", + "PubTator" + ], + "test_results": null, + "tests": false, + "title": "Simtext training workflow", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-text-mining_simtext/versions/main-workflow", + "tutorial_id": "text-mining_simtext", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/text-mining_simtext/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/text-mining_simtext/workflows/main_workflow.html", + "version": 1, + "wfid": "statistics-text-mining_simtext", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "interactive_tool_simtext_app", + "toolshed.g2.bx.psu.edu/repos/iuc/pmids_to_pubtator_matrix/pmids_to_pubtator_matrix/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/pubmed_by_queries/pubmed_by_queries/0.0.2" + ], + "workflowhub_id": "1310" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.4638516" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/gpu_jupyter_lab/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + } + ], + "dir": "topics/statistics/tutorials/gpu_jupyter_lab", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/gpu_jupyter_lab", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-09", + "objectives": [ + "Learn to use Jupyterlab - an online Python editor designed for developing AI algorithms", + "Explore several of its features such as Git, workflow of jupyter notebook, integration to Galaxy", + "Develop AI algorithms using Tensorflow", + "Send long-running jobs to Galaxy's cluster and save results in its history", + "Reproduce results from recent scientific publications - COVID CT scan segmentation and 3D protein structure prediction" + ], + "pageviews": 1101, + "pub_date": "2022-04-06", + "questions": [ + "How to use Jupyterlab and it several features?", + "How to use it for creating input datasets and writing artificial intelligence (AI) algorithms?" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "jupyterlab" + ], + "type": "internal" + }, + { + "topic_name": "statistics", + "tutorials": [ + "intro_deep_learning" + ], + "type": "internal" + } + ], + "short_id": "T00266", + "short_tools": [ + "Cut1", + "Filter1", + "interactive_tool_ml_jupyter_notebook" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools", + "machine-learning", + "deep-learning", + "jupyter-lab", + "image-segmentation", + "protein-3D-structure" + ], + "time_estimation": "1H", + "title": "A Docker-based interactive Jupyterlab powered by GPU for artificial intelligence in Galaxy", + "tools": [ + "Cut1", + "Filter1", + "interactive_tool_ml_jupyter_notebook" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gpu_jupyter_lab", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/gpu_jupyter_lab/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/gpu_jupyter_lab/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/gpu_jupyter_lab/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 79, + "visitors": 846, + "workflows": [ + { + "creators": [], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nIPynb notebook\"]\n 1[label=\"train_rows\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_rows\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_rows_labels\"]\n 4[label=\"GPU enabled Interactive Jupyter Notebook for Machine Learning\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"out_file1\"]\n 2 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"Cut\"]\n 4 -> 5 [label=\"output_collection\"]\n}", + "history": [ + { + "hash": "a13a2df4e05c8a59491ec3c2e896f9a2d6e57c43", + "message": "add get data section", + "num": 1, + "short_hash": "a13a2df4e", + "unix": "1673612716" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "IPynb notebook" + } + ], + "label": "IPynb notebook", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 49.46180725097656 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "9ddc6af5-38e4-4e13-9376-3540a8f94afb", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_rows" + } + ], + "label": "test_rows", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3.923614501953125, + "top": 293.4548645019531 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "48752f10-3b93-4721-aac6-9217c9285e24", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_rows_labels" + } + ], + "label": "test_rows_labels", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2.986114501953125, + "top": 389.4618225097656 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "d4e139b9-c90d-49b0-9600-dae8de4c04e5", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nIPynb notebook\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"train_rows\"];\n 2[\"\u2139\ufe0f Input Dataset\\ntest_rows\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\ntest_rows_labels\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"GPU enabled Interactive Jupyter Notebook for Machine Learning\"];\n 0 -->|output| 4;\n 1 -->|out_file1| 4;\n 2 -->|output| 4;\n 3 -->|output| 4;\n 5[\"Cut\"];\n 4 -->|output_collection| 5;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "gpu_jupytool", + "outputs": [ + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "runtime parameter for tool Filter", + "name": "input" + } + ], + "label": "train_rows", + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 6.90972900390625, + "top": 166.4757080078125 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "new_train_rows" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c3==0\", \"header_lines\": \"1\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "25b59910-1d66-4248-98a4-0a3e23193551", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "09c60184-4418-4a83-8d7c-eeac4cdca49e" + } + ] + }, + { + "annotation": "", + "content_id": "interactive_tool_ml_jupyter_notebook", + "errors": null, + "id": 4, + "input_connections": { + "mode|ipynb": { + "id": 0, + "output_name": "output" + }, + "user_inputs_0|input_type|input_value": { + "id": 1, + "output_name": "out_file1" + }, + "user_inputs_1|input_type|input_value": { + "id": 2, + "output_name": "output" + }, + "user_inputs_2|input_type|input_value": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool GPU enabled Interactive Jupyter Notebook for Machine Learning", + "name": "mode" + } + ], + "label": null, + "name": "GPU enabled Interactive Jupyter Notebook for Machine Learning", + "outputs": [ + { + "name": "output_collection", + "type": "input" + }, + { + "name": "jupyter_notebook", + "type": "ipynb" + } + ], + "position": { + "left": 307.3437805175781, + "top": 0.0 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput_collection": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output_collection" + }, + "ChangeDatatypeActionoutput_dataset": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output_dataset" + } + }, + "tool_id": "interactive_tool_ml_jupyter_notebook", + "tool_state": "{\"mode\": {\"mode_select\": \"previous\", \"__current_case__\": 1, \"ipynb\": {\"__class__\": \"RuntimeValue\"}, \"run_it\": \"true\"}, \"user_inputs\": [{\"__index__\": 0, \"input_name\": \"train\", \"description\": \"\", \"input_type\": {\"input_type_selector\": \"dataset\", \"__current_case__\": 0, \"input_value\": {\"__class__\": \"RuntimeValue\"}}}, {\"__index__\": 1, \"input_name\": \"test\", \"description\": \"\", \"input_type\": {\"input_type_selector\": \"dataset\", \"__current_case__\": 0, \"input_value\": {\"__class__\": \"RuntimeValue\"}}}, {\"__index__\": 2, \"input_name\": \"testlabels\", \"description\": \"\", \"input_type\": {\"input_type_selector\": \"dataset\", \"__current_case__\": 0, \"input_value\": {\"__class__\": \"RuntimeValue\"}}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2", + "type": "tool", + "uuid": "b0563c69-10cd-4024-b5de-309c828b8ea2", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_collection", + "uuid": "fe942416-e111-40c9-8b90-1102348a5b2c" + }, + { + "label": null, + "output_name": "jupyter_notebook", + "uuid": "5a38221b-92db-4b48-9b4f-a5c8ecd6f8af" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "output_collection" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 617.9861755371094, + "top": 52.44792175292969 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1\", \"delimiter\": \"C\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "0909fb62-c832-4d1d-9d95-5b8ebac25dae", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "fd1c2370-a25e-41d3-8351-fb3aae79c394" + } + ] + } + ], + "parent_id": "statistics/gpu_jupyter_lab", + "path": "topics/statistics/tutorials/gpu_jupyter_lab/workflows/gpu_jupyterlab_as_jupytool.ga", + "tags": [], + "test_results": null, + "tests": false, + "title": "gpu_jupytool", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-gpu_jupyter_lab/versions/gpu-jupyterlab-as-jupytool", + "tutorial_id": "gpu_jupyter_lab", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/gpu_jupyter_lab/workflows/gpu_jupyterlab_as_jupytool.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/gpu_jupyter_lab/workflows/gpu_jupyterlab_as_jupytool.html", + "version": 1, + "wfid": "statistics-gpu_jupyter_lab", + "wfname": "gpu-jupyterlab-as-jupytool", + "workflow": "gpu_jupyterlab_as_jupytool.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "interactive_tool_ml_jupyter_notebook" + ], + "workflowhub_id": "1325" + } + ], + "zenodo_link": "https://zenodo.org/record/6091361" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "plotly_ml_performance_plots", + "owner": "bgruening", + "revisions": "1c5dcef5ce0f", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "plotly_ml_performance_plots", + "owner": "bgruening", + "revisions": "f234e2e59d76", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_build_pipeline", + "owner": "bgruening", + "revisions": "4c4ec859c31a", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_ensemble", + "owner": "bgruening", + "revisions": "060ca94ac049", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_generalized_linear", + "owner": "bgruening", + "revisions": "d4808d5b83da", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_nn_classifier", + "owner": "bgruening", + "revisions": "8b1b2b91f8d0", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_searchcv", + "owner": "bgruening", + "revisions": "7626ea9c2e1b", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_svm_classifier", + "owner": "bgruening", + "revisions": "80852884053f", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: plotly_ml_performance_plots\n owner: bgruening\n revisions: 1c5dcef5ce0f\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: plotly_ml_performance_plots\n owner: bgruening\n revisions: f234e2e59d76\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_build_pipeline\n owner: bgruening\n revisions: 4c4ec859c31a\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_ensemble\n owner: bgruening\n revisions: 060ca94ac049\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_generalized_linear\n owner: bgruening\n revisions: d4808d5b83da\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_nn_classifier\n owner: bgruening\n revisions: 8b1b2b91f8d0\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_searchcv\n owner: bgruening\n revisions: 7626ea9c2e1b\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_svm_classifier\n owner: bgruening\n revisions: 80852884053f\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/classification_machinelearning/tutorial.json", + "contributors": [ + { + "email": "khanteymoori@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "khanteymoori", + "joined": "2019-07", + "name": "Alireza Khanteymoori", + "orcid": "0000-0001-6811-9196", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khanteymoori/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khanteymoori.json" + }, + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "simonbray", + "joined": "2019-05", + "name": "Simon Bray", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/simonbray/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/simonbray.json" + } + ], + "dir": "topics/statistics/tutorials/classification_machinelearning", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/classification_machinelearning", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Classification is a supervised approach in machine learning.", + "For classification tasks, data is divided into training and test sets.", + "Using classification, the samples are learned using the training set and predicted using the test set.", + "For each classification algorithm, it parameters should be optimised based on the dataset.", + "Machine learning algorithms can be applied to chemical datasets to predict important properties." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-12", + "objectives": [ + "Learn classification background", + "Learn what a quantitative structure-analysis relationship (QSAR) model is and how it can be constructed in Galaxy", + "Learn to apply logistic regression, k-nearest neighbors, support verctor machines, random forests and bagging algorithms", + "Learn how visualizations can be used to analyze the classification results" + ], + "pageviews": 3064, + "pub_date": "2020-04-30", + "questions": [ + "What is classification and how we can use classification techniques?" + ], + "recordings": [ + { + "captioners": [ + "anuprulez" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H50M", + "speakers": [ + "anuprulez" + ], + "youtube_id": "Gz2OdRPS2Nk" + } + ], + "short_id": "T00262", + "short_tools": [ + "sklearn_ensemble", + "sklearn_nn_classifier", + "sklearn_generalized_linear", + "plotly_ml_performance_plots", + "Remove beginning1", + "sklearn_build_pipeline", + "sklearn_searchcv", + "sklearn_svm_classifier" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Classification in Machine Learning", + "tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_ml_performance_plots/plotly_ml_performance_plots/0.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_ml_performance_plots/plotly_ml_performance_plots/0.4", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_generalized_linear/sklearn_generalized_linear/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_nn_classifier/sklearn_nn_classifier/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.11.0" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "classification_machinelearning", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/classification_machinelearning/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/classification_machinelearning/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/classification_machinelearning/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 119, + "visitors": 2004, + "workflows": [ + { + "creators": [ + { + "class": "Organization", + "identifier": "https://orcid.org/0000-0002-2068-4695", + "name": "Anup Kumar" + } + ], + "description": "Classification in Machine Learning", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrain_rows.csv\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_rows_labels.csv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_rows.csv\"]\n 3[label=\"Pipeline Builder\"]\n 4[label=\"Generalized linear models\"]\n 0 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Nearest Neighbors Classification\"]\n 0 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Support vector machines SVMs\"]\n 0 -> 6 [label=\"output\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Ensemble methods\"]\n 0 -> 7 [label=\"output\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Remove beginning\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"Hyperparameter Search\"]\n 3 -> 9 [label=\"outfile\"]\n 0 -> 9 [label=\"output\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Generalized linear models\"]\n 2 -> 10 [label=\"output\"]\n 4 -> 10 [label=\"outfile_fit\"]\n 11[label=\"Nearest Neighbors Classification\"]\n 2 -> 11 [label=\"output\"]\n 5 -> 11 [label=\"outfile_fit\"]\n 12[label=\"Support vector machines SVMs\"]\n 2 -> 12 [label=\"output\"]\n 6 -> 12 [label=\"outfile_fit\"]\n 13[label=\"Ensemble methods\"]\n 2 -> 13 [label=\"output\"]\n 7 -> 13 [label=\"outfile_fit\"]\n 14[label=\"Ensemble methods\"]\n 2 -> 14 [label=\"output\"]\n 9 -> 14 [label=\"outfile_object\"]\n 15[label=\"Plot confusion matrix, precision, recall and ROC and AUC curves\"]\n 8 -> 15 [label=\"out_file1\"]\n 10 -> 15 [label=\"outfile_predict\"]\n 4 -> 15 [label=\"outfile_fit\"]\n 16[label=\"Plot confusion matrix, precision, recall and ROC and AUC curves\"]\n 1 -> 16 [label=\"output\"]\n 11 -> 16 [label=\"outfile_predict\"]\n 5 -> 16 [label=\"outfile_fit\"]\n 17[label=\"Plot confusion matrix, precision, recall and ROC and AUC curves\"]\n 1 -> 17 [label=\"output\"]\n 12 -> 17 [label=\"outfile_predict\"]\n 6 -> 17 [label=\"outfile_fit\"]\n 18[label=\"Plot confusion matrix, precision, recall and ROC and AUC curves\"]\n 1 -> 18 [label=\"output\"]\n 13 -> 18 [label=\"outfile_predict\"]\n 7 -> 18 [label=\"outfile_fit\"]\n 19[label=\"Plot confusion matrix, precision, recall and ROC and AUC curves\"]\n 1 -> 19 [label=\"output\"]\n 14 -> 19 [label=\"outfile_predict\"]\n 9 -> 19 [label=\"outfile_object\"]\n}", + "history": [ + { + "hash": "6439ff1d5b866f5eb249eff701851b538e0972f0", + "message": "rename workflow file and add workflow test", + "num": 8, + "short_hash": "6439ff1d5", + "unix": "1716281718" + }, + { + "hash": "502f6e6508564d450f0c1625e0324f11e36f14d0", + "message": "rename workflow file and add workflow test", + "num": 7, + "short_hash": "502f6e650", + "unix": "1716281168" + }, + { + "hash": "e6df909ee94fbedab4bfe0ad62927f8bbf2d5d4a", + "message": "update workflows due to tool upgrade", + "num": 6, + "short_hash": "e6df909ee", + "unix": "1715938213" + }, + { + "hash": "bdfa0296c91ec296d171375c5da00a304aa4e165", + "message": "Update ml_classification.ga", + "num": 5, + "short_hash": "bdfa0296c", + "unix": "1588252485" + }, + { + "hash": "2680ad593256d485316ebd30e52dbcf234f95211", + "message": "some fixes", + "num": 4, + "short_hash": "2680ad593", + "unix": "1588243701" + }, + { + "hash": "becca5c2776328e21e9acbb7da6601717fde7976", + "message": "tags and annotation are added to workflow", + "num": 3, + "short_hash": "becca5c27", + "unix": "1588181809" + }, + { + "hash": "0da8a889e86da886397ebb454a695e3286214eda", + "message": "workflow format is changed", + "num": 2, + "short_hash": "0da8a889e", + "unix": "1588180978" + }, + { + "hash": "28d2cd66bda9c8aa8f5fb0d2f4685af2b4b85820", + "message": "workflow is added", + "num": 1, + "short_hash": "28d2cd66b", + "unix": "1588179550" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "train_rows.csv" + } + ], + "label": "train_rows.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 21.98957654096855, + "top": 439.5676907009551 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2b808085-c925-4327-8310-e45702344b59", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_rows_labels.csv" + } + ], + "label": "test_rows_labels.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 13.333333333333329, + "top": 532.2417024769386 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "b04a2c8d-d019-49cd-8ef3-f2565cc9a2d5", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_rows.csv" + } + ], + "label": "test_rows.csv", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0.0, + "top": 630.9083691436052 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0c0a1583-9e8c-4382-af2b-feae2d1fc845", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ntrain_rows.csv\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ntest_rows_labels.csv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ntest_rows.csv\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Pipeline Builder\"];\n 4[\"Generalized linear models\"];\n 0 -->|output| 4;\n 0 -->|output| 4;\n 5[\"Nearest Neighbors Classification\"];\n 0 -->|output| 5;\n 0 -->|output| 5;\n 6[\"Support vector machines SVMs\"];\n 0 -->|output| 6;\n 0 -->|output| 6;\n 7[\"Ensemble methods\"];\n 0 -->|output| 7;\n 0 -->|output| 7;\n 8[\"Remove beginning\"];\n 1 -->|output| 8;\n 9[\"Hyperparameter Search\"];\n 3 -->|outfile| 9;\n 0 -->|output| 9;\n 0 -->|output| 9;\n 10[\"Generalized linear models\"];\n 2 -->|output| 10;\n 4 -->|outfile_fit| 10;\n 11[\"Nearest Neighbors Classification\"];\n 2 -->|output| 11;\n 5 -->|outfile_fit| 11;\n 12[\"Support vector machines SVMs\"];\n 2 -->|output| 12;\n 6 -->|outfile_fit| 12;\n 13[\"Ensemble methods\"];\n 2 -->|output| 13;\n 7 -->|outfile_fit| 13;\n 14[\"Ensemble methods\"];\n 2 -->|output| 14;\n 9 -->|outfile_object| 14;\n 15[\"Plot confusion matrix, precision, recall and ROC and AUC curves\"];\n 8 -->|out_file1| 15;\n 10 -->|outfile_predict| 15;\n 4 -->|outfile_fit| 15;\n 16[\"Plot confusion matrix, precision, recall and ROC and AUC curves\"];\n 1 -->|output| 16;\n 11 -->|outfile_predict| 16;\n 5 -->|outfile_fit| 16;\n 17[\"Plot confusion matrix, precision, recall and ROC and AUC curves\"];\n 1 -->|output| 17;\n 12 -->|outfile_predict| 17;\n 6 -->|outfile_fit| 17;\n 18[\"Plot confusion matrix, precision, recall and ROC and AUC curves\"];\n 1 -->|output| 18;\n 13 -->|outfile_predict| 18;\n 7 -->|outfile_fit| 18;\n 19[\"Plot confusion matrix, precision, recall and ROC and AUC curves\"];\n 1 -->|output| 19;\n 14 -->|outfile_predict| 19;\n 9 -->|outfile_object| 19;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "ml_classification", + "outputs": [], + "parent_id": "statistics/classification_machinelearning", + "path": "topics/statistics/tutorials/classification_machinelearning/workflows/ml_classification.ga", + "tags": [ + "statistics", + "classification", + "ml", + "cheminformatics" + ], + "test_results": null, + "tests": true, + "title": "ml_classification", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-classification_machinelearning/versions/ml-classification", + "tutorial_id": "classification_machinelearning", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_machinelearning/workflows/ml_classification.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/classification_machinelearning/workflows/ml_classification.html", + "version": 2, + "wfid": "statistics-classification_machinelearning", + "wfname": "ml-classification", + "workflow": "ml_classification.ga", + "workflow_tools": [ + "Remove beginning1", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_ml_performance_plots/plotly_ml_performance_plots/0.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_generalized_linear/sklearn_generalized_linear/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_nn_classifier/sklearn_nn_classifier/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_svm_classifier/sklearn_svm_classifier/1.0.11.0" + ], + "workflowhub_id": "1331" + } + ], + "zenodo_link": "https://zenodo.org/record/3738729" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "keras_model_builder", + "owner": "bgruening", + "revisions": "66d7efc06000", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_model_config", + "owner": "bgruening", + "revisions": "f22a9297440f", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_train_and_eval", + "owner": "bgruening", + "revisions": "818f9b69d8a0", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ml_visualization_ex", + "owner": "bgruening", + "revisions": "1588f9076e32", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "model_prediction", + "owner": "bgruening", + "revisions": "9991c4ddde14", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: keras_model_builder\n owner: bgruening\n revisions: 66d7efc06000\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_model_config\n owner: bgruening\n revisions: f22a9297440f\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_train_and_eval\n owner: bgruening\n revisions: 818f9b69d8a0\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ml_visualization_ex\n owner: bgruening\n revisions: 1588f9076e32\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: model_prediction\n owner: bgruening\n revisions: 9991c4ddde14\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/RNN/tutorial.json", + "contributors": [ + { + "email": "kxk302@gmail.com", + "id": "kxk302", + "joined": "2021-02", + "name": "Kaivan Kamali", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kxk302/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kxk302.json" + } + ], + "dir": "topics/statistics/tutorials/RNN", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "statistics", + "tutorials": [ + "CNN" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "statistics/RNN", + "inexact_supported_servers": [ + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": 22102, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand the difference between feedforward neural networks (FNN) and RNN", + "Learn various RNN types and architectures", + "Learn how to create a neural network using Galaxy's deep learning tools", + "Solve a sentiment analysis problem on IMDB movie review dataset using RNN in Galaxy" + ], + "pageviews": 5475281, + "pub_date": "2021-02-23", + "questions": [ + "What is a recurrent neural network (RNN)?", + "What are some applications of RNN?" + ], + "recordings": [ + { + "captioners": [ + "kxk302" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "50M", + "speakers": [ + "kxk302" + ], + "youtube_id": "1dwzEhjOAmw" + } + ], + "requirements": [ + { + "topic_name": "statistics", + "tutorials": [ + "intro_deep_learning", + "FNN" + ], + "type": "internal" + } + ], + "short_id": "T00259", + "short_tools": [ + "keras_model_builder", + "keras_model_config", + "model_prediction", + "keras_train_and_eval", + "ml_visualization_ex" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Deep Learning (Part 2) - Recurrent neural networks (RNN)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.10.0" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "RNN", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/RNN/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/RNN/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/RNN/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 198, + "visitors": 1994160, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-6585-3619", + "name": "Kaivan Kamali" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nX_test\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nX_train\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ny_test\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ny_train\"]\n 4[label=\"Create a deep learning model architecture\"]\n 5[label=\"Create deep learning model\"]\n 4 -> 5 [label=\"outfile\"]\n 6[label=\"Deep learning training and evaluation\"]\n 5 -> 6 [label=\"outfile\"]\n 1 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Model Prediction\"]\n 6 -> 7 [label=\"outfile_object\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Machine Learning Visualization Extension\"]\n 7 -> 8 [label=\"outfile_predict\"]\n 2 -> 8 [label=\"output\"]\n}", + "history": [ + { + "hash": "f6fe5628d85d4263477b72d8c1ded5ab473fb97a", + "message": "Fixed the extra WF step. Fixed instructions in model prediction", + "num": 2, + "short_hash": "f6fe5628d", + "unix": "1706115636" + }, + { + "hash": "72508012689459bf074ee58d075b7e92d91044f0", + "message": "Got rid of . in workflow name", + "num": 1, + "short_hash": "725080126", + "unix": "1697492492" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "X_test" + } + ], + "label": "X_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "c84eb1e9-61dc-4d37-b13e-999665b31337", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "X_train" + } + ], + "label": "X_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 120 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0e7e1ec8-f422-4349-889a-4e3e66670c2f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "y_test" + } + ], + "label": "y_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 240 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ec09b380-de33-44e1-bce4-c203c10c47d6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "y_train" + } + ], + "label": "y_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 360 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e0784c26-64c5-4135-ad67-03c62a362b7b", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nX_test\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nX_train\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ny_test\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\ny_train\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Create a deep learning model architecture\"];\n 5[\"Create deep learning model\"];\n 4 -->|outfile| 5;\n 6[\"Deep learning training and evaluation\"];\n 5 -->|outfile| 6;\n 1 -->|output| 6;\n 3 -->|output| 6;\n 7[\"Model Prediction\"];\n 6 -->|outfile_object| 7;\n 0 -->|output| 7;\n 8[\"Machine Learning Visualization Extension\"];\n 7 -->|outfile_predict| 8;\n 2 -->|output| 8;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Intro_To_RNN_v1_0_10_0", + "outputs": [], + "parent_id": "statistics/RNN", + "path": "topics/statistics/tutorials/RNN/workflows/Intro_To_RNN_v1_0_10_0.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Intro_To_RNN_v1_0_10_0", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-RNN/versions/intro-to-rnn-v1-0-10-0", + "tutorial_id": "RNN", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/RNN/workflows/Intro_To_RNN_v1_0_10_0.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/RNN/workflows/Intro_To_RNN_v1_0_10_0.html", + "version": 2, + "wfid": "statistics-RNN", + "wfname": "intro-to-rnn-v1-0-10-0", + "workflow": "Intro_To_RNN_v1_0_10_0.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.10.0" + ], + "workflowhub_id": "1273" + } + ], + "zenodo_link": "https://zenodo.org/record/4477881" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "keras_model_builder", + "owner": "bgruening", + "revisions": "772e0e89fc68", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_model_config", + "owner": "bgruening", + "revisions": "8a794e6d3388", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_train_and_eval", + "owner": "bgruening", + "revisions": "f1b9a42d6809", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ml_visualization_ex", + "owner": "bgruening", + "revisions": "05143043ca13", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "model_prediction", + "owner": "bgruening", + "revisions": "83228baae3c5", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: keras_model_builder\n owner: bgruening\n revisions: 772e0e89fc68\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_model_config\n owner: bgruening\n revisions: 8a794e6d3388\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_train_and_eval\n owner: bgruening\n revisions: f1b9a42d6809\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ml_visualization_ex\n owner: bgruening\n revisions: 05143043ca13\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: model_prediction\n owner: bgruening\n revisions: 83228baae3c5\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/intro_deep_learning/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + }, + { + "email": "khanteymoori@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "khanteymoori", + "joined": "2019-07", + "name": "Alireza Khanteymoori", + "orcid": "0000-0001-6811-9196", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khanteymoori/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khanteymoori.json" + } + ], + "dir": "topics/statistics/tutorials/intro_deep_learning", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/intro_deep_learning", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Multiple tools to constitute a neural network architecture", + "Interpretation of predictions using visualisation tools" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Learn basic principles of deep learning", + "Learn about how to create an end-to-end neural network architecture", + "Learn about Galaxy deep learning tools", + "Learn how to interpret predictions" + ], + "pageviews": 2458, + "pub_date": "2020-03-26", + "questions": [ + "What are deep learning and neural networks?", + "Why is it useful?", + "How to create a neural network architecture for classification?" + ], + "short_id": "T00268", + "short_tools": [ + "keras_model_builder", + "keras_model_config", + "model_prediction", + "keras_train_and_eval", + "ml_visualization_ex" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Introduction to deep learning", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.8.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.8.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.8.2" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "intro_deep_learning", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/intro_deep_learning/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/intro_deep_learning/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/intro_deep_learning/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 101, + "visitors": 1892, + "workflows": [ + { + "creators": [], + "description": "Introduction to Deep Learning", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nX_test\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nX_train\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ny_test\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ny_train\"]\n 4[label=\"Create a deep learning model architecture\"]\n 5[label=\"Create deep learning model\"]\n 4 -> 5 [label=\"outfile\"]\n 6[label=\"Deep learning training and evaluation\"]\n 5 -> 6 [label=\"outfile\"]\n 1 -> 6 [label=\"output\"]\n 3 -> 6 [label=\"output\"]\n 7[label=\"Model Prediction\"]\n 6 -> 7 [label=\"outfile_object\"]\n 6 -> 7 [label=\"outfile_weights\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"Machine Learning Visualization Extension\"]\n 7 -> 8 [label=\"outfile_predict\"]\n 2 -> 8 [label=\"output\"]\n}", + "history": [ + { + "hash": "662ff162583df9ededd624afd29945d5c799df9b", + "message": "Fixed input data labels (they were one off)", + "num": 4, + "short_hash": "662ff1625", + "unix": "1611671063" + }, + { + "hash": "6069e5afbdd15fea3ec1b9d22899c2cabdcd4abf", + "message": "Added label for input data.", + "num": 3, + "short_hash": "6069e5afb", + "unix": "1611603134" + }, + { + "hash": "3250de162eff1978f2cc80d7732bad186d7a0006", + "message": "Tagged the workflow and added a title.", + "num": 2, + "short_hash": "3250de162", + "unix": "1611418238" + }, + { + "hash": "55c3b30a50a0c1cbfb02a7f028866d91ade386cf", + "message": "Added workflow to Deep Learning Tutorial", + "num": 1, + "short_hash": "55c3b30a5", + "unix": "1611351590" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "X_test" + } + ], + "label": "X_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "46c0a33e-73d7-4413-8872-dea66576377e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "X_train" + } + ], + "label": "X_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3939491d-5fc0-4eb0-9ece-32f87782d456", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "y_test" + } + ], + "label": "y_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "7b284798-4e87-476c-9af1-514df24176f8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "y_train" + } + ], + "label": "y_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d145f3ff-f7c9-4873-bb59-79d089262d6e", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nX_test\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nX_train\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ny_test\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\ny_train\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Create a deep learning model architecture\"];\n 5[\"Create deep learning model\"];\n 4 -->|outfile| 5;\n 6[\"Deep learning training and evaluation\"];\n 5 -->|outfile| 6;\n 1 -->|output| 6;\n 3 -->|output| 6;\n 7[\"Model Prediction\"];\n 6 -->|outfile_object| 7;\n 6 -->|outfile_weights| 7;\n 0 -->|output| 7;\n 8[\"Machine Learning Visualization Extension\"];\n 7 -->|outfile_predict| 8;\n 2 -->|output| 8;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Intro_To_Deep_Learning", + "outputs": [], + "parent_id": "statistics/intro_deep_learning", + "path": "topics/statistics/tutorials/intro_deep_learning/workflows/Intro_To_Deep_Learning.ga", + "tags": [ + "statistics", + "deeplearning", + "ml" + ], + "test_results": null, + "tests": false, + "title": "Intro_To_Deep_Learning", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-intro_deep_learning/versions/intro-to-deep-learning", + "tutorial_id": "intro_deep_learning", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/intro_deep_learning/workflows/Intro_To_Deep_Learning.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/intro_deep_learning/workflows/Intro_To_Deep_Learning.html", + "version": 1, + "wfid": "statistics-intro_deep_learning", + "wfname": "intro-to-deep-learning", + "workflow": "Intro_To_Deep_Learning.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.8.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.8.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.8.2" + ], + "workflowhub_id": "1298" + } + ], + "zenodo_link": "https://zenodo.org/record/3706539" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "plotly_parallel_coordinates_plot", + "owner": "bgruening", + "revisions": "7b21a9b5922f", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "plotly_regression_performance_plots", + "owner": "bgruening", + "revisions": "389227fa1864", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_build_pipeline", + "owner": "bgruening", + "revisions": "840f29aad145", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_ensemble", + "owner": "bgruening", + "revisions": "1a53edc4b438", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_searchcv", + "owner": "bgruening", + "revisions": "25ab6b4e376e", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: plotly_parallel_coordinates_plot\n owner: bgruening\n revisions: 7b21a9b5922f\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: plotly_regression_performance_plots\n owner: bgruening\n revisions: 389227fa1864\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_build_pipeline\n owner: bgruening\n revisions: 840f29aad145\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_ensemble\n owner: bgruening\n revisions: 1a53edc4b438\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_searchcv\n owner: bgruening\n revisions: 25ab6b4e376e\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/age-prediction-with-ml/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg" + ], + "id": "polkhe", + "joined": "2017-09", + "name": "Ekaterina Polkh", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/polkhe/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/polkhe.json" + }, + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + } + ], + "dir": "topics/statistics/tutorials/age-prediction-with-ml", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/age-prediction-with-ml", + "inexact_supported_servers": [ + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Various machine learning algorithms should be used to find the best ones", + "For each machine learning algorithm, it hyperparameters should be optimised based on the dataset", + "Feature selection should be done for high-dimensional datasets" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "Learn ageing biomarkers from RNA-seq and DNA methylation datasets", + "Apply regression based machine learning algorithms", + "Learn feature selection and hyperparameter optimisation" + ], + "pageviews": 20392, + "pub_date": "2019-01-25", + "questions": [ + "How to use machine learning to create predictive models from biological datasets (RNA-seq and DNA methylation)?" + ], + "short_id": "T00261", + "short_tools": [ + "sklearn_ensemble", + "plotly_regression_performance_plots", + "sklearn_build_pipeline", + "sklearn_searchcv", + "plotly_parallel_coordinates_plot" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Age prediction using machine learning", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_parallel_coordinates_plot/plotly_parallel_coordinates_plot/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.8.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.8.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.8.1" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "age-prediction-with-ml", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/age-prediction-with-ml/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/age-prediction-with-ml/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/age-prediction-with-ml/tutorial.json" + }, + "version": 11, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 40, + "visitors": 12446, + "workflows": [ + { + "creators": [], + "description": "Age prediction using machine learning", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Pipeline Builder\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrain_dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_dataset\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_labels_dataset\"]\n 4[label=\"Hyperparameter Search\"]\n 0 -> 4 [label=\"outfile_params\"]\n 0 -> 4 [label=\"outfile\"]\n 1 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Ensemble methods\"]\n 2 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"outfile_object\"]\n 6[label=\"Plot actual vs predicted curves and residual plots\"]\n 5 -> 6 [label=\"outfile_predict\"]\n 3 -> 6 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 8, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "f7f017f3329dac306d19ca406c5e28f75bbf4ef8", + "message": "dna and rna capitals", + "num": 7, + "short_hash": "f7f017f33", + "unix": "1579092000" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 6, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "cad9f0a86642e5d5580ac0a3a2f7ffef6cd56311", + "message": "Merge branch 'master' into ml_tools", + "num": 5, + "short_hash": "cad9f0a86", + "unix": "1577658485" + }, + { + "hash": "0c8165c369cbc93a90c6f963d9fd5fcda86d4c5d", + "message": "update workflow", + "num": 4, + "short_hash": "0c8165c36", + "unix": "1577390920" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 3, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "9d78b64348e1f3e59dc99c6860d4ae3c6a0619cc", + "message": "Add workflows", + "num": 2, + "short_hash": "9d78b6434", + "unix": "1560616699" + }, + { + "hash": "17a20f8e6367994c2dae74c93846a738275b9ee6", + "message": "Fine-tuning formatting", + "num": 1, + "short_hash": "17a20f8e6", + "unix": "1548412498" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "train_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 359.8828125, + "top": 515.01953125 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "7bcdbca8-beb1-4015-85f8-a289e0d5baa6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b53c6d64-e5a0-4fc9-bca1-6793352d93c5" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "test_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 409.375, + "top": 641.875 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "3bd54821-fc35-47ef-830f-eff3db757252", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4588ddcc-8132-46a9-b1ed-00d8897790e0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "test_labels_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 944.90234375, + "top": 278.88671875 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "40f96b3a-c0af-481b-beb0-4f98d711b5a5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fd8d51f2-0b16-4bab-97b8-b3e5a3f5c637" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"Pipeline Builder\"];\n 1[\"\u2139\ufe0f Input Dataset\\ntrain_dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ntest_dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\ntest_labels_dataset\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Hyperparameter Search\"];\n 0 -->|outfile_params| 4;\n 0 -->|outfile| 4;\n 1 -->|output| 4;\n 1 -->|output| 4;\n 5[\"Ensemble methods\"];\n 2 -->|output| 5;\n 4 -->|outfile_object| 5;\n 6[\"Plot actual vs predicted curves and residual plots\"];\n 5 -->|outfile_predict| 6;\n 3 -->|output| 6;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Age Prediction DNA Methylation", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.8.1", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Pipeline Builder", + "outputs": [ + { + "name": "outfile", + "type": "zip" + }, + { + "name": "outfile_params", + "type": "tabular" + } + ], + "position": { + "left": 220.83984375, + "top": 199.9609375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.8.1", + "tool_shed_repository": { + "changeset_revision": "3f3c6dc38f3e", + "name": "sklearn_build_pipeline", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"final_estimator\": \"{\\\"estimator_selector\\\": {\\\"__current_case__\\\": 2, \\\"selected_estimator\\\": \\\"GradientBoostingRegressor\\\", \\\"selected_module\\\": \\\"ensemble\\\", \\\"text_params\\\": \\\"random_state=42\\\"}}\", \"pipeline_component\": \"[{\\\"__index__\\\": 0, \\\"component_selector\\\": {\\\"__current_case__\\\": 0, \\\"component_type\\\": \\\"None\\\"}}]\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"get_params\": \"\\\"true\\\"\"}", + "tool_version": "1.0.8.1", + "type": "tool", + "uuid": "26db8419-6a23-48d3-bf72-33ca0416e645", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "2a7377ad-1474-4953-bd39-8bcdeccbc046" + }, + { + "label": null, + "output_name": "outfile_params", + "uuid": "19fe7f34-c119-479d-8cad-58338b1f9ce4" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "train_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 359.8828125, + "top": 515.01953125 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "7bcdbca8-beb1-4015-85f8-a289e0d5baa6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b53c6d64-e5a0-4fc9-bca1-6793352d93c5" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "test_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 409.375, + "top": 641.875 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "3bd54821-fc35-47ef-830f-eff3db757252", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "4588ddcc-8132-46a9-b1ed-00d8897790e0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "test_labels_dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 944.90234375, + "top": 278.88671875 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "40f96b3a-c0af-481b-beb0-4f98d711b5a5", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fd8d51f2-0b16-4bab-97b8-b3e5a3f5c637" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.8.1", + "errors": null, + "id": 4, + "input_connections": { + "input_options|infile1": { + "id": 1, + "output_name": "output" + }, + "input_options|infile2": { + "id": 1, + "output_name": "output" + }, + "search_schemes|infile_estimator": { + "id": 0, + "output_name": "outfile" + }, + "search_schemes|search_params_builder|infile_params": { + "id": 0, + "output_name": "outfile_params" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Hyperparameter Search", + "name": "search_schemes" + }, + { + "description": "runtime parameter for tool Hyperparameter Search", + "name": "input_options" + }, + { + "description": "runtime parameter for tool Hyperparameter Search", + "name": "input_options" + } + ], + "label": null, + "name": "Hyperparameter Search", + "outputs": [ + { + "name": "outfile_result", + "type": "tabular" + }, + { + "name": "outfile_object", + "type": "zip" + } + ], + "position": { + "left": 632.44140625, + "top": 124.94140625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.8.1", + "tool_shed_repository": { + "changeset_revision": "c1ca24a1509d", + "name": "sklearn_searchcv", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"search_schemes\": \"{\\\"__current_case__\\\": 0, \\\"infile_estimator\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"is_deep_learning\\\": \\\"false\\\", \\\"options\\\": {\\\"cv_selector\\\": {\\\"__current_case__\\\": 1, \\\"n_splits\\\": \\\"5\\\", \\\"random_state\\\": \\\"3111696\\\", \\\"selected_cv\\\": \\\"KFold\\\", \\\"shuffle\\\": \\\"true\\\"}, \\\"error_score\\\": \\\"false\\\", \\\"iid\\\": \\\"true\\\", \\\"return_train_score\\\": \\\"false\\\", \\\"scoring\\\": {\\\"__current_case__\\\": 26, \\\"primary_scoring\\\": \\\"r2\\\", \\\"secondary_scoring\\\": null}, \\\"verbose\\\": \\\"0\\\"}, \\\"search_params_builder\\\": {\\\"infile_params\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"param_set\\\": [{\\\"__index__\\\": 0, \\\"sp_list\\\": \\\"[25, 50, 75, 100, 200]\\\", \\\"sp_name\\\": \\\"n_estimators\\\"}]}, \\\"selected_search_scheme\\\": \\\"GridSearchCV\\\"}\", \"__rerun_remap_job_id__\": null, \"save\": \"\\\"save_estimator\\\"\", \"input_options\": \"{\\\"__current_case__\\\": 0, \\\"column_selector_options_1\\\": {\\\"__current_case__\\\": 3, \\\"col1\\\": \\\"Age\\\", \\\"selected_column_selector_option\\\": \\\"all_but_by_header_name\\\"}, \\\"column_selector_options_2\\\": {\\\"__current_case__\\\": 2, \\\"col2\\\": \\\"Age\\\", \\\"selected_column_selector_option2\\\": \\\"by_header_name\\\"}, \\\"header1\\\": \\\"true\\\", \\\"header2\\\": \\\"true\\\", \\\"infile1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"infile2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"selected_input\\\": \\\"tabular\\\"}\", \"outer_split\": \"{\\\"__current_case__\\\": 0, \\\"split_mode\\\": \\\"no\\\"}\"}", + "tool_version": "1.0.8.1", + "type": "tool", + "uuid": "4127ab12-dbd9-4888-bcda-b05748a05295", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_object", + "uuid": "48939329-f5f2-445e-bdb3-51dc28629f18" + }, + { + "label": null, + "output_name": "outfile_result", + "uuid": "5b78c8e6-1e98-4798-bab3-285cedbc8d85" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.8.1", + "errors": null, + "id": 5, + "input_connections": { + "selected_tasks|infile_data": { + "id": 2, + "output_name": "output" + }, + "selected_tasks|infile_model": { + "id": 4, + "output_name": "outfile_object" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Ensemble methods", + "name": "selected_tasks" + }, + { + "description": "runtime parameter for tool Ensemble methods", + "name": "selected_tasks" + } + ], + "label": null, + "name": "Ensemble methods", + "outputs": [ + { + "name": "outfile_predict", + "type": "tabular" + } + ], + "position": { + "left": 710.87890625, + "top": 558.92578125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.8.1", + "tool_shed_repository": { + "changeset_revision": "af0523c606a7", + "name": "sklearn_ensemble", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"selected_tasks\": \"{\\\"__current_case__\\\": 0, \\\"header\\\": \\\"true\\\", \\\"infile_data\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"infile_model\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"prediction_options\\\": {\\\"__current_case__\\\": 0, \\\"prediction_option\\\": \\\"predict\\\"}, \\\"selected_task\\\": \\\"load\\\"}\", \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.8.1", + "type": "tool", + "uuid": "559f44ea-0d8b-4fce-85fb-079d010ab90d", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_predict", + "uuid": "d025d2be-6698-49a0-901e-0c9513f72255" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "errors": null, + "id": 6, + "input_connections": { + "infile_input": { + "id": 3, + "output_name": "output" + }, + "infile_output": { + "id": 5, + "output_name": "outfile_predict" + } + }, + "inputs": [], + "label": null, + "name": "Plot actual vs predicted curves and residual plots", + "outputs": [ + { + "name": "output_actual_vs_pred", + "type": "html" + }, + { + "name": "output_scatter_plot", + "type": "html" + }, + { + "name": "output_residual_plot", + "type": "html" + } + ], + "position": { + "left": 1058.3984375, + "top": 452.890625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "tool_shed_repository": { + "changeset_revision": "389227fa1864", + "name": "plotly_regression_performance_plots", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"infile_output\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"infile_input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "0.1", + "type": "tool", + "uuid": "8fd368d0-ef84-4414-9fc9-ef408947a080", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_scatter_plot", + "uuid": "043f8530-e77a-4768-abdc-365ff91127fa" + }, + { + "label": null, + "output_name": "output_actual_vs_pred", + "uuid": "3a0f039e-b4c4-466a-9be9-b7d9ceeb73e7" + }, + { + "label": null, + "output_name": "output_residual_plot", + "uuid": "1ec7ae83-9fd7-4b98-b613-3cb3802211ee" + } + ] + } + ], + "parent_id": "statistics/age-prediction-with-ml", + "path": "topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-dnam.ga", + "tags": [ + "statistics" + ], + "test_results": null, + "tests": false, + "title": "Age Prediction DNA Methylation", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-age-prediction-with-ml/versions/age-prediction-dnam", + "tutorial_id": "age-prediction-with-ml", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-dnam.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-dnam.html", + "version": 6, + "wfid": "statistics-age-prediction-with-ml", + "wfname": "age-prediction-dnam", + "workflow": "age-prediction-dnam.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_regression_performance_plots/plotly_regression_performance_plots/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.8.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_ensemble/sklearn_ensemble/1.0.8.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.8.1" + ], + "workflowhub_id": "1277" + }, + { + "creators": [], + "description": "Age prediction using machine learning", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"Pipeline Builder\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[label=\"Hyperparameter Search\"]\n 0 -> 2 [label=\"outfile_params\"]\n 0 -> 2 [label=\"outfile\"]\n 1 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Parallel Coordinates Plot\"]\n 2 -> 3 [label=\"outfile_result\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 8, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "f7f017f3329dac306d19ca406c5e28f75bbf4ef8", + "message": "dna and rna capitals", + "num": 7, + "short_hash": "f7f017f33", + "unix": "1579092000" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 6, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "cad9f0a86642e5d5580ac0a3a2f7ffef6cd56311", + "message": "Merge branch 'master' into ml_tools", + "num": 5, + "short_hash": "cad9f0a86", + "unix": "1577658485" + }, + { + "hash": "0c8165c369cbc93a90c6f963d9fd5fcda86d4c5d", + "message": "update workflow", + "num": 4, + "short_hash": "0c8165c36", + "unix": "1577390920" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 3, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "9d78b64348e1f3e59dc99c6860d4ae3c6a0619cc", + "message": "Add workflows", + "num": 2, + "short_hash": "9d78b6434", + "unix": "1560616699" + }, + { + "hash": "17a20f8e6367994c2dae74c93846a738275b9ee6", + "message": "Fine-tuning formatting", + "num": 1, + "short_hash": "17a20f8e6", + "unix": "1548412498" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 295.9375, + "top": 391.09375 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "7bcdbca8-beb1-4015-85f8-a289e0d5baa6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f68ac118-2beb-41f3-9a64-41c66162c474" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"Pipeline Builder\"];\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Hyperparameter Search\"];\n 0 -->|outfile_params| 2;\n 0 -->|outfile| 2;\n 1 -->|output| 2;\n 1 -->|output| 2;\n 3[\"Parallel Coordinates Plot\"];\n 2 -->|outfile_result| 3;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Age Prediction RNA-Seq", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.8.1", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Pipeline Builder", + "outputs": [ + { + "name": "outfile", + "type": "zip" + }, + { + "name": "outfile_params", + "type": "tabular" + } + ], + "position": { + "left": 216.9140625, + "top": 222.98828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.8.1", + "tool_shed_repository": { + "changeset_revision": "3f3c6dc38f3e", + "name": "sklearn_build_pipeline", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"final_estimator\": \"{\\\"estimator_selector\\\": {\\\"__current_case__\\\": 1, \\\"selected_estimator\\\": \\\"ElasticNet\\\", \\\"selected_module\\\": \\\"linear_model\\\", \\\"text_params\\\": \\\"random_state=42\\\"}}\", \"pipeline_component\": \"[{\\\"__index__\\\": 0, \\\"component_selector\\\": {\\\"__current_case__\\\": 2, \\\"component_type\\\": \\\"feature_selection\\\", \\\"fs_algorithm_selector\\\": {\\\"__current_case__\\\": 2, \\\"options\\\": {\\\"k\\\": \\\"10\\\"}, \\\"score_func\\\": \\\"f_regression\\\", \\\"selected_algorithm\\\": \\\"SelectKBest\\\"}}}]\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"get_params\": \"\\\"true\\\"\"}", + "tool_version": "1.0.8.1", + "type": "tool", + "uuid": "26db8419-6a23-48d3-bf72-33ca0416e645", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_params", + "uuid": "551e9e48-ff1b-42ec-90b6-98e6b5058b04" + }, + { + "label": null, + "output_name": "outfile", + "uuid": "2a7377ad-1474-4953-bd39-8bcdeccbc046" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 295.9375, + "top": 391.09375 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "7bcdbca8-beb1-4015-85f8-a289e0d5baa6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "f68ac118-2beb-41f3-9a64-41c66162c474" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.8.1", + "errors": null, + "id": 2, + "input_connections": { + "input_options|infile1": { + "id": 1, + "output_name": "output" + }, + "input_options|infile2": { + "id": 1, + "output_name": "output" + }, + "search_schemes|infile_estimator": { + "id": 0, + "output_name": "outfile" + }, + "search_schemes|search_params_builder|infile_params": { + "id": 0, + "output_name": "outfile_params" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Hyperparameter Search", + "name": "search_schemes" + }, + { + "description": "runtime parameter for tool Hyperparameter Search", + "name": "input_options" + }, + { + "description": "runtime parameter for tool Hyperparameter Search", + "name": "input_options" + } + ], + "label": null, + "name": "Hyperparameter Search", + "outputs": [ + { + "name": "outfile_result", + "type": "tabular" + }, + { + "name": "outfile_object", + "type": "zip" + } + ], + "position": { + "left": 647.5, + "top": 180.99609375 + }, + "post_job_actions": { + "HideDatasetActionoutfile_object": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile_object" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.8.1", + "tool_shed_repository": { + "changeset_revision": "c1ca24a1509d", + "name": "sklearn_searchcv", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"search_schemes\": \"{\\\"__current_case__\\\": 0, \\\"infile_estimator\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"is_deep_learning\\\": \\\"false\\\", \\\"options\\\": {\\\"cv_selector\\\": {\\\"__current_case__\\\": 1, \\\"n_splits\\\": \\\"5\\\", \\\"random_state\\\": \\\"3111696\\\", \\\"selected_cv\\\": \\\"KFold\\\", \\\"shuffle\\\": \\\"true\\\"}, \\\"error_score\\\": \\\"false\\\", \\\"iid\\\": \\\"true\\\", \\\"return_train_score\\\": \\\"false\\\", \\\"scoring\\\": {\\\"__current_case__\\\": 26, \\\"primary_scoring\\\": \\\"r2\\\", \\\"secondary_scoring\\\": null}, \\\"verbose\\\": \\\"0\\\"}, \\\"search_params_builder\\\": {\\\"infile_params\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"param_set\\\": [{\\\"__index__\\\": 0, \\\"sp_list\\\": \\\"[5880, 5890, 5895, 5900]\\\", \\\"sp_name\\\": \\\"selectkbest__k\\\"}, {\\\"__index__\\\": 1, \\\"sp_list\\\": \\\"[True, False]\\\", \\\"sp_name\\\": \\\"elasticnet__normalize\\\"}, {\\\"__index__\\\": 2, \\\"sp_list\\\": \\\"[0.00001, 0.0001, 0.001]\\\", \\\"sp_name\\\": \\\"elasticnet__alpha\\\"}]}, \\\"selected_search_scheme\\\": \\\"GridSearchCV\\\"}\", \"__rerun_remap_job_id__\": null, \"save\": \"\\\"save_estimator\\\"\", \"input_options\": \"{\\\"__current_case__\\\": 0, \\\"column_selector_options_1\\\": {\\\"__current_case__\\\": 3, \\\"col1\\\": \\\"age\\\", \\\"selected_column_selector_option\\\": \\\"all_but_by_header_name\\\"}, \\\"column_selector_options_2\\\": {\\\"__current_case__\\\": 2, \\\"col2\\\": \\\"age\\\", \\\"selected_column_selector_option2\\\": \\\"by_header_name\\\"}, \\\"header1\\\": \\\"true\\\", \\\"header2\\\": \\\"true\\\", \\\"infile1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"infile2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"selected_input\\\": \\\"tabular\\\"}\", \"outer_split\": \"{\\\"__current_case__\\\": 0, \\\"split_mode\\\": \\\"no\\\"}\"}", + "tool_version": "1.0.8.1", + "type": "tool", + "uuid": "4127ab12-dbd9-4888-bcda-b05748a05295", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_result", + "uuid": "cd5488b6-e604-411d-9032-8189d9b0205f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_parallel_coordinates_plot/plotly_parallel_coordinates_plot/0.1", + "errors": null, + "id": 3, + "input_connections": { + "infile": { + "id": 2, + "output_name": "outfile_result" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Parallel Coordinates Plot", + "name": "infile" + } + ], + "label": null, + "name": "Parallel Coordinates Plot", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 961.0546875, + "top": 252.05078125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_parallel_coordinates_plot/plotly_parallel_coordinates_plot/0.1", + "tool_shed_repository": { + "changeset_revision": "7b2455348edf", + "name": "plotly_parallel_coordinates_plot", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"col_color\": \"\\\"3\\\"\", \"col_dimensions\": \"\\\"4, 5, 6\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "0.1", + "type": "tool", + "uuid": "a208b2c4-9a3f-40a9-a55c-c98a7b552bcb", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "0dc1b427-05f1-40d5-b28b-9b2e73ce4a29" + } + ] + } + ], + "parent_id": "statistics/age-prediction-with-ml", + "path": "topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-rna.ga", + "tags": [ + "statistics" + ], + "test_results": null, + "tests": false, + "title": "Age Prediction RNA-Seq", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-age-prediction-with-ml/versions/age-prediction-rna", + "tutorial_id": "age-prediction-with-ml", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-rna.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/age-prediction-with-ml/workflows/age-prediction-rna.html", + "version": 6, + "wfid": "statistics-age-prediction-with-ml", + "wfname": "age-prediction-rna", + "workflow": "age-prediction-rna.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/plotly_parallel_coordinates_plot/plotly_parallel_coordinates_plot/0.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_build_pipeline/sklearn_build_pipeline/1.0.8.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_searchcv/sklearn_searchcv/1.0.8.1" + ], + "workflowhub_id": "1280" + } + ], + "zenodo_link": "https://zenodo.org/record/2545213" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "keras_model_builder", + "owner": "bgruening", + "revisions": "772e0e89fc68", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_model_config", + "owner": "bgruening", + "revisions": "8a794e6d3388", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_train_and_eval", + "owner": "bgruening", + "revisions": "f1b9a42d6809", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_train_and_eval", + "owner": "bgruening", + "revisions": "b6ef6d0cb6b7", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ml_visualization_ex", + "owner": "bgruening", + "revisions": "05143043ca13", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ml_visualization_ex", + "owner": "bgruening", + "revisions": "947c2eacccb8", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "model_prediction", + "owner": "bgruening", + "revisions": "83228baae3c5", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "model_prediction", + "owner": "bgruening", + "revisions": "1552b8cb4a94", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_to_categorical", + "owner": "bgruening", + "revisions": "ec69cbe34b73", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: keras_model_builder\n owner: bgruening\n revisions: 772e0e89fc68\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_model_config\n owner: bgruening\n revisions: 8a794e6d3388\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_train_and_eval\n owner: bgruening\n revisions: f1b9a42d6809\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_train_and_eval\n owner: bgruening\n revisions: b6ef6d0cb6b7\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ml_visualization_ex\n owner: bgruening\n revisions: 05143043ca13\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ml_visualization_ex\n owner: bgruening\n revisions: 947c2eacccb8\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: model_prediction\n owner: bgruening\n revisions: 83228baae3c5\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: model_prediction\n owner: bgruening\n revisions: 1552b8cb4a94\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_to_categorical\n owner: bgruening\n revisions: ec69cbe34b73\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/fruit_360/tutorial.json", + "contributors": [ + { + "email": "kxk302@gmail.com", + "id": "kxk302", + "joined": "2021-02", + "name": "Kaivan Kamali", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kxk302/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kxk302.json" + } + ], + "dir": "topics/statistics/tutorials/fruit_360", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/fruit_360", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": 24661, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-09", + "objectives": [ + "Learn how to create a CNN using Galaxy's deep learning tools", + "Solve an image classification problem on fruit 360 dataset using CNN in Galaxy" + ], + "pageviews": 4097715, + "pub_date": "2021-12-01", + "questions": [ + "How to solve an image classification problem using convolutional neural network (CNN)?" + ], + "recordings": [ + { + "captioners": [ + "kxk302" + ], + "date": "2022-01-19", + "galaxy_version": "21.09", + "length": "1H", + "speakers": [ + "kxk302" + ], + "youtube_id": "EX8gZ1lxhNY" + } + ], + "requirements": [ + { + "topic_name": "statistics", + "tutorials": [ + "CNN" + ], + "type": "internal" + } + ], + "short_id": "T00265", + "short_tools": [ + "keras_model_builder", + "keras_model_config", + "tp_cut_tool", + "model_prediction", + "keras_train_and_eval", + "ml_visualization_ex", + "sklearn_to_categorical" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Image classification in Galaxy with fruit 360 dataset", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.8.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.8.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.8.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.8.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.8.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.8.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_to_categorical/sklearn_to_categorical/1.0.8.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fruit_360", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/fruit_360/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/fruit_360/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/fruit_360/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 195, + "visitors": 1577765, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "name": "Kaivan Kamali" + } + ], + "description": "Image classification with fruit 360 dataset", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_y_10.tsv\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrain_y_10.tsv\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrain_X_10.tsv\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntest_X_10.tsv\"]\n 4[label=\"Create a deep learning model architecture\"]\n 5[label=\"Advanced Cut\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Advanced Cut\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Create deep learning model\"]\n 4 -> 7 [label=\"outfile\"]\n 8[label=\"To categorical\"]\n 6 -> 8 [label=\"output\"]\n 9[label=\"Deep learning training and evaluation\"]\n 7 -> 9 [label=\"outfile\"]\n 2 -> 9 [label=\"output\"]\n 8 -> 9 [label=\"outfile\"]\n 10[label=\"Model Prediction\"]\n 9 -> 10 [label=\"outfile_object\"]\n 9 -> 10 [label=\"outfile_weights\"]\n 3 -> 10 [label=\"output\"]\n 11[label=\"Machine Learning Visualization Extension\"]\n 10 -> 11 [label=\"outfile_predict\"]\n 5 -> 11 [label=\"output\"]\n}", + "history": [ + { + "hash": "e5dd4d5746166c3bdb191f35b22435d1fe9627cc", + "message": "Fixed an error in WF. Must cut test label data to get labels only", + "num": 5, + "short_hash": "e5dd4d574", + "unix": "1639248119" + }, + { + "hash": "4b60e0407fb5348216da2c52c8bed4f7e0d8191c", + "message": "Added Creator section to WF", + "num": 4, + "short_hash": "4b60e0407", + "unix": "1638371876" + }, + { + "hash": "6dd9ffea125cd0c6858b425ac786eb37e1e64f67", + "message": "Adde title and tag to WF", + "num": 3, + "short_hash": "6dd9ffea1", + "unix": "1637350965" + }, + { + "hash": "d6c5afc6958f3deff1ac8b11c466e8dd35c9b3e5", + "message": "Wrote parts of fruit image classification tutorial.", + "num": 2, + "short_hash": "d6c5afc69", + "unix": "1637285151" + }, + { + "hash": "7d52835fb825a71e893a71304557c62c183cd929", + "message": "Added the tutorial directory. Revising copied files now.", + "num": 1, + "short_hash": "7d52835fb", + "unix": "1637156335" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_y_10.tsv" + } + ], + "label": "test_y_10.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 274, + "height": 81, + "left": 393, + "right": 593, + "top": 193, + "width": 200, + "x": 393, + "y": 193 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "af3547d0-573b-429a-8aa9-c653604221c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "24c728c7-3029-4732-ab49-fe4d3f8fb1b3" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "train_y_10.tsv" + } + ], + "label": "train_y_10.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 394, + "height": 81, + "left": 393, + "right": 593, + "top": 313, + "width": 200, + "x": 393, + "y": 313 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a43671c9-f8b4-4308-a223-e940be9ef115", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8da8be9c-8ed0-44ae-80af-5f3cc69a95e2" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "train_X_10.tsv" + } + ], + "label": "train_X_10.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 514, + "height": 81, + "left": 393, + "right": 593, + "top": 433, + "width": 200, + "x": 393, + "y": 433 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d52183d4-71b5-4750-804a-9c8bb31087c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a65e5725-c11d-4eb4-b163-925399acbb40" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_X_10.tsv" + } + ], + "label": "test_X_10.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 634, + "height": 81, + "left": 393, + "right": 593, + "top": 553, + "width": 200, + "x": 393, + "y": 553 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "21548965-7cd1-453c-8fab-039f51f2320a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fd40d525-f72b-4121-bafc-6e380f6128bc" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\ntest_y_10.tsv\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\ntrain_y_10.tsv\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ntrain_X_10.tsv\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\ntest_X_10.tsv\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Create a deep learning model architecture\"];\n 5[\"Advanced Cut\"];\n 0 -->|output| 5;\n 6[\"Advanced Cut\"];\n 1 -->|output| 6;\n 7[\"Create deep learning model\"];\n 4 -->|outfile| 7;\n 8[\"To categorical\"];\n 6 -->|output| 8;\n 9[\"Deep learning training and evaluation\"];\n 7 -->|outfile| 9;\n 2 -->|output| 9;\n 8 -->|outfile| 9;\n 10[\"Model Prediction\"];\n 9 -->|outfile_object| 10;\n 9 -->|outfile_weights| 10;\n 3 -->|output| 10;\n 11[\"Machine Learning Visualization Extension\"];\n 10 -->|outfile_predict| 11;\n 5 -->|output| 11;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "fruit_360", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_y_10.tsv" + } + ], + "label": "test_y_10.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 274, + "height": 81, + "left": 393, + "right": 593, + "top": 193, + "width": 200, + "x": 393, + "y": 193 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "af3547d0-573b-429a-8aa9-c653604221c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "24c728c7-3029-4732-ab49-fe4d3f8fb1b3" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "train_y_10.tsv" + } + ], + "label": "train_y_10.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 394, + "height": 81, + "left": 393, + "right": 593, + "top": 313, + "width": 200, + "x": 393, + "y": 313 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a43671c9-f8b4-4308-a223-e940be9ef115", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8da8be9c-8ed0-44ae-80af-5f3cc69a95e2" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "train_X_10.tsv" + } + ], + "label": "train_X_10.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 514, + "height": 81, + "left": 393, + "right": 593, + "top": 433, + "width": 200, + "x": 393, + "y": 433 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "d52183d4-71b5-4750-804a-9c8bb31087c1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a65e5725-c11d-4eb4-b163-925399acbb40" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "test_X_10.tsv" + } + ], + "label": "test_X_10.tsv", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 634, + "height": 81, + "left": 393, + "right": 593, + "top": 553, + "width": 200, + "x": 393, + "y": 553 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "21548965-7cd1-453c-8fab-039f51f2320a", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fd40d525-f72b-4121-bafc-6e380f6128bc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/0.5.0", + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "Create a deep learning model architecture", + "outputs": [ + { + "name": "outfile", + "type": "json" + } + ], + "position": { + "bottom": 794, + "height": 121, + "left": 393, + "right": 593, + "top": 673, + "width": 200, + "x": 393, + "y": 673 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/0.5.0", + "tool_shed_repository": { + "changeset_revision": "2b8d85927742", + "name": "keras_model_config", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"model_selection\": {\"model_type\": \"sequential\", \"__current_case__\": 0, \"input_shape\": \"(30000, )\", \"layers\": [{\"__index__\": 0, \"layer_selection\": {\"layer_type\": \"Reshape\", \"__current_case__\": 4, \"target_shape\": \"(100, 100, 3)\"}}, {\"__index__\": 1, \"layer_selection\": {\"layer_type\": \"Conv2D\", \"__current_case__\": 13, \"filters\": \"16\", \"kernel_size\": \"5\", \"activation\": \"relu\", \"kwargs\": \"input_shape=(100, 100, 3)\"}}, {\"__index__\": 2, \"layer_selection\": {\"layer_type\": \"MaxPooling2D\", \"__current_case__\": 30, \"pool_size\": \"(2, 2)\", \"strides\": \"\", \"kwargs\": \"\"}}, {\"__index__\": 3, \"layer_selection\": {\"layer_type\": \"Conv2D\", \"__current_case__\": 13, \"filters\": \"32\", \"kernel_size\": \"5\", \"activation\": \"relu\", \"kwargs\": \"\"}}, {\"__index__\": 4, \"layer_selection\": {\"layer_type\": \"MaxPooling2D\", \"__current_case__\": 30, \"pool_size\": \"(2, 2)\", \"strides\": \"\", \"kwargs\": \"\"}}, {\"__index__\": 5, \"layer_selection\": {\"layer_type\": \"Conv2D\", \"__current_case__\": 13, \"filters\": \"64\", \"kernel_size\": \"5\", \"activation\": \"relu\", \"kwargs\": \"\"}}, {\"__index__\": 6, \"layer_selection\": {\"layer_type\": \"MaxPooling2D\", \"__current_case__\": 30, \"pool_size\": \"(2, 2)\", \"strides\": \"\", \"kwargs\": \"\"}}, {\"__index__\": 7, \"layer_selection\": {\"layer_type\": \"Flatten\", \"__current_case__\": 3, \"data_format\": \"channels_last\"}}, {\"__index__\": 8, \"layer_selection\": {\"layer_type\": \"Dense\", \"__current_case__\": 0, \"units\": \"256\", \"activation\": \"relu\", \"kwargs\": \"\"}}, {\"__index__\": 9, \"layer_selection\": {\"layer_type\": \"Dense\", \"__current_case__\": 0, \"units\": \"10\", \"activation\": \"softmax\", \"kwargs\": \"\"}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "e88ed344-23fb-4122-9af5-d8a75df0f049", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "061ae4fe-aec2-42f7-ac20-cd19cd57c7dc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Advanced Cut", + "name": "input" + } + ], + "label": null, + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 213, + "height": 112, + "left": 972, + "right": 1172, + "top": 101, + "width": 200, + "x": 972, + "y": 101 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"3\\n\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "c9066525-d9fb-4e8d-976c-0f9a3b030576", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "490b3818-84b5-4370-9b1f-34af163e1f9a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 425, + "height": 112, + "left": 613, + "right": 813, + "top": 313, + "width": 200, + "x": 613, + "y": 313 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "f46f0e4f75c4", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tsv\", \"__workflow_invocation_uuid__\": \"c39c89a6466311ec8344005056ba2773\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"complement\": \"\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": [\"3\"]}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "9d569bfd-dfc6-4a0a-83ff-751385fb1881", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "388b3201-c37d-412b-b610-3d52983c0365" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/0.5.0", + "errors": null, + "id": 7, + "input_connections": { + "mode_selection|infile_json": { + "id": 4, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "Create deep learning model", + "outputs": [ + { + "name": "outfile", + "type": "zip" + } + ], + "position": { + "bottom": 605, + "height": 172, + "left": 613, + "right": 813, + "top": 433, + "width": 200, + "x": 613, + "y": 433 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/0.5.0", + "tool_shed_repository": { + "changeset_revision": "5b35833076f0", + "name": "keras_model_builder", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/?.len\", \"mode_selection\": {\"mode_type\": \"train_model\", \"__current_case__\": 0, \"infile_json\": {\"__class__\": \"ConnectedValue\"}, \"learning_type\": \"KerasGClassifier\", \"compile_params\": {\"loss\": \"categorical_crossentropy\", \"optimizer_selection\": {\"optimizer_type\": \"Adam\", \"__current_case__\": 4, \"optimizer_options\": {\"lr\": \"0.001\", \"decay\": \"0.0\", \"beta_1\": \"0.9\", \"beta_2\": \"0.999\", \"amsgrad\": \"false\"}}, \"metrics\": [\"acc\"]}, \"fit_params\": {\"epochs\": \"40\", \"batch_size\": \"50\", \"steps_per_epoch\": null, \"validation_steps\": null, \"callbacks\": [{\"__index__\": 0, \"callback_selection\": {\"callback_type\": \"None\", \"__current_case__\": 0}}]}, \"random_seed\": null, \"get_params\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "83b42cfe-b173-421f-999e-341f2891faa0", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "ea147ba5-e226-4529-bce2-3a6eadea74f0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_to_categorical/sklearn_to_categorical/1.0.8.3", + "errors": null, + "id": 8, + "input_connections": { + "infile": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool To categorical", + "name": "infile" + } + ], + "label": null, + "name": "To categorical", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "bottom": 486, + "height": 112, + "left": 838, + "right": 1038, + "top": 374, + "width": 200, + "x": 838, + "y": 374 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_to_categorical/sklearn_to_categorical/1.0.8.3", + "tool_shed_repository": { + "changeset_revision": "612ca26c197d", + "name": "sklearn_to_categorical", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"header0\": \"true\", \"infile\": {\"__class__\": \"RuntimeValue\"}, \"num_classes\": \"10\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "2daa2610-efc3-4e1e-9da3-532dfb960d62", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "9e1b61c9-cb6b-447c-aba7-376b69e38d6d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.8.3", + "errors": null, + "id": 9, + "input_connections": { + "experiment_schemes|infile_estimator": { + "id": 7, + "output_name": "outfile" + }, + "input_options|infile1": { + "id": 2, + "output_name": "output" + }, + "input_options|infile2": { + "id": 8, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Deep learning training and evaluation", + "name": "experiment_schemes" + }, + { + "description": "runtime parameter for tool Deep learning training and evaluation", + "name": "input_options" + }, + { + "description": "runtime parameter for tool Deep learning training and evaluation", + "name": "input_options" + } + ], + "label": null, + "name": "Deep learning training and evaluation", + "outputs": [ + { + "name": "outfile_result", + "type": "tabular" + }, + { + "name": "outfile_object", + "type": "zip" + }, + { + "name": "outfile_weights", + "type": "h5" + } + ], + "position": { + "bottom": 945, + "height": 462, + "left": 1049, + "right": 1249, + "top": 483, + "width": 200, + "x": 1049, + "y": 483 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.8.3", + "tool_shed_repository": { + "changeset_revision": "470aed90aa41", + "name": "keras_train_and_eval", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"experiment_schemes\": {\"selected_exp_scheme\": \"train_val\", \"__current_case__\": 0, \"infile_estimator\": {\"__class__\": \"RuntimeValue\"}, \"hyperparams_swapping\": {\"infile_params\": {\"__class__\": \"RuntimeValue\"}, \"param_set\": [{\"__index__\": 0, \"sp_name\": null, \"sp_value\": \"\"}]}, \"test_split\": {\"split_algos\": {\"shuffle\": \"simple\", \"__current_case__\": 1, \"test_size\": \"0.2\", \"random_state\": null}}, \"metrics\": {\"scoring\": {\"primary_scoring\": \"default\", \"__current_case__\": 0}}}, \"input_options\": {\"selected_input\": \"tabular\", \"__current_case__\": 0, \"infile1\": {\"__class__\": \"RuntimeValue\"}, \"header1\": \"false\", \"column_selector_options_1\": {\"selected_column_selector_option\": \"all_columns\", \"__current_case__\": 4}, \"infile2\": {\"__class__\": \"RuntimeValue\"}, \"header2\": \"false\", \"column_selector_options_2\": {\"selected_column_selector_option2\": \"all_columns\", \"__current_case__\": 4}}, \"save\": [\"save_estimator\"], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "caaf7c3c-b170-4cd7-b894-a4eecb898844", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_result", + "uuid": "2eb2e1bc-217d-4e93-a987-312934f9fc19" + }, + { + "label": null, + "output_name": "outfile_object", + "uuid": "fb9d855c-754d-4d32-8e6a-182664fa1f92" + }, + { + "label": null, + "output_name": "outfile_weights", + "uuid": "29e19193-b9b7-4ccc-b312-62409c2a7dcc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.8.3", + "errors": null, + "id": 10, + "input_connections": { + "infile_estimator": { + "id": 9, + "output_name": "outfile_object" + }, + "infile_weights": { + "id": 9, + "output_name": "outfile_weights" + }, + "input_options|infile1": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Model Prediction", + "name": "infile_estimator" + }, + { + "description": "runtime parameter for tool Model Prediction", + "name": "infile_weights" + }, + { + "description": "runtime parameter for tool Model Prediction", + "name": "input_options" + } + ], + "label": null, + "name": "Model Prediction", + "outputs": [ + { + "name": "outfile_predict", + "type": "tabular" + } + ], + "position": { + "bottom": 877, + "height": 252, + "left": 1347, + "right": 1547, + "top": 625, + "width": 200, + "x": 1347, + "y": 625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.8.3", + "tool_shed_repository": { + "changeset_revision": "1e088aa741eb", + "name": "model_prediction", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"infile_estimator\": {\"__class__\": \"RuntimeValue\"}, \"infile_weights\": {\"__class__\": \"RuntimeValue\"}, \"input_options\": {\"selected_input\": \"tabular\", \"__current_case__\": 0, \"infile1\": {\"__class__\": \"RuntimeValue\"}, \"header1\": \"false\", \"column_selector_options_1\": {\"selected_column_selector_option\": \"all_columns\", \"__current_case__\": 4}}, \"method\": \"predict\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "91789cf1-96a7-4e81-a989-4c60bed386b8", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile_predict", + "uuid": "82004f35-b05d-4799-a082-1291e103c036" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.8.3", + "errors": null, + "id": 11, + "input_connections": { + "plotting_selection|infile_predicted": { + "id": 10, + "output_name": "outfile_predict" + }, + "plotting_selection|infile_true": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Machine Learning Visualization Extension", + "name": "plotting_selection" + }, + { + "description": "runtime parameter for tool Machine Learning Visualization Extension", + "name": "plotting_selection" + } + ], + "label": null, + "name": "Machine Learning Visualization Extension", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "bottom": 567, + "height": 242, + "left": 1574, + "right": 1774, + "top": 325, + "width": 200, + "x": 1574, + "y": 325 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.8.3", + "tool_shed_repository": { + "changeset_revision": "e88c782a127d", + "name": "ml_visualization_ex", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"plotting_selection\": {\"plot_type\": \"classification_confusion_matrix\", \"__current_case__\": 6, \"infile_true\": {\"__class__\": \"RuntimeValue\"}, \"header_true\": \"true\", \"column_selector_options_true\": {\"selected_column_selector_option\": \"all_columns\", \"__current_case__\": 4}, \"infile_predicted\": {\"__class__\": \"RuntimeValue\"}, \"header_predicted\": \"true\", \"title\": \"Confusion matrix between true and predicted labels\", \"plot_format\": \"png\", \"plot_color\": \"Greens\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "429e06e9-c9d0-447b-a9ab-4b36869beaf8", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "73af0f64-43f7-4b5e-815a-1c0326875a3a" + } + ] + } + ], + "parent_id": "statistics/fruit_360", + "path": "topics/statistics/tutorials/fruit_360/workflows/fruit_360.ga", + "tags": [ + "statistics" + ], + "test_results": null, + "tests": false, + "title": "fruit_360", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-fruit_360/versions/fruit-360", + "tutorial_id": "fruit_360", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/fruit_360/workflows/fruit_360.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/fruit_360/workflows/fruit_360.html", + "version": 2, + "wfid": "statistics-fruit_360", + "wfname": "fruit-360", + "workflow": "fruit_360.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/0.5.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.8.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.8.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.8.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_to_categorical/sklearn_to_categorical/1.0.8.3", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0" + ], + "workflowhub_id": "1322" + } + ], + "zenodo_link": "https://zenodo.org/record/5702887" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "keras_model_builder", + "owner": "bgruening", + "revisions": "66d7efc06000", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_model_config", + "owner": "bgruening", + "revisions": "f22a9297440f", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "keras_train_and_eval", + "owner": "bgruening", + "revisions": "2af1346e68c9", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ml_visualization_ex", + "owner": "bgruening", + "revisions": "8334dc98c48e", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "model_prediction", + "owner": "bgruening", + "revisions": "25b46af53232", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sklearn_to_categorical", + "owner": "bgruening", + "revisions": "61634a87efc7", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: keras_model_builder\n owner: bgruening\n revisions: 66d7efc06000\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_model_config\n owner: bgruening\n revisions: f22a9297440f\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: keras_train_and_eval\n owner: bgruening\n revisions: 2af1346e68c9\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ml_visualization_ex\n owner: bgruening\n revisions: 8334dc98c48e\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: model_prediction\n owner: bgruening\n revisions: 25b46af53232\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sklearn_to_categorical\n owner: bgruening\n revisions: 61634a87efc7\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/CNN/tutorial.json", + "contributors": [ + { + "email": "kxk302@gmail.com", + "id": "kxk302", + "joined": "2021-02", + "name": "Kaivan Kamali", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kxk302/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kxk302.json" + } + ], + "dir": "topics/statistics/tutorials/CNN", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/CNN", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": 1168, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-07-09", + "objectives": [ + "Understand the inspiration behind CNN and learn the CNN architecture", + "Learn the convolution operation and its parameters", + "Learn how to create a CNN using Galaxy's deep learning tools", + "Solve an image classification problem on MNIST digit classification dataset using CNN in Galaxy" + ], + "pageviews": 5193185, + "pub_date": "2021-04-19", + "questions": [ + "What is a convolutional neural network (CNN)?", + "What are some applications of CNN?" + ], + "recordings": [ + { + "captioners": [ + "FilipposZ" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H", + "speakers": [ + "kxk302" + ], + "youtube_id": "P1NVYOJrv_4" + } + ], + "requirements": [ + { + "topic_name": "statistics", + "tutorials": [ + "intro_deep_learning", + "FNN", + "RNN" + ], + "type": "internal" + } + ], + "short_id": "T00257", + "short_tools": [ + "keras_model_builder", + "keras_model_config", + "model_prediction", + "keras_train_and_eval", + "ml_visualization_ex", + "sklearn_to_categorical" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Deep Learning (Part 3) - Convolutional neural networks (CNN)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_to_categorical/sklearn_to_categorical/1.0.10.0" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "CNN", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/CNN/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/CNN/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/CNN/tutorial.json" + }, + "version": 17, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 204, + "visitors": 1917311, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-6585-3619", + "name": "Kaivan Kamali" + } + ], + "description": "", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nX_test\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nX_train\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ny_test\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ny_train\"]\n 4[label=\"Create a deep learning model architecture\"]\n 5[label=\"To categorical\"]\n 3 -> 5 [label=\"output\"]\n 6[label=\"Create deep learning model\"]\n 4 -> 6 [label=\"outfile\"]\n 7[label=\"Deep learning training and evaluation\"]\n 6 -> 7 [label=\"outfile\"]\n 1 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"outfile\"]\n 8[label=\"Model Prediction\"]\n 7 -> 8 [label=\"outfile_object\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"Machine Learning Visualization Extension\"]\n 8 -> 9 [label=\"outfile_predict\"]\n 2 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "ce48b25d3253616efc9591ba44031331827b1f62", + "message": "Fixed lint issues", + "num": 2, + "short_hash": "ce48b25d3", + "unix": "1699469857" + }, + { + "hash": "0c206197dd1637890ad853b508f4c14009d1cd77", + "message": "Renamed workflow and test yml file", + "num": 1, + "short_hash": "0c206197d", + "unix": "1699461926" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "X_test" + } + ], + "label": "X_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "67fe95aa-be8d-4ce8-89a3-844c55d4edf9", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "X_train" + } + ], + "label": "X_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 120 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "cf3a589c-9683-47d0-a4b3-f56046633552", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "y_test" + } + ], + "label": "y_test", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 240 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5d37d651-f5c9-4af6-9ff1-211d7a145a30", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "y_train" + } + ], + "label": "y_train", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 360 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ec126ab6-12b4-4559-9ade-321d6e5f37dd", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nX_test\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nX_train\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\ny_test\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\ny_train\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Create a deep learning model architecture\"];\n 5[\"To categorical\"];\n 3 -->|output| 5;\n 6[\"Create deep learning model\"];\n 4 -->|outfile| 6;\n 7[\"Deep learning training and evaluation\"];\n 6 -->|outfile| 7;\n 1 -->|output| 7;\n 5 -->|outfile| 7;\n 8[\"Model Prediction\"];\n 7 -->|outfile_object| 8;\n 0 -->|output| 8;\n 9[\"Machine Learning Visualization Extension\"];\n 8 -->|outfile_predict| 9;\n 2 -->|output| 9;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Intro_To_CNN_v1.0.11.0", + "outputs": [], + "parent_id": "statistics/CNN", + "path": "topics/statistics/tutorials/CNN/workflows/Intro_To_CNN_v1_0_11_0.ga", + "tags": [], + "test_results": null, + "tests": true, + "title": "Intro_To_CNN_v1.0.11.0", + "topic_id": "statistics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/statistics-CNN/versions/intro-to-cnn-v1-0-11-0", + "tutorial_id": "CNN", + "url": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/CNN/workflows/Intro_To_CNN_v1_0_11_0.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/statistics/tutorials/CNN/workflows/Intro_To_CNN_v1_0_11_0.html", + "version": 1, + "wfid": "statistics-CNN", + "wfname": "intro-to-cnn-v1-0-11-0", + "workflow": "Intro_To_CNN_v1_0_11_0.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_builder/keras_model_builder/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_model_config/keras_model_config/1.0.10.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/keras_train_and_eval/keras_train_and_eval/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/ml_visualization_ex/ml_visualization_ex/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/model_prediction/model_prediction/1.0.11.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/sklearn_to_categorical/sklearn_to_categorical/1.0.10.0" + ], + "workflowhub_id": "1313" + } + ], + "zenodo_link": "https://zenodo.org/record/4697906" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/fine_tuning_protTrans/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "eurosciencegateway", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anup.rulez@gmail.com", + "id": "anuprulez", + "joined": "2018-08", + "name": "Anup Kumar", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/anuprulez/", + "twitter": "musafirtweetsz", + "url": "https://training.galaxyproject.org/training-material/api/contributors/anuprulez.json" + } + ], + "dir": "topics/statistics/tutorials/fine_tuning_protTrans", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/fine_tuning_protTrans", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-17", + "objectives": [ + "Learn to load and use large protein models from HuggingFace", + "Learn to fine-tune them on specific tasks such as predicting dephosphorylation sites" + ], + "pageviews": 161, + "pub_date": "2024-06-17", + "questions": [ + "How to load large protein AI models?", + "How to fine-tune such models on downstream tasks such as post-translational site prediction?" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "jupyterlab" + ], + "type": "internal" + }, + { + "topic_name": "statistics", + "tutorials": [ + "gpu_jupyter_lab" + ], + "type": "internal" + } + ], + "short_id": "T00442", + "short_tools": [ + "interactive_tool_ml_jupyter_notebook" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools", + "machine-learning", + "deep-learning", + "jupyter-lab", + "fine-tuning", + "dephosphorylation-site-prediction" + ], + "time_estimation": "1H", + "title": "Fine tune large protein model (ProtTrans) using HuggingFace", + "tools": [ + "interactive_tool_ml_jupyter_notebook" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "fine_tuning_protTrans", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/fine_tuning_protTrans/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/fine_tuning_protTrans/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/fine_tuning_protTrans/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 95, + "visitors": 124, + "zenodo_link": "https://zenodo.org/records/10986248" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/intro-to-ml-with-r/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/statistics/tutorials/intro-to-ml-with-r", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "statistics", + "tutorials": [ + "age-prediction-with-ml" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "statistics/intro-to-ml-with-r", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "To be added" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand the ML taxonomy and the commonly used machine learning algorithms for analysing -omics data", + "Understand differences between ML algorithms categories and to which kind of problem they can be applied", + "Understand different applications of ML in different -omics studies", + "Use some basic, widely used R packages for ML", + "Interpret and visualize the results obtained from ML analyses on omics datasets", + "Apply the ML techniques to analyse their own datasets" + ], + "pageviews": 5178, + "pub_date": "2021-05-21", + "questions": [ + "What are the main categories in Machine Learning algorithms?", + "How can I perform exploratory data analysis?", + "What are the main part of a clustering process?", + "How can a create a decision tree?", + "How can I assess a linear regression model?" + ], + "recordings": [ + { + "captioners": [ + "MariaTsayo" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "1H30M", + "speakers": [ + "fpsom" + ], + "youtube_id": "RT-g6KyAGdE" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "rstudio" + ], + "type": "internal" + }, + { + "topic_name": "data-science", + "tutorials": [ + "r-basics", + "r-advanced" + ], + "type": "internal" + } + ], + "short_id": "T00267", + "short_tools": [ + "interactive_tool_rstudio" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "3H", + "title": "Introduction to Machine Learning using R", + "tools": [ + "interactive_tool_rstudio" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "intro-to-ml-with-r", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/intro-to-ml-with-r/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/intro-to-ml-with-r/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/intro-to-ml-with-r/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 68, + "visitors": 3311, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "chopin2", + "owner": "iuc", + "revisions": "d49893faf877", + "tool_panel_section_label": "Machine Learning", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: chopin2\n owner: iuc\n revisions: d49893faf877\n tool_panel_section_label: Machine Learning\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/hyperdimensional_computing/tutorial.json", + "contributors": [ + { + "email": "fabio.cumbo@gmail.com", + "id": "cumbof", + "joined": "2018-02", + "linkedin": "fabiocumbo", + "name": "Fabio Cumbo", + "orcid": "0000-0003-2920-5838", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cumbof/", + "twitter": "cumbofabio", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cumbof.json" + } + ], + "dir": "topics/statistics/tutorials/hyperdimensional_computing", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "statistics/hyperdimensional_computing", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Every kind of data can be encoded into high-dimensional vectors", + "A vector-symbolic architecture is composed of vectors and a limited set of arithmetic operators", + "Classification models build according to the hyperdimensional computing paradigm can scale on datasets with massive amounts of features and data points" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn how to encode data into high-dimensional vectors", + "Build a vector-symbolic architecture", + "Use the architecture to build a classification model" + ], + "pageviews": 388, + "pub_date": "2023-04-28", + "questions": [ + "How to encode data into vectors in a high-dimensional space?", + "What kind of operations can be performed on these vectors?", + "What is a vector-symbolic architecture?", + "How to build a classification model out of this architecture?" + ], + "requirements": null, + "short_id": "T00337", + "short_tools": [ + "chopin2" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "30m", + "title": "Supervised Learning with Hyperdimensional Computing", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/chopin2/chopin2/1.0.7+galaxy1" + ], + "topic_name": "statistics", + "topic_name_human": "Statistics and machine learning", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "hyperdimensional_computing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/statistics/tutorials/hyperdimensional_computing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/hyperdimensional_computing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/statistics/tutorials/hyperdimensional_computing/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 33, + "visitors": 304, + "zenodo_link": "https://doi.org/10.5281/zenodo.6467875" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "get_sbml_model", + "owner": "tduigou", + "revisions": "4797d0b36ff3", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "retropath2", + "owner": "tduigou", + "revisions": "9c8ac9980bd6", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rp2paths", + "owner": "tduigou", + "revisions": "aed346f2e254", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rpcompletion", + "owner": "tduigou", + "revisions": "d5c53a916005", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rpextractsink", + "owner": "tduigou", + "revisions": "47bb93e7832b", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rrparser", + "owner": "tduigou", + "revisions": "ea590c609fec", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: get_sbml_model\n owner: tduigou\n revisions: 4797d0b36ff3\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: retropath2\n owner: tduigou\n revisions: 9c8ac9980bd6\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rp2paths\n owner: tduigou\n revisions: aed346f2e254\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rpcompletion\n owner: tduigou\n revisions: d5c53a916005\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rpextractsink\n owner: tduigou\n revisions: 47bb93e7832b\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rrparser\n owner: tduigou\n revisions: ea590c609fec\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/retrosynthesis_analysis/tutorial.json", + "contributors": [ + { + "email": "guillaume.gricourt@inrae.fr", + "id": "guillaume-gricourt", + "joined": "2022-03", + "linkedin": "guillaume-gricourt", + "name": "Guillaume Gricourt", + "orcid": "0000-0003-0143-5535", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/guillaume-gricourt/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/guillaume-gricourt.json" + }, + { + "email": "thomas.duigou@inrae.fr", + "id": "tduigou", + "joined": "2022-03", + "linkedin": "thomas-duigou-ba281730", + "name": "Thomas Duigou", + "orcid": "0000-0002-2649-2950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tduigou/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tduigou.json" + }, + { + "email": "kenza.bazi-kabbaj@inrae.fr", + "id": "kenza12", + "joined": "2022-03", + "name": "Kenza Bazi-Kabbaj", + "orcid": "0000-0002-4319-5616", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kenza12/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kenza12.json" + }, + { + "email": "joan.herisson@univ-evry.fr", + "id": "breakthewall", + "joined": "2022-03", + "linkedin": "joanherisson", + "name": "Joan H\u00e9risson", + "orcid": "0000-0001-9741-0847", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/breakthewall/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/breakthewall.json" + }, + { + "email": "ioana.popescu@univ-evry.fr", + "id": "ioanagry", + "joined": "2022-03", + "linkedin": "ioana-popescu-8207a026", + "name": "Ioana Popescu", + "orcid": "0000-0003-2547-8935", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ioanagry/", + "twitter": "ioanagrig", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ioanagry.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "Jean-loup.Faulon@inrae.fr", + "id": "jfaulon", + "joined": "2022-03", + "linkedin": "jean-loup-faulon-6b85976", + "name": "Jean-Loup Faulon", + "orcid": "0000-0003-4274-2953", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jfaulon/", + "twitter": "jeanloupfaulon", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jfaulon.json" + } + ], + "dir": "topics/synthetic-biology/tutorials/retrosynthesis_analysis", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "synthetic-biology/retrosynthesis_analysis", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Get heterologous pathways which produce a compound in a chassis" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Define what data are required to run RetroSynthesis analysis.", + "Understanding how to run the tools to search heterologous pathways." + ], + "pageviews": 505, + "pub_date": "2022-06-23", + "questions": [ + "Which heterologous pathways are candidates to produce a compound in a chassis?" + ], + "recordings": [ + { + "captioners": [ + "kenza12" + ], + "date": "2022-06-23", + "length": "5M", + "speakers": [ + "breakthewall" + ], + "type": "Demo", + "youtube_id": "nnE3Ip94D8I" + } + ], + "short_id": "T00275", + "short_tools": [ + "rpcompletion", + "rpextractsink", + "rp2paths", + "get_sbml_model", + "rrparser", + "retropath2" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Generating theoretical possible pathways for the production of Lycopene in E.Coli using Retrosynthesis tools", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/tduigou/get_sbml_model/get_sbml_model/0.0.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/retropath2/retropath2/2.3.0", + "toolshed.g2.bx.psu.edu/repos/tduigou/rp2paths/rp2paths/1.5.0", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpcompletion/rpcompletion/5.12.2", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpextractsink/rpextractsink/5.12.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/rrparser/rrparser/2.4.6" + ], + "topic_name": "synthetic-biology", + "topic_name_human": "Synthetic Biology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "retrosynthesis_analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/synthetic-biology/tutorials/retrosynthesis_analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/retrosynthesis_analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/retrosynthesis_analysis/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 144, + "visitors": 343, + "workflows": [ + { + "creators": [], + "description": "Generating theoretical possible pathways for the production of Lycopene in E.Coli using Retrosynthesis tools", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nTarget to produce\"]\n 1[label=\"Pick SBML Model\"]\n kdc7acc736d5a4cbba8a2d10a8bd38914[color=lightseagreen,label=\"Output\\nPick SBML Model - iML1515\"]\n 1 -> kdc7acc736d5a4cbba8a2d10a8bd38914\n 2[label=\"RRules Parser\"]\n k9fc1e94f34ea4173bdb13ecbef49efe3[color=lightseagreen,label=\"Output\\nRRules Parser(retro, d=['2', '4', '6', '8', '10', '12', '14', '16'])\"]\n 2 -> k9fc1e94f34ea4173bdb13ecbef49efe3\n 3[label=\"Sink from SBML\"]\n 1 -> 3 [label=\"sbml_model\"]\n 4[label=\"RetroPath2.0\"]\n 2 -> 4 [label=\"out_rules\"]\n 3 -> 4 [label=\"sink\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"RP2paths\"]\n 4 -> 5 [label=\"Reaction_Network\"]\n 6[label=\"Complete Reactions\"]\n 4 -> 6 [label=\"Reaction_Network\"]\n 5 -> 6 [label=\"compounds\"]\n 5 -> 6 [label=\"master_pathways\"]\n 3 -> 6 [label=\"sink\"]\n}", + "history": [ + { + "hash": "79975abd7bac179b3d0d3048445290fc4e44aab6", + "message": "fix(RetroSynthesis.ga): add annotation and tag attribute", + "num": 2, + "short_hash": "79975abd7", + "unix": "1654774912" + }, + { + "hash": "da3d162e53de6c05842e39319e51b74ea97d9adf", + "message": "add new tutorial: RetroSynthesis Analysis", + "num": 1, + "short_hash": "da3d162e5", + "unix": "1654772849" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Target to produce" + } + ], + "label": "Target to produce", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 348.8999938964844, + "height": 61.79998779296875, + "left": 182.38333129882812, + "right": 382.3833312988281, + "top": 287.1000061035156, + "width": 200, + "x": 182.38333129882812, + "y": 287.1000061035156 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "832d6ff4-18ac-4728-a776-277ba25b6b74", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "84f408d2-fff1-4e5e-b853-35c636d14653" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Parameter\\nTarget to produce\"];\n style 0 fill:#ded,stroke:#393,stroke-width:4px;\n 1[\"Pick SBML Model\"];\n dc7acc73-6d5a-4cbb-a8a2-d10a8bd38914[\"Output\\nPick SBML Model - iML1515\"];\n 1 --> dc7acc73-6d5a-4cbb-a8a2-d10a8bd38914;\n style dc7acc73-6d5a-4cbb-a8a2-d10a8bd38914 stroke:#2c3143,stroke-width:4px;\n 2[\"RRules Parser\"];\n 9fc1e94f-34ea-4173-bdb1-3ecbef49efe3[\"Output\\nRRules Parser(retro, d=['2', '4', '6', '8', '10', '12', '14', '16'])\"];\n 2 --> 9fc1e94f-34ea-4173-bdb1-3ecbef49efe3;\n style 9fc1e94f-34ea-4173-bdb1-3ecbef49efe3 stroke:#2c3143,stroke-width:4px;\n 3[\"Sink from SBML\"];\n 1 -->|sbml_model| 3;\n 4[\"RetroPath2.0\"];\n 2 -->|out_rules| 4;\n 3 -->|sink| 4;\n 0 -->|output| 4;\n 5[\"RP2paths\"];\n 4 -->|Reaction_Network| 5;\n 6[\"Complete Reactions\"];\n 4 -->|Reaction_Network| 6;\n 5 -->|compounds| 6;\n 5 -->|master_pathways| 6;\n 3 -->|sink| 6;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "RetroSynthesis", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Target to produce" + } + ], + "label": "Target to produce", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 348.8999938964844, + "height": 61.79998779296875, + "left": 182.38333129882812, + "right": 382.3833312988281, + "top": 287.1000061035156, + "width": 200, + "x": 182.38333129882812, + "y": 287.1000061035156 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "832d6ff4-18ac-4728-a776-277ba25b6b74", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "84f408d2-fff1-4e5e-b853-35c636d14653" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/get_sbml_model/get_sbml_model/0.0.1", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "runtime parameter for tool Pick SBML Model", + "name": "input" + } + ], + "label": null, + "name": "Pick SBML Model", + "outputs": [ + { + "name": "sbml_model", + "type": "xml" + } + ], + "position": { + "bottom": 481.1999969482422, + "height": 102.59999084472656, + "left": 180, + "right": 380, + "top": 378.6000061035156, + "width": 200, + "x": 180, + "y": 378.6000061035156 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/get_sbml_model/get_sbml_model/0.0.1", + "tool_shed_repository": { + "changeset_revision": "4797d0b36ff3", + "name": "get_sbml_model", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.1", + "type": "tool", + "uuid": "bb68ae97-ef17-41c3-8e99-d62a6a4508ee", + "workflow_outputs": [ + { + "label": "Pick SBML Model - iML1515", + "output_name": "sbml_model", + "uuid": "dc7acc73-6d5a-4cbb-a8a2-d10a8bd38914" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rrparser/rrparser/2.4.6", + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "RRules Parser", + "outputs": [ + { + "name": "out_rules", + "type": "csv" + } + ], + "position": { + "bottom": 586.9833374023438, + "height": 102.60000610351562, + "left": 424, + "right": 624, + "top": 484.3833312988281, + "width": 200, + "x": 424, + "y": 484.3833312988281 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rrparser/rrparser/2.4.6", + "tool_shed_repository": { + "changeset_revision": "ea590c609fec", + "name": "rrparser", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"compress\": \"false\", \"diameters\": [\"2\", \"4\", \"6\", \"8\", \"10\", \"12\", \"14\", \"16\"], \"rules\": {\"type\": \"retro\", \"__current_case__\": 2}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.6", + "type": "tool", + "uuid": "5bcc6c73-b4cf-45fc-96f6-9e3cbf31832e", + "workflow_outputs": [ + { + "label": "RRules Parser(retro, d=['2', '4', '6', '8', '10', '12', '14', '16'])", + "output_name": "out_rules", + "uuid": "9fc1e94f-34ea-4173-bdb1-3ecbef49efe3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpextractsink/rpextractsink/5.12.1", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 1, + "output_name": "sbml_model" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Sink from SBML", + "name": "input" + } + ], + "label": null, + "name": "Sink from SBML", + "outputs": [ + { + "name": "sink", + "type": "csv" + } + ], + "position": { + "bottom": 455.7833251953125, + "height": 93.20001220703125, + "left": 427, + "right": 627, + "top": 362.58331298828125, + "width": 200, + "x": 427, + "y": 362.58331298828125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpextractsink/rpextractsink/5.12.1", + "tool_shed_repository": { + "changeset_revision": "47bb93e7832b", + "name": "rpextractsink", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"remove_dead_end\": \"true\"}, \"compartment_id\": \"c\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.12.1", + "type": "tool", + "uuid": "4dd55661-fbf3-484a-8df4-f884973e06cf", + "workflow_outputs": [ + { + "label": null, + "output_name": "sink", + "uuid": "e9d0a510-79be-4519-8187-7f0499d350e8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/retropath2/retropath2/2.3.0", + "errors": null, + "id": 4, + "input_connections": { + "rulesfile": { + "id": 2, + "output_name": "out_rules" + }, + "sinkfile": { + "id": 3, + "output_name": "sink" + }, + "source_inchi_type|source_inchi": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RetroPath2.0", + "name": "rulesfile" + }, + { + "description": "runtime parameter for tool RetroPath2.0", + "name": "sinkfile" + } + ], + "label": null, + "name": "RetroPath2.0", + "outputs": [ + { + "name": "Reaction_Network", + "type": "csv" + } + ], + "position": { + "bottom": 401.5833282470703, + "height": 154, + "left": 670, + "right": 870, + "top": 247.5833282470703, + "width": 200, + "x": 670, + "y": 247.5833282470703 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/retropath2/retropath2/2.3.0", + "tool_shed_repository": { + "changeset_revision": "9c8ac9980bd6", + "name": "retropath2", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"version\": \"r20220104\", \"topx\": \"100\", \"dmin\": \"0\", \"dmax\": \"1000\", \"mwmax_source\": \"1000\", \"timeout\": \"60\"}, \"max_steps\": \"3\", \"rulesfile\": {\"__class__\": \"RuntimeValue\"}, \"sinkfile\": {\"__class__\": \"RuntimeValue\"}, \"source_inchi_type\": {\"inchi_type\": \"string\", \"__current_case__\": 0, \"source_inchi\": {\"__class__\": \"ConnectedValue\"}}, \"source_name\": \"target\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.3.0", + "type": "tool", + "uuid": "61f75528-3c9f-412b-b5ed-ecde3d5f3533", + "workflow_outputs": [ + { + "label": null, + "output_name": "Reaction_Network", + "uuid": "ccbff687-6072-449b-98ed-faf2ab59f8bf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rp2paths/rp2paths/1.5.0", + "errors": null, + "id": 5, + "input_connections": { + "rp2_pathways": { + "id": 4, + "output_name": "Reaction_Network" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RP2paths", + "name": "rp2_pathways" + } + ], + "label": null, + "name": "RP2paths", + "outputs": [ + { + "name": "master_pathways", + "type": "csv" + }, + { + "name": "compounds", + "type": "tsv" + } + ], + "position": { + "bottom": 328.3999938964844, + "height": 164.39999389648438, + "left": 924.2999877929688, + "right": 1124.2999877929688, + "top": 164, + "width": 200, + "x": 924.2999877929688, + "y": 164 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rp2paths/rp2paths/1.5.0", + "tool_shed_repository": { + "changeset_revision": "e3db7fb2c85e", + "name": "rp2paths", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"timeout\": \"1800\"}, \"rp2_pathways\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.0", + "type": "tool", + "uuid": "dbb47e06-b8c4-4ba3-9385-8a84ca952c7f", + "workflow_outputs": [ + { + "label": null, + "output_name": "master_pathways", + "uuid": "386e8738-8ffd-4b7c-9858-6c9f25825d2f" + }, + { + "label": null, + "output_name": "compounds", + "uuid": "0b6e6e77-47d6-49da-aa98-8be2633d2601" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpcompletion/rpcompletion/5.12.2", + "errors": null, + "id": 6, + "input_connections": { + "rp2_pathways": { + "id": 4, + "output_name": "Reaction_Network" + }, + "rp2paths_compounds": { + "id": 5, + "output_name": "compounds" + }, + "rp2paths_pathways": { + "id": 5, + "output_name": "master_pathways" + }, + "sink": { + "id": 3, + "output_name": "sink" + } + }, + "inputs": [], + "label": null, + "name": "Complete Reactions", + "outputs": [ + { + "name": "pathways", + "type": "input" + } + ], + "position": { + "bottom": 506.1000061035156, + "height": 245.60000610351562, + "left": 1200.5, + "right": 1400.5, + "top": 260.5, + "width": 200, + "x": 1200.5, + "y": 260.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpcompletion/rpcompletion/5.12.2", + "tool_shed_repository": { + "changeset_revision": "d5c53a916005", + "name": "rpcompletion", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"max_subpaths_filter\": \"10\", \"upper_flux_bound\": \"999999\", \"lower_flux_bound\": \"0\"}, \"rp2_pathways\": {\"__class__\": \"ConnectedValue\"}, \"rp2paths_compounds\": {\"__class__\": \"ConnectedValue\"}, \"rp2paths_pathways\": {\"__class__\": \"ConnectedValue\"}, \"sink\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.12.2", + "type": "tool", + "uuid": "4f7eded9-10da-4459-9345-f8058fc94905", + "workflow_outputs": [ + { + "label": null, + "output_name": "pathways", + "uuid": "6ac432db-4a20-44b2-a5d2-f0995a4a8697" + } + ] + } + ], + "parent_id": "synthetic-biology/retrosynthesis_analysis", + "path": "topics/synthetic-biology/tutorials/retrosynthesis_analysis/workflows/RetroSynthesis.ga", + "tags": [ + "synthetic-biology" + ], + "test_results": null, + "tests": false, + "title": "RetroSynthesis", + "topic_id": "synthetic-biology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/synthetic-biology-retrosynthesis_analysis/versions/retrosynthesis", + "tutorial_id": "retrosynthesis_analysis", + "url": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/retrosynthesis_analysis/workflows/RetroSynthesis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/retrosynthesis_analysis/workflows/RetroSynthesis.html", + "version": 1, + "wfid": "synthetic-biology-retrosynthesis_analysis", + "wfname": "retrosynthesis", + "workflow": "RetroSynthesis.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/tduigou/get_sbml_model/get_sbml_model/0.0.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/retropath2/retropath2/2.3.0", + "toolshed.g2.bx.psu.edu/repos/tduigou/rp2paths/rp2paths/1.5.0", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpcompletion/rpcompletion/5.12.2", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpextractsink/rpextractsink/5.12.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/rrparser/rrparser/2.4.6" + ], + "workflowhub_id": "1142" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "rpfba", + "owner": "iuc", + "revisions": "19be43e96154", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rpranker", + "owner": "tduigou", + "revisions": "bab690866445", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rpscore", + "owner": "tduigou", + "revisions": "da8ae7fa5ed3", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rpthermo", + "owner": "tduigou", + "revisions": "21a900eee812", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: rpfba\n owner: iuc\n revisions: 19be43e96154\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rpranker\n owner: tduigou\n revisions: bab690866445\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rpscore\n owner: tduigou\n revisions: da8ae7fa5ed3\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rpthermo\n owner: tduigou\n revisions: 21a900eee812\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/pathway_analysis/tutorial.json", + "contributors": [ + { + "email": "kenza.bazi-kabbaj@inrae.fr", + "id": "kenza12", + "joined": "2022-03", + "name": "Kenza Bazi-Kabbaj", + "orcid": "0000-0002-4319-5616", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kenza12/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kenza12.json" + }, + { + "email": "thomas.duigou@inrae.fr", + "id": "tduigou", + "joined": "2022-03", + "linkedin": "thomas-duigou-ba281730", + "name": "Thomas Duigou", + "orcid": "0000-0002-2649-2950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tduigou/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tduigou.json" + }, + { + "email": "joan.herisson@univ-evry.fr", + "id": "breakthewall", + "joined": "2022-03", + "linkedin": "joanherisson", + "name": "Joan H\u00e9risson", + "orcid": "0000-0001-9741-0847", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/breakthewall/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/breakthewall.json" + }, + { + "email": "guillaume.gricourt@inrae.fr", + "id": "guillaume-gricourt", + "joined": "2022-03", + "linkedin": "guillaume-gricourt", + "name": "Guillaume Gricourt", + "orcid": "0000-0003-0143-5535", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/guillaume-gricourt/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/guillaume-gricourt.json" + }, + { + "email": "ioana.popescu@univ-evry.fr", + "id": "ioanagry", + "joined": "2022-03", + "linkedin": "ioana-popescu-8207a026", + "name": "Ioana Popescu", + "orcid": "0000-0003-2547-8935", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ioanagry/", + "twitter": "ioanagrig", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ioanagry.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "Jean-loup.Faulon@inrae.fr", + "id": "jfaulon", + "joined": "2022-03", + "linkedin": "jean-loup-faulon-6b85976", + "name": "Jean-Loup Faulon", + "orcid": "0000-0003-4274-2953", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jfaulon/", + "twitter": "jeanloupfaulon", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jfaulon.json" + } + ], + "dir": "topics/synthetic-biology/tutorials/pathway_analysis", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "synthetic-biology/pathway_analysis", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Calculate the production flux of the lycopene target molecule using _Flux Balance Analysis_ tool.", + "Compute thermodynamics values to optimize the yield of the reaction producing the lycopene using _Thermo_ tool.", + "Compute the global score for the previous annotated pathways.", + "Rank the computed heterologous pathways depending on their score." + ], + "pageviews": 621, + "pub_date": "2022-09-26", + "questions": [ + "How to evaluate a set of heterologous pathways ?" + ], + "recordings": [ + { + "captioners": [ + "kenza12" + ], + "date": "2022-09-26", + "length": "5M", + "speakers": [ + "breakthewall" + ], + "type": "Demo", + "youtube_id": "240oxe8unnU" + } + ], + "short_id": "T00274", + "short_tools": [ + "rpranker", + "rpscore", + "rpthermo", + "rpfba" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "time_estimation": "20M", + "title": "Evaluating and ranking a set of pathways based on multiple metrics", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/rpfba/rpfba/5.12.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpranker/rpranker/5.12.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpscore/rpscore/5.12.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpthermo/rpthermo/5.12.1" + ], + "topic_name": "synthetic-biology", + "topic_name_human": "Synthetic Biology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "pathway_analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/synthetic-biology/tutorials/pathway_analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/pathway_analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/pathway_analysis/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 188, + "visitors": 397, + "workflows": [ + { + "creators": [], + "description": "Evaluating and ranking a set of pathways based on multiple metrics", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nHeterologous pathways\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nChassis where to produce target from\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nCell compartment ID\"]\n 3[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nBiomass reaction ID\"]\n 4[label=\"Flux balance analysis\"]\n 3 -> 4 [label=\"output\"]\n 2 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Thermo\"]\n 4 -> 5 [label=\"pathway_with_fba\"]\n 6[label=\"Score Pathway\"]\n 5 -> 6 [label=\"pathway_with_thermo\"]\n 7[label=\"Rank Pathways\"]\n 6 -> 7 [label=\"scored_pathway\"]\n k8111f52558454ac2a1d6c4bfd218cf3f[color=lightseagreen,label=\"Output\\nRanked Pathways\"]\n 7 -> k8111f52558454ac2a1d6c4bfd218cf3f\n}", + "history": [ + { + "hash": "25d6ed2bc398ff3ab67a86136615e7597e929ae8", + "message": "fix(main_workflow.ga): add tag and annotation", + "num": 2, + "short_hash": "25d6ed2bc", + "unix": "1663316015" + }, + { + "hash": "47a55fc0c8a916d8f494dbb6158659719a2b0872", + "message": "feat(pathway_analysis): add pathway analysis tutorial", + "num": 1, + "short_hash": "47a55fc0c", + "unix": "1660053898" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Heterologous pathways" + } + ], + "label": "Heterologous pathways", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 335.1999969482422, + "height": 82.19999694824219, + "left": 192.5, + "right": 392.5, + "top": 253, + "width": 200, + "x": 192.5, + "y": 253 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "396a82be-e939-4c16-95d7-cfafb0e472bd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Chassis where to produce target from" + } + ], + "label": "Chassis where to produce target from", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 449.6999969482422, + "height": 82.19999694824219, + "left": 190.5, + "right": 390.5, + "top": 367.5, + "width": 200, + "x": 190.5, + "y": 367.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "ca69a88b-c781-4d72-ab5c-92df2afc720a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Cell compartment ID" + } + ], + "label": "Cell compartment ID", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 555.6999969482422, + "height": 82.19999694824219, + "left": 192.5, + "right": 392.5, + "top": 473.5, + "width": 200, + "x": 192.5, + "y": 473.5 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "d92f3120-93f4-4341-aab7-7432a889fd40", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Biomass reaction ID" + } + ], + "label": "Biomass reaction ID", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 656.6999969482422, + "height": 82.19999694824219, + "left": 191.5, + "right": 391.5, + "top": 574.5, + "width": 200, + "x": 191.5, + "y": 574.5 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "d2ebc0df-8d14-471a-a940-f9163d309d70", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nHeterologous pathways\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nChassis where to produce target from\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nCell compartment ID\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Parameter\\nBiomass reaction ID\"];\n style 3 fill:#ded,stroke:#393,stroke-width:4px;\n 4[\"Flux balance analysis\"];\n 3 -->|output| 4;\n 2 -->|output| 4;\n 1 -->|output| 4;\n 0 -->|output| 4;\n 5[\"Thermo\"];\n 4 -->|pathway_with_fba| 5;\n 6[\"Score Pathway\"];\n 5 -->|pathway_with_thermo| 6;\n 7[\"Rank Pathways\"];\n 6 -->|scored_pathway| 7;\n 8111f525-5845-4ac2-a1d6-c4bfd218cf3f[\"Output\\nRanked Pathways\"];\n 7 --> 8111f525-5845-4ac2-a1d6-c4bfd218cf3f;\n style 8111f525-5845-4ac2-a1d6-c4bfd218cf3f stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Pathway Analysis", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rpfba/rpfba/5.12.1", + "errors": null, + "id": 4, + "input_connections": { + "biomass_rxn_id": { + "id": 3, + "output_name": "output" + }, + "compartment_id": { + "id": 2, + "output_name": "output" + }, + "model": { + "id": 1, + "output_name": "output" + }, + "pathway": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Flux balance analysis", + "name": "model" + }, + { + "description": "runtime parameter for tool Flux balance analysis", + "name": "pathway" + } + ], + "label": null, + "name": "Flux balance analysis", + "outputs": [ + { + "name": "pathway_with_fba", + "type": "sbml" + } + ], + "position": { + "bottom": 542.8000030517578, + "height": 204.8000030517578, + "left": 447.5, + "right": 647.5, + "top": 338, + "width": 200, + "x": 447.5, + "y": 338 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rpfba/rpfba/5.12.1", + "tool_shed_repository": { + "changeset_revision": "19be43e96154", + "name": "rpfba", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"merge\": \"false\", \"ignore_orphan_species\": \"true\"}, \"biomass_rxn_id\": {\"__class__\": \"ConnectedValue\"}, \"compartment_id\": {\"__class__\": \"ConnectedValue\"}, \"input_sim_type\": {\"sim_type\": \"fraction\", \"__current_case__\": 0, \"fraction_of\": \"0.75\"}, \"model\": {\"__class__\": \"RuntimeValue\"}, \"objective_rxn_id\": \"rxn_target\", \"pathway\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.12.1", + "type": "tool", + "uuid": "84470349-6e9c-4810-b2c8-3d5fdae0cca4", + "workflow_outputs": [ + { + "label": null, + "output_name": "pathway_with_fba", + "uuid": "7ff9a6bb-52a0-4ea3-bd2e-4091f37a8a27" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpthermo/rpthermo/5.12.1", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "pathway_with_fba" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Thermo", + "name": "input" + } + ], + "label": null, + "name": "Thermo", + "outputs": [ + { + "name": "pathway_with_thermo", + "type": "xml" + } + ], + "position": { + "bottom": 559.1000061035156, + "height": 113.60000610351562, + "left": 719.5, + "right": 919.5, + "top": 445.5, + "width": 200, + "x": 719.5, + "y": 445.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpthermo/rpthermo/5.12.1", + "tool_shed_repository": { + "changeset_revision": "21a900eee812", + "name": "rpthermo", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"ph\": \"7.5\", \"ionic_strength\": \"0.25\", \"pMg\": \"3.0\"}, \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.12.1", + "type": "tool", + "uuid": "7b32553d-b992-4a54-a863-815f9b946581", + "workflow_outputs": [ + { + "label": null, + "output_name": "pathway_with_thermo", + "uuid": "bdcb02f8-c488-4098-a20a-b43e7c172847" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpscore/rpscore/5.12.1", + "errors": null, + "id": 6, + "input_connections": { + "pathway": { + "id": 5, + "output_name": "pathway_with_thermo" + } + }, + "inputs": [], + "label": null, + "name": "Score Pathway", + "outputs": [ + { + "name": "scored_pathway", + "type": "xml" + } + ], + "position": { + "bottom": 544.6999969482422, + "height": 93.19999694824219, + "left": 1078.5, + "right": 1278.5, + "top": 451.5, + "width": 200, + "x": 1078.5, + "y": 451.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpscore/rpscore/5.12.1", + "tool_shed_repository": { + "changeset_revision": "da8ae7fa5ed3", + "name": "rpscore", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"no_of_rxns_thres\": \"10\"}, \"pathway\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.12.1", + "type": "tool", + "uuid": "6b680491-6b40-4f44-943e-9026a9264b54", + "workflow_outputs": [ + { + "label": null, + "output_name": "scored_pathway", + "uuid": "b1227404-d3a1-4a4d-a832-e89bdda762fa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpranker/rpranker/5.12.1", + "errors": null, + "id": 7, + "input_connections": { + "pathway_collection": { + "id": 6, + "output_name": "scored_pathway" + } + }, + "inputs": [], + "label": null, + "name": "Rank Pathways", + "outputs": [ + { + "name": "sorted_pathways", + "type": "csv" + } + ], + "position": { + "bottom": 538.6999969482422, + "height": 93.19999694824219, + "left": 1343.5, + "right": 1543.5, + "top": 445.5, + "width": 200, + "x": 1343.5, + "y": 445.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpranker/rpranker/5.12.1", + "tool_shed_repository": { + "changeset_revision": "bab690866445", + "name": "rpranker", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"pathway_collection\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.12.1", + "type": "tool", + "uuid": "39986296-e23e-4af7-ac3d-e84de3cb1b4c", + "workflow_outputs": [ + { + "label": "Ranked Pathways", + "output_name": "sorted_pathways", + "uuid": "8111f525-5845-4ac2-a1d6-c4bfd218cf3f" + } + ] + } + ], + "parent_id": "synthetic-biology/pathway_analysis", + "path": "topics/synthetic-biology/tutorials/pathway_analysis/workflows/main_workflow.ga", + "tags": [ + "synthetic-biology" + ], + "test_results": null, + "tests": false, + "title": "Pathway Analysis", + "topic_id": "synthetic-biology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/synthetic-biology-pathway_analysis/versions/main-workflow", + "tutorial_id": "pathway_analysis", + "url": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/pathway_analysis/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/pathway_analysis/workflows/main_workflow.html", + "version": 1, + "wfid": "synthetic-biology-pathway_analysis", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/rpfba/rpfba/5.12.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpranker/rpranker/5.12.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpscore/rpscore/5.12.1", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpthermo/rpthermo/5.12.1" + ], + "workflowhub_id": "1137" + } + ], + "zenodo_link": "https://zenodo.org/record/6628296" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "dnabot", + "owner": "tduigou", + "revisions": "ec9cef4b5b5a", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rpbasicdesign", + "owner": "tduigou", + "revisions": "de9f53630349", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "selenzy", + "owner": "tduigou", + "revisions": "34a9d136a5bf", + "tool_panel_section_label": "Synthetic Biology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: dnabot\n owner: tduigou\n revisions: ec9cef4b5b5a\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rpbasicdesign\n owner: tduigou\n revisions: de9f53630349\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: selenzy\n owner: tduigou\n revisions: 34a9d136a5bf\n tool_panel_section_label: Synthetic Biology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/basic_assembly_analysis/tutorial.json", + "contributors": [ + { + "email": "kenza.bazi-kabbaj@inrae.fr", + "id": "kenza12", + "joined": "2022-03", + "name": "Kenza Bazi-Kabbaj", + "orcid": "0000-0002-4319-5616", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kenza12/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kenza12.json" + }, + { + "email": "thomas.duigou@inrae.fr", + "id": "tduigou", + "joined": "2022-03", + "linkedin": "thomas-duigou-ba281730", + "name": "Thomas Duigou", + "orcid": "0000-0002-2649-2950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tduigou/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tduigou.json" + }, + { + "email": "joan.herisson@univ-evry.fr", + "id": "breakthewall", + "joined": "2022-03", + "linkedin": "joanherisson", + "name": "Joan H\u00e9risson", + "orcid": "0000-0001-9741-0847", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/breakthewall/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/breakthewall.json" + }, + { + "email": "guillaume.gricourt@inrae.fr", + "id": "guillaume-gricourt", + "joined": "2022-03", + "linkedin": "guillaume-gricourt", + "name": "Guillaume Gricourt", + "orcid": "0000-0003-0143-5535", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/guillaume-gricourt/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/guillaume-gricourt.json" + }, + { + "email": "ioana.popescu@univ-evry.fr", + "id": "ioanagry", + "joined": "2022-03", + "linkedin": "ioana-popescu-8207a026", + "name": "Ioana Popescu", + "orcid": "0000-0003-2547-8935", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ioanagry/", + "twitter": "ioanagrig", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ioanagry.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "Jean-loup.Faulon@inrae.fr", + "id": "jfaulon", + "joined": "2022-03", + "linkedin": "jean-loup-faulon-6b85976", + "name": "Jean-Loup Faulon", + "orcid": "0000-0003-4274-2953", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jfaulon/", + "twitter": "jeanloupfaulon", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jfaulon.json" + } + ], + "dir": "topics/synthetic-biology/tutorials/basic_assembly_analysis", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "synthetic-biology/basic_assembly_analysis", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Knowing the reaction is not sufficient to implement a pathway, one needs to find out which enzyme is capable of catalyzing the reactions. For this, Selenzyme is used to search for enzymes using reactions as query. As a result, UniProt IDs of enzymes are stored as annotation in SBML files.", + "Expressing pathways into cells involved not only gene encoding enzymes, but also additional genetic parts such as libraries of promoter(s), RBSs, terminators, ... From these, multiple combinations of parts are possible, and each one could produce different results. Several methods exist to assemble genetic parts together into plasmids, the BASIC Assembly approach is one of them. The BasicDesign tool generates combinations of the genetic parts that are compliant with the BASIC Assembly patterns.", + "Automatizing the construction of compound producing strains necessitate to translate protocols into instructions that could be understable by lab robots. To do this, DNA-Bot reads the list of constructs and the DNA parts information and generates python instructions for the automated build of the genetic constructs using OpenTrons liquid handling robots." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Annotate the SBML pathway using Selenzy tool.", + "Design plasmids encoding predicted pathways using rpbasicdesign tool.", + "Generate dnabot scripts enabling the automatic build of plasmids." + ], + "pageviews": 1116, + "pub_date": "2022-05-12", + "questions": [ + "How to design plasmids encoding predicted pathways using BASIC assembly method ?", + "How to generate scripts enabling the automatic build of plasmids ?" + ], + "recordings": [ + { + "captioners": [ + "kenza12" + ], + "date": "2022-05-11", + "length": "3M", + "speakers": [ + "breakthewall" + ], + "type": "Demo", + "youtube_id": "0ItpHuSM7t0" + } + ], + "short_id": "T00273", + "short_tools": [ + "dnabot", + "rpbasicdesign", + "selenzy-wrapper" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "time_estimation": "15M", + "title": "Designing plasmids encoding predicted pathways by using the BASIC assembly method", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/tduigou/dnabot/dnabot/3.1.0", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpbasicdesign/rpbasicdesign/0.3.4", + "toolshed.g2.bx.psu.edu/repos/tduigou/selenzy/selenzy-wrapper/0.2.0" + ], + "topic_name": "synthetic-biology", + "topic_name_human": "Synthetic Biology", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "basic_assembly_analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/synthetic-biology/tutorials/basic_assembly_analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/basic_assembly_analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/synthetic-biology/tutorials/basic_assembly_analysis/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 146, + "visitors": 685, + "workflows": [ + { + "creators": [], + "description": "Design plasmids encoding predicted pathways by using the BASIC assembly method.", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPathway SBML\"]\n 1[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nHost taxon ID\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nEnzyme taxon IDs\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nLinkers and user parts\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDNA-Bot settings\"]\n 5[label=\"Selenzyme\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n k54b833faec4f458ab08523211f4e56ca[color=lightseagreen,label=\"Output\\nUniprot IDs\"]\n 5 -> k54b833faec4f458ab08523211f4e56ca\n 6[label=\"BasicDesign\"]\n 3 -> 6 [label=\"output\"]\n 5 -> 6 [label=\"uniprot_ids\"]\n 7[label=\"DNA-Bot\"]\n 4 -> 7 [label=\"output\"]\n 6 -> 7 [label=\"Constructs\"]\n 6 -> 7 [label=\"User parts plate\"]\n 6 -> 7 [label=\"Biolegio plate\"]\n}", + "history": [ + { + "hash": "ef543ff8fc3b4e277e4fea70716284dc64680159", + "message": "add slides, more background and new contributors", + "num": 3, + "short_hash": "ef543ff8f", + "unix": "1647522263" + }, + { + "hash": "002bde23969696132aacbc96d5f20e011d478acc", + "message": "add tag synthetic biology", + "num": 2, + "short_hash": "002bde239", + "unix": "1646148305" + }, + { + "hash": "e01203d3bc2a8e9de5f6e1253d1b5fd368e2ef9a", + "message": "add new tutorial for synthetic biology: basic assembly analysis", + "num": 1, + "short_hash": "e01203d3b", + "unix": "1645628230" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Pathway (SBML)" + } + ], + "label": "Pathway (SBML)", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 314.8000030517578, + "height": 61.80000305175781, + "left": 239, + "right": 439, + "top": 253, + "width": 200, + "x": 239, + "y": 253 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1adcdfe9-4e38-4d09-8d9f-ee7b8e089a26", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Host taxon ID" + } + ], + "label": "Host taxon ID", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 404.8000030517578, + "height": 61.80000305175781, + "left": 241, + "right": 441, + "top": 343, + "width": 200, + "x": 241, + "y": 343 + }, + "tool_id": null, + "tool_state": "{\"default\": 83333, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "59aef08a-be1d-4967-85fe-c497f948471c", + "workflow_outputs": [] + }, + { + "annotation": "Comma separated values", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Comma separated values", + "name": "Enzyme taxon IDs" + } + ], + "label": "Enzyme taxon IDs", + "name": "Input parameter", + "outputs": [], + "position": { + "bottom": 517.1999969482422, + "height": 82.19999694824219, + "left": 241, + "right": 441, + "top": 435, + "width": 200, + "x": 241, + "y": 435 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "37fa5d18-c5dc-42f0-be7c-88bdd6205d74", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Linkers and user parts" + } + ], + "label": "Linkers and user parts", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 628.1999969482422, + "height": 82.19999694824219, + "left": 243, + "right": 443, + "top": 546, + "width": 200, + "x": 243, + "y": 546 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1e990d43-4095-4d45-a8e8-ccc1a905b283", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DNA-Bot settings" + } + ], + "label": "DNA-Bot settings", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 852.1999969482422, + "height": 82.19999694824219, + "left": 246, + "right": 446, + "top": 770, + "width": 200, + "x": 246, + "y": 770 + }, + "tool_id": null, + "tool_state": "{\"optional\": true}", + "tool_version": null, + "type": "data_input", + "uuid": "d797586c-cfd7-4c33-be64-28354ad76b22", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPathway SBML\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Parameter\\nHost taxon ID\"];\n style 1 fill:#ded,stroke:#393,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nEnzyme taxon IDs\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nLinkers and user parts\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nDNA-Bot settings\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Selenzyme\"];\n 2 -->|output| 5;\n 1 -->|output| 5;\n 0 -->|output| 5;\n 54b833fa-ec4f-458a-b085-23211f4e56ca[\"Output\\nUniprot IDs\"];\n 5 --> 54b833fa-ec4f-458a-b085-23211f4e56ca;\n style 54b833fa-ec4f-458a-b085-23211f4e56ca stroke:#2c3143,stroke-width:4px;\n 6[\"BasicDesign\"];\n 3 -->|output| 6;\n 5 -->|uniprot_ids| 6;\n 7[\"DNA-Bot\"];\n 4 -->|output| 7;\n 6 -->|Constructs| 7;\n 6 -->|User parts plate| 7;\n 6 -->|Biolegio plate| 7;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Genetic Design (BASIC Assembly)", + "outputs": [ + { + "annotation": "Performs enzyme selection from a reaction query.", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/selenzy/selenzy-wrapper/0.2.0", + "errors": null, + "id": 5, + "input_connections": { + "adv|enzyme_taxIDs": { + "id": 2, + "output_name": "output" + }, + "adv|host_taxID": { + "id": 1, + "output_name": "output" + }, + "pathway": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Selenzyme", + "name": "pathway" + } + ], + "label": "Selenzyme", + "name": "Selenzyme", + "outputs": [ + { + "name": "uniprot_ids", + "type": "xml" + }, + { + "name": "uniprot_ids_csv", + "type": "csv" + } + ], + "position": { + "bottom": 508.1999969482422, + "height": 225.1999969482422, + "left": 553, + "right": 753, + "top": 283, + "width": 200, + "x": 553, + "y": 283 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/selenzy/selenzy-wrapper/0.2.0", + "tool_shed_repository": { + "changeset_revision": "34a9d136a5bf", + "name": "selenzy", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"host_taxID\": {\"__class__\": \"ConnectedValue\"}, \"enzyme_taxIDs\": {\"__class__\": \"ConnectedValue\"}, \"nb_ids\": \"-1\", \"nb_targets\": \"500\", \"direction\": \"0.0\", \"NoMSA\": \"true\"}, \"pathway\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "2136d777-a9ec-4904-a88e-155e40aaf22a", + "workflow_outputs": [ + { + "label": null, + "output_name": "uniprot_ids_csv", + "uuid": "33768258-3781-4bd1-802c-e4b14cdca234" + }, + { + "label": "Uniprot IDs", + "output_name": "uniprot_ids", + "uuid": "54b833fa-ec4f-458a-b085-23211f4e56ca" + } + ] + }, + { + "annotation": "Extracts enzyme IDs from rpSBML files.", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpbasicdesign/rpbasicdesign/0.3.4", + "errors": null, + "id": 6, + "input_connections": { + "adv|parts_files": { + "id": 3, + "output_name": "output" + }, + "rpsbml_file": { + "id": 5, + "output_name": "uniprot_ids" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool BasicDesign", + "name": "adv" + }, + { + "description": "runtime parameter for tool BasicDesign", + "name": "rpsbml_file" + } + ], + "label": "BasicDesign", + "name": "BasicDesign", + "outputs": [ + { + "name": "sbol_dir", + "type": "input" + }, + { + "name": "Constructs", + "type": "csv" + }, + { + "name": "User parts plate", + "type": "csv" + }, + { + "name": "Biolegio plate", + "type": "csv" + } + ], + "position": { + "bottom": 646.8000030517578, + "height": 214.8000030517578, + "left": 816, + "right": 1016, + "top": 432, + "width": 200, + "x": 816, + "y": 432 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/rpbasicdesign/rpbasicdesign/0.3.4", + "tool_shed_repository": { + "changeset_revision": "de9f53630349", + "name": "rpbasicdesign", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"parts_files\": {\"__class__\": \"RuntimeValue\"}, \"lms_id\": \"LMS\", \"lmp_id\": \"LMP\", \"cds_permutation\": \"true\"}, \"backbone_id\": \"BASIC_SEVA_37_CmR-p15A.1\", \"rpsbml_file\": {\"__class__\": \"RuntimeValue\"}, \"sample_size\": \"88\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "7a2617aa-2e4a-4214-b497-1a8102b85f8b", + "workflow_outputs": [ + { + "label": null, + "output_name": "Constructs", + "uuid": "afe416d0-ee9e-467b-81e0-b8a64f1251ac" + }, + { + "label": null, + "output_name": "User parts plate", + "uuid": "2283c57e-2fa0-4177-95b9-64373f21d044" + }, + { + "label": null, + "output_name": "sbol_dir", + "uuid": "81404f3f-327e-4c80-8ec7-c833ae5414fb" + }, + { + "label": null, + "output_name": "Biolegio plate", + "uuid": "2d455fed-880e-4ab5-b15d-c1c7d789147a" + } + ] + }, + { + "annotation": "DNA assembly using BASIC on OpenTrons.", + "content_id": "toolshed.g2.bx.psu.edu/repos/tduigou/dnabot/dnabot/3.1.0", + "errors": null, + "id": 7, + "input_connections": { + "adv|default_settings_file": { + "id": 4, + "output_name": "output" + }, + "construct_file": { + "id": 6, + "output_name": "Constructs" + }, + "plate_files": [ + { + "id": 6, + "output_name": "User parts plate" + }, + { + "id": 6, + "output_name": "Biolegio plate" + } + ] + }, + "inputs": [ + { + "description": "runtime parameter for tool DNA-Bot", + "name": "adv" + }, + { + "description": "runtime parameter for tool DNA-Bot", + "name": "construct_file" + }, + { + "description": "runtime parameter for tool DNA-Bot", + "name": "plate_files" + } + ], + "label": "DNA-Bot", + "name": "DNA-Bot", + "outputs": [ + { + "name": "dnabot_scripts", + "type": "tar" + } + ], + "position": { + "bottom": 728.8000030517578, + "height": 194.8000030517578, + "left": 1073, + "right": 1273, + "top": 534, + "width": 200, + "x": 1073, + "y": 534 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/tduigou/dnabot/dnabot/3.1.0", + "tool_shed_repository": { + "changeset_revision": "de6812daba39", + "name": "dnabot", + "owner": "tduigou", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"default_settings_file\": {\"__class__\": \"RuntimeValue\"}, \"etoh_well\": \"A11\", \"soc_column\": \"1\"}, \"construct_file\": {\"__class__\": \"RuntimeValue\"}, \"plate_files\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": null, + "type": "tool", + "uuid": "c09c99e4-5e0c-4c04-9f9b-3c30183d3816", + "workflow_outputs": [ + { + "label": null, + "output_name": "dnabot_scripts", + "uuid": "ce5be4f0-48fb-45f0-84ad-15348645c950" + } + ] + } + ], + "parent_id": "synthetic-biology/basic_assembly_analysis", + "path": "topics/synthetic-biology/tutorials/basic_assembly_analysis/workflows/Genetic_Design_BASIC_Assembly.ga", + "tags": [ + "synthetic-biology" + ], + "test_results": null, + "tests": false, + "title": "Genetic Design (BASIC Assembly)", + "topic_id": "synthetic-biology", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/synthetic-biology-basic_assembly_analysis/versions/genetic-design-basic-assembly", + "tutorial_id": "basic_assembly_analysis", + "url": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/basic_assembly_analysis/workflows/Genetic_Design_BASIC_Assembly.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/synthetic-biology/tutorials/basic_assembly_analysis/workflows/Genetic_Design_BASIC_Assembly.html", + "version": 1, + "wfid": "synthetic-biology-basic_assembly_analysis", + "wfname": "genetic-design-basic-assembly", + "workflow": "Genetic_Design_BASIC_Assembly.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/tduigou/dnabot/dnabot/3.1.0", + "toolshed.g2.bx.psu.edu/repos/tduigou/rpbasicdesign/rpbasicdesign/0.3.4", + "toolshed.g2.bx.psu.edu/repos/tduigou/selenzy/selenzy-wrapper/0.2.0" + ], + "workflowhub_id": "1147" + } + ], + "zenodo_link": "https://zenodo.org/record/6123887" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/workshop-intro/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/teaching/tutorials/workshop-intro", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "teaching/workshop-intro", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-02-20", + "pageviews": 5726884, + "pub_date": "2019-06-04", + "redirect_from": [ + "/topics/instructors/tutorials/workshop-intro/slides", + "/short/teaching/workshop-intro/slides", + "/short/S00093" + ], + "short_id": "S00093", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "prepare", + "supported_servers": [], + "symlink": null, + "time_estimation": "30m", + "title": "Workshop Kickoff", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "workshop-intro", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/workshop-intro/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/workshop-intro/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/workshop-intro/slides.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gtn-for-instructors/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/teaching/tutorials/gtn-for-instructors", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "teaching/gtn-for-instructors", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "GTN offers many, many resources for instructors" + ], + "layout": "tutorial_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-08-08", + "pageviews": 2667600, + "pub_date": "2022-09-23", + "questions": [ + "How can I use the GTN for teaching?", + "What resources are available?", + "Why is it a good choice?" + ], + "short_id": "S00092", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": [], + "symlink": null, + "time_estimation": "10M", + "title": "Overview of the Galaxy Training Material for Instructors", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "gtn-for-instructors", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/gtn-for-instructors/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gtn-for-instructors/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gtn-for-instructors/slides.json" + }, + "version": 3, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 142, + "visitors": 1117114 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/assessment/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom", + "allegravia", + "ppalagi", + "elixir-goblet-ttt" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "allegravia", + "joined": "2022-09", + "name": "Allegra Via", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/allegravia/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/allegravia.json" + }, + { + "id": "ppalagi", + "joined": "2022-09", + "name": "Patricia Palagi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ppalagi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ppalagi.json" + }, + { + "avatar": "/training-material/shared/images/elixir.png", + "github": false, + "id": "elixir-goblet-ttt", + "joined": "2022-09", + "name": "ELIXIR Goblet Train the Trainers", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-goblet-ttt/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/elixir-goblet-ttt.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/teaching/tutorials/assessment", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/assessment", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Formative assessment should be frequent", + "Feedback is hard" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Describe the differences between formative and summative assessment", + "Explain why frequent feedback is important", + "Describe a few techniques for formative feedback", + "List a few techniques to cope with feedback on your teaching efforts" + ], + "pageviews": 1039, + "pub_date": "2022-09-23", + "questions": [ + "What are the different types of feedback?", + "When do get and receive feedback?", + "For which purpose do we need feedback?" + ], + "quiz": [ + { + "contributors": [ + "bebatut" + ], + "id": "diagnostic_assessment.yaml", + "path": "topics/teaching/tutorials/assessment/quiz/diagnostic_assessment.yaml", + "title": "Diagnostic Assessment" + }, + { + "contributors": [ + "bebatut" + ], + "id": "formative_assessment.yaml", + "path": "topics/teaching/tutorials/assessment/quiz/formative_assessment.yaml", + "title": "Collecting formative assessment" + }, + { + "contributors": [ + "bebatut" + ], + "id": "frequency_formative_assessment.yaml", + "path": "topics/teaching/tutorials/assessment/quiz/frequency_formative_assessment.yaml", + "title": "How frequent should formative feedback be?" + }, + { + "contributors": [ + "bebatut" + ], + "id": "integrate_formative_assessment.yaml", + "path": "topics/teaching/tutorials/assessment/quiz/integrate_formative_assessment.yaml", + "title": "How to integrate the result of formative assessment / feedback in your course?" + } + ], + "requirements": [ + { + "topic_name": "contributing", + "tutorials": [ + "learning-principles", + "design" + ], + "type": "internal" + } + ], + "short_id": "T00276", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pedagogy", + "supported_servers": [], + "symlink": null, + "time_estimation": "3h30m", + "title": "Assessment and feedback in training and teachings", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "assessment", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/assessment/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/assessment/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/assessment/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 40, + "visitors": 879 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/organize-workshop/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/teaching/tutorials/organize-workshop", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/organize-workshop", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Running a workshop is not easy, there are many things to remember", + "This document is a non-exhaustive list, please add to it!" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": null, + "pageviews": 141, + "pub_date": "2018-11-15", + "questions": [ + "What should we think about when we organize a workshop?", + "Have we done everything necessary for organising a great workshop?" + ], + "redirect_from": [ + "/topics/instructors/tutorials/organize-workshop/tutorial", + "/short/teaching/organize-workshop", + "/short/T00283" + ], + "short_id": "T00283", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "prepare", + "supported_servers": [], + "symlink": null, + "time_estimation": "3H", + "title": "Organizing a workshop", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "organize-workshop", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/organize-workshop/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/organize-workshop/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/organize-workshop/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 62, + "visitors": 125 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/motivation_demotivation/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom", + "allegravia", + "ppalagi", + "elixir-goblet-ttt" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "allegravia", + "joined": "2022-09", + "name": "Allegra Via", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/allegravia/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/allegravia.json" + }, + { + "id": "ppalagi", + "joined": "2022-09", + "name": "Patricia Palagi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ppalagi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ppalagi.json" + }, + { + "avatar": "/training-material/shared/images/elixir.png", + "github": false, + "id": "elixir-goblet-ttt", + "joined": "2022-09", + "name": "ELIXIR Goblet Train the Trainers", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-goblet-ttt/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/elixir-goblet-ttt.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/teaching/tutorials/motivation_demotivation", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/motivation_demotivation", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "To have fully MOTIVATED learners, it is important that learners see the value, learner self-efficacy is high and the environment is supportive" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "List factors of motivation and demotivation", + "Identify what instructors can do to motivate and avoid demotivating learners" + ], + "pageviews": 1615, + "pub_date": "2022-09-23", + "questions": [ + "What is motivation and demotivation?", + "How do motivation and demotivation impact learning processes?", + "What can instructors do to motivate learners?" + ], + "quiz": [ + { + "contributors": [ + "bebatut" + ], + "id": "demotivating_learning_experience.yaml", + "path": "topics/teaching/tutorials/motivation_demotivation/quiz/demotivating_learning_experience.yaml", + "title": "Recall a demotivating learning experience" + }, + { + "contributors": [ + "bebatut" + ], + "id": "motivating_learning_experience.yaml", + "path": "topics/teaching/tutorials/motivation_demotivation/quiz/motivating_learning_experience.yaml", + "title": "Recall a motivating learning experience" + } + ], + "requirements": [ + { + "topic_name": "contributing", + "tutorials": [ + "learning-principles" + ], + "type": "internal" + } + ], + "short_id": "T00282", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pedagogy", + "supported_servers": [], + "symlink": null, + "time_estimation": "60m", + "title": "Motivation and Demotivation", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "motivation_demotivation", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/motivation_demotivation/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/motivation_demotivation/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/motivation_demotivation/tutorial.json" + }, + "version": 10, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 40, + "visitors": 1370 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/galaxy-admin-training/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/teaching/tutorials/galaxy-admin-training", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/galaxy-admin-training", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Infrastructure is available for running GATs for free from UseGalaxy.eu", + "This can be very convenient and easy to use", + "EU provides appropriate DNS entries so you can run trainings with ITs." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Interact with the UseGalaxy.eu admins to arrange for infrastructure", + "Run a great training!" + ], + "pageviews": 103, + "pub_date": "2020-11-04", + "questions": [ + "How do I organise a Galaxy Admin Training (GAT)", + "What do I need to set up?", + "What should I know during the training?" + ], + "redirect_from": [ + "/topics/instructors/tutorials/galaxy-admin-training/tutorial", + "/short/teaching/galaxy-admin-training", + "/short/T00278" + ], + "requirements": [ + { + "topic_name": "admin", + "tutorials": [ + "ansible", + "terraform" + ], + "type": "internal" + } + ], + "short_id": "T00278", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "prepare", + "supported_servers": [], + "symlink": null, + "time_estimation": "60m", + "title": "Galaxy Admin Training", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "galaxy-admin-training", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/galaxy-admin-training/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/galaxy-admin-training/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/galaxy-admin-training/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 205, + "visitors": 93 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/setup-galaxy-for-training/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/teaching/tutorials/setup-galaxy-for-training", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/setup-galaxy-for-training", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Technical requirements have been defined for all the training materials", + "Ephemeris can be used to automatically install these requirements to an existing Galaxy", + "Convenience scripts are provided in the training material repository allow for easy installation", + "Docker images can easily be created per topic" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Use ephemeris to install the training requirements to a Galaxy instance", + "Create a docker image for a training topic" + ], + "pageviews": 256, + "pub_date": "2018-06-04", + "questions": [ + "How do I prepare my Galaxy instance to support a training module?", + "How can I generate a Docker Galaxy instance for my topic?" + ], + "redirect_from": [ + "/topics/instructors/tutorials/setup-galaxy-for-training/tutorial", + "/short/teaching/setup-galaxy-for-training", + "/short/T00285" + ], + "short_id": "T00285", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "prepare", + "supported_servers": [], + "symlink": null, + "time_estimation": "2h", + "title": "Set up a Galaxy for Training", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "setup-galaxy-for-training", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/setup-galaxy-for-training/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/setup-galaxy-for-training/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/setup-galaxy-for-training/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 202, + "visitors": 227 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/live-coding/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + } + ], + "dir": "topics/teaching/tutorials/live-coding", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/live-coding", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Live coding forces the instructor to slow down.", + "Coding-along gives learners continuous practice and feedback.\\", + "Mistakes made during participatory live coding are valuable learning opportunities." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Explain the advantages and limitations of participatory live coding.", + "Summarize the key dos and do nots of participatory live coding.", + "Demonstrate participatory live coding." + ], + "pageviews": 55, + "pub_date": "2022-09-23", + "questions": [ + "Why do we teach programming using participatory live coding?" + ], + "short_id": "T00281", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "practises", + "supported_servers": [], + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Live Coding is a Skill", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "live-coding", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/live-coding/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/live-coding/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/live-coding/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 55 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/learner_participation_engagement/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom", + "allegravia", + "ppalagi", + "elixir-goblet-ttt" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "allegravia", + "joined": "2022-09", + "name": "Allegra Via", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/allegravia/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/allegravia.json" + }, + { + "id": "ppalagi", + "joined": "2022-09", + "name": "Patricia Palagi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ppalagi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ppalagi.json" + }, + { + "avatar": "/training-material/shared/images/elixir.png", + "github": false, + "id": "elixir-goblet-ttt", + "joined": "2022-09", + "name": "ELIXIR Goblet Train the Trainers", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-goblet-ttt/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/elixir-goblet-ttt.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/teaching/tutorials/learner_participation_engagement", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/learner_participation_engagement", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Select learning experiences according to the Training Goals, write the Learning Objectives and identify the corresponding Bloom's level", + "Select teaching practices (learning techniques) that will allow learners to achieve the LOs", + "Always remember that learning occurs BY DOING, which means that learners will be able to DESCRIBE something if and only if they will have the chance to practice it; they will be able to APPLY a rule only after having applied themselves the rule, and that, in order to successfully practice the APPLICATION of the rule, they must remember the rule, they must have understood it and how it can be used for applications, and they must have seen examples of how to apply it.", + "Be aware of other practices and behaviours supporting interactivity, a positive and engaging learning environment, active and collaborative learning, stimulating lessons, frequent feedback" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-11", + "objectives": [ + "Describe what makes training effective", + "Describe what makes a trainer effective", + "Identify some strategies that facilitate active, interactive and collaborative learning" + ], + "pageviews": 1590, + "pub_date": "2022-09-23", + "questions": [ + "What does make a training effective?", + "How can instructors enhance learner participation and engagement?" + ], + "quiz": [ + { + "contributors": [ + "bebatut" + ], + "id": "active_learning_strategies.yaml", + "path": "topics/teaching/tutorials/learner_participation_engagement/quiz/active_learning_strategies.yaml", + "title": "Which strategies for active learning training did you use?" + }, + { + "contributors": [ + "bebatut" + ], + "id": "active_learning_strategies_bloom_levels.yaml", + "path": "topics/teaching/tutorials/learner_participation_engagement/quiz/active_learning_strategies_bloom_levels.yaml", + "title": "What is the highest Bloom's level supported by each teaching technique?" + }, + { + "contributors": [ + "bebatut" + ], + "id": "effective_training_trainer.yaml", + "path": "topics/teaching/tutorials/learner_participation_engagement/quiz/effective_training_trainer.yaml", + "title": "What makes training effective and a good trainer?" + }, + { + "contributors": [ + "bebatut" + ], + "id": "mazur_interview.yaml", + "path": "topics/teaching/tutorials/learner_participation_engagement/quiz/mazur_interview.yaml", + "title": "Reflect on Mazur's interview" + }, + { + "contributors": [ + "bebatut" + ], + "id": "trainer_skills.yaml", + "path": "topics/teaching/tutorials/learner_participation_engagement/quiz/trainer_skills.yaml", + "title": "Reflect on your skills as a trainer" + } + ], + "requirements": [ + { + "topic_name": "contributing", + "tutorials": [ + "learning-principles", + "design" + ], + "type": "internal" + } + ], + "short_id": "T00280", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pedagogy", + "supported_servers": [], + "symlink": null, + "time_estimation": "60m", + "title": "Training techniques to enhance learner participation and engagement", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "learner_participation_engagement", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/learner_participation_engagement/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/learner_participation_engagement/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/learner_participation_engagement/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 46, + "visitors": 1331 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/hybrid-training/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/teaching/tutorials/hybrid-training", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/hybrid-training", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "With hybrid training events, remote instructors pair up with on-site helpers to deliver 1 training across multiple sites simultaneously", + "Hybrid training events reduce costs and improve accessibility" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-25", + "objectives": [ + "Describe hybrid training", + "Organize an hybrid training event using Galaxy" + ], + "pageviews": 10, + "pub_date": "2022-09-23", + "questions": [ + "What is hybrid training?", + "How to deliver hybrid training using Galaxy?", + "What should be prepared for an hybrid training event?" + ], + "short_id": "T00279", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "practises", + "supported_servers": [], + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Hybrid training", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "hybrid-training", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/hybrid-training/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/hybrid-training/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/hybrid-training/tutorial.json" + }, + "version": 7, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 3, + "visitors": 8 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/setup-tiaas-for-training/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/teaching/tutorials/setup-tiaas-for-training", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/setup-tiaas-for-training", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Infrastructure is available for running Galaxy trainings for free from UseGalaxy.*", + "This can be easier than setting up a local Galaxy and may have more resources available", + "But have a backup plan" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-12-20", + "objectives": [ + "Identify if it is appropriate", + "Interact with the service administrators to arrange for infrastructure" + ], + "pageviews": 308, + "pub_date": "2018-11-15", + "questions": [ + "Is this service appropriate for my event?" + ], + "redirect_from": [ + "/topics/instructors/tutorials/setup-tiaas-for-training/tutorial", + "/short/teaching/setup-tiaas-for-training", + "/short/T00286" + ], + "short_id": "T00286", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "prepare", + "supported_servers": [], + "symlink": null, + "tags": [ + "cyoa" + ], + "time_estimation": "10m", + "title": "Training Infrastructure as a Service", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "setup-tiaas-for-training", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/setup-tiaas-for-training/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/setup-tiaas-for-training/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/setup-tiaas-for-training/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 253, + "visitors": 131 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/experiences/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + } + ], + "dir": "topics/teaching/tutorials/experiences", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/experiences", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Every instructor has their prefered way to teach using Galaxy" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2022-09-23", + "objectives": [ + "Learn how others teach using Galaxy" + ], + "pageviews": 396, + "pub_date": "2022-09-23", + "questions": [ + "How to teach using Galaxy?", + "What are the different practises?" + ], + "redirect_from": [ + "/topics/instructors/philosophies/", + "/short/teaching/experiences", + "/short/T00277" + ], + "short_id": "T00277", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "practises", + "supported_servers": [], + "symlink": null, + "time_estimation": "1h", + "title": "Teaching experiences", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "experiences", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/experiences/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/experiences/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/experiences/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 192, + "visitors": 182 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/workshop-final-exercise/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom", + "allegravia", + "ppalagi", + "elixir-goblet-ttt" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "id": "allegravia", + "joined": "2022-09", + "name": "Allegra Via", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/allegravia/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/allegravia.json" + }, + { + "id": "ppalagi", + "joined": "2022-09", + "name": "Patricia Palagi", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ppalagi/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ppalagi.json" + }, + { + "avatar": "/training-material/shared/images/elixir.png", + "github": false, + "id": "elixir-goblet-ttt", + "joined": "2022-09", + "name": "ELIXIR Goblet Train the Trainers", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-goblet-ttt/", + "url": "https://training.galaxyproject.org/training-material/api/organisations/elixir-goblet-ttt.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/teaching/tutorials/workshop-final-exercise", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/workshop-final-exercise", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Feedback needs to be positive and be specific" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "objectives": [ + "Create a 5 minute training", + "Deliver a 5 minute training", + "Deliver and receive feedback" + ], + "pageviews": 47, + "pub_date": "2023-06-12", + "questions": [ + "How can we apply all pedagogical concepts together for training?" + ], + "requirements": [ + { + "topic_name": "contributing", + "tutorials": [ + "learning-principles", + "design" + ], + "type": "internal" + }, + { + "topic_name": "teaching", + "tutorials": [ + "assessment", + "motivation_demotivation" + ], + "type": "internal" + } + ], + "short_id": "T00354", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "pedagogy", + "supported_servers": [], + "symlink": null, + "time_estimation": "60m", + "title": "Train-the-Trainer: putting it all together", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "workshop-final-exercise", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/workshop-final-exercise/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/workshop-final-exercise/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/workshop-final-exercise/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 50, + "visitors": 40 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/running-workshop/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "dir": "topics/teaching/tutorials/running-workshop", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/running-workshop", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The take-home messages", + "They will appear at the end of the tutorial" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": null, + "pageviews": 182, + "pub_date": "2018-11-15", + "questions": null, + "redirect_from": [ + "/topics/instructors/tutorials/running-workshop/tutorial", + "/short/teaching/running-workshop", + "/short/T00284" + ], + "short_id": "T00284", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "prepare", + "supported_servers": [], + "symlink": null, + "time_estimation": "3H", + "title": "Running a workshop as instructor", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "running-workshop", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/running-workshop/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/running-workshop/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/running-workshop/tutorial.json" + }, + "version": 5, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 54, + "visitors": 65 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gallantries-coursebuilder/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/teaching/tutorials/gallantries-coursebuilder", + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/gallantries-coursebuilder", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Can make hosting Gallantries/Sm\u00f6rg\u00e5sbord style courses easier" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-02", + "objectives": [ + "Identify if it is appropriate" + ], + "pageviews": 58, + "pub_date": "2023-11-02", + "questions": [ + "Is this service appropriate for my event?" + ], + "requirements": [ + { + "topic_name": "contributing", + "type": "internal" + } + ], + "short_id": "T00372", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "prepare", + "supported_servers": [], + "symlink": null, + "tags": [ + "cyoa" + ], + "time_estimation": "10m", + "title": "Course Builder", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gallantries-coursebuilder", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/gallantries-coursebuilder/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gallantries-coursebuilder/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gallantries-coursebuilder/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 103, + "visitors": 48 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gallantries-async/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom", + "hexylena" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/teaching/tutorials/gallantries-async", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/gallantries-async", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "With hybrid training events, remote instructors pair up with on-site helpers to deliver 1 training across multiple sites simultaneously", + "With asynchronous events, instead the contents are prepared ahead of time", + "Asynchronous, online training events reduce costs and improve accessibility, even further than hybrid trainings" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-02", + "objectives": [ + "Describe asynchronous training", + "Organize an asynchronous training event using Galaxy" + ], + "pageviews": 1, + "pub_date": "2023-11-02", + "questions": [ + "What is asynchronous training?", + "How to deliver asynchronous training using Galaxy?", + "What should be prepared for an asynchronous training event?", + "How is it different than hybrid training?" + ], + "short_id": "T00371", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "practises", + "supported_servers": [], + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Asynchronous training", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "gallantries-async", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/gallantries-async/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gallantries-async/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/gallantries-async/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 1 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/teaching-online/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "fpsom" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/teaching/tutorials/teaching-online", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "teaching/teaching-online", + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "There are different ways of teaching online" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-10-23", + "objectives": [ + "List different ways to teach online", + "Use Galaxy to teach online" + ], + "pageviews": 13, + "pub_date": "2022-09-23", + "questions": [ + "What are the different ways of teaching online?", + "How Galaxy can be used to teach online?" + ], + "short_id": "T00287", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "subtopic": "practises", + "supported_servers": [], + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Teaching online", + "tools": [], + "topic_name": "teaching", + "topic_name_human": "Teaching and Hosting Galaxy training", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "teaching-online", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/teaching/tutorials/teaching-online/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/teaching-online/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/teaching/tutorials/teaching-online/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 13 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chira_collapse", + "owner": "iuc", + "revisions": "2b2bfeda00d0", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chira_extract", + "owner": "iuc", + "revisions": "e7ee3aadf1a5", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chira_map", + "owner": "iuc", + "revisions": "95ddee768b61", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chira_merge", + "owner": "iuc", + "revisions": "6492560fe1b4", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "chira_quantify", + "owner": "iuc", + "revisions": "06ac35533793", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "query_tabular", + "owner": "iuc", + "revisions": "33d61c89fb8d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "49370cb85f0f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chira_collapse\n owner: iuc\n revisions: 2b2bfeda00d0\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chira_extract\n owner: iuc\n revisions: e7ee3aadf1a5\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chira_map\n owner: iuc\n revisions: 95ddee768b61\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chira_merge\n owner: iuc\n revisions: 6492560fe1b4\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: chira_quantify\n owner: iuc\n revisions: 06ac35533793\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: query_tabular\n owner: iuc\n revisions: 33d61c89fb8d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 49370cb85f0f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-interactome/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-interactome", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Sequence trimming", + "Sequence composition calculation", + "Read pre-processing", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rna-interactome", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Choosing the correct alignment parameters is one of the imporatant factor in the analysis.", + "For poorly annotated organisms use reference genome instead of trascriptome." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Quality control and data preparation", + "Mapping chimeric reads", + "Quantification of the mapped loci", + "Visualization and filtering of results" + ], + "pageviews": 1874, + "pub_date": "2020-03-23", + "questions": [ + "What are the difficulties in mapping chimeric reads from RNA interactome data?", + "How multi mapping is a big problem in these datasets?", + "How to filter for meaningful results from large analysis output files?" + ], + "short_id": "T00296", + "short_tools": [ + "chira_merge", + "chira_extract", + "fastqc", + "query_tabular", + "chira_map", + "cutadapt", + "chira_collapse", + "chira_quantify" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "RNA-RNA interactome data analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_collapse/chira_collapse/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_extract/chira_extract/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_map/chira_map/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_merge/chira_merge/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_quantify/chira_quantify/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-interactome", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-interactome/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-interactome/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-interactome/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 181, + "visitors": 1168, + "workflows": [ + { + "creators": [], + "description": "RNA-RNA interactome analysis using ChiRA tool suite", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreads_fastq\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreference1_fasta\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nreference2_fasta\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nannotation_gtf\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ngenome_fasta\"]\n 5[label=\"FastQC\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Cutadapt\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"FastQC\"]\n 6 -> 7 [label=\"out1\"]\n 8[label=\"ChiRA collapse\"]\n 6 -> 8 [label=\"out1\"]\n 9[label=\"ChiRA map\"]\n 8 -> 9 [label=\"out\"]\n 1 -> 9 [label=\"output\"]\n 2 -> 9 [label=\"output\"]\n 10[label=\"ChiRA merge\"]\n 9 -> 10 [label=\"mapped_bed\"]\n 3 -> 10 [label=\"output\"]\n 1 -> 10 [label=\"output\"]\n 2 -> 10 [label=\"output\"]\n 11[label=\"ChiRA qauntify\"]\n 10 -> 11 [label=\"merged_bed\"]\n 10 -> 11 [label=\"segments_bed\"]\n 12[label=\"ChiRA extract\"]\n 4 -> 12 [label=\"output\"]\n 3 -> 12 [label=\"output\"]\n 11 -> 12 [label=\"loci\"]\n 1 -> 12 [label=\"output\"]\n 2 -> 12 [label=\"output\"]\n k7182226db48a4ce1882e6bb41091a5d4[color=lightseagreen,label=\"Output\\ninteractions\"]\n 12 -> k7182226db48a4ce1882e6bb41091a5d4\n k011f4c89d15a48779d490146773ce781[color=lightseagreen,label=\"Output\\nchimeric_reads\"]\n 12 -> k011f4c89d15a48779d490146773ce781\n 13[label=\"Query Tabular\"]\n 12 -> 13 [label=\"chimeras\"]\n kf1315db211d14dee9014eafa1fc0f82f[color=lightseagreen,label=\"Output\\ndb\"]\n 13 -> kf1315db211d14dee9014eafa1fc0f82f\n}", + "history": [ + { + "hash": "1dde32698b8894ce6ea44c28fcf48fe2b28d15b3", + "message": "update rna-rna interactome workflow and add workflow test", + "num": 2, + "short_hash": "1dde32698", + "unix": "1607121201" + }, + { + "hash": "922058fc64848a1fb74d005020896346a189d852", + "message": "update rna-rna interactome workflow and add workflow test", + "num": 1, + "short_hash": "922058fc6", + "unix": "1607121057" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reads_fastq" + } + ], + "label": "reads_fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 250, + "height": 61, + "left": -969.5, + "right": -769.5, + "top": 189, + "width": 200, + "x": -969.5, + "y": 189 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "36ae119e-7b4c-424e-902f-a1f37b525bd1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b7bf00b3-3646-44b5-b160-f9364c0e536c" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reference1_fasta" + } + ], + "label": "reference1_fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 379, + "height": 81, + "left": -969.5, + "right": -769.5, + "top": 298, + "width": 200, + "x": -969.5, + "y": 298 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "5481a3fd-b578-433a-bcdc-ef19c194f1cf", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a641e20a-7835-4318-9387-ec98acef6bb6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reference2_fasta" + } + ], + "label": "reference2_fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 488, + "height": 81, + "left": -969.5, + "right": -769.5, + "top": 407, + "width": 200, + "x": -969.5, + "y": 407 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "c6b92dfd-a636-48c9-8854-cf85c6704239", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a375f37f-cd68-4847-bb2a-ef7b1a7c385d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "annotation_gtf" + } + ], + "label": "annotation_gtf", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 597, + "height": 81, + "left": -969.5, + "right": -769.5, + "top": 516, + "width": 200, + "x": -969.5, + "y": 516 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "7b67eecd-1c75-407b-a684-96ed53c74f5c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1b35e4cd-b9c7-4db1-9361-b74c127f3dbf" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "genome_fasta" + } + ], + "label": "genome_fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 706, + "height": 81, + "left": -969.5, + "right": -769.5, + "top": 625, + "width": 200, + "x": -969.5, + "y": 625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "100bac6e-c0b8-412c-bc71-e55028d1d70e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5396a7d8-957f-4858-8ce7-4c5131d2852d" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nreads_fastq\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nreference1_fasta\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nreference2_fasta\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nannotation_gtf\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\ngenome_fasta\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"FastQC\"];\n 0 -->|output| 5;\n 6[\"Cutadapt\"];\n 0 -->|output| 6;\n 7[\"FastQC\"];\n 6 -->|out1| 7;\n 8[\"ChiRA collapse\"];\n 6 -->|out1| 8;\n 9[\"ChiRA map\"];\n 8 -->|out| 9;\n 1 -->|output| 9;\n 2 -->|output| 9;\n 10[\"ChiRA merge\"];\n 9 -->|mapped_bed| 10;\n 3 -->|output| 10;\n 1 -->|output| 10;\n 2 -->|output| 10;\n 11[\"ChiRA qauntify\"];\n 10 -->|merged_bed| 11;\n 10 -->|segments_bed| 11;\n 12[\"ChiRA extract\"];\n 4 -->|output| 12;\n 3 -->|output| 12;\n 11 -->|loci| 12;\n 1 -->|output| 12;\n 2 -->|output| 12;\n 7182226d-b48a-4ce1-882e-6bb41091a5d4[\"Output\\ninteractions\"];\n 12 --> 7182226d-b48a-4ce1-882e-6bb41091a5d4;\n style 7182226d-b48a-4ce1-882e-6bb41091a5d4 stroke:#2c3143,stroke-width:4px;\n 011f4c89-d15a-4877-9d49-0146773ce781[\"Output\\nchimeric_reads\"];\n 12 --> 011f4c89-d15a-4877-9d49-0146773ce781;\n style 011f4c89-d15a-4877-9d49-0146773ce781 stroke:#2c3143,stroke-width:4px;\n 13[\"Query Tabular\"];\n 12 -->|chimeras| 13;\n f1315db2-11d1-4dee-9014-eafa1fc0f82f[\"Output\\ndb\"];\n 13 --> f1315db2-11d1-4dee-9014-eafa1fc0f82f;\n style f1315db2-11d1-4dee-9014-eafa1fc0f82f stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "RNA-RNA interactome data analysis - chira v1.4.3", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reads_fastq" + } + ], + "label": "reads_fastq", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 250, + "height": 61, + "left": -969.5, + "right": -769.5, + "top": 189, + "width": 200, + "x": -969.5, + "y": 189 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "36ae119e-7b4c-424e-902f-a1f37b525bd1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "b7bf00b3-3646-44b5-b160-f9364c0e536c" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reference1_fasta" + } + ], + "label": "reference1_fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 379, + "height": 81, + "left": -969.5, + "right": -769.5, + "top": 298, + "width": 200, + "x": -969.5, + "y": 298 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "5481a3fd-b578-433a-bcdc-ef19c194f1cf", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a641e20a-7835-4318-9387-ec98acef6bb6" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "reference2_fasta" + } + ], + "label": "reference2_fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 488, + "height": 81, + "left": -969.5, + "right": -769.5, + "top": 407, + "width": 200, + "x": -969.5, + "y": 407 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "c6b92dfd-a636-48c9-8854-cf85c6704239", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "a375f37f-cd68-4847-bb2a-ef7b1a7c385d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "annotation_gtf" + } + ], + "label": "annotation_gtf", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 597, + "height": 81, + "left": -969.5, + "right": -769.5, + "top": 516, + "width": 200, + "x": -969.5, + "y": 516 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "7b67eecd-1c75-407b-a684-96ed53c74f5c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1b35e4cd-b9c7-4db1-9361-b74c127f3dbf" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "genome_fasta" + } + ], + "label": "genome_fasta", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 706, + "height": 81, + "left": -969.5, + "right": -769.5, + "top": 625, + "width": 200, + "x": -969.5, + "y": 625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "100bac6e-c0b8-412c-bc71-e55028d1d70e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5396a7d8-957f-4858-8ce7-4c5131d2852d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": 481, + "height": 292, + "left": -683.5, + "right": -483.5, + "top": 189, + "width": 200, + "x": -683.5, + "y": 189 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"adapters\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": \"\", \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "d9a7bf3f-f741-4c11-9f5b-fdca1ddea405", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "10d9a489-63d2-4f45-9a24-822093d4734e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "errors": null, + "id": 6, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out1", + "type": "fastqsanger" + } + ], + "position": { + "bottom": 641, + "height": 132, + "left": -683.5, + "right": -483.5, + "top": 509, + "width": 200, + "x": -683.5, + "y": 509 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5", + "tool_shed_repository": { + "changeset_revision": "49370cb85f0f", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adapter_options\": {\"error_rate\": \"0.1\", \"no_indels\": \"false\", \"count\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"no_trim\": \"false\", \"mask_adapter\": \"false\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"filter_options\": {\"discard\": \"false\", \"discard_untrimmed\": \"false\", \"min\": \"16\", \"max\": \"0\", \"max_n\": \"\", \"pair_filter\": \"any\"}, \"library\": {\"type\": \"single\", \"__current_case__\": 0, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"\", \"adapter\": \"GTGTCAGTCACTTCCAGCGG\"}}], \"front_adapters\": [{\"__index__\": 0, \"front_adapter_source\": {\"front_adapter_source_list\": \"user\", \"__current_case__\": 0, \"front_adapter_name\": \"\", \"front_adapter\": \"GCATAGGGAGGACGATGCGG\"}}], \"anywhere_adapters\": [], \"cut\": \"0\"}}, \"output_options\": {\"report\": \"false\", \"info_file\": \"false\", \"rest_file\": \"false\", \"wildcard_file\": \"false\", \"too_short_file\": \"false\", \"too_long_file\": \"false\", \"untrimmed_file\": \"false\", \"multiple_output\": \"false\"}, \"read_mod_options\": {\"quality_cutoff\": \"0\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"prefix\": \"\", \"suffix\": \"\", \"strip_suffix\": \"\", \"length\": \"0\", \"length_tag\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16.5", + "type": "tool", + "uuid": "004e566f-fa52-439e-9196-ba93bb401022", + "workflow_outputs": [ + { + "label": null, + "output_name": "out1", + "uuid": "0a7b8f7a-fb0b-47c9-8ac4-ffdde708f13a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 6, + "output_name": "out1" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": 481, + "height": 292, + "left": -397.5, + "right": -197.5, + "top": 189, + "width": 200, + "x": -397.5, + "y": 189 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger.gz\", \"adapters\": null, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": \"\", \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "3ce4fbbf-1e35-4c73-82d8-d78567dc7f98", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "16c57790-7c4d-474e-a094-c48e8573c249" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_collapse/chira_collapse/1.4.3+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "in": { + "id": 6, + "output_name": "out1" + } + }, + "inputs": [], + "label": null, + "name": "ChiRA collapse", + "outputs": [ + { + "name": "out", + "type": "fasta" + } + ], + "position": { + "bottom": 641, + "height": 132, + "left": -397.5, + "right": -197.5, + "top": 509, + "width": 200, + "x": -397.5, + "y": 509 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_collapse/chira_collapse/1.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "2b2bfeda00d0", + "name": "chira_collapse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"in\": {\"__class__\": \"ConnectedValue\"}, \"umi_len\": \"5\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.4.3+galaxy0", + "type": "tool", + "uuid": "c1bc53ab-37cf-4302-9f60-3ab98337e68c", + "workflow_outputs": [ + { + "label": null, + "output_name": "out", + "uuid": "4a8852b4-c52e-438d-b803-000e7e0c3ccb" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_map/chira_map/1.4.3+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "query": { + "id": 8, + "output_name": "out" + }, + "reference|ref_fasta1": { + "id": 1, + "output_name": "output" + }, + "reference|ref_fasta2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "ChiRA map", + "outputs": [ + { + "name": "mapped_bed", + "type": "bed" + }, + { + "name": "unmapped_fasta", + "type": "fasta" + } + ], + "position": { + "bottom": 431, + "height": 242, + "left": -111.5, + "right": 88.5, + "top": 189, + "width": 200, + "x": -111.5, + "y": 189 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_map/chira_map/1.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "92dbdc4d2722", + "name": "chira_map", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fasta\", \"alignment\": {\"aligner\": \"bwa\", \"__current_case__\": 0, \"stranded\": \"fw\", \"seed_length1\": \"12\", \"seed_length2\": \"16\", \"align_score1\": \"18\", \"align_score2\": \"16\", \"match1\": \"1\", \"mismatch1\": \"4\", \"match2\": \"1\", \"mismatch2\": \"6\", \"gapo1\": \"6\", \"gape1\": \"1\", \"gapo2\": \"100\", \"gape2\": \"100\", \"nhits1\": \"50\", \"nhits2\": \"100\"}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"query\": {\"__class__\": \"ConnectedValue\"}, \"reference\": {\"ref_type\": \"split\", \"__current_case__\": 0, \"ref_fasta1\": {\"__class__\": \"ConnectedValue\"}, \"ref_fasta2\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.4.3+galaxy0", + "type": "tool", + "uuid": "60e2db9d-f2ba-4293-9dab-343917d22702", + "workflow_outputs": [ + { + "label": null, + "output_name": "mapped_bed", + "uuid": "cc3b4775-520e-4c40-8a84-6dd4ac8c63c9" + }, + { + "label": null, + "output_name": "unmapped_fasta", + "uuid": "c85cb34d-71c0-46d8-90e1-145e7a883b1f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_merge/chira_merge/1.4.3+galaxy0", + "errors": null, + "id": 10, + "input_connections": { + "alignments": { + "id": 9, + "output_name": "mapped_bed" + }, + "annotation|gtf": { + "id": 3, + "output_name": "output" + }, + "reference|ref_fasta1": { + "id": 1, + "output_name": "output" + }, + "reference|ref_fasta2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "ChiRA merge", + "outputs": [ + { + "name": "segments_bed", + "type": "bed" + }, + { + "name": "merged_bed", + "type": "tabular" + } + ], + "position": { + "bottom": 521, + "height": 332, + "left": 174.5, + "right": 374.5, + "top": 189, + "width": 200, + "x": 174.5, + "y": 189 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_merge/chira_merge/1.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "bd57d16524fe", + "name": "chira_merge", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"alignment_overlap\": \"0.7\", \"alignments\": {\"__class__\": \"ConnectedValue\"}, \"annotation\": {\"choice\": \"yes\", \"__current_case__\": 0, \"gtf\": {\"__class__\": \"ConnectedValue\"}}, \"chimeric_only\": \"false\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"length_threshold\": \"0.9\", \"merge\": {\"mode\": \"overlap\", \"__current_case__\": 0, \"min_locus_size\": \"1\"}, \"reference\": {\"ref_type\": \"split\", \"__current_case__\": 0, \"ref_fasta1\": {\"__class__\": \"ConnectedValue\"}, \"ref_fasta2\": {\"__class__\": \"ConnectedValue\"}}, \"segment_overlap\": \"0.7\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.4.3+galaxy0", + "type": "tool", + "uuid": "bb4a876e-53c4-4231-8481-ff7f12b1f15f", + "workflow_outputs": [ + { + "label": null, + "output_name": "merged_bed", + "uuid": "9430b287-c1a4-489d-be0e-991e1eb77a7a" + }, + { + "label": null, + "output_name": "segments_bed", + "uuid": "787ba9ae-d3db-461a-b48b-4834adf94c17" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_quantify/chira_quantify/1.4.3+galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "merged": { + "id": 10, + "output_name": "merged_bed" + }, + "segments": { + "id": 10, + "output_name": "segments_bed" + } + }, + "inputs": [], + "label": null, + "name": "ChiRA qauntify", + "outputs": [ + { + "name": "loci", + "type": "tabular" + } + ], + "position": { + "bottom": 391, + "height": 202, + "left": 460.5, + "right": 660.5, + "top": 189, + "width": 200, + "x": 460.5, + "y": 189 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_quantify/chira_quantify/1.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "7fb3fc24be0e", + "name": "chira_quantify", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bed\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"crl\": \"true\", \"crl_share\": \"0.7\", \"em_threshold\": \"1e-05\", \"merged\": {\"__class__\": \"ConnectedValue\"}, \"min_locus_size\": \"10\", \"segments\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.4.3+galaxy0", + "type": "tool", + "uuid": "428b7bab-aef3-4c55-8a7b-4bd712f87340", + "workflow_outputs": [ + { + "label": null, + "output_name": "loci", + "uuid": "dce6af3f-130d-455b-9e20-c55ca20eab08" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_extract/chira_extract/1.4.3+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "annotation|fasta_source|fasta": { + "id": 4, + "output_name": "output" + }, + "annotation|gtf": { + "id": 3, + "output_name": "output" + }, + "loci": { + "id": 11, + "output_name": "loci" + }, + "reference|ref_fasta1": { + "id": 1, + "output_name": "output" + }, + "reference|ref_fasta2": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool ChiRA extract", + "name": "annotation" + }, + { + "description": "runtime parameter for tool ChiRA extract", + "name": "loci" + }, + { + "description": "runtime parameter for tool ChiRA extract", + "name": "reference" + }, + { + "description": "runtime parameter for tool ChiRA extract", + "name": "reference" + } + ], + "label": null, + "name": "ChiRA extract", + "outputs": [ + { + "name": "chimeras", + "type": "tabular" + }, + { + "name": "interactions", + "type": "tabular" + } + ], + "position": { + "bottom": 491, + "height": 302, + "left": 746.5, + "right": 946.5, + "top": 189, + "width": 200, + "x": 746.5, + "y": 189 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/chira_extract/chira_extract/1.4.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "6977e9b7143d", + "name": "chira_extract", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"acc_width\": \"150\", \"accessibility\": \"false\", \"annotation\": {\"annot_choice\": \"yes\", \"__current_case__\": 0, \"gtf\": {\"__class__\": \"RuntimeValue\"}, \"fasta_source\": {\"fasta_source_selector\": \"history\", \"__current_case__\": 0, \"fasta\": {\"__class__\": \"RuntimeValue\"}}}, \"chimeric_overlap\": \"2\", \"hybridize\": \"true\", \"intarna_mode\": \"H\", \"loci\": {\"__class__\": \"RuntimeValue\"}, \"reference\": {\"ref_type\": \"split\", \"__current_case__\": 0, \"ref_fasta1\": {\"__class__\": \"RuntimeValue\"}, \"ref_fasta2\": {\"__class__\": \"RuntimeValue\"}}, \"score_cutoff\": \"0.0\", \"seed_bp\": \"5\", \"seed_interaction\": \"true\", \"seed_min_pu\": \"0.0\", \"summarize\": \"true\", \"temperature\": \"37.0\", \"tpm_cutoff\": \"0.0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.4.3+galaxy0", + "type": "tool", + "uuid": "ef85dc12-e50c-47b5-ab65-43d1bf2a6352", + "workflow_outputs": [ + { + "label": "interactions", + "output_name": "interactions", + "uuid": "7182226d-b48a-4ce1-882e-6bb41091a5d4" + }, + { + "label": "chimeric_reads", + "output_name": "chimeras", + "uuid": "011f4c89-d15a-4877-9d49-0146773ce781" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "errors": null, + "id": 13, + "input_connections": { + "tables_0|table": { + "id": 12, + "output_name": "chimeras" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Query Tabular", + "name": "add_to_database" + } + ], + "label": null, + "name": "Query Tabular", + "outputs": [ + { + "name": "sqlitedb", + "type": "sqlite" + } + ], + "position": { + "bottom": 351, + "height": 162, + "left": 1032.5, + "right": 1232.5, + "top": 189, + "width": 200, + "x": 1032.5, + "y": 189 + }, + "post_job_actions": { + "ChangeDatatypeActionsqlitedb": { + "action_arguments": { + "newtype": "chira.sqlite" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "sqlitedb" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "tool_shed_repository": { + "changeset_revision": "33d61c89fb8d", + "name": "query_tabular", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"add_to_database\": {\"withdb\": {\"__class__\": \"RuntimeValue\"}}, \"addqueries\": {\"queries\": []}, \"modify_database\": {\"sql_stmts\": []}, \"query_result\": {\"header\": \"yes\", \"__current_case__\": 0, \"header_prefix\": \"35\"}, \"save_db\": \"true\", \"sqlquery\": \"\", \"tables\": [{\"__index__\": 0, \"table\": {\"__class__\": \"RuntimeValue\"}, \"input_opts\": {\"linefilters\": []}, \"tbl_opts\": {\"table_name\": \"\", \"column_names_from_first_line\": \"true\", \"col_names\": \"\", \"load_named_columns\": \"false\", \"pkey_autoincr\": \"\", \"indexes\": []}}], \"workdb\": \"workdb.sqlite\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.0", + "type": "tool", + "uuid": "fe30bba1-cda8-4926-924c-8dec7cd28222", + "workflow_outputs": [ + { + "label": "db", + "output_name": "sqlitedb", + "uuid": "f1315db2-11d1-4dee-9014-eafa1fc0f82f" + } + ] + } + ], + "parent_id": "transcriptomics/rna-interactome", + "path": "topics/transcriptomics/tutorials/rna-interactome/workflows/rna-rna-interactome-data-analysis-chira.ga", + "tags": [ + "RNA", + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "RNA-RNA interactome data analysis - chira v1.4.3", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-interactome/versions/rna-rna-interactome-data-analysis-chira", + "tutorial_id": "rna-interactome", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-interactome/workflows/rna-rna-interactome-data-analysis-chira.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-interactome/workflows/rna-rna-interactome-data-analysis-chira.html", + "version": 1, + "wfid": "transcriptomics-rna-interactome", + "wfname": "rna-rna-interactome-data-analysis-chira", + "workflow": "rna-rna-interactome-data-analysis-chira.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_collapse/chira_collapse/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_extract/chira_extract/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_map/chira_map/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_merge/chira_merge/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/chira_quantify/chira_quantify/1.4.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/query_tabular/query_tabular/3.0.0", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.5" + ], + "workflowhub_id": "1291" + } + ], + "zenodo_link": "https://zenodo.org/record/3709188" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_multi_bam_summary", + "owner": "bgruening", + "revisions": "004aea905d4d", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_correlation", + "owner": "bgruening", + "revisions": "fd408d755394", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deeptools_plot_fingerprint", + "owner": "bgruening", + "revisions": "793665fff0f8", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bctools_extract_alignment_ends", + "owner": "iuc", + "revisions": "6d41997eabdc", + "tool_panel_section_label": "Transcriptomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "b8348686a0b9", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "a1a923cd89e8", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "extract_genomic_dna", + "owner": "iuc", + "revisions": "5cc8e93ee98f", + "tool_panel_section_label": "Fetch Sequences/Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "meme_chip", + "owner": "iuc", + "revisions": "cc100e0f61f4", + "tool_panel_section_label": "Motif Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "980d2a2e1180", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "umi_tools_dedup", + "owner": "iuc", + "revisions": "f1d33e4c7bd8", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "umi_tools_extract", + "owner": "iuc", + "revisions": "f3759eec3018", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "135b80fb1ac2", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "peakachu", + "owner": "rnateam", + "revisions": "886f5adba83d", + "tool_panel_section_label": "Peak Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rcas", + "owner": "rnateam", + "revisions": "7c7a2a381dfe", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_multi_bam_summary\n owner: bgruening\n revisions: 004aea905d4d\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_correlation\n owner: bgruening\n revisions: fd408d755394\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deeptools_plot_fingerprint\n owner: bgruening\n revisions: 793665fff0f8\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bctools_extract_alignment_ends\n owner: iuc\n revisions: 6d41997eabdc\n tool_panel_section_label: Transcriptomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: b8348686a0b9\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: a1a923cd89e8\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: extract_genomic_dna\n owner: iuc\n revisions: 5cc8e93ee98f\n tool_panel_section_label: Fetch Sequences/Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: meme_chip\n owner: iuc\n revisions: cc100e0f61f4\n tool_panel_section_label: Motif Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 980d2a2e1180\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: umi_tools_dedup\n owner: iuc\n revisions: f1d33e4c7bd8\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: umi_tools_extract\n owner: iuc\n revisions: f3759eec3018\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 135b80fb1ac2\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: peakachu\n owner: rnateam\n revisions: 886f5adba83d\n tool_panel_section_label: Peak Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rcas\n owner: rnateam\n revisions: 7c7a2a381dfe\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/clipseq/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "heylf", + "joined": "2018-08", + "name": "Florian Heyl", + "orcid": "0000-0002-3651-5685", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/heylf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/heylf.json" + }, + { + "affiliations": [ + "uni-freiburg" + ], + "id": "dmaticzka", + "joined": "2018-08", + "name": "Daniel Maticzka", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/dmaticzka/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/dmaticzka.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + } + ], + "dir": "topics/transcriptomics/tutorials/clipseq", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Sequence alignment", + "Mapping", + "Sequence composition calculation", + "Read pre-processing", + "Sequence trimming", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/clipseq", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Sophisticated analysis of CLIP-Seq data is possible using tools hosted by Galaxy.", + "Analysis of the datasets needs multiple methods to assess the quality of the data and to answer the biological question of interest.", + "CLIP-Seq data varies from protocol to protocol, thus flexible changes to the data anylsis are required which is supported by Galaxy.", + "By using the sharable and transparent Galaxy platform, data analyses can easily be shared and reproduced." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Remove Adapters, Barcodes and Unique Molecular Identifiers (UMIs) from the reads", + "Align trimmed reads with STAR", + "De-duplicate the read library", + "Inspect the read mapping and de-duplication quality", + "Perform peak calling with PEAKachu", + "Analyse the peaks and find potential binding motifs and targets", + "Check the quality of the peak calling" + ], + "pageviews": 14663, + "pub_date": "2018-08-17", + "questions": [ + "How is raw CLIP-Seq data processed and analysed?", + "How do I find binding motifs and targets for a protein (e.g., RBFOX2)?" + ], + "short_id": "T00288", + "short_tools": [ + "deeptools_plot_correlation", + "peakachu", + "bctools_extract_alignment_ends", + "tp_awk_tool", + "umi_tools_dedup", + "rna_star", + "__MERGE_COLLECTION__", + "__SORTLIST__", + "meme_chip", + "rcas", + "wig_to_bigWig", + "deeptools_multi_bam_summary", + "sort1", + "bedtools_slopbed", + "cutadapt", + "umi_tools_extract", + "fastqc", + "deeptools_plot_fingerprint", + "Extract genomic DNA 1", + "bedtools_genomecoveragebed_bedgraph" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "6h", + "title": "CLIP-Seq data analysis from pre-processing to motif detection", + "tools": [ + "__MERGE_COLLECTION__", + "__SORTLIST__", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bctools_extract_alignment_ends/bctools_extract_alignment_ends/0.2.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_genomecoveragebed_bedgraph/2.19.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_slopbed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/extract_genomic_dna/Extract genomic DNA 1/3.0.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meme_chip/meme_chip/4.11.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.8a+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_dedup/umi_tools_dedup/1.1.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/1.1.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/peakachu/peakachu/0.1.0.2", + "toolshed.g2.bx.psu.edu/repos/rnateam/rcas/rcas/1.5.4", + "wig_to_bigWig" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "clipseq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/clipseq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/clipseq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/clipseq/tutorial.json" + }, + "version": 23, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 117, + "visitors": 6953, + "workflows": [ + { + "creators": [], + "description": "CLIP-Seq data analysis from pre-processing to motif detection", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nBackground\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nEnriched set as a paired-end reads collection\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnotation Reference File for RCAS\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome Chromosome Sizes\"]\n 4[label=\"FastQC\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Cutadapt\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"FastQC\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Cutadapt\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"UMI-tools extract\"]\n 5 -> 8 [label=\"out_pairs\"]\n 9[label=\"UMI-tools extract\"]\n 7 -> 9 [label=\"out_pairs\"]\n 10[label=\"RNA STAR\"]\n 2 -> 10 [label=\"output\"]\n 8 -> 10 [label=\"out_paired_collection\"]\n 11[label=\"RNA STAR\"]\n 2 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"out_paired_collection\"]\n 12[label=\"UMI-tools deduplicate\"]\n 10 -> 12 [label=\"mapped_reads\"]\n 13[label=\"UMI-tools deduplicate\"]\n 11 -> 13 [label=\"mapped_reads\"]\n 14[label=\"Extract alignment ends\"]\n 12 -> 14 [label=\"output\"]\n 15[label=\"FastQC\"]\n 12 -> 15 [label=\"output\"]\n 16[label=\"PEAKachu\"]\n 12 -> 16 [label=\"output\"]\n 13 -> 16 [label=\"output\"]\n 17[label=\"Merge collections\"]\n 12 -> 17 [label=\"output\"]\n 13 -> 17 [label=\"output\"]\n 18[label=\"Extract alignment ends\"]\n 13 -> 18 [label=\"output\"]\n 19[label=\"FastQC\"]\n 13 -> 19 [label=\"output\"]\n 20[label=\"Sort\"]\n 14 -> 20 [label=\"alignment_ends\"]\n 21[label=\"Text reformatting\"]\n 16 -> 21 [label=\"peak_tables\"]\n 22[label=\"Sort collection\"]\n 17 -> 22 [label=\"output\"]\n 23[label=\"Sort\"]\n 18 -> 23 [label=\"alignment_ends\"]\n 24[label=\"Create a BedGraph of genome coverage\"]\n 20 -> 24 [label=\"out_file1\"]\n 25[label=\"bedtools SlopBed\"]\n 3 -> 25 [label=\"output\"]\n 21 -> 25 [label=\"outfile\"]\n 26[label=\"plotFingerprint\"]\n 22 -> 26 [label=\"output\"]\n 27[label=\"multiBamSummary\"]\n 22 -> 27 [label=\"output\"]\n 28[label=\"Create a BedGraph of genome coverage\"]\n 23 -> 28 [label=\"out_file1\"]\n 29[label=\"Wig/BedGraph-to-bigWig\"]\n 24 -> 29 [label=\"output\"]\n 30[label=\"Extract Genomic DNA\"]\n 25 -> 30 [label=\"output\"]\n 31[label=\"Text reformatting\"]\n 25 -> 31 [label=\"output\"]\n 32[label=\"plotCorrelation\"]\n 27 -> 32 [label=\"outFile\"]\n 33[label=\"Wig/BedGraph-to-bigWig\"]\n 28 -> 33 [label=\"output\"]\n 34[label=\"MEME-ChIP\"]\n 30 -> 34 [label=\"output\"]\n 35[label=\"RCAS\"]\n 31 -> 35 [label=\"outfile\"]\n 2 -> 35 [label=\"output\"]\n}", + "history": [ + { + "hash": "3d3591991f63d987ebafcc193a9c1bf50a5e6255", + "message": "clipseq workflow.ga updated", + "num": 8, + "short_hash": "3d3591991", + "unix": "1669554861" + }, + { + "hash": "5531ece3f12002e4808e2ca38efe271262948aa3", + "message": "clipseq workflow.ga cutadapt v1.6 -> v4.0", + "num": 7, + "short_hash": "5531ece3f", + "unix": "1664369812" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 6, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 5, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "9bd53204358c91ff7dd73cffd3b80430fae46de7", + "message": "Changes to trainign workflow", + "num": 4, + "short_hash": "9bd532043", + "unix": "1565081104" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 3, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "1951bb1a091058ee1d0696a60d70569a2a683d70", + "message": "Training clipseq new version (#1265)", + "num": 2, + "short_hash": "1951bb1a0", + "unix": "1550059403" + }, + { + "hash": "b4f9079e5eeb394c84990aedae9524dd596a63e6", + "message": "Add skeleton for clipseq tutorial", + "num": 1, + "short_hash": "b4f9079e5", + "unix": "1533728139" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Background" + } + ], + "label": "Background", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 350.0000063844305 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "d9f9adb6-0788-4108-b1ef-e4e4371538c1", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Enriched set as a paired-end reads collection" + } + ], + "label": "Enriched set as a paired-end reads collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0.0, + "top": 848.9888083485877 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\", \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "a97ffa07-a21f-406a-8d33-d1360cdd5d1e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Annotation Reference File for RCAS" + } + ], + "label": "Annotation Reference File for RCAS", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 556.0320610780594, + "top": 705.0209205020919 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2f4b87cc-dc8b-45d7-a459-25e72d79e734", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome Chromosome Sizes" + } + ], + "label": "Genome Chromosome Sizes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1677.92890859947, + "top": 788.0056213634282 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "bd5cb2a3-8dba-4c25-af0e-49657b238b8b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nBackground\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nEnriched set as a paired-end reads collection\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nAnnotation Reference File for RCAS\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nGenome Chromosome Sizes\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC\"];\n 0 -->|output| 4;\n 5[\"Cutadapt\"];\n 0 -->|output| 5;\n 6[\"FastQC\"];\n 1 -->|output| 6;\n 7[\"Cutadapt\"];\n 1 -->|output| 7;\n 8[\"UMI-tools extract\"];\n 5 -->|out_pairs| 8;\n 9[\"UMI-tools extract\"];\n 7 -->|out_pairs| 9;\n 10[\"RNA STAR\"];\n 2 -->|output| 10;\n 8 -->|out_paired_collection| 10;\n 11[\"RNA STAR\"];\n 2 -->|output| 11;\n 9 -->|out_paired_collection| 11;\n 12[\"UMI-tools deduplicate\"];\n 10 -->|mapped_reads| 12;\n 13[\"UMI-tools deduplicate\"];\n 11 -->|mapped_reads| 13;\n 14[\"Extract alignment ends\"];\n 12 -->|output| 14;\n 15[\"FastQC\"];\n 12 -->|output| 15;\n 16[\"PEAKachu\"];\n 12 -->|output| 16;\n 13 -->|output| 16;\n 17[\"Merge collections\"];\n 12 -->|output| 17;\n 13 -->|output| 17;\n 18[\"Extract alignment ends\"];\n 13 -->|output| 18;\n 19[\"FastQC\"];\n 13 -->|output| 19;\n 20[\"Sort\"];\n 14 -->|alignment_ends| 20;\n 21[\"Text reformatting\"];\n 16 -->|peak_tables| 21;\n 22[\"Sort collection\"];\n 17 -->|output| 22;\n 23[\"Sort\"];\n 18 -->|alignment_ends| 23;\n 24[\"Create a BedGraph of genome coverage\"];\n 20 -->|out_file1| 24;\n 25[\"bedtools SlopBed\"];\n 3 -->|output| 25;\n 21 -->|outfile| 25;\n 26[\"plotFingerprint\"];\n 22 -->|output| 26;\n 27[\"multiBamSummary\"];\n 22 -->|output| 27;\n 28[\"Create a BedGraph of genome coverage\"];\n 23 -->|out_file1| 28;\n 29[\"Wig/BedGraph-to-bigWig\"];\n 24 -->|output| 29;\n 30[\"Extract Genomic DNA\"];\n 25 -->|output| 30;\n 31[\"Text reformatting\"];\n 25 -->|output| 31;\n 32[\"plotCorrelation\"];\n 27 -->|outFile| 32;\n 33[\"Wig/BedGraph-to-bigWig\"];\n 28 -->|output| 33;\n 34[\"MEME-ChIP\"];\n 30 -->|output| 34;\n 35[\"RCAS\"];\n 31 -->|outfile| 35;\n 2 -->|output| 35;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Tutorial CLIPseq Explorer Demultiplexed PEAKachu eCLIP Hg38 ", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 277.92888306174814, + "top": 0.0 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "6d59452d-6917-43ff-a526-2f9c0c1bf912", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "0443834e-6b1a-4c20-9cae-cc9ae459bcb2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 6, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 277.92888306174814, + "top": 510.0069883977019 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "ee72f1db-ac1a-40b0-829c-1c9a23df7af0", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "a3e0db8f-92d0-43ca-a742-a237f369b1ed" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "library|input_1": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cutadapt", + "outputs": [ + { + "name": "out_pairs", + "type": "input" + } + ], + "position": { + "left": 277.92888306174814, + "top": 844.0028234505752 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "135b80fb1ac2", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"internal\": \"\", \"error_rate\": \"0.1\", \"no_indels\": \"false\", \"times\": \"1\", \"overlap\": \"5\", \"match_read_wildcards\": \"--no-match-adapter-wildcards\", \"revcomp\": \"false\"}, \"filter_options\": {\"discard_trimmed\": \"false\", \"discard_untrimmed\": \"false\", \"minimum_length\": \"10\", \"maximum_length\": null, \"length_R2_options\": {\"length_R2_status\": \"False\", \"__current_case__\": 1}, \"max_n\": null, \"pair_filter\": \"any\", \"max_expected_errors\": null, \"discard_cassava\": \"false\"}, \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [{\"__index__\": 0, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"\", \"adapter\": \"AACTTGTAGATCGGA\"}, \"single_noindels\": \"false\"}, {\"__index__\": 1, \"adapter_source\": {\"adapter_source_list\": \"user\", \"__current_case__\": 0, \"adapter_name\": \"\", \"adapter\": \"AGGACCAAGATCGGA\"}, \"single_noindels\": \"false\"}], \"front_adapters\": [{\"__index__\": 0, \"front_adapter_source\": {\"front_adapter_source_list\": \"user\", \"__current_case__\": 0, \"front_adapter_name\": \"\", \"front_adapter\": \"CTTCCGATCTACAAGTT\"}, \"single_noindels\": \"false\"}, {\"__index__\": 1, \"front_adapter_source\": {\"front_adapter_source_list\": \"user\", \"__current_case__\": 0, \"front_adapter_name\": \"\", \"front_adapter\": \"CTTCCGATCTTGGTCCT\"}, \"single_noindels\": \"false\"}], \"anywhere_adapters\": [], \"cut\": \"-5\"}, \"r2\": {\"adapters2\": [{\"__index__\": 0, \"adapter_source2\": {\"adapter_source_list2\": \"user\", \"__current_case__\": 0, \"adapter_name2\": \"\", \"adapter2\": \"AACTTGTAGATCGGA\"}, \"single_noindels\": \"false\"}, {\"__index__\": 1, \"adapter_source2\": {\"adapter_source_list2\": \"user\", \"__current_case__\": 0, \"adapter_name2\": \"\", \"adapter2\": \"AGGACCAAGATCGGA\"}, \"single_noindels\": \"false\"}], \"front_adapters2\": [{\"__index__\": 0, \"front_adapter_source2\": {\"front_adapter_source_list2\": \"user\", \"__current_case__\": 0, \"front_adapter_name2\": \"\", \"front_adapter2\": \"CTTCCGATCTACAAGTT\"}, \"single_noindels\": \"false\"}, {\"__index__\": 1, \"front_adapter_source2\": {\"front_adapter_source_list2\": \"user\", \"__current_case__\": 0, \"front_adapter_name2\": \"\", \"front_adapter2\": \"CTTCCGATCTTGGTCCT\"}, \"single_noindels\": \"false\"}], \"anywhere_adapters2\": [], \"cut2\": \"0\", \"quality_cutoff2\": \"\"}}, \"output_selector\": null, \"read_mod_options\": {\"quality_cutoff\": \"0\", \"nextseq_trim\": \"0\", \"trim_n\": \"false\", \"strip_suffix\": \"\", \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0+galaxy1", + "type": "tool", + "uuid": "e1d26a00-fb32-4753-bb83-4bdd78b6c9cd", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_pairs", + "uuid": "2388a467-be78-43ab-a19c-b47d1cb5cd94" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "input_file": { + "id": 12, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 1399.9999616934165, + "top": 442.01535659853874 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "f616fbed-9460-4e15-8336-4eb6586bf203", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "b6fce567-4a42-4d4b-9686-646ff018df99" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/peakachu/peakachu/0.1.0.2", + "errors": null, + "id": 16, + "input_connections": { + "controlLibs": { + "id": 12, + "output_name": "output" + }, + "experimentLibs": { + "id": 13, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "PEAKachu", + "outputs": [ + { + "name": "peak_tables", + "type": "tabular" + }, + { + "name": "peak_annotations", + "type": "gff" + }, + { + "name": "MA_plot", + "type": "png" + } + ], + "position": { + "left": 1399.9999616934165, + "top": 801.0111533448286 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/peakachu/peakachu/0.1.0.2", + "tool_shed_repository": { + "changeset_revision": "886f5adba83d", + "name": "peakachu", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"controlLibs\": {\"__class__\": \"ConnectedValue\"}, \"experimentLibs\": {\"__class__\": \"ConnectedValue\"}, \"fc_cutoff\": \"2.0\", \"features\": \"\", \"mad_multiplier\": \"0.0\", \"max_insert_size\": \"200\", \"mode\": {\"mode_selector\": \"adaptive\", \"__current_case__\": 0, \"min_cluster_expr_frac\": \"0.01\", \"min_block_overlap\": \"0.5\", \"min_max_block_expr\": \"0.1\", \"norm_method\": {\"norm_method_selector\": \"deseq\", \"__current_case__\": 0}}, \"padj_threshold\": \"0.05\", \"paired_end\": \"true\", \"pairwise_replicates\": \"false\", \"sub_features\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.0.2", + "type": "tool", + "uuid": "74aa36ac-922d-4b3a-b0a8-128107a1544e", + "workflow_outputs": [ + { + "label": null, + "output_name": "peak_annotations", + "uuid": "c3f331fd-0f6d-4fbf-95a3-3959fdf4431f" + }, + { + "label": null, + "output_name": "peak_tables", + "uuid": "66acfafc-302b-4cce-ae84-25ddc9a49999" + }, + { + "label": null, + "output_name": "MA_plot", + "uuid": "57376e4a-19f3-43af-8517-5b78d9fb03ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "input_file": { + "id": 13, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 1399.9999616934165, + "top": 1648.0125523012548 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "05a2466b-587e-4162-a8c1-778669c14eb5", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "b92c8df5-c060-44f1-ad46-23a06fccc98c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.5.1.0.0", + "errors": null, + "id": 26, + "input_connections": { + "multibam_conditional|bamfiles": { + "id": 22, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool plotFingerprint", + "name": "advancedOpt" + } + ], + "label": null, + "name": "plotFingerprint", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "left": 1956.0321504600875, + "top": 978.9749209352116 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.5.1.0.0", + "tool_shed_repository": { + "changeset_revision": "ca8a7f0ea872", + "name": "deeptools_plot_fingerprint", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advancedOpt\": {\"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"binSize\": \"100\", \"numberOfSamples\": \"100000\", \"doExtendCustom\": {\"doExtend\": \"no\", \"__current_case__\": 0}, \"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"minMappingQuality\": \"1\", \"samFlagInclude\": null, \"samFlagExclude\": null, \"minFragmentLength\": \"0\", \"maxFragmentLength\": \"0\", \"skipZeros\": \"false\", \"plotTitle\": \"\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}}, \"custom_sample_labels_conditional\": {\"custom_labels_select\": \"No\", \"__current_case__\": 0}, \"multibam_conditional\": {\"orderMatters\": \"No\", \"__current_case__\": 0, \"bamfiles\": {\"__class__\": \"ConnectedValue\"}}, \"output\": {\"showOutputSettings\": \"no\", \"__current_case__\": 0}, \"region\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.5.1.0.0", + "type": "tool", + "uuid": "c563a63a-637e-4092-87d2-a8a42da08b97", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "c2f85838-22c1-4750-84b5-28fdb84e48cf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/3.5.1.0.0", + "errors": null, + "id": 32, + "input_connections": { + "corData": { + "id": 27, + "output_name": "outFile" + } + }, + "inputs": [], + "label": null, + "name": "plotCorrelation", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "left": 2234.065674338879, + "top": 1265.0279280530854 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/3.5.1.0.0", + "tool_shed_repository": { + "changeset_revision": "e44978659400", + "name": "deeptools_plot_correlation", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"corData\": {\"__class__\": \"ConnectedValue\"}, \"corMethod\": \"spearman\", \"outFileCorMatrix\": \"false\", \"outFileFormat\": \"png\", \"plotting_type\": {\"whatToPlot\": \"heatmap\", \"__current_case__\": 0, \"zMin\": \"\", \"zMax\": \"\", \"colorMap\": \"RdYlBu\", \"plotTitle\": \"\", \"plotNumbers\": \"false\", \"plotHeight\": \"9.5\", \"plotWidth\": \"11.0\"}, \"removeOutliers\": \"false\", \"skipZeros\": \"true\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.5.1.0.0", + "type": "tool", + "uuid": "164d444d-7a01-460e-b899-5aa091a3bfbc", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "35530cb6-4ad7-4463-bbbd-da5e12920a58" + } + ] + }, + { + "annotation": "", + "content_id": "wig_to_bigWig", + "errors": null, + "id": 33, + "input_connections": { + "input1": { + "id": 28, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Wig/BedGraph-to-bigWig", + "name": "input1" + } + ], + "label": null, + "name": "Wig/BedGraph-to-bigWig", + "outputs": [ + { + "name": "out_file1", + "type": "bigwig" + } + ], + "position": { + "left": 2234.065674338879, + "top": 1508.0194832390816 + }, + "post_job_actions": {}, + "tool_id": "wig_to_bigWig", + "tool_state": "{\"input1\": {\"__class__\": \"RuntimeValue\"}, \"settings\": {\"settingsType\": \"preset\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "4fb5037d-9558-4ef2-bfc3-f910be7ccacd", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "42cbd6b0-e57a-406a-b934-1e69f649d241" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/meme_chip/meme_chip/4.11.2+galaxy1", + "errors": null, + "id": 34, + "input_connections": { + "input": { + "id": 30, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool MEME-ChIP", + "name": "control" + } + ], + "label": null, + "name": "MEME-ChIP", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 2521.9664633523466, + "top": 1688.0055192125387 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/meme_chip/meme_chip/4.11.2+galaxy1", + "tool_shed_repository": { + "changeset_revision": "cc100e0f61f4", + "name": "meme_chip", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"control\": {\"__class__\": \"RuntimeValue\"}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"non_commercial_use\": \"true\", \"options_type_cond\": {\"options_type\": \"advanced\", \"__current_case__\": 1, \"background_model_order\": \"1\", \"nmeme\": \"100\", \"subsampling_cond\": {\"subsampling\": \"yes\", \"__current_case__\": 0, \"seed\": \"123\"}, \"ccut\": \"0\", \"group_threash\": \"0.05\", \"group_weak\": \"0.0\", \"filter_thresh\": \"0.05\", \"search_given_strand\": \"true\", \"old_clustering\": \"false\", \"meme_mod\": \"zoops\", \"meme_minw\": \"5\", \"meme_maxw\": \"20\", \"meme_nmotifs\": \"20\", \"meme_minsites\": \"0\", \"meme_maxsites\": \"0\", \"meme_pal\": \"false\", \"dreme_e\": \"0.05\", \"dreme_m\": \"5\"}, \"sequence_alphabet\": \"-dna\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.11.2+galaxy1", + "type": "tool", + "uuid": "aee66596-2a91-413a-8587-4922d9db96bf", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "eb37ad5e-3b36-4f25-b6c2-d57d077ce3cc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/rcas/rcas/1.5.4", + "errors": null, + "id": 35, + "input_connections": { + "analysis_type|single_bed_file": { + "id": 31, + "output_name": "outfile" + }, + "input_gtf_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "RCAS", + "outputs": [ + { + "name": "report", + "type": "html" + }, + { + "name": "summarizeQueryRegions", + "type": "tsv" + }, + { + "name": "query_gene_types", + "type": "tsv" + }, + { + "name": "transcriptBoundaryCoverage.fiveprime", + "type": "tsv" + }, + { + "name": "transcriptBoundaryCoverage.threeprime", + "type": "tsv" + }, + { + "name": "exonIntronBoundaryCoverage.fiveprime", + "type": "tsv" + }, + { + "name": "exonIntronBoundaryCoverage.threeprime", + "type": "tsv" + }, + { + "name": "coverageprofilelist", + "type": "tsv" + }, + { + "name": "getTargetedGenesTable", + "type": "tsv" + }, + { + "name": "goCC", + "type": "tsv" + }, + { + "name": "goBP", + "type": "tsv" + }, + { + "name": "goMF", + "type": "tsv" + } + ], + "position": { + "left": 2521.9664633523466, + "top": 702.0572039871533 + }, + "post_job_actions": { + "HideDatasetActioncoverageprofilelist": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "coverageprofilelist" + }, + "HideDatasetActionexonIntronBoundaryCoverage.fiveprime": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "exonIntronBoundaryCoverage.fiveprime" + }, + "HideDatasetActionexonIntronBoundaryCoverage.threeprime": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "exonIntronBoundaryCoverage.threeprime" + }, + "HideDatasetActiongetTargetedGenesTable": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "getTargetedGenesTable" + }, + "HideDatasetActiongoBP": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "goBP" + }, + "HideDatasetActiongoCC": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "goCC" + }, + "HideDatasetActiongoMF": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "goMF" + }, + "HideDatasetActionquery_gene_types": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "query_gene_types" + }, + "HideDatasetActionsummarizeQueryRegions": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "summarizeQueryRegions" + }, + "HideDatasetActiontranscriptBoundaryCoverage.fiveprime": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "transcriptBoundaryCoverage.fiveprime" + }, + "HideDatasetActiontranscriptBoundaryCoverage.threeprime": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "transcriptBoundaryCoverage.threeprime" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/rcas/rcas/1.5.4", + "tool_shed_repository": { + "changeset_revision": "7c7a2a381dfe", + "name": "rcas", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"single_set_analysis\", \"__current_case__\": 0, \"single_bed_file\": {\"__class__\": \"ConnectedValue\"}, \"run_go\": \"true\", \"gsea_set\": {\"run_gsea\": \"false\", \"__current_case__\": 0}, \"downsampling\": \"0\", \"output_raw_tables\": \"true\"}, \"genome_version\": \"hg38\", \"input_gtf_file\": {\"__class__\": \"ConnectedValue\"}, \"run_annot\": \"true\", \"run_motif\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.5.4", + "type": "tool", + "uuid": "264661e0-55b6-4e6b-89df-cf4eae0fedee", + "workflow_outputs": [ + { + "label": null, + "output_name": "report", + "uuid": "8b0f0c38-1413-452b-b6ea-bbbd8be70ed8" + } + ] + } + ], + "parent_id": "transcriptomics/clipseq", + "path": "topics/transcriptomics/tutorials/clipseq/workflows/init_workflow.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "Tutorial CLIPseq Explorer Demultiplexed PEAKachu eCLIP Hg38 ", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-clipseq/versions/init-workflow", + "tutorial_id": "clipseq", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/clipseq/workflows/init_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/clipseq/workflows/init_workflow.html", + "version": 8, + "wfid": "transcriptomics-clipseq", + "wfname": "init-workflow", + "workflow": "init_workflow.ga", + "workflow_tools": [ + "__MERGE_COLLECTION__", + "__SORTLIST__", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_multi_bam_summary/deeptools_multi_bam_summary/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_correlation/deeptools_plot_correlation/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_plot_fingerprint/deeptools_plot_fingerprint/3.5.1.0.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/bctools_extract_alignment_ends/bctools_extract_alignment_ends/0.2.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_genomecoveragebed_bedgraph/2.19.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_slopbed/2.30.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/extract_genomic_dna/Extract genomic DNA 1/3.0.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/meme_chip/meme_chip/4.11.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.8a+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_dedup/umi_tools_dedup/1.1.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/umi_tools_extract/umi_tools_extract/1.1.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/rnateam/peakachu/peakachu/0.1.0.2", + "toolshed.g2.bx.psu.edu/repos/rnateam/rcas/rcas/1.5.4", + "wig_to_bigWig" + ], + "workflowhub_id": "1285" + } + ], + "zenodo_link": "https://zenodo.org/record/1327423" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "salmon", + "owner": "bgruening", + "revisions": "53e9709776a0", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trim_galore", + "owner": "bgruening", + "revisions": "1bfc7254232e", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastq_manipulation", + "owner": "devteam", + "revisions": "bb07615a5b6a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3fdc1a74d866", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtool_filter2", + "owner": "devteam", + "revisions": "dc6ff68ea5e8", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bedtools", + "owner": "iuc", + "revisions": "c78cf6fe3018", + "tool_panel_section_label": "BED", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deseq2", + "owner": "iuc", + "revisions": "24a09ca67621", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "1eb21dccc2fa", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: salmon\n owner: bgruening\n revisions: 53e9709776a0\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trim_galore\n owner: bgruening\n revisions: 1bfc7254232e\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastq_manipulation\n owner: devteam\n revisions: bb07615a5b6a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3fdc1a74d866\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtool_filter2\n owner: devteam\n revisions: dc6ff68ea5e8\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bedtools\n owner: iuc\n revisions: c78cf6fe3018\n tool_panel_section_label: BED\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deseq2\n owner: iuc\n revisions: 24a09ca67621\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: 1eb21dccc2fa\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/srna/tutorial.json", + "contributors": [ + { + "id": "malloryfreeberg", + "joined": "2017-09", + "name": "Mallory Freeberg", + "orcid": "0000-0003-2949-3921", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/malloryfreeberg/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/malloryfreeberg.json" + } + ], + "dir": "topics/transcriptomics/tutorials/srna", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Sequence alignment", + "Sequence composition calculation", + "Read pre-processing", + "RNA-Seq quantification", + "Gene expression analysis", + "Sequence trimming", + "Differential gene expression analysis", + "RNA-Seq analysis", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/srna", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Analysis of small RNAs is complex due to the diversity of small RNA subclasses.", + "Both alignment to references and transcript quantification approaches are useful for small RNA-seq analyses." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Process small RNA-seq datasets to determine quality and reproducibility.", + "Filter out contaminants (e.g. rRNA reads) in small RNA-seq datasets.", + "Differentiate between subclasses of small RNAs based on their characteristics.", + "Identify differently abundant small RNAs and their targets." + ], + "pageviews": 10966, + "pub_date": "2017-06-29", + "questions": [ + "What small RNAs are expressed?", + "What RNA features have significantly different numbers of small RNAs targeting them between two conditions?" + ], + "short_id": "T00307", + "short_tools": [ + "hisat2", + "fastq_manipulation", + "bedtools_bamtofastq", + "samtool_filter2", + "fastqc", + "salmon", + "Filter1", + "deseq2", + "trim_galore" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "3h", + "title": "Differential abundance testing of small RNAs", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/salmon/salmon/0.8.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_manipulation/fastq_manipulation/1.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.65", + "toolshed.g2.bx.psu.edu/repos/devteam/samtool_filter2/samtool_filter2/1.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtofastq/2.24.0", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.39", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.0.3" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "srna", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/srna/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/srna/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/srna/tutorial.json" + }, + "version": 26, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 131, + "visitors": 5939, + "workflows": [ + { + "creators": [], + "description": "This workflow completes the first part of the small RNA-seq tutorial from read pre-processing to trimming.e", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nrRNA reference FASTA\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmiRNA hairpin reference FASTA\"]\n 3[label=\"FastQC\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Trim Galore!\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"FastQC\"]\n 4 -> 5 [label=\"trimmed_reads_single\"]\n 6[label=\"HISAT\"]\n 4 -> 6 [label=\"trimmed_reads_single\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"Filter SAM or BAM, output SAM or BAM\"]\n 6 -> 7 [label=\"output_alignments\"]\n 8[label=\"Convert from BAM to FastQ\"]\n 7 -> 8 [label=\"output1\"]\n 9[label=\"HISAT\"]\n 8 -> 9 [label=\"output\"]\n 2 -> 9 [label=\"output\"]\n 10[label=\"Filter SAM or BAM, output SAM or BAM\"]\n 9 -> 10 [label=\"output_alignments\"]\n 11[label=\"Convert from BAM to FastQ\"]\n 10 -> 11 [label=\"output1\"]\n 12[label=\"Manipulate FASTQ\"]\n 11 -> 12 [label=\"output\"]\n 13[label=\"Manipulate FASTQ\"]\n 11 -> 13 [label=\"output\"]\n 14[label=\"FastQC\"]\n 12 -> 14 [label=\"output_file\"]\n 15[label=\"FastQC\"]\n 13 -> 15 [label=\"output_file\"]\n}", + "history": [ + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "6efea8d060e13f09bf9d0ea32b07c1eaf3a577d1", + "message": "Move the srna tutorial to transcriptomics topic", + "num": 1, + "short_hash": "6efea8d06", + "unix": "1498731718" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 278, + "top": 200.96875 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "5e34fb1f-fa44-4178-9d5e-953d69030004", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "12c8979f-7a43-4133-98ac-6b4c1b6d9e57" + } + ] + }, + { + "annotation": "", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "rRNA reference FASTA" + } + ], + "label": "rRNA reference FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 842.5, + "top": 239 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"rRNA reference FASTA\"}", + "tool_version": null, + "type": "data_input", + "uuid": "01fce37f-1a11-4d1e-b039-6d53ba373064", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6fafacef-3b18-425e-9f15-e717d0febbdc" + } + ] + }, + { + "annotation": "Be sure to use hairpin sequences, not just mature miRNA sequences.", + "content_id": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Be sure to use hairpin sequences, not just mature miRNA sequences.", + "name": "miRNA hairpin reference FASTA" + } + ], + "label": "miRNA hairpin reference FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1159.5, + "top": 232 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"miRNA hairpin reference FASTA\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cba8d787-dc52-4ed6-bc9a-d697db038495", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c8ab4106-9b66-4c54-8d62-27b370fbff01" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nrRNA reference FASTA\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nmiRNA hairpin reference FASTA\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"FastQC\"];\n 0 -->|output| 3;\n 4[\"Trim Galore!\"];\n 0 -->|output| 4;\n 5[\"FastQC\"];\n 4 -->|trimmed_reads_single| 5;\n 6[\"HISAT\"];\n 4 -->|trimmed_reads_single| 6;\n 1 -->|output| 6;\n 7[\"Filter SAM or BAM, output SAM or BAM\"];\n 6 -->|output_alignments| 7;\n 8[\"Convert from BAM to FastQ\"];\n 7 -->|output1| 8;\n 9[\"HISAT\"];\n 8 -->|output| 9;\n 2 -->|output| 9;\n 10[\"Filter SAM or BAM, output SAM or BAM\"];\n 9 -->|output_alignments| 10;\n 11[\"Convert from BAM to FastQ\"];\n 10 -->|output1| 11;\n 12[\"Manipulate FASTQ\"];\n 11 -->|output| 12;\n 13[\"Manipulate FASTQ\"];\n 11 -->|output| 13;\n 14[\"FastQC\"];\n 12 -->|output_file| 14;\n 15[\"FastQC\"];\n 13 -->|output_file| 15;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "sRNA Seq Step 1: Read Pre Processing And Removal Of Artifacts (no Grooming)", + "outputs": [ + { + "annotation": "", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 278, + "top": 200.96875 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "5e34fb1f-fa44-4178-9d5e-953d69030004", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "12c8979f-7a43-4133-98ac-6b4c1b6d9e57" + } + ] + }, + { + "annotation": "", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "rRNA reference FASTA" + } + ], + "label": "rRNA reference FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 842.5, + "top": 239 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"rRNA reference FASTA\"}", + "tool_version": null, + "type": "data_input", + "uuid": "01fce37f-1a11-4d1e-b039-6d53ba373064", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6fafacef-3b18-425e-9f15-e717d0febbdc" + } + ] + }, + { + "annotation": "Be sure to use hairpin sequences, not just mature miRNA sequences.", + "content_id": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Be sure to use hairpin sequences, not just mature miRNA sequences.", + "name": "miRNA hairpin reference FASTA" + } + ], + "label": "miRNA hairpin reference FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1159.5, + "top": 232 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"miRNA hairpin reference FASTA\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cba8d787-dc52-4ed6-bc9a-d697db038495", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c8ab4106-9b66-4c54-8d62-27b370fbff01" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.2", + "id": 4, + "input_connections": { + "singlePaired|input_singles": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Trim Galore!", + "name": "singlePaired" + } + ], + "label": null, + "name": "Trim Galore!", + "outputs": [ + { + "name": "trimmed_reads_paired_collection", + "type": "input" + }, + { + "name": "trimmed_reads_unpaired_collection", + "type": "input" + }, + { + "name": "trimmed_reads_single", + "type": "fastqsanger" + }, + { + "name": "trimmed_reads_pair1", + "type": "fastqsanger" + }, + { + "name": "trimmed_reads_pair2", + "type": "fastqsanger" + }, + { + "name": "unpaired_reads_1", + "type": "fastqsanger" + }, + { + "name": "unpaired_reads_2", + "type": "fastqsanger" + }, + { + "name": "report_file", + "type": "txt" + } + ], + "position": { + "left": 549.5, + "top": 238 + }, + "post_job_actions": { + "HideDatasetActiontrimmed_reads_pair1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "trimmed_reads_pair1" + }, + "HideDatasetActiontrimmed_reads_pair2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "trimmed_reads_pair2" + }, + "HideDatasetActiontrimmed_reads_paired_collection": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "trimmed_reads_paired_collection" + }, + "HideDatasetActiontrimmed_reads_unpaired_collection": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "trimmed_reads_unpaired_collection" + }, + "HideDatasetActionunpaired_reads_1": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "unpaired_reads_1" + }, + "HideDatasetActionunpaired_reads_2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "unpaired_reads_2" + }, + "RenameDatasetActiontrimmed_reads_single": { + "action_arguments": { + "newname": "Trimmed reads" + }, + "action_type": "RenameDatasetAction", + "output_name": "trimmed_reads_single" + } + }, + "tool_errors": null, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.2", + "tool_shed_repository": { + "changeset_revision": "f1e71aeaa923", + "name": "trim_galore", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": 0, \"__rerun_remap_job_id__\": null, \"params\": \"{\\\"min_length\\\": \\\"12\\\", \\\"stringency\\\": \\\"1\\\", \\\"error_rate\\\": \\\"0.1\\\", \\\"retain_unpaired\\\": {\\\"retain_unpaired_select\\\": \\\"no_output\\\", \\\"__current_case__\\\": 0}, \\\"__current_case__\\\": 1, \\\"report\\\": \\\"true\\\", \\\"settingsType\\\": \\\"custom\\\", \\\"quality\\\": \\\"0\\\", \\\"clip_R1\\\": \\\"\\\", \\\"clip_R2\\\": \\\"\\\"}\", \"rrbs\": \"{\\\"settingsType\\\": \\\"default\\\", \\\"__current_case__\\\": 0}\", \"singlePaired\": \"{\\\"three_prime_clip_R1\\\": \\\"\\\", \\\"trimming\\\": {\\\"trimming_select\\\": \\\"\\\", \\\"__current_case__\\\": 0}, \\\"sPaired\\\": \\\"single\\\", \\\"__current_case__\\\": 0, \\\"input_singles\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}}\"}", + "tool_version": "0.4.2", + "type": "tool", + "uuid": "21f6bafb-48bb-4f7d-8543-8b8b96345d1a", + "workflow_outputs": [ + { + "label": null, + "output_name": "report_file", + "uuid": "8d621eea-f61d-4780-b3d7-d1de6a7a9e12" + }, + { + "label": null, + "output_name": "trimmed_reads_single", + "uuid": "d148afd4-9b94-4ef6-9856-98963e71ef6d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.65", + "id": 5, + "input_connections": { + "input_file": { + "id": 4, + "output_name": "trimmed_reads_single" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "input_file" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 548.5, + "top": 615 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + }, + "RenameDatasetActionhtml_file": { + "action_arguments": { + "newname": "FastQC on Groomed and Trimmed data" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_file" + } + }, + "tool_errors": null, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.65", + "tool_shed_repository": { + "changeset_revision": "3fdc1a74d866", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": 0, \"contaminants\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"limits\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"input_file\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "0.65", + "type": "tool", + "uuid": "972f64c0-14f5-460e-9d30-27faa6df86d4", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "da777968-7f09-4ba1-8ff0-1c9358de161c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtofastq/2.24.0", + "id": 8, + "input_connections": { + "input": { + "id": 7, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Convert from BAM to FastQ", + "name": "input" + } + ], + "label": null, + "name": "Convert from BAM to FastQ", + "outputs": [ + { + "name": "output", + "type": "fastq" + }, + { + "name": "output2", + "type": "fastq2" + } + ], + "position": { + "left": 859, + "top": 763 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "fastqsanger" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + }, + "HideDatasetActionoutput2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output2" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Non-rRNA reads (FASTQ)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_errors": null, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtofastq/2.24.0", + "tool_shed_repository": { + "changeset_revision": "d25966c8ddeb", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fq2\": \"\\\"false\\\"\", \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__page__\": 0, \"__rerun_remap_job_id__\": null, \"tags\": \"\\\"false\\\"\"}", + "tool_version": "2.24.0", + "type": "tool", + "uuid": "697122c3-2a2b-4e20-aae7-9179d7e8d4a6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9ef5503f-5cfa-4195-9985-4f1743a556cc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtofastq/2.24.0", + "id": 11, + "input_connections": { + "input": { + "id": 10, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Convert from BAM to FastQ", + "name": "input" + } + ], + "label": null, + "name": "Convert from BAM to FastQ", + "outputs": [ + { + "name": "output", + "type": "fastq" + }, + { + "name": "output2", + "type": "fastq2" + } + ], + "position": { + "left": 1156, + "top": 769 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput": { + "action_arguments": { + "newtype": "fastqsanger" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output" + }, + "ChangeDatatypeActionoutput2": { + "action_arguments": { + "newtype": "fastqsanger" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output2" + }, + "HideDatasetActionoutput2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output2" + }, + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Non-r/miRNA reads (FASTQ)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + }, + "RenameDatasetActionoutput2": { + "action_arguments": { + "newname": "Non-r/miRNA reads (FASTQ)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output2" + } + }, + "tool_errors": null, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtofastq/2.24.0", + "tool_shed_repository": { + "changeset_revision": "d25966c8ddeb", + "name": "bedtools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fq2\": \"\\\"false\\\"\", \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__page__\": 0, \"__rerun_remap_job_id__\": null, \"tags\": \"\\\"false\\\"\"}", + "tool_version": "2.24.0", + "type": "tool", + "uuid": "2af3a8c2-4056-4922-9353-c693d78230c9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "cd5b8c93-9ea0-422b-8f0a-9643961b1ab4" + } + ] + } + ], + "parent_id": "transcriptomics/srna", + "path": "topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_1_Read_preprocessing_and_removal_of_artifacts.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "sRNA Seq Step 1: Read Pre Processing And Removal Of Artifacts (no Grooming)", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-srna/versions/srna-seq-step-1-read-preprocessing-and-removal-of-artifacts", + "tutorial_id": "srna", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_1_Read_preprocessing_and_removal_of_artifacts.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_1_Read_preprocessing_and_removal_of_artifacts.html", + "version": 2, + "wfid": "transcriptomics-srna", + "wfname": "srna-seq-step-1-read-preprocessing-and-removal-of-artifacts", + "workflow": "sRNA_seq_Step_1_Read_preprocessing_and_removal_of_artifacts.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastq_manipulation/fastq_manipulation/1.0.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.65", + "toolshed.g2.bx.psu.edu/repos/devteam/samtool_filter2/samtool_filter2/1.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bedtools/bedtools_bamtofastq/2.24.0", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.0.3" + ], + "workflowhub_id": "1281" + }, + { + "creators": [], + "description": "This workflow completes the second part of the sRNA-seq tutorial from transcript quantification through differential abundance testing.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nDataset collection - Control\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDataset - Ref Txome\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nDataset collection - Case\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 4[label=\"Salmon\"]\n 1 -> 4 [label=\"output\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Salmon\"]\n 1 -> 5 [label=\"output\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"Salmon\"]\n 1 -> 6 [label=\"output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Salmon\"]\n 1 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"DESeq2\"]\n 6 -> 8 [label=\"output_quant\"]\n 4 -> 8 [label=\"output_quant\"]\n 3 -> 8 [label=\"output\"]\n 9[label=\"DESeq2\"]\n 7 -> 9 [label=\"output_quant\"]\n 5 -> 9 [label=\"output_quant\"]\n 3 -> 9 [label=\"output\"]\n 10[label=\"Filter\"]\n 8 -> 10 [label=\"deseq_out\"]\n 11[label=\"Filter\"]\n 9 -> 11 [label=\"deseq_out\"]\n}", + "history": [ + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "93d49854590788054c478350af91ebe28162c08f", + "message": "Update Salmon calls", + "num": 2, + "short_hash": "93d498545", + "unix": "1499979115" + }, + { + "hash": "6efea8d060e13f09bf9d0ea32b07c1eaf3a577d1", + "message": "Move the srna tutorial to transcriptomics topic", + "num": 1, + "short_hash": "6efea8d06", + "unix": "1498731718" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection - Control RNAi sRNA reads" + } + ], + "label": "Dataset collection - Control", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 217, + "top": 436 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection - Control RNAi sRNA reads\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "91427be9-059a-4e6c-89e9-b4cfea01639b", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset - Reference Transcriptome" + } + ], + "label": "Dataset - Ref Txome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 221.5, + "top": 524 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Input Dataset - Reference Transcriptome\"}", + "tool_version": null, + "type": "data_input", + "uuid": "52018b9a-9b80-445d-8a0b-6ce9d3b3b47c", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection - Case RNAi sRNA reads" + } + ], + "label": "Dataset collection - Case", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 223, + "top": 612 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection - Case RNAi sRNA reads\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c26c73ec-cd58-4674-95be-90ca097afc20", + "workflow_outputs": [] + }, + { + "annotation": "Tab-delimited", + "content_id": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Tab-delimited", + "name": "Tx2Gene reference" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1104, + "top": 512 + }, + "tool_errors": null, + "tool_id": null, + "tool_state": "{\"name\": \"Tx2Gene reference\"}", + "tool_version": null, + "type": "data_input", + "uuid": "dcb51b30-6cea-43c4-8399-b310f04fe8d9", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nDataset collection - Control\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nDataset - Ref Txome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nDataset collection - Case\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Salmon\"];\n 1 -->|output| 4;\n 0 -->|output| 4;\n 5[\"Salmon\"];\n 1 -->|output| 5;\n 0 -->|output| 5;\n 6[\"Salmon\"];\n 1 -->|output| 6;\n 2 -->|output| 6;\n 7[\"Salmon\"];\n 1 -->|output| 7;\n 2 -->|output| 7;\n 8[\"DESeq2\"];\n 6 -->|output_quant| 8;\n 4 -->|output_quant| 8;\n 3 -->|output| 8;\n 9[\"DESeq2\"];\n 7 -->|output_quant| 9;\n 5 -->|output_quant| 9;\n 3 -->|output| 9;\n 10[\"Filter\"];\n 8 -->|deseq_out| 10;\n 11[\"Filter\"];\n 9 -->|deseq_out| 11;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "sRNA Seq Step 2: Salmon And DESeq2", + "outputs": [], + "parent_id": "transcriptomics/srna", + "path": "topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_2_Salmon_and_DESeq2.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "sRNA Seq Step 2: Salmon And DESeq2", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-srna/versions/srna-seq-step-2-salmon-and-deseq2", + "tutorial_id": "srna", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_2_Salmon_and_DESeq2.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/srna/workflows/sRNA_seq_Step_2_Salmon_and_DESeq2.html", + "version": 3, + "wfid": "transcriptomics-srna", + "wfname": "srna-seq-step-2-salmon-and-deseq2", + "workflow": "sRNA_seq_Step_2_Salmon_and_DESeq2.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/salmon/salmon/0.8.2", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.39" + ], + "workflowhub_id": "1279" + } + ], + "zenodo_link": "https://zenodo.org/record/826906" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "02026300aa45", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "egsea", + "owner": "iuc", + "revisions": "fba1660fb717", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fgsea", + "owner": "iuc", + "revisions": "17eb1e0d711f", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "goseq", + "owner": "iuc", + "revisions": "ef2ad746b589", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 02026300aa45\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: egsea\n owner: iuc\n revisions: fba1660fb717\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fgsea\n owner: iuc\n revisions: 17eb1e0d711f\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: goseq\n owner: iuc\n revisions: ef2ad746b589\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/tutorial.json", + "contributors": [ + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + }, + { + "id": "bphipson", + "joined": "2018-09", + "name": "Belinda Phipson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bphipson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bphipson.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-genes-to-pathways", + "edam_operation": [ + "Gene-set enrichment analysis", + "Gene functional annotation", + "Gene set testing" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rna-seq-genes-to-pathways", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "goseq can be used to identify enriched gene ontology categories and incorporate gene length bias", + "fgsea can be used to identify enriched gene sets, such as the MSigDB collections, and generate barcode plots", + "EGSEA can be used to identify enriched gene sets, such as MSigDB and KEGG, generating visualisations that include heatmaps and KEGG pathway diagrams", + "Multiple methods can be used to help identify differentially expressed pathways and to visualise results" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Identification of differentially expressed pathways" + ], + "pageviews": 36629, + "pub_date": "2018-12-31", + "questions": [ + "What are the differentially expressed pathways in the mammary gland of pregnant versus lactating mice?" + ], + "short_id": "T00300", + "short_tools": [ + "fgsea", + "egsea", + "tp_cut_tool", + "Cut1", + "tp_sort_header_tool", + "Add_a_column1", + "join1", + "goseq" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "end-to-end", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "mouse" + ], + "time_estimation": "2h", + "title": "3: RNA-seq genes to pathways", + "tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/iuc/egsea/egsea/1.20.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fgsea/fgsea/1.8.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.44.0+galaxy0" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-genes-to-pathways", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 112, + "visitors": 21972, + "workflows": [ + { + "creators": [], + "description": "RNA-seq genes to pathways", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nseqdata\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nfactordata\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nDE table\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmouse_hallmark_sets\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nlimma_filtered_counts\"]\n 5[label=\"Compute\"]\n 2 -> 5 [label=\"output\"]\n 6[label=\"Cut\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"Advanced Cut\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Advanced Cut\"]\n 4 -> 8 [label=\"output\"]\n 9[label=\"Join two Datasets\"]\n 5 -> 9 [label=\"out_file1\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Sort\"]\n 6 -> 10 [label=\"out_file1\"]\n 11[label=\"EGSEA\"]\n 8 -> 11 [label=\"output\"]\n 7 -> 11 [label=\"output\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Cut\"]\n 9 -> 12 [label=\"out_file1\"]\n 13[label=\"Cut\"]\n 9 -> 13 [label=\"out_file1\"]\n 14[label=\"fgsea\"]\n 10 -> 14 [label=\"outfile\"]\n 3 -> 14 [label=\"output\"]\n 15[label=\"goseq\"]\n 12 -> 15 [label=\"out_file1\"]\n 13 -> 15 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "d4c89b2dd1df9f664b50c12830c206c195ded1ba", + "message": "Update workflow (#3198)", + "num": 5, + "short_hash": "d4c89b2dd", + "unix": "1645817433" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "0ea8c79012ba1b18d3f79be0ff2e2b826092f5e2", + "message": "Rename tutorial and image folders to the updated titles", + "num": 1, + "short_hash": "0ea8c7901", + "unix": "1546155649" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "seqdata" + } + ], + "label": "seqdata", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 376.9375, + "height": 61.78125, + "left": 164.984375, + "right": 364.984375, + "top": 315.15625, + "width": 200, + "x": 164.984375, + "y": 315.15625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "530892fe-96db-4ac9-86da-57adf9dc569d", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "factordata" + } + ], + "label": "factordata", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 466.96875, + "height": 61.78125, + "left": 164.984375, + "right": 364.984375, + "top": 405.1875, + "width": 200, + "x": 164.984375, + "y": 405.1875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "a7dfbd15-e384-4bbb-a30f-a8ff03b07784", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DE table" + } + ], + "label": "DE table", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 556.984375, + "height": 61.78125, + "left": 164.984375, + "right": 364.984375, + "top": 495.203125, + "width": 200, + "x": 164.984375, + "y": 495.203125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "e3e247b3-de91-4ae4-af20-41fe85400e05", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mouse_hallmark_sets" + } + ], + "label": "mouse_hallmark_sets", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 667.421875, + "height": 82.171875, + "left": 164.984375, + "right": 364.984375, + "top": 585.25, + "width": 200, + "x": 164.984375, + "y": 585.25 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "651a815a-cadf-4bdf-8d6e-d08379ed4684", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "limma_filtered_counts" + } + ], + "label": "limma_filtered_counts", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 796.453125, + "height": 82.171875, + "left": 164.984375, + "right": 364.984375, + "top": 714.28125, + "width": 200, + "x": 164.984375, + "y": 714.28125 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "9347a180-d878-4afe-95cb-9b6cfd383448", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nseqdata\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nfactordata\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nDE table\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nmouse_hallmark_sets\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nlimma_filtered_counts\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"Compute\"];\n 2 -->|output| 5;\n 6[\"Cut\"];\n 2 -->|output| 6;\n 7[\"Advanced Cut\"];\n 4 -->|output| 7;\n 8[\"Advanced Cut\"];\n 4 -->|output| 8;\n 9[\"Join two Datasets\"];\n 5 -->|out_file1| 9;\n 0 -->|output| 9;\n 10[\"Sort\"];\n 6 -->|out_file1| 10;\n 11[\"EGSEA\"];\n 8 -->|output| 11;\n 7 -->|output| 11;\n 1 -->|output| 11;\n 12[\"Cut\"];\n 9 -->|out_file1| 12;\n 13[\"Cut\"];\n 9 -->|out_file1| 13;\n 14[\"fgsea\"];\n 10 -->|outfile| 14;\n 3 -->|output| 14;\n 15[\"goseq\"];\n 12 -->|out_file1| 15;\n 13 -->|out_file1| 15;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "RNA Seq Genes To Pathways (imported from uploaded file)", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Compute", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "bottom": 408.328125, + "height": 93.171875, + "left": 477.015625, + "right": 677.015625, + "top": 315.15625, + "width": 200, + "x": 477.015625, + "y": 315.15625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "tool_shed_repository": { + "changeset_revision": "02026300aa45", + "name": "column_maker", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"avoid_scientific_notation\": \"false\", \"cond\": \"bool(c8<0.01) and bool(abs(c4)>0.58)\", \"header_lines_conditional\": {\"header_lines_select\": \"no\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"round\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.6", + "type": "tool", + "uuid": "20efeeff-6096-48d2-9f1f-e3e776112b13", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "52fae575-f107-4657-aec1-1f2b3d71ac95" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 534.359375, + "height": 93.171875, + "left": 477.015625, + "right": 677.015625, + "top": 441.1875, + "width": 200, + "x": 477.015625, + "y": 441.1875 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\", \"columnList\": \"c1,c6\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"input|__identifier__\": \"limma-voom_luminalpregnant-luminallactate\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "a301610d-4e49-4dd6-b603-482674c9ec7f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "b9d13636-4ef9-45a6-9563-b91005fa9d57" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 7, + "input_connections": { + "input": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 680.765625, + "height": 113.5625, + "left": 477.015625, + "right": 677.015625, + "top": 567.203125, + "width": 200, + "x": 477.015625, + "y": 567.203125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"--complement\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"2,3\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "74f84dac-988e-436e-80cf-e45720a1ca6d", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8cf43669-dd17-42be-bd0d-f1a8ca299db6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Advanced Cut", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "bottom": 800.8125, + "height": 113.5625, + "left": 477.015625, + "right": 677.015625, + "top": 687.25, + "width": 200, + "x": 477.015625, + "y": 687.25 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"\", \"cut_type_options\": {\"cut_element\": \"-f\", \"__current_case__\": 0, \"list\": \"1,2\"}, \"delimiter\": \"\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "e5c8206a-72d0-4faa-a19e-8d7ac0190316", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "3ce059c1-68f7-49c1-a1fd-fd7d6e1c0bc8" + } + ] + }, + { + "annotation": "", + "content_id": "join1", + "errors": null, + "id": 9, + "input_connections": { + "input1": { + "id": 5, + "output_name": "out_file1" + }, + "input2": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Join two Datasets", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 459.109375, + "height": 143.953125, + "left": 734.046875, + "right": 934.046875, + "top": 315.15625, + "width": 200, + "x": 734.046875, + "y": 315.15625 + }, + "post_job_actions": {}, + "tool_id": "join1", + "tool_state": "{\"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\", \"field1\": \"1\", \"field2\": \"1\", \"fill_empty_columns\": {\"fill_empty_columns_switch\": \"no_fill\", \"__current_case__\": 0}, \"header\": \"\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"input1|__identifier__\": \"limma-voom_luminalpregnant-luminallactate\", \"input2\": {\"__class__\": \"ConnectedValue\"}, \"partial\": \"\", \"unmatched\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.3", + "type": "tool", + "uuid": "2f81fad6-b41c-4c4b-b803-51a5ccd1c047", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "49d52f1a-b5ce-4cde-a141-eb684154f8ad" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 10, + "input_connections": { + "infile": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "bottom": 562.359375, + "height": 93.171875, + "left": 734.046875, + "right": 934.046875, + "top": 469.1875, + "width": 200, + "x": 734.046875, + "y": 469.1875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\", \"header\": \"1\", \"ignore_case\": \"false\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"infile|__identifier__\": \"limma-voom_luminalpregnant-luminallactate\", \"sortkeys\": [{\"__index__\": 0, \"column\": \"2\", \"order\": \"r\", \"style\": \"n\"}], \"unique\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "ce9e6449-48c9-4857-b20a-e82f0a554685", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "304a128c-3da0-4a25-bd5b-52da23d9f850" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/egsea/egsea/1.20.0", + "errors": null, + "id": 11, + "input_connections": { + "genes": { + "id": 8, + "output_name": "output" + }, + "input|counts": { + "id": 7, + "output_name": "output" + }, + "input|fact|finfo": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "EGSEA", + "outputs": [ + { + "name": "outTables", + "type": "input" + }, + { + "name": "outReport", + "type": "html" + } + ], + "position": { + "bottom": 820.34375, + "height": 225.125, + "left": 734.046875, + "right": 934.046875, + "top": 595.21875, + "width": 200, + "x": 734.046875, + "y": 595.21875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/egsea/egsea/1.20.0", + "tool_shed_repository": { + "changeset_revision": "fba1660fb717", + "name": "egsea", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"display_top\": \"5\", \"min_size\": \"2\", \"fdr_cutoff\": \"0.05\", \"combine_method\": \"wilkinson\", \"sort_method\": \"med.rank\", \"rscriptOpt\": \"false\", \"rdaOpt\": \"false\"}, \"base_methods\": [\"camera\", \"safe\", \"gage\", \"zscore\", \"gsva\", \"globaltest\", \"ora\", \"ssgsea\", \"padog\", \"plage\", \"fry\"], \"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\", \"genes\": {\"__class__\": \"ConnectedValue\"}, \"gsdb\": {\"gsdb_gsets\": null}, \"input\": {\"format\": \"matrix\", \"__current_case__\": 1, \"counts\": {\"__class__\": \"ConnectedValue\"}, \"fact\": {\"ffile\": \"yes\", \"__current_case__\": 0, \"finfo\": {\"__class__\": \"ConnectedValue\"}}}, \"keggdb\": {\"keggdb_gsets\": [\"keggmet\", \"keggsig\"], \"kegg_updated\": \"false\"}, \"msigdb\": {\"msigdb_gsets\": [\"h\"]}, \"non_commercial_use\": \"true\", \"rep_contrast\": [{\"__index__\": 0, \"contrast\": \"basalpregnant-basallactate\"}, {\"__index__\": 1, \"contrast\": \"luminalpregnant-luminallactate\"}], \"species\": \"mouse\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.20.0", + "type": "tool", + "uuid": "e9df8569-f438-4144-9f3a-ebb569ec2047", + "workflow_outputs": [ + { + "label": null, + "output_name": "outTables", + "uuid": "778284eb-56d6-4079-badb-951d5714c8f8" + }, + { + "label": null, + "output_name": "outReport", + "uuid": "86db0251-4d15-45b7-b471-2af7def64d39" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Cut", + "name": "input" + } + ], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 408.328125, + "height": 93.171875, + "left": 1003.09375, + "right": 1203.09375, + "top": 315.15625, + "width": 200, + "x": 1003.09375, + "y": 315.15625 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c10\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "af9206ae-98cc-4432-a81e-ee39bb2c2a8a", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "fd382af4-5a99-4264-af9a-f8fdc6c134b7" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 13, + "input_connections": { + "input": { + "id": 9, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Cut", + "name": "input" + } + ], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 534.359375, + "height": 93.171875, + "left": 1003.09375, + "right": 1203.09375, + "top": 441.1875, + "width": 200, + "x": 1003.09375, + "y": 441.1875 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c12\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"RuntimeValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "4a72bc30-2d4e-4480-875b-507b2a7274b4", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "655e9412-ca8c-4b0f-9dcc-fa8da9126e90" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/fgsea/fgsea/1.8.0+galaxy1", + "errors": null, + "id": 14, + "input_connections": { + "rnk_file": { + "id": 10, + "output_name": "outfile" + }, + "sets_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "fgsea", + "outputs": [ + { + "name": "out_tab", + "type": "tabular" + }, + { + "name": "out_pdf", + "type": "pdf" + } + ], + "position": { + "bottom": 782.328125, + "height": 215.125, + "left": 1003.09375, + "right": 1203.09375, + "top": 567.203125, + "width": 200, + "x": 1003.09375, + "y": 567.203125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/fgsea/fgsea/1.8.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "17eb1e0d711f", + "name": "fgsea", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\", \"header\": \"true\", \"max_size\": \"500\", \"min_size\": \"15\", \"n_perm\": \"1000\", \"plot_opt\": \"true\", \"rda_opt\": \"false\", \"rnk_file\": {\"__class__\": \"ConnectedValue\"}, \"rnk_file|__identifier__\": \"limma-voom_luminalpregnant-luminallactate\", \"sets_file\": {\"__class__\": \"ConnectedValue\"}, \"top_num\": \"10\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8.0+galaxy1", + "type": "tool", + "uuid": "8e1c5077-edf1-4dcf-9a07-3b521c49a76f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_pdf", + "uuid": "d8219c05-bd0a-43e5-8f5c-f4bb77a22863" + }, + { + "label": null, + "output_name": "out_tab", + "uuid": "8b684bd0-a210-42e8-8c32-16a143e20086" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.44.0+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "dge_file": { + "id": 12, + "output_name": "out_file1" + }, + "length_file": { + "id": 13, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "goseq", + "outputs": [ + { + "name": "wallenius_tab", + "type": "tabular" + }, + { + "name": "top_plot", + "type": "pdf" + } + ], + "position": { + "bottom": 611.84375, + "height": 296.6875, + "left": 1258.109375, + "right": 1458.109375, + "top": 315.15625, + "width": 200, + "x": 1258.109375, + "y": 315.15625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.44.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "ef2ad746b589", + "name": "goseq", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"p_adj_method\": \"BH\", \"use_genes_without_cat\": \"false\"}, \"categorySource\": {\"catSource\": \"getgo\", \"__current_case__\": 0, \"genome\": \"mm10\", \"gene_id\": \"knownGene\", \"fetchcats\": [\"GO:BP\"]}, \"chromInfo\": \"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\", \"dge_file\": {\"__class__\": \"ConnectedValue\"}, \"dge_file|__identifier__\": \"limma-voom_luminalpregnant-luminallactate\", \"length_file\": {\"__class__\": \"ConnectedValue\"}, \"length_file|__identifier__\": \"limma-voom_luminalpregnant-luminallactate\", \"methods\": {\"wallenius\": \"true\", \"hypergeometric\": \"false\", \"repcnt\": \"0\"}, \"out\": {\"topgo_plot\": \"true\", \"make_plots\": \"false\", \"cat_genes\": \"false\", \"rdata_out\": \"false\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.44.0+galaxy0", + "type": "tool", + "uuid": "cddd834a-87f6-470a-b4cd-3c7af7f75e50", + "workflow_outputs": [ + { + "label": null, + "output_name": "top_plot", + "uuid": "6aacfcb1-f009-4fc9-8607-b3725488fb1d" + }, + { + "label": null, + "output_name": "wallenius_tab", + "uuid": "a473f119-2db7-451f-8ad5-3700df2ae19b" + } + ] + } + ], + "parent_id": "transcriptomics/rna-seq-genes-to-pathways", + "path": "topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/workflows/rna-seq-genes-to-pathways.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "RNA Seq Genes To Pathways (imported from uploaded file)", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-seq-genes-to-pathways/versions/rna-seq-genes-to-pathways", + "tutorial_id": "rna-seq-genes-to-pathways", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/workflows/rna-seq-genes-to-pathways.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-genes-to-pathways/workflows/rna-seq-genes-to-pathways.html", + "version": 5, + "wfid": "transcriptomics-rna-seq-genes-to-pathways", + "wfname": "rna-seq-genes-to-pathways", + "workflow": "rna-seq-genes-to-pathways.ga", + "workflow_tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.6", + "toolshed.g2.bx.psu.edu/repos/iuc/egsea/egsea/1.20.0", + "toolshed.g2.bx.psu.edu/repos/iuc/fgsea/fgsea/1.8.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.44.0+galaxy0" + ], + "workflowhub_id": "1316" + } + ], + "zenodo_link": "https://zenodo.org/record/2596382" + }, + { + "abbreviations": { + "AS": "alternative splicing", + "IS": "isoform switching", + "OCGs": "oncogenes", + "TSGs": "tumor supression genes" + }, + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "cpat", + "owner": "bgruening", + "revisions": "8e9e228c54c4", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pfamscan", + "owner": "bgruening", + "revisions": "15cff34c2005", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gffread", + "owner": "devteam", + "revisions": "154d00cbbf2d", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tabular_to_fasta", + "owner": "devteam", + "revisions": "0a7799698fe5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_element_identifiers", + "owner": "iuc", + "revisions": "d3c07d270a50", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gffcompare", + "owner": "iuc", + "revisions": "f99dd58de04f", + "tool_panel_section_label": "Filter and Sort", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gtftobed12", + "owner": "iuc", + "revisions": "b026dae67fba", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "f4af63aaf57a", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "isoformswitchanalyzer", + "owner": "iuc", + "revisions": "298d81e5e138", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pygenometracks", + "owner": "iuc", + "revisions": "360df4999907", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "3ea5a2a63fa2", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rnaquast", + "owner": "iuc", + "revisions": "96f74538896e", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rnaquast", + "owner": "iuc", + "revisions": "8e66f695d859", + "tool_panel_section_label": "Assembly", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stringtie", + "owner": "iuc", + "revisions": "ae618321f34a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stringtie", + "owner": "iuc", + "revisions": "ae618321f34a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "5968573462fa", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "5968573462fa", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "5968573462fa", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "5968573462fa", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "5968573462fa", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: cpat\n owner: bgruening\n revisions: 8e9e228c54c4\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pfamscan\n owner: bgruening\n revisions: 15cff34c2005\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gffread\n owner: devteam\n revisions: 154d00cbbf2d\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tabular_to_fasta\n owner: devteam\n revisions: 0a7799698fe5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_element_identifiers\n owner: iuc\n revisions: d3c07d270a50\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gffcompare\n owner: iuc\n revisions: f99dd58de04f\n tool_panel_section_label: Filter and Sort\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gtftobed12\n owner: iuc\n revisions: b026dae67fba\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: f4af63aaf57a\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: isoformswitchanalyzer\n owner: iuc\n revisions: 298d81e5e138\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pygenometracks\n owner: iuc\n revisions: 360df4999907\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 3ea5a2a63fa2\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rnaquast\n owner: iuc\n revisions: 96f74538896e\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rnaquast\n owner: iuc\n revisions: 8e66f695d859\n tool_panel_section_label: Assembly\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stringtie\n owner: iuc\n revisions: ae618321f34a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stringtie\n owner: iuc\n revisions: ae618321f34a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 5968573462fa\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 5968573462fa\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 5968573462fa\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 5968573462fa\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 5968573462fa\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/differential-isoform-expression/tutorial.json", + "contributions": { + "authorship": [ + "gallardoalba", + "lldelisle" + ], + "editing": [ + "pavanvidem" + ] + }, + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/transcriptomics/tutorials/differential-isoform-expression", + "edam_operation": [ + "Visualisation", + "Sequencing quality control", + "Sequence contamination filtering", + "De-novo assembly", + "Sequence alignment", + "Sequence comparison", + "Sequence analysis", + "Formatting", + "Sequence assembly validation", + "Sequence composition calculation", + "Transcriptome assembly", + "Data handling", + "Sequence annotation", + "Validation", + "Protein sequence analysis", + "RNA-Seq analysis", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/differential-isoform-expression", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Before starting RNA-seq data analysis, it is important to evaluate the quality of the samples by using RSeQC.", + "StringTie is a powerfull tool for gene isoform quantification and isoform switch analysis.", + "IsoformSwitchAnalyzeR allows to evaluate the statistical significance of isoform switch events in different conditions." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-03-07", + "objectives": [ + "Perform genome-wide isoform analysis in order to evaluate differences in expression profiles between cancer and healthy tissues", + "Evaluate the differential alternative splicing in specific genes" + ], + "pageviews": 1628807, + "pub_date": "2023-05-17", + "questions": [ + "Are there statistically significant differences in gene splicing patterns between samples?", + "Are there significant isoform switching events between the experimental conditions?" + ], + "short_id": "T00345", + "short_tools": [ + "gffread", + "tp_awk_tool", + "Cut1", + "isoformswitchanalyzer", + "rseqc_read_distribution", + "rna_star", + "gtftobed12", + "Remove beginning1", + "stringtie", + "hisat2", + "rseqc_junction_saturation", + "pfamscan", + "rseqc_inner_distance", + "CONVERTER_fasta_to_tabular", + "gffcompare", + "tp_sorted_uniq", + "pygenomeTracks", + "tab2fasta", + "cat1", + "rseqc_infer_experiment", + "sort1", + "tp_cat", + "stringtie_merge", + "rseqc_geneBody_coverage", + "collection_element_identifiers", + "rseqc_junction_annotation", + "param_value_from_file", + "fastp", + "multiqc", + "rna_quast", + "tp_grep_tool", + "__FILTER_FROM_FILE__", + "fastqc", + "gene2exon1", + "__FLATTEN__", + "cpat" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "alternative splicing", + "isoform switching" + ], + "time_estimation": "3H", + "title": "Genome-wide alternative splicing analysis", + "tools": [ + "CONVERTER_fasta_to_tabular", + "Cut1", + "Remove beginning1", + "__FILTER_FROM_FILE__", + "__FLATTEN__", + "cat1", + "gene2exon1", + "param_value_from_file", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cpat/cpat/3.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/pfamscan/pfamscan/1.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/tabular_to_fasta/tab2fasta/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/gffcompare/gffcompare/0.12.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/isoformswitchanalyzer/isoformswitchanalyzer/1.20.0+galaxy5", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/rnaquast/rna_quast/2.2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/rnaquast/rna_quast/2.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie_merge/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_inner_distance/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_junction_annotation/5.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_junction_annotation/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_junction_saturation/5.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_junction_saturation/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy2" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "differential-isoform-expression", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/differential-isoform-expression/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/differential-isoform-expression/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/differential-isoform-expression/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 271, + "visitors": 703404, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-5752-2155", + "name": "Crist\u00f3bal Gallardo Alba" + } + ], + "description": "Training workflow", + "features": { + "comments": false, + "parameters": true, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nRNA-seq data collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genome\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome annotation\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nControl IDs\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nFactor 02\"]\n 5[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nFactor 01\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nCPAT header\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nActive sites dataset\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPfam-A HMM Stockholm file\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPfam-A HMM library\"]\n 10[label=\"fastp\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"Flatten collection\"]\n 0 -> 11 [label=\"output\"]\n 12[label=\"Search in textfiles\"]\n 2 -> 12 [label=\"output\"]\n 13[label=\"Search in textfiles\"]\n 2 -> 13 [label=\"output\"]\n 14[label=\"Convert GTF to BED12\"]\n 2 -> 14 [label=\"output\"]\n 15[label=\"FastQC\"]\n 11 -> 15 [label=\"output\"]\n 16[label=\"gffread\"]\n 12 -> 16 [label=\"output\"]\n 1 -> 16 [label=\"output\"]\n ke34fd125e86048a29e58bed5c3600b8d[color=lightseagreen,label=\"Output\\nlncRNA sequences\"]\n 16 -> ke34fd125e86048a29e58bed5c3600b8d\n 17[label=\"gffread\"]\n 13 -> 17 [label=\"output\"]\n 1 -> 17 [label=\"output\"]\n k836eeb38dc6742df93fa2fcd5bbe7a80[color=lightseagreen,label=\"Output\\nprotein coding sequences\"]\n 17 -> k836eeb38dc6742df93fa2fcd5bbe7a80\n 18[label=\"MultiQC\"]\n 15 -> 18 [label=\"text_file\"]\n 10 -> 18 [label=\"report_json\"]\n 19[label=\"Search in textfiles\"]\n 15 -> 19 [label=\"text_file\"]\n 20[label=\"Concatenate datasets\"]\n 19 -> 20 [label=\"output\"]\n 21[label=\"Search in textfiles\"]\n 20 -> 21 [label=\"out_file1\"]\n 22[label=\"Cut\"]\n 21 -> 22 [label=\"output\"]\n 23[label=\"Text reformatting\"]\n 22 -> 23 [label=\"out_file1\"]\n 24[label=\"Parse parameter value\"]\n 23 -> 24 [label=\"outfile\"]\n 25[label=\"RNA STAR\"]\n 2 -> 25 [label=\"output\"]\n 24 -> 25 [label=\"integer_param\"]\n 1 -> 25 [label=\"output\"]\n 10 -> 25 [label=\"output_paired_coll\"]\n 26[label=\"Concatenate datasets\"]\n 25 -> 26 [label=\"splice_junctions\"]\n 27[label=\"Text reformatting\"]\n 26 -> 27 [label=\"out_file1\"]\n 28[label=\"Cut\"]\n 27 -> 28 [label=\"outfile\"]\n 29[label=\"Sort\"]\n 28 -> 29 [label=\"out_file1\"]\n 30[label=\"Unique\"]\n 29 -> 30 [label=\"out_file1\"]\n 31[label=\"RNA STAR\"]\n 2 -> 31 [label=\"output\"]\n 24 -> 31 [label=\"integer_param\"]\n 1 -> 31 [label=\"output\"]\n 10 -> 31 [label=\"output_paired_coll\"]\n 30 -> 31 [label=\"outfile\"]\n 32[label=\"StringTie\"]\n 2 -> 32 [label=\"output\"]\n 31 -> 32 [label=\"mapped_reads\"]\n 33[label=\"Junction Annotation\"]\n 31 -> 33 [label=\"mapped_reads\"]\n 14 -> 33 [label=\"bed_file\"]\n 34[label=\"Junction Saturation\"]\n 31 -> 34 [label=\"mapped_reads\"]\n 14 -> 34 [label=\"bed_file\"]\n 35[label=\"Gene Body Coverage BAM\"]\n 31 -> 35 [label=\"mapped_reads\"]\n 14 -> 35 [label=\"bed_file\"]\n 36[label=\"Inner Distance\"]\n 31 -> 36 [label=\"mapped_reads\"]\n 14 -> 36 [label=\"bed_file\"]\n 37[label=\"Infer Experiment\"]\n 31 -> 37 [label=\"mapped_reads\"]\n 14 -> 37 [label=\"bed_file\"]\n 38[label=\"Read Distribution\"]\n 31 -> 38 [label=\"mapped_reads\"]\n 14 -> 38 [label=\"bed_file\"]\n 39[label=\"gffread\"]\n 32 -> 39 [label=\"output_gtf\"]\n 1 -> 39 [label=\"output\"]\n 40[label=\"StringTie merge\"]\n 2 -> 40 [label=\"output\"]\n 32 -> 40 [label=\"output_gtf\"]\n 41[label=\"MultiQC\"]\n 31 -> 41 [label=\"output_log\"]\n 37 -> 41 [label=\"output\"]\n 38 -> 41 [label=\"output\"]\n 34 -> 41 [label=\"outputr\"]\n 33 -> 41 [label=\"stats\"]\n 35 -> 41 [label=\"outputtxt\"]\n 36 -> 41 [label=\"outputfreqtxt\"]\n 42[label=\"rnaQUAST\"]\n 2 -> 42 [label=\"output\"]\n 1 -> 42 [label=\"output\"]\n 39 -> 42 [label=\"output_exons\"]\n 43[label=\"gffread\"]\n 40 -> 43 [label=\"out_gtf\"]\n 1 -> 43 [label=\"output\"]\n 44[label=\"StringTie\"]\n 40 -> 44 [label=\"out_gtf\"]\n 31 -> 44 [label=\"mapped_reads\"]\n 45[label=\"Filter collection\"]\n 3 -> 45 [label=\"output\"]\n 44 -> 45 [label=\"transcript_expression\"]\n 46[label=\"IsoformSwitchAnalyzeR\"]\n 2 -> 46 [label=\"output\"]\n 24 -> 46 [label=\"integer_param\"]\n 5 -> 46 [label=\"output\"]\n 45 -> 46 [label=\"output_filtered\"]\n 40 -> 46 [label=\"out_gtf\"]\n 4 -> 46 [label=\"output\"]\n 45 -> 46 [label=\"output_discarded\"]\n 43 -> 46 [label=\"output_exons\"]\n 47[label=\"IsoformSwitchAnalyzeR\"]\n 46 -> 47 [label=\"switchList\"]\n 48[label=\"CPAT\"]\n 17 -> 48 [label=\"output_exons\"]\n 47 -> 48 [label=\"isoformNT\"]\n 16 -> 48 [label=\"output_exons\"]\n 1 -> 48 [label=\"output\"]\n 49[label=\"PfamScan\"]\n 7 -> 49 [label=\"output\"]\n 47 -> 49 [label=\"isoformAA\"]\n 8 -> 49 [label=\"output\"]\n 9 -> 49 [label=\"output\"]\n 50[label=\"Remove beginning\"]\n 48 -> 50 [label=\"orf_seqs_prob_best\"]\n 51[label=\"Text reformatting\"]\n 50 -> 51 [label=\"out_file1\"]\n 52[label=\"Concatenate datasets\"]\n 6 -> 52 [label=\"output\"]\n 51 -> 52 [label=\"outfile\"]\n 53[label=\"IsoformSwitchAnalyzeR\"]\n 52 -> 53 [label=\"out_file1\"]\n 49 -> 53 [label=\"output\"]\n 47 -> 53 [label=\"switchList\"]\n 54[label=\"IsoformSwitchAnalyzeR\"]\n 52 -> 54 [label=\"out_file1\"]\n 49 -> 54 [label=\"output\"]\n 47 -> 54 [label=\"switchList\"]\n}", + "history": [ + { + "hash": "e956757639b0d549bc129c0564d8c69914d4cdf4", + "message": "Update plots", + "num": 14, + "short_hash": "e95675763", + "unix": "1686508814" + }, + { + "hash": "d3163e2b04b76cd5015916c5d194ebc0dfe9b110", + "message": "Update workflow", + "num": 13, + "short_hash": "d3163e2b0", + "unix": "1686486896" + }, + { + "hash": "242488ceeccd233ba915cdf2fba3101ef8c99e29", + "message": "Update workflow", + "num": 12, + "short_hash": "242488cee", + "unix": "1686484899" + }, + { + "hash": "525bdefc1ac19e3a0b87c29790ec78b7d2340add", + "message": "Update workflow", + "num": 11, + "short_hash": "525bdefc1", + "unix": "1686484651" + }, + { + "hash": "d61cfd01e61471f912f707d9eb3aea127d80f2c1", + "message": "Update workflow", + "num": 10, + "short_hash": "d61cfd01e", + "unix": "1686484349" + }, + { + "hash": "d8d7c1d615f46659536f4c13253c346fe84027f2", + "message": "Update workflow", + "num": 9, + "short_hash": "d8d7c1d61", + "unix": "1686483691" + }, + { + "hash": "68b7c87190e61cf667914d89ba79c6790c35737d", + "message": "Update workflow", + "num": 8, + "short_hash": "68b7c8719", + "unix": "1686158211" + }, + { + "hash": "e09b91c821e922df6f578878060815a58077782f", + "message": "Add_files", + "num": 7, + "short_hash": "e09b91c82", + "unix": "1686021786" + }, + { + "hash": "fbc9e306edc7b872dd838b781d99bbb12d44a442", + "message": "Add Pavan suggestions", + "num": 6, + "short_hash": "fbc9e306e", + "unix": "1685124295" + }, + { + "hash": "8cce7136d54eed33de145c97bab268a31ff44917", + "message": "Update workflow", + "num": 5, + "short_hash": "8cce7136d", + "unix": "1684963030" + }, + { + "hash": "4227f53c56a798c64fce21250c41ad9fa26496d5", + "message": "Update_training", + "num": 4, + "short_hash": "4227f53c5", + "unix": "1684334343" + }, + { + "hash": "509a8973b87c7391b8a24471e8c7c3f01df118ed", + "message": "Update workflow and bib file", + "num": 3, + "short_hash": "509a8973b", + "unix": "1683639477" + }, + { + "hash": "c7397ec1f299ddfb0cf6de41a1799b820da48c54", + "message": "Modify workflow", + "num": 2, + "short_hash": "c7397ec1f", + "unix": "1683638438" + }, + { + "hash": "a021922f229a004fa6efbacf9fffc60e5736b223", + "message": "Add_files", + "num": 1, + "short_hash": "a021922f2", + "unix": "1678376823" + } + ], + "inputs": [ + { + "annotation": "Collection of paired-end RNA-seq datasets.", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Collection of paired-end RNA-seq datasets.", + "name": "RNA-seq data collection" + } + ], + "label": "RNA-seq data collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 767 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "b60e28c3-2fe1-4122-8808-71f1e033d21f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Genome reference in FASTA format.", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Genome reference in FASTA format.", + "name": "Reference genome" + } + ], + "label": "Reference genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2240, + "top": 451 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "2e05fd1f-440d-4644-9b64-86da0ece0bc9", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Reference genome annotation in GTF format.", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Reference genome annotation in GTF format.", + "name": "Genome annotation" + } + ], + "label": "Genome annotation", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2240, + "top": 678 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "52d813b7-2387-4c82-a3aa-37320c40ae96", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "IDs of control sequences, corresponding to filenames.", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "IDs of control sequences, corresponding to filenames.", + "name": "Control IDs" + } + ], + "label": "Control IDs", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 5170, + "top": 949 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3089ebb6-7505-4113-a3d0-632437d7185f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Second factor name.", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "Second factor name.", + "name": "Factor 02" + } + ], + "label": "Factor 02", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 5470, + "top": 1080 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "b7327437-1d68-4878-a085-de89cdf28647", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "First factor name.", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "First factor name.", + "name": "Factor 01" + } + ], + "label": "Factor 01", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 5470, + "top": 1183 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": false}", + "tool_version": null, + "type": "parameter_input", + "uuid": "d670477b-e0f1-4a11-9bf5-3f44ff1aca5b", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Galaxy compatible CPAT header.", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "Galaxy compatible CPAT header.", + "name": "CPAT header" + } + ], + "label": "CPAT header", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6910, + "top": 193 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "b075a3c9-f558-435d-a9d8-6761c2eb63e8", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Active sites dataset.", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "Active sites dataset.", + "name": "Active sites dataset" + } + ], + "label": "Active sites dataset", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6910, + "top": 316 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "47b83b83-c888-4f4f-b0da-4582cd7ca8df", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Stockholm file.", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "Stockholm file.", + "name": "Pfam-A HMM Stockholm file" + } + ], + "label": "Pfam-A HMM Stockholm file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6910, + "top": 439 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "22ffc661-6bd9-4678-91df-8644f3ea3018", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "HMM library.", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "HMM library.", + "name": "Pfam-A HMM library" + } + ], + "label": "Pfam-A HMM library", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6910, + "top": 563 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "494f5134-2496-481e-910a-8c640726fc07", + "when": null, + "workflow_outputs": [] + } + ], + "license": "CC-BY-SA-4.0", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nRNA-seq data collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference genome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nGenome annotation\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nControl IDs\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nFactor 02\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Parameter\\nFactor 01\"];\n style 5 fill:#ded,stroke:#393,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nCPAT header\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nActive sites dataset\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nPfam-A HMM Stockholm file\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Dataset\\nPfam-A HMM library\"];\n style 9 stroke:#2c3143,stroke-width:4px;\n 10[\"fastp\"];\n 0 -->|output| 10;\n 11[\"Flatten collection\"];\n 0 -->|output| 11;\n 12[\"Search in textfiles\"];\n 2 -->|output| 12;\n 13[\"Search in textfiles\"];\n 2 -->|output| 13;\n 14[\"Convert GTF to BED12\"];\n 2 -->|output| 14;\n 15[\"FastQC\"];\n 11 -->|output| 15;\n 16[\"gffread\"];\n 12 -->|output| 16;\n 1 -->|output| 16;\n e34fd125-e860-48a2-9e58-bed5c3600b8d[\"Output\\nlncRNA sequences\"];\n 16 --> e34fd125-e860-48a2-9e58-bed5c3600b8d;\n style e34fd125-e860-48a2-9e58-bed5c3600b8d stroke:#2c3143,stroke-width:4px;\n 17[\"gffread\"];\n 13 -->|output| 17;\n 1 -->|output| 17;\n 836eeb38-dc67-42df-93fa-2fcd5bbe7a80[\"Output\\nprotein coding sequences\"];\n 17 --> 836eeb38-dc67-42df-93fa-2fcd5bbe7a80;\n style 836eeb38-dc67-42df-93fa-2fcd5bbe7a80 stroke:#2c3143,stroke-width:4px;\n 18[\"MultiQC\"];\n 15 -->|text_file| 18;\n 10 -->|report_json| 18;\n 19[\"Search in textfiles\"];\n 15 -->|text_file| 19;\n 20[\"Concatenate datasets\"];\n 19 -->|output| 20;\n 21[\"Search in textfiles\"];\n 20 -->|out_file1| 21;\n 22[\"Cut\"];\n 21 -->|output| 22;\n 23[\"Text reformatting\"];\n 22 -->|out_file1| 23;\n 24[\"Parse parameter value\"];\n 23 -->|outfile| 24;\n 25[\"RNA STAR\"];\n 2 -->|output| 25;\n 24 -->|integer_param| 25;\n 1 -->|output| 25;\n 10 -->|output_paired_coll| 25;\n 26[\"Concatenate datasets\"];\n 25 -->|splice_junctions| 26;\n 27[\"Text reformatting\"];\n 26 -->|out_file1| 27;\n 28[\"Cut\"];\n 27 -->|outfile| 28;\n 29[\"Sort\"];\n 28 -->|out_file1| 29;\n 30[\"Unique\"];\n 29 -->|out_file1| 30;\n 31[\"RNA STAR\"];\n 2 -->|output| 31;\n 24 -->|integer_param| 31;\n 1 -->|output| 31;\n 10 -->|output_paired_coll| 31;\n 30 -->|outfile| 31;\n 32[\"StringTie\"];\n 2 -->|output| 32;\n 31 -->|mapped_reads| 32;\n 33[\"Junction Annotation\"];\n 31 -->|mapped_reads| 33;\n 14 -->|bed_file| 33;\n 34[\"Junction Saturation\"];\n 31 -->|mapped_reads| 34;\n 14 -->|bed_file| 34;\n 35[\"Gene Body Coverage BAM\"];\n 31 -->|mapped_reads| 35;\n 14 -->|bed_file| 35;\n 36[\"Inner Distance\"];\n 31 -->|mapped_reads| 36;\n 14 -->|bed_file| 36;\n 37[\"Infer Experiment\"];\n 31 -->|mapped_reads| 37;\n 14 -->|bed_file| 37;\n 38[\"Read Distribution\"];\n 31 -->|mapped_reads| 38;\n 14 -->|bed_file| 38;\n 39[\"gffread\"];\n 32 -->|output_gtf| 39;\n 1 -->|output| 39;\n 40[\"StringTie merge\"];\n 2 -->|output| 40;\n 32 -->|output_gtf| 40;\n 41[\"MultiQC\"];\n 31 -->|output_log| 41;\n 37 -->|output| 41;\n 38 -->|output| 41;\n 34 -->|outputr| 41;\n 33 -->|stats| 41;\n 35 -->|outputtxt| 41;\n 36 -->|outputfreqtxt| 41;\n 42[\"rnaQUAST\"];\n 2 -->|output| 42;\n 1 -->|output| 42;\n 39 -->|output_exons| 42;\n 43[\"gffread\"];\n 40 -->|out_gtf| 43;\n 1 -->|output| 43;\n 44[\"StringTie\"];\n 40 -->|out_gtf| 44;\n 31 -->|mapped_reads| 44;\n 45[\"Filter collection\"];\n 3 -->|output| 45;\n 44 -->|transcript_expression| 45;\n 46[\"IsoformSwitchAnalyzeR\"];\n 2 -->|output| 46;\n 24 -->|integer_param| 46;\n 5 -->|output| 46;\n 45 -->|output_filtered| 46;\n 40 -->|out_gtf| 46;\n 4 -->|output| 46;\n 45 -->|output_discarded| 46;\n 43 -->|output_exons| 46;\n 47[\"IsoformSwitchAnalyzeR\"];\n 46 -->|switchList| 47;\n 48[\"CPAT\"];\n 17 -->|output_exons| 48;\n 47 -->|isoformNT| 48;\n 16 -->|output_exons| 48;\n 1 -->|output| 48;\n 49[\"PfamScan\"];\n 7 -->|output| 49;\n 47 -->|isoformAA| 49;\n 8 -->|output| 49;\n 9 -->|output| 49;\n 50[\"Remove beginning\"];\n 48 -->|orf_seqs_prob_best| 50;\n 51[\"Text reformatting\"];\n 50 -->|out_file1| 51;\n 52[\"Concatenate datasets\"];\n 6 -->|output| 52;\n 51 -->|outfile| 52;\n 53[\"IsoformSwitchAnalyzeR\"];\n 52 -->|out_file1| 53;\n 49 -->|output| 53;\n 47 -->|switchList| 53;\n 54[\"IsoformSwitchAnalyzeR\"];\n 52 -->|out_file1| 54;\n 49 -->|output| 54;\n 47 -->|switchList| 54;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "Genome-wide alternative splicing analysis: human", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.3+galaxy0", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 12, + "output_name": "output" + }, + "reference_genome|genome_fasta": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool gffread", + "name": "chr_replace" + } + ], + "label": null, + "name": "gffread", + "outputs": [ + { + "name": "output_exons", + "type": "fasta" + } + ], + "position": { + "left": 2820, + "top": 0 + }, + "post_job_actions": { + "TagDatasetActionoutput_exons": { + "action_arguments": { + "tags": "#lncRNA" + }, + "action_type": "TagDatasetAction", + "output_name": "output_exons" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "154d00cbbf2d", + "name": "gffread", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chr_replace\": {\"__class__\": \"RuntimeValue\"}, \"decode_url\": false, \"expose\": false, \"filtering\": null, \"full_gff_attribute_preservation\": false, \"gffs\": {\"gff_fmt\": \"none\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"maxintron\": null, \"merging\": {\"merge_sel\": \"none\", \"__current_case__\": 0}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 2, \"genome_fasta\": {\"__class__\": \"ConnectedValue\"}, \"ref_filtering\": null, \"fa_outputs\": [\"-w exons.fa\"]}, \"region\": {\"region_filter\": \"none\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.1.3+galaxy0", + "type": "tool", + "uuid": "221894ea-cf04-4328-bf2e-ebdafa717b27", + "when": null, + "workflow_outputs": [ + { + "label": "lncRNA sequences", + "output_name": "output_exons", + "uuid": "e34fd125-e860-48a2-9e58-bed5c3600b8d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.3+galaxy0", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 13, + "output_name": "output" + }, + "reference_genome|genome_fasta": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool gffread", + "name": "chr_replace" + } + ], + "label": null, + "name": "gffread", + "outputs": [ + { + "name": "output_exons", + "type": "fasta" + } + ], + "position": { + "left": 2820, + "top": 256 + }, + "post_job_actions": { + "TagDatasetActionoutput_exons": { + "action_arguments": { + "tags": "#proteon_coding" + }, + "action_type": "TagDatasetAction", + "output_name": "output_exons" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "154d00cbbf2d", + "name": "gffread", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chr_replace\": {\"__class__\": \"RuntimeValue\"}, \"decode_url\": false, \"expose\": false, \"filtering\": null, \"full_gff_attribute_preservation\": false, \"gffs\": {\"gff_fmt\": \"none\", \"__current_case__\": 0}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"maxintron\": null, \"merging\": {\"merge_sel\": \"none\", \"__current_case__\": 0}, \"reference_genome\": {\"source\": \"history\", \"__current_case__\": 2, \"genome_fasta\": {\"__class__\": \"ConnectedValue\"}, \"ref_filtering\": null, \"fa_outputs\": [\"-w exons.fa\"]}, \"region\": {\"region_filter\": \"none\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.2.1.3+galaxy0", + "type": "tool", + "uuid": "aeb74658-0173-4007-a1c3-e07f67c3338a", + "when": null, + "workflow_outputs": [ + { + "label": "protein coding sequences", + "output_name": "output_exons", + "uuid": "836eeb38-dc67-42df-93fa-2fcd5bbe7a80" + } + ] + } + ], + "parent_id": "transcriptomics/differential-isoform-expression", + "path": "topics/transcriptomics/tutorials/differential-isoform-expression/workflows/main_workflow.ga", + "tags": [ + "name:alternative_splicing", + "name:GTN", + "name:transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "Genome-wide alternative splicing analysis: human", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-differential-isoform-expression/versions/main-workflow", + "tutorial_id": "differential-isoform-expression", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/differential-isoform-expression/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/differential-isoform-expression/workflows/main_workflow.html", + "version": 2, + "wfid": "transcriptomics-differential-isoform-expression", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Remove beginning1", + "__FILTER_FROM_FILE__", + "__FLATTEN__", + "param_value_from_file", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/cpat/cpat/3.0.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/pfamscan/pfamscan/1.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/0.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/gffread/gffread/2.2.1.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "toolshed.g2.bx.psu.edu/repos/iuc/isoformswitchanalyzer/isoformswitchanalyzer/1.20.0+galaxy5", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/rnaquast/rna_quast/2.2.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie_merge/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_inner_distance/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_junction_annotation/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_junction_saturation/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy2" + ], + "workflowhub_id": "1324" + } + ], + "zenodo_link": "https://zenodo.org/record/7974884" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastqc", + "owner": "devteam", + "revisions": "9da02be9c6cc", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "b9fbec5ac6b2", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "b502c227b5e6", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_idxstats", + "owner": "devteam", + "revisions": "811fc2d75ad4", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_idxstats", + "owner": "devteam", + "revisions": "7def34e6cf4d", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "featurecounts", + "owner": "iuc", + "revisions": "1759d845181e", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "featurecounts", + "owner": "iuc", + "revisions": "38b6d12edc68", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "61ee47027bd3", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "6c19daec423d", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "9a913cdee30e", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "1c2db0054039", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "b2f1f75d49c4", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "660cffd8d92a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "c5e2e5902201", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "dbedfc5f5a3c", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "dbedfc5f5a3c", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "dbedfc5f5a3c", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastqc\n owner: devteam\n revisions: 9da02be9c6cc\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: b9fbec5ac6b2\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: b502c227b5e6\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_idxstats\n owner: devteam\n revisions: 811fc2d75ad4\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_idxstats\n owner: devteam\n revisions: 7def34e6cf4d\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: featurecounts\n owner: iuc\n revisions: 1759d845181e\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: featurecounts\n owner: iuc\n revisions: 38b6d12edc68\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: 61ee47027bd3\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: 6c19daec423d\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 9a913cdee30e\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 1c2db0054039\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: b2f1f75d49c4\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 660cffd8d92a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: c5e2e5902201\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: dbedfc5f5a3c\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: dbedfc5f5a3c\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: dbedfc5f5a3c\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/tutorial.json", + "contributors": [ + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + }, + { + "id": "bphipson", + "joined": "2018-09", + "name": "Belinda Phipson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bphipson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bphipson.json" + }, + { + "id": "hdashnow", + "joined": "2018-09", + "name": "Harriet Dashnow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hdashnow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hdashnow.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-reads-to-counts", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Sequence alignment", + "Formatting", + "Sequence composition calculation", + "Read summarisation", + "Read pre-processing", + "RNA-Seq quantification", + "Data handling", + "Validation", + "Sequence trimming", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-counts-to-genes" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "transcriptomics/rna-seq-reads-to-counts", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "In RNA-seq, reads (FASTQs) are mapped to a reference genome with a spliced aligner (e.g HISAT2, STAR)", + "The aligned reads (BAMs) can then be converted to counts", + "Many QC steps can be performed to help check the quality of the data", + "MultiQC can be used to create a nice summary report of QC information", + "The Galaxy Rule-based Uploader, Collections and Workflows can help make analysis more efficient and easier" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Learn how RNA-seq reads are converted into counts", + "Understand QC steps that can be performed on RNA-seq reads", + "Generate interactive reports to summarise QC information with MultiQC", + "Use the Galaxy Rule-based Uploader to import FASTQs from URLs", + "Make use of Galaxy Collections for a tidy analysis", + "Create a Galaxy Workflow that converts RNA-seq reads into counts" + ], + "pageviews": 124667, + "pub_date": "2018-09-23", + "questions": [ + "How to convert RNA-seq reads into counts?", + "How to perform quality control (QC) of RNA-seq reads?", + "How to do this analysis efficiently in Galaxy?" + ], + "requirements": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "ref-based" + ], + "type": "internal" + }, + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections", + "upload-rules" + ], + "type": "internal" + } + ], + "short_id": "T00301", + "short_tools": [ + "picard_MarkDuplicates", + "hisat2", + "multiqc", + "rseqc_infer_experiment", + "collection_column_join", + "featurecounts", + "fastqc", + "samtools_idxstats", + "rseqc_geneBody_coverage", + "rseqc_read_distribution", + "cutadapt" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "end-to-end", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "collections", + "mouse", + "QC" + ], + "time_estimation": "3h", + "title": "1: RNA-Seq reads to counts", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.3", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.3", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.6", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/3.7+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/2.6.4.3", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/2.6.4.1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/2.6.4.1" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-reads-to-counts", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-reads-to-counts/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/tutorial.json" + }, + "version": 33, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 149, + "visitors": 65434, + "workflows": [ + { + "creators": [], + "description": "rna-seq-reads-to-counts", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference genes\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nBAM files\"]\n 2[label=\"Infer Experiment\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"MarkDuplicates\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Samtools idxstats\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"MultiQC\"]\n 2 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"metrics_file\"]\n 4 -> 5 [label=\"output\"]\n}", + "history": [ + { + "hash": "e309846054da31a5946eaf34c1bf8b02771b054c", + "message": "Update qc workflow", + "num": 4, + "short_hash": "e30984605", + "unix": "1605438895" + }, + { + "hash": "bf6f08b6a5db96726fa60f5b6cee040a4e40e51d", + "message": "Fix tags attribute", + "num": 3, + "short_hash": "bf6f08b6a", + "unix": "1605332237" + }, + { + "hash": "d42f753afbda69d81cf63335037ef57ffe2487af", + "message": "Fix workflow for failing travis test", + "num": 2, + "short_hash": "d42f753af", + "unix": "1605316521" + }, + { + "hash": "cea2aaab2718b8d92d77b9d0f84bdc8d325a46fc", + "message": "Reconfiguration of some content", + "num": 1, + "short_hash": "cea2aaab2", + "unix": "1605176495" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genes" + } + ], + "label": "Reference genes", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 272.4609375, + "height": 80.95703125, + "left": 658.4765625, + "right": 858.4765625, + "top": 191.50390625, + "width": 200, + "x": 658.4765625, + "y": 191.50390625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "cb0135e4-38e7-4c4d-9ce8-16edc02f6af9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6268565d-6ad3-42ee-b55f-2184412e7468" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "BAM files" + } + ], + "label": "BAM files", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 490.44921875, + "height": 60.95703125, + "left": 658.4765625, + "right": 858.4765625, + "top": 429.4921875, + "width": 200, + "x": 658.4765625, + "y": 429.4921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "034877ee-f1be-43d8-a5cf-b0a973dc50a4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2a973089-9bcd-49e0-8a37-e1ef0bdad4fd" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nReference genes\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nBAM files\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Infer Experiment\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"MarkDuplicates\"];\n 1 -->|output| 3;\n 4[\"Samtools idxstats\"];\n 1 -->|output| 4;\n 5[\"MultiQC\"];\n 2 -->|output| 5;\n 3 -->|metrics_file| 5;\n 4 -->|output| 5;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "QC report", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Reference genes" + } + ], + "label": "Reference genes", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 272.4609375, + "height": 80.95703125, + "left": 658.4765625, + "right": 858.4765625, + "top": 191.50390625, + "width": 200, + "x": 658.4765625, + "y": 191.50390625 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "cb0135e4-38e7-4c4d-9ce8-16edc02f6af9", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6268565d-6ad3-42ee-b55f-2184412e7468" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "BAM files" + } + ], + "label": "BAM files", + "name": "Input dataset collection", + "outputs": [], + "position": { + "bottom": 490.44921875, + "height": 60.95703125, + "left": 658.4765625, + "right": 858.4765625, + "top": 429.4921875, + "width": 200, + "x": 658.4765625, + "y": 429.4921875 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "034877ee-f1be-43d8-a5cf-b0a973dc50a4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2a973089-9bcd-49e0-8a37-e1ef0bdad4fd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 5, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 2, + "output_name": "output" + }, + "results_1|software_cond|output_0|input": { + "id": 3, + "output_name": "metrics_file" + }, + "results_2|software_cond|output_0|type|input": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "plots", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "bottom": 790.44921875, + "height": 391.953125, + "left": 1234.4921875, + "right": 1434.4921875, + "top": 398.49609375, + "width": 200, + "x": 1234.4921875, + "y": 398.49609375 + }, + "post_job_actions": { + "HideDatasetActionplots": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "plots" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "5e33b465d8d5", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"flat\": \"false\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"rseqc\", \"__current_case__\": 21, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"infer_experiment\", \"__current_case__\": 2, \"input\": {\"__class__\": \"RuntimeValue\"}}}]}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"RuntimeValue\"}}]}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"samtools\", \"__current_case__\": 23, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"idxstats\", \"__current_case__\": 2, \"input\": {\"__class__\": \"RuntimeValue\"}}}]}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8+galaxy1", + "type": "tool", + "uuid": "101e4661-c986-4bde-90c1-835d15c35898", + "workflow_outputs": [ + { + "label": null, + "output_name": "stats", + "uuid": "3fcde9be-0512-43a3-ac61-c34102116b38" + }, + { + "label": null, + "output_name": "html_report", + "uuid": "dd4f76fb-bf9c-4825-ba7b-8d6b06a648d9" + } + ] + } + ], + "parent_id": "transcriptomics/rna-seq-reads-to-counts", + "path": "topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/qc_report.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "QC report", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-seq-reads-to-counts/versions/qc-report", + "tutorial_id": "rna-seq-reads-to-counts", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/qc_report.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/qc_report.html", + "version": 2, + "wfid": "transcriptomics-rna-seq-reads-to-counts", + "wfname": "qc-report", + "workflow": "qc_report.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/2.6.4.1" + ], + "workflowhub_id": "1299" + }, + { + "creators": [], + "description": "RNA-Seq reads to counts", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput FASTQs collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput Reference gene BED\"]\n 10[label=\"Infer Experiment\"]\n 5 -> 10 [label=\"output_alignments\"]\n 1 -> 10 [label=\"output\"]\n 11[label=\"Read Distribution\"]\n 5 -> 11 [label=\"output_alignments\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Column Join\"]\n 6 -> 12 [label=\"output_short\"]\n 13[label=\"MultiQC\"]\n 4 -> 13 [label=\"text_file\"]\n 3 -> 13 [label=\"report\"]\n 10 -> 13 [label=\"output\"]\n 7 -> 13 [label=\"metrics_file\"]\n 8 -> 13 [label=\"output\"]\n 9 -> 13 [label=\"outputtxt\"]\n 11 -> 13 [label=\"output\"]\n 6 -> 13 [label=\"output_summary\"]\n 5 -> 13 [label=\"summary_file\"]\n 2[label=\"FastQC raw reads\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Cutadapt\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"FastQC post QC\"]\n 3 -> 4 [label=\"out1\"]\n 5[label=\"HISAT2\"]\n 3 -> 5 [label=\"out1\"]\n 6[label=\"featureCounts\"]\n 5 -> 6 [label=\"output_alignments\"]\n 7[label=\"MarkDuplicates\"]\n 5 -> 7 [label=\"output_alignments\"]\n 8[label=\"Samtools idxstats\"]\n 5 -> 8 [label=\"output_alignments\"]\n 9[label=\"Gene Body Coverage BAM\"]\n 5 -> 9 [label=\"output_alignments\"]\n 1 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "0ea8c79012ba1b18d3f79be0ff2e2b826092f5e2", + "message": "Rename tutorial and image folders to the updated titles", + "num": 1, + "short_hash": "0ea8c7901", + "unix": "1546155649" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Input FASTQs collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 199.9921875, + "top": 199.9921875 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "015f389e-94eb-40f2-82c8-267093ca8c8a", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Input Reference gene BED", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.9921875, + "top": 290.015625 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "dc707df4-3c9d-4d76-98a8-53b60cc2f41d", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput FASTQs collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput Reference gene BED\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Infer Experiment\"];\n 5 -->|output_alignments| 10;\n 1 -->|output| 10;\n 11[\"Read Distribution\"];\n 5 -->|output_alignments| 11;\n 1 -->|output| 11;\n 12[\"Column Join\"];\n 6 -->|output_short| 12;\n 13[\"MultiQC\"];\n 4 -->|text_file| 13;\n 3 -->|report| 13;\n 10 -->|output| 13;\n 7 -->|metrics_file| 13;\n 8 -->|output| 13;\n 9 -->|outputtxt| 13;\n 11 -->|output| 13;\n 6 -->|output_summary| 13;\n 5 -->|summary_file| 13;\n 2[\"FastQC raw reads\"];\n 0 -->|output| 2;\n 3[\"Cutadapt\"];\n 0 -->|output| 3;\n 4[\"FastQC post QC\"];\n 3 -->|out1| 4;\n 5[\"HISAT2\"];\n 3 -->|out1| 5;\n 6[\"featureCounts\"];\n 5 -->|output_alignments| 6;\n 7[\"MarkDuplicates\"];\n 5 -->|output_alignments| 7;\n 8[\"Samtools idxstats\"];\n 5 -->|output_alignments| 8;\n 9[\"Gene Body Coverage BAM\"];\n 5 -->|output_alignments| 9;\n 1 -->|output| 9;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "RNA Seq Reads To Counts", + "outputs": [], + "parent_id": "transcriptomics/rna-seq-reads-to-counts", + "path": "topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/rna-seq-reads-to-counts.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "RNA Seq Reads To Counts", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-seq-reads-to-counts/versions/rna-seq-reads-to-counts", + "tutorial_id": "rna-seq-reads-to-counts", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/rna-seq-reads-to-counts.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-reads-to-counts/workflows/rna-seq-reads-to-counts.html", + "version": 4, + "wfid": "transcriptomics-rna-seq-reads-to-counts", + "wfname": "rna-seq-reads-to-counts", + "workflow": "rna-seq-reads-to-counts.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.3", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.6", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/1.16.3", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/2.6.4.3", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/2.6.4.1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/2.6.4.1" + ], + "workflowhub_id": "1295" + } + ], + "zenodo_link": "https://zenodo.org/record/4249555" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "fastqc", + "owner": "devteam", + "revisions": "f2e8552cf1d0", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "describe_samples", + "owner": "iuc", + "revisions": "0693ccd171c4", + "tool_panel_section_label": "RNA-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "e4574a4d09d8", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "transdecoder", + "owner": "iuc", + "revisions": "0db979fead3a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity", + "owner": "iuc", + "revisions": "c9cfec002f71", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity_abundance_estimates_to_matrix", + "owner": "iuc", + "revisions": "d6a479fd4281", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity_align_and_estimate_abundance", + "owner": "iuc", + "revisions": "478f36effca1", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity_analyze_diff_expr", + "owner": "iuc", + "revisions": "fab23c3b5258", + "tool_panel_section_label": "RNA-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity_contig_exn50_statistic", + "owner": "iuc", + "revisions": "34a018cbee9c", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity_define_clusters_by_cutting_tree", + "owner": "iuc", + "revisions": "33406f5a445c", + "tool_panel_section_label": "RNA-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity_filter_low_expr_transcripts", + "owner": "iuc", + "revisions": "e406ac71165d", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity_run_de_analysis", + "owner": "iuc", + "revisions": "1d689e4e1caf", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinity_samples_qccheck", + "owner": "iuc", + "revisions": "9871104ea630", + "tool_panel_section_label": "RNA-seq", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trinotate", + "owner": "iuc", + "revisions": "6fd16fad465d", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "f8a9a5eaca8a", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: fastqc\n owner: devteam\n revisions: f2e8552cf1d0\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: describe_samples\n owner: iuc\n revisions: '0693ccd171c4'\n tool_panel_section_label: RNA-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: e4574a4d09d8\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: transdecoder\n owner: iuc\n revisions: 0db979fead3a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity\n owner: iuc\n revisions: c9cfec002f71\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity_abundance_estimates_to_matrix\n owner: iuc\n revisions: d6a479fd4281\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity_align_and_estimate_abundance\n owner: iuc\n revisions: 478f36effca1\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity_analyze_diff_expr\n owner: iuc\n revisions: fab23c3b5258\n tool_panel_section_label: RNA-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity_contig_exn50_statistic\n owner: iuc\n revisions: 34a018cbee9c\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity_define_clusters_by_cutting_tree\n owner: iuc\n revisions: 33406f5a445c\n tool_panel_section_label: RNA-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity_filter_low_expr_transcripts\n owner: iuc\n revisions: e406ac71165d\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity_run_de_analysis\n owner: iuc\n revisions: 1d689e4e1caf\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinity_samples_qccheck\n owner: iuc\n revisions: 9871104ea630\n tool_panel_section_label: RNA-seq\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trinotate\n owner: iuc\n revisions: 6fd16fad465d\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: f8a9a5eaca8a\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/full-de-novo/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "id": "lecorguille", + "joined": "2017-09", + "name": "Gildas Le Corguill\u00e9", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lecorguille/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lecorguille.json" + }, + { + "email": "erwan.corre@sb-roscoff.fr", + "id": "r1corre", + "joined": "2019-04", + "name": "Erwan Corre", + "orcid": "0000-0001-6354-2278", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/r1corre/", + "twitter": "r1corre", + "url": "https://training.galaxyproject.org/training-material/api/contributors/r1corre.json" + }, + { + "github": false, + "id": "xiliu", + "joined": "2019-11", + "name": "Xi Liu", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/xiliu/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/xiliu.json" + } + ], + "dir": "topics/transcriptomics/tutorials/full-de-novo", + "draft": true, + "edam_operation": [ + "Sequencing quality control", + "De-novo assembly", + "Sequence composition calculation", + "de Novo sequencing", + "Transcriptome assembly", + "Coding region prediction", + "Validation", + "Gene functional annotation", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/full-de-novo", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The take-home messages", + "They will appear at the end of the tutorial" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "The learning objectives are the goals of the tutorial", + "They will be informed by your audience and will communicate to them and to yourself what you should focus on during the course", + "They are single sentences describing what a learner should be able to do once they have completed the tutorial", + "You can use Bloom's Taxonomy to write effective learning objectives" + ], + "pageviews": 21493, + "pub_date": "2020-02-13", + "questions": [ + "Which biological questions are addressed by the tutorial?", + "Which bioinformatics techniques are important to know for this type of data?" + ], + "short_id": "T00290", + "short_tools": [ + "trinity", + "trinity_analyze_diff_expr", + "multiqc", + "trinity_filter_low_expr_transcripts", + "trinity_align_and_estimate_abundance", + "trinity_contig_exn50_statistic", + "trinity_samples_qccheck", + "trinity_run_de_analysis", + "describe_samples", + "transdecoder", + "fastqc", + "trinity_abundance_estimates_to_matrix", + "trinity_define_clusters_by_cutting_tree", + "trinotate", + "trimmomatic" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "3H", + "title": "De novo transcriptome assembly, annotation, and differential expression analysis", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.69", + "toolshed.g2.bx.psu.edu/repos/iuc/describe_samples/describe_samples/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/transdecoder/transdecoder/3.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity/trinity/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_abundance_estimates_to_matrix/trinity_abundance_estimates_to_matrix/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_align_and_estimate_abundance/trinity_align_and_estimate_abundance/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_analyze_diff_expr/trinity_analyze_diff_expr/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_contig_exn50_statistic/trinity_contig_exn50_statistic/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_define_clusters_by_cutting_tree/trinity_define_clusters_by_cutting_tree/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_filter_low_expr_transcripts/trinity_filter_low_expr_transcripts/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_run_de_analysis/trinity_run_de_analysis/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_samples_qccheck/trinity_samples_qccheck/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinotate/trinotate/3.1.1", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.32.3" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "full-de-novo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/full-de-novo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/full-de-novo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/full-de-novo/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 151, + "visitors": 10954, + "workflows": [ + { + "creators": [], + "description": "roscoff hackathon", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 20[label=\"Trinotate\"]\n 18 -> 20 [label=\"transdecoder_pep\"]\n 21[label=\"Differential expression analysis\"]\n 19 -> 21 [label=\"TPM_no_norm_gene\"]\n 3 -> 21 [label=\"output\"]\n 22[label=\"Extract and cluster differentially expressed transcripts\"]\n 21 -> 22 [label=\"DE_results\"]\n 19 -> 22 [label=\"norm_TMM\"]\n 3 -> 22 [label=\"output\"]\n 23[label=\"Partition genes into expression clusters\"]\n 22 -> 23 [label=\"rdata\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nCollection of R2 reads\"]\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nCollection of R1 reads\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSamples description\"]\n 2[label=\"Describe samples\"]\n 5[label=\"FastQC\"]\n 1 -> 5 [label=\"output\"]\n 4[label=\"FastQC\"]\n 0 -> 4 [label=\"output\"]\n 7[label=\"MultiQC\"]\n 5 -> 7 [label=\"text_file\"]\n 4 -> 7 [label=\"text_file\"]\n 6[label=\"Trimmomatic\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 9[label=\"FastQC\"]\n 6 -> 9 [label=\"fastq_out_r2_paired\"]\n 8[label=\"FastQC\"]\n 6 -> 8 [label=\"fastq_out_r1_paired\"]\n 11[label=\"MultiQC\"]\n 9 -> 11 [label=\"text_file\"]\n 8 -> 11 [label=\"text_file\"]\n 10[label=\"Trinity\"]\n 6 -> 10 [label=\"fastq_out_r2_paired\"]\n 6 -> 10 [label=\"fastq_out_r1_paired\"]\n 13[label=\"Build expression matrix\"]\n 12 -> 13 [label=\"genes_counts_rsem\"]\n 12[label=\"Align reads and estimate abundance\"]\n 10 -> 12 [label=\"assembled_transcripts\"]\n 6 -> 12 [label=\"fastq_out_r2_paired\"]\n 6 -> 12 [label=\"fastq_out_r1_paired\"]\n 15[label=\"Filter low expression transcripts\"]\n 10 -> 15 [label=\"assembled_transcripts\"]\n 13 -> 15 [label=\"TPM_no_norm_gene\"]\n 14[label=\"RNASeq samples quality check\"]\n 13 -> 14 [label=\"trans_counts\"]\n 3 -> 14 [label=\"output\"]\n 17[label=\"Align reads and estimate abundance\"]\n 15 -> 17 [label=\"filtered\"]\n 6 -> 17 [label=\"fastq_out_r1_paired\"]\n 6 -> 17 [label=\"fastq_out_r2_paired\"]\n 16[label=\"Compute contig Ex90N50 statistic and Ex90 transcript count\"]\n 10 -> 16 [label=\"assembled_transcripts\"]\n 13 -> 16 [label=\"trans_counts\"]\n 19[label=\"Build expression matrix\"]\n 17 -> 19 [label=\"genes_counts_rsem\"]\n 18[label=\"TransDecoder\"]\n 15 -> 18 [label=\"filtered\"]\n}", + "history": [ + { + "hash": "5905c7785481befb0b108bb588b4954f7dbceb19", + "message": "add workflow tag", + "num": 2, + "short_hash": "5905c7785", + "unix": "1581608722" + }, + { + "hash": "d97d1544a8356dfcad916bb2aee25bc0182995ae", + "message": "add primitive verson of trinity tutorial", + "num": 1, + "short_hash": "d97d1544a", + "unix": "1556268104" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Collection of R2 reads" + } + ], + "label": "Collection of R2 reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 200, + "top": 524.0000152587891 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Collection of R2 reads\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "748afad7-b65a-40fa-970f-abc69e1ed13c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "47ff4052-b91e-47c6-988a-c9a1fb0a924e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Collection of R1 reads" + } + ], + "label": "Collection of R1 reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 201.466796875, + "top": 323.75001525878906 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Collection of R1 reads\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cd481572-1865-4427-909e-d6c42e924245", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6826fd68-69ac-46a0-9640-2ac177e375ac" + } + ] + }, + { + "annotation": "The list of samples and replicates. Can be created with the 'Describe samples and replicates' tool", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "Samples description", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1773.5333251953125, + "top": 267.68333435058594 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "25fcb4d5-425b-45e9-beb0-5b01692d9ead", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "475d831a-5284-46f2-8cd9-3973bddefb80" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 20[\"Trinotate\"];\n 18 -->|transdecoder_pep| 20;\n 21[\"Differential expression analysis\"];\n 19 -->|TPM_no_norm_gene| 21;\n 3 -->|output| 21;\n 22[\"Extract and cluster differentially expressed transcripts\"];\n 21 -->|DE_results| 22;\n 19 -->|norm_TMM| 22;\n 3 -->|output| 22;\n 23[\"Partition genes into expression clusters\"];\n 22 -->|rdata| 23;\n 1[\"\u2139\ufe0f Input Collection\\nCollection of R2 reads\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 0[\"\u2139\ufe0f Input Collection\\nCollection of R1 reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nSamples description\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 2[\"Describe samples\"];\n 5[\"FastQC\"];\n 1 -->|output| 5;\n 4[\"FastQC\"];\n 0 -->|output| 4;\n 7[\"MultiQC\"];\n 5 -->|text_file| 7;\n 4 -->|text_file| 7;\n 6[\"Trimmomatic\"];\n 0 -->|output| 6;\n 1 -->|output| 6;\n 9[\"FastQC\"];\n 6 -->|fastq_out_r2_paired| 9;\n 8[\"FastQC\"];\n 6 -->|fastq_out_r1_paired| 8;\n 11[\"MultiQC\"];\n 9 -->|text_file| 11;\n 8 -->|text_file| 11;\n 10[\"Trinity\"];\n 6 -->|fastq_out_r2_paired| 10;\n 6 -->|fastq_out_r1_paired| 10;\n 13[\"Build expression matrix\"];\n 12 -->|genes_counts_rsem| 13;\n 12[\"Align reads and estimate abundance\"];\n 10 -->|assembled_transcripts| 12;\n 6 -->|fastq_out_r2_paired| 12;\n 6 -->|fastq_out_r1_paired| 12;\n 15[\"Filter low expression transcripts\"];\n 10 -->|assembled_transcripts| 15;\n 13 -->|TPM_no_norm_gene| 15;\n 14[\"RNASeq samples quality check\"];\n 13 -->|trans_counts| 14;\n 3 -->|output| 14;\n 17[\"Align reads and estimate abundance\"];\n 15 -->|filtered| 17;\n 6 -->|fastq_out_r1_paired| 17;\n 6 -->|fastq_out_r2_paired| 17;\n 16[\"Compute contig Ex90N50 statistic and Ex90 transcript count\"];\n 10 -->|assembled_transcripts| 16;\n 13 -->|trans_counts| 16;\n 19[\"Build expression matrix\"];\n 17 -->|genes_counts_rsem| 19;\n 18[\"TransDecoder\"];\n 15 -->|filtered| 18;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "trinity NG", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity_run_de_analysis/trinity_run_de_analysis/2.8.4", + "errors": null, + "id": 21, + "input_connections": { + "matrix": { + "id": 19, + "output_name": "TPM_no_norm_gene" + }, + "samples": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Differential expression analysis", + "name": "additional_params" + } + ], + "label": null, + "name": "Differential expression analysis", + "outputs": [ + { + "name": "DE_results", + "type": "input" + }, + { + "name": "count_matrices", + "type": "input" + }, + { + "name": "PDF_results", + "type": "input" + } + ], + "position": { + "left": 3320.4000244140625, + "top": 730.5000152587891 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity_run_de_analysis/trinity_run_de_analysis/2.8.4", + "tool_shed_repository": { + "changeset_revision": "1d689e4e1caf", + "name": "trinity_run_de_analysis", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"additional_params\": \"{\\\"contrasts\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"min_cpm\\\": \\\"1\\\", \\\"min_reps\\\": \\\"2\\\", \\\"reference_sample\\\": \\\"\\\"}\", \"__rerun_remap_job_id__\": null, \"method_choice\": \"{\\\"__current_case__\\\": 3, \\\"method\\\": \\\"DESeq2\\\"}\", \"samples\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"matrix\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "2.8.4", + "type": "tool", + "uuid": "c6450301-a317-485b-bd6a-28c377c6f4a9", + "workflow_outputs": [ + { + "label": null, + "output_name": "count_matrices", + "uuid": "d9f00bf9-3659-4e25-b649-fee803200e62" + }, + { + "label": null, + "output_name": "DE_results", + "uuid": "12cd6dda-7085-43dd-a456-2662ac0a0501" + }, + { + "label": null, + "output_name": "PDF_results", + "uuid": "ac466c10-2822-4225-891d-694b13ca3c2f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity_analyze_diff_expr/trinity_analyze_diff_expr/2.8.4", + "errors": null, + "id": 22, + "input_connections": { + "DE_results": { + "id": 21, + "output_name": "DE_results" + }, + "matrix": { + "id": 19, + "output_name": "norm_TMM" + }, + "samples": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Extract and cluster differentially expressed transcripts", + "outputs": [ + { + "name": "extracted_DE_genes", + "type": "input" + }, + { + "name": "summary_files", + "type": "input" + }, + { + "name": "GOseq_enrichment", + "type": "input" + }, + { + "name": "rdata", + "type": "rdata" + } + ], + "position": { + "left": 3710.1333618164062, + "top": 865.0166625976562 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity_analyze_diff_expr/trinity_analyze_diff_expr/2.8.4", + "tool_shed_repository": { + "changeset_revision": "fab23c3b5258", + "name": "trinity_analyze_diff_expr", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"c\": \"\\\"2.0\\\"\", \"additional_params\": \"{\\\"GO_enrichment\\\": {\\\"__current_case__\\\": 0, \\\"examine_GO_enrichment\\\": \\\"no\\\"}, \\\"max_DE_genes_per_comparison\\\": \\\"\\\", \\\"max_genes_clust\\\": \\\"10000\\\", \\\"order_columns_by_samples_file\\\": \\\"false\\\"}\", \"__rerun_remap_job_id__\": null, \"DE_results\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"p\": \"\\\"0.001\\\"\", \"samples\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"matrix\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "2.8.4", + "type": "tool", + "uuid": "32bfe114-211d-485e-a0bc-101f6a10b484", + "workflow_outputs": [ + { + "label": null, + "output_name": "GOseq_enrichment", + "uuid": "3c17d230-42fa-4e3e-a0d1-b21c23adb098" + }, + { + "label": null, + "output_name": "extracted_DE_genes", + "uuid": "b4c22360-5c50-446a-8839-310ca8fac821" + }, + { + "label": null, + "output_name": "summary_files", + "uuid": "6a658837-a982-40fe-baad-78d6649c015b" + }, + { + "label": null, + "output_name": "rdata", + "uuid": "00676330-448c-424d-8dfe-932652cedffe" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Collection of R2 reads" + } + ], + "label": "Collection of R2 reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 200, + "top": 524.0000152587891 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Collection of R2 reads\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "748afad7-b65a-40fa-970f-abc69e1ed13c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "47ff4052-b91e-47c6-988a-c9a1fb0a924e" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Collection of R1 reads" + } + ], + "label": "Collection of R1 reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 201.466796875, + "top": 323.75001525878906 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Collection of R1 reads\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "cd481572-1865-4427-909e-d6c42e924245", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6826fd68-69ac-46a0-9640-2ac177e375ac" + } + ] + }, + { + "annotation": "The list of samples and replicates. Can be created with the 'Describe samples and replicates' tool", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [], + "label": "Samples description", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1773.5333251953125, + "top": 267.68333435058594 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "25fcb4d5-425b-45e9-beb0-5b01692d9ead", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "475d831a-5284-46f2-8cd9-3973bddefb80" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.2.0", + "errors": null, + "id": 7, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 4, + "output_name": "text_file" + }, + "results_0|software_cond|output_1|input": { + "id": 5, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 671.2666015625, + "top": 712.2166748046875 + }, + "post_job_actions": { + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.2.0", + "tool_shed_repository": { + "changeset_revision": "3bad335ccea9", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"saveLog\": \"\\\"false\\\"\", \"results\": \"[{\\\"__index__\\\": 0, \\\"software_cond\\\": {\\\"__current_case__\\\": 6, \\\"output\\\": [{\\\"__index__\\\": 0, \\\"input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"type\\\": \\\"data\\\"}, {\\\"__index__\\\": 1, \\\"input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"type\\\": \\\"data\\\"}], \\\"software\\\": \\\"fastqc\\\"}}]\"}", + "tool_version": "1.2.0", + "type": "tool", + "uuid": "cba84e89-dc3d-4b4d-ad7d-82c323b9b316", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "613f62c1-f0ea-46a7-8e8c-4d01dd104ea8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity/trinity/2.8.4", + "errors": null, + "id": 10, + "input_connections": { + "pool|inputs|left_input": { + "id": 6, + "output_name": "fastq_out_r1_paired" + }, + "pool|inputs|right_input": { + "id": 6, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Trinity", + "name": "additional_params" + } + ], + "label": null, + "name": "Trinity", + "outputs": [ + { + "name": "assembled_transcripts", + "type": "fasta" + }, + { + "name": "gene_to_trans", + "type": "tabular" + } + ], + "position": { + "left": 1244.800048828125, + "top": 598.4166717529297 + }, + "post_job_actions": { + "HideDatasetActiongene_to_trans": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "gene_to_trans" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity/trinity/2.8.4", + "tool_shed_repository": { + "changeset_revision": "c9cfec002f71", + "name": "trinity", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"norm\": \"\\\"true\\\"\", \"additional_params\": \"{\\\"guided\\\": {\\\"__current_case__\\\": 0, \\\"is_guided\\\": \\\"no\\\"}, \\\"long_reads\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"min_contig_length\\\": \\\"200\\\", \\\"min_kmer_cov\\\": \\\"1\\\"}\", \"pool\": \"{\\\"__current_case__\\\": 0, \\\"inputs\\\": {\\\"__current_case__\\\": 1, \\\"jaccard_clip\\\": \\\"false\\\", \\\"left_input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"paired_or_single\\\": \\\"paired\\\", \\\"right_input\\\": {\\\"__class__\\\": \\\"ConnectedValue\\\"}, \\\"strand\\\": {\\\"__current_case__\\\": 0, \\\"is_strand_specific\\\": \\\"false\\\"}}, \\\"pool_mode\\\": \\\"Yes\\\"}\"}", + "tool_version": "2.8.4", + "type": "tool", + "uuid": "7d49c846-74f7-4d8a-a123-8d75de4d1834", + "workflow_outputs": [ + { + "label": null, + "output_name": "assembled_transcripts", + "uuid": "1785ff08-9fe9-4a3e-b8fa-c7336bd88f39" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity_abundance_estimates_to_matrix/trinity_abundance_estimates_to_matrix/2.8.4", + "errors": null, + "id": 13, + "input_connections": { + "samples": { + "id": 12, + "output_name": "genes_counts_rsem" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Build expression matrix", + "name": "gene_trans_map" + } + ], + "label": null, + "name": "Build expression matrix", + "outputs": [ + { + "name": "trans_counts", + "type": "tabular" + }, + { + "name": "TPM_no_norm", + "type": "tabular" + }, + { + "name": "trans_counts_gene", + "type": "tabular" + }, + { + "name": "TPM_no_norm_gene", + "type": "tabular" + }, + { + "name": "norm_TMM", + "type": "tabular" + }, + { + "name": "norm_UQ", + "type": "tabular" + }, + { + "name": "norm_TMM_gene", + "type": "tabular" + }, + { + "name": "norm_UQ_gene", + "type": "tabular" + } + ], + "position": { + "left": 2015.3333740234375, + "top": 548.5666809082031 + }, + "post_job_actions": { + "HideDatasetActionTPM_no_norm_gene": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "TPM_no_norm_gene" + }, + "HideDatasetActionnorm_TMM": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "norm_TMM" + }, + "HideDatasetActionnorm_TMM_gene": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "norm_TMM_gene" + }, + "HideDatasetActionnorm_UQ": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "norm_UQ" + }, + "HideDatasetActionnorm_UQ_gene": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "norm_UQ_gene" + }, + "HideDatasetActiontrans_counts_gene": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "trans_counts_gene" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity_abundance_estimates_to_matrix/trinity_abundance_estimates_to_matrix/2.8.4", + "tool_shed_repository": { + "changeset_revision": "d6a479fd4281", + "name": "trinity_abundance_estimates_to_matrix", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"additional_params\": \"{\\\"cross_sample_norm\\\": \\\"TMM\\\"}\", \"__rerun_remap_job_id__\": null, \"est_method\": \"\\\"salmon\\\"\", \"samples\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"gene_trans_map\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "2.8.4", + "type": "tool", + "uuid": "3f354d52-46f6-4a52-92c9-f704b6db5c90", + "workflow_outputs": [ + { + "label": null, + "output_name": "trans_counts", + "uuid": "02047288-bdb3-4e62-ab01-cd5e93b5fa24" + }, + { + "label": null, + "output_name": "TPM_no_norm", + "uuid": "5de379b0-9aec-47dd-b7d0-b02f217acdd0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity_samples_qccheck/trinity_samples_qccheck/2.8.4", + "errors": null, + "id": 14, + "input_connections": { + "matrix": { + "id": 13, + "output_name": "trans_counts" + }, + "samples": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "RNASeq samples quality check", + "outputs": [ + { + "name": "reports", + "type": "input" + } + ], + "position": { + "left": 2371.800018310547, + "top": 291.75001525878906 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/trinity_samples_qccheck/trinity_samples_qccheck/2.8.4", + "tool_shed_repository": { + "changeset_revision": "9871104ea630", + "name": "trinity_samples_qccheck", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"matrix\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\", \"samples\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "2.8.4", + "type": "tool", + "uuid": "2fb98d37-411b-40d0-90cb-c65f04e4be2e", + "workflow_outputs": [ + { + "label": null, + "output_name": "reports", + "uuid": "180bbfec-85d4-4283-87ae-834184e2e25b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/transdecoder/transdecoder/3.0.1", + "errors": null, + "id": 18, + "input_connections": { + "input": { + "id": 15, + "output_name": "filtered" + } + }, + "inputs": [], + "label": null, + "name": "TransDecoder", + "outputs": [ + { + "name": "transdecoder_pep", + "type": "fasta" + }, + { + "name": "transdecoder_cds", + "type": "fasta" + }, + { + "name": "transdecoder_bed", + "type": "bed" + }, + { + "name": "transdecoder_gff3", + "type": "gff3" + } + ], + "position": { + "left": 2798.6666870117188, + "top": 1170.11669921875 + }, + "post_job_actions": { + "HideDatasetActiontransdecoder_bed": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "transdecoder_bed" + }, + "HideDatasetActiontransdecoder_cds": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "transdecoder_cds" + }, + "HideDatasetActiontransdecoder_gff3": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "transdecoder_gff3" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/transdecoder/transdecoder/3.0.1", + "tool_shed_repository": { + "changeset_revision": "0db979fead3a", + "name": "transdecoder", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"gen_code\\\": \\\"universal\\\", \\\"partials\\\": \\\"\\\", \\\"retain_long_orfs\\\": \\\"900\\\", \\\"single_best_orf\\\": \\\"false\\\", \\\"stranded\\\": \\\"false\\\"}\", \"__page__\": null, \"min_len\": \"\\\"100\\\"\", \"__rerun_remap_job_id__\": null, \"training_sect\": \"{\\\"training\\\": {\\\"__current_case__\\\": 0, \\\"top_longest\\\": \\\"500\\\", \\\"training_selector\\\": \\\"training_top\\\"}}\", \"input\": \"{\\\"__class__\\\": \\\"ConnectedValue\\\"}\"}", + "tool_version": "3.0.1", + "type": "tool", + "uuid": "b5eb632b-029f-4492-805f-679e72396a94", + "workflow_outputs": [ + { + "label": null, + "output_name": "transdecoder_pep", + "uuid": "4dca15b9-9824-4311-b755-8f03f2c007b2" + } + ] + } + ], + "parent_id": "transcriptomics/full-de-novo", + "path": "topics/transcriptomics/tutorials/full-de-novo/workflows/main_workflow.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "trinity NG", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-full-de-novo/versions/main-workflow", + "tutorial_id": "full-de-novo", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/full-de-novo/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/full-de-novo/workflows/main_workflow.html", + "version": 1, + "wfid": "transcriptomics-full-de-novo", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.69", + "toolshed.g2.bx.psu.edu/repos/iuc/describe_samples/describe_samples/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/transdecoder/transdecoder/3.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity/trinity/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_abundance_estimates_to_matrix/trinity_abundance_estimates_to_matrix/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_align_and_estimate_abundance/trinity_align_and_estimate_abundance/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_analyze_diff_expr/trinity_analyze_diff_expr/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_contig_exn50_statistic/trinity_contig_exn50_statistic/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_define_clusters_by_cutting_tree/trinity_define_clusters_by_cutting_tree/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_filter_low_expr_transcripts/trinity_filter_low_expr_transcripts/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_run_de_analysis/trinity_run_de_analysis/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinity_samples_qccheck/trinity_samples_qccheck/2.8.4", + "toolshed.g2.bx.psu.edu/repos/iuc/trinotate/trinotate/3.1.1", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.32.3" + ], + "workflowhub_id": "1306" + } + ], + "zenodo_link": "https://zenodo.org/record/3541678" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "salmon", + "owner": "bgruening", + "revisions": "e3d32471da11", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trim_galore", + "owner": "bgruening", + "revisions": "949f01671246", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "filter_by_fasta_ids", + "owner": "galaxyp", + "revisions": "3c623e81be77", + "tool_panel_section_label": "Proteomics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deseq2", + "owner": "iuc", + "revisions": "6a3a025714d3", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "b2f1f75d49c4", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "5e33b465d8d5", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sample_seqs", + "owner": "peterjc", + "revisions": "7c40a1fbc82e", + "tool_panel_section_label": "Filter and Sort", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mirdeep2_mapper", + "owner": "rnateam", + "revisions": "a8d24f4b6d95", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mirdeep2_quantifier", + "owner": "rnateam", + "revisions": "d5ea61ff12eb", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "targetfinder", + "owner": "rnateam", + "revisions": "c9d56748fbde", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: salmon\n owner: bgruening\n revisions: e3d32471da11\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trim_galore\n owner: bgruening\n revisions: 949f01671246\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: filter_by_fasta_ids\n owner: galaxyp\n revisions: 3c623e81be77\n tool_panel_section_label: Proteomics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deseq2\n owner: iuc\n revisions: 6a3a025714d3\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: b2f1f75d49c4\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: 5e33b465d8d5\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sample_seqs\n owner: peterjc\n revisions: 7c40a1fbc82e\n tool_panel_section_label: Filter and Sort\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mirdeep2_mapper\n owner: rnateam\n revisions: a8d24f4b6d95\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mirdeep2_quantifier\n owner: rnateam\n revisions: d5ea61ff12eb\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: targetfinder\n owner: rnateam\n revisions: c9d56748fbde\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/mirna-target-finder/tutorial.json", + "contributors": [ + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "email": "beatrizserrano.galaxy@gmail.com", + "id": "beatrizserrano", + "joined": "2020-07", + "linkedin": "beatriz-serrano", + "matrix": "beatrizserrano:matrix.org", + "name": "Beatriz Serrano-Solano", + "orcid": "0000-0002-5862-6132", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/beatrizserrano/", + "twitter": "BSerranoSolano", + "url": "https://training.galaxyproject.org/training-material/api/contributors/beatrizserrano.json" + } + ], + "dir": "topics/transcriptomics/tutorials/mirna-target-finder", + "edam_operation": [ + "Sequencing quality control", + "Primer removal", + "Sequence composition calculation", + "Read pre-processing", + "RNA-Seq quantification", + "Gene expression analysis", + "Validation", + "Sequence trimming", + "Differential gene expression analysis", + "RNA-Seq analysis", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/mirna-target-finder", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "MiRDeep2 in combination with the PmiREN database allows to quantify miRNA expression in plants", + "The use of the Salmon tool and the AtRTD2 transcriptome allows rapid and accurate quantification of transcripts in _Arabidopsis_", + "The combination of differential expression analysis and the TargetFinder tool is an effective strategy for the identification of miRNA target genes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-08-09", + "objectives": [ + "Perform miRNA differential expression analysis", + "Understand the quasi-mapping-based Salmon method for quantifying the expression of transcripts using RNA-Seq data", + "Idenfity potential miRNAs involved in brassinosteroid-mediated regulation networks" + ], + "pageviews": 5219864, + "pub_date": "2021-04-08", + "questions": [ + "Which miRNAs are upregulated in response to brassinosteroids?", + "Which genes are potential target of brassinosteroid-induced miRNAs?" + ], + "recordings": [ + { + "captioners": [ + "gallardoalba" + ], + "date": "2021-07-25", + "galaxy_version": "21.05", + "length": "1H10M", + "speakers": [ + "gallardoalba" + ], + "youtube_id": "wS1X_0Mgw7M" + } + ], + "short_id": "T00292", + "short_tools": [ + "cat1", + "multiqc", + "filter_by_fasta_ids", + "targetfinder", + "sort1", + "sample_seqs", + "Cut1", + "fastqc", + "salmon", + "Filter1", + "deseq2", + "rbc_mirdeep2_mapper", + "rbc_mirdeep2_quantifier", + "__MERGE_COLLECTION__", + "trim_galore" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "gallardoalba" + ], + "date": "2021-04-20", + "galaxy_version": "21.01", + "length": "10M", + "speakers": [ + "awspolly" + ], + "youtube_id": "FNmZoo2OXTU" + }, + { + "captioners": [ + "gallardoalba" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "10M", + "speakers": [ + "awspolly" + ], + "youtube_id": "7t0Gr1Jklqs" + } + ], + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "miRNA", + "plants", + "stress tolerance" + ], + "time_estimation": "2H", + "title": "Whole transcriptome analysis of Arabidopsis thaliana", + "tools": [ + "Cut1", + "Filter1", + "__MERGE_COLLECTION__", + "cat1", + "sort1", + "toolshed.g2.bx.psu.edu/repos/bgruening/salmon/salmon/0.14.1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/peterjc/sample_seqs/sample_seqs/0.2.5", + "toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_mapper/rbc_mirdeep2_mapper/2.0.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_quantifier/rbc_mirdeep2_quantifier/2.0.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/targetfinder/targetfinder/1.7.0+galaxy1" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "mirna-target-finder", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/mirna-target-finder/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/mirna-target-finder/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/mirna-target-finder/tutorial.json" + }, + "version": 17, + "video": true, + "video_versions": 1, + "video_view": 0, + "visit_duration": 314, + "visitors": 1919285, + "workflows": [ + { + "creators": [], + "description": "Identify upregulated miRNAS and analyze potential targets in downregulated genes.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nControl miRNA FASTQ collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nTreated miRNA FASTQ collection\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nTreated mRNA FASTQ collection\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPrecursor miRNA sequences\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nControl mRNA FASTQ collection\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTranscriptome FASTA\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nAnnotation GTF\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMature miRNA sequences\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nStar miRNA sequenes\"]\n 9[label=\"FastQC\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Trim Galore!\"]\n 0 -> 10 [label=\"output\"]\n 11[label=\"FastQC\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"Trim Galore!\"]\n 1 -> 12 [label=\"output\"]\n 13[label=\"FastQC\"]\n 2 -> 13 [label=\"output\"]\n 14[label=\"FastQC\"]\n 4 -> 14 [label=\"output\"]\n 15[label=\"Salmon quant\"]\n 6 -> 15 [label=\"output\"]\n 2 -> 15 [label=\"output\"]\n 5 -> 15 [label=\"output\"]\n 16[label=\"Salmon quant\"]\n 6 -> 16 [label=\"output\"]\n 4 -> 16 [label=\"output\"]\n 5 -> 16 [label=\"output\"]\n 17[label=\"FastQC\"]\n 10 -> 17 [label=\"trimmed_reads_single\"]\n 18[label=\"MiRDeep2 Mapper\"]\n 10 -> 18 [label=\"trimmed_reads_single\"]\n 19[label=\"Merge collections\"]\n 11 -> 19 [label=\"text_file\"]\n 9 -> 19 [label=\"text_file\"]\n 20[label=\"FastQC\"]\n 12 -> 20 [label=\"trimmed_reads_single\"]\n 21[label=\"MiRDeep2 Mapper\"]\n 12 -> 21 [label=\"trimmed_reads_single\"]\n 22[label=\"Merge collections\"]\n 13 -> 22 [label=\"text_file\"]\n 14 -> 22 [label=\"text_file\"]\n 23[label=\"DESeq2\"]\n 15 -> 23 [label=\"output_gene_quant\"]\n 16 -> 23 [label=\"output_gene_quant\"]\n 6 -> 23 [label=\"output\"]\n 24[label=\"MiRDeep2 Quantifier\"]\n 7 -> 24 [label=\"output\"]\n 3 -> 24 [label=\"output\"]\n 18 -> 24 [label=\"output_reads_collapsed\"]\n 8 -> 24 [label=\"output\"]\n 25[label=\"MultiQC\"]\n 19 -> 25 [label=\"output\"]\n 26[label=\"Merge collections\"]\n 20 -> 26 [label=\"text_file\"]\n 17 -> 26 [label=\"text_file\"]\n 27[label=\"MiRDeep2 Quantifier\"]\n 7 -> 27 [label=\"output\"]\n 3 -> 27 [label=\"output\"]\n 21 -> 27 [label=\"output_reads_collapsed\"]\n 8 -> 27 [label=\"output\"]\n 28[label=\"MultiQC\"]\n 22 -> 28 [label=\"output\"]\n 29[label=\"Filter\"]\n 23 -> 29 [label=\"deseq_out\"]\n 30[label=\"Cut\"]\n 24 -> 30 [label=\"miRNAsExpressed\"]\n 31[label=\"MultiQC\"]\n 26 -> 31 [label=\"output\"]\n 32[label=\"Cut\"]\n 27 -> 32 [label=\"miRNAsExpressed\"]\n 33[label=\"Filter\"]\n 29 -> 33 [label=\"out_file1\"]\n 34[label=\"Filter\"]\n 29 -> 34 [label=\"out_file1\"]\n 35[label=\"DESeq2\"]\n 32 -> 35 [label=\"out_file1\"]\n 30 -> 35 [label=\"out_file1\"]\n 36[label=\"Cut\"]\n 34 -> 36 [label=\"out_file1\"]\n 37[label=\"Filter\"]\n 35 -> 37 [label=\"deseq_out\"]\n 38[label=\"Filter FASTA\"]\n 36 -> 38 [label=\"out_file1\"]\n 5 -> 38 [label=\"output\"]\n 39[label=\"Filter\"]\n 37 -> 39 [label=\"out_file1\"]\n 40[label=\"Filter\"]\n 37 -> 40 [label=\"out_file1\"]\n 41[label=\"Cut\"]\n 40 -> 41 [label=\"out_file1\"]\n 42[label=\"Filter FASTA\"]\n 41 -> 42 [label=\"out_file1\"]\n 8 -> 42 [label=\"output\"]\n 43[label=\"Filter FASTA\"]\n 41 -> 43 [label=\"out_file1\"]\n 7 -> 43 [label=\"output\"]\n 44[label=\"Concatenate datasets\"]\n 43 -> 44 [label=\"output\"]\n 42 -> 44 [label=\"output\"]\n 45[label=\"TargetFinder\"]\n 38 -> 45 [label=\"output\"]\n 44 -> 45 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "87d458cc1fd8db170670ddd5c186c98295267d9e", + "message": "Undo error", + "num": 7, + "short_hash": "87d458cc1", + "unix": "1674149735" + }, + { + "hash": "edf36428b978d5519a494eaee576a8a17c6c948e", + "message": "Fix tutorial", + "num": 6, + "short_hash": "edf36428b", + "unix": "1669862549" + }, + { + "hash": "a6636e32469b78edc30efcc646f92e77c4bdb58b", + "message": "add tags and annotation to the workflow", + "num": 5, + "short_hash": "a6636e324", + "unix": "1617760834" + }, + { + "hash": "a5a1a7567b95fa539b493a98f5924d2482e16997", + "message": "Update workflow for miRNA target identification in Arabidopsis", + "num": 4, + "short_hash": "a5a1a7567", + "unix": "1617760351" + }, + { + "hash": "0eacaeef42cdfef3d6f60d4ec481a3ef84b72765", + "message": "Update workflow and include downregulated miRNAS", + "num": 3, + "short_hash": "0eacaeef4", + "unix": "1617194856" + }, + { + "hash": "bdbe72dd283efbb454cf60a91384a9d130f8b342", + "message": "Fix tests workflow", + "num": 2, + "short_hash": "bdbe72dd2", + "unix": "1616702513" + }, + { + "hash": "4b406638ca884e2ad7b58db02d9c4cc7eff0005d", + "message": "New training: miRNA target finder", + "num": 1, + "short_hash": "4b406638c", + "unix": "1616700503" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Control miRNA FASTQ collection" + } + ], + "label": "Control miRNA FASTQ collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 1.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "286f34e3-d05b-40ba-b39e-2f0c7455ff23", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Treated miRNA FASTQ collection" + } + ], + "label": "Treated miRNA FASTQ collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 331.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "6ffd974f-fd40-4234-9bda-6edd9e65e702", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Treated mRNA FASTQ collection" + } + ], + "label": "Treated mRNA FASTQ collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 1161.984375, + "top": 778.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "e2260dff-96ce-4345-902a-73958f9ac0cf", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Precursor miRNA sequences" + } + ], + "label": "Precursor miRNA sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 575.984375, + "top": 1461.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7e8825d5-8e7f-4ec4-b0b4-f0efcc70e504", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Control mRNA FASTQ collection" + } + ], + "label": "Control mRNA FASTQ collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 1161.984375, + "top": 1101.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "5f622114-e64d-4a96-9866-e519b583cd98", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Transcriptome FASTA" + } + ], + "label": "Transcriptome FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1161.984375, + "top": 1220.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5bbd4e69-3b60-47e1-aecf-5d43ae6b54e5", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Annotation GTF" + } + ], + "label": "Annotation GTF", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1161.984375, + "top": 1340 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "570e8113-930a-4567-a380-fdb93fbcc60f", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mature miRNA sequences" + } + ], + "label": "Mature miRNA sequences", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 575.984375, + "top": 1770.984375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5d65f949-64bf-4f17-b242-f94d342b14a8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Star miRNA sequenes" + } + ], + "label": "Star miRNA sequenes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 575.984375, + "top": 1890 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d11848be-2417-4393-b87f-5e4d9500b4ed", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nControl miRNA FASTQ collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nTreated miRNA FASTQ collection\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nTreated mRNA FASTQ collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nPrecursor miRNA sequences\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Collection\\nControl mRNA FASTQ collection\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nTranscriptome FASTA\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nAnnotation GTF\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nMature miRNA sequences\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nStar miRNA sequenes\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"FastQC\"];\n 0 -->|output| 9;\n 10[\"Trim Galore!\"];\n 0 -->|output| 10;\n 11[\"FastQC\"];\n 1 -->|output| 11;\n 12[\"Trim Galore!\"];\n 1 -->|output| 12;\n 13[\"FastQC\"];\n 2 -->|output| 13;\n 14[\"FastQC\"];\n 4 -->|output| 14;\n 15[\"Salmon quant\"];\n 6 -->|output| 15;\n 2 -->|output| 15;\n 5 -->|output| 15;\n 16[\"Salmon quant\"];\n 6 -->|output| 16;\n 4 -->|output| 16;\n 5 -->|output| 16;\n 17[\"FastQC\"];\n 10 -->|trimmed_reads_single| 17;\n 18[\"MiRDeep2 Mapper\"];\n 10 -->|trimmed_reads_single| 18;\n 19[\"Merge collections\"];\n 11 -->|text_file| 19;\n 9 -->|text_file| 19;\n 20[\"FastQC\"];\n 12 -->|trimmed_reads_single| 20;\n 21[\"MiRDeep2 Mapper\"];\n 12 -->|trimmed_reads_single| 21;\n 22[\"Merge collections\"];\n 13 -->|text_file| 22;\n 14 -->|text_file| 22;\n 23[\"DESeq2\"];\n 15 -->|output_gene_quant| 23;\n 16 -->|output_gene_quant| 23;\n 6 -->|output| 23;\n 24[\"MiRDeep2 Quantifier\"];\n 7 -->|output| 24;\n 3 -->|output| 24;\n 18 -->|output_reads_collapsed| 24;\n 8 -->|output| 24;\n 25[\"MultiQC\"];\n 19 -->|output| 25;\n 26[\"Merge collections\"];\n 20 -->|text_file| 26;\n 17 -->|text_file| 26;\n 27[\"MiRDeep2 Quantifier\"];\n 7 -->|output| 27;\n 3 -->|output| 27;\n 21 -->|output_reads_collapsed| 27;\n 8 -->|output| 27;\n 28[\"MultiQC\"];\n 22 -->|output| 28;\n 29[\"Filter\"];\n 23 -->|deseq_out| 29;\n 30[\"Cut\"];\n 24 -->|miRNAsExpressed| 30;\n 31[\"MultiQC\"];\n 26 -->|output| 31;\n 32[\"Cut\"];\n 27 -->|miRNAsExpressed| 32;\n 33[\"Filter\"];\n 29 -->|out_file1| 33;\n 34[\"Filter\"];\n 29 -->|out_file1| 34;\n 35[\"DESeq2\"];\n 32 -->|out_file1| 35;\n 30 -->|out_file1| 35;\n 36[\"Cut\"];\n 34 -->|out_file1| 36;\n 37[\"Filter\"];\n 35 -->|deseq_out| 37;\n 38[\"Filter FASTA\"];\n 36 -->|out_file1| 38;\n 5 -->|output| 38;\n 39[\"Filter\"];\n 37 -->|out_file1| 39;\n 40[\"Filter\"];\n 37 -->|out_file1| 40;\n 41[\"Cut\"];\n 40 -->|out_file1| 41;\n 42[\"Filter FASTA\"];\n 41 -->|out_file1| 42;\n 8 -->|output| 42;\n 43[\"Filter FASTA\"];\n 41 -->|out_file1| 43;\n 7 -->|output| 43;\n 44[\"Concatenate datasets\"];\n 43 -->|output| 44;\n 42 -->|output| 44;\n 45[\"TargetFinder\"];\n 38 -->|output| 45;\n 44 -->|out_file1| 45;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Plant bulk RNA-Seq workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "errors": null, + "id": 23, + "input_connections": { + "select_data|rep_factorName_0|rep_factorLevel_0|countsFile": { + "id": 15, + "output_name": "output_gene_quant" + }, + "select_data|rep_factorName_0|rep_factorLevel_1|countsFile": { + "id": 16, + "output_name": "output_gene_quant" + }, + "tximport|mapping_format|gtf_file": { + "id": 6, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool DESeq2", + "name": "batch_factors" + } + ], + "label": null, + "name": "DESeq2", + "outputs": [ + { + "name": "deseq_out", + "type": "tabular" + }, + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "left": 1737.984375, + "top": 1170.984375 + }, + "post_job_actions": { + "RenameDatasetActiondeseq_out": { + "action_arguments": { + "newname": "DESeq2 results mRNA" + }, + "action_type": "RenameDatasetAction", + "output_name": "deseq_out" + }, + "RenameDatasetActionplots": { + "action_arguments": { + "newname": "DESeq2 plots mRNA" + }, + "action_type": "RenameDatasetAction", + "output_name": "plots" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6a3a025714d3", + "name": "deseq2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"auto_mean_filter_off\": \"false\", \"batch_factors\": {\"__class__\": \"RuntimeValue\"}, \"esf\": \"\", \"fit_type\": \"1\", \"header\": \"true\", \"many_contrasts\": \"false\", \"normCounts\": \"false\", \"normRLog\": \"false\", \"normVST\": \"false\", \"outlier_filter_off\": \"false\", \"outlier_replace_off\": \"false\", \"pdf\": \"true\", \"select_data\": {\"how\": \"datasets_per_level\", \"__current_case__\": 1, \"rep_factorName\": [{\"__index__\": 0, \"factorName\": \"effects_brassinolide\", \"rep_factorLevel\": [{\"__index__\": 0, \"factorLevel\": \"brassinolide\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"factorLevel\": \"control\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}]}]}, \"tximport\": {\"tximport_selector\": \"tximport\", \"__current_case__\": 0, \"txtype\": \"salmon\", \"mapping_format\": {\"mapping_format_selector\": \"gtf\", \"__current_case__\": 0, \"gtf_file\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.11.40.6+galaxy1", + "type": "tool", + "uuid": "db23fb5b-af4b-4fe1-8f8d-99a3176808e7", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "6c720aa2-a057-45c4-a813-3065d95c6c7f" + }, + { + "label": null, + "output_name": "deseq_out", + "uuid": "77e6746d-7bf9-400f-ac1e-106db58fbbbd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 25, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 19, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 883.984375, + "top": 342.984375 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC unprocessed miRNA: Webpage" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MultiQC unprocessed miRNA: Stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": \"false\", \"title\": \"miRNA initial quality check\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7", + "type": "tool", + "uuid": "3e845cfd-ddd1-4f60-b1cb-ac16dc2c6d10", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "7cd34a0f-1142-4965-afa2-5f77e9c79b9e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 28, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 22, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 2035.984375, + "top": 1455 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC mRNA: Webpage" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MultiQC mRNA: Stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"RuntimeValue\"}}]}}], \"saveLog\": \"false\", \"title\": \"mRNA initial quality check\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7", + "type": "tool", + "uuid": "b7ffd734-4c99-4132-814f-47b75b4b5d63", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "7d5b5d84-d0b0-4639-9b42-61bf9f7e014d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "errors": null, + "id": 31, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 26, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1161.984375, + "top": 558.984375 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC processed miRNA: Webpage" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + }, + "RenameDatasetActionstats": { + "action_arguments": { + "newname": "MultiQC processed miRNA: Stats" + }, + "action_type": "RenameDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "tool_shed_repository": { + "changeset_revision": "b2f1f75d49c4", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": \"false\", \"title\": \"miRNA trimmed quality check\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7", + "type": "tool", + "uuid": "b8e44272-be04-47ad-8b06-aa0f7d51a38c", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_report", + "uuid": "45f7bd2f-aafe-471c-b41e-431cbbe28781" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "errors": null, + "id": 35, + "input_connections": { + "select_data|rep_factorName_0|rep_factorLevel_0|countsFile": { + "id": 32, + "output_name": "out_file1" + }, + "select_data|rep_factorName_0|rep_factorLevel_1|countsFile": { + "id": 30, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool DESeq2", + "name": "batch_factors" + } + ], + "label": null, + "name": "DESeq2", + "outputs": [ + { + "name": "deseq_out", + "type": "tabular" + }, + { + "name": "plots", + "type": "pdf" + } + ], + "position": { + "left": 1460, + "top": 1445.984375 + }, + "post_job_actions": { + "RenameDatasetActiondeseq_out": { + "action_arguments": { + "newname": "DESeq2 results miRNA" + }, + "action_type": "RenameDatasetAction", + "output_name": "deseq_out" + }, + "RenameDatasetActionplots": { + "action_arguments": { + "newname": "DESeq2 plots miRNA" + }, + "action_type": "RenameDatasetAction", + "output_name": "plots" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6a3a025714d3", + "name": "deseq2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"auto_mean_filter_off\": \"false\", \"batch_factors\": {\"__class__\": \"RuntimeValue\"}, \"esf\": \"\", \"fit_type\": \"1\", \"header\": \"false\", \"many_contrasts\": \"false\", \"normCounts\": \"false\", \"normRLog\": \"false\", \"normVST\": \"false\", \"outlier_filter_off\": \"false\", \"outlier_replace_off\": \"false\", \"pdf\": \"true\", \"select_data\": {\"how\": \"datasets_per_level\", \"__current_case__\": 1, \"rep_factorName\": [{\"__index__\": 0, \"factorName\": \"effects_brassinolide\", \"rep_factorLevel\": [{\"__index__\": 0, \"factorLevel\": \"brassinolide\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"factorLevel\": \"control\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}]}]}, \"tximport\": {\"tximport_selector\": \"count\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.11.40.6+galaxy1", + "type": "tool", + "uuid": "15632b70-0358-4ca6-918f-f236468dd8d5", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "b4252bda-8ee4-47f5-85e0-ccacb840c702" + }, + { + "label": null, + "output_name": "deseq_out", + "uuid": "55ea0b93-52e0-4d07-a64f-4db6e39f42ab" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.1", + "errors": null, + "id": 38, + "input_connections": { + "header_criteria|identifiers": { + "id": 36, + "output_name": "out_file1" + }, + "input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Filter FASTA", + "outputs": [ + { + "name": "output", + "type": "fasta" + } + ], + "position": { + "left": 2880, + "top": 1662.984375 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Downregulated mRNA sequences" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.1", + "tool_shed_repository": { + "changeset_revision": "3c623e81be77", + "name": "filter_by_fasta_ids", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"dedup\": \"false\", \"header_criteria\": {\"header_criteria_select\": \"id_list\", \"__current_case__\": 1, \"identifiers\": {\"__class__\": \"ConnectedValue\"}, \"id_regex\": {\"find\": \"pattern\", \"__current_case__\": 1, \"pattern\": \"GENE=(AT.{7})\"}}, \"input\": {\"__class__\": \"ConnectedValue\"}, \"output_discarded\": \"false\", \"sequence_criteria\": {\"sequence_criteria_select\": \"\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1", + "type": "tool", + "uuid": "4d1f1434-2cd7-4025-aa31-955646f26ae0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e8c830ca-388d-43e9-a30a-6ce4e1db2103" + } + ] + }, + { + "annotation": "", + "content_id": "cat1", + "errors": null, + "id": 44, + "input_connections": { + "input1": { + "id": 43, + "output_name": "output" + }, + "queries_0|input2": { + "id": 42, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2880, + "top": 1882.984375 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Upregulated miRNA sequences" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "cat1", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [{\"__index__\": 0, \"input2\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "97871054-6cba-4834-bc56-26a7f37be2b8", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "800ea133-2a03-469d-875e-24b0635c3cd2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/targetfinder/targetfinder/1.7.0+galaxy1", + "errors": null, + "id": 45, + "input_connections": { + "d": { + "id": 38, + "output_name": "output" + }, + "f": { + "id": 44, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "TargetFinder", + "outputs": [ + { + "name": "output_file", + "type": "txt" + } + ], + "position": { + "left": 3157.984375, + "top": 1712.984375 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/targetfinder/targetfinder/1.7.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "c9d56748fbde", + "name": "targetfinder", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"c\": \"4.0\", \"d\": {\"__class__\": \"ConnectedValue\"}, \"f\": {\"__class__\": \"ConnectedValue\"}, \"output_format\": \"classic\", \"r\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.7.0+galaxy1", + "type": "tool", + "uuid": "d81d9ea9-a085-478f-a148-0c31083f16fc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_file", + "uuid": "2a3de11c-addc-4e1a-a156-f760f861ce64" + } + ] + } + ], + "parent_id": "transcriptomics/mirna-target-finder", + "path": "topics/transcriptomics/tutorials/mirna-target-finder/workflows/main_workflow.ga", + "tags": [ + "transcriptomics", + "mirna", + "arabidopsis" + ], + "test_results": null, + "tests": false, + "title": "Plant bulk RNA-Seq workflow", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-mirna-target-finder/versions/main-workflow", + "tutorial_id": "mirna-target-finder", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/mirna-target-finder/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/mirna-target-finder/workflows/main_workflow.html", + "version": 3, + "wfid": "transcriptomics-mirna-target-finder", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Filter1", + "__MERGE_COLLECTION__", + "cat1", + "toolshed.g2.bx.psu.edu/repos/bgruening/salmon/salmon/0.14.1.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/trim_galore/trim_galore/0.4.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/filter_by_fasta_ids/filter_by_fasta_ids/2.1", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.7", + "toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_mapper/rbc_mirdeep2_mapper/2.0.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mirdeep2_quantifier/rbc_mirdeep2_quantifier/2.0.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/targetfinder/targetfinder/1.7.0+galaxy1" + ], + "workflowhub_id": "1318" + } + ], + "zenodo_link": "https://zenodo.org/record/4710649" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "74a8bef53a00", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "merge_cols", + "owner": "devteam", + "revisions": "f2aac0c5c60d", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "annotatemyids", + "owner": "iuc", + "revisions": "1a125daea0d8", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "limma_voom", + "owner": "iuc", + "revisions": "d5a940112511", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 74a8bef53a00\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: merge_cols\n owner: devteam\n revisions: f2aac0c5c60d\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: annotatemyids\n owner: iuc\n revisions: 1a125daea0d8\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: limma_voom\n owner: iuc\n revisions: d5a940112511\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-counts-to-genes/tutorial.json", + "contributors": [ + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + }, + { + "id": "bphipson", + "joined": "2018-09", + "name": "Belinda Phipson", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bphipson/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bphipson.json" + }, + { + "id": "JovMaksimovic", + "joined": "2019-04", + "name": "Jovana Maksimovic", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/JovMaksimovic/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/JovMaksimovic.json" + }, + { + "github": false, + "id": "annatrigos", + "joined": "2018-09", + "name": "Anna Trigos", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annatrigos/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annatrigos.json" + }, + { + "id": "mritchie", + "joined": "2018-09", + "name": "Matt Ritchie", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mritchie/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mritchie.json" + }, + { + "id": "hdashnow", + "joined": "2018-09", + "name": "Harriet Dashnow", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hdashnow/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hdashnow.json" + }, + { + "id": "Shians", + "joined": "2019-02", + "name": "Shian Su", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Shians/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Shians.json" + }, + { + "id": "charitylaw", + "joined": "2018-09", + "name": "Charity Law", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/charitylaw/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/charitylaw.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-counts-to-genes", + "edam_operation": [ + "RNA-Seq analysis", + "Annotation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-genes-to-pathways", + "rna-seq-viz-with-heatmap2", + "rna-seq-viz-with-volcanoplot", + "rna-seq-analysis-with-askomics-it" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "transcriptomics/rna-seq-counts-to-genes", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The limma-voom tool can be used to perform differential expression and output useful plots", + "Multiple comparisons can be input and compared", + "Results can be interactively explored with limma-voom via Glimma" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-04-10", + "objectives": [ + "Analysis of RNA-seq count data using limma-voom", + "QC of count data", + "Visualisation and interactive exploration of count data", + "Identification of differentially expressed genes" + ], + "pageviews": 64017, + "pub_date": "2018-12-31", + "questions": [ + "What are the differentially expressed genes in the mammary gland of pregnant versus lactating mice?", + "How to analyze RNA count data using limma-voom?", + "How to perform quality control (QC) of RNA-seq count data?" + ], + "requirements": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-reads-to-counts" + ], + "type": "internal" + } + ], + "short_id": "T00298", + "short_tools": [ + "limma_voom", + "tp_cut_tool", + "tp_replace_in_line", + "annotatemyids", + "mergeCols1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "end-to-end", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "limma-voom", + "mouse", + "QC" + ], + "time_estimation": "2h", + "title": "2: RNA-seq counts to genes", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.5.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/limma_voom/limma_voom/3.34.9.9" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-counts-to-genes", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-counts-to-genes/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-counts-to-genes/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-counts-to-genes/tutorial.json" + }, + "version": 21, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 135, + "visitors": 36104, + "workflows": [ + { + "creators": [], + "description": "RNA-seq counts to genes", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nseqdata\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nsampleinfo\"]\n 2[label=\"Cut\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Merge Columns\"]\n 1 -> 3 [label=\"output\"]\n 4[label=\"Replace Text\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"Cut\"]\n 3 -> 5 [label=\"out_file1\"]\n 6[label=\"annotateMyIDs\"]\n 4 -> 6 [label=\"outfile\"]\n 7[label=\"limma\"]\n 4 -> 7 [label=\"outfile\"]\n 6 -> 7 [label=\"out_tab\"]\n 5 -> 7 [label=\"output\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "0ea8c79012ba1b18d3f79be0ff2e2b826092f5e2", + "message": "Rename tutorial and image folders to the updated titles", + "num": 1, + "short_hash": "0ea8c7901", + "unix": "1546155649" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "seqdata" + } + ], + "label": "seqdata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.9921875, + "top": 199.9921875 + }, + "tool_id": null, + "tool_state": "{\"name\": \"seqdata\"}", + "tool_version": null, + "type": "data_input", + "uuid": "8424dc54-041c-4fd4-880a-bc9d97fff0b0", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "sampleinfo" + } + ], + "label": "sampleinfo", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.9921875, + "top": 290.015625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"sampleinfo\"}", + "tool_version": null, + "type": "data_input", + "uuid": "7f07c2d1-5ae3-4992-85e4-040a96852d22", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nseqdata\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nsampleinfo\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Cut\"];\n 0 -->|output| 2;\n 3[\"Merge Columns\"];\n 1 -->|output| 3;\n 4[\"Replace Text\"];\n 2 -->|output| 4;\n 5[\"Cut\"];\n 3 -->|out_file1| 5;\n 6[\"annotateMyIDs\"];\n 4 -->|outfile| 6;\n 7[\"limma\"];\n 4 -->|outfile| 7;\n 6 -->|out_tab| 7;\n 5 -->|output| 7;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "RNA Seq Counts To Genes", + "outputs": [], + "parent_id": "transcriptomics/rna-seq-counts-to-genes", + "path": "topics/transcriptomics/tutorials/rna-seq-counts-to-genes/workflows/rna-seq-counts-to-genes.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "RNA Seq Counts To Genes", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-seq-counts-to-genes/versions/rna-seq-counts-to-genes", + "tutorial_id": "rna-seq-counts-to-genes", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-counts-to-genes/workflows/rna-seq-counts-to-genes.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-counts-to-genes/workflows/rna-seq-counts-to-genes.html", + "version": 3, + "wfid": "transcriptomics-rna-seq-counts-to-genes", + "wfname": "rna-seq-counts-to-genes", + "workflow": "rna-seq-counts-to-genes.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/merge_cols/mergeCols1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.5.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/limma_voom/limma_voom/3.34.9.9" + ], + "workflowhub_id": "1321" + } + ], + "zenodo_link": "https://zenodo.org/record/4273218" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "datamash_transpose", + "owner": "iuc", + "revisions": "22c2a1ac7ae3", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_heatmap2", + "owner": "iuc", + "revisions": "4955e9bb96d1", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: datamash_transpose\n owner: iuc\n revisions: 22c2a1ac7ae3\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_heatmap2\n owner: iuc\n revisions: 4955e9bb96d1\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/tutorial.json", + "contributors": [ + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rna-seq-viz-with-heatmap2", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": 8185, + "mermaid": false + }, + "key_points": [ + "Heatmaps can be used to visualize the expression of genes in RNA-Seq samples" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Create heatmaps of RNA-seq data" + ], + "pageviews": 116209, + "pub_date": "2018-12-31", + "questions": [ + "How to generate heatmaps from RNA-seq data?" + ], + "short_id": "T00303", + "short_tools": [ + "Cut1", + "join1", + "ggplot2_heatmap2", + "datamash_transpose" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "visualisation", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1h", + "title": "Visualization of RNA-Seq results with heatmap2", + "tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/2.2.1+galaxy1" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-viz-with-heatmap2", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 83, + "visitors": 67654, + "workflows": [ + { + "creators": [], + "description": "Visualization of RNA-Seq results with heatmap2", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nheatmap_genes\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nnormalized_counts\"]\n 2[label=\"Join two Datasets\"]\n 1 -> 2 [label=\"output\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Cut\"]\n 2 -> 3 [label=\"out_file1\"]\n 4[label=\"Transpose\"]\n 3 -> 4 [label=\"out_file1\"]\n 5[label=\"heatmap2\"]\n 4 -> 5 [label=\"out_file\"]\n k21dd5b7b6db441a3b246711f90f29e8c[color=lightseagreen,label=\"Output\\nheatmap_pdf\"]\n 5 -> k21dd5b7b6db441a3b246711f90f29e8c\n}", + "history": [ + { + "hash": "2e2cb42d8ac99927000d81734fb53c7943c0c4ba", + "message": "add tests from workflow-testing for blockclust and rna-seq-viz-with-volcano-plot, edit workflows", + "num": 5, + "short_hash": "2e2cb42d8", + "unix": "1601812751" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "08df9d7e1855e90a0c05708a3541d318a9bbe002", + "message": "Start on workflow test for heatmap2", + "num": 2, + "short_hash": "08df9d7e1", + "unix": "1546157457" + }, + { + "hash": "0ea8c79012ba1b18d3f79be0ff2e2b826092f5e2", + "message": "Rename tutorial and image folders to the updated titles", + "num": 1, + "short_hash": "0ea8c7901", + "unix": "1546155649" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "heatmap_genes" + } + ], + "label": "heatmap_genes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.9921875, + "top": 199.9921875 + }, + "tool_id": null, + "tool_state": "{\"name\": \"heatmap_genes\"}", + "tool_version": null, + "type": "data_input", + "uuid": "d9f7a901-a868-430e-8bca-32e6956c2cb5", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "normalized_counts" + } + ], + "label": "normalized_counts", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.9921875, + "top": 290.015625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"normalized_counts\"}", + "tool_version": null, + "type": "data_input", + "uuid": "59a5f2aa-972a-441c-93c1-9d2436a6b81f", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nheatmap_genes\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nnormalized_counts\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Join two Datasets\"];\n 1 -->|output| 2;\n 0 -->|output| 2;\n 3[\"Cut\"];\n 2 -->|out_file1| 3;\n 4[\"Transpose\"];\n 3 -->|out_file1| 4;\n 5[\"heatmap2\"];\n 4 -->|out_file| 5;\n 21dd5b7b-6db4-41a3-b246-711f90f29e8c[\"Output\\nheatmap_pdf\"];\n 5 --> 21dd5b7b-6db4-41a3-b246-711f90f29e8c;\n style 21dd5b7b-6db4-41a3-b246-711f90f29e8c stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Heatmap2 Workflow", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/2.2.1+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 4, + "output_name": "out_file" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool heatmap2", + "name": "input1" + } + ], + "label": null, + "name": "heatmap2", + "outputs": [ + { + "name": "output1", + "type": "pdf" + } + ], + "position": { + "left": 1254.1171875, + "top": 199.9921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/2.2.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "4955e9bb96d1", + "name": "ggplot2_heatmap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"scale\": \"\\\"column\\\"\", \"colorscheme\": \"\\\"blwhre\\\"\", \"__rerun_remap_job_id__\": null, \"labels\": \"\\\"both\\\"\", \"transform\": \"\\\"none\\\"\", \"cluster\": \"\\\"false\\\"\", \"input1\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"key\": \"\\\"\\\"\", \"title\": \"\\\"\\\"\", \"chromInfo\": \"\\\"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/mm10.len\\\"\"}", + "tool_version": "2.2.1+galaxy1", + "type": "tool", + "uuid": "94e37309-eafe-4a3e-bbcb-fcf1924b77f3", + "workflow_outputs": [ + { + "label": "heatmap_pdf", + "output_name": "output1", + "uuid": "21dd5b7b-6db4-41a3-b246-711f90f29e8c" + } + ] + } + ], + "parent_id": "transcriptomics/rna-seq-viz-with-heatmap2", + "path": "topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/workflows/rna-seq-viz-with-heatmap2.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "Heatmap2 Workflow", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-seq-viz-with-heatmap2/versions/rna-seq-viz-with-heatmap2", + "tutorial_id": "rna-seq-viz-with-heatmap2", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/workflows/rna-seq-viz-with-heatmap2.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-viz-with-heatmap2/workflows/rna-seq-viz-with-heatmap2.html", + "version": 4, + "wfid": "transcriptomics-rna-seq-viz-with-heatmap2", + "wfname": "rna-seq-viz-with-heatmap2", + "workflow": "rna-seq-viz-with-heatmap2.ga", + "workflow_tools": [ + "Cut1", + "join1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_transpose/datamash_transpose/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/2.2.1+galaxy1" + ], + "workflowhub_id": "1311" + } + ], + "zenodo_link": "https://zenodo.org/record/2529926" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "goenrichment", + "owner": "iuc", + "revisions": "2c7c9646ccf0", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "goslimmer", + "owner": "iuc", + "revisions": "de3e053bd6a5", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: goenrichment\n owner: iuc\n revisions: 2c7c9646ccf0\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: goslimmer\n owner: iuc\n revisions: de3e053bd6a5\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/goenrichment/tutorial.json", + "contributors": [ + { + "id": "igcbioinformatics", + "joined": "2018-12", + "name": "IGC Bioinformatics Unit", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/igcbioinformatics/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/igcbioinformatics.json" + }, + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + } + ], + "dir": "topics/transcriptomics/tutorials/goenrichment", + "edam_operation": [ + "Gene-set enrichment analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/goenrichment", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The goenrichment tool can be used to perform GO Enrichment analysis", + "One needs to be careful when chosing the background population", + "There are several methods to simplify the output of the GO Enrichment analysis" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-05", + "objectives": [ + "How to perform a GO Enrichment Analysis", + "How to interpret and simplify the results" + ], + "pageviews": 33923, + "pub_date": "2019-01-23", + "questions": [ + "How can I functionally interpret a list of genes of interest that I obtained from my experiment?" + ], + "short_id": "T00291", + "short_tools": [ + "goenrichment", + "goslimmer", + "Filter1" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "time_estimation": "1h", + "title": "GO Enrichment Analysis", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/iuc/goenrichment/goenrichment/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/goslimmer/goslimmer/1.0.1" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "goenrichment", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/goenrichment/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/goenrichment/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/goenrichment/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 77, + "visitors": 20093, + "workflows": [ + { + "creators": [], + "description": "GO Enrichment Analysis Tutorial", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGO annotations Drosophila melanogaster\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGO\"]\n 10[label=\"Filter\"]\n 2 -> 10 [label=\"output\"]\n 11[label=\"GOEnrichment\"]\n 3 -> 11 [label=\"output\"]\n 1 -> 11 [label=\"output\"]\n 4 -> 11 [label=\"output\"]\n 5 -> 11 [label=\"output\"]\n 12[label=\"GOEnrichment\"]\n 3 -> 12 [label=\"output\"]\n 1 -> 12 [label=\"output\"]\n 4 -> 12 [label=\"output\"]\n 5 -> 12 [label=\"output\"]\n 13[label=\"GOSlimmer\"]\n 3 -> 13 [label=\"output\"]\n 1 -> 13 [label=\"output\"]\n 6 -> 13 [label=\"output\"]\n 14[label=\"GOEnrichment\"]\n 3 -> 14 [label=\"output\"]\n 1 -> 14 [label=\"output\"]\n 4 -> 14 [label=\"output\"]\n 7 -> 14 [label=\"output\"]\n 15[label=\"GOEnrichment\"]\n 3 -> 15 [label=\"output\"]\n 1 -> 15 [label=\"output\"]\n 4 -> 15 [label=\"output\"]\n 8 -> 15 [label=\"output\"]\n 16[label=\"GOEnrichment\"]\n 0 -> 16 [label=\"output\"]\n 1 -> 16 [label=\"output\"]\n 2 -> 16 [label=\"output\"]\n 9 -> 16 [label=\"out_file1\"]\n 17[label=\"GOEnrichment\"]\n 0 -> 17 [label=\"output\"]\n 1 -> 17 [label=\"output\"]\n 10 -> 17 [label=\"out_file1\"]\n 9 -> 17 [label=\"out_file1\"]\n 18[label=\"GOEnrichment\"]\n 13 -> 18 [label=\"output\"]\n 6 -> 18 [label=\"output\"]\n 4 -> 18 [label=\"output\"]\n 5 -> 18 [label=\"output\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ntrapnellPopulation.tab\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGO annotations Mus musculus\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMouse population\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMouse diff\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGO Slim\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmouseUnderexpressed.txt\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmouseOverexpressed.txt\"]\n 9[label=\"Filter\"]\n 2 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "79f4dd991355ce9a98383d5425140fc9af718dd1", + "message": "Create goenrichment-workflow.ga", + "num": 1, + "short_hash": "79f4dd991", + "unix": "1550179581" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GO annotations Drosophila melanogaster" + } + ], + "label": "GO annotations Drosophila melanogaster", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GO annotations Drosophila melanogaster\"}", + "tool_version": null, + "type": "data_input", + "uuid": "44a4f678-6028-45fb-b5fc-59e6d6d30360", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GO" + } + ], + "label": "GO", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 320 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GO\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ae9b3261-ca22-4018-8774-169358633422", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "trapnellPopulation.tab" + } + ], + "label": "trapnellPopulation.tab", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 440 + }, + "tool_id": null, + "tool_state": "{\"name\": \"trapnellPopulation.tab\"}", + "tool_version": null, + "type": "data_input", + "uuid": "b9332a9d-0dee-4a27-826c-1213b93c9c20", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GO annotations Mus musculus" + } + ], + "label": "GO annotations Mus musculus", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 560 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GO annotations Mus musculus\"}", + "tool_version": null, + "type": "data_input", + "uuid": "623b33b8-5edb-4f85-b377-127d0659504e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mouse population" + } + ], + "label": "Mouse population", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 680 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mouse population\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ea004077-e2c7-4e92-a003-ec25f25df0a0", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Mouse diff" + } + ], + "label": "Mouse diff", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 800 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Mouse diff\"}", + "tool_version": null, + "type": "data_input", + "uuid": "af1838d3-3af6-4e52-aa38-6ba38eae2c58", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GO Slim" + } + ], + "label": "GO Slim", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 920 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GO Slim\"}", + "tool_version": null, + "type": "data_input", + "uuid": "bc59fd06-ef94-46ea-a20b-b884f3b9a1b2", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mouseUnderexpressed.txt" + } + ], + "label": "mouseUnderexpressed.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 1040 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mouseUnderexpressed.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3d85962e-96c5-4152-962d-0cbb1757e2ed", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mouseOverexpressed.txt" + } + ], + "label": "mouseOverexpressed.txt", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 1160 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mouseOverexpressed.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a81fec4d-a0b7-4e26-b1be-55ae410e5b58", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGO annotations Drosophila melanogaster\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGO\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Filter\"];\n 2 -->|output| 10;\n 11[\"GOEnrichment\"];\n 3 -->|output| 11;\n 1 -->|output| 11;\n 4 -->|output| 11;\n 5 -->|output| 11;\n 12[\"GOEnrichment\"];\n 3 -->|output| 12;\n 1 -->|output| 12;\n 4 -->|output| 12;\n 5 -->|output| 12;\n 13[\"GOSlimmer\"];\n 3 -->|output| 13;\n 1 -->|output| 13;\n 6 -->|output| 13;\n 14[\"GOEnrichment\"];\n 3 -->|output| 14;\n 1 -->|output| 14;\n 4 -->|output| 14;\n 7 -->|output| 14;\n 15[\"GOEnrichment\"];\n 3 -->|output| 15;\n 1 -->|output| 15;\n 4 -->|output| 15;\n 8 -->|output| 15;\n 16[\"GOEnrichment\"];\n 0 -->|output| 16;\n 1 -->|output| 16;\n 2 -->|output| 16;\n 9 -->|out_file1| 16;\n 17[\"GOEnrichment\"];\n 0 -->|output| 17;\n 1 -->|output| 17;\n 10 -->|out_file1| 17;\n 9 -->|out_file1| 17;\n 18[\"GOEnrichment\"];\n 13 -->|output| 18;\n 6 -->|output| 18;\n 4 -->|output| 18;\n 5 -->|output| 18;\n 2[\"\u2139\ufe0f Input Dataset\\ntrapnellPopulation.tab\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nGO annotations Mus musculus\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nMouse population\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nMouse diff\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nGO Slim\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nmouseUnderexpressed.txt\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nmouseOverexpressed.txt\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"Filter\"];\n 2 -->|output| 9;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "GO Enrichment Workflow", + "outputs": [], + "parent_id": "transcriptomics/goenrichment", + "path": "topics/transcriptomics/tutorials/goenrichment/workflows/goenrichment-workflow.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "GO Enrichment Workflow", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-goenrichment/versions/goenrichment-workflow", + "tutorial_id": "goenrichment", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/goenrichment/workflows/goenrichment-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/goenrichment/workflows/goenrichment-workflow.html", + "version": 3, + "wfid": "transcriptomics-goenrichment", + "wfname": "goenrichment-workflow", + "workflow": "goenrichment-workflow.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/iuc/goenrichment/goenrichment/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/goslimmer/goslimmer/1.0.1" + ], + "workflowhub_id": "1315" + } + ], + "zenodo_link": "https://zenodo.org/record/2565417" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_sort", + "owner": "devteam", + "revisions": "f56bdb93ae58", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "blockbuster", + "owner": "rnateam", + "revisions": "7c7ff7a3503f", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "blockclust", + "owner": "rnateam", + "revisions": "aab6cf87b40a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_sort\n owner: devteam\n revisions: f56bdb93ae58\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: blockbuster\n owner: rnateam\n revisions: 7c7ff7a3503f\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: blockclust\n owner: rnateam\n revisions: aab6cf87b40a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/small_ncrna_clustering/tutorial.json", + "contributors": [ + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + } + ], + "dir": "topics/transcriptomics/tutorials/small_ncrna_clustering", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/small_ncrna_clustering", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Small non-coding RNA read profiles are often associate with function", + "Clusters of read profiles correlate with the ncRNA classes" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Difference between mRNA-seq and smallRNA-seq", + "Unsupervised grouping of the adjacent reads into read profiles", + "Look and learn what the shapes of the read profiles represent", + "Clustering of the read profiles by machine learning algorithm" + ], + "pageviews": 1180, + "pub_date": "2018-12-14", + "questions": [ + "What do the read profiles of small non-coding RNAs represent?", + "How to cluster the read profiles based on some intrinsic features?" + ], + "short_id": "T00306", + "short_tools": [ + "blockclust", + "blockbuster", + "tp_sort_header_tool", + "samtools_sort" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1H", + "title": "Small Non-coding RNA Clustering using BlockClust", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_sort/samtools_sort/2.0.2", + "toolshed.g2.bx.psu.edu/repos/rnateam/blockbuster/blockbuster/0.1.2", + "toolshed.g2.bx.psu.edu/repos/rnateam/blockclust/blockclust/1.1.0" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "small_ncrna_clustering", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/small_ncrna_clustering/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/small_ncrna_clustering/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/small_ncrna_clustering/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 177, + "visitors": 843, + "workflows": [ + { + "creators": [], + "description": "Small Non-coding RNA Clustering using BlockClust", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nblockclust_input\"]\n 1[label=\"Samtools sort\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"BlockClust\"]\n 1 -> 2 [label=\"output1\"]\n k39f8722a844442f88104f81201804c9c[color=lightseagreen,label=\"Output\\ntags_bed\"]\n 2 -> k39f8722a844442f88104f81201804c9c\n 3[label=\"Sort\"]\n 2 -> 3 [label=\"tags_bed\"]\n 4[label=\"blockbuster\"]\n 3 -> 4 [label=\"outfile\"]\n k95c21ce9e98844b9978e10a27b74d18e[color=lightseagreen,label=\"Output\\nblockbuster_out\"]\n 4 -> k95c21ce9e98844b9978e10a27b74d18e\n 5[label=\"BlockClust\"]\n 4 -> 5 [label=\"output\"]\n k241feec19ffd4d289b65e58850198c6d[color=lightseagreen,label=\"Output\\nmodel_based_pred_bed\"]\n 5 -> k241feec19ffd4d289b65e58850198c6d\n k287b4bae55a14f38b1c362ae60b4d950[color=lightseagreen,label=\"Output\\nclusters_bed\"]\n 5 -> k287b4bae55a14f38b1c362ae60b4d950\n}", + "history": [ + { + "hash": "2e2cb42d8ac99927000d81734fb53c7943c0c4ba", + "message": "add tests from workflow-testing for blockclust and rna-seq-viz-with-volcano-plot, edit workflows", + "num": 4, + "short_hash": "2e2cb42d8", + "unix": "1601812751" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "0afe265cf142d3ad8b39a4010e0b2d0ca931677c", + "message": "initial version of training material for small ncRNA clustering using blockclust", + "num": 1, + "short_hash": "0afe265cf", + "unix": "1544604285" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "blockclust_input" + } + ], + "label": "blockclust_input", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 212 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b6e23dd8-46ca-4bd6-87f3-2f6b741b459b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "64e45b5f-8e46-4ae9-96c1-c452601a3bfc" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nblockclust_input\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Samtools sort\"];\n 0 -->|output| 1;\n 2[\"BlockClust\"];\n 1 -->|output1| 2;\n 39f8722a-8444-42f8-8104-f81201804c9c[\"Output\\ntags_bed\"];\n 2 --> 39f8722a-8444-42f8-8104-f81201804c9c;\n style 39f8722a-8444-42f8-8104-f81201804c9c stroke:#2c3143,stroke-width:4px;\n 3[\"Sort\"];\n 2 -->|tags_bed| 3;\n 4[\"blockbuster\"];\n 3 -->|outfile| 4;\n 95c21ce9-e988-44b9-978e-10a27b74d18e[\"Output\\nblockbuster_out\"];\n 4 --> 95c21ce9-e988-44b9-978e-10a27b74d18e;\n style 95c21ce9-e988-44b9-978e-10a27b74d18e stroke:#2c3143,stroke-width:4px;\n 5[\"BlockClust\"];\n 4 -->|output| 5;\n 241feec1-9ffd-4d28-9b65-e58850198c6d[\"Output\\nmodel_based_pred_bed\"];\n 5 --> 241feec1-9ffd-4d28-9b65-e58850198c6d;\n style 241feec1-9ffd-4d28-9b65-e58850198c6d stroke:#2c3143,stroke-width:4px;\n 287b4bae-55a1-4f38-b1c3-62ae60b4d950[\"Output\\nclusters_bed\"];\n 5 --> 287b4bae-55a1-4f38-b1c3-62ae60b4d950;\n style 287b4bae-55a1-4f38-b1c3-62ae60b4d950 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Blockclust 1.1.0 Clustering", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "blockclust_input" + } + ], + "label": "blockclust_input", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 212 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "b6e23dd8-46ca-4bd6-87f3-2f6b741b459b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "64e45b5f-8e46-4ae9-96c1-c452601a3bfc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/blockclust/blockclust/1.1.0", + "errors": null, + "id": 2, + "input_connections": { + "tool_mode|reads_bam": { + "id": 1, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "BlockClust", + "outputs": [ + { + "name": "tags_bed", + "type": "bed" + } + ], + "position": { + "left": 788, + "top": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/blockclust/blockclust/1.1.0", + "tool_shed_repository": { + "changeset_revision": "aab6cf87b40a", + "name": "blockclust", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"tool_mode\": {\"operation\": \"pre\", \"__current_case__\": 0, \"reads_bam\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "fd3043d3-609e-4303-bcb5-448cb749a319", + "workflow_outputs": [ + { + "label": "tags_bed", + "output_name": "tags_bed", + "uuid": "39f8722a-8444-42f8-8104-f81201804c9c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/blockbuster/blockbuster/0.1.2", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 3, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "blockbuster", + "outputs": [ + { + "name": "output", + "type": "bed" + } + ], + "position": { + "left": 1376, + "top": 212 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/blockbuster/blockbuster/0.1.2", + "tool_shed_repository": { + "changeset_revision": "7c7ff7a3503f", + "name": "blockbuster", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"distance\": \"40\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"merge\": \"0\", \"minBlockHeight\": \"1.0\", \"minClusterHeight\": \"50.0\", \"print\": \"bbf_reads\", \"scale\": \"0.5\", \"tagFilter\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.2", + "type": "tool", + "uuid": "8a3db40c-ae03-49ca-b47c-559ac455d712", + "workflow_outputs": [ + { + "label": "blockbuster_out", + "output_name": "output", + "uuid": "95c21ce9-e988-44b9-978e-10a27b74d18e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/rnateam/blockclust/blockclust/1.1.0", + "errors": null, + "id": 5, + "input_connections": { + "tool_mode|input_bbo": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "BlockClust", + "outputs": [ + { + "name": "hclust_plot", + "type": "pdf" + }, + { + "name": "clusters", + "type": "bed" + }, + { + "name": "model_based_pred_bed", + "type": "bed" + }, + { + "name": "sim_tab_out", + "type": "tabular" + } + ], + "position": { + "left": 1694, + "top": 212 + }, + "post_job_actions": { + "HideDatasetActionhclust_plot": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "hclust_plot" + }, + "HideDatasetActionsim_tab_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "sim_tab_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/rnateam/blockclust/blockclust/1.1.0", + "tool_shed_repository": { + "changeset_revision": "aab6cf87b40a", + "name": "blockclust", + "owner": "rnateam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"tool_mode\": {\"operation\": \"analysis\", \"__current_case__\": 1, \"input_bbo\": {\"__class__\": \"ConnectedValue\"}, \"reference\": \"hg19\", \"nochr\": \"false\", \"pred\": {\"enable_pred\": \"yes\", \"__current_case__\": 0, \"pred_mode\": \"MODEL\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "e41a16eb-4edd-4f9e-b615-44d0c2988b63", + "workflow_outputs": [ + { + "label": "model_based_pred_bed", + "output_name": "model_based_pred_bed", + "uuid": "241feec1-9ffd-4d28-9b65-e58850198c6d" + }, + { + "label": "clusters_bed", + "output_name": "clusters", + "uuid": "287b4bae-55a1-4f38-b1c3-62ae60b4d950" + } + ] + } + ], + "parent_id": "transcriptomics/small_ncrna_clustering", + "path": "topics/transcriptomics/tutorials/small_ncrna_clustering/workflows/blockclust_clustering.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "Blockclust 1.1.0 Clustering", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-small_ncrna_clustering/versions/blockclust-clustering", + "tutorial_id": "small_ncrna_clustering", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/small_ncrna_clustering/workflows/blockclust_clustering.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/small_ncrna_clustering/workflows/blockclust_clustering.html", + "version": 4, + "wfid": "transcriptomics-small_ncrna_clustering", + "wfname": "blockclust-clustering", + "workflow": "blockclust_clustering.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_sort/samtools_sort/2.0.2", + "toolshed.g2.bx.psu.edu/repos/rnateam/blockbuster/blockbuster/0.1.2", + "toolshed.g2.bx.psu.edu/repos/rnateam/blockclust/blockclust/1.1.0" + ], + "workflowhub_id": "1333" + } + ], + "zenodo_link": "https://zenodo.org/record/1491876" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "volcanoplot", + "owner": "iuc", + "revisions": "83c573f2e73c", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: volcanoplot\n owner: iuc\n revisions: 83c573f2e73c\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/tutorial.json", + "contributors": [ + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-viz-with-volcanoplot-r" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "transcriptomics/rna-seq-viz-with-volcanoplot", + "inexact_supported_servers": [ + "GalaxyTrakr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "A volcano plot can be used to quickly visualize significant genes in RNA-seq results" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Create a volcano plot of RNA-seq data to visualize significant genes" + ], + "pageviews": 225119, + "pub_date": "2018-12-31", + "questions": [ + "How to generate a volcano plot from RNA-seq data?" + ], + "recordings": [ + { + "captioners": [ + "mblue9" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "10M", + "speakers": [ + "mblue9" + ], + "youtube_id": "uNGXIcEGZwA" + } + ], + "requirements": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-counts-to-genes" + ], + "type": "internal" + } + ], + "short_id": "T00304", + "short_tools": [ + "volcanoplot" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "visualisation", + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "30m", + "title": "Visualization of RNA-Seq results with Volcano Plot", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/volcanoplot/volcanoplot/0.0.5" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-viz-with-volcanoplot", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/tutorial.json" + }, + "version": 14, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 82, + "visitors": 131254, + "workflows": [ + { + "creators": [], + "description": "Visualization of RNA-Seq results with Volcano Plot", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDE results\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nVolcano genes\"]\n 2[label=\"Volcano plot highlighting significant\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Volcano plot labelling top 10\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Volcano plot labelling genes of interest\"]\n 0 -> 4 [label=\"output\"]\n 1 -> 4 [label=\"output\"]\n k16aef53e11fd4defa7fb6cf9a98f0902[color=lightseagreen,label=\"Output\\nvolcano_pdf\"]\n 4 -> k16aef53e11fd4defa7fb6cf9a98f0902\n}", + "history": [ + { + "hash": "470fa57969cc2fa659ec0bf0b00e69ca81367521", + "message": "Fix name", + "num": 8, + "short_hash": "470fa5796", + "unix": "1624047135" + }, + { + "hash": "086ac3f5016bee399d245984727bb0059be29c4c", + "message": "Update workflow", + "num": 7, + "short_hash": "086ac3f50", + "unix": "1624046952" + }, + { + "hash": "2e2cb42d8ac99927000d81734fb53c7943c0c4ba", + "message": "add tests from workflow-testing for blockclust and rna-seq-viz-with-volcano-plot, edit workflows", + "num": 6, + "short_hash": "2e2cb42d8", + "unix": "1601812751" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "f7f017f3329dac306d19ca406c5e28f75bbf4ef8", + "message": "dna and rna capitals", + "num": 4, + "short_hash": "f7f017f33", + "unix": "1579092000" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "faf6d298afa752b6676a1533854c634efefe8075", + "message": "unflatten workflows", + "num": 2, + "short_hash": "faf6d298a", + "unix": "1576155753" + }, + { + "hash": "47566efc6793de54afd1915977d5514b732f9ea8", + "message": "Add workflow to volcanoplot tutorial", + "num": 1, + "short_hash": "47566efc6", + "unix": "1562337491" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DE results" + } + ], + "label": "DE results", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 329.5, + "height": 61, + "left": 318, + "right": 518, + "top": 268.5, + "width": 200, + "x": 318, + "y": 268.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3adb32da-3a59-4e01-bbf1-f8501e8f4af4", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Volcano genes" + } + ], + "label": "Volcano genes", + "name": "Input dataset", + "outputs": [], + "position": { + "bottom": 505.5, + "height": 81, + "left": 320, + "right": 520, + "top": 424.5, + "width": 200, + "x": 320, + "y": 424.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "f49407c4-5995-446c-b28f-c39bbee8c6d9", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nDE results\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nVolcano genes\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Volcano plot highlighting significant\"];\n 0 -->|output| 2;\n 3[\"Volcano plot labelling top 10\"];\n 0 -->|output| 3;\n 4[\"Volcano plot labelling genes of interest\"];\n 0 -->|output| 4;\n 1 -->|output| 4;\n 16aef53e-11fd-4def-a7fb-6cf9a98f0902[\"Output\\nvolcano_pdf\"];\n 4 --> 16aef53e-11fd-4def-a7fb-6cf9a98f0902;\n style 16aef53e-11fd-4def-a7fb-6cf9a98f0902 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Visualization Of RNA-Seq Results With Volcano Plot", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/volcanoplot/volcanoplot/0.0.5", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + }, + "labels|label_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Volcano plot labelling genes of interest", + "name": "Volcano Plot", + "outputs": [ + { + "name": "plot", + "type": "pdf" + } + ], + "position": { + "bottom": 531.5, + "height": 142, + "left": 595, + "right": 795, + "top": 389.5, + "width": 200, + "x": 595, + "y": 389.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/volcanoplot/volcanoplot/0.0.5", + "tool_shed_repository": { + "changeset_revision": "83c573f2e73c", + "name": "volcanoplot", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fdr_col\": \"8\", \"header\": \"auto\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"label_col\": \"2\", \"labels\": {\"label_select\": \"file\", \"__current_case__\": 1, \"label_file\": {\"__class__\": \"ConnectedValue\"}}, \"lfc_col\": \"4\", \"lfc_thresh\": \"0.58\", \"out_options\": {\"rscript_out\": \"false\"}, \"plot_options\": {\"boxes\": \"true\", \"title\": \"\", \"xlab\": \"\", \"ylab\": \"\", \"xmin\": null, \"xmax\": null, \"ymax\": null, \"legend\": \"\", \"legend_labs\": \"Down,Not Sig,Up\"}, \"pval_col\": \"7\", \"signif_thresh\": \"0.01\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.0.5", + "type": "tool", + "uuid": "01bf8268-3e8a-4f99-b03c-05c5656ac96e", + "workflow_outputs": [ + { + "label": "volcano_pdf", + "output_name": "plot", + "uuid": "16aef53e-11fd-4def-a7fb-6cf9a98f0902" + } + ] + } + ], + "parent_id": "transcriptomics/rna-seq-viz-with-volcanoplot", + "path": "topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/workflows/rna-seq-viz-with-volcanoplot.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "Visualization Of RNA-Seq Results With Volcano Plot", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-rna-seq-viz-with-volcanoplot/versions/rna-seq-viz-with-volcanoplot", + "tutorial_id": "rna-seq-viz-with-volcanoplot", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/workflows/rna-seq-viz-with-volcanoplot.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot/workflows/rna-seq-viz-with-volcanoplot.html", + "version": 6, + "wfid": "transcriptomics-rna-seq-viz-with-volcanoplot", + "wfname": "rna-seq-viz-with-volcanoplot", + "workflow": "rna-seq-viz-with-volcanoplot.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/volcanoplot/volcanoplot/0.0.5" + ], + "workflowhub_id": "1335" + } + ], + "zenodo_link": "https://zenodo.org/record/2529117" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deseq2", + "owner": "iuc", + "revisions": "d9e5cadc7f0b", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "heinz", + "owner": "iuc", + "revisions": "2b80a2596064", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "heinz", + "owner": "iuc", + "revisions": "2b80a2596064", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "heinz", + "owner": "iuc", + "revisions": "2b80a2596064", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "heinz", + "owner": "iuc", + "revisions": "5f589c91566e", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deseq2\n owner: iuc\n revisions: d9e5cadc7f0b\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: heinz\n owner: iuc\n revisions: 2b80a2596064\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: heinz\n owner: iuc\n revisions: 2b80a2596064\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: heinz\n owner: iuc\n revisions: 2b80a2596064\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: heinz\n owner: iuc\n revisions: 5f589c91566e\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/network-analysis-with-heinz/tutorial.json", + "contributors": [ + { + "id": "ChaoZhang123", + "joined": "2018-08", + "maintainer_contact": "https://hi-it.org", + "name": "Chao Zhang", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/ChaoZhang123/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/ChaoZhang123.json" + } + ], + "dir": "topics/transcriptomics/tutorials/network-analysis-with-heinz", + "edam_operation": [ + "RNA-Seq analysis", + "Differential gene expression analysis", + "Pathway or network analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/network-analysis-with-heinz", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Using Heinz do the network analysis based on the metatranscriptomics or transcriptomics data.", + "Extracting the signals hidden in the p-value distribution of the differential expression analysis.", + "Visualizing the pinpointed subnetwork helps us understand the result better", + "Heinz helps narrow down the scope to find the key pathways", + "Multiple CPUs will accelerate the computation especially for the complex datasets" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-01-15", + "objectives": [ + "Network Analysis of metatranscriptomics data using Heinz in Galaxy to pinpoint the optimal scoring subnetwork." + ], + "pageviews": 5729787, + "pub_date": "2018-10-11", + "questions": [ + "Which pathways are potentially contributing to dental caries?" + ], + "short_id": "T00293", + "short_tools": [ + "heinz_scoring", + "heinz", + "heinz_bum", + "heinz_visualization", + "Cut1", + "deseq2" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "metatranscriptomics", + "network analysis" + ], + "time_estimation": "1h30m", + "title": "Network analysis with Heinz", + "tools": [ + "Cut1", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.2", + "toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz_bum/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz_scoring/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz_visualization/0.1.0" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "network-analysis-with-heinz", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/network-analysis-with-heinz/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/network-analysis-with-heinz/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/network-analysis-with-heinz/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 342, + "visitors": 2065570, + "workflows": [ + { + "creators": [], + "description": "Network analysis with Heinz", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nEdge File\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput dataset collection\"]\n 3[label=\"DESeq2\"]\n 1 -> 3 [label=\"output\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Cut\"]\n 3 -> 4 [label=\"deseq_out\"]\n 5[label=\"Cut\"]\n 3 -> 5 [label=\"deseq_out\"]\n 6[label=\"Fit a BUM model\"]\n 4 -> 6 [label=\"out_file1\"]\n 7[label=\"Calculate a Heinz score\"]\n 5 -> 7 [label=\"out_file1\"]\n 6 -> 7 [label=\"dist_params\"]\n 8[label=\"Identify optimal scoring subnetwork\"]\n 7 -> 8 [label=\"score\"]\n 0 -> 8 [label=\"output\"]\n 9[label=\"Visualize\"]\n 8 -> 9 [label=\"subnetwork\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "6a6b3b2cfd5007d26b1bbbcaf388fee819397d85", + "message": "Renamed the folder, rewrote the key points; added tags; added a paragraph in the end to correspond to the research question in this tutorial.", + "num": 1, + "short_hash": "6a6b3b2cf", + "unix": "1539171768" + } + ], + "inputs": [ + { + "annotation": "The background network", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Edge File", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 202.4296875, + "top": 238.03125 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "3939e577-a385-4d04-8db9-5b692670fb00", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 202.4296875, + "top": 358.03125 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "c6808009-a8e5-447d-a62a-37003ef0bb96", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Input Dataset Collection" + } + ], + "label": null, + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 202.4296875, + "top": 478.03125 + }, + "tool_id": null, + "tool_state": "{\"collection_type\": \"list\", \"name\": \"Input Dataset Collection\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "76dd0c7b-e654-462f-810b-7c7f9c69e17b", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nEdge File\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nInput dataset collection\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"DESeq2\"];\n 1 -->|output| 3;\n 2 -->|output| 3;\n 4[\"Cut\"];\n 3 -->|deseq_out| 4;\n 5[\"Cut\"];\n 3 -->|deseq_out| 5;\n 6[\"Fit a BUM model\"];\n 4 -->|out_file1| 6;\n 7[\"Calculate a Heinz score\"];\n 5 -->|out_file1| 7;\n 6 -->|dist_params| 7;\n 8[\"Identify optimal scoring subnetwork\"];\n 7 -->|score| 8;\n 0 -->|output| 8;\n 9[\"Visualize\"];\n 8 -->|subnetwork| 9;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Workflow Constructed From History 'Heinz Workflow Trial Sep 11'", + "outputs": [], + "parent_id": "transcriptomics/network-analysis-with-heinz", + "path": "topics/transcriptomics/tutorials/network-analysis-with-heinz/workflows/Galaxy-Workflow-Heinz.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "Workflow Constructed From History 'Heinz Workflow Trial Sep 11'", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-network-analysis-with-heinz/versions/galaxy-workflow-heinz", + "tutorial_id": "network-analysis-with-heinz", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/network-analysis-with-heinz/workflows/Galaxy-Workflow-Heinz.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/network-analysis-with-heinz/workflows/Galaxy-Workflow-Heinz.html", + "version": 3, + "wfid": "transcriptomics-network-analysis-with-heinz", + "wfname": "galaxy-workflow-heinz", + "workflow": "Galaxy-Workflow-Heinz.ga", + "workflow_tools": [ + "Cut1", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.2", + "toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz_bum/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz_scoring/1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/heinz/heinz_visualization/0.1.0" + ], + "workflowhub_id": "1303" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1344105" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-analysis-with-askomics-it/tutorial.json", + "contributors": [ + { + "email": "xavier.garnier@irisa.fr", + "id": "xgaia", + "joined": "2020-07", + "name": "Xavier Garnier", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/xgaia/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/xgaia.json" + }, + { + "affiliations": [ + "gallantries", + "eurosciencegateway", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "anthony.bretaudeau@inrae.fr", + "fediverse": "https://genomic.social/@abretaud", + "fediverse_flavor": "mastodon", + "id": "abretaud", + "joined": "2017-09", + "location": { + "country": "FR", + "lat": 48.11, + "lon": -1.64 + }, + "matrix": "abretaud:matrix.org", + "name": "Anthony Bretaudeau", + "orcid": "0000-0003-0914-2470", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/abretaud/", + "twitter": "abretau", + "url": "https://training.galaxyproject.org/training-material/api/contributors/abretaud.json" + }, + { + "id": "annesiegel", + "joined": "2020-07", + "name": "Anne Siegel", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annesiegel/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annesiegel.json" + }, + { + "id": "odameron", + "joined": "2020-07", + "name": "Olivier Dameron", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/odameron/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/odameron.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "fr", + "email": "mateo.boudet@inrae.fr", + "id": "mboudet", + "joined": "2021-05", + "name": "Mateo Boudet", + "orcid": "0000-0002-7028-7620", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mboudet/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mboudet.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-analysis-with-askomics-it", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rna-seq-analysis-with-askomics-it", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "AskOmics helps to integrate multiple data sources into an RDF database without prior knowledge in the Semantic Web", + "It can also be connected to external SPARQL endpoints, such as [neXtProt](https://www.nextprot.org)", + "AskOmics helps to perform complex SPARQL queries without knowing SPARQL, using a user-friendly interface" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Launch an AskOmics Interactive Tool", + "Integrate RNA-Seq and reference datasets into AskOmics", + "Create a complex query to get over-expressed genes, their location on the reference genome, and check if they are included in a known QTL", + "Complete the query to get the human homologs and their location using neXtProt database" + ], + "pageviews": 5727982, + "pub_date": "2020-07-09", + "questions": [ + "How to integrate RNA-Seq results with other datasets using AskOmics?", + "How to query these datasets to answer a biological question?", + "How to exploit a distant SPARQL endpoint to retrieve information?" + ], + "requirements": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-counts-to-genes" + ], + "type": "internal" + } + ], + "short_id": "T00297", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "RNA-Seq analysis with AskOmics Interactive Tool", + "tools": [], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-analysis-with-askomics-it", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-analysis-with-askomics-it/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-analysis-with-askomics-it/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-analysis-with-askomics-it/tutorial.json" + }, + "version": 13, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 400, + "visitors": 2064588, + "zenodo_link": "https://zenodo.org/record/3925863" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anikaerxleben@gmail.com", + "id": "erxleben", + "joined": "2017-09", + "name": "Anika Erxleben", + "orcid": "0000-0002-7427-6478", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/erxleben/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/erxleben.json" + }, + { + "id": "mwolfien", + "joined": "2017-09", + "name": "Markus Wolfien", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mwolfien/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mwolfien.json" + } + ], + "dir": "topics/transcriptomics/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "transcriptomics/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2024-06-14", + "pageviews": 5726884, + "priority": 1, + "pub_date": "2016-10-05", + "recordings": [ + { + "captioners": [ + "nagoue", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "fpsom" + ], + "youtube_id": "qKkS_tztw_Q" + } + ], + "redirect_from": [ + "/topics/transcriptomics/slides/introduction", + "/short/transcriptomics/introduction/slides", + "/short/S00094" + ], + "short_id": "S00094", + "short_tools": [], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "nagoue", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "fpsom" + ], + "youtube_id": "qKkS_tztw_Q" + } + ], + "subtopic": "introduction", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to Transcriptomics", + "tools": [], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/introduction/slides.json" + }, + "version": 2, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-cummerbund/tutorial.json", + "contributors": [ + { + "email": "andrea.bagnacani@gmail.com", + "id": "bagnacan", + "joined": "2017-10", + "name": "Andrea Bagnacani", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bagnacan/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bagnacan.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-viz-with-cummerbund", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rna-seq-viz-with-cummerbund", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Extract information from a SQLite CuffDiff database", + "Filter and sort results to highlight differential expressed genes of interest", + "Generate publication-ready visualizations of RNA-Seq analysis results" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Manage RNA-Seq results", + "Extract genes for producing differential gene expression analysis visualizations", + "Visualize meaningful information" + ], + "pageviews": 5730330, + "pub_date": "2017-10-16", + "questions": [ + "How are RNA-Seq results stored?", + "Why are visualization techniques needed?", + "How to select genes for visualizing meaningful results of differential gene expression analysis?" + ], + "short_id": "T00302", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "visualisation", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "1h", + "title": "Visualization of RNA-Seq results with CummeRbund", + "tools": [], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-viz-with-cummerbund", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-viz-with-cummerbund/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-cummerbund/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-cummerbund/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 268, + "visitors": 2065934, + "zenodo_link": "https://zenodo.org/record/1001880" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-counts-to-viz-in-r/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "email": "tbyhdgs@gmail.com", + "id": "tobyhodges", + "joined": "2019-07", + "name": "Toby Hodges", + "orcid": "0000-0003-1766-456X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tobyhodges/", + "twitter": "tbyhdgs", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tobyhodges.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-counts-to-viz-in-r", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rna-seq-counts-to-viz-in-r", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "When creating plots with `ggplot2`, think about the graphics in layers (aesthetics, geometry, statistics, scale transformation, and grouping)." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Describe the role of data, aesthetics, geoms, and layers in `ggplot` functions.", + "Customize plot scales, titles, subtitles, themes, fonts, layout, and orientation." + ], + "pageviews": 4779, + "pub_date": "2019-10-08", + "questions": [ + "How can I create neat visualizations of the data?" + ], + "recordings": [ + { + "captioners": [ + "hexylena", + "shiltemann", + "fpsom" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "30M", + "speakers": [ + "fpsom" + ], + "youtube_id": "rJWgnLgA2BE" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "rstudio" + ], + "type": "internal" + }, + { + "topic_name": "data-science", + "tutorials": [ + "r-basics", + "r-advanced" + ], + "type": "internal" + }, + { + "topic_name": "transcriptomics", + "tutorials": [ + "ref-based" + ], + "type": "internal" + } + ], + "short_id": "T00299", + "short_tools": [ + "interactive_tool_rstudio" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "visualisation", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "1H", + "title": "RNA Seq Counts to Viz in R", + "tools": [ + "interactive_tool_rstudio" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-counts-to-viz-in-r", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-counts-to-viz-in-r/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-counts-to-viz-in-r/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-counts-to-viz-in-r/tutorial.json" + }, + "version": 20, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 112, + "visitors": 3668, + "zenodo_link": "https://zenodo.org/record/3477564/" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rb-rnaseq/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rb-rnaseq", + "draft": true, + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rb-rnaseq", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": 26071, + "mermaid": false + }, + "key_points": null, + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-02-17", + "objectives": [ + "Learns basic concepts of RNAseq analysis" + ], + "pageviews": 32285, + "pub_date": "2017-02-22", + "questions": [ + "How to perform analysis of RNAseq data when reference genome is available?" + ], + "short_id": "T00294", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "1h", + "title": "Reference-based RNAseq data analysis (long)", + "tools": [], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rb-rnaseq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rb-rnaseq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rb-rnaseq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rb-rnaseq/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 132, + "visitors": 20355, + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-bash-star-align/tutorial.json", + "contributions": { + "authorship": [ + "Sofokli5" + ], + "editing": [ + "fpsom", + "shiltemann", + "hexylena", + "carpentries" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "email": "sofoskeisaris@gmail.com", + "id": "Sofokli5", + "joined": "2022-05", + "name": "Sofoklis Keisaris", + "orcid": "0000-0002-4833-4726", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/Sofokli5/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/Sofokli5.json" + }, + { + "affiliations": [ + "gallantries", + "elixir-europe" + ], + "elixir_node": "gr", + "email": "fpsom@certh.gr", + "id": "fpsom", + "joined": "2019-03", + "linkedin": "fpsom", + "matrix": "fpsom:matrix.org", + "name": "Fotis E. Psomopoulos", + "orcid": "0000-0002-0222-4273", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/fpsom/", + "twitter": "fopsom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/fpsom.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "id": "carpentries", + "joined": "2021-09", + "name": "The Carpentries", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/carpentries/", + "ror": "0356fgm10", + "url": "https://training.galaxyproject.org/training-material/api/organisations/carpentries.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-bash-star-align", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rna-seq-bash-star-align", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Bioinformatic command line tools are collections of commands that can be used to carry out bioinformatic analyses.", + "To use most powerful bioinformatic tools, you will need to use the command line.", + "There a few basic steps to follow in order to process the RNA sequences", + "Quality control, trimming and alignment to reference genome are the first part of the RNA-seq downstream analysis" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Learn the basics to process RNA sequences", + "Check the quality and trim the sequences with bash", + "Use command line STAR aligner to map the RNA sequences", + "Estimate the number of reads per gens" + ], + "pageviews": 7718, + "pub_date": "2023-05-15", + "questions": [ + "What are the first steps to process RNA-seq data?" + ], + "short_id": "T00346", + "short_tools": [], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "90M", + "title": "RNA-seq Alignment with STAR", + "tools": [], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-bash-star-align", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-bash-star-align/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-bash-star-align/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-bash-star-align/tutorial.json" + }, + "version": 6, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 85, + "visitors": 6224, + "zenodo_link": "https://zenodo.org/record/6457007" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "volcanoplot", + "owner": "iuc", + "revisions": "83c573f2e73c", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: volcanoplot\n owner: iuc\n revisions: 83c573f2e73c\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot-r/tutorial.json", + "contributors": [ + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + } + ], + "dir": "topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot-r", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/rna-seq-viz-with-volcanoplot-r", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "R can be used to customise Volcano Plot output", + "The RStudio interactive tool can be used to run R inside Galaxy" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Learn how to use R to edit Volcano plot colours, points, labels and categories" + ], + "pageviews": 39244, + "pub_date": "2021-06-14", + "questions": [ + "How to customise Volcano plot output in R?" + ], + "recordings": [ + { + "captioners": [ + "mblue9" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "mblue9" + ], + "youtube_id": "4dspgiwkuxk" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "rstudio" + ], + "type": "internal" + }, + { + "topic_name": "data-science", + "tutorials": [ + "r-basics", + "r-advanced" + ], + "type": "internal" + }, + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-viz-with-volcanoplot", + "rna-seq-counts-to-viz-in-r" + ], + "type": "internal" + } + ], + "short_id": "T00305", + "short_tools": [ + "interactive_tool_rstudio", + "volcanoplot" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "visualisation", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "interactive-tools" + ], + "time_estimation": "1H", + "title": "Visualization of RNA-Seq results with Volcano Plot in R", + "tools": [ + "interactive_tool_rstudio", + "toolshed.g2.bx.psu.edu/repos/iuc/volcanoplot/volcanoplot/0.0.5" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "rna-seq-viz-with-volcanoplot-r", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot-r/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot-r/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/rna-seq-viz-with-volcanoplot-r/tutorial.json" + }, + "version": 8, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 102, + "visitors": 28362, + "zenodo_link": "https://zenodo.org/record/2529117" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "f9242e01365a", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "3f254c5ced1d", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_idxstats", + "owner": "devteam", + "revisions": "7def34e6cf4d", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_idxstats", + "owner": "devteam", + "revisions": "fa5d3e61e429", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_element_identifiers", + "owner": "iuc", + "revisions": "d3c07d270a50", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deg_annotate", + "owner": "iuc", + "revisions": "e98d4ab5b5bc", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deseq2", + "owner": "iuc", + "revisions": "9a882d108833", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dexseq", + "owner": "iuc", + "revisions": "62adf13b86ea", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dexseq", + "owner": "iuc", + "revisions": "62adf13b86ea", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "featurecounts", + "owner": "iuc", + "revisions": "6f66ae7c5f7a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "featurecounts", + "owner": "iuc", + "revisions": "f9d49f5cb597", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ggplot2_heatmap2", + "owner": "iuc", + "revisions": "374e9062d874", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "goseq", + "owner": "iuc", + "revisions": "602de62d995b", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gtftobed12", + "owner": "iuc", + "revisions": "b026dae67fba", + "tool_panel_section_label": "Convert Formats", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "length_and_gc_content", + "owner": "iuc", + "revisions": "e3ba567abdf5", + "tool_panel_section_label": "Extract Features", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pathview", + "owner": "iuc", + "revisions": "f1691de443a7", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pygenometracks", + "owner": "iuc", + "revisions": "360df4999907", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pygenometracks", + "owner": "iuc", + "revisions": "36b848d5f3ec", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "3ea5a2a63fa2", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rgrnastar", + "owner": "iuc", + "revisions": "b0f2be869d6d", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "5826298f6a73", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "6be888be75f9", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "table_compute", + "owner": "iuc", + "revisions": "3bf5661c0280", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "135b80fb1ac2", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "fe74900d6dc7", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "27e16a30667a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "27e16a30667a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "27e16a30667a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: f9242e01365a\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: 3f254c5ced1d\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_idxstats\n owner: devteam\n revisions: 7def34e6cf4d\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_idxstats\n owner: devteam\n revisions: fa5d3e61e429\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_element_identifiers\n owner: iuc\n revisions: d3c07d270a50\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deg_annotate\n owner: iuc\n revisions: e98d4ab5b5bc\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deseq2\n owner: iuc\n revisions: 9a882d108833\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dexseq\n owner: iuc\n revisions: 62adf13b86ea\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dexseq\n owner: iuc\n revisions: 62adf13b86ea\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: featurecounts\n owner: iuc\n revisions: 6f66ae7c5f7a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: featurecounts\n owner: iuc\n revisions: f9d49f5cb597\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ggplot2_heatmap2\n owner: iuc\n revisions: 374e9062d874\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: goseq\n owner: iuc\n revisions: 602de62d995b\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gtftobed12\n owner: iuc\n revisions: b026dae67fba\n tool_panel_section_label: Convert Formats\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: length_and_gc_content\n owner: iuc\n revisions: e3ba567abdf5\n tool_panel_section_label: Extract Features\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pathview\n owner: iuc\n revisions: f1691de443a7\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pygenometracks\n owner: iuc\n revisions: 360df4999907\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pygenometracks\n owner: iuc\n revisions: 36b848d5f3ec\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: 3ea5a2a63fa2\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rgrnastar\n owner: iuc\n revisions: b0f2be869d6d\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 5826298f6a73\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 6be888be75f9\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: table_compute\n owner: iuc\n revisions: 3bf5661c0280\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 135b80fb1ac2\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: fe74900d6dc7\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 27e16a30667a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 27e16a30667a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 27e16a30667a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/ref-based/tutorial.json", + "contributions": { + "authorship": [ + "bebatut", + "malloryfreeberg", + "moheydarian", + "erxleben", + "pavanvidem", + "blankclemens", + "mblue9", + "nsoranzo", + "pvanheus", + "lldelisle" + ], + "editing": [ + "hexylena", + "clsiguret" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "id": "malloryfreeberg", + "joined": "2017-09", + "name": "Mallory Freeberg", + "orcid": "0000-0003-2949-3921", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/malloryfreeberg/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/malloryfreeberg.json" + }, + { + "email": "mheydarian@gmail.com", + "id": "moheydarian", + "joined": "2017-09", + "name": "Mo Heydarian", + "orcid": "0000-0001-9449-9364", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/moheydarian/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/moheydarian.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anikaerxleben@gmail.com", + "id": "erxleben", + "joined": "2017-09", + "name": "Anika Erxleben", + "orcid": "0000-0002-7427-6478", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/erxleben/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/erxleben.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "pavanvidem", + "joined": "2017-09", + "name": "Pavankumar Videm", + "orcid": "0000-0002-5192-126X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pavanvidem/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pavanvidem.json" + }, + { + "elixir_node": "de", + "email": "blankclemens@gmail.com", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "blankclemens", + "joined": "2017-09", + "name": "Clemens Blank", + "orcid": "0000-0002-1726-2256", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankclemens/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankclemens.json" + }, + { + "id": "mblue9", + "joined": "2018-09", + "name": "Maria Doyle", + "orcid": "0000-0003-4847-8436", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mblue9/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mblue9.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + }, + { + "bio": "Research at the South African National Bioinformatics Institute", + "id": "pvanheus", + "joined": "2017-09", + "name": "Peter van Heusden", + "orcid": "0000-0001-6553-5274", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pvanheus/", + "twitter": "pvanheus", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pvanheus.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "ch", + "email": "lucille.delisle@epfl.ch", + "id": "lldelisle", + "joined": "2019-08", + "location": { + "country": "CH", + "lat": 46.52, + "lon": 6.56 + }, + "name": "Lucille Delisle", + "orcid": "0000-0002-1964-4960", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/lldelisle/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/lldelisle.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "ifb", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "clea.siguret@gmail.com", + "id": "clsiguret", + "joined": "2024-04", + "linkedin": "cl\u00e9a-siguret-58423b107", + "matrix": "clsiguret:matrix.org", + "name": "Clea Siguret", + "orcid": "0009-0005-6140-0379", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/clsiguret/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/clsiguret.json" + } + ], + "dir": "topics/transcriptomics/tutorials/ref-based", + "edam_operation": [ + "Visualisation", + "Primer removal", + "Sequencing quality control", + "Sequence alignment", + "Formatting", + "Sequence composition calculation", + "Gene functional annotation", + "Validation", + "Sequence trimming", + "Differential gene expression analysis", + "Statistical calculation", + "Pathway or network visualisation", + "Enrichment analysis", + "Read summarisation", + "RNA-Seq analysis", + "Read pre-processing", + "RNA-Seq quantification", + "Data handling", + "Exonic splicing enhancer prediction", + "Pathway or network analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "transcriptomics", + "tutorials": [ + "rna-seq-viz-with-heatmap2", + "rna-seq-viz-with-volcanoplot", + "rna-seq-genes-to-pathways" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "transcriptomics/ref-based", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": 81142, + "mermaid": false + }, + "key_points": [ + "A spliced mapping tool should be used on eukaryotic RNA-Seq data", + "Numerous factors should be taken into account when running a differential gene expression analysis" + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-07-17", + "objectives": [ + "Check a sequence quality report generated by FastQC for RNA-Seq data", + "Explain the principle and specificity of mapping of RNA-Seq data to an eukaryotic reference genome", + "Select and run a state of the art mapping tool for RNA-Seq data", + "Evaluate the quality of mapping results", + "Describe the process to estimate the library strandness", + "Estimate the number of reads per genes", + "Explain the count normalization to perform before sample comparison", + "Construct and run a differential gene expression analysis", + "Analyze the DESeq2 output to identify, annotate and visualize differentially expressed genes", + "Perform a gene ontology enrichment analysis", + "Perform and visualize an enrichment analysis for KEGG pathways" + ], + "pageviews": 283706, + "priority": 2, + "pub_date": "2016-10-05", + "questions": [ + "What are the steps to process RNA-Seq data?", + "How to identify differentially expressed genes across multiple experimental conditions?", + "What are the biological functions impacted by the differential expression of genes?" + ], + "recordings": [ + { + "captioners": [ + "lldelisle" + ], + "date": "2023-05-15", + "galaxy_version": "23.01", + "length": "2H50M", + "speakers": [ + "lldelisle" + ], + "youtube_id": "AeiW3IItO_c" + }, + { + "captioners": [ + "hexylena", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "2H30M", + "speakers": [ + "bebatut" + ], + "youtube_id": "j4onRSN650A" + } + ], + "short_id": "T00295", + "short_tools": [ + "samtools_view", + "pathview", + "Cut1", + "rseqc_read_distribution", + "rna_star", + "table_compute", + "gtftobed12", + "deseq2", + "__MERGE_COLLECTION__", + "__EXTRACT_DATASET__", + "__TAG_FROM_FILE__", + "Grouping1", + "ggplot2_heatmap2", + "tp_tail_tool", + "featurecounts", + "tp_sort_header_tool", + "ChangeCase", + "length_and_gc_content", + "goseq", + "dexseq", + "pygenomeTracks", + "cat1", + "rseqc_infer_experiment", + "tp_cat", + "deg_annotate", + "samtools_idxstats", + "rseqc_geneBody_coverage", + "Filter1", + "collection_element_identifiers", + "tp_replace_in_line", + "cutadapt", + "join1", + "picard_MarkDuplicates", + "multiqc", + "dexseq_count", + "fastqc", + "Add_a_column1", + "__FLATTEN__" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "introduction", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "bulk", + "rna-seq", + "collections", + "drosophila", + "QC", + "cyoa" + ], + "time_estimation": "8h", + "title": "Reference-based RNA-Seq data analysis", + "tools": [ + "ChangeCase", + "Cut1", + "Filter1", + "Grouping1", + "__EXTRACT_DATASET__", + "__FLATTEN__", + "__MERGE_COLLECTION__", + "__TAG_FROM_FILE__", + "cat1", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.4", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/3.1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.5", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/deg_annotate/deg_annotate/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/dexseq/dexseq/1.28.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/dexseq/dexseq_count/1.28.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.50.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pathview/pathview/1.34.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.3+galaxy0" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "ref-based", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/ref-based/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/ref-based/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/ref-based/tutorial.json" + }, + "version": 93, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 177, + "visitors": 138622, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "description": "Reference-based RNA-Seq data analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDrosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nheader\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nKEGG pathways to plot\"]\n 4[label=\"Extract samples\u2019 name\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Compute gene length\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Extract groups\"]\n 4 -> 6 [label=\"output\"]\n 7[label=\"Change Case\"]\n 5 -> 7 [label=\"length\"]\n 8[label=\"Tag elements with groups\"]\n 0 -> 8 [label=\"output\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"Differential Analysis\"]\n 8 -> 9 [label=\"output\"]\n kc1ff3e9a46d34862adb6076ea951be26[color=lightseagreen,label=\"Output\\nDESeq2_plots\"]\n 9 -> kc1ff3e9a46d34862adb6076ea951be26\n kb430e84ecfa548e892a7ef5630ced1e5[color=lightseagreen,label=\"Output\\nDESeq2_normalized_counts\"]\n 9 -> kb430e84ecfa548e892a7ef5630ced1e5\n 10[label=\"Compute\"]\n 9 -> 10 [label=\"deseq_out\"]\n 11[label=\"Annotate DESeq2/DEXSeq output tables\"]\n 1 -> 11 [label=\"output\"]\n 9 -> 11 [label=\"deseq_out\"]\n 12[label=\"Table Compute\"]\n 9 -> 12 [label=\"counts_out\"]\n 13[label=\"Cut\"]\n 10 -> 13 [label=\"out_file1\"]\n 14[label=\"Concatenate datasets\"]\n 2 -> 14 [label=\"output\"]\n 11 -> 14 [label=\"output\"]\n k11f468377dbb453b962a3c97cb0faad4[color=lightseagreen,label=\"Output\\nDESeq2_annotated_results_with_header\"]\n 14 -> k11f468377dbb453b962a3c97cb0faad4\n 15[label=\"Table Compute\"]\n 9 -> 15 [label=\"counts_out\"]\n 12 -> 15 [label=\"table\"]\n k32004d237c994405a65ffd861b40c949[color=lightseagreen,label=\"Output\\nz_score\"]\n 15 -> k32004d237c994405a65ffd861b40c949\n 16[label=\"Change Case\"]\n 13 -> 16 [label=\"out_file1\"]\n 17[label=\"Filter\"]\n 14 -> 17 [label=\"out_file1\"]\n 18[label=\"goseq\"]\n 16 -> 18 [label=\"out_file1\"]\n 7 -> 18 [label=\"out_file1\"]\n ka0dd739772624336abd6a915ab6be36a[color=lightseagreen,label=\"Output\\ngo_genes\"]\n 18 -> ka0dd739772624336abd6a915ab6be36a\n k659fec584ed54aee9e507acce21113cb[color=lightseagreen,label=\"Output\\ngo_plot\"]\n 18 -> k659fec584ed54aee9e507acce21113cb\n kc06c58d4ab5d49dab481baf668c6fc29[color=lightseagreen,label=\"Output\\ngo_terms\"]\n 18 -> kc06c58d4ab5d49dab481baf668c6fc29\n 19[label=\"goseq\"]\n 16 -> 19 [label=\"out_file1\"]\n 7 -> 19 [label=\"out_file1\"]\n k9872b0179b394cd3b232a305979a782b[color=lightseagreen,label=\"Output\\nkegg_genes\"]\n 19 -> k9872b0179b394cd3b232a305979a782b\n k8d0ac5beac7d4f1085acd3461f561a50[color=lightseagreen,label=\"Output\\nkegg_pathways\"]\n 19 -> k8d0ac5beac7d4f1085acd3461f561a50\n 20[label=\"Cut\"]\n 17 -> 20 [label=\"out_file1\"]\n 21[label=\"Filter\"]\n 17 -> 21 [label=\"out_file1\"]\n 22[label=\"Filter\"]\n 18 -> 22 [label=\"wallenius_tab\"]\n kae7623940e904b9aa7b47cffeccc80a7[color=lightseagreen,label=\"Output\\ngo_underrepresented\"]\n 22 -> kae7623940e904b9aa7b47cffeccc80a7\n 23[label=\"Filter\"]\n 18 -> 23 [label=\"wallenius_tab\"]\n kb788d5b7119c418aa12ba97ef7ea5bf2[color=lightseagreen,label=\"Output\\ngo_overrepresented\"]\n 23 -> kb788d5b7119c418aa12ba97ef7ea5bf2\n 24[label=\"Filter\"]\n 19 -> 24 [label=\"wallenius_tab\"]\n k69f80c89fc7d4bea836f34e68615abcd[color=lightseagreen,label=\"Output\\nkegg_underrepresented\"]\n 24 -> k69f80c89fc7d4bea836f34e68615abcd\n 25[label=\"Filter\"]\n 19 -> 25 [label=\"wallenius_tab\"]\n k930f14610ade4744a83d843108c4b597[color=lightseagreen,label=\"Output\\nkegg_overrepresented\"]\n 25 -> k930f14610ade4744a83d843108c4b597\n 26[label=\"Pathview\"]\n 20 -> 26 [label=\"out_file1\"]\n 3 -> 26 [label=\"output\"]\n k7cdd44756de34c02be8dd76e788980f6[color=lightseagreen,label=\"Output\\npathview_plot\"]\n 26 -> k7cdd44756de34c02be8dd76e788980f6\n 27[label=\"Join two Datasets\"]\n 9 -> 27 [label=\"counts_out\"]\n 21 -> 27 [label=\"out_file1\"]\n 28[label=\"Group\"]\n 22 -> 28 [label=\"out_file1\"]\n kd1ae921d2e2b46d895a24443f5a1b3b4[color=lightseagreen,label=\"Output\\ngo_underrepresented_categories\"]\n 28 -> kd1ae921d2e2b46d895a24443f5a1b3b4\n 29[label=\"Group\"]\n 23 -> 29 [label=\"out_file1\"]\n k4d2d01eb15d24863a5229462c15eb51c[color=lightseagreen,label=\"Output\\ngo_overrepresented_categories\"]\n 29 -> k4d2d01eb15d24863a5229462c15eb51c\n 30[label=\"Cut\"]\n 27 -> 30 [label=\"out_file1\"]\n 31[label=\"heatmap2\"]\n 30 -> 31 [label=\"out_file1\"]\n k42cb6b684ed64b6e9312744b9e0c1442[color=lightseagreen,label=\"Output\\nheatmap_log\"]\n 31 -> k42cb6b684ed64b6e9312744b9e0c1442\n 32[label=\"heatmap2\"]\n 30 -> 32 [label=\"out_file1\"]\n k0ecef5aa76ed4fe792443b32d231e7f3[color=lightseagreen,label=\"Output\\nheatmap_zscore\"]\n 32 -> k0ecef5aa76ed4fe792443b32d231e7f3\n}", + "history": [ + { + "hash": "a1251f28625fc44f278d3f1dfe92a2012fb67f08", + "message": "Removed 'comments' tags", + "num": 24, + "short_hash": "a1251f286", + "unix": "1720172334" + }, + { + "hash": "7d1cc771a5187577e99d204f05086af65ac9e435", + "message": "Updated tools in 'DEG Part' workflow", + "num": 23, + "short_hash": "7d1cc771a", + "unix": "1720170902" + }, + { + "hash": "41dead43e89159a76d1be35922f8e5ef08528656", + "message": "add mo orcid to workflows", + "num": 22, + "short_hash": "41dead43e", + "unix": "1683023467" + }, + { + "hash": "36eb5cf825947a3d4577ab6823ec093795403a33", + "message": "update workflows and tests", + "num": 21, + "short_hash": "36eb5cf82", + "unix": "1682702760" + }, + { + "hash": "bba94e019e6d117d22dbca2c2142ad83a2f13034", + "message": "fix workflow of DEG", + "num": 20, + "short_hash": "bba94e019", + "unix": "1682416061" + }, + { + "hash": "639885e9cbf27560438954cba4a38c34b67b22a0", + "message": "fix deseq2 params", + "num": 19, + "short_hash": "639885e9c", + "unix": "1682409972" + }, + { + "hash": "0e8a4c42bc9ecda7968cc7b700d00582ba65fd34", + "message": "fix input label in workflow deg", + "num": 18, + "short_hash": "0e8a4c42b", + "unix": "1682409528" + }, + { + "hash": "8fc9c9026272ad86f2fe37fe30e5e7a83d634f77", + "message": "add creators and licence to workflows", + "num": 17, + "short_hash": "8fc9c9026", + "unix": "1682408775" + }, + { + "hash": "e9ac61d9e19d5c85c7d72060014f19102e25a916", + "message": "update deg-analysis workflow", + "num": 16, + "short_hash": "e9ac61d9e", + "unix": "1682407959" + }, + { + "hash": "543df91d65a478e52b074f1cb48cd9d0d87cfd4f", + "message": "Update Compute tool to latest version", + "num": 15, + "short_hash": "543df91d6", + "unix": "1673456020" + }, + { + "hash": "47113bebdd0ce805e4061a074e54bed98cca6bb0", + "message": "Fix additional error", + "num": 14, + "short_hash": "47113bebd", + "unix": "1656602552" + }, + { + "hash": "f5e192fc7812f2533014faf4753a30b5588be33d", + "message": "Fix workflow", + "num": 13, + "short_hash": "f5e192fc7", + "unix": "1656599366" + }, + { + "hash": "815b50713588990228312d078d6a9e41f61f2340", + "message": "fix header parameter in deseq2 workflow", + "num": 12, + "short_hash": "815b50713", + "unix": "1650035687" + }, + { + "hash": "d377962b21b393c88e4f1fe0525d5b799b1ff482", + "message": "update workflow", + "num": 11, + "short_hash": "d377962b2", + "unix": "1649974686" + }, + { + "hash": "19e4e06803cf18ecd5844e3f2287291d452bb201", + "message": "update DEG wf and test", + "num": 10, + "short_hash": "19e4e0680", + "unix": "1649939341" + }, + { + "hash": "d3beb91a769086653a2974e56a230716d7ba87ff", + "message": "update deg-analysis workflow and test", + "num": 9, + "short_hash": "d3beb91a7", + "unix": "1649925039" + }, + { + "hash": "a6e8658a77608bb84da39b6ba662903a4e0bd3bf", + "message": "update workflow for part2", + "num": 8, + "short_hash": "a6e8658a7", + "unix": "1649865714" + }, + { + "hash": "e08c38b2b1a0e0ee6e0633bc212f0da79c0ea606", + "message": "add tag", + "num": 7, + "short_hash": "e08c38b2b", + "unix": "1649187411" + }, + { + "hash": "e675ce786071084f83c78cc395c74d606e65053e", + "message": "small updates", + "num": 6, + "short_hash": "e675ce786", + "unix": "1649165237" + }, + { + "hash": "35d565217b91eb38a29a8ec6faec105e770befe1", + "message": "update workflows", + "num": 5, + "short_hash": "35d565217", + "unix": "1649164702" + }, + { + "hash": "05462ddf4288bf9013885da6c20fc8d5a3503028", + "message": "update workflow", + "num": 4, + "short_hash": "05462ddf4", + "unix": "1649159685" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "e477f2b7f7f65f3a6901a4cb3367a03df8a0ee51", + "message": "Split workflow and add more tests", + "num": 1, + "short_hash": "e477f2b7f", + "unix": "1568107379" + } + ], + "inputs": [ + { + "annotation": "Counts obtained by Feature counts", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Counts obtained by Feature counts", + "name": "Input Dataset Collection" + } + ], + "label": "Input Dataset Collection", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 704.0000118426423 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "7e7436a6-e408-4941-81c2-7a86c0c9235a", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "gene annotation", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "gene annotation", + "name": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz" + } + ], + "label": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1086.9356490081586, + "top": 515.6258223738763 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "4f6df6ae-39ac-4a5e-98df-a0cb082a44fe", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "header for annotated DESeq2 output", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "header for annotated DESeq2 output", + "name": "header" + } + ], + "label": "header", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1389.4523086388429, + "top": 389.3128884373022 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "1e56ca57-4228-46ff-9db8-bb13c939f976", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "selected KEGG pathways to plot", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "selected KEGG pathways to plot", + "name": "KEGG pathways to plot" + } + ], + "label": "KEGG pathways to plot", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 2833.11151234649, + "top": 558.210776643221 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "1910edc3-5a7e-493b-8545-10cf0f78f7ba", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nInput Dataset Collection\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nDrosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nheader\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nKEGG pathways to plot\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Extract samples\u2019 name\"];\n 0 -->|output| 4;\n 5[\"Compute gene length\"];\n 1 -->|output| 5;\n 6[\"Extract groups\"];\n 4 -->|output| 6;\n 7[\"Change Case\"];\n 5 -->|length| 7;\n 8[\"Tag elements with groups\"];\n 0 -->|output| 8;\n 6 -->|outfile| 8;\n 9[\"Differential Analysis\"];\n 8 -->|output| 9;\n c1ff3e9a-46d3-4862-adb6-076ea951be26[\"Output\\nDESeq2_plots\"];\n 9 --> c1ff3e9a-46d3-4862-adb6-076ea951be26;\n style c1ff3e9a-46d3-4862-adb6-076ea951be26 stroke:#2c3143,stroke-width:4px;\n b430e84e-cfa5-48e8-92a7-ef5630ced1e5[\"Output\\nDESeq2_normalized_counts\"];\n 9 --> b430e84e-cfa5-48e8-92a7-ef5630ced1e5;\n style b430e84e-cfa5-48e8-92a7-ef5630ced1e5 stroke:#2c3143,stroke-width:4px;\n 10[\"Compute\"];\n 9 -->|deseq_out| 10;\n 11[\"Annotate DESeq2/DEXSeq output tables\"];\n 1 -->|output| 11;\n 9 -->|deseq_out| 11;\n 12[\"Table Compute\"];\n 9 -->|counts_out| 12;\n 13[\"Cut\"];\n 10 -->|out_file1| 13;\n 14[\"Concatenate datasets\"];\n 2 -->|output| 14;\n 11 -->|output| 14;\n 11f46837-7dbb-453b-962a-3c97cb0faad4[\"Output\\nDESeq2_annotated_results_with_header\"];\n 14 --> 11f46837-7dbb-453b-962a-3c97cb0faad4;\n style 11f46837-7dbb-453b-962a-3c97cb0faad4 stroke:#2c3143,stroke-width:4px;\n 15[\"Table Compute\"];\n 9 -->|counts_out| 15;\n 12 -->|table| 15;\n 32004d23-7c99-4405-a65f-fd861b40c949[\"Output\\nz_score\"];\n 15 --> 32004d23-7c99-4405-a65f-fd861b40c949;\n style 32004d23-7c99-4405-a65f-fd861b40c949 stroke:#2c3143,stroke-width:4px;\n 16[\"Change Case\"];\n 13 -->|out_file1| 16;\n 17[\"Filter\"];\n 14 -->|out_file1| 17;\n 18[\"goseq\"];\n 16 -->|out_file1| 18;\n 7 -->|out_file1| 18;\n a0dd7397-7262-4336-abd6-a915ab6be36a[\"Output\\ngo_genes\"];\n 18 --> a0dd7397-7262-4336-abd6-a915ab6be36a;\n style a0dd7397-7262-4336-abd6-a915ab6be36a stroke:#2c3143,stroke-width:4px;\n 659fec58-4ed5-4aee-9e50-7acce21113cb[\"Output\\ngo_plot\"];\n 18 --> 659fec58-4ed5-4aee-9e50-7acce21113cb;\n style 659fec58-4ed5-4aee-9e50-7acce21113cb stroke:#2c3143,stroke-width:4px;\n c06c58d4-ab5d-49da-b481-baf668c6fc29[\"Output\\ngo_terms\"];\n 18 --> c06c58d4-ab5d-49da-b481-baf668c6fc29;\n style c06c58d4-ab5d-49da-b481-baf668c6fc29 stroke:#2c3143,stroke-width:4px;\n 19[\"goseq\"];\n 16 -->|out_file1| 19;\n 7 -->|out_file1| 19;\n 9872b017-9b39-4cd3-b232-a305979a782b[\"Output\\nkegg_genes\"];\n 19 --> 9872b017-9b39-4cd3-b232-a305979a782b;\n style 9872b017-9b39-4cd3-b232-a305979a782b stroke:#2c3143,stroke-width:4px;\n 8d0ac5be-ac7d-4f10-85ac-d3461f561a50[\"Output\\nkegg_pathways\"];\n 19 --> 8d0ac5be-ac7d-4f10-85ac-d3461f561a50;\n style 8d0ac5be-ac7d-4f10-85ac-d3461f561a50 stroke:#2c3143,stroke-width:4px;\n 20[\"Cut\"];\n 17 -->|out_file1| 20;\n 21[\"Filter\"];\n 17 -->|out_file1| 21;\n 22[\"Filter\"];\n 18 -->|wallenius_tab| 22;\n ae762394-0e90-4b9a-a7b4-7cffeccc80a7[\"Output\\ngo_underrepresented\"];\n 22 --> ae762394-0e90-4b9a-a7b4-7cffeccc80a7;\n style ae762394-0e90-4b9a-a7b4-7cffeccc80a7 stroke:#2c3143,stroke-width:4px;\n 23[\"Filter\"];\n 18 -->|wallenius_tab| 23;\n b788d5b7-119c-418a-a12b-a97ef7ea5bf2[\"Output\\ngo_overrepresented\"];\n 23 --> b788d5b7-119c-418a-a12b-a97ef7ea5bf2;\n style b788d5b7-119c-418a-a12b-a97ef7ea5bf2 stroke:#2c3143,stroke-width:4px;\n 24[\"Filter\"];\n 19 -->|wallenius_tab| 24;\n 69f80c89-fc7d-4bea-836f-34e68615abcd[\"Output\\nkegg_underrepresented\"];\n 24 --> 69f80c89-fc7d-4bea-836f-34e68615abcd;\n style 69f80c89-fc7d-4bea-836f-34e68615abcd stroke:#2c3143,stroke-width:4px;\n 25[\"Filter\"];\n 19 -->|wallenius_tab| 25;\n 930f1461-0ade-4744-a83d-843108c4b597[\"Output\\nkegg_overrepresented\"];\n 25 --> 930f1461-0ade-4744-a83d-843108c4b597;\n style 930f1461-0ade-4744-a83d-843108c4b597 stroke:#2c3143,stroke-width:4px;\n 26[\"Pathview\"];\n 20 -->|out_file1| 26;\n 3 -->|output| 26;\n 7cdd4475-6de3-4c02-be8d-d76e788980f6[\"Output\\npathview_plot\"];\n 26 --> 7cdd4475-6de3-4c02-be8d-d76e788980f6;\n style 7cdd4475-6de3-4c02-be8d-d76e788980f6 stroke:#2c3143,stroke-width:4px;\n 27[\"Join two Datasets\"];\n 9 -->|counts_out| 27;\n 21 -->|out_file1| 27;\n 28[\"Group\"];\n 22 -->|out_file1| 28;\n d1ae921d-2e2b-46d8-95a2-4443f5a1b3b4[\"Output\\ngo_underrepresented_categories\"];\n 28 --> d1ae921d-2e2b-46d8-95a2-4443f5a1b3b4;\n style d1ae921d-2e2b-46d8-95a2-4443f5a1b3b4 stroke:#2c3143,stroke-width:4px;\n 29[\"Group\"];\n 23 -->|out_file1| 29;\n 4d2d01eb-15d2-4863-a522-9462c15eb51c[\"Output\\ngo_overrepresented_categories\"];\n 29 --> 4d2d01eb-15d2-4863-a522-9462c15eb51c;\n style 4d2d01eb-15d2-4863-a522-9462c15eb51c stroke:#2c3143,stroke-width:4px;\n 30[\"Cut\"];\n 27 -->|out_file1| 30;\n 31[\"heatmap2\"];\n 30 -->|out_file1| 31;\n 42cb6b68-4ed6-4b6e-9312-744b9e0c1442[\"Output\\nheatmap_log\"];\n 31 --> 42cb6b68-4ed6-4b6e-9312-744b9e0c1442;\n style 42cb6b68-4ed6-4b6e-9312-744b9e0c1442 stroke:#2c3143,stroke-width:4px;\n 32[\"heatmap2\"];\n 30 -->|out_file1| 32;\n 0ecef5aa-76ed-4fe7-9244-3b32d231e7f3[\"Output\\nheatmap_zscore\"];\n 32 --> 0ecef5aa-76ed-4fe7-9244-3b32d231e7f3;\n style 0ecef5aa-76ed-4fe7-9244-3b32d231e7f3 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "DEG Part - Ref Based RNA Seq - Transcriptomics - GTN", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.8+galaxy0", + "errors": null, + "id": 9, + "input_connections": { + "select_data|countsFile": { + "id": 8, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool DESeq2", + "name": "batch_factors" + }, + { + "description": "runtime parameter for tool DESeq2", + "name": "select_data" + } + ], + "label": "Differential Analysis", + "name": "DESeq2", + "outputs": [ + { + "name": "deseq_out", + "type": "tabular" + }, + { + "name": "plots", + "type": "pdf" + }, + { + "name": "counts_out", + "type": "tabular" + } + ], + "position": { + "left": 1112.0313046583487, + "top": 706.9999808695779 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "9a882d108833", + "name": "deseq2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"esf_cond\": {\"esf\": \"\", \"__current_case__\": 0}, \"fit_type\": \"1\", \"outlier_replace_off\": false, \"outlier_filter_off\": false, \"auto_mean_filter_off\": false, \"prefilter_conditional\": {\"prefilter\": \"\", \"__current_case__\": 1}, \"use_beta_priors\": false}, \"batch_factors\": {\"__class__\": \"RuntimeValue\"}, \"header\": true, \"output_options\": {\"output_selector\": [\"pdf\", \"normCounts\"], \"alpha_ma\": \"0.1\"}, \"select_data\": {\"how\": \"group_tags\", \"__current_case__\": 0, \"countsFile\": {\"__class__\": \"ConnectedValue\"}, \"rep_factorName\": [{\"__index__\": 0, \"factorName\": \"Treatment\", \"rep_factorLevel\": [{\"__index__\": 0, \"factorLevel\": \"treated\", \"groups\": [\"treat\"]}, {\"__index__\": 1, \"factorLevel\": \"untreated\", \"groups\": [\"untreat\"]}]}, {\"__index__\": 1, \"factorName\": \"Sequencing\", \"rep_factorLevel\": [{\"__index__\": 0, \"factorLevel\": \"PE\", \"groups\": [\"paired\"]}, {\"__index__\": 1, \"factorLevel\": \"SE\", \"groups\": [\"single\"]}]}]}, \"tximport\": {\"tximport_selector\": \"count\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.11.40.8+galaxy0", + "type": "tool", + "uuid": "45883538-b692-4e35-8dee-d08974682a9c", + "when": null, + "workflow_outputs": [ + { + "label": "DESeq2_plots", + "output_name": "plots", + "uuid": "c1ff3e9a-46d3-4862-adb6-076ea951be26" + }, + { + "label": "DESeq2_normalized_counts", + "output_name": "counts_out", + "uuid": "b430e84e-cfa5-48e8-92a7-ef5630ced1e5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/9.3+galaxy1", + "errors": null, + "id": 14, + "input_connections": { + "inputs": { + "id": 2, + "output_name": "output" + }, + "queries_0|inputs2": { + "id": 11, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Concatenate datasets", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 1632.7537794171217, + "top": 584.790355642699 + }, + "post_job_actions": { + "ChangeDatatypeActionout_file1": { + "action_arguments": { + "newtype": "tabular" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "out_file1" + }, + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Annotated DESeq2 results" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/9.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fbf99087e067", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"inputs\": {\"__class__\": \"ConnectedValue\"}, \"queries\": [{\"__index__\": 0, \"inputs2\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "9.3+galaxy1", + "type": "tool", + "uuid": "5aca8071-b7e2-48b6-ba2e-ef258852578c", + "when": null, + "workflow_outputs": [ + { + "label": "DESeq2_annotated_results_with_header", + "output_name": "out_file1", + "uuid": "11f46837-7dbb-453b-962a-3c97cb0faad4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "errors": null, + "id": 15, + "input_connections": { + "singtabop|tables_0|input": { + "id": 9, + "output_name": "counts_out" + }, + "singtabop|tables_1|input": { + "id": 12, + "output_name": "table" + } + }, + "inputs": [], + "label": null, + "name": "Table Compute", + "outputs": [ + { + "name": "table", + "type": "tabular" + } + ], + "position": { + "left": 1668.0312427122199, + "top": 935.0000409937617 + }, + "post_job_actions": { + "RenameDatasetActiontable": { + "action_arguments": { + "newname": "Z-scores" + }, + "action_type": "RenameDatasetAction", + "output_name": "table" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3bf5661c0280", + "name": "table_compute", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"out_opts\": [\"ignore_nas\", \"output_headers_col\", \"output_headers_row\"], \"precision\": \"6\", \"singtabop\": {\"use_type\": \"multiple\", \"__current_case__\": 1, \"tables\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}, \"col_row_names\": [\"has_col_names\", \"has_row_names\"], \"adv\": {\"header\": null, \"nrows\": null, \"skipfooter\": null, \"skip_blank_lines\": true}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}, \"col_row_names\": [\"has_col_names\", \"has_row_names\"], \"adv\": {\"header\": null, \"nrows\": null, \"skipfooter\": null, \"skip_blank_lines\": true}}], \"fulltable_custom_expr\": \"table2.div(table1.std(1),0)\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.2.4+galaxy0", + "type": "tool", + "uuid": "a0791f4d-f5fb-4106-a198-529bb2c8ceb6", + "when": null, + "workflow_outputs": [ + { + "label": "z_score", + "output_name": "table", + "uuid": "32004d23-7c99-4405-a65f-fd861b40c949" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.50.0+galaxy0", + "errors": null, + "id": 18, + "input_connections": { + "dge_file": { + "id": 16, + "output_name": "out_file1" + }, + "length_file": { + "id": 7, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "goseq", + "outputs": [ + { + "name": "wallenius_tab", + "type": "tabular" + }, + { + "name": "top_plot", + "type": "pdf" + }, + { + "name": "cat_genes_tab", + "type": "tabular" + } + ], + "position": { + "left": 2234.031381180037, + "top": 0 + }, + "post_job_actions": { + "RenameDatasetActioncat_genes_tab": { + "action_arguments": { + "newname": "GO_genes_cat" + }, + "action_type": "RenameDatasetAction", + "output_name": "cat_genes_tab" + }, + "RenameDatasetActionwallenius_tab": { + "action_arguments": { + "newname": "goseq_results_go" + }, + "action_type": "RenameDatasetAction", + "output_name": "wallenius_tab" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.50.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "602de62d995b", + "name": "goseq", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"adv\": {\"p_adj_method\": \"BH\", \"use_genes_without_cat\": false}, \"categorySource\": {\"catSource\": \"getgo\", \"__current_case__\": 0, \"genome\": \"dm6\", \"gene_id\": \"ensGene\", \"fetchcats\": [\"GO:CC\", \"GO:BP\", \"GO:MF\"]}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"dge_file\": {\"__class__\": \"ConnectedValue\"}, \"length_file\": {\"__class__\": \"ConnectedValue\"}, \"methods\": {\"wallenius\": true, \"hypergeometric\": false, \"repcnt\": \"0\"}, \"out\": {\"topgo_plot\": true, \"make_plots\": false, \"cat_genes\": true, \"rdata_out\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.50.0+galaxy0", + "type": "tool", + "uuid": "0f1d352e-3c61-437d-b58a-4b6ba204957f", + "when": null, + "workflow_outputs": [ + { + "label": "go_genes", + "output_name": "cat_genes_tab", + "uuid": "a0dd7397-7262-4336-abd6-a915ab6be36a" + }, + { + "label": "go_plot", + "output_name": "top_plot", + "uuid": "659fec58-4ed5-4aee-9e50-7acce21113cb" + }, + { + "label": "go_terms", + "output_name": "wallenius_tab", + "uuid": "c06c58d4-ab5d-49da-b481-baf668c6fc29" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.50.0+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "dge_file": { + "id": 16, + "output_name": "out_file1" + }, + "length_file": { + "id": 7, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "goseq", + "outputs": [ + { + "name": "wallenius_tab", + "type": "tabular" + }, + { + "name": "cat_genes_tab", + "type": "tabular" + } + ], + "position": { + "left": 2234.031381180037, + "top": 365.00000455486236 + }, + "post_job_actions": { + "RenameDatasetActioncat_genes_tab": { + "action_arguments": { + "newname": "KEGG_genes_cat" + }, + "action_type": "RenameDatasetAction", + "output_name": "cat_genes_tab" + }, + "RenameDatasetActionwallenius_tab": { + "action_arguments": { + "newname": "goseq_results_kegg" + }, + "action_type": "RenameDatasetAction", + "output_name": "wallenius_tab" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.50.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "602de62d995b", + "name": "goseq", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"adv\": {\"p_adj_method\": \"BH\", \"use_genes_without_cat\": false}, \"categorySource\": {\"catSource\": \"getgo\", \"__current_case__\": 0, \"genome\": \"dm6\", \"gene_id\": \"ensGene\", \"fetchcats\": [\"KEGG\"]}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"dge_file\": {\"__class__\": \"ConnectedValue\"}, \"length_file\": {\"__class__\": \"ConnectedValue\"}, \"methods\": {\"wallenius\": true, \"hypergeometric\": false, \"repcnt\": \"0\"}, \"out\": {\"topgo_plot\": false, \"make_plots\": false, \"cat_genes\": true, \"rdata_out\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.50.0+galaxy0", + "type": "tool", + "uuid": "4321eeeb-3486-4b8a-bf4d-15b43462f7bb", + "when": null, + "workflow_outputs": [ + { + "label": "kegg_genes", + "output_name": "cat_genes_tab", + "uuid": "9872b017-9b39-4cd3-b232-a305979a782b" + }, + { + "label": "kegg_pathways", + "output_name": "wallenius_tab", + "uuid": "8d0ac5be-ac7d-4f10-85ac-d3461f561a50" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 22, + "input_connections": { + "input": { + "id": 18, + "output_name": "wallenius_tab" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2512.0312135611007, + "top": 116.9999877018715 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "go_underrepresented" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"cond\": \"c9<0.05\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "377b4b3f-763c-44c5-b199-ee2ecd85583d", + "when": null, + "workflow_outputs": [ + { + "label": "go_underrepresented", + "output_name": "out_file1", + "uuid": "ae762394-0e90-4b9a-a7b4-7cffeccc80a7" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 23, + "input_connections": { + "input": { + "id": 18, + "output_name": "wallenius_tab" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2512.0312135611007, + "top": 247.99998269152283 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "go_overrepresented" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"cond\": \"c8<0.05\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "e2e7918d-b71c-4ea5-a01f-ee5785795dce", + "when": null, + "workflow_outputs": [ + { + "label": "go_overrepresented", + "output_name": "out_file1", + "uuid": "b788d5b7-119c-418a-a12b-a97ef7ea5bf2" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 24, + "input_connections": { + "input": { + "id": 19, + "output_name": "wallenius_tab" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2512.0312135611007, + "top": 454.99998633541276 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "kegg_underrepresented" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"cond\": \"c7<0.05\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "aefea22f-0152-4501-b87a-36ba9959b314", + "when": null, + "workflow_outputs": [ + { + "label": "kegg_underrepresented", + "output_name": "out_file1", + "uuid": "69f80c89-fc7d-4bea-836f-34e68615abcd" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 25, + "input_connections": { + "input": { + "id": 19, + "output_name": "wallenius_tab" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2512.0312135611007, + "top": 585.9999699379081 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "kegg_overrepresented" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"cond\": \"c6<0.05\", \"header_lines\": \"0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "227ef320-a0ab-4f25-ba28-ca1182d95ab1", + "when": null, + "workflow_outputs": [ + { + "label": "kegg_overrepresented", + "output_name": "out_file1", + "uuid": "930f1461-0ade-4744-a83d-843108c4b597" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pathview/pathview/1.34.0+galaxy0", + "errors": null, + "id": 26, + "input_connections": { + "gene_data|tabular": { + "id": 20, + "output_name": "out_file1" + }, + "pathway|tabular": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Pathview", + "name": "gene_data" + }, + { + "description": "runtime parameter for tool Pathview", + "name": "pathway" + } + ], + "label": null, + "name": "Pathview", + "outputs": [ + { + "name": "multiple_kegg_native", + "type": "input" + } + ], + "position": { + "left": 3098.1381093275627, + "top": 638.6223375077626 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pathview/pathview/1.34.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "f1691de443a7", + "name": "pathview", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"cpd_data\": {\"cpd\": \"false\", \"__current_case__\": 1}, \"gene_data\": {\"gd\": \"true\", \"__current_case__\": 0, \"tabular\": {\"__class__\": \"ConnectedValue\"}, \"header\": true, \"idtype\": \"ensembl\"}, \"match_data\": true, \"multi_state\": true, \"out\": {\"kegg_native\": {\"out\": \"TRUE\", \"__current_case__\": 0, \"same_layer\": true, \"map_null\": true}}, \"pathway\": {\"nb\": \"multiple\", \"__current_case__\": 1, \"tabular\": {\"__class__\": \"ConnectedValue\"}, \"header\": false}, \"species\": \"dme\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.34.0+galaxy0", + "type": "tool", + "uuid": "34fd25d1-0532-4061-a549-b4a9e61f4e0c", + "when": null, + "workflow_outputs": [ + { + "label": "pathview_plot", + "output_name": "multiple_kegg_native", + "uuid": "7cdd4475-6de3-4c02-be8d-d76e788980f6" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 28, + "input_connections": { + "input1": { + "id": 22, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2790.03122813666, + "top": 135.99999271222012 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"groupcol\": \"7\", \"ignorecase\": false, \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [{\"__index__\": 0, \"optype\": \"length\", \"opcol\": \"1\", \"opround\": \"no\", \"opdefault\": null}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "f17de348-10b2-4911-b969-efd09e1e9d6b", + "when": null, + "workflow_outputs": [ + { + "label": "go_underrepresented_categories", + "output_name": "out_file1", + "uuid": "d1ae921d-2e2b-46d8-95a2-4443f5a1b3b4" + } + ] + }, + { + "annotation": "", + "content_id": "Grouping1", + "errors": null, + "id": 29, + "input_connections": { + "input1": { + "id": 23, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Group", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 2790.03122813666, + "top": 266.98437591097246 + }, + "post_job_actions": {}, + "tool_id": "Grouping1", + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"groupcol\": \"7\", \"ignorecase\": false, \"ignorelines\": null, \"input1\": {\"__class__\": \"ConnectedValue\"}, \"operations\": [{\"__index__\": 0, \"optype\": \"length\", \"opcol\": \"1\", \"opround\": \"no\", \"opdefault\": null}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.4", + "type": "tool", + "uuid": "ef6f7670-e427-4244-9ce9-c42cee9e6c8c", + "when": null, + "workflow_outputs": [ + { + "label": "go_overrepresented_categories", + "output_name": "out_file1", + "uuid": "4d2d01eb-15d2-4863-a522-9462c15eb51c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3.1+galaxy0", + "errors": null, + "id": 31, + "input_connections": { + "input1": { + "id": 30, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "heatmap2", + "outputs": [ + { + "name": "output1", + "type": "pdf" + } + ], + "position": { + "left": 3068.03124271222, + "top": 840.0000045548624 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "374e9062d874", + "name": "ggplot2_heatmap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"cluster_cond\": {\"cluster\": \"yes\", \"__current_case__\": 0, \"cluster_cols_rows\": \"both\", \"distance\": \"euclidean\", \"clustering\": \"complete\"}, \"colorchoice\": {\"type\": \"two\", \"__current_case__\": 1, \"color1\": \"#ffffff\", \"color2\": \"#ff0000\"}, \"image_file_format\": \"pdf\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"key\": \"\", \"labels\": \"columns\", \"title\": \"\", \"transform\": \"log2plus1\", \"zscore_cond\": {\"zscore\": \"none\", \"__current_case__\": 0, \"scale\": \"none\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.3.1+galaxy0", + "type": "tool", + "uuid": "b8b1d4c3-d8bf-41e1-93ab-00c021d2896f", + "when": null, + "workflow_outputs": [ + { + "label": "heatmap_log", + "output_name": "output1", + "uuid": "42cb6b68-4ed6-4b6e-9312-744b9e0c1442" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3.1+galaxy0", + "errors": null, + "id": 32, + "input_connections": { + "input1": { + "id": 30, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "heatmap2", + "outputs": [ + { + "name": "output1", + "type": "pdf" + } + ], + "position": { + "left": 3068.03124271222, + "top": 1032.0000264182017 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "374e9062d874", + "name": "ggplot2_heatmap2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/dm6.len\", \"cluster_cond\": {\"cluster\": \"yes\", \"__current_case__\": 0, \"cluster_cols_rows\": \"both\", \"distance\": \"euclidean\", \"clustering\": \"complete\"}, \"colorchoice\": {\"type\": \"three\", \"__current_case__\": 2, \"color1\": \"#0000ff\", \"color2\": \"#ffffff\", \"color3\": \"#ff0000\"}, \"image_file_format\": \"pdf\", \"input1\": {\"__class__\": \"ConnectedValue\"}, \"key\": \"\", \"labels\": \"columns\", \"title\": \"\", \"transform\": \"none\", \"zscore_cond\": {\"zscore\": \"rows\", \"__current_case__\": 1}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.3.1+galaxy0", + "type": "tool", + "uuid": "f4f25636-3963-4624-8047-cc5aa286ca0e", + "when": null, + "workflow_outputs": [ + { + "label": "heatmap_zscore", + "output_name": "output1", + "uuid": "0ecef5aa-76ed-4fe7-9244-3b32d231e7f3" + } + ] + } + ], + "parent_id": "transcriptomics/ref-based", + "path": "topics/transcriptomics/tutorials/ref-based/workflows/deg-analysis.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "DEG Part - Ref Based RNA Seq - Transcriptomics - GTN", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-ref-based/versions/deg-analysis", + "tutorial_id": "ref-based", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/deg-analysis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/deg-analysis.html", + "version": 8, + "wfid": "transcriptomics-ref-based", + "wfname": "deg-analysis", + "workflow": "deg-analysis.ga", + "workflow_tools": [ + "ChangeCase", + "Cut1", + "Filter1", + "Grouping1", + "__TAG_FROM_FILE__", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cat/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_element_identifiers/collection_element_identifiers/0.0.2", + "toolshed.g2.bx.psu.edu/repos/iuc/deg_annotate/deg_annotate/1.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_heatmap2/ggplot2_heatmap2/3.1.3.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.50.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/pathview/pathview/1.34.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/table_compute/table_compute/1.2.4+galaxy0" + ], + "workflowhub_id": "1326" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "description": "Reference-based RNA-Seq data analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nsingle fastqs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Collection\\npaired fastqs\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDrosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz\"]\n 3[label=\"Cutadapt: remove bad quality bp\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Flatten paired collection for FastQC\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Cutadapt\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Get gene length\"]\n 2 -> 6 [label=\"output\"]\n k077640ccedbb41859eb1d11b522774af[color=lightseagreen,label=\"Output\\nGene length\"]\n 6 -> k077640ccedbb41859eb1d11b522774af\n 7[label=\"convert gtf to bed12\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"STAR: map single reads\"]\n 2 -> 8 [label=\"output\"]\n 3 -> 8 [label=\"out1\"]\n 9[label=\"Merge fastqs for FastQC\"]\n 4 -> 9 [label=\"output\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"Merge Cutadapt reports\"]\n 5 -> 10 [label=\"report\"]\n 3 -> 10 [label=\"report\"]\n 11[label=\"STAR: map paired reads\"]\n 2 -> 11 [label=\"output\"]\n 5 -> 11 [label=\"out_pairs\"]\n 12[label=\"count reads per gene for SR\"]\n 8 -> 12 [label=\"mapped_reads\"]\n 2 -> 12 [label=\"output\"]\n 13[label=\"FastQC check read qualities\"]\n 9 -> 13 [label=\"output\"]\n 14[label=\"Combine cutadapt results\"]\n 10 -> 14 [label=\"output\"]\n kcab760db5c9d4a3cb768998bfbac6b57[color=lightseagreen,label=\"Output\\nmultiqc_cutadapt_html\"]\n 14 -> kcab760db5c9d4a3cb768998bfbac6b57\n 15[label=\"Merge STAR logs\"]\n 11 -> 15 [label=\"output_log\"]\n 8 -> 15 [label=\"output_log\"]\n 16[label=\"Merge STAR counts\"]\n 8 -> 16 [label=\"reads_per_gene\"]\n 11 -> 16 [label=\"reads_per_gene\"]\n 17[label=\"count fragments per gene for PE\"]\n 11 -> 17 [label=\"mapped_reads\"]\n 2 -> 17 [label=\"output\"]\n k1527b5d7168149349d9e3a5f86ae0fee[color=lightseagreen,label=\"Output\\nfeatureCounts_gene_length\"]\n 17 -> k1527b5d7168149349d9e3a5f86ae0fee\n 18[label=\"Merge STAR BAM\"]\n 11 -> 18 [label=\"mapped_reads\"]\n 8 -> 18 [label=\"mapped_reads\"]\n k802017f4fb1a4243b50d2ed46f746f11[color=lightseagreen,label=\"Output\\nSTAR_BAM\"]\n 18 -> k802017f4fb1a4243b50d2ed46f746f11\n 19[label=\"merge coverage unique strand 1\"]\n 8 -> 19 [label=\"signal_unique_str1\"]\n 11 -> 19 [label=\"signal_unique_str1\"]\n 20[label=\"merge coverage unique strand 2\"]\n 8 -> 20 [label=\"signal_unique_str2\"]\n 11 -> 20 [label=\"signal_unique_str2\"]\n 21[label=\"Combine FastQC results\"]\n 13 -> 21 [label=\"text_file\"]\n k8d0ce9eee4e44c0c8261420ce756ecfd[color=lightseagreen,label=\"Output\\nmultiqc_fastqc_html\"]\n 21 -> k8d0ce9eee4e44c0c8261420ce756ecfd\n 22[label=\"Combine STAR Results\"]\n 15 -> 22 [label=\"output\"]\n k204e3f6c6f5446f0b07c1f31113265e7[color=lightseagreen,label=\"Output\\nmultiqc_star_html\"]\n 22 -> k204e3f6c6f5446f0b07c1f31113265e7\n 23[label=\"Remove statistics from STAR counts\"]\n 16 -> 23 [label=\"output\"]\n 24[label=\"Determine library strandness with STAR\"]\n 16 -> 24 [label=\"output\"]\n kfe7b84dd44664fe794a8408f4ac7ed1a[color=lightseagreen,label=\"Output\\nmultiqc_star_counts_html\"]\n 24 -> kfe7b84dd44664fe794a8408f4ac7ed1a\n 25[label=\"merge counts from featureCounts\"]\n 12 -> 25 [label=\"output_short\"]\n 17 -> 25 [label=\"output_short\"]\n kc82388f8cb094fdf8a0e03cdad579f37[color=lightseagreen,label=\"Output\\nfeatureCounts\"]\n 25 -> kc82388f8cb094fdf8a0e03cdad579f37\n 26[label=\"merge featureCounts summary\"]\n 12 -> 26 [label=\"output_summary\"]\n 17 -> 26 [label=\"output_summary\"]\n 27[label=\"Determine library strandness with Infer Experiment\"]\n 18 -> 27 [label=\"output\"]\n 7 -> 27 [label=\"bed_file\"]\n k940ec3ecdd2e4d50bbc4756945eb16b2[color=lightseagreen,label=\"Output\\ninferexperiment\"]\n 27 -> k940ec3ecdd2e4d50bbc4756945eb16b2\n 28[label=\"Read Distribution\"]\n 18 -> 28 [label=\"output\"]\n 7 -> 28 [label=\"bed_file\"]\n 29[label=\"Compute read distribution statistics\"]\n 18 -> 29 [label=\"output\"]\n 7 -> 29 [label=\"bed_file\"]\n 30[label=\"sample BAM\"]\n 18 -> 30 [label=\"output\"]\n 31[label=\"Get reads number per chromosome\"]\n 18 -> 31 [label=\"output\"]\n 32[label=\"Remove duplicates\"]\n 18 -> 32 [label=\"output\"]\n 33[label=\"Determine library strandness with STAR coverage\"]\n 19 -> 33 [label=\"output\"]\n 20 -> 33 [label=\"output\"]\n 2 -> 33 [label=\"output\"]\n k89e1b05303c2467a95a0d2dc404670ec[color=lightseagreen,label=\"Output\\npgt\"]\n 33 -> k89e1b05303c2467a95a0d2dc404670ec\n 34[label=\"Select unstranded counts\"]\n 23 -> 34 [label=\"outfile\"]\n kbce755beac3b43469ac51128a287bf00[color=lightseagreen,label=\"Output\\ncounts_from_star\"]\n 34 -> kbce755beac3b43469ac51128a287bf00\n 35[label=\"Sort counts to get gene with highest count on feature Counts\"]\n 25 -> 35 [label=\"output\"]\n k6aeb4dd1445f4c66b1ce4bb8faac53db[color=lightseagreen,label=\"Output\\nfeatureCounts_sorted\"]\n 35 -> k6aeb4dd1445f4c66b1ce4bb8faac53db\n 36[label=\"Combine read asignments statistics\"]\n 26 -> 36 [label=\"output\"]\n kfc72242af23c4ceb9a8b5280343ea5d6[color=lightseagreen,label=\"Output\\nmultiqc_featureCounts_html\"]\n 36 -> kfc72242af23c4ceb9a8b5280343ea5d6\n 37[label=\"Combine read distribution on known features\"]\n 29 -> 37 [label=\"output\"]\n k07dca7320ac7432e9e612b77f921a23b[color=lightseagreen,label=\"Output\\nmultiqc_read_distrib\"]\n 37 -> k07dca7320ac7432e9e612b77f921a23b\n 38[label=\"Get gene body coverage\"]\n 30 -> 38 [label=\"outputsam\"]\n 7 -> 38 [label=\"bed_file\"]\n 39[label=\"Combine results on reads per chromosome\"]\n 31 -> 39 [label=\"output\"]\n k7bfa8ae78ffd46a1a56e815ed2c9f1cf[color=lightseagreen,label=\"Output\\nmultiqc_reads_per_chrom\"]\n 39 -> k7bfa8ae78ffd46a1a56e815ed2c9f1cf\n 40[label=\"Combine results of duplicate reads\"]\n 32 -> 40 [label=\"metrics_file\"]\n k66553d0fe851458b82c2f9b30e394bac[color=lightseagreen,label=\"Output\\nmultiqc_dup\"]\n 40 -> k66553d0fe851458b82c2f9b30e394bac\n 41[label=\"Sort counts to get gene with highest count on STAR\"]\n 34 -> 41 [label=\"out_file1\"]\n k383df0080ccb4d6798dd33fa5e2db81e[color=lightseagreen,label=\"Output\\ncounts_from_star_sorted\"]\n 41 -> k383df0080ccb4d6798dd33fa5e2db81e\n 42[label=\"Combine gene body coverage\"]\n 38 -> 42 [label=\"outputtxt\"]\n k8544ea5cfaf244c985d640658fc9b9eb[color=lightseagreen,label=\"Output\\nmultiqc_gene_body_cov\"]\n 42 -> k8544ea5cfaf244c985d640658fc9b9eb\n}", + "history": [ + { + "hash": "a1251f28625fc44f278d3f1dfe92a2012fb67f08", + "message": "Removed 'comments' tags", + "num": 9, + "short_hash": "a1251f286", + "unix": "1720172334" + }, + { + "hash": "d804d52ac9a2915959aa4477708ddffd8a1baa7c", + "message": "Updated tools in 'QC + Mapping + Counting (single+paired)' workflow", + "num": 8, + "short_hash": "d804d52ac", + "unix": "1720171376" + }, + { + "hash": "41dead43e89159a76d1be35922f8e5ef08528656", + "message": "add mo orcid to workflows", + "num": 7, + "short_hash": "41dead43e", + "unix": "1683023467" + }, + { + "hash": "36eb5cf825947a3d4577ab6823ec093795403a33", + "message": "update workflows and tests", + "num": 6, + "short_hash": "36eb5cf82", + "unix": "1682702760" + }, + { + "hash": "8fc9c9026272ad86f2fe37fe30e5e7a83d634f77", + "message": "add creators and licence to workflows", + "num": 5, + "short_hash": "8fc9c9026", + "unix": "1682408775" + }, + { + "hash": "dc21d9ddbdcbe84188785de9ffcd20c348e6f345", + "message": "update images and results, rearrange workflow for part1", + "num": 4, + "short_hash": "dc21d9ddb", + "unix": "1682152148" + }, + { + "hash": "9921a8623ff29e58fb228851833a4f2469508f4e", + "message": "Update first part of the tutorial", + "num": 3, + "short_hash": "9921a8623", + "unix": "1682080630" + }, + { + "hash": "4d2f611a62fcf14f51ce4bac5616c425047fcf80", + "message": "subset BAM before gene body coverage", + "num": 2, + "short_hash": "4d2f611a6", + "unix": "1651159251" + }, + { + "hash": "8bf6877e4449ff61ffa1db9de529757fd5311f07", + "message": "add workflow for PE and SE in parallel", + "num": 1, + "short_hash": "8bf6877e4", + "unix": "1650021373" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "single fastqs" + } + ], + "label": "single fastqs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 476.7511035910253 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "325fe31d-3cd3-4f83-af59-c6aad7a9fd6c", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "paired fastqs" + } + ], + "label": "paired fastqs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 50.07303382701375, + "top": 816.6589347056213 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "f4454c77-b112-496c-ad3c-1bb1ea76d213", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz" + } + ], + "label": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 175.75477651256696, + "top": 2346.097187017292 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "f0ea203b-4f4d-4cf0-8fd7-cc7d305e4afc", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nsingle fastqs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Collection\\npaired fastqs\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nDrosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Cutadapt: remove bad quality bp\"];\n 0 -->|output| 3;\n 4[\"Flatten paired collection for FastQC\"];\n 1 -->|output| 4;\n 5[\"Cutadapt\"];\n 1 -->|output| 5;\n 6[\"Get gene length\"];\n 2 -->|output| 6;\n 077640cc-edbb-4185-9eb1-d11b522774af[\"Output\\nGene length\"];\n 6 --> 077640cc-edbb-4185-9eb1-d11b522774af;\n style 077640cc-edbb-4185-9eb1-d11b522774af stroke:#2c3143,stroke-width:4px;\n 7[\"convert gtf to bed12\"];\n 2 -->|output| 7;\n 8[\"STAR: map single reads\"];\n 2 -->|output| 8;\n 3 -->|out1| 8;\n 9[\"Merge fastqs for FastQC\"];\n 4 -->|output| 9;\n 0 -->|output| 9;\n 10[\"Merge Cutadapt reports\"];\n 5 -->|report| 10;\n 3 -->|report| 10;\n 11[\"STAR: map paired reads\"];\n 2 -->|output| 11;\n 5 -->|out_pairs| 11;\n 12[\"count reads per gene for SR\"];\n 8 -->|mapped_reads| 12;\n 2 -->|output| 12;\n 13[\"FastQC check read qualities\"];\n 9 -->|output| 13;\n 14[\"Combine cutadapt results\"];\n 10 -->|output| 14;\n cab760db-5c9d-4a3c-b768-998bfbac6b57[\"Output\\nmultiqc_cutadapt_html\"];\n 14 --> cab760db-5c9d-4a3c-b768-998bfbac6b57;\n style cab760db-5c9d-4a3c-b768-998bfbac6b57 stroke:#2c3143,stroke-width:4px;\n 15[\"Merge STAR logs\"];\n 11 -->|output_log| 15;\n 8 -->|output_log| 15;\n 16[\"Merge STAR counts\"];\n 8 -->|reads_per_gene| 16;\n 11 -->|reads_per_gene| 16;\n 17[\"count fragments per gene for PE\"];\n 11 -->|mapped_reads| 17;\n 2 -->|output| 17;\n 1527b5d7-1681-4934-9d9e-3a5f86ae0fee[\"Output\\nfeatureCounts_gene_length\"];\n 17 --> 1527b5d7-1681-4934-9d9e-3a5f86ae0fee;\n style 1527b5d7-1681-4934-9d9e-3a5f86ae0fee stroke:#2c3143,stroke-width:4px;\n 18[\"Merge STAR BAM\"];\n 11 -->|mapped_reads| 18;\n 8 -->|mapped_reads| 18;\n 802017f4-fb1a-4243-b50d-2ed46f746f11[\"Output\\nSTAR_BAM\"];\n 18 --> 802017f4-fb1a-4243-b50d-2ed46f746f11;\n style 802017f4-fb1a-4243-b50d-2ed46f746f11 stroke:#2c3143,stroke-width:4px;\n 19[\"merge coverage unique strand 1\"];\n 8 -->|signal_unique_str1| 19;\n 11 -->|signal_unique_str1| 19;\n 20[\"merge coverage unique strand 2\"];\n 8 -->|signal_unique_str2| 20;\n 11 -->|signal_unique_str2| 20;\n 21[\"Combine FastQC results\"];\n 13 -->|text_file| 21;\n 8d0ce9ee-e4e4-4c0c-8261-420ce756ecfd[\"Output\\nmultiqc_fastqc_html\"];\n 21 --> 8d0ce9ee-e4e4-4c0c-8261-420ce756ecfd;\n style 8d0ce9ee-e4e4-4c0c-8261-420ce756ecfd stroke:#2c3143,stroke-width:4px;\n 22[\"Combine STAR Results\"];\n 15 -->|output| 22;\n 204e3f6c-6f54-46f0-b07c-1f31113265e7[\"Output\\nmultiqc_star_html\"];\n 22 --> 204e3f6c-6f54-46f0-b07c-1f31113265e7;\n style 204e3f6c-6f54-46f0-b07c-1f31113265e7 stroke:#2c3143,stroke-width:4px;\n 23[\"Remove statistics from STAR counts\"];\n 16 -->|output| 23;\n 24[\"Determine library strandness with STAR\"];\n 16 -->|output| 24;\n fe7b84dd-4466-4fe7-94a8-408f4ac7ed1a[\"Output\\nmultiqc_star_counts_html\"];\n 24 --> fe7b84dd-4466-4fe7-94a8-408f4ac7ed1a;\n style fe7b84dd-4466-4fe7-94a8-408f4ac7ed1a stroke:#2c3143,stroke-width:4px;\n 25[\"merge counts from featureCounts\"];\n 12 -->|output_short| 25;\n 17 -->|output_short| 25;\n c82388f8-cb09-4fdf-8a0e-03cdad579f37[\"Output\\nfeatureCounts\"];\n 25 --> c82388f8-cb09-4fdf-8a0e-03cdad579f37;\n style c82388f8-cb09-4fdf-8a0e-03cdad579f37 stroke:#2c3143,stroke-width:4px;\n 26[\"merge featureCounts summary\"];\n 12 -->|output_summary| 26;\n 17 -->|output_summary| 26;\n 27[\"Determine library strandness with Infer Experiment\"];\n 18 -->|output| 27;\n 7 -->|bed_file| 27;\n 940ec3ec-dd2e-4d50-bbc4-756945eb16b2[\"Output\\ninferexperiment\"];\n 27 --> 940ec3ec-dd2e-4d50-bbc4-756945eb16b2;\n style 940ec3ec-dd2e-4d50-bbc4-756945eb16b2 stroke:#2c3143,stroke-width:4px;\n 28[\"Read Distribution\"];\n 18 -->|output| 28;\n 7 -->|bed_file| 28;\n 29[\"Compute read distribution statistics\"];\n 18 -->|output| 29;\n 7 -->|bed_file| 29;\n 30[\"sample BAM\"];\n 18 -->|output| 30;\n 31[\"Get reads number per chromosome\"];\n 18 -->|output| 31;\n 32[\"Remove duplicates\"];\n 18 -->|output| 32;\n 33[\"Determine library strandness with STAR coverage\"];\n 19 -->|output| 33;\n 20 -->|output| 33;\n 2 -->|output| 33;\n 89e1b053-03c2-467a-95a0-d2dc404670ec[\"Output\\npgt\"];\n 33 --> 89e1b053-03c2-467a-95a0-d2dc404670ec;\n style 89e1b053-03c2-467a-95a0-d2dc404670ec stroke:#2c3143,stroke-width:4px;\n 34[\"Select unstranded counts\"];\n 23 -->|outfile| 34;\n bce755be-ac3b-4346-9ac5-1128a287bf00[\"Output\\ncounts_from_star\"];\n 34 --> bce755be-ac3b-4346-9ac5-1128a287bf00;\n style bce755be-ac3b-4346-9ac5-1128a287bf00 stroke:#2c3143,stroke-width:4px;\n 35[\"Sort counts to get gene with highest count on feature Counts\"];\n 25 -->|output| 35;\n 6aeb4dd1-445f-4c66-b1ce-4bb8faac53db[\"Output\\nfeatureCounts_sorted\"];\n 35 --> 6aeb4dd1-445f-4c66-b1ce-4bb8faac53db;\n style 6aeb4dd1-445f-4c66-b1ce-4bb8faac53db stroke:#2c3143,stroke-width:4px;\n 36[\"Combine read asignments statistics\"];\n 26 -->|output| 36;\n fc72242a-f23c-4ceb-9a8b-5280343ea5d6[\"Output\\nmultiqc_featureCounts_html\"];\n 36 --> fc72242a-f23c-4ceb-9a8b-5280343ea5d6;\n style fc72242a-f23c-4ceb-9a8b-5280343ea5d6 stroke:#2c3143,stroke-width:4px;\n 37[\"Combine read distribution on known features\"];\n 29 -->|output| 37;\n 07dca732-0ac7-432e-9e61-2b77f921a23b[\"Output\\nmultiqc_read_distrib\"];\n 37 --> 07dca732-0ac7-432e-9e61-2b77f921a23b;\n style 07dca732-0ac7-432e-9e61-2b77f921a23b stroke:#2c3143,stroke-width:4px;\n 38[\"Get gene body coverage\"];\n 30 -->|outputsam| 38;\n 7 -->|bed_file| 38;\n 39[\"Combine results on reads per chromosome\"];\n 31 -->|output| 39;\n 7bfa8ae7-8ffd-46a1-a56e-815ed2c9f1cf[\"Output\\nmultiqc_reads_per_chrom\"];\n 39 --> 7bfa8ae7-8ffd-46a1-a56e-815ed2c9f1cf;\n style 7bfa8ae7-8ffd-46a1-a56e-815ed2c9f1cf stroke:#2c3143,stroke-width:4px;\n 40[\"Combine results of duplicate reads\"];\n 32 -->|metrics_file| 40;\n 66553d0f-e851-458b-82c2-f9b30e394bac[\"Output\\nmultiqc_dup\"];\n 40 --> 66553d0f-e851-458b-82c2-f9b30e394bac;\n style 66553d0f-e851-458b-82c2-f9b30e394bac stroke:#2c3143,stroke-width:4px;\n 41[\"Sort counts to get gene with highest count on STAR\"];\n 34 -->|out_file1| 41;\n 383df008-0ccb-4d67-98dd-33fa5e2db81e[\"Output\\ncounts_from_star_sorted\"];\n 41 --> 383df008-0ccb-4d67-98dd-33fa5e2db81e;\n style 383df008-0ccb-4d67-98dd-33fa5e2db81e stroke:#2c3143,stroke-width:4px;\n 42[\"Combine gene body coverage\"];\n 38 -->|outputtxt| 42;\n 8544ea5c-faf2-44c9-85d6-40658fc9b9eb[\"Output\\nmultiqc_gene_body_cov\"];\n 42 --> 8544ea5c-faf2-44c9-85d6-40658fc9b9eb;\n style 8544ea5c-faf2-44c9-85d6-40658fc9b9eb stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "QC + Mapping + Counting (single+paired) - Ref Based RNA Seq - Transcriptomics - GTN", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2", + "errors": null, + "id": 6, + "input_connections": { + "gtf_file|gtf_history": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Gene length and GC content", + "name": "gtf_file" + } + ], + "label": "Get gene length", + "name": "Gene length and GC content", + "outputs": [ + { + "name": "length", + "type": "tabular" + } + ], + "position": { + "left": 603.3718026543025, + "top": 2128.6774702722637 + }, + "post_job_actions": { + "RenameDatasetActionlength": { + "action_arguments": { + "newname": "Gene IDs and length" + }, + "action_type": "RenameDatasetAction", + "output_name": "length" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2", + "tool_shed_repository": { + "changeset_revision": "e3ba567abdf5", + "name": "length_and_gc_content", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis\": {\"analysis_select\": \"length\", \"__current_case__\": 2}, \"gtf_file\": {\"gtfSource\": \"history\", \"__current_case__\": 1, \"gtf_history\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.2", + "type": "tool", + "uuid": "0a15b35f-2ca8-47a2-b362-576268260c14", + "when": null, + "workflow_outputs": [ + { + "label": "Gene length", + "output_name": "length", + "uuid": "077640cc-edbb-4185-9eb1-d11b522774af" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "errors": null, + "id": 7, + "input_connections": { + "gtf_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "convert gtf to bed12", + "name": "Convert GTF to BED12", + "outputs": [ + { + "name": "bed_file", + "type": "bed12" + } + ], + "position": { + "left": 688.8945967422225, + "top": 2291.5449997175815 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "tool_shed_repository": { + "changeset_revision": "b026dae67fba", + "name": "gtftobed12", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"advanced_options_selector\": \"default\", \"__current_case__\": 0}, \"gtf_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "357", + "type": "tool", + "uuid": "5680925c-6a9a-4766-bd37-df6e1f1aa1e6", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "bed_file", + "uuid": "bbc2e16f-f921-4d98-a306-86f53378adf0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 14, + "input_connections": { + "results_0|software_cond|input": { + "id": 10, + "output_name": "output" + } + }, + "inputs": [], + "label": "Combine cutadapt results", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1236.9954683936348, + "top": 335.1950477431406 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "b568062f-9d32-4927-9d75-c1c596fb7919", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_cutadapt_html", + "output_name": "html_report", + "uuid": "cab760db-5c9d-4a3c-b768-998bfbac6b57" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy2", + "errors": null, + "id": 17, + "input_connections": { + "alignment": { + "id": 11, + "output_name": "mapped_reads" + }, + "anno|reference_gene_sets": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool featureCounts", + "name": "anno" + } + ], + "label": "count fragments per gene for PE", + "name": "featureCounts", + "outputs": [ + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + }, + { + "name": "output_feature_lengths", + "type": "tabular" + } + ], + "position": { + "left": 1422.7976183383619, + "top": 1315.5220634315128 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy2", + "tool_shed_repository": { + "changeset_revision": "f9d49f5cb597", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment\": {\"__class__\": \"ConnectedValue\"}, \"anno\": {\"anno_select\": \"history\", \"__current_case__\": 2, \"reference_gene_sets\": {\"__class__\": \"ConnectedValue\"}, \"gff_feature_type\": \"exon\", \"gff_feature_attribute\": \"gene_id\", \"summarization_level\": false}, \"extended_parameters\": {\"multifeatures\": {\"multifeat\": \"\", \"__current_case__\": 0}, \"exon_exon_junction_read_counting_enabled\": {\"count_exon_exon_junction_reads\": \"\", \"__current_case__\": 1}, \"long_reads\": false, \"by_read_group\": false, \"largest_overlap\": false, \"min_overlap\": \"1\", \"frac_overlap\": \"0\", \"frac_overlap_feature\": \"0\", \"read_extension_5p\": \"0\", \"read_extension_3p\": \"0\", \"read_reduction\": \"\", \"R\": false}, \"format\": \"tabdel_short\", \"include_feature_length_file\": true, \"pe_parameters\": {\"paired_end_status\": \"PE_fragments\", \"__current_case__\": 2, \"check_distance_enabled\": {\"checkFragLength\": \"false\", \"__current_case__\": 1}, \"only_both_ends\": false, \"exclude_chimerics\": true}, \"read_filtering_parameters\": {\"mapping_quality\": \"10\", \"splitonly\": \"\", \"primary\": false, \"ignore_dup\": false}, \"strand_specificity\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.3+galaxy2", + "type": "tool", + "uuid": "04b414a1-8e67-4317-90c3-abd08f102a90", + "when": null, + "workflow_outputs": [ + { + "label": "featureCounts_gene_length", + "output_name": "output_feature_lengths", + "uuid": "1527b5d7-1681-4934-9d9e-3a5f86ae0fee" + } + ] + }, + { + "annotation": "", + "content_id": "__MERGE_COLLECTION__", + "errors": null, + "id": 18, + "input_connections": { + "inputs_0|input": { + "id": 11, + "output_name": "mapped_reads" + }, + "inputs_1|input": { + "id": 8, + "output_name": "mapped_reads" + } + }, + "inputs": [], + "label": "Merge STAR BAM", + "name": "Merge collections", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1079.128235218891, + "top": 1713.8865463518016 + }, + "post_job_actions": {}, + "tool_id": "__MERGE_COLLECTION__", + "tool_state": "{\"advanced\": {\"conflict\": {\"duplicate_options\": \"keep_first\", \"__current_case__\": 3}}, \"inputs\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "1d35f5c9-3c5e-4b0f-8fdc-3e13870f66ce", + "when": null, + "workflow_outputs": [ + { + "label": "STAR_BAM", + "output_name": "output", + "uuid": "802017f4-fb1a-4243-b50d-2ed46f746f11" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 21, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 13, + "output_name": "text_file" + } + }, + "inputs": [], + "label": "Combine FastQC results", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1305.0186330221754, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "b2c8f079-b9f4-4635-baee-3f3c8da65200", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_fastqc_html", + "output_name": "html_report", + "uuid": "8d0ce9ee-e4e4-4c0c-8261-420ce756ecfd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 22, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 15, + "output_name": "output" + } + }, + "inputs": [], + "label": "Combine STAR Results", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1434.596495449901, + "top": 591.1549836409303 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "ae6ddb31-1a1e-4fe0-a7bf-d21661540880", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_star_html", + "output_name": "html_report", + "uuid": "204e3f6c-6f54-46f0-b07c-1f31113265e7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 24, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 16, + "output_name": "output" + } + }, + "inputs": [], + "label": "Determine library strandness with STAR", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1540.5088347281676, + "top": 1623.37799141434 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "50335890-a040-4b20-b5de-78a8de7da01e", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_star_counts_html", + "output_name": "html_report", + "uuid": "fe7b84dd-4466-4fe7-94a8-408f4ac7ed1a" + } + ] + }, + { + "annotation": "", + "content_id": "__MERGE_COLLECTION__", + "errors": null, + "id": 25, + "input_connections": { + "inputs_0|input": { + "id": 12, + "output_name": "output_short" + }, + "inputs_1|input": { + "id": 17, + "output_name": "output_short" + } + }, + "inputs": [], + "label": "merge counts from featureCounts", + "name": "Merge collections", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1675.2464853884808, + "top": 1030.723557795497 + }, + "post_job_actions": {}, + "tool_id": "__MERGE_COLLECTION__", + "tool_state": "{\"advanced\": {\"conflict\": {\"duplicate_options\": \"keep_first\", \"__current_case__\": 3}}, \"inputs\": [{\"__index__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "cddfaee6-0556-4203-a868-431aa4b4d065", + "when": null, + "workflow_outputs": [ + { + "label": "featureCounts", + "output_name": "output", + "uuid": "c82388f8-cb09-4fdf-8a0e-03cdad579f37" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.3+galaxy0", + "errors": null, + "id": 27, + "input_connections": { + "input": { + "id": 18, + "output_name": "output" + }, + "refgene": { + "id": 7, + "output_name": "bed_file" + } + }, + "inputs": [], + "label": "Determine library strandness with Infer Experiment", + "name": "Infer Experiment", + "outputs": [ + { + "name": "output", + "type": "txt" + } + ], + "position": { + "left": 1547.1462188509738, + "top": 2310.3977106748257 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "27e16a30667a", + "name": "rseqc", + "owner": "nilesh", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mapq\": \"30\", \"refgene\": {\"__class__\": \"ConnectedValue\"}, \"sample_size\": \"200000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.3+galaxy0", + "type": "tool", + "uuid": "8c71d3be-671c-4d76-b9cc-5ccb4841a808", + "when": null, + "workflow_outputs": [ + { + "label": "inferexperiment", + "output_name": "output", + "uuid": "940ec3ec-dd2e-4d50-bbc4-756945eb16b2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.3+galaxy0", + "errors": null, + "id": 28, + "input_connections": { + "input": { + "id": 18, + "output_name": "output" + }, + "refgene": { + "id": 7, + "output_name": "bed_file" + } + }, + "inputs": [], + "label": null, + "name": "Read Distribution", + "outputs": [ + { + "name": "output", + "type": "txt" + } + ], + "position": { + "left": 1255.652759512798, + "top": 2481.986655688529 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.3+galaxy0", + "tool_shed_repository": { + "changeset_revision": "27e16a30667a", + "name": "rseqc", + "owner": "nilesh", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"refgene\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.3+galaxy0", + "type": "tool", + "uuid": "b9bd29a0-ddd2-40dc-b020-27eee3d29b9d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8b03b135-6835-4f1e-aaad-42979cdb3718" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/3.1.1.0", + "errors": null, + "id": 32, + "input_connections": { + "inputFile": { + "id": 18, + "output_name": "output" + } + }, + "inputs": [], + "label": "Remove duplicates", + "name": "MarkDuplicates", + "outputs": [ + { + "name": "metrics_file", + "type": "txt" + }, + { + "name": "outFile", + "type": "bam" + } + ], + "position": { + "left": 1036.3616451943753, + "top": 3271.3363418807785 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/3.1.1.0", + "tool_shed_repository": { + "changeset_revision": "3f254c5ced1d", + "name": "picard", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"assume_sorted\": true, \"barcode_tag\": \"\", \"duplicate_scoring_strategy\": \"SUM_OF_BASE_QUALITIES\", \"inputFile\": {\"__class__\": \"ConnectedValue\"}, \"optical_duplicate_pixel_distance\": \"100\", \"read_name_regex\": \"\", \"remove_duplicates\": false, \"validation_stringency\": \"LENIENT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.1.1.0", + "type": "tool", + "uuid": "dfad9102-76f4-42ae-97f6-4ce52a74f32d", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "outFile", + "uuid": "6b44f46a-c340-464e-bb33-b489626f8d63" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy2", + "errors": null, + "id": 33, + "input_connections": { + "tracks_0|track_file_style_conditional|track_input_bedgraph": { + "id": 19, + "output_name": "output" + }, + "tracks_1|track_file_style_conditional|track_input_bedgraph": { + "id": 20, + "output_name": "output" + }, + "tracks_2|track_file_style_conditional|track_input_bed": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "Determine library strandness with STAR coverage", + "name": "pyGenomeTracks", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "left": 1548.0119554164935, + "top": 1822.9879714468914 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy2", + "tool_shed_repository": { + "changeset_revision": "36b848d5f3ec", + "name": "pygenometracks", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"global_args\": {\"title\": null, \"fontsize\": \"12\", \"dpi\": \"72\", \"width\": \"40.0\", \"plotWidth\": null, \"height\": null, \"trackLabelFraction\": \"0.05\", \"trackLabelHAlign\": \"left\", \"decreasingXAxis\": false}, \"image_file_format\": \"png\", \"region\": \"chr4:540,000-560,000\", \"tracks\": [{\"__index__\": 0, \"track_file_style_conditional\": {\"track_file_style_selector\": \"bedgraph_track_option\", \"__current_case__\": 6, \"title\": null, \"track_input_bedgraph\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#1c71d8\", \"alpha\": \"1.0\", \"color_negative\": {\"color_negative_select\": \"false\", \"__current_case__\": 0}, \"min_value\": \"0.0\", \"max_value\": null, \"height_bedgraph\": \"3.0\", \"type_conditional\": {\"type_selector\": \"fill_option\", \"__current_case__\": 2}, \"reading_bdg_as_bw\": {\"summary_method\": \"no\", \"number_of_bins\": null}, \"logScale_conditional\": {\"transform_selector\": \"no\", \"__current_case__\": 0}, \"op\": {\"operation\": \"file\", \"second_file\": {\"__class__\": \"RuntimeValue\"}}, \"nans_to_zeros\": false, \"use_middle\": false, \"show_data\": true, \"grid\": false, \"invert_orientation\": false, \"overlay_select\": \"no\", \"spacer_height\": null}}, {\"__index__\": 1, \"track_file_style_conditional\": {\"track_file_style_selector\": \"bedgraph_track_option\", \"__current_case__\": 6, \"title\": null, \"track_input_bedgraph\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#e01b24\", \"alpha\": \"1.0\", \"color_negative\": {\"color_negative_select\": \"false\", \"__current_case__\": 0}, \"min_value\": \"0.0\", \"max_value\": null, \"height_bedgraph\": \"3.0\", \"type_conditional\": {\"type_selector\": \"fill_option\", \"__current_case__\": 2}, \"reading_bdg_as_bw\": {\"summary_method\": \"no\", \"number_of_bins\": null}, \"logScale_conditional\": {\"transform_selector\": \"no\", \"__current_case__\": 0}, \"op\": {\"operation\": \"file\", \"second_file\": {\"__class__\": \"RuntimeValue\"}}, \"nans_to_zeros\": false, \"use_middle\": false, \"show_data\": true, \"grid\": false, \"invert_orientation\": false, \"overlay_select\": \"no\", \"spacer_height\": null}}, {\"__index__\": 2, \"track_file_style_conditional\": {\"track_file_style_selector\": \"gene_track_option\", \"__current_case__\": 3, \"title\": \"Genes\", \"track_input_bed\": {\"__class__\": \"ConnectedValue\"}, \"color_bed\": {\"color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}, \"border_color_bed\": {\"border_color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}, \"height_bed\": \"5.0\", \"labels\": {\"plot_labels\": \"true\", \"__current_case__\": 0, \"all_labels_inside\": false, \"labels_in_margin\": false, \"fontsize\": null, \"fontstyle\": \"normal\"}, \"display\": \"stacked\", \"bed_style\": {\"bed_style_select\": \"flybase\", \"__current_case__\": 0, \"arrowhead_included\": false, \"arrowhead_fraction\": \"0.004\", \"bed_advanced\": {\"height_utr\": \"1.0\", \"color_utr\": {\"color_utr_select\": \"manually\", \"__current_case__\": 0, \"color\": \"grey\"}, \"global_max_row\": false, \"gene_rows\": null, \"max_labels\": \"60\", \"line_width\": \"0.5\", \"gtf\": {\"prefered_name\": \"transcript_name\", \"merge_transcripts\": {\"merge_transcripts_select\": \"false\", \"__current_case__\": 1}}, \"backbone_color_bed\": {\"backbone_color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}}}, \"overlay_select\": \"no\", \"invert_orientation\": false, \"spacer_height\": null}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.8+galaxy2", + "type": "tool", + "uuid": "8f1e5e65-198c-4d89-bca6-bb5e64c336c0", + "when": null, + "workflow_outputs": [ + { + "label": "pgt", + "output_name": "outFileName", + "uuid": "89e1b053-03c2-467a-95a0-d2dc404670ec" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 34, + "input_connections": { + "input": { + "id": 23, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Select unstranded counts", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1677.9941593590702, + "top": 863.943895440153 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "FeatureCount-like files" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c2\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "a292a23e-88cd-4ee6-8b52-3f8badf8fabf", + "when": null, + "workflow_outputs": [ + { + "label": "counts_from_star", + "output_name": "out_file1", + "uuid": "bce755be-ac3b-4346-9ac5-1128a287bf00" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1", + "errors": null, + "id": 35, + "input_connections": { + "infile": { + "id": 25, + "output_name": "output" + } + }, + "inputs": [], + "label": "Sort counts to get gene with highest count on feature Counts", + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 1961.0549553705087, + "top": 1067.6905725516262 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fbf99087e067", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"header\": \"1\", \"ignore_case\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"2\", \"order\": \"r\", \"style\": \"n\"}], \"unique\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "9.3+galaxy1", + "type": "tool", + "uuid": "0a6a19c3-6b57-4ca7-8d33-16a083fb9673", + "when": null, + "workflow_outputs": [ + { + "label": "featureCounts_sorted", + "output_name": "outfile", + "uuid": "6aeb4dd1-445f-4c66-b1ce-4bb8faac53db" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 36, + "input_connections": { + "results_0|software_cond|input": { + "id": 26, + "output_name": "output" + } + }, + "inputs": [], + "label": "Combine read asignments statistics", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1949.3385552151249, + "top": 1399.7582471086855 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"featureCounts\", \"__current_case__\": 9, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "8a57989b-f25e-4373-853e-cce099a46ff6", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_featureCounts_html", + "output_name": "html_report", + "uuid": "fc72242a-f23c-4ceb-9a8b-5280343ea5d6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 37, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 29, + "output_name": "output" + } + }, + "inputs": [], + "label": "Combine read distribution on known features", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1255.5083996313892, + "top": 2633.375151293929 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"rseqc\", \"__current_case__\": 22, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"read_distribution\", \"__current_case__\": 6, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "788240fb-2e5c-4dd4-9b52-dd88e8a1903f", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_read_distrib", + "output_name": "html_report", + "uuid": "07dca732-0ac7-432e-9e61-2b77f921a23b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 39, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 31, + "output_name": "output" + } + }, + "inputs": [], + "label": "Combine results on reads per chromosome", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1260.7028190245073, + "top": 3058.942374927111 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"samtools\", \"__current_case__\": 24, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"idxstats\", \"__current_case__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "94ede342-3612-4f8b-93ae-b7acf02900f0", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_reads_per_chrom", + "output_name": "html_report", + "uuid": "7bfa8ae7-8ffd-46a1-a56e-815ed2c9f1cf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 40, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 32, + "output_name": "metrics_file" + } + }, + "inputs": [], + "label": "Combine results of duplicate reads", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1257.2398727624286, + "top": 3281.378970585393 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "6c80d685-8b9a-4921-b7b4-cd8a6c268be1", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_dup", + "output_name": "html_report", + "uuid": "66553d0f-e851-458b-82c2-f9b30e394bac" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1", + "errors": null, + "id": 41, + "input_connections": { + "infile": { + "id": 34, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Sort counts to get gene with highest count on STAR", + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 1958.8817979094972, + "top": 863.0787293164416 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fbf99087e067", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"header\": \"0\", \"ignore_case\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"2\", \"order\": \"r\", \"style\": \"n\"}], \"unique\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "9.3+galaxy1", + "type": "tool", + "uuid": "cedf6f89-2976-4324-9788-dc2066fd50cc", + "when": null, + "workflow_outputs": [ + { + "label": "counts_from_star_sorted", + "output_name": "outfile", + "uuid": "383df008-0ccb-4d67-98dd-33fa5e2db81e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 42, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 38, + "output_name": "outputtxt" + } + }, + "inputs": [], + "label": "Combine gene body coverage", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1256.4897509189157, + "top": 2845.740267407461 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"rseqc\", \"__current_case__\": 22, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"gene_body_coverage\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "485ceffe-8183-463d-9f3f-e72b20e762d0", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_gene_body_cov", + "output_name": "html_report", + "uuid": "8544ea5c-faf2-44c9-85d6-40658fc9b9eb" + } + ] + } + ], + "parent_id": "transcriptomics/ref-based", + "path": "topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting-paired-and-single.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "QC + Mapping + Counting (single+paired) - Ref Based RNA Seq - Transcriptomics - GTN", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-ref-based/versions/qc-mapping-counting-paired-and-single", + "tutorial_id": "ref-based", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting-paired-and-single.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting-paired-and-single.html", + "version": 4, + "wfid": "transcriptomics-ref-based", + "wfname": "qc-mapping-counting-paired-and-single", + "workflow": "qc-mapping-counting-paired-and-single.ga", + "workflow_tools": [ + "Cut1", + "__FLATTEN__", + "__MERGE_COLLECTION__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/3.1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.5", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.11a+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.3+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.3+galaxy0" + ], + "workflowhub_id": "1329" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "description": "Reference-based RNA-Seq data analysis", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": true + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nPaired list collection with PE fastqs\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDrosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz\"]\n 2[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nFastQC\"]\n 0 -> 2 [label=\"output\"]\n k5f7652f1e2254ad18dbd4d21544edb89[color=lightseagreen,label=\"Output\\nmultiqc_fastqc_html\"]\n 2 -> k5f7652f1e2254ad18dbd4d21544edb89\n 3[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\ncutadapt\"]\n 0 -> 3 [label=\"output\"]\n k41c7fbb5655b457c8ba70e2eeab3d7ee[color=lightseagreen,label=\"Output\\nmultiqc_cutadapt_html\"]\n 3 -> k41c7fbb5655b457c8ba70e2eeab3d7ee\n 4[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nSTAR + multiQC\"]\n 1 -> 4 [label=\"output\"]\n 3 -> 4 [label=\"out_pairs\"]\n k8aa5ef303f094a93944d0d89101c056a[color=lightseagreen,label=\"Output\\nmultiqc_star_html\"]\n 4 -> k8aa5ef303f094a93944d0d89101c056a\n k11af5c5791b4496c9b0cb02904963f81[color=lightseagreen,label=\"Output\\nSTAR_BAM\"]\n 4 -> k11af5c5791b4496c9b0cb02904963f81\n 5[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nmore QC\"]\n 1 -> 5 [label=\"output\"]\n 4 -> 5 [label=\"STAR_BAM\"]\n kf2eed352ca214d658810f5a1d3c282b4[color=lightseagreen,label=\"Output\\nmultiqc_read_distrib_html\"]\n 5 -> kf2eed352ca214d658810f5a1d3c282b4\n kb306cb12a2754c6db60947fdc208864b[color=lightseagreen,label=\"Output\\nmultiqc_reads_per_chrom_html\"]\n 5 -> kb306cb12a2754c6db60947fdc208864b\n k3375d63ccdc34fbb8a556f504c934918[color=lightseagreen,label=\"Output\\nmultiqc_gene_body_cov_html\"]\n 5 -> k3375d63ccdc34fbb8a556f504c934918\n k3ea82568569849a788fe91381070aac2[color=lightseagreen,label=\"Output\\nmultiqc_dup_html\"]\n 5 -> k3ea82568569849a788fe91381070aac2\n 6[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\nDetermine strandness\"]\n 4 -> 6 [label=\"STAR_BAM\"]\n 1 -> 6 [label=\"output\"]\n 4 -> 6 [label=\"signal_unique_str1\"]\n 4 -> 6 [label=\"signal_unique_str2\"]\n 4 -> 6 [label=\"reads_per_gene\"]\n kfb810859f2d043f8ac7c5c714c5c6805[color=lightseagreen,label=\"Output\\ninferexperiment\"]\n 6 -> kfb810859f2d043f8ac7c5c714c5c6805\n k9727824a3eb2443092d1b3c40c3041d1[color=lightseagreen,label=\"Output\\npgt\"]\n 6 -> k9727824a3eb2443092d1b3c40c3041d1\n k105313d8e31a405d8fcdcc5fd93275e2[color=lightseagreen,label=\"Output\\nmultiqc_star_counts_html\"]\n 6 -> k105313d8e31a405d8fcdcc5fd93275e2\n 7[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\ncount STAR\"]\n 1 -> 7 [label=\"output\"]\n 4 -> 7 [label=\"reads_per_gene\"]\n k5fee8aff402343f1a653f5af5357d798[color=lightseagreen,label=\"Output\\ncounts_from_star\"]\n 7 -> k5fee8aff402343f1a653f5af5357d798\n kbd3388e65b454fdc97803efd1c34ebf8[color=lightseagreen,label=\"Output\\ncounts_from_star_sorted\"]\n 7 -> kbd3388e65b454fdc97803efd1c34ebf8\n k7b7c698b48084b45adf1686f8d273d18[color=lightseagreen,label=\"Output\\nGene length\"]\n 7 -> k7b7c698b48084b45adf1686f8d273d18\n 8[color=lightcoral,label=\"\ud83d\udee0\ufe0f Subworkflow\\ncount featureCount\"]\n 1 -> 8 [label=\"output\"]\n 4 -> 8 [label=\"STAR_BAM\"]\n kf0de47144df8450690d9384537ad663e[color=lightseagreen,label=\"Output\\nfeatureCounts_sorted\"]\n 8 -> kf0de47144df8450690d9384537ad663e\n k8b9d6c766e824691b8bc9996d6ae1594[color=lightseagreen,label=\"Output\\nfeatureCounts_gene_length\"]\n 8 -> k8b9d6c766e824691b8bc9996d6ae1594\n k152ba01ed4f24227881287648a1c19ea[color=lightseagreen,label=\"Output\\nmultiqc_featureCounts_html\"]\n 8 -> k152ba01ed4f24227881287648a1c19ea\n k46c7a2e878194715a0287ad1de9ed605[color=lightseagreen,label=\"Output\\nfeatureCounts\"]\n 8 -> k46c7a2e878194715a0287ad1de9ed605\n}", + "history": [ + { + "hash": "a1251f28625fc44f278d3f1dfe92a2012fb67f08", + "message": "Removed 'comments' tags", + "num": 19, + "short_hash": "a1251f286", + "unix": "1720172334" + }, + { + "hash": "068c0f3036100f1ebc9bf2ebb29f4fcc19d016ce", + "message": "Updated 'QC + Mapping + Counting' workflow", + "num": 18, + "short_hash": "068c0f303", + "unix": "1720171685" + }, + { + "hash": "3377d5c6f10ab4de9f148bd911edd67ac2e83eee", + "message": "update workflow to have steps in the same order as in the tutorial", + "num": 17, + "short_hash": "3377d5c6f", + "unix": "1697808681" + }, + { + "hash": "41dead43e89159a76d1be35922f8e5ef08528656", + "message": "add mo orcid to workflows", + "num": 16, + "short_hash": "41dead43e", + "unix": "1683023467" + }, + { + "hash": "36eb5cf825947a3d4577ab6823ec093795403a33", + "message": "update workflows and tests", + "num": 15, + "short_hash": "36eb5cf82", + "unix": "1682702760" + }, + { + "hash": "f35bb9e7430523d834db15d22d141a81b0c4b29d", + "message": "update zenodo try to make workflow test working", + "num": 14, + "short_hash": "f35bb9e74", + "unix": "1682602202" + }, + { + "hash": "8fc9c9026272ad86f2fe37fe30e5e7a83d634f77", + "message": "add creators and licence to workflows", + "num": 13, + "short_hash": "8fc9c9026", + "unix": "1682408775" + }, + { + "hash": "dc21d9ddbdcbe84188785de9ffcd20c348e6f345", + "message": "update images and results, rearrange workflow for part1", + "num": 12, + "short_hash": "dc21d9ddb", + "unix": "1682152148" + }, + { + "hash": "9921a8623ff29e58fb228851833a4f2469508f4e", + "message": "Update first part of the tutorial", + "num": 11, + "short_hash": "9921a8623", + "unix": "1682080630" + }, + { + "hash": "6203157c411808949b49161ea805f1d6022b95d5", + "message": "revert bdc1fd3", + "num": 10, + "short_hash": "6203157c4", + "unix": "1651739129" + }, + { + "hash": "4d2f611a62fcf14f51ce4bac5616c425047fcf80", + "message": "subset BAM before gene body coverage", + "num": 9, + "short_hash": "4d2f611a6", + "unix": "1651159251" + }, + { + "hash": "bdc1fd3ce7d79e8f7d29a7e8185ce7652aee9bb9", + "message": "switch order of fastqc and flatten", + "num": 8, + "short_hash": "bdc1fd3ce", + "unix": "1651134956" + }, + { + "hash": "8ff9bda0f8351a4acf4c5206ec0d7151965c60d7", + "message": "update workflow to fit test", + "num": 7, + "short_hash": "8ff9bda0f", + "unix": "1649970902" + }, + { + "hash": "bae8287b9f6ceaaf7c0d7bac6735cfc2ade5c5ea", + "message": "update qc workflow and test", + "num": 6, + "short_hash": "bae8287b9", + "unix": "1649940722" + }, + { + "hash": "e08c38b2b1a0e0ee6e0633bc212f0da79c0ea606", + "message": "add tag", + "num": 5, + "short_hash": "e08c38b2b", + "unix": "1649187411" + }, + { + "hash": "35d565217b91eb38a29a8ec6faec105e770befe1", + "message": "update workflows", + "num": 4, + "short_hash": "35d565217", + "unix": "1649164702" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "e477f2b7f7f65f3a6901a4cb3367a03df8a0ee51", + "message": "Split workflow and add more tests", + "num": 1, + "short_hash": "e477f2b7f", + "unix": "1568107379" + } + ], + "inputs": [ + { + "annotation": "input fastqs", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "input fastqs", + "name": "Paired list collection with PE fastqs" + } + ], + "label": "Paired list collection with PE fastqs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 275.24227660278575 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "118b0bd5-bcb9-4927-a9d0-e42fe49b3ca9", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "gtf with genes", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "gtf with genes", + "name": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz" + } + ], + "label": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 52.838781336834245, + "top": 398.2057197467123 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "55ab56cf-bd8a-4ba9-a8d9-9e5c3e6914e7", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nPaired list collection with PE fastqs\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nDrosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\ud83d\udee0\ufe0f Subworkflow\\nFastQC\"];\n style 2 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 2;\n 5f7652f1-e225-4ad1-8dbd-4d21544edb89[\"Output\\nmultiqc_fastqc_html\"];\n 2 --> 5f7652f1-e225-4ad1-8dbd-4d21544edb89;\n style 5f7652f1-e225-4ad1-8dbd-4d21544edb89 stroke:#2c3143,stroke-width:4px;\n 3[\"\ud83d\udee0\ufe0f Subworkflow\\ncutadapt\"];\n style 3 fill:#edd,stroke:#900,stroke-width:4px;\n 0 -->|output| 3;\n 41c7fbb5-655b-457c-8ba7-0e2eeab3d7ee[\"Output\\nmultiqc_cutadapt_html\"];\n 3 --> 41c7fbb5-655b-457c-8ba7-0e2eeab3d7ee;\n style 41c7fbb5-655b-457c-8ba7-0e2eeab3d7ee stroke:#2c3143,stroke-width:4px;\n 4[\"\ud83d\udee0\ufe0f Subworkflow\\nSTAR + multiQC\"];\n style 4 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 4;\n 3 -->|out_pairs| 4;\n 8aa5ef30-3f09-4a93-944d-0d89101c056a[\"Output\\nmultiqc_star_html\"];\n 4 --> 8aa5ef30-3f09-4a93-944d-0d89101c056a;\n style 8aa5ef30-3f09-4a93-944d-0d89101c056a stroke:#2c3143,stroke-width:4px;\n 11af5c57-91b4-496c-9b0c-b02904963f81[\"Output\\nSTAR_BAM\"];\n 4 --> 11af5c57-91b4-496c-9b0c-b02904963f81;\n style 11af5c57-91b4-496c-9b0c-b02904963f81 stroke:#2c3143,stroke-width:4px;\n 5[\"\ud83d\udee0\ufe0f Subworkflow\\nmore QC\"];\n style 5 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 5;\n 4 -->|STAR_BAM| 5;\n f2eed352-ca21-4d65-8810-f5a1d3c282b4[\"Output\\nmultiqc_read_distrib_html\"];\n 5 --> f2eed352-ca21-4d65-8810-f5a1d3c282b4;\n style f2eed352-ca21-4d65-8810-f5a1d3c282b4 stroke:#2c3143,stroke-width:4px;\n b306cb12-a275-4c6d-b609-47fdc208864b[\"Output\\nmultiqc_reads_per_chrom_html\"];\n 5 --> b306cb12-a275-4c6d-b609-47fdc208864b;\n style b306cb12-a275-4c6d-b609-47fdc208864b stroke:#2c3143,stroke-width:4px;\n 3375d63c-cdc3-4fbb-8a55-6f504c934918[\"Output\\nmultiqc_gene_body_cov_html\"];\n 5 --> 3375d63c-cdc3-4fbb-8a55-6f504c934918;\n style 3375d63c-cdc3-4fbb-8a55-6f504c934918 stroke:#2c3143,stroke-width:4px;\n 3ea82568-5698-49a7-88fe-91381070aac2[\"Output\\nmultiqc_dup_html\"];\n 5 --> 3ea82568-5698-49a7-88fe-91381070aac2;\n style 3ea82568-5698-49a7-88fe-91381070aac2 stroke:#2c3143,stroke-width:4px;\n 6[\"\ud83d\udee0\ufe0f Subworkflow\\nDetermine strandness\"];\n style 6 fill:#edd,stroke:#900,stroke-width:4px;\n 4 -->|STAR_BAM| 6;\n 1 -->|output| 6;\n 4 -->|signal_unique_str1| 6;\n 4 -->|signal_unique_str2| 6;\n 4 -->|reads_per_gene| 6;\n fb810859-f2d0-43f8-ac7c-5c714c5c6805[\"Output\\ninferexperiment\"];\n 6 --> fb810859-f2d0-43f8-ac7c-5c714c5c6805;\n style fb810859-f2d0-43f8-ac7c-5c714c5c6805 stroke:#2c3143,stroke-width:4px;\n 9727824a-3eb2-4430-92d1-b3c40c3041d1[\"Output\\npgt\"];\n 6 --> 9727824a-3eb2-4430-92d1-b3c40c3041d1;\n style 9727824a-3eb2-4430-92d1-b3c40c3041d1 stroke:#2c3143,stroke-width:4px;\n 105313d8-e31a-405d-8fcd-cc5fd93275e2[\"Output\\nmultiqc_star_counts_html\"];\n 6 --> 105313d8-e31a-405d-8fcd-cc5fd93275e2;\n style 105313d8-e31a-405d-8fcd-cc5fd93275e2 stroke:#2c3143,stroke-width:4px;\n 7[\"\ud83d\udee0\ufe0f Subworkflow\\ncount STAR\"];\n style 7 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 7;\n 4 -->|reads_per_gene| 7;\n 5fee8aff-4023-43f1-a653-f5af5357d798[\"Output\\ncounts_from_star\"];\n 7 --> 5fee8aff-4023-43f1-a653-f5af5357d798;\n style 5fee8aff-4023-43f1-a653-f5af5357d798 stroke:#2c3143,stroke-width:4px;\n bd3388e6-5b45-4fdc-9780-3efd1c34ebf8[\"Output\\ncounts_from_star_sorted\"];\n 7 --> bd3388e6-5b45-4fdc-9780-3efd1c34ebf8;\n style bd3388e6-5b45-4fdc-9780-3efd1c34ebf8 stroke:#2c3143,stroke-width:4px;\n 7b7c698b-4808-4b45-adf1-686f8d273d18[\"Output\\nGene length\"];\n 7 --> 7b7c698b-4808-4b45-adf1-686f8d273d18;\n style 7b7c698b-4808-4b45-adf1-686f8d273d18 stroke:#2c3143,stroke-width:4px;\n 8[\"\ud83d\udee0\ufe0f Subworkflow\\ncount featureCount\"];\n style 8 fill:#edd,stroke:#900,stroke-width:4px;\n 1 -->|output| 8;\n 4 -->|STAR_BAM| 8;\n f0de4714-4df8-4506-90d9-384537ad663e[\"Output\\nfeatureCounts_sorted\"];\n 8 --> f0de4714-4df8-4506-90d9-384537ad663e;\n style f0de4714-4df8-4506-90d9-384537ad663e stroke:#2c3143,stroke-width:4px;\n 8b9d6c76-6e82-4691-b8bc-9996d6ae1594[\"Output\\nfeatureCounts_gene_length\"];\n 8 --> 8b9d6c76-6e82-4691-b8bc-9996d6ae1594;\n style 8b9d6c76-6e82-4691-b8bc-9996d6ae1594 stroke:#2c3143,stroke-width:4px;\n 152ba01e-d4f2-4227-8812-87648a1c19ea[\"Output\\nmultiqc_featureCounts_html\"];\n 8 --> 152ba01e-d4f2-4227-8812-87648a1c19ea;\n style 152ba01e-d4f2-4227-8812-87648a1c19ea stroke:#2c3143,stroke-width:4px;\n 46c7a2e8-7819-4715-a028-7ad1de9ed605[\"Output\\nfeatureCounts\"];\n 8 --> 46c7a2e8-7819-4715-a028-7ad1de9ed605;\n style 46c7a2e8-7819-4715-a028-7ad1de9ed605 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "QC + Mapping + Counting - Ref Based RNA Seq - Transcriptomics - GTN - subworkflows", + "outputs": [ + { + "annotation": "", + "id": 2, + "input_connections": { + "Paired list collection with PE fastqs": { + "id": 0, + "input_subworkflow_step_id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [], + "position": { + "left": 302.921245411475, + "top": 75.1395719376911 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "format-version": "0.1", + "license": "MIT", + "name": "FastQC", + "steps": { + "0": { + "annotation": "input fastqs", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "input fastqs", + "name": "Paired list collection with PE fastqs" + } + ], + "label": "Paired list collection with PE fastqs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "118b0bd5-bcb9-4927-a9d0-e42fe49b3ca9", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": "__FLATTEN__", + "errors": null, + "id": 1, + "input_connections": { + "input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Flatten collection for FastQC", + "name": "Flatten collection", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 298.13330078125, + "top": 4.350006103515625 + }, + "post_job_actions": {}, + "tool_id": "__FLATTEN__", + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"join_identifier\": \"_\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "cb22432a-62c1-4469-8d55-f544a355de2a", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "errors": null, + "id": 2, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + } + ], + "label": "FastQC check read qualities", + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 549.800048828125, + "top": 7.5333251953125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "tool_shed_repository": { + "changeset_revision": "3d0c7bdf12f5", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapters\": {\"__class__\": \"RuntimeValue\"}, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"min_length\": null, \"nogroup\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.73+galaxy0", + "type": "tool", + "uuid": "46123d1b-6de3-4484-b9c8-8c0f4f84c745", + "when": null, + "workflow_outputs": [] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 2, + "output_name": "text_file" + } + }, + "inputs": [], + "label": "Combine FastQC results", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 839.11669921875, + "top": 178.73880790038464 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "12c04a3a-06c3-4305-a985-bf25a9ca16f1", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_fastqc_html", + "output_name": "html_report", + "uuid": "723286a5-6825-4c4a-a24e-c76daef14c87" + } + ] + } + }, + "tags": "", + "uuid": "210450ba-2e36-4911-907f-7825a1014e04" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "3fe202d6-6f9a-4498-baa1-12d292642ce0", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_fastqc_html", + "output_name": "multiqc_fastqc_html", + "uuid": "5f7652f1-e225-4ad1-8dbd-4d21544edb89" + } + ] + }, + { + "annotation": "", + "id": 3, + "input_connections": { + "Paired list collection with PE fastqs": { + "id": 0, + "input_subworkflow_step_id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "cutadapt", + "outputs": [], + "position": { + "left": 323.98743138529795, + "top": 258.2717063852339 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "format-version": "0.1", + "license": "MIT", + "name": "cutadapt", + "steps": { + "0": { + "annotation": "input fastqs", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "input fastqs", + "name": "Paired list collection with PE fastqs" + } + ], + "label": "Paired list collection with PE fastqs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 4 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "118b0bd5-bcb9-4927-a9d0-e42fe49b3ca9", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "errors": null, + "id": 1, + "input_connections": { + "library|input_1": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Cutadapt", + "name": "library" + } + ], + "label": "Cutadapt: remove bad quality bp", + "name": "Cutadapt", + "outputs": [ + { + "name": "out_pairs", + "type": "input" + }, + { + "name": "report", + "type": "txt" + } + ], + "position": { + "left": 280, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "tool_shed_repository": { + "changeset_revision": "135b80fb1ac2", + "name": "cutadapt", + "owner": "lparsons", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adapter_options\": {\"action\": \"trim\", \"internal\": \"\", \"error_rate\": \"0.1\", \"no_indels\": false, \"times\": \"1\", \"overlap\": \"3\", \"match_read_wildcards\": \" \", \"revcomp\": false}, \"filter_options\": {\"discard_trimmed\": false, \"discard_untrimmed\": false, \"minimum_length\": \"20\", \"maximum_length\": null, \"length_R2_options\": {\"length_R2_status\": \"False\", \"__current_case__\": 1}, \"max_n\": null, \"pair_filter\": \"any\", \"max_expected_errors\": null, \"discard_cassava\": false}, \"library\": {\"type\": \"paired_collection\", \"__current_case__\": 2, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"r1\": {\"adapters\": [], \"front_adapters\": [], \"anywhere_adapters\": [], \"cut\": \"0\"}, \"r2\": {\"adapters2\": [], \"front_adapters2\": [], \"anywhere_adapters2\": [], \"cut2\": \"0\", \"quality_cutoff2\": \"\"}}, \"output_selector\": [\"report\"], \"read_mod_options\": {\"quality_cutoff\": \"20\", \"nextseq_trim\": \"0\", \"trim_n\": false, \"strip_suffix\": \"\", \"shorten_options\": {\"shorten_values\": \"False\", \"__current_case__\": 1}, \"length_tag\": \"\", \"rename\": \"\", \"zero_cap\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.0+galaxy1", + "type": "tool", + "uuid": "c1da3843-d9aa-4e67-9dd4-918b0e85df51", + "when": null, + "workflow_outputs": [ + { + "label": "out_pairs", + "output_name": "out_pairs", + "uuid": "5ca011fe-463b-49c4-a9e8-c6aac262608e" + } + ] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "results_0|software_cond|input": { + "id": 1, + "output_name": "report" + } + }, + "inputs": [], + "label": "Combine cutadapt results", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 560, + "top": 31 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "fe09dd01-4a43-44f7-bce7-0cb22ddb04bb", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_cutadapt_html", + "output_name": "html_report", + "uuid": "f19adb3e-0bbd-4a11-864a-679ec61add63" + } + ] + } + }, + "tags": "", + "uuid": "9836eb83-c5d0-4c72-b5ee-21385777aff8" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "5a440808-9c88-49b3-ae55-3b4594f5b4c0", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_cutadapt_html", + "output_name": "multiqc_cutadapt_html", + "uuid": "41c7fbb5-655b-457c-8ba7-0e2eeab3d7ee" + } + ] + }, + { + "annotation": "", + "id": 4, + "input_connections": { + "GTF": { + "id": 1, + "input_subworkflow_step_id": 1, + "output_name": "output" + }, + "Paired list collection with PE fastqs": { + "id": 3, + "input_subworkflow_step_id": 0, + "output_name": "out_pairs" + } + }, + "inputs": [], + "label": null, + "name": "STAR + multiQC", + "outputs": [], + "position": { + "left": 634.238586763555, + "top": 271.54636895011305 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "format-version": "0.1", + "license": "MIT", + "name": "STAR + multiQC", + "steps": { + "0": { + "annotation": "input fastqs", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "input fastqs", + "name": "Paired list collection with PE fastqs" + } + ], + "label": "Paired list collection with PE fastqs", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 7 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "118b0bd5-bcb9-4927-a9d0-e42fe49b3ca9", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "gtf with genes", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "gtf with genes", + "name": "GTF" + } + ], + "label": "GTF", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "55ab56cf-bd8a-4ba9-a8d9-9e5c3e6914e7", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "errors": null, + "id": 2, + "input_connections": { + "refGenomeSource|GTFconditional|sjdbGTFfile": { + "id": 1, + "output_name": "output" + }, + "singlePaired|input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool RNA STAR", + "name": "singlePaired" + } + ], + "label": "STAR: map reads", + "name": "RNA STAR", + "outputs": [ + { + "name": "output_log", + "type": "txt" + }, + { + "name": "splice_junctions", + "type": "interval" + }, + { + "name": "mapped_reads", + "type": "bam" + }, + { + "name": "reads_per_gene", + "type": "tabular" + }, + { + "name": "signal_unique_str1", + "type": "bedgraph" + }, + { + "name": "signal_uniquemultiple_str1", + "type": "bedgraph" + }, + { + "name": "signal_unique_str2", + "type": "bedgraph" + }, + { + "name": "signal_uniquemultiple_str2", + "type": "bedgraph" + } + ], + "position": { + "left": 280, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "tool_shed_repository": { + "changeset_revision": "3ea5a2a63fa2", + "name": "rgrnastar", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"algo\": {\"params\": {\"settingsType\": \"default\", \"__current_case__\": 0}}, \"chimOutType\": \"\", \"filter\": {\"basic_filters\": null, \"output_params2\": {\"output_select2\": \"no\", \"__current_case__\": 1}}, \"oformat\": {\"outSAMattributes\": [\"NH\", \"HI\", \"AS\", \"nM\", \"ch\"], \"HI_offset\": \"1\", \"outSAMprimaryFlag\": \"OneBestScore\", \"outSAMmapqUnique\": \"60\"}, \"outWig\": {\"outWigType\": \"bedGraph\", \"__current_case__\": 1, \"outWigTypeSecondWord\": \"\", \"outWigStrand\": true, \"outWigReferencesPrefix\": \"-\", \"outWigNorm\": true}, \"perf\": {\"outBAMsortingBinsN\": \"50\", \"winAnchorMultimapNmax\": \"50\"}, \"refGenomeSource\": {\"geneSource\": \"indexed\", \"__current_case__\": 0, \"GTFconditional\": {\"GTFselect\": \"without-gtf-with-gtf\", \"__current_case__\": 1, \"genomeDir\": \"dm6full\", \"sjdbGTFfile\": {\"__class__\": \"ConnectedValue\"}, \"sjdbOverhang\": \"36\", \"quantmode_output\": {\"quantMode\": \"GeneCounts\", \"__current_case__\": 1}}}, \"singlePaired\": {\"sPaired\": \"paired_collection\", \"__current_case__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"twopass\": {\"twopassMode\": \"None\", \"__current_case__\": 0, \"twopass_read_subset\": \"\", \"sj_precalculated\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.7.10b+galaxy3", + "type": "tool", + "uuid": "2f28336b-f441-48d2-b8ea-fc4d0ef80b17", + "when": null, + "workflow_outputs": [ + { + "label": "STAR_BAM", + "output_name": "mapped_reads", + "uuid": "a7b3ca4d-ce11-4eec-88f6-613adbc4a171" + }, + { + "label": "reads_per_gene", + "output_name": "reads_per_gene", + "uuid": "3877a51c-ab39-4763-b827-bbc64b400783" + }, + { + "label": "signal_unique_str1", + "output_name": "signal_unique_str1", + "uuid": "c70c56d3-682e-4486-a44e-5af0fa9ec052" + }, + { + "label": "signal_unique_str2", + "output_name": "signal_unique_str2", + "uuid": "ee1b39e8-c64e-4a91-9d60-b2d21c4de980" + } + ] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 2, + "output_name": "output_log" + } + }, + "inputs": [], + "label": "Combine STAR Results", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 560, + "top": 239 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"log\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "a6097d54-33ac-4c3e-a1bd-5a15253fce6a", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_star_html", + "output_name": "html_report", + "uuid": "18c6f4c8-63b6-43d6-8758-bdf5b02d2154" + } + ] + } + }, + "tags": "", + "uuid": "c5a39592-38bd-48b5-93e4-52b7ddb81ea9" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "e53d0974-3a24-49f8-b495-605d1cdf443e", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_star_html", + "output_name": "multiqc_star_html", + "uuid": "8aa5ef30-3f09-4a93-944d-0d89101c056a" + }, + { + "label": "STAR_BAM", + "output_name": "STAR_BAM", + "uuid": "11af5c57-91b4-496c-9b0c-b02904963f81" + } + ] + }, + { + "annotation": "", + "id": 5, + "input_connections": { + "GTF": { + "id": 1, + "input_subworkflow_step_id": 0, + "output_name": "output" + }, + "List of BAM": { + "id": 4, + "input_subworkflow_step_id": 1, + "output_name": "STAR_BAM" + } + }, + "inputs": [], + "label": null, + "name": "more QC", + "outputs": [], + "position": { + "left": 851.7259301168125, + "top": 0 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "format-version": "0.1", + "license": "MIT", + "name": "more QC", + "steps": { + "0": { + "annotation": "gtf with genes", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "gtf with genes", + "name": "GTF" + } + ], + "label": "GTF", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "55ab56cf-bd8a-4ba9-a8d9-9e5c3e6914e7", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "input BAM", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "input BAM", + "name": "List of BAM" + } + ], + "label": "List of BAM", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 36.34535932617132, + "top": 158.2841183821086 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "118b0bd5-bcb9-4927-a9d0-e42fe49b3ca9", + "when": null, + "workflow_outputs": [] + }, + "10": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 6, + "output_name": "outputtxt" + } + }, + "inputs": [], + "label": "Combine gene body coverage", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1069.4676437358169, + "top": 877.3256294399106 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"rseqc\", \"__current_case__\": 22, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"gene_body_coverage\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "583d5c19-a909-4017-ad5d-4cfec35470e4", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_gene_body_cov_html", + "output_name": "html_report", + "uuid": "3d6db544-284e-4de4-881e-eef302fc6a2d" + } + ] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "errors": null, + "id": 2, + "input_connections": { + "gtf_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "convert gtf to bed12", + "name": "Convert GTF to BED12", + "outputs": [ + { + "name": "bed_file", + "type": "bed12" + } + ], + "position": { + "left": 299.29998779296875, + "top": 65.86669921875 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "tool_shed_repository": { + "changeset_revision": "b026dae67fba", + "name": "gtftobed12", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"advanced_options_selector\": \"default\", \"__current_case__\": 0}, \"gtf_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "357", + "type": "tool", + "uuid": "ce4a827c-2862-4d19-bf69-fe41e996e4e3", + "when": null, + "workflow_outputs": [] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "errors": null, + "id": 3, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Get reads number per chromosome", + "name": "Samtools idxstats", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 755.7583156118103, + "top": 196.05603247367742 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "tool_shed_repository": { + "changeset_revision": "7def34e6cf4d", + "name": "samtools_idxstats", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.4", + "type": "tool", + "uuid": "a6c99075-2559-486d-9295-a500517cdcdd", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.4", + "errors": null, + "id": 4, + "input_connections": { + "inputFile": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "Remove duplicates", + "name": "MarkDuplicates", + "outputs": [ + { + "name": "metrics_file", + "type": "txt" + }, + { + "name": "outFile", + "type": "bam" + } + ], + "position": { + "left": 766.9932905519248, + "top": 420.38104734970705 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.4", + "tool_shed_repository": { + "changeset_revision": "f9242e01365a", + "name": "picard", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"assume_sorted\": true, \"barcode_tag\": \"\", \"duplicate_scoring_strategy\": \"SUM_OF_BASE_QUALITIES\", \"inputFile\": {\"__class__\": \"ConnectedValue\"}, \"optical_duplicate_pixel_distance\": \"100\", \"read_name_regex\": \"\", \"remove_duplicates\": false, \"validation_stringency\": \"LENIENT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.18.2.4", + "type": "tool", + "uuid": "71f83b88-974b-4852-94c1-30d6101844f3", + "when": null, + "workflow_outputs": [] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy2", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 1, + "output_name": "output" + }, + "refgene": { + "id": 2, + "output_name": "bed_file" + } + }, + "inputs": [], + "label": "Compute read distribution statistics", + "name": "Read Distribution", + "outputs": [ + { + "name": "output", + "type": "txt" + } + ], + "position": { + "left": 789.4676437358169, + "top": 657.3256294399106 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "473382134e56", + "name": "rseqc", + "owner": "nilesh", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"refgene\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.1+galaxy2", + "type": "tool", + "uuid": "e2f3d348-0e3f-4b15-9a69-d8a8f98f1dfc", + "when": null, + "workflow_outputs": [] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", + "errors": null, + "id": 6, + "input_connections": { + "batch_mode|input": { + "id": 1, + "output_name": "output" + }, + "refgene": { + "id": 2, + "output_name": "bed_file" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Gene Body Coverage (BAM)", + "name": "batch_mode" + } + ], + "label": "Get gene body coverage", + "name": "Gene Body Coverage (BAM)", + "outputs": [ + { + "name": "outputcurvespdf", + "type": "pdf" + }, + { + "name": "outputtxt", + "type": "txt" + } + ], + "position": { + "left": 789.4676437358169, + "top": 841.3256294399106 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "473382134e56", + "name": "rseqc", + "owner": "nilesh", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"batch_mode\": {\"batch_mode_selector\": \"batch\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}, \"minimum_length\": \"100\", \"refgene\": {\"__class__\": \"ConnectedValue\"}, \"rscript_output\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.1+galaxy2", + "type": "tool", + "uuid": "b7d1dd3e-b78b-43b3-b3cb-83e478cbc8ce", + "when": null, + "workflow_outputs": [] + }, + "7": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": "Combine results on reads per chromosome", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1043.2488257854413, + "top": 132.4744142944337 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"samtools\", \"__current_case__\": 24, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"idxstats\", \"__current_case__\": 2, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "5a4d87b3-0d53-47c8-8beb-e656a96293b5", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_reads_per_chrom_html", + "output_name": "html_report", + "uuid": "0ed79e15-3f3c-41a8-b02b-2880a70d5d03" + } + ] + }, + "8": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 4, + "output_name": "metrics_file" + } + }, + "inputs": [], + "label": "Combine results of duplicate reads", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1051.9871396277526, + "top": 383.83666337736145 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "727920a3-7efe-4d36-a987-f00cec4e32e2", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_dup_html", + "output_name": "html_report", + "uuid": "631e0adb-5366-464d-8117-5a51aaa7ae04" + } + ] + }, + "9": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [], + "label": "Combine read distribution on known features", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1069.4676437358169, + "top": 591.3256294399106 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"rseqc\", \"__current_case__\": 22, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"read_distribution\", \"__current_case__\": 6, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "252a2aee-0d82-41da-91f2-2d6069e2f095", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_read_distrib_html", + "output_name": "html_report", + "uuid": "a1d56cbf-4902-4165-86ce-28b8c5955807" + } + ] + } + }, + "tags": "", + "uuid": "1735615a-d4b0-4395-8b2a-4cf277d080f6" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "b4461d2f-a833-4846-8e3b-6d51aa9b3bbf", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_read_distrib_html", + "output_name": "multiqc_read_distrib_html", + "uuid": "f2eed352-ca21-4d65-8810-f5a1d3c282b4" + }, + { + "label": "multiqc_reads_per_chrom_html", + "output_name": "multiqc_reads_per_chrom_html", + "uuid": "b306cb12-a275-4c6d-b609-47fdc208864b" + }, + { + "label": "multiqc_gene_body_cov_html", + "output_name": "multiqc_gene_body_cov_html", + "uuid": "3375d63c-cdc3-4fbb-8a55-6f504c934918" + }, + { + "label": "multiqc_dup_html", + "output_name": "multiqc_dup_html", + "uuid": "3ea82568-5698-49a7-88fe-91381070aac2" + } + ] + }, + { + "annotation": "", + "id": 6, + "input_connections": { + "BAM": { + "id": 4, + "input_subworkflow_step_id": 4, + "output_name": "STAR_BAM" + }, + "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz": { + "id": 1, + "input_subworkflow_step_id": 3, + "output_name": "output" + }, + "coverage strand1": { + "id": 4, + "input_subworkflow_step_id": 1, + "output_name": "signal_unique_str1" + }, + "coverage strand2": { + "id": 4, + "input_subworkflow_step_id": 2, + "output_name": "signal_unique_str2" + }, + "star_counts": { + "id": 4, + "input_subworkflow_step_id": 0, + "output_name": "reads_per_gene" + } + }, + "inputs": [], + "label": null, + "name": "Determine strandness", + "outputs": [], + "position": { + "left": 1116.464211730276, + "top": 159.0207106397579 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "format-version": "0.1", + "license": "MIT", + "name": "Determine strandness", + "steps": { + "0": { + "annotation": "Counts from STAR", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Counts from STAR", + "name": "star_counts" + } + ], + "label": "star_counts", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 18, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "b1a4736f-8918-451f-b6ef-d220f3d04f0c", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "Coverage strand 1 from STAR", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Coverage strand 1 from STAR", + "name": "coverage strand1" + } + ], + "label": "coverage strand1", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 18, + "top": 283.59999084472656 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "39b6d0f4-0dde-4312-9a95-670a4694b8ff", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "Coverage strand 2 from STAR", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Coverage strand 2 from STAR", + "name": "coverage strand2" + } + ], + "label": "coverage strand2", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 18, + "top": 406.59999084472656 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2691f247-4355-43b7-a7f1-3b717c8c9cb1", + "when": null, + "workflow_outputs": [] + }, + "3": { + "annotation": "gtf with genes", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "gtf with genes", + "name": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz" + } + ], + "label": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 18, + "top": 529.5999908447266 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "55ab56cf-bd8a-4ba9-a8d9-9e5c3e6914e7", + "when": null, + "workflow_outputs": [] + }, + "4": { + "annotation": "inputs BAM", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "inputs BAM", + "name": "BAM" + } + ], + "label": "BAM", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 695.5999755859375 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "be1135ba-c2c1-4b47-bb35-200771e2ae23", + "when": null, + "workflow_outputs": [] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "results_0|software_cond|output_0|type|input": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Determine library strandness with STAR counts", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 298, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"star\", \"__current_case__\": 28, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"genecounts\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "e8184bed-29b5-4515-90d4-3264b5e045fa", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_star_counts_html", + "output_name": "html_report", + "uuid": "875e1cee-f00a-40bf-9fe4-22ea94e00a44" + } + ] + }, + "6": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "tracks_0|track_file_style_conditional|track_input_bedgraph": { + "id": 1, + "output_name": "output" + }, + "tracks_1|track_file_style_conditional|track_input_bedgraph": { + "id": 2, + "output_name": "output" + }, + "tracks_2|track_file_style_conditional|track_input_bed": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": "Determine library strandness with STAR coverage", + "name": "pyGenomeTracks", + "outputs": [ + { + "name": "outFileName", + "type": "png" + } + ], + "position": { + "left": 298, + "top": 265.59999084472656 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy1", + "tool_shed_repository": { + "changeset_revision": "360df4999907", + "name": "pygenometracks", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"global_args\": {\"title\": null, \"fontsize\": \"12\", \"dpi\": \"72\", \"width\": \"40.0\", \"plotWidth\": null, \"height\": null, \"trackLabelFraction\": \"0.05\", \"trackLabelHAlign\": \"left\", \"decreasingXAxis\": false}, \"image_file_format\": \"png\", \"region\": \"chr4:540,000-560,000\", \"tracks\": [{\"__index__\": 0, \"track_file_style_conditional\": {\"track_file_style_selector\": \"bedgraph_track_option\", \"__current_case__\": 6, \"title\": null, \"track_input_bedgraph\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#1c71d8\", \"alpha\": \"1.0\", \"color_negative\": {\"color_negative_select\": \"false\", \"__current_case__\": 0}, \"min_value\": \"0.0\", \"max_value\": null, \"height_bedgraph\": \"3.0\", \"type_conditional\": {\"type_selector\": \"fill_option\", \"__current_case__\": 2}, \"reading_bdg_as_bw\": {\"summary_method\": \"no\", \"number_of_bins\": null}, \"logScale_conditional\": {\"transform_selector\": \"no\", \"__current_case__\": 0}, \"op\": {\"operation\": \"file\", \"second_file\": {\"__class__\": \"RuntimeValue\"}}, \"nans_to_zeros\": false, \"use_middle\": false, \"show_data\": true, \"grid\": false, \"invert_orientation\": false, \"overlay_select\": \"no\", \"spacer_height\": null}}, {\"__index__\": 1, \"track_file_style_conditional\": {\"track_file_style_selector\": \"bedgraph_track_option\", \"__current_case__\": 6, \"title\": null, \"track_input_bedgraph\": {\"__class__\": \"ConnectedValue\"}, \"color\": \"#e01b24\", \"alpha\": \"1.0\", \"color_negative\": {\"color_negative_select\": \"false\", \"__current_case__\": 0}, \"min_value\": \"0.0\", \"max_value\": null, \"height_bedgraph\": \"3.0\", \"type_conditional\": {\"type_selector\": \"fill_option\", \"__current_case__\": 2}, \"reading_bdg_as_bw\": {\"summary_method\": \"no\", \"number_of_bins\": null}, \"logScale_conditional\": {\"transform_selector\": \"no\", \"__current_case__\": 0}, \"op\": {\"operation\": \"file\", \"second_file\": {\"__class__\": \"RuntimeValue\"}}, \"nans_to_zeros\": false, \"use_middle\": false, \"show_data\": true, \"grid\": false, \"invert_orientation\": false, \"overlay_select\": \"no\", \"spacer_height\": null}}, {\"__index__\": 2, \"track_file_style_conditional\": {\"track_file_style_selector\": \"gene_track_option\", \"__current_case__\": 3, \"title\": \"Genes\", \"track_input_bed\": {\"__class__\": \"ConnectedValue\"}, \"color_bed\": {\"color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}, \"border_color_bed\": {\"border_color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}, \"height_bed\": \"5.0\", \"labels\": {\"plot_labels\": \"true\", \"__current_case__\": 0, \"all_labels_inside\": false, \"labels_in_margin\": false, \"fontsize\": null, \"fontstyle\": \"normal\"}, \"display\": \"stacked\", \"bed_style\": {\"bed_style_select\": \"flybase\", \"__current_case__\": 0, \"arrowhead_included\": false, \"arrowhead_fraction\": \"0.004\", \"bed_advanced\": {\"height_utr\": \"1.0\", \"color_utr\": {\"color_utr_select\": \"manually\", \"__current_case__\": 0, \"color\": \"grey\"}, \"global_max_row\": false, \"gene_rows\": null, \"max_labels\": \"60\", \"line_width\": \"0.5\", \"gtf\": {\"prefered_name\": \"transcript_name\", \"merge_transcripts\": {\"merge_transcripts_select\": \"false\", \"__current_case__\": 1}}, \"backbone_color_bed\": {\"backbone_color_bed_select\": \"manually\", \"__current_case__\": 0, \"color\": \"#000000\"}}}, \"overlay_select\": \"no\", \"invert_orientation\": false, \"spacer_height\": null}}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.8+galaxy1", + "type": "tool", + "uuid": "b788b21b-25a4-47af-aa43-44052ed382ba", + "when": null, + "workflow_outputs": [ + { + "label": "pgt", + "output_name": "outFileName", + "uuid": "20890d2c-f9f8-41f0-b6d6-aaa6cfbce6a4" + } + ] + }, + "7": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "errors": null, + "id": 7, + "input_connections": { + "gtf_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": "convert gtf to bed12", + "name": "Convert GTF to BED12", + "outputs": [ + { + "name": "bed_file", + "type": "bed12" + } + ], + "position": { + "left": 304, + "top": 833.6000061035156 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "tool_shed_repository": { + "changeset_revision": "b026dae67fba", + "name": "gtftobed12", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced_options\": {\"advanced_options_selector\": \"default\", \"__current_case__\": 0}, \"gtf_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "357", + "type": "tool", + "uuid": "ce4a827c-2862-4d19-bf69-fe41e996e4e3", + "when": null, + "workflow_outputs": [] + }, + "8": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.1+galaxy2", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 4, + "output_name": "output" + }, + "refgene": { + "id": 7, + "output_name": "bed_file" + } + }, + "inputs": [], + "label": "Determine library strandness with Infer Experiment", + "name": "Infer Experiment", + "outputs": [ + { + "name": "output", + "type": "txt" + } + ], + "position": { + "left": 578, + "top": 786.5999908447266 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "473382134e56", + "name": "rseqc", + "owner": "nilesh", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input\": {\"__class__\": \"ConnectedValue\"}, \"mapq\": \"30\", \"refgene\": {\"__class__\": \"ConnectedValue\"}, \"sample_size\": \"200000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.1+galaxy2", + "type": "tool", + "uuid": "812130f0-bd99-46d0-8714-cbf164b35c0d", + "when": null, + "workflow_outputs": [ + { + "label": "inferexperiment", + "output_name": "output", + "uuid": "a6247147-bbd5-49cc-990f-4d004e0a900b" + } + ] + } + }, + "tags": "", + "uuid": "537bdaf1-3ef2-44ab-976d-7150e907ee43" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "eb35e78f-4c68-4471-9b67-6cd25d48b381", + "when": null, + "workflow_outputs": [ + { + "label": "inferexperiment", + "output_name": "inferexperiment", + "uuid": "fb810859-f2d0-43f8-ac7c-5c714c5c6805" + }, + { + "label": "pgt", + "output_name": "pgt", + "uuid": "9727824a-3eb2-4430-92d1-b3c40c3041d1" + }, + { + "label": "multiqc_star_counts_html", + "output_name": "multiqc_star_counts_html", + "uuid": "105313d8-e31a-405d-8fcd-cc5fd93275e2" + } + ] + }, + { + "annotation": "", + "id": 7, + "input_connections": { + "gtf": { + "id": 1, + "input_subworkflow_step_id": 1, + "output_name": "output" + }, + "star_counts": { + "id": 4, + "input_subworkflow_step_id": 0, + "output_name": "reads_per_gene" + } + }, + "inputs": [], + "label": null, + "name": "count STAR", + "outputs": [], + "position": { + "left": 1436.1638864153126, + "top": 230.059777843985 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "format-version": "0.1", + "license": "MIT", + "name": "count STAR", + "steps": { + "0": { + "annotation": "Counts from STAR", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Counts from STAR", + "name": "star_counts" + } + ], + "label": "star_counts", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2ffe312c-c755-47f4-99c6-90709f432875", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "GTF", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "GTF", + "name": "gtf" + } + ], + "label": "gtf", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 59, + "top": 379.5 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "67ed3962-0ee1-4d6b-b729-17b428102a13", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "errors": null, + "id": 2, + "input_connections": { + "infile": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": "Remove statistics from STAR counts", + "name": "Select last", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 244.8240650723336, + "top": 12.376039797406065 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"complement\": \"+\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"num_lines\": \"5\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "6ccde820-2aae-46eb-82e9-f128c135745d", + "when": null, + "workflow_outputs": [] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2", + "errors": null, + "id": 3, + "input_connections": { + "gtf_file|gtf_history": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Gene length and GC content", + "name": "gtf_file" + } + ], + "label": "Get gene length", + "name": "Gene length and GC content", + "outputs": [ + { + "name": "length", + "type": "tabular" + } + ], + "position": { + "left": 287, + "top": 421.5 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2", + "tool_shed_repository": { + "changeset_revision": "e3ba567abdf5", + "name": "length_and_gc_content", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis\": {\"analysis_select\": \"length\", \"__current_case__\": 2}, \"gtf_file\": {\"gtfSource\": \"history\", \"__current_case__\": 1, \"gtf_history\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1.2", + "type": "tool", + "uuid": "1a086dd7-c3e4-477b-9dce-e8f106d64496", + "when": null, + "workflow_outputs": [ + { + "label": "gene_length", + "output_name": "length", + "uuid": "0d9fe636-f5eb-436e-8227-65fbe4697c87" + } + ] + }, + "4": { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 4, + "input_connections": { + "input": { + "id": 2, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Select unstranded counts", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 519.1500244140625, + "top": 16.76666259765625 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "FeatureCount-like files" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c1,c2\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "b11fdc2b-2276-409c-875c-c2b0e943be31", + "when": null, + "workflow_outputs": [ + { + "label": "counts_from_star", + "output_name": "out_file1", + "uuid": "5613b1fa-6997-4d90-8b5f-51d59da0a293" + } + ] + }, + "5": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 4, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": "Sort counts to get gene with highest count on STAR", + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 784.2644979114859, + "top": 22.18775610020657 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"header\": \"0\", \"ignore_case\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"2\", \"order\": \"r\", \"style\": \"n\"}], \"unique\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "dc9a8a93-0a5f-4f9d-baed-7a5ce1ad5215", + "when": null, + "workflow_outputs": [ + { + "label": "counts_from_star_sorted", + "output_name": "outfile", + "uuid": "955134dc-bbc9-46d8-a0c9-574ecec64f70" + } + ] + } + }, + "tags": "", + "uuid": "11ebb7ff-23de-47a4-83e2-7e0434aef122" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "41ad9a58-ba0f-4f9b-99db-802f7ca9c268", + "when": null, + "workflow_outputs": [ + { + "label": "counts_from_star", + "output_name": "counts_from_star", + "uuid": "5fee8aff-4023-43f1-a653-f5af5357d798" + }, + { + "label": "counts_from_star_sorted", + "output_name": "counts_from_star_sorted", + "uuid": "bd3388e6-5b45-4fdc-9780-3efd1c34ebf8" + }, + { + "label": "Gene length", + "output_name": "gene_length", + "uuid": "7b7c698b-4808-4b45-adf1-686f8d273d18" + } + ] + }, + { + "annotation": "", + "id": 8, + "input_connections": { + "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz": { + "id": 1, + "input_subworkflow_step_id": 0, + "output_name": "output" + }, + "input_bam": { + "id": 4, + "input_subworkflow_step_id": 1, + "output_name": "STAR_BAM" + } + }, + "inputs": [], + "label": null, + "name": "count featureCount", + "outputs": [], + "position": { + "left": 1463.5364206840688, + "top": 459.7298010015788 + }, + "subworkflow": { + "a_galaxy_workflow": "true", + "annotation": "", + "creator": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9852-1987", + "name": "B\u00e9r\u00e9nice Batut" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-2949-3921", + "name": "Mallory Freeberg" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-9449-9364", + "name": "Mo Heydarian" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-7427-6478", + "name": "Anika Erxleben" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-5192-126X", + "name": "Pavankumar Videm" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1726-2256", + "name": "Clemens Blank" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-4847-8436", + "name": "Maria Doyle" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0003-3627-5340", + "name": "Nicola Soranzo" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6553-5274", + "name": "Peter van Heusden" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-1964-4960", + "name": "Lucille Delisle" + } + ], + "format-version": "0.1", + "license": "MIT", + "name": "count featureCount", + "steps": { + "0": { + "annotation": "gtf with genes", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "gtf with genes", + "name": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz" + } + ], + "label": "Drosophila_melanogaster.BDGP6.32.109_UCSC.gtf.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 16 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "55ab56cf-bd8a-4ba9-a8d9-9e5c3e6914e7", + "when": null, + "workflow_outputs": [] + }, + "1": { + "annotation": "BAM", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "BAM", + "name": "input_bam" + } + ], + "label": "input_bam", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 159 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "93102a3f-7509-4f36-bdea-599b13328536", + "when": null, + "workflow_outputs": [] + }, + "2": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "alignment": { + "id": 1, + "output_name": "output" + }, + "anno|reference_gene_sets": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool featureCounts", + "name": "anno" + } + ], + "label": "count fragments per gene", + "name": "featureCounts", + "outputs": [ + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + }, + { + "name": "output_feature_lengths", + "type": "tabular" + } + ], + "position": { + "left": 280, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6f66ae7c5f7a", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment\": {\"__class__\": \"ConnectedValue\"}, \"anno\": {\"anno_select\": \"history\", \"__current_case__\": 2, \"reference_gene_sets\": {\"__class__\": \"ConnectedValue\"}, \"gff_feature_type\": \"exon\", \"gff_feature_attribute\": \"gene_id\", \"summarization_level\": false}, \"extended_parameters\": {\"multifeatures\": {\"multifeat\": \"\", \"__current_case__\": 0}, \"exon_exon_junction_read_counting_enabled\": {\"count_exon_exon_junction_reads\": \"\", \"__current_case__\": 1}, \"long_reads\": false, \"by_read_group\": false, \"largest_overlap\": false, \"min_overlap\": \"1\", \"frac_overlap\": \"0\", \"frac_overlap_feature\": \"0\", \"read_extension_5p\": \"0\", \"read_extension_3p\": \"0\", \"read_reduction\": \"\", \"R\": false}, \"format\": \"tabdel_short\", \"include_feature_length_file\": true, \"pe_parameters\": {\"paired_end_status\": \"PE_fragments\", \"__current_case__\": 2, \"check_distance_enabled\": {\"checkFragLength\": \"false\", \"__current_case__\": 1}, \"only_both_ends\": false, \"exclude_chimerics\": true}, \"read_filtering_parameters\": {\"mapping_quality\": \"10\", \"splitonly\": \"\", \"primary\": false, \"ignore_dup\": false}, \"strand_specificity\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.3+galaxy1", + "type": "tool", + "uuid": "b52849b7-fa04-44ef-8202-21d21765ce80", + "when": null, + "workflow_outputs": [ + { + "label": "featureCounts_gene_length", + "output_name": "output_feature_lengths", + "uuid": "125bff08-2418-4b9c-8de8-2a5aa0328f75" + }, + { + "label": "featureCounts", + "output_name": "output_short", + "uuid": "53b5dfc9-2292-4a29-96e7-290be4f2c44e" + } + ] + }, + "3": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 3, + "input_connections": { + "infile": { + "id": 2, + "output_name": "output_short" + } + }, + "inputs": [], + "label": "Sort counts to get gene with highest count on feature Counts", + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 560, + "top": 37 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"header\": \"1\", \"ignore_case\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"2\", \"order\": \"r\", \"style\": \"n\"}], \"unique\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "ffa9bbcf-9a49-4847-a4e9-7dd40d2e952c", + "when": null, + "workflow_outputs": [ + { + "label": "featureCounts_sorted", + "output_name": "outfile", + "uuid": "ccdb4123-22a1-4841-85e4-346c4e8f0c85" + } + ] + }, + "4": { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "results_0|software_cond|input": { + "id": 2, + "output_name": "output_summary" + } + }, + "inputs": [], + "label": "Combine read asignments statistics", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 560, + "top": 252 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"featureCounts\", \"__current_case__\": 9, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "827c9a6d-ce71-4348-a220-73ff53e221d8", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_featureCounts_html", + "output_name": "html_report", + "uuid": "84cb16bb-ad92-4947-b73a-0f9ceccba2ea" + } + ] + } + }, + "tags": "", + "uuid": "2e23453a-3ae9-49a4-b4c5-4d015371a1ba" + }, + "tool_id": null, + "type": "subworkflow", + "uuid": "8634e03f-d25a-46a9-b1de-1895fdd1155d", + "when": null, + "workflow_outputs": [ + { + "label": "featureCounts_sorted", + "output_name": "featureCounts_sorted", + "uuid": "f0de4714-4df8-4506-90d9-384537ad663e" + }, + { + "label": "featureCounts_gene_length", + "output_name": "featureCounts_gene_length", + "uuid": "8b9d6c76-6e82-4691-b8bc-9996d6ae1594" + }, + { + "label": "multiqc_featureCounts_html", + "output_name": "multiqc_featureCounts_html", + "uuid": "152ba01e-d4f2-4227-8812-87648a1c19ea" + }, + { + "label": "featureCounts", + "output_name": "featureCounts", + "uuid": "46c7a2e8-7819-4715-a028-7ad1de9ed605" + } + ] + } + ], + "parent_id": "transcriptomics/ref-based", + "path": "topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": true, + "title": "QC + Mapping + Counting - Ref Based RNA Seq - Transcriptomics - GTN - subworkflows", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-ref-based/versions/qc-mapping-counting", + "tutorial_id": "ref-based", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/ref-based/workflows/qc-mapping-counting.html", + "version": 9, + "wfid": "transcriptomics-ref-based", + "wfname": "qc-mapping-counting", + "workflow": "qc-mapping-counting.ga", + "workflow_tools": [ + "Cut1", + "__FLATTEN__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_tail_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.4", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_idxstats/samtools_idxstats/2.0.4", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/gtftobed12/gtftobed12/357", + "toolshed.g2.bx.psu.edu/repos/iuc/length_and_gc_content/length_and_gc_content/0.1.2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/pygenometracks/pygenomeTracks/3.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/rgrnastar/rna_star/2.7.10b+galaxy3", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_infer_experiment/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy2" + ], + "workflowhub_id": "1323" + } + ], + "zenodo_link": "https://zenodo.org/record/6457007" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "9cd341095afd", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "annotatemyids", + "owner": "iuc", + "revisions": "133f36c29579", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collection_column_join", + "owner": "iuc", + "revisions": "3ddd99c7efee", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "featurecounts", + "owner": "iuc", + "revisions": "6f66ae7c5f7a", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "goseq", + "owner": "iuc", + "revisions": "602de62d995b", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "f4af63aaf57a", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "limma_voom", + "owner": "iuc", + "revisions": "d6f5fa4ee473", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "e407b9da183a", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cutadapt", + "owner": "lparsons", + "revisions": "8c0175e03cee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "rseqc", + "owner": "nilesh", + "revisions": "473382134e56", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 9cd341095afd\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: annotatemyids\n owner: iuc\n revisions: 133f36c29579\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collection_column_join\n owner: iuc\n revisions: 3ddd99c7efee\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: featurecounts\n owner: iuc\n revisions: 6f66ae7c5f7a\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: goseq\n owner: iuc\n revisions: 602de62d995b\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: f4af63aaf57a\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: limma_voom\n owner: iuc\n revisions: d6f5fa4ee473\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: e407b9da183a\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cutadapt\n owner: lparsons\n revisions: 8c0175e03cee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: rseqc\n owner: nilesh\n revisions: 473382134e56\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/minerva-pathways/tutorial.json", + "contributions": { + "authorship": [ + "mjostaszewski", + "MattiHoch", + "PapXis", + "mbaardwijk", + "shiltemann", + "hexylena" + ], + "funding": [ + "by-covid" + ], + "infrastructure": [ + "MattiHoch", + "mira-miracoli", + "kysrpex", + "sanjaysrikakulam", + "bgruening" + ], + "testing": [ + "hexylena" + ] + }, + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "lu", + "id": "mjostaszewski", + "joined": "2023-12", + "name": "Marek Ostaszewski", + "orcid": "0000-0003-1473-370X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mjostaszewski/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mjostaszewski.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "de", + "id": "MattiHoch", + "joined": "2023-12", + "name": "Matti Hoch", + "orcid": "0000-0002-2486-0246", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/MattiHoch/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/MattiHoch.json" + }, + { + "affiliations": [ + "erasmusmc", + "by-covid" + ], + "id": "PapXis", + "joined": "2023-12", + "name": "Iacopo Cristoferi", + "orcid": "0000-0002-4282-9103", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/PapXis/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/PapXis.json" + }, + { + "affiliations": [ + "erasmusmc", + "by-covid", + "elixir-europe" + ], + "elixir_node": "nl", + "id": "mbaardwijk", + "joined": "2023-12", + "name": "Myrthe van Baardwijk", + "orcid": "0000-0001-8747-1494", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mbaardwijk/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mbaardwijk.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "de", + "id": "MattiHoch", + "joined": "2023-12", + "name": "Matti Hoch", + "orcid": "0000-0002-2486-0246", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/MattiHoch/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/MattiHoch.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe", + "deNBI" + ], + "elixir_node": "de", + "email": "kuntzm@informatik.uni-freiburg.de", + "id": "mira-miracoli", + "joined": "2022-07", + "matrix": "mira-miracoli:matrix.org", + "name": "Mira Kuntz", + "orcid": "0000-0003-4302-5091", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mira-miracoli/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mira-miracoli.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "id": "kysrpex", + "joined": "2023-10", + "name": "Jos\u00e9 Manuel Dom\u00ednguez", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kysrpex/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kysrpex.json" + }, + { + "affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "sanjaysrikakulam", + "joined": "2023-12", + "name": "Sanjay Kumar Srikakulam", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/sanjaysrikakulam/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/sanjaysrikakulam.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + } + ], + "dir": "topics/transcriptomics/tutorials/minerva-pathways", + "edam_operation": [ + "Primer removal", + "Sequencing quality control", + "Sequence alignment", + "Sequence composition calculation", + "Read summarisation", + "Read pre-processing", + "RNA-Seq quantification", + "Gene functional annotation", + "Data handling", + "Validation", + "Sequence trimming", + "Statistical calculation", + "RNA-Seq analysis", + "Annotation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/minerva-pathways", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": 3669 + }, + "key_points": [ + "The MINERVA Platform is an excellent tool for visualising pathway analysis results", + "Several built-in maps are available such as the COVID-19 Disease Map which is pre-configured in all updated Galaxy servers.", + "You can use it to explore the expression patterns of genes in pathways relevant to your interests." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-07-26", + "objectives": [ + "Perform an analysis using a workflow from WorkflowHub", + "Visualise and interpret the results with MINERVA" + ], + "pageviews": 163, + "priority": 2, + "pub_date": "2024-03-28", + "questions": [ + "Which pathways are affected in this COVID-19 study?", + "How can I visualise the results of a differential expression analysis in the MINERVA Platform?" + ], + "short_id": "T00437", + "short_tools": [ + "Cut1", + "rseqc_read_distribution", + "__EXTRACT_DATASET__", + "Grep1", + "hisat2", + "collection_column_join", + "featurecounts", + "tp_sort_header_tool", + "tp_sorted_uniq", + "goseq", + "rseqc_geneBody_coverage", + "tp_replace_in_line", + "annotatemyids", + "join1", + "cutadapt", + "limma_voom", + "multiqc", + "fasterq_dump", + "fastqc", + "Add_a_column1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "visualisation", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "bulk", + "rna-seq", + "viz", + "cyoa" + ], + "time_estimation": "1h", + "title": "Pathway analysis with the MINERVA Platform", + "tools": [ + "Cut1", + "Grep1", + "__EXTRACT_DATASET__", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.16.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.50.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/limma_voom/limma_voom/3.50.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.0.8+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy2" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "minerva-pathways", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/minerva-pathways/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/minerva-pathways/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/minerva-pathways/tutorial.json" + }, + "version": 3, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 176, + "visitors": 137, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9760-8992", + "name": "Helena Rasche" + } + ], + "description": "Downloads data from NCBI assuming the correct data input format. (I.e. it should be two columns, with a header, Run and Group, where Run is an SRR identifier.)", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSample Table\"]\n 1[label=\"Cut\"]\n 0 -> 1 [label=\"output\"]\n 2[label=\"Select\"]\n 1 -> 2 [label=\"out_file1\"]\n 3[label=\"Faster Download and Extract Reads in FASTQ\"]\n 2 -> 3 [label=\"out_file1\"]\n kb7c7e59d6a7841afae59e52fcc1fe2f6[color=lightseagreen,label=\"Output\\noutput_collection\"]\n 3 -> kb7c7e59d6a7841afae59e52fcc1fe2f6\n}", + "history": [ + { + "hash": "30982b086caaa05f2c132e6d3673b93e415b21e0", + "message": "add missing wf", + "num": 1, + "short_hash": "30982b086", + "unix": "1718106854" + } + ], + "inputs": [ + { + "annotation": "This should be a two column sample table that looks like:\n\n```\nRun\tGroup\nSRR16681566\thealthy\nSRR16681565\thealthy\nSRR16681564\thealthy\n```", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "This should be a two column sample table that looks like:\n\n```\nRun\tGroup\nSRR16681566\thealthy\nSRR16681565\thealthy\nSRR16681564\thealthy\n```", + "name": "Sample Table" + } + ], + "label": "Sample Table", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 6 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"tabular\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0db27234-a5f7-4177-8de5-f461765a00b8", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSample Table\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Cut\"];\n 0 -->|output| 1;\n 2[\"Select\"];\n 1 -->|out_file1| 2;\n 3[\"Faster Download and Extract Reads in FASTQ\"];\n 2 -->|out_file1| 3;\n b7c7e59d-6a78-41af-ae59-e52fcc1fe2f6[\"Output\\noutput_collection\"];\n 3 --> b7c7e59d-6a78-41af-ae59-e52fcc1fe2f6;\n style b7c7e59d-6a78-41af-ae59-e52fcc1fe2f6 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "BY-COVID: Data Download", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.0.8+galaxy1", + "errors": null, + "id": 3, + "input_connections": { + "input|file_list": { + "id": 2, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Faster Download and Extract Reads in FASTQ", + "name": "input" + } + ], + "label": null, + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 840, + "top": 6 + }, + "post_job_actions": { + "HideDatasetActionlist_paired": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "list_paired" + }, + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionoutput_collection_other": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection_other" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.0.8+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e407b9da183a", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"input\", \"adv\": {\"seq_defline\": \"@$sn/$ri\", \"minlen\": null, \"split\": \"--split-3\", \"skip_technical\": true}, \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/?.len\", \"input\": {\"input_select\": \"file_list\", \"__current_case__\": 2, \"file_list\": {\"__class__\": \"ConnectedValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.0.8+galaxy1", + "type": "tool", + "uuid": "4e6c90ae-68d6-4e80-b63a-8c5b5adff338", + "when": null, + "workflow_outputs": [ + { + "label": "output_collection", + "output_name": "output_collection", + "uuid": "b7c7e59d-6a78-41af-ae59-e52fcc1fe2f6" + } + ] + } + ], + "parent_id": "transcriptomics/minerva-pathways", + "path": "topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-BY-COVID__Data_Download.ga", + "tags": [ + "name:BY-COVID" + ], + "test_results": null, + "tests": true, + "title": "BY-COVID: Data Download", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-minerva-pathways/versions/galaxy-workflow-by-covid--data-download", + "tutorial_id": "minerva-pathways", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-BY-COVID__Data_Download.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-BY-COVID__Data_Download.html", + "version": 1, + "wfid": "transcriptomics-minerva-pathways", + "wfname": "galaxy-workflow-by-covid--data-download", + "workflow": "Galaxy-Workflow-BY-COVID__Data_Download.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.0.8+galaxy1" + ], + "workflowhub_id": "1330" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-4282-9103", + "name": "Iacopo Cristoferi" + }, + { + "class": "Person", + "identifier": "0000-0001-9760-8992", + "name": "Helena Rasche" + }, + { + "class": "Organization", + "name": "Clinical Bioinformatics Unit, Pathology Department, Eramus Medical Center" + } + ], + "description": "Analyse Bulk RNA-Seq data in preparation for downstream Pathways analysis with MINERVA", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nfeatureCounts: Counts\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nfactordata\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nfeatureCounts: Lengths\"]\n 3[label=\"Column join\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Extract dataset\"]\n 2 -> 4 [label=\"output\"]\n 5[label=\"countdata\"]\n 3 -> 5 [label=\"tabular_output\"]\n ke8dcfaaf0d8d46eb8cc9ce2fbdfc45e5[color=lightseagreen,label=\"Output\\ncount_data\"]\n 5 -> ke8dcfaaf0d8d46eb8cc9ce2fbdfc45e5\n 6[label=\"annodata\"]\n 3 -> 6 [label=\"tabular_output\"]\n 7[label=\"Replace Text\"]\n 5 -> 7 [label=\"outfile\"]\n 8[label=\"limma DEG analysis\"]\n 6 -> 8 [label=\"out_tab\"]\n 7 -> 8 [label=\"outfile\"]\n 1 -> 8 [label=\"output\"]\n k1c8d795010034c869986c6ed1264cd8b[color=lightseagreen,label=\"Output\\nlimma_report\"]\n 8 -> k1c8d795010034c869986c6ed1264cd8b\n 9[label=\"Extract dataset\"]\n 8 -> 9 [label=\"outTables\"]\n 10[label=\"MINERVA Formatting\"]\n 9 -> 10 [label=\"output\"]\n k9ce4f48be7424b7c9bde5d51f11068d3[color=lightseagreen,label=\"Output\\nminerva_table\"]\n 10 -> k9ce4f48be7424b7c9bde5d51f11068d3\n 11[label=\"Join two Datasets\"]\n 9 -> 11 [label=\"output\"]\n 4 -> 11 [label=\"output\"]\n 12[label=\"Compute\"]\n 11 -> 12 [label=\"out_file1\"]\n 13[label=\"Cut\"]\n 12 -> 13 [label=\"out_file1\"]\n 14[label=\"Unique\"]\n 13 -> 14 [label=\"out_file1\"]\n 15[label=\"Cut\"]\n 14 -> 15 [label=\"outfile\"]\n 16[label=\"Cut\"]\n 14 -> 16 [label=\"outfile\"]\n 17[label=\"goseq\"]\n 15 -> 17 [label=\"out_file1\"]\n 16 -> 17 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "0836149a2c0341302224a4831975ec5b2bf07602", + "message": "cleanups", + "num": 1, + "short_hash": "0836149a2", + "unix": "1702986387" + } + ], + "inputs": [ + { + "annotation": "count data collection with two column datasets (gene_id, count)", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "count data collection with two column datasets (gene_id, count)", + "name": "featureCounts: Counts" + } + ], + "label": "featureCounts: Counts", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 26 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "dd496c2b-e61f-4a54-8cd4-501cc302b758", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "A two column factor table with (Sample Identifier, Condition)\n\nThis workflow assumes a 1 factor, 2 level analysis, and was specifically designed around SARS-CoV-2 analysis with two levels, e.g.\n```\nSampleName \tGroup\nSRR16683284 \tCOVID\nSRR16683283 \tCOVID SRR16683271 \thealthy\nSRR16683270 \thealthy \n```", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "A two column factor table with (Sample Identifier, Condition)\n\nThis workflow assumes a 1 factor, 2 level analysis, and was specifically designed around SARS-CoV-2 analysis with two levels, e.g.\n```\nSampleName \tGroup\nSRR16683284 \tCOVID\nSRR16683283 \tCOVID SRR16683271 \thealthy\nSRR16683270 \thealthy \n```", + "name": "factordata" + } + ], + "label": "factordata", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 840, + "top": 164 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "fa67df3e-0730-45b1-af83-ff184c28afcb", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "featureCounts Lengths collection", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "featureCounts Lengths collection", + "name": "featureCounts: Lengths" + } + ], + "label": "featureCounts: Lengths", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 1130, + "top": 311 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "bd753c88-7d30-4ade-b5e9-e1139390d3b4", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nfeatureCounts: Counts\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nfactordata\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Collection\\nfeatureCounts: Lengths\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Column join\"];\n 0 -->|output| 3;\n 4[\"Extract dataset\"];\n 2 -->|output| 4;\n 5[\"countdata\"];\n 3 -->|tabular_output| 5;\n e8dcfaaf-0d8d-46eb-8cc9-ce2fbdfc45e5[\"Output\\ncount_data\"];\n 5 --> e8dcfaaf-0d8d-46eb-8cc9-ce2fbdfc45e5;\n style e8dcfaaf-0d8d-46eb-8cc9-ce2fbdfc45e5 stroke:#2c3143,stroke-width:4px;\n 6[\"annodata\"];\n 3 -->|tabular_output| 6;\n 7[\"Replace Text\"];\n 5 -->|outfile| 7;\n 8[\"limma DEG analysis\"];\n 6 -->|out_tab| 8;\n 7 -->|outfile| 8;\n 1 -->|output| 8;\n 1c8d7950-1003-4c86-9986-c6ed1264cd8b[\"Output\\nlimma_report\"];\n 8 --> 1c8d7950-1003-4c86-9986-c6ed1264cd8b;\n style 1c8d7950-1003-4c86-9986-c6ed1264cd8b stroke:#2c3143,stroke-width:4px;\n 9[\"Extract dataset\"];\n 8 -->|outTables| 9;\n 10[\"MINERVA Formatting\"];\n 9 -->|output| 10;\n 9ce4f48b-e742-4b7c-9bde-5d51f11068d3[\"Output\\nminerva_table\"];\n 10 --> 9ce4f48b-e742-4b7c-9bde-5d51f11068d3;\n style 9ce4f48b-e742-4b7c-9bde-5d51f11068d3 stroke:#2c3143,stroke-width:4px;\n 11[\"Join two Datasets\"];\n 9 -->|output| 11;\n 4 -->|output| 11;\n 12[\"Compute\"];\n 11 -->|out_file1| 12;\n 13[\"Cut\"];\n 12 -->|out_file1| 13;\n 14[\"Unique\"];\n 13 -->|out_file1| 14;\n 15[\"Cut\"];\n 14 -->|outfile| 15;\n 16[\"Cut\"];\n 14 -->|outfile| 16;\n 17[\"goseq\"];\n 15 -->|out_file1| 17;\n 16 -->|out_file1| 17;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "mRNA-Seq BY-COVID Pipeline: Analysis", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "errors": null, + "id": 5, + "input_connections": { + "infile": { + "id": 3, + "output_name": "tabular_output" + } + }, + "inputs": [], + "label": "countdata", + "name": "Sort", + "outputs": [ + { + "name": "outfile", + "type": "input" + } + ], + "position": { + "left": 560, + "top": 20 + }, + "post_job_actions": { + "HideDatasetActionoutfile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outfile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"header\": \"0\", \"ignore_case\": false, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"sortkeys\": [{\"__index__\": 0, \"column\": \"1\", \"order\": \"r\", \"style\": \"\"}], \"unique\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "cef3f59c-a9a8-435c-b959-7884b12bb28d", + "when": null, + "workflow_outputs": [ + { + "label": "count_data", + "output_name": "outfile", + "uuid": "e8dcfaaf-0d8d-46eb-8cc9-ce2fbdfc45e5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/limma_voom/limma_voom/3.50.1+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "anno|geneanno": { + "id": 6, + "output_name": "out_tab" + }, + "input|counts": { + "id": 7, + "output_name": "outfile" + }, + "input|fact|finfo": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": "limma DEG analysis", + "name": "limma", + "outputs": [ + { + "name": "outTables", + "type": "input" + }, + { + "name": "outReport", + "type": "html" + } + ], + "position": { + "left": 1130, + "top": 32 + }, + "post_job_actions": { + "HideDatasetActionoutTables": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "outTables" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/limma_voom/limma_voom/3.50.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "d6f5fa4ee473", + "name": "limma_voom", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"lfc\": \"0.0\", \"pVal\": \"0.05\", \"pAdjust\": \"BH\", \"treat\": false, \"topgenes\": \"10\", \"normalisationOption\": \"TMM\", \"robOption\": true}, \"anno\": {\"annoOpt\": \"yes\", \"__current_case__\": 0, \"geneanno\": {\"__class__\": \"ConnectedValue\"}}, \"cont\": {\"cfile\": \"no\", \"__current_case__\": 1, \"rep_contrast\": [{\"__index__\": 0, \"contrast\": \"COVID-healthy\"}]}, \"deMethod\": {\"de_select\": \"voom\", \"__current_case__\": 0, \"weightOption\": false}, \"f\": {\"filt\": {\"filt_select\": \"yes\", \"__current_case__\": 0, \"cformat\": {\"format_select\": \"cpm\", \"__current_case__\": 0, \"cpmReq\": \"0.5\", \"cpmSampleReq\": \"1\"}}}, \"input\": {\"format\": \"matrix\", \"__current_case__\": 1, \"counts\": {\"__class__\": \"ConnectedValue\"}, \"fact\": {\"ffile\": \"yes\", \"__current_case__\": 0, \"finfo\": {\"__class__\": \"ConnectedValue\"}}}, \"out\": {\"plots\": \"i\", \"filtCounts\": false, \"normCounts\": false, \"libinfo\": false, \"rscript\": false, \"rdaOption\": false}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.50.1+galaxy0", + "type": "tool", + "uuid": "c53a2cee-7e2e-4e97-a946-0857a4ca88f7", + "when": null, + "workflow_outputs": [ + { + "label": "limma_report", + "output_name": "outReport", + "uuid": "1c8d7950-1003-4c86-9986-c6ed1264cd8b" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "output" + } + }, + "inputs": [], + "label": "MINERVA Formatting", + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "left": 1690, + "top": 99 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Minerva-Ready Table" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c2,c4,c7,c8\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "71f54cbc-6a51-4703-8919-ee11f036c9fa", + "when": null, + "workflow_outputs": [ + { + "label": "minerva_table", + "output_name": "out_file1", + "uuid": "9ce4f48b-e742-4b7c-9bde-5d51f11068d3" + } + ] + } + ], + "parent_id": "transcriptomics/minerva-pathways", + "path": "topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Analysis.ga", + "tags": [ + "name:BY-COVID" + ], + "test_results": null, + "tests": true, + "title": "mRNA-Seq BY-COVID Pipeline: Analysis", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-minerva-pathways/versions/galaxy-workflow-mrna-seq-by-covid-pipeline--analysis", + "tutorial_id": "minerva-pathways", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Analysis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Analysis.html", + "version": 1, + "wfid": "transcriptomics-minerva-pathways", + "wfname": "galaxy-workflow-mrna-seq-by-covid-pipeline--analysis", + "workflow": "Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Analysis.ga", + "workflow_tools": [ + "Cut1", + "__EXTRACT_DATASET__", + "join1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sort_header_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sorted_uniq/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/1.4", + "toolshed.g2.bx.psu.edu/repos/iuc/annotatemyids/annotatemyids/3.16.0+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/collection_column_join/collection_column_join/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/goseq/goseq/1.50.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/limma_voom/limma_voom/3.50.1+galaxy0" + ], + "workflowhub_id": "1332" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-4282-9103", + "name": "Iacopo Cristoferi" + }, + { + "class": "Person", + "identifier": "0000-0001-9760-8992", + "name": "Helena Rasche" + }, + { + "class": "Organization", + "name": "Clinical Bioinformatics Unit, Pathology Department, Eramus Medical Center" + } + ], + "description": "This portion of the workflow produces sets of feature Counts ready for analysis by limma/etc.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nmRNA-Seq Reads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nUCSC Genome\"]\n 2[label=\"FastQC\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Cutadapt\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"FastQC\"]\n 3 -> 4 [label=\"out1\"]\n 5[label=\"HISAT2\"]\n 3 -> 5 [label=\"out1\"]\n 6[label=\"featureCounts\"]\n 5 -> 6 [label=\"output_alignments\"]\n k5cb5bd5ddf8144638002e89551780f01[color=lightseagreen,label=\"Output\\noutput_feature_lengths\"]\n 6 -> k5cb5bd5ddf8144638002e89551780f01\n k5dec13e10011472ca72d6715fe55c23c[color=lightseagreen,label=\"Output\\noutput_short\"]\n 6 -> k5dec13e10011472ca72d6715fe55c23c\n 7[label=\"Read Distribution\"]\n 5 -> 7 [label=\"output_alignments\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"Gene Body Coverage BAM\"]\n 5 -> 8 [label=\"output_alignments\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"Multi QC raw reads\"]\n 2 -> 9 [label=\"text_file\"]\n 4 -> 9 [label=\"text_file\"]\n 3 -> 9 [label=\"report\"]\n 5 -> 9 [label=\"summary_file\"]\n 7 -> 9 [label=\"output\"]\n 8 -> 9 [label=\"outputtxt\"]\n 6 -> 9 [label=\"output_summary\"]\n k9217af4ee34c4a499d674b3df511ac2c[color=lightseagreen,label=\"Output\\nhtml_report\"]\n 9 -> k9217af4ee34c4a499d674b3df511ac2c\n}", + "history": [ + { + "hash": "0836149a2c0341302224a4831975ec5b2bf07602", + "message": "cleanups", + "num": 1, + "short_hash": "0836149a2", + "unix": "1702986387" + } + ], + "inputs": [ + { + "annotation": "Input list of fastqsanger format sequencing data", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Input list of fastqsanger format sequencing data", + "name": "mRNA-Seq Reads" + } + ], + "label": "mRNA-Seq Reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "dd496c2b-e61f-4a54-8cd4-501cc302b758", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Export of UCSC Genome, just the genes.", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Export of UCSC Genome, just the genes.", + "name": "UCSC Genome" + } + ], + "label": "UCSC Genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 560, + "top": 734 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "71a430b7-df7c-46a5-8826-f881a122b376", + "when": null, + "workflow_outputs": [] + } + ], + "license": "GPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nmRNA-Seq Reads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nUCSC Genome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"FastQC\"];\n 0 -->|output| 2;\n 3[\"Cutadapt\"];\n 0 -->|output| 3;\n 4[\"FastQC\"];\n 3 -->|out1| 4;\n 5[\"HISAT2\"];\n 3 -->|out1| 5;\n 6[\"featureCounts\"];\n 5 -->|output_alignments| 6;\n 5cb5bd5d-df81-4463-8002-e89551780f01[\"Output\\noutput_feature_lengths\"];\n 6 --> 5cb5bd5d-df81-4463-8002-e89551780f01;\n style 5cb5bd5d-df81-4463-8002-e89551780f01 stroke:#2c3143,stroke-width:4px;\n 5dec13e1-0011-472c-a72d-6715fe55c23c[\"Output\\noutput_short\"];\n 6 --> 5dec13e1-0011-472c-a72d-6715fe55c23c;\n style 5dec13e1-0011-472c-a72d-6715fe55c23c stroke:#2c3143,stroke-width:4px;\n 7[\"Read Distribution\"];\n 5 -->|output_alignments| 7;\n 1 -->|output| 7;\n 8[\"Gene Body Coverage BAM\"];\n 5 -->|output_alignments| 8;\n 1 -->|output| 8;\n 9[\"Multi QC raw reads\"];\n 2 -->|text_file| 9;\n 4 -->|text_file| 9;\n 3 -->|report| 9;\n 5 -->|summary_file| 9;\n 7 -->|output| 9;\n 8 -->|outputtxt| 9;\n 6 -->|output_summary| 9;\n 9217af4e-e34c-4a49-9d67-4b3df511ac2c[\"Output\\nhtml_report\"];\n 9 --> 9217af4e-e34c-4a49-9d67-4b3df511ac2c;\n style 9217af4e-e34c-4a49-9d67-4b3df511ac2c stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "mRNA-Seq BY-COVID Pipeline: Counts", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy1", + "errors": null, + "id": 6, + "input_connections": { + "alignment": { + "id": 5, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "featureCounts", + "outputs": [ + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + }, + { + "name": "output_feature_lengths", + "type": "tabular" + } + ], + "position": { + "left": 860, + "top": 249 + }, + "post_job_actions": { + "HideDatasetActionoutput_feature_lengths": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_feature_lengths" + }, + "HideDatasetActionoutput_short": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_short" + }, + "HideDatasetActionoutput_summary": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_summary" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "6f66ae7c5f7a", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"alignment\": {\"__class__\": \"ConnectedValue\"}, \"anno\": {\"anno_select\": \"builtin\", \"__current_case__\": 0, \"bgenome\": \"hg19\"}, \"extended_parameters\": {\"multifeatures\": {\"multifeat\": \"-O -M\", \"__current_case__\": 3, \"fraction\": false}, \"exon_exon_junction_read_counting_enabled\": {\"count_exon_exon_junction_reads\": \"\", \"__current_case__\": 1}, \"long_reads\": false, \"by_read_group\": false, \"largest_overlap\": false, \"min_overlap\": \"1\", \"frac_overlap\": \"0\", \"frac_overlap_feature\": \"0\", \"read_extension_5p\": \"0\", \"read_extension_3p\": \"0\", \"read_reduction\": \"\", \"R\": false}, \"format\": \"tabdel_short\", \"include_feature_length_file\": true, \"pe_parameters\": {\"paired_end_status\": \"single_end\", \"__current_case__\": 0}, \"read_filtering_parameters\": {\"mapping_quality\": \"0\", \"splitonly\": \"\", \"primary\": false, \"ignore_dup\": false}, \"strand_specificity\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.0.3+galaxy1", + "type": "tool", + "uuid": "e185d096-a0fa-47b2-9a54-a217235e1693", + "when": null, + "workflow_outputs": [ + { + "label": "output_feature_lengths", + "output_name": "output_feature_lengths", + "uuid": "5cb5bd5d-df81-4463-8002-e89551780f01" + }, + { + "label": "output_short", + "output_name": "output_short", + "uuid": "5dec13e1-0011-472c-a72d-6715fe55c23c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 9, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 2, + "output_name": "text_file" + }, + "results_0|software_cond|output_1|input": { + "id": 4, + "output_name": "text_file" + }, + "results_1|software_cond|input": { + "id": 3, + "output_name": "report" + }, + "results_2|software_cond|input": { + "id": 5, + "output_name": "summary_file" + }, + "results_3|software_cond|output_0|type|input": { + "id": 7, + "output_name": "output" + }, + "results_3|software_cond|output_1|type|input": { + "id": 8, + "output_name": "outputtxt" + }, + "results_4|software_cond|input": { + "id": 6, + "output_name": "output_summary" + } + }, + "inputs": [], + "label": "Multi QC raw reads", + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1160, + "top": 121 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"cutadapt\", \"__current_case__\": 5, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"hisat2\", \"__current_case__\": 13, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 3, \"software_cond\": {\"software\": \"rseqc\", \"__current_case__\": 22, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"read_distribution\", \"__current_case__\": 6, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"type\": {\"type\": \"gene_body_coverage\", \"__current_case__\": 1, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}, {\"__index__\": 4, \"software_cond\": {\"software\": \"featureCounts\", \"__current_case__\": 9, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "30a849cc-437d-4a40-861b-797e69f8a1e3", + "when": null, + "workflow_outputs": [ + { + "label": "html_report", + "output_name": "html_report", + "uuid": "9217af4e-e34c-4a49-9d67-4b3df511ac2c" + } + ] + } + ], + "parent_id": "transcriptomics/minerva-pathways", + "path": "topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Counts.ga", + "tags": [ + "name:BY-COVID" + ], + "test_results": null, + "tests": true, + "title": "mRNA-Seq BY-COVID Pipeline: Counts", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-minerva-pathways/versions/galaxy-workflow-mrna-seq-by-covid-pipeline--counts", + "tutorial_id": "minerva-pathways", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Counts.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/minerva-pathways/workflows/Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Counts.html", + "version": 1, + "wfid": "transcriptomics-minerva-pathways", + "wfname": "galaxy-workflow-mrna-seq-by-covid-pipeline--counts", + "workflow": "Galaxy-Workflow-mRNA-Seq_BY-COVID_Pipeline__Counts.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/2.0.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.2.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/lparsons/cutadapt/cutadapt/4.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_geneBody_coverage/5.0.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/nilesh/rseqc/rseqc_read_distribution/5.0.1+galaxy2" + ], + "workflowhub_id": "1327" + } + ], + "zenodo_link": "https://zenodo.org/records/10405036" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "revisions": "7a7fd0f5f15d", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "deseq2", + "owner": "iuc", + "revisions": "0696db066a5b", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "featurecounts", + "owner": "iuc", + "revisions": "a37612abf7f9", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gffcompare", + "owner": "iuc", + "revisions": "0f710191a66d", + "tool_panel_section_label": "Filter and Sort", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "hisat2", + "owner": "iuc", + "revisions": "a86e80d3c09c", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stringtie", + "owner": "iuc", + "revisions": "eba36e001f45", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "stringtie", + "owner": "iuc", + "revisions": "eba36e001f45", + "tool_panel_section_label": "RNA Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "898b67846b47", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_bam_coverage\n owner: bgruening\n revisions: 7a7fd0f5f15d\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: deseq2\n owner: iuc\n revisions: '0696db066a5b'\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: featurecounts\n owner: iuc\n revisions: a37612abf7f9\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gffcompare\n owner: iuc\n revisions: 0f710191a66d\n tool_panel_section_label: Filter and Sort\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: hisat2\n owner: iuc\n revisions: a86e80d3c09c\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stringtie\n owner: iuc\n revisions: eba36e001f45\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: stringtie\n owner: iuc\n revisions: eba36e001f45\n tool_panel_section_label: RNA Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: 898b67846b47\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/de-novo/tutorial.json", + "contributions": { + "authorship": [ + "malloryfreeberg", + "moheydarian" + ], + "editing": [ + "jxtx" + ] + }, + "contributors": [ + { + "id": "malloryfreeberg", + "joined": "2017-09", + "name": "Mallory Freeberg", + "orcid": "0000-0003-2949-3921", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/malloryfreeberg/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/malloryfreeberg.json" + }, + { + "email": "mheydarian@gmail.com", + "id": "moheydarian", + "joined": "2017-09", + "name": "Mo Heydarian", + "orcid": "0000-0001-9449-9364", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/moheydarian/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/moheydarian.json" + }, + { + "id": "jxtx", + "in_memoriam": "James Taylor, a leader of the Galaxy Project, and one of its original members, passed away on April 2, 2020.\n\nHis impacts on the Galaxy community, have been incredible, and his loss is keenly felt.", + "joined": "2018-06", + "name": "James Taylor", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/jxtx/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/jxtx.json" + } + ], + "dir": "topics/transcriptomics/tutorials/de-novo", + "edam_operation": [ + "Sequencing quality control", + "Sequence alignment", + "Sequence composition calculation", + "Read summarisation", + "RNA-Seq quantification", + "Transcriptome assembly", + "Sequence annotation", + "Differential gene expression analysis", + "RNA-Seq analysis", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "transcriptomics/de-novo", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "De novo transcriptome reconstruction is the ideal approach for identifying differentially expressed known and novel transcripts.", + "Differential gene expression testing is improved with the use of replicate experiments and deep sequence coverage.", + "Visualizing data on a genome browser is a great way to display interesting patterns of differential expression." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Analysis of RNA sequencing data using a reference genome", + "Reconstruction of transcripts without reference transcriptome (de novo)", + "Analysis of differentially expressed genes" + ], + "pageviews": 23466, + "priority": 3, + "pub_date": "2017-02-19", + "questions": [ + "What genes are differentially expressed between G1E cells and megakaryocytes?", + "How can we generate a transcriptome de novo from RNA sequencing data?" + ], + "recordings": [ + { + "captioners": [ + "malloryfreeberg" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "48M", + "speakers": [ + "malloryfreeberg" + ], + "youtube_id": "WrOIpCxba78" + } + ], + "short_id": "T00289", + "short_tools": [ + "hisat2", + "deeptools_bam_coverage", + "stringtie_merge", + "featurecounts", + "fastqc", + "Filter1", + "gffcompare", + "deseq2", + "stringtie", + "trimmomatic" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "introduction", + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "6h", + "title": "De novo transcriptome reconstruction with RNA-Seq", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/gffcompare/gffcompare/0.11.2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie_merge/1.3.6", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.0" + ], + "topic_name": "transcriptomics", + "topic_name_human": "Transcriptomics", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "de-novo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/transcriptomics/tutorials/de-novo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/de-novo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/transcriptomics/tutorials/de-novo/tutorial.json" + }, + "version": 36, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 150, + "visitors": 13032, + "workflows": [ + { + "creators": [], + "description": "De novo transcriptome reconstruction with RNA-Seq", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG1E_rep1_forward_read\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG1E_rep1_reverse_read\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG1E_rep2_forward_read\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nG1E_rep2_reverse_read\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_rep1_forward_read\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_rep1_reverse_read\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_rep2_forward_read\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_rep2_reverse_read\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRefSeq_reference_GTF\"]\n 9[label=\"FastQC\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"FastQC\"]\n 1 -> 10 [label=\"output\"]\n 11[label=\"Trimmomatic\"]\n 0 -> 11 [label=\"output\"]\n 1 -> 11 [label=\"output\"]\n 12[label=\"FastQC\"]\n 2 -> 12 [label=\"output\"]\n 13[label=\"FastQC\"]\n 3 -> 13 [label=\"output\"]\n 14[label=\"Trimmomatic\"]\n 2 -> 14 [label=\"output\"]\n 3 -> 14 [label=\"output\"]\n 15[label=\"FastQC\"]\n 4 -> 15 [label=\"output\"]\n 16[label=\"FastQC\"]\n 5 -> 16 [label=\"output\"]\n 17[label=\"Trimmomatic\"]\n 4 -> 17 [label=\"output\"]\n 5 -> 17 [label=\"output\"]\n 18[label=\"FastQC\"]\n 6 -> 18 [label=\"output\"]\n 19[label=\"FastQC\"]\n 7 -> 19 [label=\"output\"]\n 20[label=\"Trimmomatic\"]\n 6 -> 20 [label=\"output\"]\n 7 -> 20 [label=\"output\"]\n 21[label=\"HISAT2\"]\n 11 -> 21 [label=\"fastq_out_r1_paired\"]\n 11 -> 21 [label=\"fastq_out_r2_paired\"]\n 22[label=\"FastQC\"]\n 11 -> 22 [label=\"fastq_out_r1_paired\"]\n 23[label=\"FastQC\"]\n 11 -> 23 [label=\"fastq_out_r2_paired\"]\n 24[label=\"HISAT2\"]\n 14 -> 24 [label=\"fastq_out_r1_paired\"]\n 14 -> 24 [label=\"fastq_out_r2_paired\"]\n 25[label=\"FastQC\"]\n 14 -> 25 [label=\"fastq_out_r1_paired\"]\n 26[label=\"FastQC\"]\n 14 -> 26 [label=\"fastq_out_r2_paired\"]\n 27[label=\"HISAT2\"]\n 17 -> 27 [label=\"fastq_out_r1_paired\"]\n 17 -> 27 [label=\"fastq_out_r2_paired\"]\n 28[label=\"FastQC\"]\n 17 -> 28 [label=\"fastq_out_r1_paired\"]\n 29[label=\"FastQC\"]\n 17 -> 29 [label=\"fastq_out_r2_paired\"]\n 30[label=\"HISAT2\"]\n 20 -> 30 [label=\"fastq_out_r1_paired\"]\n 20 -> 30 [label=\"fastq_out_r2_paired\"]\n 31[label=\"FastQC\"]\n 20 -> 31 [label=\"fastq_out_r1_paired\"]\n 32[label=\"FastQC\"]\n 20 -> 32 [label=\"fastq_out_r2_paired\"]\n 33[label=\"StringTie\"]\n 21 -> 33 [label=\"output_alignments\"]\n 34[label=\"bamCoverage\"]\n 21 -> 34 [label=\"output_alignments\"]\n 35[label=\"bamCoverage\"]\n 21 -> 35 [label=\"output_alignments\"]\n 36[label=\"StringTie\"]\n 24 -> 36 [label=\"output_alignments\"]\n 37[label=\"bamCoverage\"]\n 24 -> 37 [label=\"output_alignments\"]\n 38[label=\"bamCoverage\"]\n 24 -> 38 [label=\"output_alignments\"]\n 39[label=\"StringTie\"]\n 27 -> 39 [label=\"output_alignments\"]\n 40[label=\"bamCoverage\"]\n 27 -> 40 [label=\"output_alignments\"]\n 41[label=\"bamCoverage\"]\n 27 -> 41 [label=\"output_alignments\"]\n 42[label=\"StringTie\"]\n 30 -> 42 [label=\"output_alignments\"]\n 43[label=\"bamCoverage\"]\n 30 -> 43 [label=\"output_alignments\"]\n 44[label=\"bamCoverage\"]\n 30 -> 44 [label=\"output_alignments\"]\n 45[label=\"StringTie merge\"]\n 8 -> 45 [label=\"output\"]\n 33 -> 45 [label=\"output_gtf\"]\n 36 -> 45 [label=\"output_gtf\"]\n 42 -> 45 [label=\"output_gtf\"]\n 39 -> 45 [label=\"output_gtf\"]\n 46[label=\"GffCompare\"]\n 8 -> 46 [label=\"output\"]\n 45 -> 46 [label=\"out_gtf\"]\n 47[label=\"featureCounts\"]\n 21 -> 47 [label=\"output_alignments\"]\n 46 -> 47 [label=\"transcripts_annotated\"]\n 48[label=\"featureCounts\"]\n 24 -> 48 [label=\"output_alignments\"]\n 46 -> 48 [label=\"transcripts_annotated\"]\n 49[label=\"featureCounts\"]\n 27 -> 49 [label=\"output_alignments\"]\n 46 -> 49 [label=\"transcripts_annotated\"]\n 50[label=\"featureCounts\"]\n 30 -> 50 [label=\"output_alignments\"]\n 46 -> 50 [label=\"transcripts_annotated\"]\n 51[label=\"DESeq2\"]\n 47 -> 51 [label=\"output_short\"]\n 48 -> 51 [label=\"output_short\"]\n 49 -> 51 [label=\"output_short\"]\n 50 -> 51 [label=\"output_short\"]\n 52[label=\"Filter\"]\n 51 -> 52 [label=\"deseq_out\"]\n 53[label=\"Filter\"]\n 52 -> 53 [label=\"out_file1\"]\n 54[label=\"Filter\"]\n 52 -> 54 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "2a2b6329ed96aaaf214703eae87459c58d6e8702", + "message": "name fixed", + "num": 8, + "short_hash": "2a2b6329e", + "unix": "1581095735" + }, + { + "hash": "3d424d5e65326cf45c1e4d34851998ab29e6e85c", + "message": "annotation fixed", + "num": 7, + "short_hash": "3d424d5e6", + "unix": "1581014437" + }, + { + "hash": "2eade3cbf7b99b8252c3a53ac6cac59e0cacd432", + "message": "tags added", + "num": 6, + "short_hash": "2eade3cbf", + "unix": "1581004807" + }, + { + "hash": "07642064759cb13fda345ab9a687aa96b80b3004", + "message": "workflows updated with newer tools, added missing", + "num": 5, + "short_hash": "076420647", + "unix": "1580135207" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "ecc1e6096793e46d589e932f9ba3b76aa661decb", + "message": "workflow updated", + "num": 1, + "short_hash": "ecc1e6096", + "unix": "1536880842" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_rep1_forward_read" + } + ], + "label": "G1E_rep1_forward_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 290 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1c887335-aab6-4cba-b42c-245709f52480", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "58b0d678-aab8-4e89-9f22-2638b2b587e9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_rep1_reverse_read" + } + ], + "label": "G1E_rep1_reverse_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 419 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3722470f-b8c8-4def-9cb1-8a151b4013e7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8cfef7f7-d925-4f92-bb80-d5ec340f0524" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_rep2_forward_read" + } + ], + "label": "G1E_rep2_forward_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 548 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4e1331e5-07c7-4156-8b13-5f2622bbc01e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c843315e-60a3-46a7-ae29-ed9d97270cff" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_rep2_reverse_read" + } + ], + "label": "G1E_rep2_reverse_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 677 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "06814797-9497-436e-bddc-82b22dd2873c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5fd7967a-4a00-4d7b-9a62-7a8b0cf0a478" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_rep1_forward_read" + } + ], + "label": "Megakaryocyte_rep1_forward_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 806 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "92aa4ae0-48ec-4bf3-a67d-f6ec80df2684", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2a6f1fbe-2895-4083-85f8-93237ecce594" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_rep1_reverse_read" + } + ], + "label": "Megakaryocyte_rep1_reverse_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 935 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "997ad557-f4ad-4438-bf9b-5febe42df714", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2c37da60-ac5e-4149-8905-53be33257156" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_rep2_forward_read" + } + ], + "label": "Megakaryocyte_rep2_forward_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 1064 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "724e4a6c-1f6c-493e-b994-7a2a2978c675", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9edf754e-c3d8-499b-9269-4686133c640f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_rep2_reverse_read" + } + ], + "label": "Megakaryocyte_rep2_reverse_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 1193 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "5a3c7b9a-ed6b-434e-b8b4-a001229ea40c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fc42c4e-b960-44cd-b1e5-600341e1988f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "RefSeq_reference_GTF" + } + ], + "label": "RefSeq_reference_GTF", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 1322 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "e828db47-2ad6-471d-b20e-a12b417adf5f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8bdd01c7-48df-41f1-aaf1-87f318e4e380" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nG1E_rep1_forward_read\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nG1E_rep1_reverse_read\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nG1E_rep2_forward_read\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nG1E_rep2_reverse_read\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_rep1_forward_read\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_rep1_reverse_read\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_rep2_forward_read\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\nMegakaryocyte_rep2_reverse_read\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\nRefSeq_reference_GTF\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"FastQC\"];\n 0 -->|output| 9;\n 10[\"FastQC\"];\n 1 -->|output| 10;\n 11[\"Trimmomatic\"];\n 0 -->|output| 11;\n 1 -->|output| 11;\n 12[\"FastQC\"];\n 2 -->|output| 12;\n 13[\"FastQC\"];\n 3 -->|output| 13;\n 14[\"Trimmomatic\"];\n 2 -->|output| 14;\n 3 -->|output| 14;\n 15[\"FastQC\"];\n 4 -->|output| 15;\n 16[\"FastQC\"];\n 5 -->|output| 16;\n 17[\"Trimmomatic\"];\n 4 -->|output| 17;\n 5 -->|output| 17;\n 18[\"FastQC\"];\n 6 -->|output| 18;\n 19[\"FastQC\"];\n 7 -->|output| 19;\n 20[\"Trimmomatic\"];\n 6 -->|output| 20;\n 7 -->|output| 20;\n 21[\"HISAT2\"];\n 11 -->|fastq_out_r1_paired| 21;\n 11 -->|fastq_out_r2_paired| 21;\n 22[\"FastQC\"];\n 11 -->|fastq_out_r1_paired| 22;\n 23[\"FastQC\"];\n 11 -->|fastq_out_r2_paired| 23;\n 24[\"HISAT2\"];\n 14 -->|fastq_out_r1_paired| 24;\n 14 -->|fastq_out_r2_paired| 24;\n 25[\"FastQC\"];\n 14 -->|fastq_out_r1_paired| 25;\n 26[\"FastQC\"];\n 14 -->|fastq_out_r2_paired| 26;\n 27[\"HISAT2\"];\n 17 -->|fastq_out_r1_paired| 27;\n 17 -->|fastq_out_r2_paired| 27;\n 28[\"FastQC\"];\n 17 -->|fastq_out_r1_paired| 28;\n 29[\"FastQC\"];\n 17 -->|fastq_out_r2_paired| 29;\n 30[\"HISAT2\"];\n 20 -->|fastq_out_r1_paired| 30;\n 20 -->|fastq_out_r2_paired| 30;\n 31[\"FastQC\"];\n 20 -->|fastq_out_r1_paired| 31;\n 32[\"FastQC\"];\n 20 -->|fastq_out_r2_paired| 32;\n 33[\"StringTie\"];\n 21 -->|output_alignments| 33;\n 34[\"bamCoverage\"];\n 21 -->|output_alignments| 34;\n 35[\"bamCoverage\"];\n 21 -->|output_alignments| 35;\n 36[\"StringTie\"];\n 24 -->|output_alignments| 36;\n 37[\"bamCoverage\"];\n 24 -->|output_alignments| 37;\n 38[\"bamCoverage\"];\n 24 -->|output_alignments| 38;\n 39[\"StringTie\"];\n 27 -->|output_alignments| 39;\n 40[\"bamCoverage\"];\n 27 -->|output_alignments| 40;\n 41[\"bamCoverage\"];\n 27 -->|output_alignments| 41;\n 42[\"StringTie\"];\n 30 -->|output_alignments| 42;\n 43[\"bamCoverage\"];\n 30 -->|output_alignments| 43;\n 44[\"bamCoverage\"];\n 30 -->|output_alignments| 44;\n 45[\"StringTie merge\"];\n 8 -->|output| 45;\n 33 -->|output_gtf| 45;\n 36 -->|output_gtf| 45;\n 42 -->|output_gtf| 45;\n 39 -->|output_gtf| 45;\n 46[\"GffCompare\"];\n 8 -->|output| 46;\n 45 -->|out_gtf| 46;\n 47[\"featureCounts\"];\n 21 -->|output_alignments| 47;\n 46 -->|transcripts_annotated| 47;\n 48[\"featureCounts\"];\n 24 -->|output_alignments| 48;\n 46 -->|transcripts_annotated| 48;\n 49[\"featureCounts\"];\n 27 -->|output_alignments| 49;\n 46 -->|transcripts_annotated| 49;\n 50[\"featureCounts\"];\n 30 -->|output_alignments| 50;\n 46 -->|transcripts_annotated| 50;\n 51[\"DESeq2\"];\n 47 -->|output_short| 51;\n 48 -->|output_short| 51;\n 49 -->|output_short| 51;\n 50 -->|output_short| 51;\n 52[\"Filter\"];\n 51 -->|deseq_out| 52;\n 53[\"Filter\"];\n 52 -->|out_file1| 53;\n 54[\"Filter\"];\n 52 -->|out_file1| 54;", + "modified": "2024-08-18 00:06:25 +0000", + "name": "De novo transcriptome reconstruction with RNA-Seq", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_rep1_forward_read" + } + ], + "label": "G1E_rep1_forward_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 290 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "1c887335-aab6-4cba-b42c-245709f52480", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "58b0d678-aab8-4e89-9f22-2638b2b587e9" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_rep1_reverse_read" + } + ], + "label": "G1E_rep1_reverse_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 419 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3722470f-b8c8-4def-9cb1-8a151b4013e7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8cfef7f7-d925-4f92-bb80-d5ec340f0524" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_rep2_forward_read" + } + ], + "label": "G1E_rep2_forward_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 548 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "4e1331e5-07c7-4156-8b13-5f2622bbc01e", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "c843315e-60a3-46a7-ae29-ed9d97270cff" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "G1E_rep2_reverse_read" + } + ], + "label": "G1E_rep2_reverse_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 677 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "06814797-9497-436e-bddc-82b22dd2873c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5fd7967a-4a00-4d7b-9a62-7a8b0cf0a478" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_rep1_forward_read" + } + ], + "label": "Megakaryocyte_rep1_forward_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 806 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "92aa4ae0-48ec-4bf3-a67d-f6ec80df2684", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2a6f1fbe-2895-4083-85f8-93237ecce594" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_rep1_reverse_read" + } + ], + "label": "Megakaryocyte_rep1_reverse_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 935 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "997ad557-f4ad-4438-bf9b-5febe42df714", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "2c37da60-ac5e-4149-8905-53be33257156" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_rep2_forward_read" + } + ], + "label": "Megakaryocyte_rep2_forward_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 1064 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "724e4a6c-1f6c-493e-b994-7a2a2978c675", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9edf754e-c3d8-499b-9269-4686133c640f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Megakaryocyte_rep2_reverse_read" + } + ], + "label": "Megakaryocyte_rep2_reverse_read", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 1193 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "5a3c7b9a-ed6b-434e-b8b4-a001229ea40c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1fc42c4e-b960-44cd-b1e5-600341e1988f" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "RefSeq_reference_GTF" + } + ], + "label": "RefSeq_reference_GTF", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 1322 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "e828db47-2ad6-471d-b20e-a12b417adf5f", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "8bdd01c7-48df-41f1-aaf1-87f318e4e380" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "errors": null, + "id": 21, + "input_connections": { + "library|input_1": { + "id": 11, + "output_name": "fastq_out_r1_paired" + }, + "library|input_2": { + "id": 11, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [], + "label": null, + "name": "HISAT2", + "outputs": [ + { + "name": "output_alignments", + "type": "bam" + } + ], + "position": { + "left": 778, + "top": 290 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "tool_shed_repository": { + "changeset_revision": "0c16cad5e03b", + "name": "hisat2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"alignment_options\": {\"__current_case__\": 0, \"alignment_options_selector\": \"defaults\"}, \"output_options\": {\"output_options_selector\": \"defaults\", \"__current_case__\": 0}, \"other_options\": {\"other_options_selector\": \"defaults\", \"__current_case__\": 0}, \"scoring_options\": {\"scoring_options_selector\": \"defaults\", \"__current_case__\": 0}, \"spliced_options\": {\"coefficient\": \"0.0\", \"canonical_penalty\": \"0\", \"no_spliced_alignment_options\": {\"no_spliced_alignment\": \"\", \"__current_case__\": 1}, \"nc_function_type\": \"C\", \"constant_term\": \"0.0\", \"nc_coefficient\": \"1.0\", \"noncanonical_penalty\": \"3\", \"known_splice_gtf\": {\"__class__\": \"RuntimeValue\"}, \"nc_constant_term\": \"-8.0\", \"min_intron\": \"20\", \"function_type\": \"C\", \"__current_case__\": 1, \"notmplen\": \"false\", \"tma\": \"--dta\", \"max_intron\": \"500000\", \"spliced_options_selector\": \"advanced\", \"novel_splicesite_outfile\": \"false\"}, \"reporting_options\": {\"reporting_options_selector\": \"defaults\", \"__current_case__\": 0}, \"input_options\": {\"input_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"__page__\": null, \"sum\": {\"new_summary\": \"false\", \"summary_file\": \"false\"}, \"library\": {\"rna_strandness\": \"FR\", \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"type\": \"paired\", \"paired_options\": {\"paired_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"mm10\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.0+galaxy5", + "type": "tool", + "uuid": "47e82c2c-8015-4f9b-b52e-744dfa71663b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_alignments", + "uuid": "5bb58c35-9471-4d5d-8641-8ed9ff17f2bc" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 22, + "input_connections": { + "input_file": { + "id": 11, + "output_name": "fastq_out_r1_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 778, + "top": 1090 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "cf6c24f8-d0da-4ee3-b2b6-35fe2b713cdc", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "41b1e0fe-cc76-4c56-a314-e605644ec7c8" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "b45e4668-08bb-4357-b365-3d3fc0192cd2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 23, + "input_connections": { + "input_file": { + "id": 11, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 778, + "top": 1390 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "c768bbe0-3965-4da4-b049-1ddd225d2f7e", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "93faa429-8ff4-412a-9092-754e44a122a5" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "d70e0a34-5f4d-48e2-bced-272445267269" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "errors": null, + "id": 24, + "input_connections": { + "library|input_1": { + "id": 14, + "output_name": "fastq_out_r1_paired" + }, + "library|input_2": { + "id": 14, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [], + "label": null, + "name": "HISAT2", + "outputs": [ + { + "name": "output_alignments", + "type": "bam" + } + ], + "position": { + "left": 778, + "top": 490 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "tool_shed_repository": { + "changeset_revision": "0c16cad5e03b", + "name": "hisat2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"alignment_options\": {\"__current_case__\": 0, \"alignment_options_selector\": \"defaults\"}, \"output_options\": {\"output_options_selector\": \"defaults\", \"__current_case__\": 0}, \"other_options\": {\"other_options_selector\": \"defaults\", \"__current_case__\": 0}, \"scoring_options\": {\"scoring_options_selector\": \"defaults\", \"__current_case__\": 0}, \"spliced_options\": {\"coefficient\": \"0.0\", \"canonical_penalty\": \"0\", \"no_spliced_alignment_options\": {\"no_spliced_alignment\": \"\", \"__current_case__\": 1}, \"nc_function_type\": \"C\", \"constant_term\": \"0.0\", \"nc_coefficient\": \"1.0\", \"noncanonical_penalty\": \"3\", \"known_splice_gtf\": {\"__class__\": \"RuntimeValue\"}, \"nc_constant_term\": \"-8.0\", \"min_intron\": \"20\", \"function_type\": \"C\", \"__current_case__\": 1, \"notmplen\": \"false\", \"tma\": \"--dta\", \"max_intron\": \"500000\", \"spliced_options_selector\": \"advanced\", \"novel_splicesite_outfile\": \"false\"}, \"reporting_options\": {\"reporting_options_selector\": \"defaults\", \"__current_case__\": 0}, \"input_options\": {\"input_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"__page__\": null, \"sum\": {\"new_summary\": \"false\", \"summary_file\": \"false\"}, \"library\": {\"rna_strandness\": \"FR\", \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"type\": \"paired\", \"paired_options\": {\"paired_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"mm10\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.0+galaxy5", + "type": "tool", + "uuid": "7ced6c99-3501-4f2e-9109-30b1db74d056", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_alignments", + "uuid": "fb406cfe-34be-4c6a-be06-c5efd6f785ba" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 25, + "input_connections": { + "input_file": { + "id": 14, + "output_name": "fastq_out_r1_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 778, + "top": 1690 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "f5a2c061-1560-4c48-b34e-6f23d62e6a80", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "dc04a264-a7ff-444a-bb74-9448d9fd9311" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "811c9a2c-ebc4-4399-9fa8-186d15fadf04" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 26, + "input_connections": { + "input_file": { + "id": 14, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 778, + "top": 1990 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "adb607ce-5be3-4dcf-a981-d38144fa1679", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "4da3a94f-7d68-4c93-989d-a95b2286a343" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "854c4e5f-b2af-4c12-aefe-78f90e96f4d5" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "errors": null, + "id": 27, + "input_connections": { + "library|input_1": { + "id": 17, + "output_name": "fastq_out_r1_paired" + }, + "library|input_2": { + "id": 17, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [], + "label": null, + "name": "HISAT2", + "outputs": [ + { + "name": "output_alignments", + "type": "bam" + } + ], + "position": { + "left": 778, + "top": 690 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "tool_shed_repository": { + "changeset_revision": "0c16cad5e03b", + "name": "hisat2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"alignment_options\": {\"__current_case__\": 0, \"alignment_options_selector\": \"defaults\"}, \"output_options\": {\"output_options_selector\": \"defaults\", \"__current_case__\": 0}, \"other_options\": {\"other_options_selector\": \"defaults\", \"__current_case__\": 0}, \"scoring_options\": {\"scoring_options_selector\": \"defaults\", \"__current_case__\": 0}, \"spliced_options\": {\"coefficient\": \"0.0\", \"canonical_penalty\": \"0\", \"no_spliced_alignment_options\": {\"no_spliced_alignment\": \"\", \"__current_case__\": 1}, \"nc_function_type\": \"C\", \"constant_term\": \"0.0\", \"nc_coefficient\": \"1.0\", \"noncanonical_penalty\": \"3\", \"known_splice_gtf\": {\"__class__\": \"RuntimeValue\"}, \"nc_constant_term\": \"-8.0\", \"min_intron\": \"20\", \"function_type\": \"C\", \"__current_case__\": 1, \"notmplen\": \"false\", \"tma\": \"--dta\", \"max_intron\": \"500000\", \"spliced_options_selector\": \"advanced\", \"novel_splicesite_outfile\": \"false\"}, \"reporting_options\": {\"reporting_options_selector\": \"defaults\", \"__current_case__\": 0}, \"input_options\": {\"input_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"__page__\": null, \"sum\": {\"new_summary\": \"false\", \"summary_file\": \"false\"}, \"library\": {\"rna_strandness\": \"FR\", \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"type\": \"paired\", \"paired_options\": {\"paired_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"mm10\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.0+galaxy5", + "type": "tool", + "uuid": "49664070-ec4d-4077-82ae-856976b09f16", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_alignments", + "uuid": "0ef710de-cb6c-4502-83c5-f3c1fa3f4f77" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 28, + "input_connections": { + "input_file": { + "id": 17, + "output_name": "fastq_out_r1_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 778, + "top": 2290 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "a7e3b025-5fb9-4c9c-a232-a10a2c80d835", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "63e1f1dd-70ab-469e-8bf6-966cfc7a84c6" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "2d555968-dc97-450f-99df-25eaa2368d9b" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 29, + "input_connections": { + "input_file": { + "id": 17, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 778, + "top": 2590 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "57898d1b-fd1d-452d-a78f-5f42d4961fcb", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "e0d035b4-c63f-4117-b15b-6106996e2546" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "f20d8a11-0740-47b6-94c2-3bbbb3bf56d9" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "errors": null, + "id": 30, + "input_connections": { + "library|input_1": { + "id": 20, + "output_name": "fastq_out_r1_paired" + }, + "library|input_2": { + "id": 20, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [], + "label": null, + "name": "HISAT2", + "outputs": [ + { + "name": "output_alignments", + "type": "bam" + } + ], + "position": { + "left": 778, + "top": 890 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "tool_shed_repository": { + "changeset_revision": "0c16cad5e03b", + "name": "hisat2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"alignment_options\": {\"__current_case__\": 0, \"alignment_options_selector\": \"defaults\"}, \"output_options\": {\"output_options_selector\": \"defaults\", \"__current_case__\": 0}, \"other_options\": {\"other_options_selector\": \"defaults\", \"__current_case__\": 0}, \"scoring_options\": {\"scoring_options_selector\": \"defaults\", \"__current_case__\": 0}, \"spliced_options\": {\"coefficient\": \"0.0\", \"canonical_penalty\": \"0\", \"no_spliced_alignment_options\": {\"no_spliced_alignment\": \"\", \"__current_case__\": 1}, \"nc_function_type\": \"C\", \"constant_term\": \"0.0\", \"nc_coefficient\": \"1.0\", \"noncanonical_penalty\": \"3\", \"known_splice_gtf\": {\"__class__\": \"RuntimeValue\"}, \"nc_constant_term\": \"-8.0\", \"min_intron\": \"20\", \"function_type\": \"C\", \"__current_case__\": 1, \"notmplen\": \"false\", \"tma\": \"--dta\", \"max_intron\": \"500000\", \"spliced_options_selector\": \"advanced\", \"novel_splicesite_outfile\": \"false\"}, \"reporting_options\": {\"reporting_options_selector\": \"defaults\", \"__current_case__\": 0}, \"input_options\": {\"input_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"__page__\": null, \"sum\": {\"new_summary\": \"false\", \"summary_file\": \"false\"}, \"library\": {\"rna_strandness\": \"FR\", \"input_2\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 1, \"input_1\": {\"__class__\": \"ConnectedValue\"}, \"type\": \"paired\", \"paired_options\": {\"paired_options_selector\": \"defaults\", \"__current_case__\": 0}}, \"reference_genome\": {\"source\": \"indexed\", \"__current_case__\": 0, \"index\": \"mm10\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.0+galaxy5", + "type": "tool", + "uuid": "e2ab9d1e-6b3e-43b8-9c62-57218aa7bc49", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_alignments", + "uuid": "5525e4aa-5ef7-46fe-bfbf-61eeff7471d6" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 31, + "input_connections": { + "input_file": { + "id": 20, + "output_name": "fastq_out_r1_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 778, + "top": 2890 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "38e24d6f-fe1b-4939-953a-452be1f51d09", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "21c23f17-d675-4e2a-8d1b-1ac6e167c556" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "c4a3e0be-83e2-4cb3-a9fc-4487f66eb7f4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 32, + "input_connections": { + "input_file": { + "id": 20, + "output_name": "fastq_out_r2_paired" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool FastQC", + "name": "limits" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "contaminants" + }, + { + "description": "runtime parameter for tool FastQC", + "name": "adapters" + } + ], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "left": 778, + "top": 3190 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_length\": \"\", \"kmers\": \"7\", \"limits\": {\"__class__\": \"RuntimeValue\"}, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"contaminants\": {\"__class__\": \"RuntimeValue\"}, \"adapters\": {\"__class__\": \"RuntimeValue\"}, \"nogroup\": \"false\"}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "e6a19a1f-e2cc-4160-911b-860d09cc1b8d", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "c11f2b2f-2859-40bd-83c5-162cf3986c0c" + }, + { + "label": null, + "output_name": "text_file", + "uuid": "f77d32d9-c7c9-44f8-a268-e4020e322a17" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "errors": null, + "id": 33, + "input_connections": { + "input_bam": { + "id": 21, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "StringTie", + "outputs": [ + { + "name": "output_gtf", + "type": "gtf" + } + ], + "position": { + "left": 1106, + "top": 290 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "tool_shed_repository": { + "changeset_revision": "eba36e001f45", + "name": "stringtie", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"min_bundle_cov\": \"2\", \"min_tlen\": \"200\", \"bdist\": \"50\", \"multi_mapping\": \"false\", \"abundance_estimation\": \"false\", \"fraction\": \"0.15\", \"disable_trimming\": \"false\", \"omit_sequences\": \"\", \"name_prefix\": \"\", \"min_anchor_len\": \"10\", \"bundle_fraction\": \"0.95\", \"min_anchor_cov\": \"1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"rna_strandness\": \"--fr\", \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"guide\": {\"use_guide\": \"no\", \"__current_case__\": 0}}", + "tool_version": "1.3.6", + "type": "tool", + "uuid": "05be1a79-4ee1-4205-9f53-1e59cc483797", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_gtf", + "uuid": "8df32560-faae-49df-898a-02f664bda16a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "errors": null, + "id": 34, + "input_connections": { + "bamInput": { + "id": 21, + "output_name": "output_alignments" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bamCoverage", + "name": "advancedOpt" + } + ], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 1106, + "top": 850 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "tool_shed_repository": { + "changeset_revision": "7a7fd0f5f15d", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exactScaling\": \"false\", \"outFileFormat\": \"bigwig\", \"__page__\": null, \"region\": \"\", \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"1\", \"scaling\": {\"effectiveGenomeSize\": {\"effectiveGenomeSize_opt\": \"2304947926\", \"__current_case__\": 6}, \"type\": \"1x\", \"__current_case__\": 4}, \"advancedOpt\": {\"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"ignoreForNormalization\": \"\", \"minFragmentLength\": \"0\", \"minMappingQuality\": \"1\", \"MNase\": \"false\", \"samFlagInclude\": \"\", \"filterRNAstrand\": \"forward\", \"Offset\": \"\", \"smoothLength\": \"\", \"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"samFlagExclude\": \"\", \"doExtendCustom\": {\"__current_case__\": 0, \"doExtend\": \"no\"}, \"skipNAs\": \"false\", \"scaleFactor\": \"1.0\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}, \"maxFragmentLength\": \"0\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0.0.0", + "type": "tool", + "uuid": "9df5e150-d61c-4859-b1f8-edfcbef9ec49", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "a8de282b-03c0-4ead-939d-8f337804b292" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "errors": null, + "id": 35, + "input_connections": { + "bamInput": { + "id": 21, + "output_name": "output_alignments" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bamCoverage", + "name": "advancedOpt" + } + ], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 1106, + "top": 1530 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "tool_shed_repository": { + "changeset_revision": "7a7fd0f5f15d", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exactScaling\": \"false\", \"outFileFormat\": \"bigwig\", \"__page__\": null, \"region\": \"\", \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"1\", \"scaling\": {\"effectiveGenomeSize\": {\"effectiveGenomeSize_opt\": \"2304947926\", \"__current_case__\": 6}, \"type\": \"1x\", \"__current_case__\": 4}, \"advancedOpt\": {\"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"ignoreForNormalization\": \"\", \"minFragmentLength\": \"0\", \"minMappingQuality\": \"1\", \"MNase\": \"false\", \"samFlagInclude\": \"\", \"filterRNAstrand\": \"reverse\", \"Offset\": \"\", \"smoothLength\": \"\", \"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"samFlagExclude\": \"\", \"doExtendCustom\": {\"__current_case__\": 0, \"doExtend\": \"no\"}, \"skipNAs\": \"false\", \"scaleFactor\": \"1.0\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}, \"maxFragmentLength\": \"0\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0.0.0", + "type": "tool", + "uuid": "1a9a4e17-62a8-40c5-b9bd-f0992e7cb134", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "8b7bb1f6-2ae9-4deb-a902-7769b1657ecf" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "errors": null, + "id": 36, + "input_connections": { + "input_bam": { + "id": 24, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "StringTie", + "outputs": [ + { + "name": "output_gtf", + "type": "gtf" + } + ], + "position": { + "left": 1106, + "top": 430 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "tool_shed_repository": { + "changeset_revision": "eba36e001f45", + "name": "stringtie", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"min_bundle_cov\": \"2\", \"min_tlen\": \"200\", \"bdist\": \"50\", \"multi_mapping\": \"false\", \"abundance_estimation\": \"false\", \"fraction\": \"0.15\", \"disable_trimming\": \"false\", \"omit_sequences\": \"\", \"name_prefix\": \"\", \"min_anchor_len\": \"10\", \"bundle_fraction\": \"0.95\", \"min_anchor_cov\": \"1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"rna_strandness\": \"--fr\", \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"guide\": {\"use_guide\": \"no\", \"__current_case__\": 0}}", + "tool_version": "1.3.6", + "type": "tool", + "uuid": "6feba9a1-0cdb-41e6-9f7e-d2ab4b3f6adc", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_gtf", + "uuid": "7496fd31-357e-4884-b95e-d3e6ddf47c51" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "errors": null, + "id": 37, + "input_connections": { + "bamInput": { + "id": 24, + "output_name": "output_alignments" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bamCoverage", + "name": "advancedOpt" + } + ], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 1106, + "top": 1020 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "tool_shed_repository": { + "changeset_revision": "7a7fd0f5f15d", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exactScaling\": \"false\", \"outFileFormat\": \"bigwig\", \"__page__\": null, \"region\": \"\", \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"1\", \"scaling\": {\"effectiveGenomeSize\": {\"effectiveGenomeSize_opt\": \"2304947926\", \"__current_case__\": 6}, \"type\": \"1x\", \"__current_case__\": 4}, \"advancedOpt\": {\"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"ignoreForNormalization\": \"\", \"minFragmentLength\": \"0\", \"minMappingQuality\": \"1\", \"MNase\": \"false\", \"samFlagInclude\": \"\", \"filterRNAstrand\": \"forward\", \"Offset\": \"\", \"smoothLength\": \"\", \"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"samFlagExclude\": \"\", \"doExtendCustom\": {\"__current_case__\": 0, \"doExtend\": \"no\"}, \"skipNAs\": \"false\", \"scaleFactor\": \"1.0\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}, \"maxFragmentLength\": \"0\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0.0.0", + "type": "tool", + "uuid": "dfb2f1aa-f121-4dba-9105-a177ef5722ff", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "0b03495f-c57b-4a4b-959e-59bfcb3dafd0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "errors": null, + "id": 38, + "input_connections": { + "bamInput": { + "id": 24, + "output_name": "output_alignments" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bamCoverage", + "name": "advancedOpt" + } + ], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 1106, + "top": 1700 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "tool_shed_repository": { + "changeset_revision": "7a7fd0f5f15d", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exactScaling\": \"false\", \"outFileFormat\": \"bigwig\", \"__page__\": null, \"region\": \"\", \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"1\", \"scaling\": {\"effectiveGenomeSize\": {\"effectiveGenomeSize_opt\": \"2304947926\", \"__current_case__\": 6}, \"type\": \"1x\", \"__current_case__\": 4}, \"advancedOpt\": {\"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"ignoreForNormalization\": \"\", \"minFragmentLength\": \"0\", \"minMappingQuality\": \"1\", \"MNase\": \"false\", \"samFlagInclude\": \"\", \"filterRNAstrand\": \"reverse\", \"Offset\": \"\", \"smoothLength\": \"\", \"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"samFlagExclude\": \"\", \"doExtendCustom\": {\"__current_case__\": 0, \"doExtend\": \"no\"}, \"skipNAs\": \"false\", \"scaleFactor\": \"1.0\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}, \"maxFragmentLength\": \"0\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0.0.0", + "type": "tool", + "uuid": "d00922af-38a0-450b-81e9-5f94a8f4f5ba", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "ac07c391-dfc6-4fa7-bac9-2ac77095814a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "errors": null, + "id": 39, + "input_connections": { + "input_bam": { + "id": 27, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "StringTie", + "outputs": [ + { + "name": "output_gtf", + "type": "gtf" + } + ], + "position": { + "left": 1107, + "top": 570 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "tool_shed_repository": { + "changeset_revision": "eba36e001f45", + "name": "stringtie", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"min_bundle_cov\": \"2\", \"min_tlen\": \"200\", \"bdist\": \"50\", \"multi_mapping\": \"false\", \"abundance_estimation\": \"false\", \"fraction\": \"0.15\", \"disable_trimming\": \"false\", \"omit_sequences\": \"\", \"name_prefix\": \"\", \"min_anchor_len\": \"10\", \"bundle_fraction\": \"0.95\", \"min_anchor_cov\": \"1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"rna_strandness\": \"--fr\", \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"guide\": {\"use_guide\": \"no\", \"__current_case__\": 0}}", + "tool_version": "1.3.6", + "type": "tool", + "uuid": "d9a5d396-a2ec-4c32-9522-946cea6b83d3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_gtf", + "uuid": "1552601b-7419-40fd-9a1a-37b240f6c982" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "errors": null, + "id": 40, + "input_connections": { + "bamInput": { + "id": 27, + "output_name": "output_alignments" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bamCoverage", + "name": "advancedOpt" + } + ], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 1106, + "top": 1190 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "tool_shed_repository": { + "changeset_revision": "7a7fd0f5f15d", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exactScaling\": \"false\", \"outFileFormat\": \"bigwig\", \"__page__\": null, \"region\": \"\", \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"1\", \"scaling\": {\"effectiveGenomeSize\": {\"effectiveGenomeSize_opt\": \"2304947926\", \"__current_case__\": 6}, \"type\": \"1x\", \"__current_case__\": 4}, \"advancedOpt\": {\"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"ignoreForNormalization\": \"\", \"minFragmentLength\": \"0\", \"minMappingQuality\": \"1\", \"MNase\": \"false\", \"samFlagInclude\": \"\", \"filterRNAstrand\": \"forward\", \"Offset\": \"\", \"smoothLength\": \"\", \"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"samFlagExclude\": \"\", \"doExtendCustom\": {\"__current_case__\": 0, \"doExtend\": \"no\"}, \"skipNAs\": \"false\", \"scaleFactor\": \"1.0\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}, \"maxFragmentLength\": \"0\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0.0.0", + "type": "tool", + "uuid": "a433db0d-a73f-4be1-8c9a-cb9dffbeb4e2", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "3fcfd3a2-7025-471b-bd48-bb54dbae0ca8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "errors": null, + "id": 41, + "input_connections": { + "bamInput": { + "id": 27, + "output_name": "output_alignments" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bamCoverage", + "name": "advancedOpt" + } + ], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 1106, + "top": 1870 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "tool_shed_repository": { + "changeset_revision": "7a7fd0f5f15d", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exactScaling\": \"false\", \"outFileFormat\": \"bigwig\", \"__page__\": null, \"region\": \"\", \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"1\", \"scaling\": {\"effectiveGenomeSize\": {\"effectiveGenomeSize_opt\": \"2304947926\", \"__current_case__\": 6}, \"type\": \"1x\", \"__current_case__\": 4}, \"advancedOpt\": {\"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"ignoreForNormalization\": \"\", \"minFragmentLength\": \"0\", \"minMappingQuality\": \"1\", \"MNase\": \"false\", \"samFlagInclude\": \"\", \"filterRNAstrand\": \"reverse\", \"Offset\": \"\", \"smoothLength\": \"\", \"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"samFlagExclude\": \"\", \"doExtendCustom\": {\"__current_case__\": 0, \"doExtend\": \"no\"}, \"skipNAs\": \"false\", \"scaleFactor\": \"1.0\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}, \"maxFragmentLength\": \"0\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0.0.0", + "type": "tool", + "uuid": "441aaaaa-306b-445d-a0eb-49d7d197797f", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "fa0df65c-1398-409b-8dce-f6f6fb4cf433" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "errors": null, + "id": 42, + "input_connections": { + "input_bam": { + "id": 30, + "output_name": "output_alignments" + } + }, + "inputs": [], + "label": null, + "name": "StringTie", + "outputs": [ + { + "name": "output_gtf", + "type": "gtf" + } + ], + "position": { + "left": 1107, + "top": 710 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "tool_shed_repository": { + "changeset_revision": "eba36e001f45", + "name": "stringtie", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"min_bundle_cov\": \"2\", \"min_tlen\": \"200\", \"bdist\": \"50\", \"multi_mapping\": \"false\", \"abundance_estimation\": \"false\", \"fraction\": \"0.15\", \"disable_trimming\": \"false\", \"omit_sequences\": \"\", \"name_prefix\": \"\", \"min_anchor_len\": \"10\", \"bundle_fraction\": \"0.95\", \"min_anchor_cov\": \"1\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null, \"rna_strandness\": \"--fr\", \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"guide\": {\"use_guide\": \"no\", \"__current_case__\": 0}}", + "tool_version": "1.3.6", + "type": "tool", + "uuid": "8b977c7a-1b77-42c7-a2db-e3c5956ee6ad", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_gtf", + "uuid": "11730597-b79b-4c58-978c-44d3f352a899" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "errors": null, + "id": 43, + "input_connections": { + "bamInput": { + "id": 30, + "output_name": "output_alignments" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bamCoverage", + "name": "advancedOpt" + } + ], + "label": null, + "name": "bamCoverage", + "outputs": [ + { + "name": "outFileName", + "type": "bigwig" + } + ], + "position": { + "left": 1106, + "top": 1360 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "tool_shed_repository": { + "changeset_revision": "7a7fd0f5f15d", + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"exactScaling\": \"false\", \"outFileFormat\": \"bigwig\", \"__page__\": null, \"region\": \"\", \"bamInput\": {\"__class__\": \"ConnectedValue\"}, \"binSize\": \"1\", \"scaling\": {\"effectiveGenomeSize\": {\"effectiveGenomeSize_opt\": \"2304947926\", \"__current_case__\": 6}, \"type\": \"1x\", \"__current_case__\": 4}, \"advancedOpt\": {\"ignoreDuplicates\": \"false\", \"centerReads\": \"false\", \"ignoreForNormalization\": \"\", \"minFragmentLength\": \"0\", \"minMappingQuality\": \"1\", \"MNase\": \"false\", \"samFlagInclude\": \"\", \"filterRNAstrand\": \"forward\", \"Offset\": \"\", \"smoothLength\": \"\", \"showAdvancedOpt\": \"yes\", \"__current_case__\": 1, \"samFlagExclude\": \"\", \"doExtendCustom\": {\"__current_case__\": 0, \"doExtend\": \"no\"}, \"skipNAs\": \"false\", \"scaleFactor\": \"1.0\", \"blackListFileName\": {\"__class__\": \"RuntimeValue\"}, \"maxFragmentLength\": \"0\"}, \"__rerun_remap_job_id__\": null}", + "tool_version": "3.3.0.0.0", + "type": "tool", + "uuid": "a0b2660b-eba8-4e48-9855-980a45969237", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFileName", + "uuid": "b322012e-acd7-44f4-a4e2-ee4eb4e4bf64" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie_merge/1.3.6", + "errors": null, + "id": 45, + "input_connections": { + "guide_gff": { + "id": 8, + "output_name": "output" + }, + "input_gtf": [ + { + "id": 33, + "output_name": "output_gtf" + }, + { + "id": 36, + "output_name": "output_gtf" + }, + { + "id": 42, + "output_name": "output_gtf" + }, + { + "id": 39, + "output_name": "output_gtf" + } + ] + }, + "inputs": [], + "label": null, + "name": "StringTie merge", + "outputs": [ + { + "name": "out_gtf", + "type": "gtf" + } + ], + "position": { + "left": 1441, + "top": 298 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie_merge/1.3.6", + "tool_shed_repository": { + "changeset_revision": "eba36e001f45", + "name": "stringtie", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"min_iso\": \"0.01\", \"min_fpkm\": \"1.0\", \"keep_introns\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"min_len\": \"50\", \"guide_gff\": {\"__class__\": \"ConnectedValue\"}, \"min_cov\": \"0\", \"min_tpm\": \"1.0\", \"input_gtf\": {\"__class__\": \"ConnectedValue\"}, \"gap_len\": \"250\"}", + "tool_version": "1.3.6", + "type": "tool", + "uuid": "d4d8f2e1-7ac2-46d0-b541-a6a5cd488a33", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_gtf", + "uuid": "9b43230c-7595-46a5-96bf-15894bb56666" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "errors": null, + "id": 47, + "input_connections": { + "alignment": { + "id": 21, + "output_name": "output_alignments" + }, + "anno|reference_gene_sets": { + "id": 46, + "output_name": "transcripts_annotated" + } + }, + "inputs": [], + "label": null, + "name": "featureCounts", + "outputs": [ + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + } + ], + "position": { + "left": 2090, + "top": 290 + }, + "post_job_actions": { + "HideDatasetActionoutput_short": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_short" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a37612abf7f9", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"pe_parameters\": {\"only_both_ends\": \"false\", \"exclude_chimerics\": \"true\", \"fragment_counting_enabled\": {\"fragment_counting\": \"\", \"__current_case__\": 1}}, \"strand_specificity\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"format\": \"tabdel_short\", \"include_feature_length_file\": \"false\", \"anno\": {\"anno_select\": \"history\", \"reference_gene_sets\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 2}, \"extended_parameters\": {\"gff_feature_attribute\": \"transcript_id\", \"exon_exon_junction_read_counting_enabled\": {\"__current_case__\": 1, \"count_exon_exon_junction_reads\": \"false\"}, \"read_extension_3p\": \"0\", \"frac_overlap_feature\": \"0\", \"min_overlap\": \"1\", \"read_extension_5p\": \"0\", \"contribute_to_multiple_features\": \"false\", \"frac_overlap\": \"0\", \"primary\": \"false\", \"count_split_alignments_only\": \"false\", \"by_read_group\": \"false\", \"ignore_dup\": \"false\", \"mapping_quality\": \"12\", \"summarization_level\": \"false\", \"R\": \"false\", \"largest_overlap\": \"false\", \"read_reduction\": \"\", \"multimapping_enabled\": {\"multimapping_counts\": \"\", \"__current_case__\": 1}, \"long_reads\": \"false\", \"gff_feature_type\": \"exon\"}, \"alignment\": {\"__class__\": \"ConnectedValue\"}}", + "tool_version": "1.6.4+galaxy1", + "type": "tool", + "uuid": "95abe7d8-6d49-41dd-8147-e5c7c3764db7", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_summary", + "uuid": "03051c5b-afcc-467c-95f2-116fa87c9a79" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "errors": null, + "id": 48, + "input_connections": { + "alignment": { + "id": 24, + "output_name": "output_alignments" + }, + "anno|reference_gene_sets": { + "id": 46, + "output_name": "transcripts_annotated" + } + }, + "inputs": [], + "label": null, + "name": "featureCounts", + "outputs": [ + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + } + ], + "position": { + "left": 2085, + "top": 508 + }, + "post_job_actions": { + "HideDatasetActionoutput_short": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_short" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a37612abf7f9", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"pe_parameters\": {\"only_both_ends\": \"false\", \"exclude_chimerics\": \"true\", \"fragment_counting_enabled\": {\"fragment_counting\": \"\", \"__current_case__\": 1}}, \"strand_specificity\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"format\": \"tabdel_short\", \"include_feature_length_file\": \"false\", \"anno\": {\"anno_select\": \"history\", \"reference_gene_sets\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 2}, \"extended_parameters\": {\"gff_feature_attribute\": \"transcript_id\", \"exon_exon_junction_read_counting_enabled\": {\"__current_case__\": 1, \"count_exon_exon_junction_reads\": \"false\"}, \"read_extension_3p\": \"0\", \"frac_overlap_feature\": \"0\", \"min_overlap\": \"1\", \"read_extension_5p\": \"0\", \"contribute_to_multiple_features\": \"false\", \"frac_overlap\": \"0\", \"primary\": \"false\", \"count_split_alignments_only\": \"false\", \"by_read_group\": \"false\", \"ignore_dup\": \"false\", \"mapping_quality\": \"12\", \"summarization_level\": \"false\", \"R\": \"false\", \"largest_overlap\": \"false\", \"read_reduction\": \"\", \"multimapping_enabled\": {\"multimapping_counts\": \"\", \"__current_case__\": 1}, \"long_reads\": \"false\", \"gff_feature_type\": \"exon\"}, \"alignment\": {\"__class__\": \"ConnectedValue\"}}", + "tool_version": "1.6.4+galaxy1", + "type": "tool", + "uuid": "9ae13bea-d205-488c-8c9e-6727e69d7a12", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_summary", + "uuid": "90818597-3cff-42ee-8c5d-9e73babac7a3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "errors": null, + "id": 49, + "input_connections": { + "alignment": { + "id": 27, + "output_name": "output_alignments" + }, + "anno|reference_gene_sets": { + "id": 46, + "output_name": "transcripts_annotated" + } + }, + "inputs": [], + "label": null, + "name": "featureCounts", + "outputs": [ + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + } + ], + "position": { + "left": 2090, + "top": 730 + }, + "post_job_actions": { + "HideDatasetActionoutput_short": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_short" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a37612abf7f9", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"pe_parameters\": {\"only_both_ends\": \"false\", \"exclude_chimerics\": \"true\", \"fragment_counting_enabled\": {\"fragment_counting\": \"\", \"__current_case__\": 1}}, \"strand_specificity\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"format\": \"tabdel_short\", \"include_feature_length_file\": \"false\", \"anno\": {\"anno_select\": \"history\", \"reference_gene_sets\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 2}, \"extended_parameters\": {\"gff_feature_attribute\": \"transcript_id\", \"exon_exon_junction_read_counting_enabled\": {\"__current_case__\": 1, \"count_exon_exon_junction_reads\": \"false\"}, \"read_extension_3p\": \"0\", \"frac_overlap_feature\": \"0\", \"min_overlap\": \"1\", \"read_extension_5p\": \"0\", \"contribute_to_multiple_features\": \"false\", \"frac_overlap\": \"0\", \"primary\": \"false\", \"count_split_alignments_only\": \"false\", \"by_read_group\": \"false\", \"ignore_dup\": \"false\", \"mapping_quality\": \"12\", \"summarization_level\": \"false\", \"R\": \"false\", \"largest_overlap\": \"false\", \"read_reduction\": \"\", \"multimapping_enabled\": {\"multimapping_counts\": \"\", \"__current_case__\": 1}, \"long_reads\": \"false\", \"gff_feature_type\": \"exon\"}, \"alignment\": {\"__class__\": \"ConnectedValue\"}}", + "tool_version": "1.6.4+galaxy1", + "type": "tool", + "uuid": "db762d9c-4d9f-427a-a5d0-0c1bff0ee11b", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_summary", + "uuid": "bfb857ae-181f-40e5-a85c-45ea832609ee" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "errors": null, + "id": 50, + "input_connections": { + "alignment": { + "id": 30, + "output_name": "output_alignments" + }, + "anno|reference_gene_sets": { + "id": 46, + "output_name": "transcripts_annotated" + } + }, + "inputs": [], + "label": null, + "name": "featureCounts", + "outputs": [ + { + "name": "output_short", + "type": "tabular" + }, + { + "name": "output_summary", + "type": "tabular" + } + ], + "position": { + "left": 2090, + "top": 950 + }, + "post_job_actions": { + "HideDatasetActionoutput_short": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_short" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "tool_shed_repository": { + "changeset_revision": "a37612abf7f9", + "name": "featurecounts", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"pe_parameters\": {\"only_both_ends\": \"false\", \"exclude_chimerics\": \"true\", \"fragment_counting_enabled\": {\"fragment_counting\": \"\", \"__current_case__\": 1}}, \"strand_specificity\": \"1\", \"__page__\": null, \"__rerun_remap_job_id__\": null, \"format\": \"tabdel_short\", \"include_feature_length_file\": \"false\", \"anno\": {\"anno_select\": \"history\", \"reference_gene_sets\": {\"__class__\": \"ConnectedValue\"}, \"__current_case__\": 2}, \"extended_parameters\": {\"gff_feature_attribute\": \"transcript_id\", \"exon_exon_junction_read_counting_enabled\": {\"__current_case__\": 1, \"count_exon_exon_junction_reads\": \"false\"}, \"read_extension_3p\": \"0\", \"frac_overlap_feature\": \"0\", \"min_overlap\": \"1\", \"read_extension_5p\": \"0\", \"contribute_to_multiple_features\": \"false\", \"frac_overlap\": \"0\", \"primary\": \"false\", \"count_split_alignments_only\": \"false\", \"by_read_group\": \"false\", \"ignore_dup\": \"false\", \"mapping_quality\": \"12\", \"summarization_level\": \"false\", \"R\": \"false\", \"largest_overlap\": \"false\", \"read_reduction\": \"\", \"multimapping_enabled\": {\"multimapping_counts\": \"\", \"__current_case__\": 1}, \"long_reads\": \"false\", \"gff_feature_type\": \"exon\"}, \"alignment\": {\"__class__\": \"ConnectedValue\"}}", + "tool_version": "1.6.4+galaxy1", + "type": "tool", + "uuid": "16d0abf6-f6e0-4b5c-a857-114cd7b9b319", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_summary", + "uuid": "35019ed7-acfd-410b-86f4-7f75b84f737e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6", + "errors": null, + "id": 51, + "input_connections": { + "select_data|rep_factorName_0|rep_factorLevel_0|countsFile": [ + { + "id": 47, + "output_name": "output_short" + }, + { + "id": 48, + "output_name": "output_short" + } + ], + "select_data|rep_factorName_0|rep_factorLevel_1|countsFile": [ + { + "id": 49, + "output_name": "output_short" + }, + { + "id": 50, + "output_name": "output_short" + } + ] + }, + "inputs": [ + { + "description": "runtime parameter for tool DESeq2", + "name": "batch_factors" + } + ], + "label": null, + "name": "DESeq2", + "outputs": [ + { + "name": "deseq_out", + "type": "tabular" + }, + { + "name": "plots", + "type": "pdf" + }, + { + "name": "counts_out", + "type": "tabular" + } + ], + "position": { + "left": 2418, + "top": 290 + }, + "post_job_actions": { + "HideDatasetActioncounts_out": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "counts_out" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6", + "tool_shed_repository": { + "changeset_revision": "0696db066a5b", + "name": "deseq2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"fit_type\": \"1\", \"__page__\": null, \"normVST\": \"false\", \"tximport\": {\"tximport_selector\": \"count\", \"__current_case__\": 1}, \"esf\": \"\", \"outlier_replace_off\": \"false\", \"__rerun_remap_job_id__\": null, \"auto_mean_filter_off\": \"false\", \"header\": \"true\", \"normCounts\": \"true\", \"outlier_filter_off\": \"false\", \"many_contrasts\": \"false\", \"batch_factors\": {\"__class__\": \"RuntimeValue\"}, \"pdf\": \"true\", \"normRLog\": \"false\", \"select_data\": {\"how\": \"datasets_per_level\", \"rep_factorName\": [{\"__index__\": 0, \"factorName\": \"FactorName\", \"rep_factorLevel\": [{\"__index__\": 0, \"factorLevel\": \"GIE\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"factorLevel\": \"Mega\", \"countsFile\": {\"__class__\": \"ConnectedValue\"}}]}], \"__current_case__\": 1}}", + "tool_version": "2.11.40.6", + "type": "tool", + "uuid": "31920f6a-7735-48ea-b477-e7b2933b4f97", + "workflow_outputs": [ + { + "label": null, + "output_name": "plots", + "uuid": "ba05745d-db6f-4077-a524-713fa808be82" + }, + { + "label": null, + "output_name": "deseq_out", + "uuid": "5fab25c2-11d8-424e-9877-4d91fd75c60f" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 52, + "input_connections": { + "input": { + "id": 51, + "output_name": "deseq_out" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2746, + "top": 290 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"cond\": \"c7<0.05\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"header_lines\": \"0\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/mm10.len\"}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "d3f69676-a4ab-422d-9477-e48469e7eb0e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "ed66aa96-1b4f-4307-8ddf-a9a8ff50412c" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 53, + "input_connections": { + "input": { + "id": 52, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2996, + "top": 290 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"cond\": \"c3>0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"header_lines\": \"0\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/mm10.len\"}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "8addb367-a444-40b4-899d-224ac94c3ab5", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "4bb7c046-c14f-448c-9d71-fe78fb90db94" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 54, + "input_connections": { + "input": { + "id": 52, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 2996, + "top": 410 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"cond\": \"c3<0\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"header_lines\": \"0\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/mm10.len\"}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "ed3d5b8f-82ef-4992-9528-ad9238b30d2f", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "d7dc54e1-74ec-4105-81f0-e205538bbb6f" + } + ] + } + ], + "parent_id": "transcriptomics/de-novo", + "path": "topics/transcriptomics/tutorials/de-novo/workflows/transcriptomics-denovo-workflow.ga", + "tags": [ + "transcriptomics" + ], + "test_results": null, + "tests": false, + "title": "De novo transcriptome reconstruction with RNA-Seq", + "topic_id": "transcriptomics", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/transcriptomics-de-novo/versions/transcriptomics-denovo-workflow", + "tutorial_id": "de-novo", + "url": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/de-novo/workflows/transcriptomics-denovo-workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/transcriptomics/tutorials/de-novo/workflows/transcriptomics-denovo-workflow.html", + "version": 5, + "wfid": "transcriptomics-de-novo", + "wfname": "transcriptomics-denovo-workflow", + "workflow": "transcriptomics-denovo-workflow.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.3.0.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/deseq2/deseq2/2.11.40.6", + "toolshed.g2.bx.psu.edu/repos/iuc/featurecounts/featurecounts/1.6.4+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/gffcompare/gffcompare/0.11.2", + "toolshed.g2.bx.psu.edu/repos/iuc/hisat2/hisat2/2.1.0+galaxy5", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie/1.3.6", + "toolshed.g2.bx.psu.edu/repos/iuc/stringtie/stringtie_merge/1.3.6", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.0" + ], + "workflowhub_id": "1319" + } + ], + "zenodo_link": "https://zenodo.org/records/583140" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "affiliations": [ + "pndb", + "gallantries", + "fairease", + "fnso2019", + "elixir-europe" + ], + "elixir_node": "fr", + "email": "yvan.le-bras@mnhn.fr", + "id": "yvanlebras", + "joined": "2017-09", + "matrix": "yvanlebras:matrix.org", + "name": "Yvan Le Bras", + "orcid": "0000-0002-8504-068X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/yvanlebras/", + "twitter": "Yvan2935", + "url": "https://training.galaxyproject.org/training-material/api/contributors/yvanlebras.json" + } + ], + "dir": "topics/variant-analysis/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "variant-analysis/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-03-05", + "pageviews": 5726884, + "priority": 0, + "pub_date": "2016-08-19", + "redirect_from": [ + "/topics/variant-analysis/slides/introduction", + "/short/variant-analysis/introduction/slides", + "/short/S00099" + ], + "short_id": "S00099", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "subtopic": "introduction", + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Introduction to Variant analysis", + "tools": [], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/introduction/slides.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bamtools_filter", + "owner": "devteam", + "revisions": "cb20f99fd45b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "156b60c1530f", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "57def2d7c093", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "156b60c1530f", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "ef2c525bd8cd", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "a1f0b3f4b781", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "f9242e01365a", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "vcf2tsv", + "owner": "devteam", + "revisions": "e92b3c0f9224", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "vcffilter", + "owner": "devteam", + "revisions": "81972652519c", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bamtools_filter\n owner: devteam\n revisions: cb20f99fd45b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: 156b60c1530f\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: 57def2d7c093\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: 156b60c1530f\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: ef2c525bd8cd\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: a1f0b3f4b781\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: f9242e01365a\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: vcf2tsv\n owner: devteam\n revisions: e92b3c0f9224\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: vcffilter\n owner: devteam\n revisions: 81972652519c\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/non-dip/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "email": "a.ostrovsky@mac.com", + "id": "astrovsky01", + "joined": "2019-06", + "name": "Alex Ostrovsky", + "orcid": "0000-0002-7901-7109", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/astrovsky01/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/astrovsky01.json" + } + ], + "dir": "topics/variant-analysis/tutorials/non-dip", + "edam_ontology": [ + "topic_0622", + "topic_0196", + "topic_2885", + "topic_3301", + "topic_0080", + "topic_0199" + ], + "edam_operation": [ + "Sequencing quality control", + "Genome indexing", + "Sequence alignment", + "Formatting", + "Sequence composition calculation", + "Sequence alignment analysis", + "Read mapping", + "Generation", + "Data handling", + "Variant calling", + "Statistical calculation" + ], + "edam_topic": [ + "Genomics", + "Sequence assembly", + "DNA polymorphism", + "Microbiology", + "Sequence analysis", + "Genetic variation" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/non-dip", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Variation in human mitochondria is a proxy for other haploid systems.", + "Nucleotide variants in haploid systems may have any frequency between 0 and 1.", + "Distinguishing true variants from noise is not easy and requires accounting
for strand bias and read placement bias.", + "FreeBayes can be effectively used to call variants in haploid systems." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-15", + "objectives": [ + "Using Galaxy's main site we will see how to call variants in bacteria, viruses, and organelles." + ], + "pageviews": 13427, + "pub_date": "2017-02-16", + "questions": [ + "How does frequency of mitochondrial polymorphisms change from mother to child?" + ], + "short_id": "T00314", + "short_tools": [ + "picard_MarkDuplicates", + "freebayes", + "vcf2tsv", + "picard_MergeSamFiles", + "vcffilter2", + "bamFilter", + "Cut1", + "fastqc", + "bamleftalign", + "bwa_mem" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "introduction", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "microgalaxy" + ], + "time_estimation": "1h30m", + "title": "Calling variants in non-diploid systems", + "tools": [ + "Cut1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.1.0.46-0", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.1.0.46-0", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MergeSamFiles/2.18.2.1", + "toolshed.g2.bx.psu.edu/repos/devteam/vcf2tsv/vcf2tsv/1.0.0_rc1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/vcffilter/vcffilter2/1.0.0_rc1+galaxy3" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "non-dip", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/non-dip/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/non-dip/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/non-dip/tutorial.json" + }, + "version": 23, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 123, + "visitors": 7035, + "workflows": [ + { + "creators": [], + "description": "Calling variants in non-diploid systems", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nraw_child-ds-1.fq\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nraw_child-ds-2.fq\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nraw_mother-ds-1.fq\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nraw_mother-ds-2.fq\"]\n 4[label=\"FastQC\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"FastQC\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Map with BWA-MEM\"]\n 0 -> 6 [label=\"output\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"FastQC\"]\n 2 -> 7 [label=\"output\"]\n 8[label=\"FastQC\"]\n 3 -> 8 [label=\"output\"]\n 9[label=\"Map with BWA-MEM\"]\n 2 -> 9 [label=\"output\"]\n 3 -> 9 [label=\"output\"]\n 10[label=\"MergeSamFiles\"]\n 9 -> 10 [label=\"bam_output\"]\n 6 -> 10 [label=\"bam_output\"]\n 11[label=\"MarkDuplicates\"]\n 10 -> 11 [label=\"outFile\"]\n 12[label=\"BamLeftAlign\"]\n 11 -> 12 [label=\"outFile\"]\n 13[label=\"Filter\"]\n 12 -> 13 [label=\"output_bam\"]\n 14[label=\"FreeBayes\"]\n 13 -> 14 [label=\"out_file1\"]\n 15[label=\"VCFfilter:\"]\n 14 -> 15 [label=\"output_vcf\"]\n 16[label=\"VCFtoTab-delimited:\"]\n 15 -> 16 [label=\"out_file1\"]\n 17[label=\"Cut\"]\n 16 -> 17 [label=\"out_file1\"]\n kf2e84a79a71f4b5fa52655d8cd472a05[color=lightseagreen,label=\"Output\\ncut_variants\"]\n 17 -> kf2e84a79a71f4b5fa52655d8cd472a05\n}", + "history": [ + { + "hash": "5b87c7df6e877097a3603fd9c61c7b06ba80edde", + "message": "Fix workflow.", + "num": 5, + "short_hash": "5b87c7df6", + "unix": "1603492665" + }, + { + "hash": "d3d9d2eef6124deb16a40900afb0aa5a42406cf4", + "message": "Fix workflow parameters.", + "num": 4, + "short_hash": "d3d9d2eef", + "unix": "1603490219" + }, + { + "hash": "20545ace59ccff2e7c93bf5bcf8ca505e89e9908", + "message": "Add workflow test.", + "num": 3, + "short_hash": "20545ace5", + "unix": "1603489428" + }, + { + "hash": "6cd2c31a78f258dc4c95f9a10c07ade3b91341ed", + "message": "Update workflow.", + "num": 2, + "short_hash": "6cd2c31a7", + "unix": "1603488185" + }, + { + "hash": "3b2d76cce07bfdf8ec3b4e1103c9d9809c8d4b6b", + "message": "workflow made for variant analysis tutorial", + "num": 1, + "short_hash": "3b2d76cce", + "unix": "1581096673" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw_child-ds-1.fq" + } + ], + "label": "raw_child-ds-1.fq", + "name": "raw_child-ds-1.fq", + "outputs": [], + "position": { + "bottom": 287.28125, + "height": 81, + "left": -1063.59375, + "right": -863.59375, + "top": 206.28125, + "width": 200, + "x": -1063.59375, + "y": 206.28125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw_child-ds-1.fq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2dcb08e6-5039-4144-a603-47a5c91c3a29", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e9ae6a72-22e9-48d7-b121-3e3bb447294b" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw_child-ds-2.fq" + } + ], + "label": "raw_child-ds-2.fq", + "name": "raw_child-ds-2.fq", + "outputs": [], + "position": { + "bottom": 390.015625, + "height": 81, + "left": -1089.59375, + "right": -889.59375, + "top": 309.015625, + "width": 200, + "x": -1089.59375, + "y": 309.015625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw_child-ds-2.fq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "36a31c5b-b283-4009-9bbd-b47ec72a2915", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "448f3574-bb8d-4275-a080-d3416863260d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw_mother-ds-1.fq" + } + ], + "label": "raw_mother-ds-1.fq", + "name": "raw_mother-ds-1.fq", + "outputs": [], + "position": { + "bottom": 492.78125, + "height": 81, + "left": -1109.59375, + "right": -909.59375, + "top": 411.78125, + "width": 200, + "x": -1109.59375, + "y": 411.78125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw_mother-ds-1.fq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "699c61d4-2f31-4853-9e1b-a49f11bb1bd3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "56373c09-3e52-44af-854c-f826ec6a72e2" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw_mother-ds-2.fq" + } + ], + "label": "raw_mother-ds-2.fq", + "name": "raw_mother-ds-2.fq", + "outputs": [], + "position": { + "bottom": 616.53125, + "height": 81, + "left": -1114.59375, + "right": -914.59375, + "top": 535.53125, + "width": 200, + "x": -1114.59375, + "y": 535.53125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw_mother-ds-2.fq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3f624810-6b7e-4f63-aa97-6f391b2f8612", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1e6fae5a-d470-4796-9b55-6852b7ee5fb0" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nraw_child-ds-1.fq\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nraw_child-ds-2.fq\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nraw_mother-ds-1.fq\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nraw_mother-ds-2.fq\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"FastQC\"];\n 0 -->|output| 4;\n 5[\"FastQC\"];\n 1 -->|output| 5;\n 6[\"Map with BWA-MEM\"];\n 0 -->|output| 6;\n 1 -->|output| 6;\n 7[\"FastQC\"];\n 2 -->|output| 7;\n 8[\"FastQC\"];\n 3 -->|output| 8;\n 9[\"Map with BWA-MEM\"];\n 2 -->|output| 9;\n 3 -->|output| 9;\n 10[\"MergeSamFiles\"];\n 9 -->|bam_output| 10;\n 6 -->|bam_output| 10;\n 11[\"MarkDuplicates\"];\n 10 -->|outFile| 11;\n 12[\"BamLeftAlign\"];\n 11 -->|outFile| 12;\n 13[\"Filter\"];\n 12 -->|output_bam| 13;\n 14[\"FreeBayes\"];\n 13 -->|out_file1| 14;\n 15[\"VCFfilter:\"];\n 14 -->|output_vcf| 15;\n 16[\"VCFtoTab-delimited:\"];\n 15 -->|out_file1| 16;\n 17[\"Cut\"];\n 16 -->|out_file1| 17;\n f2e84a79-a71f-4b5f-a526-55d8cd472a05[\"Output\\ncut_variants\"];\n 17 --> f2e84a79-a71f-4b5f-a526-55d8cd472a05;\n style f2e84a79-a71f-4b5f-a526-55d8cd472a05 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Calling variants in non-diploid systems", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw_child-ds-1.fq" + } + ], + "label": "raw_child-ds-1.fq", + "name": "raw_child-ds-1.fq", + "outputs": [], + "position": { + "bottom": 287.28125, + "height": 81, + "left": -1063.59375, + "right": -863.59375, + "top": 206.28125, + "width": 200, + "x": -1063.59375, + "y": 206.28125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw_child-ds-1.fq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "2dcb08e6-5039-4144-a603-47a5c91c3a29", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "e9ae6a72-22e9-48d7-b121-3e3bb447294b" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw_child-ds-2.fq" + } + ], + "label": "raw_child-ds-2.fq", + "name": "raw_child-ds-2.fq", + "outputs": [], + "position": { + "bottom": 390.015625, + "height": 81, + "left": -1089.59375, + "right": -889.59375, + "top": 309.015625, + "width": 200, + "x": -1089.59375, + "y": 309.015625 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw_child-ds-2.fq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "36a31c5b-b283-4009-9bbd-b47ec72a2915", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "448f3574-bb8d-4275-a080-d3416863260d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw_mother-ds-1.fq" + } + ], + "label": "raw_mother-ds-1.fq", + "name": "raw_mother-ds-1.fq", + "outputs": [], + "position": { + "bottom": 492.78125, + "height": 81, + "left": -1109.59375, + "right": -909.59375, + "top": 411.78125, + "width": 200, + "x": -1109.59375, + "y": 411.78125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw_mother-ds-1.fq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "699c61d4-2f31-4853-9e1b-a49f11bb1bd3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "56373c09-3e52-44af-854c-f826ec6a72e2" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "raw_mother-ds-2.fq" + } + ], + "label": "raw_mother-ds-2.fq", + "name": "raw_mother-ds-2.fq", + "outputs": [], + "position": { + "bottom": 616.53125, + "height": 81, + "left": -1114.59375, + "right": -914.59375, + "top": 535.53125, + "width": 200, + "x": -1114.59375, + "y": 535.53125 + }, + "tool_id": null, + "tool_state": "{\"name\": \"raw_mother-ds-2.fq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3f624810-6b7e-4f63-aa97-6f391b2f8612", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1e6fae5a-d470-4796-9b55-6852b7ee5fb0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 4, + "input_connections": { + "input_file": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": 453.28125, + "height": 312, + "left": -778.09375, + "right": -578.09375, + "top": 141.28125, + "width": 200, + "x": -778.09375, + "y": 141.28125 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger\", \"adapters\": null, \"chromInfo\": \"/galaxy/server/database/tool-data/shared/ucsc/chrom/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": \"\", \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "71a54431-4e1a-4472-b1bd-f8f9a7790525", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "4aebe771-098d-48ca-9155-f1e0858a51a2" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 5, + "input_connections": { + "input_file": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": 568.28125, + "height": 312, + "left": -781.09375, + "right": -581.09375, + "top": 256.28125, + "width": 200, + "x": -781.09375, + "y": 256.28125 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger\", \"adapters\": null, \"chromInfo\": \"/galaxy/server/database/tool-data/shared/ucsc/chrom/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": \"\", \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "88a42cbf-c8b6-4cbf-b344-9b3e3c45a045", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "37517da4-ceb4-45ee-a720-e8c257c45cfd" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 6, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 0, + "output_name": "output" + }, + "fastq_input|fastq_input2": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "bottom": 1108.28125, + "height": 202, + "left": -793.09375, + "right": -593.09375, + "top": 906.28125, + "width": 200, + "x": -793.09375, + "y": 906.28125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "3fe632431b68", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"fastq_input\": {\"fastq_input_selector\": \"paired\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"fastq_input2\": {\"__class__\": \"ConnectedValue\"}, \"iset_stats\": \"\"}, \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"ref_file\": \"hg38\"}, \"rg\": {\"rg_selector\": \"set\", \"__current_case__\": 1, \"read_group_id_conditional\": {\"do_auto_name\": \"true\", \"__current_case__\": 0}, \"read_group_sm_conditional\": {\"do_auto_name\": \"true\", \"__current_case__\": 0}, \"PL\": \"ILLUMINA\", \"read_group_lb_conditional\": {\"do_auto_name\": \"true\", \"__current_case__\": 0}, \"CN\": \"\", \"DS\": \"\", \"DT\": \"\", \"FO\": \"\", \"KS\": \"\", \"PG\": \"\", \"PI\": \"\", \"PU\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "5b113fad-5ffb-411f-9879-f6282e763d7c", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "e4377aa0-a311-42fd-b715-daf01c035520" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": 697.28125, + "height": 312, + "left": -785.09375, + "right": -585.09375, + "top": 385.28125, + "width": 200, + "x": -785.09375, + "y": 385.28125 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger\", \"adapters\": null, \"chromInfo\": \"/galaxy/server/database/tool-data/shared/ucsc/chrom/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": \"\", \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "d310b4c9-c42c-4814-a733-b3ee6b22c97e", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "404c3095-e1e5-4e4f-80d7-3082017da0ae" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "input_file": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "FastQC", + "outputs": [ + { + "name": "html_file", + "type": "html" + }, + { + "name": "text_file", + "type": "txt" + } + ], + "position": { + "bottom": 900.28125, + "height": 312, + "left": -783.09375, + "right": -583.09375, + "top": 588.28125, + "width": 200, + "x": -783.09375, + "y": 588.28125 + }, + "post_job_actions": { + "HideDatasetActiontext_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "text_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "tool_shed_repository": { + "changeset_revision": "e7b2202befea", + "name": "fastqc", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"fastqsanger\", \"adapters\": null, \"chromInfo\": \"/galaxy/server/database/tool-data/shared/ucsc/chrom/?.len\", \"contaminants\": null, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"kmers\": \"7\", \"limits\": null, \"min_length\": \"\", \"nogroup\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.72+galaxy1", + "type": "tool", + "uuid": "57cbf8b4-5fea-47f0-ac76-36e8fabadbd1", + "workflow_outputs": [ + { + "label": null, + "output_name": "html_file", + "uuid": "3ceb39f3-841c-4340-a35e-baaf92a21b4c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "errors": null, + "id": 9, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 2, + "output_name": "output" + }, + "fastq_input|fastq_input2": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Map with BWA-MEM", + "outputs": [ + { + "name": "bam_output", + "type": "bam" + } + ], + "position": { + "bottom": 1333.28125, + "height": 202, + "left": -798.40625, + "right": -598.40625, + "top": 1131.28125, + "width": 200, + "x": -798.40625, + "y": 1131.28125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "tool_shed_repository": { + "changeset_revision": "3fe632431b68", + "name": "bwa", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"analysis_type\": {\"analysis_type_selector\": \"illumina\", \"__current_case__\": 0}, \"fastq_input\": {\"fastq_input_selector\": \"paired\", \"__current_case__\": 0, \"fastq_input1\": {\"__class__\": \"ConnectedValue\"}, \"fastq_input2\": {\"__class__\": \"ConnectedValue\"}, \"iset_stats\": \"\"}, \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"ref_file\": \"hg38\"}, \"rg\": {\"rg_selector\": \"set\", \"__current_case__\": 1, \"read_group_id_conditional\": {\"do_auto_name\": \"true\", \"__current_case__\": 0}, \"read_group_sm_conditional\": {\"do_auto_name\": \"true\", \"__current_case__\": 0}, \"PL\": \"ILLUMINA\", \"read_group_lb_conditional\": {\"do_auto_name\": \"true\", \"__current_case__\": 0}, \"CN\": \"\", \"DS\": \"\", \"DT\": \"\", \"FO\": \"\", \"KS\": \"\", \"PG\": \"\", \"PI\": \"\", \"PU\": \"\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.7.17.1", + "type": "tool", + "uuid": "6261da71-f0ac-4179-a688-df8a71c19b72", + "workflow_outputs": [ + { + "label": null, + "output_name": "bam_output", + "uuid": "ccd46f47-0446-4570-8a0d-a6cf46a60c4c" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MergeSamFiles/2.18.2.1", + "errors": null, + "id": 10, + "input_connections": { + "inputFile": [ + { + "id": 9, + "output_name": "bam_output" + }, + { + "id": 6, + "output_name": "bam_output" + } + ] + }, + "inputs": [], + "label": null, + "name": "MergeSamFiles", + "outputs": [ + { + "name": "outFile", + "type": "bam" + } + ], + "position": { + "bottom": 436.015625, + "height": 172, + "left": -528.09375, + "right": -328.09375, + "top": 264.015625, + "width": 200, + "x": -528.09375, + "y": 264.015625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MergeSamFiles/2.18.2.1", + "tool_shed_repository": { + "changeset_revision": "a1f0b3f4b781", + "name": "picard", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"assume_sorted\": \"false\", \"comments\": [], \"inputFile\": {\"__class__\": \"ConnectedValue\"}, \"merge_sequence_dictionaries\": \"false\", \"validation_stringency\": \"LENIENT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.18.2.1", + "type": "tool", + "uuid": "3a7b6eae-bc97-4190-a6c9-8b8c455947d6", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFile", + "uuid": "a9d38e58-97da-4e4a-bba9-6fbadea1ff4a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "errors": null, + "id": 11, + "input_connections": { + "inputFile": { + "id": 10, + "output_name": "outFile" + } + }, + "inputs": [], + "label": null, + "name": "MarkDuplicates", + "outputs": [ + { + "name": "metrics_file", + "type": "txt" + }, + { + "name": "outFile", + "type": "bam" + } + ], + "position": { + "bottom": 505.28125, + "height": 242, + "left": -282.09375, + "right": -82.09375, + "top": 263.28125, + "width": 200, + "x": -282.09375, + "y": 263.28125 + }, + "post_job_actions": { + "HideDatasetActionmetrics_file": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "metrics_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "tool_shed_repository": { + "changeset_revision": "a1f0b3f4b781", + "name": "picard", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"assume_sorted\": \"true\", \"barcode_tag\": \"\", \"comments\": [], \"duplicate_scoring_strategy\": \"SUM_OF_BASE_QUALITIES\", \"inputFile\": {\"__class__\": \"ConnectedValue\"}, \"optical_duplicate_pixel_distance\": \"100\", \"read_name_regex\": \"\", \"remove_duplicates\": \"false\", \"validation_stringency\": \"LENIENT\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.18.2.2", + "type": "tool", + "uuid": "8f2528f7-0be4-4ea7-9516-ecae820e09bb", + "workflow_outputs": [ + { + "label": null, + "output_name": "outFile", + "uuid": "53cafeda-f914-4562-bde0-f990036aec4a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.1.0.46-0", + "errors": null, + "id": 12, + "input_connections": { + "reference_source|input_bam": { + "id": 11, + "output_name": "outFile" + } + }, + "inputs": [], + "label": null, + "name": "BamLeftAlign", + "outputs": [ + { + "name": "output_bam", + "type": "bam" + } + ], + "position": { + "bottom": 435.28125, + "height": 172, + "left": -36.09375, + "right": 163.90625, + "top": 263.28125, + "width": 200, + "x": -36.09375, + "y": 263.28125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.1.0.46-0", + "tool_shed_repository": { + "changeset_revision": "ef2c525bd8cd", + "name": "freebayes", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"iterations\": \"5\", \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"ref_file\": \"hg38\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "9a7797c4-e0cb-4baf-80f9-f27ff46eff7c", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_bam", + "uuid": "e37c3f62-b041-491e-828f-79c79e73d85d" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "errors": null, + "id": 13, + "input_connections": { + "input_bam": { + "id": 12, + "output_name": "output_bam" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file2", + "type": "txt" + }, + { + "name": "out_file1", + "type": "bam" + } + ], + "position": { + "bottom": 465.28125, + "height": 202, + "left": 209.90625, + "right": 409.90625, + "top": 263.28125, + "width": 200, + "x": 209.90625, + "y": 263.28125 + }, + "post_job_actions": { + "HideDatasetActionout_file2": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "out_file2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "tool_shed_repository": { + "changeset_revision": "cb20f99fd45b", + "name": "bamtools_filter", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"bam\", \"chromInfo\": \"/cvmfs/data.galaxyproject.org/managed/len/ucsc/hg38.len\", \"conditions\": [{\"__index__\": 0, \"filters\": [{\"__index__\": 0, \"bam_property\": {\"bam_property_selector\": \"mapQuality\", \"__current_case__\": 14, \"bam_property_value\": \">=20\"}}, {\"__index__\": 1, \"bam_property\": {\"bam_property_selector\": \"isPaired\", \"__current_case__\": 9, \"bam_property_value\": \"true\"}}, {\"__index__\": 2, \"bam_property\": {\"bam_property_selector\": \"isProperPair\", \"__current_case__\": 11, \"bam_property_value\": \"true\"}}, {\"__index__\": 3, \"bam_property\": {\"bam_property_selector\": \"reference\", \"__current_case__\": 20, \"bam_property_value\": \"chrM\"}}]}], \"input_bam\": {\"__class__\": \"ConnectedValue\"}, \"rule_configuration\": {\"rules_selector\": \"false\", \"__current_case__\": 0}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.4.1", + "type": "tool", + "uuid": "3daf6f14-257f-4f1d-b07e-a636c672b685", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "a6bddbed-73bc-4384-8f14-d85f43da776f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.1.0.46-0", + "errors": null, + "id": 14, + "input_connections": { + "reference_source|batchmode|input_bams": { + "id": 13, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "FreeBayes", + "outputs": [ + { + "name": "output_vcf", + "type": "vcf" + } + ], + "position": { + "bottom": 365.28125, + "height": 112, + "left": 488.90625, + "right": 688.90625, + "top": 253.28125, + "width": 200, + "x": 488.90625, + "y": 253.28125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.1.0.46-0", + "tool_shed_repository": { + "changeset_revision": "ef2c525bd8cd", + "name": "freebayes", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"coverage_options\": {\"coverage_options_selector\": \"do_not_set\", \"__current_case__\": 1}, \"options_type\": {\"options_type_selector\": \"full\", \"__current_case__\": 0, \"optional_inputs\": {\"optional_inputs_selector\": \"do_not_set\", \"__current_case__\": 1}, \"reporting\": {\"reporting_selector\": \"do_not_set\", \"__current_case__\": 1}, \"population_model\": {\"population_model_selector\": \"set\", \"__current_case__\": 0, \"T\": \"0.001\", \"P\": \"1\", \"J\": \"true\", \"K\": \"true\"}, \"reference_allele\": {\"reference_allele_selector\": \"do_not_set\", \"__current_case__\": 1}, \"allele_scope\": {\"allele_scope_selector\": \"set\", \"__current_case__\": 0, \"I\": \"false\", \"i\": \"false\", \"X\": \"true\", \"u\": \"true\", \"n\": \"0\", \"haplotype_length\": \"3\", \"min_repeat_length\": \"5\", \"min_repeat_entropy\": \"0\", \"no_partial_observations\": \"false\"}, \"O\": \"false\", \"input_filters\": {\"input_filters_selector\": \"set\", \"__current_case__\": 0, \"use_duplicate_reads\": \"false\", \"m\": \"20\", \"q\": \"30\", \"R\": \"0\", \"Y\": \"0\", \"mismatch_filters\": {\"mismatch_filters_selector\": \"do_not_set\", \"__current_case__\": 1}, \"e\": \"1000\", \"standard_filters\": \"false\", \"F\": \"0.2\", \"C\": \"2\", \"min_alternate_qsum\": \"0\", \"G\": \"1\"}, \"population_mappability_priors\": {\"population_mappability_priors_selector\": \"do_not_set\", \"__current_case__\": 1}, \"genotype_likelihoods\": {\"genotype_likelihoods_selector\": \"do_not_set\", \"__current_case__\": 1}, \"algorithmic_features\": {\"algorithmic_features_selector\": \"do_not_set\", \"__current_case__\": 1}}, \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"batchmode\": {\"processmode\": \"individual\", \"__current_case__\": 0, \"input_bams\": {\"__class__\": \"ConnectedValue\"}}, \"ref_file\": \"hg38\"}, \"target_limit_type\": {\"target_limit_type_selector\": \"limit_by_region\", \"__current_case__\": 2, \"region_chromosome\": \"chrM\", \"region_start\": \"1\", \"region_end\": \"16000\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.3.1", + "type": "tool", + "uuid": "86bf499d-3edd-49ad-90eb-da0ba29d9042", + "workflow_outputs": [ + { + "label": null, + "output_name": "output_vcf", + "uuid": "2dccb50a-d7cc-42fe-8ad3-5b3268d72977" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/vcffilter/vcffilter2/1.0.0_rc1+galaxy3", + "errors": null, + "id": 15, + "input_connections": { + "input1": { + "id": 14, + "output_name": "output_vcf" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool VCFfilter:", + "name": "input1" + } + ], + "label": null, + "name": "VCFfilter:", + "outputs": [ + { + "name": "out_file1", + "type": "vcf" + } + ], + "position": { + "bottom": 321.515625, + "height": 92, + "left": 736.203125, + "right": 936.203125, + "top": 229.515625, + "width": 200, + "x": 736.203125, + "y": 229.515625 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/vcffilter/vcffilter2/1.0.0_rc1+galaxy3", + "tool_shed_repository": { + "changeset_revision": "fa24bf0598f4", + "name": "vcffilter", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"allele_tag\": \"false\", \"append_filter\": \"false\", \"filter_repeat\": [{\"__index__\": 0, \"filter_type\": \"-f\", \"filter_value\": \"SRP > 20\"}, {\"__index__\": 1, \"filter_type\": \"-f\", \"filter_value\": \"SAP > 20\"}, {\"__index__\": 2, \"filter_type\": \"-f\", \"filter_value\": \"EPP > 20\"}, {\"__index__\": 3, \"filter_type\": \"-f\", \"filter_value\": \"QUAL > 20\"}, {\"__index__\": 4, \"filter_type\": \"-f\", \"filter_value\": \"DP > 20\"}], \"filter_sites\": \"false\", \"input1\": {\"__class__\": \"RuntimeValue\"}, \"invert\": \"false\", \"or\": \"false\", \"region\": \"\", \"tag_fail\": \"false\", \"tag_pass\": \"false\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0_rc3+galaxy3", + "type": "tool", + "uuid": "6b0c242b-757d-4e1e-b296-4e8fc924a925", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "51676790-9aff-4ba3-97c5-40ecc7495c31" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/vcf2tsv/vcf2tsv/1.0.0_rc1+galaxy0", + "errors": null, + "id": 16, + "input_connections": { + "input": { + "id": 15, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "VCFtoTab-delimited:", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 386.28125, + "height": 132, + "left": 958.40625, + "right": 1158.40625, + "top": 254.28125, + "width": 200, + "x": 958.40625, + "y": 254.28125 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/vcf2tsv/vcf2tsv/1.0.0_rc1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "285060661b45", + "name": "vcf2tsv", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"g_option\": \"true\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"null_filler\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0_rc3+galaxy0", + "type": "tool", + "uuid": "34f30431-4187-4525-ba73-8e428191ec87", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "8cf6f95d-d013-45a4-8e1c-6cfcbbb05de1" + } + ] + }, + { + "annotation": "", + "content_id": "Cut1", + "errors": null, + "id": 17, + "input_connections": { + "input": { + "id": 16, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "Cut", + "outputs": [ + { + "name": "out_file1", + "type": "tabular" + } + ], + "position": { + "bottom": 355.28125, + "height": 92, + "left": 1192.40625, + "right": 1392.40625, + "top": 263.28125, + "width": 200, + "x": 1192.40625, + "y": 263.28125 + }, + "post_job_actions": {}, + "tool_id": "Cut1", + "tool_state": "{\"columnList\": \"c2,c4,c5,c52,c54,c55\", \"delimiter\": \"T\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.2", + "type": "tool", + "uuid": "9e0ffe7d-7016-49d0-be12-0d2c1f089c60", + "workflow_outputs": [ + { + "label": "cut_variants", + "output_name": "out_file1", + "uuid": "f2e84a79-a71f-4b5f-a526-55d8cd472a05" + } + ] + } + ], + "parent_id": "variant-analysis/non-dip", + "path": "topics/variant-analysis/tutorials/non-dip/workflows/Calling_variants_in_non-diploid_systems.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "Calling variants in non-diploid systems", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-non-dip/versions/calling-variants-in-non-diploid-systems", + "tutorial_id": "non-dip", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/non-dip/workflows/Calling_variants_in_non-diploid_systems.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/non-dip/workflows/Calling_variants_in_non-diploid_systems.html", + "version": 2, + "wfid": "variant-analysis-non-dip", + "wfname": "calling-variants-in-non-diploid-systems", + "workflow": "Calling_variants_in_non-diploid_systems.ga", + "workflow_tools": [ + "Cut1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.1.0.46-0", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.1.0.46-0", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MergeSamFiles/2.18.2.1", + "toolshed.g2.bx.psu.edu/repos/devteam/vcf2tsv/vcf2tsv/1.0.0_rc1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/vcffilter/vcffilter2/1.0.0_rc1+galaxy3" + ], + "workflowhub_id": "1100" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1251112" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "naive_variant_caller", + "owner": "blankenberg", + "revisions": "6be51647d31a", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "156b60c1530f", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "allele_counts", + "owner": "nick", + "revisions": "411adeff1eec", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dunovo", + "owner": "nick", + "revisions": "9dc43bf7d1db", + "tool_panel_section_label": "Du Novo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dunovo", + "owner": "nick", + "revisions": "9dc43bf7d1db", + "tool_panel_section_label": "Du Novo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dunovo", + "owner": "nick", + "revisions": "9dc43bf7d1db", + "tool_panel_section_label": "Du Novo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "dunovo", + "owner": "nick", + "revisions": "9dc43bf7d1db", + "tool_panel_section_label": "Du Novo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sequence_content_trimmer", + "owner": "nick", + "revisions": "7f170cb06e2e", + "tool_panel_section_label": "Du Novo", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: naive_variant_caller\n owner: blankenberg\n revisions: 6be51647d31a\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: 156b60c1530f\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: allele_counts\n owner: nick\n revisions: 411adeff1eec\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dunovo\n owner: nick\n revisions: 9dc43bf7d1db\n tool_panel_section_label: Du Novo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dunovo\n owner: nick\n revisions: 9dc43bf7d1db\n tool_panel_section_label: Du Novo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dunovo\n owner: nick\n revisions: 9dc43bf7d1db\n tool_panel_section_label: Du Novo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: dunovo\n owner: nick\n revisions: 9dc43bf7d1db\n tool_panel_section_label: Du Novo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sequence_content_trimmer\n owner: nick\n revisions: 7f170cb06e2e\n tool_panel_section_label: Du Novo\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/dunovo/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "id": "NickSto", + "joined": "2018-07", + "name": "Nick Stoler", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/NickSto/", + "twitter": "NickStoler", + "url": "https://training.galaxyproject.org/training-material/api/contributors/NickSto.json" + } + ], + "dir": "topics/variant-analysis/tutorials/dunovo", + "draft": true, + "edam_operation": [ + "Generation", + "Sequence alignment", + "Genome indexing", + "Variant calling", + "Read mapping", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/dunovo", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Diploid variant calling relies on assumptions that rare variant calling cannot make", + "Duplex consensus sequences are usually most accurate, but sometimes you must rely on single-strand consensus sequences instead." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Processing raw duplex sequencing data into consensus sequences", + "Find rare variants without relying on diploid assumptions" + ], + "pageviews": 2460, + "pub_date": "2017-02-22", + "questions": [ + "What frequency of variants is so low that it is obscured by sequencing error rate?", + "What are the different types of consensus sequences produced from duplex sequencing?" + ], + "short_id": "T00310", + "short_tools": [ + "allele_counts_1", + "align_families", + "dunovo", + "bamleftalign", + "Filter1", + "make_families", + "sequence_content_trimmer", + "bwa_mem", + "correct_barcodes", + "naive_variant_caller" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "introduction", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "work-in-progress" + ], + "time_estimation": "3h", + "title": "Calling very rare variants", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/blankenberg/naive_variant_caller/naive_variant_caller/0.0.4", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.1.0.46-0", + "toolshed.g2.bx.psu.edu/repos/nick/allele_counts/allele_counts_1/1.2", + "toolshed.g2.bx.psu.edu/repos/nick/dunovo/align_families/2.15", + "toolshed.g2.bx.psu.edu/repos/nick/dunovo/correct_barcodes/2.15", + "toolshed.g2.bx.psu.edu/repos/nick/dunovo/dunovo/2.15", + "toolshed.g2.bx.psu.edu/repos/nick/dunovo/make_families/2.15", + "toolshed.g2.bx.psu.edu/repos/nick/sequence_content_trimmer/sequence_content_trimmer/0.1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "dunovo", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/dunovo/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/dunovo/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/dunovo/tutorial.json" + }, + "version": 20, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 102, + "visitors": 1492, + "workflows": [ + { + "creators": [], + "description": "Run this on raw duplex sequencing reads to produce duplex consensus sequences.\n", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRR1799908_forward\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRR1799908_reverse\"]\n 2[label=\"Du Novo: Make families\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Du Novo: Correct barcodes\"]\n 2 -> 3 [label=\"output\"]\n 4[label=\"Du Novo: Align families\"]\n 3 -> 4 [label=\"output\"]\n 5[label=\"Du Novo: Make consensus reads\"]\n 4 -> 5 [label=\"output\"]\n 6[label=\"DCS: Sequence Content Trimmer\"]\n 5 -> 6 [label=\"dcs1\"]\n 5 -> 6 [label=\"dcs2\"]\n 7[label=\"SSCS: Sequence Content Trimmer\"]\n 5 -> 7 [label=\"sscs1\"]\n 5 -> 7 [label=\"sscs2\"]\n k75dfe52d711e4826ba9bb4feed30f5bf[color=lightseagreen,label=\"Output\\n\"]\n 7 -> k75dfe52d711e4826ba9bb4feed30f5bf\n}", + "history": [ + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "76979680776eafe50610d00238ad8b00da835c7c", + "message": "Update rare variant calling tutorial for GTN consistency and new tool version. - Format to be more consistent with other GTN tutorials. - Update to work with newer version of Du Novo (2.15 instead of 0.3). - Restructure logic and flow, add more explanations. - Add workflow files.", + "num": 1, + "short_hash": "769796807", + "unix": "1532662117" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR1799908_forward" + } + ], + "label": "SRR1799908_forward", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 281 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR1799908_forward\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f9817ffe-4cdb-471f-a921-1b20e96e92d6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5eb6af50-33a5-42ae-a34b-a92974ddec3c" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR1799908_reverse" + } + ], + "label": "SRR1799908_reverse", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 202, + "top": 385 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR1799908_reverse\"}", + "tool_version": null, + "type": "data_input", + "uuid": "efc0fed6-846f-467f-82a3-45898dc3e0a4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9228fb67-0e41-4f3c-96fa-7da93c797649" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSRR1799908_forward\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSRR1799908_reverse\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Du Novo: Make families\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"Du Novo: Correct barcodes\"];\n 2 -->|output| 3;\n 4[\"Du Novo: Align families\"];\n 3 -->|output| 4;\n 5[\"Du Novo: Make consensus reads\"];\n 4 -->|output| 5;\n 6[\"DCS: Sequence Content Trimmer\"];\n 5 -->|dcs1| 6;\n 5 -->|dcs2| 6;\n 7[\"SSCS: Sequence Content Trimmer\"];\n 5 -->|sscs1| 7;\n 5 -->|sscs2| 7;\n 75dfe52d-711e-4826-ba9b-b4feed30f5bf[\"Output\\n\"];\n 7 --> 75dfe52d-711e-4826-ba9b-b4feed30f5bf;\n style 75dfe52d-711e-4826-ba9b-b4feed30f5bf stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Du Novo GTN Tutorial - Make Consensus Sequences", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR1799908_forward" + } + ], + "label": "SRR1799908_forward", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 281 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR1799908_forward\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f9817ffe-4cdb-471f-a921-1b20e96e92d6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "5eb6af50-33a5-42ae-a34b-a92974ddec3c" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRR1799908_reverse" + } + ], + "label": "SRR1799908_reverse", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 202, + "top": 385 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SRR1799908_reverse\"}", + "tool_version": null, + "type": "data_input", + "uuid": "efc0fed6-846f-467f-82a3-45898dc3e0a4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "9228fb67-0e41-4f3c-96fa-7da93c797649" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nick/sequence_content_trimmer/sequence_content_trimmer/0.1", + "errors": null, + "id": 6, + "input_connections": { + "paired|input1": { + "id": 5, + "output_name": "dcs1" + }, + "paired|input2": { + "id": 5, + "output_name": "dcs2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Sequence Content Trimmer", + "name": "paired" + }, + { + "description": "runtime parameter for tool Sequence Content Trimmer", + "name": "paired" + } + ], + "label": "DCS: Sequence Content Trimmer", + "name": "Sequence Content Trimmer", + "outputs": [ + { + "name": "output1", + "type": "input" + }, + { + "name": "output2", + "type": "input" + } + ], + "position": { + "left": 996, + "top": 282 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "Trimmed DCS (mate 1)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + }, + "RenameDatasetActionoutput2": { + "action_arguments": { + "newname": "Trimmed DCS (mate 2)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nick/sequence_content_trimmer/sequence_content_trimmer/0.1", + "tool_shed_repository": { + "changeset_revision": "7f170cb06e2e", + "name": "sequence_content_trimmer", + "owner": "nick", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"win_len\": \"\\\"10\\\"\", \"invert\": \"\\\"true\\\"\", \"min_len\": \"{\\\"value\\\": \\\"50\\\", \\\"__current_case__\\\": 0, \\\"has_min_len\\\": \\\"true\\\"}\", \"paired\": \"{\\\"input2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"is_paired\\\": \\\"true\\\", \\\"input1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"__current_case__\\\": 0}\", \"bases\": \"\\\"ACGT\\\"\", \"thres\": \"\\\"0.2\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1", + "type": "tool", + "uuid": "b214143b-75bf-41f1-9ca6-82e8c64f23ad", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "0f994723-3603-4a3c-adfe-ae068a079661" + }, + { + "label": null, + "output_name": "output1", + "uuid": "e67c3c59-f6f6-486d-86e2-f68e8d54b863" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nick/sequence_content_trimmer/sequence_content_trimmer/0.1", + "errors": null, + "id": 7, + "input_connections": { + "paired|input1": { + "id": 5, + "output_name": "sscs1" + }, + "paired|input2": { + "id": 5, + "output_name": "sscs2" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Sequence Content Trimmer", + "name": "paired" + }, + { + "description": "runtime parameter for tool Sequence Content Trimmer", + "name": "paired" + } + ], + "label": "SSCS: Sequence Content Trimmer", + "name": "Sequence Content Trimmer", + "outputs": [ + { + "name": "output1", + "type": "input" + }, + { + "name": "output2", + "type": "input" + } + ], + "position": { + "left": 998, + "top": 472 + }, + "post_job_actions": { + "RenameDatasetActionoutput1": { + "action_arguments": { + "newname": "Trimmed SSCS (mate 1)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output1" + }, + "RenameDatasetActionoutput2": { + "action_arguments": { + "newname": "Trimmed SSCS (mate 2)" + }, + "action_type": "RenameDatasetAction", + "output_name": "output2" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nick/sequence_content_trimmer/sequence_content_trimmer/0.1", + "tool_shed_repository": { + "changeset_revision": "7f170cb06e2e", + "name": "sequence_content_trimmer", + "owner": "nick", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"win_len\": \"\\\"10\\\"\", \"invert\": \"\\\"true\\\"\", \"min_len\": \"{\\\"value\\\": \\\"50\\\", \\\"__current_case__\\\": 0, \\\"has_min_len\\\": \\\"true\\\"}\", \"paired\": \"{\\\"input2\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"is_paired\\\": \\\"true\\\", \\\"input1\\\": {\\\"__class__\\\": \\\"RuntimeValue\\\"}, \\\"__current_case__\\\": 0}\", \"bases\": \"\\\"ACGT\\\"\", \"thres\": \"\\\"0.2\\\"\", \"__rerun_remap_job_id__\": null}", + "tool_version": "0.1", + "type": "tool", + "uuid": "f5ef3a57-7d34-4c4c-ba0e-67b2fb56a7b0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output2", + "uuid": "d993247b-3ba4-4427-b711-f48034aa8c2a" + }, + { + "label": "", + "output_name": "output1", + "uuid": "75dfe52d-711e-4826-ba9b-b4feed30f5bf" + } + ] + } + ], + "parent_id": "variant-analysis/dunovo", + "path": "topics/variant-analysis/tutorials/dunovo/workflows/dunovo.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": false, + "title": "Du Novo GTN Tutorial - Make Consensus Sequences", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-dunovo/versions/dunovo", + "tutorial_id": "dunovo", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dunovo/workflows/dunovo.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dunovo/workflows/dunovo.html", + "version": 3, + "wfid": "variant-analysis-dunovo", + "wfname": "dunovo", + "workflow": "dunovo.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/nick/dunovo/align_families/2.15", + "toolshed.g2.bx.psu.edu/repos/nick/dunovo/correct_barcodes/2.15", + "toolshed.g2.bx.psu.edu/repos/nick/dunovo/dunovo/2.15", + "toolshed.g2.bx.psu.edu/repos/nick/dunovo/make_families/2.15", + "toolshed.g2.bx.psu.edu/repos/nick/sequence_content_trimmer/sequence_content_trimmer/0.1" + ], + "workflowhub_id": "1086" + }, + { + "creators": [], + "description": "Run this on the trimmed consensus reads (DCS or SSCS) from Du Novo.\n", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTrimmed reads mate 1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTrimmed reads mate 2\"]\n 2[label=\"Map with BWA-MEM\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"BamLeftAlign\"]\n 2 -> 3 [label=\"bam_output\"]\n 4[label=\"Naive Variant Caller NVC\"]\n 3 -> 4 [label=\"output_bam\"]\n 5[label=\"Variant Annotator\"]\n 4 -> 5 [label=\"output_vcf\"]\n 6[label=\"Filter\"]\n 5 -> 6 [label=\"output\"]\n}", + "history": [ + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "361236c416497d2d9f2735d64f8c43050a5a5a4e", + "message": "Changed format of workflows", + "num": 2, + "short_hash": "361236c41", + "unix": "1554368414" + }, + { + "hash": "76979680776eafe50610d00238ad8b00da835c7c", + "message": "Update rare variant calling tutorial for GTN consistency and new tool version. - Format to be more consistent with other GTN tutorials. - Update to work with newer version of Du Novo (2.15 instead of 0.3). - Restructure logic and flow, add more explanations. - Add workflow files.", + "num": 1, + "short_hash": "769796807", + "unix": "1532662117" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Trimmed reads (mate 1)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 284 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "f9817ffe-4cdb-471f-a921-1b20e96e92d6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d9cf4c1c-9b41-49e6-8eed-20f201143897" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Trimmed reads (mate 2)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 201, + "top": 383 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "efc0fed6-846f-467f-82a3-45898dc3e0a4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "347dcece-5ddc-40fb-a5ed-4ff05f2d2d3a" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nTrimmed reads mate 1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nTrimmed reads mate 2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Map with BWA-MEM\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 3[\"BamLeftAlign\"];\n 2 -->|bam_output| 3;\n 4[\"Naive Variant Caller NVC\"];\n 3 -->|output_bam| 4;\n 5[\"Variant Annotator\"];\n 4 -->|output_vcf| 5;\n 6[\"Filter\"];\n 5 -->|output| 6;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Du Novo GTN Tutorial - Variant Calling", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "Trimmed reads (mate 1)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 200, + "top": 284 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "f9817ffe-4cdb-471f-a921-1b20e96e92d6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "d9cf4c1c-9b41-49e6-8eed-20f201143897" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "Trimmed reads (mate 2)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 201, + "top": 383 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "efc0fed6-846f-467f-82a3-45898dc3e0a4", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "347dcece-5ddc-40fb-a5ed-4ff05f2d2d3a" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/nick/allele_counts/allele_counts_1/1.2", + "errors": null, + "id": 5, + "input_connections": { + "input": { + "id": 4, + "output_name": "output_vcf" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Variant Annotator", + "name": "input" + } + ], + "label": null, + "name": "Variant Annotator", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 474, + "top": 502 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "All variants" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/nick/allele_counts/allele_counts_1/1.2", + "tool_shed_repository": { + "changeset_revision": "411adeff1eec", + "name": "allele_counts", + "owner": "nick", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"stranded\": \"\\\"true\\\"\", \"covg\": \"\\\"10\\\"\", \"header\": \"\\\"true\\\"\", \"seed\": \"\\\"\\\"\", \"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"freq\": \"\\\"0.0\\\"\", \"nofilt\": \"\\\"false\\\"\"}", + "tool_version": "1.2", + "type": "tool", + "uuid": "b27aa8b9-adb8-43b4-9a70-53025ae1f9f1", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "ad99c585-39c1-4888-9726-28c30317ec21" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 5, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Filter", + "name": "input" + } + ], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 765, + "top": 503 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Filtered variants" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "Filter1", + "tool_state": "{\"input\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\", \"__rerun_remap_job_id__\": null, \"header_lines\": \"\\\"1\\\"\", \"cond\": \"\\\"c16 >= 0.01\\\"\", \"__page__\": null}", + "tool_version": "1.1.0", + "type": "tool", + "uuid": "3ada37c0-11f6-4d2c-bf53-cf1e228ee91e", + "workflow_outputs": [ + { + "label": null, + "output_name": "out_file1", + "uuid": "dcdddac9-bd96-4f27-b585-bd3167fef38d" + } + ] + } + ], + "parent_id": "variant-analysis/dunovo", + "path": "topics/variant-analysis/tutorials/dunovo/workflows/variant-calling.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": false, + "title": "Du Novo GTN Tutorial - Variant Calling", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-dunovo/versions/variant-calling", + "tutorial_id": "dunovo", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dunovo/workflows/variant-calling.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dunovo/workflows/variant-calling.html", + "version": 3, + "wfid": "variant-analysis-dunovo", + "wfname": "variant-calling", + "workflow": "variant-calling.ga", + "workflow_tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/blankenberg/naive_variant_caller/naive_variant_caller/0.0.4", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.1.0.46-0", + "toolshed.g2.bx.psu.edu/repos/nick/allele_counts/allele_counts_1/1.2" + ], + "workflowhub_id": "1089" + } + ], + "zenodo_link": "" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "regex_find_replace", + "owner": "galaxyp", + "revisions": "ae8c4b2488e7", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_merge", + "owner": "iuc", + "revisions": "86296490704e", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_norm", + "owner": "iuc", + "revisions": "da6fc9f4a367", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ega_download_client", + "owner": "iuc", + "revisions": "7d87a9d58aa1", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_inheritance", + "owner": "iuc", + "revisions": "2c68e29c3527", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_load", + "owner": "iuc", + "revisions": "2270a8b83c12", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "geneiobio", + "owner": "iuc", + "revisions": "c0af7b196a89", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff", + "owner": "iuc", + "revisions": "5c7b70713fb5", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: regex_find_replace\n owner: galaxyp\n revisions: ae8c4b2488e7\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_merge\n owner: iuc\n revisions: 86296490704e\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_norm\n owner: iuc\n revisions: da6fc9f4a367\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ega_download_client\n owner: iuc\n revisions: 7d87a9d58aa1\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_inheritance\n owner: iuc\n revisions: 2c68e29c3527\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_load\n owner: iuc\n revisions: 2270a8b83c12\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: geneiobio\n owner: iuc\n revisions: c0af7b196a89\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff\n owner: iuc\n revisions: 5c7b70713fb5\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/trio-analysis/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "nl", + "email": "j.ouwerkerk.1@erasmusmc.nl", + "id": "JasperO98", + "joined": "2022-04", + "name": "Jasper Ouwerkerk", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/JasperO98/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/JasperO98.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/variant-analysis/tutorials/trio-analysis", + "edam_operation": [ + "Sequence analysis", + "Genetic variation analysis" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/trio-analysis", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Downloading whole datasets with HTSGET is safe and easy with Galaxy.", + "Regex is a usefull tool for pre-processing VCF files.", + "Variant annotations allows us to strictly filter VCFs to find the causative variant." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Requesting DAC access and importing data from the EGA.", + "Pre-process VCFs using regular expressions.", + "Use annotations and phenotype information to find the causative variant(s)." + ], + "pageviews": 2739, + "pub_date": "2022-05-19", + "questions": [ + "How do you import data from the EGA?", + "How to download files with HTSGET in Galaxy?", + "How do you pre-process VCFs?", + "How do you identify causative variants?" + ], + "recordings": [ + { + "captioners": [ + "JasperO98" + ], + "date": "2023-05-12", + "length": "40M", + "speakers": [ + "JasperO98" + ], + "youtube_id": "3OWXWOkJRqU" + } + ], + "short_id": "T00320", + "short_tools": [ + "gemini_inheritance", + "gemini_load", + "bcftools_merge", + "bcftools_norm", + "tp_grep_tool", + "pyega3", + "CONVERTER_uncompressed_to_gz", + "Filter1", + "regexColumn1", + "CONVERTER_gz_to_uncompressed", + "snpEff", + "gene_iobio_display_generation_iframe" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "human-genetics-cancer", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "cyoa" + ], + "time_estimation": "2H", + "title": "Trio Analysis using Synthetic Datasets from RD-Connect GPAP", + "tools": [ + "CONVERTER_gz_to_uncompressed", + "CONVERTER_uncompressed_to_gz", + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_merge/bcftools_merge/1.10", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3/5.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/geneiobio/gene_iobio_display_generation_iframe/4.7.1", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "trio-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/trio-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/trio-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/trio-analysis/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 244, + "visitors": 1385, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0003-2556-2125", + "name": "Jasper Ouwerkerk" + } + ], + "description": "Trio Analysis using Synthetic Datasets from RD-Connect GPAP", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[label=\"EGA Download Client\"]\n k85672f3a155649b6be092e6c81721fb3[color=lightseagreen,label=\"Output\\nEGA Download Client: authorized datasets\"]\n 0 -> k85672f3a155649b6be092e6c81721fb3\n 1[label=\"EGA Download Client\"]\n kacd2bcf04b9d47439034716e73d4824f[color=lightseagreen,label=\"Output\\nList of files in EGAD00001008392\"]\n 1 -> kacd2bcf04b9d47439034716e73d4824f\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\npedigree\"]\n 3[label=\"Search in textfiles\"]\n 1 -> 3 [label=\"dataset_file_list\"]\n k6d5d135ea37349389374019a09f45a51[color=lightseagreen,label=\"Output\\nList of Case 5 VCFs\"]\n 3 -> k6d5d135ea37349389374019a09f45a51\n 4[label=\"EGA Download Client\"]\n 3 -> 4 [label=\"output\"]\n kbdce7169390b4adb93055550d5d70a73[color=lightseagreen,label=\"Output\\nCase 5 VCFs.gz\"]\n 4 -> kbdce7169390b4adb93055550d5d70a73\n 5[label=\"Convert compressed file to uncompressed.\"]\n 4 -> 5 [label=\"downloaded_file_collection\"]\n k82b71cdcd8134c778ff3fa59e1725709[color=lightseagreen,label=\"Output\\nCase 5 VCFs\"]\n 5 -> k82b71cdcd8134c778ff3fa59e1725709\n 6[label=\"Column Regex Find And Replace\"]\n 5 -> 6 [label=\"output1\"]\n k5e1ff158cf8a4dc89c22b987a9f5ac27[color=lightseagreen,label=\"Output\\nCase 5 VCFs (Fixed Header and Chr)\"]\n 6 -> k5e1ff158cf8a4dc89c22b987a9f5ac27\n 7[label=\"bcftools norm\"]\n 6 -> 7 [label=\"out_file1\"]\n k96b34c8dfa9248cbb01fc05364deba5d[color=lightseagreen,label=\"Output\\nCase 5 Normalized VCFs\"]\n 7 -> k96b34c8dfa9248cbb01fc05364deba5d\n 8[label=\"Filter\"]\n 7 -> 8 [label=\"output_file\"]\n ka8539eb98bc3473ba27f201c3acf5539[color=lightseagreen,label=\"Output\\nCase 5 Normalized VCFs (Removed )\"]\n 8 -> ka8539eb98bc3473ba27f201c3acf5539\n 9[label=\"bcftools merge\"]\n 8 -> 9 [label=\"out_file1\"]\n kb5c479b2e58a4fe2b1cffc64476c8192[color=lightseagreen,label=\"Output\\nCase 5 Merged VCF\"]\n 9 -> kb5c479b2e58a4fe2b1cffc64476c8192\n 10[label=\"SnpEff eff:\"]\n 9 -> 10 [label=\"output_file\"]\n kcd7b49414f4c46318ad53411e60fbbd9[color=lightseagreen,label=\"Output\\nCase 5 SnpEff Annotated vcf\"]\n 10 -> kcd7b49414f4c46318ad53411e60fbbd9\n 11[label=\"Convert uncompressed file to compressed\"]\n 10 -> 11 [label=\"snpeff_output\"]\n k6e5e1084b5e14daf8f3bbd3868a52a25[color=lightseagreen,label=\"Output\\nSnpEff Annotated vcf_bgzip\"]\n 11 -> k6e5e1084b5e14daf8f3bbd3868a52a25\n 12[label=\"gene.iobio visualisation\"]\n 11 -> 12 [label=\"output1\"]\n 11 -> 12 [label=\"output1\"]\n 11 -> 12 [label=\"output1\"]\n k0b30f4e0732844798a56bbf828fcfdba[color=lightseagreen,label=\"Output\\nCase 5 gene.iobio results\"]\n 12 -> k0b30f4e0732844798a56bbf828fcfdba\n 13[label=\"Case 5 GEMINI Database\"]\n 11 -> 13 [label=\"output1\"]\n 2 -> 13 [label=\"output\"]\n k8a1964d9607c4dd3a2dc0f9a68dbb681[color=lightseagreen,label=\"Output\\nGEMINI Database\"]\n 13 -> k8a1964d9607c4dd3a2dc0f9a68dbb681\n 14[label=\"Case 5 GEMINI Inheritance pattern\"]\n 13 -> 14 [label=\"outfile\"]\n k960ef978089c429281b5731965c72a0d[color=lightseagreen,label=\"Output\\nCase 5 GEMINI results\"]\n 14 -> k960ef978089c429281b5731965c72a0d\n}", + "history": [ + { + "hash": "9623387f047fbfa77afe213505d4328e84075023", + "message": "Add gene.iobio", + "num": 22, + "short_hash": "9623387f0", + "unix": "1689082264" + }, + { + "hash": "c7df034841bfa97e3bae35a0fc124ce37d77ab9a", + "message": "Add gene.iobio to workflow", + "num": 21, + "short_hash": "c7df03484", + "unix": "1688999139" + }, + { + "hash": "a133ddbaf3b94a0da4f645047d9e48562bbff274", + "message": "Add EGA download client authorized dataset", + "num": 20, + "short_hash": "a133ddbaf", + "unix": "1684243281" + }, + { + "hash": "89798a1513ae26d2802470e9be2ce286a36e4ecf", + "message": "Update PyEGA version in main_workflow.ga", + "num": 19, + "short_hash": "89798a151", + "unix": "1684243121" + }, + { + "hash": "890e3ed491c20efb1e20c846851b29bf8af689e0", + "message": "add orcid", + "num": 18, + "short_hash": "890e3ed49", + "unix": "1679655504" + }, + { + "hash": "d20983843449c103e35d458f6988096ad6c1e4e1", + "message": "fix reator and workflow_output labels", + "num": 17, + "short_hash": "d20983843", + "unix": "1679655099" + }, + { + "hash": "588e52155ae2c1e3cf2a5fb1c53a9cb9dd552880", + "message": "now really add license", + "num": 16, + "short_hash": "588e52155", + "unix": "1679415213" + }, + { + "hash": "cdfd52652e3656e2f51226e181f5fd24dd00f115", + "message": "properly add license", + "num": 15, + "short_hash": "cdfd52652", + "unix": "1679414902" + }, + { + "hash": "49bda25d3f12d6589c3ab4b831d99a65ddd888ec", + "message": "rename workflow", + "num": 14, + "short_hash": "49bda25d3", + "unix": "1679414277" + }, + { + "hash": "79e4f95acbef417531b4d67eb2e860236a86eeb8", + "message": "add test", + "num": 13, + "short_hash": "79e4f95ac", + "unix": "1679414214" + }, + { + "hash": "9ba85fb0a7f7257bb6c27a9c8cc549552ba77f05", + "message": "update PyEGA version & add creator/license", + "num": 12, + "short_hash": "9ba85fb0a", + "unix": "1679413554" + }, + { + "hash": "b79cc70eadad03fe5c5b031e79e72e757f3a48a2", + "message": "Update workflow with nice labels", + "num": 11, + "short_hash": "b79cc70ea", + "unix": "1677684691" + }, + { + "hash": "4ed74364ae051c7deab6b239091eae03c1355177", + "message": "Update workflow ( skip header)", + "num": 10, + "short_hash": "4ed74364a", + "unix": "1652186595" + }, + { + "hash": "2726695af3b5bfe98b1a2906c1d5a330758c1fb2", + "message": "add annotation and tag to workflow", + "num": 9, + "short_hash": "2726695af", + "unix": "1651586250" + }, + { + "hash": "0816782f5e10f9b06a6fd96dccc51acca59bd54f", + "message": "Update prefix pattern", + "num": 8, + "short_hash": "0816782f5", + "unix": "1651568447" + }, + { + "hash": "4cb441ff692dad48e6e2b2e1ea5bd6883e905c69", + "message": "Move decompress step", + "num": 7, + "short_hash": "4cb441ff6", + "unix": "1651564709" + }, + { + "hash": "e61e6713377e9e1a815ea31629471c7ec0d4cf2e", + "message": "Replace AWK with Filter tool to remove sites", + "num": 6, + "short_hash": "e61e67133", + "unix": "1651497677" + }, + { + "hash": "72a287e5e831cf4fe072285dd2109bccdd32aaff", + "message": "update tutorial", + "num": 5, + "short_hash": "72a287e5e", + "unix": "1651235598" + }, + { + "hash": "0e98aba15d56063a4505c95578f36506c61489cf", + "message": "change workflow", + "num": 4, + "short_hash": "0e98aba15", + "unix": "1650981994" + }, + { + "hash": "1eca39b5430f412c1e2047acfef461a4e6062377", + "message": "Spelling check + testing workflow", + "num": 3, + "short_hash": "1eca39b54", + "unix": "1650462724" + }, + { + "hash": "129023b5fcf34c1f2b13583b346ff5f684428ef3", + "message": "initial tutorial", + "num": 2, + "short_hash": "129023b5f", + "unix": "1650381596" + }, + { + "hash": "4b2ff311ba4c0a03301e4e796d804cce013a1678", + "message": "initial commit", + "num": 1, + "short_hash": "4b2ff311b", + "unix": "1649341437" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "pedigree" + } + ], + "label": "pedigree", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 563.1557760665268, + "top": 635.975477057033 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e0eb82fb-bfa7-43fe-b5c7-690fc2e9ed95", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"EGA Download Client\"];\n 85672f3a-1556-49b6-be09-2e6c81721fb3[\"Output\\nEGA Download Client: authorized datasets\"];\n 0 --> 85672f3a-1556-49b6-be09-2e6c81721fb3;\n style 85672f3a-1556-49b6-be09-2e6c81721fb3 stroke:#2c3143,stroke-width:4px;\n 1[\"EGA Download Client\"];\n acd2bcf0-4b9d-4743-9034-716e73d4824f[\"Output\\nList of files in EGAD00001008392\"];\n 1 --> acd2bcf0-4b9d-4743-9034-716e73d4824f;\n style acd2bcf0-4b9d-4743-9034-716e73d4824f stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\npedigree\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Search in textfiles\"];\n 1 -->|dataset_file_list| 3;\n 6d5d135e-a373-4938-9374-019a09f45a51[\"Output\\nList of Case 5 VCFs\"];\n 3 --> 6d5d135e-a373-4938-9374-019a09f45a51;\n style 6d5d135e-a373-4938-9374-019a09f45a51 stroke:#2c3143,stroke-width:4px;\n 4[\"EGA Download Client\"];\n 3 -->|output| 4;\n bdce7169-390b-4adb-9305-5550d5d70a73[\"Output\\nCase 5 VCFs.gz\"];\n 4 --> bdce7169-390b-4adb-9305-5550d5d70a73;\n style bdce7169-390b-4adb-9305-5550d5d70a73 stroke:#2c3143,stroke-width:4px;\n 5[\"Convert compressed file to uncompressed.\"];\n 4 -->|downloaded_file_collection| 5;\n 82b71cdc-d813-4c77-8ff3-fa59e1725709[\"Output\\nCase 5 VCFs\"];\n 5 --> 82b71cdc-d813-4c77-8ff3-fa59e1725709;\n style 82b71cdc-d813-4c77-8ff3-fa59e1725709 stroke:#2c3143,stroke-width:4px;\n 6[\"Column Regex Find And Replace\"];\n 5 -->|output1| 6;\n 5e1ff158-cf8a-4dc8-9c22-b987a9f5ac27[\"Output\\nCase 5 VCFs (Fixed Header and Chr)\"];\n 6 --> 5e1ff158-cf8a-4dc8-9c22-b987a9f5ac27;\n style 5e1ff158-cf8a-4dc8-9c22-b987a9f5ac27 stroke:#2c3143,stroke-width:4px;\n 7[\"bcftools norm\"];\n 6 -->|out_file1| 7;\n 96b34c8d-fa92-48cb-b01f-c05364deba5d[\"Output\\nCase 5 Normalized VCFs\"];\n 7 --> 96b34c8d-fa92-48cb-b01f-c05364deba5d;\n style 96b34c8d-fa92-48cb-b01f-c05364deba5d stroke:#2c3143,stroke-width:4px;\n 8[\"Filter\"];\n 7 -->|output_file| 8;\n a8539eb9-8bc3-473b-a27f-201c3acf5539[\"Output\\nCase 5 Normalized VCFs (Removed )\"];\n 8 --> a8539eb9-8bc3-473b-a27f-201c3acf5539;\n style a8539eb9-8bc3-473b-a27f-201c3acf5539 stroke:#2c3143,stroke-width:4px;\n 9[\"bcftools merge\"];\n 8 -->|out_file1| 9;\n b5c479b2-e58a-4fe2-b1cf-fc64476c8192[\"Output\\nCase 5 Merged VCF\"];\n 9 --> b5c479b2-e58a-4fe2-b1cf-fc64476c8192;\n style b5c479b2-e58a-4fe2-b1cf-fc64476c8192 stroke:#2c3143,stroke-width:4px;\n 10[\"SnpEff eff:\"];\n 9 -->|output_file| 10;\n cd7b4941-4f4c-4631-8ad5-3411e60fbbd9[\"Output\\nCase 5 SnpEff Annotated vcf\"];\n 10 --> cd7b4941-4f4c-4631-8ad5-3411e60fbbd9;\n style cd7b4941-4f4c-4631-8ad5-3411e60fbbd9 stroke:#2c3143,stroke-width:4px;\n 11[\"Convert uncompressed file to compressed\"];\n 10 -->|snpeff_output| 11;\n 6e5e1084-b5e1-4daf-8f3b-bd3868a52a25[\"Output\\nSnpEff Annotated vcf_bgzip\"];\n 11 --> 6e5e1084-b5e1-4daf-8f3b-bd3868a52a25;\n style 6e5e1084-b5e1-4daf-8f3b-bd3868a52a25 stroke:#2c3143,stroke-width:4px;\n 12[\"gene.iobio visualisation\"];\n 11 -->|output1| 12;\n 11 -->|output1| 12;\n 11 -->|output1| 12;\n 0b30f4e0-7328-4479-8a56-bbf828fcfdba[\"Output\\nCase 5 gene.iobio results\"];\n 12 --> 0b30f4e0-7328-4479-8a56-bbf828fcfdba;\n style 0b30f4e0-7328-4479-8a56-bbf828fcfdba stroke:#2c3143,stroke-width:4px;\n 13[\"Case 5 GEMINI Database\"];\n 11 -->|output1| 13;\n 2 -->|output| 13;\n 8a1964d9-607c-4dd3-a2dc-0f9a68dbb681[\"Output\\nGEMINI Database\"];\n 13 --> 8a1964d9-607c-4dd3-a2dc-0f9a68dbb681;\n style 8a1964d9-607c-4dd3-a2dc-0f9a68dbb681 stroke:#2c3143,stroke-width:4px;\n 14[\"Case 5 GEMINI Inheritance pattern\"];\n 13 -->|outfile| 14;\n 960ef978-089c-4292-81b5-731965c72a0d[\"Output\\nCase 5 GEMINI results\"];\n 14 --> 960ef978-089c-4292-81b5-731965c72a0d;\n style 960ef978-089c-4292-81b5-731965c72a0d stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Trio Analysis Tutorial", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3/5.0.2+galaxy0", + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "EGA Download Client", + "outputs": [ + { + "name": "authorized_datasets", + "type": "txt" + } + ], + "position": { + "left": 4.293246161777436, + "top": 0 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3/5.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "f9db47f68e5e", + "name": "ega_download_client", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_type\": \"list_datasets\", \"__current_case__\": 1}, \"output_log\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.2+galaxy0", + "type": "tool", + "uuid": "5f03b99a-3f46-47d8-a5b1-31b6d3ae39ee", + "when": null, + "workflow_outputs": [ + { + "label": "EGA Download Client: authorized datasets", + "output_name": "authorized_datasets", + "uuid": "85672f3a-1556-49b6-be09-2e6c81721fb3" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3/5.0.2+galaxy0", + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": null, + "name": "EGA Download Client", + "outputs": [ + { + "name": "dataset_file_list", + "type": "tabular" + } + ], + "position": { + "left": 4.293246161777436, + "top": 148.56248504578429 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3/5.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "f9db47f68e5e", + "name": "ega_download_client", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_type\": \"list_dataset_files\", \"__current_case__\": 0, \"dataset_id\": \"EGAD00001008392\"}, \"output_log\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.2+galaxy0", + "type": "tool", + "uuid": "265bf049-ac9f-4a59-bba3-311c6c818121", + "when": null, + "workflow_outputs": [ + { + "label": "List of files in EGAD00001008392", + "output_name": "dataset_file_list", + "uuid": "acd2bcf0-4b9d-4743-9034-716e73d4824f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "errors": null, + "id": 3, + "input_connections": { + "infile": { + "id": 1, + "output_name": "dataset_file_list" + } + }, + "inputs": [], + "label": null, + "name": "Search in textfiles", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1.4413503643385859, + "top": 307.6653714034882 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "tool_shed_repository": { + "changeset_revision": "ddf54b12c295", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"case_sensitive\": \"\", \"color\": \"NOCOLOR\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"invert\": \"\", \"lines_after\": \"0\", \"lines_before\": \"0\", \"regex_type\": \"-E\", \"url_paste\": \"Case5.+17.+vcf.gz$\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "d55be511-416e-416b-99c5-da3023124c85", + "when": null, + "workflow_outputs": [ + { + "label": "List of Case 5 VCFs", + "output_name": "output", + "uuid": "6d5d135e-a373-4938-9374-019a09f45a51" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3/5.0.2+galaxy0", + "errors": null, + "id": 4, + "input_connections": { + "action|id_table": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "EGA Download Client", + "outputs": [ + { + "name": "downloaded_file_collection", + "type": "input" + } + ], + "position": { + "left": 1.4348650983573101, + "top": 478.47790000624343 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3/5.0.2+galaxy0", + "tool_shed_repository": { + "changeset_revision": "f9db47f68e5e", + "name": "ega_download_client", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"action\": {\"action_type\": \"download_files\", \"__current_case__\": 3, \"id_table\": {\"__class__\": \"ConnectedValue\"}, \"id_column\": \"1\", \"range\": {\"reference_name\": \"\", \"start\": null, \"end\": null}}, \"output_log\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.2+galaxy0", + "type": "tool", + "uuid": "e9b6ed7b-4275-47a4-99cb-e6779a56ec4e", + "when": null, + "workflow_outputs": [ + { + "label": "Case 5 VCFs.gz", + "output_name": "downloaded_file_collection", + "uuid": "bdce7169-390b-4adb-9305-5550d5d70a73" + } + ] + }, + { + "annotation": "", + "content_id": "CONVERTER_gz_to_uncompressed", + "errors": null, + "id": 5, + "input_connections": { + "input1": { + "id": 4, + "output_name": "downloaded_file_collection" + } + }, + "inputs": [], + "label": null, + "name": "Convert compressed file to uncompressed.", + "outputs": [ + { + "name": "output1", + "type": "auto" + } + ], + "position": { + "left": 0, + "top": 620.6925527804436 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput1": { + "action_arguments": { + "newtype": "vcf" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output1" + } + }, + "tool_id": "CONVERTER_gz_to_uncompressed", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0", + "type": "tool", + "uuid": "51d1b3e4-6574-4784-b814-01ab3bd097a3", + "when": null, + "workflow_outputs": [ + { + "label": "Case 5 VCFs", + "output_name": "output1", + "uuid": "82b71cdc-d813-4c77-8ff3-fa59e1725709" + } + ] + }, + { + "annotation": "Add chr prefix", + "content_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "errors": null, + "id": 6, + "input_connections": { + "input": { + "id": 5, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "Column Regex Find And Replace", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 285.74353593563336, + "top": 0.3954410820455898 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "tool_shed_repository": { + "changeset_revision": "ae8c4b2488e7", + "name": "regex_find_replace", + "owner": "galaxyp", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"checks\": [{\"__index__\": 0, \"pattern\": \"^([0-9MYX])\", \"replacement\": \"chr\\\\1\"}, {\"__index__\": 1, \"pattern\": \"^(##contig=<.*ID=)([0-9MYX].+)\", \"replacement\": \"\\\\1chr\\\\2\"}], \"field\": \"1\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.1", + "type": "tool", + "uuid": "4a50616e-4b18-4fa9-9ffa-dfbcc8c32c44", + "when": null, + "workflow_outputs": [ + { + "label": "Case 5 VCFs (Fixed Header and Chr)", + "output_name": "out_file1", + "uuid": "5e1ff158-cf8a-4dc8-9c22-b987a9f5ac27" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "errors": null, + "id": 7, + "input_connections": { + "input_file": { + "id": 6, + "output_name": "out_file1" + } + }, + "inputs": [], + "label": null, + "name": "bcftools norm", + "outputs": [ + { + "name": "output_file", + "type": "vcf" + } + ], + "position": { + "left": 269.93026650504567, + "top": 197.0992986309266 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "tool_shed_repository": { + "changeset_revision": "da6fc9f4a367", + "name": "bcftools_norm", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"check_ref\": \"w\", \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"multiallelics\": {\"mode\": \"-\", \"__current_case__\": 1, \"multiallelic_types\": \"both\"}, \"normalize_indels\": true, \"output_type\": \"v\", \"reference_source\": {\"reference_source_selector\": \"cached\", \"__current_case__\": 0, \"fasta_ref\": \"hg19\"}, \"rm_dup\": \"\", \"sec_default\": {\"site_win\": \"1000\"}, \"sec_restrict\": {\"regions\": {\"regions_src\": \"__none__\", \"__current_case__\": 0}, \"targets\": {\"targets_src\": \"__none__\", \"__current_case__\": 0}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.9+galaxy1", + "type": "tool", + "uuid": "5dbde914-89fe-443b-b1f5-28182e971fca", + "when": null, + "workflow_outputs": [ + { + "label": "Case 5 Normalized VCFs", + "output_name": "output_file", + "uuid": "96b34c8d-fa92-48cb-b01f-c05364deba5d" + } + ] + }, + { + "annotation": "", + "content_id": "Filter1", + "errors": null, + "id": 8, + "input_connections": { + "input": { + "id": 7, + "output_name": "output_file" + } + }, + "inputs": [], + "label": null, + "name": "Filter", + "outputs": [ + { + "name": "out_file1", + "type": "input" + } + ], + "position": { + "left": 281.1327747391346, + "top": 399.5494962135009 + }, + "post_job_actions": {}, + "tool_id": "Filter1", + "tool_state": "{\"cond\": \"c5!=''\", \"header_lines\": \"142\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.1.1", + "type": "tool", + "uuid": "da21d9af-cbe0-4cd0-bf70-1c6f16aab26f", + "when": null, + "workflow_outputs": [ + { + "label": "Case 5 Normalized VCFs (Removed )", + "output_name": "out_file1", + "uuid": "a8539eb9-8bc3-473b-a27f-201c3acf5539" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_merge/bcftools_merge/1.10", + "errors": null, + "id": 9, + "input_connections": { + "input_files": { + "id": 8, + "output_name": "out_file1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools merge", + "name": "sec_header" + } + ], + "label": null, + "name": "bcftools merge", + "outputs": [ + { + "name": "output_file", + "type": "vcf" + } + ], + "position": { + "left": 287.16415974045077, + "top": 590.7331216507386 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_merge/bcftools_merge/1.10", + "tool_shed_repository": { + "changeset_revision": "86296490704e", + "name": "bcftools_merge", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input_files\": {\"__class__\": \"ConnectedValue\"}, \"output_type\": \"v\", \"sec_header\": {\"use_header\": {\"__class__\": \"RuntimeValue\"}, \"print_header\": false}, \"sec_merge\": {\"force_samples\": false, \"info_rules\": \"\", \"merge\": \"none\"}, \"sec_restrict\": {\"apply_filters\": \"\", \"regions\": {\"regions_src\": \"__none__\", \"__current_case__\": 0}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.10", + "type": "tool", + "uuid": "3471d534-2877-4989-b13b-b7bb3aa20efc", + "when": null, + "workflow_outputs": [ + { + "label": "Case 5 Merged VCF", + "output_name": "output_file", + "uuid": "b5c479b2-e58a-4fe2-b1cf-fc64476c8192" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "output_file" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "intervals" + }, + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "transcripts" + } + ], + "label": null, + "name": "SnpEff eff:", + "outputs": [ + { + "name": "snpeff_output", + "type": "vcf" + }, + { + "name": "statsFile", + "type": "html" + } + ], + "position": { + "left": 556.8129698338548, + "top": 8.0719203679202 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1", + "tool_shed_repository": { + "changeset_revision": "cfcf33df7fc0", + "name": "snpeff", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotations\": null, \"chr\": \"\", \"csvStats\": false, \"filter\": {\"specificEffects\": \"no\", \"__current_case__\": 0}, \"filterOut\": null, \"generate_stats\": true, \"input\": {\"__class__\": \"ConnectedValue\"}, \"inputFormat\": \"vcf\", \"intervals\": {\"__class__\": \"RuntimeValue\"}, \"noLog\": true, \"offset\": \"default\", \"outputConditional\": {\"outputFormat\": \"vcf\", \"__current_case__\": 0}, \"snpDb\": {\"genomeSrc\": \"cached\", \"__current_case__\": 0, \"genomeVersion\": \"hg19\", \"reg_section\": {\"regulation\": null}}, \"spliceRegion\": {\"setSpliceRegions\": \"no\", \"__current_case__\": 0}, \"spliceSiteSize\": \"2\", \"transcripts\": {\"__class__\": \"RuntimeValue\"}, \"udLength\": \"5000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+T.galaxy1", + "type": "tool", + "uuid": "73d85553-fe49-4a78-9a5c-ac90bc2a1e12", + "when": null, + "workflow_outputs": [ + { + "label": null, + "output_name": "statsFile", + "uuid": "bb59ec32-10c8-4923-8f41-62e3ed1adf11" + }, + { + "label": "Case 5 SnpEff Annotated vcf", + "output_name": "snpeff_output", + "uuid": "cd7b4941-4f4c-4631-8ad5-3411e60fbbd9" + } + ] + }, + { + "annotation": "", + "content_id": "CONVERTER_uncompressed_to_gz", + "errors": null, + "id": 11, + "input_connections": { + "input1": { + "id": 10, + "output_name": "snpeff_output" + } + }, + "inputs": [], + "label": null, + "name": "Convert uncompressed file to compressed", + "outputs": [ + { + "name": "output1", + "type": "auto" + } + ], + "position": { + "left": 552.4385400335957, + "top": 373.4495808144635 + }, + "post_job_actions": { + "ChangeDatatypeActionoutput1": { + "action_arguments": { + "newtype": "vcf_bgzip" + }, + "action_type": "ChangeDatatypeAction", + "output_name": "output1" + } + }, + "tool_id": "CONVERTER_uncompressed_to_gz", + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.16+galaxy0", + "type": "tool", + "uuid": "2c959f43-8264-48d7-adf1-c12d5a2b3394", + "when": null, + "workflow_outputs": [ + { + "label": "SnpEff Annotated vcf_bgzip", + "output_name": "output1", + "uuid": "6e5e1084-b5e1-4daf-8f3b-bd3868a52a25" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/geneiobio/gene_iobio_display_generation_iframe/4.7.1", + "errors": null, + "id": 12, + "input_connections": { + "input_type|father|vcf": { + "id": 11, + "output_name": "output1" + }, + "input_type|mother|vcf": { + "id": 11, + "output_name": "output1" + }, + "proband_vcf": { + "id": 11, + "output_name": "output1" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool gene.iobio visualisation", + "name": "proband_bam" + } + ], + "label": null, + "name": "gene.iobio visualisation", + "outputs": [ + { + "name": "outfile", + "type": "html" + } + ], + "position": { + "left": 866.6404599769689, + "top": 23.224599201146997 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/geneiobio/gene_iobio_display_generation_iframe/4.7.1", + "tool_shed_repository": { + "changeset_revision": "c0af7b196a89", + "name": "geneiobio", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"genes\": \"\", \"input_type\": {\"input_type_selector\": \"trio\", \"__current_case__\": 0, \"father\": {\"vcf\": {\"__class__\": \"ConnectedValue\"}, \"bam\": {\"__class__\": \"RuntimeValue\"}, \"affected\": false, \"name\": \"Case6F\"}, \"mother\": {\"vcf\": {\"__class__\": \"ConnectedValue\"}, \"bam\": {\"__class__\": \"RuntimeValue\"}, \"affected\": true, \"name\": \"Case6M\"}}, \"proband_affected\": true, \"proband_bam\": {\"__class__\": \"RuntimeValue\"}, \"proband_name\": \"Case6C\", \"proband_sex\": \"female\", \"proband_vcf\": {\"__class__\": \"ConnectedValue\"}, \"refgen_version\": \"GRCh37\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.7.1", + "type": "tool", + "uuid": "63a20112-21fe-4046-9fdd-3b5e766b0d68", + "when": null, + "workflow_outputs": [ + { + "label": "Case 5 gene.iobio results", + "output_name": "outfile", + "uuid": "0b30f4e0-7328-4479-8a56-bbf828fcfdba" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "errors": null, + "id": 13, + "input_connections": { + "infile": { + "id": 11, + "output_name": "output1" + }, + "ped": { + "id": 2, + "output_name": "output" + } + }, + "inputs": [], + "label": "Case 5 GEMINI Database", + "name": "GEMINI load", + "outputs": [ + { + "name": "outfile", + "type": "gemini.sqlite" + } + ], + "position": { + "left": 867.1106984600971, + "top": 518.7461949332695 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "tool_shed_repository": { + "changeset_revision": "45296e47d565", + "name": "gemini_load", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotation_databases\": \"2019-01-12\", \"annotation_type\": \"snpEff\", \"has_genotypes\": true, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"opt_content\": [\"gerp_bp\", \"cadd\", \"gene_tables\", \"genotypes\", \"gt_pl\", \"info_string\"], \"ped\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.1+galaxy2", + "type": "tool", + "uuid": "f8d4a15e-b99a-455c-a788-2cbd8c7cb4cc", + "when": null, + "workflow_outputs": [ + { + "label": "GEMINI Database", + "output_name": "outfile", + "uuid": "8a1964d9-607c-4dd3-a2dc-0f9a68dbb681" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "errors": null, + "id": 14, + "input_connections": { + "infile": { + "id": 13, + "output_name": "outfile" + } + }, + "inputs": [], + "label": "Case 5 GEMINI Inheritance pattern", + "name": "GEMINI inheritance pattern", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 1132.4996805716235, + "top": 583.0393503253775 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "tool_shed_repository": { + "changeset_revision": "18d13111692b", + "name": "gemini_inheritance", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"family_wise\": {\"min_kindreds\": \"1\", \"families\": \"\", \"per_variant_selection\": {\"enabled\": \"no\", \"__current_case__\": 0, \"min_dp\": \"0\", \"min_gq\": \"0\", \"max_pl\": \"-1\"}}, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"inheritance\": {\"pattern_type\": \"autosomal_dominant\", \"__current_case__\": 3, \"constraint\": [{\"__index__\": 0, \"filter\": \"impact_severity != 'LOW'\"}], \"lenient\": false, \"allow_unaffected\": false}, \"oformat\": {\"report\": {\"report_selector\": \"custom\", \"__current_case__\": 2, \"columns\": null, \"extra_cols\": \"chrom, start, ref, alt, impact, gene, clinvar_sig, clinvar_disease_name, clinvar_gene_phenotype, rs_ids\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.1", + "type": "tool", + "uuid": "11a2ec8f-6c18-4000-ba5d-468dc896f866", + "when": null, + "workflow_outputs": [ + { + "label": "Case 5 GEMINI results", + "output_name": "outfile", + "uuid": "960ef978-089c-4292-81b5-731965c72a0d" + } + ] + } + ], + "parent_id": "variant-analysis/trio-analysis", + "path": "topics/variant-analysis/tutorials/trio-analysis/workflows/main_workflow.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "Trio Analysis Tutorial", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-trio-analysis/versions/main-workflow", + "tutorial_id": "trio-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/trio-analysis/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/trio-analysis/workflows/main_workflow.html", + "version": 5, + "wfid": "variant-analysis-trio-analysis", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "CONVERTER_gz_to_uncompressed", + "CONVERTER_uncompressed_to_gz", + "Filter1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_grep_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/galaxyp/regex_find_replace/regexColumn1/1.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_merge/bcftools_merge/1.10", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.9+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/ega_download_client/pyega3/5.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/geneiobio/gene_iobio_display_generation_iframe/4.7.1", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1" + ], + "workflowhub_id": "1096" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.6483454" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "column_maker", + "owner": "devteam", + "revisions": "6595517c2dd8", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "emboss_5", + "owner": "devteam", + "revisions": "63dd26468588", + "tool_panel_section_label": "EMBOSS", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_compute_length", + "owner": "devteam", + "revisions": "7d37cfda8e00", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "compose_text_param", + "owner": "iuc", + "revisions": "e188c9826e0f", + "tool_panel_section_label": "Expression Tools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "746e8e4bf929", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ivar_consensus", + "owner": "iuc", + "revisions": "40737febe339", + "tool_panel_section_label": "Virology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ivar_trim", + "owner": "iuc", + "revisions": "86a20ae274fc", + "tool_panel_section_label": "Virology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qualimap_bamqc", + "owner": "iuc", + "revisions": "19ece8afbaab", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_merge", + "owner": "iuc", + "revisions": "36677f429310", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "5826298f6a73", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ucsc_fatovcf", + "owner": "iuc", + "revisions": "78df8fc2b3ab", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_regex_finder", + "owner": "mbernt", + "revisions": "9a811adb714f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mafft", + "owner": "rnateam", + "revisions": "bf28a8cff401", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mimodd_main", + "owner": "wolma", + "revisions": "f0f2795de2c7", + "tool_panel_section_label": "MiModD", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: column_maker\n owner: devteam\n revisions: 6595517c2dd8\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: emboss_5\n owner: devteam\n revisions: 63dd26468588\n tool_panel_section_label: EMBOSS\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_compute_length\n owner: devteam\n revisions: 7d37cfda8e00\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: compose_text_param\n owner: iuc\n revisions: e188c9826e0f\n tool_panel_section_label: Expression Tools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: datamash_ops\n owner: iuc\n revisions: 746e8e4bf929\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ivar_consensus\n owner: iuc\n revisions: 40737febe339\n tool_panel_section_label: Virology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ivar_trim\n owner: iuc\n revisions: 86a20ae274fc\n tool_panel_section_label: Virology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qualimap_bamqc\n owner: iuc\n revisions: 19ece8afbaab\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_merge\n owner: iuc\n revisions: 36677f429310\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 5826298f6a73\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ucsc_fatovcf\n owner: iuc\n revisions: 78df8fc2b3ab\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_regex_finder\n owner: mbernt\n revisions: 9a811adb714f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mafft\n owner: rnateam\n revisions: bf28a8cff401\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mimodd_main\n owner: wolma\n revisions: f0f2795de2c7\n tool_panel_section_label: MiModD\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/pox-tiled-amplicon/tutorial.json", + "contributions": { + "authorship": [ + "wm75", + "TKlingstrom" + ], + "funding": [ + "by-covid", + "elixir-converge", + "h2020-defend" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "se", + "email": "tomas.klingstrom@slu.se", + "id": "TKlingstrom", + "joined": "2018-11", + "matrix": "TKlingstrom:matrix.org", + "name": "Tomas Klingstr\u00f6m", + "orcid": "0000-0002-9504-1352", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/TKlingstrom/", + "twitter": "TKlingstrom", + "url": "https://training.galaxyproject.org/training-material/api/contributors/TKlingstrom.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + }, + { + "avatar": "https://elixir-europe.org/sites/default/files/styles/right-medium/public/images/converge_logo.png", + "funder": true, + "funding_id": "871075", + "funding_statement": "ELIXIR CONVERGE is connecting and align ELIXIR Nodes to deliver sustainable FAIR life-science data management services. This project has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement \u2116 871075", + "funding_system": "cordis", + "github": false, + "id": "elixir-converge", + "joined": "2023-01", + "members": [ + "bgruening", + "hexylena" + ], + "name": "ELIXIR-CONVERGE", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-converge/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-converge.json" + }, + { + "funder": true, + "funding_id": "773701", + "funding_statement": "DEFEND is Addressing the dual emerging threats of African Swine Fever and Lumpy Skin Disease in Europe.\n\nThis work has received funding from the DEFEND project (www.defend2020.eu) with funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement No 773701.", + "funding_system": "cordis", + "github": false, + "id": "h2020-defend", + "joined": "2023-05", + "name": "Addressing the dual emerging threats of African Swine Fever and Lumpy Skin Disease in Europe", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/h2020-defend/", + "short_name": "DEFEND", + "url": "https://training.galaxyproject.org/training-material/api/funders/h2020-defend.json" + } + ], + "dir": "topics/variant-analysis/tutorials/pox-tiled-amplicon", + "edam_operation": [ + "Global alignment", + "Sequencing quality control", + "Sequence contamination filtering", + "Genome indexing", + "Sequence alignment", + "Sequence analysis", + "Read mapping", + "Sequence alignment analysis", + "Multiple sequence alignment", + "Generation", + "Local alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/pox-tiled-amplicon", + "inexact_supported_servers": [ + "UseGalaxy.org (Main)" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Compared to other viruses, analysis of sequencing data from pox viruses is complicated by the rather large genome size and by the presence of inverted terminal repeats, but well-designed wet lab and bioinformatic workflows can handle these particularities.", + "Galaxy and its huge set of tools are flexible enough to handle half-genome sequencing data efficiently.", + "A mapping-based approach can result in high-quality consensus genome reconstructions from pox virus sequencing data and appears promising even when dealing with recombinant samples." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-03-20", + "objectives": [ + "Learn how to deal with pox virus genomes inverted terminal repeats through a combination of wet lab protocol and tailored bioinformatics", + "Construct a sample consensus genome from mapped reads", + "Explore a recombinant pox virus genome via a multiple-sequence alignment of consensus genome and references and through lists of mutations derived from it" + ], + "pageviews": 594, + "pub_date": "2023-05-15", + "questions": [ + "Which special challenges does one encounter during sequence data analysis of pox viruses?", + "How can standard workflows for viral mutation calling and consensus generation be adapted to the particularities of pox viruses?", + "How can viral consensus sequences, multiple-sequence alignments and mutation calls be generated from each other and used to answer questions about the data?" + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections", + "upload-rules" + ], + "type": "internal" + } + ], + "short_id": "T00347", + "short_tools": [ + "samtools_view", + "rbc_mafft", + "Cut1", + "EMBOSS: maskseq51", + "ivar_consensus", + "Grep1", + "__APPLY_RULES__", + "datamash_ops", + "qualimap_bamqc", + "fatovcf", + "ivar_trim", + "__ZIP_COLLECTION__", + "fasta_regex_finder", + "fasta_compute_length", + "bwa_mem", + "upload1", + "param_value_from_file", + "compose_text_param", + "fastp", + "mimodd_info", + "Add_a_column1", + "samtools_merge" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "virology", + "one-health" + ], + "time_estimation": "4H", + "title": "Pox virus genome analysis from tiled-amplicon sequencing data", + "tools": [ + "Cut1", + "Grep1", + "__APPLY_RULES__", + "__ZIP_COLLECTION__", + "param_value_from_file", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ivar_consensus/ivar_consensus/1.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ivar_trim/ivar_trim/1.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2d+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_merge/samtools_merge/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/ucsc_fatovcf/fatovcf/426+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mbernt/fasta_regex_finder/fasta_regex_finder/0.1.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.520+galaxy0", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_info/0.1.8_1", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "pox-tiled-amplicon", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/pox-tiled-amplicon/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/pox-tiled-amplicon/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/pox-tiled-amplicon/tutorial.json" + }, + "version": 4, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 140, + "visitors": 497, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "https://orcid.org/0000-0001-6897-1215", + "name": "Viktoria Isabel Schwarz" + }, + { + "class": "Person", + "identifier": "https://orcid.org/0000-0002-9464-6640", + "name": "Wolfgang Maier" + } + ], + "description": "From a reference and a primer scheme generate two masked half-genome references for ITR-aware pox virus sequencing data analysis.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPrimer Scheme\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference FASTA\"]\n 2[label=\"Select pool1 primers\"]\n 0 -> 2 [label=\"output\"]\n 3[label=\"Select pool2 primers\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"Compute sequence length\"]\n 1 -> 4 [label=\"output\"]\n 5[label=\"Datamash\"]\n 2 -> 5 [label=\"out_file1\"]\n 6[label=\"Datamash\"]\n 3 -> 6 [label=\"out_file1\"]\n 7[label=\"Cut\"]\n 4 -> 7 [label=\"output\"]\n 8[label=\"Compute\"]\n 5 -> 8 [label=\"out_file\"]\n 9[label=\"Get start position of Pool2\"]\n 6 -> 9 [label=\"out_file\"]\n 10[label=\"Get end position of sequence\"]\n 7 -> 10 [label=\"out_file1\"]\n 11[label=\"Get end position of Pool1\"]\n 8 -> 11 [label=\"out_file1\"]\n 12[label=\"Compose text parameter value\"]\n 9 -> 12 [label=\"text_param\"]\n 13[label=\"Compose text parameter value\"]\n 11 -> 13 [label=\"text_param\"]\n 10 -> 13 [label=\"text_param\"]\n 14[label=\"Mask Reference for Pool2\"]\n 1 -> 14 [label=\"output\"]\n 12 -> 14 [label=\"out1\"]\n kaf755a5e2b2049bc9d5234781f937f48[color=lightseagreen,label=\"Output\\nmasked_ref_pool2\"]\n 14 -> kaf755a5e2b2049bc9d5234781f937f48\n 15[label=\"Mask Reference for Pool1\"]\n 1 -> 15 [label=\"output\"]\n 13 -> 15 [label=\"out1\"]\n k0c3b5b20c426428ca08bc835a82477c1[color=lightseagreen,label=\"Output\\nmasked_ref_pool1\"]\n 15 -> k0c3b5b20c426428ca08bc835a82477c1\n}", + "history": [ + { + "hash": "79db81a7c1c23d9778536abaa9ca879f3b0bbda5", + "message": "Update pox-virus-tiled-amplicon-ref-masking.ga", + "num": 2, + "short_hash": "79db81a7c", + "unix": "1684740183" + }, + { + "hash": "314d08f56a2d904cbab620fa5400ed0dbfa9619a", + "message": "Add some material for new pox virus tiled amplicon tutorial", + "num": 1, + "short_hash": "314d08f56", + "unix": "1682289363" + } + ], + "inputs": [ + { + "annotation": "The workflow expects a primer scheme split into two separate sequencing pools. These pools must be denoted as pool1/pool2 in the BED score column. The pool ids may, optionally, be followed by indicators of the subpool for tiled PCR amplification (e.g., pool1a/pool1b/pool2a/pool2b)", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "The workflow expects a primer scheme split into two separate sequencing pools. These pools must be denoted as pool1/pool2 in the BED score column. The pool ids may, optionally, be followed by indicators of the subpool for tiled PCR amplification (e.g., pool1a/pool1b/pool2a/pool2b)", + "name": "Primer Scheme (BED file with Pool identifiers)" + } + ], + "label": "Primer Scheme", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 667.3406219482422 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "1829d4e0-ee74-4a94-8dc5-98a11d96b961", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "The viral reference sequence to map sequenced reads against", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "The viral reference sequence to map sequenced reads against", + "name": "Reference FASTA" + } + ], + "label": "Reference FASTA", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 251.7752034262281, + "top": 650.9021921247038 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": \"\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f17c7022-fc94-42b5-ae90-7b3ec3d70ffb", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nPrimer Scheme\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference FASTA\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Select pool1 primers\"];\n 0 -->|output| 2;\n 3[\"Select pool2 primers\"];\n 0 -->|output| 3;\n 4[\"Compute sequence length\"];\n 1 -->|output| 4;\n 5[\"Datamash\"];\n 2 -->|out_file1| 5;\n 6[\"Datamash\"];\n 3 -->|out_file1| 6;\n 7[\"Cut\"];\n 4 -->|output| 7;\n 8[\"Compute\"];\n 5 -->|out_file| 8;\n 9[\"Get start position of Pool2\"];\n 6 -->|out_file| 9;\n 10[\"Get end position of sequence\"];\n 7 -->|out_file1| 10;\n 11[\"Get end position of Pool1\"];\n 8 -->|out_file1| 11;\n 12[\"Compose text parameter value\"];\n 9 -->|text_param| 12;\n 13[\"Compose text parameter value\"];\n 11 -->|text_param| 13;\n 10 -->|text_param| 13;\n 14[\"Mask Reference for Pool2\"];\n 1 -->|output| 14;\n 12 -->|out1| 14;\n af755a5e-2b20-49bc-9d52-34781f937f48[\"Output\\nmasked_ref_pool2\"];\n 14 --> af755a5e-2b20-49bc-9d52-34781f937f48;\n style af755a5e-2b20-49bc-9d52-34781f937f48 stroke:#2c3143,stroke-width:4px;\n 15[\"Mask Reference for Pool1\"];\n 1 -->|output| 15;\n 13 -->|out1| 15;\n 0c3b5b20-c426-428c-a08b-c835a82477c1[\"Output\\nmasked_ref_pool1\"];\n 15 --> 0c3b5b20-c426-428c-a08b-c835a82477c1;\n style 0c3b5b20-c426-428c-a08b-c835a82477c1 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "pox-virus-tiled-amplicon-ref-masking", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "errors": null, + "id": 14, + "input_connections": { + "input1": { + "id": 1, + "output_name": "output" + }, + "regions": { + "id": 12, + "output_name": "out1" + } + }, + "inputs": [], + "label": "Mask Reference for Pool2", + "name": "maskseq", + "outputs": [ + { + "name": "out_file1", + "type": "fasta" + } + ], + "position": { + "left": 1438.15352300995, + "top": 648.5794855890229 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Masked reference for mapping of pool2" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "tool_shed_repository": { + "changeset_revision": "ce385837c160", + "name": "emboss_5", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"maskchar\": \"N\", \"out_format1\": \"fasta\", \"regions\": {\"__class__\": \"ConnectedValue\"}, \"tolower\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.0", + "type": "tool", + "uuid": "140608b3-48b3-46f2-92e3-2b9c3fb9e3b2", + "when": null, + "workflow_outputs": [ + { + "label": "masked_ref_pool2", + "output_name": "out_file1", + "uuid": "af755a5e-2b20-49bc-9d52-34781f937f48" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "errors": null, + "id": 15, + "input_connections": { + "input1": { + "id": 1, + "output_name": "output" + }, + "regions": { + "id": 13, + "output_name": "out1" + } + }, + "inputs": [], + "label": "Mask Reference for Pool1", + "name": "maskseq", + "outputs": [ + { + "name": "out_file1", + "type": "fasta" + } + ], + "position": { + "left": 1452.6333312988281, + "top": 223.50729370117188 + }, + "post_job_actions": { + "RenameDatasetActionout_file1": { + "action_arguments": { + "newname": "Masked reference for mapping of pool1" + }, + "action_type": "RenameDatasetAction", + "output_name": "out_file1" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "tool_shed_repository": { + "changeset_revision": "ce385837c160", + "name": "emboss_5", + "owner": "devteam", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"input1\": {\"__class__\": \"ConnectedValue\"}, \"maskchar\": \"N\", \"out_format1\": \"fasta\", \"regions\": {\"__class__\": \"ConnectedValue\"}, \"tolower\": \"no\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "5.0.0", + "type": "tool", + "uuid": "3c8b86c1-7e53-4b72-b836-88a921a368ba", + "when": null, + "workflow_outputs": [ + { + "label": "masked_ref_pool1", + "output_name": "out_file1", + "uuid": "0c3b5b20-c426-428c-a08b-c835a82477c1" + } + ] + } + ], + "parent_id": "variant-analysis/pox-tiled-amplicon", + "path": "topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.ga", + "tags": [ + "GTN", + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "pox-virus-tiled-amplicon-ref-masking", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-pox-tiled-amplicon/versions/pox-virus-tiled-amplicon-ref-masking", + "tutorial_id": "pox-tiled-amplicon", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/pox-tiled-amplicon/workflows/pox-virus-tiled-amplicon-ref-masking.html", + "version": 2, + "wfid": "variant-analysis-pox-tiled-amplicon", + "wfname": "pox-virus-tiled-amplicon-ref-masking", + "workflow": "pox-virus-tiled-amplicon-ref-masking.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "param_value_from_file", + "toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: maskseq51/5.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fasta_compute_length/fasta_compute_length/1.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/compose_text_param/compose_text_param/0.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.1.0+galaxy2" + ], + "workflowhub_id": "1078" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "57def2d7c093", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "a5937157062f", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_calmd", + "owner": "devteam", + "revisions": "06dc50b7b711", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_calmd", + "owner": "devteam", + "revisions": "92ec40abcdcf", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_rmdup", + "owner": "devteam", + "revisions": "586f9e1cdb2b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "df7356989ac1", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "31a35811dda6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "control_freec", + "owner": "iuc", + "revisions": "2c6349fb175c", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "control_freec", + "owner": "iuc", + "revisions": "f923c54a17ee", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "bf675f34b056", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "5826298f6a73", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "b72793637686", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "dfa082f84068", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "32f1f56bd970", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: 57def2d7c093\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: a5937157062f\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_calmd\n owner: devteam\n revisions: 06dc50b7b711\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_calmd\n owner: devteam\n revisions: 92ec40abcdcf\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_rmdup\n owner: devteam\n revisions: 586f9e1cdb2b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: df7356989ac1\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: 31a35811dda6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: control_freec\n owner: iuc\n revisions: 2c6349fb175c\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: control_freec\n owner: iuc\n revisions: f923c54a17ee\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: bf675f34b056\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 5826298f6a73\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: b72793637686\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: dfa082f84068\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: 32f1f56bd970\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/somatic-variant-discovery/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "id": "d-salgado", + "joined": "2022-10", + "name": "David Salgado", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/d-salgado/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/d-salgado.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + } + ], + "dir": "topics/variant-analysis/tutorials/somatic-variant-discovery", + "edam_operation": [ + "Sequencing quality control", + "Genome alignment", + "Genome indexing", + "Sequence alignment", + "Sequence composition calculation", + "Sequence visualisation", + "Read mapping", + "Generation", + "Copy number estimation", + "Validation", + "Variant calling", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/somatic-variant-discovery", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Follow best practices for read mapping, quality control and mapped reads postprocessing to minimize false-positive hCNVs." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-26", + "objectives": [ + "Use Control-Freec for hCNV Identefication in tumor tissue.", + "Visualise the detected hCNVs in specific chromosomes." + ], + "pageviews": 1449, + "pub_date": "2022-10-05", + "questions": [ + "What are the specific challenges in locating human Copy Number Variances (hCNVs)?", + "How to preprocess the sequenced reads for hCNVs detection?", + "How can you detect the hCNVs in/from tumor and normal tissue of the same individual?", + "How can you visualise the hCNVs' findings and compare them for specific regions?" + ], + "short_id": "T00317", + "short_tools": [ + "Grep1", + "tp_text_file_with_recurring_lines", + "__BUILD_LIST__", + "multiqc", + "samtools_view", + "trimmomatic", + "samtools_calmd", + "circos", + "samtools_rmdup", + "bamleftalign", + "fastqc", + "control_freec", + "tp_replace_in_line", + "__RELABEL_FROM_FILE__", + "bwa_mem", + "__EXTRACT_DATASET__" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "human-genetics-cancer", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "3H", + "title": "Somatic Variant Discovery from WES Data Using Control-FREEC", + "tools": [ + "Grep1", + "__BUILD_LIST__", + "__EXTRACT_DATASET__", + "__RELABEL_FROM_FILE__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_text_file_with_recurring_lines/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.3.6", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_calmd/samtools_calmd/2.0.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_calmd/samtools_calmd/2.0.3", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_rmdup/samtools_rmdup/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy7", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/control_freec/control_freec/11.6+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/control_freec/control_freec/11.6+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.9+galaxy3", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.36.5", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.39+galaxy0" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "somatic-variant-discovery", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/somatic-variant-discovery/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/somatic-variant-discovery/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/somatic-variant-discovery/tutorial.json" + }, + "version": 12, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 126, + "visitors": 1095, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-5481-8893", + "name": "khaled Jumah", + "url": "https://github.com/khaled196" + }, + { + "class": "Person", + "identifier": "0009-0004-2454-5950", + "name": "Katarzyna Kamieniecka", + "url": "https://github.com/orgs/ELIXIR-UK-DaSH/people/kkamieniecka" + }, + { + "class": "Person", + "identifier": "0000-0002-9464-6640", + "name": "Wolfgang Maier", + "url": "https://github.com/wm75" + }, + { + "class": "Person", + "identifier": "0000-0001-6173-5674", + "name": "Krzysztof Poterlowicz", + "url": "https://github.com/orgs/ELIXIR-UK-DaSH/people/poterlowicz-lab" + }, + { + "class": "Organization", + "name": "poterlowicz-lab", + "url": "https://github.com/orgs/ELIXIR-UK-DaSH/people/poterlowicz-lab" + } + ], + "description": "This workflow is created as part of a tutorial listed on GTN. The workflow shows the steps in human copy number variance detection using the Contrl_FREEC tool. ", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNormal_r1.fastq.gz\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNormal_r2.fastq.gz\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTumor_r1.fastq.gz\"]\n 3[label=\"Create text file\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nTumor_r2.fastq.gz\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncapture_targets_chr5_12_17.bed\"]\n 6[label=\"FastQC\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Trimmomatic\"]\n 0 -> 7 [label=\"output\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"FastQC\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"FastQC\"]\n 2 -> 9 [label=\"output\"]\n 10[label=\"Trimmomatic\"]\n 2 -> 10 [label=\"output\"]\n 4 -> 10 [label=\"output\"]\n 11[label=\"FastQC\"]\n 4 -> 11 [label=\"output\"]\n 12[label=\"FastQC\"]\n 7 -> 12 [label=\"fastq_out_r2_paired\"]\n 13[label=\"Map with BWA-MEM\"]\n 7 -> 13 [label=\"fastq_out_r1_paired\"]\n 7 -> 13 [label=\"fastq_out_r2_paired\"]\n 14[label=\"FastQC\"]\n 7 -> 14 [label=\"fastq_out_r1_paired\"]\n 15[label=\"FastQC\"]\n 10 -> 15 [label=\"fastq_out_r2_paired\"]\n 16[label=\"Map with BWA-MEM\"]\n 10 -> 16 [label=\"fastq_out_r1_paired\"]\n 10 -> 16 [label=\"fastq_out_r2_paired\"]\n 17[label=\"FastQC\"]\n 10 -> 17 [label=\"fastq_out_r1_paired\"]\n 18[label=\"MultiQC\"]\n 9 -> 18 [label=\"text_file\"]\n 6 -> 18 [label=\"text_file\"]\n 8 -> 18 [label=\"text_file\"]\n 11 -> 18 [label=\"text_file\"]\n 19[label=\"Build list\"]\n 13 -> 19 [label=\"bam_output\"]\n 16 -> 19 [label=\"bam_output\"]\n 20[label=\"MultiQC\"]\n 12 -> 20 [label=\"text_file\"]\n 14 -> 20 [label=\"text_file\"]\n 15 -> 20 [label=\"text_file\"]\n 17 -> 20 [label=\"text_file\"]\n 21[label=\"Relabel identifiers\"]\n 3 -> 21 [label=\"outfile\"]\n 19 -> 21 [label=\"output\"]\n 22[label=\"Samtools view\"]\n 21 -> 22 [label=\"output\"]\n 23[label=\"RmDup\"]\n 22 -> 23 [label=\"outputsam\"]\n 24[label=\"BamLeftAlign\"]\n 23 -> 24 [label=\"output1\"]\n 25[label=\"Samtools calmd\"]\n 24 -> 25 [label=\"output_bam\"]\n 26[label=\"Samtools view\"]\n 25 -> 26 [label=\"calmd_output\"]\n 27[label=\"Samtools view\"]\n 25 -> 27 [label=\"calmd_output\"]\n 28[label=\"Select\"]\n 26 -> 28 [label=\"outputsam\"]\n 29[label=\"Replace Text\"]\n 28 -> 29 [label=\"out_file1\"]\n 30[label=\"Samtools view\"]\n 27 -> 30 [label=\"outputsam\"]\n 29 -> 30 [label=\"outfile\"]\n 31[label=\"Extract Tumor read\"]\n 30 -> 31 [label=\"outputsam\"]\n 32[label=\"Extract normal read\"]\n 30 -> 32 [label=\"outputsam\"]\n 33[label=\"Control-FREEC\"]\n 5 -> 33 [label=\"output\"]\n 32 -> 33 [label=\"output\"]\n 31 -> 33 [label=\"output\"]\n k2f4f45ddd1454078aed95d832c51923b[color=lightseagreen,label=\"Output\\nout_sample_info\"]\n 33 -> k2f4f45ddd1454078aed95d832c51923b\n k13edcdd6d7f64e0f976e1032084accf1[color=lightseagreen,label=\"Output\\nout_sample_coord\"]\n 33 -> k13edcdd6d7f64e0f976e1032084accf1\n kac78da9a8aa845cea2d13c366783fa60[color=lightseagreen,label=\"Output\\nout_control_raw\"]\n 33 -> kac78da9a8aa845cea2d13c366783fa60\n k213ea0be1ec6469b955669682bba69fe[color=lightseagreen,label=\"Output\\nout_sample_raw\"]\n 33 -> k213ea0be1ec6469b955669682bba69fe\n k59a99e4f01ef4118877763707e8b1696[color=lightseagreen,label=\"Output\\nout_ratio_log2_circos\"]\n 33 -> k59a99e4f01ef4118877763707e8b1696\n k75a0f2fce9a3453784704c1efb5b7be5[color=lightseagreen,label=\"Output\\nout_chr_sorted_circos\"]\n 33 -> k75a0f2fce9a3453784704c1efb5b7be5\n k662d214b3d224f67a4efa77b106d1535[color=lightseagreen,label=\"Output\\nout_gc_profile\"]\n 33 -> k662d214b3d224f67a4efa77b106d1535\n k02c14e20cccd4804bbb613323afeda2e[color=lightseagreen,label=\"Output\\nout_mg_log2_png\"]\n 33 -> k02c14e20cccd4804bbb613323afeda2e\n k189dc4efa15f49cc9c6edff3dbd27ad7[color=lightseagreen,label=\"Output\\nout_mg_png\"]\n 33 -> k189dc4efa15f49cc9c6edff3dbd27ad7\n k14aba5a41ade477eb9377714038f3fd3[color=lightseagreen,label=\"Output\\nout_sample_subclones\"]\n 33 -> k14aba5a41ade477eb9377714038f3fd3\n k61323e5f784647e9a0b3d79f64ca2bd8[color=lightseagreen,label=\"Output\\nout_sample_ratio\"]\n 33 -> k61323e5f784647e9a0b3d79f64ca2bd8\n 34[label=\"Circos\"]\n 33 -> 34 [label=\"out_chr_sorted_circos\"]\n 33 -> 34 [label=\"out_ratio_log2_circos\"]\n k23ea7d87b9364879bfaabeb1e141834e[color=lightseagreen,label=\"Output\\noutput_png\"]\n 34 -> k23ea7d87b9364879bfaabeb1e141834e\n}", + "history": [ + { + "hash": "ee30bdca73d4f73115cfc85d342618b207c6196c", + "message": "update and fix workflow", + "num": 1, + "short_hash": "ee30bdca7", + "unix": "1705935815" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Normal_r1.fastq.gz" + } + ], + "label": "Normal_r1.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7f6a88ac-aeea-4aa6-a061-a6473c289691", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Normal_r2.fastq.gz" + } + ], + "label": "Normal_r2.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 404 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "35711e96-e4c0-4898-9369-7a2c084f1207", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tumor_r1.fastq.gz" + } + ], + "label": "Tumor_r1.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 996 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "66b0ac07-4ec5-41a8-8409-60759c42f80b", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Tumor_r2.fastq.gz" + } + ], + "label": "Tumor_r2.fastq.gz", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 1400 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "884add89-fafc-4639-9df0-7352f8bdeba4", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "capture_targets_chr5_12_17.bed" + } + ], + "label": "capture_targets_chr5_12_17.bed", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3659.8987426757812, + "top": 1328 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "479fd774-c546-4554-b1c8-7b32fa98789c", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nNormal_r1.fastq.gz\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nNormal_r2.fastq.gz\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nTumor_r1.fastq.gz\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"Create text file\"];\n 4[\"\u2139\ufe0f Input Dataset\\nTumor_r2.fastq.gz\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\ncapture_targets_chr5_12_17.bed\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"FastQC\"];\n 0 -->|output| 6;\n 7[\"Trimmomatic\"];\n 0 -->|output| 7;\n 1 -->|output| 7;\n 8[\"FastQC\"];\n 1 -->|output| 8;\n 9[\"FastQC\"];\n 2 -->|output| 9;\n 10[\"Trimmomatic\"];\n 2 -->|output| 10;\n 4 -->|output| 10;\n 11[\"FastQC\"];\n 4 -->|output| 11;\n 12[\"FastQC\"];\n 7 -->|fastq_out_r2_paired| 12;\n 13[\"Map with BWA-MEM\"];\n 7 -->|fastq_out_r1_paired| 13;\n 7 -->|fastq_out_r2_paired| 13;\n 14[\"FastQC\"];\n 7 -->|fastq_out_r1_paired| 14;\n 15[\"FastQC\"];\n 10 -->|fastq_out_r2_paired| 15;\n 16[\"Map with BWA-MEM\"];\n 10 -->|fastq_out_r1_paired| 16;\n 10 -->|fastq_out_r2_paired| 16;\n 17[\"FastQC\"];\n 10 -->|fastq_out_r1_paired| 17;\n 18[\"MultiQC\"];\n 9 -->|text_file| 18;\n 6 -->|text_file| 18;\n 8 -->|text_file| 18;\n 11 -->|text_file| 18;\n 19[\"Build list\"];\n 13 -->|bam_output| 19;\n 16 -->|bam_output| 19;\n 20[\"MultiQC\"];\n 12 -->|text_file| 20;\n 14 -->|text_file| 20;\n 15 -->|text_file| 20;\n 17 -->|text_file| 20;\n 21[\"Relabel identifiers\"];\n 3 -->|outfile| 21;\n 19 -->|output| 21;\n 22[\"Samtools view\"];\n 21 -->|output| 22;\n 23[\"RmDup\"];\n 22 -->|outputsam| 23;\n 24[\"BamLeftAlign\"];\n 23 -->|output1| 24;\n 25[\"Samtools calmd\"];\n 24 -->|output_bam| 25;\n 26[\"Samtools view\"];\n 25 -->|calmd_output| 26;\n 27[\"Samtools view\"];\n 25 -->|calmd_output| 27;\n 28[\"Select\"];\n 26 -->|outputsam| 28;\n 29[\"Replace Text\"];\n 28 -->|out_file1| 29;\n 30[\"Samtools view\"];\n 27 -->|outputsam| 30;\n 29 -->|outfile| 30;\n 31[\"Extract Tumor read\"];\n 30 -->|outputsam| 31;\n 32[\"Extract normal read\"];\n 30 -->|outputsam| 32;\n 33[\"Control-FREEC\"];\n 5 -->|output| 33;\n 32 -->|output| 33;\n 31 -->|output| 33;\n 2f4f45dd-d145-4078-aed9-5d832c51923b[\"Output\\nout_sample_info\"];\n 33 --> 2f4f45dd-d145-4078-aed9-5d832c51923b;\n style 2f4f45dd-d145-4078-aed9-5d832c51923b stroke:#2c3143,stroke-width:4px;\n 13edcdd6-d7f6-4e0f-976e-1032084accf1[\"Output\\nout_sample_coord\"];\n 33 --> 13edcdd6-d7f6-4e0f-976e-1032084accf1;\n style 13edcdd6-d7f6-4e0f-976e-1032084accf1 stroke:#2c3143,stroke-width:4px;\n ac78da9a-8aa8-45ce-a2d1-3c366783fa60[\"Output\\nout_control_raw\"];\n 33 --> ac78da9a-8aa8-45ce-a2d1-3c366783fa60;\n style ac78da9a-8aa8-45ce-a2d1-3c366783fa60 stroke:#2c3143,stroke-width:4px;\n 213ea0be-1ec6-469b-9556-69682bba69fe[\"Output\\nout_sample_raw\"];\n 33 --> 213ea0be-1ec6-469b-9556-69682bba69fe;\n style 213ea0be-1ec6-469b-9556-69682bba69fe stroke:#2c3143,stroke-width:4px;\n 59a99e4f-01ef-4118-8777-63707e8b1696[\"Output\\nout_ratio_log2_circos\"];\n 33 --> 59a99e4f-01ef-4118-8777-63707e8b1696;\n style 59a99e4f-01ef-4118-8777-63707e8b1696 stroke:#2c3143,stroke-width:4px;\n 75a0f2fc-e9a3-4537-8470-4c1efb5b7be5[\"Output\\nout_chr_sorted_circos\"];\n 33 --> 75a0f2fc-e9a3-4537-8470-4c1efb5b7be5;\n style 75a0f2fc-e9a3-4537-8470-4c1efb5b7be5 stroke:#2c3143,stroke-width:4px;\n 662d214b-3d22-4f67-a4ef-a77b106d1535[\"Output\\nout_gc_profile\"];\n 33 --> 662d214b-3d22-4f67-a4ef-a77b106d1535;\n style 662d214b-3d22-4f67-a4ef-a77b106d1535 stroke:#2c3143,stroke-width:4px;\n 02c14e20-cccd-4804-bbb6-13323afeda2e[\"Output\\nout_mg_log2_png\"];\n 33 --> 02c14e20-cccd-4804-bbb6-13323afeda2e;\n style 02c14e20-cccd-4804-bbb6-13323afeda2e stroke:#2c3143,stroke-width:4px;\n 189dc4ef-a15f-49cc-9c6e-dff3dbd27ad7[\"Output\\nout_mg_png\"];\n 33 --> 189dc4ef-a15f-49cc-9c6e-dff3dbd27ad7;\n style 189dc4ef-a15f-49cc-9c6e-dff3dbd27ad7 stroke:#2c3143,stroke-width:4px;\n 14aba5a4-1ade-477e-b937-7714038f3fd3[\"Output\\nout_sample_subclones\"];\n 33 --> 14aba5a4-1ade-477e-b937-7714038f3fd3;\n style 14aba5a4-1ade-477e-b937-7714038f3fd3 stroke:#2c3143,stroke-width:4px;\n 61323e5f-7846-47e9-a0b3-d79f64ca2bd8[\"Output\\nout_sample_ratio\"];\n 33 --> 61323e5f-7846-47e9-a0b3-d79f64ca2bd8;\n style 61323e5f-7846-47e9-a0b3-d79f64ca2bd8 stroke:#2c3143,stroke-width:4px;\n 34[\"Circos\"];\n 33 -->|out_chr_sorted_circos| 34;\n 33 -->|out_ratio_log2_circos| 34;\n 23ea7d87-b936-4879-bfaa-beb1e141834e[\"Output\\noutput_png\"];\n 34 --> 23ea7d87-b936-4879-bfaa-beb1e141834e;\n style 23ea7d87-b936-4879-bfaa-beb1e141834e stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/control_freec/control_freec/11.6+galaxy2", + "errors": null, + "id": 33, + "input_connections": { + "WGS_WES|input_capture_file": { + "id": 5, + "output_name": "output" + }, + "WGS_WES|input_control_file": { + "id": 32, + "output_name": "output" + }, + "WGS_WES|input_sample_file": { + "id": 31, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Control-FREEC", + "outputs": [ + { + "name": "out_sample_raw", + "type": "tabular" + }, + { + "name": "out_control_raw", + "type": "tabular" + }, + { + "name": "out_sample_coord", + "type": "tabular" + }, + { + "name": "out_sample_info", + "type": "txt" + }, + { + "name": "out_sample_ratio", + "type": "tabular" + }, + { + "name": "out_sample_subclones", + "type": "txt" + }, + { + "name": "out_mg_png", + "type": "png" + }, + { + "name": "out_mg_log2_png", + "type": "png" + }, + { + "name": "out_gc_profile", + "type": "tabular" + }, + { + "name": "out_ratio_log2_circos", + "type": "tabular" + }, + { + "name": "out_chr_sorted_circos", + "type": "tabular" + } + ], + "position": { + "left": 3939.890899658203, + "top": 1132 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/control_freec/control_freec/11.6+galaxy2", + "tool_shed_repository": { + "changeset_revision": "f923c54a17ee", + "name": "control_freec", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"WGS_WES\": {\"WGS_WES_selector\": \"WES\", \"__current_case__\": 1, \"input_sample_file\": {\"__class__\": \"ConnectedValue\"}, \"input_control_file\": {\"__class__\": \"ConnectedValue\"}, \"input_capture_file\": {\"__class__\": \"ConnectedValue\"}, \"mateOrientation_selector\": \"FR\", \"advanced_settings\": {\"degree\": \"1\", \"forceGCcontentNormalization\": \"1\", \"minCNAlength\": \"3\", \"minimalSubclonePresence\": \"30\", \"readCountThreshold\": \"50\", \"window_section\": {\"window\": \"0\", \"step\": \"0\"}, \"printNA\": false, \"noisyData\": true, \"breakPointThreshold\": \"1.2\", \"breakPointType\": \"4\", \"coefficientOfVariation\": \"0.05\", \"contaminationAdjustment\": true, \"contamination\": \"0.30000000000000004\", \"intercept\": \"1\", \"minMappabilityPerWindow\": \"0.85\", \"minExpectedGC\": \"0.35\", \"maxExpectedGC\": \"0.55\", \"ploidy\": \"2\", \"sex\": \"XX\", \"telocentromeric\": \"50000\"}}, \"__input_ext\": \"bam\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"output_section\": {\"BedGraphOutput\": false, \"makeGraph\": true, \"circos_data\": true}, \"reference_source\": {\"ref_selector\": \"cached\", \"__current_case__\": 0, \"ref\": \"hg19\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "11.6+galaxy2", + "type": "tool", + "uuid": "732acf0b-23b1-4821-8b9b-ad2cf2eeab03", + "when": null, + "workflow_outputs": [ + { + "label": "out_sample_info", + "output_name": "out_sample_info", + "uuid": "2f4f45dd-d145-4078-aed9-5d832c51923b" + }, + { + "label": "out_sample_coord", + "output_name": "out_sample_coord", + "uuid": "13edcdd6-d7f6-4e0f-976e-1032084accf1" + }, + { + "label": "out_control_raw", + "output_name": "out_control_raw", + "uuid": "ac78da9a-8aa8-45ce-a2d1-3c366783fa60" + }, + { + "label": "out_sample_raw", + "output_name": "out_sample_raw", + "uuid": "213ea0be-1ec6-469b-9556-69682bba69fe" + }, + { + "label": "out_ratio_log2_circos", + "output_name": "out_ratio_log2_circos", + "uuid": "59a99e4f-01ef-4118-8777-63707e8b1696" + }, + { + "label": "out_chr_sorted_circos", + "output_name": "out_chr_sorted_circos", + "uuid": "75a0f2fc-e9a3-4537-8470-4c1efb5b7be5" + }, + { + "label": "out_gc_profile", + "output_name": "out_gc_profile", + "uuid": "662d214b-3d22-4f67-a4ef-a77b106d1535" + }, + { + "label": "out_mg_log2_png", + "output_name": "out_mg_log2_png", + "uuid": "02c14e20-cccd-4804-bbb6-13323afeda2e" + }, + { + "label": "out_mg_png", + "output_name": "out_mg_png", + "uuid": "189dc4ef-a15f-49cc-9c6e-dff3dbd27ad7" + }, + { + "label": "out_sample_subclones", + "output_name": "out_sample_subclones", + "uuid": "14aba5a4-1ade-477e-b937-7714038f3fd3" + }, + { + "label": "out_sample_ratio", + "output_name": "out_sample_ratio", + "uuid": "61323e5f-7846-47e9-a0b3-d79f64ca2bd8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9", + "errors": null, + "id": 34, + "input_connections": { + "reference_genome|ref|input_karyotype": { + "id": 33, + "output_name": "out_chr_sorted_circos" + }, + "sec_tdd|data_0|plot_format|data_source": { + "id": 33, + "output_name": "out_ratio_log2_circos" + } + }, + "inputs": [], + "label": null, + "name": "Circos", + "outputs": [ + { + "name": "output_png", + "type": "png" + } + ], + "position": { + "left": 4219.874910965515, + "top": 1517.9999724484023 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9", + "tool_shed_repository": { + "changeset_revision": "31a35811dda6", + "name": "circos", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"ideogram\": {\"limit_chromosomes\": null, \"chromosomes_reverse\": null, \"units\": \"mb\", \"spacing\": \"3.0\", \"pairwise_spacing\": [], \"radius\": \"0.8\", \"thickness\": \"45.0\", \"angle_offset\": \"-90\", \"angle_orientation\": \"clockwise\", \"ideogram_labels\": {\"show_label\": true, \"radius_offset\": \"0.01\", \"size\": \"40\", \"parallel\": true}, \"bands\": {\"show_bands\": true, \"fill_bands\": true, \"band_transparency\": \"3\", \"band_stroke_thickness\": \"0\", \"band_stroke_color\": \"#000000\"}}, \"limits\": {\"max_ticks\": \"5000\", \"max_ideograms\": \"200\", \"max_links\": \"2500000\", \"max_points_per_track\": \"2500000\"}, \"outputs\": {\"png\": true, \"svg\": false, \"tar\": false}, \"plot_options\": {\"background\": {\"background_select\": \"color\", \"__current_case__\": 1, \"background_color\": \"#ffffff\"}, \"radius\": \"1500\", \"colour_profile\": null}, \"reference_genome\": {\"ref\": {\"ref_source\": \"karyotype\", \"__current_case__\": 3, \"input_karyotype\": {\"__class__\": \"ConnectedValue\"}}}, \"scaling\": {\"zooms\": []}, \"sec_links\": {\"data\": []}, \"sec_tdd\": {\"data\": [{\"__index__\": 0, \"r1\": \"0.95\", \"r0\": \"0.8\", \"zdepth\": \"0\", \"plot_format\": {\"plot_format_select\": \"scatter\", \"__current_case__\": 5, \"data_source\": {\"__class__\": \"ConnectedValue\"}, \"format_specific\": {\"glyph\": \"circle\", \"glyph_size\": \"4\", \"fill_color\": \"#919191\", \"fill_color_alpha\": \"1.0\", \"stroke_color\": \"#000000\", \"stroke_color_alpha\": \"1.0\", \"stroke_thickness\": \"0\"}}, \"orientation\": false, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": [{\"__index__\": 0, \"conditions\": [{\"__index__\": 0, \"application\": {\"application_select\": \"value\", \"__current_case__\": 4, \"pos_gt\": \"0.0\", \"pos_lt\": null}}], \"actions\": [{\"__index__\": 0, \"action\": {\"action_select\": \"fill_color\", \"__current_case__\": 2, \"action_value\": \"#e41111\"}}], \"continue_flow\": false}, {\"__index__\": 1, \"conditions\": [{\"__index__\": 0, \"application\": {\"application_select\": \"value\", \"__current_case__\": 4, \"pos_gt\": null, \"pos_lt\": \"0.0\"}}], \"actions\": [{\"__index__\": 0, \"action\": {\"action_select\": \"fill_color\", \"__current_case__\": 2, \"action_value\": \"#3c19e6\"}}], \"continue_flow\": false}]}, \"sec_axes\": {\"axes\": [{\"__index__\": 0, \"radial_position\": {\"select\": \"data\", \"__current_case__\": 1, \"spacing\": \"1.0\"}, \"y0\": \"-4.0\", \"y1\": \"4.0\", \"color\": \"#bababa\", \"color_alpha\": \"1.0\", \"thickness\": \"2\"}], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}]}, \"ticks\": {\"radius\": \"1.0\", \"skip_first_label\": false, \"skip_last_label\": false, \"tick_group\": []}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.69.8+galaxy9", + "type": "tool", + "uuid": "7f009ef4-16bc-40f2-a938-fc264f7bfcd6", + "when": null, + "workflow_outputs": [ + { + "label": "output_png", + "output_name": "output_png", + "uuid": "23ea7d87-b936-4879-bfaa-beb1e141834e" + } + ] + } + ], + "parent_id": "variant-analysis/somatic-variant-discovery", + "path": "topics/variant-analysis/tutorials/somatic-variant-discovery/workflows/Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC.ga", + "tags": [ + "hCNV", + "variant-analysis", + "MIRACUM" + ], + "test_results": null, + "tests": true, + "title": "Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-somatic-variant-discovery/versions/somatic-variant-discovery-from-wes-data-using-control-freec", + "tutorial_id": "somatic-variant-discovery", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/somatic-variant-discovery/workflows/Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/somatic-variant-discovery/workflows/Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC.html", + "version": 1, + "wfid": "variant-analysis-somatic-variant-discovery", + "wfname": "somatic-variant-discovery-from-wes-data-using-control-freec", + "workflow": "Somatic-Variant-Discovery-from-WES-Data-Using-Control-FREEC.ga", + "workflow_tools": [ + "Grep1", + "__BUILD_LIST__", + "__EXTRACT_DATASET__", + "__RELABEL_FROM_FILE__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_replace_in_line/1.1.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_text_file_with_recurring_lines/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.3.6", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_calmd/samtools_calmd/2.0.3", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_rmdup/samtools_rmdup/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/control_freec/control_freec/11.6+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.39+galaxy0" + ], + "workflowhub_id": "1118" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.2582555" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "column_arrange_by_header", + "owner": "bgruening", + "revisions": "6c6d26ff01ff", + "tool_panel_section_label": "Filter and Sort", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "0a8c6b61f0f4", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_filter", + "owner": "devteam", + "revisions": "cb20f99fd45b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "e7b2202befea", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "57def2d7c093", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_calmd", + "owner": "devteam", + "revisions": "06dc50b7b711", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_rmdup", + "owner": "devteam", + "revisions": "586f9e1cdb2b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_annotate", + "owner": "iuc", + "revisions": "cf0f0f05ba9f", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_load", + "owner": "iuc", + "revisions": "2270a8b83c12", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_query", + "owner": "iuc", + "revisions": "da74170c55c7", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "bf675f34b056", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff", + "owner": "iuc", + "revisions": "5c7b70713fb5", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "varscan_somatic", + "owner": "iuc", + "revisions": "cf8ffc79db67", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "dfa082f84068", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: column_arrange_by_header\n owner: bgruening\n revisions: 6c6d26ff01ff\n tool_panel_section_label: Filter and Sort\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: 0a8c6b61f0f4\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_filter\n owner: devteam\n revisions: cb20f99fd45b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: e7b2202befea\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: 57def2d7c093\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_calmd\n owner: devteam\n revisions: 06dc50b7b711\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_rmdup\n owner: devteam\n revisions: 586f9e1cdb2b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_annotate\n owner: iuc\n revisions: cf0f0f05ba9f\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_load\n owner: iuc\n revisions: 2270a8b83c12\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_query\n owner: iuc\n revisions: da74170c55c7\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: bf675f34b056\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff\n owner: iuc\n revisions: 5c7b70713fb5\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: varscan_somatic\n owner: iuc\n revisions: cf8ffc79db67\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: dfa082f84068\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/somatic-variants/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/variant-analysis/tutorials/somatic-variants", + "edam_operation": [ + "Sequencing quality control", + "Genome indexing", + "Sequence alignment", + "Sequence composition calculation", + "Sequence alignment analysis", + "Read mapping", + "Generation", + "Data handling", + "Validation", + "Variant calling", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/somatic-variants", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Follow best practices for read mapping, quality control and mapped reads postprocessing to minimize false-positive variant calls.", + "Use a dedicated somatic variant caller to call variants and to classify them into somatic, germline and LOH event variants on statistical grounds.", + "Annotations and queries based on variant properties add relevance to variant and gene reports.", + "A framework like GEMINI is very helpful for managing, annotating and querying lists of variants in a flexible way.", + "Prefer public, free annotation sources to foster reproducibility and information sharing." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Call variants and their somatic status from whole-exome sequencing data", + "Annotate variants with a wealth of human genetic and cancer-specific information extracted from public databases", + "Add gene-level annotations and generate reports of annotated somatic and germline variants, loss-of-heterozygosity (LOH) events, and affected genes, ready for interpretation by clinicians" + ], + "pageviews": 21540, + "pub_date": "2019-03-13", + "questions": [ + "What are the specific challenges in somatic variant calling that set it apart from regular diploid variant calling?", + "How can you call variants and classify them according to their presence/absence in/from tumor and normal tissue of the same individual?", + "How can you annotate variants and affected genes with prior knowledge from human genetic and cancer-specific databases to generate clinically relevant reports?" + ], + "short_id": "T00318", + "short_tools": [ + "varscan_somatic", + "multiqc", + "gemini_load", + "trimmomatic", + "tp_easyjoin_tool", + "bamFilter", + "samtools_rmdup", + "bamleftalign", + "fastqc", + "bg_column_arrange_by_header", + "gemini_annotate", + "gemini_query", + "samtools_calmd", + "bwa_mem", + "snpEff" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "human-genetics-cancer", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "7h", + "title": "Identification of somatic and germline variants from tumor and normal sample pairs", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/column_arrange_by_header/bg_column_arrange_by_header/0.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_calmd/samtools_calmd/2.0.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_rmdup/samtools_rmdup/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_annotate/gemini_annotate/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_query/gemini_query/0.20.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/varscan_somatic/varscan_somatic/2.4.3.6", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.36.5" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "somatic-variants", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/somatic-variants/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/somatic-variants/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/somatic-variants/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 11289, + "workflows": [ + { + "creators": [], + "description": "Identification of somatic and germline variants from tumor and normal sample pairs tutorial", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSLGFSK-N_231335_r1_chr5_12_17.fastq\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSLGFSK-N_231335_r2_chr5_12_17.fastq\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSLGFSK-T_231336_r1_chr5_12_17.fastq\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSLGFSK-T_231336_r2_chr5_12_17.fastq\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhg19.chr5_12_17.fa\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nhotspots.bed\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncgi_variant_positions.bed\"]\n 7[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\n01-Feb-2019-CIVic.bed\"]\n 8[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ndbsnp.b147.chr5_12_17.vcf.gz\"]\n 9[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nUniprot_Cancer_Genes.13Feb2019.txt\"]\n 10[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\ncgi_genes.txt\"]\n 11[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\n01-Feb-2019-GeneSummaries.tsv\"]\n 12[label=\"FastQC\"]\n 0 -> 12 [label=\"output\"]\n 13[label=\"FastQC\"]\n 1 -> 13 [label=\"output\"]\n 14[label=\"Trimmomatic\"]\n 0 -> 14 [label=\"output\"]\n 1 -> 14 [label=\"output\"]\n 15[label=\"FastQC\"]\n 2 -> 15 [label=\"output\"]\n 16[label=\"FastQC\"]\n 3 -> 16 [label=\"output\"]\n 17[label=\"Trimmomatic\"]\n 2 -> 17 [label=\"output\"]\n 3 -> 17 [label=\"output\"]\n 18[label=\"FastQC\"]\n 14 -> 18 [label=\"fastq_out_r2_paired\"]\n 19[label=\"FastQC\"]\n 14 -> 19 [label=\"fastq_out_r1_paired\"]\n 20[label=\"Map with BWA-MEM\"]\n 14 -> 20 [label=\"fastq_out_r1_paired\"]\n 14 -> 20 [label=\"fastq_out_r2_paired\"]\n 21[label=\"MultiQC\"]\n 13 -> 21 [label=\"text_file\"]\n 15 -> 21 [label=\"text_file\"]\n 16 -> 21 [label=\"text_file\"]\n 12 -> 21 [label=\"text_file\"]\n 22[label=\"FastQC\"]\n 17 -> 22 [label=\"fastq_out_r1_paired\"]\n 23[label=\"FastQC\"]\n 17 -> 23 [label=\"fastq_out_r2_paired\"]\n 24[label=\"Map with BWA-MEM\"]\n 17 -> 24 [label=\"fastq_out_r1_paired\"]\n 17 -> 24 [label=\"fastq_out_r2_paired\"]\n 25[label=\"Filter\"]\n 20 -> 25 [label=\"bam_output\"]\n 26[label=\"MultiQC\"]\n 19 -> 26 [label=\"text_file\"]\n 22 -> 26 [label=\"text_file\"]\n 23 -> 26 [label=\"text_file\"]\n 18 -> 26 [label=\"text_file\"]\n 27[label=\"Filter\"]\n 24 -> 27 [label=\"bam_output\"]\n 28[label=\"RmDup\"]\n 25 -> 28 [label=\"out_file1\"]\n 29[label=\"RmDup\"]\n 27 -> 29 [label=\"out_file1\"]\n 30[label=\"BamLeftAlign\"]\n 28 -> 30 [label=\"output1\"]\n 31[label=\"BamLeftAlign\"]\n 29 -> 31 [label=\"output1\"]\n 32[label=\"CalMD\"]\n 30 -> 32 [label=\"output_bam\"]\n 33[label=\"CalMD\"]\n 31 -> 33 [label=\"output_bam\"]\n 34[label=\"Filter\"]\n 32 -> 34 [label=\"calmd_output\"]\n 35[label=\"Filter\"]\n 33 -> 35 [label=\"calmd_output\"]\n 36[label=\"VarScan somatic\"]\n 34 -> 36 [label=\"out_file1\"]\n 35 -> 36 [label=\"out_file1\"]\n 37[label=\"SnpEff eff:\"]\n 36 -> 37 [label=\"output\"]\n 38[label=\"GEMINI load\"]\n 37 -> 38 [label=\"snpeff_output\"]\n 39[label=\"GEMINI annotate\"]\n 36 -> 39 [label=\"output\"]\n 38 -> 39 [label=\"outfile\"]\n 40[label=\"GEMINI annotate\"]\n 8 -> 40 [label=\"output\"]\n 39 -> 40 [label=\"outfile\"]\n 41[label=\"GEMINI annotate\"]\n 5 -> 41 [label=\"output\"]\n 40 -> 41 [label=\"outfile\"]\n 42[label=\"GEMINI annotate\"]\n 7 -> 42 [label=\"output\"]\n 41 -> 42 [label=\"outfile\"]\n 43[label=\"GEMINI annotate\"]\n 6 -> 43 [label=\"output\"]\n 42 -> 43 [label=\"outfile\"]\n 44[label=\"GEMINI query\"]\n 43 -> 44 [label=\"outfile\"]\n 45[label=\"GEMINI query\"]\n 43 -> 45 [label=\"outfile\"]\n 46[label=\"GEMINI query\"]\n 43 -> 46 [label=\"outfile\"]\n 47[label=\"GEMINI query\"]\n 43 -> 47 [label=\"outfile\"]\n 48[label=\"Join\"]\n 47 -> 48 [label=\"outfile\"]\n 9 -> 48 [label=\"output\"]\n 49[label=\"Join\"]\n 48 -> 49 [label=\"output\"]\n 10 -> 49 [label=\"output\"]\n 50[label=\"Join\"]\n 49 -> 50 [label=\"output\"]\n 11 -> 50 [label=\"output\"]\n 51[label=\"Column arrange\"]\n 50 -> 51 [label=\"output\"]\n k0a9a947ea6c8480494ea779a1fc6a776[color=lightseagreen,label=\"Output\\ngene_report_output\"]\n 51 -> k0a9a947ea6c8480494ea779a1fc6a776\n}", + "history": [ + { + "hash": "caffacad4879c005f2c65ec0fce10bca42df9576", + "message": "Somatic variants tutorial updates (#2054)", + "num": 1, + "short_hash": "caffacad4", + "unix": "1602363051" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SLGFSK-N_231335_r1_chr5_12_17.fastq" + } + ], + "label": "SLGFSK-N_231335_r1_chr5_12_17.fastq", + "name": "SLGFSK-N_231335_r1_chr5_12_17.fastq", + "outputs": [], + "position": { + "left": 200, + "top": 200 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SLGFSK-N_231335_r1_chr5_12_17.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "42e41cea-0eef-4411-8d05-3497e4305454", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SLGFSK-N_231335_r2_chr5_12_17.fastq" + } + ], + "label": "SLGFSK-N_231335_r2_chr5_12_17.fastq", + "name": "SLGFSK-N_231335_r2_chr5_12_17.fastq", + "outputs": [], + "position": { + "left": 200, + "top": 320 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SLGFSK-N_231335_r2_chr5_12_17.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "c01c6659-b9cd-4463-a845-4a27e4734509", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SLGFSK-T_231336_r1_chr5_12_17.fastq" + } + ], + "label": "SLGFSK-T_231336_r1_chr5_12_17.fastq", + "name": "SLGFSK-T_231336_r1_chr5_12_17.fastq", + "outputs": [], + "position": { + "left": 200, + "top": 440 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SLGFSK-T_231336_r1_chr5_12_17.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "44387739-ebc5-4ca9-9274-ca568f6981be", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SLGFSK-T_231336_r2_chr5_12_17.fastq" + } + ], + "label": "SLGFSK-T_231336_r2_chr5_12_17.fastq", + "name": "SLGFSK-T_231336_r2_chr5_12_17.fastq", + "outputs": [], + "position": { + "left": 200, + "top": 560 + }, + "tool_id": null, + "tool_state": "{\"name\": \"SLGFSK-T_231336_r2_chr5_12_17.fastq\"}", + "tool_version": null, + "type": "data_input", + "uuid": "cd735b71-4735-4613-88c2-585e9ae752cd", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hg19.chr5_12_17.fa" + } + ], + "label": "hg19.chr5_12_17.fa", + "name": "hg19.chr5_12_17.fa", + "outputs": [], + "position": { + "left": 200, + "top": 680 + }, + "tool_id": null, + "tool_state": "{\"name\": \"hg19.chr5_12_17.fa\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3c81dd70-5abd-4c35-ae8c-cd0f2e4936fa", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hotspots.bed" + } + ], + "label": "hotspots.bed", + "name": "hotspots.bed", + "outputs": [], + "position": { + "left": 200, + "top": 800 + }, + "tool_id": null, + "tool_state": "{\"name\": \"hotspots.bed\"}", + "tool_version": null, + "type": "data_input", + "uuid": "90dd17da-34a9-4ed4-a1a0-b1389a795f4c", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "cgi_variant_positions.bed" + } + ], + "label": "cgi_variant_positions.bed", + "name": "cgi_variant_positions.bed", + "outputs": [], + "position": { + "left": 200, + "top": 920 + }, + "tool_id": null, + "tool_state": "{\"name\": \"cgi_variant_positions.bed\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4392884e-1b45-4c29-94c5-39c2c9ec1fb6", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 7, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "01-Feb-2019-CIVic.bed" + } + ], + "label": "01-Feb-2019-CIVic.bed", + "name": "01-Feb-2019-CIVic.bed", + "outputs": [], + "position": { + "left": 200, + "top": 1040 + }, + "tool_id": null, + "tool_state": "{\"name\": \"01-Feb-2019-CIVic.bed\"}", + "tool_version": null, + "type": "data_input", + "uuid": "06b14682-2e30-4b72-82ec-07c2f08bfe4e", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 8, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "dbsnp.b147.chr5_12_17.vcf.gz" + } + ], + "label": "dbsnp.b147.chr5_12_17.vcf.gz", + "name": "dbsnp.b147.chr5_12_17.vcf.gz", + "outputs": [], + "position": { + "left": 200, + "top": 1160 + }, + "tool_id": null, + "tool_state": "{\"name\": \"dbsnp.b147.chr5_12_17.vcf.gz\"}", + "tool_version": null, + "type": "data_input", + "uuid": "ecbfe5d9-1585-488b-b47c-62f2927a47a7", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 9, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Uniprot_Cancer_Genes.13Feb2019.txt" + } + ], + "label": "Uniprot_Cancer_Genes.13Feb2019.txt", + "name": "Uniprot_Cancer_Genes.13Feb2019.txt", + "outputs": [], + "position": { + "left": 200, + "top": 1280 + }, + "tool_id": null, + "tool_state": "{\"name\": \"Uniprot_Cancer_Genes.13Feb2019.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "27376556-09b4-4841-ae6b-daf27961cb26", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 10, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "cgi_genes.txt" + } + ], + "label": "cgi_genes.txt", + "name": "cgi_genes.txt", + "outputs": [], + "position": { + "left": 200, + "top": 1400 + }, + "tool_id": null, + "tool_state": "{\"name\": \"cgi_genes.txt\"}", + "tool_version": null, + "type": "data_input", + "uuid": "a1b1e2a4-d8a9-4b28-8438-d6cac706f9af", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 11, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "01-Feb-2019-GeneSummaries.tsv" + } + ], + "label": "01-Feb-2019-GeneSummaries.tsv", + "name": "01-Feb-2019-GeneSummaries.tsv", + "outputs": [], + "position": { + "left": 200, + "top": 1520 + }, + "tool_id": null, + "tool_state": "{\"name\": \"01-Feb-2019-GeneSummaries.tsv\"}", + "tool_version": null, + "type": "data_input", + "uuid": "af690aec-8006-41ad-b05c-6c388d74ad97", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nSLGFSK-N_231335_r1_chr5_12_17.fastq\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSLGFSK-N_231335_r2_chr5_12_17.fastq\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nSLGFSK-T_231336_r1_chr5_12_17.fastq\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nSLGFSK-T_231336_r2_chr5_12_17.fastq\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nhg19.chr5_12_17.fa\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nhotspots.bed\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\ncgi_variant_positions.bed\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"\u2139\ufe0f Input Dataset\\n01-Feb-2019-CIVic.bed\"];\n style 7 stroke:#2c3143,stroke-width:4px;\n 8[\"\u2139\ufe0f Input Dataset\\ndbsnp.b147.chr5_12_17.vcf.gz\"];\n style 8 stroke:#2c3143,stroke-width:4px;\n 9[\"\u2139\ufe0f Input Dataset\\nUniprot_Cancer_Genes.13Feb2019.txt\"];\n style 9 stroke:#2c3143,stroke-width:4px;\n 10[\"\u2139\ufe0f Input Dataset\\ncgi_genes.txt\"];\n style 10 stroke:#2c3143,stroke-width:4px;\n 11[\"\u2139\ufe0f Input Dataset\\n01-Feb-2019-GeneSummaries.tsv\"];\n style 11 stroke:#2c3143,stroke-width:4px;\n 12[\"FastQC\"];\n 0 -->|output| 12;\n 13[\"FastQC\"];\n 1 -->|output| 13;\n 14[\"Trimmomatic\"];\n 0 -->|output| 14;\n 1 -->|output| 14;\n 15[\"FastQC\"];\n 2 -->|output| 15;\n 16[\"FastQC\"];\n 3 -->|output| 16;\n 17[\"Trimmomatic\"];\n 2 -->|output| 17;\n 3 -->|output| 17;\n 18[\"FastQC\"];\n 14 -->|fastq_out_r2_paired| 18;\n 19[\"FastQC\"];\n 14 -->|fastq_out_r1_paired| 19;\n 20[\"Map with BWA-MEM\"];\n 14 -->|fastq_out_r1_paired| 20;\n 14 -->|fastq_out_r2_paired| 20;\n 21[\"MultiQC\"];\n 13 -->|text_file| 21;\n 15 -->|text_file| 21;\n 16 -->|text_file| 21;\n 12 -->|text_file| 21;\n 22[\"FastQC\"];\n 17 -->|fastq_out_r1_paired| 22;\n 23[\"FastQC\"];\n 17 -->|fastq_out_r2_paired| 23;\n 24[\"Map with BWA-MEM\"];\n 17 -->|fastq_out_r1_paired| 24;\n 17 -->|fastq_out_r2_paired| 24;\n 25[\"Filter\"];\n 20 -->|bam_output| 25;\n 26[\"MultiQC\"];\n 19 -->|text_file| 26;\n 22 -->|text_file| 26;\n 23 -->|text_file| 26;\n 18 -->|text_file| 26;\n 27[\"Filter\"];\n 24 -->|bam_output| 27;\n 28[\"RmDup\"];\n 25 -->|out_file1| 28;\n 29[\"RmDup\"];\n 27 -->|out_file1| 29;\n 30[\"BamLeftAlign\"];\n 28 -->|output1| 30;\n 31[\"BamLeftAlign\"];\n 29 -->|output1| 31;\n 32[\"CalMD\"];\n 30 -->|output_bam| 32;\n 33[\"CalMD\"];\n 31 -->|output_bam| 33;\n 34[\"Filter\"];\n 32 -->|calmd_output| 34;\n 35[\"Filter\"];\n 33 -->|calmd_output| 35;\n 36[\"VarScan somatic\"];\n 34 -->|out_file1| 36;\n 35 -->|out_file1| 36;\n 37[\"SnpEff eff:\"];\n 36 -->|output| 37;\n 38[\"GEMINI load\"];\n 37 -->|snpeff_output| 38;\n 39[\"GEMINI annotate\"];\n 36 -->|output| 39;\n 38 -->|outfile| 39;\n 40[\"GEMINI annotate\"];\n 8 -->|output| 40;\n 39 -->|outfile| 40;\n 41[\"GEMINI annotate\"];\n 5 -->|output| 41;\n 40 -->|outfile| 41;\n 42[\"GEMINI annotate\"];\n 7 -->|output| 42;\n 41 -->|outfile| 42;\n 43[\"GEMINI annotate\"];\n 6 -->|output| 43;\n 42 -->|outfile| 43;\n 44[\"GEMINI query\"];\n 43 -->|outfile| 44;\n 45[\"GEMINI query\"];\n 43 -->|outfile| 45;\n 46[\"GEMINI query\"];\n 43 -->|outfile| 46;\n 47[\"GEMINI query\"];\n 43 -->|outfile| 47;\n 48[\"Join\"];\n 47 -->|outfile| 48;\n 9 -->|output| 48;\n 49[\"Join\"];\n 48 -->|output| 49;\n 10 -->|output| 49;\n 50[\"Join\"];\n 49 -->|output| 50;\n 11 -->|output| 50;\n 51[\"Column arrange\"];\n 50 -->|output| 51;\n 0a9a947e-a6c8-4804-94ea-779a1fc6a776[\"Output\\ngene_report_output\"];\n 51 --> 0a9a947e-a6c8-4804-94ea-779a1fc6a776;\n style 0a9a947e-a6c8-4804-94ea-779a1fc6a776 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Identification of somatic and germline variants from tumor and normal sample pairs tutorial", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/column_arrange_by_header/bg_column_arrange_by_header/0.2", + "errors": null, + "id": 51, + "input_connections": { + "param_input": { + "id": 50, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Column arrange", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 4600, + "top": 200 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/column_arrange_by_header/bg_column_arrange_by_header/0.2", + "tool_shed_repository": { + "changeset_revision": "6c6d26ff01ff", + "name": "column_arrange_by_header", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__input_ext\": \"tabular\", \"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"discard_remaining\": \"true\", \"param_input\": {\"__class__\": \"ConnectedValue\"}, \"rep_param_columns\": [{\"__index__\": 0, \"param_column\": \"gene\"}, {\"__index__\": 1, \"param_column\": \"chrom\"}, {\"__index__\": 2, \"param_column\": \"synonym\"}, {\"__index__\": 3, \"param_column\": \"hgnc_id\"}, {\"__index__\": 4, \"param_column\": \"entrez_id\"}, {\"__index__\": 5, \"param_column\": \"rvis_pct\"}, {\"__index__\": 6, \"param_column\": \"is_OG\"}, {\"__index__\": 7, \"param_column\": \"is_TS\"}, {\"__index__\": 8, \"param_column\": \"in_cgi_biomarkers\"}, {\"__index__\": 9, \"param_column\": \"clinvar_gene_phenotype\"}, {\"__index__\": 10, \"param_column\": \"gene_civic_url\"}, {\"__index__\": 11, \"param_column\": \"description\"}], \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.2", + "type": "tool", + "uuid": "96059b98-f7dd-4ce0-9000-7eea6282f629", + "workflow_outputs": [ + { + "label": "gene_report_output", + "output_name": "output", + "uuid": "0a9a947e-a6c8-4804-94ea-779a1fc6a776" + } + ] + } + ], + "parent_id": "variant-analysis/somatic-variants", + "path": "topics/variant-analysis/tutorials/somatic-variants/workflows/somatic_variants_tutorial_workflow.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "Identification of somatic and germline variants from tumor and normal sample pairs tutorial", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-somatic-variants/versions/somatic-variants-tutorial-workflow", + "tutorial_id": "somatic-variants", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/somatic-variants/workflows/somatic_variants_tutorial_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/somatic-variants/workflows/somatic_variants_tutorial_workflow.html", + "version": 1, + "wfid": "variant-analysis-somatic-variants", + "wfname": "somatic-variants-tutorial-workflow", + "workflow": "somatic_variants_tutorial_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/column_arrange_by_header/bg_column_arrange_by_header/0.2", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_easyjoin_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bamtools_filter/bamFilter/2.4.1", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.72+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/bamleftalign/1.3.1", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_calmd/samtools_calmd/2.0.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_rmdup/samtools_rmdup/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_annotate/gemini_annotate/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_query/gemini_query/0.20.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/varscan_somatic/varscan_somatic/2.4.3.6", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.36.5" + ], + "workflowhub_id": "1081" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.2582555" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "3fe632431b68", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "picard", + "owner": "devteam", + "revisions": "a1f0b3f4b781", + "tool_panel_section_label": "Picard", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "145f6d74ff5e", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "dbf9c561ef29", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_call", + "owner": "iuc", + "revisions": "65432c3abf6c", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_indelqual", + "owner": "iuc", + "revisions": "426d707dfc47", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "lofreq_viterbi", + "owner": "iuc", + "revisions": "aa35ee7f3ab2", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "bf675f34b056", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "revisions": "2a3a00c1fa0a", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpsift", + "owner": "iuc", + "revisions": "5fab4f81391d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "494b2ec08162", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "sra_tools", + "owner": "iuc", + "revisions": "4df8de2d0e48", + "tool_panel_section_label": "Get Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: 3fe632431b68\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: picard\n owner: devteam\n revisions: a1f0b3f4b781\n tool_panel_section_label: Picard\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: 145f6d74ff5e\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: dbf9c561ef29\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_call\n owner: iuc\n revisions: 65432c3abf6c\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_indelqual\n owner: iuc\n revisions: 426d707dfc47\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: lofreq_viterbi\n owner: iuc\n revisions: aa35ee7f3ab2\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: bf675f34b056\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff_sars_cov_2\n owner: iuc\n revisions: 2a3a00c1fa0a\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpsift\n owner: iuc\n revisions: 5fab4f81391d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 494b2ec08162\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: sra_tools\n owner: iuc\n revisions: 4df8de2d0e48\n tool_panel_section_label: Get Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json", + "contributions": { + "authorship": [ + "mvdbeek", + "tnabtaf", + "blankenberg", + "nekrut" + ], + "editing": [ + "wm75" + ] + }, + "contributors": [ + { + "id": "mvdbeek", + "joined": "2018-06", + "name": "Marius van den Beek", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/mvdbeek/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/mvdbeek.json" + }, + { + "id": "tnabtaf", + "joined": "2017-09", + "name": "Dave Clements", + "orcid": "0000-0002-9970-6657", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tnabtaf/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tnabtaf.json" + }, + { + "id": "blankenberg", + "joined": "2018-07", + "name": "Daniel Blankenberg", + "orcid": "0000-0002-6833-9049", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/blankenberg/", + "twitter": "dblankenberg", + "url": "https://training.galaxyproject.org/training-material/api/contributors/blankenberg.json" + }, + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/variant-analysis/tutorials/sars-cov-2", + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Genome indexing", + "SNP detection", + "Sequence alignment", + "Formatting", + "Read mapping", + "Generation", + "Data handling", + "Validation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/sars-cov-2", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Sequence data in the SRA can be directly imported into Galaxy", + "Collections enable efficient/parallel processing of sequence data from whole batches of samples", + "Genomic mutations in SARS-CoV-2 viral isolates can be identified through a straightforward pipeline involving sequenced reads preprocessing, mapping to the SARS-CoV-2 reference genome, postprocessing of mapping results, and variant calling" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Understand how Galaxy and the Sequence Read Archive interact", + "Be able to go from Galaxy to the Short Reach Archive, query SRA, use the SRA Run Selector to send selected metadata to Galaxy, and then import sequence data from SRA into Galaxy", + "Understand how collections enable processing of sequencing data in batches", + "Understand the analysis steps required to identify and annotate genomic mutations from sequencing data of SARS-CoV-2 samples" + ], + "pageviews": 18450, + "pub_date": "2020-06-24", + "questions": [ + "How can you download public sequencing data deposited in the NCBI Sequence Read Archive (SRA) into a Galaxy history for analysis?", + "How can you process a batch of sequencing data from several samples efficiently/in parallel with Galaxy?", + "Starting from raw sequenced reads of whole-genome sequenced samples of SARS-CoV-2, how can you identify mutations in the genomes of these samples?" + ], + "recordings": [ + { + "captioners": [ + "nekrut" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "15M", + "speakers": [ + "nekrut" + ], + "youtube_id": "9mIL0tIfZ_o" + } + ], + "short_id": "T00315", + "short_tools": [ + "Grep1", + "picard_MarkDuplicates", + "samtools_stats", + "fastp", + "multiqc", + "tp_cut_tool", + "fasterq_dump", + "snpSift_extractFields", + "Filter1", + "lofreq_call", + "lofreq_indelqual", + "lofreq_viterbi", + "bwa_mem", + "snpeff_sars_cov_2" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "covid19", + "virology", + "one-health" + ], + "time_estimation": "1H", + "title": "From NCBI's Sequence Read Archive (SRA) to Galaxy: SARS-CoV-2 variant analysis", + "tools": [ + "Filter1", + "Grep1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_cut_tool/1.1.0", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/3.0.3+galaxy0" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-cov-2", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/sars-cov-2/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 175, + "visitors": 12116, + "workflows": [ + { + "creators": [], + "description": "Analysis of variation within individual COVID-19 samples (Paired End Illumina). Does not use paured", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nNC_045512.2 fasta file\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nSRA Manifest\"]\n 2[label=\"Faster Download and Extract Reads in FASTQ\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"fastp\"]\n 2 -> 3 [label=\"list_paired\"]\n 4[label=\"Map with BWA-MEM\"]\n 3 -> 4 [label=\"output_paired_coll\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"MarkDuplicates\"]\n 4 -> 5 [label=\"bam_output\"]\n 6[label=\"Realign reads\"]\n 5 -> 6 [label=\"outFile\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Samtools stats\"]\n 5 -> 7 [label=\"outFile\"]\n 8[label=\"Insert indel qualities\"]\n 6 -> 8 [label=\"realigned\"]\n 0 -> 8 [label=\"output\"]\n k2ca7c89b999f41dc8037e54e25959a7e[color=lightseagreen,label=\"Output\\nRealigned Alignments with Indel Qualities\"]\n 8 -> k2ca7c89b999f41dc8037e54e25959a7e\n 9[label=\"Call variants\"]\n 8 -> 9 [label=\"output\"]\n 0 -> 9 [label=\"output\"]\n 10[label=\"SnpEff eff:\"]\n 9 -> 10 [label=\"variants\"]\n 11[label=\"SnpSift Extract Fields\"]\n 10 -> 11 [label=\"snpeff_output\"]\n k06259137eaa5404a923c70ee5f1d89d4[color=lightseagreen,label=\"Output\\nSnpSift tabular output\"]\n 11 -> k06259137eaa5404a923c70ee5f1d89d4\n 12[label=\"MultiQC\"]\n 3 -> 12 [label=\"report_json\"]\n 7 -> 12 [label=\"output\"]\n 5 -> 12 [label=\"metrics_file\"]\n 10 -> 12 [label=\"csvFile\"]\n k758ffde57ddd482a88b21504f8335488[color=lightseagreen,label=\"Output\\nMultiQC Report PE\"]\n 12 -> k758ffde57ddd482a88b21504f8335488\n}", + "history": [ + { + "hash": "18338ab9a1ef29b46dc8f2e8a7f7a4b055f16e3d", + "message": "Use correct fasterqdump version", + "num": 7, + "short_hash": "18338ab9a", + "unix": "1593005231" + }, + { + "hash": "979d6cd2174d0f2ce10ad195d9d3cc4b29a1623a", + "message": "Reformat workflow, bump lofreq to 2.1.5", + "num": 6, + "short_hash": "979d6cd21", + "unix": "1593004337" + }, + { + "hash": "ced05a792b3048548fd31a9d0bde9a1bf634481f", + "message": "Fix workflow connections", + "num": 5, + "short_hash": "ced05a792", + "unix": "1592944690" + }, + { + "hash": "1c38a3ed277eb7434c02927dce89f72e8a9c0c78", + "message": "Use newer, simpler output", + "num": 4, + "short_hash": "1c38a3ed2", + "unix": "1592943019" + }, + { + "hash": "a58450027f50bbdb5e91ee3529c7deef7ee1cf4e", + "message": "add topic tag to workflow", + "num": 3, + "short_hash": "a58450027", + "unix": "1592838416" + }, + { + "hash": "e8eea07056121bf6ee287bec31c64cd69d2e6dcb", + "message": "reformat workflow", + "num": 2, + "short_hash": "e8eea0705", + "unix": "1592835884" + }, + { + "hash": "a06c40264814dc80888f2a9ce28d4f06c2c3e687", + "message": "Skeleton from PE sars-cov-2 workflow", + "num": 1, + "short_hash": "a06c40264", + "unix": "1592389814" + } + ], + "inputs": [ + { + "annotation": "Contains SARS-CoV-2 reference sequence", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Contains SARS-CoV-2 reference sequence", + "name": "NC_045512.2 fasta file" + } + ], + "label": "NC_045512.2 fasta file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 317.85511016845703 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0e91bcb8-fa43-4fc5-87f9-9e65784373e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1dedf4c3-5fc4-4505-baa0-b13e4416d67d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRA Manifest" + } + ], + "label": "SRA Manifest", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 372.3295364379883 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3c5adef0-7af6-435e-bb10-966361130b58", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fa458185-44d5-4d2d-ad69-20595c8ad337" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nNC_045512.2 fasta file\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nSRA Manifest\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Faster Download and Extract Reads in FASTQ\"];\n 1 -->|output| 2;\n 3[\"fastp\"];\n 2 -->|list_paired| 3;\n 4[\"Map with BWA-MEM\"];\n 3 -->|output_paired_coll| 4;\n 0 -->|output| 4;\n 5[\"MarkDuplicates\"];\n 4 -->|bam_output| 5;\n 6[\"Realign reads\"];\n 5 -->|outFile| 6;\n 0 -->|output| 6;\n 7[\"Samtools stats\"];\n 5 -->|outFile| 7;\n 8[\"Insert indel qualities\"];\n 6 -->|realigned| 8;\n 0 -->|output| 8;\n 2ca7c89b-999f-41dc-8037-e54e25959a7e[\"Output\\nRealigned Alignments with Indel Qualities\"];\n 8 --> 2ca7c89b-999f-41dc-8037-e54e25959a7e;\n style 2ca7c89b-999f-41dc-8037-e54e25959a7e stroke:#2c3143,stroke-width:4px;\n 9[\"Call variants\"];\n 8 -->|output| 9;\n 0 -->|output| 9;\n 10[\"SnpEff eff:\"];\n 9 -->|variants| 10;\n 11[\"SnpSift Extract Fields\"];\n 10 -->|snpeff_output| 11;\n 06259137-eaa5-404a-923c-70ee5f1d89d4[\"Output\\nSnpSift tabular output\"];\n 11 --> 06259137-eaa5-404a-923c-70ee5f1d89d4;\n style 06259137-eaa5-404a-923c-70ee5f1d89d4 stroke:#2c3143,stroke-width:4px;\n 12[\"MultiQC\"];\n 3 -->|report_json| 12;\n 7 -->|output| 12;\n 5 -->|metrics_file| 12;\n 10 -->|csvFile| 12;\n 758ffde5-7ddd-482a-88b2-1504f8335488[\"Output\\nMultiQC Report PE\"];\n 12 --> 758ffde5-7ddd-482a-88b2-1504f8335488;\n style 758ffde5-7ddd-482a-88b2-1504f8335488 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Simple COVID-19 - PE Variation", + "outputs": [ + { + "annotation": "Contains SARS-CoV-2 reference sequence", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Contains SARS-CoV-2 reference sequence", + "name": "NC_045512.2 fasta file" + } + ], + "label": "NC_045512.2 fasta file", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 317.85511016845703 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "0e91bcb8-fa43-4fc5-87f9-9e65784373e6", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "1dedf4c3-5fc4-4505-baa0-b13e4416d67d" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "SRA Manifest" + } + ], + "label": "SRA Manifest", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 199.95736694335938, + "top": 372.3295364379883 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "3c5adef0-7af6-435e-bb10-966361130b58", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "fa458185-44d5-4d2d-ad69-20595c8ad337" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "errors": null, + "id": 2, + "input_connections": { + "input|file_list": { + "id": 1, + "output_name": "output" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Faster Download and Extract Reads in FASTQ", + "name": "input" + } + ], + "label": null, + "name": "Faster Download and Extract Reads in FASTQ", + "outputs": [ + { + "name": "list_paired", + "type": "input" + }, + { + "name": "output_collection", + "type": "input" + }, + { + "name": "output_collection_other", + "type": "input" + }, + { + "name": "log", + "type": "txt" + } + ], + "position": { + "left": 342.9971618652344, + "top": 317.85511016845703 + }, + "post_job_actions": { + "HideDatasetActionlog": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "log" + }, + "HideDatasetActionoutput_collection": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection" + }, + "HideDatasetActionoutput_collection_other": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_collection_other" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1", + "tool_shed_repository": { + "changeset_revision": "248f85ff0733", + "name": "sra_tools", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"minlen\": \"\", \"split\": \"--split-3\", \"skip_technical\": \"true\"}, \"input\": {\"input_select\": \"file_list\", \"__current_case__\": 2, \"file_list\": {\"__class__\": \"RuntimeValue\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.10.7+galaxy1", + "type": "tool", + "uuid": "3ce5b504-3641-4ea9-8d24-07f9bebaec23", + "workflow_outputs": [ + { + "label": null, + "output_name": "list_paired", + "uuid": "9e5c0368-e97c-4def-9704-1b902fbb2ed7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "errors": null, + "id": 8, + "input_connections": { + "reads": { + "id": 6, + "output_name": "realigned" + }, + "strategy|reference_source|ref": { + "id": 0, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Insert indel qualities", + "outputs": [ + { + "name": "output", + "type": "bam" + } + ], + "position": { + "left": 1057.5852355957031, + "top": 317.85511016845703 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "Realigned Alignments with Indel Qualities" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "tool_shed_repository": { + "changeset_revision": "354b534eeab7", + "name": "lofreq_indelqual", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"reads\": {\"__class__\": \"ConnectedValue\"}, \"strategy\": {\"selector\": \"dindel\", \"__current_case__\": 1, \"reference_source\": {\"ref_selector\": \"history\", \"__current_case__\": 1, \"ref\": {\"__class__\": \"ConnectedValue\"}}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.5+galaxy0", + "type": "tool", + "uuid": "cbc7ee7f-5cfa-4d45-a83e-623efbf66068", + "workflow_outputs": [ + { + "label": "Realigned Alignments with Indel Qualities", + "output_name": "output", + "uuid": "2ca7c89b-999f-41dc-8037-e54e25959a7e" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "errors": null, + "id": 10, + "input_connections": { + "input": { + "id": 9, + "output_name": "variants" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "intervals" + }, + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "transcripts" + } + ], + "label": null, + "name": "SnpEff eff:", + "outputs": [ + { + "name": "snpeff_output", + "type": "vcf" + }, + { + "name": "statsFile", + "type": "html" + }, + { + "name": "csvFile", + "type": "csv" + } + ], + "position": { + "left": 1343.0823059082031, + "top": 317.85511016845703 + }, + "post_job_actions": { + "HideDatasetActioncsvFile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "csvFile" + }, + "HideDatasetActionstatsFile": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "statsFile" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "tool_shed_repository": { + "changeset_revision": "2a3a00c1fa0a", + "name": "snpeff_sars_cov_2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotations\": [\"-formatEff\", \"-classic\"], \"chr\": \"\", \"csvStats\": \"true\", \"filter\": {\"specificEffects\": \"no\", \"__current_case__\": 0}, \"filterOut\": [\"-no-downstream\", \"-no-intergenic\", \"-no-upstream\", \"-no-utr\"], \"generate_stats\": \"true\", \"genome_version\": \"NC_045512.2\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"inputFormat\": \"vcf\", \"intervals\": {\"__class__\": \"RuntimeValue\"}, \"noLog\": \"true\", \"offset\": \"default\", \"outputConditional\": {\"outputFormat\": \"vcf\", \"__current_case__\": 0}, \"transcripts\": {\"__class__\": \"RuntimeValue\"}, \"udLength\": \"0\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.5covid19", + "type": "tool", + "uuid": "8fb55fb1-4986-45f5-bb6b-45c1329842b2", + "workflow_outputs": [ + { + "label": null, + "output_name": "snpeff_output", + "uuid": "d5bec60d-c853-4979-a191-e69f47539684" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "errors": null, + "id": 11, + "input_connections": { + "input": { + "id": 10, + "output_name": "snpeff_output" + } + }, + "inputs": [], + "label": null, + "name": "SnpSift Extract Fields", + "outputs": [ + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1486.0794982910156, + "top": 317.85511016845703 + }, + "post_job_actions": { + "RenameDatasetActionoutput": { + "action_arguments": { + "newname": "SnpSift tabular output" + }, + "action_type": "RenameDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "tool_shed_repository": { + "changeset_revision": "2b3e65a4252f", + "name": "snpsift", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"empty_text\": \".\", \"extract\": \"CHROM POS REF ALT QUAL DP AF SB DP4 EFF[*].IMPACT EFF[*].FUNCLASS EFF[*].EFFECT EFF[*].GENE EFF[*].CODON\", \"input\": {\"__class__\": \"ConnectedValue\"}, \"one_effect_per_line\": \"false\", \"separator\": \",\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+t.galaxy0", + "type": "tool", + "uuid": "33e13bce-928f-41d6-b418-bc0a9e53d83d", + "workflow_outputs": [ + { + "label": "SnpSift tabular output", + "output_name": "output", + "uuid": "06259137-eaa5-404a-923c-70ee5f1d89d4" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "results_0|software_cond|input": { + "id": 3, + "output_name": "report_json" + }, + "results_1|software_cond|output_0|type|input": { + "id": 7, + "output_name": "output" + }, + "results_2|software_cond|output_0|input": { + "id": 5, + "output_name": "metrics_file" + }, + "results_3|software_cond|input": { + "id": 10, + "output_name": "csvFile" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "plots", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1486.0794982910156, + "top": 397.8408889770508 + }, + "post_job_actions": { + "HideDatasetActionplots": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "plots" + }, + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "RenameDatasetActionhtml_report": { + "action_arguments": { + "newname": "MultiQC Report PE" + }, + "action_type": "RenameDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "tool_shed_repository": { + "changeset_revision": "bf675f34b056", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"flat\": \"false\", \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastp\", \"__current_case__\": 7, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"samtools\", \"__current_case__\": 23, \"output\": [{\"__index__\": 0, \"type\": {\"type\": \"stats\", \"__current_case__\": 0, \"input\": {\"__class__\": \"ConnectedValue\"}}}]}}, {\"__index__\": 2, \"software_cond\": {\"software\": \"picard\", \"__current_case__\": 17, \"output\": [{\"__index__\": 0, \"type\": \"markdups\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}, {\"__index__\": 3, \"software_cond\": {\"software\": \"snpeff\", \"__current_case__\": 25, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": \"false\", \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.8+galaxy0", + "type": "tool", + "uuid": "8c98527f-d1db-4cc4-89f1-1e75c508b8e9", + "workflow_outputs": [ + { + "label": "MultiQC Report PE", + "output_name": "html_report", + "uuid": "758ffde5-7ddd-482a-88b2-1504f8335488" + } + ] + } + ], + "parent_id": "variant-analysis/sars-cov-2", + "path": "topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": false, + "title": "Simple COVID-19 - PE Variation", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-sars-cov-2/versions/main-workflow", + "tutorial_id": "sars-cov-2", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/sars-cov-2/workflows/main_workflow.html", + "version": 1, + "wfid": "variant-analysis-sars-cov-2", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.1", + "toolshed.g2.bx.psu.edu/repos/devteam/picard/picard_MarkDuplicates/2.18.2.2", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.20.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_call/lofreq_call/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_indelqual/lofreq_indelqual/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/lofreq_viterbi/lofreq_viterbi/2.1.5+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff_sars_cov_2/snpeff_sars_cov_2/4.5covid19", + "toolshed.g2.bx.psu.edu/repos/iuc/snpsift/snpSift_extractFields/4.3+t.galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/sra_tools/fasterq_dump/2.10.7+galaxy1" + ], + "workflowhub_id": "1074" + } + ] + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "freebayes", + "owner": "devteam", + "revisions": "156b60c1530f", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "vcfallelicprimitives", + "owner": "devteam", + "revisions": "f49b23b41a12", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_db_info", + "owner": "iuc", + "revisions": "4c5f4e9b1931", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_load", + "owner": "iuc", + "revisions": "cf61daf064fe", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_query", + "owner": "iuc", + "revisions": "666f60a9331a", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff", + "owner": "iuc", + "revisions": "5c7b70713fb5", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff", + "owner": "iuc", + "revisions": "68693743661e", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: freebayes\n owner: devteam\n revisions: 156b60c1530f\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: vcfallelicprimitives\n owner: devteam\n revisions: f49b23b41a12\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_db_info\n owner: iuc\n revisions: 4c5f4e9b1931\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_load\n owner: iuc\n revisions: cf61daf064fe\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_query\n owner: iuc\n revisions: 666f60a9331a\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff\n owner: iuc\n revisions: 5c7b70713fb5\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff\n owner: iuc\n revisions: 68693743661e\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/dip/tutorial.json", + "contributors": [ + { + "email": "anton@nekrut.org", + "id": "nekrut", + "joined": "2017-09", + "name": "Anton Nekrutenko", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nekrut/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nekrut.json" + }, + { + "affiliations": [ + "earlham", + "elixir-europe" + ], + "elixir_node": "uk", + "fediverse": "https://mstdn.science/@nsoranzo", + "fediverse_flavor": "mastodon", + "id": "nsoranzo", + "joined": "2017-09", + "linkedin": "nicola-soranzo-7884125", + "matrix": "nsoranzo:matrix.org", + "name": "Nicola Soranzo", + "orcid": "0000-0003-3627-5340", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/nsoranzo/", + "twitter": "NicolaSoranzo", + "url": "https://training.galaxyproject.org/training-material/api/contributors/nsoranzo.json" + } + ], + "dir": "topics/variant-analysis/tutorials/dip", + "edam_operation": [ + "Variant calling", + "Sequence analysis", + "Genetic variation analysis", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/dip", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": 3591, + "mermaid": false + }, + "key_points": [ + "Variants versus Genotypes", + "Bayesian approach to variant calling", + "Freebayes calls variant using haplotype windows", + "SNPEff allows functional annotation of variants", + "Gemini is a flexible system for analyzing variation patterns" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-03-05", + "objectives": [ + "Identification of genetic variations using variant calling" + ], + "pageviews": 22267, + "pub_date": "2017-02-20", + "questions": [ + "How to find variable sites in diploid genomes?" + ], + "short_id": "T00309", + "short_tools": [ + "freebayes", + "gemini_db_info", + "gemini_load", + "gemini_query", + "snpEff_download", + "snpEff", + "vcfallelicprimitives" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "introduction", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "3h", + "title": "Calling variants in diploid systems", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.1.0.46-0", + "toolshed.g2.bx.psu.edu/repos/devteam/vcfallelicprimitives/vcfallelicprimitives/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_db_info/gemini_db_info/0.18.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.18.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_query/gemini_query/0.18.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff_download/4.3r.1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "dip", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/dip/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/dip/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/dip/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 193, + "visitors": 12375, + "workflows": [ + { + "creators": [], + "description": "Calling variants in diploid systems", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGIAB-Ashkenazim-Trio-hg19.bam\"]\n 1[label=\"SnpEff Download\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGIAB-Ashkenazim-Trio.tabular\"]\n 3[label=\"FreeBayes\"]\n 0 -> 3 [label=\"output\"]\n 4[label=\"VcfAllelicPrimitives:\"]\n 3 -> 4 [label=\"output_vcf\"]\n 5[label=\"SnpEff eff:\"]\n 4 -> 5 [label=\"out_file1\"]\n 1 -> 5 [label=\"snpeff_db\"]\n 6[label=\"GEMINI load\"]\n 5 -> 6 [label=\"snpeff_output\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"GEMINI_db_info\"]\n 6 -> 7 [label=\"outfile\"]\n 8[label=\"GEMINI_query2\"]\n 6 -> 8 [label=\"outfile\"]\n 9[label=\"GEMINI_query1\"]\n 6 -> 9 [label=\"outfile\"]\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 3, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "a294ecfbb57eb17046ebbb47ccb2c877f2c0cf85", + "message": "workflow for diploid", + "num": 1, + "short_hash": "a294ecfbb", + "unix": "1544185856" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GIAB-Ashkenazim-Trio-hg19.bam" + } + ], + "label": "GIAB-Ashkenazim-Trio-hg19.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 229, + "top": 204 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GIAB-Ashkenazim-Trio-hg19.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "5bbfca3e-68d7-4c87-8976-724ccaab2eb3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bc2eeefe-9c1e-4db8-bf4c-83ed024d67a0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GIAB-Ashkenazim-Trio.tabular" + } + ], + "label": "GIAB-Ashkenazim-Trio.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 289, + "top": 530 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GIAB-Ashkenazim-Trio.tabular\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4d40770f-b5f9-464b-b3e5-b99ae836fbf0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6f4a6fbd-e2a2-43dc-92ea-b99d4f32a20f" + } + ] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGIAB-Ashkenazim-Trio-hg19.bam\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"SnpEff Download\"];\n 2[\"\u2139\ufe0f Input Dataset\\nGIAB-Ashkenazim-Trio.tabular\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"FreeBayes\"];\n 0 -->|output| 3;\n 4[\"VcfAllelicPrimitives:\"];\n 3 -->|output_vcf| 4;\n 5[\"SnpEff eff:\"];\n 4 -->|out_file1| 5;\n 1 -->|snpeff_db| 5;\n 6[\"GEMINI load\"];\n 5 -->|snpeff_output| 6;\n 2 -->|output| 6;\n 7[\"GEMINI_db_info\"];\n 6 -->|outfile| 7;\n 8[\"GEMINI_query2\"];\n 6 -->|outfile| 8;\n 9[\"GEMINI_query1\"];\n 6 -->|outfile| 9;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Diploid", + "outputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GIAB-Ashkenazim-Trio-hg19.bam" + } + ], + "label": "GIAB-Ashkenazim-Trio-hg19.bam", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 229, + "top": 204 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GIAB-Ashkenazim-Trio-hg19.bam\"}", + "tool_version": null, + "type": "data_input", + "uuid": "5bbfca3e-68d7-4c87-8976-724ccaab2eb3", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "bc2eeefe-9c1e-4db8-bf4c-83ed024d67a0" + } + ] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "GIAB-Ashkenazim-Trio.tabular" + } + ], + "label": "GIAB-Ashkenazim-Trio.tabular", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 289, + "top": 530 + }, + "tool_id": null, + "tool_state": "{\"name\": \"GIAB-Ashkenazim-Trio.tabular\"}", + "tool_version": null, + "type": "data_input", + "uuid": "4d40770f-b5f9-464b-b3e5-b99ae836fbf0", + "workflow_outputs": [ + { + "label": null, + "output_name": "output", + "uuid": "6f4a6fbd-e2a2-43dc-92ea-b99d4f32a20f" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_db_info/gemini_db_info/0.18.1.0", + "errors": null, + "id": 7, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool GEMINI db_info", + "name": "infile" + } + ], + "label": "GEMINI_db_info", + "name": "GEMINI db_info", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 1559, + "top": 197 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_db_info/gemini_db_info/0.18.1.0", + "tool_shed_repository": { + "changeset_revision": "4c5f4e9b1931", + "name": "gemini_db_info", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"__rerun_remap_job_id__\": null, \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "0.18.1.0", + "type": "tool", + "uuid": "7f7f05f6-00b9-472b-8de9-044dc4feeb8c", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "7e61f96f-fc5a-436b-8433-dc78b10e5cea" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_query/gemini_query/0.18.1.0", + "errors": null, + "id": 8, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool GEMINI query", + "name": "infile" + } + ], + "label": "GEMINI_query2", + "name": "GEMINI query", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 1502, + "top": 478 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_query/gemini_query/0.18.1.0", + "tool_shed_repository": { + "changeset_revision": "5596c2dc4218", + "name": "gemini_query", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"show_families\": \"\\\"false\\\"\", \"min_kindreds\": \"\\\"1\\\"\", \"sample_filter\": \"\\\"\\\"\", \"show_samples\": \"\\\"false\\\"\", \"__page__\": null, \"region\": \"\\\"\\\"\", \"gt_filter\": \"\\\"\\\"\", \"family_wise\": \"\\\"false\\\"\", \"q\": \"\\\"SELECT rs_ids, aaf_esp_ea, impact, clinvar_disease_name, clinvar_sig FROM variants WHERE filter is NULL and gene = 'POLRMT'\\\"\", \"header\": \"\\\"false\\\"\", \"dgidb\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null, \"in\": \"\\\"all\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "0.18.1.0", + "type": "tool", + "uuid": "7e13bb42-cf27-4251-85bb-9f695d711127", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "2ff2734e-c1c6-448b-95eb-e3f47329bc65" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_query/gemini_query/0.18.1.0", + "errors": null, + "id": 9, + "input_connections": { + "infile": { + "id": 6, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool GEMINI query", + "name": "infile" + } + ], + "label": "GEMINI_query1", + "name": "GEMINI query", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 1598, + "top": 334 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_query/gemini_query/0.18.1.0", + "tool_shed_repository": { + "changeset_revision": "5596c2dc4218", + "name": "gemini_query", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"show_families\": \"\\\"false\\\"\", \"min_kindreds\": \"\\\"1\\\"\", \"sample_filter\": \"\\\"\\\"\", \"show_samples\": \"\\\"false\\\"\", \"__page__\": null, \"region\": \"\\\"\\\"\", \"gt_filter\": \"\\\"\\\"\", \"family_wise\": \"\\\"false\\\"\", \"q\": \"\\\"SELECT count(*) FROM variants WHERE in_dbsnp == 0\\\"\", \"header\": \"\\\"false\\\"\", \"dgidb\": \"\\\"false\\\"\", \"__rerun_remap_job_id__\": null, \"in\": \"\\\"all\\\"\", \"infile\": \"{\\\"__class__\\\": \\\"RuntimeValue\\\"}\"}", + "tool_version": "0.18.1.0", + "type": "tool", + "uuid": "00092a96-787b-444b-9b64-fe096588368b", + "workflow_outputs": [ + { + "label": null, + "output_name": "outfile", + "uuid": "2522c327-28ec-4e30-ac5f-cd751769e5ac" + } + ] + } + ], + "parent_id": "variant-analysis/dip", + "path": "topics/variant-analysis/tutorials/dip/workflows/diploid.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": false, + "title": "Diploid", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-dip/versions/diploid", + "tutorial_id": "dip", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dip/workflows/diploid.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/dip/workflows/diploid.html", + "version": 3, + "wfid": "variant-analysis-dip", + "wfname": "diploid", + "workflow": "diploid.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.1.0.46-0", + "toolshed.g2.bx.psu.edu/repos/devteam/vcfallelicprimitives/vcfallelicprimitives/0.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_db_info/gemini_db_info/0.18.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.18.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_query/gemini_query/0.18.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff_download/4.3r.1" + ], + "workflowhub_id": "1104" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.60520" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "freebayes", + "owner": "devteam", + "revisions": "a5937157062f", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_rmdup", + "owner": "devteam", + "revisions": "586f9e1cdb2b", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_norm", + "owner": "iuc", + "revisions": "1ca7418e46ee", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_inheritance", + "owner": "iuc", + "revisions": "2c68e29c3527", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "gemini_load", + "owner": "iuc", + "revisions": "2270a8b83c12", + "tool_panel_section_label": "Gemini", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "5826298f6a73", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff", + "owner": "iuc", + "revisions": "9473cd297a76", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff", + "owner": "iuc", + "revisions": "9473cd297a76", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "trimmomatic", + "owner": "pjbriggs", + "revisions": "d94aff5ee623", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: freebayes\n owner: devteam\n revisions: a5937157062f\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_rmdup\n owner: devteam\n revisions: 586f9e1cdb2b\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_norm\n owner: iuc\n revisions: 1ca7418e46ee\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_inheritance\n owner: iuc\n revisions: 2c68e29c3527\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: gemini_load\n owner: iuc\n revisions: 2270a8b83c12\n tool_panel_section_label: Gemini\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 5826298f6a73\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff\n owner: iuc\n revisions: 9473cd297a76\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff\n owner: iuc\n revisions: 9473cd297a76\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: trimmomatic\n owner: pjbriggs\n revisions: d94aff5ee623\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/exome-seq/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "torhou", + "joined": "2017-09", + "name": "Torsten Houwaart", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/torhou/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/torhou.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "email": "anikaerxleben@gmail.com", + "id": "erxleben", + "joined": "2017-09", + "name": "Anika Erxleben", + "orcid": "0000-0002-7427-6478", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/erxleben/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/erxleben.json" + }, + { + "affiliations": [ + "eurosciencegateway", + "eosc-life", + "by-covid", + "deNBI", + "sfb992", + "elixir-converge", + "uni-freiburg", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "de", + "email": "bjoern.gruening@gmail.com", + "fediverse": "https://fosstodon.org/@bgruening", + "fediverse_flavor": "mastodon", + "id": "bgruening", + "joined": "2017-09", + "linkedin": "bgruening", + "location": { + "country": "DE", + "lat": 47.997791, + "lon": 7.842609 + }, + "matrix": "bgruening:matrix.org", + "name": "Bj\u00f6rn Gr\u00fcning", + "orcid": "0000-0002-3079-6586", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bgruening/", + "twitter": "bjoerngruening", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bgruening.json" + } + ], + "dir": "topics/variant-analysis/tutorials/exome-seq", + "edam_operation": [ + "Sequencing quality control", + "Genetic variation analysis", + "Genome indexing", + "Sequence analysis", + "Sequence alignment", + "Sequence composition calculation", + "Read mapping", + "Generation", + "Validation", + "Variant calling", + "Statistical calculation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/exome-seq", + "inexact_supported_servers": [ + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Exome sequencing is an efficient way to identify disease-relevant genetic variants.", + "Freebayes is a good variant and genotype caller for the joint analysis of multiple samples. It is straightforward to use and requires only minimal processing of mapped reads.", + "Variant annotation and being able to exploit genotype information across family members is key to identifying candidate disease variants. SnpEff and GEMINI, in particular, are powerful tools offered by Galaxy for that purpose." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Jointly call variants and genotypes for a family trio from whole-exome sequencing data", + "Use variant annotation and the observed inheritance pattern of a phenotype to identify candidate causative variants and to prioritize them" + ], + "pageviews": 51237, + "pub_date": "2016-08-19", + "questions": [ + "How do you identify genetic variants in samples based on exome sequencing data?", + "How do you, among the set of detected variants, identify candidate causative variants for a given phenotype/disease?" + ], + "short_id": "T00311", + "short_tools": [ + "gemini_inheritance", + "freebayes", + "samtools_view", + "multiqc", + "gemini_load", + "bcftools_norm", + "trimmomatic", + "samtools_rmdup", + "fastqc", + "bwa_mem", + "snpEff_download", + "snpEff" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "human-genetics-cancer", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "5h", + "title": "Exome sequencing data analysis for diagnosing a genetic disease", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_rmdup/samtools_rmdup/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff_download/4.3+T.galaxy2", + "toolshed.g2.bx.psu.edu/repos/pjbriggs/trimmomatic/trimmomatic/0.38.1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "exome-seq", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/exome-seq/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/exome-seq/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/exome-seq/tutorial.json" + }, + "version": 27, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 169, + "visitors": 26338, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9464-6640", + "name": "Wolfgang Maier" + } + ], + "description": "Exome sequencing data analysis for diagnosing a genetic disease; short version starting from pre-mapped reads", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nFather data\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nMother data\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nProband data\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPEDigree data\"]\n 4[label=\"Samtools view\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"Samtools view\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"Samtools view\"]\n 2 -> 6 [label=\"output\"]\n 7[label=\"RmDup\"]\n 4 -> 7 [label=\"outputsam\"]\n 8[label=\"RmDup\"]\n 5 -> 8 [label=\"outputsam\"]\n 9[label=\"RmDup\"]\n 6 -> 9 [label=\"outputsam\"]\n 10[label=\"FreeBayes\"]\n 7 -> 10 [label=\"output1\"]\n 8 -> 10 [label=\"output1\"]\n 9 -> 10 [label=\"output1\"]\n 11[label=\"bcftools norm\"]\n 10 -> 11 [label=\"output_vcf\"]\n 12[label=\"SnpEff eff:\"]\n 11 -> 12 [label=\"output_file\"]\n k974b6b15ccf74fe88a712b3fe8b45272[color=lightseagreen,label=\"Output\\nsnpeff_variant_stats\"]\n 12 -> k974b6b15ccf74fe88a712b3fe8b45272\n k083b96865c6d495f92577243896e64d7[color=lightseagreen,label=\"Output\\nnormalized_snpeff_annotated_variants\"]\n 12 -> k083b96865c6d495f92577243896e64d7\n 13[label=\"GEMINI load\"]\n 12 -> 13 [label=\"snpeff_output\"]\n 3 -> 13 [label=\"output\"]\n 14[label=\"GEMINI inheritance pattern\"]\n 13 -> 14 [label=\"outfile\"]\n kc5a648223c68495eb2fd4642b1aabb5a[color=lightseagreen,label=\"Output\\ncandidate_mutations\"]\n 14 -> kc5a648223c68495eb2fd4642b1aabb5a\n}", + "history": [ + { + "hash": "75e124804665567e8824f5ca037f4a28a042c77a", + "message": "Update exome-seq tutorial/WFs to latest tool versions", + "num": 5, + "short_hash": "75e124804", + "unix": "1689608772" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "07bdd3beefb8b8ade2013e04ab7972ffd0ec4d3b", + "message": "Update variant analysis tutorials", + "num": 2, + "short_hash": "07bdd3bee", + "unix": "1569051907" + }, + { + "hash": "a2aa175b0f767f241f2196566953163b25415016", + "message": "Reworked exome-seq tutorial", + "num": 1, + "short_hash": "a2aa175b0", + "unix": "1560531548" + } + ], + "inputs": [ + { + "annotation": "Pre-mapped reads of the father sample", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "Pre-mapped reads of the father sample", + "name": "Father data" + } + ], + "label": "Father data", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 26.03807549941655 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "ee9857fa-d51b-4b8d-8238-4de8815a30f5", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Pre-mapped reads of the mother sample", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "Pre-mapped reads of the mother sample", + "name": "Mother data" + } + ], + "label": "Mother data", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3.538725142062958, + "top": 205.7781449834224 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0d2c49f5-fb2c-4782-ad6d-d57e4543bdf9", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Pre-mapped reads of the child/proband sample", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Pre-mapped reads of the child/proband sample", + "name": "Proband data" + } + ], + "label": "Proband data", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.719825926599924, + "top": 409.8589965353308 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "a9a4790f-33c7-4f67-b70c-94314f2fd0db", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Family tree with sex and phenotype information in PED format", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Family tree with sex and phenotype information in PED format", + "name": "PEDigree data" + } + ], + "label": "PEDigree data", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1192.4082127486454, + "top": 449.3970999038761 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "34af307d-3515-45f4-b898-8025066b9149", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nFather data\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nMother data\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nProband data\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nPEDigree data\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"Samtools view\"];\n 0 -->|output| 4;\n 5[\"Samtools view\"];\n 1 -->|output| 5;\n 6[\"Samtools view\"];\n 2 -->|output| 6;\n 7[\"RmDup\"];\n 4 -->|outputsam| 7;\n 8[\"RmDup\"];\n 5 -->|outputsam| 8;\n 9[\"RmDup\"];\n 6 -->|outputsam| 9;\n 10[\"FreeBayes\"];\n 7 -->|output1| 10;\n 8 -->|output1| 10;\n 9 -->|output1| 10;\n 11[\"bcftools norm\"];\n 10 -->|output_vcf| 11;\n 12[\"SnpEff eff:\"];\n 11 -->|output_file| 12;\n 974b6b15-ccf7-4fe8-8a71-2b3fe8b45272[\"Output\\nsnpeff_variant_stats\"];\n 12 --> 974b6b15-ccf7-4fe8-8a71-2b3fe8b45272;\n style 974b6b15-ccf7-4fe8-8a71-2b3fe8b45272 stroke:#2c3143,stroke-width:4px;\n 083b9686-5c6d-495f-9257-7243896e64d7[\"Output\\nnormalized_snpeff_annotated_variants\"];\n 12 --> 083b9686-5c6d-495f-9257-7243896e64d7;\n style 083b9686-5c6d-495f-9257-7243896e64d7 stroke:#2c3143,stroke-width:4px;\n 13[\"GEMINI load\"];\n 12 -->|snpeff_output| 13;\n 3 -->|output| 13;\n 14[\"GEMINI inheritance pattern\"];\n 13 -->|outfile| 14;\n c5a64822-3c68-495e-b2fd-4642b1aabb5a[\"Output\\ncandidate_mutations\"];\n 14 --> c5a64822-3c68-495e-b2fd-4642b1aabb5a;\n style c5a64822-3c68-495e-b2fd-4642b1aabb5a stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Exome Seq Training Pre-Mapped W Cached Ref", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy2", + "errors": null, + "id": 12, + "input_connections": { + "input": { + "id": 11, + "output_name": "output_file" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "intervals" + }, + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "transcripts" + } + ], + "label": null, + "name": "SnpEff eff:", + "outputs": [ + { + "name": "snpeff_output", + "type": "vcf" + }, + { + "name": "statsFile", + "type": "html" + } + ], + "position": { + "left": 1198.7489327784465, + "top": 78.31896712271123 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy2", + "tool_shed_repository": { + "changeset_revision": "5b80f544c67f", + "name": "snpeff", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotations\": null, \"chr\": \"\", \"csvStats\": false, \"filter\": {\"specificEffects\": \"no\", \"__current_case__\": 0}, \"filterOut\": null, \"generate_stats\": true, \"input\": {\"__class__\": \"ConnectedValue\"}, \"inputFormat\": \"vcf\", \"intervals\": {\"__class__\": \"RuntimeValue\"}, \"noLog\": true, \"offset\": \"default\", \"outputConditional\": {\"outputFormat\": \"vcf\", \"__current_case__\": 0}, \"snpDb\": {\"genomeSrc\": \"cached\", \"__current_case__\": 0, \"genomeVersion\": \"hg19\", \"reg_section\": {\"regulation\": null}}, \"spliceRegion\": {\"setSpliceRegions\": \"no\", \"__current_case__\": 0}, \"spliceSiteSize\": \"2\", \"transcripts\": {\"__class__\": \"RuntimeValue\"}, \"udLength\": \"5000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+T.galaxy2", + "type": "tool", + "uuid": "fcf4c091-e91d-4bc6-8a20-0e29d96a75bf", + "when": null, + "workflow_outputs": [ + { + "label": "snpeff_variant_stats", + "output_name": "statsFile", + "uuid": "974b6b15-ccf7-4fe8-8a71-2b3fe8b45272" + }, + { + "label": "normalized_snpeff_annotated_variants", + "output_name": "snpeff_output", + "uuid": "083b9686-5c6d-495f-9257-7243896e64d7" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "errors": null, + "id": 14, + "input_connections": { + "infile": { + "id": 13, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "GEMINI inheritance pattern", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 1666.0204670577175, + "top": 285.33148116578377 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "tool_shed_repository": { + "changeset_revision": "18d13111692b", + "name": "gemini_inheritance", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"family_wise\": {\"min_kindreds\": \"1\", \"families\": \"\", \"per_variant_selection\": {\"enabled\": \"no\", \"__current_case__\": 0, \"min_dp\": \"0\", \"min_gq\": \"0\", \"max_pl\": \"-1\"}}, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"inheritance\": {\"pattern_type\": \"autosomal_recessive\", \"__current_case__\": 2, \"constraint\": [{\"__index__\": 0, \"filter\": \"impact_severity != 'LOW'\"}], \"lenient\": false, \"allow_unaffected\": false}, \"oformat\": {\"report\": {\"report_selector\": \"custom\", \"__current_case__\": 2, \"columns\": [\"max_aaf_all\"], \"extra_cols\": \"chrom, start, ref, alt, impact, gene, clinvar_sig, clinvar_disease_name, clinvar_gene_phenotype, rs_ids\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.1", + "type": "tool", + "uuid": "b5f3f441-e57a-4e7c-8e5a-807c996ea54e", + "when": null, + "workflow_outputs": [ + { + "label": "candidate_mutations", + "output_name": "outfile", + "uuid": "c5a64822-3c68-495e-b2fd-4642b1aabb5a" + } + ] + } + ], + "parent_id": "variant-analysis/exome-seq", + "path": "topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_from_premapped.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "Exome Seq Training Pre-Mapped W Cached Ref", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-exome-seq/versions/workflow-exome-seq-from-premapped", + "tutorial_id": "exome-seq", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_from_premapped.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_from_premapped.html", + "version": 5, + "wfid": "variant-analysis-exome-seq", + "wfname": "workflow-exome-seq-from-premapped", + "workflow": "workflow_exome_seq_from_premapped.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_rmdup/samtools_rmdup/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy2" + ], + "workflowhub_id": "1108" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0002-9464-6640", + "name": "Wolfgang Maier" + } + ], + "description": "Exome sequencing data analysis for diagnosing a genetic disease", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nfather_R1\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nfather_R2\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmother_R1\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nmother_R2\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nproband_R1\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nproband_R2\"]\n 6[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nPEDigree data\"]\n 7[label=\"FastQC\"]\n 0 -> 7 [label=\"output\"]\n 8[label=\"FastQC\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"Map with BWA-MEM\"]\n 0 -> 9 [label=\"output\"]\n 1 -> 9 [label=\"output\"]\n 10[label=\"FastQC\"]\n 2 -> 10 [label=\"output\"]\n 11[label=\"FastQC\"]\n 3 -> 11 [label=\"output\"]\n 12[label=\"Map with BWA-MEM\"]\n 2 -> 12 [label=\"output\"]\n 3 -> 12 [label=\"output\"]\n 13[label=\"FastQC\"]\n 4 -> 13 [label=\"output\"]\n 14[label=\"FastQC\"]\n 5 -> 14 [label=\"output\"]\n 15[label=\"Map with BWA-MEM\"]\n 4 -> 15 [label=\"output\"]\n 5 -> 15 [label=\"output\"]\n 16[label=\"Samtools view\"]\n 9 -> 16 [label=\"bam_output\"]\n 17[label=\"Samtools view\"]\n 12 -> 17 [label=\"bam_output\"]\n 18[label=\"MultiQC\"]\n 7 -> 18 [label=\"text_file\"]\n 8 -> 18 [label=\"text_file\"]\n 10 -> 18 [label=\"text_file\"]\n 11 -> 18 [label=\"text_file\"]\n 13 -> 18 [label=\"text_file\"]\n 14 -> 18 [label=\"text_file\"]\n kde867748890a454cbaf36a9313269975[color=lightseagreen,label=\"Output\\nmultiqc_input_data\"]\n 18 -> kde867748890a454cbaf36a9313269975\n 19[label=\"Samtools view\"]\n 15 -> 19 [label=\"bam_output\"]\n 20[label=\"RmDup\"]\n 16 -> 20 [label=\"outputsam\"]\n 21[label=\"RmDup\"]\n 17 -> 21 [label=\"outputsam\"]\n 22[label=\"RmDup\"]\n 19 -> 22 [label=\"outputsam\"]\n 23[label=\"FreeBayes\"]\n 20 -> 23 [label=\"output1\"]\n 21 -> 23 [label=\"output1\"]\n 22 -> 23 [label=\"output1\"]\n 24[label=\"bcftools norm\"]\n 23 -> 24 [label=\"output_vcf\"]\n 25[label=\"SnpEff eff:\"]\n 24 -> 25 [label=\"output_file\"]\n k4aab588440994e41a82dc4e1ff19609f[color=lightseagreen,label=\"Output\\nsnpeff_variant_stats\"]\n 25 -> k4aab588440994e41a82dc4e1ff19609f\n ke5a2fbc7acdd4782822a91568cb8d5b8[color=lightseagreen,label=\"Output\\nnormalized_snpeff_annotated_variants\"]\n 25 -> ke5a2fbc7acdd4782822a91568cb8d5b8\n 26[label=\"GEMINI load\"]\n 25 -> 26 [label=\"snpeff_output\"]\n 6 -> 26 [label=\"output\"]\n 27[label=\"GEMINI inheritance pattern\"]\n 26 -> 27 [label=\"outfile\"]\n k07bd4bbae7d948a8b8125dc2b07712bd[color=lightseagreen,label=\"Output\\ncandidate_mutations\"]\n 27 -> k07bd4bbae7d948a8b8125dc2b07712bd\n}", + "history": [ + { + "hash": "75e124804665567e8824f5ca037f4a28a042c77a", + "message": "Update exome-seq tutorial/WFs to latest tool versions", + "num": 5, + "short_hash": "75e124804", + "unix": "1689608772" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "07bdd3beefb8b8ade2013e04ab7972ffd0ec4d3b", + "message": "Update variant analysis tutorials", + "num": 2, + "short_hash": "07bdd3bee", + "unix": "1569051907" + }, + { + "hash": "a2aa175b0f767f241f2196566953163b25415016", + "message": "Reworked exome-seq tutorial", + "num": 1, + "short_hash": "a2aa175b0", + "unix": "1560531548" + } + ], + "inputs": [ + { + "annotation": "forward reads of the father sample", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "forward reads of the father sample", + "name": "father_R1" + } + ], + "label": "father_R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.1777448249132547, + "top": 723.7032124199818 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7e8d3069-39ef-4f4f-8721-40018121e84f", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "reverse reads of the father sample", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "reverse reads of the father sample", + "name": "father_R2" + } + ], + "label": "father_R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 803.2840091375243 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "5cec5d52-6afe-4f28-812a-da04da8eee27", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "forward reads of the mother sample", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "forward reads of the mother sample", + "name": "mother_R1" + } + ], + "label": "mother_R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 4.587278934034025, + "top": 915.311607330632 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "3df84923-4a73-4adb-8656-823fe6a54bc8", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "reverse reads of the mother sample", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "reverse reads of the mother sample", + "name": "mother_R2" + } + ], + "label": "mother_R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.6231150345668155, + "top": 999.8691680069204 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0b84ff85-cf80-4c75-8f94-70a4ae5c7b62", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "forward reads of the child/proband sample", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "forward reads of the child/proband sample", + "name": "proband_R1" + } + ], + "label": "proband_R1", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 6.399993896484375, + "top": 1085.474998474121 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d085976e-0b16-4fc4-8cc1-d22d13276e95", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "reverse reads of the child/proband sample", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "reverse reads of the child/proband sample", + "name": "proband_R2" + } + ], + "label": "proband_R2", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 3.391101287840783, + "top": 1193.4037194011914 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "e4b41228-d950-4b21-8293-76c80c54e1a8", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Family tree with sex and phenotype information in PED format", + "content_id": null, + "errors": null, + "id": 6, + "input_connections": {}, + "inputs": [ + { + "description": "Family tree with sex and phenotype information in PED format", + "name": "PEDigree data" + } + ], + "label": "PEDigree data", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1563.338553416431, + "top": 1198.4751636451388 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "35c029e1-1165-4895-a6be-495d138d1e37", + "when": null, + "workflow_outputs": [] + } + ], + "license": "MIT", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nfather_R1\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nfather_R2\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nmother_R1\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nmother_R2\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nproband_R1\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nproband_R2\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"\u2139\ufe0f Input Dataset\\nPEDigree data\"];\n style 6 stroke:#2c3143,stroke-width:4px;\n 7[\"FastQC\"];\n 0 -->|output| 7;\n 8[\"FastQC\"];\n 1 -->|output| 8;\n 9[\"Map with BWA-MEM\"];\n 0 -->|output| 9;\n 1 -->|output| 9;\n 10[\"FastQC\"];\n 2 -->|output| 10;\n 11[\"FastQC\"];\n 3 -->|output| 11;\n 12[\"Map with BWA-MEM\"];\n 2 -->|output| 12;\n 3 -->|output| 12;\n 13[\"FastQC\"];\n 4 -->|output| 13;\n 14[\"FastQC\"];\n 5 -->|output| 14;\n 15[\"Map with BWA-MEM\"];\n 4 -->|output| 15;\n 5 -->|output| 15;\n 16[\"Samtools view\"];\n 9 -->|bam_output| 16;\n 17[\"Samtools view\"];\n 12 -->|bam_output| 17;\n 18[\"MultiQC\"];\n 7 -->|text_file| 18;\n 8 -->|text_file| 18;\n 10 -->|text_file| 18;\n 11 -->|text_file| 18;\n 13 -->|text_file| 18;\n 14 -->|text_file| 18;\n de867748-890a-454c-baf3-6a9313269975[\"Output\\nmultiqc_input_data\"];\n 18 --> de867748-890a-454c-baf3-6a9313269975;\n style de867748-890a-454c-baf3-6a9313269975 stroke:#2c3143,stroke-width:4px;\n 19[\"Samtools view\"];\n 15 -->|bam_output| 19;\n 20[\"RmDup\"];\n 16 -->|outputsam| 20;\n 21[\"RmDup\"];\n 17 -->|outputsam| 21;\n 22[\"RmDup\"];\n 19 -->|outputsam| 22;\n 23[\"FreeBayes\"];\n 20 -->|output1| 23;\n 21 -->|output1| 23;\n 22 -->|output1| 23;\n 24[\"bcftools norm\"];\n 23 -->|output_vcf| 24;\n 25[\"SnpEff eff:\"];\n 24 -->|output_file| 25;\n 4aab5884-4099-4e41-a82d-c4e1ff19609f[\"Output\\nsnpeff_variant_stats\"];\n 25 --> 4aab5884-4099-4e41-a82d-c4e1ff19609f;\n style 4aab5884-4099-4e41-a82d-c4e1ff19609f stroke:#2c3143,stroke-width:4px;\n e5a2fbc7-acdd-4782-822a-91568cb8d5b8[\"Output\\nnormalized_snpeff_annotated_variants\"];\n 25 --> e5a2fbc7-acdd-4782-822a-91568cb8d5b8;\n style e5a2fbc7-acdd-4782-822a-91568cb8d5b8 stroke:#2c3143,stroke-width:4px;\n 26[\"GEMINI load\"];\n 25 -->|snpeff_output| 26;\n 6 -->|output| 26;\n 27[\"GEMINI inheritance pattern\"];\n 26 -->|outfile| 27;\n 07bd4bba-e7d9-48a8-b812-5dc2b07712bd[\"Output\\ncandidate_mutations\"];\n 27 --> 07bd4bba-e7d9-48a8-b812-5dc2b07712bd;\n style 07bd4bba-e7d9-48a8-b812-5dc2b07712bd stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Exome Seq Training Full W Cached Ref", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 18, + "input_connections": { + "results_0|software_cond|output_0|input": { + "id": 7, + "output_name": "text_file" + }, + "results_0|software_cond|output_1|input": { + "id": 8, + "output_name": "text_file" + }, + "results_0|software_cond|output_2|input": { + "id": 10, + "output_name": "text_file" + }, + "results_0|software_cond|output_3|input": { + "id": 11, + "output_name": "text_file" + }, + "results_0|software_cond|output_4|input": { + "id": 13, + "output_name": "text_file" + }, + "results_0|software_cond|output_5|input": { + "id": 14, + "output_name": "text_file" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 615.375, + "top": 0.0 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastqc\", \"__current_case__\": 8, \"output\": [{\"__index__\": 0, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 1, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 2, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 3, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 4, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}, {\"__index__\": 5, \"type\": \"data\", \"input\": {\"__class__\": \"ConnectedValue\"}}]}}], \"saveLog\": false, \"title\": \"Input reads quality control\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "13fa97d1-a167-4137-a68c-f066b50908b2", + "when": null, + "workflow_outputs": [ + { + "label": "multiqc_input_data", + "output_name": "html_report", + "uuid": "de867748-890a-454c-baf3-6a9313269975" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy2", + "errors": null, + "id": 25, + "input_connections": { + "input": { + "id": 24, + "output_name": "output_file" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "intervals" + }, + { + "description": "runtime parameter for tool SnpEff eff:", + "name": "transcripts" + } + ], + "label": null, + "name": "SnpEff eff:", + "outputs": [ + { + "name": "snpeff_output", + "type": "vcf" + }, + { + "name": "statsFile", + "type": "html" + } + ], + "position": { + "left": 1569.6792734462322, + "top": 827.3970308639739 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy2", + "tool_shed_repository": { + "changeset_revision": "5b80f544c67f", + "name": "snpeff", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"annotations\": null, \"chr\": \"\", \"csvStats\": false, \"filter\": {\"specificEffects\": \"no\", \"__current_case__\": 0}, \"filterOut\": null, \"generate_stats\": true, \"input\": {\"__class__\": \"ConnectedValue\"}, \"inputFormat\": \"vcf\", \"intervals\": {\"__class__\": \"RuntimeValue\"}, \"noLog\": true, \"offset\": \"default\", \"outputConditional\": {\"outputFormat\": \"vcf\", \"__current_case__\": 0}, \"snpDb\": {\"genomeSrc\": \"cached\", \"__current_case__\": 0, \"genomeVersion\": \"hg19\", \"reg_section\": {\"regulation\": null}}, \"spliceRegion\": {\"setSpliceRegions\": \"no\", \"__current_case__\": 0}, \"spliceSiteSize\": \"2\", \"transcripts\": {\"__class__\": \"RuntimeValue\"}, \"udLength\": \"5000\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "4.3+T.galaxy2", + "type": "tool", + "uuid": "02ce6c03-7a90-46c2-8d38-3fce5366eaab", + "when": null, + "workflow_outputs": [ + { + "label": "snpeff_variant_stats", + "output_name": "statsFile", + "uuid": "4aab5884-4099-4e41-a82d-c4e1ff19609f" + }, + { + "label": "normalized_snpeff_annotated_variants", + "output_name": "snpeff_output", + "uuid": "e5a2fbc7-acdd-4782-822a-91568cb8d5b8" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "errors": null, + "id": 27, + "input_connections": { + "infile": { + "id": 26, + "output_name": "outfile" + } + }, + "inputs": [], + "label": null, + "name": "GEMINI inheritance pattern", + "outputs": [ + { + "name": "outfile", + "type": "tabular" + } + ], + "position": { + "left": 2036.9508077255032, + "top": 1034.4095449070464 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "tool_shed_repository": { + "changeset_revision": "18d13111692b", + "name": "gemini_inheritance", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"chromInfo\": \"/opt/galaxy/tool-data/shared/ucsc/chrom/hg19.len\", \"family_wise\": {\"min_kindreds\": \"1\", \"families\": \"\", \"per_variant_selection\": {\"enabled\": \"no\", \"__current_case__\": 0, \"min_dp\": \"0\", \"min_gq\": \"0\", \"max_pl\": \"-1\"}}, \"infile\": {\"__class__\": \"ConnectedValue\"}, \"inheritance\": {\"pattern_type\": \"autosomal_recessive\", \"__current_case__\": 2, \"constraint\": [{\"__index__\": 0, \"filter\": \"impact_severity != 'LOW'\"}], \"lenient\": false, \"allow_unaffected\": false}, \"oformat\": {\"report\": {\"report_selector\": \"custom\", \"__current_case__\": 2, \"columns\": [\"max_aaf_all\"], \"extra_cols\": \"chrom, start, ref, alt, impact, gene, clinvar_sig, clinvar_disease_name, clinvar_gene_phenotype, rs_ids\"}}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.20.1", + "type": "tool", + "uuid": "eecc879f-93bc-4513-840e-b56704e5ed77", + "when": null, + "workflow_outputs": [ + { + "label": "candidate_mutations", + "output_name": "outfile", + "uuid": "07bd4bba-e7d9-48a8-b812-5dc2b07712bd" + } + ] + } + ], + "parent_id": "variant-analysis/exome-seq", + "path": "topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_full.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "Exome Seq Training Full W Cached Ref", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-exome-seq/versions/workflow-exome-seq-full", + "tutorial_id": "exome-seq", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_full.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/exome-seq/workflows/workflow_exome_seq_full.html", + "version": 5, + "wfid": "variant-analysis-exome-seq", + "wfname": "workflow-exome-seq-full", + "workflow": "workflow_exome_seq_full.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/freebayes/freebayes/1.3.6+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_rmdup/samtools_rmdup/2.0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_norm/bcftools_norm/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_inheritance/gemini_inheritance/0.20.1", + "toolshed.g2.bx.psu.edu/repos/iuc/gemini_load/gemini_load/0.20.1+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.3+T.galaxy2" + ], + "workflowhub_id": "1114" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.3054169" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "fbf99087e067", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "emboss_5", + "owner": "devteam", + "revisions": "63dd26468588", + "tool_panel_section_label": "EMBOSS", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "3d0c7bdf12f5", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastqc", + "owner": "devteam", + "revisions": "5ec9f6bceaee", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_stats", + "owner": "devteam", + "revisions": "fed4aa48ba09", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bcftools_consensus", + "owner": "iuc", + "revisions": "1171446da5db", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "c59d48774d03", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "a6e57ff585c0", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "jvarkit_wgscoverageplotter", + "owner": "iuc", + "revisions": "ac048a34cac3", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "kraken2", + "owner": "iuc", + "revisions": "20e2f64aa1fe", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mosdepth", + "owner": "iuc", + "revisions": "5854d0da92b4", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "multiqc", + "owner": "iuc", + "revisions": "abfd8a6544d7", + "tool_panel_section_label": "Quality Control", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qualimap_bamqc", + "owner": "iuc", + "revisions": "4a89c6f84425", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snippy", + "owner": "iuc", + "revisions": "d220115f882b", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tb_variant_filter", + "owner": "iuc", + "revisions": "32f14a2723ec", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbprofiler", + "owner": "iuc", + "revisions": "4839e590cb26", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbvcfreport", + "owner": "iuc", + "revisions": "42818629ec4c", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "tbvcfreport", + "owner": "iuc", + "revisions": "9793bc5d741b", + "tool_panel_section_label": "Annotation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: text_processing\n owner: bgruening\n revisions: fbf99087e067\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: emboss_5\n owner: devteam\n revisions: 63dd26468588\n tool_panel_section_label: EMBOSS\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 3d0c7bdf12f5\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastqc\n owner: devteam\n revisions: 5ec9f6bceaee\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_stats\n owner: devteam\n revisions: fed4aa48ba09\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bcftools_consensus\n owner: iuc\n revisions: 1171446da5db\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: c59d48774d03\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jbrowse\n owner: iuc\n revisions: a6e57ff585c0\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: jvarkit_wgscoverageplotter\n owner: iuc\n revisions: ac048a34cac3\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: kraken2\n owner: iuc\n revisions: 20e2f64aa1fe\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mosdepth\n owner: iuc\n revisions: 5854d0da92b4\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: multiqc\n owner: iuc\n revisions: abfd8a6544d7\n tool_panel_section_label: Quality Control\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qualimap_bamqc\n owner: iuc\n revisions: 4a89c6f84425\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snippy\n owner: iuc\n revisions: d220115f882b\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tb_variant_filter\n owner: iuc\n revisions: 32f14a2723ec\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbprofiler\n owner: iuc\n revisions: 4839e590cb26\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbvcfreport\n owner: iuc\n revisions: 42818629ec4c\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: tbvcfreport\n owner: iuc\n revisions: 9793bc5d741b\n tool_panel_section_label: Annotation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.json", + "contributors": [ + { + "bio": "Research at the South African National Bioinformatics Institute", + "id": "pvanheus", + "joined": "2017-09", + "name": "Peter van Heusden", + "orcid": "0000-0001-6553-5274", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/pvanheus/", + "twitter": "pvanheus", + "url": "https://training.galaxyproject.org/training-material/api/contributors/pvanheus.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "id": "thobalose", + "joined": "2019-11", + "name": "Thoba Lose", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/thobalose/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/thobalose.json" + } + ], + "dir": "topics/variant-analysis/tutorials/tb-variant-analysis", + "edam_ontology": [ + "topic_0622", + "topic_3301", + "topic_0196", + "topic_0199", + "topic_3305", + "topic_3324" + ], + "edam_operation": [ + "Global alignment", + "Sequencing quality control", + "Sequence contamination filtering", + "Sequence alignment", + "Sequence analysis", + "Sequence composition calculation", + "Sequence alignment analysis", + "Taxonomic classification", + "Phylogenetic tree generation", + "Variant calling", + "Local alignment", + "Phylogenetic tree visualisation", + "Validation", + "Genome visualisation", + "Statistical calculation", + "Antimicrobial resistance prediction" + ], + "edam_topic": [ + "Genomics", + "Microbiology", + "Sequence assembly", + "Genetic variation", + "Public health and epidemiology", + "Infectious disease" + ], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/tb-variant-analysis", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "variants in _M. tuberculosis_ sequencing data can be discovered using common microbial bioinformatics tools", + "it is not enough to just call variants, variant calling involves multiple quality control steps", + "the choice of reference genome and some quality control procedures are species-specific, and require knowledge of the organism in question", + "batches of samples can be processed using Galaxy dataset collections and workflows" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-07-26", + "objectives": [ + "How should we filter those variants", + "How can we predict drug resistance from those variants", + "How do we annotate those variants" + ], + "pageviews": 8997, + "pub_date": "2020-07-25", + "questions": [ + "How do we detect differences between a set of reads from _M. tuberculosis_ (Mtb) and the Mtb reference genome" + ], + "recordings": [ + { + "captioners": [ + "pvanheus", + "nagoue", + "hexylena" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "40M", + "speakers": [ + "pvanheus" + ], + "youtube_id": "G1DmquX6Wh8" + }, + { + "captioners": [ + "pvanheus" + ], + "date": "2024-06-11", + "galaxy_version": "24.0", + "length": "1H17M", + "speakers": [ + "pvanheus" + ], + "youtube_id": "-nJPngFk36c" + } + ], + "short_id": "T00319", + "short_tools": [ + "tp_awk_tool", + "kraken2", + "bcftools_consensus", + "mosdepth", + "EMBOSS: seqret84", + "tb_profiler_profile", + "qualimap_bamqc", + "samtools_stats", + "tb_variant_filter", + "tp_sed_tool", + "EMBOSS:%20seqret84", + "upload1", + "tbvcfreport", + "fastp", + "jbrowse", + "multiqc", + "jvarkit_wgscoverageplotter", + "snippy", + "fastqc", + "__FLATTEN__" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [], + "inexact": [] + }, + "symlink": null, + "tags": [ + "prokaryote", + "one-health", + "microgalaxy", + "tuberculosis" + ], + "time_estimation": "2h", + "title": "M. tuberculosis Variant Analysis", + "tools": [ + "__FLATTEN__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/1.1.1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: seqret84/5.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS:%20seqret84/5.0.0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.73+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/fastqc/fastqc/0.74+galaxy0", + "toolshed.g2.bx.psu.edu/repos/devteam/samtools_stats/samtools_stats/2.0.5", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/jvarkit_wgscoverageplotter/jvarkit_wgscoverageplotter/20201223+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/mosdepth/mosdepth/0.3.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2c+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.1+galaxy0", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "tb-variant-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.json" + }, + "version": 30, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 177, + "visitors": 5641, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-6553-5274", + "name": "Peter van Heusden" + } + ], + "description": "Predict variants and drug resistance from M. tuberculosis sequence samples (Illumina)", + "features": { + "comments": false, + "parameters": true, + "report": { + "markdown": "\n# Workflow Execution Report\n\n## Workflow Inputs\n```galaxy\ninvocation_inputs()\n```\n\n## Workflow Outputs\n```galaxy\ninvocation_outputs()\n```\n\n## Workflow\n```galaxy\nworkflow_display()\n```\n" + }, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Collection\\nReads\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nReference Genome\"]\n 2[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMinimum depth of coverage\"]\n 3[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nMinimum variant allele frequency\"]\n 4[color=lightgreen,label=\"\u2139\ufe0f Input Parameter\\nAdditional BWA-MEM options\"]\n 5[label=\"fastp\"]\n 0 -> 5 [label=\"output\"]\n 6[label=\"seqret\"]\n 1 -> 6 [label=\"output\"]\n 7[label=\"snippy\"]\n 4 -> 7 [label=\"output\"]\n 2 -> 7 [label=\"output\"]\n 3 -> 7 [label=\"output\"]\n 5 -> 7 [label=\"output_paired_coll\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"Kraken2\"]\n 5 -> 8 [label=\"output_paired_coll\"]\n kc7abf2bfed4c433ea6959eca61282bb5[color=lightseagreen,label=\"Output\\nreport_output\"]\n 8 -> kc7abf2bfed4c433ea6959eca61282bb5\n k083a0e5177804c91a071dc0e4641d060[color=lightseagreen,label=\"Output\\noutput\"]\n 8 -> k083a0e5177804c91a071dc0e4641d060\n 9[label=\"QualiMap BamQC\"]\n 7 -> 9 [label=\"snpsbam\"]\n 10[label=\"mosdepth\"]\n 2 -> 10 [label=\"output\"]\n 7 -> 10 [label=\"snpsbam\"]\n 11[label=\"TB Variant Filter\"]\n 7 -> 11 [label=\"snpvcf\"]\n 12[label=\"TB-Profiler Profile\"]\n 7 -> 12 [label=\"snpsbam\"]\n k335635b4a4de4980ad0268f0035daeaa[color=lightseagreen,label=\"Output\\noutput_txt\"]\n 12 -> k335635b4a4de4980ad0268f0035daeaa\n 13[label=\"TB Variant Filter\"]\n 7 -> 13 [label=\"snpvcf\"]\n 14[label=\"Flatten collection\"]\n 9 -> 14 [label=\"raw_data\"]\n 15[label=\"Text reformatting\"]\n 10 -> 15 [label=\"output_quantized_bed\"]\n 16[label=\"Text transformation\"]\n 11 -> 16 [label=\"output1\"]\n k007df8c2bd13495f8904abf31d4594d0[color=lightseagreen,label=\"Output\\nFinal annotated VCF\"]\n 16 -> k007df8c2bd13495f8904abf31d4594d0\n 17[label=\"MultiQC\"]\n 5 -> 17 [label=\"report_json\"]\n 14 -> 17 [label=\"output\"]\n k5952823575254ef9881036f1ed0f01f6[color=lightseagreen,label=\"Output\\nhtml_report\"]\n 17 -> k5952823575254ef9881036f1ed0f01f6\n 18[label=\"bcftools consensus\"]\n 13 -> 18 [label=\"output1\"]\n 6 -> 18 [label=\"out_file1\"]\n 15 -> 18 [label=\"outfile\"]\n kc71b135d35f944d0a20ef25528e518af[color=lightseagreen,label=\"Output\\nconsensus_genome\"]\n 18 -> kc71b135d35f944d0a20ef25528e518af\n 19[label=\"TB Variant Report\"]\n 16 -> 19 [label=\"output\"]\n 12 -> 19 [label=\"results_json\"]\n k959528d2f8f2444099cf44fddd6c5069[color=lightseagreen,label=\"Output\\ndrug_resistance_report_html\"]\n 19 -> k959528d2f8f2444099cf44fddd6c5069\n k4d9636eb075b4fd2a1e41a7c37a17fc0[color=lightseagreen,label=\"Output\\nvariants_report_html\"]\n 19 -> k4d9636eb075b4fd2a1e41a7c37a17fc0\n}", + "history": [ + { + "hash": "c0042e7f333bb9758580a564dbf559e83396a6d3", + "message": "Update to address comments from wm", + "num": 14, + "short_hash": "c0042e7f3", + "unix": "1718025591" + }, + { + "hash": "01cf3d5e27fb411603014ca3e0729b2daacc0a0d", + "message": "Add snippers for running workflow from workflowhub.eu and jbrowse vis", + "num": 13, + "short_hash": "01cf3d5e2", + "unix": "1717788409" + }, + { + "hash": "d3db4cd3e349677c907c71a761fde1b2935928d2", + "message": "Update the M. tuberculosis variant analysis tutorial * Update all tools to latest versions * Change to fastp instead of Trimmomatic * Add section on running workflow * Update workflow and workflow test", + "num": 12, + "short_hash": "d3db4cd3e", + "unix": "1717771237" + }, + { + "hash": "d61d5645fa6b21c25cd5d09f540c4e584b35f2c2", + "message": "Update tb_variant_filter to v. 0.4.0", + "num": 11, + "short_hash": "d61d5645f", + "unix": "1695643686" + }, + { + "hash": "c89f11fe32c66c1da9f058ec3fa522e8b18cba82", + "message": "Update some tools in tuberculosis variant analysis tutorial (#4070)", + "num": 10, + "short_hash": "c89f11fe3", + "unix": "1682624753" + }, + { + "hash": "fa9e9fb000ef9d2ab91acc67c4f338c213d641e2", + "message": "New variant of tb_variant_filter and tbprofiler, more detail on tb_variant_filter", + "num": 9, + "short_hash": "fa9e9fb00", + "unix": "1672566129" + }, + { + "hash": "6e9c1860b186754249a0a90d9957dbace653e9ac", + "message": "Restore workflow indentation and fix WF step order", + "num": 8, + "short_hash": "6e9c1860b", + "unix": "1648048765" + }, + { + "hash": "354e9edf1340c37133b7d1834cea608895acebc0", + "message": "Use correct snippy wrapper version everywhere", + "num": 7, + "short_hash": "354e9edf1", + "unix": "1648028595" + }, + { + "hash": "6f476a03271eeabffcf0877e8a402f7af815deba", + "message": "Update snippy to 4.6.0", + "num": 6, + "short_hash": "6f476a032", + "unix": "1647976648" + }, + { + "hash": "946f6f60f8e068a147f03d89f369f19e552793da", + "message": "Generate cleaner intermediate diff", + "num": 5, + "short_hash": "946f6f60f", + "unix": "1647938051" + }, + { + "hash": "8e46a42b5a664cf72ea7e2aae61739348f64dfea", + "message": "Autoupdate workflow, change Kraken2 test", + "num": 4, + "short_hash": "8e46a42b5", + "unix": "1647929062" + }, + { + "hash": "f98407ff47fe6ea903372a39b09530ae075d65b3", + "message": "tb-variant-analysis: label workflow outputs and add test", + "num": 3, + "short_hash": "f98407ff4", + "unix": "1595713523" + }, + { + "hash": "392830f9b51662e8028b8984f48f827be8a10aed", + "message": "Reformat tb-variant-analysis workflow", + "num": 2, + "short_hash": "392830f9b", + "unix": "1595707349" + }, + { + "hash": "2e73bb7aa538d3fb94e7f7ca21bfc6078d35e73f", + "message": "Update M. tuberculosis variant analysis tutorial with new data and workflow", + "num": 1, + "short_hash": "2e73bb7aa", + "unix": "1595705571" + } + ], + "inputs": [ + { + "annotation": "List of paired Illumina reads (set format to fastqsanger or fastqsanger.gz as appropriate)", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "List of paired Illumina reads (set format to fastqsanger or fastqsanger.gz as appropriate)", + "name": "Reads" + } + ], + "label": "Reads", + "name": "Input dataset collection", + "outputs": [], + "position": { + "left": 0, + "top": 197.65334499942068 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null, \"collection_type\": \"list:paired\"}", + "tool_version": null, + "type": "data_collection_input", + "uuid": "2bfdfb62-da85-4d2d-8609-8f5e6975b4b3", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "M. tuberculosis reference genome (must be in H37Rv coordinates. The M. tuberculosis inferred ancestral genome is recommended)", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "M. tuberculosis reference genome (must be in H37Rv coordinates. The M. tuberculosis inferred ancestral genome is recommended)", + "name": "Reference Genome" + } + ], + "label": "Reference Genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 1.2375059369900399, + "top": 468.60335731890825 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"genbank\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "023233a0-8cb1-4558-8861-cd246ab58bac", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Minimum depth of coverage for a position on the genome", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "Minimum depth of coverage for a position on the genome", + "name": "Minimum depth of coverage" + } + ], + "label": "Minimum depth of coverage", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 1.8793911063654463, + "top": 625.941216238093 + }, + "tool_id": null, + "tool_state": "{\"default\": 10, \"parameter_type\": \"integer\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "e31bf396-08b6-43ce-872a-545a5e4580c6", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Minimum proportion of reads that must support a variant for it to be called", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "Minimum proportion of reads that must support a variant for it to be called", + "name": "Minimum variant allele frequency" + } + ], + "label": "Minimum variant allele frequency", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 1.358958473709409, + "top": 769.7667492120408 + }, + "tool_id": null, + "tool_state": "{\"default\": 0.9, \"parameter_type\": \"float\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "d1814962-a30d-463a-a081-857a5141385b", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "Increasing the minimum seed length (-k) parameter can help eliminate matches from contaminants. If used this should be set to 2/3rds of the read length, i.e. the string \"-k 100\" should be used for 150 base pair reads", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "Increasing the minimum seed length (-k) parameter can help eliminate matches from contaminants. If used this should be set to 2/3rds of the read length, i.e. the string \"-k 100\" should be used for 150 base pair reads", + "name": "Additional BWA-MEM options" + } + ], + "label": "Additional BWA-MEM options", + "name": "Input parameter", + "outputs": [], + "position": { + "left": 7.8094297093662135, + "top": 931.4341211532 + }, + "tool_id": null, + "tool_state": "{\"parameter_type\": \"text\", \"optional\": true}", + "tool_version": null, + "type": "parameter_input", + "uuid": "40d47253-c7c5-471b-871c-9a19fbe60bfe", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Collection\\nReads\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nReference Genome\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Parameter\\nMinimum depth of coverage\"];\n style 2 fill:#ded,stroke:#393,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Parameter\\nMinimum variant allele frequency\"];\n style 3 fill:#ded,stroke:#393,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Parameter\\nAdditional BWA-MEM options\"];\n style 4 fill:#ded,stroke:#393,stroke-width:4px;\n 5[\"fastp\"];\n 0 -->|output| 5;\n 6[\"seqret\"];\n 1 -->|output| 6;\n 7[\"snippy\"];\n 4 -->|output| 7;\n 2 -->|output| 7;\n 3 -->|output| 7;\n 5 -->|output_paired_coll| 7;\n 1 -->|output| 7;\n 8[\"Kraken2\"];\n 5 -->|output_paired_coll| 8;\n c7abf2bf-ed4c-433e-a695-9eca61282bb5[\"Output\\nreport_output\"];\n 8 --> c7abf2bf-ed4c-433e-a695-9eca61282bb5;\n style c7abf2bf-ed4c-433e-a695-9eca61282bb5 stroke:#2c3143,stroke-width:4px;\n 083a0e51-7780-4c91-a071-dc0e4641d060[\"Output\\noutput\"];\n 8 --> 083a0e51-7780-4c91-a071-dc0e4641d060;\n style 083a0e51-7780-4c91-a071-dc0e4641d060 stroke:#2c3143,stroke-width:4px;\n 9[\"QualiMap BamQC\"];\n 7 -->|snpsbam| 9;\n 10[\"mosdepth\"];\n 2 -->|output| 10;\n 7 -->|snpsbam| 10;\n 11[\"TB Variant Filter\"];\n 7 -->|snpvcf| 11;\n 12[\"TB-Profiler Profile\"];\n 7 -->|snpsbam| 12;\n 335635b4-a4de-4980-ad02-68f0035daeaa[\"Output\\noutput_txt\"];\n 12 --> 335635b4-a4de-4980-ad02-68f0035daeaa;\n style 335635b4-a4de-4980-ad02-68f0035daeaa stroke:#2c3143,stroke-width:4px;\n 13[\"TB Variant Filter\"];\n 7 -->|snpvcf| 13;\n 14[\"Flatten collection\"];\n 9 -->|raw_data| 14;\n 15[\"Text reformatting\"];\n 10 -->|output_quantized_bed| 15;\n 16[\"Text transformation\"];\n 11 -->|output1| 16;\n 007df8c2-bd13-495f-8904-abf31d4594d0[\"Output\\nFinal annotated VCF\"];\n 16 --> 007df8c2-bd13-495f-8904-abf31d4594d0;\n style 007df8c2-bd13-495f-8904-abf31d4594d0 stroke:#2c3143,stroke-width:4px;\n 17[\"MultiQC\"];\n 5 -->|report_json| 17;\n 14 -->|output| 17;\n 59528235-7525-4ef9-8810-36f1ed0f01f6[\"Output\\nhtml_report\"];\n 17 --> 59528235-7525-4ef9-8810-36f1ed0f01f6;\n style 59528235-7525-4ef9-8810-36f1ed0f01f6 stroke:#2c3143,stroke-width:4px;\n 18[\"bcftools consensus\"];\n 13 -->|output1| 18;\n 6 -->|out_file1| 18;\n 15 -->|outfile| 18;\n c71b135d-35f9-44d0-a20e-f25528e518af[\"Output\\nconsensus_genome\"];\n 18 --> c71b135d-35f9-44d0-a20e-f25528e518af;\n style c71b135d-35f9-44d0-a20e-f25528e518af stroke:#2c3143,stroke-width:4px;\n 19[\"TB Variant Report\"];\n 16 -->|output| 19;\n 12 -->|results_json| 19;\n 959528d2-f8f2-4440-99cf-44fddd6c5069[\"Output\\ndrug_resistance_report_html\"];\n 19 --> 959528d2-f8f2-4440-99cf-44fddd6c5069;\n style 959528d2-f8f2-4440-99cf-44fddd6c5069 stroke:#2c3143,stroke-width:4px;\n 4d9636eb-075b-4fd2-a1e4-1a7c37a17fc0[\"Output\\nvariants_report_html\"];\n 19 --> 4d9636eb-075b-4fd2-a1e4-1a7c37a17fc0;\n style 4d9636eb-075b-4fd2-a1e4-1a7c37a17fc0 stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "TB Variant Analysis v1.0", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "errors": null, + "id": 8, + "input_connections": { + "single_paired|input_pair": { + "id": 5, + "output_name": "output_paired_coll" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool Kraken2", + "name": "single_paired" + } + ], + "label": null, + "name": "Kraken2", + "outputs": [ + { + "name": "report_output", + "type": "tabular" + }, + { + "name": "output", + "type": "tabular" + } + ], + "position": { + "left": 1605.1346167188794, + "top": 0 + }, + "post_job_actions": { + "HideDatasetActionoutput": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output" + }, + "TagDatasetActionreport_output": { + "action_arguments": { + "tags": "kraken_report" + }, + "action_type": "TagDatasetAction", + "output_name": "report_output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "tool_shed_repository": { + "changeset_revision": "20e2f64aa1fe", + "name": "kraken2", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"confidence\": \"0.0\", \"kraken2_database\": \"pluspf2021-05\", \"min_base_quality\": \"0\", \"minimum_hit_groups\": \"2\", \"quick\": false, \"report\": {\"create_report\": true, \"use_mpa_style\": false, \"report_zero_counts\": false, \"report_minimizer_data\": false}, \"single_paired\": {\"single_paired_selector\": \"collection\", \"__current_case__\": 0, \"input_pair\": {\"__class__\": \"ConnectedValue\"}}, \"split_reads\": false, \"use_names\": true, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "2.1.1+galaxy1", + "type": "tool", + "uuid": "60b17d56-0ef9-4829-829e-923f66de5e2f", + "when": null, + "workflow_outputs": [ + { + "label": "report_output", + "output_name": "report_output", + "uuid": "c7abf2bf-ed4c-433e-a695-9eca61282bb5" + }, + { + "label": "output", + "output_name": "output", + "uuid": "083a0e51-7780-4c91-a071-dc0e4641d060" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy0", + "errors": null, + "id": 12, + "input_connections": { + "fastq_or_bam|bam_input": { + "id": 7, + "output_name": "snpsbam" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool TB-Profiler Profile", + "name": "fastq_or_bam" + } + ], + "label": null, + "name": "TB-Profiler Profile", + "outputs": [ + { + "name": "results_json", + "type": "json" + }, + { + "name": "output_vcf", + "type": "vcf" + }, + { + "name": "output_txt", + "type": "txt" + } + ], + "position": { + "left": 1132.7778271896836, + "top": 615.3961147101202 + }, + "post_job_actions": { + "HideDatasetActionoutput_vcf": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "output_vcf" + }, + "HideDatasetActionresults_json": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "results_json" + }, + "TagDatasetActionoutput_txt": { + "action_arguments": { + "tags": "drug_resistance_report" + }, + "action_type": "TagDatasetAction", + "output_name": "output_txt" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy0", + "tool_shed_repository": { + "changeset_revision": "4839e590cb26", + "name": "tbprofiler", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"advanced\": {\"options\": \"no\", \"__current_case__\": 0}, \"fastq_or_bam\": {\"input_select\": \"bam\", \"__current_case__\": 3, \"bam_input\": {\"__class__\": \"ConnectedValue\"}}, \"output_format\": \"txt\", \"platform\": \"illumina\", \"spoligotype\": false, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "6.2.1+galaxy0", + "type": "tool", + "uuid": "22d89589-70a3-4e6e-8b95-68604a287052", + "when": null, + "workflow_outputs": [ + { + "label": "output_txt", + "output_name": "output_txt", + "uuid": "335635b4-a4de-4980-ad02-68f0035daeaa" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1", + "errors": null, + "id": 16, + "input_connections": { + "infile": { + "id": 11, + "output_name": "output1" + } + }, + "inputs": [], + "label": null, + "name": "Text transformation", + "outputs": [ + { + "name": "output", + "type": "input" + } + ], + "position": { + "left": 1379.287563641826, + "top": 248.44083584414724 + }, + "post_job_actions": { + "TagDatasetActionoutput": { + "action_arguments": { + "tags": "annotated_vcf" + }, + "action_type": "TagDatasetAction", + "output_name": "output" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1", + "tool_shed_repository": { + "changeset_revision": "fbf99087e067", + "name": "text_processing", + "owner": "bgruening", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv_opts\": {\"adv_opts_selector\": \"basic\", \"__current_case__\": 0}, \"code\": \"s/GENE_//g\", \"infile\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "9.3+galaxy1", + "type": "tool", + "uuid": "c45f6679-0d38-4663-a783-775b0f522bcc", + "when": null, + "workflow_outputs": [ + { + "label": "Final annotated VCF", + "output_name": "output", + "uuid": "007df8c2-bd13-495f-8904-abf31d4594d0" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "errors": null, + "id": 17, + "input_connections": { + "results_0|software_cond|input": { + "id": 5, + "output_name": "report_json" + }, + "results_1|software_cond|input": { + "id": 14, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "MultiQC", + "outputs": [ + { + "name": "stats", + "type": "input" + }, + { + "name": "html_report", + "type": "html" + } + ], + "position": { + "left": 1604.2880860884582, + "top": 202.3882167631859 + }, + "post_job_actions": { + "HideDatasetActionstats": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "stats" + }, + "TagDatasetActionhtml_report": { + "action_arguments": { + "tags": "qc_report" + }, + "action_type": "TagDatasetAction", + "output_name": "html_report" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "tool_shed_repository": { + "changeset_revision": "abfd8a6544d7", + "name": "multiqc", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"comment\": \"\", \"export\": false, \"flat\": false, \"results\": [{\"__index__\": 0, \"software_cond\": {\"software\": \"fastp\", \"__current_case__\": 7, \"input\": {\"__class__\": \"ConnectedValue\"}}}, {\"__index__\": 1, \"software_cond\": {\"software\": \"qualimap\", \"__current_case__\": 20, \"input\": {\"__class__\": \"ConnectedValue\"}}}], \"saveLog\": false, \"title\": \"\", \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.11+galaxy1", + "type": "tool", + "uuid": "6367e2a7-c3b0-4dc4-bbc2-e861e66eaeae", + "when": null, + "workflow_outputs": [ + { + "label": "html_report", + "output_name": "html_report", + "uuid": "59528235-7525-4ef9-8810-36f1ed0f01f6" + } + ] + }, + { + "annotation": "Compute consensus genome with single nucleotide variants inserted, suitable for use in building a phylogeny", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "errors": null, + "id": 18, + "input_connections": { + "input_file": { + "id": 13, + "output_name": "output1" + }, + "reference_source|fasta_ref": { + "id": 6, + "output_name": "out_file1" + }, + "sec_default|mask": { + "id": 15, + "output_name": "outfile" + } + }, + "inputs": [ + { + "description": "runtime parameter for tool bcftools consensus", + "name": "reference_source" + }, + { + "description": "runtime parameter for tool bcftools consensus", + "name": "sec_default" + } + ], + "label": null, + "name": "bcftools consensus", + "outputs": [ + { + "name": "output_file", + "type": "fasta" + } + ], + "position": { + "left": 1601.1886936133394, + "top": 1003.2778990479657 + }, + "post_job_actions": { + "TagDatasetActionoutput_file": { + "action_arguments": { + "tags": "consensus_genome" + }, + "action_type": "TagDatasetAction", + "output_name": "output_file" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "tool_shed_repository": { + "changeset_revision": "147de996e34f", + "name": "bcftools_consensus", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"absent\": \"\", \"chain\": false, \"input_file\": {\"__class__\": \"ConnectedValue\"}, \"reference_source\": {\"reference_source_selector\": \"history\", \"__current_case__\": 1, \"fasta_ref\": {\"__class__\": \"ConnectedValue\"}}, \"rename\": false, \"sec_default\": {\"mask\": {\"__class__\": \"ConnectedValue\"}, \"iupac_codes\": false, \"sample\": null, \"select_haplotype\": null, \"mark_del\": \"\", \"mark_ins\": null, \"mark_snv\": null, \"conditional_mask\": {\"selector\": \"disabled\", \"__current_case__\": 0}}, \"sec_restrict\": {\"include\": null, \"exclude\": null}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.15.1+galaxy3", + "type": "tool", + "uuid": "2b226e0c-8e59-472d-8bcd-6d8d84dfddab", + "when": null, + "workflow_outputs": [ + { + "label": "consensus_genome", + "output_name": "output_file", + "uuid": "c71b135d-35f9-44d0-a20e-f25528e518af" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.0+galaxy0", + "errors": null, + "id": 19, + "input_connections": { + "input_vcf": { + "id": 16, + "output_name": "output" + }, + "tbprofiler_json": { + "id": 12, + "output_name": "results_json" + } + }, + "inputs": [], + "label": null, + "name": "TB Variant Report", + "outputs": [ + { + "name": "variants_report_html", + "type": "html" + }, + { + "name": "variants_report_txt", + "type": "txt" + }, + { + "name": "drug_resistance_report_html", + "type": "html" + }, + { + "name": "drug_resistance_report_txt", + "type": "txt" + } + ], + "position": { + "left": 1591.762535768669, + "top": 427.7783435581315 + }, + "post_job_actions": { + "HideDatasetActiondrug_resistance_report_txt": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "drug_resistance_report_txt" + }, + "HideDatasetActionvariants_report_txt": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "variants_report_txt" + }, + "TagDatasetActiondrug_resistance_report_html": { + "action_arguments": { + "tags": "variant_report" + }, + "action_type": "TagDatasetAction", + "output_name": "drug_resistance_report_html" + }, + "TagDatasetActionvariants_report_html": { + "action_arguments": { + "tags": "variant_report" + }, + "action_type": "TagDatasetAction", + "output_name": "variants_report_html" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.0+galaxy0", + "tool_shed_repository": { + "changeset_revision": "42818629ec4c", + "name": "tbvcfreport", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": {\"database_uri\": \"neodb.sanbi.ac.za\"}, \"filter_udi\": true, \"input_vcf\": {\"__class__\": \"ConnectedValue\"}, \"tbprofiler_json\": {\"__class__\": \"ConnectedValue\"}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "1.0.0+galaxy0", + "type": "tool", + "uuid": "183d84e7-91ea-4e8f-950b-f65629b60b1b", + "when": null, + "workflow_outputs": [ + { + "label": "drug_resistance_report_html", + "output_name": "drug_resistance_report_html", + "uuid": "959528d2-f8f2-4440-99cf-44fddd6c5069" + }, + { + "label": "variants_report_html", + "output_name": "variants_report_html", + "uuid": "4d9636eb-075b-4fd2-a1e4-1a7c37a17fc0" + } + ] + } + ], + "parent_id": "variant-analysis/tb-variant-analysis", + "path": "topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.ga", + "tags": [ + "pathogen", + "tuberculosis" + ], + "test_results": null, + "tests": true, + "title": "TB Variant Analysis v1.0", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-tb-variant-analysis/versions/tb-variant-analysis", + "tutorial_id": "tb-variant-analysis", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/tb-variant-analysis/workflows/tb-variant-analysis.html", + "version": 7, + "wfid": "variant-analysis-tb-variant-analysis", + "wfname": "tb-variant-analysis", + "workflow": "tb-variant-analysis.ga", + "workflow_tools": [ + "__FLATTEN__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_awk_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_sed_tool/9.3+galaxy1", + "toolshed.g2.bx.psu.edu/repos/devteam/emboss_5/EMBOSS: seqret84/5.0.0", + "toolshed.g2.bx.psu.edu/repos/iuc/bcftools_consensus/bcftools_consensus/1.15.1+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/kraken2/kraken2/2.1.1+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/mosdepth/mosdepth/0.3.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/multiqc/multiqc/1.11+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2c+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/4.6.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tb_variant_filter/tb_variant_filter/0.4.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbprofiler/tb_profiler_profile/6.2.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/tbvcfreport/tbvcfreport/1.0.0+galaxy0" + ], + "workflowhub_id": "1069" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.3496437" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "datamash_ops", + "owner": "iuc", + "revisions": "4c07ddedc198", + "tool_panel_section_label": "Join, Subtract and Group", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "nextclade", + "owner": "iuc", + "revisions": "4f6349228462", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "pangolin", + "owner": "iuc", + "revisions": "03ed9524dcd1", + "tool_panel_section_label": "Phylogenetics", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fasta_regex_finder", + "owner": "mbernt", + "revisions": "9a811adb714f", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: datamash_ops\n owner: iuc\n revisions: 4c07ddedc198\n tool_panel_section_label: Join, Subtract and Group\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: nextclade\n owner: iuc\n revisions: 4f6349228462\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: pangolin\n owner: iuc\n revisions: 03ed9524dcd1\n tool_panel_section_label: Phylogenetics\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fasta_regex_finder\n owner: mbernt\n revisions: 9a811adb714f\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json", + "contributions": { + "authorship": [ + "wm75", + "bebatut" + ], + "funding": [ + "by-covid", + "elixir-converge" + ] + }, + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + }, + { + "affiliations": [ + "gallantries", + "ifb", + "elixir-europe" + ], + "contact_for_training": true, + "elixir_node": "fr", + "email": "berenice.batut@gmail.com", + "fediverse": "https://piaille.fr/@bebatut", + "fediverse_flavor": "mastodon", + "id": "bebatut", + "joined": "2017-09", + "linkedin": "berenicebatut", + "location": { + "country": "FR", + "lat": 45.77, + "lon": 3.08 + }, + "matrix": "bebatut:matrix.org", + "name": "B\u00e9r\u00e9nice Batut", + "orcid": "0000-0001-9852-1987", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/bebatut/", + "twitter": "bebatut", + "url": "https://training.galaxyproject.org/training-material/api/contributors/bebatut.json" + }, + { + "funder": true, + "funding_id": "101046203", + "funding_statement": "BY-COVID is an EC funded project that tackles the data challenges that can hinder effective pandemic response.\n\nThis project has received funding from the European Union\u2019s Horizon Europe research and innovation programme under grant agreement \u2116 101046203 (BY-COVID)", + "funding_system": "cordis", + "id": "by-covid", + "joined": "2023-04", + "members": [ + "bgruening", + "hexylena", + "ilveroluca", + "kikkomep", + "mbaardwijk", + "PapXis", + "pauldg", + "simleo", + "stain", + "wm75" + ], + "name": "BeYond-COVID", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/by-covid/", + "url": "https://training.galaxyproject.org/training-material/api/funders/by-covid.json" + }, + { + "avatar": "https://elixir-europe.org/sites/default/files/styles/right-medium/public/images/converge_logo.png", + "funder": true, + "funding_id": "871075", + "funding_statement": "ELIXIR CONVERGE is connecting and align ELIXIR Nodes to deliver sustainable FAIR life-science data management services. This project has received funding from the European Union\u2019s Horizon 2020 research and innovation programme under grant agreement \u2116 871075", + "funding_system": "cordis", + "github": false, + "id": "elixir-converge", + "joined": "2023-01", + "members": [ + "bgruening", + "hexylena" + ], + "name": "ELIXIR-CONVERGE", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/elixir-converge/", + "url": "https://training.galaxyproject.org/training-material/api/funders/elixir-converge.json" + } + ], + "dir": "topics/variant-analysis/tutorials/sars-cov-2-variant-discovery", + "edam_operation": [ + "Variant calling", + "Methylation analysis", + "Variant classification", + "Tree-based sequence alignment" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/sars-cov-2-variant-discovery", + "inexact_supported_servers": [], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "The Galaxy Covid-19 project has developed a flexible set of workflows for SARS-CoV-2 genome surveillance, which is freely available through public workflow registries.", + "The workflows enable processing of whole batches of samples with rather limited user interaction.", + "They provide a high-throughput and flexible analysis solution without compromising on accuracy, nor on the possibility to explore intermediate steps and outputs in detail." + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Discover and obtain recommended Galaxy workflows for SARS-CoV-2 sequence data analysis through public workflow registries", + "Choose and run a workflow to discover mutations in a batch of viral samples from sequencing data obtained through a range of different protocols and platforms", + "Run a workflow to summarize and visualize the mutation discovery results for a batch of samples", + "Run a workflow to construct viral consensus sequences for the samples in a batch", + "Know different SARS-CoV-2 lineage classification systems, and use pangolin and Nextclade to assign samples to predefined lineages", + "Combine information from different analysis steps to be able to draw appropriate conclusions about individual samples and batches of viral data" + ], + "pageviews": 11912, + "pub_date": "2021-06-30", + "questions": [ + "How can a complete analysis, including viral consensus sequence reconstruction and lineage assignment be performed?", + "How can such an analysis be kept manageable for lots of samples, yet flexible enough to handle different types of input data?", + "What are key results beyond consensus genomes and lineage assignments that need to be understood to avoid inappropriate conclusions about samples?", + "How can the needs for high-throughput data analysis in an ongoing infectious disease outbreak/pandemic and the need for proper quality control and data inspection be balanced?" + ], + "recordings": [ + { + "captioners": [ + "wm75" + ], + "date": "2023-05-10", + "length": "55M", + "speakers": [ + "wm75" + ], + "youtube_id": "hjlmCWQhBvI" + }, + { + "captioners": [ + "hexylena" + ], + "date": "2021-08-09", + "length": "1H30M", + "speakers": [ + "wm75" + ], + "youtube_id": "vnFQ2fR_fzw" + } + ], + "requirements": [ + { + "topic_name": "galaxy-interface", + "tutorials": [ + "collections" + ], + "type": "internal" + }, + { + "topic_name": "variant-analysis", + "tutorials": [ + "sars-cov-2" + ], + "type": "internal" + } + ], + "short_id": "T00316", + "short_tools": [ + "nextclade", + "datamash_ops", + "fasta_regex_finder", + "pangolin", + "Filter1", + "upload1" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [] + }, + "symlink": null, + "tags": [ + "covid19", + "virology", + "one-health" + ], + "time_estimation": "3H", + "title": "Mutation calling, viral genome reconstruction and lineage/clade assignment from SARS-CoV-2 sequencing data", + "tools": [ + "Filter1", + "toolshed.g2.bx.psu.edu/repos/iuc/datamash_ops/datamash_ops/1.8+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/nextclade/nextclade/2.7.0+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/pangolin/pangolin/4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/mbernt/fasta_regex_finder/fasta_regex_finder/0.1.0", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "sars-cov-2-variant-discovery", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/sars-cov-2-variant-discovery/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 2, + "video_view": 0, + "visit_duration": 207, + "visitors": 6391, + "zenodo_link": "https://zenodo.org/record/5036687" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "a6f147a050a2", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff", + "owner": "iuc", + "revisions": "20f0429a4bfe", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snpeff", + "owner": "iuc", + "revisions": "20f0429a4bfe", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mimodd_main", + "owner": "wolma", + "revisions": "f0f2795de2c7", + "tool_panel_section_label": "MiModD", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mimodd_main", + "owner": "wolma", + "revisions": "f0f2795de2c7", + "tool_panel_section_label": "MiModD", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mimodd_main", + "owner": "wolma", + "revisions": "f0f2795de2c7", + "tool_panel_section_label": "MiModD", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mimodd_main", + "owner": "wolma", + "revisions": "f0f2795de2c7", + "tool_panel_section_label": "MiModD", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mimodd_main", + "owner": "wolma", + "revisions": "f0f2795de2c7", + "tool_panel_section_label": "MiModD", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: a6f147a050a2\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff\n owner: iuc\n revisions: 20f0429a4bfe\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snpeff\n owner: iuc\n revisions: 20f0429a4bfe\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mimodd_main\n owner: wolma\n revisions: f0f2795de2c7\n tool_panel_section_label: MiModD\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mimodd_main\n owner: wolma\n revisions: f0f2795de2c7\n tool_panel_section_label: MiModD\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mimodd_main\n owner: wolma\n revisions: f0f2795de2c7\n tool_panel_section_label: MiModD\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mimodd_main\n owner: wolma\n revisions: f0f2795de2c7\n tool_panel_section_label: MiModD\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mimodd_main\n owner: wolma\n revisions: f0f2795de2c7\n tool_panel_section_label: MiModD\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/mapping-by-sequencing/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/variant-analysis/tutorials/mapping-by-sequencing", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/mapping-by-sequencing", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Mapping-by-sequencing is a powerful method for the molecular identification of mutations", + "The MiModD suite of tools bundles most of the functionality required to perform mapping-by-sequencing analyses with Galaxy" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2023-11-09", + "objectives": [ + "Use joint variant calling and extraction to facilitate variant comparison across samples", + "Perform variant linkage analyses for phenotypically selected recombinant progeny", + "Filter, annotate and report lists of variants" + ], + "pageviews": 5430, + "pub_date": "2018-03-07", + "questions": [ + "What is mapping-by-sequencing?", + "How can it help you identify the causative mutation in phenotypic mutants isolated from genetic screens?" + ], + "short_id": "T00312", + "short_tools": [ + "mimodd_varextract", + "tp_find_and_replace", + "mimodd_vcf_filter", + "mimodd_varcall", + "mimodd_varreport", + "mimodd_map", + "snpEff_download", + "snpEff" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "model-organisms", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "2h", + "title": "Mapping and molecular identification of phenotype-causing mutations", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff_download/4.1.0", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_map/0.1.8_1", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_varcall/0.1.8_1", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_varextract/0.1.8_1", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_varreport/0.1.8_1", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_vcf_filter/0.1.8_1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "mapping-by-sequencing", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/mapping-by-sequencing/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/mapping-by-sequencing/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/mapping-by-sequencing/tutorial.json" + }, + "version": 16, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 180, + "visitors": 3533, + "workflows": [ + { + "creators": [], + "description": "Reproduce the tutorial analysis at https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/mapping-by-sequencing/tutorial.html", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nA. thaliana TAIR10 ref genome\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\naligned reads from outcrossed F2 pool\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\naligned reads from Ler mapping strain\"]\n 3[label=\"SnpEff Download\"]\n 4[label=\"Replace parts of text\"]\n 0 -> 4 [label=\"output\"]\n 5[label=\"MiModD Variant Calling\"]\n 4 -> 5 [label=\"outfile\"]\n 2 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 6[label=\"MiModD Extract Variant Sites\"]\n 5 -> 6 [label=\"ofile\"]\n 7[label=\"MiModD NacreousMap\"]\n 6 -> 7 [label=\"output_vcf\"]\n 8[label=\"MiModD VCF Filter\"]\n 6 -> 8 [label=\"output_vcf\"]\n 9[label=\"SnpEff\"]\n 8 -> 9 [label=\"outputfile\"]\n 3 -> 9 [label=\"snpeff_db\"]\n 10[label=\"MiModD Report Variants\"]\n 9 -> 10 [label=\"snpeff_output\"]\n}", + "history": [ + { + "hash": "3f568e83cac25b4567e24d0c32cf75008e2330d2", + "message": "Correct some ancient URLs", + "num": 3, + "short_hash": "3f568e83c", + "unix": "1665080483" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 2, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "a14e0a4b74829330dd99f3f82a0d2320c756b0e9", + "message": "mapping-by-sequencing tutorial: add workflow", + "num": 1, + "short_hash": "a14e0a4b7", + "unix": "1520870838" + } + ], + "inputs": [ + { + "annotation": "can be obtained from https://www.arabidopsis.org/download_files/Genes/TAIR10_genome_release/TAIR10_chromosome_files/TAIR10_chr_all.fas", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [], + "label": "A. thaliana TAIR10 ref genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 169, + "top": 200 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "e1f007b9-4064-4085-a5f9-3f58db2dfe80", + "workflow_outputs": [] + }, + { + "annotation": "as obtained from\nhttps://zenodo.org/record/1098034/files/outcrossed_F2.bam", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [], + "label": "aligned reads from outcrossed F2 pool", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 174, + "top": 524 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "d8951962-720f-444f-9ba9-38eb5d3bc69d", + "workflow_outputs": [] + }, + { + "annotation": "as obtained from\nhttps://zenodo.org/record/1098034/files/Ler_mapping_strain.bam", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [], + "label": "aligned reads from Ler mapping strain", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 172, + "top": 687 + }, + "tool_id": null, + "tool_state": "{}", + "tool_version": null, + "type": "data_input", + "uuid": "299b9599-74e4-45ac-b6db-cabedca6d396", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nA. thaliana TAIR10 ref genome\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\naligned reads from outcrossed F2 pool\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\naligned reads from Ler mapping strain\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"SnpEff Download\"];\n 4[\"Replace parts of text\"];\n 0 -->|output| 4;\n 5[\"MiModD Variant Calling\"];\n 4 -->|outfile| 5;\n 2 -->|output| 5;\n 1 -->|output| 5;\n 6[\"MiModD Extract Variant Sites\"];\n 5 -->|ofile| 6;\n 7[\"MiModD NacreousMap\"];\n 6 -->|output_vcf| 7;\n 8[\"MiModD VCF Filter\"];\n 6 -->|output_vcf| 8;\n 9[\"SnpEff\"];\n 8 -->|outputfile| 9;\n 3 -->|snpeff_db| 9;\n 10[\"MiModD Report Variants\"];\n 9 -->|snpeff_output| 10;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Mapping And Molecular Identification Of Phenotype Causing Mutations", + "outputs": [], + "parent_id": "variant-analysis/mapping-by-sequencing", + "path": "topics/variant-analysis/tutorials/mapping-by-sequencing/workflows/workflow-arabidopsis.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": false, + "title": "Mapping And Molecular Identification Of Phenotype Causing Mutations", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-mapping-by-sequencing/versions/workflow-arabidopsis", + "tutorial_id": "mapping-by-sequencing", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/mapping-by-sequencing/workflows/workflow-arabidopsis.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/mapping-by-sequencing/workflows/workflow-arabidopsis.html", + "version": 3, + "wfid": "variant-analysis-mapping-by-sequencing", + "wfname": "workflow-arabidopsis", + "workflow": "workflow-arabidopsis.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.1", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff/4.1.0", + "toolshed.g2.bx.psu.edu/repos/iuc/snpeff/snpEff_download/4.1.0", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_map/0.1.8_1", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_varcall/0.1.8_1", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_varextract/0.1.8_1", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_varreport/0.1.8_1", + "toolshed.g2.bx.psu.edu/repos/wolma/mimodd_main/mimodd_vcf_filter/0.1.8_1" + ], + "workflowhub_id": "1063" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.1098033" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "836d1aa3e89a", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "snippy", + "owner": "iuc", + "revisions": "c9a8ef2aa380", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: jbrowse\n owner: iuc\n revisions: 836d1aa3e89a\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: snippy\n owner: iuc\n revisions: c9a8ef2aa380\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/microbial-variants/tutorial.json", + "contributors": [ + { + "id": "annasyme", + "joined": "2017-09", + "name": "Anna Syme", + "orcid": "0000-0002-9906-0673", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/annasyme/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/annasyme.json" + }, + { + "elixir_node": "au", + "email": "simon.gladman@unimelb.edu.au", + "id": "slugger70", + "in_memoriam": "Simon Gladman, system administrator of UseGalaxy.org.au, passed away on November 26, 2022\n\nHe was a fantastic teacher, tutorial author, system administrator, and warm and welcoming friend. He contributed heavily to the Galaxy Training Network and especially the Galaxy Administration community over the years, we will miss him dearly. The GTN and GAT would not be what they are today, without him.\n\n\u201cHave I told you about my watch?\u201d", + "joined": "2017-09", + "name": "Simon Gladman", + "orcid": "0000-0002-6100-4385", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/slugger70/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/slugger70.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "au", + "id": "tseemann", + "joined": "2018-06", + "name": "Torsten Seemann", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/tseemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/tseemann.json" + } + ], + "dir": "topics/variant-analysis/tutorials/microbial-variants", + "edam_ontology": [ + "topic_0622", + "topic_0196", + "topic_2885", + "topic_3301", + "topic_0080", + "topic_0199" + ], + "edam_operation": [ + "Genome visualisation", + "Variant calling", + "Phylogenetic tree generation", + "Phylogenetic tree visualisation" + ], + "edam_topic": [ + "Genomics", + "Sequence assembly", + "DNA polymorphism", + "Microbiology", + "Sequence analysis", + "Genetic variation" + ], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/microbial-variants", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "We used a tool called Snippy to call variants between our reads and our reference genome.", + "As our reference genome had annotations, we could see what effect the changes have on the features as annotated in the reference and therefore make inferences on the possible changes to the phenotype.", + "We used the JBrowse genome browser to visualise what these changes look like." + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-03-15", + "objectives": [ + "Find variants between a reference genome and a set of reads", + "Visualise the SNP in context of the reads aligned to the genome", + "Determine the effect of those variants on genomic features", + "Understand if the SNP is potentially affecting the phenotype" + ], + "pageviews": 20322, + "pub_date": "2018-02-26", + "questions": [ + "How do we detect differences between a set of reads from a microorganism and a reference genome" + ], + "short_id": "T00313", + "short_tools": [ + "jbrowse", + "snippy" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "introduction", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "tags": [ + "prokaryote", + "microgalaxy", + "gmod", + "jbrowse1" + ], + "time_estimation": "45m", + "title": "Microbial Variant Calling", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/0.7.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "microbial-variants", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/microbial-variants/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/microbial-variants/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/microbial-variants/tutorial.json" + }, + "version": 23, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 120, + "visitors": 12166, + "workflows": [ + { + "creators": [], + "description": "Microbial Variant Calling", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 5[label=\"snippy\"]\n 0 -> 5 [label=\"output\"]\n 1 -> 5 [label=\"output\"]\n 3 -> 5 [label=\"output\"]\n k58cbabf03a3c4ec5b16a40d19fc82aae[color=lightseagreen,label=\"Output\\nsnippy_fasta\"]\n 5 -> k58cbabf03a3c4ec5b16a40d19fc82aae\n k4002677b75f248f49d5332ab4dd44165[color=lightseagreen,label=\"Output\\nsnippy_tabular\"]\n 5 -> k4002677b75f248f49d5332ab4dd44165\n 6[label=\"JBrowse\"]\n 5 -> 6 [label=\"snpgff\"]\n 4 -> 6 [label=\"output\"]\n 5 -> 6 [label=\"snpsbam\"]\n 2 -> 6 [label=\"output\"]\n kadfd738e00464e26a338254cdcb175af[color=lightseagreen,label=\"Output\\njbrowse_html\"]\n 6 -> kadfd738e00464e26a338254cdcb175af\n}", + "history": [ + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 5, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 4, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "dfb97360348d32210f7c4bae68f1154a2336e520", + "message": "annotate workflow outputs", + "num": 3, + "short_hash": "dfb973603", + "unix": "1526109637" + }, + { + "hash": "8803cca01f5e6e62243a1cefbe21e701e89151af", + "message": "pretty'fy workflow", + "num": 2, + "short_hash": "8803cca01", + "unix": "1526109452" + }, + { + "hash": "5a1bff42297572d14d33b4e41de89694a6957676", + "message": "Add some love to microbial variant calling tutorial (#732)", + "num": 1, + "short_hash": "5a1bff422", + "unix": "1523043969" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R1" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mutant_R1\"}", + "tool_version": null, + "type": "data_input", + "uuid": "f78a5562-288a-49fa-a8e4-a6facf09bffe", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "mutant_R2" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"name\": \"mutant_R2\"}", + "tool_version": null, + "type": "data_input", + "uuid": "9f0aa29d-da56-4535-96ce-696a721d1d76", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wildtype.fna" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 250 + }, + "tool_id": null, + "tool_state": "{\"name\": \"wildtype.fna\"}", + "tool_version": null, + "type": "data_input", + "uuid": "1ad30281-3ee6-4725-8515-8db4936de0ff", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wildtype.gbk" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 370 + }, + "tool_id": null, + "tool_state": "{\"name\": \"wildtype.gbk\"}", + "tool_version": null, + "type": "data_input", + "uuid": "3c0c913a-7106-4ac7-b653-a0a0da1d14f8", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "wildtype.gff" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 490 + }, + "tool_id": null, + "tool_state": "{\"name\": \"wildtype.gff\"}", + "tool_version": null, + "type": "data_input", + "uuid": "0a4f5c3d-4f34-4461-8114-98f3bb0a4cf8", + "workflow_outputs": [] + } + ], + "license": null, + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"snippy\"];\n 0 -->|output| 5;\n 1 -->|output| 5;\n 3 -->|output| 5;\n 58cbabf0-3a3c-4ec5-b16a-40d19fc82aae[\"Output\\nsnippy_fasta\"];\n 5 --> 58cbabf0-3a3c-4ec5-b16a-40d19fc82aae;\n style 58cbabf0-3a3c-4ec5-b16a-40d19fc82aae stroke:#2c3143,stroke-width:4px;\n 4002677b-75f2-48f4-9d53-32ab4dd44165[\"Output\\nsnippy_tabular\"];\n 5 --> 4002677b-75f2-48f4-9d53-32ab4dd44165;\n style 4002677b-75f2-48f4-9d53-32ab4dd44165 stroke:#2c3143,stroke-width:4px;\n 6[\"JBrowse\"];\n 5 -->|snpgff| 6;\n 4 -->|output| 6;\n 5 -->|snpsbam| 6;\n 2 -->|output| 6;\n adfd738e-0046-4e26-a338-254cdcb175af[\"Output\\njbrowse_html\"];\n 6 --> adfd738e-0046-4e26-a338-254cdcb175af;\n style adfd738e-0046-4e26-a338-254cdcb175af stroke:#2c3143,stroke-width:4px;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Microbial Variant Calling", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "errors": null, + "id": 5, + "input_connections": { + "fastq_input|fastq_input1": { + "id": 0, + "output_name": "output" + }, + "fastq_input|fastq_input2": { + "id": 1, + "output_name": "output" + }, + "ref": { + "id": 3, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "snippy", + "outputs": [ + { + "name": "snpvcf", + "type": "vcf" + }, + { + "name": "snpgff", + "type": "gff3" + }, + { + "name": "snptab", + "type": "tabular" + }, + { + "name": "snpsum", + "type": "tabular" + }, + { + "name": "snplog", + "type": "txt" + }, + { + "name": "snpalign", + "type": "fasta" + }, + { + "name": "snpconsensus", + "type": "fasta" + }, + { + "name": "snpsdepth", + "type": "tabular" + }, + { + "name": "snpsbam", + "type": "bam" + }, + { + "name": "outdir", + "type": "zip" + } + ], + "position": { + "left": 230, + "top": 10 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2", + "tool_shed_repository": { + "changeset_revision": "c9a8ef2aa380", + "name": "snippy", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"adv\": \"{\\\"mapqual\\\": \\\"60\\\", \\\"bwaopt\\\": \\\"\\\", \\\"minfrac\\\": \\\"0.9\\\", \\\"rgid\\\": \\\"\\\", \\\"mincov\\\": \\\"10\\\"}\", \"__page__\": null, \"outputs\": \"[\\\"outvcf\\\", \\\"outgff\\\", \\\"outtab\\\", \\\"outsum\\\", \\\"outlog\\\", \\\"outaln\\\", \\\"outcon\\\", \\\"outdep\\\", \\\"outbam\\\", \\\"outzip\\\"]\", \"__rerun_remap_job_id__\": null, \"fastq_input\": \"{\\\"fastq_input2\\\": null, \\\"__current_case__\\\": 0, \\\"fastq_input_selector\\\": \\\"paired\\\", \\\"fastq_input1\\\": null}\", \"chromInfo\": \"\\\"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\\\"\", \"ref\": \"null\"}", + "tool_version": "3.2", + "type": "tool", + "uuid": "5f5638b5-3553-4522-9cfa-d47dd45e8c42", + "workflow_outputs": [ + { + "label": "snippy_fasta", + "output_name": "snpconsensus", + "uuid": "58cbabf0-3a3c-4ec5-b16a-40d19fc82aae" + }, + { + "label": "snippy_tabular", + "output_name": "snpsum", + "uuid": "4002677b-75f2-48f4-9d53-32ab4dd44165" + } + ] + }, + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/0.7.0.3", + "errors": null, + "id": 6, + "input_connections": { + "reference_genome|genomes": { + "id": 2, + "output_name": "output" + }, + "track_groups_0|data_tracks_0|data_format|annotation": { + "id": 5, + "output_name": "snpsbam" + }, + "track_groups_1|data_tracks_0|data_format|annotation": { + "id": 5, + "output_name": "snpgff" + }, + "track_groups_2|data_tracks_0|data_format|annotation": { + "id": 4, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "JBrowse", + "outputs": [ + { + "name": "output", + "type": "html" + } + ], + "position": { + "left": 450, + "top": 10 + }, + "post_job_actions": {}, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/0.7.0.3", + "tool_shed_repository": { + "changeset_revision": "836d1aa3e89a", + "name": "jbrowse", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"__page__\": null, \"standalone\": \"\\\"true\\\"\", \"__rerun_remap_job_id__\": null, \"reference_genome\": \"{\\\"genomes\\\": null, \\\"__current_case__\\\": 1, \\\"genome_type_select\\\": \\\"history\\\"}\", \"track_groups\": \"[{\\\"category\\\": \\\"sequence reads\\\", \\\"__index__\\\": 0, \\\"data_tracks\\\": [{\\\"__index__\\\": 0, \\\"data_format\\\": {\\\"auto_snp\\\": \\\"true\\\", \\\"track_visibility\\\": \\\"default_on\\\", \\\"override_apollo_drag\\\": \\\"False\\\", \\\"__current_case__\\\": 3, \\\"override_apollo_plugins\\\": \\\"False\\\", \\\"annotation\\\": null, \\\"data_format_select\\\": \\\"pileup\\\"}}]}, {\\\"category\\\": \\\"variants\\\", \\\"__index__\\\": 1, \\\"data_tracks\\\": [{\\\"__index__\\\": 0, \\\"data_format\\\": {\\\"index\\\": \\\"false\\\", \\\"match_part\\\": {\\\"match_part_select\\\": \\\"false\\\", \\\"__current_case__\\\": 1}, \\\"jbstyle\\\": {\\\"style_classname\\\": \\\"feature\\\", \\\"style_description\\\": \\\"note,description\\\", \\\"style_height\\\": \\\"10px\\\", \\\"max_height\\\": \\\"600\\\", \\\"style_label\\\": \\\"product,name,id\\\"}, \\\"track_visibility\\\": \\\"default_on\\\", \\\"track_config\\\": {\\\"track_class\\\": \\\"JBrowse/View/Track/CanvasFeatures\\\", \\\"canvas_options\\\": {\\\"transcriptType\\\": \\\"\\\", \\\"subParts\\\": \\\"\\\", \\\"impliedUTRs\\\": \\\"false\\\"}, \\\"__current_case__\\\": 0}, \\\"jbcolor_scale\\\": {\\\"color_score\\\": {\\\"color\\\": {\\\"color_select\\\": \\\"automatic\\\", \\\"__current_case__\\\": 0}, \\\"__current_case__\\\": 0, \\\"color_score_select\\\": \\\"none\\\"}}, \\\"override_apollo_drag\\\": \\\"False\\\", \\\"__current_case__\\\": 2, \\\"override_apollo_plugins\\\": \\\"False\\\", \\\"jbmenu\\\": {\\\"track_menu\\\": []}, \\\"annotation\\\": null, \\\"data_format_select\\\": \\\"gene_calls\\\"}}]}, {\\\"category\\\": \\\"annotated reference\\\", \\\"__index__\\\": 2, \\\"data_tracks\\\": [{\\\"__index__\\\": 0, \\\"data_format\\\": {\\\"index\\\": \\\"false\\\", \\\"match_part\\\": {\\\"match_part_select\\\": \\\"false\\\", \\\"__current_case__\\\": 1}, \\\"jbstyle\\\": {\\\"style_classname\\\": \\\"feature\\\", \\\"style_description\\\": \\\"product\\\", \\\"style_height\\\": \\\"10px\\\", \\\"max_height\\\": \\\"600\\\", \\\"style_label\\\": \\\"product\\\"}, \\\"track_visibility\\\": \\\"default_on\\\", \\\"track_config\\\": {\\\"track_class\\\": \\\"JBrowse/View/Track/CanvasFeatures\\\", \\\"canvas_options\\\": {\\\"transcriptType\\\": \\\"\\\", \\\"subParts\\\": \\\"\\\", \\\"impliedUTRs\\\": \\\"false\\\"}, \\\"__current_case__\\\": 0}, \\\"jbcolor_scale\\\": {\\\"color_score\\\": {\\\"color\\\": {\\\"color_select\\\": \\\"automatic\\\", \\\"__current_case__\\\": 0}, \\\"__current_case__\\\": 0, \\\"color_score_select\\\": \\\"none\\\"}}, \\\"override_apollo_drag\\\": \\\"False\\\", \\\"__current_case__\\\": 2, \\\"override_apollo_plugins\\\": \\\"False\\\", \\\"jbmenu\\\": {\\\"track_menu\\\": []}, \\\"annotation\\\": null, \\\"data_format_select\\\": \\\"gene_calls\\\"}}]}]\", \"plugins\": \"{\\\"GCContent\\\": \\\"false\\\", \\\"Bookmarks\\\": \\\"false\\\", \\\"theme\\\": \\\"\\\", \\\"ComboTrackSelector\\\": \\\"false\\\"}\", \"action\": \"{\\\"action_select\\\": \\\"create\\\", \\\"__current_case__\\\": 0}\", \"gencode\": \"\\\"11\\\"\", \"uglyTestingHack\": \"\\\"\\\"\", \"chromInfo\": \"\\\"/usr/local/galaxy/galaxy-dist/tool-data/shared/ucsc/chrom/?.len\\\"\", \"jbgen\": \"{\\\"trackPadding\\\": \\\"20\\\", \\\"show_tracklist\\\": \\\"true\\\", \\\"show_overview\\\": \\\"true\\\", \\\"show_nav\\\": \\\"true\\\", \\\"aboutDescription\\\": \\\"\\\", \\\"defaultLocation\\\": \\\"\\\", \\\"hideGenomeOptions\\\": \\\"false\\\", \\\"shareLink\\\": \\\"true\\\", \\\"show_menu\\\": \\\"true\\\"}\"}", + "tool_version": "0.7.0.3", + "type": "tool", + "uuid": "2a2aad62-4281-4bd1-bb5c-cd8bc078ec85", + "workflow_outputs": [ + { + "label": "jbrowse_html", + "output_name": "output", + "uuid": "adfd738e-0046-4e26-a338-254cdcb175af" + } + ] + } + ], + "parent_id": "variant-analysis/microbial-variants", + "path": "topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.ga", + "tags": [ + "variant-analysis" + ], + "test_results": null, + "tests": true, + "title": "Microbial Variant Calling", + "topic_id": "variant-analysis", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/variant-analysis-microbial-variants/versions/microbial-variant-calling", + "tutorial_id": "microbial-variants", + "url": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/variant-analysis/tutorials/microbial-variants/workflows/microbial_variant_calling.html", + "version": 4, + "wfid": "variant-analysis-microbial-variants", + "wfname": "microbial-variant-calling", + "workflow": "microbial_variant_calling.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/0.7.0.3", + "toolshed.g2.bx.psu.edu/repos/iuc/snippy/snippy/3.2" + ], + "workflowhub_id": "1093" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.582600" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/beacon_cnv_query/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + } + ], + "dir": "topics/variant-analysis/tutorials/beacon_cnv_query", + "edam_operation": [ + "Genetic variation analysis", + "Service discovery", + "Database search" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "follow_up_training": [ + { + "topic_name": "variant-analysis", + "tutorials": [ + "beaconise_1000hg" + ], + "type": "internal" + } + ], + "hands_on": true, + "id": "variant-analysis/beacon_cnv_query", + "inexact_supported_servers": [ + "UseGalaxy.eu" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Understanding Beacon Databases involves grasping their purpose and significance in genomic research and data sharing.", + "Mastering the Beacon2 CNV Tool includes developing skills to effectively query and analyze specific CNVs within the Beacon2 database.", + "Efficient Querying for CNVs focuses on accurate data retrieval and precise query formulation using the Beacon2 tool.", + "Hands-On Application provides practical experience in querying Beacons, ensuring data integrity, and troubleshooting queries.", + "Recognizing the Importance of CNVs highlights the role of CNVs in genetic variation and their relevance in research using Beacon databases." + ], + "layout": "tutorial_hands_on", + "level": "Introductory", + "license": "CC-BY-4.0", + "mod_date": "2024-08-06", + "objectives": [ + "Comprehend the concept of Beacon databases and their role in genomic research.", + "Demonstrate proficiency in querying Beacon databases to identify and analyze specific Copy Number Variants (CNVs)." + ], + "pageviews": 8, + "priority": 1, + "pub_date": "2024-08-06", + "questions": [ + "What does the term \"Beacon\" refer to in the context of genomic databases?", + "How can the Beacon2 CNV tool be utilized to verify the presence of specific Copy Number Variants (CNVs)?" + ], + "short_id": "T00448", + "short_tools": [ + "beacon2_cnv" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "data-management", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30M", + "title": "Querying a Beacon Database for Copy Number Variants (CNVs)", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/beacon2_cnv/beacon2_cnv/2.1.1+galaxy0" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "beacon_cnv_query", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/beacon_cnv_query/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/beacon_cnv_query/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/beacon_cnv_query/tutorial.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 69, + "visitors": 6, + "zenodo_link": "https://zenodo.org/records/10658688" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "text_processing", + "owner": "bgruening", + "revisions": "d698c222f354", + "tool_panel_section_label": "Text Manipulation", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bwa", + "owner": "devteam", + "revisions": "e188dc7a68e6", + "tool_panel_section_label": "Mapping", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "bamtools_split_ref", + "owner": "iuc", + "revisions": "9b520009db81", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "fastp", + "owner": "iuc", + "revisions": "65b93b623c77", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "iqtree", + "owner": "iuc", + "revisions": "24d024316465", + "tool_panel_section_label": "Evolution", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "ivar_consensus", + "owner": "iuc", + "revisions": "40737febe339", + "tool_panel_section_label": "Virology", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "qualimap_bamqc", + "owner": "iuc", + "revisions": "19ece8afbaab", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "samtools_view", + "owner": "iuc", + "revisions": "5826298f6a73", + "tool_panel_section_label": "SAM/BAM", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "seqtk", + "owner": "iuc", + "revisions": "3da72230c066", + "tool_panel_section_label": "FASTA/FASTQ", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "vapor", + "owner": "iuc", + "revisions": "244812f5bd1f", + "tool_panel_section_label": "Metagenomic Analysis", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "collapse_collections", + "owner": "nml", + "revisions": "90981f86000f", + "tool_panel_section_label": "Collection Operations", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "mafft", + "owner": "rnateam", + "revisions": "bf28a8cff401", + "tool_panel_section_label": "Multiple Alignments", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: text_processing\n owner: bgruening\n revisions: d698c222f354\n tool_panel_section_label: Text Manipulation\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bwa\n owner: devteam\n revisions: e188dc7a68e6\n tool_panel_section_label: Mapping\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: bamtools_split_ref\n owner: iuc\n revisions: 9b520009db81\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: fastp\n owner: iuc\n revisions: 65b93b623c77\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: iqtree\n owner: iuc\n revisions: 24d024316465\n tool_panel_section_label: Evolution\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: ivar_consensus\n owner: iuc\n revisions: 40737febe339\n tool_panel_section_label: Virology\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: qualimap_bamqc\n owner: iuc\n revisions: 19ece8afbaab\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: samtools_view\n owner: iuc\n revisions: 5826298f6a73\n tool_panel_section_label: SAM/BAM\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: seqtk\n owner: iuc\n revisions: 3da72230c066\n tool_panel_section_label: FASTA/FASTQ\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: vapor\n owner: iuc\n revisions: 244812f5bd1f\n tool_panel_section_label: Metagenomic Analysis\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: collapse_collections\n owner: nml\n revisions: 90981f86000f\n tool_panel_section_label: Collection Operations\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: mafft\n owner: rnateam\n revisions: bf28a8cff401\n tool_panel_section_label: Multiple Alignments\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/aiv-analysis/tutorial.json", + "contributors": [ + { + "affiliations": [ + "by-covid", + "uni-freiburg", + "elixir-europe" + ], + "elixir_node": "de", + "fediverse": "https://scholar.social/@zerodivision", + "fediverse_flavor": "mastodon", + "id": "wm75", + "joined": "2017-09", + "matrix": "wm75:matrix.org", + "name": "Wolfgang Maier", + "orcid": "0000-0002-9464-6640", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/wm75/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/wm75.json" + } + ], + "dir": "topics/variant-analysis/tutorials/aiv-analysis", + "edam_operation": [ + "Sequencing quality control", + "Sequence contamination filtering", + "Genome indexing", + "Sequence file editing", + "De-novo assembly", + "Sequence analysis", + "Read mapping", + "Sequence alignment analysis", + "Phylogenetic analysis", + "Sequence alignment", + "Data retrieval", + "Multiple sequence alignment", + "Generation", + "Data handling" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/aiv-analysis", + "inexact_supported_servers": [ + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Reassortment of gene segments makes reference-based mapping of influenza sequencing data challenging", + "An alternative to *de-novo* assembly can be mapping to a dynamically chosen reference genome", + "Variant calling and consensus genome construction can follow workflows used also for other viral sequence data", + "Standard phylogenetic tools can be used to find relationships between influenza samples but should be used on a per-segment basis" + ], + "layout": "tutorial_hands_on", + "level": "Intermediate", + "license": "CC-BY-4.0", + "mod_date": "2024-03-20", + "objectives": [ + "Determine how reassortment impacts reference-based mapping approaches", + "Use a collection of per-segment reference sequences to construct a hybrid reference genome that is sufficiently close to a sequenced sample to be useful as a reference for mapping", + "Construct a sample consensus genome from mapped reads", + "Generate per-segment phylogenetic trees of AIV consensus sequences" + ], + "pageviews": 1792, + "pub_date": "2022-11-21", + "questions": [ + "With reassortment of gene segments being a common event in avian influenza virus (AIV) evolution, does it make sense to use a reference-based mapping approach for constructing consensus genome sequences for AIV samples?", + "Is it possible to reuse existing tools and workflows developed for the analysis of sequencing data from other viruses?", + "How can we obtain meaningful phylogenetic insight from AIV consensus sequences?" + ], + "short_id": "T00308", + "short_tools": [ + "Grep1", + "fastp", + "upload1", + "samtools_view", + "bamtools_split_ref", + "tp_find_and_replace", + "rbc_mafft", + "seqtk_subseq", + "qualimap_bamqc", + "Show beginning1", + "vapor", + "iqtree", + "ivar_consensus", + "__RELABEL_FROM_FILE__", + "bwa_mem", + "collapse_dataset" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "one-health", + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "virology", + "one-health" + ], + "time_estimation": "4H", + "title": "Avian influenza viral strain analysis from gene segment sequencing data", + "tools": [ + "Grep1", + "Show beginning1", + "__RELABEL_FROM_FILE__", + "toolshed.g2.bx.psu.edu/repos/bgruening/text_processing/tp_find_and_replace/1.1.4", + "toolshed.g2.bx.psu.edu/repos/devteam/bwa/bwa_mem/0.7.17.2", + "toolshed.g2.bx.psu.edu/repos/iuc/bamtools_split_ref/bamtools_split_ref/2.5.2+galaxy1", + "toolshed.g2.bx.psu.edu/repos/iuc/fastp/fastp/0.23.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/iqtree/iqtree/2.1.2+galaxy2", + "toolshed.g2.bx.psu.edu/repos/iuc/ivar_consensus/ivar_consensus/1.4.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/qualimap_bamqc/qualimap_bamqc/2.2.2d+galaxy3", + "toolshed.g2.bx.psu.edu/repos/iuc/samtools_view/samtools_view/1.15.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/seqtk/seqtk_subseq/1.3.1", + "toolshed.g2.bx.psu.edu/repos/iuc/vapor/vapor/1.0.2+galaxy3", + "toolshed.g2.bx.psu.edu/repos/nml/collapse_collections/collapse_dataset/5.1.0", + "toolshed.g2.bx.psu.edu/repos/rnateam/mafft/rbc_mafft/7.520+galaxy0", + "upload1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "aiv-analysis", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/aiv-analysis/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/aiv-analysis/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/aiv-analysis/tutorial.json" + }, + "version": 9, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 166, + "visitors": 1198 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "cnv_phenopacket", + "owner": "iuc", + "revisions": "61aad58c7b2d", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "cnv_vcf2json", + "owner": "iuc", + "revisions": "7d2d2e3b9891", + "tool_panel_section_label": "Variant Calling", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: cnv_phenopacket\n owner: iuc\n revisions: 61aad58c7b2d\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: cnv_vcf2json\n owner: iuc\n revisions: 7d2d2e3b9891\n tool_panel_section_label: Variant Calling\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/beaconise_1000hg/tutorial.json", + "contributors": [ + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "email": "k.jumah@bradford.ac.uk", + "id": "khaled196", + "joined": "2022-09", + "name": "Khaled Jum\u2019ah", + "orcid": "0000-0001-5481-8893", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/khaled196/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/khaled196.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "kkamieniecka", + "joined": "2018-08", + "name": "Katarzyna Kamieniecka", + "orcid": "0009-0004-2454-5950", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/kkamieniecka/", + "twitter": "katemurat", + "url": "https://training.galaxyproject.org/training-material/api/contributors/kkamieniecka.json" + }, + { + "affiliations": [ + "elixir-europe" + ], + "elixir_node": "uk", + "id": "poterlowicz-lab", + "joined": "2017-09", + "name": "Krzysztof Poterlowicz", + "orcid": "0000-0001-6173-5674", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/poterlowicz-lab/", + "twitter": "bioinfbrad", + "url": "https://training.galaxyproject.org/training-material/api/contributors/poterlowicz-lab.json" + } + ], + "dir": "topics/variant-analysis/tutorials/beaconise_1000hg", + "edam_operation": [ + "Service discovery", + "Database search", + "Genetic variation analysis" + ], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "variant-analysis/beaconise_1000hg", + "inexact_supported_servers": [ + "UseGalaxy.eu" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Understanding Beacons involves grasping their definition and concept, recognizing their significance in efficient data management, and exploring diverse use cases for these essential data structures.", + "Mastering MongoDB for Beacon Creation entails familiarizing yourself with the MongoDB database system, acquiring the skills to construct Beacons for advancing institutional data management, and exploring tailored MongoDB features for efficient Beacon development.", + "Effective Data Preparation for Beacons entails mastering techniques for organizing variant data, ensuring proper formatting of metadata to meet Beacon requirements, and acknowledging the crucial role of well-prepared data in optimizing Beacon functionality.", + "Achieve seamless data importation into Beacons by following a comprehensive step-by-step guide, prioritizing data integrity throughout the process, and acquiring skills in effective troubleshooting and error handling.", + "Efficiently querying Beacons for variants involves mastering diverse querying methods, leveraging MongoDB's capabilities to enhance search precision, and emphasizing the necessity for precise and efficient queries within Beacon structures." + ], + "layout": "tutorial_hands_on", + "level": "Advanced", + "license": "CC-BY-4.0", + "mod_date": "2024-08-07", + "objectives": [ + "Comprehend the fundamental concepts and applications of Beacons", + "Apply skills in utilizing MongoDB to construct and manage Beacons", + "Analyze and transform variants and metadata into structures compatible with Beacon requirements", + "Execute a step-by-step process to import data into Beacons", + "Develop the ability to query Beacons for variants" + ], + "pageviews": 8, + "priority": 2, + "pub_date": "2024-08-06", + "questions": [ + "What does the term \"Beacon\" refer to?", + "How can MongoDB be employed to establish a Beacon tailored for your institution?", + "In what manner can variant data and metadata be readied into a format compatible with Beacons?", + "What are the steps involved in importing data into a Beacon seamlessly?", + "How does one perform queries on a Beacon to retrieve information about variants?" + ], + "requirements": [ + { + "link": "http://swcarpentry.github.io/shell-novice/", + "title": "The Unix Shell", + "type": "external" + }, + { + "link": "https://swcarpentry.github.io/git-novice/", + "title": "Version Control with Git", + "type": "external" + }, + { + "topic_name": "variant-analysis", + "tutorials": [ + "beacon_cnv_query" + ], + "type": "internal" + } + ], + "short_id": "T00449", + "short_tools": [ + "cnv_vcf2json", + "cnv_phenopacket", + "beacon2_cnv", + "beacon2_import" + ], + "slides": false, + "slides_recordings": false, + "subtopic": "data-management", + "supported_servers": { + "exact": [], + "inexact": [ + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "2H", + "title": "Working with Beacon V2: A Comprehensive Guide to Creating, Uploading, and Searching for Variants with Beacons", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/beacon2_cnv/beacon2_cnv/2.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/beacon2_import/beacon2_import/2.1.1+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/cnv_phenopacket/cnv_phenopacket/1.0.2+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/cnv_vcf2json/cnv_vcf2json/1.1.0+galaxy0.1", + "toolshed.g2.bx.psu.edu/repos/iuc/cnv_vcf2json/cnv_vcf2json/1.1.o+galaxy0.1" + ], + "topic_name": "variant-analysis", + "topic_name_human": "Variant Analysis", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "beaconise_1000hg", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/variant-analysis/tutorials/beaconise_1000hg/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/beaconise_1000hg/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/variant-analysis/tutorials/beaconise_1000hg/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 0, + "visitors": 7, + "zenodo_link": "https://zenodo.org/records/10658688" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "deeptools_bam_coverage", + "owner": "bgruening", + "revisions": "0e49b109abc2", + "tool_panel_section_label": "deepTools", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "31a35811dda6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "31a35811dda6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "31a35811dda6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "31a35811dda6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + }, + { + "name": "circos", + "owner": "iuc", + "revisions": "31a35811dda6", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: deeptools_bam_coverage\n owner: bgruening\n revisions: 0e49b109abc2\n tool_panel_section_label: deepTools\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: 31a35811dda6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: 31a35811dda6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: 31a35811dda6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: 31a35811dda6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n- name: circos\n owner: iuc\n revisions: 31a35811dda6\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/circos-microbial/tutorial.json", + "contributions": { + "authorship": [ + "hexylena" + ], + "funding": [ + "gallantries" + ] + }, + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/visualisation/tutorials/circos-microbial", + "edam_operation": [ + "Sequence visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.eu", + "UseGalaxy.fr" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "visualisation/circos-microbial", + "inexact_supported_servers": [ + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Circos is incredibly customisable", + "Not all customisations have to be done with rules, but they can be a useful method" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-01-15", + "objectives": [ + "Plot an *E. coli* genome in Galaxy", + "With tracks for the annotations, sequencing data, and variants." + ], + "pageviews": 696, + "pub_date": "2023-11-08", + "questions": [ + "How can I visualise common genomic datasets like GFF3, BigWig, and VCF" + ], + "requirements": [ + { + "topic_name": "visualisation", + "tutorials": [ + "circos" + ], + "type": "internal" + } + ], + "short_id": "T00373", + "short_tools": [ + "circos", + "deeptools_bam_coverage", + "Cut1", + "circos_wiggle_to_scatter", + "circos_gc_skew", + "circos_interval_to_tile", + "circos_interval_to_text", + "gff2bed1" + ], + "slides": false, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + } + ], + "inexact": [ + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ] + }, + "symlink": null, + "time_estimation": "30m", + "title": "Ploting a Microbial Genome with Circos", + "tools": [ + "Cut1", + "gff2bed1", + "toolshed.g2.bx.psu.edu/repos/bgruening/deeptools_bam_coverage/deeptools_bam_coverage/3.5.4+galaxy0", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_gc_skew/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_interval_to_text/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_interval_to_tile/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_wiggle_to_scatter/0.69.8+galaxy9" + ], + "topic_name": "visualisation", + "topic_name_human": "Visualisation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "circos-microbial", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/visualisation/tutorials/circos-microbial/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/circos-microbial/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/circos-microbial/tutorial.json" + }, + "version": 2, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 81, + "visitors": 547, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9760-8992", + "name": "Helena Rasche" + } + ], + "description": "This workflow will create a simple plot of a microbial sized genome (e.g. E. coli) using a couple of datasets like sequencing depth (bigwigs), gff3 formatted annotations, and some variants.", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenome\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nGenes\"]\n 10[label=\"Circos: bigWig to Scatter\"]\n 3 -> 10 [label=\"output\"]\n 11[label=\"Circos: bigWig to Scatter\"]\n 4 -> 11 [label=\"output\"]\n 12[label=\"Cut\"]\n 5 -> 12 [label=\"output\"]\n 13[label=\"Circos: bigWig to Scatter\"]\n 6 -> 13 [label=\"output\"]\n 14[label=\"Circos: Interval to Tiles\"]\n 8 -> 14 [label=\"out_file1\"]\n 15[label=\"Circos\"]\n 0 -> 15 [label=\"output\"]\n 10 -> 15 [label=\"output\"]\n 12 -> 15 [label=\"out_file1\"]\n 9 -> 15 [label=\"output\"]\n 11 -> 15 [label=\"output\"]\n 7 -> 15 [label=\"output\"]\n 14 -> 15 [label=\"output\"]\n 14 -> 15 [label=\"output\"]\n 13 -> 15 [label=\"output\"]\n kad540557b8364f689d647132c059c53e[color=lightseagreen,label=\"Output\\nplot\"]\n 15 -> kad540557b8364f689d647132c059c53e\n 2[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRNA Seq Coverage 1\"]\n 3[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nRNA Seq Coverage 2\"]\n 4[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nDNA Sequencing Coverage\"]\n 5[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nVariants\"]\n 6[label=\"GC Skew\"]\n 0 -> 6 [label=\"output\"]\n 7[label=\"Circos: Interval to Circos Text Labels\"]\n 1 -> 7 [label=\"output\"]\n 8[label=\"GFF-to-BED\"]\n 1 -> 8 [label=\"output\"]\n 9[label=\"Circos: bigWig to Scatter\"]\n 2 -> 9 [label=\"output\"]\n}", + "history": [ + { + "hash": "42fa4f8afe5470697772183162d5ef7f270c080d", + "message": "add circos microbial tutorial", + "num": 1, + "short_hash": "42fa4f8af", + "unix": "1699018150" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genome" + } + ], + "label": "Genome", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 0, + "top": 0 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"fasta\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "7b34e140-cb9e-4f9c-8695-b92070cdd475", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Genes" + } + ], + "label": "Genes", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 21, + "top": 78 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"gff3\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "14a08e58-6af2-4325-9cb1-4d3f8202d634", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 2, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "RNA Seq Coverage (1)" + } + ], + "label": "RNA Seq Coverage (1)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 100, + "top": 157 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "a50989ca-b688-4080-a887-91a6cfc44c90", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 3, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "RNA Seq Coverage (2)" + } + ], + "label": "RNA Seq Coverage (2)", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 126, + "top": 257 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"bigwig\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "0b31a8ef-e565-435e-93fa-f56e28ed0fc7", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 4, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "DNA Sequencing Coverage" + } + ], + "label": "DNA Sequencing Coverage", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 137, + "top": 337 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"bigwig\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "d85e42df-7e8a-4b8f-99c6-a21636fd4ddd", + "when": null, + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 5, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "Variants" + } + ], + "label": "Variants", + "name": "Input dataset", + "outputs": [], + "position": { + "left": 188, + "top": 439 + }, + "tool_id": null, + "tool_state": "{\"optional\": false, \"format\": [\"vcf\"], \"tag\": null}", + "tool_version": null, + "type": "data_input", + "uuid": "dde6262d-7930-4861-b1dd-b9b0043d07af", + "when": null, + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nGenome\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nGenes\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 10[\"Circos: bigWig to Scatter\"];\n 3 -->|output| 10;\n 11[\"Circos: bigWig to Scatter\"];\n 4 -->|output| 11;\n 12[\"Cut\"];\n 5 -->|output| 12;\n 13[\"Circos: bigWig to Scatter\"];\n 6 -->|output| 13;\n 14[\"Circos: Interval to Tiles\"];\n 8 -->|out_file1| 14;\n 15[\"Circos\"];\n 0 -->|output| 15;\n 10 -->|output| 15;\n 12 -->|out_file1| 15;\n 9 -->|output| 15;\n 11 -->|output| 15;\n 7 -->|output| 15;\n 14 -->|output| 15;\n 14 -->|output| 15;\n 13 -->|output| 15;\n ad540557-b836-4f68-9d64-7132c059c53e[\"Output\\nplot\"];\n 15 --> ad540557-b836-4f68-9d64-7132c059c53e;\n style ad540557-b836-4f68-9d64-7132c059c53e stroke:#2c3143,stroke-width:4px;\n 2[\"\u2139\ufe0f Input Dataset\\nRNA Seq Coverage 1\"];\n style 2 stroke:#2c3143,stroke-width:4px;\n 3[\"\u2139\ufe0f Input Dataset\\nRNA Seq Coverage 2\"];\n style 3 stroke:#2c3143,stroke-width:4px;\n 4[\"\u2139\ufe0f Input Dataset\\nDNA Sequencing Coverage\"];\n style 4 stroke:#2c3143,stroke-width:4px;\n 5[\"\u2139\ufe0f Input Dataset\\nVariants\"];\n style 5 stroke:#2c3143,stroke-width:4px;\n 6[\"GC Skew\"];\n 0 -->|output| 6;\n 7[\"Circos: Interval to Circos Text Labels\"];\n 1 -->|output| 7;\n 8[\"GFF-to-BED\"];\n 1 -->|output| 8;\n 9[\"Circos: bigWig to Scatter\"];\n 2 -->|output| 9;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Circos for E. Coli", + "outputs": [ + { + "annotation": "", + "content_id": "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9", + "errors": null, + "id": 15, + "input_connections": { + "reference_genome|ref|genome_fasta": { + "id": 0, + "output_name": "output" + }, + "sec_tdd|data_0|plot_format|data_source": { + "id": 10, + "output_name": "output" + }, + "sec_tdd|data_1|plot_format|data_source": { + "id": 12, + "output_name": "out_file1" + }, + "sec_tdd|data_2|plot_format|data_source": { + "id": 9, + "output_name": "output" + }, + "sec_tdd|data_3|plot_format|data_source": { + "id": 11, + "output_name": "output" + }, + "sec_tdd|data_4|plot_format|data_source": { + "id": 7, + "output_name": "output" + }, + "sec_tdd|data_5|plot_format|data_source": { + "id": 14, + "output_name": "output" + }, + "sec_tdd|data_6|plot_format|data_source": { + "id": 14, + "output_name": "output" + }, + "sec_tdd|data_7|plot_format|data_source": { + "id": 13, + "output_name": "output" + } + }, + "inputs": [], + "label": null, + "name": "Circos", + "outputs": [ + { + "name": "output_png", + "type": "png" + }, + { + "name": "karyotype_txt", + "type": "tabular" + } + ], + "position": { + "left": 989, + "top": 340 + }, + "post_job_actions": { + "HideDatasetActionkaryotype_txt": { + "action_arguments": {}, + "action_type": "HideDatasetAction", + "output_name": "karyotype_txt" + }, + "RenameDatasetActionoutput_png": { + "action_arguments": { + "newname": "Circos plot" + }, + "action_type": "RenameDatasetAction", + "output_name": "output_png" + } + }, + "tool_id": "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9", + "tool_shed_repository": { + "changeset_revision": "31a35811dda6", + "name": "circos", + "owner": "iuc", + "tool_shed": "toolshed.g2.bx.psu.edu" + }, + "tool_state": "{\"ideogram\": {\"limit_chromosomes\": null, \"chromosomes_reverse\": null, \"units\": \"kb\", \"spacing\": \"0.3\", \"pairwise_spacing\": [], \"radius\": \"0.9\", \"thickness\": \"10.0\", \"angle_offset\": \"-90\", \"angle_orientation\": \"clockwise\", \"ideogram_labels\": {\"show_label\": true, \"radius_offset\": \"0.075\", \"size\": \"48\", \"parallel\": true}, \"bands\": {\"show_bands\": true, \"fill_bands\": true, \"band_transparency\": \"3\", \"band_stroke_thickness\": \"0\", \"band_stroke_color\": \"#000000\"}}, \"limits\": {\"max_ticks\": \"5000\", \"max_ideograms\": \"200\", \"max_links\": \"25000\", \"max_points_per_track\": \"25000\"}, \"outputs\": {\"png\": true, \"svg\": false, \"tar\": false}, \"plot_options\": {\"background\": {\"background_select\": \"color\", \"__current_case__\": 1, \"background_color\": \"#ffffff\"}, \"radius\": \"1500\", \"colour_profile\": null}, \"reference_genome\": {\"ref\": {\"ref_source\": \"history\", \"__current_case__\": 2, \"genome_fasta\": {\"__class__\": \"ConnectedValue\"}}}, \"scaling\": {\"zooms\": []}, \"sec_links\": {\"data\": []}, \"sec_tdd\": {\"data\": [{\"__index__\": 0, \"r1\": \"0.98\", \"r0\": \"0.92\", \"zdepth\": \"0\", \"plot_format\": {\"plot_format_select\": \"histogram-stacked\", \"__current_case__\": 1, \"data_source\": {\"__class__\": \"ConnectedValue\"}, \"format_specific\": {\"fill_color\": \"paired-12-qual\", \"stroke_color\": \"#000000\", \"stroke_color_alpha\": \"0.4\", \"stroke_thickness\": \"1\", \"fill_under\": true, \"extend_bins\": false}}, \"orientation\": false, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": []}, \"sec_axes\": {\"axes\": [], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}, {\"__index__\": 1, \"r1\": \"0.79\", \"r0\": \"0.6\", \"zdepth\": \"10\", \"plot_format\": {\"plot_format_select\": \"scatter\", \"__current_case__\": 5, \"data_source\": {\"__class__\": \"ConnectedValue\"}, \"format_specific\": {\"glyph\": \"triangle\", \"glyph_size\": \"6\", \"fill_color\": \"#dc8add\", \"fill_color_alpha\": \"1.0\", \"stroke_color\": \"#000000\", \"stroke_color_alpha\": \"1.0\", \"stroke_thickness\": \"0\"}}, \"orientation\": false, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": []}, \"sec_axes\": {\"axes\": [{\"__index__\": 0, \"radial_position\": {\"select\": \"data\", \"__current_case__\": 1, \"spacing\": \"5000.0\"}, \"y0\": \"0.0\", \"y1\": \"40000.0\", \"color\": \"#1a5fb4\", \"color_alpha\": \"0.4\", \"thickness\": \"1\"}], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}, {\"__index__\": 2, \"r1\": \"0.92\", \"r0\": \"0.86\", \"zdepth\": \"0\", \"plot_format\": {\"plot_format_select\": \"histogram\", \"__current_case__\": 0, \"data_source\": {\"__class__\": \"ConnectedValue\"}, \"format_specific\": {\"fill_color\": \"#8ff0a4\", \"fill_color_alpha\": \"1.0\", \"stroke_color\": \"#000000\", \"stroke_color_alpha\": \"1.0\", \"stroke_thickness\": \"1\", \"fill_under\": true, \"extend_bins\": false}}, \"orientation\": false, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": []}, \"sec_axes\": {\"axes\": [], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}, {\"__index__\": 3, \"r1\": \"0.86\", \"r0\": \"0.8\", \"zdepth\": \"0\", \"plot_format\": {\"plot_format_select\": \"histogram\", \"__current_case__\": 0, \"data_source\": {\"__class__\": \"ConnectedValue\"}, \"format_specific\": {\"fill_color\": \"#ffbe6f\", \"fill_color_alpha\": \"1.0\", \"stroke_color\": \"#000000\", \"stroke_color_alpha\": \"1.0\", \"stroke_thickness\": \"1\", \"fill_under\": true, \"extend_bins\": false}}, \"orientation\": false, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": []}, \"sec_axes\": {\"axes\": [], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}, {\"__index__\": 4, \"r1\": \"0.6\", \"r0\": \"0.55\", \"zdepth\": \"0\", \"plot_format\": {\"plot_format_select\": \"text\", \"__current_case__\": 7, \"data_source\": {\"__class__\": \"ConnectedValue\"}, \"format_specific\": {\"label_size\": \"18\", \"link\": {\"show_link\": \"no\", \"__current_case__\": 1}, \"snuggle\": {\"label_snuggle\": \"yes\", \"__current_case__\": 0, \"max_snuggle_distance\": \"2\", \"snuggle_sampling\": \"2\", \"snuggle_tolerance\": \"0.25\", \"snuggle_link_overlap_test\": true, \"snuggle_link_overlap_tolerance\": \"2.0\", \"snuggle_refine\": true}}}, \"orientation\": false, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": [{\"__index__\": 0, \"conditions\": [{\"__index__\": 0, \"application\": {\"application_select\": \"var\", \"__current_case__\": 5, \"varname\": \"strand\", \"cond_select\": \"<\", \"varvalue\": \"0\"}}], \"actions\": [{\"__index__\": 0, \"action\": {\"action_select\": \"stroke_color\", \"__current_case__\": 3, \"action_value\": \"#1a5fb4\"}}], \"continue_flow\": false}, {\"__index__\": 1, \"conditions\": [{\"__index__\": 0, \"application\": {\"application_select\": \"var\", \"__current_case__\": 5, \"varname\": \"strand\", \"cond_select\": \">\", \"varvalue\": \"0\"}}], \"actions\": [{\"__index__\": 0, \"action\": {\"action_select\": \"stroke_color\", \"__current_case__\": 3, \"action_value\": \"#ffdcfc\"}}], \"continue_flow\": false}]}, \"sec_axes\": {\"axes\": [], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}, {\"__index__\": 5, \"r1\": \"0.7\", \"r0\": \"0.6\", \"zdepth\": \"0\", \"plot_format\": {\"plot_format_select\": \"tile\", \"__current_case__\": 6, \"data_source\": {\"__class__\": \"ConnectedValue\"}, \"format_specific\": {\"fill_color\": \"#1c71d8\", \"fill_color_alpha\": \"1.0\", \"stroke_color\": \"#000000\", \"stroke_color_alpha\": \"1.0\", \"stroke_thickness\": \"1\", \"layers\": \"15\", \"thickness\": \"15.0\", \"padding\": \"8.0\", \"margin\": \"0.002\", \"overflow\": {\"overflow_behavior\": \"hide\", \"__current_case__\": 0}}}, \"orientation\": false, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": [{\"__index__\": 0, \"conditions\": [{\"__index__\": 0, \"application\": {\"application_select\": \"var\", \"__current_case__\": 5, \"varname\": \"strand\", \"cond_select\": \"<\", \"varvalue\": \"0\"}}], \"actions\": [{\"__index__\": 0, \"action\": {\"action_select\": \"show\", \"__current_case__\": 0, \"action_value\": false}}], \"continue_flow\": false}]}, \"sec_axes\": {\"axes\": [], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}, {\"__index__\": 6, \"r1\": \"0.53\", \"r0\": \"0.45\", \"zdepth\": \"0\", \"plot_format\": {\"plot_format_select\": \"tile\", \"__current_case__\": 6, \"data_source\": {\"__class__\": \"ConnectedValue\"}, \"format_specific\": {\"fill_color\": \"#000000\", \"fill_color_alpha\": \"1.0\", \"stroke_color\": \"#000000\", \"stroke_color_alpha\": \"1.0\", \"stroke_thickness\": \"1\", \"layers\": \"15\", \"thickness\": \"15.0\", \"padding\": \"8.0\", \"margin\": \"0.002\", \"overflow\": {\"overflow_behavior\": \"hide\", \"__current_case__\": 0}}}, \"orientation\": true, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": [{\"__index__\": 0, \"conditions\": [{\"__index__\": 0, \"application\": {\"application_select\": \"var\", \"__current_case__\": 5, \"varname\": \"strand\", \"cond_select\": \">\", \"varvalue\": \"0\"}}], \"actions\": [{\"__index__\": 0, \"action\": {\"action_select\": \"show\", \"__current_case__\": 0, \"action_value\": false}}], \"continue_flow\": false}, {\"__index__\": 1, \"conditions\": [{\"__index__\": 0, \"application\": {\"application_select\": \"always\", \"__current_case__\": 0}}], \"actions\": [{\"__index__\": 0, \"action\": {\"action_select\": \"fill_color\", \"__current_case__\": 2, \"action_value\": \"#99c1f1\"}}], \"continue_flow\": false}]}, \"sec_axes\": {\"axes\": [], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}, {\"__index__\": 7, \"r1\": \"0.45\", \"r0\": \"0.35\", \"zdepth\": \"0\", \"plot_format\": {\"plot_format_select\": \"histogram\", \"__current_case__\": 0, \"data_source\": {\"__class__\": \"RuntimeValue\"}, \"format_specific\": {\"fill_color\": \"#ff5757\", \"fill_color_alpha\": \"1.0\", \"stroke_color\": \"#000000\", \"stroke_color_alpha\": \"1.0\", \"stroke_thickness\": \"1\", \"fill_under\": true, \"extend_bins\": false}}, \"orientation\": false, \"minsize\": \"0.0\", \"minmax\": {\"minmax_select\": \"no\", \"__current_case__\": 1}, \"sec_rule\": {\"rules\": [{\"__index__\": 0, \"conditions\": [{\"__index__\": 0, \"application\": {\"application_select\": \"value\", \"__current_case__\": 4, \"pos_gt\": null, \"pos_lt\": \"0.0\"}}], \"actions\": [{\"__index__\": 0, \"action\": {\"action_select\": \"fill_color\", \"__current_case__\": 2, \"action_value\": \"#5092f7\"}}], \"continue_flow\": false}]}, \"sec_axes\": {\"axes\": [], \"only_if_data\": \"always\"}, \"sec_bkgs\": {\"backgrounds\": [], \"only_if_data\": \"always\"}}]}, \"ticks\": {\"radius\": \"1.0\", \"skip_first_label\": true, \"skip_last_label\": false, \"tick_group\": [{\"__index__\": 0, \"spacing\": \"10.0\", \"size\": \"20.0\", \"color\": \"#000000\", \"ticks\": {\"show_tick_labels\": \"yes\", \"__current_case__\": 0, \"label_size\": \"20.0\", \"label_offset\": \"10.0\", \"format\": \"%d\", \"format_ext\": true}}, {\"__index__\": 1, \"spacing\": \"1.0\", \"size\": \"15.0\", \"color\": \"#000000\", \"ticks\": {\"show_tick_labels\": \"no\", \"__current_case__\": 1}}, {\"__index__\": 2, \"spacing\": \"0.25\", \"size\": \"10.0\", \"color\": \"#9a9996\", \"ticks\": {\"show_tick_labels\": \"no\", \"__current_case__\": 1}}]}, \"__page__\": null, \"__rerun_remap_job_id__\": null}", + "tool_version": "0.69.8+galaxy9", + "type": "tool", + "uuid": "57e242ff-94a2-4f96-b069-4f18ca730ab0", + "when": null, + "workflow_outputs": [ + { + "label": "plot", + "output_name": "output_png", + "uuid": "ad540557-b836-4f68-9d64-7132c059c53e" + } + ] + } + ], + "parent_id": "visualisation/circos-microbial", + "path": "topics/visualisation/tutorials/circos-microbial/workflows/main_workflow.ga", + "tags": [ + "name:circos", + "name:viz" + ], + "test_results": null, + "tests": true, + "title": "Circos for E. Coli", + "topic_id": "visualisation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/visualisation-circos-microbial/versions/main-workflow", + "tutorial_id": "circos-microbial", + "url": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos-microbial/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos-microbial/workflows/main_workflow.html", + "version": 1, + "wfid": "visualisation-circos-microbial", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "gff2bed1", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_gc_skew/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_interval_to_text/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_interval_to_tile/0.69.8+galaxy9", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos_wiggle_to_scatter/0.69.8+galaxy9" + ], + "workflowhub_id": "1253" + } + ], + "zenodo_link": "https://doi.org/10.5281/zenodo.3591856" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "circos", + "owner": "iuc", + "revisions": "c4bde687c846", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: circos\n owner: iuc\n revisions: c4bde687c846\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/circos/tutorial.json", + "contributors": [ + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "elixir_node": "de", + "former_affiliations": [ + "uni-freiburg", + "elixir-europe" + ], + "id": "gallardoalba", + "joined": "2020-11", + "name": "Crist\u00f3bal Gallardo", + "orcid": "0000-0002-5752-2155", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallardoalba/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/gallardoalba.json" + } + ], + "dir": "topics/visualisation/tutorials/circos", + "edam_operation": [ + "Sequence visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@Pasteur", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.org (Main)" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "visualisation/circos", + "inexact_supported_servers": [ + "UseGalaxy.cz", + "UseGalaxy.no" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Circos is an effective tool to make circular visualisation of high-dimensional datasets", + "Circos is often used for genomics, but can also be used for other types of data" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-06-14", + "objectives": [ + "Create a number of Circos plots using the Galaxy tool", + "Familiarise yourself with the various different track types" + ], + "pageviews": 5768253, + "pub_date": "2020-01-10", + "questions": [ + "What can the Circos Galaxy tool be used for?", + "How can I visualise common genomic datasets using Circos?" + ], + "recordings": [ + { + "captioners": [ + "beatrizserrano", + "hexylena", + "shiltemann", + "khanteymoori" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "50M", + "speakers": [ + "hexylena" + ], + "youtube_id": "tbqeUP67w-Y" + } + ], + "short_id": "T00321", + "short_tools": [ + "Grep1", + "circos", + "random_lines1", + "Cut1", + "Remove beginning1", + "upload1" + ], + "slides": true, + "slides_recordings": [ + { + "captioners": [ + "assuntad23", + "shiltemann" + ], + "date": "2021-02-15", + "galaxy_version": "21.01", + "length": "6M", + "speakers": [ + "hexylena" + ], + "youtube_id": "KCtI5KLp05k" + } + ], + "supported_servers": { + "exact": [ + { + "name": "Galaxy@Pasteur", + "url": "https://galaxy.pasteur.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "time_estimation": "2h", + "title": "Visualisation with Circos", + "tools": [ + "Cut1", + "Grep1", + "Remove beginning1", + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy12", + "upload1" + ], + "topic_name": "visualisation", + "topic_name_human": "Visualisation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "circos", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/visualisation/tutorials/circos/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/circos/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/circos/tutorial.json" + }, + "version": 20, + "video": false, + "video_versions": 1, + "video_view": 0, + "visit_duration": 257, + "visitors": 2088447, + "workflows": [ + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9760-8992", + "name": "Helena Rasche" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "Visualisation with Circos", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[label=\"Remove beginning\"]\n 2[label=\"Remove beginning\"]\n 3[label=\"Select\"]\n 4[label=\"Circos\"]\n 5[label=\"Cut\"]\n 1 -> 5 [label=\"out_file1\"]\n 6[label=\"Select random lines\"]\n 2 -> 6 [label=\"out_file1\"]\n 7[label=\"Cut\"]\n 3 -> 7 [label=\"out_file1\"]\n 8[label=\"Select random lines\"]\n 5 -> 8 [label=\"out_file1\"]\n 9[label=\"Circos\"]\n 0 -> 9 [label=\"output\"]\n 7 -> 9 [label=\"out_file1\"]\n 10[label=\"Circos\"]\n 0 -> 10 [label=\"output\"]\n 7 -> 10 [label=\"out_file1\"]\n 11[label=\"Circos\"]\n 0 -> 11 [label=\"output\"]\n 7 -> 11 [label=\"out_file1\"]\n 8 -> 11 [label=\"out_file1\"]\n 12[label=\"Circos\"]\n 0 -> 12 [label=\"output\"]\n 7 -> 12 [label=\"out_file1\"]\n 8 -> 12 [label=\"out_file1\"]\n 13[label=\"Circos\"]\n 0 -> 13 [label=\"output\"]\n 7 -> 13 [label=\"out_file1\"]\n 8 -> 13 [label=\"out_file1\"]\n 14[label=\"Circos\"]\n 0 -> 14 [label=\"output\"]\n 7 -> 14 [label=\"out_file1\"]\n 8 -> 14 [label=\"out_file1\"]\n 15[label=\"Circos\"]\n 0 -> 15 [label=\"output\"]\n 7 -> 15 [label=\"out_file1\"]\n 8 -> 15 [label=\"out_file1\"]\n 6 -> 15 [label=\"out_file1\"]\n 16[label=\"Circos\"]\n 0 -> 16 [label=\"output\"]\n 7 -> 16 [label=\"out_file1\"]\n 8 -> 16 [label=\"out_file1\"]\n 6 -> 16 [label=\"out_file1\"]\n}", + "history": [ + { + "hash": "9171ba4a5eac78f6d11602ae7ae3b0119cf86bd8", + "message": "add license, creators", + "num": 10, + "short_hash": "9171ba4a5", + "unix": "1684162572" + }, + { + "hash": "5cb78929f37d718b2d9940c706dad12700d44db2", + "message": "bump circos versions", + "num": 9, + "short_hash": "5cb78929f", + "unix": "1684161564" + }, + { + "hash": "b267c0f288fcd26ae0993c93dda57299d15b85fa", + "message": "Circos tutorial papercuts v3", + "num": 8, + "short_hash": "b267c0f28", + "unix": "1611269493" + }, + { + "hash": "fdc5b8d63f6af71eb210454389e49ce5f15a3cfd", + "message": "Circos tutorial papercuts v2", + "num": 7, + "short_hash": "fdc5b8d63", + "unix": "1611268784" + }, + { + "hash": "08953e54d37e1fce4e712730467decab3816d5de", + "message": "Circos tutorial papercuts", + "num": 6, + "short_hash": "08953e54d", + "unix": "1611265745" + }, + { + "hash": "cf8b1cb0509e73e534c234076c8bd055379823c5", + "message": "Update some workflow names for consistency", + "num": 5, + "short_hash": "cf8b1cb05", + "unix": "1598836271" + }, + { + "hash": "667ff3de9c4e13d341a6d864bd6dc826ef15ca04", + "message": "annotation", + "num": 4, + "short_hash": "667ff3de9", + "unix": "1579690769" + }, + { + "hash": "eb4d724e0064c77beb20efa626a0f28fd0500676", + "message": "Workflow renaming", + "num": 3, + "short_hash": "eb4d724e0", + "unix": "1579084895" + }, + { + "hash": "7da80b34185f4165852feb3bfe80d692609685db", + "message": "Workflows fix", + "num": 2, + "short_hash": "7da80b341", + "unix": "1578668175" + }, + { + "hash": "e80b7c41c65c1b9880dd6f5ee9947eeda080132d", + "message": "wip", + "num": 1, + "short_hash": "e80b7c41c", + "unix": "1539959179" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "hg18_karyotype.txt" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "6b65ad36-5c1b-42ac-879f-43a3f6e12818", + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"Remove beginning\"];\n 2[\"Remove beginning\"];\n 3[\"Select\"];\n 4[\"Circos\"];\n 5[\"Cut\"];\n 1 -->|out_file1| 5;\n 6[\"Select random lines\"];\n 2 -->|out_file1| 6;\n 7[\"Cut\"];\n 3 -->|out_file1| 7;\n 8[\"Select random lines\"];\n 5 -->|out_file1| 8;\n 9[\"Circos\"];\n 0 -->|output| 9;\n 7 -->|out_file1| 9;\n 10[\"Circos\"];\n 0 -->|output| 10;\n 7 -->|out_file1| 10;\n 11[\"Circos\"];\n 0 -->|output| 11;\n 7 -->|out_file1| 11;\n 8 -->|out_file1| 11;\n 12[\"Circos\"];\n 0 -->|output| 12;\n 7 -->|out_file1| 12;\n 8 -->|out_file1| 12;\n 13[\"Circos\"];\n 0 -->|output| 13;\n 7 -->|out_file1| 13;\n 8 -->|out_file1| 13;\n 14[\"Circos\"];\n 0 -->|output| 14;\n 7 -->|out_file1| 14;\n 8 -->|out_file1| 14;\n 15[\"Circos\"];\n 0 -->|output| 15;\n 7 -->|out_file1| 15;\n 8 -->|out_file1| 15;\n 6 -->|out_file1| 15;\n 16[\"Circos\"];\n 0 -->|output| 16;\n 7 -->|out_file1| 16;\n 8 -->|out_file1| 16;\n 6 -->|out_file1| 16;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Circos tutorial", + "outputs": [], + "parent_id": "visualisation/circos", + "path": "topics/visualisation/tutorials/circos/workflows/main_workflow.ga", + "tags": [ + "visualisation" + ], + "test_results": null, + "tests": false, + "title": "Circos tutorial", + "topic_id": "visualisation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/visualisation-circos/versions/main-workflow", + "tutorial_id": "circos", + "url": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos/workflows/main_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos/workflows/main_workflow.html", + "version": 7, + "wfid": "visualisation-circos", + "wfname": "main-workflow", + "workflow": "main_workflow.ga", + "workflow_tools": [ + "Cut1", + "Grep1", + "Remove beginning1", + "random_lines1", + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy12" + ], + "workflowhub_id": "1248" + }, + { + "creators": [ + { + "class": "Person", + "identifier": "0000-0001-9760-8992", + "name": "Helena Rasche" + }, + { + "class": "Person", + "identifier": "0000-0003-3803-468X", + "name": "Saskia Hiltemann" + } + ], + "description": "Visualisation with Circos", + "features": { + "comments": false, + "parameters": false, + "report": null, + "subworkflows": false + }, + "graph_dot": "digraph main {\n node [fontname=\"Atkinson Hyperlegible\", shape=box, color=white,style=filled,color=peachpuff,margin=\"0.2,0.2\"];\n edge [fontname=\"Atkinson Hyperlegible\"];\n 0[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 1[color=lightblue,label=\"\u2139\ufe0f Input Dataset\\nInput dataset\"]\n 2[label=\"Circos\"]\n 0 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 1 -> 2 [label=\"output\"]\n 3[label=\"Circos\"]\n 0 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n 1 -> 3 [label=\"output\"]\n}", + "history": [ + { + "hash": "9171ba4a5eac78f6d11602ae7ae3b0119cf86bd8", + "message": "add license, creators", + "num": 5, + "short_hash": "9171ba4a5", + "unix": "1684162572" + }, + { + "hash": "5cb78929f37d718b2d9940c706dad12700d44db2", + "message": "bump circos versions", + "num": 4, + "short_hash": "5cb78929f", + "unix": "1684161564" + }, + { + "hash": "b267c0f288fcd26ae0993c93dda57299d15b85fa", + "message": "Circos tutorial papercuts v3", + "num": 3, + "short_hash": "b267c0f28", + "unix": "1611269493" + }, + { + "hash": "fdc5b8d63f6af71eb210454389e49ce5f15a3cfd", + "message": "Circos tutorial papercuts v2", + "num": 2, + "short_hash": "fdc5b8d63", + "unix": "1611268784" + }, + { + "hash": "08953e54d37e1fce4e712730467decab3816d5de", + "message": "Circos tutorial papercuts", + "num": 1, + "short_hash": "08953e54d", + "unix": "1611265745" + } + ], + "inputs": [ + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 0, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "chrom.tab" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 10 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "cc54ba40-fba2-4330-b335-33d702e2eaa3", + "workflow_outputs": [] + }, + { + "annotation": "", + "content_id": null, + "errors": null, + "id": 1, + "input_connections": {}, + "inputs": [ + { + "description": "", + "name": "highlights.tab" + } + ], + "label": null, + "name": "Input dataset", + "outputs": [], + "position": { + "left": 10, + "top": 130 + }, + "tool_id": null, + "tool_state": "{\"optional\": false}", + "tool_version": null, + "type": "data_input", + "uuid": "8fb83ee3-f263-48c1-b024-f3bbb0415e41", + "workflow_outputs": [] + } + ], + "license": "AGPL-3.0-or-later", + "mermaid": "flowchart TD\n 0[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 0 stroke:#2c3143,stroke-width:4px;\n 1[\"\u2139\ufe0f Input Dataset\\nInput dataset\"];\n style 1 stroke:#2c3143,stroke-width:4px;\n 2[\"Circos\"];\n 0 -->|output| 2;\n 1 -->|output| 2;\n 1 -->|output| 2;\n 1 -->|output| 2;\n 3[\"Circos\"];\n 0 -->|output| 3;\n 1 -->|output| 3;\n 1 -->|output| 3;\n 1 -->|output| 3;", + "modified": "2024-08-18 00:06:26 +0000", + "name": "Circos: Nature workflow", + "outputs": [], + "parent_id": "visualisation/circos", + "path": "topics/visualisation/tutorials/circos/workflows/nature_workflow.ga", + "tags": [ + "visualisation" + ], + "test_results": null, + "tests": false, + "title": "Circos: Nature workflow", + "topic_id": "visualisation", + "trs_endpoint": "https://training.galaxyproject.org/training-material/api/ga4gh/trs/v2/tools/visualisation-circos/versions/nature-workflow", + "tutorial_id": "circos", + "url": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos/workflows/nature_workflow.ga", + "url_html": "https://training.galaxyproject.org/training-material/topics/visualisation/tutorials/circos/workflows/nature_workflow.html", + "version": 2, + "wfid": "visualisation-circos", + "wfname": "nature-workflow", + "workflow": "nature_workflow.ga", + "workflow_tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/circos/circos/0.69.8+galaxy12" + ], + "workflowhub_id": "1249" + } + ], + "zenodo_link": "https://zenodo.org/record/4494146" + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/bad-graphs/tutorial.json", + "contributions": { + "authorship": [ + "cxli233" + ], + "editing": [ + "hexylena" + ] + }, + "contributors": [ + { + "id": "cxli233", + "joined": "2023-11", + "name": "Chenxin Li", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/cxli233/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/cxli233.json" + }, + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + } + ], + "copyright": "\u00a9 Copyright 2022 C. Li", + "dir": "topics/visualisation/tutorials/bad-graphs", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "visualisation/bad-graphs", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "layout": "tutorial_slides", + "license": "MIT", + "logo": "GTN", + "mod_date": "2023-11-20", + "pageviews": 1008582, + "pub_date": "2023-11-20", + "short_id": "S00112", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Friends Don't Let Friends Make Bad Graphs", + "tools": [], + "topic_name": "visualisation", + "topic_name_human": "Visualisation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": true + }, + "tutorial_name": "bad-graphs", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/visualisation/tutorials/bad-graphs/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/bad-graphs/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/bad-graphs/slides.json" + }, + "version": 2, + "video": true, + "video_versions": 0, + "video_view": 0, + "visit_duration": 149, + "visitors": 425897, + "voice": { + "id": "Brian", + "lang": "en-GB", + "neural": true + } + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools: []\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/introduction/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + } + ], + "dir": "topics/visualisation/tutorials/introduction", + "edam_operation": [], + "edam_topic": [], + "exact_supported_servers": [], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": false, + "id": "visualisation/introduction", + "inexact_supported_servers": [ + "UseGalaxy.eu", + "UseGalaxy.org", + "UseGalaxy.org.au", + "UseGalaxy.fr" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "Visualizations are vital for the interpretation of large datasets", + "Galaxy has numerous visualization options available" + ], + "layout": "introduction_slides", + "license": "CC-BY-4.0", + "logo": "GTN", + "mod_date": "2023-01-12", + "pageviews": 5726884, + "priority": 1, + "pub_date": "2020-01-10", + "redirect_from": [ + "/topics/visualisation/slides/introduction", + "/short/visualisation/introduction/slides", + "/short/S00101" + ], + "short_id": "S00101", + "short_tools": [], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [], + "inexact": [ + { + "human": "Galaxy Europe", + "id": "eu", + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "human": "Galaxy Main", + "id": "us", + "name": "UseGalaxy.org", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "human": "Galaxy Australia", + "id": "au", + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + }, + { + "human": "Galaxy France", + "id": "fr", + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr", + "usegalaxy": true + } + ] + }, + "symlink": null, + "title": "Visualisations in Galaxy", + "tools": [], + "topic_name": "visualisation", + "topic_name_human": "Visualisation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "introduction", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/visualisation/tutorials/introduction/slides.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/introduction/slides.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/introduction/slides.json" + }, + "version": 1, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 152, + "visitors": 2063758 + }, + { + "admin_install": { + "install_repository_dependencies": true, + "install_resolver_dependencies": true, + "install_tool_dependencies": true, + "tools": [ + { + "name": "jbrowse", + "owner": "iuc", + "revisions": "17359b808b01", + "tool_panel_section_label": "Graph/Display Data", + "tool_shed_url": "https://toolshed.g2.bx.psu.edu/" + } + ] + }, + "admin_install_yaml": "---\ninstall_tool_dependencies: true\ninstall_repository_dependencies: true\ninstall_resolver_dependencies: true\ntools:\n- name: jbrowse\n owner: iuc\n revisions: 17359b808b01\n tool_panel_section_label: Graph/Display Data\n tool_shed_url: https://toolshed.g2.bx.psu.edu/\n", + "api": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/jbrowse/tutorial.json", + "contributors": [ + { + "affiliations": [ + "gallantries", + "by-covid", + "erasmusmc", + "elixir-europe", + "elixir-converge" + ], + "contact_for_training": false, + "elixir_node": "nl", + "former_affiliations": [ + "deNBI", + "avans-atgm", + "uni-freiburg" + ], + "id": "hexylena", + "joined": "2017-09", + "location": { + "country": "NL", + "lat": 51.91, + "lon": 4.46 + }, + "maintainer_contact": "gitter", + "matrix": "hexylena:matrix.org", + "name": "Helena Rasche", + "orcid": "0000-0001-9760-8992", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/hexylena/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/hexylena.json" + }, + { + "affiliations": [ + "CINECA-Project", + "gallantries", + "erasmusmc", + "elixir-europe", + "uni-freiburg" + ], + "bio": "Researcher at Erasmus Medical Center", + "bluesky": "shiltemann.bsky.social", + "contact_for_training": true, + "elixir_node": "nl", + "email": "saskia.hiltemann@gmail.com", + "fediverse": "https://mstdn.science/@shiltemann", + "fediverse_flavor": "mastodon", + "id": "shiltemann", + "joined": "2017-09", + "linkedin": "shiltemann", + "location": { + "country": "NL", + "lat": 51.912, + "lon": 4.462 + }, + "maintainer_contact": "gitter", + "matrix": "shiltemann:matrix.org", + "name": "Saskia Hiltemann", + "orcid": "0000-0003-3803-468X", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/shiltemann/", + "url": "https://training.galaxyproject.org/training-material/api/contributors/shiltemann.json" + }, + { + "avatar": "https://gallantries.github.io/assets/images/gallantries-logo.png", + "end_date": "2023-09-30", + "funder": true, + "funder_name": "Erasmus+ Programme", + "funding_id": "2020-1-NL01-KA203-064717", + "funding_statement": "This project (2020-1-NL01-KA203-064717) is funded with the support of the Erasmus+ programme of the European Union. Their funding has supported a large number of tutorials within the GTN across a wide array of topics.\n\"eu\n\"erasmus", + "funding_system": "erasmusplus", + "github": false, + "id": "gallantries", + "joined": "2020-09", + "members": [ + "abretaud", + "bebatut", + "colineroyaux", + "fpsom", + "hexylena", + "shiltemann", + "yvanlebras" + ], + "name": "Gallantries: Bridging Training Communities in Life Science, Environment and Health", + "page": "https://training.galaxyproject.org/training-material/hall-of-fame/gallantries/", + "short_name": "Gallantries", + "start_date": "2020-09-01", + "url": "https://training.galaxyproject.org/training-material/api/funders/gallantries.json" + } + ], + "dir": "topics/visualisation/tutorials/jbrowse", + "edam_operation": [ + "Genome visualisation" + ], + "edam_topic": [], + "exact_supported_servers": [ + "Galaxy@AuBi", + "UseGalaxy.eu", + "UseGalaxy.fr", + "UseGalaxy.no", + "UseGalaxy.org (Main)", + "UseGalaxy.org.au" + ], + "feedback_mean_note": null, + "feedback_number": 0, + "hands_on": true, + "id": "visualisation/jbrowse", + "inexact_supported_servers": [ + "GalaxyTrakr", + "UseGalaxy.cz" + ], + "js_requirements": { + "mathjax": null, + "mermaid": false + }, + "key_points": [ + "This tutorial can not exhaustively cover every data type, but maybe it provides inspiration for your own analyses", + "JBrowse is a great, workflow-compatible alternative to other genome browsers", + "You can build visualisations that summarise dozens of analyses in one visualisation" + ], + "layout": "tutorial_hands_on", + "license": "CC-BY-4.0", + "mod_date": "2024-02-29", + "objectives": [ + "Build several visualisations in JBrowse", + "Have basic familiarity with moving around JBrowse, and loading several data tracks" + ], + "pageviews": 5732004, + "pub_date": "2020-01-10", + "questions": [ + "How can I visualise features or blast data?", + "How can I visualise sequencing data in a workflow" + ], + "short_id": "T00322", + "short_tools": [ + "jbrowse" + ], + "slides": true, + "slides_recordings": false, + "supported_servers": { + "exact": [ + { + "name": "Galaxy@AuBi", + "url": "https://galaxy.mesocentre.uca.fr", + "usegalaxy": false + }, + { + "name": "UseGalaxy.eu", + "url": "https://usegalaxy.eu", + "usegalaxy": true + }, + { + "name": "UseGalaxy.fr", + "url": "https://usegalaxy.fr/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.no", + "url": "https://usegalaxy.no/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.org (Main)", + "url": "https://usegalaxy.org", + "usegalaxy": true + }, + { + "name": "UseGalaxy.org.au", + "url": "https://usegalaxy.org.au", + "usegalaxy": true + } + ], + "inexact": [ + { + "name": "GalaxyTrakr", + "url": "https://galaxytrakr.org/", + "usegalaxy": false + }, + { + "name": "UseGalaxy.cz", + "url": "https://usegalaxy.cz/", + "usegalaxy": false + } + ] + }, + "symlink": null, + "tags": [ + "gmod", + "jbrowse1" + ], + "time_estimation": "1h", + "title": "Genomic Data Visualisation with JBrowse", + "tools": [ + "toolshed.g2.bx.psu.edu/repos/iuc/jbrowse/jbrowse/1.16.9+galaxy0" + ], + "topic_name": "visualisation", + "topic_name_human": "Visualisation", + "tours": false, + "translations": { + "slides": [], + "tutorial": [], + "video": false + }, + "tutorial_name": "jbrowse", + "type": "tutorial", + "url": "https://training.galaxyproject.org//topics/visualisation/tutorials/jbrowse/tutorial.html", + "urls": { + "hands_on": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/jbrowse/tutorial.json", + "slides": "https://training.galaxyproject.org/training-material/api/topics/visualisation/tutorials/jbrowse/tutorial.json" + }, + "version": 15, + "video": false, + "video_versions": 0, + "video_view": 0, + "visit_duration": 287, + "visitors": 2067558, + "zenodo_link": "https://doi.org/10.5281/zenodo.3591856" + } +] \ No newline at end of file diff --git a/data/communities/assembly/categories b/communities/assembly/metadata/categories similarity index 100% rename from data/communities/assembly/categories rename to communities/assembly/metadata/categories diff --git a/communities/assembly/resources/index.html b/communities/assembly/resources/index.html new file mode 100644 index 00000000..a9feda5e --- /dev/null +++ b/communities/assembly/resources/index.html @@ -0,0 +1,59 @@ + + + + + + Simple HTML Page + + + +
+

Assembly ressources from the Galaxy Codex

+

Tools

+ + + +

Training

+ + +
+ + diff --git a/communities/assembly/resources/tools.html b/communities/assembly/resources/tools.html new file mode 100644 index 00000000..4eaad265 --- /dev/null +++ b/communities/assembly/resources/tools.html @@ -0,0 +1,12167 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandGalaxy wrapper idGalaxy tool idsDescriptionbio.tool idbio.tool idsbiiibio.tool namebio.tool descriptionEDAM operationEDAM topicStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper sourceGalaxy wrapper parsed folderGalaxy wrapper versionConda idConda versionEDAM operation (no superclasses)EDAM topic (no superclasses)Available on UseGalaxy.org (Main)Available on UseGalaxy.org.auAvailable on UseGalaxy.euAvailable on UseGalaxy.frTools available on UseGalaxy.org (Main)Tools available on UseGalaxy.org.auTools available on UseGalaxy.euTools available on UseGalaxy.frTools available on APOSTLTools available on BF2I-MAPTools available on BioBixTools available on CIRM-CFBPTools available on Center for Phage Technology (CPT)Tools available on ChemFlowTools available on Coloc-statsTools available on CoralSNPTools available on CropGalaxyTools available on DintorTools available on FreeBioinfoTools available on GASLINITools available on Galaxy@AuBiTools available on Galaxy@PasteurTools available on GalaxyTrakrTools available on Genomic HyperbrowserTools available on GigaGalaxyTools available on HyPhy HIV NGS ToolsTools available on IPK Galaxy Blast SuiteTools available on ImmPort GalaxyTools available on InteractoMIXTools available on MISSISSIPPITools available on Mandoiu LabTools available on MiModD NacreousMapTools available on OqtansTools available on PalfinderTools available on PepSimiliTools available on PhagePromotorTools available on UseGalaxy.beTools available on UseGalaxy.czTools available on UseGalaxy.noTools available on Viral Variant Visualizer (VVV)No. of tool users (2022-2023) (usegalaxy.eu)Total tool usage (usegalaxy.eu)Deprecated
TrimNstrimnsTrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipelineTo updatehttps://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNsAssemblytrimnsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trimNhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs0.1.0trimns_vgp1.00010001000000000000000000000000000000100842
abacasabacasOrder and Orientate ContigsTo updatehttps://github.com/phac-nml/abacasAssemblyabacasnmlhttps://github.com/phac-nml/abacashttps://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas1.1mummer3.23000100010000000000000010000000000000000000
abyssabyss-peAssembly By Short Sequences - a de novo, parallel, paired-end sequence assemblerabyssabyssABySSDe novo genome sequence assembler using short reads.Genome assembly, De-novo assembly, ScaffoldingSequence assemblyTo updatehttp://www.bcgsc.ca/platform/bioinfo/software/abyssAssemblyabyssiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abysshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss2.3.7abyss2.3.8Genome assembly, De-novo assembly, ScaffoldingSequence assembly01100110000000000000001000000100000001103914278
adapter_removaladapter_removalRemoves residual adapter sequences from single-end (SE) or paired-end (PE) FASTQ reads.adapterremovaladapterremovalAdapterRemovalAdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. AdapterRemoval can analyze both single end and paired end data, and can be used to merge overlapping paired-ended reads into (longer) consensus sequences. Additionally, AdapterRemoval can construct a consensus adapter sequence for paired-ended reads, if which this information is not available.Sequence trimming, Sequence merging, Primer removalUp-to-datehttps://github.com/MikkelSchubert/adapterremovalFasta Manipulation, Sequence Analysisadapter_removaliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/https://github.com/galaxyproject/tools-iuc/tree/main/tools/adapter_removal2.3.4adapterremoval2.3.4Sequence trimming, Sequence merging, Primer removal001000100000000000000000000000000000010037217
agatagatGTF/GFF analysis toolkitagatagatAGATAnother Gff Analysis Toolkit (AGAT)Suite of tools to handle gene annotations in any GTF/GFF format.Data handling, Genome annotationGenomicsUp-to-datehttps://github.com/NBISweden/AGATConvert Formats, Statistics, Fasta Manipulationagatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/agathttps://github.com/bgruening/galaxytools/tree/master/tools/agat1.4.0agat1.4.0Data handling, Genome annotationGenomics011101110000000000000000000000000000010042481
align_back_transalign_back_transThread nucleotides onto a protein alignment (back-translation)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_transFasta Manipulation, Sequence Analysisalign_back_transpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_transhttps://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans0.0.10biopython1.70001000100000000000000000000000000000011011329
assembly-statsassembly_statsAssembly metric visualisations to facilitate rapid assessment and comparison of assembly quality.Up-to-datehttps://github.com/rjchallis/assembly-statsAssemblyassembly_statsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-statshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats17.02rjchallis-assembly-stats17.02000100010000000000000000000000000000000000
assemblystatsassemblystatsSummarise an assembly (e.g. N50 metrics)To updatehttps://github.com/phac-nml/galaxy_toolsAssemblyassemblystatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats1.1.0perl-bioperl1.7.8000000000000000000000010000000000000000000
atactk_trim_adaptersatactk_trim_adaptersTrim adapters from paired-end HTS reads.To updatehttps://github.com/ParkerLab/atactk/Fastq Manipulationatactk_trim_adaptersrnateamhttps://github.com/bgruening/galaxytools/blob/master/tools/trim_adaptershttps://github.com/bgruening/galaxytools/tree/master/tools/atactk_trim_adapters0.1.6atactk0.1.9001000100000000000000000000000000000011026257
bam2mappingstatsbam2mappingstatsGenerates mapping stats from a bam file.To updatehttps://github.com/phac-nml/galaxy_toolsAssemblybam2mappingstatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats1.1.0perl000000000000000000000000000000000000000000
barcode_splitterbarcode_splitterA utility to split sequence files using multiple sets of barcodesTo updatehttps://bitbucket.org/princeton_genomics/barcode_splitter/Fastq Manipulationbarcode_splitteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/barcode_splitterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/barcode_splitter0.18.4.0barcode_splitter0.18.6000000000000000000000000000000000000000000
berokkaberokkaBerokka is used to trim, circularise, orient & filter long read bacterial genome assemblies.Up-to-datehttps://github.com/tseemann/berokkaFasta Manipulationberokkaiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/berokkahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/berokka0.2.3berokka0.2.3010001000000000000000000000000000000000000
bionanobionano_scaffoldBionano Solve is a set of tools for analyzing Bionano dataTo updatehttps://bionanogenomics.com/Assemblybionanobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bionanohttps://github.com/bgruening/galaxytools/tree/master/tools/bionano3.7.01110111000000000000000000000000000000100112531
biscotbiscotBionano scaffolding correction toolUp-to-datehttps://github.com/institut-de-genomique/biscotAssemblybiscotiuchttps://github.com/bgruening/iuc/tree/master/tools/biscothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot2.3.3biscot2.3.3001000100000000000000000000000000000010013
blast_rbhblast_reciprocal_best_hitsBLAST Reciprocal Best Hits (RBH) from two FASTA filesTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbhFasta Manipulation, Sequence Analysisblast_rbhpeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbhhttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh0.3.0biopython1.70001000100000000000000010000000000000011012122499
blast_to_scaffoldblast2scaffoldGenerate DNA scaffold from blastn or tblastx alignments of ContigsTo updatehttp://artbio.frRNA, Sequence Analysis, Assemblyblast_to_scaffoldartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffoldhttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold1.1.0python000000000000000000000110000001000000000000
blast_unmatchedblast_unmatchedExtract unmatched query sequences from blastTo updatehttp://artbio.frFasta Manipulationblast_unmatchedartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatchedhttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched1.0.1python000000000000000000000010000000000000000000
blastparser_and_hitsBlastParser_and_hitsParse blast outputs and compile hitsTo updatehttp://artbio.frAssembly, RNAblastparser_and_hitsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hitshttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits2.7.1python000000000000000000000110000001000000000000
blastx_to_scaffoldblastx2scaffoldGenerate DNA scaffold from blastx alignment of ContigsTo updatehttp://artbio.frRNA, Sequence Analysis, Assemblyblastx_to_scaffoldartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffoldhttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold1.1.1python000000000000000000000010000000000000000000
blobtoolkitblobtoolkitIdentification and isolation non-target data in draft and publicly available genome assemblies.To updatehttps://blobtoolkit.genomehubs.org/Sequence Analysis, Assemblyblobtoolkitbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkithttps://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit4.0.7111011100000000000000000000000000000010021685
cap3cap3cap3 wrapperTo updatehttp://artbio.frAssemblycap3artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cap3https://github.com/ARTbio/tools-artbio/tree/main/tools/cap32.0.1cap310.201101100110000000000000011000000100000001001017766
cdhitcd_hitCluster or compare biological sequence datasetscd-hitcd-hitcd-hitCluster a nucleotide dataset into representative sequences.Sequence clusteringSequencingUp-to-datehttp://weizhongli-lab.org/cd-hit/Sequence Analysis, Fasta Manipulationcd_hitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit4.8.1cd-hit4.8.1Sequence clusteringSequencing00110011000000000000100000000000000001102804474
cherry_pick_fastacherry_pick_fastaPick fasta sequence with specific header contentTo updatehttp://artbio.frFasta Manipulationcherry_pick_fastaartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fastahttps://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta4.1python000000000000000000000110001001000000000000
circexplorer2circexplorer2Comprehensive and integrative circular RNA analysis toolset.circexplorer2circexplorer2CIRCexplorer2Genome-wide annotation of circRNAs and their alternative back-splicing/splicing.RNA splicing, Gene transcripts, Literature and languageUp-to-datehttps://github.com/YangLab/CIRCexplorer2RNA, Assemblycircexplorer2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer22.3.8circexplorer22.3.8RNA splicing, Gene transcripts, Literature and language001000100000000000000000000000000000010016269
clc_assembly_cellclc_assembler, clc_mapperGalaxy wrapper for the CLC Assembly Cell suite from CLCBioTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cellAssembly, Next Gen Mappers, SAMclc_assembly_cellpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cellhttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell0.0.7samtools1.20000000000000000000000000000000000000000000
combine_assembly_statscombine_statsCombine multiple Assemblystats datasets into a single tabular reportTo updatehttps://github.com/phac-nml/galaxy_toolsAssemblycombine_assemblystatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats1.0perl-getopt-long2.58000000000000000000000000000000000000000000
convert_solid_color2nuccolor2nucConvert Color Space to NucleotidesTo updateFasta Manipulationconvert_solid_color2nucdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_solid_color2nuchttps://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_solid_color2nuc1.0.0000000000000000000000000000000000000000000
count_roi_variantscount_roi_variantsCount sequence variants in region of interest in BAM fileTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variantsAssembly, SAMcount_roi_variantspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variantshttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants0.0.6samtools1.20000000000000000000000010000000000000000000
coverage_statscoverage_statsBAM coverage statistics using samtools idxstats and depthTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_statsAssembly, SAMcoverage_statspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_statshttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats0.1.0samtools1.20000000000000000000000010000000000000000000
cutadaptcutadaptFlexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq).cutadaptcutadaptCutadaptFind and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads.Sequence trimming, Primer removal, Read pre-processingGenomics, Probes and primers, SequencingUp-to-datehttps://cutadapt.readthedocs.org/en/stable/Fasta Manipulation, Fastq Manipulation, Sequence Analysiscutadaptlparsonshttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt4.9cutadapt4.9Sequence trimming, Primer removal, Read pre-processingGenomics, Probes and primers, Sequencing11111111010010000000111001000100000001105090232004
discodiscoDISCO is a overlap-layout-consensus (OLC) metagenome assemblerdiscodiscoDISCODISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer.Protein sequence analysisStructure determinationTo updatehttp://disco.omicsbio.org/Metagenomics, Assemblydiscoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/https://github.com/galaxyproject/tools-iuc/tree/main/tools/discodisco1.2Protein sequence analysisStructure determination101010100000000000000010000000000000011042369
earmake_earA tool to compile assembly reports and stastics from assembly pipelineTo updatehttps://github.com/ERGA-consortium/EARs/tree/mainSequence Analysis, Assemblyerga_earbgrueninghttps://github.com/ERGA-consortium/EARs/tree/mainhttps://github.com/bgruening/galaxytools/tree/master/tools/ear24.08.26reportlab001000100000000000000000000000000000000000
emboss_5EMBOSS: antigenic1, EMBOSS: backtranseq2, EMBOSS: banana3, EMBOSS: biosed4, EMBOSS: btwisted5, EMBOSS: cai6, EMBOSS: cai_custom6, EMBOSS: chaos7, EMBOSS: charge8, EMBOSS: checktrans9, EMBOSS: chips10, EMBOSS: cirdna11, EMBOSS: codcmp12, EMBOSS: coderet13, EMBOSS: compseq14, EMBOSS: cpgplot15, EMBOSS: cpgreport16, EMBOSS: cusp17, EMBOSS: cutseq18, EMBOSS: dan19, EMBOSS: degapseq20, EMBOSS: descseq21, EMBOSS: diffseq22, EMBOSS: digest23, EMBOSS: dotmatcher24, EMBOSS: dotpath25, EMBOSS: dottup26, EMBOSS: dreg27, EMBOSS: einverted28, EMBOSS: epestfind29, EMBOSS: equicktandem31, EMBOSS: est2genome32, EMBOSS: etandem33, EMBOSS: extractfeat34, EMBOSS: extractseq35, EMBOSS: freak36, EMBOSS: fuzznuc37, EMBOSS: fuzzpro38, EMBOSS: fuzztran39, EMBOSS: garnier40, EMBOSS: geecee41, EMBOSS: getorf42, EMBOSS: helixturnhelix43, EMBOSS: hmoment44, EMBOSS: iep45, EMBOSS: infoseq46, EMBOSS: isochore47, EMBOSS: lindna48, EMBOSS: marscan49, EMBOSS: maskfeat50, EMBOSS: maskseq51, EMBOSS: matcher52, EMBOSS: megamerger53, EMBOSS: merger54, EMBOSS: msbar55, EMBOSS: needle56, EMBOSS: newcpgreport57, EMBOSS: newcpgseek58, EMBOSS: newseq59, EMBOSS: noreturn60, EMBOSS: notseq61, EMBOSS: nthseq62, EMBOSS: octanol63, EMBOSS: oddcomp64, EMBOSS: palindrome65, EMBOSS: pasteseq66, EMBOSS: patmatdb67, EMBOSS: pepcoil68, EMBOSS: pepinfo69, EMBOSS: pepnet70, EMBOSS: pepstats71, EMBOSS: pepwheel72, EMBOSS: pepwindow73, EMBOSS: pepwindowall74, EMBOSS: plotcon75, EMBOSS: plotorf76, EMBOSS: polydot77, EMBOSS: preg78, EMBOSS: prettyplot79, EMBOSS: prettyseq80, EMBOSS: primersearch81, EMBOSS: revseq82, EMBOSS: seqmatchall83, EMBOSS: seqret84, EMBOSS: showfeat85, EMBOSS: shuffleseq87, EMBOSS: sigcleave88, EMBOSS: sirna89, EMBOSS: sixpack90, EMBOSS: skipseq91, EMBOSS: splitter92, EMBOSS: supermatcher95, EMBOSS: syco96, EMBOSS: tcode97, EMBOSS: textsearch98, EMBOSS: tmap99, EMBOSS: tranalign100, EMBOSS: transeq101, EMBOSS: trimest102, EMBOSS: trimseq103, EMBOSS: twofeat104, EMBOSS: union105, EMBOSS: vectorstrip106, EMBOSS: water107, EMBOSS: wobble108, EMBOSS: wordcount109, EMBOSS: wordmatch110Galaxy wrappers for EMBOSS version 5.0.0 toolsembossembossEMBOSSDiverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool.Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignmentMolecular biology, Sequence analysis, BiologyTo updatehttp://emboss.open-bio.org/Sequence Analysis, Fasta Manipulationemboss_5devteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_55.0.0emboss6.6.0Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignmentMolecular biology, Sequence analysis10710710710710710710710700001070000000001070010700010700000001071070181689530
fasplitfasplitfaSplit is a tool to split a single FASTA file into several filesUCSC_Genome_Browser_UtilitiesUCSC_Genome_Browser_UtilitiesUCSC Genome Browser UtilitiesUtilities for handling sequences and assemblies from the UCSC Genome Browser project.Sequence analysisTo updatehttp://hgdownload.cse.ucsc.edu/admin/exe/Fasta Manipulationucsc_fasplitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fasplithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fasplit377ucsc-fasplit469Sequence analysis11111111000000000000001001000000000001102422644
fasta_clipping_histogramcshl_fasta_clipping_histogramLength Distribution chartUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Graphics, Statisticsfasta_clipping_histogramdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_clipping_histogramhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_clipping_histogram0.0.14fastx_toolkit0.0.14010001000000000000000010000001000000000000
fasta_compute_lengthfasta_compute_lengthCompute sequence lengthTo updateFasta Manipulationfasta_compute_lengthdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_lengthhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_compute_length1.0.3python11111111010010000000001000000100000001103807758
fasta_concatenate_by_speciesfasta_concatenate0Concatenate FASTA alignment by speciesTo updateFasta Manipulationfasta_concatenate_by_speciesdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_specieshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_concatenate_by_species0.0.1bx-python0.12.011111111000000000000001000000000000001108835793
fasta_filter_by_idfasta_filter_by_idFilter FASTA sequences by ID (DEPRECATED)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_idFasta Manipulation, Sequence Analysis, Text Manipulationfasta_filter_by_idpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_idhttps://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id0.0.7galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
fasta_filter_by_lengthfasta_filter_by_lengthFilter sequences by lengthTo updateFasta Manipulationfasta_filter_by_lengthdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_lengthhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_filter_by_length1.2python111111110000100000000100000001000000011035048649
fasta_formattercshl_fasta_formatterFASTA Width formatterUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulationfasta_formatterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_formatterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_formatter0.0.14fastx_toolkit0.0.141111111101001000000001100000010000000111682912
fasta_merge_files_and_filter_unique_sequencesfasta_merge_files_and_filter_unique_sequencesConcatenate FASTA database files togetherTo updatehttps://github.com/galaxyproteomics/tools-galaxyp/Fasta Manipulationfasta_merge_files_and_filter_unique_sequencesgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequenceshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences1.2.0python111111110000000000000010000001000000011046129886
fasta_nucleotide_changercshl_fasta_nucleotides_changerRNA/DNA converter.Up-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulationfasta_nucleotide_changerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_nucleotide_changerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_nucleotide_changer0.0.14fastx_toolkit0.0.14111111110000000000000010000001000000011029774
fasta_to_tabularfasta2tabFASTA-to-Tabular converterTo updateFasta Manipulationfasta_to_tabulardevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_to_tabularhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_to_tabular1.1.1python1111111101001000000000100000010000000110622105935
fastkfastk_fastkFastK: A K-mer counter (for HQ assembly data sets)To updatehttps://github.com/thegenemyers/FASTKAssemblyfastkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk1.0.0fastk1.0001000100000000000000000000000000000000000
fastq_combinerfastq_combinerCombine FASTA and QUAL into FASTQUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulation, Fasta Manipulationfastq_combinerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_combinerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_combiner1.1.5galaxy_sequence_utils1.1.51111111100001000000000100000000000000110668676
fastq_filterfastq_filterFilter FASTQ reads by quality score and lengthUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_filterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_filter1.1.5galaxy_sequence_utils1.1.5111111110000000000000010000000000000011026614222
fastq_filter_by_idfastq_filter_by_idFilter FASTQ sequences by ID (DEPRECATED)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_idFastq Manipulation, Sequence Analysis, Text Manipulationfastq_filter_by_idpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_idhttps://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id0.0.7galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
fastq_groomerfastq_groomerConvert between various FASTQ quality formats.Up-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_groomerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_groomerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_groomer1.1.5galaxy_sequence_utils1.1.51111111101001000000000100000010000000110102894802
fastq_infofastq_infoFASTQ info allows to validate single or paired fastq filesTo updatehttps://github.com/nunofonseca/fastq_utilsFastq Manipulationfastq_infobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/fastq_infohttps://github.com/bgruening/galaxytools/tree/master/tools/fastq_info0.25.1fastq_utils0.25.210101010000000000000001000000000000001006795765
fastq_manipulationfastq_manipulationManipulate FASTQ reads on various attributes.Up-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_manipulationdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_manipulationhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_manipulation1.1.5galaxy_sequence_utils1.1.51111111100000000000000000000000000000110692503
fastq_masker_by_qualityfastq_masker_by_qualityFASTQ Masker by quality scoreUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_masker_by_qualitydevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_masker_by_qualityhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality1.1.5galaxy_sequence_utils1.1.5111111110000000000000000000000000000011016170
fastq_pairfastq_pairPaired-end fastq pairerTo updatehttps://github.com/linsalrob/fastq-pairFastq Manipulationfastq_pairebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_pairhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_pair1.0+galaxy0fastq-pair1.0000000000000000000000000000000000000000000
fastq_paired_end_deinterlacerfastq_paired_end_deinterlacerFASTQ de-interlacer on paired end reads.Up-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_paired_end_deinterlacerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer1.1.5galaxy_sequence_utils1.1.511111111000000000000000000000100000001101228410
fastq_paired_end_interlacerfastq_paired_end_interlacerFASTQ interlacer on paired end readsUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_paired_end_interlacerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer1.1.5galaxy_sequence_utils1.1.51111111100000000000011100000000000000110108717024
fastq_paired_end_joinerfastq_paired_end_joinerFASTQ joiner on paired end readsUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_paired_end_joinerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joinerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner1.1.5galaxy_sequence_utils1.1.5111111110000000000000010000000000000011024516635
fastq_paired_end_splitterfastq_paired_end_splitterFASTQ splitter on joined paired end readsUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_paired_end_splitterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter1.1.5galaxy_sequence_utils1.1.511111111000000000000000000000000000001101963092
fastq_quality_boxplotcshl_fastq_quality_boxplotDraw quality score boxplotUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulation, Graphics, Statisticsfastq_quality_boxplotdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_boxplothttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_boxplot0.0.14fastx_toolkit0.0.141111111100000000000000100000010000000110511178
fastq_quality_convertercshl_fastq_quality_converterQuality format converter (ASCII-Numeric)Up-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulationfastq_quality_converterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_converter0.0.14fastx_toolkit0.0.14111111110000000000000010000001000000011011220
fastq_quality_filtercshl_fastq_quality_filterFilter by qualityUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulationfastq_quality_filterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_filter0.0.14fastx_toolkit0.0.141111111100000000000001100000010000000110150915172
fastq_quality_trimmercshl_fastq_quality_trimmerFASTQ trimmer based on qualityTo updatehttps://github.com/agordon/fastx_toolkitFastq Manipulationfastq_quality_trimmerebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_quality_trimmerhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_quality_trimmer0.0.14+galaxy0fastx_toolkit0.0.14000000000000000000000000000000000000000000
fastq_statsfastq_statsFASTQ Summary Statistics by columnUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_statsdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_statshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_stats1.1.5galaxy_sequence_utils1.1.511111111000000000000000001000000000001102214246
fastq_to_fastacshl_fastq_to_fastaFASTQ to FASTA converterUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Convert Formatsfastq_to_fastadevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fastahttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_to_fasta0.0.14fastx_toolkit0.0.14111111110100000000000110000001000000011041913599
fastq_to_tabularfastq_to_tabularFASTQ to Tabular converterUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_to_tabulardevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_to_tabularhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_to_tabular1.1.5galaxy_sequence_utils1.1.511111111010000000000000000000100000001109312593
fastq_trimmerfastq_trimmerFASTQ Trimmer by qualityUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastq_trimmerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_trimmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_trimmer1.1.5galaxy_sequence_utils1.1.511111111000000000000000000000100000001102109757
fastq_trimmer_by_qualityfastq_quality_trimmerFASTQ Quality Trimmer by sliding windowUp-to-dateFastq Manipulationfastq_trimmer_by_qualitydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fastq_trimmer_by_qualityhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fastq_trimmer_by_quality1.1.5galaxy_sequence_utils1.1.511111111000000000000000000000000000001104595676
fastqcfastqcRead QC reports using FastQCfastqcfastqcFastQCThis tool aims to provide a QC report which can spot problems or biases which originate either in the sequencer or in the starting library material. It can be run in one of two modes. It can either run as a stand alone interactive application for the immediate analysis of small numbers of FastQ files, or it can be run in a non-interactive mode where it would be suitable for integrating into a larger analysis pipeline for the systematic processing of large numbers of files.Sequence composition calculation, Sequencing quality control, Statistical calculationSequencing, Data quality management, Sequence analysisTo updatehttp://www.bioinformatics.babraham.ac.uk/projects/fastqc/Fastq Manipulationfastqcdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqc0.74+galaxy1fastqc0.12.1Sequence composition calculation, Sequencing quality control, Statistical calculationSequencing, Data quality management, Sequence analysis1111111101101000000011100100010001100110174471556625
fastqsolexa_to_fasta_qualfastqsolexa_to_fasta_qualFASTQSOLEXA-to-FASTA-QUAL extracts sequences and quality scores from FASTQSOLEXA dataTo updateConvert Formats, Fastq Manipulationfastqsolexa_to_fasta_qualdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqsolexa_to_fasta_qualhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/fastqsolexa_to_fasta_qual1.0.0000000000000000000000000000000000000000000
fastqtofastafastq_to_fasta_pythonFASTQ to FASTA converterUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationfastqtofastadevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastqtofastahttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastqtofasta1.1.5galaxy_sequence_utils1.1.511101110000010000000001000000000000001101371178178
fastx_artifacts_filtercshl_fastx_artifacts_filterRemove sequencing artifactsUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_artifacts_filterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_artifacts_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_artifacts_filter0.0.14fastx_toolkit0.0.141111111101001000000011100000010000000110271810
fastx_barcode_splittercshl_fastx_barcode_splitterBarcode SplitterUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_barcode_splitterdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_barcode_splitterhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_barcode_splitter0.0.14fastx_toolkit0.0.14111111110000100000000010000001000000011012816591
fastx_clippercshl_fastx_clipperClip adapter sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_clipperdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_clipperhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_clipper0.0.14fastx_toolkit0.0.141111111101001000000011100000010000000110963333
fastx_collapsercshl_fastx_collapserCollapse sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulationfastx_collapserdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_collapserhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_collapser0.0.14fastx_toolkit0.0.14111111110000100000001110010001000000011011461218
fastx_nucleotides_distributioncshl_fastx_nucleotides_distributionDraw nucleotides distribution chartUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulation, Graphicsfastx_nucleotides_distributiondevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_nucleotides_distributionhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_nucleotides_distribution0.0.14fastx_toolkit0.0.14111111110000100000001110000001000000011025249
fastx_quality_statisticscshl_fastx_quality_statisticsCompute quality statisticsUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulation, Statisticsfastx_quality_statisticsdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_quality_statisticshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_quality_statistics0.0.14fastx_toolkit0.0.141111111100001000000011100100010000000110632176
fastx_renamercshl_fastx_renamerRename sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_renamerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_renamerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_renamer0.0.14fastx_toolkit0.0.141111111100001000000011100000010000000110682280
fastx_reverse_complementcshl_fastx_reverse_complementReverse-ComplementUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fastq Manipulation, Fasta Manipulationfastx_reverse_complementdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_reverse_complementhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_reverse_complement0.0.14fastx_toolkit0.0.14111111110000100000001110000001000000011015610832
fastx_trimmercshl_fastx_trimmerTrim sequencesUp-to-datehttp://hannonlab.cshl.edu/fastx_toolkit/Fasta Manipulation, Fastq Manipulationfastx_trimmerdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_trimmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_trimmer0.0.14fastx_toolkit0.0.14111111110000100000001110000001000000011020513149
fermikitfermi2, fermikit_variantsFermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data.Up-to-datehttps://github.com/lh3/fermikitAssembly, Variant Analysisfermikitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikitr193fermi2r193000000000000000000000000000000000000000000
fetch_fasta_from_ncbiretrieve_fasta_from_NCBIFetch fasta sequences from NCBI using eutils wrappersTo updatehttp://artbio.frFasta Manipulation, Data Sourcefetch_fasta_from_ncbiartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbihttps://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi3.1.0urllib31.12000000000000000000000110000001000000000000
filter_by_fasta_idsfilter_by_fasta_idsFilter FASTA on the headers and/or the sequencesTo updateFasta Manipulation, Proteomicsfilter_by_fasta_idsgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_idshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids2.3python111111110000000000000000000001000000011042626274
filter_spades_repeatsfilter_spades_repeatRemove short and repeat contigs/scaffoldsTo updatehttps://github.com/phac-nml/galaxy_tools/Assemblyfilter_spades_repeatsnmlhttps://github.com/phac-nml/galaxy_tools/https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats1.0.1perl-bioperl1.7.8000000000000000000000010000000000000000000
filtlongfiltlongFiltlong - Filtering long reads by qualityfiltlongfiltlongFiltlongFiltlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter.Filtering, Sequencing quality controlUp-to-datehttps://github.com/rrwick/FiltlongFastq Manipulation, Sequence Analysisfiltlongiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlonghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong0.2.1filtlong0.2.1Filtering, Sequencing quality control111111110000000000000110000000000000011061730483
flairflair_collapse, flair_correctFLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads.To updatehttps://github.com/BrooksLabUCSC/flairNanoporeflairiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/flairhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/flair1.5flair2.0.0002000200000000000000000000000000000020014331
flashflashFast Length Adjustment of SHort readsflashflashFLASHIdentifies paired-end reads which overlap in the middle, converting them to single long readsRead pre-processing, Sequence merging, Sequence assemblySequencing, Sequence assemblyUp-to-datehttps://ccb.jhu.edu/software/FLASH/Assembly, Fastq Manipulationflashiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/flashhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/flash1.2.11flash1.2.11Read pre-processing, Sequence merging, Sequence assemblySequencing, Sequence assembly10101010000000000000001000000000000001107413759
flyeflyeAssembly of long and error-prone reads.FlyeFlyeFlyeFlye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs.Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing, GenomicsTo updatehttps://github.com/fenderglass/Flye/Assemblyflyebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/flyehttps://github.com/bgruening/galaxytools/tree/master/tools/flye2.9.4flye2.9.5Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing1111111100000000000001100100000000000110149920904
format_cd_hit_outputformat_cd_hit_outputFormat CD-hit output to rename representative sequences with cluster name and/or extract distribution inside clusters given a mapping fileTo updateFasta Manipulationformat_cd_hit_outputbebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output/https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output1.0.0+galaxy1001000100000100000000000000000000000011020166
get_pairsget_pairsSeparate paired and unpaired reads from two fastq filesTo updateFastq Manipulationget_pairsgenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/get_pairshttps://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs0.3python000000000000000000000000000000000000000000
get_reference_fastaget_fasta_referenceObtain reference genome sequence.To updatehttp://artbio.frData Source, Fasta Manipulationget_reference_fastaartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fastahttps://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta0.3.2000000000000000000000010000001000000000000
getorganelleget_annotated_regions_from_gb, get_organelle_from_readsGetOrganelle - This toolkit assembles organelle genomes from genomic skimming data.getorganellegetorganelleGetOrganelleA fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data.De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimmingCell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organismsUp-to-datehttps://github.com/Kinggerm/GetOrganelleAssemblygetorganelleiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganellehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle1.7.7.1getorganelle1.7.7.1De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimmingCell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms022002200000000000000000000000000000020018495
graphmapgraphmap_align, graphmap_overlapMapper for long, error-prone reads.graphmapgraphmapgraphmapSplice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1Sequence trimming, EST assembly, Read mappingGene transcripts, RNA-Seq, RNA splicingTo updatehttps://github.com/isovic/graphmap/Assemblygraphmapbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/graphmaphttps://github.com/bgruening/galaxytools/tree/master/tools/graphmap0.5.2graphmap0.6.3Sequence trimming, EST assembly, Read mappingGene transcripts, RNA-Seq, RNA splicing00200020000000000000002000000000000002201366651
guppyguppy-basecallerA wrapper for the guppy basecaller tool from Oxford Nanopore TechnologiesTo updatehttp://artbio.frNanoporeguppy_basecallerartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/guppyhttps://github.com/ARTbio/tools-artbio/tree/main/tools/guppy6.5.7+galaxy0000000000000000000000010000000000000000000
hapcut2hapcut2Robust and accurate haplotype assembly for diverse sequencing technologieshapcut2hapcut2HapCUT2HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to "just work" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.mdHaplotype mapping, Variant classificationUp-to-datehttps://github.com/vibansal/HapCUT2Assemblyhapcut2galaxy-australiahttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut21.3.4hapcut21.3.4Haplotype mapping, Variant classification010001000000000000000000000000000000000000
hapoghapogHapo-G - Haplotype-Aware Polishing of GenomeshapoghapogHapo-GHapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes.Genome assembly, Optimisation and refinementSequence assembly, GenomicsUp-to-datehttps://github.com/institut-de-genomique/HAPO-GAssemblyhapogiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hapoghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog1.3.8hapog1.3.8Genome assembly, Optimisation and refinementSequence assembly, Genomics001100110000000000000000000000000000010036295
hifiasmhifiasmA fast haplotype-resolved de novo assemblerUp-to-datehttps://github.com/chhylp123/hifiasmAssemblyhifiasmbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hifiasmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm0.19.9hifiasm0.19.911111111000000000000001000000000000001002971410
hisathisatHISAT is a fast and sensitive spliced alignment program.To updatehttp://ccb.jhu.edu/software/hisat/index.shtmlAssemblyhisatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/hisathttps://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat1.0.3hisat00000000000000000000001000000000000000000228
hisat2hisat2HISAT2 is a fast and sensitive spliced alignment program.hisat2hisat2HISAT2Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome).Sequence alignmentRNA-seqUp-to-datehttp://ccb.jhu.edu/software/hisat2/Assemblyhisat2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat22.2.1hisat22.2.1Sequence alignment11111111000000000000101000000100000001104183299104
hypohypoSuper Fast & Accurate Polisher for Long Read Genome AssembliesHyPoHyPoHyPoHyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes.Optimisation and refinement, Genome assemblySequence assembly, GenomicsUp-to-datehttps://github.com/kensung-lab/hypoAssemblyhypoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hypohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo1.0.3hypo1.0.3Optimisation and refinement, Genome assemblySequence assembly, Genomics001000100000000000000000000000000000010039354
idba_udidba_hybrid, idba_tran, idba_udWrappers for the idba assembler variants.idbaidbaIDBAA short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system.Sequence assemblySequence assemblyTo updatehttps://i.cs.hku.hk/~alse/hkubrg/projects/index.htmlAssemblyidbaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_udhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_udidba1.1.3Sequence assemblySequence assembly3033303300000000000000000000000000000330691127
instagraalinstagraalLarge genome reassembly based on Hi-C datainstagraalinstagraalinstaGRAALChromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13)Genome assembly, Mapping assembly, Genetic mapping, ScaffoldingSequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sitesTo updatehttps://github.com/koszullab/instaGRAALAssemblyinstagraalbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/instagraalhttps://github.com/bgruening/galaxytools/tree/master/tools/instagraal0.1.6Genome assembly, Mapping assembly, Genetic mapping, ScaffoldingSequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites001000100000000000000000000000000000010014139
jellyfishjellyfishJellyfish is a tool for fast, memory-efficient counting of k-mers in DNAJellyfishJellyfishJellyfishA command-line algorithm for counting k-mers in DNA sequence.k-mer countingSequence analysis, GenomicsTo updatehttps://github.com/gmarcais/JellyfishAssemblyjellyfishiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfishhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfishkmer-jellyfish2.3.1k-mer countingSequence analysis, Genomics0111011100000000000000100000000000000110911138
khmerkhmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_medianIn-memory nucleotide sequence k-mer counting, filtering, graph traversal and morekhmerkhmerkhmerkhmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data.Standardisation and normalisation, De-novo assemblySequence assemblyUp-to-datehttps://khmer.readthedocs.org/Assembly, Next Gen Mapperskhmeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/khmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer3.0.0a3khmer3.0.0a3Standardisation and normalisation, De-novo assemblySequence assembly8880888000000000000001100000010000000880632022
length_and_gc_contentlength_and_gc_contentGets gene length and gc content from a fasta and a GTF fileTo updatehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_contentFasta Manipulation, Statistics, RNA, Micro-array Analysislength_and_gc_contentiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_contenthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/length_and_gc_content0.1.2r-optparse1.3.211111111000000000000100001000100000001103224090
lighterlighterLighter is a kmer-based error correction method for whole genome sequencing datalighterlighterLighterKmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors.k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detectionSequencing, Whole genome sequencing, DNA, GenomicsTo updatehttps://github.com/mourisl/LighterSequence Analysis, Fasta Manipulationlighterbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/lighterhttps://github.com/bgruening/galaxytools/tree/master/tools/lighter1.0lighter1.1.3k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detectionWhole genome sequencing, DNA, Genomics00100010000000000000000000000000000001109152
linkslinksScaffold genome assemblies with long reads.linkslinksLINKSLINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS.Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimmingSequence assembly, Mapping, SequencingUp-to-datehttps://github.com/bcgsc/LINKSAssemblylinksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/linkshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/links2.0.1links2.0.1Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimmingSequence assembly, Mapping, Sequencing011001100000000000000010000000000000010077405
make_nrmake_nrMake a FASTA file non-redundantTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nrFasta Manipulation, Sequence Analysismake_nrpeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nrhttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr0.0.3biopython1.70000000000000000000000000000000000000000000
megahitmegahitAn ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph.megahitmegahitMEGAHITSingle node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.Genome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyUp-to-datehttps://github.com/voutcn/megahitSequence Analysis, Assembly, Metagenomicsmegahitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit1.2.9megahit1.2.9Genome assemblyMetagenomics, Sequencing, Sequence assembly11111111000000000000111001000100001001105489530
megahit_contig2fastgmegahit_contig2fastgA subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg)megahitmegahitMEGAHITSingle node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.Genome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyTo updatehttps://github.com/voutcn/megahit/blob/master/tools/toolkit.cppSequence Analysis, Assembly, Metagenomicsmegahit_contig2fastgiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg1.1.3megahit1.2.9Genome assemblyMetagenomics, Sequencing, Sequence assembly111111110000000000000010000001000000011054475
merqurymerqury, merquryplotMerqury is a tool for evaluating genomes assemblies based of k-mer operations.merqurymerquryMerquryReference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose.Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biologyUp-to-datehttps://github.com/marbl/merquryAssemblymerquryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merquryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury1.3merqury1.3Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biology22222222000000000000000000000000000001002442483
merylmeryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_modeMeryl a k-mer counter.merylmerylMerylMeryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu.k-mer countingWhole genome sequencing, Genomics, Sequence analysis, SequencingUp-to-datehttps://github.com/marbl/merylAssemblymeryliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merylhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl1.3merqury1.3k-mer countingWhole genome sequencing, Genomics, Sequence analysis000000000000000000000000000000000000000000
mgnify_seqprepmgnify_seqprepA modifiied vesion of SeqPrep. Made for use with the MGnify pipelines.seqprepseqprepSeqPrepStrips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads.Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primersTo updatehttps://github.com/jstjohn/SeqPrepFastq Manipulation, Sequence Analysismgnify_seqprepbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprephttps://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep1.2Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primers000000000000000000000000000000000000000000
miniaminiaShort-read assembler based on a de Bruijn graphminiaminiaMiniaShort-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day.Genome assemblySequence assemblyUp-to-datehttps://gatb.inria.fr/software/minia/Assemblyminiaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/minia3.2.6minia3.2.6Genome assemblySequence assembly01100110000000000000001000000000000001101092206
miniasmminiasmMiniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step)miniasmminiasmminiasmMiniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format.De-novo assemblyGenomics, Sequence assemblyTo updatehttps://github.com/lh3/miniasmAssemblyminiasmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm0.3_r179miniasm0.3De-novo assemblyGenomics, Sequence assembly111111110000000000000010000000000000011017811938
mitobimmitobimassemble mitochondrial genomesUp-to-datehttps://github.com/chrishah/MITObimAssemblymitobimiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobimhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim1.9.1mitobim1.9.1011001100000000000000010000000000000010066881
mitohifimitohifiAssembly mitogenomes from Pacbio HiFi read.To updatehttps://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2Assemblymitohifibgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mitohifihttps://github.com/bgruening/galaxytools/tree/master/tools/mitohifi3111011100000000000000010000000000000010056613
msabootmsabootA multiple sequences alignment bootstrapping tool.Up-to-datehttps://github.com/phac-nml/msabootFasta Manipulationmsabootiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/msaboothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/msaboot0.1.2msaboot0.1.2101010100000000000000000000000000000011034803
multiqcmultiqcMultiQC aggregates results from bioinformatics analyses across many samples into a single reportmultiqcmultiqcMultiQCMultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools.Validation, Sequencing quality controlSequencing, Bioinformatics, Sequence analysis, GenomicsTo updatehttp://multiqc.info/Fastq Manipulation, Statistics, Visualizationmultiqciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc1.11multiqc1.24.1Sequencing quality controlSequencing, Bioinformatics, Sequence analysis, Genomics11111111000010000000111001000100000001108320162790
necatnecatError correction and de-novo assembly for ONT Nanopore readsnecatnecatNECATNECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads.De-novo assemblySequence assemblyUp-to-datehttps://github.com/xiaochuanle/NECATAssemblynecatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/necathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/necat0.0.1_update20200803necat0.0.1_update20200803De-novo assemblySequence assembly001000100000000000000000000000000000010095667
nextdenovonextdenovoString graph-based de novo assembler for long readsnextdenovonextdenovoNextDenovoNextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a "correct-then-assemble" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages.De-novo assembly, Genome assemblySequencing, Sequence assemblyTo updatehttps://github.com/Nextomics/NextDenovoAssemblynextdenovobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovohttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo2.5.0nextdenovo2.5.2De-novo assembly, Genome assemblySequencing, Sequence assembly001000100000000000000000000000000000010084268
nlstradamusnlstradamusFind nuclear localization signals (NLSs) in protein sequencesTo updatehttp://www.moseslab.csb.utoronto.ca/NLStradamusFasta Manipulation, Sequence Analysisnlstradamuspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamushttps://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus0.0.11NLStradamus1.8000000000000000000000000000000000000000000
novoplastynovoplastyNOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes.To updatehttps://github.com/ndierckx/NOVOPlastyAssemblynovoplastyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplastyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty4.3.1novoplasty4.3.501110111000000000000001000000000000001001626384
oasesoasesoptimiservShort read assemblerTo updatehttp://artbio.frAssembly, RNAoasesartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/oaseshttps://github.com/ARTbio/tools-artbio/tree/main/tools/oases1.4.0oases0.2.09000000000000000000000110000001000000000000
ont_fast5_apiont_fast5_api_compress_fast5, ont_fast5_api_fast5_subset, ont_fast5_api_multi_to_single_fast5, ont_fast5_api_single_to_multi_fast5ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore FAST5 file format.To updatehttps://github.com/nanoporetech/ont_fast5_api/Nanoporeont_fast5_apiiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ont_fast5_apihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ont_fast5_api3.1.3ont-fast5-api4.1.30040004000000000000000100000000000000440392654
pbtkbam2fastxConvert PacBio Bam File to fasta or fastq fileUp-to-datehttps://github.com/PacificBiosciences/pbtkConvert Formats, Fasta Manipulation, Fastq Manipulationbam2fastxiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pbtkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pbtk3.1.1pbtk3.1.1101010100000000000000000000000000000000000
peariuc_pearPEAR evaluates all possible paired-end read overlapspearpearPEARPaired-end read merger. PEAR evaluates all possible paired-end read overlaps without requiring the target fragment size as input. In addition, it implements a statistical test for minimizing false-positive results.Sequence mergingSequence assemblyUp-to-datehttps://cme.h-its.org/exelixis/web/software/pear/Fastq Manipulationpeariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pearhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pear0.9.6pear0.9.6Sequence mergingSequence assembly11101110000000000000011000000000001001001504305
plasmidspadesplasmidspadesGenome assembler for assemblying plasmidTo updateAssemblyplasmidspadesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades1.1spades4.0.0000000000000100000000110000000000000000000
porechopporechopPorechop - Finding and removing adapters from Oxford Nanopore readsTo updatehttps://github.com/rrwick/PorechopFasta Manipulation, Fastq Manipulationporechopiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/porechophttps://github.com/galaxyproject/tools-iuc/tree/main/tools/porechopporechop0.2.411101110000000000000001000000000000001101046185468
poretoolsporetools_events, poretools_extract, poretools_hist, poretools_nucdist, poretools_occupancy, poretools_qualdist, poretools_qualpos, poretools_squiggle, poretools_stats, poretools_tabular, poretools_times, poretools_winner, poretools_yield_plotA flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis.poretoolsporetoolsPoretoolsFlexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis.Nucleic acid sequence analysisDNA, SequencingUp-to-datehttps://poretools.readthedocs.io/en/latest/Fasta Manipulation, Fastq Manipulationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/poretoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/poretools0.6.1a1poretools0.6.1a1Nucleic acid sequence analysisDNA, Sequencing1313130131313000001300000000013000000000000001313040918773
prinseqprinseqPRINSEQ is a tool for easy and rapid quality control and data processing of metagenomic and metatranscriptomic datasetsprinseqprinseqPRINSEQPRINSEQ is a sequence processing tool that can be used to filter, reformat and trim genomic and metagenomic sequence data. It generates summary statistics of the input in graphical and tabular formats that can be used for quality control steps. PRINSEQ is available as both standalone and web-based versions.Read pre-processing, Sequence trimming, Sequence contamination filteringTranscriptomics, Metagenomics, GenomicsTo updatehttp://prinseq.sourceforge.net/manual.htmlFastq Manipulation, Metagenomicsprinseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/prinseq/https://github.com/galaxyproject/tools-iuc/tree/main/tools/prinseq@TOOL_VERSION+galaxy2prinseq0.20.4Read pre-processing, Sequence trimming, Sequence contamination filteringTranscriptomics, Metagenomics1011101100000000000000100000000000000110707881
promerpromer4_substitutionsAligns two sets of contigs and reports amino acid substitutions between themTo updatehttps://github.com/phac-nml/promerAssemblypromernmlhttps://github.com/phac-nml/promerhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/promer1.2python000000000000000000000000000000000000000000
purge_dupspurge_dupsPurge haplotigs and overlaps in an assembly based on read depthpurge_dupspurge_dupspurge_dupsIdentifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuencesGenome assembly, Read binning, ScaffoldingSequence assemblyUp-to-datehttps://github.com/dfguan/purge_dupsAssemblypurge_dupsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dupshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups1.2.6purge_dups1.2.6Genome assembly, Read binning, ScaffoldingSequence assembly111011100000000000000000000000000000010016716800
pycoqcpycoqcQC metrics for ONT BasecallingpycoqcpycoqcpycoQCPycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data.Sequencing quality control, Statistical calculationSequence analysis, Data quality management, SequencingUp-to-datehttps://github.com/tleonardi/pycoQCNanoporepycoqciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc2.5.2pycoqc2.5.2Sequencing quality control, Statistical calculationSequence analysis, Data quality management, Sequencing111111110000000000001010000000000000010035021123
qfiltqfiltFilter sequencing dataTo updatehttps://github.com/veg/qfiltFastq Manipulationqfiltiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qfilthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/qfilt1.0.0+galaxy1qfilt0.0.1000000000000000000000000000000000000000000
quastquastQuast (Quality ASsessment Tool) evaluates genome assemblies.quastquastQUASTQUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports.Visualisation, Sequence assembly validationSequence assemblyUp-to-datehttp://quast.bioinf.spbau.ru/Assemblyquastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/quast5.2.0quast5.2.0Visualisation, Sequence assembly validationSequence assembly1111111100001000000011100100010000000110356751567
quickmergequickmergeMerge long-read and hybrid assemblies to increase contiguityquickmergequickmergequickmergeQuickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads.Genome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotypeUp-to-datehttps://github.com/mahulchak/quickmergeAssemblyquickmergegalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmergehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge0.3quickmerge0.3Genome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype000000000000000000000000000000000000001000
ragtagragtagReference-guided scaffolding of draft genomes tool.ragtagragtagragtagRagTag is a collection of software tools for scaffolding and improving modern genome assemblies.Genome assemblySequence assemblyUp-to-datehttps://github.com/malonge/RagTagAssemblyragtagiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtaghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag2.1.0ragtag2.1.0Genome assemblySequence assembly01110111000000000000001000000000000001102372833
ravenravenRaven is a de novo genome assembler for long uncorrected reads.Up-to-datehttps://github.com/lbcb-sci/ravenAssemblyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ravenhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/raven1.8.3raven-assembler1.8.301110111000000000000001000000000000001002626902
rcorrectorrcorrectorRcorrector (RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data.rcorrectorrcorrectorRcorrectorThis is a kmer-based error correction method for RNA-seq data. It can also be applied to other types of sequencing data where the read coverage is non-uniform, such as single-cell sequencing.Sequencing error detectionRNA, RNA-Seq, SequencingTo updatehttps://github.com/mourisl/RcorrectorFastq Manipulationrcorrectoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rcorrectorhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rcorrector1.0.3+galaxy1rcorrector1.0.7Sequencing error detectionRNA, RNA-Seq001000100000000000000000000000000000011030569
rnaquastrna_quastrnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies.rnaQUASTrnaQUASTrnaQUASTQuality assessment tool for de novo transcriptome assemblies.De-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics, RNA-seqUp-to-datehttps://github.com/ablab/rnaquastAssembly, RNArnaquastiuchttps://git.ufz.de/lehmanju/rnaquasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast2.3.0rnaquast2.3.0De-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics11111111000000000000000000000000000001001091110
salsa2salsaA tool to scaffold long read assemblies with Hi-CSALSASALSASALSA> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branchGenome assembly, De-novo assembly, ScaffoldingSequence assembly, DNA binding sites, MappingUp-to-datehttps://github.com/marbl/SALSAAssemblysalsaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa22.3salsa22.3Genome assembly, De-novo assembly, ScaffoldingSequence assembly, DNA binding sites, Mapping101010100000000000000010000000000000010084454
samblastersamblastersamblaster marks duplicates and can output split and discordant alignments from SAM/BAM filessamblastersamblasterSAMBLASTERA tool to mark duplicates and extract discordant and split reads from SAM files.Split read mappingDNA, Sequencing, MappingTo updatehttps://github.com/GregoryFaust/samblasterSAM, Fastq Manipulation, Variant Analysissamblasteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/samblasterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/samblaster0.1.24samblaster0.1.26Split read mappingDNA, Sequencing, Mapping000000000000000000000000000000000000000000
sample_seqssample_seqsSub-sample sequences files (e.g. to reduce coverage)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqsAssembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysissample_seqspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqshttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs0.2.6biopython1.7011111111000000000000001000000000000001101493765
samtools_depadsamtools_depadRe-align a SAM/BAM file with a padded reference (using samtools depad)To updatehttp://www.htslib.org/Assembly, SAM, Sequence Analysissamtools_depadpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depadhttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad0.0.5samtools1.20000000000000000000000000000000000000000000
samtools_depthsamtools_depthCoverage depth via samtoolsTo updatehttp://www.htslib.org/Assembly, Sequence Analysis, SAMsamtools_depthpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depthhttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth0.0.3samtools1.2011111111000000000000111001000000000001112964948
samtools_idxstatssamtools_idxstatsBAM mapping statistics (using samtools idxstats)To updatehttp://www.htslib.org/Assembly, Next Gen Mappers, SAMsamtools_idxstatspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstatshttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats0.0.6samtools1.201111111101000000000011100100010000000110145048426
seq_filter_by_idseq_filter_by_idFilter sequences by IDTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_idFasta Manipulation, Sequence Analysis, Text Manipulationseq_filter_by_idpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_idhttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id0.2.9biopython1.70111111110000000000000010000000000000011030625302
seq_filter_by_mappingseq_filter_by_mappingFilter sequencing reads using SAM/BAM mapping filesTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mappingAssembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysisseq_filter_by_mappingpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mappinghttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping0.0.8biopython1.700010001000000000000000100000000000000110823784
seq_lengthseq_lengthCompute sequence length (from FASTA, QUAL, FASTQ, SFF, etc)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_lengthFasta Manipulation, Fastq Manipulation, Sequence Analysisseq_lengthpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_lengthhttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length0.0.5biopython1.70000000000000000000000010000000000000000000
seq_primer_clipseq_primer_clipTrim off 5' or 3' primersTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clipAssembly, Fasta Manipulation, Text Manipulationseq_primer_clippeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_cliphttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip0.0.18galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
seq_renameseq_renameRename sequences with ID mapping from a tabular fileTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_renameFasta Manipulation, Sequence Analysis, Text Manipulationseq_renamepeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_renamehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename0.0.10galaxy_sequence_utils1.1.5000000000000000000000010000000000000001000
seq_select_by_idseq_select_by_idSelect sequences by IDTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_idFasta Manipulation, Sequence Analysis, Text Manipulationseq_select_by_idpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_idhttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id0.0.15biopython1.70010001000000000000000010000000000000000000
seqprepseqprepTool for merging paired-end Illumina reads and trimming adapters.seqprepseqprepSeqPrepStrips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads.Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primersUp-to-datehttps://github.com/jstjohn/SeqPrepFastq Manipulation, Sequence Analysisseqprepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprephttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep1.3.2seqprep1.3.2Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primers001000100000000000000000000000000000000000
sequence_format_convertersequence_format_convertervarious fasta to tabular conversionsTo updatehttp://artbio.frConvert Formats, Fasta Manipulationsequence_format_converterartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sequence_format_converterhttps://github.com/ARTbio/tools-artbio/tree/main/tools/sequence_format_converter2.2.0python000000000000000000000010000001000000000000
shastashastaFast de novo assembly of long read sequencing dataTo updatehttps://github.com/chanzuckerberg/shastaAssembly, Nanoporeshastaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shastahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta0.6.0shasta0.12.00110011000000000000000100000000000000100154763
short_reads_trim_seqtrim_readsSelect high quality segmentsTo updateFastq Manipulationshort_reads_trim_seqdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_trim_seqhttps://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_trim_seq1.0.0101010100000000000000000000000000000011021220
shovillshovillFaster de novo assembly pipeline based around SpadesshovillshovillshovillShovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too.Genome assemblyGenomics, Microbiology, Sequence assemblyUp-to-datehttps://github.com/tseemann/shovillAssemblyshovilliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shovillhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill1.1.0shovill1.1.0Genome assemblyGenomics, Microbiology, Sequence assembly1111111100000000000010100000000000000110100841600
sicklesickleA windowed adaptive trimming tool for FASTQ files using qualitysicklesicklesickleA tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads.Sequence trimmingData quality managementTo updatehttps://github.com/najoshi/sickleFastq Manipulation, Sequence Analysissickleiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sicklehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sickle1.33.2sickle-trim1.33Sequence trimmingData quality management101110110000000000000000000001000000011026914982
smudgeplotsmudgeplotInference of ploidy and heterozygosity structure using whole genome sequencingsmudgeplotssmudgeplotsSmudgeplotsReference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568Sequence trimming, Genotyping, k-mer countingSequence assembly, Genetic variation, MathematicsUp-to-datehttps://github.com/KamilSJaron/smudgeplotAssemblysmudgeplotgalaxy-australiahttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot0.2.5smudgeplot0.2.5Sequence trimming, Genotyping, k-mer countingSequence assembly, Genetic variation, Mathematics111011100000000000000000000000000000011022203
spadesspades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spadesSPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction.spadescoronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spadesSPAdesSt. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads.Genome assemblySequence assemblyTo updatehttps://github.com/ablab/spadesAssembly, RNA, Metagenomicsspadesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/spadeshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spades3.15.5spades4.0.0Genome assemblySequence assembly9999999900001000000013800200030000000930354772953
spades_header_fixerspades_header_fixerFixes Spades Fasta idsTo updatehttps://github.com/phac-nml/galaxy_toolsFasta Manipulationspades_fasta_header_fixernmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/spades_header_fixer1.1.2+galaxy1sed000000000000000000000000000000000000000000
split_paired_readssplit_paired_readsSplit paired end readsTo updateFastq Manipulationsplit_paired_readsdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/split_paired_readshttps://github.com/galaxyproject/tools-devteam/tree/main/tools/split_paired_reads1.0.0000000000000000000000010000000000000000000
sra-toolsfasterq_dump, fastq_dump, sam_dumpNCBI Sequence Read Archive toolkit utilitiessra-toolssra-toolsSRA Software ToolkitThe SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives.Data handlingDNA, Genomics, SequencingUp-to-datehttps://github.com/ncbi/sra-toolsData Source, Fastq Manipulationsra_toolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sra-toolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sra-tools3.1.1sra-tools3.1.1Data handlingDNA, Genomics, Sequencing33333333000000000000203003000300000003306247350032
tabular_to_fastqtabular_to_fastqTabular to FASTQ converterUp-to-datehttps://github.com/galaxyproject/sequence_utilsFastq Manipulationtabular_to_fastqdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastqhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/tabular_to_fastq1.1.5galaxy_sequence_utils1.1.511111111010000000000000000000000000001102007388
tarfast5tarfast5produces a tar.gz archive of fast5 sequence filesTo updatehttp://artbio.frNanoporetarfast5artbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/tarfast5https://github.com/ARTbio/tools-artbio/tree/main/tools/tarfast50.6.1pigz000000000000000000000000000000000000000000
taxonomy_krona_charttaxonomy_krona_chartKrona pie chart from taxonomic profilekronakronaKronaKrona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome).VisualisationMetagenomicsTo updatehttp://sourceforge.net/projects/krona/Assemblytaxonomy_krona_chartcrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_charthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart2.7.1+galaxy0krona2.8.1VisualisationMetagenomics1111111100000000000011100100000000100110180127426
tgsgapclosertgsgapcloserTGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly.TGS-GapCloserTGS-GapCloserTGS-GapCloserTGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads.Genome assembly, Read mapping, Scaffolding, Localised reassemblySequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, MappingTo updatehttps://github.com/BGI-Qingdao/TGS-GapCloserAssemblytgsgapcloserbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloserhttps://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser1.0.3tgsgapcloser1.2.1Genome assembly, Read mapping, Scaffolding, Localised reassemblySequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping001000100000000000000000000000000000010036460
trim_galoretrim_galoreTrim Galore adaptive quality and adapter trimmertrim_galoretrim_galoreTrim GaloreA wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries.Sequence trimming, Primer removal, Read pre-processingSequence analysisTo updatehttp://www.bioinformatics.babraham.ac.uk/projects/trim_galore/Sequence Analysis, Fastq Manipulationtrim_galorebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/trim_galorehttps://github.com/bgruening/galaxytools/tree/master/tools/trim_galore0.6.7trim-galore0.6.10Sequence trimming, Primer removal, Read pre-processingSequence analysis11111111010000000000101001000000000001102334238699
trimmomatictrimmomaticA flexible read trimming tool for Illumina NGS dataUp-to-datehttp://www.usadellab.org/cms/?page=trimmomaticFastq Manipulationtrimmomaticpjbriggshttps://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatichttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trimmomatic0.39trimmomatic0.3911111111010010000000111000000100011001105862305866
trycyclertrycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsampleTrycycler toolkit wrappersUp-to-datehttps://github.com/rrwick/TrycyclerAssemblytrycycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trycyclerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler0.5.5trycycler0.5.505550555000000000000005000000000000005001478942
unicyclerunicyclerUnicycler is a hybrid assembly pipeline for bacterial genomes.unicyclerunicyclerUnicyclerA tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads.Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assemblyUp-to-datehttps://github.com/rrwick/UnicyclerAssemblyunicycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/unicyclerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler0.5.1unicycler0.5.1Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assembly1111111100000000000001100100010000000110155865732
validate_fasta_databasevalidate_fasta_databaseruns Compomics database identification tool on any FASTA database, and separates valid and invalid entries based on a series of checks.To updateFasta Manipulation, Proteomicsvalidate_fasta_databasegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/validate_fasta_database0.1.5validate-fasta-database1.000100010000000000000000000000000000001002586
velvetvelvetg, velvethde novo genomic assembler specially designed for short read sequencing technologiesvelvetvelvetVelvetA de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD.Formatting, De-novo assemblySequence assemblyTo updatehttps://www.ebi.ac.uk/~zerbino/velvet/Assemblyvelvetdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velvetvelvet1.2.10Formatting, De-novo assemblySequence assembly2222222200000000000022000000000000000200208325420
velvet_optimiservelvetoptimiserAutomatically optimize Velvet assembliesvelvetoptimiservelvetoptimiserVelvetOptimiserThis tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly.Optimisation and refinement, Sequence assemblyGenomics, Sequence assemblyTo updateAssemblyvelvetoptimisersimon-gladmanhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiserhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser2.2.6+galaxy2velvet1.2.10Optimisation and refinement, Sequence assemblyGenomics, Sequence assembly11101110010000000000110000000000000001102554741
verkkoverkkoTelomere-to-telomere assembly pipelineTo updatehttps://github.com/marbl/verkkoAssemblyverkkoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/verkkohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko1.3.1verkko2.10010001000000000000000000000000000000100922
wtdbgwtdbgWTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly.wtdbg2wtdbg2wtdbg2Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy.Genome assembly, De-novo assemblySequence assembly, SequencingUp-to-datehttps://github.com/ruanjue/wtdbg2Assemblywtdbgbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbg2.5wtdbg2.5Genome assembly, De-novo assemblySequence assembly, Sequencing00110011000000000000001000000000000001101161660
xporexpore_dataprep, xpore_diffmodIdentification and quantification of differential RNA modifications from direct RNA sequencingTo updatehttps://github.com/GoekeLab/xporeNanoporexporeartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/xporehttps://github.com/ARTbio/tools-artbio/tree/main/tools/xpore2.1+galaxy0xpore2.1000000000000000000000000000000000000000000
yac_clipperyacClips 3' adapters for small RNA sequencing reads.To updatehttp://artbio.frRNA, Fastq Manipulationyac_clipperartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/yac_clipperhttps://github.com/ARTbio/tools-artbio/tree/main/tools/yac_clipper2.5.1python000000000000000000000110000001000000000000
yahsyahsYet Another Hi-C scaffolding toolUp-to-datehttps://github.com/c-zhou/yahsAssemblyyahsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/yahshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs1.2a.2yahs1.2a.2111011100000000000000000000000000000010064344
+ +
\ No newline at end of file diff --git a/communities/assembly/resources/tools.tsv b/communities/assembly/resources/tools.tsv new file mode 100644 index 00000000..582f8393 --- /dev/null +++ b/communities/assembly/resources/tools.tsv @@ -0,0 +1,178 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +TrimNs trimns TrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipeline To update https://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNs Assembly trimns iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trimN https://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs 0.1.0 trimns_vgp 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 42 False +abacas abacas Order and Orientate Contigs To update https://github.com/phac-nml/abacas Assembly abacas nml https://github.com/phac-nml/abacas https://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas 1.1 mummer 3.23 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +abyss abyss-pe Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler abyss abyss ABySS De novo genome sequence assembler using short reads. Genome assembly, De-novo assembly, Scaffolding Sequence assembly To update http://www.bcgsc.ca/platform/bioinfo/software/abyss Assembly abyss iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss https://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss 2.3.7 abyss 2.3.8 Genome assembly, De-novo assembly, Scaffolding Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 391 4278 False +adapter_removal adapter_removal Removes residual adapter sequences from single-end (SE) or paired-end (PE) FASTQ reads. adapterremoval adapterremoval AdapterRemoval AdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. AdapterRemoval can analyze both single end and paired end data, and can be used to merge overlapping paired-ended reads into (longer) consensus sequences. Additionally, AdapterRemoval can construct a consensus adapter sequence for paired-ended reads, if which this information is not available. Sequence trimming, Sequence merging, Primer removal Up-to-date https://github.com/MikkelSchubert/adapterremoval Fasta Manipulation, Sequence Analysis adapter_removal iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/adapter_removal 2.3.4 adapterremoval 2.3.4 Sequence trimming, Sequence merging, Primer removal 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 37 217 False +agat agat GTF/GFF analysis toolkit agat agat AGAT Another Gff Analysis Toolkit (AGAT)Suite of tools to handle gene annotations in any GTF/GFF format. Data handling, Genome annotation Genomics Up-to-date https://github.com/NBISweden/AGAT Convert Formats, Statistics, Fasta Manipulation agat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/agat https://github.com/bgruening/galaxytools/tree/master/tools/agat 1.4.0 agat 1.4.0 Data handling, Genome annotation Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 42 481 False +align_back_trans align_back_trans Thread nucleotides onto a protein alignment (back-translation) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans Fasta Manipulation, Sequence Analysis align_back_trans peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans 0.0.10 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 329 False +assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. Up-to-date https://github.com/rjchallis/assembly-stats Assembly assembly_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-stats https://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats 17.02 rjchallis-assembly-stats 17.02 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +assemblystats assemblystats Summarise an assembly (e.g. N50 metrics) To update https://github.com/phac-nml/galaxy_tools Assembly assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +atactk_trim_adapters atactk_trim_adapters Trim adapters from paired-end HTS reads. To update https://github.com/ParkerLab/atactk/ Fastq Manipulation atactk_trim_adapters rnateam https://github.com/bgruening/galaxytools/blob/master/tools/trim_adapters https://github.com/bgruening/galaxytools/tree/master/tools/atactk_trim_adapters 0.1.6 atactk 0.1.9 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 26 257 False +bam2mappingstats bam2mappingstats Generates mapping stats from a bam file. To update https://github.com/phac-nml/galaxy_tools Assembly bam2mappingstats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats 1.1.0 perl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +barcode_splitter barcode_splitter A utility to split sequence files using multiple sets of barcodes To update https://bitbucket.org/princeton_genomics/barcode_splitter/ Fastq Manipulation barcode_splitter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/barcode_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tools/barcode_splitter 0.18.4.0 barcode_splitter 0.18.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +berokka berokka Berokka is used to trim, circularise, orient & filter long read bacterial genome assemblies. Up-to-date https://github.com/tseemann/berokka Fasta Manipulation berokka iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/berokka https://github.com/galaxyproject/tools-iuc/tree/main/tools/berokka 0.2.3 berokka 0.2.3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bionano bionano_scaffold Bionano Solve is a set of tools for analyzing Bionano data To update https://bionanogenomics.com/ Assembly bionano bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bionano https://github.com/bgruening/galaxytools/tree/master/tools/bionano 3.7.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 112 531 False +biscot biscot Bionano scaffolding correction tool Up-to-date https://github.com/institut-de-genomique/biscot Assembly biscot iuc https://github.com/bgruening/iuc/tree/master/tools/biscot https://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot 2.3.3 biscot 2.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 3 False +blast_rbh blast_reciprocal_best_hits BLAST Reciprocal Best Hits (RBH) from two FASTA files To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh Fasta Manipulation, Sequence Analysis blast_rbh peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh 0.3.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 121 22499 False +blast_to_scaffold blast2scaffold Generate DNA scaffold from blastn or tblastx alignments of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blast_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold 1.1.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +blast_unmatched blast_unmatched Extract unmatched query sequences from blast To update http://artbio.fr Fasta Manipulation blast_unmatched artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched 1.0.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +blastparser_and_hits BlastParser_and_hits Parse blast outputs and compile hits To update http://artbio.fr Assembly, RNA blastparser_and_hits artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hits https://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits 2.7.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +blastx_to_scaffold blastx2scaffold Generate DNA scaffold from blastx alignment of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blastx_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold 1.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +blobtoolkit blobtoolkit Identification and isolation non-target data in draft and publicly available genome assemblies. To update https://blobtoolkit.genomehubs.org/ Sequence Analysis, Assembly blobtoolkit bgruening https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit 4.0.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 685 False +cap3 cap3 cap3 wrapper To update http://artbio.fr Assembly cap3 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 2.0.1 cap3 10.2011 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 101 7766 False +cdhit cd_hit Cluster or compare biological sequence datasets cd-hit cd-hit cd-hit Cluster a nucleotide dataset into representative sequences. Sequence clustering Sequencing Up-to-date http://weizhongli-lab.org/cd-hit/ Sequence Analysis, Fasta Manipulation cd_hit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhit https://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit 4.8.1 cd-hit 4.8.1 Sequence clustering Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 280 4474 False +cherry_pick_fasta cherry_pick_fasta Pick fasta sequence with specific header content To update http://artbio.fr Fasta Manipulation cherry_pick_fasta artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta https://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta 4.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +circexplorer2 circexplorer2 Comprehensive and integrative circular RNA analysis toolset. circexplorer2 circexplorer2 CIRCexplorer2 Genome-wide annotation of circRNAs and their alternative back-splicing/splicing. RNA splicing, Gene transcripts, Literature and language Up-to-date https://github.com/YangLab/CIRCexplorer2 RNA, Assembly circexplorer2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer2 2.3.8 circexplorer2 2.3.8 RNA splicing, Gene transcripts, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 16 269 False +clc_assembly_cell clc_assembler, clc_mapper Galaxy wrapper for the CLC Assembly Cell suite from CLCBio To update https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell Assembly, Next Gen Mappers, SAM clc_assembly_cell peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell 0.0.7 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +combine_assembly_stats combine_stats Combine multiple Assemblystats datasets into a single tabular report To update https://github.com/phac-nml/galaxy_tools Assembly combine_assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats 1.0 perl-getopt-long 2.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +convert_solid_color2nuc color2nuc Convert Color Space to Nucleotides To update Fasta Manipulation convert_solid_color2nuc devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_solid_color2nuc https://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_solid_color2nuc 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +count_roi_variants count_roi_variants Count sequence variants in region of interest in BAM file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants Assembly, SAM count_roi_variants peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants 0.0.6 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +coverage_stats coverage_stats BAM coverage statistics using samtools idxstats and depth To update https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats Assembly, SAM coverage_stats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats 0.1.0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cutadapt cutadapt Flexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq). cutadapt cutadapt Cutadapt Find and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads. Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing Up-to-date https://cutadapt.readthedocs.org/en/stable/ Fasta Manipulation, Fastq Manipulation, Sequence Analysis cutadapt lparsons https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapt https://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt 4.9 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 5090 232004 False +disco disco DISCO is a overlap-layout-consensus (OLC) metagenome assembler disco disco DISCO DISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer. Protein sequence analysis Structure determination To update http://disco.omicsbio.org/ Metagenomics, Assembly disco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/disco disco 1.2 Protein sequence analysis Structure determination 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 369 False +ear make_ear A tool to compile assembly reports and stastics from assembly pipeline To update https://github.com/ERGA-consortium/EARs/tree/main Sequence Analysis, Assembly erga_ear bgruening https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 24.08.26 reportlab 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +emboss_5 EMBOSS: antigenic1, EMBOSS: backtranseq2, EMBOSS: banana3, EMBOSS: biosed4, EMBOSS: btwisted5, EMBOSS: cai6, EMBOSS: cai_custom6, EMBOSS: chaos7, EMBOSS: charge8, EMBOSS: checktrans9, EMBOSS: chips10, EMBOSS: cirdna11, EMBOSS: codcmp12, EMBOSS: coderet13, EMBOSS: compseq14, EMBOSS: cpgplot15, EMBOSS: cpgreport16, EMBOSS: cusp17, EMBOSS: cutseq18, EMBOSS: dan19, EMBOSS: degapseq20, EMBOSS: descseq21, EMBOSS: diffseq22, EMBOSS: digest23, EMBOSS: dotmatcher24, EMBOSS: dotpath25, EMBOSS: dottup26, EMBOSS: dreg27, EMBOSS: einverted28, EMBOSS: epestfind29, EMBOSS: equicktandem31, EMBOSS: est2genome32, EMBOSS: etandem33, EMBOSS: extractfeat34, EMBOSS: extractseq35, EMBOSS: freak36, EMBOSS: fuzznuc37, EMBOSS: fuzzpro38, EMBOSS: fuzztran39, EMBOSS: garnier40, EMBOSS: geecee41, EMBOSS: getorf42, EMBOSS: helixturnhelix43, EMBOSS: hmoment44, EMBOSS: iep45, EMBOSS: infoseq46, EMBOSS: isochore47, EMBOSS: lindna48, EMBOSS: marscan49, EMBOSS: maskfeat50, EMBOSS: maskseq51, EMBOSS: matcher52, EMBOSS: megamerger53, EMBOSS: merger54, EMBOSS: msbar55, EMBOSS: needle56, EMBOSS: newcpgreport57, EMBOSS: newcpgseek58, EMBOSS: newseq59, EMBOSS: noreturn60, EMBOSS: notseq61, EMBOSS: nthseq62, EMBOSS: octanol63, EMBOSS: oddcomp64, EMBOSS: palindrome65, EMBOSS: pasteseq66, EMBOSS: patmatdb67, EMBOSS: pepcoil68, EMBOSS: pepinfo69, EMBOSS: pepnet70, EMBOSS: pepstats71, EMBOSS: pepwheel72, EMBOSS: pepwindow73, EMBOSS: pepwindowall74, EMBOSS: plotcon75, EMBOSS: plotorf76, EMBOSS: polydot77, EMBOSS: preg78, EMBOSS: prettyplot79, EMBOSS: prettyseq80, EMBOSS: primersearch81, EMBOSS: revseq82, EMBOSS: seqmatchall83, EMBOSS: seqret84, EMBOSS: showfeat85, EMBOSS: shuffleseq87, EMBOSS: sigcleave88, EMBOSS: sirna89, EMBOSS: sixpack90, EMBOSS: skipseq91, EMBOSS: splitter92, EMBOSS: supermatcher95, EMBOSS: syco96, EMBOSS: tcode97, EMBOSS: textsearch98, EMBOSS: tmap99, EMBOSS: tranalign100, EMBOSS: transeq101, EMBOSS: trimest102, EMBOSS: trimseq103, EMBOSS: twofeat104, EMBOSS: union105, EMBOSS: vectorstrip106, EMBOSS: water107, EMBOSS: wobble108, EMBOSS: wordcount109, EMBOSS: wordmatch110 Galaxy wrappers for EMBOSS version 5.0.0 tools emboss emboss EMBOSS Diverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool. Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis, Biology To update http://emboss.open-bio.org/ Sequence Analysis, Fasta Manipulation emboss_5 devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5 https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_5 5.0.0 emboss 6.6.0 Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis 107 107 107 107 107 107 107 107 0 0 0 0 107 0 0 0 0 0 0 0 0 0 107 0 0 107 0 0 0 107 0 0 0 0 0 0 0 107 107 0 1816 89530 False +fasplit fasplit faSplit is a tool to split a single FASTA file into several files UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Fasta Manipulation ucsc_fasplit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fasplit https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fasplit 377 ucsc-fasplit 469 Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 242 2644 False +fasta_clipping_histogram cshl_fasta_clipping_histogram Length Distribution chart Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Graphics, Statistics fasta_clipping_histogram devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_clipping_histogram https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_clipping_histogram 0.0.14 fastx_toolkit 0.0.14 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +fasta_compute_length fasta_compute_length Compute sequence length To update Fasta Manipulation fasta_compute_length devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_length https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_compute_length 1.0.3 python 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 380 7758 False +fasta_concatenate_by_species fasta_concatenate0 Concatenate FASTA alignment by species To update Fasta Manipulation fasta_concatenate_by_species devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_concatenate_by_species 0.0.1 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 88 35793 False +fasta_filter_by_id fasta_filter_by_id Filter FASTA sequences by ID (DEPRECATED) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation fasta_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id 0.0.7 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fasta_filter_by_length fasta_filter_by_length Filter sequences by length To update Fasta Manipulation fasta_filter_by_length devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_length https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_filter_by_length 1.2 python 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 350 48649 False +fasta_formatter cshl_fasta_formatter FASTA Width formatter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fasta_formatter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_formatter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_formatter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 68 2912 False +fasta_merge_files_and_filter_unique_sequences fasta_merge_files_and_filter_unique_sequences Concatenate FASTA database files together To update https://github.com/galaxyproteomics/tools-galaxyp/ Fasta Manipulation fasta_merge_files_and_filter_unique_sequences galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences 1.2.0 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 461 29886 False +fasta_nucleotide_changer cshl_fasta_nucleotides_changer RNA/DNA converter. Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fasta_nucleotide_changer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_nucleotide_changer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_nucleotide_changer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 29 774 False +fasta_to_tabular fasta2tab FASTA-to-Tabular converter To update Fasta Manipulation fasta_to_tabular devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_to_tabular https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_to_tabular 1.1.1 python 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 622 105935 False +fastk fastk_fastk FastK: A K-mer counter (for HQ assembly data sets) To update https://github.com/thegenemyers/FASTK Assembly fastk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk 1.0.0 fastk 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_combiner fastq_combiner Combine FASTA and QUAL into FASTQ Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation, Fasta Manipulation fastq_combiner devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_combiner https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_combiner 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 66 8676 False +fastq_filter fastq_filter Filter FASTQ reads by quality score and length Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_filter 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 266 14222 False +fastq_filter_by_id fastq_filter_by_id Filter FASTQ sequences by ID (DEPRECATED) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id Fastq Manipulation, Sequence Analysis, Text Manipulation fastq_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id 0.0.7 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_groomer fastq_groomer Convert between various FASTQ quality formats. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_groomer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_groomer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_groomer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1028 94802 False +fastq_info fastq_info FASTQ info allows to validate single or paired fastq files To update https://github.com/nunofonseca/fastq_utils Fastq Manipulation fastq_info bgruening https://github.com/bgruening/galaxytools/tree/master/tools/fastq_info https://github.com/bgruening/galaxytools/tree/master/tools/fastq_info 0.25.1 fastq_utils 0.25.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 679 5765 False +fastq_manipulation fastq_manipulation Manipulate FASTQ reads on various attributes. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_manipulation devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_manipulation https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_manipulation 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 69 2503 False +fastq_masker_by_quality fastq_masker_by_quality FASTQ Masker by quality score Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_masker_by_quality devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 170 False +fastq_pair fastq_pair Paired-end fastq pairer To update https://github.com/linsalrob/fastq-pair Fastq Manipulation fastq_pair ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_pair https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_pair 1.0+galaxy0 fastq-pair 1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_paired_end_deinterlacer fastq_paired_end_deinterlacer FASTQ de-interlacer on paired end reads. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_deinterlacer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 122 8410 False +fastq_paired_end_interlacer fastq_paired_end_interlacer FASTQ interlacer on paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_interlacer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1087 17024 False +fastq_paired_end_joiner fastq_paired_end_joiner FASTQ joiner on paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_joiner devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 245 16635 False +fastq_paired_end_splitter fastq_paired_end_splitter FASTQ splitter on joined paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_splitter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 196 3092 False +fastq_quality_boxplot cshl_fastq_quality_boxplot Draw quality score boxplot Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Graphics, Statistics fastq_quality_boxplot devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_boxplot https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_boxplot 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 51 1178 False +fastq_quality_converter cshl_fastq_quality_converter Quality format converter (ASCII-Numeric) Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation fastq_quality_converter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_converter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 11 220 False +fastq_quality_filter cshl_fastq_quality_filter Filter by quality Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation fastq_quality_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_filter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1509 15172 False +fastq_quality_trimmer cshl_fastq_quality_trimmer FASTQ trimmer based on quality To update https://github.com/agordon/fastx_toolkit Fastq Manipulation fastq_quality_trimmer ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_quality_trimmer https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_quality_trimmer 0.0.14+galaxy0 fastx_toolkit 0.0.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_stats fastq_stats FASTQ Summary Statistics by column Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_stats devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_stats https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_stats 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 221 4246 False +fastq_to_fasta cshl_fastq_to_fasta FASTQ to FASTA converter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Convert Formats fastq_to_fasta devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fasta https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_to_fasta 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 419 13599 False +fastq_to_tabular fastq_to_tabular FASTQ to Tabular converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_to_tabular devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_to_tabular https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_to_tabular 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 93 12593 False +fastq_trimmer fastq_trimmer FASTQ Trimmer by quality Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_trimmer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_trimmer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_trimmer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 210 9757 False +fastq_trimmer_by_quality fastq_quality_trimmer FASTQ Quality Trimmer by sliding window Up-to-date Fastq Manipulation fastq_trimmer_by_quality devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastq_trimmer_by_quality https://github.com/galaxyproject/tools-devteam/tree/main/tools/fastq_trimmer_by_quality 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 459 5676 False +fastqc fastqc Read QC reports using FastQC fastqc fastqc FastQC This tool aims to provide a QC report which can spot problems or biases which originate either in the sequencer or in the starting library material. It can be run in one of two modes. It can either run as a stand alone interactive application for the immediate analysis of small numbers of FastQ files, or it can be run in a non-interactive mode where it would be suitable for integrating into a larger analysis pipeline for the systematic processing of large numbers of files. Sequence composition calculation, Sequencing quality control, Statistical calculation Sequencing, Data quality management, Sequence analysis To update http://www.bioinformatics.babraham.ac.uk/projects/fastqc/ Fastq Manipulation fastqc devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqc 0.74+galaxy1 fastqc 0.12.1 Sequence composition calculation, Sequencing quality control, Statistical calculation Sequencing, Data quality management, Sequence analysis 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 1 1 0 17447 1556625 False +fastqsolexa_to_fasta_qual fastqsolexa_to_fasta_qual FASTQSOLEXA-to-FASTA-QUAL extracts sequences and quality scores from FASTQSOLEXA data To update Convert Formats, Fastq Manipulation fastqsolexa_to_fasta_qual devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqsolexa_to_fasta_qual https://github.com/galaxyproject/tools-devteam/tree/main/tools/fastqsolexa_to_fasta_qual 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastqtofasta fastq_to_fasta_python FASTQ to FASTA converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastqtofasta devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastqtofasta 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1371 178178 False +fastx_artifacts_filter cshl_fastx_artifacts_filter Remove sequencing artifacts Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_artifacts_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_artifacts_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_artifacts_filter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 27 1810 False +fastx_barcode_splitter cshl_fastx_barcode_splitter Barcode Splitter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_barcode_splitter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_barcode_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_barcode_splitter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 128 16591 False +fastx_clipper cshl_fastx_clipper Clip adapter sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_clipper devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_clipper https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_clipper 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 96 3333 False +fastx_collapser cshl_fastx_collapser Collapse sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fastx_collapser devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_collapser https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_collapser 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 114 61218 False +fastx_nucleotides_distribution cshl_fastx_nucleotides_distribution Draw nucleotides distribution chart Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Graphics fastx_nucleotides_distribution devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_nucleotides_distribution https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_nucleotides_distribution 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 25 249 False +fastx_quality_statistics cshl_fastx_quality_statistics Compute quality statistics Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Statistics fastx_quality_statistics devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_quality_statistics https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_quality_statistics 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 63 2176 False +fastx_renamer cshl_fastx_renamer Rename sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_renamer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_renamer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_renamer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 68 2280 False +fastx_reverse_complement cshl_fastx_reverse_complement Reverse-Complement Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Fasta Manipulation fastx_reverse_complement devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_reverse_complement https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_reverse_complement 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 156 10832 False +fastx_trimmer cshl_fastx_trimmer Trim sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_trimmer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_trimmer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_trimmer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 205 13149 False +fermikit fermi2, fermikit_variants FermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data. Up-to-date https://github.com/lh3/fermikit Assembly, Variant Analysis fermikit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikit https://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikit r193 fermi2 r193 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fetch_fasta_from_ncbi retrieve_fasta_from_NCBI Fetch fasta sequences from NCBI using eutils wrappers To update http://artbio.fr Fasta Manipulation, Data Source fetch_fasta_from_ncbi artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi https://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi 3.1.0 urllib3 1.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +filter_by_fasta_ids filter_by_fasta_ids Filter FASTA on the headers and/or the sequences To update Fasta Manipulation, Proteomics filter_by_fasta_ids galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids 2.3 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 426 26274 False +filter_spades_repeats filter_spades_repeat Remove short and repeat contigs/scaffolds To update https://github.com/phac-nml/galaxy_tools/ Assembly filter_spades_repeats nml https://github.com/phac-nml/galaxy_tools/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats 1.0.1 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +filtlong filtlong Filtlong - Filtering long reads by quality filtlong filtlong Filtlong Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter. Filtering, Sequencing quality control Up-to-date https://github.com/rrwick/Filtlong Fastq Manipulation, Sequence Analysis filtlong iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlong https://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong 0.2.1 filtlong 0.2.1 Filtering, Sequencing quality control 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 617 30483 False +flair flair_collapse, flair_correct FLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads. To update https://github.com/BrooksLabUCSC/flair Nanopore flair iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flair https://github.com/galaxyproject/tools-iuc/tree/main/tools/flair 1.5 flair 2.0.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 14 331 False +flash flash Fast Length Adjustment of SHort reads flash flash FLASH Identifies paired-end reads which overlap in the middle, converting them to single long reads Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly Up-to-date https://ccb.jhu.edu/software/FLASH/ Assembly, Fastq Manipulation flash iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flash https://github.com/galaxyproject/tools-iuc/tree/main/tools/flash 1.2.11 flash 1.2.11 Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 74 13759 False +flye flye Assembly of long and error-prone reads. Flye Flye Flye Flye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs. Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing, Genomics To update https://github.com/fenderglass/Flye/ Assembly flye bgruening https://github.com/bgruening/galaxytools/tree/master/tools/flye https://github.com/bgruening/galaxytools/tree/master/tools/flye 2.9.4 flye 2.9.5 Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1499 20904 False +format_cd_hit_output format_cd_hit_output Format CD-hit output to rename representative sequences with cluster name and/or extract distribution inside clusters given a mapping file To update Fasta Manipulation format_cd_hit_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output/ https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output 1.0.0+galaxy1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 166 False +get_pairs get_pairs Separate paired and unpaired reads from two fastq files To update Fastq Manipulation get_pairs genouest https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs 0.3 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +get_reference_fasta get_fasta_reference Obtain reference genome sequence. To update http://artbio.fr Data Source, Fasta Manipulation get_reference_fasta artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta https://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta 0.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +getorganelle get_annotated_regions_from_gb, get_organelle_from_reads GetOrganelle - This toolkit assembles organelle genomes from genomic skimming data. getorganelle getorganelle GetOrganelle A fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data. De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms Up-to-date https://github.com/Kinggerm/GetOrganelle Assembly getorganelle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganelle https://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle 1.7.7.1 getorganelle 1.7.7.1 De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 18 495 False +graphmap graphmap_align, graphmap_overlap Mapper for long, error-prone reads. graphmap graphmap graphmap Splice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing To update https://github.com/isovic/graphmap/ Assembly graphmap bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphmap https://github.com/bgruening/galaxytools/tree/master/tools/graphmap 0.5.2 graphmap 0.6.3 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 136 6651 False +guppy guppy-basecaller A wrapper for the guppy basecaller tool from Oxford Nanopore Technologies To update http://artbio.fr Nanopore guppy_basecaller artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy 6.5.7+galaxy0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hapcut2 hapcut2 Robust and accurate haplotype assembly for diverse sequencing technologies hapcut2 hapcut2 HapCUT2 "HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to ""just work"" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.md" Haplotype mapping, Variant classification Up-to-date https://github.com/vibansal/HapCUT2 Assembly hapcut2 galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut2 1.3.4 hapcut2 1.3.4 Haplotype mapping, Variant classification 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hapog hapog Hapo-G - Haplotype-Aware Polishing of Genomes hapog hapog Hapo-G Hapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes. Genome assembly, Optimisation and refinement Sequence assembly, Genomics Up-to-date https://github.com/institut-de-genomique/HAPO-G Assembly hapog iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog 1.3.8 hapog 1.3.8 Genome assembly, Optimisation and refinement Sequence assembly, Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 295 False +hifiasm hifiasm A fast haplotype-resolved de novo assembler Up-to-date https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm 0.19.9 hifiasm 0.19.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 297 1410 False +hisat hisat HISAT is a fast and sensitive spliced alignment program. To update http://ccb.jhu.edu/software/hisat/index.shtml Assembly hisat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/hisat https://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat 1.0.3 hisat 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 228 False +hisat2 hisat2 HISAT2 is a fast and sensitive spliced alignment program. hisat2 hisat2 HISAT2 Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome). Sequence alignment RNA-seq Up-to-date http://ccb.jhu.edu/software/hisat2/ Assembly hisat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat2 2.2.1 hisat2 2.2.1 Sequence alignment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4183 299104 False +hypo hypo Super Fast & Accurate Polisher for Long Read Genome Assemblies HyPo HyPo HyPo HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes. Optimisation and refinement, Genome assembly Sequence assembly, Genomics Up-to-date https://github.com/kensung-lab/hypo Assembly hypo iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo https://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo 1.0.3 hypo 1.0.3 Optimisation and refinement, Genome assembly Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 39 354 False +idba_ud idba_hybrid, idba_tran, idba_ud Wrappers for the idba assembler variants. idba idba IDBA A short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system. Sequence assembly Sequence assembly To update https://i.cs.hku.hk/~alse/hkubrg/projects/index.html Assembly idba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud https://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_ud idba 1.1.3 Sequence assembly Sequence assembly 3 0 3 3 3 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 69 1127 False +instagraal instagraal Large genome reassembly based on Hi-C data instagraal instagraal instaGRAAL Chromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13) Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites To update https://github.com/koszullab/instaGRAAL Assembly instagraal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/instagraal https://github.com/bgruening/galaxytools/tree/master/tools/instagraal 0.1.6 Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 139 False +jellyfish jellyfish Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA Jellyfish Jellyfish Jellyfish A command-line algorithm for counting k-mers in DNA sequence. k-mer counting Sequence analysis, Genomics To update https://github.com/gmarcais/Jellyfish Assembly jellyfish iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish https://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfish kmer-jellyfish 2.3.1 k-mer counting Sequence analysis, Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 91 1138 False +khmer khmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_median In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more khmer khmer khmer khmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data. Standardisation and normalisation, De-novo assembly Sequence assembly Up-to-date https://khmer.readthedocs.org/ Assembly, Next Gen Mappers khmer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer 3.0.0a3 khmer 3.0.0a3 Standardisation and normalisation, De-novo assembly Sequence assembly 8 8 8 0 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 8 8 0 63 2022 False +length_and_gc_content length_and_gc_content Gets gene length and gc content from a fasta and a GTF file To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content Fasta Manipulation, Statistics, RNA, Micro-array Analysis length_and_gc_content iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content https://github.com/galaxyproject/tools-iuc/tree/main/tools/length_and_gc_content 0.1.2 r-optparse 1.3.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 322 4090 False +lighter lighter Lighter is a kmer-based error correction method for whole genome sequencing data lighter lighter Lighter Kmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors. k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Sequencing, Whole genome sequencing, DNA, Genomics To update https://github.com/mourisl/Lighter Sequence Analysis, Fasta Manipulation lighter bgruening https://github.com/bgruening/galaxytools/tree/master/tools/lighter https://github.com/bgruening/galaxytools/tree/master/tools/lighter 1.0 lighter 1.1.3 k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Whole genome sequencing, DNA, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 152 False +links links Scaffold genome assemblies with long reads. links links LINKS LINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS. Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing Up-to-date https://github.com/bcgsc/LINKS Assembly links iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/links https://github.com/galaxyproject/tools-iuc/tree/main/tools/links 2.0.1 links 2.0.1 Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 77 405 False +make_nr make_nr Make a FASTA file non-redundant To update https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr Fasta Manipulation, Sequence Analysis make_nr peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr 0.0.3 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +megahit megahit An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph. megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly Up-to-date https://github.com/voutcn/megahit Sequence Analysis, Assembly, Metagenomics megahit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit 1.2.9 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 548 9530 False +megahit_contig2fastg megahit_contig2fastg A subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg) megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly To update https://github.com/voutcn/megahit/blob/master/tools/toolkit.cpp Sequence Analysis, Assembly, Metagenomics megahit_contig2fastg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg 1.1.3 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 54 475 False +merqury merqury, merquryplot Merqury is a tool for evaluating genomes assemblies based of k-mer operations. merqury merqury Merqury Reference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose. Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology Up-to-date https://github.com/marbl/merqury Assembly merqury iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury https://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury 1.3 merqury 1.3 Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 244 2483 False +meryl meryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_mode Meryl a k-mer counter. meryl meryl Meryl Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu. k-mer counting Whole genome sequencing, Genomics, Sequence analysis, Sequencing Up-to-date https://github.com/marbl/meryl Assembly meryl iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl 1.3 merqury 1.3 k-mer counting Whole genome sequencing, Genomics, Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +mgnify_seqprep mgnify_seqprep A modifiied vesion of SeqPrep. Made for use with the MGnify pipelines. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers To update https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis mgnify_seqprep bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep 1.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +minia minia Short-read assembler based on a de Bruijn graph minia minia Minia Short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day. Genome assembly Sequence assembly Up-to-date https://gatb.inria.fr/software/minia/ Assembly minia iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia https://github.com/galaxyproject/tools-iuc/tree/main/tools/minia 3.2.6 minia 3.2.6 Genome assembly Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 109 2206 False +miniasm miniasm Miniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step) miniasm miniasm miniasm Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. De-novo assembly Genomics, Sequence assembly To update https://github.com/lh3/miniasm Assembly miniasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm 0.3_r179 miniasm 0.3 De-novo assembly Genomics, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 178 11938 False +mitobim mitobim assemble mitochondrial genomes Up-to-date https://github.com/chrishah/MITObim Assembly mitobim iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobim https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim 1.9.1 mitobim 1.9.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 66 881 False +mitohifi mitohifi Assembly mitogenomes from Pacbio HiFi read. To update https://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2 Assembly mitohifi bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi 3 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 56 613 False +msaboot msaboot A multiple sequences alignment bootstrapping tool. Up-to-date https://github.com/phac-nml/msaboot Fasta Manipulation msaboot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/msaboot https://github.com/galaxyproject/tools-iuc/tree/main/tools/msaboot 0.1.2 msaboot 0.1.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 803 False +multiqc multiqc MultiQC aggregates results from bioinformatics analyses across many samples into a single report multiqc multiqc MultiQC MultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. Validation, Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics To update http://multiqc.info/ Fastq Manipulation, Statistics, Visualization multiqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc 1.11 multiqc 1.24.1 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 8320 162790 False +necat necat Error correction and de-novo assembly for ONT Nanopore reads necat necat NECAT NECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads. De-novo assembly Sequence assembly Up-to-date https://github.com/xiaochuanle/NECAT Assembly necat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/necat https://github.com/galaxyproject/tools-iuc/tree/main/tools/necat 0.0.1_update20200803 necat 0.0.1_update20200803 De-novo assembly Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 95 667 False +nextdenovo nextdenovo String graph-based de novo assembler for long reads nextdenovo nextdenovo NextDenovo "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a ""correct-then-assemble"" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages." De-novo assembly, Genome assembly Sequencing, Sequence assembly To update https://github.com/Nextomics/NextDenovo Assembly nextdenovo bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo 2.5.0 nextdenovo 2.5.2 De-novo assembly, Genome assembly Sequencing, Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 268 False +nlstradamus nlstradamus Find nuclear localization signals (NLSs) in protein sequences To update http://www.moseslab.csb.utoronto.ca/NLStradamus Fasta Manipulation, Sequence Analysis nlstradamus peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus 0.0.11 NLStradamus 1.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +novoplasty novoplasty NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. To update https://github.com/ndierckx/NOVOPlasty Assembly novoplasty iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplasty https://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty 4.3.1 novoplasty 4.3.5 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 162 6384 False +oases oasesoptimiserv Short read assembler To update http://artbio.fr Assembly, RNA oases artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/oases https://github.com/ARTbio/tools-artbio/tree/main/tools/oases 1.4.0 oases 0.2.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +ont_fast5_api ont_fast5_api_compress_fast5, ont_fast5_api_fast5_subset, ont_fast5_api_multi_to_single_fast5, ont_fast5_api_single_to_multi_fast5 ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore FAST5 file format. To update https://github.com/nanoporetech/ont_fast5_api/ Nanopore ont_fast5_api iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ont_fast5_api https://github.com/galaxyproject/tools-iuc/tree/main/tools/ont_fast5_api 3.1.3 ont-fast5-api 4.1.3 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 39 2654 False +pbtk bam2fastx Convert PacBio Bam File to fasta or fastq file Up-to-date https://github.com/PacificBiosciences/pbtk Convert Formats, Fasta Manipulation, Fastq Manipulation bam2fastx iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pbtk https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbtk 3.1.1 pbtk 3.1.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pear iuc_pear PEAR evaluates all possible paired-end read overlaps pear pear PEAR Paired-end read merger. PEAR evaluates all possible paired-end read overlaps without requiring the target fragment size as input. In addition, it implements a statistical test for minimizing false-positive results. Sequence merging Sequence assembly Up-to-date https://cme.h-its.org/exelixis/web/software/pear/ Fastq Manipulation pear iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pear https://github.com/galaxyproject/tools-iuc/tree/main/tools/pear 0.9.6 pear 0.9.6 Sequence merging Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 150 4305 False +plasmidspades plasmidspades Genome assembler for assemblying plasmid To update Assembly plasmidspades nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades 1.1 spades 4.0.0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +porechop porechop Porechop - Finding and removing adapters from Oxford Nanopore reads To update https://github.com/rrwick/Porechop Fasta Manipulation, Fastq Manipulation porechop iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop https://github.com/galaxyproject/tools-iuc/tree/main/tools/porechop porechop 0.2.4 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1046 185468 False +poretools poretools_events, poretools_extract, poretools_hist, poretools_nucdist, poretools_occupancy, poretools_qualdist, poretools_qualpos, poretools_squiggle, poretools_stats, poretools_tabular, poretools_times, poretools_winner, poretools_yield_plot A flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis. poretools poretools Poretools Flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis. Nucleic acid sequence analysis DNA, Sequencing Up-to-date https://poretools.readthedocs.io/en/latest/ Fasta Manipulation, Fastq Manipulation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools https://github.com/galaxyproject/tools-iuc/tree/main/tools/poretools 0.6.1a1 poretools 0.6.1a1 Nucleic acid sequence analysis DNA, Sequencing 13 13 13 0 13 13 13 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 13 0 409 18773 False +prinseq prinseq PRINSEQ is a tool for easy and rapid quality control and data processing of metagenomic and metatranscriptomic datasets prinseq prinseq PRINSEQ PRINSEQ is a sequence processing tool that can be used to filter, reformat and trim genomic and metagenomic sequence data. It generates summary statistics of the input in graphical and tabular formats that can be used for quality control steps. PRINSEQ is available as both standalone and web-based versions. Read pre-processing, Sequence trimming, Sequence contamination filtering Transcriptomics, Metagenomics, Genomics To update http://prinseq.sourceforge.net/manual.html Fastq Manipulation, Metagenomics prinseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/prinseq/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/prinseq @TOOL_VERSION+galaxy2 prinseq 0.20.4 Read pre-processing, Sequence trimming, Sequence contamination filtering Transcriptomics, Metagenomics 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 70 7881 False +promer promer4_substitutions Aligns two sets of contigs and reports amino acid substitutions between them To update https://github.com/phac-nml/promer Assembly promer nml https://github.com/phac-nml/promer https://github.com/phac-nml/galaxy_tools/tree/master/tools/promer 1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +purge_dups purge_dups Purge haplotigs and overlaps in an assembly based on read depth purge_dups purge_dups purge_dups Identifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuences Genome assembly, Read binning, Scaffolding Sequence assembly Up-to-date https://github.com/dfguan/purge_dups Assembly purge_dups iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dups https://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups 1.2.6 purge_dups 1.2.6 Genome assembly, Read binning, Scaffolding Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 167 16800 False +pycoqc pycoqc QC metrics for ONT Basecalling pycoqc pycoqc pycoQC PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing Up-to-date https://github.com/tleonardi/pycoQC Nanopore pycoqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc 2.5.2 pycoqc 2.5.2 Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 350 21123 False +qfilt qfilt Filter sequencing data To update https://github.com/veg/qfilt Fastq Manipulation qfilt iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qfilt https://github.com/galaxyproject/tools-iuc/tree/main/tools/qfilt 1.0.0+galaxy1 qfilt 0.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +quast quast Quast (Quality ASsessment Tool) evaluates genome assemblies. quast quast QUAST QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports. Visualisation, Sequence assembly validation Sequence assembly Up-to-date http://quast.bioinf.spbau.ru/ Assembly quast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast https://github.com/galaxyproject/tools-iuc/tree/main/tools/quast 5.2.0 quast 5.2.0 Visualisation, Sequence assembly validation Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 3567 51567 False +quickmerge quickmerge Merge long-read and hybrid assemblies to increase contiguity quickmerge quickmerge quickmerge Quickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads. Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype Up-to-date https://github.com/mahulchak/quickmerge Assembly quickmerge galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge https://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge 0.3 quickmerge 0.3 Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 False +ragtag ragtag Reference-guided scaffolding of draft genomes tool. ragtag ragtag ragtag RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Genome assembly Sequence assembly Up-to-date https://github.com/malonge/RagTag Assembly ragtag iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtag https://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag 2.1.0 ragtag 2.1.0 Genome assembly Sequence assembly 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 237 2833 False +raven raven Raven is a de novo genome assembler for long uncorrected reads. Up-to-date https://github.com/lbcb-sci/raven Assembly iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven https://github.com/galaxyproject/tools-iuc/tree/main/tools/raven 1.8.3 raven-assembler 1.8.3 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 262 6902 False +rcorrector rcorrector Rcorrector (RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data. rcorrector rcorrector Rcorrector This is a kmer-based error correction method for RNA-seq data. It can also be applied to other types of sequencing data where the read coverage is non-uniform, such as single-cell sequencing. Sequencing error detection RNA, RNA-Seq, Sequencing To update https://github.com/mourisl/Rcorrector Fastq Manipulation rcorrector iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rcorrector https://github.com/galaxyproject/tools-iuc/tree/main/tools/rcorrector 1.0.3+galaxy1 rcorrector 1.0.7 Sequencing error detection RNA, RNA-Seq 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 569 False +rnaquast rna_quast rnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies. rnaQUAST rnaQUAST rnaQUAST Quality assessment tool for de novo transcriptome assemblies. De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics, RNA-seq Up-to-date https://github.com/ablab/rnaquast Assembly, RNA rnaquast iuc https://git.ufz.de/lehmanju/rnaquast https://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast 2.3.0 rnaquast 2.3.0 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 109 1110 False +salsa2 salsa A tool to scaffold long read assemblies with Hi-C SALSA SALSA SALSA > VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branch Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping Up-to-date https://github.com/marbl/SALSA Assembly salsa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa2 2.3 salsa2 2.3 Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 454 False +samblaster samblaster samblaster marks duplicates and can output split and discordant alignments from SAM/BAM files samblaster samblaster SAMBLASTER A tool to mark duplicates and extract discordant and split reads from SAM files. Split read mapping DNA, Sequencing, Mapping To update https://github.com/GregoryFaust/samblaster SAM, Fastq Manipulation, Variant Analysis samblaster iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/samblaster https://github.com/galaxyproject/tools-iuc/tree/main/tools/samblaster 0.1.24 samblaster 0.1.26 Split read mapping DNA, Sequencing, Mapping 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sample_seqs sample_seqs Sub-sample sequences files (e.g. to reduce coverage) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs Assembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysis sample_seqs peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs 0.2.6 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 149 3765 False +samtools_depad samtools_depad Re-align a SAM/BAM file with a padded reference (using samtools depad) To update http://www.htslib.org/ Assembly, SAM, Sequence Analysis samtools_depad peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad 0.0.5 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +samtools_depth samtools_depth Coverage depth via samtools To update http://www.htslib.org/ Assembly, Sequence Analysis, SAM samtools_depth peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth 0.0.3 samtools 1.20 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 296 4948 False +samtools_idxstats samtools_idxstats BAM mapping statistics (using samtools idxstats) To update http://www.htslib.org/ Assembly, Next Gen Mappers, SAM samtools_idxstats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats 0.0.6 samtools 1.20 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1450 48426 False +seq_filter_by_id seq_filter_by_id Filter sequences by ID To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation seq_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id 0.2.9 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 306 25302 False +seq_filter_by_mapping seq_filter_by_mapping Filter sequencing reads using SAM/BAM mapping files To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping Assembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysis seq_filter_by_mapping peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping 0.0.8 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 82 3784 False +seq_length seq_length Compute sequence length (from FASTA, QUAL, FASTQ, SFF, etc) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length Fasta Manipulation, Fastq Manipulation, Sequence Analysis seq_length peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length 0.0.5 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +seq_primer_clip seq_primer_clip Trim off 5' or 3' primers To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip Assembly, Fasta Manipulation, Text Manipulation seq_primer_clip peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip 0.0.18 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +seq_rename seq_rename Rename sequences with ID mapping from a tabular file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename Fasta Manipulation, Sequence Analysis, Text Manipulation seq_rename peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename 0.0.10 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 False +seq_select_by_id seq_select_by_id Select sequences by ID To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation seq_select_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id 0.0.15 biopython 1.70 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +seqprep seqprep Tool for merging paired-end Illumina reads and trimming adapters. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers Up-to-date https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis seqprep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprep https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep 1.3.2 seqprep 1.3.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sequence_format_converter sequence_format_converter various fasta to tabular conversions To update http://artbio.fr Convert Formats, Fasta Manipulation sequence_format_converter artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sequence_format_converter https://github.com/ARTbio/tools-artbio/tree/main/tools/sequence_format_converter 2.2.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +shasta shasta Fast de novo assembly of long read sequencing data To update https://github.com/chanzuckerberg/shasta Assembly, Nanopore shasta iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta https://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta 0.6.0 shasta 0.12.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 154 763 False +short_reads_trim_seq trim_reads Select high quality segments To update Fastq Manipulation short_reads_trim_seq devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_trim_seq https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_trim_seq 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 21 220 False +shovill shovill Faster de novo assembly pipeline based around Spades shovill shovill shovill Shovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too. Genome assembly Genomics, Microbiology, Sequence assembly Up-to-date https://github.com/tseemann/shovill Assembly shovill iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill https://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill 1.1.0 shovill 1.1.0 Genome assembly Genomics, Microbiology, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1008 41600 False +sickle sickle A windowed adaptive trimming tool for FASTQ files using quality sickle sickle sickle A tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads. Sequence trimming Data quality management To update https://github.com/najoshi/sickle Fastq Manipulation, Sequence Analysis sickle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle https://github.com/galaxyproject/tools-iuc/tree/main/tools/sickle 1.33.2 sickle-trim 1.33 Sequence trimming Data quality management 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 269 14982 False +smudgeplot smudgeplot Inference of ploidy and heterozygosity structure using whole genome sequencing smudgeplots smudgeplots Smudgeplots Reference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics Up-to-date https://github.com/KamilSJaron/smudgeplot Assembly smudgeplot galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot 0.2.5 smudgeplot 0.2.5 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 22 203 False +spades spades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spades SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction. spades coronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spades SPAdes St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads. Genome assembly Sequence assembly To update https://github.com/ablab/spades Assembly, RNA, Metagenomics spades iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades https://github.com/galaxyproject/tools-iuc/tree/main/tools/spades 3.15.5 spades 4.0.0 Genome assembly Sequence assembly 9 9 9 9 9 9 9 9 0 0 0 0 1 0 0 0 0 0 0 0 1 3 8 0 0 2 0 0 0 3 0 0 0 0 0 0 0 9 3 0 3547 72953 False +spades_header_fixer spades_header_fixer Fixes Spades Fasta ids To update https://github.com/phac-nml/galaxy_tools Fasta Manipulation spades_fasta_header_fixer nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/spades_header_fixer 1.1.2+galaxy1 sed 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +split_paired_reads split_paired_reads Split paired end reads To update Fastq Manipulation split_paired_reads devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/split_paired_reads https://github.com/galaxyproject/tools-devteam/tree/main/tools/split_paired_reads 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sra-tools fasterq_dump, fastq_dump, sam_dump NCBI Sequence Read Archive toolkit utilities sra-tools sra-tools SRA Software Toolkit The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives. Data handling DNA, Genomics, Sequencing Up-to-date https://github.com/ncbi/sra-tools Data Source, Fastq Manipulation sra_tools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sra-tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/sra-tools 3.1.1 sra-tools 3.1.1 Data handling DNA, Genomics, Sequencing 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 3 0 0 0 3 0 0 0 0 0 0 0 3 3 0 6247 350032 False +tabular_to_fastq tabular_to_fastq Tabular to FASTQ converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation tabular_to_fastq devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/tabular_to_fastq 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 7388 False +tarfast5 tarfast5 produces a tar.gz archive of fast5 sequence files To update http://artbio.fr Nanopore tarfast5 artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/tarfast5 https://github.com/ARTbio/tools-artbio/tree/main/tools/tarfast5 0.6.1 pigz 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +taxonomy_krona_chart taxonomy_krona_chart Krona pie chart from taxonomic profile krona krona Krona Krona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome). Visualisation Metagenomics To update http://sourceforge.net/projects/krona/ Assembly taxonomy_krona_chart crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart 2.7.1+galaxy0 krona 2.8.1 Visualisation Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1801 27426 False +tgsgapcloser tgsgapcloser TGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly. TGS-GapCloser TGS-GapCloser TGS-GapCloser TGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads. Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping To update https://github.com/BGI-Qingdao/TGS-GapCloser Assembly tgsgapcloser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser 1.0.3 tgsgapcloser 1.2.1 Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 460 False +trim_galore trim_galore Trim Galore adaptive quality and adapter trimmer trim_galore trim_galore Trim Galore A wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries. Sequence trimming, Primer removal, Read pre-processing Sequence analysis To update http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/ Sequence Analysis, Fastq Manipulation trim_galore bgruening https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore 0.6.7 trim-galore 0.6.10 Sequence trimming, Primer removal, Read pre-processing Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2334 238699 False +trimmomatic trimmomatic A flexible read trimming tool for Illumina NGS data Up-to-date http://www.usadellab.org/cms/?page=trimmomatic Fastq Manipulation trimmomatic pjbriggs https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic https://github.com/galaxyproject/tools-iuc/tree/main/tools/trimmomatic 0.39 trimmomatic 0.39 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 5862 305866 False +trycycler trycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsample Trycycler toolkit wrappers Up-to-date https://github.com/rrwick/Trycycler Assembly trycycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler 0.5.5 trycycler 0.5.5 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 147 8942 False +unicycler unicycler Unicycler is a hybrid assembly pipeline for bacterial genomes. unicycler unicycler Unicycler A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads. Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly Up-to-date https://github.com/rrwick/Unicycler Assembly unicycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler 0.5.1 unicycler 0.5.1 Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1558 65732 False +validate_fasta_database validate_fasta_database runs Compomics database identification tool on any FASTA database, and separates valid and invalid entries based on a series of checks. To update Fasta Manipulation, Proteomics validate_fasta_database galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/validate_fasta_database 0.1.5 validate-fasta-database 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 25 86 False +velvet velvetg, velveth de novo genomic assembler specially designed for short read sequencing technologies velvet velvet Velvet A de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD. Formatting, De-novo assembly Sequence assembly To update https://www.ebi.ac.uk/~zerbino/velvet/ Assembly velvet devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet velvet 1.2.10 Formatting, De-novo assembly Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2083 25420 False +velvet_optimiser velvetoptimiser Automatically optimize Velvet assemblies velvetoptimiser velvetoptimiser VelvetOptimiser This tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly. Optimisation and refinement, Sequence assembly Genomics, Sequence assembly To update Assembly velvetoptimiser simon-gladman https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser 2.2.6+galaxy2 velvet 1.2.10 Optimisation and refinement, Sequence assembly Genomics, Sequence assembly 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 4741 False +verkko verkko Telomere-to-telomere assembly pipeline To update https://github.com/marbl/verkko Assembly verkko iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/verkko https://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko 1.3.1 verkko 2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 22 False +wtdbg wtdbg WTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly. wtdbg2 wtdbg2 wtdbg2 Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy. Genome assembly, De-novo assembly Sequence assembly, Sequencing Up-to-date https://github.com/ruanjue/wtdbg2 Assembly wtdbg bgruening https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg 2.5 wtdbg 2.5 Genome assembly, De-novo assembly Sequence assembly, Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 116 1660 False +xpore xpore_dataprep, xpore_diffmod Identification and quantification of differential RNA modifications from direct RNA sequencing To update https://github.com/GoekeLab/xpore Nanopore xpore artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/xpore https://github.com/ARTbio/tools-artbio/tree/main/tools/xpore 2.1+galaxy0 xpore 2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +yac_clipper yac Clips 3' adapters for small RNA sequencing reads. To update http://artbio.fr RNA, Fastq Manipulation yac_clipper artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/yac_clipper https://github.com/ARTbio/tools-artbio/tree/main/tools/yac_clipper 2.5.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +yahs yahs Yet Another Hi-C scaffolding tool Up-to-date https://github.com/c-zhou/yahs Assembly yahs iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs https://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs 1.2a.2 yahs 1.2a.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 64 344 False diff --git a/communities/assembly/resources/tools_filtered_by_ts_categories.tsv b/communities/assembly/resources/tools_filtered_by_ts_categories.tsv new file mode 100644 index 00000000..582f8393 --- /dev/null +++ b/communities/assembly/resources/tools_filtered_by_ts_categories.tsv @@ -0,0 +1,178 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +TrimNs trimns TrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipeline To update https://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNs Assembly trimns iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trimN https://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs 0.1.0 trimns_vgp 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 42 False +abacas abacas Order and Orientate Contigs To update https://github.com/phac-nml/abacas Assembly abacas nml https://github.com/phac-nml/abacas https://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas 1.1 mummer 3.23 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +abyss abyss-pe Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler abyss abyss ABySS De novo genome sequence assembler using short reads. Genome assembly, De-novo assembly, Scaffolding Sequence assembly To update http://www.bcgsc.ca/platform/bioinfo/software/abyss Assembly abyss iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss https://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss 2.3.7 abyss 2.3.8 Genome assembly, De-novo assembly, Scaffolding Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 391 4278 False +adapter_removal adapter_removal Removes residual adapter sequences from single-end (SE) or paired-end (PE) FASTQ reads. adapterremoval adapterremoval AdapterRemoval AdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. AdapterRemoval can analyze both single end and paired end data, and can be used to merge overlapping paired-ended reads into (longer) consensus sequences. Additionally, AdapterRemoval can construct a consensus adapter sequence for paired-ended reads, if which this information is not available. Sequence trimming, Sequence merging, Primer removal Up-to-date https://github.com/MikkelSchubert/adapterremoval Fasta Manipulation, Sequence Analysis adapter_removal iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/adapter_removal 2.3.4 adapterremoval 2.3.4 Sequence trimming, Sequence merging, Primer removal 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 37 217 False +agat agat GTF/GFF analysis toolkit agat agat AGAT Another Gff Analysis Toolkit (AGAT)Suite of tools to handle gene annotations in any GTF/GFF format. Data handling, Genome annotation Genomics Up-to-date https://github.com/NBISweden/AGAT Convert Formats, Statistics, Fasta Manipulation agat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/agat https://github.com/bgruening/galaxytools/tree/master/tools/agat 1.4.0 agat 1.4.0 Data handling, Genome annotation Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 42 481 False +align_back_trans align_back_trans Thread nucleotides onto a protein alignment (back-translation) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans Fasta Manipulation, Sequence Analysis align_back_trans peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans 0.0.10 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 329 False +assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. Up-to-date https://github.com/rjchallis/assembly-stats Assembly assembly_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-stats https://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats 17.02 rjchallis-assembly-stats 17.02 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +assemblystats assemblystats Summarise an assembly (e.g. N50 metrics) To update https://github.com/phac-nml/galaxy_tools Assembly assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +atactk_trim_adapters atactk_trim_adapters Trim adapters from paired-end HTS reads. To update https://github.com/ParkerLab/atactk/ Fastq Manipulation atactk_trim_adapters rnateam https://github.com/bgruening/galaxytools/blob/master/tools/trim_adapters https://github.com/bgruening/galaxytools/tree/master/tools/atactk_trim_adapters 0.1.6 atactk 0.1.9 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 26 257 False +bam2mappingstats bam2mappingstats Generates mapping stats from a bam file. To update https://github.com/phac-nml/galaxy_tools Assembly bam2mappingstats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats 1.1.0 perl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +barcode_splitter barcode_splitter A utility to split sequence files using multiple sets of barcodes To update https://bitbucket.org/princeton_genomics/barcode_splitter/ Fastq Manipulation barcode_splitter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/barcode_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tools/barcode_splitter 0.18.4.0 barcode_splitter 0.18.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +berokka berokka Berokka is used to trim, circularise, orient & filter long read bacterial genome assemblies. Up-to-date https://github.com/tseemann/berokka Fasta Manipulation berokka iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/berokka https://github.com/galaxyproject/tools-iuc/tree/main/tools/berokka 0.2.3 berokka 0.2.3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bionano bionano_scaffold Bionano Solve is a set of tools for analyzing Bionano data To update https://bionanogenomics.com/ Assembly bionano bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bionano https://github.com/bgruening/galaxytools/tree/master/tools/bionano 3.7.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 112 531 False +biscot biscot Bionano scaffolding correction tool Up-to-date https://github.com/institut-de-genomique/biscot Assembly biscot iuc https://github.com/bgruening/iuc/tree/master/tools/biscot https://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot 2.3.3 biscot 2.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 3 False +blast_rbh blast_reciprocal_best_hits BLAST Reciprocal Best Hits (RBH) from two FASTA files To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh Fasta Manipulation, Sequence Analysis blast_rbh peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh 0.3.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 121 22499 False +blast_to_scaffold blast2scaffold Generate DNA scaffold from blastn or tblastx alignments of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blast_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold 1.1.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +blast_unmatched blast_unmatched Extract unmatched query sequences from blast To update http://artbio.fr Fasta Manipulation blast_unmatched artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_unmatched 1.0.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +blastparser_and_hits BlastParser_and_hits Parse blast outputs and compile hits To update http://artbio.fr Assembly, RNA blastparser_and_hits artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hits https://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits 2.7.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +blastx_to_scaffold blastx2scaffold Generate DNA scaffold from blastx alignment of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blastx_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold 1.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +blobtoolkit blobtoolkit Identification and isolation non-target data in draft and publicly available genome assemblies. To update https://blobtoolkit.genomehubs.org/ Sequence Analysis, Assembly blobtoolkit bgruening https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit 4.0.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 685 False +cap3 cap3 cap3 wrapper To update http://artbio.fr Assembly cap3 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 2.0.1 cap3 10.2011 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 101 7766 False +cdhit cd_hit Cluster or compare biological sequence datasets cd-hit cd-hit cd-hit Cluster a nucleotide dataset into representative sequences. Sequence clustering Sequencing Up-to-date http://weizhongli-lab.org/cd-hit/ Sequence Analysis, Fasta Manipulation cd_hit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhit https://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit 4.8.1 cd-hit 4.8.1 Sequence clustering Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 280 4474 False +cherry_pick_fasta cherry_pick_fasta Pick fasta sequence with specific header content To update http://artbio.fr Fasta Manipulation cherry_pick_fasta artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta https://github.com/ARTbio/tools-artbio/tree/main/tools/cherry_pick_fasta 4.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +circexplorer2 circexplorer2 Comprehensive and integrative circular RNA analysis toolset. circexplorer2 circexplorer2 CIRCexplorer2 Genome-wide annotation of circRNAs and their alternative back-splicing/splicing. RNA splicing, Gene transcripts, Literature and language Up-to-date https://github.com/YangLab/CIRCexplorer2 RNA, Assembly circexplorer2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer2 2.3.8 circexplorer2 2.3.8 RNA splicing, Gene transcripts, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 16 269 False +clc_assembly_cell clc_assembler, clc_mapper Galaxy wrapper for the CLC Assembly Cell suite from CLCBio To update https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell Assembly, Next Gen Mappers, SAM clc_assembly_cell peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell 0.0.7 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +combine_assembly_stats combine_stats Combine multiple Assemblystats datasets into a single tabular report To update https://github.com/phac-nml/galaxy_tools Assembly combine_assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats 1.0 perl-getopt-long 2.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +convert_solid_color2nuc color2nuc Convert Color Space to Nucleotides To update Fasta Manipulation convert_solid_color2nuc devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/convert_solid_color2nuc https://github.com/galaxyproject/tools-devteam/tree/main/tools/convert_solid_color2nuc 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +count_roi_variants count_roi_variants Count sequence variants in region of interest in BAM file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants Assembly, SAM count_roi_variants peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants 0.0.6 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +coverage_stats coverage_stats BAM coverage statistics using samtools idxstats and depth To update https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats Assembly, SAM coverage_stats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats 0.1.0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cutadapt cutadapt Flexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq). cutadapt cutadapt Cutadapt Find and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads. Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing Up-to-date https://cutadapt.readthedocs.org/en/stable/ Fasta Manipulation, Fastq Manipulation, Sequence Analysis cutadapt lparsons https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapt https://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt 4.9 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 5090 232004 False +disco disco DISCO is a overlap-layout-consensus (OLC) metagenome assembler disco disco DISCO DISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer. Protein sequence analysis Structure determination To update http://disco.omicsbio.org/ Metagenomics, Assembly disco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/disco disco 1.2 Protein sequence analysis Structure determination 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 369 False +ear make_ear A tool to compile assembly reports and stastics from assembly pipeline To update https://github.com/ERGA-consortium/EARs/tree/main Sequence Analysis, Assembly erga_ear bgruening https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 24.08.26 reportlab 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +emboss_5 EMBOSS: antigenic1, EMBOSS: backtranseq2, EMBOSS: banana3, EMBOSS: biosed4, EMBOSS: btwisted5, EMBOSS: cai6, EMBOSS: cai_custom6, EMBOSS: chaos7, EMBOSS: charge8, EMBOSS: checktrans9, EMBOSS: chips10, EMBOSS: cirdna11, EMBOSS: codcmp12, EMBOSS: coderet13, EMBOSS: compseq14, EMBOSS: cpgplot15, EMBOSS: cpgreport16, EMBOSS: cusp17, EMBOSS: cutseq18, EMBOSS: dan19, EMBOSS: degapseq20, EMBOSS: descseq21, EMBOSS: diffseq22, EMBOSS: digest23, EMBOSS: dotmatcher24, EMBOSS: dotpath25, EMBOSS: dottup26, EMBOSS: dreg27, EMBOSS: einverted28, EMBOSS: epestfind29, EMBOSS: equicktandem31, EMBOSS: est2genome32, EMBOSS: etandem33, EMBOSS: extractfeat34, EMBOSS: extractseq35, EMBOSS: freak36, EMBOSS: fuzznuc37, EMBOSS: fuzzpro38, EMBOSS: fuzztran39, EMBOSS: garnier40, EMBOSS: geecee41, EMBOSS: getorf42, EMBOSS: helixturnhelix43, EMBOSS: hmoment44, EMBOSS: iep45, EMBOSS: infoseq46, EMBOSS: isochore47, EMBOSS: lindna48, EMBOSS: marscan49, EMBOSS: maskfeat50, EMBOSS: maskseq51, EMBOSS: matcher52, EMBOSS: megamerger53, EMBOSS: merger54, EMBOSS: msbar55, EMBOSS: needle56, EMBOSS: newcpgreport57, EMBOSS: newcpgseek58, EMBOSS: newseq59, EMBOSS: noreturn60, EMBOSS: notseq61, EMBOSS: nthseq62, EMBOSS: octanol63, EMBOSS: oddcomp64, EMBOSS: palindrome65, EMBOSS: pasteseq66, EMBOSS: patmatdb67, EMBOSS: pepcoil68, EMBOSS: pepinfo69, EMBOSS: pepnet70, EMBOSS: pepstats71, EMBOSS: pepwheel72, EMBOSS: pepwindow73, EMBOSS: pepwindowall74, EMBOSS: plotcon75, EMBOSS: plotorf76, EMBOSS: polydot77, EMBOSS: preg78, EMBOSS: prettyplot79, EMBOSS: prettyseq80, EMBOSS: primersearch81, EMBOSS: revseq82, EMBOSS: seqmatchall83, EMBOSS: seqret84, EMBOSS: showfeat85, EMBOSS: shuffleseq87, EMBOSS: sigcleave88, EMBOSS: sirna89, EMBOSS: sixpack90, EMBOSS: skipseq91, EMBOSS: splitter92, EMBOSS: supermatcher95, EMBOSS: syco96, EMBOSS: tcode97, EMBOSS: textsearch98, EMBOSS: tmap99, EMBOSS: tranalign100, EMBOSS: transeq101, EMBOSS: trimest102, EMBOSS: trimseq103, EMBOSS: twofeat104, EMBOSS: union105, EMBOSS: vectorstrip106, EMBOSS: water107, EMBOSS: wobble108, EMBOSS: wordcount109, EMBOSS: wordmatch110 Galaxy wrappers for EMBOSS version 5.0.0 tools emboss emboss EMBOSS Diverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool. Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis, Biology To update http://emboss.open-bio.org/ Sequence Analysis, Fasta Manipulation emboss_5 devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5 https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_5 5.0.0 emboss 6.6.0 Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis 107 107 107 107 107 107 107 107 0 0 0 0 107 0 0 0 0 0 0 0 0 0 107 0 0 107 0 0 0 107 0 0 0 0 0 0 0 107 107 0 1816 89530 False +fasplit fasplit faSplit is a tool to split a single FASTA file into several files UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Fasta Manipulation ucsc_fasplit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/fasplit https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/fasplit 377 ucsc-fasplit 469 Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 242 2644 False +fasta_clipping_histogram cshl_fasta_clipping_histogram Length Distribution chart Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Graphics, Statistics fasta_clipping_histogram devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_clipping_histogram https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_clipping_histogram 0.0.14 fastx_toolkit 0.0.14 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +fasta_compute_length fasta_compute_length Compute sequence length To update Fasta Manipulation fasta_compute_length devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_compute_length https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_compute_length 1.0.3 python 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 380 7758 False +fasta_concatenate_by_species fasta_concatenate0 Concatenate FASTA alignment by species To update Fasta Manipulation fasta_concatenate_by_species devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_concatenate_by_species 0.0.1 bx-python 0.12.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 88 35793 False +fasta_filter_by_id fasta_filter_by_id Filter FASTA sequences by ID (DEPRECATED) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation fasta_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id 0.0.7 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fasta_filter_by_length fasta_filter_by_length Filter sequences by length To update Fasta Manipulation fasta_filter_by_length devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_filter_by_length https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_filter_by_length 1.2 python 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 350 48649 False +fasta_formatter cshl_fasta_formatter FASTA Width formatter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fasta_formatter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_formatter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_formatter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 68 2912 False +fasta_merge_files_and_filter_unique_sequences fasta_merge_files_and_filter_unique_sequences Concatenate FASTA database files together To update https://github.com/galaxyproteomics/tools-galaxyp/ Fasta Manipulation fasta_merge_files_and_filter_unique_sequences galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fasta_merge_files_and_filter_unique_sequences 1.2.0 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 461 29886 False +fasta_nucleotide_changer cshl_fasta_nucleotides_changer RNA/DNA converter. Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fasta_nucleotide_changer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fasta_nucleotide_changer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fasta_nucleotide_changer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 29 774 False +fasta_to_tabular fasta2tab FASTA-to-Tabular converter To update Fasta Manipulation fasta_to_tabular devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_to_tabular https://github.com/galaxyproject/tools-devteam/tree/main/tools/fasta_to_tabular 1.1.1 python 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 622 105935 False +fastk fastk_fastk FastK: A K-mer counter (for HQ assembly data sets) To update https://github.com/thegenemyers/FASTK Assembly fastk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk 1.0.0 fastk 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_combiner fastq_combiner Combine FASTA and QUAL into FASTQ Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation, Fasta Manipulation fastq_combiner devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_combiner https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_combiner 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 66 8676 False +fastq_filter fastq_filter Filter FASTQ reads by quality score and length Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_filter 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 266 14222 False +fastq_filter_by_id fastq_filter_by_id Filter FASTQ sequences by ID (DEPRECATED) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id Fastq Manipulation, Sequence Analysis, Text Manipulation fastq_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id 0.0.7 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_groomer fastq_groomer Convert between various FASTQ quality formats. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_groomer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_groomer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_groomer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1028 94802 False +fastq_info fastq_info FASTQ info allows to validate single or paired fastq files To update https://github.com/nunofonseca/fastq_utils Fastq Manipulation fastq_info bgruening https://github.com/bgruening/galaxytools/tree/master/tools/fastq_info https://github.com/bgruening/galaxytools/tree/master/tools/fastq_info 0.25.1 fastq_utils 0.25.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 679 5765 False +fastq_manipulation fastq_manipulation Manipulate FASTQ reads on various attributes. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_manipulation devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_manipulation https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_manipulation 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 69 2503 False +fastq_masker_by_quality fastq_masker_by_quality FASTQ Masker by quality score Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_masker_by_quality devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 170 False +fastq_pair fastq_pair Paired-end fastq pairer To update https://github.com/linsalrob/fastq-pair Fastq Manipulation fastq_pair ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_pair https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_pair 1.0+galaxy0 fastq-pair 1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_paired_end_deinterlacer fastq_paired_end_deinterlacer FASTQ de-interlacer on paired end reads. Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_deinterlacer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_deinterlacer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 122 8410 False +fastq_paired_end_interlacer fastq_paired_end_interlacer FASTQ interlacer on paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_interlacer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_interlacer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1087 17024 False +fastq_paired_end_joiner fastq_paired_end_joiner FASTQ joiner on paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_joiner devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_joiner 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 245 16635 False +fastq_paired_end_splitter fastq_paired_end_splitter FASTQ splitter on joined paired end reads Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_paired_end_splitter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_paired_end_splitter 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 196 3092 False +fastq_quality_boxplot cshl_fastq_quality_boxplot Draw quality score boxplot Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Graphics, Statistics fastq_quality_boxplot devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_boxplot https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_boxplot 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 51 1178 False +fastq_quality_converter cshl_fastq_quality_converter Quality format converter (ASCII-Numeric) Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation fastq_quality_converter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_converter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_converter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 11 220 False +fastq_quality_filter cshl_fastq_quality_filter Filter by quality Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation fastq_quality_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_quality_filter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1509 15172 False +fastq_quality_trimmer cshl_fastq_quality_trimmer FASTQ trimmer based on quality To update https://github.com/agordon/fastx_toolkit Fastq Manipulation fastq_quality_trimmer ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_quality_trimmer https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_quality_trimmer 0.0.14+galaxy0 fastx_toolkit 0.0.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_stats fastq_stats FASTQ Summary Statistics by column Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_stats devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_stats https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_stats 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 221 4246 False +fastq_to_fasta cshl_fastq_to_fasta FASTQ to FASTA converter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Convert Formats fastq_to_fasta devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_to_fasta https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastq_to_fasta 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 419 13599 False +fastq_to_tabular fastq_to_tabular FASTQ to Tabular converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_to_tabular devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_to_tabular https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_to_tabular 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 93 12593 False +fastq_trimmer fastq_trimmer FASTQ Trimmer by quality Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastq_trimmer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_trimmer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastq_trimmer 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 210 9757 False +fastq_trimmer_by_quality fastq_quality_trimmer FASTQ Quality Trimmer by sliding window Up-to-date Fastq Manipulation fastq_trimmer_by_quality devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastq_trimmer_by_quality https://github.com/galaxyproject/tools-devteam/tree/main/tools/fastq_trimmer_by_quality 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 459 5676 False +fastqc fastqc Read QC reports using FastQC fastqc fastqc FastQC This tool aims to provide a QC report which can spot problems or biases which originate either in the sequencer or in the starting library material. It can be run in one of two modes. It can either run as a stand alone interactive application for the immediate analysis of small numbers of FastQ files, or it can be run in a non-interactive mode where it would be suitable for integrating into a larger analysis pipeline for the systematic processing of large numbers of files. Sequence composition calculation, Sequencing quality control, Statistical calculation Sequencing, Data quality management, Sequence analysis To update http://www.bioinformatics.babraham.ac.uk/projects/fastqc/ Fastq Manipulation fastqc devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqc 0.74+galaxy1 fastqc 0.12.1 Sequence composition calculation, Sequencing quality control, Statistical calculation Sequencing, Data quality management, Sequence analysis 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 1 1 0 17447 1556625 False +fastqsolexa_to_fasta_qual fastqsolexa_to_fasta_qual FASTQSOLEXA-to-FASTA-QUAL extracts sequences and quality scores from FASTQSOLEXA data To update Convert Formats, Fastq Manipulation fastqsolexa_to_fasta_qual devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/fastqsolexa_to_fasta_qual https://github.com/galaxyproject/tools-devteam/tree/main/tools/fastqsolexa_to_fasta_qual 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastqtofasta fastq_to_fasta_python FASTQ to FASTA converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation fastqtofasta devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/fastqtofasta 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1371 178178 False +fastx_artifacts_filter cshl_fastx_artifacts_filter Remove sequencing artifacts Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_artifacts_filter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_artifacts_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_artifacts_filter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 27 1810 False +fastx_barcode_splitter cshl_fastx_barcode_splitter Barcode Splitter Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_barcode_splitter devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_barcode_splitter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_barcode_splitter 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 128 16591 False +fastx_clipper cshl_fastx_clipper Clip adapter sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_clipper devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_clipper https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_clipper 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 96 3333 False +fastx_collapser cshl_fastx_collapser Collapse sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation fastx_collapser devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_collapser https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_collapser 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 114 61218 False +fastx_nucleotides_distribution cshl_fastx_nucleotides_distribution Draw nucleotides distribution chart Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Graphics fastx_nucleotides_distribution devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_nucleotides_distribution https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_nucleotides_distribution 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 25 249 False +fastx_quality_statistics cshl_fastx_quality_statistics Compute quality statistics Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Statistics fastx_quality_statistics devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_quality_statistics https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_quality_statistics 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 63 2176 False +fastx_renamer cshl_fastx_renamer Rename sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_renamer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_renamer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_renamer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 68 2280 False +fastx_reverse_complement cshl_fastx_reverse_complement Reverse-Complement Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fastq Manipulation, Fasta Manipulation fastx_reverse_complement devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_reverse_complement https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_reverse_complement 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 156 10832 False +fastx_trimmer cshl_fastx_trimmer Trim sequences Up-to-date http://hannonlab.cshl.edu/fastx_toolkit/ Fasta Manipulation, Fastq Manipulation fastx_trimmer devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_trimmer https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/fastx_toolkit/fastx_trimmer 0.0.14 fastx_toolkit 0.0.14 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 205 13149 False +fermikit fermi2, fermikit_variants FermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data. Up-to-date https://github.com/lh3/fermikit Assembly, Variant Analysis fermikit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikit https://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikit r193 fermi2 r193 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fetch_fasta_from_ncbi retrieve_fasta_from_NCBI Fetch fasta sequences from NCBI using eutils wrappers To update http://artbio.fr Fasta Manipulation, Data Source fetch_fasta_from_ncbi artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi https://github.com/ARTbio/tools-artbio/tree/main/tools/fetch_fasta_from_ncbi 3.1.0 urllib3 1.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +filter_by_fasta_ids filter_by_fasta_ids Filter FASTA on the headers and/or the sequences To update Fasta Manipulation, Proteomics filter_by_fasta_ids galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids 2.3 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 426 26274 False +filter_spades_repeats filter_spades_repeat Remove short and repeat contigs/scaffolds To update https://github.com/phac-nml/galaxy_tools/ Assembly filter_spades_repeats nml https://github.com/phac-nml/galaxy_tools/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats 1.0.1 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +filtlong filtlong Filtlong - Filtering long reads by quality filtlong filtlong Filtlong Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter. Filtering, Sequencing quality control Up-to-date https://github.com/rrwick/Filtlong Fastq Manipulation, Sequence Analysis filtlong iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlong https://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong 0.2.1 filtlong 0.2.1 Filtering, Sequencing quality control 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 617 30483 False +flair flair_collapse, flair_correct FLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads. To update https://github.com/BrooksLabUCSC/flair Nanopore flair iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flair https://github.com/galaxyproject/tools-iuc/tree/main/tools/flair 1.5 flair 2.0.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 14 331 False +flash flash Fast Length Adjustment of SHort reads flash flash FLASH Identifies paired-end reads which overlap in the middle, converting them to single long reads Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly Up-to-date https://ccb.jhu.edu/software/FLASH/ Assembly, Fastq Manipulation flash iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flash https://github.com/galaxyproject/tools-iuc/tree/main/tools/flash 1.2.11 flash 1.2.11 Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 74 13759 False +flye flye Assembly of long and error-prone reads. Flye Flye Flye Flye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs. Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing, Genomics To update https://github.com/fenderglass/Flye/ Assembly flye bgruening https://github.com/bgruening/galaxytools/tree/master/tools/flye https://github.com/bgruening/galaxytools/tree/master/tools/flye 2.9.4 flye 2.9.5 Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1499 20904 False +format_cd_hit_output format_cd_hit_output Format CD-hit output to rename representative sequences with cluster name and/or extract distribution inside clusters given a mapping file To update Fasta Manipulation format_cd_hit_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output/ https://github.com/bgruening/galaxytools/tree/master/tools/format_cd_hit_output 1.0.0+galaxy1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 166 False +get_pairs get_pairs Separate paired and unpaired reads from two fastq files To update Fastq Manipulation get_pairs genouest https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs https://github.com/genouest/galaxy-tools/tree/master/tools/get_pairs 0.3 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +get_reference_fasta get_fasta_reference Obtain reference genome sequence. To update http://artbio.fr Data Source, Fasta Manipulation get_reference_fasta artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta https://github.com/ARTbio/tools-artbio/tree/main/tools/get_reference_fasta 0.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +getorganelle get_annotated_regions_from_gb, get_organelle_from_reads GetOrganelle - This toolkit assembles organelle genomes from genomic skimming data. getorganelle getorganelle GetOrganelle A fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data. De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms Up-to-date https://github.com/Kinggerm/GetOrganelle Assembly getorganelle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganelle https://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle 1.7.7.1 getorganelle 1.7.7.1 De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 18 495 False +graphmap graphmap_align, graphmap_overlap Mapper for long, error-prone reads. graphmap graphmap graphmap Splice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing To update https://github.com/isovic/graphmap/ Assembly graphmap bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphmap https://github.com/bgruening/galaxytools/tree/master/tools/graphmap 0.5.2 graphmap 0.6.3 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 136 6651 False +guppy guppy-basecaller A wrapper for the guppy basecaller tool from Oxford Nanopore Technologies To update http://artbio.fr Nanopore guppy_basecaller artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy 6.5.7+galaxy0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hapcut2 hapcut2 Robust and accurate haplotype assembly for diverse sequencing technologies hapcut2 hapcut2 HapCUT2 "HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to ""just work"" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.md" Haplotype mapping, Variant classification Up-to-date https://github.com/vibansal/HapCUT2 Assembly hapcut2 galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut2 1.3.4 hapcut2 1.3.4 Haplotype mapping, Variant classification 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hapog hapog Hapo-G - Haplotype-Aware Polishing of Genomes hapog hapog Hapo-G Hapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes. Genome assembly, Optimisation and refinement Sequence assembly, Genomics Up-to-date https://github.com/institut-de-genomique/HAPO-G Assembly hapog iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog 1.3.8 hapog 1.3.8 Genome assembly, Optimisation and refinement Sequence assembly, Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 295 False +hifiasm hifiasm A fast haplotype-resolved de novo assembler Up-to-date https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm 0.19.9 hifiasm 0.19.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 297 1410 False +hisat hisat HISAT is a fast and sensitive spliced alignment program. To update http://ccb.jhu.edu/software/hisat/index.shtml Assembly hisat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/hisat https://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat 1.0.3 hisat 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 228 False +hisat2 hisat2 HISAT2 is a fast and sensitive spliced alignment program. hisat2 hisat2 HISAT2 Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome). Sequence alignment RNA-seq Up-to-date http://ccb.jhu.edu/software/hisat2/ Assembly hisat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat2 2.2.1 hisat2 2.2.1 Sequence alignment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4183 299104 False +hypo hypo Super Fast & Accurate Polisher for Long Read Genome Assemblies HyPo HyPo HyPo HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes. Optimisation and refinement, Genome assembly Sequence assembly, Genomics Up-to-date https://github.com/kensung-lab/hypo Assembly hypo iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo https://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo 1.0.3 hypo 1.0.3 Optimisation and refinement, Genome assembly Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 39 354 False +idba_ud idba_hybrid, idba_tran, idba_ud Wrappers for the idba assembler variants. idba idba IDBA A short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system. Sequence assembly Sequence assembly To update https://i.cs.hku.hk/~alse/hkubrg/projects/index.html Assembly idba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud https://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_ud idba 1.1.3 Sequence assembly Sequence assembly 3 0 3 3 3 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 69 1127 False +instagraal instagraal Large genome reassembly based on Hi-C data instagraal instagraal instaGRAAL Chromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13) Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites To update https://github.com/koszullab/instaGRAAL Assembly instagraal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/instagraal https://github.com/bgruening/galaxytools/tree/master/tools/instagraal 0.1.6 Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 139 False +jellyfish jellyfish Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA Jellyfish Jellyfish Jellyfish A command-line algorithm for counting k-mers in DNA sequence. k-mer counting Sequence analysis, Genomics To update https://github.com/gmarcais/Jellyfish Assembly jellyfish iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish https://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfish kmer-jellyfish 2.3.1 k-mer counting Sequence analysis, Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 91 1138 False +khmer khmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_median In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more khmer khmer khmer khmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data. Standardisation and normalisation, De-novo assembly Sequence assembly Up-to-date https://khmer.readthedocs.org/ Assembly, Next Gen Mappers khmer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer 3.0.0a3 khmer 3.0.0a3 Standardisation and normalisation, De-novo assembly Sequence assembly 8 8 8 0 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 8 8 0 63 2022 False +length_and_gc_content length_and_gc_content Gets gene length and gc content from a fasta and a GTF file To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content Fasta Manipulation, Statistics, RNA, Micro-array Analysis length_and_gc_content iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content https://github.com/galaxyproject/tools-iuc/tree/main/tools/length_and_gc_content 0.1.2 r-optparse 1.3.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 322 4090 False +lighter lighter Lighter is a kmer-based error correction method for whole genome sequencing data lighter lighter Lighter Kmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors. k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Sequencing, Whole genome sequencing, DNA, Genomics To update https://github.com/mourisl/Lighter Sequence Analysis, Fasta Manipulation lighter bgruening https://github.com/bgruening/galaxytools/tree/master/tools/lighter https://github.com/bgruening/galaxytools/tree/master/tools/lighter 1.0 lighter 1.1.3 k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Whole genome sequencing, DNA, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 152 False +links links Scaffold genome assemblies with long reads. links links LINKS LINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS. Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing Up-to-date https://github.com/bcgsc/LINKS Assembly links iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/links https://github.com/galaxyproject/tools-iuc/tree/main/tools/links 2.0.1 links 2.0.1 Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 77 405 False +make_nr make_nr Make a FASTA file non-redundant To update https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr Fasta Manipulation, Sequence Analysis make_nr peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr 0.0.3 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +megahit megahit An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph. megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly Up-to-date https://github.com/voutcn/megahit Sequence Analysis, Assembly, Metagenomics megahit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit 1.2.9 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 548 9530 False +megahit_contig2fastg megahit_contig2fastg A subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg) megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly To update https://github.com/voutcn/megahit/blob/master/tools/toolkit.cpp Sequence Analysis, Assembly, Metagenomics megahit_contig2fastg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg 1.1.3 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 54 475 False +merqury merqury, merquryplot Merqury is a tool for evaluating genomes assemblies based of k-mer operations. merqury merqury Merqury Reference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose. Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology Up-to-date https://github.com/marbl/merqury Assembly merqury iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury https://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury 1.3 merqury 1.3 Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 244 2483 False +meryl meryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_mode Meryl a k-mer counter. meryl meryl Meryl Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu. k-mer counting Whole genome sequencing, Genomics, Sequence analysis, Sequencing Up-to-date https://github.com/marbl/meryl Assembly meryl iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl 1.3 merqury 1.3 k-mer counting Whole genome sequencing, Genomics, Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +mgnify_seqprep mgnify_seqprep A modifiied vesion of SeqPrep. Made for use with the MGnify pipelines. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers To update https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis mgnify_seqprep bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep 1.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +minia minia Short-read assembler based on a de Bruijn graph minia minia Minia Short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day. Genome assembly Sequence assembly Up-to-date https://gatb.inria.fr/software/minia/ Assembly minia iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia https://github.com/galaxyproject/tools-iuc/tree/main/tools/minia 3.2.6 minia 3.2.6 Genome assembly Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 109 2206 False +miniasm miniasm Miniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step) miniasm miniasm miniasm Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. De-novo assembly Genomics, Sequence assembly To update https://github.com/lh3/miniasm Assembly miniasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm 0.3_r179 miniasm 0.3 De-novo assembly Genomics, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 178 11938 False +mitobim mitobim assemble mitochondrial genomes Up-to-date https://github.com/chrishah/MITObim Assembly mitobim iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobim https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim 1.9.1 mitobim 1.9.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 66 881 False +mitohifi mitohifi Assembly mitogenomes from Pacbio HiFi read. To update https://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2 Assembly mitohifi bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi 3 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 56 613 False +msaboot msaboot A multiple sequences alignment bootstrapping tool. Up-to-date https://github.com/phac-nml/msaboot Fasta Manipulation msaboot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/msaboot https://github.com/galaxyproject/tools-iuc/tree/main/tools/msaboot 0.1.2 msaboot 0.1.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 803 False +multiqc multiqc MultiQC aggregates results from bioinformatics analyses across many samples into a single report multiqc multiqc MultiQC MultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. Validation, Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics To update http://multiqc.info/ Fastq Manipulation, Statistics, Visualization multiqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc 1.11 multiqc 1.24.1 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 8320 162790 False +necat necat Error correction and de-novo assembly for ONT Nanopore reads necat necat NECAT NECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads. De-novo assembly Sequence assembly Up-to-date https://github.com/xiaochuanle/NECAT Assembly necat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/necat https://github.com/galaxyproject/tools-iuc/tree/main/tools/necat 0.0.1_update20200803 necat 0.0.1_update20200803 De-novo assembly Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 95 667 False +nextdenovo nextdenovo String graph-based de novo assembler for long reads nextdenovo nextdenovo NextDenovo "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a ""correct-then-assemble"" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages." De-novo assembly, Genome assembly Sequencing, Sequence assembly To update https://github.com/Nextomics/NextDenovo Assembly nextdenovo bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo 2.5.0 nextdenovo 2.5.2 De-novo assembly, Genome assembly Sequencing, Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 268 False +nlstradamus nlstradamus Find nuclear localization signals (NLSs) in protein sequences To update http://www.moseslab.csb.utoronto.ca/NLStradamus Fasta Manipulation, Sequence Analysis nlstradamus peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus 0.0.11 NLStradamus 1.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +novoplasty novoplasty NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. To update https://github.com/ndierckx/NOVOPlasty Assembly novoplasty iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplasty https://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty 4.3.1 novoplasty 4.3.5 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 162 6384 False +oases oasesoptimiserv Short read assembler To update http://artbio.fr Assembly, RNA oases artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/oases https://github.com/ARTbio/tools-artbio/tree/main/tools/oases 1.4.0 oases 0.2.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +ont_fast5_api ont_fast5_api_compress_fast5, ont_fast5_api_fast5_subset, ont_fast5_api_multi_to_single_fast5, ont_fast5_api_single_to_multi_fast5 ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore FAST5 file format. To update https://github.com/nanoporetech/ont_fast5_api/ Nanopore ont_fast5_api iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ont_fast5_api https://github.com/galaxyproject/tools-iuc/tree/main/tools/ont_fast5_api 3.1.3 ont-fast5-api 4.1.3 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 39 2654 False +pbtk bam2fastx Convert PacBio Bam File to fasta or fastq file Up-to-date https://github.com/PacificBiosciences/pbtk Convert Formats, Fasta Manipulation, Fastq Manipulation bam2fastx iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pbtk https://github.com/galaxyproject/tools-iuc/tree/main/tools/pbtk 3.1.1 pbtk 3.1.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pear iuc_pear PEAR evaluates all possible paired-end read overlaps pear pear PEAR Paired-end read merger. PEAR evaluates all possible paired-end read overlaps without requiring the target fragment size as input. In addition, it implements a statistical test for minimizing false-positive results. Sequence merging Sequence assembly Up-to-date https://cme.h-its.org/exelixis/web/software/pear/ Fastq Manipulation pear iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pear https://github.com/galaxyproject/tools-iuc/tree/main/tools/pear 0.9.6 pear 0.9.6 Sequence merging Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 150 4305 False +plasmidspades plasmidspades Genome assembler for assemblying plasmid To update Assembly plasmidspades nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades 1.1 spades 4.0.0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +porechop porechop Porechop - Finding and removing adapters from Oxford Nanopore reads To update https://github.com/rrwick/Porechop Fasta Manipulation, Fastq Manipulation porechop iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/porechop https://github.com/galaxyproject/tools-iuc/tree/main/tools/porechop porechop 0.2.4 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1046 185468 False +poretools poretools_events, poretools_extract, poretools_hist, poretools_nucdist, poretools_occupancy, poretools_qualdist, poretools_qualpos, poretools_squiggle, poretools_stats, poretools_tabular, poretools_times, poretools_winner, poretools_yield_plot A flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis. poretools poretools Poretools Flexible toolkit for exploring datasets generated by nanopore sequencing devices from MinION for the purposes of quality control and downstream analysis. Nucleic acid sequence analysis DNA, Sequencing Up-to-date https://poretools.readthedocs.io/en/latest/ Fasta Manipulation, Fastq Manipulation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/poretools https://github.com/galaxyproject/tools-iuc/tree/main/tools/poretools 0.6.1a1 poretools 0.6.1a1 Nucleic acid sequence analysis DNA, Sequencing 13 13 13 0 13 13 13 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 13 0 409 18773 False +prinseq prinseq PRINSEQ is a tool for easy and rapid quality control and data processing of metagenomic and metatranscriptomic datasets prinseq prinseq PRINSEQ PRINSEQ is a sequence processing tool that can be used to filter, reformat and trim genomic and metagenomic sequence data. It generates summary statistics of the input in graphical and tabular formats that can be used for quality control steps. PRINSEQ is available as both standalone and web-based versions. Read pre-processing, Sequence trimming, Sequence contamination filtering Transcriptomics, Metagenomics, Genomics To update http://prinseq.sourceforge.net/manual.html Fastq Manipulation, Metagenomics prinseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/prinseq/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/prinseq @TOOL_VERSION+galaxy2 prinseq 0.20.4 Read pre-processing, Sequence trimming, Sequence contamination filtering Transcriptomics, Metagenomics 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 70 7881 False +promer promer4_substitutions Aligns two sets of contigs and reports amino acid substitutions between them To update https://github.com/phac-nml/promer Assembly promer nml https://github.com/phac-nml/promer https://github.com/phac-nml/galaxy_tools/tree/master/tools/promer 1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +purge_dups purge_dups Purge haplotigs and overlaps in an assembly based on read depth purge_dups purge_dups purge_dups Identifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuences Genome assembly, Read binning, Scaffolding Sequence assembly Up-to-date https://github.com/dfguan/purge_dups Assembly purge_dups iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dups https://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups 1.2.6 purge_dups 1.2.6 Genome assembly, Read binning, Scaffolding Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 167 16800 False +pycoqc pycoqc QC metrics for ONT Basecalling pycoqc pycoqc pycoQC PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing Up-to-date https://github.com/tleonardi/pycoQC Nanopore pycoqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc 2.5.2 pycoqc 2.5.2 Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 350 21123 False +qfilt qfilt Filter sequencing data To update https://github.com/veg/qfilt Fastq Manipulation qfilt iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qfilt https://github.com/galaxyproject/tools-iuc/tree/main/tools/qfilt 1.0.0+galaxy1 qfilt 0.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +quast quast Quast (Quality ASsessment Tool) evaluates genome assemblies. quast quast QUAST QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports. Visualisation, Sequence assembly validation Sequence assembly Up-to-date http://quast.bioinf.spbau.ru/ Assembly quast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast https://github.com/galaxyproject/tools-iuc/tree/main/tools/quast 5.2.0 quast 5.2.0 Visualisation, Sequence assembly validation Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 3567 51567 False +quickmerge quickmerge Merge long-read and hybrid assemblies to increase contiguity quickmerge quickmerge quickmerge Quickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads. Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype Up-to-date https://github.com/mahulchak/quickmerge Assembly quickmerge galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge https://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge 0.3 quickmerge 0.3 Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 False +ragtag ragtag Reference-guided scaffolding of draft genomes tool. ragtag ragtag ragtag RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Genome assembly Sequence assembly Up-to-date https://github.com/malonge/RagTag Assembly ragtag iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtag https://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag 2.1.0 ragtag 2.1.0 Genome assembly Sequence assembly 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 237 2833 False +raven raven Raven is a de novo genome assembler for long uncorrected reads. Up-to-date https://github.com/lbcb-sci/raven Assembly iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven https://github.com/galaxyproject/tools-iuc/tree/main/tools/raven 1.8.3 raven-assembler 1.8.3 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 262 6902 False +rcorrector rcorrector Rcorrector (RNA-seq error CORRECTOR) is a kmer-based error correction method for RNA-seq data. rcorrector rcorrector Rcorrector This is a kmer-based error correction method for RNA-seq data. It can also be applied to other types of sequencing data where the read coverage is non-uniform, such as single-cell sequencing. Sequencing error detection RNA, RNA-Seq, Sequencing To update https://github.com/mourisl/Rcorrector Fastq Manipulation rcorrector iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rcorrector https://github.com/galaxyproject/tools-iuc/tree/main/tools/rcorrector 1.0.3+galaxy1 rcorrector 1.0.7 Sequencing error detection RNA, RNA-Seq 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 569 False +rnaquast rna_quast rnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies. rnaQUAST rnaQUAST rnaQUAST Quality assessment tool for de novo transcriptome assemblies. De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics, RNA-seq Up-to-date https://github.com/ablab/rnaquast Assembly, RNA rnaquast iuc https://git.ufz.de/lehmanju/rnaquast https://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast 2.3.0 rnaquast 2.3.0 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 109 1110 False +salsa2 salsa A tool to scaffold long read assemblies with Hi-C SALSA SALSA SALSA > VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branch Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping Up-to-date https://github.com/marbl/SALSA Assembly salsa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa2 2.3 salsa2 2.3 Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 454 False +samblaster samblaster samblaster marks duplicates and can output split and discordant alignments from SAM/BAM files samblaster samblaster SAMBLASTER A tool to mark duplicates and extract discordant and split reads from SAM files. Split read mapping DNA, Sequencing, Mapping To update https://github.com/GregoryFaust/samblaster SAM, Fastq Manipulation, Variant Analysis samblaster iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/samblaster https://github.com/galaxyproject/tools-iuc/tree/main/tools/samblaster 0.1.24 samblaster 0.1.26 Split read mapping DNA, Sequencing, Mapping 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sample_seqs sample_seqs Sub-sample sequences files (e.g. to reduce coverage) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs Assembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysis sample_seqs peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs 0.2.6 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 149 3765 False +samtools_depad samtools_depad Re-align a SAM/BAM file with a padded reference (using samtools depad) To update http://www.htslib.org/ Assembly, SAM, Sequence Analysis samtools_depad peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad 0.0.5 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +samtools_depth samtools_depth Coverage depth via samtools To update http://www.htslib.org/ Assembly, Sequence Analysis, SAM samtools_depth peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth 0.0.3 samtools 1.20 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 296 4948 False +samtools_idxstats samtools_idxstats BAM mapping statistics (using samtools idxstats) To update http://www.htslib.org/ Assembly, Next Gen Mappers, SAM samtools_idxstats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats 0.0.6 samtools 1.20 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1450 48426 False +seq_filter_by_id seq_filter_by_id Filter sequences by ID To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation seq_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id 0.2.9 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 306 25302 False +seq_filter_by_mapping seq_filter_by_mapping Filter sequencing reads using SAM/BAM mapping files To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping Assembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysis seq_filter_by_mapping peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping 0.0.8 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 82 3784 False +seq_length seq_length Compute sequence length (from FASTA, QUAL, FASTQ, SFF, etc) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length Fasta Manipulation, Fastq Manipulation, Sequence Analysis seq_length peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length 0.0.5 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +seq_primer_clip seq_primer_clip Trim off 5' or 3' primers To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip Assembly, Fasta Manipulation, Text Manipulation seq_primer_clip peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip 0.0.18 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +seq_rename seq_rename Rename sequences with ID mapping from a tabular file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename Fasta Manipulation, Sequence Analysis, Text Manipulation seq_rename peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename 0.0.10 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 False +seq_select_by_id seq_select_by_id Select sequences by ID To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation seq_select_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id 0.0.15 biopython 1.70 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +seqprep seqprep Tool for merging paired-end Illumina reads and trimming adapters. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers Up-to-date https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis seqprep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprep https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep 1.3.2 seqprep 1.3.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sequence_format_converter sequence_format_converter various fasta to tabular conversions To update http://artbio.fr Convert Formats, Fasta Manipulation sequence_format_converter artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sequence_format_converter https://github.com/ARTbio/tools-artbio/tree/main/tools/sequence_format_converter 2.2.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +shasta shasta Fast de novo assembly of long read sequencing data To update https://github.com/chanzuckerberg/shasta Assembly, Nanopore shasta iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta https://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta 0.6.0 shasta 0.12.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 154 763 False +short_reads_trim_seq trim_reads Select high quality segments To update Fastq Manipulation short_reads_trim_seq devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_trim_seq https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_trim_seq 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 21 220 False +shovill shovill Faster de novo assembly pipeline based around Spades shovill shovill shovill Shovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too. Genome assembly Genomics, Microbiology, Sequence assembly Up-to-date https://github.com/tseemann/shovill Assembly shovill iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill https://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill 1.1.0 shovill 1.1.0 Genome assembly Genomics, Microbiology, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1008 41600 False +sickle sickle A windowed adaptive trimming tool for FASTQ files using quality sickle sickle sickle A tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads. Sequence trimming Data quality management To update https://github.com/najoshi/sickle Fastq Manipulation, Sequence Analysis sickle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle https://github.com/galaxyproject/tools-iuc/tree/main/tools/sickle 1.33.2 sickle-trim 1.33 Sequence trimming Data quality management 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 269 14982 False +smudgeplot smudgeplot Inference of ploidy and heterozygosity structure using whole genome sequencing smudgeplots smudgeplots Smudgeplots Reference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics Up-to-date https://github.com/KamilSJaron/smudgeplot Assembly smudgeplot galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot 0.2.5 smudgeplot 0.2.5 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 22 203 False +spades spades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spades SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction. spades coronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spades SPAdes St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads. Genome assembly Sequence assembly To update https://github.com/ablab/spades Assembly, RNA, Metagenomics spades iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades https://github.com/galaxyproject/tools-iuc/tree/main/tools/spades 3.15.5 spades 4.0.0 Genome assembly Sequence assembly 9 9 9 9 9 9 9 9 0 0 0 0 1 0 0 0 0 0 0 0 1 3 8 0 0 2 0 0 0 3 0 0 0 0 0 0 0 9 3 0 3547 72953 False +spades_header_fixer spades_header_fixer Fixes Spades Fasta ids To update https://github.com/phac-nml/galaxy_tools Fasta Manipulation spades_fasta_header_fixer nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/spades_header_fixer 1.1.2+galaxy1 sed 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +split_paired_reads split_paired_reads Split paired end reads To update Fastq Manipulation split_paired_reads devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/split_paired_reads https://github.com/galaxyproject/tools-devteam/tree/main/tools/split_paired_reads 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sra-tools fasterq_dump, fastq_dump, sam_dump NCBI Sequence Read Archive toolkit utilities sra-tools sra-tools SRA Software Toolkit The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives. Data handling DNA, Genomics, Sequencing Up-to-date https://github.com/ncbi/sra-tools Data Source, Fastq Manipulation sra_tools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sra-tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/sra-tools 3.1.1 sra-tools 3.1.1 Data handling DNA, Genomics, Sequencing 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 2 0 3 0 0 3 0 0 0 3 0 0 0 0 0 0 0 3 3 0 6247 350032 False +tabular_to_fastq tabular_to_fastq Tabular to FASTQ converter Up-to-date https://github.com/galaxyproject/sequence_utils Fastq Manipulation tabular_to_fastq devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/tabular_to_fastq https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/galaxy_sequence_utils/tabular_to_fastq 1.1.5 galaxy_sequence_utils 1.1.5 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 7388 False +tarfast5 tarfast5 produces a tar.gz archive of fast5 sequence files To update http://artbio.fr Nanopore tarfast5 artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/tarfast5 https://github.com/ARTbio/tools-artbio/tree/main/tools/tarfast5 0.6.1 pigz 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +taxonomy_krona_chart taxonomy_krona_chart Krona pie chart from taxonomic profile krona krona Krona Krona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome). Visualisation Metagenomics To update http://sourceforge.net/projects/krona/ Assembly taxonomy_krona_chart crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart 2.7.1+galaxy0 krona 2.8.1 Visualisation Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1801 27426 False +tgsgapcloser tgsgapcloser TGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly. TGS-GapCloser TGS-GapCloser TGS-GapCloser TGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads. Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping To update https://github.com/BGI-Qingdao/TGS-GapCloser Assembly tgsgapcloser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser 1.0.3 tgsgapcloser 1.2.1 Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 460 False +trim_galore trim_galore Trim Galore adaptive quality and adapter trimmer trim_galore trim_galore Trim Galore A wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries. Sequence trimming, Primer removal, Read pre-processing Sequence analysis To update http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/ Sequence Analysis, Fastq Manipulation trim_galore bgruening https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore 0.6.7 trim-galore 0.6.10 Sequence trimming, Primer removal, Read pre-processing Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2334 238699 False +trimmomatic trimmomatic A flexible read trimming tool for Illumina NGS data Up-to-date http://www.usadellab.org/cms/?page=trimmomatic Fastq Manipulation trimmomatic pjbriggs https://github.com/galaxyproject/tools-iuc/tree/main/packages/trimmomatic https://github.com/galaxyproject/tools-iuc/tree/main/tools/trimmomatic 0.39 trimmomatic 0.39 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 5862 305866 False +trycycler trycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsample Trycycler toolkit wrappers Up-to-date https://github.com/rrwick/Trycycler Assembly trycycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler 0.5.5 trycycler 0.5.5 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 147 8942 False +unicycler unicycler Unicycler is a hybrid assembly pipeline for bacterial genomes. unicycler unicycler Unicycler A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads. Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly Up-to-date https://github.com/rrwick/Unicycler Assembly unicycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler 0.5.1 unicycler 0.5.1 Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1558 65732 False +validate_fasta_database validate_fasta_database runs Compomics database identification tool on any FASTA database, and separates valid and invalid entries based on a series of checks. To update Fasta Manipulation, Proteomics validate_fasta_database galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/validate_fasta_database 0.1.5 validate-fasta-database 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 25 86 False +velvet velvetg, velveth de novo genomic assembler specially designed for short read sequencing technologies velvet velvet Velvet A de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD. Formatting, De-novo assembly Sequence assembly To update https://www.ebi.ac.uk/~zerbino/velvet/ Assembly velvet devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet velvet 1.2.10 Formatting, De-novo assembly Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2083 25420 False +velvet_optimiser velvetoptimiser Automatically optimize Velvet assemblies velvetoptimiser velvetoptimiser VelvetOptimiser This tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly. Optimisation and refinement, Sequence assembly Genomics, Sequence assembly To update Assembly velvetoptimiser simon-gladman https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser 2.2.6+galaxy2 velvet 1.2.10 Optimisation and refinement, Sequence assembly Genomics, Sequence assembly 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 4741 False +verkko verkko Telomere-to-telomere assembly pipeline To update https://github.com/marbl/verkko Assembly verkko iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/verkko https://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko 1.3.1 verkko 2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 22 False +wtdbg wtdbg WTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly. wtdbg2 wtdbg2 wtdbg2 Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy. Genome assembly, De-novo assembly Sequence assembly, Sequencing Up-to-date https://github.com/ruanjue/wtdbg2 Assembly wtdbg bgruening https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg 2.5 wtdbg 2.5 Genome assembly, De-novo assembly Sequence assembly, Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 116 1660 False +xpore xpore_dataprep, xpore_diffmod Identification and quantification of differential RNA modifications from direct RNA sequencing To update https://github.com/GoekeLab/xpore Nanopore xpore artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/xpore https://github.com/ARTbio/tools-artbio/tree/main/tools/xpore 2.1+galaxy0 xpore 2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +yac_clipper yac Clips 3' adapters for small RNA sequencing reads. To update http://artbio.fr RNA, Fastq Manipulation yac_clipper artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/yac_clipper https://github.com/ARTbio/tools-artbio/tree/main/tools/yac_clipper 2.5.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +yahs yahs Yet Another Hi-C scaffolding tool Up-to-date https://github.com/c-zhou/yahs Assembly yahs iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs https://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs 1.2a.2 yahs 1.2a.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 64 344 False diff --git a/communities/assembly/resources/tools_wordcloud.png b/communities/assembly/resources/tools_wordcloud.png new file mode 100644 index 00000000..21d4135e Binary files /dev/null and b/communities/assembly/resources/tools_wordcloud.png differ diff --git a/data/communities/biodiversity/categories b/communities/biodiversity/metadata/categories similarity index 100% rename from data/communities/biodiversity/categories rename to communities/biodiversity/metadata/categories diff --git a/data/communities/biodiversity/tool_status.tsv b/communities/biodiversity/metadata/tool_status.tsv similarity index 100% rename from data/communities/biodiversity/tool_status.tsv rename to communities/biodiversity/metadata/tool_status.tsv diff --git a/communities/biodiversity/resources/index.html b/communities/biodiversity/resources/index.html new file mode 100644 index 00000000..85fede02 --- /dev/null +++ b/communities/biodiversity/resources/index.html @@ -0,0 +1,59 @@ + + + + + + Simple HTML Page + + + +
+

Biodiversity ressources from the Galaxy Codex

+

Tools

+ + + +

Training

+ + +
+ + diff --git a/communities/biodiversity/resources/tools.html b/communities/biodiversity/resources/tools.html new file mode 100644 index 00000000..34a4c5b6 --- /dev/null +++ b/communities/biodiversity/resources/tools.html @@ -0,0 +1,8835 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandGalaxy wrapper idGalaxy tool idsDescriptionbio.tool idbio.tool idsbiiibio.tool namebio.tool descriptionEDAM operationEDAM topicStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper sourceGalaxy wrapper parsed folderGalaxy wrapper versionConda idConda versionEDAM operation (no superclasses)EDAM topic (no superclasses)Available on UseGalaxy.org (Main)Available on UseGalaxy.org.auAvailable on UseGalaxy.euAvailable on UseGalaxy.frTools available on UseGalaxy.org (Main)Tools available on UseGalaxy.org.auTools available on UseGalaxy.euTools available on UseGalaxy.frTools available on APOSTLTools available on BF2I-MAPTools available on BioBixTools available on CIRM-CFBPTools available on Center for Phage Technology (CPT)Tools available on ChemFlowTools available on Coloc-statsTools available on CoralSNPTools available on CropGalaxyTools available on DintorTools available on FreeBioinfoTools available on GASLINITools available on Galaxy@AuBiTools available on Galaxy@PasteurTools available on GalaxyTrakrTools available on Genomic HyperbrowserTools available on GigaGalaxyTools available on HyPhy HIV NGS ToolsTools available on IPK Galaxy Blast SuiteTools available on ImmPort GalaxyTools available on InteractoMIXTools available on MISSISSIPPITools available on Mandoiu LabTools available on MiModD NacreousMapTools available on OqtansTools available on PalfinderTools available on PepSimiliTools available on PhagePromotorTools available on UseGalaxy.beTools available on UseGalaxy.czTools available on UseGalaxy.noTools available on Viral Variant Visualizer (VVV)No. of tool users (2022-2023) (usegalaxy.eu)Total tool usage (usegalaxy.eu)Deprecated
EMLassemblylineeal_table_template, eal_templates, eml2eal, entities_template, geo_cov_template, makeeml, raster_template, taxo_cov_template, vector_templateTools using EML Assembly Line R package to generate EML metadata from template metadata files and vice versaTo updatehttps://github.com/EDIorg/EMLassemblylineEcologyemlassemblylineecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblylinehttps://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline0.1.1+galaxy0r-emlassemblyline00990099000000000000000000000000000002005102
Ecoregionalization_workflowecoregion_brt_analysis, ecoregion_GeoNearestNeighbor, ecoregion_cluster_estimate, ecoregion_clara_cluster, ecoregion_eco_map, ecoregion_taxa_seekerTools to compute ecoregionalization with BRT model predictions and clustering.To updatehttps://github.com/PaulineSGN/Workflow_GalaxyEcologyecoregionalizationecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflowhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow0.1.0+galaxy0r-base0065006500000000000000000000000000000500082
Geom_mean_workflowMap_shp, Mean_geom, bar_plotTools to compute The evolution of the total volume of very large trees, standing dead wood and dead wood on the ground on an area and the rate of devolution of the volume of wood favorable to biodiversity by large ecological regions (France).To updatehttps://github.com/PaulineSGN/Galaxy_tool_moyenne_geomEcologyGeometric means (Dead wood)ecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflowhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow0.1.0+galaxy0r-base003300330000000000000000000000000000000000
PAMPApampa_communitymetrics, pampa_presabs, pampa_glmcomm, pampa_glmsp, pampa_plotglmTools to compute and analyse biodiversity metricsTo updateEcologypampaecologyhttps://github.com/ColineRoyaux/PAMPA-Galaxyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA0.0.20555055500000000000000000000000000000540731004
TrimNstrimnsTrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipelineTo updatehttps://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNsAssemblytrimnsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trimNhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs0.1.0trimns_vgp1.00010001000000000000000000000000000000100842
abacasabacasOrder and Orientate ContigsTo updatehttps://github.com/phac-nml/abacasAssemblyabacasnmlhttps://github.com/phac-nml/abacashttps://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas1.1mummer3.23000100010000000000000010000000000000000000
abyssabyss-peAssembly By Short Sequences - a de novo, parallel, paired-end sequence assemblerabyssabyssABySSDe novo genome sequence assembler using short reads.Genome assembly, De-novo assembly, ScaffoldingSequence assemblyTo updatehttp://www.bcgsc.ca/platform/bioinfo/software/abyssAssemblyabyssiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abysshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss2.3.7abyss2.3.8Genome assembly, De-novo assembly, ScaffoldingSequence assembly01100110000000000000001000000100000001103914278
annotatemyidsannotatemyidsannotateMyIDs: get annotation for a set of IDs using the Bioconductor annotation packagesannotatemyidsannotatemyidsannotatemyidsThis tool can get annotation for a generic set of IDs, using the Bioconductor annotation data packages. Supported organisms are human, mouse, rat, fruit fly and zebrafish. The org.db packages that are used here are primarily based on mapping using Entrez Gene identifiers. More information on the annotation packages can be found at the Bioconductor website, for example, information on the human annotation package (org.Hs.eg.db) can be found here.AnnotationUp-to-datehttps://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyidsGenome annotationannotatemyidsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyidshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/annotatemyids3.18.0bioconductor-org.hs.eg.db3.18.0Annotation1111111100000000000000100000010000000110117525975
aquainfra_importeraquainfra_importerA data source tool for downloading datasets via the AquaINFRA Interaction Platform.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/AquaINFRA/tools-ecology/tree/aquainfra_importerhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/aquainfra_importer1.0001000100000000000000000000000000000000000
argnormargnormargNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD databaseargnormargnormargNormargNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database.argNorm also enhances antibiotic resistance gene annotations by providing drug categorization of the drugs that antibiotic resistance genes confer resistance to.Gene functional annotationUp-to-datehttps://github.com/BigDataBiology/argNormGenome annotationargnormiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/argnormhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm0.6.0argnorm0.6.0Gene functional annotation000100010000000000000000000000000000000000
assembly-statsassembly_statsAssembly metric visualisations to facilitate rapid assessment and comparison of assembly quality.Up-to-datehttps://github.com/rjchallis/assembly-statsAssemblyassembly_statsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-statshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats17.02rjchallis-assembly-stats17.02000100010000000000000000000000000000000000
assemblystatsassemblystatsSummarise an assembly (e.g. N50 metrics)To updatehttps://github.com/phac-nml/galaxy_toolsAssemblyassemblystatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats1.1.0perl-bioperl1.7.8000000000000000000000010000000000000000000
bam2mappingstatsbam2mappingstatsGenerates mapping stats from a bam file.To updatehttps://github.com/phac-nml/galaxy_toolsAssemblybam2mappingstatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats1.1.0perl000000000000000000000000000000000000000000
baseline_calculatortt_baselineToxicity prediction using QSAR modelsTo updatehttps://github.com/bernt-matthias/mb-galaxy-toolsEcology, Text Manipulationbaseline_toxicity_calculatormbernthttps://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculatorhttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/baseline_calculator0.1.0+galaxy0pandas000000000000000000000000000000000000000000
bionanobionano_scaffoldBionano Solve is a set of tools for analyzing Bionano dataTo updatehttps://bionanogenomics.com/Assemblybionanobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/bionanohttps://github.com/bgruening/galaxytools/tree/master/tools/bionano3.7.01110111000000000000000000000000000000100112531
biotradisbacteria_tradis, tradis_essentiality, tradis_gene_insert_sitesBio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data.biotradisbiotradisbiotradisThe Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format.Sequence analysisMobile genetic elements, WorkflowsUp-to-datehttps://www.sanger.ac.uk/science/tools/bio-tradisGenome annotationbiotradisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradishttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis1.4.5biotradis1.4.5Sequence analysisMobile genetic elements, Workflows300030000000000000000000000000000000000000
biscotbiscotBionano scaffolding correction toolUp-to-datehttps://github.com/institut-de-genomique/biscotAssemblybiscotiuchttps://github.com/bgruening/iuc/tree/master/tools/biscothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot2.3.3biscot2.3.3001000100000000000000000000000000000010013
blast_to_scaffoldblast2scaffoldGenerate DNA scaffold from blastn or tblastx alignments of ContigsTo updatehttp://artbio.frRNA, Sequence Analysis, Assemblyblast_to_scaffoldartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffoldhttps://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold1.1.0python000000000000000000000110000001000000000000
blastparser_and_hitsBlastParser_and_hitsParse blast outputs and compile hitsTo updatehttp://artbio.frAssembly, RNAblastparser_and_hitsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hitshttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits2.7.1python000000000000000000000110000001000000000000
blastx_to_scaffoldblastx2scaffoldGenerate DNA scaffold from blastx alignment of ContigsTo updatehttp://artbio.frRNA, Sequence Analysis, Assemblyblastx_to_scaffoldartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffoldhttps://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold1.1.1python000000000000000000000010000000000000000000
blobtoolkitblobtoolkitIdentification and isolation non-target data in draft and publicly available genome assemblies.To updatehttps://blobtoolkit.genomehubs.org/Sequence Analysis, Assemblyblobtoolkitbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkithttps://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit4.0.7111011100000000000000000000000000000010021685
brakerbrakerBRAKER is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes .To updatehttps://github.com/Gaius-Augustus/BRAKERGenome annotationbrakergenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/brakerhttps://github.com/genouest/galaxy-tools/tree/master/tools/braker2.1.6001000100000000000000000000000000000010017109
braker3braker3BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes .braker3braker3BRAKER3BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomesGenome annotation, Gene predictionRNA-Seq, Genomics, Structure prediction, Sequence analysisTo updatehttps://github.com/Gaius-Augustus/BRAKERGenome annotationbraker3genouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/brakerhttps://github.com/genouest/galaxy-tools/tree/master/tools/braker33.0.8Genome annotation, Gene predictionRNA-Seq, Genomics, Structure prediction, Sequence analysis011101110000000000000000000000000000010010567
cap3cap3cap3 wrapperTo updatehttp://artbio.frAssemblycap3artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cap3https://github.com/ARTbio/tools-artbio/tree/main/tools/cap32.0.1cap310.201101100110000000000000011000000100000001001017766
champ_blocscb_dissim, cb_ivr, cb_divCompute indicators for turnover boulders fieldsTo updateEcologyecologyhttps://github.com/Marie59/champ_blocshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/champ_blocs0.0.0r-base003300330000000000000000000000000000030019174
chipseekerchipseekerA tool for ChIP peak annotation and visualizationTo updatehttps://bioconductor.org/packages/release/bioc/html/ChIPseeker.htmlChIP-seq, Genome annotationchipseekerrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/chipseekerhttps://github.com/bgruening/galaxytools/tree/master/tools/chipseeker1.32.0bioconductor-chipseeker1.38.0111011100000000000000000000001000000011041815690
circexplorer2circexplorer2Comprehensive and integrative circular RNA analysis toolset.circexplorer2circexplorer2CIRCexplorer2Genome-wide annotation of circRNAs and their alternative back-splicing/splicing.RNA splicing, Gene transcripts, Literature and languageUp-to-datehttps://github.com/YangLab/CIRCexplorer2RNA, Assemblycircexplorer2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer22.3.8circexplorer22.3.8RNA splicing, Gene transcripts, Literature and language001000100000000000000000000000000000010016269
clc_assembly_cellclc_assembler, clc_mapperGalaxy wrapper for the CLC Assembly Cell suite from CLCBioTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cellAssembly, Next Gen Mappers, SAMclc_assembly_cellpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cellhttps://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell0.0.7samtools1.20000000000000000000000000000000000000000000
combine_assembly_statscombine_statsCombine multiple Assemblystats datasets into a single tabular reportTo updatehttps://github.com/phac-nml/galaxy_toolsAssemblycombine_assemblystatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats1.0perl-getopt-long2.58000000000000000000000000000000000000000000
count_roi_variantscount_roi_variantsCount sequence variants in region of interest in BAM fileTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variantsAssembly, SAMcount_roi_variantspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variantshttps://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants0.0.6samtools1.20000000000000000000000010000000000000000000
coverage_statscoverage_statsBAM coverage statistics using samtools idxstats and depthTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_statsAssembly, SAMcoverage_statspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_statshttps://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats0.1.0samtools1.20000000000000000000000010000000000000000000
data_explorationtool_anonymization, ecology_homogeneity_normality, ecology_beta_diversity, ecology_link_between_var, ecology_presence_abs_abund, ecology_stat_presence_absExplore data through multiple statistical toolsTo updateEcologyecologyhttps://github.com/Marie59/Data_explo_toolshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/data_exploration0.0.0r-tangles0066006600000000000000000000000000000600146658
deepsigdeepsigPredictor of signal peptides in proteins based on deep learningUp-to-datehttps://github.com/BolognaBiocomp/deepsigGenome annotationdeepsigiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deepsighttps://github.com/galaxyproject/tools-iuc/tree/main/tools/deepsig1.2.5deepsig1.2.5001100110000000000000000000000000000000005
discodiscoDISCO is a overlap-layout-consensus (OLC) metagenome assemblerdiscodiscoDISCODISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer.Protein sequence analysisStructure determinationTo updatehttp://disco.omicsbio.org/Metagenomics, Assemblydiscoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/https://github.com/galaxyproject/tools-iuc/tree/main/tools/discodisco1.2Protein sequence analysisStructure determination101010100000000000000010000000000000011042369
dose_responsesdr_curveA tool for analyzing and visualizing the relationship between various doses and their corresponding biological responsesUp-to-datehttps://github.com/bernt-matthias/mb-galaxy-toolsEcologydose_response_analysis_toolufzhttps://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculatorhttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/dose_responses3.0_1r-drc3.0_1000000000000000000000000000000000000000000
earmake_earA tool to compile assembly reports and stastics from assembly pipelineTo updatehttps://github.com/ERGA-consortium/EARs/tree/mainSequence Analysis, Assemblyerga_earbgrueninghttps://github.com/ERGA-consortium/EARs/tree/mainhttps://github.com/bgruening/galaxytools/tree/master/tools/ear24.08.26reportlab001000100000000000000000000000000000000000
fastkfastk_fastkFastK: A K-mer counter (for HQ assembly data sets)To updatehttps://github.com/thegenemyers/FASTKAssemblyfastkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk1.0.0fastk1.0001000100000000000000000000000000000000000
fermikitfermi2, fermikit_variantsFermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data.Up-to-datehttps://github.com/lh3/fermikitAssembly, Variant Analysisfermikitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikitr193fermi2r193000000000000000000000000000000000000000000
filter_spades_repeatsfilter_spades_repeatRemove short and repeat contigs/scaffoldsTo updatehttps://github.com/phac-nml/galaxy_tools/Assemblyfilter_spades_repeatsnmlhttps://github.com/phac-nml/galaxy_tools/https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats1.0.1perl-bioperl1.7.8000000000000000000000010000000000000000000
flashflashFast Length Adjustment of SHort readsflashflashFLASHIdentifies paired-end reads which overlap in the middle, converting them to single long readsRead pre-processing, Sequence merging, Sequence assemblySequencing, Sequence assemblyUp-to-datehttps://ccb.jhu.edu/software/FLASH/Assembly, Fastq Manipulationflashiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/flashhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/flash1.2.11flash1.2.11Read pre-processing, Sequence merging, Sequence assemblySequencing, Sequence assembly10101010000000000000001000000000000001107413759
flyeflyeAssembly of long and error-prone reads.FlyeFlyeFlyeFlye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs.Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing, GenomicsTo updatehttps://github.com/fenderglass/Flye/Assemblyflyebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/flyehttps://github.com/bgruening/galaxytools/tree/master/tools/flye2.9.4flye2.9.5Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing1111111100000000000001100100000000000110149920904
funannotatefunannotate_annotate, funannotate_clean, funannotate_compare, funannotate_predict, funannotate_sortFunannotate is a genome prediction, annotation, and comparison software package.funannotatefunannotatefunannotatefunannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes).Genome annotationGenomicsTo updatehttps://funannotate.readthedocs.ioGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate1.8.15Genome annotationGenomics35553555000000000000000000000000000005009005906
gdalgdal_gdal_merge, gdal_gdal_translate, gdal_gdaladdo, gdal_gdalbuildvrt, gdal_gdalinfo, gdal_gdalwarp, gdal_ogr2ogr, gdal_ogrinfoGeospatial Data Abstraction Library tools are all dedicated to manipulate raster and vector geospatial data formats.To updatehttps://www.gdal.orgEcologygdalecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/gdalhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal3.0.00088008800000000000000000000000000000880101475
getorganelleget_annotated_regions_from_gb, get_organelle_from_readsGetOrganelle - This toolkit assembles organelle genomes from genomic skimming data.getorganellegetorganelleGetOrganelleA fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data.De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimmingCell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organismsUp-to-datehttps://github.com/Kinggerm/GetOrganelleAssemblygetorganelleiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganellehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle1.7.7.1getorganelle1.7.7.1De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimmingCell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms022002200000000000000000000000000000020018495
goenrichmentgoenrichment, goslimmerPerforms GO Enrichment analysis.goenrichmentgoenrichmentGOEnrichmentGOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência.Gene-set enrichment analysisTranscriptomicsUp-to-datehttps://github.com/DanFaria/GOEnrichmentGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichmenthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment2.0.1goenrichment2.0.1Gene-set enrichment analysisTranscriptomics22222222000000000000002000000000000002204085484
graphmapgraphmap_align, graphmap_overlapMapper for long, error-prone reads.graphmapgraphmapgraphmapSplice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1Sequence trimming, EST assembly, Read mappingGene transcripts, RNA-Seq, RNA splicingTo updatehttps://github.com/isovic/graphmap/Assemblygraphmapbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/graphmaphttps://github.com/bgruening/galaxytools/tree/master/tools/graphmap0.5.2graphmap0.6.3Sequence trimming, EST assembly, Read mappingGene transcripts, RNA-Seq, RNA splicing00200020000000000000002000000000000002201366651
hapcut2hapcut2Robust and accurate haplotype assembly for diverse sequencing technologieshapcut2hapcut2HapCUT2HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to "just work" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.mdHaplotype mapping, Variant classificationUp-to-datehttps://github.com/vibansal/HapCUT2Assemblyhapcut2galaxy-australiahttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut21.3.4hapcut21.3.4Haplotype mapping, Variant classification010001000000000000000000000000000000000000
hapoghapogHapo-G - Haplotype-Aware Polishing of GenomeshapoghapogHapo-GHapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes.Genome assembly, Optimisation and refinementSequence assembly, GenomicsUp-to-datehttps://github.com/institut-de-genomique/HAPO-GAssemblyhapogiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hapoghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog1.3.8hapog1.3.8Genome assembly, Optimisation and refinementSequence assembly, Genomics001100110000000000000000000000000000010036295
helixerhelixerGene calling with Deep Neural NetworkshelixerhelixerHelixerDeep Learning to predict gene annotationsGene prediction, Genome annotationSequence analysis, Gene transcriptsTo updatehttps://github.com/weberlab-hhu/HelixerGenome annotationhelixergenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/helixerhttps://github.com/genouest/galaxy-tools/tree/master/tools/helixer0.3.3Gene prediction, Genome annotationSequence analysis, Gene transcripts0111011100000000000000000000000000000100193
hifiasmhifiasmA fast haplotype-resolved de novo assemblerUp-to-datehttps://github.com/chhylp123/hifiasmAssemblyhifiasmbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/hifiasmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm0.19.9hifiasm0.19.911111111000000000000001000000000000001002971410
hirondelle_crim_ogc_api_processeshirondelle_crimThis tool is a wrapper for OGC API Processes coming from https://osf.io/gfbws/.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapperhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/hirondelle_crim_ogc_api_processes0.1.0r-base001000100000000000000000000000000000000000
hisathisatHISAT is a fast and sensitive spliced alignment program.To updatehttp://ccb.jhu.edu/software/hisat/index.shtmlAssemblyhisatdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/hisathttps://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat1.0.3hisat00000000000000000000001000000000000000000228
hisat2hisat2HISAT2 is a fast and sensitive spliced alignment program.hisat2hisat2HISAT2Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome).Sequence alignmentRNA-seqUp-to-datehttp://ccb.jhu.edu/software/hisat2/Assemblyhisat2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat22.2.1hisat22.2.1Sequence alignment11111111000000000000101000000100000001104183299104
hypohypoSuper Fast & Accurate Polisher for Long Read Genome AssembliesHyPoHyPoHyPoHyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes.Optimisation and refinement, Genome assemblySequence assembly, GenomicsUp-to-datehttps://github.com/kensung-lab/hypoAssemblyhypoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hypohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo1.0.3hypo1.0.3Optimisation and refinement, Genome assemblySequence assembly, Genomics001000100000000000000000000000000000010039354
icescreenicescreenICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes.icescreenicescreenICEscreenA tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures.Database search, Protein feature detectionMobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variationTo updatehttps://icescreen.migale.inrae.fr/Genome annotationicescreeniuchttps://forgemia.inra.fr/ices_imes_analysis/icescreenhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen1.3.1icescreen1.3.2Database search, Protein feature detectionMobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation000000000000000000000010000000000000000000
idba_udidba_hybrid, idba_tran, idba_udWrappers for the idba assembler variants.idbaidbaIDBAA short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system.Sequence assemblySequence assemblyTo updatehttps://i.cs.hku.hk/~alse/hkubrg/projects/index.htmlAssemblyidbaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_udhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_udidba1.1.3Sequence assemblySequence assembly3033303300000000000000000000000000000330691127
instagraalinstagraalLarge genome reassembly based on Hi-C datainstagraalinstagraalinstaGRAALChromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13)Genome assembly, Mapping assembly, Genetic mapping, ScaffoldingSequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sitesTo updatehttps://github.com/koszullab/instaGRAALAssemblyinstagraalbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/instagraalhttps://github.com/bgruening/galaxytools/tree/master/tools/instagraal0.1.6Genome assembly, Mapping assembly, Genetic mapping, ScaffoldingSequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites001000100000000000000000000000000000010014139
interpolationinterpolation_run_idw_interpolationRun IDW interpolation based on a .csv and .geojson fileTo updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolationhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation1.0r-getopt001000100000000000000000000000000000000000
jellyfishjellyfishJellyfish is a tool for fast, memory-efficient counting of k-mers in DNAJellyfishJellyfishJellyfishA command-line algorithm for counting k-mers in DNA sequence.k-mer countingSequence analysis, GenomicsTo updatehttps://github.com/gmarcais/JellyfishAssemblyjellyfishiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfishhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfishkmer-jellyfish2.3.1k-mer countingSequence analysis, Genomics0111011100000000000000100000000000000110911138
khmerkhmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_medianIn-memory nucleotide sequence k-mer counting, filtering, graph traversal and morekhmerkhmerkhmerkhmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data.Standardisation and normalisation, De-novo assemblySequence assemblyUp-to-datehttps://khmer.readthedocs.org/Assembly, Next Gen Mapperskhmeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/khmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer3.0.0a3khmer3.0.0a3Standardisation and normalisation, De-novo assemblySequence assembly8880888000000000000001100000010000000880632022
linkslinksScaffold genome assemblies with long reads.linkslinksLINKSLINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS.Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimmingSequence assembly, Mapping, SequencingUp-to-datehttps://github.com/bcgsc/LINKSAssemblylinksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/linkshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/links2.0.1links2.0.1Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimmingSequence assembly, Mapping, Sequencing011001100000000000000010000000000000010077405
marine_omicssanntis_marineThe Sanntis tool identify biosynthetic gene clusters (BGCs) in genomic & metagenomic dataUp-to-datehttps://github.com/Finn-Lab/SanntiSEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omicshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics0.9.3.5sanntis0.9.3.5001000100000000000000000000000000000000000
mean-per-zonemean_per_zoneCreates a png image showing statistic over areas as defined in the vector fileTo updatehttps://github.com/NordicESMhub/galaxy-tools/blob/master/tools/mean-per-zone/Visualization, GIS, Climate Analysismean_per_zoneclimatehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zonehttps://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone0.2.0python0010001000000000000000000000000000000110024
medenviabiodiv_smartbiodiv_med_environRetrieve environmental data from etopo, cmems and woaTo updatehttps://github.com/jeremyfix/medenvEcology, Data Sourceecologyhttps://github.com/jeremyfix/medenvhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/medenv0.1.0pandas001000100000000000000000000000000000000000
megahitmegahitAn ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph.megahitmegahitMEGAHITSingle node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.Genome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyUp-to-datehttps://github.com/voutcn/megahitSequence Analysis, Assembly, Metagenomicsmegahitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit1.2.9megahit1.2.9Genome assemblyMetagenomics, Sequencing, Sequence assembly11111111000000000000111001000100001001105489530
megahit_contig2fastgmegahit_contig2fastgA subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg)megahitmegahitMEGAHITSingle node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.Genome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyTo updatehttps://github.com/voutcn/megahit/blob/master/tools/toolkit.cppSequence Analysis, Assembly, Metagenomicsmegahit_contig2fastgiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg1.1.3megahit1.2.9Genome assemblyMetagenomics, Sequencing, Sequence assembly111111110000000000000010000001000000011054475
merqurymerqury, merquryplotMerqury is a tool for evaluating genomes assemblies based of k-mer operations.merqurymerquryMerquryReference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose.Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biologyUp-to-datehttps://github.com/marbl/merquryAssemblymerquryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merquryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury1.3merqury1.3Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biology22222222000000000000000000000000000001002442483
merylmeryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_modeMeryl a k-mer counter.merylmerylMerylMeryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu.k-mer countingWhole genome sequencing, Genomics, Sequence analysis, SequencingUp-to-datehttps://github.com/marbl/merylAssemblymeryliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merylhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl1.3merqury1.3k-mer countingWhole genome sequencing, Genomics, Sequence analysis000000000000000000000000000000000000000000
metaeukmetaeuk_easy_predictMetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand.MetaEukMetaEukMetaEukMetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomicsHomology-based gene predictionMetagenomics, Gene and protein familiesTo updatehttps://github.com/soedinglab/metaeukSequence Analysis, Genome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeukhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk5.34c21f2metaeuk6.a5d39d9Homology-based gene predictionMetagenomics, Gene and protein families001000100000000000000000000000000000011016184
miniaminiaShort-read assembler based on a de Bruijn graphminiaminiaMiniaShort-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day.Genome assemblySequence assemblyUp-to-datehttps://gatb.inria.fr/software/minia/Assemblyminiaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/minia3.2.6minia3.2.6Genome assemblySequence assembly01100110000000000000001000000000000001101092206
miniasmminiasmMiniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step)miniasmminiasmminiasmMiniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format.De-novo assemblyGenomics, Sequence assemblyTo updatehttps://github.com/lh3/miniasmAssemblyminiasmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm0.3_r179miniasm0.3De-novo assemblyGenomics, Sequence assembly111111110000000000000010000000000000011017811938
mitobimmitobimassemble mitochondrial genomesUp-to-datehttps://github.com/chrishah/MITObimAssemblymitobimiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobimhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim1.9.1mitobim1.9.1011001100000000000000010000000000000010066881
mitohifimitohifiAssembly mitogenomes from Pacbio HiFi read.To updatehttps://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2Assemblymitohifibgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/mitohifihttps://github.com/bgruening/galaxytools/tree/master/tools/mitohifi3111011100000000000000010000000000000010056613
ncbi_egapxncbi_egapxEukaryotic Genome Annotation Pipeline - External (EGAPx)To updatehttps://github.com/ncbi/egapxGenome annotationncbi_egapxrichard-burhanshttps://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapxhttps://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx0.2-alpha100010000000000000000000000000000000000000
necatnecatError correction and de-novo assembly for ONT Nanopore readsnecatnecatNECATNECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads.De-novo assemblySequence assemblyUp-to-datehttps://github.com/xiaochuanle/NECATAssemblynecatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/necathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/necat0.0.1_update20200803necat0.0.1_update20200803De-novo assemblySequence assembly001000100000000000000000000000000000010095667
nextdenovonextdenovoString graph-based de novo assembler for long readsnextdenovonextdenovoNextDenovoNextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a "correct-then-assemble" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages.De-novo assembly, Genome assemblySequencing, Sequence assemblyTo updatehttps://github.com/Nextomics/NextDenovoAssemblynextdenovobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovohttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo2.5.0nextdenovo2.5.2De-novo assembly, Genome assemblySequencing, Sequence assembly001000100000000000000000000000000000010084268
novoplastynovoplastyNOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes.To updatehttps://github.com/ndierckx/NOVOPlastyAssemblynovoplastyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplastyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty4.3.1novoplasty4.3.501110111000000000000001000000000000001001626384
oasesoasesoptimiservShort read assemblerTo updatehttp://artbio.frAssembly, RNAoasesartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/oaseshttps://github.com/ARTbio/tools-artbio/tree/main/tools/oases1.4.0oases0.2.09000000000000000000000110000001000000000000
obisindicatorsobisindicators, obis_dataCompute biodiveristy indicators for marine data from obisTo updatehttps://github.com/Marie59/obisindicatorsEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicatorshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators0.0.2r-base1021102100000000000000000000000000000100445
oceanargo_getdata, divand_full_analysisAccess, process, visualise oceanographic data for the Earth SystemTo updatehttps://github.com/Marie59/FE-ft-ESG/tree/main/argoEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/oceanhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean0.1.15julia002000200000000000000000000000000000000006
ogcProcess_otb_bandmathotb_band_mathOutputs a monoband image which is the result of a mathematical operation on several multi-band images.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/OtbBandMathhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_bandmath1.0r-base001000100000000000000000000000000000000000
ogcProcess_otb_meanShiftSmoothingotb_mean_shift_smoothingThis application smooths an image using the MeanShift algorithm.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolationhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_meanShiftSmoothing1.0r-base001000100000000000000000000000000000000000
pharokkapharokkarapid standardised annotation tool for bacteriophage genomes and metagenomespharokkapharokkaPharokkaPharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes.Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assemblyMetagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNATo updatehttps://github.com/gbouras13/pharokkaGenome annotationpharokkaiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokkahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka1.3.2\n pharokka\nGenome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assemblyMetagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA0110011000000000000000100000000000100100742565
plasmidspadesplasmidspadesGenome assembler for assemblying plasmidTo updateAssemblyplasmidspadesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades1.1spades4.0.0000000000000100000000110000000000000000000
prodigalprodigalA protein-coding gene prediction software tool for bacterial and archaeal genomesprodigalprodigalProdigalFast, reliable protein-coding gene prediction for prokaryotic genomes.Genome annotationGenomics, Sequence analysisUp-to-datehttps://github.com/hyattpd/ProdigalGenome annotationprodigaliuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigalhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal2.6.3prodigal2.6.3Genome annotationGenomics, Sequence analysis001100110000000000100010000000000000000000
promerpromer4_substitutionsAligns two sets of contigs and reports amino acid substitutions between themTo updatehttps://github.com/phac-nml/promerAssemblypromernmlhttps://github.com/phac-nml/promerhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/promer1.2python000000000000000000000000000000000000000000
purge_dupspurge_dupsPurge haplotigs and overlaps in an assembly based on read depthpurge_dupspurge_dupspurge_dupsIdentifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuencesGenome assembly, Read binning, ScaffoldingSequence assemblyUp-to-datehttps://github.com/dfguan/purge_dupsAssemblypurge_dupsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dupshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups1.2.6purge_dups1.2.6Genome assembly, Read binning, ScaffoldingSequence assembly111011100000000000000000000000000000010016716800
quastquastQuast (Quality ASsessment Tool) evaluates genome assemblies.quastquastQUASTQUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports.Visualisation, Sequence assembly validationSequence assemblyUp-to-datehttp://quast.bioinf.spbau.ru/Assemblyquastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/quast5.2.0quast5.2.0Visualisation, Sequence assembly validationSequence assembly1111111100001000000011100100010000000110356751567
quickmergequickmergeMerge long-read and hybrid assemblies to increase contiguityquickmergequickmergequickmergeQuickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads.Genome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotypeUp-to-datehttps://github.com/mahulchak/quickmergeAssemblyquickmergegalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmergehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge0.3quickmerge0.3Genome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype000000000000000000000000000000000000001000
ragtagragtagReference-guided scaffolding of draft genomes tool.ragtagragtagragtagRagTag is a collection of software tools for scaffolding and improving modern genome assemblies.Genome assemblySequence assemblyUp-to-datehttps://github.com/malonge/RagTagAssemblyragtagiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtaghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag2.1.0ragtag2.1.0Genome assemblySequence assembly01110111000000000000001000000000000001102372833
ravenravenRaven is a de novo genome assembler for long uncorrected reads.Up-to-datehttps://github.com/lbcb-sci/ravenAssemblyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ravenhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/raven1.8.3raven-assembler1.8.301110111000000000000001000000000000001002626902
regionalgamregionalgam_ab_index, regionalgam_autocor_acf, regionalgam_flight_curve, regionalgam_glmmpql, regionalgam_gls_adjusted, regionalgam_gls, regionalgam_plot_trendTo updatehttps://github.com/RetoSchmucki/regionalGAMEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgamhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam1.5r-mgcv007700770000000000000000000000000000077022526
repeatexplorer2repeatexplorer_clusteringTool for annotation of repeats from unassembled shotgun reads.To updatehttps://github.com/repeatexplorer/repex_tareanGenome annotationrepeatexplorer2ggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer22.3.80010001000000000000000000000000000000000016
repeatmodelerrepeatmodelerRepeatModeler - Model repetitive DNArepeatmodelerrepeatmodelerRepeatModelerDe-novo repeat family identification and modeling package. At the heart of RepeatModeler are two de-novo repeat finding programs ( RECON and RepeatScout ) which employ complementary computational methods for identifying repeat element boundaries and family relationships from sequence data. RepeatModeler assists in automating the runs of RECON and RepeatScout given a genomic database and uses the output to build, refine and classify consensus models of putative interspersed repeats.Repeat sequence detectionSequence composition, complexity and repeats, Sequence composition, complexity and repeatsTo updatehttps://www.repeatmasker.org/RepeatModeler/Genome annotationrepeatmodelercsblhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmodelerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmodeler2.0.5Repeat sequence detectionSequence composition, complexity and repeats, Sequence composition, complexity and repeats11111111000000000000001000000000000001002171177
retrieve_boldretrieve_boldSearch a list of sequences in BOLD (Barcode of Life Data System) from specified taxa list and markersTo updatehttps://anaconda.org/conda-forge/r-boldEcologyretrieve_boldecologyhttps://github.com/wpearman1996/MARES_database_pipeline/tree/masterhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/retrieve_bold1.3.0r-base001000100000000000000000000000000000000000
rnaquastrna_quastrnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies.rnaQUASTrnaQUASTrnaQUASTQuality assessment tool for de novo transcriptome assemblies.De-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics, RNA-seqUp-to-datehttps://github.com/ablab/rnaquastAssembly, RNArnaquastiuchttps://git.ufz.de/lehmanju/rnaquasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast2.3.0rnaquast2.3.0De-novo assembly, Transcriptome assembly, Sequence assembly validationSequence assembly, Transcriptomics11111111000000000000000000000000000001001091110
salsa2salsaA tool to scaffold long read assemblies with Hi-CSALSASALSASALSA> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branchGenome assembly, De-novo assembly, ScaffoldingSequence assembly, DNA binding sites, MappingUp-to-datehttps://github.com/marbl/SALSAAssemblysalsaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa22.3salsa22.3Genome assembly, De-novo assembly, ScaffoldingSequence assembly, DNA binding sites, Mapping101010100000000000000010000000000000010084454
sample_seqssample_seqsSub-sample sequences files (e.g. to reduce coverage)To updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqsAssembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysissample_seqspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqshttps://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs0.2.6biopython1.7011111111000000000000001000000000000001101493765
samtools_depadsamtools_depadRe-align a SAM/BAM file with a padded reference (using samtools depad)To updatehttp://www.htslib.org/Assembly, SAM, Sequence Analysissamtools_depadpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depadhttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad0.0.5samtools1.20000000000000000000000000000000000000000000
samtools_depthsamtools_depthCoverage depth via samtoolsTo updatehttp://www.htslib.org/Assembly, Sequence Analysis, SAMsamtools_depthpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depthhttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth0.0.3samtools1.2011111111000000000000111001000000000001112964948
samtools_idxstatssamtools_idxstatsBAM mapping statistics (using samtools idxstats)To updatehttp://www.htslib.org/Assembly, Next Gen Mappers, SAMsamtools_idxstatspeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstatshttps://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats0.0.6samtools1.201111111101000000000011100100010000000110145048426
sdmpredictorssdmpredictors_list_layersTerrestrial and marine predictors for species distribution modelling.To updatehttps://cran.r-project.org/web/packages/sdmpredictors/index.htmlEcologysdmpredictorsecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictorshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors0.2.15r-base001000100000000000000000000000000000000000
seq_filter_by_mappingseq_filter_by_mappingFilter sequencing reads using SAM/BAM mapping filesTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mappingAssembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysisseq_filter_by_mappingpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mappinghttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping0.0.8biopython1.700010001000000000000000100000000000000110823784
seq_primer_clipseq_primer_clipTrim off 5' or 3' primersTo updatehttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clipAssembly, Fasta Manipulation, Text Manipulationseq_primer_clippeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_cliphttps://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip0.0.18galaxy_sequence_utils1.1.5000000000000000000000000000000000000000000
shastashastaFast de novo assembly of long read sequencing dataTo updatehttps://github.com/chanzuckerberg/shastaAssembly, Nanoporeshastaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shastahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta0.6.0shasta0.12.00110011000000000000000100000000000000100154763
shovillshovillFaster de novo assembly pipeline based around SpadesshovillshovillshovillShovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too.Genome assemblyGenomics, Microbiology, Sequence assemblyUp-to-datehttps://github.com/tseemann/shovillAssemblyshovilliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shovillhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill1.1.0shovill1.1.0Genome assemblyGenomics, Microbiology, Sequence assembly1111111100000000000010100000000000000110100841600
smudgeplotsmudgeplotInference of ploidy and heterozygosity structure using whole genome sequencingsmudgeplotssmudgeplotsSmudgeplotsReference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568Sequence trimming, Genotyping, k-mer countingSequence assembly, Genetic variation, MathematicsUp-to-datehttps://github.com/KamilSJaron/smudgeplotAssemblysmudgeplotgalaxy-australiahttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot0.2.5smudgeplot0.2.5Sequence trimming, Genotyping, k-mer countingSequence assembly, Genetic variation, Mathematics111011100000000000000000000000000000011022203
spadesspades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spadesSPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction.spadescoronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spadesSPAdesSt. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads.Genome assemblySequence assemblyTo updatehttps://github.com/ablab/spadesAssembly, RNA, Metagenomicsspadesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/spadeshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spades3.15.5spades4.0.0Genome assemblySequence assembly9999999900001000000013800200030000000930354772953
spalnlist_spaln_tables, spalnSpaln (space-efficient spliced alignment) maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence.To updatehttp://www.genome.ist.i.kyoto-u.ac.jp/~aln_user/spaln/Sequence Analysis, Genome annotationspalniuchttps://github.com/ogotoh/spalnhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spaln2.4.9python202020200000000000000020000000000000022034446
spoccspocc_occGet species occurences dataTo updatehttps://cran.r-project.org/web/packages/spocc/index.htmlEcologyspocc_occecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/spocchttps://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc1.2.2001100110000000000000000000000000000011056769
srs_toolssrs_diversity_maps, srs_global_indices, srs_process_data, srs_spectral_indices, srs_pca, srs_preprocess_s2, srs_metadataCompute biodiversity indicators for remote sensing data from Sentinel 2To updateEcologyecologyhttps://github.com/Marie59/Sentinel_2A/srs_toolshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/srs_tools0.0.1r-base407740770000000000000000000000000000070021225
stocstoceps_filteringsp, stoceps_glm, stoceps_glm_group, stoceps_maketablecarrer, stoceps_trend_indicTools to analyse STOC data.To updateEcologystocepsecologyhttps://github.com/Alanamosse/Galaxy-E/tree/stoctool/tools/stochttps://github.com/galaxyecology/tools-ecology/tree/master/tools/stoc0.0.2005500550000000000000000000000000000055010325
taxonomy_filter_refseqtaxonomy_filter_refseqFilter RefSeq by taxonomyTo updatehttps://github.com/pvanheus/ncbitaxonomySequence Analysis, Genome annotationtaxonomy_filter_refseqiuchttps://github.com/galaxyproject/tools-iuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_filter_refseq0.3.0rust-ncbitaxonomy1.0.7000000000000000000000010000000000000000000
taxonomy_krona_charttaxonomy_krona_chartKrona pie chart from taxonomic profilekronakronaKronaKrona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome).VisualisationMetagenomicsTo updatehttp://sourceforge.net/projects/krona/Assemblytaxonomy_krona_chartcrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_charthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart2.7.1+galaxy0krona2.8.1VisualisationMetagenomics1111111100000000000011100100000000100110180127426
telescopetelescope_assignSingle locus resolution of Transposable ELEment expression.Telescope-expressionTelescope-expressionTelescopeTelescope is a tool for the characterization of the retrotranscriptome by accurate estimation of transposable element expression and the quantification of transposable element expression using RNA-seq.It can be used for Statistical Performance of TE Quantification Methods.All scripts needed to examine the sensitivity and biases of computational approaches for quantifying TE expression: 1) unique counts, 2) best counts, 3) RepEnrich, 4) TEtranscripts, 5) RSEM, 6) SalmonTE, and 7) Telescope.Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mappingRNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assemblyUp-to-datehttps://github.com/mlbendall/telescope/Genome annotationtelescope_assigniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/telescopehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/telescope1.0.3telescope1.0.3Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mappingRNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly000000000000000000000000000000000000000000
tgsgapclosertgsgapcloserTGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly.TGS-GapCloserTGS-GapCloserTGS-GapCloserTGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads.Genome assembly, Read mapping, Scaffolding, Localised reassemblySequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, MappingTo updatehttps://github.com/BGI-Qingdao/TGS-GapCloserAssemblytgsgapcloserbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloserhttps://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser1.0.3tgsgapcloser1.2.1Genome assembly, Read mapping, Scaffolding, Localised reassemblySequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping001000100000000000000000000000000000010036460
transitgff_to_prot, transit_gumbel, transit_hmm, transit_resampling, transit_tn5gapsTRANSITtransittransitTRANSITA tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions.Transposon predictionDNA, Sequencing, Mobile genetic elementsTo updatehttps://github.com/mad-lab/transit/Genome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit3.0.2transit3.2.3Transposon predictionDNA, Sequencing, Mobile genetic elements555055500000000000000000000000000000055084907
trycyclertrycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsampleTrycycler toolkit wrappersUp-to-datehttps://github.com/rrwick/TrycyclerAssemblytrycycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trycyclerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler0.5.5trycycler0.5.505550555000000000000005000000000000005001478942
tsebratsebraThis tool has been developed to combine BRAKER predictions.tsebratsebraTSEBRATSEBRA is a combiner tool that selects transcripts from gene predictions based on the support by extrisic evidence in form of introns and start/stop codons. It was developed to combine BRAKER1 and BRAKER2 predicitons to increase their accuracies.Homology-based gene prediction, Alternative splicing predictionGene expression, RNA-Seq, Gene transcripts, Model organismsTo updatehttps://github.com/Gaius-Augustus/TSEBRAGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tsebrahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tsebra1.1.2.4tsebra1.1.2.5Homology-based gene prediction, Alternative splicing predictionGene expression, RNA-Seq, Gene transcripts, Model organisms001100110000000000000000000000000000000005
unicyclerunicyclerUnicycler is a hybrid assembly pipeline for bacterial genomes.unicyclerunicyclerUnicyclerA tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads.Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assemblyUp-to-datehttps://github.com/rrwick/UnicyclerAssemblyunicycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/unicyclerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler0.5.1unicycler0.5.1Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assembly1111111100000000000001100100010000000110155865732
velvetvelvetg, velvethde novo genomic assembler specially designed for short read sequencing technologiesvelvetvelvetVelvetA de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD.Formatting, De-novo assemblySequence assemblyTo updatehttps://www.ebi.ac.uk/~zerbino/velvet/Assemblyvelvetdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velvetvelvet1.2.10Formatting, De-novo assemblySequence assembly2222222200000000000022000000000000000200208325420
velvet_optimiservelvetoptimiserAutomatically optimize Velvet assembliesvelvetoptimiservelvetoptimiserVelvetOptimiserThis tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly.Optimisation and refinement, Sequence assemblyGenomics, Sequence assemblyTo updateAssemblyvelvetoptimisersimon-gladmanhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiserhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser2.2.6+galaxy2velvet1.2.10Optimisation and refinement, Sequence assemblyGenomics, Sequence assembly11101110010000000000110000000000000001102554741
verkkoverkkoTelomere-to-telomere assembly pipelineTo updatehttps://github.com/marbl/verkkoAssemblyverkkoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/verkkohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko1.3.1verkko2.10010001000000000000000000000000000000100922
vigiechirovigiechiro_bilanenrichipf, vigiechiro_bilanenrichirp, vigiechiro_idcorrect_2ndlayer, vigiechiro_idvalidTools created by the vigiechiro team to analyses and identify chiro sounds files.To updatehttps://www.vigienature-ecole.fr/les-observatoires/le-protocole-vigie-chiroEcologyvigiechiroecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechirohttps://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro0.1.1004400440000000000000000000000000000044035112203
wtdbgwtdbgWTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly.wtdbg2wtdbg2wtdbg2Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy.Genome assembly, De-novo assemblySequence assembly, SequencingUp-to-datehttps://github.com/ruanjue/wtdbg2Assemblywtdbgbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbg2.5wtdbg2.5Genome assembly, De-novo assemblySequence assembly, Sequencing00110011000000000000001000000000000001101161660
xarraytimeseries_extraction, xarray_coords_info, xarray_mapplot, xarray_metadata_info, xarray_netcdf2netcdf, xarray_selectxarray (formerly xray) is an open source project and Python package that makes working withlabelled multi-dimensional arrays simple, efficient, and fun!xarray integrates with Dask to support parallel computations and streaming computation on datasetsthat don’t fit into memory.To updatehttp://xarray.pydata.orgEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray/https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray2022.3.0xarray52655265000000000000000000000000000006201755876
yahsyahsYet Another Hi-C scaffolding toolUp-to-datehttps://github.com/c-zhou/yahsAssemblyyahsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/yahshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs1.2a.2yahs1.2a.2111011100000000000000000000000000000010064344
zoo_project_ogc_api_processeszoo_project_ogc_api_processesThis tool is a wrapper for OGC API Processes (OTB) coming from the Zoo Project (https://zoo-project.github.io/docs/intro.html) and was created using the OGC-API-Process2Galaxy tool (https://github.com/AquaINFRA/OGC-API-Process2Galaxy). Check the README in the repository for more information.To updatehttps://github.com/AquaINFRA/galaxyEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapperhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/zoo_project_ogc_api_processes0.1.0r-base001000100000000000000000000000000000000000
+ +
\ No newline at end of file diff --git a/communities/biodiversity/resources/tools.tsv b/communities/biodiversity/resources/tools.tsv new file mode 100644 index 00000000..44c1fbd1 --- /dev/null +++ b/communities/biodiversity/resources/tools.tsv @@ -0,0 +1,131 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +EMLassemblyline eal_table_template, eal_templates, eml2eal, entities_template, geo_cov_template, makeeml, raster_template, taxo_cov_template, vector_template Tools using EML Assembly Line R package to generate EML metadata from template metadata files and vice versa To update https://github.com/EDIorg/EMLassemblyline Ecology emlassemblyline ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline 0.1.1+galaxy0 r-emlassemblyline 0 0 9 9 0 0 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 102 False +Ecoregionalization_workflow ecoregion_brt_analysis, ecoregion_GeoNearestNeighbor, ecoregion_cluster_estimate, ecoregion_clara_cluster, ecoregion_eco_map, ecoregion_taxa_seeker Tools to compute ecoregionalization with BRT model predictions and clustering. To update https://github.com/PaulineSGN/Workflow_Galaxy Ecology ecoregionalization ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow 0.1.0+galaxy0 r-base 0 0 6 5 0 0 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 82 False +Geom_mean_workflow Map_shp, Mean_geom, bar_plot Tools to compute The evolution of the total volume of very large trees, standing dead wood and dead wood on the ground on an area and the rate of devolution of the volume of wood favorable to biodiversity by large ecological regions (France). To update https://github.com/PaulineSGN/Galaxy_tool_moyenne_geom Ecology Geometric means (Dead wood) ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow 0.1.0+galaxy0 r-base 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +PAMPA pampa_communitymetrics, pampa_presabs, pampa_glmcomm, pampa_glmsp, pampa_plotglm Tools to compute and analyse biodiversity metrics To update Ecology pampa ecology https://github.com/ColineRoyaux/PAMPA-Galaxy https://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA 0.0.2 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 0 73 1004 False +TrimNs trimns TrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipeline To update https://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNs Assembly trimns iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trimN https://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs 0.1.0 trimns_vgp 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 42 False +abacas abacas Order and Orientate Contigs To update https://github.com/phac-nml/abacas Assembly abacas nml https://github.com/phac-nml/abacas https://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas 1.1 mummer 3.23 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +abyss abyss-pe Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler abyss abyss ABySS De novo genome sequence assembler using short reads. Genome assembly, De-novo assembly, Scaffolding Sequence assembly To update http://www.bcgsc.ca/platform/bioinfo/software/abyss Assembly abyss iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss https://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss 2.3.7 abyss 2.3.8 Genome assembly, De-novo assembly, Scaffolding Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 391 4278 False +annotatemyids annotatemyids annotateMyIDs: get annotation for a set of IDs using the Bioconductor annotation packages annotatemyids annotatemyids annotatemyids This tool can get annotation for a generic set of IDs, using the Bioconductor annotation data packages. Supported organisms are human, mouse, rat, fruit fly and zebrafish. The org.db packages that are used here are primarily based on mapping using Entrez Gene identifiers. More information on the annotation packages can be found at the Bioconductor website, for example, information on the human annotation package (org.Hs.eg.db) can be found here. Annotation Up-to-date https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids Genome annotation annotatemyids iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids https://github.com/galaxyproject/tools-iuc/tree/main/tools/annotatemyids 3.18.0 bioconductor-org.hs.eg.db 3.18.0 Annotation 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1175 25975 False +aquainfra_importer aquainfra_importer A data source tool for downloading datasets via the AquaINFRA Interaction Platform. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/AquaINFRA/tools-ecology/tree/aquainfra_importer https://github.com/galaxyecology/tools-ecology/tree/master/tools/aquainfra_importer 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +argnorm argnorm argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database argnorm argnorm argNorm argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database.argNorm also enhances antibiotic resistance gene annotations by providing drug categorization of the drugs that antibiotic resistance genes confer resistance to. Gene functional annotation Up-to-date https://github.com/BigDataBiology/argNorm Genome annotation argnorm iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm 0.6.0 argnorm 0.6.0 Gene functional annotation 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. Up-to-date https://github.com/rjchallis/assembly-stats Assembly assembly_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-stats https://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats 17.02 rjchallis-assembly-stats 17.02 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +assemblystats assemblystats Summarise an assembly (e.g. N50 metrics) To update https://github.com/phac-nml/galaxy_tools Assembly assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bam2mappingstats bam2mappingstats Generates mapping stats from a bam file. To update https://github.com/phac-nml/galaxy_tools Assembly bam2mappingstats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats 1.1.0 perl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +baseline_calculator tt_baseline Toxicity prediction using QSAR models To update https://github.com/bernt-matthias/mb-galaxy-tools Ecology, Text Manipulation baseline_toxicity_calculator mbernt https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/baseline_calculator 0.1.0+galaxy0 pandas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bionano bionano_scaffold Bionano Solve is a set of tools for analyzing Bionano data To update https://bionanogenomics.com/ Assembly bionano bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bionano https://github.com/bgruening/galaxytools/tree/master/tools/bionano 3.7.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 112 531 False +biotradis bacteria_tradis, tradis_essentiality, tradis_gene_insert_sites Bio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data. biotradis biotradis biotradis The Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format. Sequence analysis Mobile genetic elements, Workflows Up-to-date https://www.sanger.ac.uk/science/tools/bio-tradis Genome annotation biotradis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradis https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis 1.4.5 biotradis 1.4.5 Sequence analysis Mobile genetic elements, Workflows 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +biscot biscot Bionano scaffolding correction tool Up-to-date https://github.com/institut-de-genomique/biscot Assembly biscot iuc https://github.com/bgruening/iuc/tree/master/tools/biscot https://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot 2.3.3 biscot 2.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 3 False +blast_to_scaffold blast2scaffold Generate DNA scaffold from blastn or tblastx alignments of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blast_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold 1.1.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +blastparser_and_hits BlastParser_and_hits Parse blast outputs and compile hits To update http://artbio.fr Assembly, RNA blastparser_and_hits artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hits https://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits 2.7.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +blastx_to_scaffold blastx2scaffold Generate DNA scaffold from blastx alignment of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blastx_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold 1.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +blobtoolkit blobtoolkit Identification and isolation non-target data in draft and publicly available genome assemblies. To update https://blobtoolkit.genomehubs.org/ Sequence Analysis, Assembly blobtoolkit bgruening https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit 4.0.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 685 False +braker braker BRAKER is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes . To update https://github.com/Gaius-Augustus/BRAKER Genome annotation braker genouest https://github.com/genouest/galaxy-tools/tree/master/tools/braker https://github.com/genouest/galaxy-tools/tree/master/tools/braker 2.1.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 109 False +braker3 braker3 BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes . braker3 braker3 BRAKER3 BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes Genome annotation, Gene prediction RNA-Seq, Genomics, Structure prediction, Sequence analysis To update https://github.com/Gaius-Augustus/BRAKER Genome annotation braker3 genouest https://github.com/genouest/galaxy-tools/tree/master/tools/braker https://github.com/genouest/galaxy-tools/tree/master/tools/braker3 3.0.8 Genome annotation, Gene prediction RNA-Seq, Genomics, Structure prediction, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 567 False +cap3 cap3 cap3 wrapper To update http://artbio.fr Assembly cap3 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 2.0.1 cap3 10.2011 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 101 7766 False +champ_blocs cb_dissim, cb_ivr, cb_div Compute indicators for turnover boulders fields To update Ecology ecology https://github.com/Marie59/champ_blocs https://github.com/galaxyecology/tools-ecology/tree/master/tools/champ_blocs 0.0.0 r-base 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 19 174 False +chipseeker chipseeker A tool for ChIP peak annotation and visualization To update https://bioconductor.org/packages/release/bioc/html/ChIPseeker.html ChIP-seq, Genome annotation chipseeker rnateam https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker 1.32.0 bioconductor-chipseeker 1.38.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 418 15690 False +circexplorer2 circexplorer2 Comprehensive and integrative circular RNA analysis toolset. circexplorer2 circexplorer2 CIRCexplorer2 Genome-wide annotation of circRNAs and their alternative back-splicing/splicing. RNA splicing, Gene transcripts, Literature and language Up-to-date https://github.com/YangLab/CIRCexplorer2 RNA, Assembly circexplorer2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer2 2.3.8 circexplorer2 2.3.8 RNA splicing, Gene transcripts, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 16 269 False +clc_assembly_cell clc_assembler, clc_mapper Galaxy wrapper for the CLC Assembly Cell suite from CLCBio To update https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell Assembly, Next Gen Mappers, SAM clc_assembly_cell peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell 0.0.7 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +combine_assembly_stats combine_stats Combine multiple Assemblystats datasets into a single tabular report To update https://github.com/phac-nml/galaxy_tools Assembly combine_assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats 1.0 perl-getopt-long 2.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +count_roi_variants count_roi_variants Count sequence variants in region of interest in BAM file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants Assembly, SAM count_roi_variants peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants 0.0.6 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +coverage_stats coverage_stats BAM coverage statistics using samtools idxstats and depth To update https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats Assembly, SAM coverage_stats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats 0.1.0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +data_exploration tool_anonymization, ecology_homogeneity_normality, ecology_beta_diversity, ecology_link_between_var, ecology_presence_abs_abund, ecology_stat_presence_abs Explore data through multiple statistical tools To update Ecology ecology https://github.com/Marie59/Data_explo_tools https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_exploration 0.0.0 r-tangles 0 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 146 658 False +deepsig deepsig Predictor of signal peptides in proteins based on deep learning Up-to-date https://github.com/BolognaBiocomp/deepsig Genome annotation deepsig iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deepsig https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepsig 1.2.5 deepsig 1.2.5 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 False +disco disco DISCO is a overlap-layout-consensus (OLC) metagenome assembler disco disco DISCO DISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer. Protein sequence analysis Structure determination To update http://disco.omicsbio.org/ Metagenomics, Assembly disco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/disco disco 1.2 Protein sequence analysis Structure determination 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 369 False +dose_responses dr_curve A tool for analyzing and visualizing the relationship between various doses and their corresponding biological responses Up-to-date https://github.com/bernt-matthias/mb-galaxy-tools Ecology dose_response_analysis_tool ufz https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/dose_responses 3.0_1 r-drc 3.0_1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ear make_ear A tool to compile assembly reports and stastics from assembly pipeline To update https://github.com/ERGA-consortium/EARs/tree/main Sequence Analysis, Assembly erga_ear bgruening https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 24.08.26 reportlab 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastk fastk_fastk FastK: A K-mer counter (for HQ assembly data sets) To update https://github.com/thegenemyers/FASTK Assembly fastk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk 1.0.0 fastk 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fermikit fermi2, fermikit_variants FermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data. Up-to-date https://github.com/lh3/fermikit Assembly, Variant Analysis fermikit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikit https://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikit r193 fermi2 r193 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +filter_spades_repeats filter_spades_repeat Remove short and repeat contigs/scaffolds To update https://github.com/phac-nml/galaxy_tools/ Assembly filter_spades_repeats nml https://github.com/phac-nml/galaxy_tools/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats 1.0.1 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +flash flash Fast Length Adjustment of SHort reads flash flash FLASH Identifies paired-end reads which overlap in the middle, converting them to single long reads Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly Up-to-date https://ccb.jhu.edu/software/FLASH/ Assembly, Fastq Manipulation flash iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flash https://github.com/galaxyproject/tools-iuc/tree/main/tools/flash 1.2.11 flash 1.2.11 Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 74 13759 False +flye flye Assembly of long and error-prone reads. Flye Flye Flye Flye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs. Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing, Genomics To update https://github.com/fenderglass/Flye/ Assembly flye bgruening https://github.com/bgruening/galaxytools/tree/master/tools/flye https://github.com/bgruening/galaxytools/tree/master/tools/flye 2.9.4 flye 2.9.5 Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1499 20904 False +funannotate funannotate_annotate, funannotate_clean, funannotate_compare, funannotate_predict, funannotate_sort Funannotate is a genome prediction, annotation, and comparison software package. funannotate funannotate funannotate funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes). Genome annotation Genomics To update https://funannotate.readthedocs.io Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate 1.8.15 Genome annotation Genomics 3 5 5 5 3 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 900 5906 False +gdal gdal_gdal_merge, gdal_gdal_translate, gdal_gdaladdo, gdal_gdalbuildvrt, gdal_gdalinfo, gdal_gdalwarp, gdal_ogr2ogr, gdal_ogrinfo Geospatial Data Abstraction Library tools are all dedicated to manipulate raster and vector geospatial data formats. To update https://www.gdal.org Ecology gdal ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal 3.0.0 0 0 8 8 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 10 1475 False +getorganelle get_annotated_regions_from_gb, get_organelle_from_reads GetOrganelle - This toolkit assembles organelle genomes from genomic skimming data. getorganelle getorganelle GetOrganelle A fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data. De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms Up-to-date https://github.com/Kinggerm/GetOrganelle Assembly getorganelle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganelle https://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle 1.7.7.1 getorganelle 1.7.7.1 De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 18 495 False +goenrichment goenrichment, goslimmer Performs GO Enrichment analysis. goenrichment goenrichment GOEnrichment GOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência. Gene-set enrichment analysis Transcriptomics Up-to-date https://github.com/DanFaria/GOEnrichment Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment https://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment 2.0.1 goenrichment 2.0.1 Gene-set enrichment analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 408 5484 False +graphmap graphmap_align, graphmap_overlap Mapper for long, error-prone reads. graphmap graphmap graphmap Splice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing To update https://github.com/isovic/graphmap/ Assembly graphmap bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphmap https://github.com/bgruening/galaxytools/tree/master/tools/graphmap 0.5.2 graphmap 0.6.3 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 136 6651 False +hapcut2 hapcut2 Robust and accurate haplotype assembly for diverse sequencing technologies hapcut2 hapcut2 HapCUT2 "HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to ""just work"" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.md" Haplotype mapping, Variant classification Up-to-date https://github.com/vibansal/HapCUT2 Assembly hapcut2 galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut2 1.3.4 hapcut2 1.3.4 Haplotype mapping, Variant classification 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hapog hapog Hapo-G - Haplotype-Aware Polishing of Genomes hapog hapog Hapo-G Hapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes. Genome assembly, Optimisation and refinement Sequence assembly, Genomics Up-to-date https://github.com/institut-de-genomique/HAPO-G Assembly hapog iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog 1.3.8 hapog 1.3.8 Genome assembly, Optimisation and refinement Sequence assembly, Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 295 False +helixer helixer Gene calling with Deep Neural Networks helixer helixer Helixer Deep Learning to predict gene annotations Gene prediction, Genome annotation Sequence analysis, Gene transcripts To update https://github.com/weberlab-hhu/Helixer Genome annotation helixer genouest https://github.com/genouest/galaxy-tools/tree/master/tools/helixer https://github.com/genouest/galaxy-tools/tree/master/tools/helixer 0.3.3 Gene prediction, Genome annotation Sequence analysis, Gene transcripts 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 93 False +hifiasm hifiasm A fast haplotype-resolved de novo assembler Up-to-date https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm 0.19.9 hifiasm 0.19.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 297 1410 False +hirondelle_crim_ogc_api_processes hirondelle_crim This tool is a wrapper for OGC API Processes coming from https://osf.io/gfbws/. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper https://github.com/galaxyecology/tools-ecology/tree/master/tools/hirondelle_crim_ogc_api_processes 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hisat hisat HISAT is a fast and sensitive spliced alignment program. To update http://ccb.jhu.edu/software/hisat/index.shtml Assembly hisat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/hisat https://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat 1.0.3 hisat 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 228 False +hisat2 hisat2 HISAT2 is a fast and sensitive spliced alignment program. hisat2 hisat2 HISAT2 Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome). Sequence alignment RNA-seq Up-to-date http://ccb.jhu.edu/software/hisat2/ Assembly hisat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat2 2.2.1 hisat2 2.2.1 Sequence alignment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4183 299104 False +hypo hypo Super Fast & Accurate Polisher for Long Read Genome Assemblies HyPo HyPo HyPo HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes. Optimisation and refinement, Genome assembly Sequence assembly, Genomics Up-to-date https://github.com/kensung-lab/hypo Assembly hypo iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo https://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo 1.0.3 hypo 1.0.3 Optimisation and refinement, Genome assembly Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 39 354 False +icescreen icescreen ICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes. icescreen icescreen ICEscreen A tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures. Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation To update https://icescreen.migale.inrae.fr/ Genome annotation icescreen iuc https://forgemia.inra.fr/ices_imes_analysis/icescreen https://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen 1.3.1 icescreen 1.3.2 Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +idba_ud idba_hybrid, idba_tran, idba_ud Wrappers for the idba assembler variants. idba idba IDBA A short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system. Sequence assembly Sequence assembly To update https://i.cs.hku.hk/~alse/hkubrg/projects/index.html Assembly idba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud https://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_ud idba 1.1.3 Sequence assembly Sequence assembly 3 0 3 3 3 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 69 1127 False +instagraal instagraal Large genome reassembly based on Hi-C data instagraal instagraal instaGRAAL Chromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13) Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites To update https://github.com/koszullab/instaGRAAL Assembly instagraal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/instagraal https://github.com/bgruening/galaxytools/tree/master/tools/instagraal 0.1.6 Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 139 False +interpolation interpolation_run_idw_interpolation Run IDW interpolation based on a .csv and .geojson file To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation 1.0 r-getopt 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +jellyfish jellyfish Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA Jellyfish Jellyfish Jellyfish A command-line algorithm for counting k-mers in DNA sequence. k-mer counting Sequence analysis, Genomics To update https://github.com/gmarcais/Jellyfish Assembly jellyfish iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish https://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfish kmer-jellyfish 2.3.1 k-mer counting Sequence analysis, Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 91 1138 False +khmer khmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_median In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more khmer khmer khmer khmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data. Standardisation and normalisation, De-novo assembly Sequence assembly Up-to-date https://khmer.readthedocs.org/ Assembly, Next Gen Mappers khmer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer 3.0.0a3 khmer 3.0.0a3 Standardisation and normalisation, De-novo assembly Sequence assembly 8 8 8 0 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 8 8 0 63 2022 False +links links Scaffold genome assemblies with long reads. links links LINKS LINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS. Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing Up-to-date https://github.com/bcgsc/LINKS Assembly links iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/links https://github.com/galaxyproject/tools-iuc/tree/main/tools/links 2.0.1 links 2.0.1 Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 77 405 False +marine_omics sanntis_marine The Sanntis tool identify biosynthetic gene clusters (BGCs) in genomic & metagenomic data Up-to-date https://github.com/Finn-Lab/SanntiS Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics 0.9.3.5 sanntis 0.9.3.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +mean-per-zone mean_per_zone Creates a png image showing statistic over areas as defined in the vector file To update https://github.com/NordicESMhub/galaxy-tools/blob/master/tools/mean-per-zone/ Visualization, GIS, Climate Analysis mean_per_zone climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone 0.2.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 24 False +medenv iabiodiv_smartbiodiv_med_environ Retrieve environmental data from etopo, cmems and woa To update https://github.com/jeremyfix/medenv Ecology, Data Source ecology https://github.com/jeremyfix/medenv https://github.com/galaxyecology/tools-ecology/tree/master/tools/medenv 0.1.0 pandas 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +megahit megahit An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph. megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly Up-to-date https://github.com/voutcn/megahit Sequence Analysis, Assembly, Metagenomics megahit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit 1.2.9 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 548 9530 False +megahit_contig2fastg megahit_contig2fastg A subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg) megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly To update https://github.com/voutcn/megahit/blob/master/tools/toolkit.cpp Sequence Analysis, Assembly, Metagenomics megahit_contig2fastg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg 1.1.3 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 54 475 False +merqury merqury, merquryplot Merqury is a tool for evaluating genomes assemblies based of k-mer operations. merqury merqury Merqury Reference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose. Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology Up-to-date https://github.com/marbl/merqury Assembly merqury iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury https://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury 1.3 merqury 1.3 Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 244 2483 False +meryl meryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_mode Meryl a k-mer counter. meryl meryl Meryl Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu. k-mer counting Whole genome sequencing, Genomics, Sequence analysis, Sequencing Up-to-date https://github.com/marbl/meryl Assembly meryl iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl 1.3 merqury 1.3 k-mer counting Whole genome sequencing, Genomics, Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +metaeuk metaeuk_easy_predict MetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand. MetaEuk MetaEuk MetaEuk MetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomics Homology-based gene prediction Metagenomics, Gene and protein families To update https://github.com/soedinglab/metaeuk Sequence Analysis, Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeuk https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk 5.34c21f2 metaeuk 6.a5d39d9 Homology-based gene prediction Metagenomics, Gene and protein families 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 184 False +minia minia Short-read assembler based on a de Bruijn graph minia minia Minia Short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day. Genome assembly Sequence assembly Up-to-date https://gatb.inria.fr/software/minia/ Assembly minia iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia https://github.com/galaxyproject/tools-iuc/tree/main/tools/minia 3.2.6 minia 3.2.6 Genome assembly Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 109 2206 False +miniasm miniasm Miniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step) miniasm miniasm miniasm Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. De-novo assembly Genomics, Sequence assembly To update https://github.com/lh3/miniasm Assembly miniasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm 0.3_r179 miniasm 0.3 De-novo assembly Genomics, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 178 11938 False +mitobim mitobim assemble mitochondrial genomes Up-to-date https://github.com/chrishah/MITObim Assembly mitobim iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobim https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim 1.9.1 mitobim 1.9.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 66 881 False +mitohifi mitohifi Assembly mitogenomes from Pacbio HiFi read. To update https://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2 Assembly mitohifi bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi 3 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 56 613 False +ncbi_egapx ncbi_egapx Eukaryotic Genome Annotation Pipeline - External (EGAPx) To update https://github.com/ncbi/egapx Genome annotation ncbi_egapx richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx 0.2-alpha 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +necat necat Error correction and de-novo assembly for ONT Nanopore reads necat necat NECAT NECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads. De-novo assembly Sequence assembly Up-to-date https://github.com/xiaochuanle/NECAT Assembly necat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/necat https://github.com/galaxyproject/tools-iuc/tree/main/tools/necat 0.0.1_update20200803 necat 0.0.1_update20200803 De-novo assembly Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 95 667 False +nextdenovo nextdenovo String graph-based de novo assembler for long reads nextdenovo nextdenovo NextDenovo "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a ""correct-then-assemble"" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages." De-novo assembly, Genome assembly Sequencing, Sequence assembly To update https://github.com/Nextomics/NextDenovo Assembly nextdenovo bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo 2.5.0 nextdenovo 2.5.2 De-novo assembly, Genome assembly Sequencing, Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 268 False +novoplasty novoplasty NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. To update https://github.com/ndierckx/NOVOPlasty Assembly novoplasty iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplasty https://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty 4.3.1 novoplasty 4.3.5 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 162 6384 False +oases oasesoptimiserv Short read assembler To update http://artbio.fr Assembly, RNA oases artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/oases https://github.com/ARTbio/tools-artbio/tree/main/tools/oases 1.4.0 oases 0.2.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +obisindicators obisindicators, obis_data Compute biodiveristy indicators for marine data from obis To update https://github.com/Marie59/obisindicators Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators 0.0.2 r-base 1 0 2 1 1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 45 False +ocean argo_getdata, divand_full_analysis Access, process, visualise oceanographic data for the Earth System To update https://github.com/Marie59/FE-ft-ESG/tree/main/argo Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean 0.1.15 julia 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 False +ogcProcess_otb_bandmath otb_band_math Outputs a monoband image which is the result of a mathematical operation on several multi-band images. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/OtbBandMath https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_bandmath 1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ogcProcess_otb_meanShiftSmoothing otb_mean_shift_smoothing This application smooths an image using the MeanShift algorithm. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_meanShiftSmoothing 1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pharokka pharokka rapid standardised annotation tool for bacteriophage genomes and metagenomes pharokka pharokka Pharokka Pharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes. Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA To update https://github.com/gbouras13/pharokka Genome annotation pharokka iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka 1.3.2 " + pharokka + " Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 74 2565 False +plasmidspades plasmidspades Genome assembler for assemblying plasmid To update Assembly plasmidspades nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades 1.1 spades 4.0.0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +prodigal prodigal A protein-coding gene prediction software tool for bacterial and archaeal genomes prodigal prodigal Prodigal Fast, reliable protein-coding gene prediction for prokaryotic genomes. Genome annotation Genomics, Sequence analysis Up-to-date https://github.com/hyattpd/Prodigal Genome annotation prodigal iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal 2.6.3 prodigal 2.6.3 Genome annotation Genomics, Sequence analysis 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +promer promer4_substitutions Aligns two sets of contigs and reports amino acid substitutions between them To update https://github.com/phac-nml/promer Assembly promer nml https://github.com/phac-nml/promer https://github.com/phac-nml/galaxy_tools/tree/master/tools/promer 1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +purge_dups purge_dups Purge haplotigs and overlaps in an assembly based on read depth purge_dups purge_dups purge_dups Identifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuences Genome assembly, Read binning, Scaffolding Sequence assembly Up-to-date https://github.com/dfguan/purge_dups Assembly purge_dups iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dups https://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups 1.2.6 purge_dups 1.2.6 Genome assembly, Read binning, Scaffolding Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 167 16800 False +quast quast Quast (Quality ASsessment Tool) evaluates genome assemblies. quast quast QUAST QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports. Visualisation, Sequence assembly validation Sequence assembly Up-to-date http://quast.bioinf.spbau.ru/ Assembly quast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast https://github.com/galaxyproject/tools-iuc/tree/main/tools/quast 5.2.0 quast 5.2.0 Visualisation, Sequence assembly validation Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 3567 51567 False +quickmerge quickmerge Merge long-read and hybrid assemblies to increase contiguity quickmerge quickmerge quickmerge Quickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads. Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype Up-to-date https://github.com/mahulchak/quickmerge Assembly quickmerge galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge https://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge 0.3 quickmerge 0.3 Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 False +ragtag ragtag Reference-guided scaffolding of draft genomes tool. ragtag ragtag ragtag RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Genome assembly Sequence assembly Up-to-date https://github.com/malonge/RagTag Assembly ragtag iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtag https://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag 2.1.0 ragtag 2.1.0 Genome assembly Sequence assembly 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 237 2833 False +raven raven Raven is a de novo genome assembler for long uncorrected reads. Up-to-date https://github.com/lbcb-sci/raven Assembly iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven https://github.com/galaxyproject/tools-iuc/tree/main/tools/raven 1.8.3 raven-assembler 1.8.3 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 262 6902 False +regionalgam regionalgam_ab_index, regionalgam_autocor_acf, regionalgam_flight_curve, regionalgam_glmmpql, regionalgam_gls_adjusted, regionalgam_gls, regionalgam_plot_trend To update https://github.com/RetoSchmucki/regionalGAM Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam 1.5 r-mgcv 0 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 22 526 False +repeatexplorer2 repeatexplorer_clustering Tool for annotation of repeats from unassembled shotgun reads. To update https://github.com/repeatexplorer/repex_tarean Genome annotation repeatexplorer2 gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 2.3.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 False +repeatmodeler repeatmodeler RepeatModeler - Model repetitive DNA repeatmodeler repeatmodeler RepeatModeler De-novo repeat family identification and modeling package. At the heart of RepeatModeler are two de-novo repeat finding programs ( RECON and RepeatScout ) which employ complementary computational methods for identifying repeat element boundaries and family relationships from sequence data. RepeatModeler assists in automating the runs of RECON and RepeatScout given a genomic database and uses the output to build, refine and classify consensus models of putative interspersed repeats. Repeat sequence detection Sequence composition, complexity and repeats, Sequence composition, complexity and repeats To update https://www.repeatmasker.org/RepeatModeler/ Genome annotation repeatmodeler csbl https://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmodeler https://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmodeler 2.0.5 Repeat sequence detection Sequence composition, complexity and repeats, Sequence composition, complexity and repeats 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 217 1177 False +retrieve_bold retrieve_bold Search a list of sequences in BOLD (Barcode of Life Data System) from specified taxa list and markers To update https://anaconda.org/conda-forge/r-bold Ecology retrieve_bold ecology https://github.com/wpearman1996/MARES_database_pipeline/tree/master https://github.com/galaxyecology/tools-ecology/tree/master/tools/retrieve_bold 1.3.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +rnaquast rna_quast rnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies. rnaQUAST rnaQUAST rnaQUAST Quality assessment tool for de novo transcriptome assemblies. De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics, RNA-seq Up-to-date https://github.com/ablab/rnaquast Assembly, RNA rnaquast iuc https://git.ufz.de/lehmanju/rnaquast https://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast 2.3.0 rnaquast 2.3.0 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 109 1110 False +salsa2 salsa A tool to scaffold long read assemblies with Hi-C SALSA SALSA SALSA > VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branch Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping Up-to-date https://github.com/marbl/SALSA Assembly salsa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa2 2.3 salsa2 2.3 Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 454 False +sample_seqs sample_seqs Sub-sample sequences files (e.g. to reduce coverage) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs Assembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysis sample_seqs peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs 0.2.6 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 149 3765 False +samtools_depad samtools_depad Re-align a SAM/BAM file with a padded reference (using samtools depad) To update http://www.htslib.org/ Assembly, SAM, Sequence Analysis samtools_depad peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad 0.0.5 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +samtools_depth samtools_depth Coverage depth via samtools To update http://www.htslib.org/ Assembly, Sequence Analysis, SAM samtools_depth peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth 0.0.3 samtools 1.20 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 296 4948 False +samtools_idxstats samtools_idxstats BAM mapping statistics (using samtools idxstats) To update http://www.htslib.org/ Assembly, Next Gen Mappers, SAM samtools_idxstats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats 0.0.6 samtools 1.20 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1450 48426 False +sdmpredictors sdmpredictors_list_layers Terrestrial and marine predictors for species distribution modelling. To update https://cran.r-project.org/web/packages/sdmpredictors/index.html Ecology sdmpredictors ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors 0.2.15 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +seq_filter_by_mapping seq_filter_by_mapping Filter sequencing reads using SAM/BAM mapping files To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping Assembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysis seq_filter_by_mapping peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping 0.0.8 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 82 3784 False +seq_primer_clip seq_primer_clip Trim off 5' or 3' primers To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip Assembly, Fasta Manipulation, Text Manipulation seq_primer_clip peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip 0.0.18 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +shasta shasta Fast de novo assembly of long read sequencing data To update https://github.com/chanzuckerberg/shasta Assembly, Nanopore shasta iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta https://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta 0.6.0 shasta 0.12.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 154 763 False +shovill shovill Faster de novo assembly pipeline based around Spades shovill shovill shovill Shovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too. Genome assembly Genomics, Microbiology, Sequence assembly Up-to-date https://github.com/tseemann/shovill Assembly shovill iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill https://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill 1.1.0 shovill 1.1.0 Genome assembly Genomics, Microbiology, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1008 41600 False +smudgeplot smudgeplot Inference of ploidy and heterozygosity structure using whole genome sequencing smudgeplots smudgeplots Smudgeplots Reference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics Up-to-date https://github.com/KamilSJaron/smudgeplot Assembly smudgeplot galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot 0.2.5 smudgeplot 0.2.5 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 22 203 False +spades spades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spades SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction. spades coronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spades SPAdes St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads. Genome assembly Sequence assembly To update https://github.com/ablab/spades Assembly, RNA, Metagenomics spades iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades https://github.com/galaxyproject/tools-iuc/tree/main/tools/spades 3.15.5 spades 4.0.0 Genome assembly Sequence assembly 9 9 9 9 9 9 9 9 0 0 0 0 1 0 0 0 0 0 0 0 1 3 8 0 0 2 0 0 0 3 0 0 0 0 0 0 0 9 3 0 3547 72953 False +spaln list_spaln_tables, spaln Spaln (space-efficient spliced alignment) maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence. To update http://www.genome.ist.i.kyoto-u.ac.jp/~aln_user/spaln/ Sequence Analysis, Genome annotation spaln iuc https://github.com/ogotoh/spaln https://github.com/galaxyproject/tools-iuc/tree/main/tools/spaln 2.4.9 python 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 34 446 False +spocc spocc_occ Get species occurences data To update https://cran.r-project.org/web/packages/spocc/index.html Ecology spocc_occ ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc 1.2.2 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 56 769 False +srs_tools srs_diversity_maps, srs_global_indices, srs_process_data, srs_spectral_indices, srs_pca, srs_preprocess_s2, srs_metadata Compute biodiversity indicators for remote sensing data from Sentinel 2 To update Ecology ecology https://github.com/Marie59/Sentinel_2A/srs_tools https://github.com/galaxyecology/tools-ecology/tree/master/tools/srs_tools 0.0.1 r-base 4 0 7 7 4 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 21 225 False +stoc stoceps_filteringsp, stoceps_glm, stoceps_glm_group, stoceps_maketablecarrer, stoceps_trend_indic Tools to analyse STOC data. To update Ecology stoceps ecology https://github.com/Alanamosse/Galaxy-E/tree/stoctool/tools/stoc https://github.com/galaxyecology/tools-ecology/tree/master/tools/stoc 0.0.2 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 10 325 False +taxonomy_filter_refseq taxonomy_filter_refseq Filter RefSeq by taxonomy To update https://github.com/pvanheus/ncbitaxonomy Sequence Analysis, Genome annotation taxonomy_filter_refseq iuc https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_filter_refseq 0.3.0 rust-ncbitaxonomy 1.0.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +taxonomy_krona_chart taxonomy_krona_chart Krona pie chart from taxonomic profile krona krona Krona Krona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome). Visualisation Metagenomics To update http://sourceforge.net/projects/krona/ Assembly taxonomy_krona_chart crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart 2.7.1+galaxy0 krona 2.8.1 Visualisation Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1801 27426 False +telescope telescope_assign Single locus resolution of Transposable ELEment expression. Telescope-expression Telescope-expression Telescope Telescope is a tool for the characterization of the retrotranscriptome by accurate estimation of transposable element expression and the quantification of transposable element expression using RNA-seq.It can be used for Statistical Performance of TE Quantification Methods.All scripts needed to examine the sensitivity and biases of computational approaches for quantifying TE expression: 1) unique counts, 2) best counts, 3) RepEnrich, 4) TEtranscripts, 5) RSEM, 6) SalmonTE, and 7) Telescope. Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mapping RNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly Up-to-date https://github.com/mlbendall/telescope/ Genome annotation telescope_assign iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/telescope https://github.com/galaxyproject/tools-iuc/tree/main/tools/telescope 1.0.3 telescope 1.0.3 Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mapping RNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +tgsgapcloser tgsgapcloser TGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly. TGS-GapCloser TGS-GapCloser TGS-GapCloser TGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads. Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping To update https://github.com/BGI-Qingdao/TGS-GapCloser Assembly tgsgapcloser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser 1.0.3 tgsgapcloser 1.2.1 Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 460 False +transit gff_to_prot, transit_gumbel, transit_hmm, transit_resampling, transit_tn5gaps TRANSIT transit transit TRANSIT A tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions. Transposon prediction DNA, Sequencing, Mobile genetic elements To update https://github.com/mad-lab/transit/ Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit 3.0.2 transit 3.2.3 Transposon prediction DNA, Sequencing, Mobile genetic elements 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 84 907 False +trycycler trycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsample Trycycler toolkit wrappers Up-to-date https://github.com/rrwick/Trycycler Assembly trycycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler 0.5.5 trycycler 0.5.5 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 147 8942 False +tsebra tsebra This tool has been developed to combine BRAKER predictions. tsebra tsebra TSEBRA TSEBRA is a combiner tool that selects transcripts from gene predictions based on the support by extrisic evidence in form of introns and start/stop codons. It was developed to combine BRAKER1 and BRAKER2 predicitons to increase their accuracies. Homology-based gene prediction, Alternative splicing prediction Gene expression, RNA-Seq, Gene transcripts, Model organisms To update https://github.com/Gaius-Augustus/TSEBRA Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tsebra https://github.com/galaxyproject/tools-iuc/tree/main/tools/tsebra 1.1.2.4 tsebra 1.1.2.5 Homology-based gene prediction, Alternative splicing prediction Gene expression, RNA-Seq, Gene transcripts, Model organisms 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 False +unicycler unicycler Unicycler is a hybrid assembly pipeline for bacterial genomes. unicycler unicycler Unicycler A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads. Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly Up-to-date https://github.com/rrwick/Unicycler Assembly unicycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler 0.5.1 unicycler 0.5.1 Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1558 65732 False +velvet velvetg, velveth de novo genomic assembler specially designed for short read sequencing technologies velvet velvet Velvet A de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD. Formatting, De-novo assembly Sequence assembly To update https://www.ebi.ac.uk/~zerbino/velvet/ Assembly velvet devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet velvet 1.2.10 Formatting, De-novo assembly Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2083 25420 False +velvet_optimiser velvetoptimiser Automatically optimize Velvet assemblies velvetoptimiser velvetoptimiser VelvetOptimiser This tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly. Optimisation and refinement, Sequence assembly Genomics, Sequence assembly To update Assembly velvetoptimiser simon-gladman https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser 2.2.6+galaxy2 velvet 1.2.10 Optimisation and refinement, Sequence assembly Genomics, Sequence assembly 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 4741 False +verkko verkko Telomere-to-telomere assembly pipeline To update https://github.com/marbl/verkko Assembly verkko iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/verkko https://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko 1.3.1 verkko 2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 22 False +vigiechiro vigiechiro_bilanenrichipf, vigiechiro_bilanenrichirp, vigiechiro_idcorrect_2ndlayer, vigiechiro_idvalid Tools created by the vigiechiro team to analyses and identify chiro sounds files. To update https://www.vigienature-ecole.fr/les-observatoires/le-protocole-vigie-chiro Ecology vigiechiro ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro 0.1.1 0 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 351 12203 False +wtdbg wtdbg WTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly. wtdbg2 wtdbg2 wtdbg2 Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy. Genome assembly, De-novo assembly Sequence assembly, Sequencing Up-to-date https://github.com/ruanjue/wtdbg2 Assembly wtdbg bgruening https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg 2.5 wtdbg 2.5 Genome assembly, De-novo assembly Sequence assembly, Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 116 1660 False +xarray timeseries_extraction, xarray_coords_info, xarray_mapplot, xarray_metadata_info, xarray_netcdf2netcdf, xarray_select xarray (formerly xray) is an open source project and Python package that makes working withlabelled multi-dimensional arrays simple, efficient, and fun!xarray integrates with Dask to support parallel computations and streaming computation on datasetsthat don’t fit into memory. To update http://xarray.pydata.org Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray/ https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray 2022.3.0 xarray 5 2 6 5 5 2 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 0 175 5876 False +yahs yahs Yet Another Hi-C scaffolding tool Up-to-date https://github.com/c-zhou/yahs Assembly yahs iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs https://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs 1.2a.2 yahs 1.2a.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 64 344 False +zoo_project_ogc_api_processes zoo_project_ogc_api_processes This tool is a wrapper for OGC API Processes (OTB) coming from the Zoo Project (https://zoo-project.github.io/docs/intro.html) and was created using the OGC-API-Process2Galaxy tool (https://github.com/AquaINFRA/OGC-API-Process2Galaxy). Check the README in the repository for more information. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper https://github.com/galaxyecology/tools-ecology/tree/master/tools/zoo_project_ogc_api_processes 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False diff --git a/communities/biodiversity/resources/tools_filtered_by_ts_categories.tsv b/communities/biodiversity/resources/tools_filtered_by_ts_categories.tsv new file mode 100644 index 00000000..44c1fbd1 --- /dev/null +++ b/communities/biodiversity/resources/tools_filtered_by_ts_categories.tsv @@ -0,0 +1,131 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +EMLassemblyline eal_table_template, eal_templates, eml2eal, entities_template, geo_cov_template, makeeml, raster_template, taxo_cov_template, vector_template Tools using EML Assembly Line R package to generate EML metadata from template metadata files and vice versa To update https://github.com/EDIorg/EMLassemblyline Ecology emlassemblyline ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline 0.1.1+galaxy0 r-emlassemblyline 0 0 9 9 0 0 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 102 False +Ecoregionalization_workflow ecoregion_brt_analysis, ecoregion_GeoNearestNeighbor, ecoregion_cluster_estimate, ecoregion_clara_cluster, ecoregion_eco_map, ecoregion_taxa_seeker Tools to compute ecoregionalization with BRT model predictions and clustering. To update https://github.com/PaulineSGN/Workflow_Galaxy Ecology ecoregionalization ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow 0.1.0+galaxy0 r-base 0 0 6 5 0 0 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 82 False +Geom_mean_workflow Map_shp, Mean_geom, bar_plot Tools to compute The evolution of the total volume of very large trees, standing dead wood and dead wood on the ground on an area and the rate of devolution of the volume of wood favorable to biodiversity by large ecological regions (France). To update https://github.com/PaulineSGN/Galaxy_tool_moyenne_geom Ecology Geometric means (Dead wood) ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow 0.1.0+galaxy0 r-base 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +PAMPA pampa_communitymetrics, pampa_presabs, pampa_glmcomm, pampa_glmsp, pampa_plotglm Tools to compute and analyse biodiversity metrics To update Ecology pampa ecology https://github.com/ColineRoyaux/PAMPA-Galaxy https://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA 0.0.2 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 0 73 1004 False +TrimNs trimns TrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipeline To update https://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNs Assembly trimns iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trimN https://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs 0.1.0 trimns_vgp 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 42 False +abacas abacas Order and Orientate Contigs To update https://github.com/phac-nml/abacas Assembly abacas nml https://github.com/phac-nml/abacas https://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas 1.1 mummer 3.23 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +abyss abyss-pe Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler abyss abyss ABySS De novo genome sequence assembler using short reads. Genome assembly, De-novo assembly, Scaffolding Sequence assembly To update http://www.bcgsc.ca/platform/bioinfo/software/abyss Assembly abyss iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss https://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss 2.3.7 abyss 2.3.8 Genome assembly, De-novo assembly, Scaffolding Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 391 4278 False +annotatemyids annotatemyids annotateMyIDs: get annotation for a set of IDs using the Bioconductor annotation packages annotatemyids annotatemyids annotatemyids This tool can get annotation for a generic set of IDs, using the Bioconductor annotation data packages. Supported organisms are human, mouse, rat, fruit fly and zebrafish. The org.db packages that are used here are primarily based on mapping using Entrez Gene identifiers. More information on the annotation packages can be found at the Bioconductor website, for example, information on the human annotation package (org.Hs.eg.db) can be found here. Annotation Up-to-date https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids Genome annotation annotatemyids iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids https://github.com/galaxyproject/tools-iuc/tree/main/tools/annotatemyids 3.18.0 bioconductor-org.hs.eg.db 3.18.0 Annotation 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1175 25975 False +aquainfra_importer aquainfra_importer A data source tool for downloading datasets via the AquaINFRA Interaction Platform. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/AquaINFRA/tools-ecology/tree/aquainfra_importer https://github.com/galaxyecology/tools-ecology/tree/master/tools/aquainfra_importer 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +argnorm argnorm argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database argnorm argnorm argNorm argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database.argNorm also enhances antibiotic resistance gene annotations by providing drug categorization of the drugs that antibiotic resistance genes confer resistance to. Gene functional annotation Up-to-date https://github.com/BigDataBiology/argNorm Genome annotation argnorm iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm 0.6.0 argnorm 0.6.0 Gene functional annotation 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. Up-to-date https://github.com/rjchallis/assembly-stats Assembly assembly_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-stats https://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats 17.02 rjchallis-assembly-stats 17.02 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +assemblystats assemblystats Summarise an assembly (e.g. N50 metrics) To update https://github.com/phac-nml/galaxy_tools Assembly assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bam2mappingstats bam2mappingstats Generates mapping stats from a bam file. To update https://github.com/phac-nml/galaxy_tools Assembly bam2mappingstats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats 1.1.0 perl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +baseline_calculator tt_baseline Toxicity prediction using QSAR models To update https://github.com/bernt-matthias/mb-galaxy-tools Ecology, Text Manipulation baseline_toxicity_calculator mbernt https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/baseline_calculator 0.1.0+galaxy0 pandas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bionano bionano_scaffold Bionano Solve is a set of tools for analyzing Bionano data To update https://bionanogenomics.com/ Assembly bionano bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bionano https://github.com/bgruening/galaxytools/tree/master/tools/bionano 3.7.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 112 531 False +biotradis bacteria_tradis, tradis_essentiality, tradis_gene_insert_sites Bio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data. biotradis biotradis biotradis The Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format. Sequence analysis Mobile genetic elements, Workflows Up-to-date https://www.sanger.ac.uk/science/tools/bio-tradis Genome annotation biotradis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradis https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis 1.4.5 biotradis 1.4.5 Sequence analysis Mobile genetic elements, Workflows 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +biscot biscot Bionano scaffolding correction tool Up-to-date https://github.com/institut-de-genomique/biscot Assembly biscot iuc https://github.com/bgruening/iuc/tree/master/tools/biscot https://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot 2.3.3 biscot 2.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 3 False +blast_to_scaffold blast2scaffold Generate DNA scaffold from blastn or tblastx alignments of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blast_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold 1.1.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +blastparser_and_hits BlastParser_and_hits Parse blast outputs and compile hits To update http://artbio.fr Assembly, RNA blastparser_and_hits artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hits https://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits 2.7.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +blastx_to_scaffold blastx2scaffold Generate DNA scaffold from blastx alignment of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blastx_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold 1.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +blobtoolkit blobtoolkit Identification and isolation non-target data in draft and publicly available genome assemblies. To update https://blobtoolkit.genomehubs.org/ Sequence Analysis, Assembly blobtoolkit bgruening https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit 4.0.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 685 False +braker braker BRAKER is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes . To update https://github.com/Gaius-Augustus/BRAKER Genome annotation braker genouest https://github.com/genouest/galaxy-tools/tree/master/tools/braker https://github.com/genouest/galaxy-tools/tree/master/tools/braker 2.1.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 109 False +braker3 braker3 BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes . braker3 braker3 BRAKER3 BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes Genome annotation, Gene prediction RNA-Seq, Genomics, Structure prediction, Sequence analysis To update https://github.com/Gaius-Augustus/BRAKER Genome annotation braker3 genouest https://github.com/genouest/galaxy-tools/tree/master/tools/braker https://github.com/genouest/galaxy-tools/tree/master/tools/braker3 3.0.8 Genome annotation, Gene prediction RNA-Seq, Genomics, Structure prediction, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 567 False +cap3 cap3 cap3 wrapper To update http://artbio.fr Assembly cap3 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 2.0.1 cap3 10.2011 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 101 7766 False +champ_blocs cb_dissim, cb_ivr, cb_div Compute indicators for turnover boulders fields To update Ecology ecology https://github.com/Marie59/champ_blocs https://github.com/galaxyecology/tools-ecology/tree/master/tools/champ_blocs 0.0.0 r-base 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 19 174 False +chipseeker chipseeker A tool for ChIP peak annotation and visualization To update https://bioconductor.org/packages/release/bioc/html/ChIPseeker.html ChIP-seq, Genome annotation chipseeker rnateam https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker 1.32.0 bioconductor-chipseeker 1.38.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 418 15690 False +circexplorer2 circexplorer2 Comprehensive and integrative circular RNA analysis toolset. circexplorer2 circexplorer2 CIRCexplorer2 Genome-wide annotation of circRNAs and their alternative back-splicing/splicing. RNA splicing, Gene transcripts, Literature and language Up-to-date https://github.com/YangLab/CIRCexplorer2 RNA, Assembly circexplorer2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer2 2.3.8 circexplorer2 2.3.8 RNA splicing, Gene transcripts, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 16 269 False +clc_assembly_cell clc_assembler, clc_mapper Galaxy wrapper for the CLC Assembly Cell suite from CLCBio To update https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell Assembly, Next Gen Mappers, SAM clc_assembly_cell peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell 0.0.7 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +combine_assembly_stats combine_stats Combine multiple Assemblystats datasets into a single tabular report To update https://github.com/phac-nml/galaxy_tools Assembly combine_assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats 1.0 perl-getopt-long 2.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +count_roi_variants count_roi_variants Count sequence variants in region of interest in BAM file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants Assembly, SAM count_roi_variants peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants 0.0.6 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +coverage_stats coverage_stats BAM coverage statistics using samtools idxstats and depth To update https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats Assembly, SAM coverage_stats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats 0.1.0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +data_exploration tool_anonymization, ecology_homogeneity_normality, ecology_beta_diversity, ecology_link_between_var, ecology_presence_abs_abund, ecology_stat_presence_abs Explore data through multiple statistical tools To update Ecology ecology https://github.com/Marie59/Data_explo_tools https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_exploration 0.0.0 r-tangles 0 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 146 658 False +deepsig deepsig Predictor of signal peptides in proteins based on deep learning Up-to-date https://github.com/BolognaBiocomp/deepsig Genome annotation deepsig iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deepsig https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepsig 1.2.5 deepsig 1.2.5 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 False +disco disco DISCO is a overlap-layout-consensus (OLC) metagenome assembler disco disco DISCO DISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer. Protein sequence analysis Structure determination To update http://disco.omicsbio.org/ Metagenomics, Assembly disco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/disco disco 1.2 Protein sequence analysis Structure determination 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 369 False +dose_responses dr_curve A tool for analyzing and visualizing the relationship between various doses and their corresponding biological responses Up-to-date https://github.com/bernt-matthias/mb-galaxy-tools Ecology dose_response_analysis_tool ufz https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/dose_responses 3.0_1 r-drc 3.0_1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ear make_ear A tool to compile assembly reports and stastics from assembly pipeline To update https://github.com/ERGA-consortium/EARs/tree/main Sequence Analysis, Assembly erga_ear bgruening https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 24.08.26 reportlab 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastk fastk_fastk FastK: A K-mer counter (for HQ assembly data sets) To update https://github.com/thegenemyers/FASTK Assembly fastk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk 1.0.0 fastk 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fermikit fermi2, fermikit_variants FermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data. Up-to-date https://github.com/lh3/fermikit Assembly, Variant Analysis fermikit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikit https://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikit r193 fermi2 r193 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +filter_spades_repeats filter_spades_repeat Remove short and repeat contigs/scaffolds To update https://github.com/phac-nml/galaxy_tools/ Assembly filter_spades_repeats nml https://github.com/phac-nml/galaxy_tools/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats 1.0.1 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +flash flash Fast Length Adjustment of SHort reads flash flash FLASH Identifies paired-end reads which overlap in the middle, converting them to single long reads Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly Up-to-date https://ccb.jhu.edu/software/FLASH/ Assembly, Fastq Manipulation flash iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flash https://github.com/galaxyproject/tools-iuc/tree/main/tools/flash 1.2.11 flash 1.2.11 Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 74 13759 False +flye flye Assembly of long and error-prone reads. Flye Flye Flye Flye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs. Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing, Genomics To update https://github.com/fenderglass/Flye/ Assembly flye bgruening https://github.com/bgruening/galaxytools/tree/master/tools/flye https://github.com/bgruening/galaxytools/tree/master/tools/flye 2.9.4 flye 2.9.5 Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1499 20904 False +funannotate funannotate_annotate, funannotate_clean, funannotate_compare, funannotate_predict, funannotate_sort Funannotate is a genome prediction, annotation, and comparison software package. funannotate funannotate funannotate funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes). Genome annotation Genomics To update https://funannotate.readthedocs.io Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate 1.8.15 Genome annotation Genomics 3 5 5 5 3 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 900 5906 False +gdal gdal_gdal_merge, gdal_gdal_translate, gdal_gdaladdo, gdal_gdalbuildvrt, gdal_gdalinfo, gdal_gdalwarp, gdal_ogr2ogr, gdal_ogrinfo Geospatial Data Abstraction Library tools are all dedicated to manipulate raster and vector geospatial data formats. To update https://www.gdal.org Ecology gdal ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal 3.0.0 0 0 8 8 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 10 1475 False +getorganelle get_annotated_regions_from_gb, get_organelle_from_reads GetOrganelle - This toolkit assembles organelle genomes from genomic skimming data. getorganelle getorganelle GetOrganelle A fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data. De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms Up-to-date https://github.com/Kinggerm/GetOrganelle Assembly getorganelle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganelle https://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle 1.7.7.1 getorganelle 1.7.7.1 De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 18 495 False +goenrichment goenrichment, goslimmer Performs GO Enrichment analysis. goenrichment goenrichment GOEnrichment GOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência. Gene-set enrichment analysis Transcriptomics Up-to-date https://github.com/DanFaria/GOEnrichment Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment https://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment 2.0.1 goenrichment 2.0.1 Gene-set enrichment analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 408 5484 False +graphmap graphmap_align, graphmap_overlap Mapper for long, error-prone reads. graphmap graphmap graphmap Splice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing To update https://github.com/isovic/graphmap/ Assembly graphmap bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphmap https://github.com/bgruening/galaxytools/tree/master/tools/graphmap 0.5.2 graphmap 0.6.3 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 136 6651 False +hapcut2 hapcut2 Robust and accurate haplotype assembly for diverse sequencing technologies hapcut2 hapcut2 HapCUT2 "HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to ""just work"" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.md" Haplotype mapping, Variant classification Up-to-date https://github.com/vibansal/HapCUT2 Assembly hapcut2 galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut2 1.3.4 hapcut2 1.3.4 Haplotype mapping, Variant classification 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hapog hapog Hapo-G - Haplotype-Aware Polishing of Genomes hapog hapog Hapo-G Hapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes. Genome assembly, Optimisation and refinement Sequence assembly, Genomics Up-to-date https://github.com/institut-de-genomique/HAPO-G Assembly hapog iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog 1.3.8 hapog 1.3.8 Genome assembly, Optimisation and refinement Sequence assembly, Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 295 False +helixer helixer Gene calling with Deep Neural Networks helixer helixer Helixer Deep Learning to predict gene annotations Gene prediction, Genome annotation Sequence analysis, Gene transcripts To update https://github.com/weberlab-hhu/Helixer Genome annotation helixer genouest https://github.com/genouest/galaxy-tools/tree/master/tools/helixer https://github.com/genouest/galaxy-tools/tree/master/tools/helixer 0.3.3 Gene prediction, Genome annotation Sequence analysis, Gene transcripts 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 93 False +hifiasm hifiasm A fast haplotype-resolved de novo assembler Up-to-date https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm 0.19.9 hifiasm 0.19.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 297 1410 False +hirondelle_crim_ogc_api_processes hirondelle_crim This tool is a wrapper for OGC API Processes coming from https://osf.io/gfbws/. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper https://github.com/galaxyecology/tools-ecology/tree/master/tools/hirondelle_crim_ogc_api_processes 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hisat hisat HISAT is a fast and sensitive spliced alignment program. To update http://ccb.jhu.edu/software/hisat/index.shtml Assembly hisat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/hisat https://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat 1.0.3 hisat 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 228 False +hisat2 hisat2 HISAT2 is a fast and sensitive spliced alignment program. hisat2 hisat2 HISAT2 Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome). Sequence alignment RNA-seq Up-to-date http://ccb.jhu.edu/software/hisat2/ Assembly hisat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat2 2.2.1 hisat2 2.2.1 Sequence alignment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4183 299104 False +hypo hypo Super Fast & Accurate Polisher for Long Read Genome Assemblies HyPo HyPo HyPo HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes. Optimisation and refinement, Genome assembly Sequence assembly, Genomics Up-to-date https://github.com/kensung-lab/hypo Assembly hypo iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo https://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo 1.0.3 hypo 1.0.3 Optimisation and refinement, Genome assembly Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 39 354 False +icescreen icescreen ICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes. icescreen icescreen ICEscreen A tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures. Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation To update https://icescreen.migale.inrae.fr/ Genome annotation icescreen iuc https://forgemia.inra.fr/ices_imes_analysis/icescreen https://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen 1.3.1 icescreen 1.3.2 Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +idba_ud idba_hybrid, idba_tran, idba_ud Wrappers for the idba assembler variants. idba idba IDBA A short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system. Sequence assembly Sequence assembly To update https://i.cs.hku.hk/~alse/hkubrg/projects/index.html Assembly idba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud https://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_ud idba 1.1.3 Sequence assembly Sequence assembly 3 0 3 3 3 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 69 1127 False +instagraal instagraal Large genome reassembly based on Hi-C data instagraal instagraal instaGRAAL Chromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13) Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites To update https://github.com/koszullab/instaGRAAL Assembly instagraal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/instagraal https://github.com/bgruening/galaxytools/tree/master/tools/instagraal 0.1.6 Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 139 False +interpolation interpolation_run_idw_interpolation Run IDW interpolation based on a .csv and .geojson file To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation 1.0 r-getopt 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +jellyfish jellyfish Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA Jellyfish Jellyfish Jellyfish A command-line algorithm for counting k-mers in DNA sequence. k-mer counting Sequence analysis, Genomics To update https://github.com/gmarcais/Jellyfish Assembly jellyfish iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish https://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfish kmer-jellyfish 2.3.1 k-mer counting Sequence analysis, Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 91 1138 False +khmer khmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_median In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more khmer khmer khmer khmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data. Standardisation and normalisation, De-novo assembly Sequence assembly Up-to-date https://khmer.readthedocs.org/ Assembly, Next Gen Mappers khmer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer 3.0.0a3 khmer 3.0.0a3 Standardisation and normalisation, De-novo assembly Sequence assembly 8 8 8 0 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 8 8 0 63 2022 False +links links Scaffold genome assemblies with long reads. links links LINKS LINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS. Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing Up-to-date https://github.com/bcgsc/LINKS Assembly links iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/links https://github.com/galaxyproject/tools-iuc/tree/main/tools/links 2.0.1 links 2.0.1 Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 77 405 False +marine_omics sanntis_marine The Sanntis tool identify biosynthetic gene clusters (BGCs) in genomic & metagenomic data Up-to-date https://github.com/Finn-Lab/SanntiS Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics 0.9.3.5 sanntis 0.9.3.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +mean-per-zone mean_per_zone Creates a png image showing statistic over areas as defined in the vector file To update https://github.com/NordicESMhub/galaxy-tools/blob/master/tools/mean-per-zone/ Visualization, GIS, Climate Analysis mean_per_zone climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone 0.2.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 24 False +medenv iabiodiv_smartbiodiv_med_environ Retrieve environmental data from etopo, cmems and woa To update https://github.com/jeremyfix/medenv Ecology, Data Source ecology https://github.com/jeremyfix/medenv https://github.com/galaxyecology/tools-ecology/tree/master/tools/medenv 0.1.0 pandas 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +megahit megahit An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph. megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly Up-to-date https://github.com/voutcn/megahit Sequence Analysis, Assembly, Metagenomics megahit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit 1.2.9 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 548 9530 False +megahit_contig2fastg megahit_contig2fastg A subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg) megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly To update https://github.com/voutcn/megahit/blob/master/tools/toolkit.cpp Sequence Analysis, Assembly, Metagenomics megahit_contig2fastg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg 1.1.3 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 54 475 False +merqury merqury, merquryplot Merqury is a tool for evaluating genomes assemblies based of k-mer operations. merqury merqury Merqury Reference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose. Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology Up-to-date https://github.com/marbl/merqury Assembly merqury iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury https://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury 1.3 merqury 1.3 Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 244 2483 False +meryl meryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_mode Meryl a k-mer counter. meryl meryl Meryl Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu. k-mer counting Whole genome sequencing, Genomics, Sequence analysis, Sequencing Up-to-date https://github.com/marbl/meryl Assembly meryl iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl 1.3 merqury 1.3 k-mer counting Whole genome sequencing, Genomics, Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +metaeuk metaeuk_easy_predict MetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand. MetaEuk MetaEuk MetaEuk MetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomics Homology-based gene prediction Metagenomics, Gene and protein families To update https://github.com/soedinglab/metaeuk Sequence Analysis, Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeuk https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk 5.34c21f2 metaeuk 6.a5d39d9 Homology-based gene prediction Metagenomics, Gene and protein families 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 184 False +minia minia Short-read assembler based on a de Bruijn graph minia minia Minia Short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day. Genome assembly Sequence assembly Up-to-date https://gatb.inria.fr/software/minia/ Assembly minia iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia https://github.com/galaxyproject/tools-iuc/tree/main/tools/minia 3.2.6 minia 3.2.6 Genome assembly Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 109 2206 False +miniasm miniasm Miniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step) miniasm miniasm miniasm Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. De-novo assembly Genomics, Sequence assembly To update https://github.com/lh3/miniasm Assembly miniasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm 0.3_r179 miniasm 0.3 De-novo assembly Genomics, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 178 11938 False +mitobim mitobim assemble mitochondrial genomes Up-to-date https://github.com/chrishah/MITObim Assembly mitobim iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobim https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim 1.9.1 mitobim 1.9.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 66 881 False +mitohifi mitohifi Assembly mitogenomes from Pacbio HiFi read. To update https://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2 Assembly mitohifi bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi 3 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 56 613 False +ncbi_egapx ncbi_egapx Eukaryotic Genome Annotation Pipeline - External (EGAPx) To update https://github.com/ncbi/egapx Genome annotation ncbi_egapx richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx 0.2-alpha 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +necat necat Error correction and de-novo assembly for ONT Nanopore reads necat necat NECAT NECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads. De-novo assembly Sequence assembly Up-to-date https://github.com/xiaochuanle/NECAT Assembly necat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/necat https://github.com/galaxyproject/tools-iuc/tree/main/tools/necat 0.0.1_update20200803 necat 0.0.1_update20200803 De-novo assembly Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 95 667 False +nextdenovo nextdenovo String graph-based de novo assembler for long reads nextdenovo nextdenovo NextDenovo "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a ""correct-then-assemble"" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages." De-novo assembly, Genome assembly Sequencing, Sequence assembly To update https://github.com/Nextomics/NextDenovo Assembly nextdenovo bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo 2.5.0 nextdenovo 2.5.2 De-novo assembly, Genome assembly Sequencing, Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 268 False +novoplasty novoplasty NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. To update https://github.com/ndierckx/NOVOPlasty Assembly novoplasty iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplasty https://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty 4.3.1 novoplasty 4.3.5 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 162 6384 False +oases oasesoptimiserv Short read assembler To update http://artbio.fr Assembly, RNA oases artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/oases https://github.com/ARTbio/tools-artbio/tree/main/tools/oases 1.4.0 oases 0.2.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +obisindicators obisindicators, obis_data Compute biodiveristy indicators for marine data from obis To update https://github.com/Marie59/obisindicators Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators 0.0.2 r-base 1 0 2 1 1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 45 False +ocean argo_getdata, divand_full_analysis Access, process, visualise oceanographic data for the Earth System To update https://github.com/Marie59/FE-ft-ESG/tree/main/argo Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean 0.1.15 julia 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 False +ogcProcess_otb_bandmath otb_band_math Outputs a monoband image which is the result of a mathematical operation on several multi-band images. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/OtbBandMath https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_bandmath 1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ogcProcess_otb_meanShiftSmoothing otb_mean_shift_smoothing This application smooths an image using the MeanShift algorithm. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_meanShiftSmoothing 1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pharokka pharokka rapid standardised annotation tool for bacteriophage genomes and metagenomes pharokka pharokka Pharokka Pharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes. Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA To update https://github.com/gbouras13/pharokka Genome annotation pharokka iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka 1.3.2 " + pharokka + " Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 74 2565 False +plasmidspades plasmidspades Genome assembler for assemblying plasmid To update Assembly plasmidspades nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades 1.1 spades 4.0.0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +prodigal prodigal A protein-coding gene prediction software tool for bacterial and archaeal genomes prodigal prodigal Prodigal Fast, reliable protein-coding gene prediction for prokaryotic genomes. Genome annotation Genomics, Sequence analysis Up-to-date https://github.com/hyattpd/Prodigal Genome annotation prodigal iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal 2.6.3 prodigal 2.6.3 Genome annotation Genomics, Sequence analysis 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +promer promer4_substitutions Aligns two sets of contigs and reports amino acid substitutions between them To update https://github.com/phac-nml/promer Assembly promer nml https://github.com/phac-nml/promer https://github.com/phac-nml/galaxy_tools/tree/master/tools/promer 1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +purge_dups purge_dups Purge haplotigs and overlaps in an assembly based on read depth purge_dups purge_dups purge_dups Identifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuences Genome assembly, Read binning, Scaffolding Sequence assembly Up-to-date https://github.com/dfguan/purge_dups Assembly purge_dups iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dups https://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups 1.2.6 purge_dups 1.2.6 Genome assembly, Read binning, Scaffolding Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 167 16800 False +quast quast Quast (Quality ASsessment Tool) evaluates genome assemblies. quast quast QUAST QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports. Visualisation, Sequence assembly validation Sequence assembly Up-to-date http://quast.bioinf.spbau.ru/ Assembly quast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast https://github.com/galaxyproject/tools-iuc/tree/main/tools/quast 5.2.0 quast 5.2.0 Visualisation, Sequence assembly validation Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 3567 51567 False +quickmerge quickmerge Merge long-read and hybrid assemblies to increase contiguity quickmerge quickmerge quickmerge Quickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads. Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype Up-to-date https://github.com/mahulchak/quickmerge Assembly quickmerge galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge https://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge 0.3 quickmerge 0.3 Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 False +ragtag ragtag Reference-guided scaffolding of draft genomes tool. ragtag ragtag ragtag RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Genome assembly Sequence assembly Up-to-date https://github.com/malonge/RagTag Assembly ragtag iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtag https://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag 2.1.0 ragtag 2.1.0 Genome assembly Sequence assembly 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 237 2833 False +raven raven Raven is a de novo genome assembler for long uncorrected reads. Up-to-date https://github.com/lbcb-sci/raven Assembly iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven https://github.com/galaxyproject/tools-iuc/tree/main/tools/raven 1.8.3 raven-assembler 1.8.3 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 262 6902 False +regionalgam regionalgam_ab_index, regionalgam_autocor_acf, regionalgam_flight_curve, regionalgam_glmmpql, regionalgam_gls_adjusted, regionalgam_gls, regionalgam_plot_trend To update https://github.com/RetoSchmucki/regionalGAM Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam 1.5 r-mgcv 0 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 22 526 False +repeatexplorer2 repeatexplorer_clustering Tool for annotation of repeats from unassembled shotgun reads. To update https://github.com/repeatexplorer/repex_tarean Genome annotation repeatexplorer2 gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 2.3.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 False +repeatmodeler repeatmodeler RepeatModeler - Model repetitive DNA repeatmodeler repeatmodeler RepeatModeler De-novo repeat family identification and modeling package. At the heart of RepeatModeler are two de-novo repeat finding programs ( RECON and RepeatScout ) which employ complementary computational methods for identifying repeat element boundaries and family relationships from sequence data. RepeatModeler assists in automating the runs of RECON and RepeatScout given a genomic database and uses the output to build, refine and classify consensus models of putative interspersed repeats. Repeat sequence detection Sequence composition, complexity and repeats, Sequence composition, complexity and repeats To update https://www.repeatmasker.org/RepeatModeler/ Genome annotation repeatmodeler csbl https://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmodeler https://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmodeler 2.0.5 Repeat sequence detection Sequence composition, complexity and repeats, Sequence composition, complexity and repeats 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 217 1177 False +retrieve_bold retrieve_bold Search a list of sequences in BOLD (Barcode of Life Data System) from specified taxa list and markers To update https://anaconda.org/conda-forge/r-bold Ecology retrieve_bold ecology https://github.com/wpearman1996/MARES_database_pipeline/tree/master https://github.com/galaxyecology/tools-ecology/tree/master/tools/retrieve_bold 1.3.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +rnaquast rna_quast rnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies. rnaQUAST rnaQUAST rnaQUAST Quality assessment tool for de novo transcriptome assemblies. De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics, RNA-seq Up-to-date https://github.com/ablab/rnaquast Assembly, RNA rnaquast iuc https://git.ufz.de/lehmanju/rnaquast https://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast 2.3.0 rnaquast 2.3.0 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 109 1110 False +salsa2 salsa A tool to scaffold long read assemblies with Hi-C SALSA SALSA SALSA > VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branch Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping Up-to-date https://github.com/marbl/SALSA Assembly salsa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa2 2.3 salsa2 2.3 Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 454 False +sample_seqs sample_seqs Sub-sample sequences files (e.g. to reduce coverage) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs Assembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysis sample_seqs peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs 0.2.6 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 149 3765 False +samtools_depad samtools_depad Re-align a SAM/BAM file with a padded reference (using samtools depad) To update http://www.htslib.org/ Assembly, SAM, Sequence Analysis samtools_depad peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad 0.0.5 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +samtools_depth samtools_depth Coverage depth via samtools To update http://www.htslib.org/ Assembly, Sequence Analysis, SAM samtools_depth peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth 0.0.3 samtools 1.20 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 296 4948 False +samtools_idxstats samtools_idxstats BAM mapping statistics (using samtools idxstats) To update http://www.htslib.org/ Assembly, Next Gen Mappers, SAM samtools_idxstats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats 0.0.6 samtools 1.20 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1450 48426 False +sdmpredictors sdmpredictors_list_layers Terrestrial and marine predictors for species distribution modelling. To update https://cran.r-project.org/web/packages/sdmpredictors/index.html Ecology sdmpredictors ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors 0.2.15 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +seq_filter_by_mapping seq_filter_by_mapping Filter sequencing reads using SAM/BAM mapping files To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping Assembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysis seq_filter_by_mapping peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping 0.0.8 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 82 3784 False +seq_primer_clip seq_primer_clip Trim off 5' or 3' primers To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip Assembly, Fasta Manipulation, Text Manipulation seq_primer_clip peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip 0.0.18 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +shasta shasta Fast de novo assembly of long read sequencing data To update https://github.com/chanzuckerberg/shasta Assembly, Nanopore shasta iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta https://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta 0.6.0 shasta 0.12.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 154 763 False +shovill shovill Faster de novo assembly pipeline based around Spades shovill shovill shovill Shovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too. Genome assembly Genomics, Microbiology, Sequence assembly Up-to-date https://github.com/tseemann/shovill Assembly shovill iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill https://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill 1.1.0 shovill 1.1.0 Genome assembly Genomics, Microbiology, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1008 41600 False +smudgeplot smudgeplot Inference of ploidy and heterozygosity structure using whole genome sequencing smudgeplots smudgeplots Smudgeplots Reference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics Up-to-date https://github.com/KamilSJaron/smudgeplot Assembly smudgeplot galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot 0.2.5 smudgeplot 0.2.5 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 22 203 False +spades spades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spades SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction. spades coronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spades SPAdes St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads. Genome assembly Sequence assembly To update https://github.com/ablab/spades Assembly, RNA, Metagenomics spades iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades https://github.com/galaxyproject/tools-iuc/tree/main/tools/spades 3.15.5 spades 4.0.0 Genome assembly Sequence assembly 9 9 9 9 9 9 9 9 0 0 0 0 1 0 0 0 0 0 0 0 1 3 8 0 0 2 0 0 0 3 0 0 0 0 0 0 0 9 3 0 3547 72953 False +spaln list_spaln_tables, spaln Spaln (space-efficient spliced alignment) maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence. To update http://www.genome.ist.i.kyoto-u.ac.jp/~aln_user/spaln/ Sequence Analysis, Genome annotation spaln iuc https://github.com/ogotoh/spaln https://github.com/galaxyproject/tools-iuc/tree/main/tools/spaln 2.4.9 python 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 34 446 False +spocc spocc_occ Get species occurences data To update https://cran.r-project.org/web/packages/spocc/index.html Ecology spocc_occ ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc 1.2.2 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 56 769 False +srs_tools srs_diversity_maps, srs_global_indices, srs_process_data, srs_spectral_indices, srs_pca, srs_preprocess_s2, srs_metadata Compute biodiversity indicators for remote sensing data from Sentinel 2 To update Ecology ecology https://github.com/Marie59/Sentinel_2A/srs_tools https://github.com/galaxyecology/tools-ecology/tree/master/tools/srs_tools 0.0.1 r-base 4 0 7 7 4 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 21 225 False +stoc stoceps_filteringsp, stoceps_glm, stoceps_glm_group, stoceps_maketablecarrer, stoceps_trend_indic Tools to analyse STOC data. To update Ecology stoceps ecology https://github.com/Alanamosse/Galaxy-E/tree/stoctool/tools/stoc https://github.com/galaxyecology/tools-ecology/tree/master/tools/stoc 0.0.2 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 10 325 False +taxonomy_filter_refseq taxonomy_filter_refseq Filter RefSeq by taxonomy To update https://github.com/pvanheus/ncbitaxonomy Sequence Analysis, Genome annotation taxonomy_filter_refseq iuc https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_filter_refseq 0.3.0 rust-ncbitaxonomy 1.0.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +taxonomy_krona_chart taxonomy_krona_chart Krona pie chart from taxonomic profile krona krona Krona Krona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome). Visualisation Metagenomics To update http://sourceforge.net/projects/krona/ Assembly taxonomy_krona_chart crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart 2.7.1+galaxy0 krona 2.8.1 Visualisation Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1801 27426 False +telescope telescope_assign Single locus resolution of Transposable ELEment expression. Telescope-expression Telescope-expression Telescope Telescope is a tool for the characterization of the retrotranscriptome by accurate estimation of transposable element expression and the quantification of transposable element expression using RNA-seq.It can be used for Statistical Performance of TE Quantification Methods.All scripts needed to examine the sensitivity and biases of computational approaches for quantifying TE expression: 1) unique counts, 2) best counts, 3) RepEnrich, 4) TEtranscripts, 5) RSEM, 6) SalmonTE, and 7) Telescope. Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mapping RNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly Up-to-date https://github.com/mlbendall/telescope/ Genome annotation telescope_assign iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/telescope https://github.com/galaxyproject/tools-iuc/tree/main/tools/telescope 1.0.3 telescope 1.0.3 Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mapping RNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +tgsgapcloser tgsgapcloser TGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly. TGS-GapCloser TGS-GapCloser TGS-GapCloser TGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads. Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping To update https://github.com/BGI-Qingdao/TGS-GapCloser Assembly tgsgapcloser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser 1.0.3 tgsgapcloser 1.2.1 Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 460 False +transit gff_to_prot, transit_gumbel, transit_hmm, transit_resampling, transit_tn5gaps TRANSIT transit transit TRANSIT A tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions. Transposon prediction DNA, Sequencing, Mobile genetic elements To update https://github.com/mad-lab/transit/ Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit 3.0.2 transit 3.2.3 Transposon prediction DNA, Sequencing, Mobile genetic elements 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 84 907 False +trycycler trycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsample Trycycler toolkit wrappers Up-to-date https://github.com/rrwick/Trycycler Assembly trycycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler 0.5.5 trycycler 0.5.5 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 147 8942 False +tsebra tsebra This tool has been developed to combine BRAKER predictions. tsebra tsebra TSEBRA TSEBRA is a combiner tool that selects transcripts from gene predictions based on the support by extrisic evidence in form of introns and start/stop codons. It was developed to combine BRAKER1 and BRAKER2 predicitons to increase their accuracies. Homology-based gene prediction, Alternative splicing prediction Gene expression, RNA-Seq, Gene transcripts, Model organisms To update https://github.com/Gaius-Augustus/TSEBRA Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tsebra https://github.com/galaxyproject/tools-iuc/tree/main/tools/tsebra 1.1.2.4 tsebra 1.1.2.5 Homology-based gene prediction, Alternative splicing prediction Gene expression, RNA-Seq, Gene transcripts, Model organisms 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 False +unicycler unicycler Unicycler is a hybrid assembly pipeline for bacterial genomes. unicycler unicycler Unicycler A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads. Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly Up-to-date https://github.com/rrwick/Unicycler Assembly unicycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler 0.5.1 unicycler 0.5.1 Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1558 65732 False +velvet velvetg, velveth de novo genomic assembler specially designed for short read sequencing technologies velvet velvet Velvet A de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD. Formatting, De-novo assembly Sequence assembly To update https://www.ebi.ac.uk/~zerbino/velvet/ Assembly velvet devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet velvet 1.2.10 Formatting, De-novo assembly Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2083 25420 False +velvet_optimiser velvetoptimiser Automatically optimize Velvet assemblies velvetoptimiser velvetoptimiser VelvetOptimiser This tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly. Optimisation and refinement, Sequence assembly Genomics, Sequence assembly To update Assembly velvetoptimiser simon-gladman https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser 2.2.6+galaxy2 velvet 1.2.10 Optimisation and refinement, Sequence assembly Genomics, Sequence assembly 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 4741 False +verkko verkko Telomere-to-telomere assembly pipeline To update https://github.com/marbl/verkko Assembly verkko iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/verkko https://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko 1.3.1 verkko 2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 22 False +vigiechiro vigiechiro_bilanenrichipf, vigiechiro_bilanenrichirp, vigiechiro_idcorrect_2ndlayer, vigiechiro_idvalid Tools created by the vigiechiro team to analyses and identify chiro sounds files. To update https://www.vigienature-ecole.fr/les-observatoires/le-protocole-vigie-chiro Ecology vigiechiro ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro 0.1.1 0 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 351 12203 False +wtdbg wtdbg WTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly. wtdbg2 wtdbg2 wtdbg2 Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy. Genome assembly, De-novo assembly Sequence assembly, Sequencing Up-to-date https://github.com/ruanjue/wtdbg2 Assembly wtdbg bgruening https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg 2.5 wtdbg 2.5 Genome assembly, De-novo assembly Sequence assembly, Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 116 1660 False +xarray timeseries_extraction, xarray_coords_info, xarray_mapplot, xarray_metadata_info, xarray_netcdf2netcdf, xarray_select xarray (formerly xray) is an open source project and Python package that makes working withlabelled multi-dimensional arrays simple, efficient, and fun!xarray integrates with Dask to support parallel computations and streaming computation on datasetsthat don’t fit into memory. To update http://xarray.pydata.org Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray/ https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray 2022.3.0 xarray 5 2 6 5 5 2 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 0 175 5876 False +yahs yahs Yet Another Hi-C scaffolding tool Up-to-date https://github.com/c-zhou/yahs Assembly yahs iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs https://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs 1.2a.2 yahs 1.2a.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 64 344 False +zoo_project_ogc_api_processes zoo_project_ogc_api_processes This tool is a wrapper for OGC API Processes (OTB) coming from the Zoo Project (https://zoo-project.github.io/docs/intro.html) and was created using the OGC-API-Process2Galaxy tool (https://github.com/AquaINFRA/OGC-API-Process2Galaxy). Check the README in the repository for more information. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper https://github.com/galaxyecology/tools-ecology/tree/master/tools/zoo_project_ogc_api_processes 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False diff --git a/communities/biodiversity/resources/tools_wordcloud.png b/communities/biodiversity/resources/tools_wordcloud.png new file mode 100644 index 00000000..225a1823 Binary files /dev/null and b/communities/biodiversity/resources/tools_wordcloud.png differ diff --git a/data/communities/imaging/categories b/communities/imaging/metadata/categories similarity index 100% rename from data/communities/imaging/categories rename to communities/imaging/metadata/categories diff --git a/data/communities/imaging/tool_status.tsv b/communities/imaging/metadata/tool_status.tsv similarity index 100% rename from data/communities/imaging/tool_status.tsv rename to communities/imaging/metadata/tool_status.tsv diff --git a/communities/imaging/resources/index.html b/communities/imaging/resources/index.html new file mode 100644 index 00000000..92568084 --- /dev/null +++ b/communities/imaging/resources/index.html @@ -0,0 +1,59 @@ + + + + + + Simple HTML Page + + + +
+

Imaging ressources from the Galaxy Codex

+

Tools

+ + + +

Training

+ + +
+ + diff --git a/communities/imaging/resources/tools.html b/communities/imaging/resources/tools.html new file mode 100644 index 00000000..221396d6 --- /dev/null +++ b/communities/imaging/resources/tools.html @@ -0,0 +1,4823 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandGalaxy wrapper idGalaxy tool idsDescriptionbio.tool idbio.tool idsbiiibio.tool namebio.tool descriptionEDAM operationEDAM topicStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper sourceGalaxy wrapper parsed folderGalaxy wrapper versionConda idConda versionEDAM operation (no superclasses)EDAM topic (no superclasses)Available on UseGalaxy.org (Main)Available on UseGalaxy.org.auAvailable on UseGalaxy.euAvailable on UseGalaxy.frTools available on UseGalaxy.org (Main)Tools available on UseGalaxy.org.auTools available on UseGalaxy.euTools available on UseGalaxy.frTools available on APOSTLTools available on BF2I-MAPTools available on BioBixTools available on CIRM-CFBPTools available on Center for Phage Technology (CPT)Tools available on ChemFlowTools available on Coloc-statsTools available on CoralSNPTools available on CropGalaxyTools available on DintorTools available on FreeBioinfoTools available on GASLINITools available on Galaxy@AuBiTools available on Galaxy@PasteurTools available on GalaxyTrakrTools available on Genomic HyperbrowserTools available on GigaGalaxyTools available on HyPhy HIV NGS ToolsTools available on IPK Galaxy Blast SuiteTools available on ImmPort GalaxyTools available on InteractoMIXTools available on MISSISSIPPITools available on Mandoiu LabTools available on MiModD NacreousMapTools available on OqtansTools available on PalfinderTools available on PepSimiliTools available on PhagePromotorTools available on UseGalaxy.beTools available on UseGalaxy.czTools available on UseGalaxy.noTools available on Viral Variant Visualizer (VVV)No. of tool users (2022-2023) (usegalaxy.eu)Total tool usage (usegalaxy.eu)Deprecated
2d_auto_thresholdip_thresholdAutomatic thresholdingscikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImaging2d_auto_thresholdimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold0.18.1scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language0111011100000000000000000000000000000110396541
2d_feature_extractionip_2d_feature_extraction2D feature extractionscikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImaging2d_feature_extractionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction0.18.1scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language01100110000000000000000000000000000001101913760
2d_filter_segmentation_by_featuresip_2d_filter_segmentation_by_featuresfilter segmentation by rulesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImaging2d_filter_segmentation_by_featuresimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features0.0.1-4scikit-imageImage analysisImaging, Bioinformatics0110011000000000000000000000000000000110186834
2d_histogram_equalizationip_histogram_equalization2d histogram equalizationscikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImaging2d_histogram_equalizationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization0.18.1scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language011101110000000000000000000000000000011039656
2d_simple_filterip_filter_standard2d simple filterscipyTo updatehttps://github.com/bmcvImaging2d_simple_filterimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter1.12.0scipy0111011100000000000000000000000000000110356156
3d_tensor_feature_dimension_reductionip_3d_tensor_feature_dimension_reductionDimensionality reduction for features (channels) of 3D tensor data using UMAPTo updatehttps://github.com/BMCV/galaxy-image-analysisImaging3d_tensor_feature_dimension_reductionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction0.0.1numpy000000000000000000000000000000000000000000
anisotropic_diffusionip_anisotropic_diffusionAnisotropic image diffusionUp-to-datehttps://github.com/bmcvImaginganisotropic_diffusionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic-diffusion/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic_diffusion0.4.0medpy0.4.00010001000000000000000000000000000000110040
background_removalbackground_removalBackground removal filters using scikit-imageTo updatehttps://github.com/bmcvImagingbackground_removalimgteamhttps://github.com/BMCV/galaxy-image-analysis/tools/background_removalhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/background_removal0.24.0scikit-image001000100000000000000000000000000000000000
bfconvertip_convertimageConvert imagepython-bioformatsUp-to-datehttps://github.com/bmcvImaging, Convert Formatsbfconvertimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert6.7.0bftools6.7.00111011100000000000000000000000000000110381523
bia-ftplinksbia_downloadTool to query ftp links for study from bioimage archiveTo updateImagingbia_downloadbgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/image_processing/bia-ftplinks0.1.0wget001000100000000000000000000000000000000002
binary2labelimageip_binary_to_labelimageBinary 2 label imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingbinary2labelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage0.5scikit-imageImage analysisImaging, Bioinformatics0110011000000000000000000000000000000110341273
binaryimage2pointsip_binaryimage_to_pointsBinary Image to Pointsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingbinaryimage2pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points0.1-2numpyImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110029
bioformats2rawbf2rawConvert image to OME-ZarrTo updatehttps://github.com/Euro-BioImagingImaging, Convert Formatsbioformats2rawimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2rawhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw0.7.0001100110000000000000000000000000000000009
bioimagingbioimage_inferenceLoad model from BioImage.IO and make inferencespytorchpytorchpytorchPyTorchPyTorch is an optimized tensor library for deep learning using GPUs and CPUs.Machine learning, Computer scienceTo updatehttps://github.com/bgruening/galaxytoolsImagingbioimage_inferencebgrueninghttps://github.com/bgruening/galaxytools/tree/recommendation_training/tools/bioimaginghttps://github.com/bgruening/galaxytools/tree/master/tools/bioimaging2.3.1pythonMachine learning001000100000000000000000000000000000000000
cellposecellposeCellpose is an anatomical segmentation algorithmTo updatehttps://github.com/MouseLand/cellposeImagingcellposebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/cellposehttps://github.com/bgruening/galaxytools/tree/master/tools/cellpose3.0.10cellpose001000100000000000000000000000000000000000
cellprofilercp_cellprofiler, cp_color_to_gray, cp_convert_objects_to_image, cp_display_data_on_image, cp_enhance_or_suppress_features, cp_export_to_spreadsheet, cp_gray_to_color, cp_identify_primary_objects, cp_image_math, cp_mask_image, cp_measure_granularity, cp_measure_image_area_occupied, cp_measure_image_intensity, cp_measure_image_quality, cp_measure_object_intensity, cp_measure_object_size_shape, cp_measure_texture, cp_overlay_outlines, cp_relate_objects, cp_save_images, cp_common, cp_tile, cp_track_objectscellProfiler wrapperCellProfilerCellProfilercellprofilerCellProfilerTool for quantifying data from biological images, particularly in high-throughput experiments.Quantification, Image analysis, ParsingImaging, Microarray experiment, Genotype and phenotypeTo updateImagingcellprofilerbgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/cellprofilerQuantification, Image analysis, ParsingImaging, Microarray experiment, Genotype and phenotype0232319023231900000000000000000000000000000231901784614
cellprofiler_v4cp_cellprofiler4cellProfiler4 wrapperTo updatehttps://github.com/CellProfiler/CellProfilerImagingcellprofiler4bgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v44.2.70011001100000000000000100000000000000100843
color-deconvolutionip_color_deconvolutionColor-deconvolution methodsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingcolor_deconvolutionimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution0.8-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110116
colorize_labelscolorize_labelsColorize label mapTo updatehttps://github.com/bmcvImagingcolorize_labelsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labelshttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels3.2.1networkx001000100000000000000000000000000000000000
concat_channelsip_concat_channelsConcatenate imagesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingconcat_channelsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels0.3-1scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110378
coordinates_of_roiip_coordinates_of_roiCoordinates of ROIgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingcoordinates_of_roiimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi0.0.4-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110816546
count_objectsip_count_objectsCount Objectsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingcount_objectsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects0.0.5-2scikit-imageImage analysisImaging, Bioinformatics011101110000000000000000000000000000011025272
curve_fittingip_curve_fittingPolynomial curve fitting to data pointsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/BMCV/galaxy-image-analysisImagingcurve_fittingimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting0.0.3-2numpyImage analysisImaging, Bioinformatics0010001000000000000000000000000000000100112
detection_vizip_detection_vizDetection Visualizationgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingdetection_vizimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz0.3-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110246
graphicsmagickgraphicsmagick_image_compare, graphicsmagick_image_convert, graphicsmagick_image_montageContains tools based on GraphicsMagickTo updatehttp://www.graphicsmagick.orgImaginggraphicsmagickbgrueninghttps://github.com/bgruening/galaxytools/new/gm/tools/image_processing/image_processing/https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/graphicsmagick1.3.44graphicsmagick1.3.261030103000000000000000000000000000000220432605
hyperstack_to_bleach_corrected_moviehyperstack_to_bleach_corrected_movieGenerate blach corrected movie from hyperstackTo updateImaginghyperstack_to_bleach_corrected_movielldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_moviehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie20230328Fiji20231211000000000000000000000000000000000000000000
image_infoip_imageinfoExtracts image metadatapython-bioformatsTo updatehttps://github.com/bmcvImagingimage_infoimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info5.7.1bftools6.7.0011101110000000000000000000000000000011041621
image_mathimage_mathProcess images using arithmetic expressionsTo updatehttps://github.com/bmcvImagingimage_mathimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_mathhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math1.26.4numpy001000100000000000000000000000000000000000
image_registration_affineip_image_registrationIntensity-based Image Registrationgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingimage_registration_affineimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine0.0.3-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000100212
imagecoordinates_flipaxisimagecoordinates_flipaxisFlip coordinate axesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingimagecoordinates_flipaxisimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis0.1-2pandasImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110721825
imagej2imagej2_adjust_threshold_binary, imagej2_analyze_particles_binary, imagej2_analyze_skeleton, imagej2_binary_to_edm, imagej2_bunwarpj_adapt_transform, imagej2_bunwarpj_align, imagej2_bunwarpj_compare_elastic, imagej2_bunwarpj_compare_elastic_raw, imagej2_bunwarpj_compare_raw, imagej2_bunwarpj_compose_elastic, imagej2_bunwarpj_compose_raw, imagej2_bunwarpj_compose_raw_elastic, imagej2_bunwarpj_convert_to_raw, imagej2_bunwarpj_elastic_transform, imagej2_bunwarpj_raw_transform, imagej2_create_image, imagej2_enhance_contrast, imagej2_find_edges, imagej2_find_maxima, imagej2_make_binary, imagej2_math, imagej2_noise, imagej2_shadows, imagej2_sharpen, imagej2_skeletonize3d, imagej2_smooth, imagej2_watershed_binaryImageJ2 is a new version of ImageJ for the next generation of multidimensionalimage data, with a focus on scientific imaging.imagejimagejimagej2ImageJ2It is a public domain Java image processing program, which was designed with an open architecture. Custom acquisition, analysis and processing plugins can be developed using ImageJ’s built-in editor and a Java compiler. User-written plugins make it possible to solve many image processing and analysis problems, from three-dimensional live-cell imaging, to radiological image processing, multiple imaging system data comparisons to automated hematology systems.Image analysis, Image annotation, VisualisationImagingTo updatehttp://fiji.scImagingimagej2imgteamhttps://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej220170530Image analysis, Image annotation, VisualisationImaging00270002700000000000000000000000000000027270261537
incucyte_stack_and_upload_omeroincucyte_stack_and_upload_omeroCombine images to stack and upload to the omero serverTo updateImagingincucyte_stack_and_upload_omerolldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omerohttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero20231221Fiji20231211000000000000000000000000000000000000000000
label_to_binarylabel_to_binaryConvert label map to binary imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImaginglabel_to_binaryimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary1.26.4numpyImage analysisImaging, Bioinformatics001000100000000000000000000000000000000000
labelimage2pointsip_labelimage_to_pointsLabel Image to Pointsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImaginglabelimage2pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points0.2-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110036
landmark_registrationip_landmark_registrationLandmark Registrationgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImaginglandmark_registrationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration0.1.0-2scikit-imageImage analysisImaging, Bioinformatics10101010000000000000000000000000000001109857
mahotas-featuresip_mahotas_featuresCompute image features using mahotas.mahotas-feature-computationTo updatehttps://github.com/luispedro/mahotasImagingmahotas_featuresimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features0.7-2mahotas0010001000000000000000000000000000000110037
measure_gastruloidsmeasureGastruloidsGet the ROI coordinates around the gastruloids as well as measurements like Area, elongation indexTo updateImagingmeasure_gastruloidslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloidshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids20221216fiji20231211000000000000000000000000000000000000000000
mergeneighboursinlabelimageip_merge_neighbours_in_labelMerge Neighbours in Label Imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingmergeneighboursinlabelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/\mergeneighboursinlabelimagehttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mergeneighboursinlabelimage0.3-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110025
morphological_operationsmorphological_operationsApply morphological operations to imagesscipyTo updatehttps://github.com/bmcvImagingmorphological_operationsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operationshttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations1.12.0scipy001000100000000000000000000000000000000000
omeroomero_import, omero_metadata_importImport images and metadata into an OMERO.server using omero-pyomeroomeroOMEROClient-server Java software for visualisation, management and analysis of biological microscope images.Image analysisImaging, Data visualisationTo updatehttps://github.com/ome/omero-py/Imagingomero_uploadufzhttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omerohttps://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero5.18.0omero-py5.11.1Image analysisImaging, Data visualisation000000000000000000000000000000000000000000
omero_clean_rois_tablesomero_clean_rois_tablesRemove all ROIs and all tables on OMERO associated to an omero object and recursively up and downTo updateImagingomero_clean_rois_tableslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tableshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables20230623fiji20231211000000000000000000000000000000000000000000
omero_get_children_idsomero_get_children_idsGet omero id of children of an omero object idTo updateImagingomero_get_children_idslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_idshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids0.2.0omero-py5.11.1000000000000000000000000000000000000000000
omero_get_full_imagesomero_get_full_imagesGet full images from omeroTo updateImagingomero_get_full_imageslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_imageshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images20240521fiji20231211000000000000000000000000000000000000000000
omero_hyperstack_to_fluo_measurements_on_gastruloidomero_hyperstack_to_fluo_measurements_on_gastruloidAnalyse Hyperstack on OMERO server to measure fluorescence levelsTo updateImagingomero_hyperstack_to_fluo_measurements_on_gastruloidlldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloidhttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid20230809fiji20231211000000000000000000000000000000000000000000
omero_hyperstack_to_gastruloid_measurementsomero_hyperstack_to_gastruloid_measurementsAnalyse Hyperstack on OMERO server to segment gastruloid and compute measurementsTo updateImagingomero_hyperstack_to_gastruloid_measurementslldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurementshttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements20240214fiji20231211000000000000000000000000000000000000000000
orientationpyorientationpyCompute image orientationorientationjUp-to-datehttps://github.com/bmcvImagingorientationpyimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpyhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy0.2.0.4orientationpy0.2.0.4001000100000000000000000000000000000000000
overlay_imagesip_overlay_imagesOverlay two imagesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/BMCV/galaxy-image-analysisImagingoverlay_imagesimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images0.0.4scikit-imageImage analysisImaging, Bioinformatics01110111000000000000000000000000000001002160
permutate_axisip_permutate_axisPermutates axesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingpermutate_axisimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis0.2-2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110042
plantsegplantsegTool for cell instance aware segmentation in densely packed 3D volumetric imagesplantsegplantsegPlantSegAccurate and Versatile 3D Segmentation of Plant Tissues at Cellular Resolution.PlantSeg is a tool for cell instance aware segmentation in densely packed 3D volumetric images. The pipeline uses a two stages segmentation strategy (Neural Network + Segmentation). The pipeline is tuned for plant cell tissue acquired with confocal and light sheet microscopy. Pre-trained models are provided.Network analysis, Quantification, Microscope image visualisationPlant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopyTo updatehttps://github.com/bmcvImagingplantsegimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg1.8.1plant-segNetwork analysis, Quantification, Microscope image visualisationPlant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopy001000100000000000000000000000000000000000
points2binaryimageip_points_to_binaryimagePoints to Binary Imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingpoints2binaryimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage0.2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110241
points2labelimageip_points_to_labelPoints to label imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingpoints2labelimageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage0.3-2numpyImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110031
points_association_nnip_points_association_nnAssociation of points in consecutive framesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/BMCV/galaxy-image-analysisImagingpoints_association_nnimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn0.0.3-2numpyImage analysisImaging, Bioinformatics0010001000000000000000000000000000000100229
projective_transformationip_projective_transformationProjective transformationgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingprojective_transformationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation0.1.2scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110185
projective_transformation_pointsip_projective_transformation_pointsProjective transformation of ROIs defined by pixel (point) coordinatesgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingprojective_transformation_pointsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points0.1.1scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110921343
qupath_roi_splitterqupath_roi_splitterSplit ROI coordinates of QuPath TMA annotation by cell typeTo updatehttps://github.com/npinter/ROIsplitterImagingqupath_roi_splittergalaxyphhttps://github.com/npinter/ROIsplitterhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/qupath_roi_splitter0.3.1geojson0010001000000000000000000000000000000100559
repeat_channelsrepeat_channelsConvert single-channel to multi-channel imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingrepeat_channelsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels1.26.4numpyImage analysisImaging, Bioinformatics001000100000000000000000000000000000000000
rfoverfovePerform segmentation region-based fitting of overlapping ellipsesrfoverfoveRFOVERFOVE (Region-based Fitting of Overlapping Ellipses and its Application to Cells Segmentation) is a MATLAB script for performing image segmentation on cells.Image analysisCell biology, Biomedical science, ImagingTo updatehttps://sites.google.com/site/costaspanagiotakis/research/csImagingrfoveimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove2023.11.12Image analysisCell biology, Biomedical science, Imaging001000100000000000000000000000000000000007
scale_imageip_scale_imageScale imagescikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImagingscale_imageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image0.18.3scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language00100010000000000000000000000000000001109512
segmetricsip_segmetricsImage segmentation and object detection performance measuressegmetricssegmetricssegmetricsSegMetricsImage segmentation and object detection performance measuresImage analysisTo updatehttps://github.com/bmcvImagingsegmetricsimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics1.4segmetrics1.5Image analysis001000100000000000000000000000000000010023
slice_imageip_slice_imageSlice imagegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingslice_imageimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image0.3-4scikit-imageImage analysisImaging, Bioinformatics11101110000000000000000000000000000001100102
split_labelmapip_split_labelmapSplit Labelmapsgalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/bmcvImagingsplit_labelmapimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmaps/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmap0.2-3scikit-imageImage analysisImaging, Bioinformatics0010001000000000000000000000000000000110042
spot_detection_2dip_spot_detection_2dSpot detection in 2D image sequencegalaxy_image_analysisgalaxy_image_analysisGalaxy Image AnalysisGalaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform.Image analysisImaging, BioinformaticsTo updatehttps://github.com/BMCV/galaxy-image-analysisImagingspot_detection_2dimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d0.0.3-2imageioImage analysisImaging, Bioinformatics0010001000000000000000000000000000000100316
spyboatspyboatWavelet analysis for 3d-image stacksTo updatehttp://github.com/tensionhead/spyboatImaging, Graphicsspyboatiuchttps://github.com/galaxyproject/tools-iuc/tree/master/packages/spyboathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spyboat0.1.2spyboat0010001000000000000000000000000000000100167
superdsmip_superdsmGlobally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy imagessuperdsmsuperdsmsuperdsmSuperDSMSuperDSM is a globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images and beyond.Image analysisTo updatehttps://github.com/bmcvImagingsuperdsmimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm0.2.0superdsm0.3.0Image analysis0010001000000000000000000000000000000100216
upload_roi_and_measures_to_omerouploadROIandMeasuresToOMEROUpload the ROI coordinates and the measurements to the omero serverTo updateImagingupload_roi_and_measures_to_omerolldelislehttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omerohttps://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero0.0.5omero-py5.11.1000000000000000000000000000000000000000000
visceral-evaluatesegmentationip_visceral_evaluatesegmentationVisceral Project - Evaluate Segmentation Toolevaluatesegmentation-toolTo updatehttps://github.com/bmcvImagingvisceral_evaluatesegmentationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentationhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation0.5-2visceral-evaluatesegmentation2015.07.030010001000000000000000000000000000000110025
voronoi_tessellationvoronoi_tessellationCompute Voronoi tesselationscikit-imagescikit-imagescikit-imagescikit-imageScikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc.Image analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and languageTo updatehttps://github.com/bmcvImagingvoronoi_tesselationimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tesselationhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tessellation0.22.0scikit-imageImage analysis, Image annotation, Visualisation, Data handlingImaging, Software engineering, Literature and language001000100000000000000000000000000000000000
woundhealingwoundhealing_scratch_assayTool to automate quantification of wound healing in high-throughput microscopy scratch assaysUp-to-datehttps://git.embl.de/grp-cba/wound-healing-htm-screenImagingWound healing scratch assay image analysisbgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/image_processing/woundhealing1.6.1fiji-morpholibj1.6.1001000100000000000000000000000000000000000
wsi_extract_top_viewip_wsi_extract_top_viewWSI Extract Top ViewTo updatehttps://github.com/bmcvImagingwsi_extract_top_viewimgteamhttps://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view/https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view0.2-2scikit-image0010001000000000000000000000000000000110038
+ +
\ No newline at end of file diff --git a/communities/imaging/resources/tools.tsv b/communities/imaging/resources/tools.tsv new file mode 100644 index 00000000..16acb3d7 --- /dev/null +++ b/communities/imaging/resources/tools.tsv @@ -0,0 +1,70 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +2d_auto_threshold ip_threshold Automatic thresholding scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_auto_threshold imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 6541 False +2d_feature_extraction ip_2d_feature_extraction 2D feature extraction scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_feature_extraction imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 13760 False +2d_filter_segmentation_by_features ip_2d_filter_segmentation_by_features filter segmentation by rules galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging 2d_filter_segmentation_by_features imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features 0.0.1-4 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 6834 False +2d_histogram_equalization ip_histogram_equalization 2d histogram equalization scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_histogram_equalization imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 656 False +2d_simple_filter ip_filter_standard 2d simple filter scipy To update https://github.com/bmcv Imaging 2d_simple_filter imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter 1.12.0 scipy 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 35 6156 False +3d_tensor_feature_dimension_reduction ip_3d_tensor_feature_dimension_reduction Dimensionality reduction for features (channels) of 3D tensor data using UMAP To update https://github.com/BMCV/galaxy-image-analysis Imaging 3d_tensor_feature_dimension_reduction imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction 0.0.1 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +anisotropic_diffusion ip_anisotropic_diffusion Anisotropic image diffusion Up-to-date https://github.com/bmcv Imaging anisotropic_diffusion imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic-diffusion/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic_diffusion 0.4.0 medpy 0.4.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 40 False +background_removal background_removal Background removal filters using scikit-image To update https://github.com/bmcv Imaging background_removal imgteam https://github.com/BMCV/galaxy-image-analysis/tools/background_removal https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/background_removal 0.24.0 scikit-image 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bfconvert ip_convertimage Convert image python-bioformats Up-to-date https://github.com/bmcv Imaging, Convert Formats bfconvert imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert 6.7.0 bftools 6.7.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 38 1523 False +bia-ftplinks bia_download Tool to query ftp links for study from bioimage archive To update Imaging bia_download bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/bia-ftplinks 0.1.0 wget 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 False +binary2labelimage ip_binary_to_labelimage Binary 2 label image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging binary2labelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage 0.5 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 1273 False +binaryimage2points ip_binaryimage_to_points Binary Image to Points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging binaryimage2points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points 0.1-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 29 False +bioformats2raw bf2raw Convert image to OME-Zarr To update https://github.com/Euro-BioImaging Imaging, Convert Formats bioformats2raw imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw 0.7.0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 False +bioimaging bioimage_inference Load model from BioImage.IO and make inferences pytorch pytorch pytorch PyTorch PyTorch is an optimized tensor library for deep learning using GPUs and CPUs. Machine learning, Computer science To update https://github.com/bgruening/galaxytools Imaging bioimage_inference bgruening https://github.com/bgruening/galaxytools/tree/recommendation_training/tools/bioimaging https://github.com/bgruening/galaxytools/tree/master/tools/bioimaging 2.3.1 python Machine learning 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cellpose cellpose Cellpose is an anatomical segmentation algorithm To update https://github.com/MouseLand/cellpose Imaging cellpose bgruening https://github.com/bgruening/galaxytools/tree/master/tools/cellpose https://github.com/bgruening/galaxytools/tree/master/tools/cellpose 3.0.10 cellpose 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cellprofiler cp_cellprofiler, cp_color_to_gray, cp_convert_objects_to_image, cp_display_data_on_image, cp_enhance_or_suppress_features, cp_export_to_spreadsheet, cp_gray_to_color, cp_identify_primary_objects, cp_image_math, cp_mask_image, cp_measure_granularity, cp_measure_image_area_occupied, cp_measure_image_intensity, cp_measure_image_quality, cp_measure_object_intensity, cp_measure_object_size_shape, cp_measure_texture, cp_overlay_outlines, cp_relate_objects, cp_save_images, cp_common, cp_tile, cp_track_objects cellProfiler wrapper CellProfiler CellProfiler cellprofiler CellProfiler Tool for quantifying data from biological images, particularly in high-throughput experiments. Quantification, Image analysis, Parsing Imaging, Microarray experiment, Genotype and phenotype To update Imaging cellprofiler bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler Quantification, Image analysis, Parsing Imaging, Microarray experiment, Genotype and phenotype 0 23 23 19 0 23 23 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 19 0 178 4614 False +cellprofiler_v4 cp_cellprofiler4 cellProfiler4 wrapper To update https://github.com/CellProfiler/CellProfiler Imaging cellprofiler4 bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v4 4.2.7 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 43 False +color-deconvolution ip_color_deconvolution Color-deconvolution methods galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging color_deconvolution imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution 0.8-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 16 False +colorize_labels colorize_labels Colorize label map To update https://github.com/bmcv Imaging colorize_labels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels 3.2.1 networkx 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +concat_channels ip_concat_channels Concatenate images galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging concat_channels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels 0.3-1 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 78 False +coordinates_of_roi ip_coordinates_of_roi Coordinates of ROI galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging coordinates_of_roi imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi 0.0.4-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 16546 False +count_objects ip_count_objects Count Objects galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging count_objects imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects 0.0.5-2 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 25 272 False +curve_fitting ip_curve_fitting Polynomial curve fitting to data points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging curve_fitting imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting 0.0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 12 False +detection_viz ip_detection_viz Detection Visualization galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging detection_viz imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz 0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 46 False +graphicsmagick graphicsmagick_image_compare, graphicsmagick_image_convert, graphicsmagick_image_montage Contains tools based on GraphicsMagick To update http://www.graphicsmagick.org Imaging graphicsmagick bgruening https://github.com/bgruening/galaxytools/new/gm/tools/image_processing/image_processing/ https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/graphicsmagick 1.3.44 graphicsmagick 1.3.26 1 0 3 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 43 2605 False +hyperstack_to_bleach_corrected_movie hyperstack_to_bleach_corrected_movie Generate blach corrected movie from hyperstack To update Imaging hyperstack_to_bleach_corrected_movie lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie https://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie 20230328 Fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +image_info ip_imageinfo Extracts image metadata python-bioformats To update https://github.com/bmcv Imaging image_info imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info 5.7.1 bftools 6.7.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 41 621 False +image_math image_math Process images using arithmetic expressions To update https://github.com/bmcv Imaging image_math imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math 1.26.4 numpy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +image_registration_affine ip_image_registration Intensity-based Image Registration galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging image_registration_affine imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine 0.0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 12 False +imagecoordinates_flipaxis imagecoordinates_flipaxis Flip coordinate axes galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging imagecoordinates_flipaxis imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis 0.1-2 pandas Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 21825 False +imagej2 imagej2_adjust_threshold_binary, imagej2_analyze_particles_binary, imagej2_analyze_skeleton, imagej2_binary_to_edm, imagej2_bunwarpj_adapt_transform, imagej2_bunwarpj_align, imagej2_bunwarpj_compare_elastic, imagej2_bunwarpj_compare_elastic_raw, imagej2_bunwarpj_compare_raw, imagej2_bunwarpj_compose_elastic, imagej2_bunwarpj_compose_raw, imagej2_bunwarpj_compose_raw_elastic, imagej2_bunwarpj_convert_to_raw, imagej2_bunwarpj_elastic_transform, imagej2_bunwarpj_raw_transform, imagej2_create_image, imagej2_enhance_contrast, imagej2_find_edges, imagej2_find_maxima, imagej2_make_binary, imagej2_math, imagej2_noise, imagej2_shadows, imagej2_sharpen, imagej2_skeletonize3d, imagej2_smooth, imagej2_watershed_binary ImageJ2 is a new version of ImageJ for the next generation of multidimensionalimage data, with a focus on scientific imaging. imagej imagej imagej2 ImageJ2 It is a public domain Java image processing program, which was designed with an open architecture. Custom acquisition, analysis and processing plugins can be developed using ImageJ’s built-in editor and a Java compiler. User-written plugins make it possible to solve many image processing and analysis problems, from three-dimensional live-cell imaging, to radiological image processing, multiple imaging system data comparisons to automated hematology systems. Image analysis, Image annotation, Visualisation Imaging To update http://fiji.sc Imaging imagej2 imgteam https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 20170530 Image analysis, Image annotation, Visualisation Imaging 0 0 27 0 0 0 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 27 0 26 1537 False +incucyte_stack_and_upload_omero incucyte_stack_and_upload_omero Combine images to stack and upload to the omero server To update Imaging incucyte_stack_and_upload_omero lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero https://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero 20231221 Fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +label_to_binary label_to_binary Convert label map to binary image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging label_to_binary imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary 1.26.4 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +labelimage2points ip_labelimage_to_points Label Image to Points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging labelimage2points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points 0.2-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 36 False +landmark_registration ip_landmark_registration Landmark Registration galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging landmark_registration imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration 0.1.0-2 scikit-image Image analysis Imaging, Bioinformatics 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 857 False +mahotas-features ip_mahotas_features Compute image features using mahotas. mahotas-feature-computation To update https://github.com/luispedro/mahotas Imaging mahotas_features imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features 0.7-2 mahotas 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 37 False +measure_gastruloids measureGastruloids Get the ROI coordinates around the gastruloids as well as measurements like Area, elongation index To update Imaging measure_gastruloids lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids https://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids 20221216 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +mergeneighboursinlabelimage ip_merge_neighbours_in_label Merge Neighbours in Label Image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging mergeneighboursinlabelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/\mergeneighboursinlabelimage https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mergeneighboursinlabelimage 0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 25 False +morphological_operations morphological_operations Apply morphological operations to images scipy To update https://github.com/bmcv Imaging morphological_operations imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations 1.12.0 scipy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero omero_import, omero_metadata_import Import images and metadata into an OMERO.server using omero-py omero omero OMERO Client-server Java software for visualisation, management and analysis of biological microscope images. Image analysis Imaging, Data visualisation To update https://github.com/ome/omero-py/ Imaging omero_upload ufz https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero 5.18.0 omero-py 5.11.1 Image analysis Imaging, Data visualisation 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_clean_rois_tables omero_clean_rois_tables Remove all ROIs and all tables on OMERO associated to an omero object and recursively up and down To update Imaging omero_clean_rois_tables lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables 20230623 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_get_children_ids omero_get_children_ids Get omero id of children of an omero object id To update Imaging omero_get_children_ids lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids 0.2.0 omero-py 5.11.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_get_full_images omero_get_full_images Get full images from omero To update Imaging omero_get_full_images lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images 20240521 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_hyperstack_to_fluo_measurements_on_gastruloid omero_hyperstack_to_fluo_measurements_on_gastruloid Analyse Hyperstack on OMERO server to measure fluorescence levels To update Imaging omero_hyperstack_to_fluo_measurements_on_gastruloid lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid 20230809 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_hyperstack_to_gastruloid_measurements omero_hyperstack_to_gastruloid_measurements Analyse Hyperstack on OMERO server to segment gastruloid and compute measurements To update Imaging omero_hyperstack_to_gastruloid_measurements lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements 20240214 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +orientationpy orientationpy Compute image orientation orientationj Up-to-date https://github.com/bmcv Imaging orientationpy imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy 0.2.0.4 orientationpy 0.2.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +overlay_images ip_overlay_images Overlay two images galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging overlay_images imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images 0.0.4 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 60 False +permutate_axis ip_permutate_axis Permutates axes galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging permutate_axis imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis 0.2-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 42 False +plantseg plantseg Tool for cell instance aware segmentation in densely packed 3D volumetric images plantseg plantseg PlantSeg Accurate and Versatile 3D Segmentation of Plant Tissues at Cellular Resolution.PlantSeg is a tool for cell instance aware segmentation in densely packed 3D volumetric images. The pipeline uses a two stages segmentation strategy (Neural Network + Segmentation). The pipeline is tuned for plant cell tissue acquired with confocal and light sheet microscopy. Pre-trained models are provided. Network analysis, Quantification, Microscope image visualisation Plant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopy To update https://github.com/bmcv Imaging plantseg imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg 1.8.1 plant-seg Network analysis, Quantification, Microscope image visualisation Plant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +points2binaryimage ip_points_to_binaryimage Points to Binary Image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging points2binaryimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage 0.2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 41 False +points2labelimage ip_points_to_label Points to label image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging points2labelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage 0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 31 False +points_association_nn ip_points_association_nn Association of points in consecutive frames galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging points_association_nn imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn 0.0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 29 False +projective_transformation ip_projective_transformation Projective transformation galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging projective_transformation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation 0.1.2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 85 False +projective_transformation_points ip_projective_transformation_points Projective transformation of ROIs defined by pixel (point) coordinates galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging projective_transformation_points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points 0.1.1 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 21343 False +qupath_roi_splitter qupath_roi_splitter Split ROI coordinates of QuPath TMA annotation by cell type To update https://github.com/npinter/ROIsplitter Imaging qupath_roi_splitter galaxyp hhttps://github.com/npinter/ROIsplitter https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/qupath_roi_splitter 0.3.1 geojson 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 59 False +repeat_channels repeat_channels Convert single-channel to multi-channel image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging repeat_channels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels 1.26.4 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +rfove rfove Perform segmentation region-based fitting of overlapping ellipses rfove rfove RFOVE RFOVE (Region-based Fitting of Overlapping Ellipses and its Application to Cells Segmentation) is a MATLAB script for performing image segmentation on cells. Image analysis Cell biology, Biomedical science, Imaging To update https://sites.google.com/site/costaspanagiotakis/research/cs Imaging rfove imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove 2023.11.12 Image analysis Cell biology, Biomedical science, Imaging 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 False +scale_image ip_scale_image Scale image scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging scale_image imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image 0.18.3 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 512 False +segmetrics ip_segmetrics Image segmentation and object detection performance measures segmetrics segmetrics segmetrics SegMetrics Image segmentation and object detection performance measures Image analysis To update https://github.com/bmcv Imaging segmetrics imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics 1.4 segmetrics 1.5 Image analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 3 False +slice_image ip_slice_image Slice image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging slice_image imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image 0.3-4 scikit-image Image analysis Imaging, Bioinformatics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 102 False +split_labelmap ip_split_labelmap Split Labelmaps galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging split_labelmap imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmaps/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmap 0.2-3 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 42 False +spot_detection_2d ip_spot_detection_2d Spot detection in 2D image sequence galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging spot_detection_2d imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d 0.0.3-2 imageio Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 16 False +spyboat spyboat Wavelet analysis for 3d-image stacks To update http://github.com/tensionhead/spyboat Imaging, Graphics spyboat iuc https://github.com/galaxyproject/tools-iuc/tree/master/packages/spyboat https://github.com/galaxyproject/tools-iuc/tree/main/tools/spyboat 0.1.2 spyboat 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 67 False +superdsm ip_superdsm Globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images superdsm superdsm superdsm SuperDSM SuperDSM is a globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images and beyond. Image analysis To update https://github.com/bmcv Imaging superdsm imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm 0.2.0 superdsm 0.3.0 Image analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 16 False +upload_roi_and_measures_to_omero uploadROIandMeasuresToOMERO Upload the ROI coordinates and the measurements to the omero server To update Imaging upload_roi_and_measures_to_omero lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero https://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero 0.0.5 omero-py 5.11.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +visceral-evaluatesegmentation ip_visceral_evaluatesegmentation Visceral Project - Evaluate Segmentation Tool evaluatesegmentation-tool To update https://github.com/bmcv Imaging visceral_evaluatesegmentation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation 0.5-2 visceral-evaluatesegmentation 2015.07.03 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 25 False +voronoi_tessellation voronoi_tessellation Compute Voronoi tesselation scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging voronoi_tesselation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tesselation https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tessellation 0.22.0 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +woundhealing woundhealing_scratch_assay Tool to automate quantification of wound healing in high-throughput microscopy scratch assays Up-to-date https://git.embl.de/grp-cba/wound-healing-htm-screen Imaging Wound healing scratch assay image analysis bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/woundhealing 1.6.1 fiji-morpholibj 1.6.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +wsi_extract_top_view ip_wsi_extract_top_view WSI Extract Top View To update https://github.com/bmcv Imaging wsi_extract_top_view imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view 0.2-2 scikit-image 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 38 False diff --git a/communities/imaging/resources/tools_filtered_by_ts_categories.tsv b/communities/imaging/resources/tools_filtered_by_ts_categories.tsv new file mode 100644 index 00000000..16acb3d7 --- /dev/null +++ b/communities/imaging/resources/tools_filtered_by_ts_categories.tsv @@ -0,0 +1,70 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +2d_auto_threshold ip_threshold Automatic thresholding scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_auto_threshold imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_auto_threshold 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 6541 False +2d_feature_extraction ip_2d_feature_extraction 2D feature extraction scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_feature_extraction imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_feature_extraction 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 13760 False +2d_filter_segmentation_by_features ip_2d_filter_segmentation_by_features filter segmentation by rules galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging 2d_filter_segmentation_by_features imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_filter_segmentation_by_features 0.0.1-4 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 6834 False +2d_histogram_equalization ip_histogram_equalization 2d histogram equalization scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging 2d_histogram_equalization imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_histogram_equalization 0.18.1 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 656 False +2d_simple_filter ip_filter_standard 2d simple filter scipy To update https://github.com/bmcv Imaging 2d_simple_filter imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/2d_simple_filter 1.12.0 scipy 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 35 6156 False +3d_tensor_feature_dimension_reduction ip_3d_tensor_feature_dimension_reduction Dimensionality reduction for features (channels) of 3D tensor data using UMAP To update https://github.com/BMCV/galaxy-image-analysis Imaging 3d_tensor_feature_dimension_reduction imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/3d_tensor_feature_dimension_reduction 0.0.1 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +anisotropic_diffusion ip_anisotropic_diffusion Anisotropic image diffusion Up-to-date https://github.com/bmcv Imaging anisotropic_diffusion imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic-diffusion/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/anisotropic_diffusion 0.4.0 medpy 0.4.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 40 False +background_removal background_removal Background removal filters using scikit-image To update https://github.com/bmcv Imaging background_removal imgteam https://github.com/BMCV/galaxy-image-analysis/tools/background_removal https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/background_removal 0.24.0 scikit-image 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bfconvert ip_convertimage Convert image python-bioformats Up-to-date https://github.com/bmcv Imaging, Convert Formats bfconvert imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bfconvert 6.7.0 bftools 6.7.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 38 1523 False +bia-ftplinks bia_download Tool to query ftp links for study from bioimage archive To update Imaging bia_download bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/bia-ftplinks 0.1.0 wget 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 False +binary2labelimage ip_binary_to_labelimage Binary 2 label image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging binary2labelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binary2labelimage 0.5 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 1273 False +binaryimage2points ip_binaryimage_to_points Binary Image to Points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging binaryimage2points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/binaryimage2points 0.1-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 29 False +bioformats2raw bf2raw Convert image to OME-Zarr To update https://github.com/Euro-BioImaging Imaging, Convert Formats bioformats2raw imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/bioformats2raw 0.7.0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 False +bioimaging bioimage_inference Load model from BioImage.IO and make inferences pytorch pytorch pytorch PyTorch PyTorch is an optimized tensor library for deep learning using GPUs and CPUs. Machine learning, Computer science To update https://github.com/bgruening/galaxytools Imaging bioimage_inference bgruening https://github.com/bgruening/galaxytools/tree/recommendation_training/tools/bioimaging https://github.com/bgruening/galaxytools/tree/master/tools/bioimaging 2.3.1 python Machine learning 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cellpose cellpose Cellpose is an anatomical segmentation algorithm To update https://github.com/MouseLand/cellpose Imaging cellpose bgruening https://github.com/bgruening/galaxytools/tree/master/tools/cellpose https://github.com/bgruening/galaxytools/tree/master/tools/cellpose 3.0.10 cellpose 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cellprofiler cp_cellprofiler, cp_color_to_gray, cp_convert_objects_to_image, cp_display_data_on_image, cp_enhance_or_suppress_features, cp_export_to_spreadsheet, cp_gray_to_color, cp_identify_primary_objects, cp_image_math, cp_mask_image, cp_measure_granularity, cp_measure_image_area_occupied, cp_measure_image_intensity, cp_measure_image_quality, cp_measure_object_intensity, cp_measure_object_size_shape, cp_measure_texture, cp_overlay_outlines, cp_relate_objects, cp_save_images, cp_common, cp_tile, cp_track_objects cellProfiler wrapper CellProfiler CellProfiler cellprofiler CellProfiler Tool for quantifying data from biological images, particularly in high-throughput experiments. Quantification, Image analysis, Parsing Imaging, Microarray experiment, Genotype and phenotype To update Imaging cellprofiler bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler Quantification, Image analysis, Parsing Imaging, Microarray experiment, Genotype and phenotype 0 23 23 19 0 23 23 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 19 0 178 4614 False +cellprofiler_v4 cp_cellprofiler4 cellProfiler4 wrapper To update https://github.com/CellProfiler/CellProfiler Imaging cellprofiler4 bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/cellprofiler_v4 4.2.7 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 43 False +color-deconvolution ip_color_deconvolution Color-deconvolution methods galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging color_deconvolution imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/color-deconvolution 0.8-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 16 False +colorize_labels colorize_labels Colorize label map To update https://github.com/bmcv Imaging colorize_labels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/colorize_labels 3.2.1 networkx 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +concat_channels ip_concat_channels Concatenate images galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging concat_channels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/concat_channels 0.3-1 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 78 False +coordinates_of_roi ip_coordinates_of_roi Coordinates of ROI galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging coordinates_of_roi imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/coordinates_of_roi 0.0.4-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 16546 False +count_objects ip_count_objects Count Objects galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging count_objects imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/count_objects 0.0.5-2 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 25 272 False +curve_fitting ip_curve_fitting Polynomial curve fitting to data points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging curve_fitting imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/curve_fitting 0.0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 12 False +detection_viz ip_detection_viz Detection Visualization galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging detection_viz imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/detection_viz 0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 46 False +graphicsmagick graphicsmagick_image_compare, graphicsmagick_image_convert, graphicsmagick_image_montage Contains tools based on GraphicsMagick To update http://www.graphicsmagick.org Imaging graphicsmagick bgruening https://github.com/bgruening/galaxytools/new/gm/tools/image_processing/image_processing/ https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/graphicsmagick 1.3.44 graphicsmagick 1.3.26 1 0 3 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 43 2605 False +hyperstack_to_bleach_corrected_movie hyperstack_to_bleach_corrected_movie Generate blach corrected movie from hyperstack To update Imaging hyperstack_to_bleach_corrected_movie lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie https://github.com/lldelisle/tools-lldelisle/tree/master/tools/hyperstack_to_bleach_corrected_movie 20230328 Fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +image_info ip_imageinfo Extracts image metadata python-bioformats To update https://github.com/bmcv Imaging image_info imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_info 5.7.1 bftools 6.7.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 41 621 False +image_math image_math Process images using arithmetic expressions To update https://github.com/bmcv Imaging image_math imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_math 1.26.4 numpy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +image_registration_affine ip_image_registration Intensity-based Image Registration galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging image_registration_affine imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/image_registration_affine 0.0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 12 False +imagecoordinates_flipaxis imagecoordinates_flipaxis Flip coordinate axes galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging imagecoordinates_flipaxis imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/imagecoordinates_flipaxis 0.1-2 pandas Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 21825 False +imagej2 imagej2_adjust_threshold_binary, imagej2_analyze_particles_binary, imagej2_analyze_skeleton, imagej2_binary_to_edm, imagej2_bunwarpj_adapt_transform, imagej2_bunwarpj_align, imagej2_bunwarpj_compare_elastic, imagej2_bunwarpj_compare_elastic_raw, imagej2_bunwarpj_compare_raw, imagej2_bunwarpj_compose_elastic, imagej2_bunwarpj_compose_raw, imagej2_bunwarpj_compose_raw_elastic, imagej2_bunwarpj_convert_to_raw, imagej2_bunwarpj_elastic_transform, imagej2_bunwarpj_raw_transform, imagej2_create_image, imagej2_enhance_contrast, imagej2_find_edges, imagej2_find_maxima, imagej2_make_binary, imagej2_math, imagej2_noise, imagej2_shadows, imagej2_sharpen, imagej2_skeletonize3d, imagej2_smooth, imagej2_watershed_binary ImageJ2 is a new version of ImageJ for the next generation of multidimensionalimage data, with a focus on scientific imaging. imagej imagej imagej2 ImageJ2 It is a public domain Java image processing program, which was designed with an open architecture. Custom acquisition, analysis and processing plugins can be developed using ImageJ’s built-in editor and a Java compiler. User-written plugins make it possible to solve many image processing and analysis problems, from three-dimensional live-cell imaging, to radiological image processing, multiple imaging system data comparisons to automated hematology systems. Image analysis, Image annotation, Visualisation Imaging To update http://fiji.sc Imaging imagej2 imgteam https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/imagej2 20170530 Image analysis, Image annotation, Visualisation Imaging 0 0 27 0 0 0 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 27 0 26 1537 False +incucyte_stack_and_upload_omero incucyte_stack_and_upload_omero Combine images to stack and upload to the omero server To update Imaging incucyte_stack_and_upload_omero lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero https://github.com/lldelisle/tools-lldelisle/tree/master/tools/incucyte_stack_and_upload_omero 20231221 Fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +label_to_binary label_to_binary Convert label map to binary image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging label_to_binary imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/label_to_binary 1.26.4 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +labelimage2points ip_labelimage_to_points Label Image to Points galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging labelimage2points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/labelimage2points 0.2-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 36 False +landmark_registration ip_landmark_registration Landmark Registration galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging landmark_registration imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/landmark_registration 0.1.0-2 scikit-image Image analysis Imaging, Bioinformatics 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 857 False +mahotas-features ip_mahotas_features Compute image features using mahotas. mahotas-feature-computation To update https://github.com/luispedro/mahotas Imaging mahotas_features imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mahotas-features 0.7-2 mahotas 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 37 False +measure_gastruloids measureGastruloids Get the ROI coordinates around the gastruloids as well as measurements like Area, elongation index To update Imaging measure_gastruloids lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids https://github.com/lldelisle/tools-lldelisle/tree/master/tools/measure_gastruloids 20221216 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +mergeneighboursinlabelimage ip_merge_neighbours_in_label Merge Neighbours in Label Image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging mergeneighboursinlabelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/\mergeneighboursinlabelimage https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/mergeneighboursinlabelimage 0.3-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 25 False +morphological_operations morphological_operations Apply morphological operations to images scipy To update https://github.com/bmcv Imaging morphological_operations imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/morphological_operations 1.12.0 scipy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero omero_import, omero_metadata_import Import images and metadata into an OMERO.server using omero-py omero omero OMERO Client-server Java software for visualisation, management and analysis of biological microscope images. Image analysis Imaging, Data visualisation To update https://github.com/ome/omero-py/ Imaging omero_upload ufz https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/omero 5.18.0 omero-py 5.11.1 Image analysis Imaging, Data visualisation 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_clean_rois_tables omero_clean_rois_tables Remove all ROIs and all tables on OMERO associated to an omero object and recursively up and down To update Imaging omero_clean_rois_tables lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_clean_rois_tables 20230623 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_get_children_ids omero_get_children_ids Get omero id of children of an omero object id To update Imaging omero_get_children_ids lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_children_ids 0.2.0 omero-py 5.11.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_get_full_images omero_get_full_images Get full images from omero To update Imaging omero_get_full_images lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_get_full_images 20240521 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_hyperstack_to_fluo_measurements_on_gastruloid omero_hyperstack_to_fluo_measurements_on_gastruloid Analyse Hyperstack on OMERO server to measure fluorescence levels To update Imaging omero_hyperstack_to_fluo_measurements_on_gastruloid lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_fluo_measurements_on_gastruloid 20230809 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +omero_hyperstack_to_gastruloid_measurements omero_hyperstack_to_gastruloid_measurements Analyse Hyperstack on OMERO server to segment gastruloid and compute measurements To update Imaging omero_hyperstack_to_gastruloid_measurements lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements https://github.com/lldelisle/tools-lldelisle/tree/master/tools/omero_hyperstack_to_gastruloid_measurements 20240214 fiji 20231211 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +orientationpy orientationpy Compute image orientation orientationj Up-to-date https://github.com/bmcv Imaging orientationpy imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/orientationpy 0.2.0.4 orientationpy 0.2.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +overlay_images ip_overlay_images Overlay two images galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging overlay_images imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/overlay_images 0.0.4 scikit-image Image analysis Imaging, Bioinformatics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 60 False +permutate_axis ip_permutate_axis Permutates axes galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging permutate_axis imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/permutate_axis 0.2-2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 42 False +plantseg plantseg Tool for cell instance aware segmentation in densely packed 3D volumetric images plantseg plantseg PlantSeg Accurate and Versatile 3D Segmentation of Plant Tissues at Cellular Resolution.PlantSeg is a tool for cell instance aware segmentation in densely packed 3D volumetric images. The pipeline uses a two stages segmentation strategy (Neural Network + Segmentation). The pipeline is tuned for plant cell tissue acquired with confocal and light sheet microscopy. Pre-trained models are provided. Network analysis, Quantification, Microscope image visualisation Plant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopy To update https://github.com/bmcv Imaging plantseg imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/plantseg 1.8.1 plant-seg Network analysis, Quantification, Microscope image visualisation Plant biology, Bioimaging, Light microscopy, Machine learning, Electron microscopy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +points2binaryimage ip_points_to_binaryimage Points to Binary Image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging points2binaryimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2binaryimage 0.2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 41 False +points2labelimage ip_points_to_label Points to label image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging points2labelimage imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points2labelimage 0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 31 False +points_association_nn ip_points_association_nn Association of points in consecutive frames galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging points_association_nn imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/points_association_nn 0.0.3-2 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 29 False +projective_transformation ip_projective_transformation Projective transformation galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging projective_transformation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation 0.1.2 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 85 False +projective_transformation_points ip_projective_transformation_points Projective transformation of ROIs defined by pixel (point) coordinates galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging projective_transformation_points imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/projective_transformation_points 0.1.1 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 21343 False +qupath_roi_splitter qupath_roi_splitter Split ROI coordinates of QuPath TMA annotation by cell type To update https://github.com/npinter/ROIsplitter Imaging qupath_roi_splitter galaxyp hhttps://github.com/npinter/ROIsplitter https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/qupath_roi_splitter 0.3.1 geojson 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 59 False +repeat_channels repeat_channels Convert single-channel to multi-channel image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging repeat_channels imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/repeat_channels 1.26.4 numpy Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +rfove rfove Perform segmentation region-based fitting of overlapping ellipses rfove rfove RFOVE RFOVE (Region-based Fitting of Overlapping Ellipses and its Application to Cells Segmentation) is a MATLAB script for performing image segmentation on cells. Image analysis Cell biology, Biomedical science, Imaging To update https://sites.google.com/site/costaspanagiotakis/research/cs Imaging rfove imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/rfove 2023.11.12 Image analysis Cell biology, Biomedical science, Imaging 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 False +scale_image ip_scale_image Scale image scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging scale_image imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/scale_image 0.18.3 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 512 False +segmetrics ip_segmetrics Image segmentation and object detection performance measures segmetrics segmetrics segmetrics SegMetrics Image segmentation and object detection performance measures Image analysis To update https://github.com/bmcv Imaging segmetrics imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/segmetrics 1.4 segmetrics 1.5 Image analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 3 False +slice_image ip_slice_image Slice image galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging slice_image imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/slice_image 0.3-4 scikit-image Image analysis Imaging, Bioinformatics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 102 False +split_labelmap ip_split_labelmap Split Labelmaps galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/bmcv Imaging split_labelmap imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmaps/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/split_labelmap 0.2-3 scikit-image Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 42 False +spot_detection_2d ip_spot_detection_2d Spot detection in 2D image sequence galaxy_image_analysis galaxy_image_analysis Galaxy Image Analysis Galaxy Image Analysis is mainly developed by the Biomedical Computer Vision (BMCV) Group at Heidelberg University. Its dedication is to provide tools for image analysis and image processing for the Galaxy platform. Image analysis Imaging, Bioinformatics To update https://github.com/BMCV/galaxy-image-analysis Imaging spot_detection_2d imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/spot_detection_2d 0.0.3-2 imageio Image analysis Imaging, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 16 False +spyboat spyboat Wavelet analysis for 3d-image stacks To update http://github.com/tensionhead/spyboat Imaging, Graphics spyboat iuc https://github.com/galaxyproject/tools-iuc/tree/master/packages/spyboat https://github.com/galaxyproject/tools-iuc/tree/main/tools/spyboat 0.1.2 spyboat 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 67 False +superdsm ip_superdsm Globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images superdsm superdsm superdsm SuperDSM SuperDSM is a globally optimal segmentation method based on superadditivity and deformable shape models for cell nuclei in fluorescence microscopy images and beyond. Image analysis To update https://github.com/bmcv Imaging superdsm imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/superdsm 0.2.0 superdsm 0.3.0 Image analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 16 False +upload_roi_and_measures_to_omero uploadROIandMeasuresToOMERO Upload the ROI coordinates and the measurements to the omero server To update Imaging upload_roi_and_measures_to_omero lldelisle https://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero https://github.com/lldelisle/tools-lldelisle/tree/master/tools/upload_roi_and_measures_to_omero 0.0.5 omero-py 5.11.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +visceral-evaluatesegmentation ip_visceral_evaluatesegmentation Visceral Project - Evaluate Segmentation Tool evaluatesegmentation-tool To update https://github.com/bmcv Imaging visceral_evaluatesegmentation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/visceral-evaluatesegmentation 0.5-2 visceral-evaluatesegmentation 2015.07.03 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 25 False +voronoi_tessellation voronoi_tessellation Compute Voronoi tesselation scikit-image scikit-image scikit-image scikit-image Scikit-image contains image processing algorithms for SciPy, including IO, morphology, filtering, warping, color manipulation, object detection, etc. Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language To update https://github.com/bmcv Imaging voronoi_tesselation imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tesselation https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/voronoi_tessellation 0.22.0 scikit-image Image analysis, Image annotation, Visualisation, Data handling Imaging, Software engineering, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +woundhealing woundhealing_scratch_assay Tool to automate quantification of wound healing in high-throughput microscopy scratch assays Up-to-date https://git.embl.de/grp-cba/wound-healing-htm-screen Imaging Wound healing scratch assay image analysis bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/image_processing/woundhealing 1.6.1 fiji-morpholibj 1.6.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +wsi_extract_top_view ip_wsi_extract_top_view WSI Extract Top View To update https://github.com/bmcv Imaging wsi_extract_top_view imgteam https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view/ https://github.com/BMCV/galaxy-image-analysis/tree/master/tools/wsi_extract_top_view 0.2-2 scikit-image 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 38 False diff --git a/communities/imaging/resources/tools_wordcloud.png b/communities/imaging/resources/tools_wordcloud.png new file mode 100644 index 00000000..f1b1d5ef Binary files /dev/null and b/communities/imaging/resources/tools_wordcloud.png differ diff --git a/communities/index.html b/communities/index.html new file mode 100644 index 00000000..265f3afb --- /dev/null +++ b/communities/index.html @@ -0,0 +1,59 @@ + + + + + + Simple HTML Page + + + +
+

Galaxy ressources from the Galaxy Codex

+

Tools

+ + + +

Training

+ + +
+ + diff --git a/data/communities/machine-learning/categories b/communities/machine-learning/metadata/categories similarity index 100% rename from data/communities/machine-learning/categories rename to communities/machine-learning/metadata/categories diff --git a/data/communities/machine-learning/tool_status.tsv b/communities/machine-learning/metadata/tool_status.tsv similarity index 100% rename from data/communities/machine-learning/tool_status.tsv rename to communities/machine-learning/metadata/tool_status.tsv diff --git a/data/communities/machine-learning/tutorial_tags b/communities/machine-learning/metadata/tutorial_tags similarity index 100% rename from data/communities/machine-learning/tutorial_tags rename to communities/machine-learning/metadata/tutorial_tags diff --git a/communities/machine-learning/resources/index.html b/communities/machine-learning/resources/index.html new file mode 100644 index 00000000..95a745f2 --- /dev/null +++ b/communities/machine-learning/resources/index.html @@ -0,0 +1,59 @@ + + + + + + Simple HTML Page + + + +
+

Machine-learning ressources from the Galaxy Codex

+

Tools

+ + + +

Training

+ + +
+ + diff --git a/communities/machine-learning/resources/tools.html b/communities/machine-learning/resources/tools.html new file mode 100644 index 00000000..70da80fe --- /dev/null +++ b/communities/machine-learning/resources/tools.html @@ -0,0 +1,811 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandGalaxy wrapper idGalaxy tool idsDescriptionbio.tool idbio.tool idsbiiibio.tool namebio.tool descriptionEDAM operationEDAM topicStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper sourceGalaxy wrapper parsed folderGalaxy wrapper versionConda idConda versionEDAM operation (no superclasses)EDAM topic (no superclasses)Available on UseGalaxy.org (Main)Available on UseGalaxy.org.auAvailable on UseGalaxy.euAvailable on UseGalaxy.frTools available on UseGalaxy.org (Main)Tools available on UseGalaxy.org.auTools available on UseGalaxy.euTools available on UseGalaxy.frTools available on APOSTLTools available on BF2I-MAPTools available on BioBixTools available on CIRM-CFBPTools available on Center for Phage Technology (CPT)Tools available on ChemFlowTools available on Coloc-statsTools available on CoralSNPTools available on CropGalaxyTools available on DintorTools available on FreeBioinfoTools available on GASLINITools available on Galaxy@AuBiTools available on Galaxy@PasteurTools available on GalaxyTrakrTools available on Genomic HyperbrowserTools available on GigaGalaxyTools available on HyPhy HIV NGS ToolsTools available on IPK Galaxy Blast SuiteTools available on ImmPort GalaxyTools available on InteractoMIXTools available on MISSISSIPPITools available on Mandoiu LabTools available on MiModD NacreousMapTools available on OqtansTools available on PalfinderTools available on PepSimiliTools available on PhagePromotorTools available on UseGalaxy.beTools available on UseGalaxy.czTools available on UseGalaxy.noTools available on Viral Variant Visualizer (VVV)No. of tool users (2022-2023) (usegalaxy.eu)Total tool usage (usegalaxy.eu)Deprecated
biomodelsMLbiomodels_biomd0000001066, biomodels_biomd0000001076Wrappers for tools to bring BioModels AI models into Galaxy.To updatehttps://www.ebi.ac.uk/biomodels/Machine Learningbiomodelsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/toolshttps://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML1.10020002000000000000000000000000000000000013
chatgptchatgpt_openai_apiUsing the OpenAI GPT models to generate text based on user input.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/chatgptMachine Learningchatgpt_openai_apibgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/chatgpthttps://github.com/bgruening/galaxytools/tree/master/tools/chatgpt2024python001000100000000000000000000000000000000000
chopin2chopin2Domain-Agnostic Supervised Learning with Hyperdimensional ComputingTo updatehttps://github.com/cumbof/chopin2Machine Learningchopin2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chopin2https://github.com/galaxyproject/tools-iuc/tree/main/tools/chopin21.0.9.post1chopin2100010000000000000000000000000000000000000
decontaminatordecontaminatorDeep Learning method for novel virus detection in sequencing datadecontaminatordecontaminatordecontaminatorDecontaminator is a deep learning helping tool that filters out phage or fungi contigs from plant virome RNAseq assemblies.FilteringMetagenomicsTo updatehttps://github.com/cbib/decontaminatorMachine Learningdecontaminatoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/decontaminatorhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/decontaminator1.0.0numpyFilteringMetagenomics00100010000000000000000000000000000001001599
deepmicrodeepmicroRepresentation learning and classification frameworkDeepMicroDeepMicroDeepMicroDeep representation learning for disease prediction based on microbiome data.DeepMicro is a deep representation learning framework exploiting various autoencoders to learn robust low-dimensional representations from high-dimensional data and training classification models based on the learned representation.Essential dynamics, Splitting, Community profilingMicrobial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeuticsUp-to-datehttps://github.com/paulzierep/DeepMicroMachine Learningdeepmicroiuchttps://github.com/paulzierep/DeepMicrohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/deepmicro1.4deepmicro1.4Essential dynamics, SplittingMicrobial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeutics00100010000000000000000000000000000001003501
flexynesisflexynesisThis is a deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction.Up-to-datehttps://github.com/BIMSBbioinfo/flexynesis/tree/mainMachine Learning, Statistics, Systems Biologyflexynesisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesishttps://github.com/bgruening/galaxytools/tree/master/tools/flexynesis0.2.10flexynesis0.2.10001000100000000000000000000000000000000000
sklearnsklearn_mlxtend_association_rules, sklearn_clf_metrics, sklearn_discriminant_classifier, sklearn_ensemble, sklearn_estimator_attributes, sklearn_feature_selection, sklearn_fitted_model_eval, sklearn_generalized_linear, keras_batch_models, keras_model_builder, keras_model_config, keras_train_and_eval, sklearn_label_encoder, sklearn_lightgbm, ml_visualization_ex, model_prediction, sklearn_model_validation, sklearn_nn_classifier, sklearn_numeric_clustering, sklearn_pairwise_metrics, sklearn_pca, sklearn_build_pipeline, sklearn_data_preprocess, sklearn_regression_metrics, sklearn_sample_generator, sklearn_searchcv, sklearn_model_fit, scipy_sparse, stacking_ensemble_models, sklearn_svm_classifier, sklearn_to_categorical, sklearn_train_test_eval, sklearn_train_test_splitMachine Learning tool suite from Scikit-learnTo updatehttp://scikit-learn.orgMachine Learning, Statisticssklearnbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/sklearnhttps://github.com/bgruening/galaxytools/tree/master/tools/sklearn1.0.11.030143116301431160000000000000000000000000000031270958113932
tool_recommendation_modelcreate_tool_recommendation_modelCreate model to recommend toolsTo updatehttps://github.com/bgruening/galaxytoolsMachine Learningcreate_tool_recommendation_modelbgrueninghttps://github.com/bgruening/galaxytools/tree/recommendation_training/tools/tool_recommendation_modelhttps://github.com/bgruening/galaxytools/tree/master/tools/tool_recommendation_model0.0.5python101010100000000000000000000000000000011015445
virhuntervirhunterDeep Learning method for novel virus detection in sequencing datavirhuntervirhunterVirHunterVirHunter is a deep learning method that uses Convolutional Neural Networks (CNNs) and a Random Forest Classifier to identify viruses in sequencing datasets. More precisely, VirHunter classifies previously assembled contigs as viral, host, and bacterial (contamination).Sequence classificationVirologyTo updatehttps://github.com/cbib/virhunterMachine Learningvirhunteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/VirHunterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/virhunter1.0.0numpySequence classificationVirology001000100000000000000000000000000000010040234
whisperwhisperTranscribe audio or video files to text using the OpenAI Whisper.To updatehttps://github.com/bgruening/galaxytools/tree/master/tools/whisperMachine Learningwhisperbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/whisperhttps://github.com/bgruening/galaxytools/tree/master/tools/whisper20231117001000100000000000000000000000000000000000
+ +
\ No newline at end of file diff --git a/communities/machine-learning/resources/tools.tsv b/communities/machine-learning/resources/tools.tsv new file mode 100644 index 00000000..39af4e6f --- /dev/null +++ b/communities/machine-learning/resources/tools.tsv @@ -0,0 +1,12 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +biomodelsML biomodels_biomd0000001066, biomodels_biomd0000001076 Wrappers for tools to bring BioModels AI models into Galaxy. To update https://www.ebi.ac.uk/biomodels/ Machine Learning biomodels bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML 1.1 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 False +chatgpt chatgpt_openai_api Using the OpenAI GPT models to generate text based on user input. To update https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt Machine Learning chatgpt_openai_api bgruening https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt 2024 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +chopin2 chopin2 Domain-Agnostic Supervised Learning with Hyperdimensional Computing To update https://github.com/cumbof/chopin2 Machine Learning chopin2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chopin2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/chopin2 1.0.9.post1 chopin2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +decontaminator decontaminator Deep Learning method for novel virus detection in sequencing data decontaminator decontaminator decontaminator Decontaminator is a deep learning helping tool that filters out phage or fungi contigs from plant virome RNAseq assemblies. Filtering Metagenomics To update https://github.com/cbib/decontaminator Machine Learning decontaminator iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/decontaminator https://github.com/galaxyproject/tools-iuc/tree/main/tools/decontaminator 1.0.0 numpy Filtering Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 15 99 False +deepmicro deepmicro Representation learning and classification framework DeepMicro DeepMicro DeepMicro Deep representation learning for disease prediction based on microbiome data.DeepMicro is a deep representation learning framework exploiting various autoencoders to learn robust low-dimensional representations from high-dimensional data and training classification models based on the learned representation. Essential dynamics, Splitting, Community profiling Microbial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeutics Up-to-date https://github.com/paulzierep/DeepMicro Machine Learning deepmicro iuc https://github.com/paulzierep/DeepMicro https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepmicro 1.4 deepmicro 1.4 Essential dynamics, Splitting Microbial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeutics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 501 False +flexynesis flexynesis This is a deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction. Up-to-date https://github.com/BIMSBbioinfo/flexynesis/tree/main Machine Learning, Statistics, Systems Biology flexynesis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis https://github.com/bgruening/galaxytools/tree/master/tools/flexynesis 0.2.10 flexynesis 0.2.10 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +jupyter_job run_jupyter_job Run jupyter notebook script in Galaxy To update Machine Learning run_jupyter_job bgruening https://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job https://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job 0.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 30 True False False +sklearn sklearn_mlxtend_association_rules, sklearn_clf_metrics, sklearn_discriminant_classifier, sklearn_ensemble, sklearn_estimator_attributes, sklearn_feature_selection, sklearn_fitted_model_eval, sklearn_generalized_linear, keras_batch_models, keras_model_builder, keras_model_config, keras_train_and_eval, sklearn_label_encoder, sklearn_lightgbm, ml_visualization_ex, model_prediction, sklearn_model_validation, sklearn_nn_classifier, sklearn_numeric_clustering, sklearn_pairwise_metrics, sklearn_pca, sklearn_build_pipeline, sklearn_data_preprocess, sklearn_regression_metrics, sklearn_sample_generator, sklearn_searchcv, sklearn_model_fit, scipy_sparse, stacking_ensemble_models, sklearn_svm_classifier, sklearn_to_categorical, sklearn_train_test_eval, sklearn_train_test_split Machine Learning tool suite from Scikit-learn To update http://scikit-learn.org Machine Learning, Statistics sklearn bgruening https://github.com/bgruening/galaxytools/tree/master/tools/sklearn https://github.com/bgruening/galaxytools/tree/master/tools/sklearn 1.0.11.0 30 14 31 16 30 14 31 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 27 0 958 113932 False +tool_recommendation_model create_tool_recommendation_model Create model to recommend tools To update https://github.com/bgruening/galaxytools Machine Learning create_tool_recommendation_model bgruening https://github.com/bgruening/galaxytools/tree/recommendation_training/tools/tool_recommendation_model https://github.com/bgruening/galaxytools/tree/master/tools/tool_recommendation_model 0.0.5 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 445 False +virhunter virhunter Deep Learning method for novel virus detection in sequencing data virhunter virhunter VirHunter VirHunter is a deep learning method that uses Convolutional Neural Networks (CNNs) and a Random Forest Classifier to identify viruses in sequencing datasets. More precisely, VirHunter classifies previously assembled contigs as viral, host, and bacterial (contamination). Sequence classification Virology To update https://github.com/cbib/virhunter Machine Learning virhunter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/VirHunter https://github.com/galaxyproject/tools-iuc/tree/main/tools/virhunter 1.0.0 numpy Sequence classification Virology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 40 234 False +whisper whisper Transcribe audio or video files to text using the OpenAI Whisper. To update https://github.com/bgruening/galaxytools/tree/master/tools/whisper Machine Learning whisper bgruening https://github.com/bgruening/galaxytools/tree/master/tools/whisper https://github.com/bgruening/galaxytools/tree/master/tools/whisper 20231117 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False diff --git a/communities/machine-learning/resources/tools_filtered_by_ts_categories.tsv b/communities/machine-learning/resources/tools_filtered_by_ts_categories.tsv new file mode 100644 index 00000000..39af4e6f --- /dev/null +++ b/communities/machine-learning/resources/tools_filtered_by_ts_categories.tsv @@ -0,0 +1,12 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +biomodelsML biomodels_biomd0000001066, biomodels_biomd0000001076 Wrappers for tools to bring BioModels AI models into Galaxy. To update https://www.ebi.ac.uk/biomodels/ Machine Learning biomodels bgruening https://github.com/bgruening/galaxytools/tree/master/tools https://github.com/bgruening/galaxytools/tree/master/tools/biomodelsML 1.1 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 False +chatgpt chatgpt_openai_api Using the OpenAI GPT models to generate text based on user input. To update https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt Machine Learning chatgpt_openai_api bgruening https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt https://github.com/bgruening/galaxytools/tree/master/tools/chatgpt 2024 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +chopin2 chopin2 Domain-Agnostic Supervised Learning with Hyperdimensional Computing To update https://github.com/cumbof/chopin2 Machine Learning chopin2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chopin2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/chopin2 1.0.9.post1 chopin2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +decontaminator decontaminator Deep Learning method for novel virus detection in sequencing data decontaminator decontaminator decontaminator Decontaminator is a deep learning helping tool that filters out phage or fungi contigs from plant virome RNAseq assemblies. Filtering Metagenomics To update https://github.com/cbib/decontaminator Machine Learning decontaminator iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/decontaminator https://github.com/galaxyproject/tools-iuc/tree/main/tools/decontaminator 1.0.0 numpy Filtering Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 15 99 False +deepmicro deepmicro Representation learning and classification framework DeepMicro DeepMicro DeepMicro Deep representation learning for disease prediction based on microbiome data.DeepMicro is a deep representation learning framework exploiting various autoencoders to learn robust low-dimensional representations from high-dimensional data and training classification models based on the learned representation. Essential dynamics, Splitting, Community profiling Microbial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeutics Up-to-date https://github.com/paulzierep/DeepMicro Machine Learning deepmicro iuc https://github.com/paulzierep/DeepMicro https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepmicro 1.4 deepmicro 1.4 Essential dynamics, Splitting Microbial ecology, Machine learning, Pathology, Public health and epidemiology, Allergy, clinical immunology and immunotherapeutics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 501 False +flexynesis flexynesis This is a deep-learning based multi-omics bulk sequencing data integration suite with a focus on (pre-)clinical endpoint prediction. Up-to-date https://github.com/BIMSBbioinfo/flexynesis/tree/main Machine Learning, Statistics, Systems Biology flexynesis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flexynesis https://github.com/bgruening/galaxytools/tree/master/tools/flexynesis 0.2.10 flexynesis 0.2.10 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +jupyter_job run_jupyter_job Run jupyter notebook script in Galaxy To update Machine Learning run_jupyter_job bgruening https://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job https://github.com/bgruening/galaxytools/tree/master/tools/jupyter_job 0.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 30 True False False +sklearn sklearn_mlxtend_association_rules, sklearn_clf_metrics, sklearn_discriminant_classifier, sklearn_ensemble, sklearn_estimator_attributes, sklearn_feature_selection, sklearn_fitted_model_eval, sklearn_generalized_linear, keras_batch_models, keras_model_builder, keras_model_config, keras_train_and_eval, sklearn_label_encoder, sklearn_lightgbm, ml_visualization_ex, model_prediction, sklearn_model_validation, sklearn_nn_classifier, sklearn_numeric_clustering, sklearn_pairwise_metrics, sklearn_pca, sklearn_build_pipeline, sklearn_data_preprocess, sklearn_regression_metrics, sklearn_sample_generator, sklearn_searchcv, sklearn_model_fit, scipy_sparse, stacking_ensemble_models, sklearn_svm_classifier, sklearn_to_categorical, sklearn_train_test_eval, sklearn_train_test_split Machine Learning tool suite from Scikit-learn To update http://scikit-learn.org Machine Learning, Statistics sklearn bgruening https://github.com/bgruening/galaxytools/tree/master/tools/sklearn https://github.com/bgruening/galaxytools/tree/master/tools/sklearn 1.0.11.0 30 14 31 16 30 14 31 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 27 0 958 113932 False +tool_recommendation_model create_tool_recommendation_model Create model to recommend tools To update https://github.com/bgruening/galaxytools Machine Learning create_tool_recommendation_model bgruening https://github.com/bgruening/galaxytools/tree/recommendation_training/tools/tool_recommendation_model https://github.com/bgruening/galaxytools/tree/master/tools/tool_recommendation_model 0.0.5 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 445 False +virhunter virhunter Deep Learning method for novel virus detection in sequencing data virhunter virhunter VirHunter VirHunter is a deep learning method that uses Convolutional Neural Networks (CNNs) and a Random Forest Classifier to identify viruses in sequencing datasets. More precisely, VirHunter classifies previously assembled contigs as viral, host, and bacterial (contamination). Sequence classification Virology To update https://github.com/cbib/virhunter Machine Learning virhunter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/VirHunter https://github.com/galaxyproject/tools-iuc/tree/main/tools/virhunter 1.0.0 numpy Sequence classification Virology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 40 234 False +whisper whisper Transcribe audio or video files to text using the OpenAI Whisper. To update https://github.com/bgruening/galaxytools/tree/master/tools/whisper Machine Learning whisper bgruening https://github.com/bgruening/galaxytools/tree/master/tools/whisper https://github.com/bgruening/galaxytools/tree/master/tools/whisper 20231117 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False diff --git a/communities/machine-learning/resources/tools_wordcloud.png b/communities/machine-learning/resources/tools_wordcloud.png new file mode 100644 index 00000000..d6347257 Binary files /dev/null and b/communities/machine-learning/resources/tools_wordcloud.png differ diff --git a/data/communities/microgalaxy/categories b/communities/microgalaxy/metadata/categories similarity index 100% rename from data/communities/microgalaxy/categories rename to communities/microgalaxy/metadata/categories diff --git a/data/communities/microgalaxy/tool_status.tsv b/communities/microgalaxy/metadata/tool_status.tsv similarity index 100% rename from data/communities/microgalaxy/tool_status.tsv rename to communities/microgalaxy/metadata/tool_status.tsv diff --git a/data/communities/microgalaxy/tutorial_tags b/communities/microgalaxy/metadata/tutorial_tags similarity index 100% rename from data/communities/microgalaxy/tutorial_tags rename to communities/microgalaxy/metadata/tutorial_tags diff --git a/communities/microgalaxy/resources/index.html b/communities/microgalaxy/resources/index.html new file mode 100644 index 00000000..aad91697 --- /dev/null +++ b/communities/microgalaxy/resources/index.html @@ -0,0 +1,59 @@ + + + + + + Simple HTML Page + + + +
+

microGalaxy ressources from the Galaxy Codex

+

Tools

+ + + +

Training

+ + +
+ + diff --git a/communities/microgalaxy/resources/test_tutorials.tsv b/communities/microgalaxy/resources/test_tutorials.tsv new file mode 100644 index 00000000..77c42b89 --- /dev/null +++ b/communities/microgalaxy/resources/test_tutorials.tsv @@ -0,0 +1,16 @@ +Topic Title Link EDAM topic EDAM operation Creation Last modification Version Tutorial Slides Video Workflows Tools Servers with precise tool versions Servers with tool but different versions Feedback number Feedback mean note Visitors Page views Visit duration Video views +Microbiome Analyses of metagenomics data - The global picture https://training.galaxyproject.org//topics/microbiome/tutorials/general-tutorial/tutorial.html Metagenomics, Microbial ecology, Taxonomy, Sequence analysis Sequencing quality control, DNA barcoding, Sequence read processing, Taxonomic classification, Phylogenetic analysis, Sequence clustering, Visualisation 2017-06-22 2024-08-09 4 True False False True taxonomy_krona_chart, mothur_pre_cluster, mothur_filter_seqs, metaphlan2, humann2_regroup_table, mothur_make_biom, mothur_count_seqs, mothur_summary_seqs, humann2_renorm_table, krona-text, mothur_align_seqs, mothur_cluster_split, mothur_make_group, mothur_screen_seqs, mothur_unique_seqs, mothur_classify_otu, metaphlan2krona, mothur_merge_files, humann2, mothur_make_shared, mothur_classify_seqs UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 0 3233 4381 2.75 0 +Microbiome Identification of the micro-organisms in a beer using Nanopore sequencing https://training.galaxyproject.org//topics/microbiome/tutorials/beer-data-analysis/tutorial.html Metagenomics, Microbial ecology, Taxonomy, Sequence analysis Statistical calculation, Taxonomic classification, Sequencing quality control, Aggregation, Sequence composition calculation, Sequence contamination filtering, Visualisation 2022-09-29 2024-06-14 4 True False False True porechop, fastqc, taxonomy_krona_chart, krakentools_kreport2krona, Filter1, kraken2, fastp GalaxyTrakr, UseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.au UseGalaxy.cz 0 1155 1813 2.85 317 +Microbiome Metatranscriptomics analysis using microbiome RNA-seq data https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics/tutorial.html Metatranscriptomics, Microbial ecology, Taxonomy, Function analysis, Sequence analysis Statistical calculation, Species frequency estimation, Primer removal, Read pre-processing, Sequence trimming, Sequence similarity search, Taxonomic classification, Phylogenetic tree editing, Phylogenetic analysis, Sequence composition calculation, Phylogenetic tree visualisation, Phylogenetic tree analysis, Validation, Sequencing quality control, Sequence comparison, Conversion, Sequence alignment analysis, Nucleic acid sequence analysis, Phylogenetic inference, Visualisation 2019-11-21 2024-06-14 4 True True False True taxonomy_krona_chart, graphlan, Cut1, humann_unpack_pathways, humann_rename_table, cutadapt, graphlan_annotate, humann_renorm_table, Grep1, multiqc, humann_split_stratified_table, fastq_paired_end_interlacer, bg_sortmerna, humann_regroup_table, fastqc, combine_metaphlan2_humann2, metaphlan, export2graphlan, humann, tp_find_and_replace UseGalaxy.org (Main) UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 2091207 5791768 4.2 1865 +Microbiome Antibiotic resistance detection https://training.galaxyproject.org//topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.html Metagenomic sequencing, Public health and epidemiology, Metagenomics, Microbiology, Infectious disease, Sequence analysis, Antimicrobial Resistance Mapping assembly, Scatter plot plotting, Sequence analysis, Sequence assembly visualisation, Box-Whisker plot plotting, Genome assembly, Aggregation, De-novo assembly, Pairwise sequence alignment 2019-06-25 2024-06-14 4 True False False True racon, PlasFlow, bandage_image, gfa_to_fa, unicycler, minimap2, miniasm, nanoplot, staramr_search UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au 0 1197 1830 3.9833333333333334 808 +Microbiome Building an amplicon sequence variant (ASV) table from 16S data using DADA2 https://training.galaxyproject.org//topics/microbiome/tutorials/dada-16S/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Analysis, Deposition, Variant calling, DNA barcoding, Visualisation 2024-06-05 2024-08-09 7 True False False True __UNZIP_COLLECTION__, collection_element_identifiers, dada2_makeSequenceTable, dada2_seqCounts, tp_replace_in_column, dada2_plotQualityProfile, cat1, dada2_learnErrors, dada2_filterAndTrim, __SORTLIST__, dada2_dada, Add_a_column1, dada2_removeBimeraDenovo, Grouping1, tp_replace_in_line, dada2_mergePairs, interactive_tool_phyloseq, tp_head_tool, dada2_assignTaxonomyAddspecies, phyloseq_from_dada2 UseGalaxy.eu 0 787 1075 2.0833333333333335 0 +Microbiome 16S Microbial analysis with Nanopore data https://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Statistical calculation, Taxonomic classification, Validation, Sequencing quality control, Sequence composition calculation, Sequence contamination filtering, Visualisation 2020-11-24 2024-07-31 5 True False False True porechop, fastqc, taxonomy_krona_chart, multiqc, datamash_reverse, kraken2, fastp, tp_replace_in_line, Remove beginning1 UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au GalaxyTrakr, UseGalaxy.cz 0 2500 3518 2.783333333333333 0 +Microbiome Assembly of metagenomic sequencing data https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-assembly/tutorial.html Metagenomics, Sequence assembly Statistical calculation, Sequence file editing, Data handling, Sequence assembly validation, Sequencing quality control, Sequence contamination filtering, Sequence assembly visualisation, Primer removal, Read pre-processing, Sequence trimming, Variant calling, Local alignment, Sequence alignment analysis, Formatting, Genome assembly, Sequence composition calculation, Read mapping, Visualisation 2022-12-05 2024-06-14 4 True False False True quast, fastqc, random_lines1, bg_uniq, bamtools, bandage_image, bandage_info, bowtie2, metaspades, megahit_contig2fastg, cutadapt, collection_column_join, tp_cat, megahit, ngsutils_bam_filter, filter_tabular, seqtk_subseq, coverm_contig UseGalaxy.cz, UseGalaxy.eu 0 1455 2033 2.6666666666666665 722 +Microbiome Pathogen detection from (direct Nanopore) sequencing data using Galaxy - Foodborne Edition https://training.galaxyproject.org//topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.html Metagenomics, Public health and epidemiology, Taxonomy, Sequence assembly, Pathology, Sequence analysis Visualisation, Statistical calculation, Cross-assembly, Multiple sequence alignment, Scatter plot plotting, Phylogenetic tree generation, Base-calling, Mapping, Taxonomic classification, Genome assembly, Sequence composition calculation, De-novo assembly, Pairwise sequence alignment, Phylogenetic tree analysis, Mapping assembly, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Validation, Sequencing quality control, Phylogenetic tree reconstruction, Sequence contamination filtering, Variant calling, Data handling, Sequence assembly visualisation, Antimicrobial resistance prediction, Sequence alignment analysis, Aggregation, Phylogenetic tree generation (from molecular sequences), Multilocus sequence typing, Box-Whisker plot plotting, Sequence assembly 2023-01-26 2024-08-22 10 True False False True porechop, Count1, taxonomy_krona_chart, collection_element_identifiers, krakentools_extract_kraken_reads, krakentools_kreport2krona, ggplot2_heatmap, samtools_fastx, Cut1, add_line_to_file, tp_replace_in_column, param_value_from_file, abricate, medaka_consensus_pipeline, tp_sorted_uniq, barchart_gnuplot, Paste1, newick_display, nanoplot, tp_multijoin_tool, Remove beginning1, Grep1, fasta_merge_files_and_filter_unique_sequences, multiqc, Add_a_column1, bcftools_norm, collection_column_join, fasttree, Grouping1, collapse_dataset, fastp, split_file_to_collection, CONVERTER_gz_to_uncompressed, fastqc, samtools_coverage, regexColumn1, clustalw, bamtools_split_mapped, fasta2tab, __FILTER_FAILED_DATASETS__, minimap2, samtools_depth, snpSift_extractFields, kraken2, table_compute, bcftools_consensus, tp_split_on_column, snpSift_filter, tp_head_tool, bandage_image, tab2fasta, bedtools_getfastabed, tp_cut_tool, clair3, flye, __BUILD_LIST__, __FILTER_EMPTY_DATASETS__, tp_find_and_replace, mlst, regex1, compose_text_param UseGalaxy.eu 0 1815 2725 3.1 531 +Microbiome Taxonomic Profiling and Visualization of Metagenomic Data https://training.galaxyproject.org//topics/microbiome/tutorials/taxonomic-profiling/tutorial.html Metagenomics, Microbial ecology, Taxonomy, Sequence analysis Statistical calculation, Taxonomic classification, Nucleic acid sequence analysis, Aggregation, Phylogenetic tree analysis, Visualisation 2023-05-03 2024-06-14 4 True False False True est_abundance, __UNZIP_COLLECTION__, taxonomy_krona_chart, krakentools_kreport2krona, metaphlan, kraken_biom, interactive_tool_phinch, interactive_tool_pavian, kraken2 UseGalaxy.eu UseGalaxy.fr, UseGalaxy.org.au 0 3938 5371 1.9666666666666666 1510 +Microbiome Metatranscriptomics analysis using microbiome RNA-seq data (short) https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics-short/tutorial.html Metatranscriptomics, Microbial ecology, Taxonomy, Function analysis, Sequence analysis Statistical calculation, Species frequency estimation, Primer removal, Read pre-processing, Sequence trimming, Sequence similarity search, Taxonomic classification, Phylogenetic tree editing, Phylogenetic analysis, Sequence composition calculation, Phylogenetic tree visualisation, Phylogenetic tree analysis, Validation, Sequencing quality control, Sequence comparison, Conversion, Sequence alignment analysis, Nucleic acid sequence analysis, Phylogenetic inference, Visualisation 2020-02-13 2024-06-14 4 True False False True taxonomy_krona_chart, graphlan, Cut1, humann_unpack_pathways, humann_rename_table, cutadapt, graphlan_annotate, humann_renorm_table, Grep1, multiqc, humann_split_stratified_table, fastq_paired_end_interlacer, bg_sortmerna, humann_regroup_table, fastqc, combine_metaphlan2_humann2, metaphlan, export2graphlan, humann, tp_find_and_replace UseGalaxy.org (Main) UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 251 319 1.5333333333333334 1865 +Microbiome Binning of metagenomic sequencing data https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-binning/tutorial.html Metagenomics, Sequence assembly Sequence composition calculation, Statistical calculation, Genome assembly, Validation, Sequence assembly validation, Sequencing quality control 2023-12-05 2024-03-14 3 True False False False megahit, checkm_lineage_wf GalaxyTrakr, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr 0 1806 2197 1.4666666666666666 0 +Microbiome QIIME 2 Moving Pictures https://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.html Microbial ecology, Taxonomy, Sequence analysis 2024-03-14 2024-03-14 1 external False False False UseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr 0 122 183 3.5 0 +Microbiome QIIME 2 Cancer Microbiome Intervention https://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.html Microbial ecology, Taxonomy, Sequence analysis 2024-02-12 2024-03-14 3 external False False False UseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr 0 136 245 2.6 0 +Microbiome 16S Microbial Analysis with mothur (short) https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Sequencing quality control, Phylogenetic tree reconstruction, Phylogenetic tree generation, DNA barcoding, Sequence read processing, Taxonomic classification, Phylogenetic analysis, Sequence clustering, Phylogenetic tree analysis, Visualisation 2019-05-13 2024-06-14 5 True False False True mothur_rarefaction_single, mothur_count_groups, mothur_dist_shared, mothur_pre_cluster, mothur_remove_lineage, mothur_filter_seqs, newick_display, mothur_heatmap_sim, mothur_sub_sample, mothur_dist_seqs, mothur_count_seqs, mothur_summary_seqs, mothur_remove_seqs, collapse_dataset, mothur_chimera_vsearch, mothur_tree_shared, mothur_cluster_split, mothur_screen_seqs, mothur_venn, mothur_unique_seqs, mothur_classify_otu, mothur_cluster, mothur_remove_groups, XY_Plot_1, mothur_make_shared, mothur_summary_single, mothur_classify_seqs UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au UseGalaxy.cz, UseGalaxy.fr 0 1833 3346 5.766666666666667 10088 +Microbiome 16S Microbial Analysis with mothur (extended) https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Sequencing quality control, Phylogenetic tree reconstruction, Phylogenetic tree generation, DNA barcoding, Sequence read processing, Taxonomic classification, Phylogenetic analysis, Sequence clustering, Phylogenetic tree analysis, Visualisation 2017-02-12 2024-03-14 4 True False False True mothur_rarefaction_single, taxonomy_krona_chart, mothur_count_groups, mothur_dist_shared, mothur_pre_cluster, mothur_remove_lineage, mothur_filter_seqs, newick_display, mothur_heatmap_sim, mothur_sub_sample, mothur_dist_seqs, mothur_make_biom, mothur_count_seqs, mothur_summary_seqs, mothur_taxonomy_to_krona, mothur_remove_seqs, mothur_seq_error, mothur_chimera_vsearch, mothur_tree_shared, mothur_align_seqs, mothur_cluster_split, mothur_summary_single, mothur_screen_seqs, mothur_venn, mothur_unique_seqs, mothur_classify_otu, mothur_cluster, mothur_remove_groups, XY_Plot_1, mothur_make_contigs, mothur_make_shared, mothur_get_groups, mothur_classify_seqs UseGalaxy.eu UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au 0 5005 7659 2.95 0 diff --git a/communities/microgalaxy/resources/tools.html b/communities/microgalaxy/resources/tools.html new file mode 100644 index 00000000..ea2cf691 --- /dev/null +++ b/communities/microgalaxy/resources/tools.html @@ -0,0 +1,19715 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandGalaxy wrapper idGalaxy tool idsDescriptionbio.tool idbio.tool idsbiiibio.tool namebio.tool descriptionEDAM operationEDAM topicStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper sourceGalaxy wrapper parsed folderGalaxy wrapper versionConda idConda versionEDAM operation (no superclasses)EDAM topic (no superclasses)Available on UseGalaxy.org (Main)Available on UseGalaxy.org.auAvailable on UseGalaxy.euAvailable on UseGalaxy.frTools available on UseGalaxy.org (Main)Tools available on UseGalaxy.org.auTools available on UseGalaxy.euTools available on UseGalaxy.frTools available on APOSTLTools available on BF2I-MAPTools available on BioBixTools available on CIRM-CFBPTools available on Center for Phage Technology (CPT)Tools available on ChemFlowTools available on Coloc-statsTools available on CoralSNPTools available on CropGalaxyTools available on DintorTools available on FreeBioinfoTools available on GASLINITools available on Galaxy@AuBiTools available on Galaxy@PasteurTools available on GalaxyTrakrTools available on Genomic HyperbrowserTools available on GigaGalaxyTools available on HyPhy HIV NGS ToolsTools available on IPK Galaxy Blast SuiteTools available on ImmPort GalaxyTools available on InteractoMIXTools available on MISSISSIPPITools available on Mandoiu LabTools available on MiModD NacreousMapTools available on OqtansTools available on PalfinderTools available on PepSimiliTools available on PhagePromotorTools available on UseGalaxy.beTools available on UseGalaxy.czTools available on UseGalaxy.noTools available on Viral Variant Visualizer (VVV)No. of tool users (2022-2023) (usegalaxy.eu)Total tool usage (usegalaxy.eu)Deprecated
PAMPApampa_communitymetrics, pampa_presabs, pampa_glmcomm, pampa_glmsp, pampa_plotglmTools to compute and analyse biodiversity metricsTo updateEcologypampaecologyhttps://github.com/ColineRoyaux/PAMPA-Galaxyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA0.0.20555055500000000000000000000000000000540731004False
TreeBesttreebest_bestTreeBeST besttreebesttreebestTreeBeSTTreeBeST, which stands for (gene) Tree Building guided by Species Tree, is a versatile program that builds, manipulates and displays phylogenetic trees. It is particularly designed for building gene trees with a known species tree and is highly efficient and accurate.TreeBeST is previously known as NJTREE. It has been largely used in the TreeFam database, Ensembl Compara and OPTIC database of Chris Ponting group.Phylogenetic tree visualisation, Phylogenetic analysis, Phylogenetic inference (from molecular sequences)PhylogeneticsTo updatehttp://treesoft.sourceforge.net/treebest.shtmlPhylogeneticstreebest_bestearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBesthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest1.9.2.post0treebest1.9.2.post1Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences)Phylogenetics001000100000000000000010000000000000011023984False
abacasabacasOrder and Orientate ContigsTo updatehttps://github.com/phac-nml/abacasAssemblyabacasnmlhttps://github.com/phac-nml/abacashttps://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas1.1mummer3.23000100010000000000000010000000000000000000False
abricateabricate, abricate_list, abricate_summaryMass screening of contigs for antiobiotic resistance genesABRicateABRicateABRicateMass screening of contigs for antimicrobial resistance or virulence genes.Antimicrobial resistance predictionGenomics, MicrobiologyUp-to-datehttps://github.com/tseemann/abricateSequence Analysisabricateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abricate/https://github.com/galaxyproject/tools-iuc/tree/main/tools/abricate1.0.1abricate1.0.1Antimicrobial resistance predictionGenomics, Microbiology33333333000000000000303000000000000003301764496717False
abritamrabritamrA pipeline for running AMRfinderPlus and collating results into functional classesabritamrabritamrabriTAMRan AMR gene detection pipeline that runs AMRFinderPlus on a single (or list ) of given isolates and collates the results into a table, separating genes identified into functionally relevant groups.Antimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious diseaseTo updatehttps://zenodo.org/record/7370628Sequence Analysisabritamriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamrhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/abritamr1.0.14abritamr1.0.19Antimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious disease001000100000000000000000000000000000000000False
abyssabyss-peAssembly By Short Sequences - a de novo, parallel, paired-end sequence assemblerabyssabyssABySSDe novo genome sequence assembler using short reads.Genome assembly, De-novo assembly, ScaffoldingSequence assemblyTo updatehttp://www.bcgsc.ca/platform/bioinfo/software/abyssAssemblyabyssiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/abysshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss2.3.7abyss2.3.8Genome assembly, De-novo assembly, ScaffoldingSequence assembly01100110000000000000001000000100000001103914278False
aldex2aldex2Performs analysis Of differential abundance taking sample variation into accountaldex2aldex2ALDEx2A differential abundance analysis for the comparison of two or more conditions. It uses a Dirichlet-multinomial model to infer abundance from counts, that has been optimized for three or more experimental replicates. Infers sampling variation and calculates the expected FDR given the biological and sampling variation using the Wilcox rank test and Welches t-test, or the glm and Kruskal Wallis tests. Reports both P and fdr values calculated by the Benjamini Hochberg correction.Statistical inferenceGene expression, Statistics and probabilityTo updatehttps://github.com/ggloor/ALDEx_biocMetagenomicsaldex2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2https://github.com/galaxyproject/tools-iuc/tree/main/tools/aldex21.26.0bioconductor-aldex21.34.0Statistical inferenceGene expression, Statistics and probability001000100000000000000000000000000000010013129False
amplicanamplicanAmpliCan is an analysis tool for genome editing.amplicanamplicanamplicanIt performs alignment of the amplicon reads, normalizes gathered data, calculates multiple statistics (e.g. cut rates, frameshifts) and presents results in form of aggregated reports. Data and statistics can be broken down by experiments, barcodes, user defined groups, guides and amplicons allowing for quick identification of potential problems.Alignment, Standardisation and normalisationPCR experiment, Statistics and probabilityTo updatehttps://github.com/valenlab/amplicanSequence Analysisamplicaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/amplicanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/amplican1.14.0bioconductor-amplican1.24.0Alignment, Standardisation and normalisationPCR experiment, Statistics and probability00100010000000000000000000000000000001001253False
amrfinderplusamrfinderplus"AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search "plus", stress, heat, and biocide resistance and virulence factors for some organisms.amrfinderplusamrfinderplusAMRFinderPlusAMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search "plus", stress, heat, and biocide resistance and virulence factors for some organismsAntimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious diseaseUp-to-datehttps://github.com/ncbi/amrSequence AnalysisAMRFinderPlusiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/amrfinderplushttps://github.com/galaxyproject/tools-iuc/tree/main/tools/amrfinderplus3.12.8ncbi-amrfinderplus3.12.8Antimicrobial resistance predictionMicrobiology, Public health and epidemiology, Infectious disease10111011000000000000000000000000000000000591False
ancombcancombcPerforms analysis of compositions of microbiomes with bias correction.ancombcancombcANCOMBCDetermine taxa whose absolute abundances, per unit volume, of the ecosystem (e.g. gut) are significantly different with changes in the covariate of interest (e.g. group). The current version of ancombc function implements Analysis of Compositions of Microbiomes with Bias Correction (ANCOM-BC) in cross-sectional data while allowing for covariate adjustment.DNA barcodingMicrobial ecology, Metagenomics, TaxonomyTo updatehttps://github.com/FrederickHuangLin/ANCOMBCMetagenomicsancombciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ancombchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ancombc1.4.0bioconductor-ancombc2.4.0DNA barcodingMicrobial ecology, Metagenomics, Taxonomy001000100000000000000000000000000000010047False
antismashantismashAntismash allows the genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clustersantismashantismashantiSMASHRapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. It integrates and cross-links with a large number of in silico secondary metabolite analysis tools that have been published earlier.Sequence clustering, Gene prediction, Differential gene expression analysisMolecular interactions, pathways and networks, Gene and protein familiesTo updatehttps://antismash.secondarymetabolites.orgSequence Analysisantismashbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/antismashhttps://github.com/bgruening/galaxytools/tree/master/tools/antismash6.1.1antismash7.1.0Sequence clustering, Gene prediction, Differential gene expression analysisMolecular interactions, pathways and networks, Gene and protein families111011100000000000100010000000000000011027914596False
articartic_guppyplex, artic_minionThe artic pipeline is designed to help run the artic bioinformatics protocols;for example the nCoV-2019 novel coronavirus protocol.Features include: read filtering, primer trimming, amplicon coverage normalisation,variant calling and consensus buildingarticarticARTICA bioinformatics pipeline for working with virus sequencing data sequenced with nanoporeSequence alignmentGenomicsTo updatehttps://github.com/artic-network/fieldbioinformaticsSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/artichttps://github.com/galaxyproject/tools-iuc/tree/main/tools/articartic1.2.4Sequence alignmentGenomics00200020000000000000001000000000000002101238175False
assemblystatsassemblystatsSummarise an assembly (e.g. N50 metrics)To updatehttps://github.com/phac-nml/galaxy_toolsAssemblyassemblystatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats1.1.0perl-bioperl1.7.8000000000000000000000010000000000000000000False
baktabakta"Bakta is a tool for the rapid & standardized annotation of bacterial genomes and plasmids from both isolates and MAGs.It provides dbxref-rich and sORF-including annotations in machine-readable JSON & bioinformatics standard file formats for automatic downstream analysis."baktabaktaBaktaRapid & standardized annotation of bacterial genomes, MAGs & plasmidsGenome annotationGenomics, Data submission, annotation and curation, Sequence analysisTo updatehttps://github.com/oschwengers/baktaSequence Analysisbaktaiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/baktahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bakta1.9.3bakta1.9.4Genome annotationGenomics, Data submission, annotation and curation, Sequence analysis01110111000000000000101000000000000001101512982False
bamtoolsbamtoolsOperate on and transform BAM datasets in various ways using bamtoolsbamtoolsbamtoolsBamToolsBamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files.Data handling, Sequence alignment analysisSequencing, Data management, Sequence analysisUp-to-datehttps://github.com/pezmaster31/bamtoolsSequence Analysis, SAMbamtoolsdevteamhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools2.5.2bamtools2.5.2Data handling, Sequence alignment analysisSequencing, Sequence analysis111111110000000000001000000001000000011020814021False
bandagebandage_image, bandage_infoBandage - A Bioinformatics Application for Navigating De novo Assembly Graphs EasilybandagebandageBandageGUI program that allows users to interact with the assembly graphs made by de novo assemblers such as Velvet, SPAdes, MEGAHIT and others. It visualises assembly graphs, with connections, using graph layout algorithms.Sequence assembly visualisationGenomics, Sequence assemblyUp-to-datehttps://github.com/rrwick/BandageVisualizationbandageiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bandagehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bandage2022.09bandage_ng2022.09Sequence assembly visualisationGenomics, Sequence assembly2222222200002000000022200000020000000220201644390False
bayescanBayeScanDetecting natural selection from population-based genetic databayescanbayescanBayeScanBAYEsian genome SCAN for outliers, aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. It is based on the multinomial-Dirichlet model.Statistical inferenceGenetics, Evolutionary biology, Statistics and probability, DNA polymorphismTo updatehttp://cmpg.unibe.ch/software/BayeScan/index.htmlSequence Analysisbayescaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bayescan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/bayescan2.1bayescan2.0.1Statistical inferenceGenetics, Evolutionary biology, Statistics and probability, DNA polymorphism0010001000000000000000000000000000000110864False
bbtoolsbbtools_bbduk, bbtools_bbmap, bbtools_bbmerge, bbtools_bbnorm, bbtools_callvariants, bbtools_tadpoleBBTools is a suite of fast, multithreaded bioinformatics tools designed for analysis of DNA and RNA sequence data.BBTools can handle common sequencing file formats such as fastq, fasta, sam, scarf, fasta+qual, compressed or raw,with autodetection of quality encoding and interleaving. It is written in Java and works on any platform supportingJava, including Linux, MacOS, and Microsoft Windows and Linux; there are no dependencies other than Java (version7 or higher). Program descriptions and options are shown when running the shell scripts with no parameters.bbmapbbtools, bbmapBBMapBBMap is a fast splice-aware aligner for RNA and DNA. It is faster than almost all short-read aligners, yet retains unrivaled sensitivity and specificity, particularly for reads with many errors and indels.RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignmentSequencing, RNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-SeqUp-to-datehttps://jgi.doe.gov/data-and-tools/bbtools/Sequence Analysisbbtoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bbtools39.08bbmap39.08RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignmentRNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq61506150000000000000003001000000000004004206381False
bigscapebigscapeConstruct sequence similarity networks of BGCs and groups them into GCFBiG-SCAPEBiG-SCAPEBiG-SCAPEA computational framework to explore large-scale biosynthetic diversity.BiG-SCAPE (Biosynthetic Gene Similarity Clustering and Prospecting Engine) is a software package, written in Python, that constructs sequence similarity networks of Biosynthetic Gene Clusters (BGCs) and groups them into Gene Cluster Families (GCFs). BiG-SCAPE does this by rapidly calculating a distance matrix between gene clusters based on a comparison of their protein domain content, order, copy number and sequence identity.It defines a distance metric between Gene Clusters using a combination of three indices (Jaccard Index of domain types, Domain Sequence Similarity the Adjacency...BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynthetic gene clusters (BGCs) across large numbers of genomes, by constructing BGC sequence similarity networks, grouping BGCs into gene cluster families, and exploring gene cluster diversity linked to enzyme phylogenies.Clustering, Global alignment, Fold recognitionPhylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein familiesUp-to-datehttps://github.com/medema-group/BiG-SCAPEMetagenomicsbigscapeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bigscape/https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigscape1.1.9bigscape1.1.9Clustering, Global alignment, Fold recognitionPhylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein families001000100000000000000000000000000000000000False
binning_refinerbin_refinerReconciles the outputs of different binning programs with the aim to improve the quality of genome bins,especially with respect to contamination levels.binning_refinerbinning_refinerBinning_refinerImproving genome bins through the combination of different binning programsRead binning, Sequence clusteringMetagenomics, Sequence assembly, Microbial ecologyUp-to-datehttps://github.com/songweizhi/Binning_refinerMetagenomicsbinning_refineriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/binning_refiner/https://github.com/galaxyproject/tools-iuc/tree/main/tools/binning_refiner1.4.3binning_refiner1.4.3Read binning, Sequence clusteringMetagenomics, Sequence assembly, Microbial ecology00100010000000000000001000000000000001002181False
biohanselbiohanselHeidelberg and Enteritidis SNP ElucidationTo updatehttps://github.com/phac-nml/biohanselSequence Analysisbiohanselnmlhttps://github.com/phac-nml/biohanselhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel2.4.0bio_hansel2.6.1000000000000000000000000000000000000000000False
biom_formatbiom_add_metadata, biom_convert, biom_from_uc, biom_normalize_table, biom_subset_table, biom_summarize_tableThe biom-format package provides a command line interface and Python API for working with BIOM files.biomformatbiomformatbiomformatThis package includes basic tools for reading biom-format files, accessing and subsetting data tables from a biom object, as well as limited support for writing a biom-object back to a biom-format file. The design of this API is intended to match the python API and other tools included with the biom-format project, but with a decidedly "R flavor" that should be familiar to R users. This includes S4 classes and methods, as well as extensions of common core functions/methods.FormattingLaboratory information management, Sequence analysisTo updatehttps://github.com/biocore/biom-formatMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_formathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/biom_format2.1.15biom-format2.1.7FormattingLaboratory information management, Sequence analysis2260226000000000000001000000000000000110983906False
biotradisbacteria_tradis, tradis_essentiality, tradis_gene_insert_sitesBio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data.biotradisbiotradisbiotradisThe Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format.Sequence analysisMobile genetic elements, WorkflowsUp-to-datehttps://www.sanger.ac.uk/science/tools/bio-tradisGenome annotationbiotradisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradishttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis1.4.5biotradis1.4.5Sequence analysisMobile genetic elements, Workflows300030000000000000000000000000000000000000False
blast2goblast2goMaps BLAST results to GO annotation termsTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast2goOntology Manipulation, Sequence Analysisblast2gopeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast2gohttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go0.0.11b2g4pipe00000000010000000000000000000000000001101011232False
blast_rbhblast_reciprocal_best_hitsBLAST Reciprocal Best Hits (RBH) from two FASTA filesTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbhFasta Manipulation, Sequence Analysisblast_rbhpeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbhhttps://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh0.3.0biopython1.70001000100000000000000010000000000000011012122499False
blastxml_to_top_descrblastxml_to_top_descrMake table of top BLAST match descriptionsTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descrConvert Formats, Sequence Analysis, Text Manipulationblastxml_to_top_descrpeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descrhttps://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr0.1.2python0010001000000000000000000000000000000110159264558False
brackenest_abundanceBayesian Reestimation of Abundance with KrakENbrackenbrackenBrackenStatistical method that computes the abundance of species in DNA sequences from a metagenomics sample.Statistical calculationMetagenomics, Microbial ecologyUp-to-datehttps://ccb.jhu.edu/software/bracken/Sequence Analysis, Metagenomicsbrackeniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/brackenhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bracken3.0bracken3.0Statistical calculationMetagenomics, Microbial ecology111111110000000000001010000000000000011032618351False
buscobuscoBUSCO assess genome and annotation completenessbuscobuscoBUSCOProvides measures for quantitative assessment of genome assembly, gene set, and transcriptome completeness based on evolutionarily informed expectations of gene content from near-universal single-copy orthologs.Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assemblySequence assembly, Genomics, Transcriptomics, Sequence analysisUp-to-datehttps://gitlab.com/ezlab/busco/-/releasesSequence Analysisbuscoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/busco/https://github.com/galaxyproject/tools-iuc/tree/main/tools/busco5.7.1busco5.7.1Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assemblySequence assembly, Transcriptomics, Sequence analysis1111111100000000000000100100000000000110180486180False
catcat_add_names, cat_bins, cat_contigs, cat_prepare, cat_summariseContig Annotation Tool (CAT)cat_binscat_binsCAT and BATContig Annotation Tool (CAT) and Bin Annotation Tool (BAT) are pipelines for the taxonomic classification of long DNA sequences and metagenome assembled genomes (MAGs/bins) of both known and (highly) unknown microorganisms, as generated by contemporary metagenomics studies. The core algorithm of both programs involves gene calling, mapping of predicted ORFs against the nr protein database, and voting-based classification of the entire contig / MAG based on classification of the individual ORFs.Taxonomic classification, Sequence assembly, Coding region predictionMetagenomics, Metagenomic sequencing, Taxonomy, Sequence assemblyTo updatehttps://github.com/dutilh/CATMetagenomicscontig_annotation_tooliuchttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cat5.2.3cat5.3Taxonomic classification, Sequence assembly, Coding region predictionMetagenomics, Metagenomic sequencing, Taxonomy, Sequence assembly52505250000000000000005000000000000005502682878False
cd_hit_dupcd_hit_dupsimple tool for removing duplicates from sequencing readsTo updateMetagenomics, Sequence Analysiscd_hit_dupdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/cd_hit_duphttps://github.com/galaxyproject/tools-devteam/tree/main/tools/cd_hit_dup0.0.1cd-hit-auxtools4.8.1100010000000000000000010000000000000000000False
cdhitcd_hitCluster or compare biological sequence datasetscd-hitcd-hitcd-hitCluster a nucleotide dataset into representative sequences.Sequence clusteringSequencingUp-to-datehttp://weizhongli-lab.org/cd-hit/Sequence Analysis, Fasta Manipulationcd_hitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit4.8.1cd-hit4.8.1Sequence clusteringSequencing00110011000000000000100000000000000001102804474False
cemitoolcemitoolGene co-expression network analysis toolcemitoolcemitoolCEMiToolIt unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network.Enrichment analysis, Pathway or network analysisGene expression, Transcriptomics, Microarray experimentUp-to-datehttps://www.bioconductor.org/packages/release/bioc/html/CEMiTool.htmlTranscriptomics, RNA, Statisticscemitooliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitoolhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool1.26.0bioconductor-cemitool1.26.0Enrichment analysis, Pathway or network analysisTranscriptomics, Microarray experiment1010101000000000000000000000000000000100998False
checkmcheckm_analyze, checkm_lineage_set, checkm_lineage_wf, checkm_plot, checkm_qa, checkm_taxon_set, checkm_taxonomy_wf, checkm_tetra, checkm_tree, checkm_tree_qaAssess the quality of microbial genomes recovered from isolates, single cells, and metagenomescheckmcheckmCheckMCheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes.Sequence assembly validation, Validation, Sequence composition calculation, Sequencing quality control, Statistical calculationGenomics, Phylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality managementTo updatehttps://github.com/Ecogenomics/CheckMMetagenomicscheckmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/checkmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/checkm1.2.0checkm-genome1.2.3Sequence assembly validation, Sequence composition calculation, Statistical calculationPhylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management00101000101000000000000000100000000000000010003905165False
clair3clair3Symphonizing pileup and full-alignment for high-performance long-read variant callingclair3clair3Clair3Clair3 is a germline small variant caller for long-reads. Clair3 makes the best of two major method categories: pileup calling handles most variant candidates with speed, and full-alignment tackles complicated candidates to maximize precision and recall. Clair3 runs fast and has superior performance, especially at lower coverage. Clair3 is simple and modular for easy deployment and integration.Variant callingMolecular geneticsTo updatehttps://github.com/HKU-BAL/Clair3Sequence Analysis, Variant Analysisclair3iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/clair3https://github.com/galaxyproject/tools-iuc/tree/main/tools/clair31.0.8clair31.0.10Variant callingMolecular genetics0010001000000000000000100000000000000100681856False
clinodclinodNoD: a Nucleolar localization sequence detector for eukaryotic and viral proteinsclinodclinodclinodThe command line NoD predictor (clinod) can be run from the command line to predict Nucleolar localization sequences (NoLSs) that are short targeting sequences responsible for the localization of proteins to the nucleolus.The predictor accepts a list of FASTA formatted sequences as an input and outputs the NOLS predictions as a result.Please note that currently, JPred secondary structure predictions are not supported by clinod. However, we are working on it.Nucleic acid sequence analysisSequence analysisTo updatehttp://www.compbio.dundee.ac.uk/www-nod/Sequence Analysisclinodpeterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/clinodhttps://github.com/peterjc/pico_galaxy/tree/master/tools/clinod0.1.0clinod1.3Nucleic acid sequence analysisSequence analysis100010000000000000000000000000000000000000False
clustalwclustalwClustalW multiple sequence alignment program for DNA or proteinsclustal2clustal2Clustal 2 (Clustal W, Clustal X)Multiple sequence alignment program with a command-line interface (Clustal W) and a graphical user interface (Clustal X). The display colours allow conserved features to be highlighted for easy viewing in the alignment. It is available for several platforms, including Windows, Macintosh PowerMac, Linux and Solaris.Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, Clustal2.Multiple sequence alignmentPhylogeny, Sequence analysisUp-to-datehttp://www.clustal.org/clustal2/Phylogenetics, Sequence Analysisclustalwdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/clustalwhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/clustalw2.1clustalw2.1Multiple sequence alignmentPhylogeny, Sequence analysis111111110100100000001110000000000000011065146793False
cmsearch_deoverlapcmsearch_deoverlapremoves lower scoring overlaps from cmsearch results.cmsearch-deoverlapcmsearch-deoverlapcmsearch-deoverlapRemoves lower scoring overlaps from cmsearch results.Comparison, AlignmentBiology, MedicineTo updatehttps://github.com/EBI-Metagenomics/pipeline-v5/blob/master/tools/RNA_prediction/cmsearch-deoverlap/cmsearch-deoverlap.plRNAcmsearch_deoverlaprnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlaphttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap0.08+galaxy2perlComparison, AlignmentBiology, Medicine00100010000000000000000000000000000001001102False
codemlcodemlDetects positive selectionpamlpamlPAMLPackage of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood.Probabilistic sequence generation, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Phylogenetic tree analysisPhylogenetics, Sequence analysisTo updatehttp://abacus.gene.ucl.ac.uk/software/paml.htmlPhylogeneticscodemliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/codemlhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/codeml4.9paml4.10.7Probabilistic sequence generationPhylogenetics00100010000000000000000000000000000001102960901False
cojaccooc_mutbamscan, cooc_pubmut, cooc_tabmutco-occurrence of mutations on ampliconscojaccojacCOJACCoOccurrence adJusted Analysis and Calling - The cojac package comprises a set of command-line tools to analyse co-occurrence of mutations on amplicons. It is useful, for example, for early detection of viral variants of concern (e.g. Alpha, Delta, Omicron) in environmental samples, and has been designed to scan for multiple SARS-CoV-2 variants in wastewater samples, as analyzed jointly by ETH Zurich, EPFL and Eawag.Genetic variationUp-to-datehttps://github.com/cbg-ethz/cojacMetagenomics, Sequence Analysiscojaciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cojachttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cojac0.9.2cojac0.9.2Genetic variation2030203000000000000000000000000000000300202757False
combine_assembly_statscombine_statsCombine multiple Assemblystats datasets into a single tabular reportTo updatehttps://github.com/phac-nml/galaxy_toolsAssemblycombine_assemblystatsnmlhttps://github.com/phac-nml/galaxy_toolshttps://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats1.0perl-getopt-long2.58000000000000000000000000000000000000000000False
combine_metaphlan_humanncombine_metaphlan_humannCombine MetaPhlAn2 and HUMAnN2 outputs to relate genus/species abundances and gene families/pathways abundancescombine_metaphlan_and_humanncombine_metaphlan_and_humannCombine Metaphlan and HUMAnNThis tool combine MetaPhlAn outputs and HUMANnN outputsAggregationMetagenomics, Molecular interactions, pathways and networksTo updateMetagenomicscombine_metaphlan2_humann2bebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan2_humann2https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan_humann0.3.0pythonAggregationMetagenomics, Molecular interactions, pathways and networks10101010000000000000000000000000000001009147False
compare_humann2_outputcompare_humann2_outputCompare outputs of HUMAnN2 for several samples and extract similar and specific informationcompare_humann2_outputscompare_humann2_outputsCompare HUMAnN2 outputsThis tool compare HUMANnN2 outputs with gene families or pathways and their relative abundances between several samplesComparisonMetagenomics, Gene and protein familiesTo updateMetagenomicscompare_humann2_outputbebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_outputhttps://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output0.2.0ComparisonMetagenomics, Gene and protein families000000000000000000000000000000000000011010332False
compleasmcompleasmCompleasm: a faster and more accurate reimplementation of BUSCOcompleasmcompleasmcompleasm"Compleasm: a faster and more accurate reimplementation of BUSCO"Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assemblySequence assembly, Genomics, Transcriptomics, Sequence analysisUp-to-datehttps://github.com/huangnengCSU/compleasmSequence Analysiscompleasmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/compleasm/https://github.com/galaxyproject/tools-iuc/tree/main/tools/compleasm0.2.6compleasm0.2.6Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assemblySequence assembly, Transcriptomics, Sequence analysis101110110000000000000010000000000000000000False
concoctconcoct, concoct_coverage_table, concoct_cut_up_fasta, concoct_extract_fasta_bins, concoct_merge_cut_up_clusteringCONCOCT (Clustering cONtigs with COverage and ComposiTion) does unsupervised binning of metagenomic contigs byusing nucleotide composition - kmer frequencies - and coverage data for multiple samples. CONCOCT can accurately(up to species level) bin metagenomic contigs.concoctconcoctCONCOCTA program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads.Sequence clustering, Read binningMetagenomicsUp-to-datehttps://github.com/BinPro/CONCOCTMetagenomicsconcoctiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/concocthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/concoct1.1.0concoct1.1.0Sequence clustering, Read binningMetagenomics005500550000000000000000000000000000050092786False
covermcoverm_contig, coverm_genomeCoverM genome and contig wrapperscovermcovermCoverMRead coverage calculator for metagenomicsLocal alignmentBioinformaticsUp-to-datehttps://github.com/wwood/CoverMSequence Analysiscovermiuchttps://github.com/galaxyproject/tools-iuc/tools/covermhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/coverm0.7.0coverm0.7.0Local alignmentBioinformatics002200220000000000000020000000000000020072529False
cryptogenotyperCryptoGenotyperCryptoGenotyper is a standalone tool to *in-silico* determine species and subtype based on SSU rRNA and gp60 markers.Up-to-datehttps://github.com/phac-nml/CryptoGenotyperSequence Analysiscryptogenotypernmlhttps://github.com/phac-nml/CryptoGenotyperhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/cryptogenotyper1.0cryptogenotyper1.00010001000000000000000000000000000000110168518False
cutadaptcutadaptFlexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq).cutadaptcutadaptCutadaptFind and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads.Sequence trimming, Primer removal, Read pre-processingGenomics, Probes and primers, SequencingUp-to-datehttps://cutadapt.readthedocs.org/en/stable/Fasta Manipulation, Fastq Manipulation, Sequence Analysiscutadaptlparsonshttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt4.9cutadapt4.9Sequence trimming, Primer removal, Read pre-processingGenomics, Probes and primers, Sequencing11111111010010000000111001000100000001105090232004False
dada2dada2_assignTaxonomyAddspecies, dada2_dada, dada2_filterAndTrim, dada2_learnErrors, dada2_makeSequenceTable, dada2_mergePairs, dada2_plotComplexity, dada2_plotQualityProfile, dada2_removeBimeraDenovo, dada2_seqCountsDADA2 wrappersdada2dada2dada2This package infers exact sequence variants (SVs) from amplicon data, replacing the commonly used and coarser OTU clustering approach. This pipeline inputs demultiplexed fastq files, and outputs the sequence variants and their sample-wise abundances after removing substitution and chimera errors. Taxonomic classification is available via a native implementation of the RDP naive Bayesian classifier.Variant calling, DNA barcodingSequencing, Genetic variation, Microbial ecology, MetagenomicsTo updatehttps://benjjneb.github.io/dada2/index.htmlMetagenomicsdada2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dada2https://github.com/galaxyproject/tools-iuc/tree/main/tools/dada2bioconductor-dada21.30.0Variant calling, DNA barcodingSequencing, Genetic variation, Microbial ecology, Metagenomics1010101010101010000000000000100100010000000000010100126366609False
das_toolFasta_to_Contig2Bin, das_toolDAS Tool for genome resolved metagenomicsdastooldastooldastoolDAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly.Read binningMetagenomicsUp-to-datehttps://github.com/cmks/DAS_ToolMetagenomicsdas_tooliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/das_toolhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/das_tool1.1.7das_tool1.1.7Read binningMetagenomics002200220000000000000000000000000000020024706False
deseq2deseq2Differential gene expression analysis based on the negative binomial distributionDESeq2DESeq2DESeq2R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution.Differential gene expression analysis, RNA-Seq analysisRNA-SeqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsdeseq2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq22.11.40.8bioconductor-deseq21.42.0Differential gene expression analysis, RNA-Seq analysisRNA-Seq1111111101001000000011100100010000000110499095752False
diamondbg_diamond, bg_diamond_makedb, bg_diamond_viewDIAMOND is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR.diamonddiamondDiamondSequence aligner for protein and translated DNA searches and functions as a drop-in replacement for the NCBI BLAST software tools. It is suitable for protein-protein search as well as DNA-protein search on short reads and longer sequences including contigs and assemblies, providing a speedup of BLAST ranging up to x20,000.Sequence alignment analysisSequence analysis, ProteinsTo updatehttps://github.com/bbuchfink/diamondSequence Analysisdiamondbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/diamondhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/diamond2.0.15diamond2.1.9Sequence alignment analysisSequence analysis, Proteins333333330000300000003330001000000000033096349711False
discodiscoDISCO is a overlap-layout-consensus (OLC) metagenome assemblerdiscodiscoDISCODISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer.Protein sequence analysisStructure determinationTo updatehttp://disco.omicsbio.org/Metagenomics, Assemblydiscoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/https://github.com/galaxyproject/tools-iuc/tree/main/tools/discodisco1.2Protein sequence analysisStructure determination101010100000000000000010000000000000011042369False
dramdram_annotate, dram_distill, dram_merge_annotations, dram_neighborhoods, dram_strainerDRAM for distilling microbial metabolism to automate the curation of microbiome functiondramdramDRAMDistilled and Refined Annotation of Metabolism: A tool for the annotation and curation of function for microbial and viral genomesGene functional annotationMetagenomics, Biological databases, Molecular geneticsUp-to-datehttps://github.com/WrightonLabCSU/DRAMMetagenomicsdramiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dramhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dram1.5.0dram1.5.0Gene functional annotationMetagenomics, Biological databases, Molecular genetics0050005000000000000000000000000000000500396886False
drepdrep_compare, drep_dereplicatedRep compares and dereplicates genome setsdrepdrepdRepFast and accurate genomic comparisons that enables improved genome recovery from metagenomes through de-replication.Genome comparisonMetagenomics, Genomics, Sequence analysisUp-to-datehttps://github.com/MrOlm/drepMetagenomicsdrepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/drephttps://github.com/galaxyproject/tools-iuc/tree/main/tools/drep3.5.0drep3.5.0Genome comparisonMetagenomics, Sequence analysis002200220000000000000020000000000000022046646False
ectyperectyperEC-Typer - in silico serotyping of Escherichia coli speciesUp-to-datehttps://github.com/phac-nml/ecoli_serotypingSequence Analysisectypernmlhttps://github.com/phac-nml/ecoli_serotypinghttps://github.com/phac-nml/galaxy_tools/tree/master/tools/ectyper1.0.0ectyper1.0.00010001000000000000000100000000000000100539907False
effectiveT3effectiveT3Find bacterial type III effectors in protein sequenceseffectivet3effectivet3EffectiveT3Prediction of putative Type-III secreted proteins.Sequence classificationSequence analysisTo updatehttp://effectors.orgSequence Analysiseffectivet3peterjchttps://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT30.0.21effectiveT31.0.1Sequence classificationSequence analysis000000000000000000000000000000000000000000False
eggnog_mappereggnog_mapper, eggnog_mapper_annotate, eggnog_mapper_searcheggnog-mapper fast functional annotation of novel sequenceseggnog-mapper-v2eggnog-mapper-v2eggNOG-mapper v2EggNOG-mapper is a tool for fast functional annotation of novel sequences. It uses precomputed orthologous groups and phylogenies from the eggNOG database (http://eggnog5.embl.de) to transfer functional information from fine-grained orthologs only.Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrievalMetagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysisTo updateProteomicseggnog_mappergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapperhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper2.1.8eggnog-mapper2.1.12Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrievalMetagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysis333333330000000000000000000000000030031051030565False
emboss_5EMBOSS: antigenic1, EMBOSS: backtranseq2, EMBOSS: banana3, EMBOSS: biosed4, EMBOSS: btwisted5, EMBOSS: cai6, EMBOSS: cai_custom6, EMBOSS: chaos7, EMBOSS: charge8, EMBOSS: checktrans9, EMBOSS: chips10, EMBOSS: cirdna11, EMBOSS: codcmp12, EMBOSS: coderet13, EMBOSS: compseq14, EMBOSS: cpgplot15, EMBOSS: cpgreport16, EMBOSS: cusp17, EMBOSS: cutseq18, EMBOSS: dan19, EMBOSS: degapseq20, EMBOSS: descseq21, EMBOSS: diffseq22, EMBOSS: digest23, EMBOSS: dotmatcher24, EMBOSS: dotpath25, EMBOSS: dottup26, EMBOSS: dreg27, EMBOSS: einverted28, EMBOSS: epestfind29, EMBOSS: equicktandem31, EMBOSS: est2genome32, EMBOSS: etandem33, EMBOSS: extractfeat34, EMBOSS: extractseq35, EMBOSS: freak36, EMBOSS: fuzznuc37, EMBOSS: fuzzpro38, EMBOSS: fuzztran39, EMBOSS: garnier40, EMBOSS: geecee41, EMBOSS: getorf42, EMBOSS: helixturnhelix43, EMBOSS: hmoment44, EMBOSS: iep45, EMBOSS: infoseq46, EMBOSS: isochore47, EMBOSS: lindna48, EMBOSS: marscan49, EMBOSS: maskfeat50, EMBOSS: maskseq51, EMBOSS: matcher52, EMBOSS: megamerger53, EMBOSS: merger54, EMBOSS: msbar55, EMBOSS: needle56, EMBOSS: newcpgreport57, EMBOSS: newcpgseek58, EMBOSS: newseq59, EMBOSS: noreturn60, EMBOSS: notseq61, EMBOSS: nthseq62, EMBOSS: octanol63, EMBOSS: oddcomp64, EMBOSS: palindrome65, EMBOSS: pasteseq66, EMBOSS: patmatdb67, EMBOSS: pepcoil68, EMBOSS: pepinfo69, EMBOSS: pepnet70, EMBOSS: pepstats71, EMBOSS: pepwheel72, EMBOSS: pepwindow73, EMBOSS: pepwindowall74, EMBOSS: plotcon75, EMBOSS: plotorf76, EMBOSS: polydot77, EMBOSS: preg78, EMBOSS: prettyplot79, EMBOSS: prettyseq80, EMBOSS: primersearch81, EMBOSS: revseq82, EMBOSS: seqmatchall83, EMBOSS: seqret84, EMBOSS: showfeat85, EMBOSS: shuffleseq87, EMBOSS: sigcleave88, EMBOSS: sirna89, EMBOSS: sixpack90, EMBOSS: skipseq91, EMBOSS: splitter92, EMBOSS: supermatcher95, EMBOSS: syco96, EMBOSS: tcode97, EMBOSS: textsearch98, EMBOSS: tmap99, EMBOSS: tranalign100, EMBOSS: transeq101, EMBOSS: trimest102, EMBOSS: trimseq103, EMBOSS: twofeat104, EMBOSS: union105, EMBOSS: vectorstrip106, EMBOSS: water107, EMBOSS: wobble108, EMBOSS: wordcount109, EMBOSS: wordmatch110Galaxy wrappers for EMBOSS version 5.0.0 toolsembossembossEMBOSSDiverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool.Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignmentMolecular biology, Sequence analysis, BiologyTo updatehttp://emboss.open-bio.org/Sequence Analysis, Fasta Manipulationemboss_5devteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_55.0.0emboss6.6.0Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignmentMolecular biology, Sequence analysis10710710710710710710710700001070000000001070010700010700000001071070181689530False
eteete_gene_csv_finder, ete_genetree_splitter, ete_homology_classifier, ete_init_taxdb, ete_lineage_generator, ete3_mod, ete_species_tree_generatorAnalyse phylogenetic trees using the ETE ToolkiteteeteeteThe Environment for Tree Exploration (ETE) is a computational framework that simplifies the reconstruction, analysis, and visualization of phylogenetic trees and multiple sequence alignments. Here, we present ETE v3, featuring numerous improvements in the underlying library of methods, and providing a novel set of standalone tools to perform common tasks in comparative genomics and phylogenetics. The new features include (i) building gene-based and supermatrix-based phylogenies using a single command, (ii) testing and visualizing evolutionary models, (iii) calculating distances between trees of different size or including duplications, and (iv) providing seamless integration with the NCBI taxonomy database. ETE is freely available at http://etetoolkit.orgPhylogenetic analysis, Phylogenetic tree editingPhylogeneticsTo updatehttp://etetoolkit.org/Phylogeneticseteearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/etehttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete3.1.2ete33.1.1Phylogenetic tree editingPhylogenetics007700770000000000000000000000000000077045899False
export2graphlanexport2graphlanexport2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAnexport2graphlanexport2graphlanexport2graphlanexport2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn. In particular, the annotation file tries to highlight specific sub-trees deriving automatically from input file what nodes are important.ConversionTaxonomy, Metabolomics, BiomarkersTo updatehttps://bitbucket.org/CibioCM/export2graphlan/overviewMetagenomicsexport2graphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/export2graphlan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/export2graphlan0.20export2graphlan0.22ConversionTaxonomy, Metabolomics, Biomarkers11111111000000000000001000000000000001102005265False
ez_histogramsez_histogramsggplot2 histograms and density plotsTo updatehttps://github.com/tidyverse/ggplot2Visualization, Statisticsez_histogramsartbiohttps://github.com/artbio/tools-artbio/tree/main/tools/ez_histogramshttps://github.com/ARTbio/tools-artbio/tree/main/tools/ez_histograms3.4.4r-ggplot22.2.1000000000000000000000000000001000000000000False
fargenefargenefARGene (Fragmented Antibiotic Resistance Gene iENntifiEr )fargenefargenefARGenefARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) is a tool that takes either fragmented metagenomic data or longer sequences as input and predicts and delivers full-length antiobiotic resistance genes as output.Antimicrobial resistance predictionMetagenomics, Microbiology, Public health and epidemiologyUp-to-datehttps://github.com/fannyhb/fargeneSequence Analysisfargeneiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fargenehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fargene0.1fargene0.1Antimicrobial resistance predictionMetagenomics, Microbiology, Public health and epidemiology101010100000000000000010000000000000011052459False
fastanifastaniFast alignment-free computation of whole-genome Average Nucleotide IdentityfastanifastaniFastANIFastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies.Genome alignment, Sequence similarity searchMicrobiology, Genetic variationTo updatehttps://github.com/ParBLiSS/FastANISequence Analysisfastaniiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastanihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastani1.3fastani1.34Genome alignment, Sequence similarity searchMicrobiology, Genetic variation00110011000000000000001000000000000001102503498False
fastkfastk_fastkFastK: A K-mer counter (for HQ assembly data sets)To updatehttps://github.com/thegenemyers/FASTKAssemblyfastkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk1.0.0fastk1.0001000100000000000000000000000000000000000False
fastpfastpFast all-in-one preprocessing for FASTQ filesfastpfastpfastpA tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance.Sequencing quality control, Sequence contamination filteringSequence analysis, Probes and primersUp-to-datehttps://github.com/OpenGene/fastpSequence Analysisfastpiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastp0.23.4fastp0.23.4Sequence contamination filteringProbes and primers111111110000000000001110010001000000011128031055760False
fastqefastqeFASTQEfastqefastqeFASTQECompute quality stats for FASTQ files and print those stats as emoji... for some reason.Sequencing quality controlSequence analysis, SequencingTo updatehttps://fastqe.com/Sequence Analysisfastqeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqe0.3.1+galaxy0fastqe0.3.1Sequencing quality controlSequence analysis, Sequencing111111110000000000001000000000000000011012664333False
fasttreefasttreeFastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences - GVLfasttreefasttreeFastTreeInfers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences.Phylogenetic tree generation (from molecular sequences), Phylogenetic tree generation (maximum likelihood and Bayesian methods)Phylogenetics, Sequence analysisTo updatehttp://www.microbesonline.org/fasttree/Phylogeneticsfasttreeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fasttreehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fasttree2.1.10fasttree2.1.11Phylogenetics111111110100000000001110000001000000011037955434False
featurecountsfeaturecountsfeatureCounts counts the number of reads aligned to defined masked regions in a reference genomefeaturecountsfeaturecountsFeatureCountsfeatureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package.Read summarisation, RNA-Seq quantificationRNA-SeqTo updatehttp://bioinf.wehi.edu.au/featureCountsRNA, Transcriptomics, Sequence Analysisfeaturecountsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecountshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts2.0.3subread2.0.6Read summarisation, RNA-Seq quantificationRNA-Seq11111111000010000000111001000100000001104679696399False
filter_spades_repeatsfilter_spades_repeatRemove short and repeat contigs/scaffoldsTo updatehttps://github.com/phac-nml/galaxy_tools/Assemblyfilter_spades_repeatsnmlhttps://github.com/phac-nml/galaxy_tools/https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats1.0.1perl-bioperl1.7.8000000000000000000000010000000000000000000False
filtlongfiltlongFiltlong - Filtering long reads by qualityfiltlongfiltlongFiltlongFiltlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter.Filtering, Sequencing quality controlUp-to-datehttps://github.com/rrwick/FiltlongFastq Manipulation, Sequence Analysisfiltlongiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlonghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong0.2.1filtlong0.2.1Filtering, Sequencing quality control111111110000000000000110000000000000011061730483False
flashlfqflashlfqFlashLFQ mass-spectrometry proteomics label-free quantificationflashlfqflashlfqFlashLFQFlashLFQ is an ultrafast label-free quantification algorithm for mass-spectrometry proteomics.Label-free quantificationProteomics experiment, ProteomicsTo updatehttps://github.com/smith-chem-wisc/FlashLFQProteomicsflashlfqgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfqhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq1.0.3.1flashlfq1.2.6Label-free quantificationProteomics experiment, Proteomics011001100000000000000000000000000000011017645False
flyeflyeAssembly of long and error-prone reads.FlyeFlyeFlyeFlye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs.Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing, GenomicsTo updatehttps://github.com/fenderglass/Flye/Assemblyflyebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/flyehttps://github.com/bgruening/galaxytools/tree/master/tools/flye2.9.4flye2.9.5Genome assembly, De-novo assembly, Mapping assembly, Cross-assemblySequence assembly, Metagenomics, Whole genome sequencing1111111100000000000001100100000000000110149920904False
format_metaphlan2_outputformat_metaphlan2_outputFormat MetaPhlAn2 output to extract abundance at different taxonomic levelsformat_metaphlan2_outputformat_metaphlan2_outputFormat metaphlan2 outputThis tool format output file of MetaPhlan2 containing community content (abundance) at all taxonomic levels (from kingdom to strains).FormattingTaxonomy, MetagenomicsTo updateMetagenomicsformat_metaphlan2_outputbebatuthttps://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output/https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output0.2.0FormattingTaxonomy, Metagenomics00100010000000000000001000000000000001101665588False
fraggenescanfraggenescanTool for finding (fragmented) genes in short readfraggenescanfraggenescanFragGeneScanApplication for finding (fragmented) genes in short readsGene predictionGenetics, Sequence analysisTo updatehttps://sourceforge.net/projects/fraggenescan/Sequence Analysisfraggenescaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fraggenescan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/fraggenescanfraggenescan1.31Gene predictionGenetics, Sequence analysis0111011100000000000000100000000000000110681102False
freyjafreyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variantslineage abundances estimationfreyjafreyjaFreyjaRecover relative lineage abundances from mixed SARS-CoV-2 samples from a sequencing datasetRNA-Seq quantificationMetagenomicsTo updatehttps://github.com/andersen-lab/FreyjaMetagenomics, Sequence Analysisfreyjaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/freyjahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/freyja1.4.4freyja1.5.1RNA-Seq quantificationMetagenomics20402040000000000000004000000000000004005520021False
frogsFROGS_affiliation_filters, FROGS_affiliation_postprocess, FROGS_affiliation_stats, FROGS_biom_to_stdBiom, FROGS_biom_to_tsv, FROGS_cluster_filters, FROGS_cluster_stats, FROGS_clustering, FROGS_demultiplex, FROGSSTAT_DESeq2_Preprocess, FROGSSTAT_DESeq2_Visualisation, FROGSFUNC_step2_functions, FROGSFUNC_step3_pathways, FROGSFUNC_step1_placeseqs, FROGS_itsx, FROGS_normalisation, FROGSSTAT_Phyloseq_Alpha_Diversity, FROGSSTAT_Phyloseq_Beta_Diversity, FROGSSTAT_Phyloseq_Sample_Clustering, FROGSSTAT_Phyloseq_Composition_Visualisation, FROGSSTAT_Phyloseq_Import_Data, FROGSSTAT_Phyloseq_Multivariate_Analysis_Of_Variance, FROGSSTAT_Phyloseq_Structure_Visualisation, FROGS_preprocess, FROGS_remove_chimera, FROGS_taxonomic_affiliation, FROGS_Tree, FROGS_tsv_to_biomSuite for metabarcoding analysisfrogsfrogsFROGSThe user-friendly and Galaxy-supported pipeline FROGS analyses large sets of DNA amplicons sequences accurately and rapidly, essential for microbe community studies.Taxonomic classificationMetagenomics, Microbial ecology, Taxonomy, Evolutionary biology, SequencingTo updatehttp://frogs.toulouse.inrae.fr/Metagenomicsfrogsfrogshttps://github.com/geraldinepascal/FROGS-wrappers/https://github.com/geraldinepascal/FROGS-wrappers/tree/master/tools/frogs4.1.0frogs5.0.0Taxonomic classificationMetagenomics, Microbial ecology, Taxonomy, Evolutionary biology, Sequencing0002800028000000000000018180000000000000000000False
funannotatefunannotate_annotate, funannotate_clean, funannotate_compare, funannotate_predict, funannotate_sortFunannotate is a genome prediction, annotation, and comparison software package.funannotatefunannotatefunannotatefunannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes).Genome annotationGenomicsTo updatehttps://funannotate.readthedocs.ioGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate1.8.15Genome annotationGenomics35553555000000000000000000000000000005009005906False
getmlstgetmlstDownload MLST datasets by species from pubmlst.orgTo updateSequence Analysisgetmlstnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/getmlst0.1.4.1srst20.2.0000000000000000000000010000000000000000000False
ggplot2ggplot2_heatmap, ggplot2_pca, ggplot2_histogram, ggplot2_point, ggplot2_violinggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics.You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to use,and it takes care of the details.ggplot2ggplot2ggplot2Plotting system for R, based on the grammar of graphics.VisualisationData visualisationTo updatehttps://github.com/tidyverse/ggplot2Visualizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2https://github.com/galaxyproject/tools-iuc/tree/main/tools/ggplot23.4.0r-baseVisualisationData visualisation5555555500000000000010500000030000000550138822148False
gi2taxonomyFetch Taxonomic RanksFetch taxonomic representationgi2taxonomygi2taxonomygi2taxonomyThe tool fetches taxonomic information for a list of sequence identifiers (i.e. GI numbers, as used by the National Center for Biotechnology Information (NCBI).Database search, ID mappingTaxonomyTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicsgi2taxonomydevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/gi2taxonomyhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/gi2taxonomy1.1.1taxonomy0.10.0Database search, ID mappingTaxonomy001000100000000000000110000000000000010027660False
glimmerglimmer_acgt_content, glimmer_build_icm, glimmer_extract, glimmer_gbk_to_orf, glimmer_glimmer_to_gff, glimmer_long_orfs, glimmer_knowledge_based, glimmer_not_knowledge_basedGlimmer makes gene predictions.geminigeminiGEMINIGEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics.Sequence analysis, Genetic variation analysisSequence analysisTo updatehttps://ccb.jhu.edu/software/glimmer/Sequence Analysisbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/glimmerglimmer3.02Sequence analysis, Genetic variation analysisSequence analysis00400040000000000000000000000000000004001873965False
glimmer_hmmGlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model (GHMM)To updatehttps://ccb.jhu.edu/software/glimmerhmm/Sequence Analysisglimmer_hmmbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmmhttps://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm000000000000000000000000000000000000000000False
goenrichmentgoenrichment, goslimmerPerforms GO Enrichment analysis.goenrichmentgoenrichmentGOEnrichmentGOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência.Gene-set enrichment analysisTranscriptomicsUp-to-datehttps://github.com/DanFaria/GOEnrichmentGenome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichmenthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment2.0.1goenrichment2.0.1Gene-set enrichment analysisTranscriptomics22222222000000000000002000000000000002204085484False
goseqgoseqgoseq does selection-unbiased testing for category enrichment amongst differentially expressed (DE) genes for RNA-seq datagoseqgoseqGOseqDetect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data.Gene functional annotationRNA-SeqTo updatehttps://bioconductor.org/packages/release/bioc/html/goseq.htmlStatistics, RNA, Micro-array Analysisgoseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/goseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/goseq1.50.0bioconductor-goseq1.54.0Gene functional annotationRNA-Seq1111111100000000000010000100010000000110121019167False
graphlangraphlan, graphlan_annotateGraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic treesgraphlangraphlanGraPhlAnGraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees. GraPhlAn focuses on concise, integrative, informative, and publication-ready representations of phylogenetically- and taxonomically-driven investigation.Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classificationMetagenomics, Phylogenetics, Phylogenomics, CladisticsTo updatehttps://github.com/biobakery/graphlanMetagenomics, Graphics, Phylogeneticsgraphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2/https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphlangraphlan1.1.3Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classificationMetagenomics, Phylogenetics, Phylogenomics, Cladistics22222222000000000000002000000000000002204329277False
graphmapgraphmap_align, graphmap_overlapMapper for long, error-prone reads.graphmapgraphmapgraphmapSplice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1Sequence trimming, EST assembly, Read mappingGene transcripts, RNA-Seq, RNA splicingTo updatehttps://github.com/isovic/graphmap/Assemblygraphmapbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/graphmaphttps://github.com/bgruening/galaxytools/tree/master/tools/graphmap0.5.2graphmap0.6.3Sequence trimming, EST assembly, Read mappingGene transcripts, RNA-Seq, RNA splicing00200020000000000000002000000000000002201366651False
gtdbtkgtdbtk_classify_wfGTDB-Tk is a software tool kit for assigning objective taxonomic classifications to bacterial and archaeal genomesbased on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds orthousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can alsobe applied to isolate and single-cell genomes.GTDB-TkGTDB-TkGTDB-Tka toolkit to classify genomes with the Genome Taxonomy Database.GTDB-Tk: a toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes.GTDB-Tk is a software toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes based on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds or thousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can also be applied to isolate and single-cell genomes. The GTDB-Tk is open source and released under the GNU General Public License (Version 3).Genome alignment, Taxonomic classification, Sequence assembly, Query and retrievalMetagenomics, Taxonomy, Phylogenetics, Database management, ProteinsTo updatehttps://github.com/Ecogenomics/GTDBTkMetagenomicsgtdbtkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gtdbtkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdbtk2.3.2gtdbtk2.4.0Genome alignment, Taxonomic classification, Sequence assembly, Query and retrievalMetagenomics, Taxonomy, Phylogenetics, Database management, Proteins011101110000000000000010000000000000000000False
gubbinsgubbinsGubbins - bacterial recombination detectiongubbinsgubbinsGubbinsGubbins is a tool for rapid phylogenetic analysis of large samples of recombinant bacterial whole genome sequences.Genotyping, Phylogenetic inference, Ancestral reconstructionPhylogeny, Genotype and phenotype, Whole genome sequencingTo updateSequence Analysisgubbinsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gubbinshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gubbins3.2.1gubbins3.3.5Genotyping, Phylogenetic inference, Ancestral reconstructionPhylogeny, Genotype and phenotype, Whole genome sequencing11101110000000000000001000000000000001101453340False
hamronizationhamronize_summarize, hamronize_toolConvert AMR gene detection tool output to hAMRonization specification format.hamronizationhamronizationhAMRonizationParse multiple Antimicrobial Resistance Analysis Reports into a common data structureData handling, Antimicrobial resistance prediction, ParsingPublic health and epidemiology, Microbiology, BioinformaticsUp-to-datehttps://github.com/pha4ge/hAMRonizationSequence Analysishamronizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hamronizationhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hamronization1.1.4hamronization1.1.4Antimicrobial resistance prediction, ParsingPublic health and epidemiology, Microbiology, Bioinformatics00220022000000000000002000000000000002001174459False
hanselbio_hanselHeidelberg and Enteritidis SNP ElucidationBiohanselBiohanselBioHanselBioHansel is a tool for performing high-resolution genotyping of bacterial isolates by identifying phylogenetically informative single nucleotide polymorphisms (SNPs), also known as canonical SNPs, in whole genome sequencing (WGS) data. The application uses a fast k-mer matching algorithm to map pathogen WGS data to canonical SNPs contained in hierarchically structured schemas and assigns genotypes based on the detected SNP profile.Genotyping, SNP detection, Genome assemblyWhole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural scienceUp-to-datehttps://github.com/phac-nml/bio_hanselSequence Analysisbio_hanseliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hanselhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hansel2.6.1bio_hansel2.6.1Genotyping, SNP detection, Genome assemblyWhole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural science101010100000000000000000000000000000011018339False
hifiasm_metahifiasm_metaA hifiasm fork for metagenome assembly using Hifi reads.hifiasm-metahifiasm-metaHifiasm-metaHifiasm_meta - de novo metagenome assembler, based on hifiasm, a haplotype-resolved de novo assembler for PacBio Hifi reads.Sequence assemblySequence assembly, MetagenomicsTo updatehttps://github.com/xfengnefx/hifiasm-metaMetagenomicshifiasm_metagalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hifiasm_metahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm_meta0.3.1hifiasm_metahamtv0.3.1Sequence assemblySequence assembly, Metagenomics011001100000000000000000000000000000010012137False
hivtracehivtraceAn application that identifies potential transmission clusters within a supplied FASTA file with an option to find potential links against the Los Alamos HIV Sequence Database.To updateSequence Analysishivtracenmlhttps://github.com/phac-nml/galaxy_tools/tree/tools/hivtracehttps://github.com/phac-nml/galaxy_tools/tree/master/tools/hivtrace1.0.1hivtrace1.5.0000000000000000000000000010000000000000000False
hmmer3hmmer_alimask, hmmer_hmmalign, hmmer_hmmbuild, hmmer_hmmconvert, hmmer_hmmemit, hmmer_hmmfetch, hmmer_hmmscan, hmmer_hmmsearch, hmmer_jackhmmer, hmmer_nhmmer, hmmer_nhmmscan, hmmer_phmmerHMMER is used for searching sequence databases for homologs of proteinsequences, and for making protein sequence alignments. It implementsmethods using probabilistic models called profile hidden Markov models(profile HMMs).hmmer3hmmer3HMMER3This tool is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models. The new HMMER3 project, HMMER is now as fast as BLAST for protein search.Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Sequence generation, Data retrieval, Statistical calculation, Database search, Formatting, Database search, Database search, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Database search, Sequence database searchSequence analysis, Sequence sites, features and motifs, Gene and protein familiesUp-to-datehttp://hmmer.org/Sequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3https://github.com/galaxyproject/tools-iuc/tree/main/tools/hmmer33.4hmmer3.4Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Data retrieval, Statistical calculation, Formatting, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Sequence database searchSequence analysis, Sequence sites, features and motifs, Gene and protein families0121212012121200001200000000012000000000000001212043933702False
humannhumann, humann_associate, humann_barplot, humann_join_tables, humann_reduce_table, humann_regroup_table, humann_rename_table, humann_renorm_table, humann_rna_dna_norm, humann_split_stratified_table, humann_split_table, humann_strain_profiler, humann_unpack_pathwaysHUMAnN for functionally profiling metagenomes and metatranscriptomes at species-level resolutionhumannhumannhumannHUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data (typically millions of short DNA/RNA reads). This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question “What are the microbes in my community-of-interest doing (or are capable of doing)?”Species frequency estimation, Taxonomic classification, Phylogenetic analysisMetagenomics, PhylogenomicsTo updatehttp://huttenhower.sph.harvard.edu/humannMetagenomicshumanniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/humannhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/humann3.8humann3.9Species frequency estimation, Taxonomic classification, Phylogenetic analysisMetagenomics, Phylogenomics6131313613131300000000000000130000000000000013130104519521False
hyphyhyphy_absrel, hyphy_annotate, hyphy_bgm, hyphy_busted, hyphy_cfel, hyphy_conv, hyphy_fade, hyphy_fel, hyphy_fubar, hyphy_gard, hyphy_meme, hyphy_prime, hyphy_relax, hyphy_slac, hyphy_sm19, hyphy_strike_ambigs, hyphy_summaryHypothesis Testing using PhylogeniesHyPhyHyPhyHyPhySoftware package for the analysis of genetic sequences using techniques in phylogenetics, molecular evolution, and machine learning.Statistical calculationPhylogeny, Small molecules, Molecular interactions, pathways and networksTo updatehttp://www.hyphy.orgPhylogeneticsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/hyphy2.5.47hyphy2.5.62Statistical calculationPhylogeny, Small molecules, Molecular interactions, pathways and networks172172172172000000000000000000000200000001712016110370False
hypohypoSuper Fast & Accurate Polisher for Long Read Genome AssembliesHyPoHyPoHyPoHyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes.Optimisation and refinement, Genome assemblySequence assembly, GenomicsUp-to-datehttps://github.com/kensung-lab/hypoAssemblyhypoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/hypohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo1.0.3hypo1.0.3Optimisation and refinement, Genome assemblySequence assembly, Genomics001000100000000000000000000000000000010039354False
icescreenicescreenICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes.icescreenicescreenICEscreenA tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures.Database search, Protein feature detectionMobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variationTo updatehttps://icescreen.migale.inrae.fr/Genome annotationicescreeniuchttps://forgemia.inra.fr/ices_imes_analysis/icescreenhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen1.3.1icescreen1.3.2Database search, Protein feature detectionMobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation000000000000000000000010000000000000000000False
idba_udidba_hybrid, idba_tran, idba_udWrappers for the idba assembler variants.idbaidbaIDBAA short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system.Sequence assemblySequence assemblyTo updatehttps://i.cs.hku.hk/~alse/hkubrg/projects/index.htmlAssemblyidbaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_udhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_udidba1.1.3Sequence assemblySequence assembly3033303300000000000000000000000000000330691127False
infernalinfernal_cmalign, infernal_cmbuild, infernal_cmpress, infernal_cmscan, infernal_cmsearch, infernal_cmstatInfernal ("INFERence of RNA ALignment") is for searching DNA sequence databases for RNA structure and sequence similarities.infernalinfernalInfernalInfernal ("INFERence of RNA ALignment") is for searching DNA sequence databases for RNA structure and sequence similarities. It is an implementation of a special case of profile stochastic context-free grammars called covariance models (CMs). A CM is like a sequence profile, but it scores a combination of sequence consensus and RNA secondary structure consensus, so in many cases, it is more capable of identifying RNA homologs that conserve their secondary structure more than their primary sequence.Nucleic acid feature detectionSequence sites, features and motifs, Structural genomicsTo updatehttp://infernal.janelia.org/RNAinfernalbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/infernalhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/infernal1.1.4infernal1.1.5Nucleic acid feature detectionSequence sites, features and motifs, Structural genomics066006600000000000000000000000000000066067100294False
instraininstrain_compare, instrain_profileInStrain is a tool for analysis of co-occurring genome populations from metagenomesinstraininstrainInStrainInStrain is a tool for analysis of co-occurring genome populations from metagenomes that allows highly accurate genome comparisons, analysis of coverage, microdiversity, and linkage, and sensitive SNP detection with gene localization and synonymous non-synonymous identificationSNP detection, Genome comparisonMapping, MetagenomicsTo updatehttps://instrain.readthedocs.io/en/latest/#Metagenomicsinstrainiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/instrainhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/instrain1.5.3instrain1.9.0SNP detection, Genome comparisonMapping, Metagenomics0020002000000000000000000000000000000200594False
integron_finderintegron_finder"IntegronFinder identify integrons with high accuracy and sensitivity.It searches for attC sites using covariance models, for integron-integrases using HMM profiles, and for other features (promoters, attI site) using pattern matching"integron_finderintegron_finderIntegron FinderA tool to detect Integron in DNA sequences.Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotationFunctional genomics, Mobile genetic elements, Molecular biology, Sequence analysisUp-to-datehttps://github.com/gem-pasteur/Integron_FinderSequence Analysisintegronfinderiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/integron_finderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/integron_finder2.0.5integron_finder2.0.5Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotationFunctional genomics, Mobile genetic elements, Molecular biology, Sequence analysis01110111000000000000111000000000000001005852965False
interproscaninterproscanInterproscan queries the interpro database and provides annotations.interproscan_ebiinterproscan_ebiInterProScan (EBI)Scan sequences against the InterPro protein signature databases.Sequence motif recognition, Protein feature detectionGene and protein families, Sequence analysisTo updatehttp://www.ebi.ac.uk/Tools/pfa/iprscan5/Sequence Analysisinterproscanbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/interproscanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/interproscan5.59-91.0interproscan5.59_91.0Sequence motif recognition, Protein feature detectionGene and protein families, Sequence analysis111111110100100000000000000000000000011067735243False
iprscan5Interproscan queries the interpro database and provides annotations.To updatehttp://www.ebi.ac.uk/Tools/pfa/iprscan5/Sequence Analysisiprscan5bgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/iprscan5https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5000000000000000000000000000000000000000000False
iqtreeiqtreeEfficient phylogenomic software by maximum likelihoodiqtreeiqtreeiqtreeA fast and effective stochastic algorithm to infer phylogenetic trees by maximum likelihood. IQ-TREE compares favorably to RAxML and PhyML in terms of likelihoods with similar computing timePhylogenetic analysis, Sequence analysisPhylogeneticsUp-to-datehttp://www.iqtree.org/Phylogeneticsiqtreeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/iqtree/https://github.com/galaxyproject/tools-iuc/tree/main/tools/iqtree2.3.6iqtree2.3.6Phylogenetic analysis, Sequence analysisPhylogenetics111011100000000000001010010000000000011068121598False
isescanisescan"ISEScan is a pipeline to identify IS (Insertion Sequence) elements in genome and metagenomebased on profile hidden Markov models constructed from manually curated IS elements."ISEScanISEScanISEScanAutomated identification of insertion sequence elements in prokaryotic genomes.Structural variation detectionGenomics, DNA structural variation, Sequence analysis, Genetic variationTo updatehttps://github.com/xiezhq/ISEScanSequence AnalysisISEScaniuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/isescanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/isescan1.7.2.3isescan1.7.2.1Structural variation detectionGenomics, Sequence analysis, Genetic variation01110111000000000000101000000000000001005057581False
itsxitsxITSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences.ITSxITSxITSxTSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences, which is commonly used as a molecular barcode for e.g. fungi. As the inclusion of parts of the neighbouring, very conserved, ribosomal genes (SSU, 5S and LSU rRNA sequences) in the sequence identification process can lead to severely misleading results, ITSx identifies and extracts only the ITS regions themselves.Sequence feature detectionFunctional, regulatory and non-coding RNA, MicrobiologyUp-to-datehttps://microbiology.se/software/itsx/Metagenomicsitsxbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/itsxhttps://github.com/bgruening/galaxytools/tree/master/tools/itsx1.1.3itsx1.1.3Sequence feature detectionFunctional, regulatory and non-coding RNA, Microbiology001000100000000000000000000000000000010038868False
ivarivar_consensus, ivar_filtervariants, ivar_removereads, ivar_trim, ivar_variantsiVar is a computational package that contains functions broadly useful for viral amplicon-based sequencingUp-to-datehttps://github.com/andersen-lab/ivarSequence Analysisivariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ivar/https://github.com/galaxyproject/tools-iuc/tree/main/tools/ivar1.4.3ivar1.4.3555555550000000000000050040004000000055011711224275False
jbrowsejbrowse_to_standalone, jbrowseJBrowse Genome Browser integrated as a Galaxy TooljbrowsejbrowseJBrowseSlick, speedy genome browser with a responsive and dynamic AJAX interface for visualization of genome data. Being developed by the GMOD project as a successor to GBrowse.Genome visualisationGenomicsUp-to-datehttps://jbrowse.orgSequence Analysisjbrowseiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowsehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jbrowse1.16.11jbrowse1.16.11Genome visualisationGenomics2222222200000000000020200000020000000220234618229False
jellyfishjellyfishJellyfish is a tool for fast, memory-efficient counting of k-mers in DNAJellyfishJellyfishJellyfishA command-line algorithm for counting k-mers in DNA sequence.k-mer countingSequence analysis, GenomicsTo updatehttps://github.com/gmarcais/JellyfishAssemblyjellyfishiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfishhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfishkmer-jellyfish2.3.1k-mer countingSequence analysis, Genomics0111011100000000000000100000000000000110911138False
kat_filterkat_@EXECUTABLE@Filtering kmers or reads from a database of kmers hashesTo updateSequence Analysiskat_filternmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_filter2.3kat2.4.2000000000000000000000000000000000000000000False
kc-alignkc-alignKc-Align custom toolkc-alignkc-alignkc-alignA fast and accurate tool for performing codon-aware multiple sequence alignmentsMultiple sequence alignmentMappingUp-to-datehttps://github.com/davebx/kc-alignSequence Analysiskc_aligniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kc-alignhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kc-align1.0.2kcalign1.0.2Multiple sequence alignmentMapping101010100000000000000000000000000000011019363False
khmerkhmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_medianIn-memory nucleotide sequence k-mer counting, filtering, graph traversal and morekhmerkhmerkhmerkhmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data.Standardisation and normalisation, De-novo assemblySequence assemblyUp-to-datehttps://khmer.readthedocs.org/Assembly, Next Gen Mapperskhmeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/khmerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer3.0.0a3khmer3.0.0a3Standardisation and normalisation, De-novo assemblySequence assembly8880888000000000000001100000010000000880632022False
kleboratekleborateScreen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC)kleboratekleborateKleborateGenomic surveillance framework and global population structure for Klebsiella pneumoniae.Kleborate is a tool to screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) for:.A manuscript describing the Kleborate software in full is currently in preparation. In the meantime, if you use Kleborate, please cite the preprint: Lam, MMC. et al. Genomic surveillance framework and global population structure for Klebsiella pneumoniae. bioRxiv (2020).Multilocus sequence typing, Genome assembly, Virulence predictionPublic health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencingTo updatehttps://github.com/katholt/Kleborate/wikiMetagenomicskleborateiuchttps://github.com/katholt/Kleboratehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kleborate2.3.2kleborate3.0.6Multilocus sequence typing, Genome assembly, Virulence predictionPublic health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing001000100000000000000010000000000000010038319False
kofamscankofamscanGene function annotation tool based on KEGG Orthology and hidden Markov modelkofamscankofamscankofamscanKofamScan is a gene function annotation tool based on KEGG Orthology and hidden Markov model. You need KOfam database to use this tool.Sequence analysis, Gene functional annotationGenomicsUp-to-datehttps://github.com/takaram/kofam_scanSequence Analysiskofamscaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kofamscanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kofamscan1.3.0kofamscan1.3.0Sequence analysis, Gene functional annotationGenomics001100110000000000000000000000000000010033594False
krakenkraken-filter, kraken-mpa-report, kraken-report, kraken-translate, krakenKraken is a system for assigning taxonomic labels to short DNAsequences, usually obtained through metagenomic studies. Previous attempts by otherbioinformatics software to accomplish this task have often used sequence alignmentor machine learning techniques that were quite slow, leading to the developmentof less sensitive but much faster abundance estimation programs. Kraken aims toachieve high sensitivity and high speed by utilizing exact alignments of k-mersand a novel classification algorithm.krakenkrakenKrakenSystem for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. It aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm.Taxonomic classificationTaxonomy, MetagenomicsTo updatehttp://ccb.jhu.edu/software/kraken/Metagenomicskrakendevteamhttps://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken/https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/krakenkraken1.1.1Taxonomic classificationTaxonomy, Metagenomics5555555500000000001010000000000000200550120933778False
kraken2kraken2Kraken2 for taxonomic designation.kraken2kraken2kraken2Kraken 2 is the newest version of Kraken, a taxonomic classification system using exact k-mer matches to achieve high accuracy and fast classification speeds. This classifier matches each k-mer within a query sequence to the lowest common ancestor (LCA) of all genomes containing the given k-mer. The k-mer assignments inform the classification algorithm.Taxonomic classificationTaxonomy, MetagenomicsUp-to-datehttp://ccb.jhu.edu/software/kraken/Metagenomicskraken2iuchttps://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken2/kraken2/https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken2/kraken22.1.3kraken22.1.3Taxonomic classificationTaxonomy, Metagenomics11111111000000000000111001000000001001102367185308False
kraken2taxKraken2TaxConvert Kraken output to Galaxy taxonomy data.To updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicskraken2taxdevteamhttps://github.com/galaxyproject/tools-devteam/blob/master/tool_collections/taxonomy/kraken2tax/https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/kraken2tax1.2+galaxy0gawk111011100000000000001010010000000000011048114683False
kraken_biomkraken_biomCreate BIOM-format tables (http://biom-format.org) from Kraken output (http://ccb.jhu.edu/software/kraken/)Up-to-datehttps://github.com/smdabdoub/kraken-biomMetagenomicskraken_biomiuchttps://github.com/smdabdoub/kraken-biomhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_biom1.2.0kraken-biom1.2.001110111000000000000100000000000000001101821444False
kraken_taxonomy_reportkraken_taxonomy_reportKraken taxonomy reportKraken-Taxonomy-ReportKraken-Taxonomy-ReportKraken-Taxonomy-Reportview report of classification for multiple samplesVisualisation, ClassificationMetagenomics, TaxonomyTo updatehttps://github.com/blankenberg/Kraken-Taxonomy-ReportMetagenomicskraken_taxonomy_reportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kraken_taxonomy_reporthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_taxonomy_report0.0.3biopython1.70Visualisation, ClassificationMetagenomics, Taxonomy11101110000000000000000000000000000001103542527False
krakentoolskrakentools_alpha_diversity, krakentools_beta_diversity, krakentools_combine_kreports, krakentools_extract_kraken_reads, krakentools_kreport2krona, krakentools_kreport2mpaKrakenTools is a suite of scripts to be used alongside the KrakenkrakentoolskrakentoolsKrakenToolsKrakenTools provides individual scripts to analyze Kraken/Kraken2/Bracken/KrakenUniq output filesVisualisation, AggregationTaxonomy, MetagenomicsUp-to-datehttps://github.com/jenniferlu717/KrakenToolsMetagenomicskrakentoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/krakentoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/krakentools1.2krakentools1.2Visualisation, AggregationTaxonomy, Metagenomics666666660000000000001460000000000000060070316525False
krocuskrocusPredict MLST directly from uncorrected long readskrocuskrocuskrocusPredict MLST directly from uncorrected long readsMultilocus sequence typing, k-mer countingPublic health and epidemiologyTo updatehttps://github.com/quadram-institute-bioscience/krocusSequence Analysiskrocusiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/krocushttps://github.com/galaxyproject/tools-iuc/tree/main/tools/krocus1.0.1krocus1.0.3Multilocus sequence typing, k-mer countingPublic health and epidemiology001000100000000000000010000000000000000000False
lca_wrapperlca1Find lowest diagnostic rankTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicslca_wrapperdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/lca_wrapperhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/lca_wrapper1.0.1taxonomy0.10.000100010000000000000000000000000000001102137False
legstalegstaPerforms in silico Legionella pneumophila sequence based typing.legstalegstalegstaPerforms in silico Legionella pneumophila sequence based typingSequence analysisPublic health and epidemiologyUp-to-datehttps://github.com/tseemann/legstaSequence Analysislegstaiuchttps://github.com/tseemann/legstahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/legsta0.5.1legsta0.5.1Sequence analysisPublic health and epidemiology0010001000000000000000000000000000000100755False
lighterlighterLighter is a kmer-based error correction method for whole genome sequencing datalighterlighterLighterKmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors.k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detectionSequencing, Whole genome sequencing, DNA, GenomicsTo updatehttps://github.com/mourisl/LighterSequence Analysis, Fasta Manipulationlighterbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/lighterhttps://github.com/bgruening/galaxytools/tree/master/tools/lighter1.0lighter1.1.3k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detectionWhole genome sequencing, DNA, Genomics00100010000000000000000000000000000001109152False
limma_voomlimma_voomPerform RNA-Seq differential expression analysis using limma voom pipelinelimmalimmalimmaData analysis, linear models and differential expression for microarray data.RNA-Seq analysisMolecular biology, GeneticsUp-to-datehttp://bioconductor.org/packages/release/bioc/html/limma.htmlTranscriptomics, RNA, Statisticslimma_voomiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voomhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom3.58.1bioconductor-limma3.58.1RNA-Seq analysisMolecular biology, Genetics1111111100000000000000000000000000000110101220344False
lineagespotlineagespotIdentification of SARS-CoV-2 related metagenomic mutations based on a single (or a list of) variant(s) file(s)lineagespotlineagespotlineagespotLineagespot is a framework written in R, and aims to identify and assign different SARS-CoV-2 lineages based on a single variant file (i.e., variant calling format).Variant callingMetagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variationTo updatehttps://www.bioconductor.org/packages/release/bioc/html/lineagespot.htmlMetagenomics, Sequence Analysislineagespotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/lineagespothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/lineagespot1.6.0r-baseVariant callingMetagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variation0010001000000000000000000000000000000100237False
lorikeetlorikeet_spoligotypeTools for M. tuberculosis DNA fingerprinting (spoligotyping)lorikeetlorikeetlorikeetTools for M. tuberculosis DNA fingerprinting (spoligotyping)Sequence analysis, GenotypingGenotype and phenotypeUp-to-datehttps://github.com/AbeelLab/lorikeetSequence Analysislorikeet_spoligotypeiuchttps://github.com/AbeelLab/lorikeethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/lorikeet20lorikeet20Sequence analysis, GenotypingGenotype and phenotype00100010000000000000000000000000000001009647False
lotus2lotus2LotuS2 OTU processing pipelinelotus2lotus2lotus2LotuS2 is a lightweight and user-friendly pipeline that is fast, precise, and streamlined, using extensive pre- and post-ASV/OTU clustering steps to further increase data quality. High data usage rates and reliability enable high-throughput microbiome analysis in minutes.Sequence feature detection, DNA barcodingMetagenomics, Taxonomy, Microbial ecologyTo updatehttp://lotus2.earlham.ac.uk/Metagenomicslotus2earlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus22.32lotus22.34.1Sequence feature detection, DNA barcodingMetagenomics, Taxonomy, Microbial ecology0110011000000000000000000000000000000100114936False
m6anetm6anetm6anet to detect m6A RNA modifications from nanopore datam6Anetm6Anetm6AnetDetection of m6A from direct RNA sequencing using a Multiple Instance Learning framework.Quantification, Imputation, Gene expression profilingRNA-Seq, Transcriptomics, RNA, Machine learningUp-to-datehttps://m6anet.readthedocs.io/en/latestSequence Analysism6anetiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/m6anethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/m6anet2.1.0m6anet2.1.0Quantification, Imputation, Gene expression profilingRNA-Seq, Transcriptomics, RNA, Machine learning001000100000000000000000000000000000000003False
maaslin2maaslin2MaAsLin2 is comprehensive R package for efficiently determining multivariable association between microbial meta'omic features and clinical metadata.maaslin2maaslin2MaAsLin2MaAsLin2 is comprehensive R package for efficiently determining multivariable association between phenotypes, environments, exposures, covariates and microbial meta’omic features. MaAsLin2 relies on general linear models to accommodate most modern epidemiological study designs, including cross-sectional and longitudinal, and offers a variety of data exploration, normalization, and transformation methods.Filtering, Statistical calculation, Standardisation and normalisation, VisualisationMetagenomics, Statistics and probabilityTo updatehttp://huttenhower.sph.harvard.edu/maaslinMetagenomicsmaaslin2iuchttps://github.com/biobakery/Maaslin2https://github.com/galaxyproject/tools-iuc/tree/main/tools/maaslin21.16.0bioconductor-maaslin21.18.0Filtering, Standardisation and normalisation, VisualisationMetagenomics, Statistics and probability001000100000000000000000000000000000010029188False
mafftrbc_mafft_add, rbc_mafftMultiple alignment program for amino acid or nucleotide sequencesMAFFTMAFFTMAFFTMAFFT (Multiple Alignment using Fast Fourier Transform) is a high speed multiple sequence alignment program.Multiple sequence alignmentSequence analysisTo updatehttps://mafft.cbrc.jp/alignment/software/RNAmafftrnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/maffthttps://github.com/bgruening/galaxytools/tree/master/tools/mafft7.526mafft7.525Multiple sequence alignmentSequence analysis2222222201002000000010200200020000000220817143045False
make_nrmake_nrMake a FASTA file non-redundantTo updatehttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nrFasta Manipulation, Sequence Analysismake_nrpeterjchttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nrhttps://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr0.0.3biopython1.70000000000000000000000000000000000000000000False
makermaker, maker_map_idsMAKER is a portable and easily configurable genome annotation pipeline.Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases.makermakerMAKERPortable and easily configurable genome annotation pipeline. It’s purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases.Genome annotationGenomics, DNA, Sequence analysisTo updatehttp://www.yandell-lab.org/software/maker.htmlSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/makerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/maker2.31.11maker3.01.03Genome annotationGenomics, DNA, Sequence analysis22222222000000000000001000000000000002205545591False
mapseqmapseqfast and accurate sequence read classification tool designed to assign taxonomy and OTU classifications to ribosomal RNA sequences.mapseqmapseqMAPseqHighly efficient k-mer search with confidence estimates, for rRNA sequence analysis .k-mer countingFunctional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifsTo updatehttps://github.com/jfmrod/MAPseqMetagenomicsmapseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mapseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mapseq2.1.1perlk-mer countingFunctional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifs00100010000000000000001000000000000001002167False
mashmash_screen, mash_sketchFast genome and metagenome distance estimation using MinHashmashmashMashFast genome and metagenome distance estimation using MinHash.Sequence distance matrix generationGenomics, Metagenomics, Statistics and probability, Sequence analysis, DNA mutationUp-to-datehttps://github.com/marbl/MashMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mashhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mash2.3mash2.3Sequence distance matrix generationMetagenomics, Statistics and probability, Sequence analysis, DNA mutation2222222200000000000000200000000000000220279763False
maxbin2maxbin2clusters metagenomic contigs into binsmaxbinmaxbinMaxBinSoftware for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm.Sequence assemblyMetagenomics, Sequence assembly, MicrobiologyTo updatehttps://downloads.jbei.org/data/microbial_communities/MaxBin/MaxBin.htmlMetagenomicsmaxbin2mbernthttps://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/https://github.com/galaxyproject/tools-iuc/tree/main/tools/maxbin2maxbin22.2.7Sequence assemblyMetagenomics, Sequence assembly, Microbiology11111111000000000000001000000000001001101182059False
maxquantmaxquant, maxquant_mqparwrapper for MaxQuantmaxquantmaxquantMaxQuantQuantitative proteomics software package designed for analyzing large mass-spectrometric data sets. It is specifically aimed at high-resolution MS data.Imputation, Visualisation, Protein quantification, Statistical calculation, Standardisation and normalisation, Heat map generation, Clustering, Principal component plottingProteomics experiment, Proteomics, Statistics and probabilityUp-to-datehttps://www.maxquant.org/Proteomicsmaxquantgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquanthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant2.0.3.0maxquant2.0.3.0Imputation, Visualisation, Protein quantification, Standardisation and normalisation, Heat map generation, ClusteringProteomics experiment, Proteomics, Statistics and probability22202220000000000000020000000000000002204156078False
mclmclThe Markov Cluster Algorithm, a cluster algorithm for graphsmclmclMCLMCL is a clustering algorithm widely used in bioinformatics and gaining traction in other fields.Clustering, Network analysis, Gene regulatory network analysisMolecular interactions, pathways and networksUp-to-datehttps://micans.org/mcl/man/mcl.htmlSequence Analysismcliuchttps://github.com/galaxyproject/tools-iuc/tree/master/mclhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mcl22.282mcl22.282Clustering, Gene regulatory network analysisMolecular interactions, pathways and networks00100010000000000000000000000000000001101029False
medakamedaka_consensus, medaka_consensus_pipeline, medaka_snp, medaka_variantSequence correction provided by ONT ResearchmedakamedakaMedakamedaka is a tool to create consensus sequences and variant calls from nanopore sequencing data. This task is performed using neural networks applied a pileup of individual sequencing reads against a draft assembly.Base-calling, Variant calling, Sequence assemblySequence assembly, Machine learningTo updatehttps://github.com/nanoporetech/medakaSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/medakahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/medaka1.7.2medaka1.11.3Base-calling, Variant calling, Sequence assemblySequence assembly, Machine learning333333330000000000000030000002000000033076899863False
megahitmegahitAn ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph.megahitmegahitMEGAHITSingle node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.Genome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyUp-to-datehttps://github.com/voutcn/megahitSequence Analysis, Assembly, Metagenomicsmegahitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit1.2.9megahit1.2.9Genome assemblyMetagenomics, Sequencing, Sequence assembly11111111000000000000111001000100001001105489530False
megahit_contig2fastgmegahit_contig2fastgA subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg)megahitmegahitMEGAHITSingle node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible.Genome assemblyMetagenomics, Sequencing, Ecology, Sequence assemblyTo updatehttps://github.com/voutcn/megahit/blob/master/tools/toolkit.cppSequence Analysis, Assembly, Metagenomicsmegahit_contig2fastgiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg1.1.3megahit1.2.9Genome assemblyMetagenomics, Sequencing, Sequence assembly111111110000000000000010000001000000011054475False
meganmegan_blast2lca, megan_blast2rma, megan_daa2info, megan_daa2rma, megan_daa_meganizer, megan_read_extractor, megan_sam2rmaMEGAN Community Edition - Interactive exploration and analysis of large-scale microbiome sequencing data. MEGAN is a tool for studying the taxonomic content of a set of DNA reads, typically collected in a metagenomics project.In a preprocessing step, a sequence alignment of all reads against a suitable database of reference DNA or proteinsequences must be performed to produce an input file for the program. MEGAN is suitable for DNA reads (metagenomedata), RNA reads (metatranscriptome data), peptide sequences (metaproteomics data) and, using a suitable synonymsfile that maps SILVA ids to taxon ids, for 16S rRNA data (amplicon sequencing).meganmeganMEGANMetagenome Analysis Software - MEGAN (MEtaGenome ANalyzer) is a new computer program that allows laptop analysis of large metagenomic datasets. In a preprocessing step, the set of DNA reads (or contigs) is compared against databases of known sequences using BLAST or another comparison tool. MEGAN can then be used to compute and interactively explore the taxonomical content of the dataset, employing the NCBI taxonomy to summarize and order the results.Sequence analysis, Taxonomic classificationSequence analysisTo updatehttps://github.com/husonlab/megan-ceSequence Analysismeganiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/meganhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/megan6.21.7megan6.25.9Sequence analysis, Taxonomic classificationSequence analysis00700070000000000000000000000000000007002613610False
meningotypemeningotypeAssign sequence type to N. meningitidis genome assembliesmeningotypemeningotypemeningotypeIn silico typing of Neisseria meningitidis contigs.Genotyping, Multilocus sequence typingMicrobiology, Genotype and phenotypeUp-to-datehttps://github.com/MDU-PHL/meningotypeSequence Analysismeningotypeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotypehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/meningotype0.8.5meningotype0.8.5Multilocus sequence typingMicrobiology, Genotype and phenotype000000000000000000000000000000000000000000False
merqurymerqury, merquryplotMerqury is a tool for evaluating genomes assemblies based of k-mer operations.merqurymerquryMerquryReference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose.Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biologyUp-to-datehttps://github.com/marbl/merquryAssemblymerquryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merquryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury1.3merqury1.3Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assemblySequence assembly, Whole genome sequencing, Plant biology22222222000000000000000000000000000001002442483False
merylmeryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_modeMeryl a k-mer counter.merylmerylMerylMeryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu.k-mer countingWhole genome sequencing, Genomics, Sequence analysis, SequencingUp-to-datehttps://github.com/marbl/merylAssemblymeryliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/merylhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl1.3merqury1.3k-mer countingWhole genome sequencing, Genomics, Sequence analysis000000000000000000000000000000000000000000False
metabat2metabat2_jgi_summarize_bam_contig_depths, metabat2MetaBAT2 (Metagenome Binning based on Abundance and Tetranucleotide frequency) is an automated metagenome binningsoftware that integrates empirical probabilistic distances of genome abundance and tetranucleotide frequency.MetaBAT_2MetaBAT_2MetaBAT 2an adaptive binning algorithm for robust and efficient genome reconstruction from metagenome assemblies | MetaBAT2 clusters metagenomic contigs into different "bins", each of which should correspond to a putative genome | MetaBAT2 uses nucleotide composition information and source strain abundance (measured by depth-of-coverage by aligning the reads to the contigs) to perform binningRead binning, Sequence assembly, Genome annotationMetagenomics, Sequence assembly, Metagenomic sequencingTo updatehttps://bitbucket.org/berkeleylab/metabat/src/master/Metagenomicsmetabat2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metabat2/https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabat22.15metabat22.17Read binning, Sequence assembly, Genome annotationMetagenomics, Sequence assembly, Metagenomic sequencing21222122000000000000001000000000001002001924329False
metaeukmetaeuk_easy_predictMetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand.MetaEukMetaEukMetaEukMetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomicsHomology-based gene predictionMetagenomics, Gene and protein familiesTo updatehttps://github.com/soedinglab/metaeukSequence Analysis, Genome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeukhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk5.34c21f2metaeuk6.a5d39d9Homology-based gene predictionMetagenomics, Gene and protein families001000100000000000000000000000000000011016184False
metagene_annotatormetagene_annotatorMetaGeneAnnotator gene-finding program for prokaryote and phagemetageneannotatormetageneannotatorMetaGeneAnnotatorProkaryotic gene finding program from environmental genome shotgun sequences or metagenomic sequences.Sequence annotationGenomics, Model organisms, Data submission, annotation and curationUp-to-datehttp://metagene.nig.ac.jp/Sequence Analysismetagene_annotatorgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/metagene_annotatorhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metagene_annotator1.0metagene_annotator1.0Sequence annotationGenomics, Model organisms, Data submission, annotation and curation0010001000000000000010100000000000000110115636False
metagenomeseqmetagenomeseq_normalizatonmetagenomeSeq NormalizationmetagenomeseqmetagenomeseqmetagenomeSeqDesigned to determine features (be it Operational Taxanomic Unit (OTU), species, etc.) that are differentially abundant between two or more groups of multiple samples. It is designed to address the effects of both normalization and under-sampling of microbial communities on disease association detection and the testing of feature correlations.Sequence visualisation, Statistical calculationMetagenomics, SequencingTo updatehttps://bioconductor.org/packages/3.18/bioc/html/metagenomeSeq.htmlMetagenomicsmetagenomeseq_normalizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metagenomeseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/metagenomeseq1.16.0-0.0.1bioconductor-metagenomeseq1.43.0Sequence visualisation, Statistical calculationMetagenomics, Sequencing10111011000000000000001000000000000001106753False
metanovometanovoProduce targeted databases for mass spectrometry analysis.metanovometanovoMetaNovoAn open-source pipeline for probabilistic peptide discovery in complex metaproteomic datasets.Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysisProteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small moleculesUp-to-datehttps://github.com/uct-cbio/proteomics-pipelinesProteomicsmetanovogalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovohttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo1.9.4metanovo1.9.4Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysisProteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small molecules0010001000000000000000000000000000000100154181False
metaphlancustomize_metaphlan_database, extract_metaphlan_database, merge_metaphlan_tables, metaphlanMetaPhlAn for Metagenomic Phylogenetic AnalysismetaphlanmetaphlanMetaPhlAnComputational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data.Nucleic acid sequence analysis, Phylogenetic tree analysisMetagenomics, PhylogenomicsUp-to-datehttps://github.com/biobakery/MetaPhlAnMetagenomicsmetaphlaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaphlan4.1.1metaphlan4.1.1Nucleic acid sequence analysisMetagenomics, Phylogenomics124412440000000000001040000000000000044049911069False
metaquantomemetaquantome_db, metaquantome_expand, metaquantome_filter, metaquantome_sample, metaquantome_stat, metaquantome_vizquantitative analysis of microbiome taxonomy and functionmetaQuantomemetaQuantomemetaQuantomemetaQuantome software suite analyzes the state of a microbiome by leveraging complex taxonomic and functional hierarchies to summarize peptide-level quantitative information. metaQuantome offers differential abundance analysis, principal components analysis, and clustered heat map visualizations, as well as exploratory analysis for a single sample or experimental condition.Principal component visualisation, Visualisation, Functional clustering, Query and retrieval, Differential protein expression analysis, Heat map generation, Quantification, Indexing, Filtering, Statistical inferenceProteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, MetagenomicsUp-to-datehttps://github.com/galaxyproteomics/metaquantome/Proteomicsmetaquantomegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantomehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome2.0.2metaquantome2.0.2Principal component visualisation, Functional clustering, Query and retrieval, Heat map generation, Quantification, Indexing, Filtering, Statistical inferenceProteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, Metagenomics06600660000000000000000000000000000006601042522False
metawrapmgmetawrapmg_binningA flexible pipeline for genome-resolved metagenomic data analysismetawrapmetawrapMetaWRAPMetaWRAP aims to be an easy-to-use metagenomic wrapper suite that accomplishes the core tasks of metagenomic analysis from start to finish: read quality control, assembly, visualization, taxonomic profiling, extracting draft genomes (binning), and functional annotation.Read binning, Sequence assembly, Genome annotation, Sequence trimming, DemultiplexingWhole genome sequencing, Metagenomic sequencing, MetagenomicsUp-to-datehttps://github.com/bxlab/metaWRAPMetagenomicsmetawrapmg_binninggalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/metawrapmghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/metawrapmg1.3.0metawrap-mg1.3.0Read binning, Sequence assembly, Genome annotation, Sequence trimming, DemultiplexingWhole genome sequencing, Metagenomic sequencing, Metagenomics011001100000000000000000000000000000000000False
miniaminiaShort-read assembler based on a de Bruijn graphminiaminiaMiniaShort-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day.Genome assemblySequence assemblyUp-to-datehttps://gatb.inria.fr/software/minia/Assemblyminiaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/minia3.2.6minia3.2.6Genome assemblySequence assembly01100110000000000000001000000000000001101092206False
miniasmminiasmMiniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step)miniasmminiasmminiasmMiniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format.De-novo assemblyGenomics, Sequence assemblyTo updatehttps://github.com/lh3/miniasmAssemblyminiasmiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasmhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm0.3_r179miniasm0.3De-novo assemblyGenomics, Sequence assembly111111110000000000000010000000000000011017811938False
minipolishminipolishPolishing miniasm assembliesminipolishminipolishminipolishA tool that bridges the output of miniasm (long-read assembly) and racon (assembly polishing) together to polish a draft assembly. It also provides read depth information in contigs.Localised reassembly, Read depth analysisSequence assembly, SequencingUp-to-datehttps://github.com/rrwick/MinipolishSequence Analysisminipolishbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/minipolishhttps://github.com/bgruening/galaxytools/tree/master/tools/minipolish0.1.3minipolish0.1.3Localised reassembly, Read depth analysisSequence assembly, Sequencing001000100000000000000010000000000000010021185False
miniprotminiprot, miniprot_indexAlign a protein sequence against a genome with affine gap penalty, splicing and frameshift.miniprotminiprotminiprotMiniprot aligns a protein sequence against a genome with affine gap penalty, splicing and frameshift. It is primarily intended for annotating protein-coding genes in a new species using known genes from other species.Sequence alignment, Protein sequence analysisSequence sites, features and motifs, Sequence analysisUp-to-datehttps://github.com/lh3/miniprotSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/miniprothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/miniprot0.13miniprot0.13Sequence alignment, Protein sequence analysisSequence sites, features and motifs, Sequence analysis202220220000000000000000000000000000020030842False
mitosmitos, mitos2de-novo annotation of metazoan mitochondrial genomesmitosmitosMITOSDe novo metazoan mitochondrial genome annotation.Genome annotationZoology, Whole genome sequencingTo updatehttp://mitos.bioinf.uni-leipzig.de/Sequence Analysismitosiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mitoshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mitos1.1.7mitos2.1.9Genome annotationZoology, Whole genome sequencing1120112000000000000000100000000000000210236100920False
mlstmlst, mlst_listScan contig files against PubMLST typing schemesmlstmlstMLSTMulti Locus Sequence Typing from an assembled genome or from a set of reads.Multilocus sequence typingImmunoproteins and antigensTo updatehttps://github.com/tseemann/mlstSequence Analysismlstiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mlsthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mlst2.22.0mlst2.23.0Multilocus sequence typingImmunoproteins and antigens22222222000000000000002000000000000002206359304False
mob_suitemob_recon, mob_typerMOB-suite is a set of software tools for clustering, reconstruction and typing of plasmids from draft assembliesTo updatehttps://github.com/phac-nml/mob-suiteSequence Analysismob_suitenmlhttps://github.com/phac-nml/mob-suitehttps://github.com/phac-nml/galaxy_tools/tree/master/tools/mob_suite3.0.3mob_suite3.1.9022202220000000000000020000000000000020032289021False
mothurmothur_align_check, mothur_align_seqs, mothur_amova, mothur_anosim, mothur_bin_seqs, mothur_biom_info, mothur_chimera_bellerophon, mothur_chimera_ccode, mothur_chimera_check, mothur_chimera_perseus, mothur_chimera_pintail, mothur_chimera_slayer, mothur_chimera_uchime, mothur_chimera_vsearch, mothur_chop_seqs, mothur_classify_otu, mothur_classify_seqs, mothur_classify_tree, mothur_clearcut, mothur_cluster_classic, mothur_cluster_fragments, mothur_cluster_split, mothur_cluster, mothur_collect_shared, mothur_collect_single, mothur_consensus_seqs, mothur_cooccurrence, mothur_corr_axes, mothur_count_groups, mothur_count_seqs, mothur_create_database, mothur_degap_seqs, mothur_deunique_seqs, mothur_deunique_tree, mothur_dist_seqs, mothur_dist_shared, mothur_fastq_info, mothur_filter_seqs, mothur_filter_shared, mothur_get_communitytype, mothur_get_coremicrobiome, mothur_get_dists, mothur_get_group, mothur_get_groups, mothur_get_label, mothur_get_lineage, mothur_get_mimarkspackage, mothur_get_otulabels, mothur_get_otulist, mothur_get_oturep, mothur_get_otus, mothur_get_rabund, mothur_get_relabund, mothur_get_sabund, mothur_get_seqs, mothur_get_sharedseqs, mothur_heatmap_bin, mothur_heatmap_sim, mothur_homova, mothur_indicator, mothur_lefse, mothur_libshuff, mothur_list_otulabels, mothur_list_seqs, mothur_make_biom, mothur_make_contigs, mothur_make_design, mothur_make_fastq, mothur_make_group, mothur_make_lefse, mothur_make_lookup, mothur_make_shared, mothur_make_sra, mothur_mantel, mothur_merge_count, mothur_merge_files, mothur_merge_groups, mothur_merge_sfffiles, mothur_merge_taxsummary, mothur_metastats, mothur_mimarks_attributes, mothur_nmds, mothur_normalize_shared, mothur_otu_association, mothur_otu_hierarchy, mothur_pairwise_seqs, mothur_parse_list, mothur_parsimony, mothur_pca, mothur_pcoa, mothur_pcr_seqs, mothur_phylo_diversity, mothur_phylotype, mothur_pre_cluster, mothur_primer_design, mothur_rarefaction_shared, mothur_rarefaction_single, mothur_remove_dists, mothur_remove_groups, mothur_remove_lineage, mothur_remove_otulabels, mothur_remove_otus, mothur_remove_rare, mothur_remove_seqs, mothur_rename_seqs, mothur_reverse_seqs, mothur_screen_seqs, mothur_sens_spec, mothur_seq_error, mothur_sffinfo, mothur_shhh_flows, mothur_shhh_seqs, mothur_sort_seqs, mothur_split_abund, mothur_split_groups, mothur_sub_sample, mothur_summary_qual, mothur_summary_seqs, mothur_summary_shared, mothur_summary_single, mothur_summary_tax, mothur_taxonomy_to_krona, mothur_tree_shared, mothur_trim_flows, mothur_trim_seqs, mothur_unifrac_unweighted, mothur_unifrac_weighted, mothur_unique_seqs, mothur_vennMothur wrappersmothurmothurmothurOpen-source, platform-independent, community-supported software for describing and comparing microbial communitiesDNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysisMicrobial ecology, Taxonomy, Sequence analysis, PhylogenyTo updatehttps://www.mothur.orgMetagenomicsmothuriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mothurhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mothur1.0mothur1.48.0DNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysisMicrobial ecology, Taxonomy, Sequence analysis, Phylogeny1291291291291291291291290300000000001280300000000000000129129014353302916False
mrbayesmrbayesA program for the Bayesian estimation of phylogeny.To updateSequence Analysismrbayesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/mrbayes1.0.2mrbayes3.2.7000000000000000000000100000000000000000000False
msconvertmsconvertmsconvert Convert and/or filter mass spectrometry files (including vendor formats) using the official Docker containermsconvertmsconvertmsConvertmsConvert is a command-line utility for converting between various mass spectrometry data formats, including from raw data from several commercial companies (with vendor libraries, Windows-only). For Windows users, there is also a GUI, msConvertGUI.Filtering, FormattingProteomics, Proteomics experimentTo updatehttp://proteowizard.sourceforge.net/tools.shtmlProteomicsmsconvertgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconverthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert3.0.20287Filtering, FormattingProteomics, Proteomics experiment111111110000000000000000000000000000011018919958False
msstatstmtmsstatstmtMSstatsTMT protein significance analysis in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labelingTo updatehttp://msstats.org/msstatstmt/Proteomicsmsstatstmtgalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmthttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt2.0.0bioconductor-msstatstmt2.10.0011001100000000000000000000000000000010071726False
multigseamultigseaGSEA-based pathway enrichment analysis for multi-omics datamultiGSEAmultiGSEAmultiGSEAA GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration.Gene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small moleculesUp-to-datehttps://bioconductor.org/packages/devel/bioc/html/multiGSEA.htmlTranscriptomics, Proteomics, Statisticsmultigseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multigseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea1.12.0bioconductor-multigsea1.12.0Gene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules0010001000000000000000000000000000000100253False
multiqcmultiqcMultiQC aggregates results from bioinformatics analyses across many samples into a single reportmultiqcmultiqcMultiQCMultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools.Validation, Sequencing quality controlSequencing, Bioinformatics, Sequence analysis, GenomicsTo updatehttp://multiqc.info/Fastq Manipulation, Statistics, Visualizationmultiqciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc1.11multiqc1.24.1Sequencing quality controlSequencing, Bioinformatics, Sequence analysis, Genomics11111111000010000000111001000100000001108320162790False
mykrobemykrobe_predictAntibiotic resistance predictionsMykrobeMykrobeMykrobeAntibiotic resistance prediction for Mycobacterium tuberculosis from genome sequence data with Mykrobe.Antibiotic resistance prediction in minutes.Table of Contents generated with DocToc.AMR prediction (Mykrobe predictor).Before attempting to install with bioconda, please ensure you have your channels set up as specified in the documentation. If you don't, you may run into issues with an older version of mykrobe being installedAntimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimmingWhole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, MetagenomicsTo updatehttps://github.com/Mykrobe-tools/mykrobeSequence Analysismykrobeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/mykrobehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/mykrobe0.10.0mykrobe0.13.0Antimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimmingWhole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, Metagenomics000000000000000000000000000000000000000000False
mykrobe_parsermykrobe_parseRRScript to parse the results of mykrobe predictor.To updatehttps://github.com/phac-nml/mykrobe-parserSequence Analysismykrobe_parsernmlhttps://github.com/phac-nml/mykrobe-parserhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/mykrobe_parser0.1.4.1r-base000000000000000000000000000000000000000000False
mz_to_sqlitemz_to_sqliteCreates a SQLite database for proteomics datamztosqlitemztosqlitemzToSQLiteConvert proteomics data files into a SQLite databaseConversion, Peptide database searchProteomics, Biological databasesTo updatehttps://github.com/galaxyproteomics/mzToSQLiteProteomicsmz_to_sqlitegalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlitehttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite2.1.1+galaxy0mztosqlite2.1.1Conversion, Peptide database searchProteomics, Biological databases111011100000000000000000000000000000011033844False
nanocomporenanocompore_db, nanocompore_sampcompNanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro.NanocomporeNanocomporeNanocomporeRNA modifications detection by comparative Nanopore direct RNA sequencing.RNA modifications detection from Nanopore dRNA-Seq data.Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples.Analyses performed for the nanocompore paper.Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitroPost-translation modification site prediction, PolyA signal detection, Genotyping, k-mer countingFunctional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sitesTo updatehttps://nanocompore.rna.rocks/Sequence Analysisnanocomporeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanocomporehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nanocompore1.0.0rc3.post2nanocompore1.0.4PolyA signal detection, Genotyping, k-mer countingFunctional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sites01200120000000000000001000000000000002203836False
nanoplotnanoplotPlotting tool for long read sequencing data and alignmentsnanoplotnanoplotNanoPlotNanoPlot is a tool with various visualizations of sequencing data in bam, cram, fastq, fasta or platform-specific TSV summaries, mainly intended for long-read sequencing from Oxford Nanopore Technologies and Pacific BiosciencesScatter plot plotting, Box-Whisker plot plottingGenomicsUp-to-datehttps://github.com/wdecoster/NanoPlotVisualizationnanoplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanoplot/https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanoplot1.43.0nanoplot1.43.0Scatter plot plotting, Box-Whisker plot plottingGenomics1111111100000000000011100000010000000110219563235False
nanopolishcompnanopolishcomp_eventaligncollapse, nanopolishcomp_freqmethcalculateNanopolishComp contains 2 modules. Eventalign_collapse collapses the raw file generated by nanopolish eventalign by kmers rather than by event. Freq_meth_calculate methylation frequency at genomic CpG sites from the output of nanopolish call-methylation.nanopolishcompnanopolishcompNanopolishCompNanopolishComp is a Python3 package for downstream analyses of Nanopolish output files.It is a companion package for Nanopolish.Methylation analysis, Collapsing methodsSequence analysis, Sequencing, Genetic variationTo updatehttps://a-slide.github.io/NanopolishCompSequence Analysisnanopolishcompiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nanopolishcomphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nanopolishcomp0.6.11nanopolishcomp0.6.12Methylation analysis, Collapsing methodsSequence analysis, Sequencing, Genetic variation0022002200000000000000000000000000000220151074False
ncbi_blast_plusblastxml_to_tabular, get_species_taxids, ncbi_blastdbcmd_info, ncbi_blastdbcmd_wrapper, ncbi_blastn_wrapper, ncbi_blastp_wrapper, ncbi_blastx_wrapper, ncbi_convert2blastmask_wrapper, ncbi_deltablast_wrapper, ncbi_dustmasker_wrapper, ncbi_makeblastdb, ncbi_makeprofiledb, ncbi_psiblast_wrapper, ncbi_rpsblast_wrapper, ncbi_rpstblastn_wrapper, ncbi_segmasker_wrapper, ncbi_tblastn_wrapper, ncbi_tblastx_wrapperNCBI BLAST+To updatehttps://blast.ncbi.nlm.nih.gov/Sequence Analysisncbi_blast_plusdevteamhttps://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plushttps://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus2.14.1python1616161616161616015001500000001615160000001600001600161504066365597False
ncbi_fcs_gxncbi_fcs_gxFCS-GX detects contamination from foreign organisms in genome sequences using the genome cross-species aligner (GX).ncbi_fcsncbi_fcsNCBI fcsThe NCBI Foreign Contamination Screen (FCS) is a tool suite for identifying and removing contaminant sequences in genome assemblies. Contaminants are defined as sequences in a dataset that do not originate from the biological source organism and can arise from a variety of environmental and laboratory sources. FCS will help you remove contaminants from genomes before submission to GenBank.Sequence assembly validation, Sequence trimming, Sequence contamination filteringSequence analysis, Sequence assemblyUp-to-datehttps://github.com/ncbi/fcs-gxSequence Analysisncbi_fcs_gxiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gxhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx0.5.4ncbi-fcs-gx0.5.4Sequence assembly validation, Sequence trimming, Sequence contamination filteringSequence analysis, Sequence assembly101010100000000000000010000000000000000000False
newick_utilsnewick_displayPerform operations on Newick treesnewick_utilitiesnewick_utilitiesNewick UtilitiesThe Newick Utilities are a set of command-line tools for processing phylogenetic trees. They can process arbitrarily large amounts of data and do not require user interaction, which makes them suitable for automating phylogeny processing tasks.Phylogenetic tree generation, Phylogenetic tree analysis, Phylogenetic tree reconstructionPhylogeny, Genomics, Computer scienceTo updatehttp://cegg.unige.ch/newick_utilsVisualization, Metagenomicsnewick_utilsiuchttps://github.com/tjunier/newick_utilshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/newick_utils1.6+galaxy1newick_utils1.6Phylogeny, Genomics, Computer science111111110000000000000010000000000000011044825505False
nextcladenextalign, nextcladeIdentify differences between your sequences and a reference sequence used by NextstrainnextcladenextcladeNextcladeNextclade is an open-source project for viral genome alignment, mutation calling, clade assignment, quality checks and phylogenetic placement.Methylation analysis, Variant callingGenomics, Sequence analysis, CladisticsTo updatehttps://github.com/nextstrain/nextcladeSequence Analysisiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nextcladehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nextclade2.7.0nextalign2.14.0Methylation analysis, Variant callingGenomics, Cladistics11221122000000000000002001000100000002002104080False
nextdenovonextdenovoString graph-based de novo assembler for long readsnextdenovonextdenovoNextDenovoNextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a "correct-then-assemble" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages.De-novo assembly, Genome assemblySequencing, Sequence assemblyTo updatehttps://github.com/Nextomics/NextDenovoAssemblynextdenovobgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovohttps://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo2.5.0nextdenovo2.5.2De-novo assembly, Genome assemblySequencing, Sequence assembly001000100000000000000000000000000000010084268False
nonpareilnonpareilEstimate average coverage in metagenomic datasetsnonpareilnonpareilnonpareilEstimate metagenomic coverage and sequence diversityOperationTo updatehttp://nonpareil.readthedocs.ioMetagenomicsnonpareiliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nonpareilhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nonpareil3.1.1nonpareil3.5.5Operation10111011000000000000001000000000000001105142False
nucleosome_predictionNucleosomePrediction of Nucleosomes Positions on the Genomenucleosome_predictionnucleosome_predictionnucleosome_predictionPrediction of Nucleosomes Positions on the GenomePrediction and recognition, Nucleosome position prediction, Sequence analysisStructural genomics, Nucleic acid sites, features and motifsUp-to-datehttps://genie.weizmann.ac.il/software/nucleo_exe.htmlSequence Analysisnucleosome_predictionbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_predictionhttps://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction3.0nucleosome_prediction3.0Prediction and recognition, Nucleosome position prediction, Sequence analysisStructural genomics, Nucleic acid sites, features and motifs00100010000000000000000000000000000001102861False
nugen_nudupnugen_nudupMarks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products.nudupnudupNuDupMarks/removes duplicate molecules based on the molecular tagging technology used in Tecan products.Duplication detectionSequencingUp-to-datehttps://github.com/tecangenomics/nudupSAM, Metagenomics, Sequence Analysis, Transcriptomicsnugen_nudupiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nuduphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup2.3.3nudup2.3.3Duplication detectionSequencing000000000000000000000000000000000000000000False
obisindicatorsobisindicators, obis_dataCompute biodiveristy indicators for marine data from obisTo updatehttps://github.com/Marie59/obisindicatorsEcologyecologyhttps://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicatorshttps://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators0.0.2r-base1021102100000000000000000000000000000100445False
obitoolsobi_illumina_pairend, obi_ngsfilter, obi_annotate, obi_clean, obi_convert, obi_grep, obi_sort, obi_stat, obi_tab, obi_uniqOBITools is a set of programs developed to simplify the manipulation of sequence filesobitoolsobitoolsOBIToolsSet of python programs developed to simplify the manipulation of sequence files. They were mainly designed to help us for analyzing Next Generation Sequencer outputs (454 or Illumina) in the context of DNA Metabarcoding.Sequence analysis, Sequence analysisSequence analysis, DNA, SequencingUp-to-datehttp://metabarcoding.org/obitoolsSequence Analysisobitoolsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/obitoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/obitools1.2.13obitools1.2.13Sequence analysis, Sequence analysisSequence analysis, DNA, Sequencing01010100101010000000000000000000000000000001010050326251False
omarkomarkProteome quality assessment softwareomarkomarkOMArkProteome quality assessment softwareSequence assembly validation, Differential protein expression profilingProteomics, Sequence analysis, Statistics and probabilityTo updatehttps://github.com/DessimozLab/OMArkSequence Analysisomarkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/omark/https://github.com/galaxyproject/tools-iuc/tree/main/tools/omark0.3.0Sequence assembly validation, Differential protein expression profilingProteomics, Sequence analysis, Statistics and probability001100110000000000000000000000000000000000False
orfipyorfipyGalaxy wrapper for ORFIPYorfipyorfipyorfipyA fast and flexible tool for extracting ORFs.orfipy is a tool written in python/cython to extract ORFs in extremely an fast and flexible manner. Other popular ORF searching tools are OrfM and getorf. Compared to OrfM and getorf, orfipy provides the most options to fine tune ORF searches. orfipy uses multiple CPU cores and is particularly faster for data containing multiple smaller fasta sequences such as de-novo transcriptome assemblies. Please read the preprint here.Coding region prediction, Database search, Transcriptome assembly, De-novo assemblyComputer science, RNA-Seq, Transcriptomics, Small moleculesUp-to-datehttps://github.com/urmi-21/orfipySequence Analysisorfipyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/orfipyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/orfipy0.0.4orfipy0.0.4Coding region prediction, Database search, Transcriptome assembly, De-novo assemblyComputer science, RNA-Seq, Transcriptomics, Small molecules101010100000000000000000000000000000010053774False
orthofinderorthofinder_onlygroupsAccurate inference of orthologous gene groups made easyOrthoFinderOrthoFinderOrthoFinderOrthoFinder is a fast, accurate and comprehensive platform for comparative genomics. It finds orthogroups and orthologs, infers rooted gene trees for all orthogroups and identifies all of the gene duplcation events in those gene trees. It also infers a rooted species tree for the species being analysed and maps the gene duplication events from the gene trees to branches in the species tree. OrthoFinder also provides comprehensive statistics for comparative genomic analyses.Genome comparison, Phylogenetic tree generation (from molecular sequences), Phylogenetic tree analysis, Genome alignmentPhylogenetics, Phylogenomics, Bioinformatics, Comparative genomics, Sequence analysisUp-to-datehttps://github.com/davidemms/OrthoFinderPhylogenetics, Sequence Analysisorthofinderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/orthofinderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/orthofinder2.5.5orthofinder2.5.5Genome comparison, Genome alignmentPhylogenetics, Phylogenomics, Bioinformatics, Comparative genomics01110111010000000000000000000000000001002391333False
peptideshakerfasta_cli, ident_params, peptide_shaker, search_guiPeptideShaker and SearchGUITo updatehttp://compomics.github.ioProteomicspeptideshakergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshakerhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshakersearchgui4.3.9444444440000000000000000000000000000042048517477False
pfamscanpfamscanSearch a FASTA sequence against a library of Pfam HMM.pfamscanpfamscanPfamScanThis tool is used to search a FASTA sequence against a library of Pfam HMM.Protein sequence analysisSequence analysisUp-to-datehttp://ftp.ebi.ac.uk/pub/databases/Pfam/Tools/Sequence Analysispfamscanbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/pfamscanhttps://github.com/bgruening/galaxytools/tree/master/tools/pfamscan1.6pfam_scan1.6Protein sequence analysisSequence analysis111111110000000000000000000000000000010019165False
pharokkapharokkarapid standardised annotation tool for bacteriophage genomes and metagenomespharokkapharokkaPharokkaPharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes.Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assemblyMetagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNATo updatehttps://github.com/gbouras13/pharokkaGenome annotationpharokkaiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokkahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka1.3.2\n pharokka\nGenome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assemblyMetagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA0110011000000000000000100000000000100100742565False
phyloseqphyloseq_from_biom, phyloseq_from_dada2, phyloseq_plot_ordination, phyloseq_plot_richnessHandling and analysis of high-throughput microbiome census dataphyloseqphyloseqphyloseqProvides a set of classes and tools to facilitate the import, storage, analysis, and graphical display of microbiome census data.Deposition, Analysis, VisualisationMicrobiology, Sequence analysis, MetagenomicsUp-to-datehttps://www.bioconductor.org/packages/release/bioc/html/phyloseq.htmlMetagenomicsphyloseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/phyloseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/phyloseq1.46.0bioconductor-phyloseq1.46.0Deposition, Analysis, VisualisationMicrobiology, Sequence analysis, Metagenomics014401440000000000004000000000000000033082812False
phymlphymlPhyML is a phylogeny software based on the maximum-likelihood principle.phymlphymlPhyMLPhylogenetic estimation software using Maximum LikelihoodPhylogenetic tree generation (maximum likelihood and Bayesian methods)Phylogenetics, Bioinformatics, PhylogeneticsUp-to-datehttp://www.atgc-montpellier.fr/phyml/Phylogeneticsphymliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/phymlhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/phyml3.3.20220408phyml3.3.20220408Phylogenetics, Bioinformatics, Phylogenetics01110111010000000000011000000000000001101041770False
picrustpicrust_categorize, picrust_compare_biom, picrust_format_tree_and_trait_table, picrust_metagenome_contributions, picrust_normalize_by_copy_number, picrust_predict_metagenomesPICRUSt wrapperspicrustpicrustPICRUStPICRUSt (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a bioinformatics software package designed to predict metagenome functional content from marker gene (e.g., 16S rRNA) surveys and full genomes.Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcodingMetagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencingTo updatehttps://picrust.github.io/picrust/Metagenomicspicrustiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/picrusthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust1.1.1picrust1.1.4Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcodingMetagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencing0656065600000000000000600000000000000550451095False
picrust2picrust2_add_descriptions, picrust2_hsp, picrust2_metagenome_pipeline, picrust2_pathway_pipeline, picrust2_pipeline, picrust2_place_seqs, picrust2_shuffle_predictionsPICRUSt2: Phylogenetic Investigation of Communities by Reconstruction of Unobserved Statespicrust2picrust2PICRUSt2PICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences.Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysisMetagenomics, Microbiology, Phylogenetics, Metagenomic sequencingUp-to-datehttps://github.com/picrust/picrust2/wikiMetagenomicspicrust2iuchttps://github.com/picrust/picrust2https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust22.5.3picrust22.5.3Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysisMetagenomics, Microbiology, Phylogenetics, Metagenomic sequencing0770077000000000000000000000000000000700881000False
plasflowPlasFlowPlasFlow - Prediction of plasmid sequences in metagenomic contigs.plasflowplasflowPlasFlowPlasFlow is a set of scripts used for prediction of plasmid sequences in metagenomic contigs.Sequence analysisMetagenomicsUp-to-datehttps://github.com/smaegol/PlasFlowSequence Analysisplasflowiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflowhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/plasflow1.1.0plasflow1.1.0Sequence analysisMetagenomics111011100000000000001000000000000000011027822589False
plasmidfinderplasmidfinder"PlasmidFinder provides the detection of replicons in the WGSand assigns the plasmids under study to lineages that trace backthe information to the existing knowledge on Inc groups and suggestspossible reference plasmids for each lineage"PlasmidFinderPlasmidFinderPlasmidFinderPlasmidFinder is a tool for the identification and typing of Plasmid Replicons in Whole-Genome Sequencing (WGS).Genome assembly, Scaffolding, Multilocus sequence typingWhole genome sequencing, Sequence assembly, Mapping, Probes and primersUp-to-datehttps://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/Sequence Analysisplasmidfinderiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/plasmidfinder2.1.6plasmidfinder2.1.6Genome assembly, Scaffolding, Multilocus sequence typingWhole genome sequencing, Sequence assembly, Mapping, Probes and primers0111011100000000000010000000000000000100822False
plasmidspadesplasmidspadesGenome assembler for assemblying plasmidTo updateAssemblyplasmidspadesnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades1.1spades4.0.0000000000000100000000110000000000000000000False
polypolishpolypolish"Polypolish is a tool for polishing genome assemblies with short reads.Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location).This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix."PolypolishPolypolishPolypolishPolypolish is a tool for polishing genome assemblies with short reads. Unlike other tools in this category, Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location). This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix.Genome assembly, Read mapping, Mapping assembly, Sequencing error detectionSequence assembly, Sequence composition, complexity and repeats, MappingTo updatehttps://github.com/rrwick/PolypolishSequence Analysispolypolishiuchttps://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolishhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/polypolish0.5.0polypolish0.6.0Genome assembly, Read mapping, Mapping assembly, Sequencing error detectionSequence assembly, Sequence composition, complexity and repeats, Mapping011101110000000000000010000000000000010024239False
prodigalprodigalA protein-coding gene prediction software tool for bacterial and archaeal genomesprodigalprodigalProdigalFast, reliable protein-coding gene prediction for prokaryotic genomes.Genome annotationGenomics, Sequence analysisUp-to-datehttps://github.com/hyattpd/ProdigalGenome annotationprodigaliuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigalhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal2.6.3prodigal2.6.3Genome annotationGenomics, Sequence analysis001100110000000000100010000000000000000000False
prokkaprokkaRapid annotation of prokaryotic genomesprokkaprokkaProkkaSoftware tool to annotate bacterial, archaeal and viral genomes quickly and produce standards-compliant output files.Gene prediction, Coding region prediction, Genome annotationGenomics, Model organisms, VirologyUp-to-datehttp://github.com/tseemann/prokkaSequence Analysisprokkacrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/prokka/https://github.com/galaxyproject/tools-iuc/tree/main/tools/prokka1.14.6prokka1.14.6Coding region prediction, Genome annotationGenomics, Model organisms, Virology11111111000000000000111001000100001001103233371445False
promerpromer4_substitutionsAligns two sets of contigs and reports amino acid substitutions between themTo updatehttps://github.com/phac-nml/promerAssemblypromernmlhttps://github.com/phac-nml/promerhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/promer1.2python000000000000000000000000000000000000000000False
proteinorthoproteinortho, proteinortho_grab_proteins, proteinortho_summaryProteinortho is a tool to detect orthologous proteins/genes within different species.proteinorthoproteinorthoProteinorthoProteinortho is a tool to detect orthologous genes within different speciesSequence clustering, Sequence analysisComparative genomicsTo updatehttps://gitlab.com/paulklemm_PHD/proteinorthoProteomicsproteinorthoiuchttps://gitlab.com/paulklemm_PHD/proteinorthohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/proteinortho6.3.1proteinortho6.3.2Sequence clustering, Sequence analysisComparative genomics00300030000000000000001000000000000003302003320False
pycoqcpycoqcQC metrics for ONT BasecallingpycoqcpycoqcpycoQCPycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data.Sequencing quality control, Statistical calculationSequence analysis, Data quality management, SequencingUp-to-datehttps://github.com/tleonardi/pycoQCNanoporepycoqciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc2.5.2pycoqc2.5.2Sequencing quality control, Statistical calculationSequence analysis, Data quality management, Sequencing111111110000000000001010000000000000010035021123False
pygenometrackspygenomeTrackspyGenomeTracks: Standalone program and library to plot beautiful genome browser tracks.pygenometrackspygenometrackspyGenomeTracksreproducible plots for multivariate genomic data sets.Standalone program and library to plot beautiful genome browser tracks.pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. Currently, it is possible to plot:.Visualisation, FormattingModel organisms, Imaging, WorkflowsTo updatehttps://github.com/deeptools/pyGenomeTracksVisualizationpygenometracksiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pygenometrackshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/pygenometracks3.8pygenometracks3.9Visualisation, FormattingModel organisms, Imaging, Workflows111111110000000000001000000000000000011037711332False
qiime_add_onqiime_collapse_samples, qiime_make_otu_tableQIIME to perform microbial community analysisqiime_add_onqiime_add_on, qiime_coreqiime_add_onQIIME 2 is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed.Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality controlMicrobial ecology, Phylogeny, Metagenomics, MetatranscriptomicsTo updatehttp://www.qiime.orgMetagenomicsqiimeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_add_onqiime1.9.1Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality controlMicrobial ecology, Phylogeny, Metagenomics, Metatranscriptomics0022002200000000000000000000000000000220681909False
qiime_coreqiime_align_seqs, qiime_alpha_diversity, qiime_alpha_rarefaction, qiime_assign_taxonomy, qiime_beta_diversity, qiime_beta_diversity_through_plots, qiime_compare_categories, qiime_core_diversity, qiime_count_seqs, qiime_extract_barcodes, qiime_filter_alignment, qiime_filter_fasta, qiime_filter_otus_from_otu_table, qiime_filter_samples_from_otu_table, qiime_filter_taxa_from_otu_table, qiime_jackknifed_beta_diversity, qiime_make_emperor, qiime_make_otu_heatmap, qiime_make_phylogeny, qiime_multiple_join_paired_ends, qiime_multiple_split_libraries_fastq, qiime_pick_closed_reference_otus, qiime_pick_open_reference_otus, qiime_pick_otus, qiime_pick_rep_set, qiime_plot_taxa_summary, qiime_split_libraries, qiime_split_libraries_fastq, qiime_summarize_taxa, qiime_summarize_taxa_through_plots, qiime_upgma_cluster, qiime_validate_mapping_fileQIIME to perform microbial community analysisqiime_coreqiime_coreqiime_coreQIIME 2™ is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed.Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality controlMicrobial ecology, Phylogeny, Metagenomics, MetatranscriptomicsTo updatehttp://www.qiime.orgMetagenomicsqiimeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_coreqiime1.9.1Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality controlMicrobial ecology, Phylogeny, Metagenomics, Metatranscriptomics00323200323200000000000031010000000000000031310115528681False
qualimapqualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseqQualimap 2 is a platform-independent application written in Java andR that facilitates the quality control of alignment sequencing data and itsderivatives like feature counts.qualimapqualimapQualiMapPlatform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data.Sequencing quality controlData quality managementUp-to-datehttp://qualimap.bioinfo.cipf.es/Sequence Analysis, Transcriptomics, SAMqualimapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap2.3qualimap2.3Sequencing quality controlData quality management44414441000000000000004001000100000004401328664470False
quastquastQuast (Quality ASsessment Tool) evaluates genome assemblies.quastquastQUASTQUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports.Visualisation, Sequence assembly validationSequence assemblyUp-to-datehttp://quast.bioinf.spbau.ru/Assemblyquastiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quasthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/quast5.2.0quast5.2.0Visualisation, Sequence assembly validationSequence assembly1111111100001000000011100100010000000110356751567False
quickmergequickmergeMerge long-read and hybrid assemblies to increase contiguityquickmergequickmergequickmergeQuickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads.Genome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotypeUp-to-datehttps://github.com/mahulchak/quickmergeAssemblyquickmergegalaxy-australiahttps://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmergehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge0.3quickmerge0.3Genome assembly, Scaffolding, De-novo assembly, GenotypingStructural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype000000000000000000000000000000000000001000False
rRNAmeta_rnaIdentification of ribosomal RNA genes in metagenomic fragments.To updatehttp://weizhong-lab.ucsd.edu/meta_rna/RNArrnarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rRNAhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rRNA0.1hmmsearch3.0000000000000000000000000000000000000000000False
raconraconConsensus module for raw de novo DNA assembly of long uncorrected reads.RaconRaconRaconConsensus module for raw de novo DNA assembly of long uncorrected readsRacon is intended as a standalone consensus module to correct raw contigs generated by rapid assembly methods which do not include a consensus step. The goal of Racon is to generate genomic consensus which is of similar or better quality compared to the output generated by assembly methods which employ both error correction and consensus steps, while providing a speedup of several times compared to those methods. It supports data produced by both Pacific Biosciences and Oxford Nanopore Technologies.Genome assembly, Mapping assemblyWhole genome sequencing, Sequence assemblyUp-to-datehttps://github.com/isovic/raconSequence Analysisraconbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/raconhttps://github.com/bgruening/galaxytools/tree/master/tools/racon1.5.0racon1.5.0Genome assembly, Mapping assemblyWhole genome sequencing, Sequence assembly111111110000000000000010000000000000011030921353False
rasusarasusaRandomly subsample sequencing reads to a specified coveragerasusarasusarasusaProduces an unbiased subsample of your readsTo updatehttps://github.com/mbhall88/rasusaSequence Analysisrasusaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rasusahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rasusa2.0.0rasusa2.1.0001000100000000000000000000000000000000000False
raxmlraxmlRAxML - A Maximum Likelihood based phylogenetic inferenceraxmlraxmlRAxMLA tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies.Sequence analysis, Phylogenetic tree analysisPhylogenetics, Sequence analysisTo updatehttp://www.exelixis-lab.org/web/software/raxml/Phylogeneticsraxmliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/raxmlhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/raxml8.2.12raxml8.2.13Sequence analysisPhylogenetics11111111000010000000001000000000000001103836808False
read_it_and_keepread_it_and_keepRapid decontamination of SARS-CoV-2 sequencing readsread_it_and_keepread_it_and_keepread_it_and_keepRead contamination removalFiltering, Genome alignmentPathology, GenomicsTo updatehttps://github.com/GenomePathogenAnalysisService/read-it-and-keepSequence Analysisread_it_and_keepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/read-it-and-keephttps://github.com/galaxyproject/tools-iuc/tree/main/tools/read_it_and_keep0.2.2read-it-and-keep0.3.0Filtering, Genome alignmentPathology, Genomics1010101000000000000000100000000000000100713370False
reagoreagoReago is tool to assembly 16S ribosomal RNA recovery from metagenomic data.reagoreagoREAGOThis is an assembly tool for 16S ribosomal RNA recovery from metagenomic data.Sequence assemblySequence assembly, RNA, Metagenomics, MicrobiologyUp-to-datehttps://github.com/chengyuan/reago-1.1Metagenomics, RNAreagornateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reagohttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago1.1reago1.1Sequence assemblySequence assembly, RNA, Metagenomics, Microbiology001000100000000000000000000000000000000000False
recentrifugerecentrifuge"With Recentrifuge, researchers can analyze results from taxonomic classifiers using interactive charts with emphasis on the confidence level of the classifications.In addition to contamination-subtracted samples.Recentrifuge provides shared and exclusive taxa per sample,thus enabling robust contamination removal and comparative analysis in environmental and clinical metagenomics."RecentrifugeRecentrifugeRecentrifugeRobust comparative analysis and contamination removal for metagenomics.Taxonomic classification, Expression analysis, Cross-assemblyMetagenomics, Microbial ecology, Metagenomic sequencingUp-to-datehttps://github.com/khyox/recentrifugeMetagenomicsrecentrifugeiuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/recentrifugehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/recentrifuge1.14.1recentrifuge1.14.1Taxonomic classification, Expression analysis, Cross-assemblyMetagenomics, Microbial ecology, Metagenomic sequencing111111110000000000001010000000000000010048331False
repeatexplorer2repeatexplorer_clusteringTool for annotation of repeats from unassembled shotgun reads.To updatehttps://github.com/repeatexplorer/repex_tareanGenome annotationrepeatexplorer2ggahttps://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer22.3.80010001000000000000000000000000000000000016False
roaryroaryRoary the pangenome pipelineroaryroaryRoaryA high speed stand alone pan genome pipeline, which takes annotated assemblies in GFF3 format (produced by Prokka (Seemann, 2014)) and calculates the pan genome.Genome assemblyDNA, Genomics, MappingUp-to-datehttps://sanger-pathogens.github.io/Roary/Sequence Analysisroaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/roaryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/roary3.13.0roary3.13.0Genome assemblyDNA, Genomics, Mapping111111110000000000000010000000000000011065612225False
rseqcrseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tinan RNA-seq quality control packagerseqcrseqcRSeQCProvides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc.Data handlingSequencingUp-to-datehttps://code.google.com/p/rseqc/Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualizationrseqcnileshhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc5.0.3rseqc5.0.3Data handlingSequencing222222222222222200000000000022000022000220000000222203206133498False
salmonalevin, salmon, salmonquantmergeSalmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data.salmonsalmonSalmonA tool for transcript expression quantification from RNA-seq dataSequence composition calculation, RNA-Seq quantification, Gene expression analysisRNA-Seq, Gene expression, TranscriptomicsTo updatehttps://github.com/COMBINE-lab/salmonSequence Analysis, RNA, Transcriptomicsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/salmonhttps://github.com/bgruening/galaxytools/tree/master/tools/salmon1.10.1salmon1.10.3Sequence composition calculation, RNA-Seq quantification, Gene expression analysisRNA-Seq, Transcriptomics223122310000000000000210010002000000033096961937False
sarscov2formattersarscov2formattersarscov2formatter custom scriptUp-to-datehttps://github.com/nickeener/sarscov2formatterSequence Analysissarscov2formatteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2formatterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2formatter1.0sarscov2formatter1.010101010000000000000000000000000000001107173False
sarscov2summarysarscov2summarysarscov2summary custom scriptTo updatehttps://github.com/nickeener/sarscov2summarySequence Analysissarscov2summaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2summaryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2summary0.1sarscov2summary0.510101010000000000000000000000000000001101140False
scoaryscoaryScoary calculates the assocations between all genes in the accessory genome and the traits.scoaryscoaryScoaryPan-genome wide association studies and is designed to take the gene_presence_absence.csv file from Roary as well as a traits file created by the user and calculate the assocations between all genes in the accessory genome (all genes that are present in i genomes where 1 < i < N) and the traits. It reports a list of genes sorted by strength of association per trait.AnalysisGenotype and phenotype, Model organisms, GWAS study, Functional genomicsUp-to-datehttps://github.com/AdmiralenOla/ScoaryMetagenomicsscoaryiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scoaryhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scoary1.6.16scoary1.6.16AnalysisGenotype and phenotype, Model organisms, GWAS study, Functional genomics001000100000000000000010000000000000010061676False
semibinsemibin_bin, semibin_concatenate_fasta, semibin_generate_cannot_links, semibin_generate_sequence_features, semibin, semibin_trainSemiBin: Semi-supervised Metagenomic Binning Using Siamese Neural NetworkssemibinsemibinSemiBinCommand tool for metagenomic binning with semi-supervised deep learning using information from reference genomes.Sequence assembly, Read binningMetagenomics, Machine learning, Microbial ecology, Sequence assemblyTo updatehttps://semibin.readthedocs.io/en/latest/Metagenomicssemibiniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/semibinhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/semibin2.0.2semibin2.1.0Sequence assembly, Read binningMetagenomics, Machine learning, Microbial ecology, Sequence assembly006100610000000000000000000000000000060039542False
seqkitseqkit_fx2tab, seqkit_locate, seqkit_sort, seqkit_stats, seqkit_translateA cross-platform and ultrafast toolkit for FASTA/Q file manipulationseqkitseqkitseqkitFASTA and FASTQ are basic and ubiquitous formats for storing nucleotide and protein sequences. Common manipulations of FASTA/Q file include converting, searching, filtering, deduplication, splitting, shuffling, and sampling. Existing tools only implement some of these manipulations, and not particularly efficiently, and some are only available for certain operating systems. Furthermore, the complicated installation process of required packages and running environments can render these programs less user friendly. SeqKit demonstrates competitive performance in execution time and memory usage compared to similar tools. The efficiency and usability of SeqKit enable researchers to rapidly accomplish common FASTA/Q file manipulations.DNA transcription, Sequence trimming, DNA translation, Sequence conversionDatabase management, Sequence analysisUp-to-datehttps://bioinf.shenwei.me/seqkit/Sequence Analysisseqkitiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkithttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seqkit2.8.2seqkit2.8.2DNA transcription, Sequence trimming, DNA translationDatabase management, Sequence analysis02520252000000000000005000000000000003001291964False
seqprepseqprepTool for merging paired-end Illumina reads and trimming adapters.seqprepseqprepSeqPrepStrips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads.Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primersUp-to-datehttps://github.com/jstjohn/SeqPrepFastq Manipulation, Sequence Analysisseqprepiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprephttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep1.3.2seqprep1.3.2Nucleic acid designGenomics, Sequence assembly, Sequencing, Probes and primers001000100000000000000000000000000000000000False
seqsero2seqsero2Salmonella serotype prediction from genome sequencing dataseqsero2seqsero2SeqSero2rapid and improved Salmonella serotype determination using whole genome sequencing data | SeqSero-Salmonella Serotyping by Whole Genome Sequencing | Salmonella Serotyping by Whole Genome Sequencing | Online version: http://www.denglab.info/SeqSero2 | Salmonella serotype prediction from genome sequencing data | Citation: SeqSero, Zhang et al. 2015; SeqSero2, Zhang et al. 2019 | Salmonella serotype derterminants databases | Upon executing the command, a directory named 'SeqSero_result_Time_your_run' will be created. Your result will be stored in 'SeqSero_result.txt' in that directory. And the assembled alleles can also be found in the directory if using "-m a" (allele mode)Genome indexing, Antimicrobial resistance prediction, Genome alignmentWhole genome sequencing, Sequence assembly, GenomicsUp-to-datehttps://github.com/denglab/SeqSero2Sequence Analysisseqsero2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seqsero2https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqsero21.3.1seqsero21.3.1Genome indexing, Antimicrobial resistance prediction, Genome alignmentWhole genome sequencing, Sequence assembly, Genomics0010001000000000000000000000000000000000012False
shorahshorah_ampliconReconstruct haplotypes using ShoRAH in amplicon modeshorahshorahShoRAHInference of a population from a set of short reads. The package contains programs that support mapping of reads to a reference genome, correcting sequencing errors by locally clustering reads in small windows of the alignment, reconstructing a minimal set of global haplotypes that explain the reads, and estimating the frequencies of the inferred haplotypes.Haplotype mapping, Variant callingMetagenomics, Sequencing, GeneticsTo updatehttps://github.com/cbg-ethz/shorah/blob/master/README.mdSequence Analysisshorah_ampliconiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shorahhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shorah1.1.3shorah1.99.2Haplotype mapping, Variant callingMetagenomics, Sequencing, Genetics000000000000000000000010000000000000000000False
shovillshovillFaster de novo assembly pipeline based around SpadesshovillshovillshovillShovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too.Genome assemblyGenomics, Microbiology, Sequence assemblyUp-to-datehttps://github.com/tseemann/shovillAssemblyshovilliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/shovillhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill1.1.0shovill1.1.0Genome assemblyGenomics, Microbiology, Sequence assembly1111111100000000000010100000000000000110100841600False
sistr_cmdsistr_cmdSISTR in silico serotyping toolTo updatehttps://github.com/phac-nml/sistr_cmdSequence Analysissistr_cmdnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/sistr_cmd1.1.1sistr_cmd1.1.201100110000000000000001000000000000001101332489False
smallgenomeutilitiessmgu_frameshift_deletions_checksSet of utilities for manipulating small viral genome data.v-pipev-pipeV-pipeBioinformatics pipeline for the analysis of next-generation sequencing data derived from intra-host viral populations.Read pre-processing, Sequence alignment, Genetic variation analysisGenomics, Population genetics, Workflows, Virology, SequencingUp-to-datehttps://github.com/cbg-ethz/smallgenomeutilitiesSequence Analysissmallgenomeutilitiesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/smallgenomeutilitieshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/smallgenomeutilities0.4.1smallgenomeutilities0.4.1Read pre-processing, Sequence alignment, Genetic variation analysisGenomics, Population genetics, Workflows, Virology, Sequencing00100010000000000000000000000000000001006121False
smaltsmaltSMALT aligns DNA sequencing reads with a reference genome.Up-to-datehttp://www.sanger.ac.uk/science/tools/smalt-0Sequence Analysissmaltnmlhttps://sourceforge.net/projects/smalt/https://github.com/phac-nml/galaxy_tools/tree/master/tools/smalt0.7.6smalt0.7.6000000000000000000000010000000000000000000False
snapsnap, snap_trainingSNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes.snapsnapSNAPThe Semi-HMM-based Nucleic Acid Parser is a gene prediction tool.Gene predictionDNA, DNA polymorphism, GeneticsUp-to-datehttps://github.com/KorfLab/SNAPSequence Analysissnapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snap2013_11_29snap2013_11_29Gene predictionDNA polymorphism, Genetics11101110000000000000000000000000000001101331349False
snippysnippy_core, snippy, snippy_clean_full_alnContains the snippy tool for characterising microbial snpssnippysnippysnippyRapid haploid variant calling and core SNP phylogeny generation.Phylogenetic tree visualisation, Phylogenetic tree generation, Variant callingGenomics, Model organisms, DNA polymorphism, PhylogeneticsTo updatehttps://github.com/tseemann/snippySequence Analysissnippyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/snippyhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/snippysnippy4.6.0Phylogenetic tree visualisation, Variant callingGenomics, Model organisms, DNA polymorphism, Phylogenetics33333333000020000000003000000000000003201372105708False
sonneitypingsonneitypingScripts for parsing Mykrobe predict results for Shigella sonnei.sonneitypingsonneitypingsonneitypingScripts for parsing Mykrobe predict results for Shigella sonnei.Antimicrobial resistance prediction, Variant calling, GenotypingWhole genome sequencing, Genotype and phenotype, Genetic variation, MetagenomicsUp-to-datehttps://github.com/katholt/sonneitypingSequence Analysissonneitypingiuchttps://github.com/katholt/sonneitypinghttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sonneityping20210201sonneityping20210201Antimicrobial resistance prediction, Variant calling, GenotypingWhole genome sequencing, Genotype and phenotype, Genetic variation, Metagenomics001000100000000000000010000000000000010011False
sortmernabg_sortmernaSortMeRNA is a software designed to rapidly filter ribosomal RNA fragments from metatransriptomic data produced by next-generation sequencers.sortmernasortmernaSortMeRNASequence analysis tool for filtering, mapping and OTU-picking NGS reads.Sequence similarity search, Sequence comparison, Sequence alignment analysisMetatranscriptomics, MetagenomicsTo updatehttp://bioinfo.lifl.fr/RNA/sortmerna/RNAsortmernarnateamhttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmernahttps://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna4.3.6sortmerna4.3.7Sequence similarity search, Sequence alignment analysisMetatranscriptomics, Metagenomics111111110100000000001010000000000000011037618183False
spadesspades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spadesSPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction.spadescoronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spadesSPAdesSt. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads.Genome assemblySequence assemblyTo updatehttps://github.com/ablab/spadesAssembly, RNA, Metagenomicsspadesiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/spadeshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spades3.15.5spades4.0.0Genome assemblySequence assembly9999999900001000000013800200030000000930354772953False
spotypingspotypingSpoTyping allows fast and accurate in silico Mycobacterium spoligotyping from sequence readsspotypingspotypingSpoTypingFast and accurate in silico Mycobacterium spoligotyping from sequence reads.Variant pattern analysisMicrobiology, Sequencing, Sequence composition, complexity and repeats, Genetic variationUp-to-datehttps://github.com/xiaeryu/SpoTyping-v2.0Sequence Analysisspotypingiuchttps://github.com/xiaeryu/SpoTyping-v2.0/tree/master/SpoTyping-v2.0-commandLinehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/spotyping2.1spotyping2.1Variant pattern analysisMicrobiology, Sequencing, Sequence composition, complexity and repeats, Genetic variation0010001000000000000000000000000000000100121278False
sr_bowtiebowtieForSmallRNAbowtie wrapper tool to align small RNA sequencing readsTo updatehttp://artbio.frRNA, Next Gen Mapperssr_bowtieartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtiehttps://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie2.3.0bowtie1.3.1000000000000000000000110000001000000000000False
srst2srst2Short Read Sequence Typing for Bacterial PathogensTo updateSequence Analysissrst2nmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/srst20.3.7srst20.2.0001000100000000000000010000000000000010022205False
srst2srst2SRST2 Short Read Sequence Typing for Bacterial Pathogenssrst2srst2srst2Short Read Sequence Typing for Bacterial PathogensMultilocus sequence typingWhole genome sequencing, Public health and epidemiologyTo updatehttp://katholt.github.io/srst2/Metagenomicssrst2iuchttps://github.com/katholt/srst2https://github.com/galaxyproject/tools-iuc/tree/main/tools/srst20.2.0samtools1.20Multilocus sequence typingWhole genome sequencing, Public health and epidemiology001000100000000000000010000000000000010022205False
staramrstaramr_searchScan genome contigs against the ResFinder, PlasmidFinder, and PointFinder antimicrobial resistance databases.Up-to-datehttps://github.com/phac-nml/staramrSequence Analysisstaramrnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/staramrhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr0.10.0staramr0.10.0111111110000000000001110000000000000011088912673False
stringmlststringmlstRapid and accurate identification of the sequence type (ST)To updateSequence Analysisstringmlstnmlhttps://github.com/phac-nml/galaxy_tools/tree/master/tools/stringmlst1.1.0stringMLST0.6.3000000000000000000000010000000000000000000False
structurestructurefor using multi-locus genotype data to investigate population structure.structurestructureStructureThe program structureis a free software package for using multi-locus genotype data to investigate population structure. Its uses include inferring the presence of distinct populations, assigning individuals to populations, studying hybrid zones, identifying migrants and admixed individuals, and estimating population allele frequencies in situations where many individuals are migrants or admixed.Genetic variation analysisPopulation geneticsUp-to-datehttps://web.stanford.edu/group/pritchardlab/structure.htmlPhylogenetics, Variant Analysisstructureiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/structurehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/structure2.3.4structure2.3.4Genetic variation analysisPopulation genetics0011001100000000000000000000000000000110592623False
suite_qiime2__alignmentqiime2__alignment__mafft, qiime2__alignment__mafft_add, qiime2__alignment__maskTo updatehttps://github.com/qiime2/q2-alignmentMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignmenthttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment2024.5.0+q2galaxy.2024.5.03333333300000000000000000000000000000300613False
suite_qiime2__compositionqiime2__composition__add_pseudocount, qiime2__composition__ancom, qiime2__composition__ancombc, qiime2__composition__da_barplot, qiime2__composition__tabulateTo updatehttps://github.com/qiime2/q2-compositionMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__compositionhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition2024.5.0+q2galaxy.2024.5.0444244420000000000000000000000000000040025False
suite_qiime2__cutadaptqiime2__cutadapt__demux_paired, qiime2__cutadapt__demux_single, qiime2__cutadapt__trim_paired, qiime2__cutadapt__trim_singleTo updatehttps://github.com/qiime2/q2-cutadaptMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapthttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt2024.5.0+q2galaxy.2024.5.04444444400000000000000000000000000000400567False
suite_qiime2__dada2qiime2__dada2__denoise_ccs, qiime2__dada2__denoise_paired, qiime2__dada2__denoise_pyro, qiime2__dada2__denoise_singleTo updatehttp://benjjneb.github.io/dada2/Metagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada22024.5.0+q2galaxy.2024.5.0444444440000000000000000000000000000040031202False
suite_qiime2__deblurqiime2__deblur__denoise_16S, qiime2__deblur__denoise_other, qiime2__deblur__visualize_statsTo updatehttps://github.com/biocore/deblurMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblurhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur2024.5.0+q2galaxy.2024.5.03333333300000000000000000000000000000300973False
suite_qiime2__demuxqiime2__demux__emp_paired, qiime2__demux__emp_single, qiime2__demux__filter_samples, qiime2__demux__partition_samples_paired, qiime2__demux__partition_samples_single, qiime2__demux__subsample_paired, qiime2__demux__subsample_single, qiime2__demux__summarize, qiime2__demux__tabulate_read_countsTo updatehttps://github.com/qiime2/q2-demuxMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demuxhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux2024.5.0+q2galaxy.2024.5.0666666660000000000000000000000000000060026114False
suite_qiime2__diversityqiime2__diversity__adonis, qiime2__diversity__alpha, qiime2__diversity__alpha_correlation, qiime2__diversity__alpha_group_significance, qiime2__diversity__alpha_phylogenetic, qiime2__diversity__alpha_rarefaction, qiime2__diversity__beta, qiime2__diversity__beta_correlation, qiime2__diversity__beta_group_significance, qiime2__diversity__beta_phylogenetic, qiime2__diversity__beta_rarefaction, qiime2__diversity__bioenv, qiime2__diversity__core_metrics, qiime2__diversity__core_metrics_phylogenetic, qiime2__diversity__filter_alpha_diversity, qiime2__diversity__filter_distance_matrix, qiime2__diversity__mantel, qiime2__diversity__partial_procrustes, qiime2__diversity__pcoa, qiime2__diversity__pcoa_biplot, qiime2__diversity__procrustes_analysis, qiime2__diversity__tsne, qiime2__diversity__umapTo updatehttps://github.com/qiime2/q2-diversityMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversityhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity2024.5.0+q2galaxy.2024.5.0212121212121212100000000000000000000000000000210043168False
suite_qiime2__diversity_libqiime2__diversity_lib__alpha_passthrough, qiime2__diversity_lib__beta_passthrough, qiime2__diversity_lib__beta_phylogenetic_meta_passthrough, qiime2__diversity_lib__beta_phylogenetic_passthrough, qiime2__diversity_lib__bray_curtis, qiime2__diversity_lib__faith_pd, qiime2__diversity_lib__jaccard, qiime2__diversity_lib__observed_features, qiime2__diversity_lib__pielou_evenness, qiime2__diversity_lib__shannon_entropy, qiime2__diversity_lib__unweighted_unifrac, qiime2__diversity_lib__weighted_unifracTo updatehttps://github.com/qiime2/q2-diversity-libMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_libhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib2024.5.0+q2galaxy.2024.5.0121212121212121200000000000000000000000000000120044False
suite_qiime2__emperorqiime2__emperor__biplot, qiime2__emperor__plot, qiime2__emperor__procrustes_plotTo updatehttp://emperor.microbio.meMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperorhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor2024.5.0+q2galaxy.2024.5.0333333330000000000000000000000000000030026False
suite_qiime2__feature_classifierqiime2__feature_classifier__blast, qiime2__feature_classifier__classify_consensus_blast, qiime2__feature_classifier__classify_consensus_vsearch, qiime2__feature_classifier__classify_hybrid_vsearch_sklearn, qiime2__feature_classifier__classify_sklearn, qiime2__feature_classifier__extract_reads, qiime2__feature_classifier__find_consensus_annotation, qiime2__feature_classifier__fit_classifier_naive_bayes, qiime2__feature_classifier__fit_classifier_sklearn, qiime2__feature_classifier__makeblastdb, qiime2__feature_classifier__vsearch_globalTo updatehttps://github.com/qiime2/q2-feature-classifierMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifierhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier2024.5.0+q2galaxy.2024.5.0101010101010101000000000000000000000000000000100048263False
suite_qiime2__feature_tableqiime2__feature_table__core_features, qiime2__feature_table__filter_features, qiime2__feature_table__filter_features_conditionally, qiime2__feature_table__filter_samples, qiime2__feature_table__filter_seqs, qiime2__feature_table__group, qiime2__feature_table__heatmap, qiime2__feature_table__merge, qiime2__feature_table__merge_seqs, qiime2__feature_table__merge_taxa, qiime2__feature_table__presence_absence, qiime2__feature_table__rarefy, qiime2__feature_table__relative_frequency, qiime2__feature_table__rename_ids, qiime2__feature_table__split, qiime2__feature_table__subsample_ids, qiime2__feature_table__summarize, qiime2__feature_table__summarize_plus, qiime2__feature_table__tabulate_feature_frequencies, qiime2__feature_table__tabulate_sample_frequencies, qiime2__feature_table__tabulate_seqs, qiime2__feature_table__transposeTo updatehttps://github.com/qiime2/q2-feature-tableMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_tablehttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table2024.5.0+q2galaxy.2024.5.0171717171717171700000000000000000000000000000170059213False
suite_qiime2__fragment_insertionqiime2__fragment_insertion__classify_otus_experimental, qiime2__fragment_insertion__filter_features, qiime2__fragment_insertion__seppTo updatehttps://github.com/qiime2/q2-fragment-insertionMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertionhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion2024.5.0+q2galaxy.2024.5.03333333300000000000000000000000000000300620False
suite_qiime2__longitudinalqiime2__longitudinal__anova, qiime2__longitudinal__feature_volatility, qiime2__longitudinal__first_differences, qiime2__longitudinal__first_distances, qiime2__longitudinal__linear_mixed_effects, qiime2__longitudinal__maturity_index, qiime2__longitudinal__nmit, qiime2__longitudinal__pairwise_differences, qiime2__longitudinal__pairwise_distances, qiime2__longitudinal__plot_feature_volatility, qiime2__longitudinal__volatilityTo updatehttps://github.com/qiime2/q2-longitudinalMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinalhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal2024.5.0+q2galaxy.2024.5.01111111111111111000000000000000000000000000001100614False
suite_qiime2__metadataqiime2__metadata__distance_matrix, qiime2__metadata__merge, qiime2__metadata__shuffle_groups, qiime2__metadata__tabulateTo updatehttps://github.com/qiime2/q2-metadataMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadatahttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata2024.5.0+q2galaxy.2024.5.0333333330000000000000000000000000000030040232False
suite_qiime2__phylogenyqiime2__phylogeny__align_to_tree_mafft_fasttree, qiime2__phylogeny__align_to_tree_mafft_iqtree, qiime2__phylogeny__align_to_tree_mafft_raxml, qiime2__phylogeny__fasttree, qiime2__phylogeny__filter_table, qiime2__phylogeny__filter_tree, qiime2__phylogeny__iqtree, qiime2__phylogeny__iqtree_ultrafast_bootstrap, qiime2__phylogeny__midpoint_root, qiime2__phylogeny__raxml, qiime2__phylogeny__raxml_rapid_bootstrap, qiime2__phylogeny__robinson_fouldsTo updatehttps://github.com/qiime2/q2-phylogenyMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogenyhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny2024.5.0+q2galaxy.2024.5.012121212121212120000000000000000000000000000012001237False
suite_qiime2__quality_controlqiime2__quality_control__bowtie2_build, qiime2__quality_control__decontam_identify, qiime2__quality_control__decontam_identify_batches, qiime2__quality_control__decontam_remove, qiime2__quality_control__decontam_score_viz, qiime2__quality_control__evaluate_composition, qiime2__quality_control__evaluate_seqs, qiime2__quality_control__evaluate_taxonomy, qiime2__quality_control__exclude_seqs, qiime2__quality_control__filter_readsTo updatehttps://github.com/qiime2/q2-quality-controlMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_controlhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control2024.5.0+q2galaxy.2024.5.0666666660000000000000000000000000000060000False
suite_qiime2__quality_filterqiime2__quality_filter__q_scoreTo updatehttps://github.com/qiime2/q2-quality-filterMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filterhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter2024.5.0+q2galaxy.2024.5.01111111100000000000000000000000000000100213False
suite_qiime2__rescriptqiime2__rescript__cull_seqs, qiime2__rescript__degap_seqs, qiime2__rescript__dereplicate, qiime2__rescript__edit_taxonomy, qiime2__rescript__evaluate_classifications, qiime2__rescript__evaluate_cross_validate, qiime2__rescript__evaluate_fit_classifier, qiime2__rescript__evaluate_seqs, qiime2__rescript__evaluate_taxonomy, qiime2__rescript__extract_seq_segments, qiime2__rescript__filter_seqs_length, qiime2__rescript__filter_seqs_length_by_taxon, qiime2__rescript__filter_taxa, qiime2__rescript__get_gtdb_data, qiime2__rescript__get_ncbi_data, qiime2__rescript__get_ncbi_data_protein, qiime2__rescript__get_ncbi_genomes, qiime2__rescript__get_silva_data, qiime2__rescript__get_unite_data, qiime2__rescript__merge_taxa, qiime2__rescript__orient_seqs, qiime2__rescript__parse_silva_taxonomy, qiime2__rescript__reverse_transcribe, qiime2__rescript__subsample_fasta, qiime2__rescript__trim_alignmentTo updatehttps://github.com/nbokulich/RESCRIPtMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescripthttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript2024.5.0+q2galaxy.2024.5.0000000000000000000000000000000000000000000False
suite_qiime2__sample_classifierqiime2__sample_classifier__classify_samples, qiime2__sample_classifier__classify_samples_from_dist, qiime2__sample_classifier__classify_samples_ncv, qiime2__sample_classifier__confusion_matrix, qiime2__sample_classifier__fit_classifier, qiime2__sample_classifier__fit_regressor, qiime2__sample_classifier__heatmap, qiime2__sample_classifier__metatable, qiime2__sample_classifier__predict_classification, qiime2__sample_classifier__predict_regression, qiime2__sample_classifier__regress_samples, qiime2__sample_classifier__regress_samples_ncv, qiime2__sample_classifier__scatterplot, qiime2__sample_classifier__split_table, qiime2__sample_classifier__summarizeTo updatehttps://github.com/qiime2/q2-sample-classifierMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifierhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier2024.5.0+q2galaxy.2024.5.0151515151515151500000000000000000000000000000150011False
suite_qiime2__taxaqiime2__taxa__barplot, qiime2__taxa__collapse, qiime2__taxa__filter_seqs, qiime2__taxa__filter_tableTo updatehttps://github.com/qiime2/q2-taxaMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxahttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa2024.5.0+q2galaxy.2024.5.0444444440000000000000000000000000000040022172False
suite_qiime2__vsearchqiime2__vsearch__cluster_features_closed_reference, qiime2__vsearch__cluster_features_de_novo, qiime2__vsearch__cluster_features_open_reference, qiime2__vsearch__dereplicate_sequences, qiime2__vsearch__fastq_stats, qiime2__vsearch__merge_pairs, qiime2__vsearch__uchime_denovo, qiime2__vsearch__uchime_refTo updatehttps://github.com/qiime2/q2-vsearchMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearchhttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch2024.5.0+q2galaxy.2024.5.08887888700000000000000000000000000000800816False
suite_qiime2_coreTo updateStatistics, Metagenomics, Sequence Analysisq2d2https://github.com/qiime2/galaxy-tools/tree/main/tool_collections/suite_qiime2_core000000000000000000000000000000000000000000False
suite_qiime2_core__toolsqiime2_core__tools__export, qiime2_core__tools__import, qiime2_core__tools__import_fastqTo updatehttps://qiime2.orgMetagenomics, Sequence Analysis, Statisticsq2d2https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__toolshttps://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools2024.5.0+dist.he540b0b022222222000000000000000000000000000002001247087False
t2psDraw_phylogramDraw phylogenyt2pst2psDraw phylogeny"Given taxonomy representation (produced by *Fetch taxonomic representation* tool) this utility produces a graphical representations of phylogenetic tree in PDF format." - Galaxy tool wrapperPhylogenetic tree visualisationPhylogenomicsTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicst2psdevteamhttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2pshttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps1.0.0taxonomy0.10.0Phylogenetic tree visualisationPhylogenomics001000100000000000000010000000000000011031457False
t2t_reportt2t_reportSummarize taxonomyTo updatehttps://bitbucket.org/natefoo/taxonomyMetagenomicst2t_reportdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/t2t_reporthttps://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2t_report1.0.0taxonomy0.10.0001000100000000000000010000000000000011026947False
t_coffeet_coffeeT-CoffeeTo updatehttp://www.tcoffee.org/Sequence Analysist_coffeeearlhaminsthttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffeehttps://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee13.45.0.4846264t-coffee13.46.0.919e8c6b0010001001000000000000000000000000000110708690False
taxonomy_krona_charttaxonomy_krona_chartKrona pie chart from taxonomic profilekronakronaKronaKrona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome).VisualisationMetagenomicsTo updatehttp://sourceforge.net/projects/krona/Assemblytaxonomy_krona_chartcrs4https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_charthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart2.7.1+galaxy0krona2.8.1VisualisationMetagenomics1111111100000000000011100100000000100110180127426False
tb-profilertb_profiler_profileProcesses M. tuberculosis sequence data to infer strain type and identify known drug resistance markers.tb-profilertb-profilertb-profilerA tool for drug resistance prediction from _M. tuberculosis_ genomic data (sequencing reads, alignments or variants).Antimicrobial resistance predictionTo updatehttps://github.com/jodyphelan/TBProfilerSequence Analysistbprofileriuchttps://github.com/galaxyproject/tools-iuc/blob/master/tools/tb-profilerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tb-profiler6.2.1tb-profiler6.3.0Antimicrobial resistance prediction11101110000000000000000000000000000001101985161False
tooldistillatortooldistillator, tooldistillator_summarizeToolDistillator extract and aggregate information from different tool outputs to JSON parsable filestooldistillatortooldistillatorToolDistillatorToolDistillator is a tool to extract information from output files of specific tools, expose it as JSON files, and aggregate over several tools.It can produce both a single file to each tool or a summarized file from a set of reports.Data handling, ParsingMicrobiology, Bioinformatics, Sequence analysisUp-to-datehttps://gitlab.com/ifb-elixirfr/abromics/tooldistillatorSequence Analysistooldistillatoriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tooldistillatorhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tooldistillator0.9tooldistillator0.9ParsingMicrobiology, Bioinformatics, Sequence analysis202220220000000000000000000000000000000000False
transitgff_to_prot, transit_gumbel, transit_hmm, transit_resampling, transit_tn5gapsTRANSITtransittransitTRANSITA tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions.Transposon predictionDNA, Sequencing, Mobile genetic elementsTo updatehttps://github.com/mad-lab/transit/Genome annotationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit3.0.2transit3.2.3Transposon predictionDNA, Sequencing, Mobile genetic elements555055500000000000000000000000000000055084907False
transtermhptranstermhpFinds rho-independent transcription terminators in bacterial genomestranstermhptranstermhpTransTermHPTransTermHP finds rho-independent transcription terminators in bacterial genomes. Each terminator found by the program is assigned a confidence value that estimates its probability of being a true terminatorTranscriptional regulatory element predictionTranscription factors and regulatory sitesTo updatehttps://transterm.cbcb.umd.eduSequence Analysistranstermhpiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transtermhphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/transtermhptranstermhp2.09Transcriptional regulatory element predictionTranscription factors and regulatory sites10101010000000000000000000000000000001105229False
trim_galoretrim_galoreTrim Galore adaptive quality and adapter trimmertrim_galoretrim_galoreTrim GaloreA wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries.Sequence trimming, Primer removal, Read pre-processingSequence analysisTo updatehttp://www.bioinformatics.babraham.ac.uk/projects/trim_galore/Sequence Analysis, Fastq Manipulationtrim_galorebgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/trim_galorehttps://github.com/bgruening/galaxytools/tree/master/tools/trim_galore0.6.7trim-galore0.6.10Sequence trimming, Primer removal, Read pre-processingSequence analysis11111111010000000000101001000000000001102334238699False
trycyclertrycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsampleTrycycler toolkit wrappersUp-to-datehttps://github.com/rrwick/TrycyclerAssemblytrycycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trycyclerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler0.5.5trycycler0.5.505550555000000000000005000000000000005001478942False
unicyclerunicyclerUnicycler is a hybrid assembly pipeline for bacterial genomes.unicyclerunicyclerUnicyclerA tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads.Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assemblyUp-to-datehttps://github.com/rrwick/UnicyclerAssemblyunicycleriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/unicyclerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler0.5.1unicycler0.5.1Genome assembly, AggregationMicrobiology, Genomics, Sequencing, Sequence assembly1111111100000000000001100100010000000110155865732False
unipeptunipeptUnipept retrieves metaproteomics informationunipeptunipeptUnipeptMetaproteomics data analysis with a focus on interactive data visualizations.Prediction and recognition, VisualisationProteomics, Proteogenomics, Biodiversity, WorkflowsTo updatehttps://github.com/galaxyproteomics/tools-galaxypProteomicsunipeptgalaxyphttps://unipept.ugent.be/apidocshttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/unipept4.5.1pythonPrediction and recognition, VisualisationProteomics, Proteogenomics, Biodiversity, Workflows11101110000000000000101000000000000001101155005False
uniprotxml_downloaderuniprotxml_downloaderDownload UniProt proteome in XML or fasta formatTo updateProteomicsuniprotxml_downloadergalaxyphttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloaderhttps://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader2.4.0requests0110011000000000000000000000000000000110791360False
usherusher_matutils, usherUShER toolkit wrappersusherusherusherThe UShER toolkit includes a set of tools for for rapid, accurate placement of samples to existing phylogenies. While not restricted to SARS-CoV-2 phylogenetic analyses, it has enabled real-time phylogenetic analyses and genomic contact tracing in that its placement is orders of magnitude faster and more memory-efficient than previous methods.Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences)Phylogeny, Evolutionary biology, Cladistics, Genotype and phenotype, PhylogenomicsTo updatehttps://github.com/yatisht/usherPhylogeneticsusheriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/usherhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/usher0.2.1usher0.6.3Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences)Cladistics, Genotype and phenotype, Phylogenomics002000200000000000000000000000000000020051060False
valetvaletA pipeline for detecting mis-assemblies in metagenomic assemblies.valetvaletVALETVALET is a pipeline for detecting mis-assemblies in metagenomic assemblies.Sequence assembly, Sequence assembly visualisationMetagenomics, Sequence assemblyTo updatehttps://github.com/marbl/VALETMetagenomicsvaletiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/valethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/valetvalet1.0Sequence assembly, Sequence assembly visualisationMetagenomics, Sequence assembly101110110000000000000010000000000000011020637False
vaporvaporClassify Influenza samples from raw short read sequence datavaporvaporVAPORVAPOR is a tool for classification of Influenza samples from raw short read sequence data for downstream bioinformatics analysis. VAPOR is provided with a fasta file of full-length sequences (> 20,000) for a given segment, a set of reads, and attempts to retrieve a reference that is closest to the sample strain.Data retrieval, De-novo assembly, Read mappingWhole genome sequencing, Mapping, Sequence assemblyUp-to-datehttps://github.com/connor-lab/vaporSequence Analysisvaporiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vaporhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/vapor1.0.2vapor1.0.2Data retrieval, De-novo assembly, Read mappingWhole genome sequencing, Mapping, Sequence assembly1010101000000000000000000100000000000100943164False
varvampvarvampVariable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse virusesvarvampvarvampvarVAMPvariable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses. The input is an alignment of your viral (full-genome) sequences.PCR primer designVirology, Probes and primersUp-to-datehttps://github.com/jonas-fuchs/varVAMP/Sequence Analysisvarvampiuchttps://github.com/jonas-fuchs/varVAMPhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/varvamp1.2.0varvamp1.2.0PCR primer designVirology, Probes and primers001000100000000000000000000000000000000000False
veganvegan_diversity, vegan_fisher_alpha, vegan_rarefactionan R package fo community ecologistveganveganveganOrdination methods, diversity analysis and other functions for community and vegetation ecologistsStandardisation and normalisation, AnalysisEcology, Phylogenetics, Environmental scienceTo updatehttps://cran.r-project.org/package=veganMetagenomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vegan/https://github.com/galaxyproject/tools-iuc/tree/main/tools/vegan2.4-3r-vegan2.3_4Standardisation and normalisation, AnalysisEcology, Phylogenetics, Environmental science3030303000000000000000300000000000000330742020False
velvetvelvetg, velvethde novo genomic assembler specially designed for short read sequencing technologiesvelvetvelvetVelvetA de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD.Formatting, De-novo assemblySequence assemblyTo updatehttps://www.ebi.ac.uk/~zerbino/velvet/Assemblyvelvetdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvethttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velvetvelvet1.2.10Formatting, De-novo assemblySequence assembly2222222200000000000022000000000000000200208325420False
velvet_optimiservelvetoptimiserAutomatically optimize Velvet assembliesvelvetoptimiservelvetoptimiserVelvetOptimiserThis tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly.Optimisation and refinement, Sequence assemblyGenomics, Sequence assemblyTo updateAssemblyvelvetoptimisersimon-gladmanhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiserhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser2.2.6+galaxy2velvet1.2.10Optimisation and refinement, Sequence assemblyGenomics, Sequence assembly11101110010000000000110000000000000001102554741False
virAnnotvirannot_blast2tsv, virannot_otu, virAnnot_rps2tsvvirAnnot wrappersvirannotvirannotvirAnnotVirAnnot was build to ease the assembly, blast search, taxonomic annotation and OTUs assignation of viral metagenomic HTS data. It is used in Virologie team of UMR1332 BFP laboratory at INRAE. VirAnnot also takes part of the Euphresco project "Plant Health Bioinformatics Network". See more.It is designed to identify viruses in plant metagenomic data but it can be used to assemble and annotate any sequences with the NCBI taxonomy.Sequence annotation, Sequence clustering, Sequence cluster visualisationMetagenomics, Virology, Microbial ecologyTo updatehttps://github.com/marieBvr/virAnnotMetagenomicsvirannotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/virAnnothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/virAnnot1.0.1+galaxy0biopython1.70Sequence annotation, Sequence clustering, Sequence cluster visualisationMetagenomics, Virology, Microbial ecology003300330000000000000000000000000000000000False
vsearchvsearch_alignment, vsearch_chimera_detection, vsearch_clustering, vsearch_dereplication, vsearch_masking, vsearch_search, vsearch_shuffling, vsearch_sortingVSEARCH including searching, clustering, chimera detection, dereplication, sorting, masking and shuffling of sequences.vsearchvsearchVSEARCHHigh-throughput search and clustering sequence analysis tool. It supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering and conversion.DNA mapping, Chimera detectionMetagenomics, Sequence analysisTo updatehttps://github.com/torognes/vsearchSequence Analysisvsearchiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearchhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/vsearch2.8.3vsearch2.28.1DNA mapping, Chimera detectionMetagenomics, Sequence analysis88888888000000000000088000000800000008801828507False
wtdbgwtdbgWTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly.wtdbg2wtdbg2wtdbg2Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy.Genome assembly, De-novo assemblySequence assembly, SequencingUp-to-datehttps://github.com/ruanjue/wtdbg2Assemblywtdbgbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbghttps://github.com/bgruening/galaxytools/tree/master/tools/wtdbg2.5wtdbg2.5Genome assembly, De-novo assemblySequence assembly, Sequencing00110011000000000000001000000000000001101161660False
+ +
\ No newline at end of file diff --git a/communities/microgalaxy/resources/tools.tsv b/communities/microgalaxy/resources/tools.tsv new file mode 100644 index 00000000..f6990275 --- /dev/null +++ b/communities/microgalaxy/resources/tools.tsv @@ -0,0 +1,291 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +PAMPA pampa_communitymetrics, pampa_presabs, pampa_glmcomm, pampa_glmsp, pampa_plotglm Tools to compute and analyse biodiversity metrics To update Ecology pampa ecology https://github.com/ColineRoyaux/PAMPA-Galaxy https://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA 0.0.2 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 0 73 1004 True False True +TreeBest treebest_best TreeBeST best treebest treebest TreeBeST TreeBeST, which stands for (gene) Tree Building guided by Species Tree, is a versatile program that builds, manipulates and displays phylogenetic trees. It is particularly designed for building gene trees with a known species tree and is highly efficient and accurate.TreeBeST is previously known as NJTREE. It has been largely used in the TreeFam database, Ensembl Compara and OPTIC database of Chris Ponting group. Phylogenetic tree visualisation, Phylogenetic analysis, Phylogenetic inference (from molecular sequences) Phylogenetics To update http://treesoft.sourceforge.net/treebest.shtml Phylogenetics treebest_best earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest https://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest 1.9.2.post0 treebest 1.9.2.post1 Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Phylogenetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 984 True False True +abacas abacas Order and Orientate Contigs To update https://github.com/phac-nml/abacas Assembly abacas nml https://github.com/phac-nml/abacas https://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas 1.1 mummer 3.23 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +abricate abricate, abricate_list, abricate_summary Mass screening of contigs for antiobiotic resistance genes ABRicate ABRicate ABRicate Mass screening of contigs for antimicrobial resistance or virulence genes. Antimicrobial resistance prediction Genomics, Microbiology Up-to-date https://github.com/tseemann/abricate Sequence Analysis abricate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abricate/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/abricate 1.0.1 abricate 1.0.1 Antimicrobial resistance prediction Genomics, Microbiology 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 1764 496717 True False True +abritamr abritamr A pipeline for running AMRfinderPlus and collating results into functional classes abritamr abritamr abriTAMR an AMR gene detection pipeline that runs AMRFinderPlus on a single (or list ) of given isolates and collates the results into a table, separating genes identified into functionally relevant groups. Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease To update https://zenodo.org/record/7370628 Sequence Analysis abritamr iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamr https://github.com/galaxyproject/tools-iuc/tree/main/tools/abritamr 1.0.14 abritamr 1.0.19 Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +abyss abyss-pe Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler abyss abyss ABySS De novo genome sequence assembler using short reads. Genome assembly, De-novo assembly, Scaffolding Sequence assembly To update http://www.bcgsc.ca/platform/bioinfo/software/abyss Assembly abyss iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss https://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss 2.3.7 abyss 2.3.8 Genome assembly, De-novo assembly, Scaffolding Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 391 4278 True False True +aldex2 aldex2 Performs analysis Of differential abundance taking sample variation into account aldex2 aldex2 ALDEx2 A differential abundance analysis for the comparison of two or more conditions. It uses a Dirichlet-multinomial model to infer abundance from counts, that has been optimized for three or more experimental replicates. Infers sampling variation and calculates the expected FDR given the biological and sampling variation using the Wilcox rank test and Welches t-test, or the glm and Kruskal Wallis tests. Reports both P and fdr values calculated by the Benjamini Hochberg correction. Statistical inference Gene expression, Statistics and probability To update https://github.com/ggloor/ALDEx_bioc Metagenomics aldex2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/aldex2 1.26.0 bioconductor-aldex2 1.34.0 Statistical inference Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 13 129 True False True +amplican amplican AmpliCan is an analysis tool for genome editing. amplican amplican amplican It performs alignment of the amplicon reads, normalizes gathered data, calculates multiple statistics (e.g. cut rates, frameshifts) and presents results in form of aggregated reports. Data and statistics can be broken down by experiments, barcodes, user defined groups, guides and amplicons allowing for quick identification of potential problems. Alignment, Standardisation and normalisation PCR experiment, Statistics and probability To update https://github.com/valenlab/amplican Sequence Analysis amplican iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/amplican https://github.com/galaxyproject/tools-iuc/tree/main/tools/amplican 1.14.0 bioconductor-amplican 1.24.0 Alignment, Standardisation and normalisation PCR experiment, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 53 True False True +amrfinderplus amrfinderplus """AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search ""plus"", stress, heat, and biocide resistance and virulence factors for some organisms." amrfinderplus amrfinderplus AMRFinderPlus "AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search ""plus"", stress, heat, and biocide resistance and virulence factors for some organisms" Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease Up-to-date https://github.com/ncbi/amr Sequence Analysis AMRFinderPlus iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/amrfinderplus https://github.com/galaxyproject/tools-iuc/tree/main/tools/amrfinderplus 3.12.8 ncbi-amrfinderplus 3.12.8 Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 591 True False True +ancombc ancombc Performs analysis of compositions of microbiomes with bias correction. ancombc ancombc ANCOMBC Determine taxa whose absolute abundances, per unit volume, of the ecosystem (e.g. gut) are significantly different with changes in the covariate of interest (e.g. group). The current version of ancombc function implements Analysis of Compositions of Microbiomes with Bias Correction (ANCOM-BC) in cross-sectional data while allowing for covariate adjustment. DNA barcoding Microbial ecology, Metagenomics, Taxonomy To update https://github.com/FrederickHuangLin/ANCOMBC Metagenomics ancombc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ancombc https://github.com/galaxyproject/tools-iuc/tree/main/tools/ancombc 1.4.0 bioconductor-ancombc 2.4.0 DNA barcoding Microbial ecology, Metagenomics, Taxonomy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 7 True False True +antismash antismash Antismash allows the genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters antismash antismash antiSMASH Rapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. It integrates and cross-links with a large number of in silico secondary metabolite analysis tools that have been published earlier. Sequence clustering, Gene prediction, Differential gene expression analysis Molecular interactions, pathways and networks, Gene and protein families To update https://antismash.secondarymetabolites.org Sequence Analysis antismash bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash https://github.com/bgruening/galaxytools/tree/master/tools/antismash 6.1.1 antismash 7.1.0 Sequence clustering, Gene prediction, Differential gene expression analysis Molecular interactions, pathways and networks, Gene and protein families 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 279 14596 True False True +artic artic_guppyplex, artic_minion The artic pipeline is designed to help run the artic bioinformatics protocols;for example the nCoV-2019 novel coronavirus protocol.Features include: read filtering, primer trimming, amplicon coverage normalisation,variant calling and consensus building artic artic ARTIC A bioinformatics pipeline for working with virus sequencing data sequenced with nanopore Sequence alignment Genomics To update https://github.com/artic-network/fieldbioinformatics Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/artic https://github.com/galaxyproject/tools-iuc/tree/main/tools/artic artic 1.2.4 Sequence alignment Genomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 123 8175 True False True +assemblystats assemblystats Summarise an assembly (e.g. N50 metrics) To update https://github.com/phac-nml/galaxy_tools Assembly assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +bakta bakta """Bakta is a tool for the rapid & standardized annotation of bacterial genomes and plasmids from both isolates and MAGs.It provides dbxref-rich and sORF-including annotations in machine-readable JSON & bioinformatics standard file formats for automatic downstream analysis.""" bakta bakta Bakta Rapid & standardized annotation of bacterial genomes, MAGs & plasmids Genome annotation Genomics, Data submission, annotation and curation, Sequence analysis To update https://github.com/oschwengers/bakta Sequence Analysis bakta iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/bakta https://github.com/galaxyproject/tools-iuc/tree/main/tools/bakta 1.9.3 bakta 1.9.4 Genome annotation Genomics, Data submission, annotation and curation, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 151 2982 True False True +bamtools bamtools Operate on and transform BAM datasets in various ways using bamtools bamtools bamtools BamTools BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files. Data handling, Sequence alignment analysis Sequencing, Data management, Sequence analysis Up-to-date https://github.com/pezmaster31/bamtools Sequence Analysis, SAM bamtools devteam https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools 2.5.2 bamtools 2.5.2 Data handling, Sequence alignment analysis Sequencing, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 208 14021 True False True +bandage bandage_image, bandage_info Bandage - A Bioinformatics Application for Navigating De novo Assembly Graphs Easily bandage bandage Bandage GUI program that allows users to interact with the assembly graphs made by de novo assemblers such as Velvet, SPAdes, MEGAHIT and others. It visualises assembly graphs, with connections, using graph layout algorithms. Sequence assembly visualisation Genomics, Sequence assembly Up-to-date https://github.com/rrwick/Bandage Visualization bandage iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bandage https://github.com/galaxyproject/tools-iuc/tree/main/tools/bandage 2022.09 bandage_ng 2022.09 Sequence assembly visualisation Genomics, Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 2016 44390 True False True +bayescan BayeScan Detecting natural selection from population-based genetic data bayescan bayescan BayeScan BAYEsian genome SCAN for outliers, aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. It is based on the multinomial-Dirichlet model. Statistical inference Genetics, Evolutionary biology, Statistics and probability, DNA polymorphism To update http://cmpg.unibe.ch/software/BayeScan/index.html Sequence Analysis bayescan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bayescan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bayescan 2.1 bayescan 2.0.1 Statistical inference Genetics, Evolutionary biology, Statistics and probability, DNA polymorphism 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 64 True False True +bbtools bbtools_bbduk, bbtools_bbmap, bbtools_bbmerge, bbtools_bbnorm, bbtools_callvariants, bbtools_tadpole BBTools is a suite of fast, multithreaded bioinformatics tools designed for analysis of DNA and RNA sequence data.BBTools can handle common sequencing file formats such as fastq, fasta, sam, scarf, fasta+qual, compressed or raw,with autodetection of quality encoding and interleaving. It is written in Java and works on any platform supportingJava, including Linux, MacOS, and Microsoft Windows and Linux; there are no dependencies other than Java (version7 or higher). Program descriptions and options are shown when running the shell scripts with no parameters. bbmap bbtools, bbmap BBMap BBMap is a fast splice-aware aligner for RNA and DNA. It is faster than almost all short-read aligners, yet retains unrivaled sensitivity and specificity, particularly for reads with many errors and indels. RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignment Sequencing, RNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq Up-to-date https://jgi.doe.gov/data-and-tools/bbtools/ Sequence Analysis bbtools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bbtools 39.08 bbmap 39.08 RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignment RNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq 6 1 5 0 6 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 0 0 420 6381 True False True +bigscape bigscape Construct sequence similarity networks of BGCs and groups them into GCF BiG-SCAPE BiG-SCAPE BiG-SCAPE A computational framework to explore large-scale biosynthetic diversity.BiG-SCAPE (Biosynthetic Gene Similarity Clustering and Prospecting Engine) is a software package, written in Python, that constructs sequence similarity networks of Biosynthetic Gene Clusters (BGCs) and groups them into Gene Cluster Families (GCFs). BiG-SCAPE does this by rapidly calculating a distance matrix between gene clusters based on a comparison of their protein domain content, order, copy number and sequence identity.It defines a distance metric between Gene Clusters using a combination of three indices (Jaccard Index of domain types, Domain Sequence Similarity the Adjacency...BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynthetic gene clusters (BGCs) across large numbers of genomes, by constructing BGC sequence similarity networks, grouping BGCs into gene cluster families, and exploring gene cluster diversity linked to enzyme phylogenies. Clustering, Global alignment, Fold recognition Phylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein families Up-to-date https://github.com/medema-group/BiG-SCAPE Metagenomics bigscape iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigscape/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigscape 1.1.9 bigscape 1.1.9 Clustering, Global alignment, Fold recognition Phylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein families 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +binning_refiner bin_refiner Reconciles the outputs of different binning programs with the aim to improve the quality of genome bins,especially with respect to contamination levels. binning_refiner binning_refiner Binning_refiner Improving genome bins through the combination of different binning programs Read binning, Sequence clustering Metagenomics, Sequence assembly, Microbial ecology Up-to-date https://github.com/songweizhi/Binning_refiner Metagenomics binning_refiner iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/binning_refiner/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/binning_refiner 1.4.3 binning_refiner 1.4.3 Read binning, Sequence clustering Metagenomics, Sequence assembly, Microbial ecology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 81 True False True +biohansel biohansel Heidelberg and Enteritidis SNP Elucidation To update https://github.com/phac-nml/biohansel Sequence Analysis biohansel nml https://github.com/phac-nml/biohansel https://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel 2.4.0 bio_hansel 2.6.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +biom_format biom_add_metadata, biom_convert, biom_from_uc, biom_normalize_table, biom_subset_table, biom_summarize_table The biom-format package provides a command line interface and Python API for working with BIOM files. biomformat biomformat biomformat "This package includes basic tools for reading biom-format files, accessing and subsetting data tables from a biom object, as well as limited support for writing a biom-object back to a biom-format file. The design of this API is intended to match the python API and other tools included with the biom-format project, but with a decidedly ""R flavor"" that should be familiar to R users. This includes S4 classes and methods, as well as extensions of common core functions/methods." Formatting Laboratory information management, Sequence analysis To update https://github.com/biocore/biom-format Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_format https://github.com/galaxyproject/tools-iuc/tree/main/tools/biom_format 2.1.15 biom-format 2.1.7 Formatting Laboratory information management, Sequence analysis 2 2 6 0 2 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 98 3906 True False True +biotradis bacteria_tradis, tradis_essentiality, tradis_gene_insert_sites Bio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data. biotradis biotradis biotradis The Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format. Sequence analysis Mobile genetic elements, Workflows Up-to-date https://www.sanger.ac.uk/science/tools/bio-tradis Genome annotation biotradis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradis https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis 1.4.5 biotradis 1.4.5 Sequence analysis Mobile genetic elements, Workflows 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +blast2go blast2go Maps BLAST results to GO annotation terms To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go Ontology Manipulation, Sequence Analysis blast2go peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go 0.0.11 b2g4pipe 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 101 1232 True False True +blast_rbh blast_reciprocal_best_hits BLAST Reciprocal Best Hits (RBH) from two FASTA files To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh Fasta Manipulation, Sequence Analysis blast_rbh peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh 0.3.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 121 22499 True False True +blastxml_to_top_descr blastxml_to_top_descr Make table of top BLAST match descriptions To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr Convert Formats, Sequence Analysis, Text Manipulation blastxml_to_top_descr peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr 0.1.2 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 159 264558 True False True +bracken est_abundance Bayesian Reestimation of Abundance with KrakEN bracken bracken Bracken Statistical method that computes the abundance of species in DNA sequences from a metagenomics sample. Statistical calculation Metagenomics, Microbial ecology Up-to-date https://ccb.jhu.edu/software/bracken/ Sequence Analysis, Metagenomics bracken iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bracken https://github.com/galaxyproject/tools-iuc/tree/main/tools/bracken 3.0 bracken 3.0 Statistical calculation Metagenomics, Microbial ecology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 326 18351 True False True +busco busco BUSCO assess genome and annotation completeness busco busco BUSCO Provides measures for quantitative assessment of genome assembly, gene set, and transcriptome completeness based on evolutionarily informed expectations of gene content from near-universal single-copy orthologs. Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assembly Sequence assembly, Genomics, Transcriptomics, Sequence analysis Up-to-date https://gitlab.com/ezlab/busco/-/releases Sequence Analysis busco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/busco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/busco 5.7.1 busco 5.7.1 Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assembly Sequence assembly, Transcriptomics, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1804 86180 True False True +cat cat_add_names, cat_bins, cat_contigs, cat_prepare, cat_summarise Contig Annotation Tool (CAT) cat_bins cat_bins CAT and BAT Contig Annotation Tool (CAT) and Bin Annotation Tool (BAT) are pipelines for the taxonomic classification of long DNA sequences and metagenome assembled genomes (MAGs/bins) of both known and (highly) unknown microorganisms, as generated by contemporary metagenomics studies. The core algorithm of both programs involves gene calling, mapping of predicted ORFs against the nr protein database, and voting-based classification of the entire contig / MAG based on classification of the individual ORFs. Taxonomic classification, Sequence assembly, Coding region prediction Metagenomics, Metagenomic sequencing, Taxonomy, Sequence assembly To update https://github.com/dutilh/CAT Metagenomics contig_annotation_tool iuc https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cat https://github.com/galaxyproject/tools-iuc/tree/main/tools/cat 5.2.3 cat 5.3 Taxonomic classification, Sequence assembly, Coding region prediction Metagenomics, Metagenomic sequencing, Taxonomy, Sequence assembly 5 2 5 0 5 2 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 268 2878 True False True +cd_hit_dup cd_hit_dup simple tool for removing duplicates from sequencing reads To update Metagenomics, Sequence Analysis cd_hit_dup devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/cd_hit_dup https://github.com/galaxyproject/tools-devteam/tree/main/tools/cd_hit_dup 0.0.1 cd-hit-auxtools 4.8.1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +cdhit cd_hit Cluster or compare biological sequence datasets cd-hit cd-hit cd-hit Cluster a nucleotide dataset into representative sequences. Sequence clustering Sequencing Up-to-date http://weizhongli-lab.org/cd-hit/ Sequence Analysis, Fasta Manipulation cd_hit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhit https://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit 4.8.1 cd-hit 4.8.1 Sequence clustering Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 280 4474 True False True +cemitool cemitool Gene co-expression network analysis tool cemitool cemitool CEMiTool It unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network. Enrichment analysis, Pathway or network analysis Gene expression, Transcriptomics, Microarray experiment Up-to-date https://www.bioconductor.org/packages/release/bioc/html/CEMiTool.html Transcriptomics, RNA, Statistics cemitool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool https://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool 1.26.0 bioconductor-cemitool 1.26.0 Enrichment analysis, Pathway or network analysis Transcriptomics, Microarray experiment 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 98 True False True +checkm checkm_analyze, checkm_lineage_set, checkm_lineage_wf, checkm_plot, checkm_qa, checkm_taxon_set, checkm_taxonomy_wf, checkm_tetra, checkm_tree, checkm_tree_qa Assess the quality of microbial genomes recovered from isolates, single cells, and metagenomes checkm checkm CheckM CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes. Sequence assembly validation, Validation, Sequence composition calculation, Sequencing quality control, Statistical calculation Genomics, Phylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management To update https://github.com/Ecogenomics/CheckM Metagenomics checkm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/checkm https://github.com/galaxyproject/tools-iuc/tree/main/tools/checkm 1.2.0 checkm-genome 1.2.3 Sequence assembly validation, Sequence composition calculation, Statistical calculation Phylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management 0 0 10 10 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 390 5165 True False True +clair3 clair3 Symphonizing pileup and full-alignment for high-performance long-read variant calling clair3 clair3 Clair3 Clair3 is a germline small variant caller for long-reads. Clair3 makes the best of two major method categories: pileup calling handles most variant candidates with speed, and full-alignment tackles complicated candidates to maximize precision and recall. Clair3 runs fast and has superior performance, especially at lower coverage. Clair3 is simple and modular for easy deployment and integration. Variant calling Molecular genetics To update https://github.com/HKU-BAL/Clair3 Sequence Analysis, Variant Analysis clair3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/clair3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/clair3 1.0.8 clair3 1.0.10 Variant calling Molecular genetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 68 1856 True False True +clinod clinod NoD: a Nucleolar localization sequence detector for eukaryotic and viral proteins clinod clinod clinod The command line NoD predictor (clinod) can be run from the command line to predict Nucleolar localization sequences (NoLSs) that are short targeting sequences responsible for the localization of proteins to the nucleolus.The predictor accepts a list of FASTA formatted sequences as an input and outputs the NOLS predictions as a result.Please note that currently, JPred secondary structure predictions are not supported by clinod. However, we are working on it. Nucleic acid sequence analysis Sequence analysis To update http://www.compbio.dundee.ac.uk/www-nod/ Sequence Analysis clinod peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clinod https://github.com/peterjc/pico_galaxy/tree/master/tools/clinod 0.1.0 clinod 1.3 Nucleic acid sequence analysis Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +clustalw clustalw ClustalW multiple sequence alignment program for DNA or proteins clustal2 clustal2 Clustal 2 (Clustal W, Clustal X) Multiple sequence alignment program with a command-line interface (Clustal W) and a graphical user interface (Clustal X). The display colours allow conserved features to be highlighted for easy viewing in the alignment. It is available for several platforms, including Windows, Macintosh PowerMac, Linux and Solaris.Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, Clustal2. Multiple sequence alignment Phylogeny, Sequence analysis Up-to-date http://www.clustal.org/clustal2/ Phylogenetics, Sequence Analysis clustalw devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/clustalw https://github.com/galaxyproject/tools-iuc/tree/main/tools/clustalw 2.1 clustalw 2.1 Multiple sequence alignment Phylogeny, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 651 46793 True False True +cmsearch_deoverlap cmsearch_deoverlap removes lower scoring overlaps from cmsearch results. cmsearch-deoverlap cmsearch-deoverlap cmsearch-deoverlap Removes lower scoring overlaps from cmsearch results. Comparison, Alignment Biology, Medicine To update https://github.com/EBI-Metagenomics/pipeline-v5/blob/master/tools/RNA_prediction/cmsearch-deoverlap/cmsearch-deoverlap.pl RNA cmsearch_deoverlap rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap 0.08+galaxy2 perl Comparison, Alignment Biology, Medicine 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 102 True False True +codeml codeml Detects positive selection paml paml PAML Package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. Probabilistic sequence generation, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Phylogenetic tree analysis Phylogenetics, Sequence analysis To update http://abacus.gene.ucl.ac.uk/software/paml.html Phylogenetics codeml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/codeml https://github.com/galaxyproject/tools-iuc/tree/main/tools/codeml 4.9 paml 4.10.7 Probabilistic sequence generation Phylogenetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 29 60901 True False True +cojac cooc_mutbamscan, cooc_pubmut, cooc_tabmut co-occurrence of mutations on amplicons cojac cojac COJAC CoOccurrence adJusted Analysis and Calling - The cojac package comprises a set of command-line tools to analyse co-occurrence of mutations on amplicons. It is useful, for example, for early detection of viral variants of concern (e.g. Alpha, Delta, Omicron) in environmental samples, and has been designed to scan for multiple SARS-CoV-2 variants in wastewater samples, as analyzed jointly by ETH Zurich, EPFL and Eawag. Genetic variation Up-to-date https://github.com/cbg-ethz/cojac Metagenomics, Sequence Analysis cojac iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cojac https://github.com/galaxyproject/tools-iuc/tree/main/tools/cojac 0.9.2 cojac 0.9.2 Genetic variation 2 0 3 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 20 2757 True False True +combine_assembly_stats combine_stats Combine multiple Assemblystats datasets into a single tabular report To update https://github.com/phac-nml/galaxy_tools Assembly combine_assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats 1.0 perl-getopt-long 2.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +combine_metaphlan_humann combine_metaphlan_humann Combine MetaPhlAn2 and HUMAnN2 outputs to relate genus/species abundances and gene families/pathways abundances combine_metaphlan_and_humann combine_metaphlan_and_humann Combine Metaphlan and HUMAnN This tool combine MetaPhlAn outputs and HUMANnN outputs Aggregation Metagenomics, Molecular interactions, pathways and networks To update Metagenomics combine_metaphlan2_humann2 bebatut https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan2_humann2 https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan_humann 0.3.0 python Aggregation Metagenomics, Molecular interactions, pathways and networks 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 147 True False True +compare_humann2_output compare_humann2_output Compare outputs of HUMAnN2 for several samples and extract similar and specific information compare_humann2_outputs compare_humann2_outputs Compare HUMAnN2 outputs This tool compare HUMANnN2 outputs with gene families or pathways and their relative abundances between several samples Comparison Metagenomics, Gene and protein families To update Metagenomics compare_humann2_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output https://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output 0.2.0 Comparison Metagenomics, Gene and protein families 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 332 True False True +compleasm compleasm Compleasm: a faster and more accurate reimplementation of BUSCO compleasm compleasm compleasm """Compleasm: a faster and more accurate reimplementation of BUSCO""" Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assembly Sequence assembly, Genomics, Transcriptomics, Sequence analysis Up-to-date https://github.com/huangnengCSU/compleasm Sequence Analysis compleasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/compleasm/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/compleasm 0.2.6 compleasm 0.2.6 Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assembly Sequence assembly, Transcriptomics, Sequence analysis 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +concoct concoct, concoct_coverage_table, concoct_cut_up_fasta, concoct_extract_fasta_bins, concoct_merge_cut_up_clustering CONCOCT (Clustering cONtigs with COverage and ComposiTion) does unsupervised binning of metagenomic contigs byusing nucleotide composition - kmer frequencies - and coverage data for multiple samples. CONCOCT can accurately(up to species level) bin metagenomic contigs. concoct concoct CONCOCT A program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads. Sequence clustering, Read binning Metagenomics Up-to-date https://github.com/BinPro/CONCOCT Metagenomics concoct iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/concoct https://github.com/galaxyproject/tools-iuc/tree/main/tools/concoct 1.1.0 concoct 1.1.0 Sequence clustering, Read binning Metagenomics 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 92 786 True False True +coverm coverm_contig, coverm_genome CoverM genome and contig wrappers coverm coverm CoverM Read coverage calculator for metagenomics Local alignment Bioinformatics Up-to-date https://github.com/wwood/CoverM Sequence Analysis coverm iuc https://github.com/galaxyproject/tools-iuc/tools/coverm https://github.com/galaxyproject/tools-iuc/tree/main/tools/coverm 0.7.0 coverm 0.7.0 Local alignment Bioinformatics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 72 529 True False True +cryptogenotyper CryptoGenotyper CryptoGenotyper is a standalone tool to *in-silico* determine species and subtype based on SSU rRNA and gp60 markers. Up-to-date https://github.com/phac-nml/CryptoGenotyper Sequence Analysis cryptogenotyper nml https://github.com/phac-nml/CryptoGenotyper https://github.com/phac-nml/galaxy_tools/tree/master/tools/cryptogenotyper 1.0 cryptogenotyper 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 8518 True False True +cutadapt cutadapt Flexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq). cutadapt cutadapt Cutadapt Find and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads. Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing Up-to-date https://cutadapt.readthedocs.org/en/stable/ Fasta Manipulation, Fastq Manipulation, Sequence Analysis cutadapt lparsons https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapt https://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt 4.9 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 5090 232004 True False True +dada2 dada2_assignTaxonomyAddspecies, dada2_dada, dada2_filterAndTrim, dada2_learnErrors, dada2_makeSequenceTable, dada2_mergePairs, dada2_plotComplexity, dada2_plotQualityProfile, dada2_removeBimeraDenovo, dada2_seqCounts DADA2 wrappers dada2 dada2 dada2 This package infers exact sequence variants (SVs) from amplicon data, replacing the commonly used and coarser OTU clustering approach. This pipeline inputs demultiplexed fastq files, and outputs the sequence variants and their sample-wise abundances after removing substitution and chimera errors. Taxonomic classification is available via a native implementation of the RDP naive Bayesian classifier. Variant calling, DNA barcoding Sequencing, Genetic variation, Microbial ecology, Metagenomics To update https://benjjneb.github.io/dada2/index.html Metagenomics dada2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dada2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/dada2 bioconductor-dada2 1.30.0 Variant calling, DNA barcoding Sequencing, Genetic variation, Microbial ecology, Metagenomics 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 10 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 10 10 0 1263 66609 True False True +das_tool Fasta_to_Contig2Bin, das_tool DAS Tool for genome resolved metagenomics dastool dastool dastool DAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly. Read binning Metagenomics Up-to-date https://github.com/cmks/DAS_Tool Metagenomics das_tool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool https://github.com/galaxyproject/tools-iuc/tree/main/tools/das_tool 1.1.7 das_tool 1.1.7 Read binning Metagenomics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 24 706 True False True +deseq2 deseq2 Differential gene expression analysis based on the negative binomial distribution DESeq2 DESeq2 DESeq2 R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution. Differential gene expression analysis, RNA-Seq analysis RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics deseq2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq2 2.11.40.8 bioconductor-deseq2 1.42.0 Differential gene expression analysis, RNA-Seq analysis RNA-Seq 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4990 95752 True False True +diamond bg_diamond, bg_diamond_makedb, bg_diamond_view DIAMOND is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR. diamond diamond Diamond Sequence aligner for protein and translated DNA searches and functions as a drop-in replacement for the NCBI BLAST software tools. It is suitable for protein-protein search as well as DNA-protein search on short reads and longer sequences including contigs and assemblies, providing a speedup of BLAST ranging up to x20,000. Sequence alignment analysis Sequence analysis, Proteins To update https://github.com/bbuchfink/diamond Sequence Analysis diamond bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond https://github.com/galaxyproject/tools-iuc/tree/main/tools/diamond 2.0.15 diamond 2.1.9 Sequence alignment analysis Sequence analysis, Proteins 3 3 3 3 3 3 3 3 0 0 0 0 3 0 0 0 0 0 0 0 3 3 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 0 963 49711 True False True +disco disco DISCO is a overlap-layout-consensus (OLC) metagenome assembler disco disco DISCO DISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer. Protein sequence analysis Structure determination To update http://disco.omicsbio.org/ Metagenomics, Assembly disco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/disco disco 1.2 Protein sequence analysis Structure determination 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 369 True False True +dram dram_annotate, dram_distill, dram_merge_annotations, dram_neighborhoods, dram_strainer DRAM for distilling microbial metabolism to automate the curation of microbiome function dram dram DRAM Distilled and Refined Annotation of Metabolism: A tool for the annotation and curation of function for microbial and viral genomes Gene functional annotation Metagenomics, Biological databases, Molecular genetics Up-to-date https://github.com/WrightonLabCSU/DRAM Metagenomics dram iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dram https://github.com/galaxyproject/tools-iuc/tree/main/tools/dram 1.5.0 dram 1.5.0 Gene functional annotation Metagenomics, Biological databases, Molecular genetics 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 39 6886 True False True +drep drep_compare, drep_dereplicate dRep compares and dereplicates genome sets drep drep dRep Fast and accurate genomic comparisons that enables improved genome recovery from metagenomes through de-replication. Genome comparison Metagenomics, Genomics, Sequence analysis Up-to-date https://github.com/MrOlm/drep Metagenomics drep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/drep https://github.com/galaxyproject/tools-iuc/tree/main/tools/drep 3.5.0 drep 3.5.0 Genome comparison Metagenomics, Sequence analysis 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 46 646 True False True +ectyper ectyper EC-Typer - in silico serotyping of Escherichia coli species Up-to-date https://github.com/phac-nml/ecoli_serotyping Sequence Analysis ectyper nml https://github.com/phac-nml/ecoli_serotyping https://github.com/phac-nml/galaxy_tools/tree/master/tools/ectyper 1.0.0 ectyper 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 53 9907 True False True +effectiveT3 effectiveT3 Find bacterial type III effectors in protein sequences effectivet3 effectivet3 EffectiveT3 Prediction of putative Type-III secreted proteins. Sequence classification Sequence analysis To update http://effectors.org Sequence Analysis effectivet3 peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3 https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3 0.0.21 effectiveT3 1.0.1 Sequence classification Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +eggnog_mapper eggnog_mapper, eggnog_mapper_annotate, eggnog_mapper_search eggnog-mapper fast functional annotation of novel sequences eggnog-mapper-v2 eggnog-mapper-v2 eggNOG-mapper v2 EggNOG-mapper is a tool for fast functional annotation of novel sequences. It uses precomputed orthologous groups and phylogenies from the eggNOG database (http://eggnog5.embl.de) to transfer functional information from fine-grained orthologs only. Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrieval Metagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysis To update Proteomics eggnog_mapper galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper 2.1.8 eggnog-mapper 2.1.12 Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrieval Metagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysis 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 3 1 0 510 30565 True False True +emboss_5 EMBOSS: antigenic1, EMBOSS: backtranseq2, EMBOSS: banana3, EMBOSS: biosed4, EMBOSS: btwisted5, EMBOSS: cai6, EMBOSS: cai_custom6, EMBOSS: chaos7, EMBOSS: charge8, EMBOSS: checktrans9, EMBOSS: chips10, EMBOSS: cirdna11, EMBOSS: codcmp12, EMBOSS: coderet13, EMBOSS: compseq14, EMBOSS: cpgplot15, EMBOSS: cpgreport16, EMBOSS: cusp17, EMBOSS: cutseq18, EMBOSS: dan19, EMBOSS: degapseq20, EMBOSS: descseq21, EMBOSS: diffseq22, EMBOSS: digest23, EMBOSS: dotmatcher24, EMBOSS: dotpath25, EMBOSS: dottup26, EMBOSS: dreg27, EMBOSS: einverted28, EMBOSS: epestfind29, EMBOSS: equicktandem31, EMBOSS: est2genome32, EMBOSS: etandem33, EMBOSS: extractfeat34, EMBOSS: extractseq35, EMBOSS: freak36, EMBOSS: fuzznuc37, EMBOSS: fuzzpro38, EMBOSS: fuzztran39, EMBOSS: garnier40, EMBOSS: geecee41, EMBOSS: getorf42, EMBOSS: helixturnhelix43, EMBOSS: hmoment44, EMBOSS: iep45, EMBOSS: infoseq46, EMBOSS: isochore47, EMBOSS: lindna48, EMBOSS: marscan49, EMBOSS: maskfeat50, EMBOSS: maskseq51, EMBOSS: matcher52, EMBOSS: megamerger53, EMBOSS: merger54, EMBOSS: msbar55, EMBOSS: needle56, EMBOSS: newcpgreport57, EMBOSS: newcpgseek58, EMBOSS: newseq59, EMBOSS: noreturn60, EMBOSS: notseq61, EMBOSS: nthseq62, EMBOSS: octanol63, EMBOSS: oddcomp64, EMBOSS: palindrome65, EMBOSS: pasteseq66, EMBOSS: patmatdb67, EMBOSS: pepcoil68, EMBOSS: pepinfo69, EMBOSS: pepnet70, EMBOSS: pepstats71, EMBOSS: pepwheel72, EMBOSS: pepwindow73, EMBOSS: pepwindowall74, EMBOSS: plotcon75, EMBOSS: plotorf76, EMBOSS: polydot77, EMBOSS: preg78, EMBOSS: prettyplot79, EMBOSS: prettyseq80, EMBOSS: primersearch81, EMBOSS: revseq82, EMBOSS: seqmatchall83, EMBOSS: seqret84, EMBOSS: showfeat85, EMBOSS: shuffleseq87, EMBOSS: sigcleave88, EMBOSS: sirna89, EMBOSS: sixpack90, EMBOSS: skipseq91, EMBOSS: splitter92, EMBOSS: supermatcher95, EMBOSS: syco96, EMBOSS: tcode97, EMBOSS: textsearch98, EMBOSS: tmap99, EMBOSS: tranalign100, EMBOSS: transeq101, EMBOSS: trimest102, EMBOSS: trimseq103, EMBOSS: twofeat104, EMBOSS: union105, EMBOSS: vectorstrip106, EMBOSS: water107, EMBOSS: wobble108, EMBOSS: wordcount109, EMBOSS: wordmatch110 Galaxy wrappers for EMBOSS version 5.0.0 tools emboss emboss EMBOSS Diverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool. Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis, Biology To update http://emboss.open-bio.org/ Sequence Analysis, Fasta Manipulation emboss_5 devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5 https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_5 5.0.0 emboss 6.6.0 Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis 107 107 107 107 107 107 107 107 0 0 0 0 107 0 0 0 0 0 0 0 0 0 107 0 0 107 0 0 0 107 0 0 0 0 0 0 0 107 107 0 1816 89530 True False True +ete ete_gene_csv_finder, ete_genetree_splitter, ete_homology_classifier, ete_init_taxdb, ete_lineage_generator, ete3_mod, ete_species_tree_generator Analyse phylogenetic trees using the ETE Toolkit ete ete ete The Environment for Tree Exploration (ETE) is a computational framework that simplifies the reconstruction, analysis, and visualization of phylogenetic trees and multiple sequence alignments. Here, we present ETE v3, featuring numerous improvements in the underlying library of methods, and providing a novel set of standalone tools to perform common tasks in comparative genomics and phylogenetics. The new features include (i) building gene-based and supermatrix-based phylogenies using a single command, (ii) testing and visualizing evolutionary models, (iii) calculating distances between trees of different size or including duplications, and (iv) providing seamless integration with the NCBI taxonomy database. ETE is freely available at http://etetoolkit.org Phylogenetic analysis, Phylogenetic tree editing Phylogenetics To update http://etetoolkit.org/ Phylogenetics ete earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete https://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete 3.1.2 ete3 3.1.1 Phylogenetic tree editing Phylogenetics 0 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 45 899 True False True +export2graphlan export2graphlan export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn export2graphlan export2graphlan export2graphlan export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn. In particular, the annotation file tries to highlight specific sub-trees deriving automatically from input file what nodes are important. Conversion Taxonomy, Metabolomics, Biomarkers To update https://bitbucket.org/CibioCM/export2graphlan/overview Metagenomics export2graphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/export2graphlan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/export2graphlan 0.20 export2graphlan 0.22 Conversion Taxonomy, Metabolomics, Biomarkers 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 5265 True False True +ez_histograms ez_histograms ggplot2 histograms and density plots To update https://github.com/tidyverse/ggplot2 Visualization, Statistics ez_histograms artbio https://github.com/artbio/tools-artbio/tree/main/tools/ez_histograms https://github.com/ARTbio/tools-artbio/tree/main/tools/ez_histograms 3.4.4 r-ggplot2 2.2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False True +fargene fargene fARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) fargene fargene fARGene fARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) is a tool that takes either fragmented metagenomic data or longer sequences as input and predicts and delivers full-length antiobiotic resistance genes as output. Antimicrobial resistance prediction Metagenomics, Microbiology, Public health and epidemiology Up-to-date https://github.com/fannyhb/fargene Sequence Analysis fargene iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fargene https://github.com/galaxyproject/tools-iuc/tree/main/tools/fargene 0.1 fargene 0.1 Antimicrobial resistance prediction Metagenomics, Microbiology, Public health and epidemiology 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 52 459 True False True +fastani fastani Fast alignment-free computation of whole-genome Average Nucleotide Identity fastani fastani FastANI FastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies. Genome alignment, Sequence similarity search Microbiology, Genetic variation To update https://github.com/ParBLiSS/FastANI Sequence Analysis fastani iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastani https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastani 1.3 fastani 1.34 Genome alignment, Sequence similarity search Microbiology, Genetic variation 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 250 3498 True False True +fastk fastk_fastk FastK: A K-mer counter (for HQ assembly data sets) To update https://github.com/thegenemyers/FASTK Assembly fastk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk 1.0.0 fastk 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +fastp fastp Fast all-in-one preprocessing for FASTQ files fastp fastp fastp A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance. Sequencing quality control, Sequence contamination filtering Sequence analysis, Probes and primers Up-to-date https://github.com/OpenGene/fastp Sequence Analysis fastp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastp https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastp 0.23.4 fastp 0.23.4 Sequence contamination filtering Probes and primers 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 1 2803 1055760 True False True +fastqe fastqe FASTQE fastqe fastqe FASTQE Compute quality stats for FASTQ files and print those stats as emoji... for some reason. Sequencing quality control Sequence analysis, Sequencing To update https://fastqe.com/ Sequence Analysis fastqe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqe https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqe 0.3.1+galaxy0 fastqe 0.3.1 Sequencing quality control Sequence analysis, Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1266 4333 True False True +fasttree fasttree FastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences - GVL fasttree fasttree FastTree Infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences. Phylogenetic tree generation (from molecular sequences), Phylogenetic tree generation (maximum likelihood and Bayesian methods) Phylogenetics, Sequence analysis To update http://www.microbesonline.org/fasttree/ Phylogenetics fasttree iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasttree https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasttree 2.1.10 fasttree 2.1.11 Phylogenetics 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 379 55434 True False True +featurecounts featurecounts featureCounts counts the number of reads aligned to defined masked regions in a reference genome featurecounts featurecounts FeatureCounts featureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package. Read summarisation, RNA-Seq quantification RNA-Seq To update http://bioinf.wehi.edu.au/featureCounts RNA, Transcriptomics, Sequence Analysis featurecounts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts https://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts 2.0.3 subread 2.0.6 Read summarisation, RNA-Seq quantification RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4679 696399 True False True +filter_spades_repeats filter_spades_repeat Remove short and repeat contigs/scaffolds To update https://github.com/phac-nml/galaxy_tools/ Assembly filter_spades_repeats nml https://github.com/phac-nml/galaxy_tools/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats 1.0.1 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +filtlong filtlong Filtlong - Filtering long reads by quality filtlong filtlong Filtlong Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter. Filtering, Sequencing quality control Up-to-date https://github.com/rrwick/Filtlong Fastq Manipulation, Sequence Analysis filtlong iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlong https://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong 0.2.1 filtlong 0.2.1 Filtering, Sequencing quality control 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 617 30483 True False True +flashlfq flashlfq FlashLFQ mass-spectrometry proteomics label-free quantification flashlfq flashlfq FlashLFQ FlashLFQ is an ultrafast label-free quantification algorithm for mass-spectrometry proteomics. Label-free quantification Proteomics experiment, Proteomics To update https://github.com/smith-chem-wisc/FlashLFQ Proteomics flashlfq galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq 1.0.3.1 flashlfq 1.2.6 Label-free quantification Proteomics experiment, Proteomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 17 645 True False True +flye flye Assembly of long and error-prone reads. Flye Flye Flye Flye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs. Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing, Genomics To update https://github.com/fenderglass/Flye/ Assembly flye bgruening https://github.com/bgruening/galaxytools/tree/master/tools/flye https://github.com/bgruening/galaxytools/tree/master/tools/flye 2.9.4 flye 2.9.5 Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1499 20904 True False True +format_metaphlan2_output format_metaphlan2_output Format MetaPhlAn2 output to extract abundance at different taxonomic levels format_metaphlan2_output format_metaphlan2_output Format metaphlan2 output This tool format output file of MetaPhlan2 containing community content (abundance) at all taxonomic levels (from kingdom to strains). Formatting Taxonomy, Metagenomics To update Metagenomics format_metaphlan2_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output/ https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output 0.2.0 Formatting Taxonomy, Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 166 5588 True False True +fraggenescan fraggenescan Tool for finding (fragmented) genes in short read fraggenescan fraggenescan FragGeneScan Application for finding (fragmented) genes in short reads Gene prediction Genetics, Sequence analysis To update https://sourceforge.net/projects/fraggenescan/ Sequence Analysis fraggenescan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fraggenescan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/fraggenescan fraggenescan 1.31 Gene prediction Genetics, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 68 1102 True False True +freyja freyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variants lineage abundances estimation freyja freyja Freyja Recover relative lineage abundances from mixed SARS-CoV-2 samples from a sequencing dataset RNA-Seq quantification Metagenomics To update https://github.com/andersen-lab/Freyja Metagenomics, Sequence Analysis freyja iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/freyja https://github.com/galaxyproject/tools-iuc/tree/main/tools/freyja 1.4.4 freyja 1.5.1 RNA-Seq quantification Metagenomics 2 0 4 0 2 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 55 20021 True False True +frogs FROGS_affiliation_filters, FROGS_affiliation_postprocess, FROGS_affiliation_stats, FROGS_biom_to_stdBiom, FROGS_biom_to_tsv, FROGS_cluster_filters, FROGS_cluster_stats, FROGS_clustering, FROGS_demultiplex, FROGSSTAT_DESeq2_Preprocess, FROGSSTAT_DESeq2_Visualisation, FROGSFUNC_step2_functions, FROGSFUNC_step3_pathways, FROGSFUNC_step1_placeseqs, FROGS_itsx, FROGS_normalisation, FROGSSTAT_Phyloseq_Alpha_Diversity, FROGSSTAT_Phyloseq_Beta_Diversity, FROGSSTAT_Phyloseq_Sample_Clustering, FROGSSTAT_Phyloseq_Composition_Visualisation, FROGSSTAT_Phyloseq_Import_Data, FROGSSTAT_Phyloseq_Multivariate_Analysis_Of_Variance, FROGSSTAT_Phyloseq_Structure_Visualisation, FROGS_preprocess, FROGS_remove_chimera, FROGS_taxonomic_affiliation, FROGS_Tree, FROGS_tsv_to_biom Suite for metabarcoding analysis frogs frogs FROGS The user-friendly and Galaxy-supported pipeline FROGS analyses large sets of DNA amplicons sequences accurately and rapidly, essential for microbe community studies. Taxonomic classification Metagenomics, Microbial ecology, Taxonomy, Evolutionary biology, Sequencing To update http://frogs.toulouse.inrae.fr/ Metagenomics frogs frogs https://github.com/geraldinepascal/FROGS-wrappers/ https://github.com/geraldinepascal/FROGS-wrappers/tree/master/tools/frogs 4.1.0 frogs 5.0.0 Taxonomic classification Metagenomics, Microbial ecology, Taxonomy, Evolutionary biology, Sequencing 0 0 0 28 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +funannotate funannotate_annotate, funannotate_clean, funannotate_compare, funannotate_predict, funannotate_sort Funannotate is a genome prediction, annotation, and comparison software package. funannotate funannotate funannotate funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes). Genome annotation Genomics To update https://funannotate.readthedocs.io Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate 1.8.15 Genome annotation Genomics 3 5 5 5 3 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 900 5906 True False True +getmlst getmlst Download MLST datasets by species from pubmlst.org To update Sequence Analysis getmlst nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/getmlst 0.1.4.1 srst2 0.2.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +ggplot2 ggplot2_heatmap, ggplot2_pca, ggplot2_histogram, ggplot2_point, ggplot2_violin ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics.You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to use,and it takes care of the details. ggplot2 ggplot2 ggplot2 Plotting system for R, based on the grammar of graphics. Visualisation Data visualisation To update https://github.com/tidyverse/ggplot2 Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/ggplot2 3.4.0 r-base Visualisation Data visualisation 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 1 0 5 0 0 0 0 0 0 3 0 0 0 0 0 0 0 5 5 0 1388 22148 True False True +gi2taxonomy Fetch Taxonomic Ranks Fetch taxonomic representation gi2taxonomy gi2taxonomy gi2taxonomy The tool fetches taxonomic information for a list of sequence identifiers (i.e. GI numbers, as used by the National Center for Biotechnology Information (NCBI). Database search, ID mapping Taxonomy To update https://bitbucket.org/natefoo/taxonomy Metagenomics gi2taxonomy devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/gi2taxonomy https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/gi2taxonomy 1.1.1 taxonomy 0.10.0 Database search, ID mapping Taxonomy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 27 660 True False True +glimmer glimmer_acgt_content, glimmer_build_icm, glimmer_extract, glimmer_gbk_to_orf, glimmer_glimmer_to_gff, glimmer_long_orfs, glimmer_knowledge_based, glimmer_not_knowledge_based Glimmer makes gene predictions. gemini gemini GEMINI GEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics. Sequence analysis, Genetic variation analysis Sequence analysis To update https://ccb.jhu.edu/software/glimmer/ Sequence Analysis bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/glimmer glimmer 3.02 Sequence analysis, Genetic variation analysis Sequence analysis 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 187 3965 True False True +glimmer_hmm GlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model (GHMM) To update https://ccb.jhu.edu/software/glimmerhmm/ Sequence Analysis glimmer_hmm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +goenrichment goenrichment, goslimmer Performs GO Enrichment analysis. goenrichment goenrichment GOEnrichment GOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência. Gene-set enrichment analysis Transcriptomics Up-to-date https://github.com/DanFaria/GOEnrichment Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment https://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment 2.0.1 goenrichment 2.0.1 Gene-set enrichment analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 408 5484 True False True +goseq goseq goseq does selection-unbiased testing for category enrichment amongst differentially expressed (DE) genes for RNA-seq data goseq goseq GOseq Detect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data. Gene functional annotation RNA-Seq To update https://bioconductor.org/packages/release/bioc/html/goseq.html Statistics, RNA, Micro-array Analysis goseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/goseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/goseq 1.50.0 bioconductor-goseq 1.54.0 Gene functional annotation RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1210 19167 True False True +graphlan graphlan, graphlan_annotate GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees graphlan graphlan GraPhlAn GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees. GraPhlAn focuses on concise, integrative, informative, and publication-ready representations of phylogenetically- and taxonomically-driven investigation. Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classification Metagenomics, Phylogenetics, Phylogenomics, Cladistics To update https://github.com/biobakery/graphlan Metagenomics, Graphics, Phylogenetics graphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphlan graphlan 1.1.3 Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classification Metagenomics, Phylogenetics, Phylogenomics, Cladistics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 432 9277 True False True +graphmap graphmap_align, graphmap_overlap Mapper for long, error-prone reads. graphmap graphmap graphmap Splice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing To update https://github.com/isovic/graphmap/ Assembly graphmap bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphmap https://github.com/bgruening/galaxytools/tree/master/tools/graphmap 0.5.2 graphmap 0.6.3 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 136 6651 True False True +gtdbtk gtdbtk_classify_wf GTDB-Tk is a software tool kit for assigning objective taxonomic classifications to bacterial and archaeal genomesbased on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds orthousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can alsobe applied to isolate and single-cell genomes. GTDB-Tk GTDB-Tk GTDB-Tk a toolkit to classify genomes with the Genome Taxonomy Database.GTDB-Tk: a toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes.GTDB-Tk is a software toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes based on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds or thousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can also be applied to isolate and single-cell genomes. The GTDB-Tk is open source and released under the GNU General Public License (Version 3). Genome alignment, Taxonomic classification, Sequence assembly, Query and retrieval Metagenomics, Taxonomy, Phylogenetics, Database management, Proteins To update https://github.com/Ecogenomics/GTDBTk Metagenomics gtdbtk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gtdbtk https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdbtk 2.3.2 gtdbtk 2.4.0 Genome alignment, Taxonomic classification, Sequence assembly, Query and retrieval Metagenomics, Taxonomy, Phylogenetics, Database management, Proteins 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +gubbins gubbins Gubbins - bacterial recombination detection gubbins gubbins Gubbins Gubbins is a tool for rapid phylogenetic analysis of large samples of recombinant bacterial whole genome sequences. Genotyping, Phylogenetic inference, Ancestral reconstruction Phylogeny, Genotype and phenotype, Whole genome sequencing To update Sequence Analysis gubbins iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gubbins https://github.com/galaxyproject/tools-iuc/tree/main/tools/gubbins 3.2.1 gubbins 3.3.5 Genotyping, Phylogenetic inference, Ancestral reconstruction Phylogeny, Genotype and phenotype, Whole genome sequencing 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 145 3340 True False True +hamronization hamronize_summarize, hamronize_tool Convert AMR gene detection tool output to hAMRonization specification format. hamronization hamronization hAMRonization Parse multiple Antimicrobial Resistance Analysis Reports into a common data structure Data handling, Antimicrobial resistance prediction, Parsing Public health and epidemiology, Microbiology, Bioinformatics Up-to-date https://github.com/pha4ge/hAMRonization Sequence Analysis hamronization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hamronization https://github.com/galaxyproject/tools-iuc/tree/main/tools/hamronization 1.1.4 hamronization 1.1.4 Antimicrobial resistance prediction, Parsing Public health and epidemiology, Microbiology, Bioinformatics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 117 4459 True False True +hansel bio_hansel Heidelberg and Enteritidis SNP Elucidation Biohansel Biohansel BioHansel BioHansel is a tool for performing high-resolution genotyping of bacterial isolates by identifying phylogenetically informative single nucleotide polymorphisms (SNPs), also known as canonical SNPs, in whole genome sequencing (WGS) data. The application uses a fast k-mer matching algorithm to map pathogen WGS data to canonical SNPs contained in hierarchically structured schemas and assigns genotypes based on the detected SNP profile. Genotyping, SNP detection, Genome assembly Whole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural science Up-to-date https://github.com/phac-nml/bio_hansel Sequence Analysis bio_hansel iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel https://github.com/galaxyproject/tools-iuc/tree/main/tools/hansel 2.6.1 bio_hansel 2.6.1 Genotyping, SNP detection, Genome assembly Whole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural science 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 339 True False True +hifiasm_meta hifiasm_meta A hifiasm fork for metagenome assembly using Hifi reads. hifiasm-meta hifiasm-meta Hifiasm-meta Hifiasm_meta - de novo metagenome assembler, based on hifiasm, a haplotype-resolved de novo assembler for PacBio Hifi reads. Sequence assembly Sequence assembly, Metagenomics To update https://github.com/xfengnefx/hifiasm-meta Metagenomics hifiasm_meta galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/hifiasm_meta https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm_meta 0.3.1 hifiasm_meta hamtv0.3.1 Sequence assembly Sequence assembly, Metagenomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 137 True False True +hivtrace hivtrace An application that identifies potential transmission clusters within a supplied FASTA file with an option to find potential links against the Los Alamos HIV Sequence Database. To update Sequence Analysis hivtrace nml https://github.com/phac-nml/galaxy_tools/tree/tools/hivtrace https://github.com/phac-nml/galaxy_tools/tree/master/tools/hivtrace 1.0.1 hivtrace 1.5.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +hmmer3 hmmer_alimask, hmmer_hmmalign, hmmer_hmmbuild, hmmer_hmmconvert, hmmer_hmmemit, hmmer_hmmfetch, hmmer_hmmscan, hmmer_hmmsearch, hmmer_jackhmmer, hmmer_nhmmer, hmmer_nhmmscan, hmmer_phmmer HMMER is used for searching sequence databases for homologs of proteinsequences, and for making protein sequence alignments. It implementsmethods using probabilistic models called profile hidden Markov models(profile HMMs). hmmer3 hmmer3 HMMER3 This tool is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models. The new HMMER3 project, HMMER is now as fast as BLAST for protein search. Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Sequence generation, Data retrieval, Statistical calculation, Database search, Formatting, Database search, Database search, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Database search, Sequence database search Sequence analysis, Sequence sites, features and motifs, Gene and protein families Up-to-date http://hmmer.org/ Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hmmer3 3.4 hmmer 3.4 Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Data retrieval, Statistical calculation, Formatting, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Sequence database search Sequence analysis, Sequence sites, features and motifs, Gene and protein families 0 12 12 12 0 12 12 12 0 0 0 0 12 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 0 439 33702 True False True +humann humann, humann_associate, humann_barplot, humann_join_tables, humann_reduce_table, humann_regroup_table, humann_rename_table, humann_renorm_table, humann_rna_dna_norm, humann_split_stratified_table, humann_split_table, humann_strain_profiler, humann_unpack_pathways HUMAnN for functionally profiling metagenomes and metatranscriptomes at species-level resolution humann humann humann HUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data (typically millions of short DNA/RNA reads). This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question “What are the microbes in my community-of-interest doing (or are capable of doing)?” Species frequency estimation, Taxonomic classification, Phylogenetic analysis Metagenomics, Phylogenomics To update http://huttenhower.sph.harvard.edu/humann Metagenomics humann iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann https://github.com/galaxyproject/tools-iuc/tree/main/tools/humann 3.8 humann 3.9 Species frequency estimation, Taxonomic classification, Phylogenetic analysis Metagenomics, Phylogenomics 6 13 13 13 6 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 13 0 1045 19521 True False True +hyphy hyphy_absrel, hyphy_annotate, hyphy_bgm, hyphy_busted, hyphy_cfel, hyphy_conv, hyphy_fade, hyphy_fel, hyphy_fubar, hyphy_gard, hyphy_meme, hyphy_prime, hyphy_relax, hyphy_slac, hyphy_sm19, hyphy_strike_ambigs, hyphy_summary Hypothesis Testing using Phylogenies HyPhy HyPhy HyPhy Software package for the analysis of genetic sequences using techniques in phylogenetics, molecular evolution, and machine learning. Statistical calculation Phylogeny, Small molecules, Molecular interactions, pathways and networks To update http://www.hyphy.org Phylogenetics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/hyphy 2.5.47 hyphy 2.5.62 Statistical calculation Phylogeny, Small molecules, Molecular interactions, pathways and networks 17 2 17 2 17 2 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 17 12 0 161 10370 True False True +hypo hypo Super Fast & Accurate Polisher for Long Read Genome Assemblies HyPo HyPo HyPo HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes. Optimisation and refinement, Genome assembly Sequence assembly, Genomics Up-to-date https://github.com/kensung-lab/hypo Assembly hypo iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo https://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo 1.0.3 hypo 1.0.3 Optimisation and refinement, Genome assembly Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 39 354 True False True +icescreen icescreen ICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes. icescreen icescreen ICEscreen A tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures. Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation To update https://icescreen.migale.inrae.fr/ Genome annotation icescreen iuc https://forgemia.inra.fr/ices_imes_analysis/icescreen https://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen 1.3.1 icescreen 1.3.2 Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +idba_ud idba_hybrid, idba_tran, idba_ud Wrappers for the idba assembler variants. idba idba IDBA A short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system. Sequence assembly Sequence assembly To update https://i.cs.hku.hk/~alse/hkubrg/projects/index.html Assembly idba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud https://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_ud idba 1.1.3 Sequence assembly Sequence assembly 3 0 3 3 3 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 69 1127 True False True +infernal infernal_cmalign, infernal_cmbuild, infernal_cmpress, infernal_cmscan, infernal_cmsearch, infernal_cmstat "Infernal (""INFERence of RNA ALignment"") is for searching DNA sequence databases for RNA structure and sequence similarities." infernal infernal Infernal "Infernal (""INFERence of RNA ALignment"") is for searching DNA sequence databases for RNA structure and sequence similarities. It is an implementation of a special case of profile stochastic context-free grammars called covariance models (CMs). A CM is like a sequence profile, but it scores a combination of sequence consensus and RNA secondary structure consensus, so in many cases, it is more capable of identifying RNA homologs that conserve their secondary structure more than their primary sequence." Nucleic acid feature detection Sequence sites, features and motifs, Structural genomics To update http://infernal.janelia.org/ RNA infernal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/infernal https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/infernal 1.1.4 infernal 1.1.5 Nucleic acid feature detection Sequence sites, features and motifs, Structural genomics 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 67 100294 True False True +instrain instrain_compare, instrain_profile InStrain is a tool for analysis of co-occurring genome populations from metagenomes instrain instrain InStrain InStrain is a tool for analysis of co-occurring genome populations from metagenomes that allows highly accurate genome comparisons, analysis of coverage, microdiversity, and linkage, and sensitive SNP detection with gene localization and synonymous non-synonymous identification SNP detection, Genome comparison Mapping, Metagenomics To update https://instrain.readthedocs.io/en/latest/# Metagenomics instrain iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/instrain https://github.com/galaxyproject/tools-iuc/tree/main/tools/instrain 1.5.3 instrain 1.9.0 SNP detection, Genome comparison Mapping, Metagenomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 94 True False True +integron_finder integron_finder """IntegronFinder identify integrons with high accuracy and sensitivity.It searches for attC sites using covariance models, for integron-integrases using HMM profiles, and for other features (promoters, attI site) using pattern matching""" integron_finder integron_finder Integron Finder A tool to detect Integron in DNA sequences. Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotation Functional genomics, Mobile genetic elements, Molecular biology, Sequence analysis Up-to-date https://github.com/gem-pasteur/Integron_Finder Sequence Analysis integronfinder iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/integron_finder https://github.com/galaxyproject/tools-iuc/tree/main/tools/integron_finder 2.0.5 integron_finder 2.0.5 Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotation Functional genomics, Mobile genetic elements, Molecular biology, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 58 52965 True False True +interproscan interproscan Interproscan queries the interpro database and provides annotations. interproscan_ebi interproscan_ebi InterProScan (EBI) Scan sequences against the InterPro protein signature databases. Sequence motif recognition, Protein feature detection Gene and protein families, Sequence analysis To update http://www.ebi.ac.uk/Tools/pfa/iprscan5/ Sequence Analysis interproscan bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/interproscan https://github.com/galaxyproject/tools-iuc/tree/main/tools/interproscan 5.59-91.0 interproscan 5.59_91.0 Sequence motif recognition, Protein feature detection Gene and protein families, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 677 35243 True False True +iprscan5 Interproscan queries the interpro database and provides annotations. To update http://www.ebi.ac.uk/Tools/pfa/iprscan5/ Sequence Analysis iprscan5 bgruening https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5 https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +iqtree iqtree Efficient phylogenomic software by maximum likelihood iqtree iqtree iqtree A fast and effective stochastic algorithm to infer phylogenetic trees by maximum likelihood. IQ-TREE compares favorably to RAxML and PhyML in terms of likelihoods with similar computing time Phylogenetic analysis, Sequence analysis Phylogenetics Up-to-date http://www.iqtree.org/ Phylogenetics iqtree iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/iqtree/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/iqtree 2.3.6 iqtree 2.3.6 Phylogenetic analysis, Sequence analysis Phylogenetics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 681 21598 True False True +isescan isescan """ISEScan is a pipeline to identify IS (Insertion Sequence) elements in genome and metagenomebased on profile hidden Markov models constructed from manually curated IS elements.""" ISEScan ISEScan ISEScan Automated identification of insertion sequence elements in prokaryotic genomes. Structural variation detection Genomics, DNA structural variation, Sequence analysis, Genetic variation To update https://github.com/xiezhq/ISEScan Sequence Analysis ISEScan iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/isescan https://github.com/galaxyproject/tools-iuc/tree/main/tools/isescan 1.7.2.3 isescan 1.7.2.1 Structural variation detection Genomics, Sequence analysis, Genetic variation 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 50 57581 True False True +itsx itsx ITSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences. ITSx ITSx ITSx TSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences, which is commonly used as a molecular barcode for e.g. fungi. As the inclusion of parts of the neighbouring, very conserved, ribosomal genes (SSU, 5S and LSU rRNA sequences) in the sequence identification process can lead to severely misleading results, ITSx identifies and extracts only the ITS regions themselves. Sequence feature detection Functional, regulatory and non-coding RNA, Microbiology Up-to-date https://microbiology.se/software/itsx/ Metagenomics itsx bgruening https://github.com/bgruening/galaxytools/tree/master/tools/itsx https://github.com/bgruening/galaxytools/tree/master/tools/itsx 1.1.3 itsx 1.1.3 Sequence feature detection Functional, regulatory and non-coding RNA, Microbiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 38 868 True False True +ivar ivar_consensus, ivar_filtervariants, ivar_removereads, ivar_trim, ivar_variants iVar is a computational package that contains functions broadly useful for viral amplicon-based sequencing Up-to-date https://github.com/andersen-lab/ivar Sequence Analysis ivar iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ivar/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/ivar 1.4.3 ivar 1.4.3 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 4 0 0 0 4 0 0 0 0 0 0 0 5 5 0 1171 1224275 True False True +jbrowse jbrowse_to_standalone, jbrowse JBrowse Genome Browser integrated as a Galaxy Tool jbrowse jbrowse JBrowse Slick, speedy genome browser with a responsive and dynamic AJAX interface for visualization of genome data. Being developed by the GMOD project as a successor to GBrowse. Genome visualisation Genomics Up-to-date https://jbrowse.org Sequence Analysis jbrowse iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse https://github.com/galaxyproject/tools-iuc/tree/main/tools/jbrowse 1.16.11 jbrowse 1.16.11 Genome visualisation Genomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 2346 18229 True False True +jellyfish jellyfish Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA Jellyfish Jellyfish Jellyfish A command-line algorithm for counting k-mers in DNA sequence. k-mer counting Sequence analysis, Genomics To update https://github.com/gmarcais/Jellyfish Assembly jellyfish iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish https://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfish kmer-jellyfish 2.3.1 k-mer counting Sequence analysis, Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 91 1138 True False True +kat_filter kat_@EXECUTABLE@ Filtering kmers or reads from a database of kmers hashes To update Sequence Analysis kat_filter nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_filter 2.3 kat 2.4.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +kc-align kc-align Kc-Align custom tool kc-align kc-align kc-align A fast and accurate tool for performing codon-aware multiple sequence alignments Multiple sequence alignment Mapping Up-to-date https://github.com/davebx/kc-align Sequence Analysis kc_align iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kc-align https://github.com/galaxyproject/tools-iuc/tree/main/tools/kc-align 1.0.2 kcalign 1.0.2 Multiple sequence alignment Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 363 True False True +khmer khmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_median In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more khmer khmer khmer khmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data. Standardisation and normalisation, De-novo assembly Sequence assembly Up-to-date https://khmer.readthedocs.org/ Assembly, Next Gen Mappers khmer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer 3.0.0a3 khmer 3.0.0a3 Standardisation and normalisation, De-novo assembly Sequence assembly 8 8 8 0 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 8 8 0 63 2022 True False True +kleborate kleborate Screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) kleborate kleborate Kleborate Genomic surveillance framework and global population structure for Klebsiella pneumoniae.Kleborate is a tool to screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) for:.A manuscript describing the Kleborate software in full is currently in preparation. In the meantime, if you use Kleborate, please cite the preprint: Lam, MMC. et al. Genomic surveillance framework and global population structure for Klebsiella pneumoniae. bioRxiv (2020). Multilocus sequence typing, Genome assembly, Virulence prediction Public health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing To update https://github.com/katholt/Kleborate/wiki Metagenomics kleborate iuc https://github.com/katholt/Kleborate https://github.com/galaxyproject/tools-iuc/tree/main/tools/kleborate 2.3.2 kleborate 3.0.6 Multilocus sequence typing, Genome assembly, Virulence prediction Public health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 38 319 True False True +kofamscan kofamscan Gene function annotation tool based on KEGG Orthology and hidden Markov model kofamscan kofamscan kofamscan KofamScan is a gene function annotation tool based on KEGG Orthology and hidden Markov model. You need KOfam database to use this tool. Sequence analysis, Gene functional annotation Genomics Up-to-date https://github.com/takaram/kofam_scan Sequence Analysis kofamscan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kofamscan https://github.com/galaxyproject/tools-iuc/tree/main/tools/kofamscan 1.3.0 kofamscan 1.3.0 Sequence analysis, Gene functional annotation Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 33 594 True False True +kraken kraken-filter, kraken-mpa-report, kraken-report, kraken-translate, kraken Kraken is a system for assigning taxonomic labels to short DNAsequences, usually obtained through metagenomic studies. Previous attempts by otherbioinformatics software to accomplish this task have often used sequence alignmentor machine learning techniques that were quite slow, leading to the developmentof less sensitive but much faster abundance estimation programs. Kraken aims toachieve high sensitivity and high speed by utilizing exact alignments of k-mersand a novel classification algorithm. kraken kraken Kraken System for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. It aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm. Taxonomic classification Taxonomy, Metagenomics To update http://ccb.jhu.edu/software/kraken/ Metagenomics kraken devteam https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken/ https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken kraken 1.1.1 Taxonomic classification Taxonomy, Metagenomics 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 5 0 1209 33778 True False True +kraken2 kraken2 Kraken2 for taxonomic designation. kraken2 kraken2 kraken2 Kraken 2 is the newest version of Kraken, a taxonomic classification system using exact k-mer matches to achieve high accuracy and fast classification speeds. This classifier matches each k-mer within a query sequence to the lowest common ancestor (LCA) of all genomes containing the given k-mer. The k-mer assignments inform the classification algorithm. Taxonomic classification Taxonomy, Metagenomics Up-to-date http://ccb.jhu.edu/software/kraken/ Metagenomics kraken2 iuc https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken2/kraken2/ https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken2/kraken2 2.1.3 kraken2 2.1.3 Taxonomic classification Taxonomy, Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 2367 185308 True False True +kraken2tax Kraken2Tax Convert Kraken output to Galaxy taxonomy data. To update https://bitbucket.org/natefoo/taxonomy Metagenomics kraken2tax devteam https://github.com/galaxyproject/tools-devteam/blob/master/tool_collections/taxonomy/kraken2tax/ https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/kraken2tax 1.2+galaxy0 gawk 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 481 14683 True False True +kraken_biom kraken_biom Create BIOM-format tables (http://biom-format.org) from Kraken output (http://ccb.jhu.edu/software/kraken/) Up-to-date https://github.com/smdabdoub/kraken-biom Metagenomics kraken_biom iuc https://github.com/smdabdoub/kraken-biom https://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_biom 1.2.0 kraken-biom 1.2.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 182 1444 True False True +kraken_taxonomy_report kraken_taxonomy_report Kraken taxonomy report Kraken-Taxonomy-Report Kraken-Taxonomy-Report Kraken-Taxonomy-Report view report of classification for multiple samples Visualisation, Classification Metagenomics, Taxonomy To update https://github.com/blankenberg/Kraken-Taxonomy-Report Metagenomics kraken_taxonomy_report iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kraken_taxonomy_report https://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_taxonomy_report 0.0.3 biopython 1.70 Visualisation, Classification Metagenomics, Taxonomy 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 354 2527 True False True +krakentools krakentools_alpha_diversity, krakentools_beta_diversity, krakentools_combine_kreports, krakentools_extract_kraken_reads, krakentools_kreport2krona, krakentools_kreport2mpa KrakenTools is a suite of scripts to be used alongside the Kraken krakentools krakentools KrakenTools KrakenTools provides individual scripts to analyze Kraken/Kraken2/Bracken/KrakenUniq output files Visualisation, Aggregation Taxonomy, Metagenomics Up-to-date https://github.com/jenniferlu717/KrakenTools Metagenomics krakentools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/krakentools https://github.com/galaxyproject/tools-iuc/tree/main/tools/krakentools 1.2 krakentools 1.2 Visualisation, Aggregation Taxonomy, Metagenomics 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 1 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 703 16525 True False True +krocus krocus Predict MLST directly from uncorrected long reads krocus krocus krocus Predict MLST directly from uncorrected long reads Multilocus sequence typing, k-mer counting Public health and epidemiology To update https://github.com/quadram-institute-bioscience/krocus Sequence Analysis krocus iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/krocus https://github.com/galaxyproject/tools-iuc/tree/main/tools/krocus 1.0.1 krocus 1.0.3 Multilocus sequence typing, k-mer counting Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +lca_wrapper lca1 Find lowest diagnostic rank To update https://bitbucket.org/natefoo/taxonomy Metagenomics lca_wrapper devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/lca_wrapper https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/lca_wrapper 1.0.1 taxonomy 0.10.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 137 True False True +legsta legsta Performs in silico Legionella pneumophila sequence based typing. legsta legsta legsta Performs in silico Legionella pneumophila sequence based typing Sequence analysis Public health and epidemiology Up-to-date https://github.com/tseemann/legsta Sequence Analysis legsta iuc https://github.com/tseemann/legsta https://github.com/galaxyproject/tools-iuc/tree/main/tools/legsta 0.5.1 legsta 0.5.1 Sequence analysis Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 7 55 True False True +lighter lighter Lighter is a kmer-based error correction method for whole genome sequencing data lighter lighter Lighter Kmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors. k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Sequencing, Whole genome sequencing, DNA, Genomics To update https://github.com/mourisl/Lighter Sequence Analysis, Fasta Manipulation lighter bgruening https://github.com/bgruening/galaxytools/tree/master/tools/lighter https://github.com/bgruening/galaxytools/tree/master/tools/lighter 1.0 lighter 1.1.3 k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Whole genome sequencing, DNA, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 152 True False True +limma_voom limma_voom Perform RNA-Seq differential expression analysis using limma voom pipeline limma limma limma Data analysis, linear models and differential expression for microarray data. RNA-Seq analysis Molecular biology, Genetics Up-to-date http://bioconductor.org/packages/release/bioc/html/limma.html Transcriptomics, RNA, Statistics limma_voom iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom https://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom 3.58.1 bioconductor-limma 3.58.1 RNA-Seq analysis Molecular biology, Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1012 20344 True False True +lineagespot lineagespot Identification of SARS-CoV-2 related metagenomic mutations based on a single (or a list of) variant(s) file(s) lineagespot lineagespot lineagespot Lineagespot is a framework written in R, and aims to identify and assign different SARS-CoV-2 lineages based on a single variant file (i.e., variant calling format). Variant calling Metagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variation To update https://www.bioconductor.org/packages/release/bioc/html/lineagespot.html Metagenomics, Sequence Analysis lineagespot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/lineagespot https://github.com/galaxyproject/tools-iuc/tree/main/tools/lineagespot 1.6.0 r-base Variant calling Metagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 37 True False True +lorikeet lorikeet_spoligotype Tools for M. tuberculosis DNA fingerprinting (spoligotyping) lorikeet lorikeet lorikeet Tools for M. tuberculosis DNA fingerprinting (spoligotyping) Sequence analysis, Genotyping Genotype and phenotype Up-to-date https://github.com/AbeelLab/lorikeet Sequence Analysis lorikeet_spoligotype iuc https://github.com/AbeelLab/lorikeet https://github.com/galaxyproject/tools-iuc/tree/main/tools/lorikeet 20 lorikeet 20 Sequence analysis, Genotyping Genotype and phenotype 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 647 True False True +lotus2 lotus2 LotuS2 OTU processing pipeline lotus2 lotus2 lotus2 LotuS2 is a lightweight and user-friendly pipeline that is fast, precise, and streamlined, using extensive pre- and post-ASV/OTU clustering steps to further increase data quality. High data usage rates and reliability enable high-throughput microbiome analysis in minutes. Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology To update http://lotus2.earlham.ac.uk/ Metagenomics lotus2 earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2 https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2 2.32 lotus2 2.34.1 Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 114 936 True False True +m6anet m6anet m6anet to detect m6A RNA modifications from nanopore data m6Anet m6Anet m6Anet Detection of m6A from direct RNA sequencing using a Multiple Instance Learning framework. Quantification, Imputation, Gene expression profiling RNA-Seq, Transcriptomics, RNA, Machine learning Up-to-date https://m6anet.readthedocs.io/en/latest Sequence Analysis m6anet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/m6anet https://github.com/galaxyproject/tools-iuc/tree/main/tools/m6anet 2.1.0 m6anet 2.1.0 Quantification, Imputation, Gene expression profiling RNA-Seq, Transcriptomics, RNA, Machine learning 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 True False True +maaslin2 maaslin2 MaAsLin2 is comprehensive R package for efficiently determining multivariable association between microbial meta'omic features and clinical metadata. maaslin2 maaslin2 MaAsLin2 MaAsLin2 is comprehensive R package for efficiently determining multivariable association between phenotypes, environments, exposures, covariates and microbial meta’omic features. MaAsLin2 relies on general linear models to accommodate most modern epidemiological study designs, including cross-sectional and longitudinal, and offers a variety of data exploration, normalization, and transformation methods. Filtering, Statistical calculation, Standardisation and normalisation, Visualisation Metagenomics, Statistics and probability To update http://huttenhower.sph.harvard.edu/maaslin Metagenomics maaslin2 iuc https://github.com/biobakery/Maaslin2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/maaslin2 1.16.0 bioconductor-maaslin2 1.18.0 Filtering, Standardisation and normalisation, Visualisation Metagenomics, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 29 188 True False True +mafft rbc_mafft_add, rbc_mafft Multiple alignment program for amino acid or nucleotide sequences MAFFT MAFFT MAFFT MAFFT (Multiple Alignment using Fast Fourier Transform) is a high speed multiple sequence alignment program. Multiple sequence alignment Sequence analysis To update https://mafft.cbrc.jp/alignment/software/ RNA mafft rnateam https://github.com/bgruening/galaxytools/tree/master/tools/mafft https://github.com/bgruening/galaxytools/tree/master/tools/mafft 7.526 mafft 7.525 Multiple sequence alignment Sequence analysis 2 2 2 2 2 2 2 2 0 1 0 0 2 0 0 0 0 0 0 0 1 0 2 0 0 2 0 0 0 2 0 0 0 0 0 0 0 2 2 0 817 143045 True False True +make_nr make_nr Make a FASTA file non-redundant To update https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr Fasta Manipulation, Sequence Analysis make_nr peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr 0.0.3 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +maker maker, maker_map_ids MAKER is a portable and easily configurable genome annotation pipeline.Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. maker maker MAKER Portable and easily configurable genome annotation pipeline. It’s purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. Genome annotation Genomics, DNA, Sequence analysis To update http://www.yandell-lab.org/software/maker.html Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/maker https://github.com/galaxyproject/tools-iuc/tree/main/tools/maker 2.31.11 maker 3.01.03 Genome annotation Genomics, DNA, Sequence analysis 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 554 5591 True False True +mapseq mapseq fast and accurate sequence read classification tool designed to assign taxonomy and OTU classifications to ribosomal RNA sequences. mapseq mapseq MAPseq Highly efficient k-mer search with confidence estimates, for rRNA sequence analysis . k-mer counting Functional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifs To update https://github.com/jfmrod/MAPseq Metagenomics mapseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mapseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/mapseq 2.1.1 perl k-mer counting Functional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifs 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 167 True False True +mash mash_screen, mash_sketch Fast genome and metagenome distance estimation using MinHash mash mash Mash Fast genome and metagenome distance estimation using MinHash. Sequence distance matrix generation Genomics, Metagenomics, Statistics and probability, Sequence analysis, DNA mutation Up-to-date https://github.com/marbl/Mash Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash https://github.com/galaxyproject/tools-iuc/tree/main/tools/mash 2.3 mash 2.3 Sequence distance matrix generation Metagenomics, Statistics and probability, Sequence analysis, DNA mutation 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 27 9763 True False True +maxbin2 maxbin2 clusters metagenomic contigs into bins maxbin maxbin MaxBin Software for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm. Sequence assembly Metagenomics, Sequence assembly, Microbiology To update https://downloads.jbei.org/data/microbial_communities/MaxBin/MaxBin.html Metagenomics maxbin2 mbernt https://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/maxbin2 maxbin2 2.2.7 Sequence assembly Metagenomics, Sequence assembly, Microbiology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 118 2059 True False True +maxquant maxquant, maxquant_mqpar wrapper for MaxQuant maxquant maxquant MaxQuant Quantitative proteomics software package designed for analyzing large mass-spectrometric data sets. It is specifically aimed at high-resolution MS data. Imputation, Visualisation, Protein quantification, Statistical calculation, Standardisation and normalisation, Heat map generation, Clustering, Principal component plotting Proteomics experiment, Proteomics, Statistics and probability Up-to-date https://www.maxquant.org/ Proteomics maxquant galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant 2.0.3.0 maxquant 2.0.3.0 Imputation, Visualisation, Protein quantification, Standardisation and normalisation, Heat map generation, Clustering Proteomics experiment, Proteomics, Statistics and probability 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 415 6078 True False True +mcl mcl The Markov Cluster Algorithm, a cluster algorithm for graphs mcl mcl MCL MCL is a clustering algorithm widely used in bioinformatics and gaining traction in other fields. Clustering, Network analysis, Gene regulatory network analysis Molecular interactions, pathways and networks Up-to-date https://micans.org/mcl/man/mcl.html Sequence Analysis mcl iuc https://github.com/galaxyproject/tools-iuc/tree/master/mcl https://github.com/galaxyproject/tools-iuc/tree/main/tools/mcl 22.282 mcl 22.282 Clustering, Gene regulatory network analysis Molecular interactions, pathways and networks 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 29 True False True +medaka medaka_consensus, medaka_consensus_pipeline, medaka_snp, medaka_variant Sequence correction provided by ONT Research medaka medaka Medaka medaka is a tool to create consensus sequences and variant calls from nanopore sequencing data. This task is performed using neural networks applied a pileup of individual sequencing reads against a draft assembly. Base-calling, Variant calling, Sequence assembly Sequence assembly, Machine learning To update https://github.com/nanoporetech/medaka Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/medaka https://github.com/galaxyproject/tools-iuc/tree/main/tools/medaka 1.7.2 medaka 1.11.3 Base-calling, Variant calling, Sequence assembly Sequence assembly, Machine learning 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 3 3 0 768 99863 True False True +megahit megahit An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph. megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly Up-to-date https://github.com/voutcn/megahit Sequence Analysis, Assembly, Metagenomics megahit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit 1.2.9 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 548 9530 True False True +megahit_contig2fastg megahit_contig2fastg A subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg) megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly To update https://github.com/voutcn/megahit/blob/master/tools/toolkit.cpp Sequence Analysis, Assembly, Metagenomics megahit_contig2fastg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg 1.1.3 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 54 475 True False True +megan megan_blast2lca, megan_blast2rma, megan_daa2info, megan_daa2rma, megan_daa_meganizer, megan_read_extractor, megan_sam2rma MEGAN Community Edition - Interactive exploration and analysis of large-scale microbiome sequencing data. MEGAN is a tool for studying the taxonomic content of a set of DNA reads, typically collected in a metagenomics project.In a preprocessing step, a sequence alignment of all reads against a suitable database of reference DNA or proteinsequences must be performed to produce an input file for the program. MEGAN is suitable for DNA reads (metagenomedata), RNA reads (metatranscriptome data), peptide sequences (metaproteomics data) and, using a suitable synonymsfile that maps SILVA ids to taxon ids, for 16S rRNA data (amplicon sequencing). megan megan MEGAN Metagenome Analysis Software - MEGAN (MEtaGenome ANalyzer) is a new computer program that allows laptop analysis of large metagenomic datasets. In a preprocessing step, the set of DNA reads (or contigs) is compared against databases of known sequences using BLAST or another comparison tool. MEGAN can then be used to compute and interactively explore the taxonomical content of the dataset, employing the NCBI taxonomy to summarize and order the results. Sequence analysis, Taxonomic classification Sequence analysis To update https://github.com/husonlab/megan-ce Sequence Analysis megan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megan https://github.com/galaxyproject/tools-iuc/tree/main/tools/megan 6.21.7 megan 6.25.9 Sequence analysis, Taxonomic classification Sequence analysis 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 261 3610 True False True +meningotype meningotype Assign sequence type to N. meningitidis genome assemblies meningotype meningotype meningotype In silico typing of Neisseria meningitidis contigs. Genotyping, Multilocus sequence typing Microbiology, Genotype and phenotype Up-to-date https://github.com/MDU-PHL/meningotype Sequence Analysis meningotype iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype https://github.com/galaxyproject/tools-iuc/tree/main/tools/meningotype 0.8.5 meningotype 0.8.5 Multilocus sequence typing Microbiology, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +merqury merqury, merquryplot Merqury is a tool for evaluating genomes assemblies based of k-mer operations. merqury merqury Merqury Reference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose. Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology Up-to-date https://github.com/marbl/merqury Assembly merqury iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury https://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury 1.3 merqury 1.3 Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 244 2483 True False True +meryl meryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_mode Meryl a k-mer counter. meryl meryl Meryl Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu. k-mer counting Whole genome sequencing, Genomics, Sequence analysis, Sequencing Up-to-date https://github.com/marbl/meryl Assembly meryl iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl 1.3 merqury 1.3 k-mer counting Whole genome sequencing, Genomics, Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +metabat2 metabat2_jgi_summarize_bam_contig_depths, metabat2 MetaBAT2 (Metagenome Binning based on Abundance and Tetranucleotide frequency) is an automated metagenome binningsoftware that integrates empirical probabilistic distances of genome abundance and tetranucleotide frequency. MetaBAT_2 MetaBAT_2 MetaBAT 2 "an adaptive binning algorithm for robust and efficient genome reconstruction from metagenome assemblies | MetaBAT2 clusters metagenomic contigs into different ""bins"", each of which should correspond to a putative genome | MetaBAT2 uses nucleotide composition information and source strain abundance (measured by depth-of-coverage by aligning the reads to the contigs) to perform binning" Read binning, Sequence assembly, Genome annotation Metagenomics, Sequence assembly, Metagenomic sequencing To update https://bitbucket.org/berkeleylab/metabat/src/master/ Metagenomics metabat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metabat2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabat2 2.15 metabat2 2.17 Read binning, Sequence assembly, Genome annotation Metagenomics, Sequence assembly, Metagenomic sequencing 2 1 2 2 2 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 192 4329 True False True +metaeuk metaeuk_easy_predict MetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand. MetaEuk MetaEuk MetaEuk MetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomics Homology-based gene prediction Metagenomics, Gene and protein families To update https://github.com/soedinglab/metaeuk Sequence Analysis, Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeuk https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk 5.34c21f2 metaeuk 6.a5d39d9 Homology-based gene prediction Metagenomics, Gene and protein families 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 184 True False True +metagene_annotator metagene_annotator MetaGeneAnnotator gene-finding program for prokaryote and phage metageneannotator metageneannotator MetaGeneAnnotator Prokaryotic gene finding program from environmental genome shotgun sequences or metagenomic sequences. Sequence annotation Genomics, Model organisms, Data submission, annotation and curation Up-to-date http://metagene.nig.ac.jp/ Sequence Analysis metagene_annotator galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/metagene_annotator https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metagene_annotator 1.0 metagene_annotator 1.0 Sequence annotation Genomics, Model organisms, Data submission, annotation and curation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 115 636 True False True +metagenomeseq metagenomeseq_normalizaton metagenomeSeq Normalization metagenomeseq metagenomeseq metagenomeSeq Designed to determine features (be it Operational Taxanomic Unit (OTU), species, etc.) that are differentially abundant between two or more groups of multiple samples. It is designed to address the effects of both normalization and under-sampling of microbial communities on disease association detection and the testing of feature correlations. Sequence visualisation, Statistical calculation Metagenomics, Sequencing To update https://bioconductor.org/packages/3.18/bioc/html/metagenomeSeq.html Metagenomics metagenomeseq_normalization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metagenomeseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/metagenomeseq 1.16.0-0.0.1 bioconductor-metagenomeseq 1.43.0 Sequence visualisation, Statistical calculation Metagenomics, Sequencing 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 753 True False True +metanovo metanovo Produce targeted databases for mass spectrometry analysis. metanovo metanovo MetaNovo An open-source pipeline for probabilistic peptide discovery in complex metaproteomic datasets. Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysis Proteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small molecules Up-to-date https://github.com/uct-cbio/proteomics-pipelines Proteomics metanovo galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo 1.9.4 metanovo 1.9.4 Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysis Proteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 15 4181 True False True +metaphlan customize_metaphlan_database, extract_metaphlan_database, merge_metaphlan_tables, metaphlan MetaPhlAn for Metagenomic Phylogenetic Analysis metaphlan metaphlan MetaPhlAn Computational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data. Nucleic acid sequence analysis, Phylogenetic tree analysis Metagenomics, Phylogenomics Up-to-date https://github.com/biobakery/MetaPhlAn Metagenomics metaphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaphlan 4.1.1 metaphlan 4.1.1 Nucleic acid sequence analysis Metagenomics, Phylogenomics 1 2 4 4 1 2 4 4 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 499 11069 True False True +metaquantome metaquantome_db, metaquantome_expand, metaquantome_filter, metaquantome_sample, metaquantome_stat, metaquantome_viz quantitative analysis of microbiome taxonomy and function metaQuantome metaQuantome metaQuantome metaQuantome software suite analyzes the state of a microbiome by leveraging complex taxonomic and functional hierarchies to summarize peptide-level quantitative information. metaQuantome offers differential abundance analysis, principal components analysis, and clustered heat map visualizations, as well as exploratory analysis for a single sample or experimental condition. Principal component visualisation, Visualisation, Functional clustering, Query and retrieval, Differential protein expression analysis, Heat map generation, Quantification, Indexing, Filtering, Statistical inference Proteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, Metagenomics Up-to-date https://github.com/galaxyproteomics/metaquantome/ Proteomics metaquantome galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome 2.0.2 metaquantome 2.0.2 Principal component visualisation, Functional clustering, Query and retrieval, Heat map generation, Quantification, Indexing, Filtering, Statistical inference Proteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, Metagenomics 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 104 2522 True False True +metawrapmg metawrapmg_binning A flexible pipeline for genome-resolved metagenomic data analysis metawrap metawrap MetaWRAP MetaWRAP aims to be an easy-to-use metagenomic wrapper suite that accomplishes the core tasks of metagenomic analysis from start to finish: read quality control, assembly, visualization, taxonomic profiling, extracting draft genomes (binning), and functional annotation. Read binning, Sequence assembly, Genome annotation, Sequence trimming, Demultiplexing Whole genome sequencing, Metagenomic sequencing, Metagenomics Up-to-date https://github.com/bxlab/metaWRAP Metagenomics metawrapmg_binning galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/metawrapmg https://github.com/galaxyproject/tools-iuc/tree/main/tools/metawrapmg 1.3.0 metawrap-mg 1.3.0 Read binning, Sequence assembly, Genome annotation, Sequence trimming, Demultiplexing Whole genome sequencing, Metagenomic sequencing, Metagenomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +minia minia Short-read assembler based on a de Bruijn graph minia minia Minia Short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day. Genome assembly Sequence assembly Up-to-date https://gatb.inria.fr/software/minia/ Assembly minia iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia https://github.com/galaxyproject/tools-iuc/tree/main/tools/minia 3.2.6 minia 3.2.6 Genome assembly Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 109 2206 True False True +miniasm miniasm Miniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step) miniasm miniasm miniasm Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. De-novo assembly Genomics, Sequence assembly To update https://github.com/lh3/miniasm Assembly miniasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm 0.3_r179 miniasm 0.3 De-novo assembly Genomics, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 178 11938 True False True +minipolish minipolish Polishing miniasm assemblies minipolish minipolish minipolish A tool that bridges the output of miniasm (long-read assembly) and racon (assembly polishing) together to polish a draft assembly. It also provides read depth information in contigs. Localised reassembly, Read depth analysis Sequence assembly, Sequencing Up-to-date https://github.com/rrwick/Minipolish Sequence Analysis minipolish bgruening https://github.com/bgruening/galaxytools/tree/master/tools/minipolish https://github.com/bgruening/galaxytools/tree/master/tools/minipolish 0.1.3 minipolish 0.1.3 Localised reassembly, Read depth analysis Sequence assembly, Sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 185 True False True +miniprot miniprot, miniprot_index Align a protein sequence against a genome with affine gap penalty, splicing and frameshift. miniprot miniprot miniprot Miniprot aligns a protein sequence against a genome with affine gap penalty, splicing and frameshift. It is primarily intended for annotating protein-coding genes in a new species using known genes from other species. Sequence alignment, Protein sequence analysis Sequence sites, features and motifs, Sequence analysis Up-to-date https://github.com/lh3/miniprot Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniprot https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniprot 0.13 miniprot 0.13 Sequence alignment, Protein sequence analysis Sequence sites, features and motifs, Sequence analysis 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 30 842 True False True +mitos mitos, mitos2 de-novo annotation of metazoan mitochondrial genomes mitos mitos MITOS De novo metazoan mitochondrial genome annotation. Genome annotation Zoology, Whole genome sequencing To update http://mitos.bioinf.uni-leipzig.de/ Sequence Analysis mitos iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitos 1.1.7 mitos 2.1.9 Genome annotation Zoology, Whole genome sequencing 1 1 2 0 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 236 100920 True False True +mlst mlst, mlst_list Scan contig files against PubMLST typing schemes mlst mlst MLST Multi Locus Sequence Typing from an assembled genome or from a set of reads. Multilocus sequence typing Immunoproteins and antigens To update https://github.com/tseemann/mlst Sequence Analysis mlst iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mlst https://github.com/galaxyproject/tools-iuc/tree/main/tools/mlst 2.22.0 mlst 2.23.0 Multilocus sequence typing Immunoproteins and antigens 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 635 9304 True False True +mob_suite mob_recon, mob_typer MOB-suite is a set of software tools for clustering, reconstruction and typing of plasmids from draft assemblies To update https://github.com/phac-nml/mob-suite Sequence Analysis mob_suite nml https://github.com/phac-nml/mob-suite https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob_suite 3.0.3 mob_suite 3.1.9 0 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 322 89021 True False True +mothur mothur_align_check, mothur_align_seqs, mothur_amova, mothur_anosim, mothur_bin_seqs, mothur_biom_info, mothur_chimera_bellerophon, mothur_chimera_ccode, mothur_chimera_check, mothur_chimera_perseus, mothur_chimera_pintail, mothur_chimera_slayer, mothur_chimera_uchime, mothur_chimera_vsearch, mothur_chop_seqs, mothur_classify_otu, mothur_classify_seqs, mothur_classify_tree, mothur_clearcut, mothur_cluster_classic, mothur_cluster_fragments, mothur_cluster_split, mothur_cluster, mothur_collect_shared, mothur_collect_single, mothur_consensus_seqs, mothur_cooccurrence, mothur_corr_axes, mothur_count_groups, mothur_count_seqs, mothur_create_database, mothur_degap_seqs, mothur_deunique_seqs, mothur_deunique_tree, mothur_dist_seqs, mothur_dist_shared, mothur_fastq_info, mothur_filter_seqs, mothur_filter_shared, mothur_get_communitytype, mothur_get_coremicrobiome, mothur_get_dists, mothur_get_group, mothur_get_groups, mothur_get_label, mothur_get_lineage, mothur_get_mimarkspackage, mothur_get_otulabels, mothur_get_otulist, mothur_get_oturep, mothur_get_otus, mothur_get_rabund, mothur_get_relabund, mothur_get_sabund, mothur_get_seqs, mothur_get_sharedseqs, mothur_heatmap_bin, mothur_heatmap_sim, mothur_homova, mothur_indicator, mothur_lefse, mothur_libshuff, mothur_list_otulabels, mothur_list_seqs, mothur_make_biom, mothur_make_contigs, mothur_make_design, mothur_make_fastq, mothur_make_group, mothur_make_lefse, mothur_make_lookup, mothur_make_shared, mothur_make_sra, mothur_mantel, mothur_merge_count, mothur_merge_files, mothur_merge_groups, mothur_merge_sfffiles, mothur_merge_taxsummary, mothur_metastats, mothur_mimarks_attributes, mothur_nmds, mothur_normalize_shared, mothur_otu_association, mothur_otu_hierarchy, mothur_pairwise_seqs, mothur_parse_list, mothur_parsimony, mothur_pca, mothur_pcoa, mothur_pcr_seqs, mothur_phylo_diversity, mothur_phylotype, mothur_pre_cluster, mothur_primer_design, mothur_rarefaction_shared, mothur_rarefaction_single, mothur_remove_dists, mothur_remove_groups, mothur_remove_lineage, mothur_remove_otulabels, mothur_remove_otus, mothur_remove_rare, mothur_remove_seqs, mothur_rename_seqs, mothur_reverse_seqs, mothur_screen_seqs, mothur_sens_spec, mothur_seq_error, mothur_sffinfo, mothur_shhh_flows, mothur_shhh_seqs, mothur_sort_seqs, mothur_split_abund, mothur_split_groups, mothur_sub_sample, mothur_summary_qual, mothur_summary_seqs, mothur_summary_shared, mothur_summary_single, mothur_summary_tax, mothur_taxonomy_to_krona, mothur_tree_shared, mothur_trim_flows, mothur_trim_seqs, mothur_unifrac_unweighted, mothur_unifrac_weighted, mothur_unique_seqs, mothur_venn Mothur wrappers mothur mothur mothur Open-source, platform-independent, community-supported software for describing and comparing microbial communities DNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysis Microbial ecology, Taxonomy, Sequence analysis, Phylogeny To update https://www.mothur.org Metagenomics mothur iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur https://github.com/galaxyproject/tools-iuc/tree/main/tools/mothur 1.0 mothur 1.48.0 DNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysis Microbial ecology, Taxonomy, Sequence analysis, Phylogeny 129 129 129 129 129 129 129 129 0 3 0 0 0 0 0 0 0 0 0 0 128 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 129 0 14353 302916 True False True +mrbayes mrbayes A program for the Bayesian estimation of phylogeny. To update Sequence Analysis mrbayes nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/mrbayes 1.0.2 mrbayes 3.2.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +msconvert msconvert msconvert Convert and/or filter mass spectrometry files (including vendor formats) using the official Docker container msconvert msconvert msConvert msConvert is a command-line utility for converting between various mass spectrometry data formats, including from raw data from several commercial companies (with vendor libraries, Windows-only). For Windows users, there is also a GUI, msConvertGUI. Filtering, Formatting Proteomics, Proteomics experiment To update http://proteowizard.sourceforge.net/tools.shtml Proteomics msconvert galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert 3.0.20287 Filtering, Formatting Proteomics, Proteomics experiment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 189 19958 True False True +msstatstmt msstatstmt MSstatsTMT protein significance analysis in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labeling To update http://msstats.org/msstatstmt/ Proteomics msstatstmt galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt 2.0.0 bioconductor-msstatstmt 2.10.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 71 726 True False True +multigsea multigsea GSEA-based pathway enrichment analysis for multi-omics data multiGSEA multiGSEA multiGSEA A GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration. Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules Up-to-date https://bioconductor.org/packages/devel/bioc/html/multiGSEA.html Transcriptomics, Proteomics, Statistics multigsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea 1.12.0 bioconductor-multigsea 1.12.0 Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 53 True False True +multiqc multiqc MultiQC aggregates results from bioinformatics analyses across many samples into a single report multiqc multiqc MultiQC MultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. Validation, Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics To update http://multiqc.info/ Fastq Manipulation, Statistics, Visualization multiqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc 1.11 multiqc 1.24.1 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 8320 162790 True False True +mykrobe mykrobe_predict Antibiotic resistance predictions Mykrobe Mykrobe Mykrobe Antibiotic resistance prediction for Mycobacterium tuberculosis from genome sequence data with Mykrobe.Antibiotic resistance prediction in minutes.Table of Contents generated with DocToc.AMR prediction (Mykrobe predictor).Before attempting to install with bioconda, please ensure you have your channels set up as specified in the documentation. If you don't, you may run into issues with an older version of mykrobe being installed Antimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimming Whole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, Metagenomics To update https://github.com/Mykrobe-tools/mykrobe Sequence Analysis mykrobe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mykrobe https://github.com/galaxyproject/tools-iuc/tree/main/tools/mykrobe 0.10.0 mykrobe 0.13.0 Antimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimming Whole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, Metagenomics 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +mykrobe_parser mykrobe_parseR RScript to parse the results of mykrobe predictor. To update https://github.com/phac-nml/mykrobe-parser Sequence Analysis mykrobe_parser nml https://github.com/phac-nml/mykrobe-parser https://github.com/phac-nml/galaxy_tools/tree/master/tools/mykrobe_parser 0.1.4.1 r-base 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +mz_to_sqlite mz_to_sqlite Creates a SQLite database for proteomics data mztosqlite mztosqlite mzToSQLite Convert proteomics data files into a SQLite database Conversion, Peptide database search Proteomics, Biological databases To update https://github.com/galaxyproteomics/mzToSQLite Proteomics mz_to_sqlite galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite 2.1.1+galaxy0 mztosqlite 2.1.1 Conversion, Peptide database search Proteomics, Biological databases 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 33 844 True False True +nanocompore nanocompore_db, nanocompore_sampcomp Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro. Nanocompore Nanocompore Nanocompore RNA modifications detection by comparative Nanopore direct RNA sequencing.RNA modifications detection from Nanopore dRNA-Seq data.Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples.Analyses performed for the nanocompore paper.Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro Post-translation modification site prediction, PolyA signal detection, Genotyping, k-mer counting Functional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sites To update https://nanocompore.rna.rocks/ Sequence Analysis nanocompore iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanocompore https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanocompore 1.0.0rc3.post2 nanocompore 1.0.4 PolyA signal detection, Genotyping, k-mer counting Functional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sites 0 1 2 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 3 836 True False True +nanoplot nanoplot Plotting tool for long read sequencing data and alignments nanoplot nanoplot NanoPlot NanoPlot is a tool with various visualizations of sequencing data in bam, cram, fastq, fasta or platform-specific TSV summaries, mainly intended for long-read sequencing from Oxford Nanopore Technologies and Pacific Biosciences Scatter plot plotting, Box-Whisker plot plotting Genomics Up-to-date https://github.com/wdecoster/NanoPlot Visualization nanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanoplot/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanoplot 1.43.0 nanoplot 1.43.0 Scatter plot plotting, Box-Whisker plot plotting Genomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 2195 63235 True False True +nanopolishcomp nanopolishcomp_eventaligncollapse, nanopolishcomp_freqmethcalculate NanopolishComp contains 2 modules. Eventalign_collapse collapses the raw file generated by nanopolish eventalign by kmers rather than by event. Freq_meth_calculate methylation frequency at genomic CpG sites from the output of nanopolish call-methylation. nanopolishcomp nanopolishcomp NanopolishComp NanopolishComp is a Python3 package for downstream analyses of Nanopolish output files.It is a companion package for Nanopolish. Methylation analysis, Collapsing methods Sequence analysis, Sequencing, Genetic variation To update https://a-slide.github.io/NanopolishComp Sequence Analysis nanopolishcomp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanopolishcomp https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanopolishcomp 0.6.11 nanopolishcomp 0.6.12 Methylation analysis, Collapsing methods Sequence analysis, Sequencing, Genetic variation 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 15 1074 True False True +ncbi_blast_plus blastxml_to_tabular, get_species_taxids, ncbi_blastdbcmd_info, ncbi_blastdbcmd_wrapper, ncbi_blastn_wrapper, ncbi_blastp_wrapper, ncbi_blastx_wrapper, ncbi_convert2blastmask_wrapper, ncbi_deltablast_wrapper, ncbi_dustmasker_wrapper, ncbi_makeblastdb, ncbi_makeprofiledb, ncbi_psiblast_wrapper, ncbi_rpsblast_wrapper, ncbi_rpstblastn_wrapper, ncbi_segmasker_wrapper, ncbi_tblastn_wrapper, ncbi_tblastx_wrapper NCBI BLAST+ To update https://blast.ncbi.nlm.nih.gov/ Sequence Analysis ncbi_blast_plus devteam https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus 2.14.1 python 16 16 16 16 16 16 16 16 0 15 0 0 15 0 0 0 0 0 0 0 16 15 16 0 0 0 0 0 0 16 0 0 0 0 16 0 0 16 15 0 4066 365597 True False True +ncbi_fcs_gx ncbi_fcs_gx FCS-GX detects contamination from foreign organisms in genome sequences using the genome cross-species aligner (GX). ncbi_fcs ncbi_fcs NCBI fcs The NCBI Foreign Contamination Screen (FCS) is a tool suite for identifying and removing contaminant sequences in genome assemblies. Contaminants are defined as sequences in a dataset that do not originate from the biological source organism and can arise from a variety of environmental and laboratory sources. FCS will help you remove contaminants from genomes before submission to GenBank. Sequence assembly validation, Sequence trimming, Sequence contamination filtering Sequence analysis, Sequence assembly Up-to-date https://github.com/ncbi/fcs-gx Sequence Analysis ncbi_fcs_gx iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx 0.5.4 ncbi-fcs-gx 0.5.4 Sequence assembly validation, Sequence trimming, Sequence contamination filtering Sequence analysis, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +newick_utils newick_display Perform operations on Newick trees newick_utilities newick_utilities Newick Utilities The Newick Utilities are a set of command-line tools for processing phylogenetic trees. They can process arbitrarily large amounts of data and do not require user interaction, which makes them suitable for automating phylogeny processing tasks. Phylogenetic tree generation, Phylogenetic tree analysis, Phylogenetic tree reconstruction Phylogeny, Genomics, Computer science To update http://cegg.unige.ch/newick_utils Visualization, Metagenomics newick_utils iuc https://github.com/tjunier/newick_utils https://github.com/galaxyproject/tools-iuc/tree/main/tools/newick_utils 1.6+galaxy1 newick_utils 1.6 Phylogeny, Genomics, Computer science 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 448 25505 True False True +nextclade nextalign, nextclade Identify differences between your sequences and a reference sequence used by Nextstrain nextclade nextclade Nextclade Nextclade is an open-source project for viral genome alignment, mutation calling, clade assignment, quality checks and phylogenetic placement. Methylation analysis, Variant calling Genomics, Sequence analysis, Cladistics To update https://github.com/nextstrain/nextclade Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nextclade https://github.com/galaxyproject/tools-iuc/tree/main/tools/nextclade 2.7.0 nextalign 2.14.0 Methylation analysis, Variant calling Genomics, Cladistics 1 1 2 2 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 2 0 0 210 4080 True False True +nextdenovo nextdenovo String graph-based de novo assembler for long reads nextdenovo nextdenovo NextDenovo "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a ""correct-then-assemble"" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages." De-novo assembly, Genome assembly Sequencing, Sequence assembly To update https://github.com/Nextomics/NextDenovo Assembly nextdenovo bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo 2.5.0 nextdenovo 2.5.2 De-novo assembly, Genome assembly Sequencing, Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 268 True False True +nonpareil nonpareil Estimate average coverage in metagenomic datasets nonpareil nonpareil nonpareil Estimate metagenomic coverage and sequence diversity Operation To update http://nonpareil.readthedocs.io Metagenomics nonpareil iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nonpareil https://github.com/galaxyproject/tools-iuc/tree/main/tools/nonpareil 3.1.1 nonpareil 3.5.5 Operation 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 142 True False True +nucleosome_prediction Nucleosome Prediction of Nucleosomes Positions on the Genome nucleosome_prediction nucleosome_prediction nucleosome_prediction Prediction of Nucleosomes Positions on the Genome Prediction and recognition, Nucleosome position prediction, Sequence analysis Structural genomics, Nucleic acid sites, features and motifs Up-to-date https://genie.weizmann.ac.il/software/nucleo_exe.html Sequence Analysis nucleosome_prediction bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction https://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction 3.0 nucleosome_prediction 3.0 Prediction and recognition, Nucleosome position prediction, Sequence analysis Structural genomics, Nucleic acid sites, features and motifs 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 861 True False True +nugen_nudup nugen_nudup Marks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products. nudup nudup NuDup Marks/removes duplicate molecules based on the molecular tagging technology used in Tecan products. Duplication detection Sequencing Up-to-date https://github.com/tecangenomics/nudup SAM, Metagenomics, Sequence Analysis, Transcriptomics nugen_nudup iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup https://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup 2.3.3 nudup 2.3.3 Duplication detection Sequencing 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +obisindicators obisindicators, obis_data Compute biodiveristy indicators for marine data from obis To update https://github.com/Marie59/obisindicators Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators 0.0.2 r-base 1 0 2 1 1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 45 True False True +obitools obi_illumina_pairend, obi_ngsfilter, obi_annotate, obi_clean, obi_convert, obi_grep, obi_sort, obi_stat, obi_tab, obi_uniq OBITools is a set of programs developed to simplify the manipulation of sequence files obitools obitools OBITools Set of python programs developed to simplify the manipulation of sequence files. They were mainly designed to help us for analyzing Next Generation Sequencer outputs (454 or Illumina) in the context of DNA Metabarcoding. Sequence analysis, Sequence analysis Sequence analysis, DNA, Sequencing Up-to-date http://metabarcoding.org/obitools Sequence Analysis obitools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools https://github.com/galaxyproject/tools-iuc/tree/main/tools/obitools 1.2.13 obitools 1.2.13 Sequence analysis, Sequence analysis Sequence analysis, DNA, Sequencing 0 10 10 10 0 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 503 26251 True False True +omark omark Proteome quality assessment software omark omark OMArk Proteome quality assessment software Sequence assembly validation, Differential protein expression profiling Proteomics, Sequence analysis, Statistics and probability To update https://github.com/DessimozLab/OMArk Sequence Analysis omark iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/omark/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/omark 0.3.0 Sequence assembly validation, Differential protein expression profiling Proteomics, Sequence analysis, Statistics and probability 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +orfipy orfipy Galaxy wrapper for ORFIPY orfipy orfipy orfipy A fast and flexible tool for extracting ORFs.orfipy is a tool written in python/cython to extract ORFs in extremely an fast and flexible manner. Other popular ORF searching tools are OrfM and getorf. Compared to OrfM and getorf, orfipy provides the most options to fine tune ORF searches. orfipy uses multiple CPU cores and is particularly faster for data containing multiple smaller fasta sequences such as de-novo transcriptome assemblies. Please read the preprint here. Coding region prediction, Database search, Transcriptome assembly, De-novo assembly Computer science, RNA-Seq, Transcriptomics, Small molecules Up-to-date https://github.com/urmi-21/orfipy Sequence Analysis orfipy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/orfipy https://github.com/galaxyproject/tools-iuc/tree/main/tools/orfipy 0.0.4 orfipy 0.0.4 Coding region prediction, Database search, Transcriptome assembly, De-novo assembly Computer science, RNA-Seq, Transcriptomics, Small molecules 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 53 774 True False True +orthofinder orthofinder_onlygroups Accurate inference of orthologous gene groups made easy OrthoFinder OrthoFinder OrthoFinder OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics. It finds orthogroups and orthologs, infers rooted gene trees for all orthogroups and identifies all of the gene duplcation events in those gene trees. It also infers a rooted species tree for the species being analysed and maps the gene duplication events from the gene trees to branches in the species tree. OrthoFinder also provides comprehensive statistics for comparative genomic analyses. Genome comparison, Phylogenetic tree generation (from molecular sequences), Phylogenetic tree analysis, Genome alignment Phylogenetics, Phylogenomics, Bioinformatics, Comparative genomics, Sequence analysis Up-to-date https://github.com/davidemms/OrthoFinder Phylogenetics, Sequence Analysis orthofinder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/orthofinder https://github.com/galaxyproject/tools-iuc/tree/main/tools/orthofinder 2.5.5 orthofinder 2.5.5 Genome comparison, Genome alignment Phylogenetics, Phylogenomics, Bioinformatics, Comparative genomics 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 239 1333 True False True +peptideshaker fasta_cli, ident_params, peptide_shaker, search_gui PeptideShaker and SearchGUI To update http://compomics.github.io Proteomics peptideshaker galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker searchgui 4.3.9 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 0 485 17477 True False True +pfamscan pfamscan Search a FASTA sequence against a library of Pfam HMM. pfamscan pfamscan PfamScan This tool is used to search a FASTA sequence against a library of Pfam HMM. Protein sequence analysis Sequence analysis Up-to-date http://ftp.ebi.ac.uk/pub/databases/Pfam/Tools/ Sequence Analysis pfamscan bgruening https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan 1.6 pfam_scan 1.6 Protein sequence analysis Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 19 165 True False True +pharokka pharokka rapid standardised annotation tool for bacteriophage genomes and metagenomes pharokka pharokka Pharokka Pharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes. Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA To update https://github.com/gbouras13/pharokka Genome annotation pharokka iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka 1.3.2 " + pharokka + " Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 74 2565 True False True +phyloseq phyloseq_from_biom, phyloseq_from_dada2, phyloseq_plot_ordination, phyloseq_plot_richness Handling and analysis of high-throughput microbiome census data phyloseq phyloseq phyloseq Provides a set of classes and tools to facilitate the import, storage, analysis, and graphical display of microbiome census data. Deposition, Analysis, Visualisation Microbiology, Sequence analysis, Metagenomics Up-to-date https://www.bioconductor.org/packages/release/bioc/html/phyloseq.html Metagenomics phyloseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyloseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/phyloseq 1.46.0 bioconductor-phyloseq 1.46.0 Deposition, Analysis, Visualisation Microbiology, Sequence analysis, Metagenomics 0 1 4 4 0 1 4 4 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 82 812 True False True +phyml phyml PhyML is a phylogeny software based on the maximum-likelihood principle. phyml phyml PhyML Phylogenetic estimation software using Maximum Likelihood Phylogenetic tree generation (maximum likelihood and Bayesian methods) Phylogenetics, Bioinformatics, Phylogenetics Up-to-date http://www.atgc-montpellier.fr/phyml/ Phylogenetics phyml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml https://github.com/galaxyproject/tools-iuc/tree/main/tools/phyml 3.3.20220408 phyml 3.3.20220408 Phylogenetics, Bioinformatics, Phylogenetics 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 104 1770 True False True +picrust picrust_categorize, picrust_compare_biom, picrust_format_tree_and_trait_table, picrust_metagenome_contributions, picrust_normalize_by_copy_number, picrust_predict_metagenomes PICRUSt wrappers picrust picrust PICRUSt PICRUSt (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a bioinformatics software package designed to predict metagenome functional content from marker gene (e.g., 16S rRNA) surveys and full genomes. Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcoding Metagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencing To update https://picrust.github.io/picrust/ Metagenomics picrust iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/picrust https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust 1.1.1 picrust 1.1.4 Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcoding Metagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencing 0 6 5 6 0 6 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 45 1095 True False True +picrust2 picrust2_add_descriptions, picrust2_hsp, picrust2_metagenome_pipeline, picrust2_pathway_pipeline, picrust2_pipeline, picrust2_place_seqs, picrust2_shuffle_predictions PICRUSt2: Phylogenetic Investigation of Communities by Reconstruction of Unobserved States picrust2 picrust2 PICRUSt2 PICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences. Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysis Metagenomics, Microbiology, Phylogenetics, Metagenomic sequencing Up-to-date https://github.com/picrust/picrust2/wiki Metagenomics picrust2 iuc https://github.com/picrust/picrust2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust2 2.5.3 picrust2 2.5.3 Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysis Metagenomics, Microbiology, Phylogenetics, Metagenomic sequencing 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 88 1000 True False True +plasflow PlasFlow PlasFlow - Prediction of plasmid sequences in metagenomic contigs. plasflow plasflow PlasFlow PlasFlow is a set of scripts used for prediction of plasmid sequences in metagenomic contigs. Sequence analysis Metagenomics Up-to-date https://github.com/smaegol/PlasFlow Sequence Analysis plasflow iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow https://github.com/galaxyproject/tools-iuc/tree/main/tools/plasflow 1.1.0 plasflow 1.1.0 Sequence analysis Metagenomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 278 22589 True False True +plasmidfinder plasmidfinder """PlasmidFinder provides the detection of replicons in the WGSand assigns the plasmids under study to lineages that trace backthe information to the existing knowledge on Inc groups and suggestspossible reference plasmids for each lineage""" PlasmidFinder PlasmidFinder PlasmidFinder PlasmidFinder is a tool for the identification and typing of Plasmid Replicons in Whole-Genome Sequencing (WGS). Genome assembly, Scaffolding, Multilocus sequence typing Whole genome sequencing, Sequence assembly, Mapping, Probes and primers Up-to-date https://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/ Sequence Analysis plasmidfinder iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder https://github.com/galaxyproject/tools-iuc/tree/main/tools/plasmidfinder 2.1.6 plasmidfinder 2.1.6 Genome assembly, Scaffolding, Multilocus sequence typing Whole genome sequencing, Sequence assembly, Mapping, Probes and primers 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 22 True False True +plasmidspades plasmidspades Genome assembler for assemblying plasmid To update Assembly plasmidspades nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades 1.1 spades 4.0.0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +polypolish polypolish """Polypolish is a tool for polishing genome assemblies with short reads.Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location).This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix.""" Polypolish Polypolish Polypolish Polypolish is a tool for polishing genome assemblies with short reads. Unlike other tools in this category, Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location). This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix. Genome assembly, Read mapping, Mapping assembly, Sequencing error detection Sequence assembly, Sequence composition, complexity and repeats, Mapping To update https://github.com/rrwick/Polypolish Sequence Analysis polypolish iuc https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish https://github.com/galaxyproject/tools-iuc/tree/main/tools/polypolish 0.5.0 polypolish 0.6.0 Genome assembly, Read mapping, Mapping assembly, Sequencing error detection Sequence assembly, Sequence composition, complexity and repeats, Mapping 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 24 239 True False True +prodigal prodigal A protein-coding gene prediction software tool for bacterial and archaeal genomes prodigal prodigal Prodigal Fast, reliable protein-coding gene prediction for prokaryotic genomes. Genome annotation Genomics, Sequence analysis Up-to-date https://github.com/hyattpd/Prodigal Genome annotation prodigal iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal 2.6.3 prodigal 2.6.3 Genome annotation Genomics, Sequence analysis 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +prokka prokka Rapid annotation of prokaryotic genomes prokka prokka Prokka Software tool to annotate bacterial, archaeal and viral genomes quickly and produce standards-compliant output files. Gene prediction, Coding region prediction, Genome annotation Genomics, Model organisms, Virology Up-to-date http://github.com/tseemann/prokka Sequence Analysis prokka crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/prokka/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/prokka 1.14.6 prokka 1.14.6 Coding region prediction, Genome annotation Genomics, Model organisms, Virology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 3233 371445 True False True +promer promer4_substitutions Aligns two sets of contigs and reports amino acid substitutions between them To update https://github.com/phac-nml/promer Assembly promer nml https://github.com/phac-nml/promer https://github.com/phac-nml/galaxy_tools/tree/master/tools/promer 1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +proteinortho proteinortho, proteinortho_grab_proteins, proteinortho_summary Proteinortho is a tool to detect orthologous proteins/genes within different species. proteinortho proteinortho Proteinortho Proteinortho is a tool to detect orthologous genes within different species Sequence clustering, Sequence analysis Comparative genomics To update https://gitlab.com/paulklemm_PHD/proteinortho Proteomics proteinortho iuc https://gitlab.com/paulklemm_PHD/proteinortho https://github.com/galaxyproject/tools-iuc/tree/main/tools/proteinortho 6.3.1 proteinortho 6.3.2 Sequence clustering, Sequence analysis Comparative genomics 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 200 3320 True False True +pycoqc pycoqc QC metrics for ONT Basecalling pycoqc pycoqc pycoQC PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing Up-to-date https://github.com/tleonardi/pycoQC Nanopore pycoqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc 2.5.2 pycoqc 2.5.2 Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 350 21123 True False True +pygenometracks pygenomeTracks pyGenomeTracks: Standalone program and library to plot beautiful genome browser tracks. pygenometracks pygenometracks pyGenomeTracks reproducible plots for multivariate genomic data sets.Standalone program and library to plot beautiful genome browser tracks.pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. Currently, it is possible to plot:. Visualisation, Formatting Model organisms, Imaging, Workflows To update https://github.com/deeptools/pyGenomeTracks Visualization pygenometracks iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pygenometracks https://github.com/galaxyproject/tools-iuc/tree/main/tools/pygenometracks 3.8 pygenometracks 3.9 Visualisation, Formatting Model organisms, Imaging, Workflows 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 377 11332 True False True +qiime_add_on qiime_collapse_samples, qiime_make_otu_table QIIME to perform microbial community analysis qiime_add_on qiime_add_on, qiime_core qiime_add_on QIIME 2 is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed. Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics To update http://www.qiime.org Metagenomics qiime iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_add_on qiime 1.9.1 Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 68 1909 True False True +qiime_core qiime_align_seqs, qiime_alpha_diversity, qiime_alpha_rarefaction, qiime_assign_taxonomy, qiime_beta_diversity, qiime_beta_diversity_through_plots, qiime_compare_categories, qiime_core_diversity, qiime_count_seqs, qiime_extract_barcodes, qiime_filter_alignment, qiime_filter_fasta, qiime_filter_otus_from_otu_table, qiime_filter_samples_from_otu_table, qiime_filter_taxa_from_otu_table, qiime_jackknifed_beta_diversity, qiime_make_emperor, qiime_make_otu_heatmap, qiime_make_phylogeny, qiime_multiple_join_paired_ends, qiime_multiple_split_libraries_fastq, qiime_pick_closed_reference_otus, qiime_pick_open_reference_otus, qiime_pick_otus, qiime_pick_rep_set, qiime_plot_taxa_summary, qiime_split_libraries, qiime_split_libraries_fastq, qiime_summarize_taxa, qiime_summarize_taxa_through_plots, qiime_upgma_cluster, qiime_validate_mapping_file QIIME to perform microbial community analysis qiime_core qiime_core qiime_core QIIME 2™ is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed. Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics To update http://www.qiime.org Metagenomics qiime iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_core qiime 1.9.1 Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics 0 0 32 32 0 0 32 32 0 0 0 0 0 0 0 0 0 0 0 0 31 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 31 0 1155 28681 True False True +qualimap qualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseq Qualimap 2 is a platform-independent application written in Java andR that facilitates the quality control of alignment sequencing data and itsderivatives like feature counts. qualimap qualimap QualiMap Platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data. Sequencing quality control Data quality management Up-to-date http://qualimap.bioinfo.cipf.es/ Sequence Analysis, Transcriptomics, SAM qualimap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap https://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap 2.3 qualimap 2.3 Sequencing quality control Data quality management 4 4 4 1 4 4 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 4 4 0 1328 664470 True False True +quast quast Quast (Quality ASsessment Tool) evaluates genome assemblies. quast quast QUAST QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports. Visualisation, Sequence assembly validation Sequence assembly Up-to-date http://quast.bioinf.spbau.ru/ Assembly quast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast https://github.com/galaxyproject/tools-iuc/tree/main/tools/quast 5.2.0 quast 5.2.0 Visualisation, Sequence assembly validation Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 3567 51567 True False True +quickmerge quickmerge Merge long-read and hybrid assemblies to increase contiguity quickmerge quickmerge quickmerge Quickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads. Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype Up-to-date https://github.com/mahulchak/quickmerge Assembly quickmerge galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge https://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge 0.3 quickmerge 0.3 Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 True False True +rRNA meta_rna Identification of ribosomal RNA genes in metagenomic fragments. To update http://weizhong-lab.ucsd.edu/meta_rna/ RNA rrna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rRNA https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rRNA 0.1 hmmsearch3.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +racon racon Consensus module for raw de novo DNA assembly of long uncorrected reads. Racon Racon Racon Consensus module for raw de novo DNA assembly of long uncorrected readsRacon is intended as a standalone consensus module to correct raw contigs generated by rapid assembly methods which do not include a consensus step. The goal of Racon is to generate genomic consensus which is of similar or better quality compared to the output generated by assembly methods which employ both error correction and consensus steps, while providing a speedup of several times compared to those methods. It supports data produced by both Pacific Biosciences and Oxford Nanopore Technologies. Genome assembly, Mapping assembly Whole genome sequencing, Sequence assembly Up-to-date https://github.com/isovic/racon Sequence Analysis racon bgruening https://github.com/bgruening/galaxytools/tree/master/tools/racon https://github.com/bgruening/galaxytools/tree/master/tools/racon 1.5.0 racon 1.5.0 Genome assembly, Mapping assembly Whole genome sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 309 21353 True False True +rasusa rasusa Randomly subsample sequencing reads to a specified coverage rasusa rasusa rasusa Produces an unbiased subsample of your reads To update https://github.com/mbhall88/rasusa Sequence Analysis rasusa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rasusa https://github.com/galaxyproject/tools-iuc/tree/main/tools/rasusa 2.0.0 rasusa 2.1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +raxml raxml RAxML - A Maximum Likelihood based phylogenetic inference raxml raxml RAxML A tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies. Sequence analysis, Phylogenetic tree analysis Phylogenetics, Sequence analysis To update http://www.exelixis-lab.org/web/software/raxml/ Phylogenetics raxml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raxml https://github.com/galaxyproject/tools-iuc/tree/main/tools/raxml 8.2.12 raxml 8.2.13 Sequence analysis Phylogenetics 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 383 6808 True False True +read_it_and_keep read_it_and_keep Rapid decontamination of SARS-CoV-2 sequencing reads read_it_and_keep read_it_and_keep read_it_and_keep Read contamination removal Filtering, Genome alignment Pathology, Genomics To update https://github.com/GenomePathogenAnalysisService/read-it-and-keep Sequence Analysis read_it_and_keep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/read-it-and-keep https://github.com/galaxyproject/tools-iuc/tree/main/tools/read_it_and_keep 0.2.2 read-it-and-keep 0.3.0 Filtering, Genome alignment Pathology, Genomics 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 71 3370 True False True +reago reago Reago is tool to assembly 16S ribosomal RNA recovery from metagenomic data. reago reago REAGO This is an assembly tool for 16S ribosomal RNA recovery from metagenomic data. Sequence assembly Sequence assembly, RNA, Metagenomics, Microbiology Up-to-date https://github.com/chengyuan/reago-1.1 Metagenomics, RNA reago rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago 1.1 reago 1.1 Sequence assembly Sequence assembly, RNA, Metagenomics, Microbiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +recentrifuge recentrifuge """With Recentrifuge, researchers can analyze results from taxonomic classifiers using interactive charts with emphasis on the confidence level of the classifications.In addition to contamination-subtracted samples.Recentrifuge provides shared and exclusive taxa per sample,thus enabling robust contamination removal and comparative analysis in environmental and clinical metagenomics.""" Recentrifuge Recentrifuge Recentrifuge Robust comparative analysis and contamination removal for metagenomics. Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic sequencing Up-to-date https://github.com/khyox/recentrifuge Metagenomics recentrifuge iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/recentrifuge https://github.com/galaxyproject/tools-iuc/tree/main/tools/recentrifuge 1.14.1 recentrifuge 1.14.1 Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 48 331 True False True +repeatexplorer2 repeatexplorer_clustering Tool for annotation of repeats from unassembled shotgun reads. To update https://github.com/repeatexplorer/repex_tarean Genome annotation repeatexplorer2 gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 2.3.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 True False True +roary roary Roary the pangenome pipeline roary roary Roary A high speed stand alone pan genome pipeline, which takes annotated assemblies in GFF3 format (produced by Prokka (Seemann, 2014)) and calculates the pan genome. Genome assembly DNA, Genomics, Mapping Up-to-date https://sanger-pathogens.github.io/Roary/ Sequence Analysis roary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary https://github.com/galaxyproject/tools-iuc/tree/main/tools/roary 3.13.0 roary 3.13.0 Genome assembly DNA, Genomics, Mapping 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 656 12225 True False True +rseqc rseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tin an RNA-seq quality control package rseqc rseqc RSeQC Provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. Data handling Sequencing Up-to-date https://code.google.com/p/rseqc/ Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualization rseqc nilesh https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc 5.0.3 rseqc 5.0.3 Data handling Sequencing 22 22 22 22 22 22 22 22 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 22 22 0 3206 133498 True False True +salmon alevin, salmon, salmonquantmerge Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data. salmon salmon Salmon A tool for transcript expression quantification from RNA-seq data Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Gene expression, Transcriptomics To update https://github.com/COMBINE-lab/salmon Sequence Analysis, RNA, Transcriptomics bgruening https://github.com/bgruening/galaxytools/tree/master/tools/salmon https://github.com/bgruening/galaxytools/tree/master/tools/salmon 1.10.1 salmon 1.10.3 Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Transcriptomics 2 2 3 1 2 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 1 0 0 0 2 0 0 0 0 0 0 0 3 3 0 969 61937 True False True +sarscov2formatter sarscov2formatter sarscov2formatter custom script Up-to-date https://github.com/nickeener/sarscov2formatter Sequence Analysis sarscov2formatter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2formatter https://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2formatter 1.0 sarscov2formatter 1.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 173 True False True +sarscov2summary sarscov2summary sarscov2summary custom script To update https://github.com/nickeener/sarscov2summary Sequence Analysis sarscov2summary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2summary https://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2summary 0.1 sarscov2summary 0.5 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 140 True False True +scoary scoary Scoary calculates the assocations between all genes in the accessory genome and the traits. scoary scoary Scoary Pan-genome wide association studies and is designed to take the gene_presence_absence.csv file from Roary as well as a traits file created by the user and calculate the assocations between all genes in the accessory genome (all genes that are present in i genomes where 1 < i < N) and the traits. It reports a list of genes sorted by strength of association per trait. Analysis Genotype and phenotype, Model organisms, GWAS study, Functional genomics Up-to-date https://github.com/AdmiralenOla/Scoary Metagenomics scoary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scoary https://github.com/galaxyproject/tools-iuc/tree/main/tools/scoary 1.6.16 scoary 1.6.16 Analysis Genotype and phenotype, Model organisms, GWAS study, Functional genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 61 676 True False True +semibin semibin_bin, semibin_concatenate_fasta, semibin_generate_cannot_links, semibin_generate_sequence_features, semibin, semibin_train SemiBin: Semi-supervised Metagenomic Binning Using Siamese Neural Networks semibin semibin SemiBin Command tool for metagenomic binning with semi-supervised deep learning using information from reference genomes. Sequence assembly, Read binning Metagenomics, Machine learning, Microbial ecology, Sequence assembly To update https://semibin.readthedocs.io/en/latest/ Metagenomics semibin iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/semibin https://github.com/galaxyproject/tools-iuc/tree/main/tools/semibin 2.0.2 semibin 2.1.0 Sequence assembly, Read binning Metagenomics, Machine learning, Microbial ecology, Sequence assembly 0 0 6 1 0 0 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 39 542 True False True +seqkit seqkit_fx2tab, seqkit_locate, seqkit_sort, seqkit_stats, seqkit_translate A cross-platform and ultrafast toolkit for FASTA/Q file manipulation seqkit seqkit seqkit FASTA and FASTQ are basic and ubiquitous formats for storing nucleotide and protein sequences. Common manipulations of FASTA/Q file include converting, searching, filtering, deduplication, splitting, shuffling, and sampling. Existing tools only implement some of these manipulations, and not particularly efficiently, and some are only available for certain operating systems. Furthermore, the complicated installation process of required packages and running environments can render these programs less user friendly. SeqKit demonstrates competitive performance in execution time and memory usage compared to similar tools. The efficiency and usability of SeqKit enable researchers to rapidly accomplish common FASTA/Q file manipulations. DNA transcription, Sequence trimming, DNA translation, Sequence conversion Database management, Sequence analysis Up-to-date https://bioinf.shenwei.me/seqkit/ Sequence Analysis seqkit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqkit 2.8.2 seqkit 2.8.2 DNA transcription, Sequence trimming, DNA translation Database management, Sequence analysis 0 2 5 2 0 2 5 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 129 1964 True False True +seqprep seqprep Tool for merging paired-end Illumina reads and trimming adapters. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers Up-to-date https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis seqprep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprep https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep 1.3.2 seqprep 1.3.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +seqsero2 seqsero2 Salmonella serotype prediction from genome sequencing data seqsero2 seqsero2 SeqSero2 "rapid and improved Salmonella serotype determination using whole genome sequencing data | SeqSero-Salmonella Serotyping by Whole Genome Sequencing | Salmonella Serotyping by Whole Genome Sequencing | Online version: http://www.denglab.info/SeqSero2 | Salmonella serotype prediction from genome sequencing data | Citation: SeqSero, Zhang et al. 2015; SeqSero2, Zhang et al. 2019 | Salmonella serotype derterminants databases | Upon executing the command, a directory named 'SeqSero_result_Time_your_run' will be created. Your result will be stored in 'SeqSero_result.txt' in that directory. And the assembled alleles can also be found in the directory if using ""-m a"" (allele mode)" Genome indexing, Antimicrobial resistance prediction, Genome alignment Whole genome sequencing, Sequence assembly, Genomics Up-to-date https://github.com/denglab/SeqSero2 Sequence Analysis seqsero2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqsero2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqsero2 1.3.1 seqsero2 1.3.1 Genome indexing, Antimicrobial resistance prediction, Genome alignment Whole genome sequencing, Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 True False True +shorah shorah_amplicon Reconstruct haplotypes using ShoRAH in amplicon mode shorah shorah ShoRAH Inference of a population from a set of short reads. The package contains programs that support mapping of reads to a reference genome, correcting sequencing errors by locally clustering reads in small windows of the alignment, reconstructing a minimal set of global haplotypes that explain the reads, and estimating the frequencies of the inferred haplotypes. Haplotype mapping, Variant calling Metagenomics, Sequencing, Genetics To update https://github.com/cbg-ethz/shorah/blob/master/README.md Sequence Analysis shorah_amplicon iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shorah https://github.com/galaxyproject/tools-iuc/tree/main/tools/shorah 1.1.3 shorah 1.99.2 Haplotype mapping, Variant calling Metagenomics, Sequencing, Genetics 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +shovill shovill Faster de novo assembly pipeline based around Spades shovill shovill shovill Shovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too. Genome assembly Genomics, Microbiology, Sequence assembly Up-to-date https://github.com/tseemann/shovill Assembly shovill iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill https://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill 1.1.0 shovill 1.1.0 Genome assembly Genomics, Microbiology, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1008 41600 True False True +sistr_cmd sistr_cmd SISTR in silico serotyping tool To update https://github.com/phac-nml/sistr_cmd Sequence Analysis sistr_cmd nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/sistr_cmd 1.1.1 sistr_cmd 1.1.2 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 133 2489 True False True +smallgenomeutilities smgu_frameshift_deletions_checks Set of utilities for manipulating small viral genome data. v-pipe v-pipe V-pipe Bioinformatics pipeline for the analysis of next-generation sequencing data derived from intra-host viral populations. Read pre-processing, Sequence alignment, Genetic variation analysis Genomics, Population genetics, Workflows, Virology, Sequencing Up-to-date https://github.com/cbg-ethz/smallgenomeutilities Sequence Analysis smallgenomeutilities iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/smallgenomeutilities https://github.com/galaxyproject/tools-iuc/tree/main/tools/smallgenomeutilities 0.4.1 smallgenomeutilities 0.4.1 Read pre-processing, Sequence alignment, Genetic variation analysis Genomics, Population genetics, Workflows, Virology, Sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 121 True False True +smalt smalt SMALT aligns DNA sequencing reads with a reference genome. Up-to-date http://www.sanger.ac.uk/science/tools/smalt-0 Sequence Analysis smalt nml https://sourceforge.net/projects/smalt/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/smalt 0.7.6 smalt 0.7.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +snap snap, snap_training SNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes. snap snap SNAP The Semi-HMM-based Nucleic Acid Parser is a gene prediction tool. Gene prediction DNA, DNA polymorphism, Genetics Up-to-date https://github.com/KorfLab/SNAP Sequence Analysis snap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snap https://github.com/galaxyproject/tools-iuc/tree/main/tools/snap 2013_11_29 snap 2013_11_29 Gene prediction DNA polymorphism, Genetics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 133 1349 True False True +snippy snippy_core, snippy, snippy_clean_full_aln Contains the snippy tool for characterising microbial snps snippy snippy snippy Rapid haploid variant calling and core SNP phylogeny generation. Phylogenetic tree visualisation, Phylogenetic tree generation, Variant calling Genomics, Model organisms, DNA polymorphism, Phylogenetics To update https://github.com/tseemann/snippy Sequence Analysis snippy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snippy https://github.com/galaxyproject/tools-iuc/tree/main/tools/snippy snippy 4.6.0 Phylogenetic tree visualisation, Variant calling Genomics, Model organisms, DNA polymorphism, Phylogenetics 3 3 3 3 3 3 3 3 0 0 0 0 2 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 1372 105708 True False True +sonneityping sonneityping Scripts for parsing Mykrobe predict results for Shigella sonnei. sonneityping sonneityping sonneityping Scripts for parsing Mykrobe predict results for Shigella sonnei. Antimicrobial resistance prediction, Variant calling, Genotyping Whole genome sequencing, Genotype and phenotype, Genetic variation, Metagenomics Up-to-date https://github.com/katholt/sonneityping Sequence Analysis sonneityping iuc https://github.com/katholt/sonneityping https://github.com/galaxyproject/tools-iuc/tree/main/tools/sonneityping 20210201 sonneityping 20210201 Antimicrobial resistance prediction, Variant calling, Genotyping Whole genome sequencing, Genotype and phenotype, Genetic variation, Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 True False True +sortmerna bg_sortmerna SortMeRNA is a software designed to rapidly filter ribosomal RNA fragments from metatransriptomic data produced by next-generation sequencers. sortmerna sortmerna SortMeRNA Sequence analysis tool for filtering, mapping and OTU-picking NGS reads. Sequence similarity search, Sequence comparison, Sequence alignment analysis Metatranscriptomics, Metagenomics To update http://bioinfo.lifl.fr/RNA/sortmerna/ RNA sortmerna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna 4.3.6 sortmerna 4.3.7 Sequence similarity search, Sequence alignment analysis Metatranscriptomics, Metagenomics 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 376 18183 True False True +spades spades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spades SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction. spades coronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spades SPAdes St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads. Genome assembly Sequence assembly To update https://github.com/ablab/spades Assembly, RNA, Metagenomics spades iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades https://github.com/galaxyproject/tools-iuc/tree/main/tools/spades 3.15.5 spades 4.0.0 Genome assembly Sequence assembly 9 9 9 9 9 9 9 9 0 0 0 0 1 0 0 0 0 0 0 0 1 3 8 0 0 2 0 0 0 3 0 0 0 0 0 0 0 9 3 0 3547 72953 True False True +spotyping spotyping SpoTyping allows fast and accurate in silico Mycobacterium spoligotyping from sequence reads spotyping spotyping SpoTyping Fast and accurate in silico Mycobacterium spoligotyping from sequence reads. Variant pattern analysis Microbiology, Sequencing, Sequence composition, complexity and repeats, Genetic variation Up-to-date https://github.com/xiaeryu/SpoTyping-v2.0 Sequence Analysis spotyping iuc https://github.com/xiaeryu/SpoTyping-v2.0/tree/master/SpoTyping-v2.0-commandLine https://github.com/galaxyproject/tools-iuc/tree/main/tools/spotyping 2.1 spotyping 2.1 Variant pattern analysis Microbiology, Sequencing, Sequence composition, complexity and repeats, Genetic variation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 1278 True False True +sr_bowtie bowtieForSmallRNA bowtie wrapper tool to align small RNA sequencing reads To update http://artbio.fr RNA, Next Gen Mappers sr_bowtie artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie https://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie 2.3.0 bowtie 1.3.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False True +srst2 srst2 Short Read Sequence Typing for Bacterial Pathogens To update Sequence Analysis srst2 nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/srst2 0.3.7 srst2 0.2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 205 True False True +srst2 srst2 SRST2 Short Read Sequence Typing for Bacterial Pathogens srst2 srst2 srst2 Short Read Sequence Typing for Bacterial Pathogens Multilocus sequence typing Whole genome sequencing, Public health and epidemiology To update http://katholt.github.io/srst2/ Metagenomics srst2 iuc https://github.com/katholt/srst2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/srst2 0.2.0 samtools 1.20 Multilocus sequence typing Whole genome sequencing, Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 205 True False True +staramr staramr_search Scan genome contigs against the ResFinder, PlasmidFinder, and PointFinder antimicrobial resistance databases. Up-to-date https://github.com/phac-nml/staramr Sequence Analysis staramr nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr https://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr 0.10.0 staramr 0.10.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 889 12673 True False True +stringmlst stringmlst Rapid and accurate identification of the sequence type (ST) To update Sequence Analysis stringmlst nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/stringmlst 1.1.0 stringMLST 0.6.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +structure structure for using multi-locus genotype data to investigate population structure. structure structure Structure The program structureis a free software package for using multi-locus genotype data to investigate population structure. Its uses include inferring the presence of distinct populations, assigning individuals to populations, studying hybrid zones, identifying migrants and admixed individuals, and estimating population allele frequencies in situations where many individuals are migrants or admixed. Genetic variation analysis Population genetics Up-to-date https://web.stanford.edu/group/pritchardlab/structure.html Phylogenetics, Variant Analysis structure iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/structure https://github.com/galaxyproject/tools-iuc/tree/main/tools/structure 2.3.4 structure 2.3.4 Genetic variation analysis Population genetics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 59 2623 True False True +suite_qiime2__alignment qiime2__alignment__mafft, qiime2__alignment__mafft_add, qiime2__alignment__mask To update https://github.com/qiime2/q2-alignment Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 6 13 True False True +suite_qiime2__composition qiime2__composition__add_pseudocount, qiime2__composition__ancom, qiime2__composition__ancombc, qiime2__composition__da_barplot, qiime2__composition__tabulate To update https://github.com/qiime2/q2-composition Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition 2024.5.0+q2galaxy.2024.5.0 4 4 4 2 4 4 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 2 5 True False True +suite_qiime2__cutadapt qiime2__cutadapt__demux_paired, qiime2__cutadapt__demux_single, qiime2__cutadapt__trim_paired, qiime2__cutadapt__trim_single To update https://github.com/qiime2/q2-cutadapt Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 5 67 True False True +suite_qiime2__dada2 qiime2__dada2__denoise_ccs, qiime2__dada2__denoise_paired, qiime2__dada2__denoise_pyro, qiime2__dada2__denoise_single To update http://benjjneb.github.io/dada2/ Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 31 202 True False True +suite_qiime2__deblur qiime2__deblur__denoise_16S, qiime2__deblur__denoise_other, qiime2__deblur__visualize_stats To update https://github.com/biocore/deblur Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 9 73 True False True +suite_qiime2__demux qiime2__demux__emp_paired, qiime2__demux__emp_single, qiime2__demux__filter_samples, qiime2__demux__partition_samples_paired, qiime2__demux__partition_samples_single, qiime2__demux__subsample_paired, qiime2__demux__subsample_single, qiime2__demux__summarize, qiime2__demux__tabulate_read_counts To update https://github.com/qiime2/q2-demux Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux 2024.5.0+q2galaxy.2024.5.0 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 26 114 True False True +suite_qiime2__diversity qiime2__diversity__adonis, qiime2__diversity__alpha, qiime2__diversity__alpha_correlation, qiime2__diversity__alpha_group_significance, qiime2__diversity__alpha_phylogenetic, qiime2__diversity__alpha_rarefaction, qiime2__diversity__beta, qiime2__diversity__beta_correlation, qiime2__diversity__beta_group_significance, qiime2__diversity__beta_phylogenetic, qiime2__diversity__beta_rarefaction, qiime2__diversity__bioenv, qiime2__diversity__core_metrics, qiime2__diversity__core_metrics_phylogenetic, qiime2__diversity__filter_alpha_diversity, qiime2__diversity__filter_distance_matrix, qiime2__diversity__mantel, qiime2__diversity__partial_procrustes, qiime2__diversity__pcoa, qiime2__diversity__pcoa_biplot, qiime2__diversity__procrustes_analysis, qiime2__diversity__tsne, qiime2__diversity__umap To update https://github.com/qiime2/q2-diversity Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity 2024.5.0+q2galaxy.2024.5.0 21 21 21 21 21 21 21 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 43 168 True False True +suite_qiime2__diversity_lib qiime2__diversity_lib__alpha_passthrough, qiime2__diversity_lib__beta_passthrough, qiime2__diversity_lib__beta_phylogenetic_meta_passthrough, qiime2__diversity_lib__beta_phylogenetic_passthrough, qiime2__diversity_lib__bray_curtis, qiime2__diversity_lib__faith_pd, qiime2__diversity_lib__jaccard, qiime2__diversity_lib__observed_features, qiime2__diversity_lib__pielou_evenness, qiime2__diversity_lib__shannon_entropy, qiime2__diversity_lib__unweighted_unifrac, qiime2__diversity_lib__weighted_unifrac To update https://github.com/qiime2/q2-diversity-lib Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib 2024.5.0+q2galaxy.2024.5.0 12 12 12 12 12 12 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 4 4 True False True +suite_qiime2__emperor qiime2__emperor__biplot, qiime2__emperor__plot, qiime2__emperor__procrustes_plot To update http://emperor.microbio.me Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 2 6 True False True +suite_qiime2__feature_classifier qiime2__feature_classifier__blast, qiime2__feature_classifier__classify_consensus_blast, qiime2__feature_classifier__classify_consensus_vsearch, qiime2__feature_classifier__classify_hybrid_vsearch_sklearn, qiime2__feature_classifier__classify_sklearn, qiime2__feature_classifier__extract_reads, qiime2__feature_classifier__find_consensus_annotation, qiime2__feature_classifier__fit_classifier_naive_bayes, qiime2__feature_classifier__fit_classifier_sklearn, qiime2__feature_classifier__makeblastdb, qiime2__feature_classifier__vsearch_global To update https://github.com/qiime2/q2-feature-classifier Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier 2024.5.0+q2galaxy.2024.5.0 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 48 263 True False True +suite_qiime2__feature_table qiime2__feature_table__core_features, qiime2__feature_table__filter_features, qiime2__feature_table__filter_features_conditionally, qiime2__feature_table__filter_samples, qiime2__feature_table__filter_seqs, qiime2__feature_table__group, qiime2__feature_table__heatmap, qiime2__feature_table__merge, qiime2__feature_table__merge_seqs, qiime2__feature_table__merge_taxa, qiime2__feature_table__presence_absence, qiime2__feature_table__rarefy, qiime2__feature_table__relative_frequency, qiime2__feature_table__rename_ids, qiime2__feature_table__split, qiime2__feature_table__subsample_ids, qiime2__feature_table__summarize, qiime2__feature_table__summarize_plus, qiime2__feature_table__tabulate_feature_frequencies, qiime2__feature_table__tabulate_sample_frequencies, qiime2__feature_table__tabulate_seqs, qiime2__feature_table__transpose To update https://github.com/qiime2/q2-feature-table Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table 2024.5.0+q2galaxy.2024.5.0 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 59 213 True False True +suite_qiime2__fragment_insertion qiime2__fragment_insertion__classify_otus_experimental, qiime2__fragment_insertion__filter_features, qiime2__fragment_insertion__sepp To update https://github.com/qiime2/q2-fragment-insertion Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 6 20 True False True +suite_qiime2__longitudinal qiime2__longitudinal__anova, qiime2__longitudinal__feature_volatility, qiime2__longitudinal__first_differences, qiime2__longitudinal__first_distances, qiime2__longitudinal__linear_mixed_effects, qiime2__longitudinal__maturity_index, qiime2__longitudinal__nmit, qiime2__longitudinal__pairwise_differences, qiime2__longitudinal__pairwise_distances, qiime2__longitudinal__plot_feature_volatility, qiime2__longitudinal__volatility To update https://github.com/qiime2/q2-longitudinal Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal 2024.5.0+q2galaxy.2024.5.0 11 11 11 11 11 11 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 6 14 True False True +suite_qiime2__metadata qiime2__metadata__distance_matrix, qiime2__metadata__merge, qiime2__metadata__shuffle_groups, qiime2__metadata__tabulate To update https://github.com/qiime2/q2-metadata Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 40 232 True False True +suite_qiime2__phylogeny qiime2__phylogeny__align_to_tree_mafft_fasttree, qiime2__phylogeny__align_to_tree_mafft_iqtree, qiime2__phylogeny__align_to_tree_mafft_raxml, qiime2__phylogeny__fasttree, qiime2__phylogeny__filter_table, qiime2__phylogeny__filter_tree, qiime2__phylogeny__iqtree, qiime2__phylogeny__iqtree_ultrafast_bootstrap, qiime2__phylogeny__midpoint_root, qiime2__phylogeny__raxml, qiime2__phylogeny__raxml_rapid_bootstrap, qiime2__phylogeny__robinson_foulds To update https://github.com/qiime2/q2-phylogeny Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny 2024.5.0+q2galaxy.2024.5.0 12 12 12 12 12 12 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 12 37 True False True +suite_qiime2__quality_control qiime2__quality_control__bowtie2_build, qiime2__quality_control__decontam_identify, qiime2__quality_control__decontam_identify_batches, qiime2__quality_control__decontam_remove, qiime2__quality_control__decontam_score_viz, qiime2__quality_control__evaluate_composition, qiime2__quality_control__evaluate_seqs, qiime2__quality_control__evaluate_taxonomy, qiime2__quality_control__exclude_seqs, qiime2__quality_control__filter_reads To update https://github.com/qiime2/q2-quality-control Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control 2024.5.0+q2galaxy.2024.5.0 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 True False True +suite_qiime2__quality_filter qiime2__quality_filter__q_score To update https://github.com/qiime2/q2-quality-filter Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter 2024.5.0+q2galaxy.2024.5.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 13 True False True +suite_qiime2__rescript qiime2__rescript__cull_seqs, qiime2__rescript__degap_seqs, qiime2__rescript__dereplicate, qiime2__rescript__edit_taxonomy, qiime2__rescript__evaluate_classifications, qiime2__rescript__evaluate_cross_validate, qiime2__rescript__evaluate_fit_classifier, qiime2__rescript__evaluate_seqs, qiime2__rescript__evaluate_taxonomy, qiime2__rescript__extract_seq_segments, qiime2__rescript__filter_seqs_length, qiime2__rescript__filter_seqs_length_by_taxon, qiime2__rescript__filter_taxa, qiime2__rescript__get_gtdb_data, qiime2__rescript__get_ncbi_data, qiime2__rescript__get_ncbi_data_protein, qiime2__rescript__get_ncbi_genomes, qiime2__rescript__get_silva_data, qiime2__rescript__get_unite_data, qiime2__rescript__merge_taxa, qiime2__rescript__orient_seqs, qiime2__rescript__parse_silva_taxonomy, qiime2__rescript__reverse_transcribe, qiime2__rescript__subsample_fasta, qiime2__rescript__trim_alignment To update https://github.com/nbokulich/RESCRIPt Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript 2024.5.0+q2galaxy.2024.5.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +suite_qiime2__sample_classifier qiime2__sample_classifier__classify_samples, qiime2__sample_classifier__classify_samples_from_dist, qiime2__sample_classifier__classify_samples_ncv, qiime2__sample_classifier__confusion_matrix, qiime2__sample_classifier__fit_classifier, qiime2__sample_classifier__fit_regressor, qiime2__sample_classifier__heatmap, qiime2__sample_classifier__metatable, qiime2__sample_classifier__predict_classification, qiime2__sample_classifier__predict_regression, qiime2__sample_classifier__regress_samples, qiime2__sample_classifier__regress_samples_ncv, qiime2__sample_classifier__scatterplot, qiime2__sample_classifier__split_table, qiime2__sample_classifier__summarize To update https://github.com/qiime2/q2-sample-classifier Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier 2024.5.0+q2galaxy.2024.5.0 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 1 1 True False True +suite_qiime2__taxa qiime2__taxa__barplot, qiime2__taxa__collapse, qiime2__taxa__filter_seqs, qiime2__taxa__filter_table To update https://github.com/qiime2/q2-taxa Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 22 172 True False True +suite_qiime2__vsearch qiime2__vsearch__cluster_features_closed_reference, qiime2__vsearch__cluster_features_de_novo, qiime2__vsearch__cluster_features_open_reference, qiime2__vsearch__dereplicate_sequences, qiime2__vsearch__fastq_stats, qiime2__vsearch__merge_pairs, qiime2__vsearch__uchime_denovo, qiime2__vsearch__uchime_ref To update https://github.com/qiime2/q2-vsearch Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch 2024.5.0+q2galaxy.2024.5.0 8 8 8 7 8 8 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 8 16 True False True +suite_qiime2_core To update Statistics, Metagenomics, Sequence Analysis q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tool_collections/suite_qiime2_core 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +suite_qiime2_core__tools qiime2_core__tools__export, qiime2_core__tools__import, qiime2_core__tools__import_fastq To update https://qiime2.org Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools 2024.5.0+dist.he540b0b0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 124 7087 True False True +t2ps Draw_phylogram Draw phylogeny t2ps t2ps Draw phylogeny """Given taxonomy representation (produced by *Fetch taxonomic representation* tool) this utility produces a graphical representations of phylogenetic tree in PDF format."" - Galaxy tool wrapper" Phylogenetic tree visualisation Phylogenomics To update https://bitbucket.org/natefoo/taxonomy Metagenomics t2ps devteam https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps 1.0.0 taxonomy 0.10.0 Phylogenetic tree visualisation Phylogenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 31 457 True False True +t2t_report t2t_report Summarize taxonomy To update https://bitbucket.org/natefoo/taxonomy Metagenomics t2t_report devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/t2t_report https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2t_report 1.0.0 taxonomy 0.10.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 26 947 True False True +t_coffee t_coffee T-Coffee To update http://www.tcoffee.org/ Sequence Analysis t_coffee earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee https://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee 13.45.0.4846264 t-coffee 13.46.0.919e8c6b 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 70 8690 True False True +taxonomy_krona_chart taxonomy_krona_chart Krona pie chart from taxonomic profile krona krona Krona Krona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome). Visualisation Metagenomics To update http://sourceforge.net/projects/krona/ Assembly taxonomy_krona_chart crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart 2.7.1+galaxy0 krona 2.8.1 Visualisation Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1801 27426 True False True +tb-profiler tb_profiler_profile Processes M. tuberculosis sequence data to infer strain type and identify known drug resistance markers. tb-profiler tb-profiler tb-profiler A tool for drug resistance prediction from _M. tuberculosis_ genomic data (sequencing reads, alignments or variants). Antimicrobial resistance prediction To update https://github.com/jodyphelan/TBProfiler Sequence Analysis tbprofiler iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/tb-profiler https://github.com/galaxyproject/tools-iuc/tree/main/tools/tb-profiler 6.2.1 tb-profiler 6.3.0 Antimicrobial resistance prediction 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 198 5161 True False True +tooldistillator tooldistillator, tooldistillator_summarize ToolDistillator extract and aggregate information from different tool outputs to JSON parsable files tooldistillator tooldistillator ToolDistillator ToolDistillator is a tool to extract information from output files of specific tools, expose it as JSON files, and aggregate over several tools.It can produce both a single file to each tool or a summarized file from a set of reports. Data handling, Parsing Microbiology, Bioinformatics, Sequence analysis Up-to-date https://gitlab.com/ifb-elixirfr/abromics/tooldistillator Sequence Analysis tooldistillator iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tooldistillator https://github.com/galaxyproject/tools-iuc/tree/main/tools/tooldistillator 0.9 tooldistillator 0.9 Parsing Microbiology, Bioinformatics, Sequence analysis 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +transit gff_to_prot, transit_gumbel, transit_hmm, transit_resampling, transit_tn5gaps TRANSIT transit transit TRANSIT A tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions. Transposon prediction DNA, Sequencing, Mobile genetic elements To update https://github.com/mad-lab/transit/ Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit 3.0.2 transit 3.2.3 Transposon prediction DNA, Sequencing, Mobile genetic elements 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 84 907 True False True +transtermhp transtermhp Finds rho-independent transcription terminators in bacterial genomes transtermhp transtermhp TransTermHP TransTermHP finds rho-independent transcription terminators in bacterial genomes. Each terminator found by the program is assigned a confidence value that estimates its probability of being a true terminator Transcriptional regulatory element prediction Transcription factors and regulatory sites To update https://transterm.cbcb.umd.edu Sequence Analysis transtermhp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transtermhp https://github.com/galaxyproject/tools-iuc/tree/main/tools/transtermhp transtermhp 2.09 Transcriptional regulatory element prediction Transcription factors and regulatory sites 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 229 True False True +trim_galore trim_galore Trim Galore adaptive quality and adapter trimmer trim_galore trim_galore Trim Galore A wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries. Sequence trimming, Primer removal, Read pre-processing Sequence analysis To update http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/ Sequence Analysis, Fastq Manipulation trim_galore bgruening https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore 0.6.7 trim-galore 0.6.10 Sequence trimming, Primer removal, Read pre-processing Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2334 238699 True False True +trycycler trycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsample Trycycler toolkit wrappers Up-to-date https://github.com/rrwick/Trycycler Assembly trycycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler 0.5.5 trycycler 0.5.5 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 147 8942 True False True +unicycler unicycler Unicycler is a hybrid assembly pipeline for bacterial genomes. unicycler unicycler Unicycler A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads. Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly Up-to-date https://github.com/rrwick/Unicycler Assembly unicycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler 0.5.1 unicycler 0.5.1 Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1558 65732 True False True +unipept unipept Unipept retrieves metaproteomics information unipept unipept Unipept Metaproteomics data analysis with a focus on interactive data visualizations. Prediction and recognition, Visualisation Proteomics, Proteogenomics, Biodiversity, Workflows To update https://github.com/galaxyproteomics/tools-galaxyp Proteomics unipept galaxyp https://unipept.ugent.be/apidocs https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/unipept 4.5.1 python Prediction and recognition, Visualisation Proteomics, Proteogenomics, Biodiversity, Workflows 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 115 5005 True False True +uniprotxml_downloader uniprotxml_downloader Download UniProt proteome in XML or fasta format To update Proteomics uniprotxml_downloader galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader 2.4.0 requests 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 79 1360 True False True +usher usher_matutils, usher UShER toolkit wrappers usher usher usher The UShER toolkit includes a set of tools for for rapid, accurate placement of samples to existing phylogenies. While not restricted to SARS-CoV-2 phylogenetic analyses, it has enabled real-time phylogenetic analyses and genomic contact tracing in that its placement is orders of magnitude faster and more memory-efficient than previous methods. Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Phylogeny, Evolutionary biology, Cladistics, Genotype and phenotype, Phylogenomics To update https://github.com/yatisht/usher Phylogenetics usher iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/usher https://github.com/galaxyproject/tools-iuc/tree/main/tools/usher 0.2.1 usher 0.6.3 Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Cladistics, Genotype and phenotype, Phylogenomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 1060 True False True +valet valet A pipeline for detecting mis-assemblies in metagenomic assemblies. valet valet VALET VALET is a pipeline for detecting mis-assemblies in metagenomic assemblies. Sequence assembly, Sequence assembly visualisation Metagenomics, Sequence assembly To update https://github.com/marbl/VALET Metagenomics valet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/valet https://github.com/galaxyproject/tools-iuc/tree/main/tools/valet valet 1.0 Sequence assembly, Sequence assembly visualisation Metagenomics, Sequence assembly 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 637 True False True +vapor vapor Classify Influenza samples from raw short read sequence data vapor vapor VAPOR VAPOR is a tool for classification of Influenza samples from raw short read sequence data for downstream bioinformatics analysis. VAPOR is provided with a fasta file of full-length sequences (> 20,000) for a given segment, a set of reads, and attempts to retrieve a reference that is closest to the sample strain. Data retrieval, De-novo assembly, Read mapping Whole genome sequencing, Mapping, Sequence assembly Up-to-date https://github.com/connor-lab/vapor Sequence Analysis vapor iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vapor https://github.com/galaxyproject/tools-iuc/tree/main/tools/vapor 1.0.2 vapor 1.0.2 Data retrieval, De-novo assembly, Read mapping Whole genome sequencing, Mapping, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 94 3164 True False True +varvamp varvamp Variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses varvamp varvamp varVAMP variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses. The input is an alignment of your viral (full-genome) sequences. PCR primer design Virology, Probes and primers Up-to-date https://github.com/jonas-fuchs/varVAMP/ Sequence Analysis varvamp iuc https://github.com/jonas-fuchs/varVAMP https://github.com/galaxyproject/tools-iuc/tree/main/tools/varvamp 1.2.0 varvamp 1.2.0 PCR primer design Virology, Probes and primers 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +vegan vegan_diversity, vegan_fisher_alpha, vegan_rarefaction an R package fo community ecologist vegan vegan vegan Ordination methods, diversity analysis and other functions for community and vegetation ecologists Standardisation and normalisation, Analysis Ecology, Phylogenetics, Environmental science To update https://cran.r-project.org/package=vegan Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vegan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/vegan 2.4-3 r-vegan 2.3_4 Standardisation and normalisation, Analysis Ecology, Phylogenetics, Environmental science 3 0 3 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 74 2020 True False True +velvet velvetg, velveth de novo genomic assembler specially designed for short read sequencing technologies velvet velvet Velvet A de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD. Formatting, De-novo assembly Sequence assembly To update https://www.ebi.ac.uk/~zerbino/velvet/ Assembly velvet devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet velvet 1.2.10 Formatting, De-novo assembly Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2083 25420 True False True +velvet_optimiser velvetoptimiser Automatically optimize Velvet assemblies velvetoptimiser velvetoptimiser VelvetOptimiser This tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly. Optimisation and refinement, Sequence assembly Genomics, Sequence assembly To update Assembly velvetoptimiser simon-gladman https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser 2.2.6+galaxy2 velvet 1.2.10 Optimisation and refinement, Sequence assembly Genomics, Sequence assembly 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 4741 True False True +virAnnot virannot_blast2tsv, virannot_otu, virAnnot_rps2tsv virAnnot wrappers virannot virannot virAnnot "VirAnnot was build to ease the assembly, blast search, taxonomic annotation and OTUs assignation of viral metagenomic HTS data. It is used in Virologie team of UMR1332 BFP laboratory at INRAE. VirAnnot also takes part of the Euphresco project ""Plant Health Bioinformatics Network"". See more.It is designed to identify viruses in plant metagenomic data but it can be used to assemble and annotate any sequences with the NCBI taxonomy." Sequence annotation, Sequence clustering, Sequence cluster visualisation Metagenomics, Virology, Microbial ecology To update https://github.com/marieBvr/virAnnot Metagenomics virannot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/virAnnot https://github.com/galaxyproject/tools-iuc/tree/main/tools/virAnnot 1.0.1+galaxy0 biopython 1.70 Sequence annotation, Sequence clustering, Sequence cluster visualisation Metagenomics, Virology, Microbial ecology 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +vsearch vsearch_alignment, vsearch_chimera_detection, vsearch_clustering, vsearch_dereplication, vsearch_masking, vsearch_search, vsearch_shuffling, vsearch_sorting VSEARCH including searching, clustering, chimera detection, dereplication, sorting, masking and shuffling of sequences. vsearch vsearch VSEARCH High-throughput search and clustering sequence analysis tool. It supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering and conversion. DNA mapping, Chimera detection Metagenomics, Sequence analysis To update https://github.com/torognes/vsearch Sequence Analysis vsearch iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch https://github.com/galaxyproject/tools-iuc/tree/main/tools/vsearch 2.8.3 vsearch 2.28.1 DNA mapping, Chimera detection Metagenomics, Sequence analysis 8 8 8 8 8 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 0 0 0 0 0 8 0 0 0 0 0 0 0 8 8 0 182 8507 True False True +wtdbg wtdbg WTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly. wtdbg2 wtdbg2 wtdbg2 Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy. Genome assembly, De-novo assembly Sequence assembly, Sequencing Up-to-date https://github.com/ruanjue/wtdbg2 Assembly wtdbg bgruening https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg 2.5 wtdbg 2.5 Genome assembly, De-novo assembly Sequence assembly, Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 116 1660 True False True diff --git a/communities/microgalaxy/resources/tools_filtered_by_ts_categories.tsv b/communities/microgalaxy/resources/tools_filtered_by_ts_categories.tsv new file mode 100644 index 00000000..cf3a2d59 --- /dev/null +++ b/communities/microgalaxy/resources/tools_filtered_by_ts_categories.tsv @@ -0,0 +1,825 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on APOSTL Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CoralSNP Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no Tools available on Viral Variant Visualizer (VVV) No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +AggregateAlignments graphclust_aggregate_alignments Aggregate and filter alignment metrics of individual clusters, like the output of graphclust_align_cluster. Up-to-date RNA graphclust_aggregate_alignments rnateam https://github.com/bgruening/galaxytools/tools/GraphClust/AggregateAlignments https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/AggregateAlignments 0.6.0 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 116 True False False +AlignCluster graphclust_align_cluster Align predicted clusters of glob_report_no_align step with locarna and conservation analysis and visualizations. To update RNA graphclust_align_cluster rnateam https://github.com/bgruening/galaxytools/tools/GraphClust/AlignCluster https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/AlignCluster 0.1 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 10 3060 True False False +CMFinder cmFinder Determines consensus motives for sequences. To update RNA graphclust_cmfinder rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinder https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CMFinder 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 14 45191 True False False +CollectResults glob_report Post-processing. Redundant clusters are merged and instances that belong to multiple clusters are assigned unambiguously. For every pair of clusters, the relative overlap (i.e. the fraction of instances that occur in both clusters) is computed and clusters are merged if the overlap exceeds 50%. instances that occur in both clusters) is computed and clusters are merged if the overlap exceeds 50%. To update RNA graphclust_postprocessing rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResults https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResults 0.5 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 14 1961 True False False +CollectResultsNoAlign graphclust_glob_report_no_align Redundant GraphClust clusters are merged and instances that belong to multiple clusters are assigned unambiguously. To update RNA graphclust_postprocessing_no_align rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultsNoAlign https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/CollectResultsNoAlign 0.5 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 108 True False False +EMLassemblyline eal_table_template, eal_templates, eml2eal, entities_template, geo_cov_template, makeeml, raster_template, taxo_cov_template, vector_template Tools using EML Assembly Line R package to generate EML metadata from template metadata files and vice versa To update https://github.com/EDIorg/EMLassemblyline Ecology emlassemblyline ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline https://github.com/galaxyecology/tools-ecology/tree/master/tools/EMLassemblyline 0.1.1+galaxy0 r-emlassemblyline 0 0 9 9 0 0 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 102 True False False +Ecoregionalization_workflow ecoregion_brt_analysis, ecoregion_GeoNearestNeighbor, ecoregion_cluster_estimate, ecoregion_clara_cluster, ecoregion_eco_map, ecoregion_taxa_seeker Tools to compute ecoregionalization with BRT model predictions and clustering. To update https://github.com/PaulineSGN/Workflow_Galaxy Ecology ecoregionalization ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow https://github.com/galaxyecology/tools-ecology/tree/master/tools/Ecoregionalization_workflow 0.1.0+galaxy0 r-base 0 0 6 5 0 0 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 82 True False False +GAFA gafa Gene Align and Family Aggregator To update http://aequatus.tgac.ac.uk Visualization gafa earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA/ https://github.com/TGAC/earlham-galaxytools/tree/master/tools/GAFA 0.3.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 45 True False False +GSPAN gspan Second step of GraphClust To update RNA graphclust_fasta_to_gspan rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPAN https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/GSPAN 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 133 True False False +Geom_mean_workflow Map_shp, Mean_geom, bar_plot Tools to compute The evolution of the total volume of very large trees, standing dead wood and dead wood on the ground on an area and the rate of devolution of the volume of wood favorable to biodiversity by large ecological regions (France). To update https://github.com/PaulineSGN/Galaxy_tool_moyenne_geom Ecology Geometric means (Dead wood) ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow https://github.com/galaxyecology/tools-ecology/tree/master/tools/Geom_mean_workflow 0.1.0+galaxy0 r-base 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +LocARNAGraphClust locarna_best_subtree MLocARNA computes a multiple sequence-structure alignment of RNA sequences. To update RNA graphclust_mlocarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClust https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/LocARNAGraphClust 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 45325 True False False +NSPDK NSPDK_candidateClust, nspdk_sparse Produces an explicit sparse feature encoding and copmutes global feature index and returns top dense sets. To update RNA graphclust_nspdk rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/NSPDK https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/NSPDK 9.2.3.1 graphclust-wrappers 0.6.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 28 62388 True False False +PAMPA pampa_communitymetrics, pampa_presabs, pampa_glmcomm, pampa_glmsp, pampa_plotglm Tools to compute and analyse biodiversity metrics To update Ecology pampa ecology https://github.com/ColineRoyaux/PAMPA-Galaxy https://github.com/galaxyecology/tools-ecology/tree/master/tools/PAMPA 0.0.2 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 4 0 73 1004 True False True +Plotting motifFinderPlot Plotting results for GraphClust To update RNA graphclust_motif_finder_plot rnateam https://github.com/eteriSokhoyan/galaxytools/tree/master/tools/GraphClust/Plotting https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Plotting 0.4 seaborn 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 68 True False False +PrepareForMlocarna preMloc This tool prepares files for locarna step. To update RNA graphclust_prepocessing_for_mlocarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarna https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/PrepareForMlocarna 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 1932 True False False +Preprocessing preproc Preprocessing input for GraphClust To update RNA graphclust_preprocessing rnateam https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Preprocessing 0.5 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 1758 True False False +Structure_GSPAN structure_to_gspan Convert RNA structure to GSPAN graphs To update RNA structure_to_gspan rnateam https://github.com/mmiladi/galaxytools/blob/graphclust-gspan/tools/GraphClust/Structure_GSPAN https://github.com/bgruening/galaxytools/tree/master/tools/GraphClust/Structure_GSPAN 0.4 graphclust-wrappers 0.6.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 2925 True False False +ThermoRawFileParser thermo_raw_file_converter Thermo RAW file converter To update https://github.com/compomics/ThermoRawFileParser Proteomics thermo_raw_file_converter galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/ThermoRawFileParser 1.3.4 thermorawfileparser 1.4.4 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 2689 True False False +TreeBest treebest_best TreeBeST best treebest treebest TreeBeST TreeBeST, which stands for (gene) Tree Building guided by Species Tree, is a versatile program that builds, manipulates and displays phylogenetic trees. It is particularly designed for building gene trees with a known species tree and is highly efficient and accurate.TreeBeST is previously known as NJTREE. It has been largely used in the TreeFam database, Ensembl Compara and OPTIC database of Chris Ponting group. Phylogenetic tree visualisation, Phylogenetic analysis, Phylogenetic inference (from molecular sequences) Phylogenetics To update http://treesoft.sourceforge.net/treebest.shtml Phylogenetics treebest_best earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest https://github.com/TGAC/earlham-galaxytools/tree/master/tools/TreeBest 1.9.2.post0 treebest 1.9.2.post1 Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Phylogenetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 984 True False True +TrimNs trimns TrimNs is used to trim and remove fake cut sites from bionano hybrid scaffold data in the VGP pipeline To update https://github.com/VGP/vgp-assembly/tree/master/pipeline/bionano/trimNs Assembly trimns iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trimN https://github.com/galaxyproject/tools-iuc/tree/main/tools/TrimNs 0.1.0 trimns_vgp 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 42 True False False +abacas abacas Order and Orientate Contigs To update https://github.com/phac-nml/abacas Assembly abacas nml https://github.com/phac-nml/abacas https://github.com/phac-nml/galaxy_tools/tree/master/tools/abacas 1.1 mummer 3.23 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +abricate abricate, abricate_list, abricate_summary Mass screening of contigs for antiobiotic resistance genes ABRicate ABRicate ABRicate Mass screening of contigs for antimicrobial resistance or virulence genes. Antimicrobial resistance prediction Genomics, Microbiology Up-to-date https://github.com/tseemann/abricate Sequence Analysis abricate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abricate/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/abricate 1.0.1 abricate 1.0.1 Antimicrobial resistance prediction Genomics, Microbiology 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 1764 496717 True False True +abritamr abritamr A pipeline for running AMRfinderPlus and collating results into functional classes abritamr abritamr abriTAMR an AMR gene detection pipeline that runs AMRFinderPlus on a single (or list ) of given isolates and collates the results into a table, separating genes identified into functionally relevant groups. Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease To update https://zenodo.org/record/7370628 Sequence Analysis abritamr iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abritamr https://github.com/galaxyproject/tools-iuc/tree/main/tools/abritamr 1.0.14 abritamr 1.0.19 Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +abyss abyss-pe Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler abyss abyss ABySS De novo genome sequence assembler using short reads. Genome assembly, De-novo assembly, Scaffolding Sequence assembly To update http://www.bcgsc.ca/platform/bioinfo/software/abyss Assembly abyss iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/abyss https://github.com/galaxyproject/tools-iuc/tree/main/tools/abyss 2.3.7 abyss 2.3.8 Genome assembly, De-novo assembly, Scaffolding Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 391 4278 True False True +adapter_removal adapter_removal Removes residual adapter sequences from single-end (SE) or paired-end (PE) FASTQ reads. adapterremoval adapterremoval AdapterRemoval AdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. AdapterRemoval can analyze both single end and paired end data, and can be used to merge overlapping paired-ended reads into (longer) consensus sequences. Additionally, AdapterRemoval can construct a consensus adapter sequence for paired-ended reads, if which this information is not available. Sequence trimming, Sequence merging, Primer removal Up-to-date https://github.com/MikkelSchubert/adapterremoval Fasta Manipulation, Sequence Analysis adapter_removal iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/adapter_removal/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/adapter_removal 2.3.4 adapterremoval 2.3.4 Sequence trimming, Sequence merging, Primer removal 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 37 217 True False False +aegean aegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parseval AEGeAn toolkit wrappers gaeval gaeval GAEVAL Gene Annotation EVAluation. Sequence annotation Sequence analysis, Gene structure Up-to-date https://github.com/BrendelGroup/AEGeAn Transcriptomics, Sequence Analysis aegean iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aegean https://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean 0.16.0 aegean 0.16.0 Sequence annotation Sequence analysis, Gene structure 1 4 4 4 1 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 47 168 True False False +aldex2 aldex2 Performs analysis Of differential abundance taking sample variation into account aldex2 aldex2 ALDEx2 A differential abundance analysis for the comparison of two or more conditions. It uses a Dirichlet-multinomial model to infer abundance from counts, that has been optimized for three or more experimental replicates. Infers sampling variation and calculates the expected FDR given the biological and sampling variation using the Wilcox rank test and Welches t-test, or the glm and Kruskal Wallis tests. Reports both P and fdr values calculated by the Benjamini Hochberg correction. Statistical inference Gene expression, Statistics and probability To update https://github.com/ggloor/ALDEx_bioc Metagenomics aldex2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aldex2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/aldex2 1.26.0 bioconductor-aldex2 1.34.0 Statistical inference Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 13 129 True False True +align_back_trans align_back_trans Thread nucleotides onto a protein alignment (back-translation) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans Fasta Manipulation, Sequence Analysis align_back_trans peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans https://github.com/peterjc/pico_galaxy/tree/master/tools/align_back_trans 0.0.10 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 329 True False False +amplican amplican AmpliCan is an analysis tool for genome editing. amplican amplican amplican It performs alignment of the amplicon reads, normalizes gathered data, calculates multiple statistics (e.g. cut rates, frameshifts) and presents results in form of aggregated reports. Data and statistics can be broken down by experiments, barcodes, user defined groups, guides and amplicons allowing for quick identification of potential problems. Alignment, Standardisation and normalisation PCR experiment, Statistics and probability To update https://github.com/valenlab/amplican Sequence Analysis amplican iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/amplican https://github.com/galaxyproject/tools-iuc/tree/main/tools/amplican 1.14.0 bioconductor-amplican 1.24.0 Alignment, Standardisation and normalisation PCR experiment, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 53 True False True +ampvis2 ampvis2_alpha_diversity, ampvis2_boxplot, ampvis2_core, ampvis2_export_fasta, ampvis2_frequency, ampvis2_heatmap, ampvis2_load, ampvis2_merge_ampvis2, ampvis2_mergereplicates, ampvis2_octave, ampvis2_ordinate, ampvis2_otu_network, ampvis2_rankabundance, ampvis2_rarecurve, ampvis2_setmetadata, ampvis2_subset_samples, ampvis2_subset_taxa, ampvis2_timeseries, ampvis2_venn ampvis2 ampvis ampvis ampvis ampvis2 is an R-package to conveniently visualise and analyse 16S rRNA amplicon data in different ways. Analysis, Visualisation Biodiversity To update https://github.com/MadsAlbertsen/ampvis2/ Metagenomics ampvis2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ampvis2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/ampvis2 2.8.9 Analysis, Visualisation Biodiversity 0 0 19 0 0 0 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 42 267 True False False +amrfinderplus amrfinderplus """AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search ""plus"", stress, heat, and biocide resistance and virulence factors for some organisms." amrfinderplus amrfinderplus AMRFinderPlus "AMRFinderPlus is designed to find acquired antimicrobial resistance genes and point mutations in protein and/or assembled nucleotide sequences.It can also search ""plus"", stress, heat, and biocide resistance and virulence factors for some organisms" Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease Up-to-date https://github.com/ncbi/amr Sequence Analysis AMRFinderPlus iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/amrfinderplus https://github.com/galaxyproject/tools-iuc/tree/main/tools/amrfinderplus 3.12.8 ncbi-amrfinderplus 3.12.8 Antimicrobial resistance prediction Microbiology, Public health and epidemiology, Infectious disease 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 591 True False True +ancombc ancombc Performs analysis of compositions of microbiomes with bias correction. ancombc ancombc ANCOMBC Determine taxa whose absolute abundances, per unit volume, of the ecosystem (e.g. gut) are significantly different with changes in the covariate of interest (e.g. group). The current version of ancombc function implements Analysis of Compositions of Microbiomes with Bias Correction (ANCOM-BC) in cross-sectional data while allowing for covariate adjustment. DNA barcoding Microbial ecology, Metagenomics, Taxonomy To update https://github.com/FrederickHuangLin/ANCOMBC Metagenomics ancombc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ancombc https://github.com/galaxyproject/tools-iuc/tree/main/tools/ancombc 1.4.0 bioconductor-ancombc 2.4.0 DNA barcoding Microbial ecology, Metagenomics, Taxonomy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 7 True False True +anndata anndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loom Import, Export, Inspect and Manipulate Anndata and Loom objects To update https://anndata.readthedocs.io Transcriptomics, Sequence Analysis anndata iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata 0.10.3 anndata 0.6.22.post1 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 625 35620 True False False +annotatemyids annotatemyids annotateMyIDs: get annotation for a set of IDs using the Bioconductor annotation packages annotatemyids annotatemyids annotatemyids This tool can get annotation for a generic set of IDs, using the Bioconductor annotation data packages. Supported organisms are human, mouse, rat, fruit fly and zebrafish. The org.db packages that are used here are primarily based on mapping using Entrez Gene identifiers. More information on the annotation packages can be found at the Bioconductor website, for example, information on the human annotation package (org.Hs.eg.db) can be found here. Annotation Up-to-date https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids Genome annotation annotatemyids iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/annotatemyids https://github.com/galaxyproject/tools-iuc/tree/main/tools/annotatemyids 3.18.0 bioconductor-org.hs.eg.db 3.18.0 Annotation 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1175 25975 True False False +antarna antarna antaRNA uses ant colony optimization to solve the inverse folding problem in RNA research . To update RNA antarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/antarna/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/antarna 1.1 antarna 2.0.1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 52 True False False +antismash antismash Antismash allows the genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters antismash antismash antiSMASH Rapid genome-wide identification, annotation and analysis of secondary metabolite biosynthesis gene clusters in bacterial and fungal genomes. It integrates and cross-links with a large number of in silico secondary metabolite analysis tools that have been published earlier. Sequence clustering, Gene prediction, Differential gene expression analysis Molecular interactions, pathways and networks, Gene and protein families To update https://antismash.secondarymetabolites.org Sequence Analysis antismash bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/antismash https://github.com/bgruening/galaxytools/tree/master/tools/antismash 6.1.1 antismash 7.1.0 Sequence clustering, Gene prediction, Differential gene expression analysis Molecular interactions, pathways and networks, Gene and protein families 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 279 14596 True False True +aquainfra_importer aquainfra_importer A data source tool for downloading datasets via the AquaINFRA Interaction Platform. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/AquaINFRA/tools-ecology/tree/aquainfra_importer https://github.com/galaxyecology/tools-ecology/tree/master/tools/aquainfra_importer 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +aresite2 AREsite2_REST AREsite2 REST Interface To update http://rna.tbi.univie.ac.at/AREsite RNA, Data Source, Sequence Analysis aresite2 rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite2 https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/aresite2 0.1.2 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 65 True False False +argnorm argnorm argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database argnorm argnorm argNorm argNorm is a tool to normalize antibiotic resistance genes (ARGs) by mapping them to the antibiotic resistance ontology (ARO) created by the CARD database.argNorm also enhances antibiotic resistance gene annotations by providing drug categorization of the drugs that antibiotic resistance genes confer resistance to. Gene functional annotation Up-to-date https://github.com/BigDataBiology/argNorm Genome annotation argnorm iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm https://github.com/galaxyproject/tools-iuc/tree/main/tools/argnorm 0.6.0 argnorm 0.6.0 Gene functional annotation 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +arriba arriba, arriba_draw_fusions, arriba_get_filters Arriba detects fusion genes in RNA-Seq data after running RNA-STAR Up-to-date https://github.com/suhrig/arriba Sequence Analysis, Transcriptomics arriba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba https://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba 2.4.0 arriba 2.4.0 3 3 3 0 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 38 3528 True False False +art art_454, art_illumina, art_solid Simulator for Illumina, 454, and SOLiD sequencing data art art ART ART is a set of simulation tools to generate synthetic next-generation sequencing reads. ART simulates sequencing reads by mimicking real sequencing process with empirical error models or quality profiles summarized from large recalibrated sequencing data. ART can also simulate reads using user own read error model or quality profiles. ART supports simulation of single-end, paired-end/mate-pair reads of three major commercial next-generation sequencing platforms. Illuminas Solexa, Roches 454 and Applied Biosystems SOLiD Conversion Bioinformatics To update http://www.niehs.nih.gov/research/resources/software/biostatistics/art/ Sequence Analysis, Data Source art iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/art https://github.com/galaxyproject/tools-iuc/tree/main/tools/art 2014.11.03.0 art 2016.06.05 Conversion Bioinformatics 0 0 3 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +artic artic_guppyplex, artic_minion The artic pipeline is designed to help run the artic bioinformatics protocols;for example the nCoV-2019 novel coronavirus protocol.Features include: read filtering, primer trimming, amplicon coverage normalisation,variant calling and consensus building artic artic ARTIC A bioinformatics pipeline for working with virus sequencing data sequenced with nanopore Sequence alignment Genomics To update https://github.com/artic-network/fieldbioinformatics Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/artic https://github.com/galaxyproject/tools-iuc/tree/main/tools/artic artic 1.2.4 Sequence alignment Genomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 123 8175 True False True +assembly-stats assembly_stats Assembly metric visualisations to facilitate rapid assessment and comparison of assembly quality. Up-to-date https://github.com/rjchallis/assembly-stats Assembly assembly_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/assembly-stats https://github.com/galaxyproject/tools-iuc/tree/main/tools/assembly-stats 17.02 rjchallis-assembly-stats 17.02 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +assemblystats assemblystats Summarise an assembly (e.g. N50 metrics) To update https://github.com/phac-nml/galaxy_tools Assembly assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/assemblystats 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +astral astral Tool for estimating an unrooted species tree given a set of unrooted gene trees Up-to-date https://github.com/smirarab/ASTRAL Phylogenetics astral iuc https://github.com/usegalaxy-be/galaxytools/tree/main/astral https://github.com/galaxyproject/tools-iuc/tree/main/tools/astral 5.7.8 astral-tree 5.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +augustus augustus AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences. To update http://bioinf.uni-greifswald.de/augustus/ Sequence Analysis augustus bgruening https://github.com/bgruening/galaxytools/tree/master/tools/augustus https://github.com/bgruening/galaxytools/tree/master/tools/augustus 3.1.0 augustus 3.5.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 516 8864 True False False +augustus augustus, augustus_training AUGUSTUS is a program that predicts genes in eukaryotic genomic sequences. augustus augustus AUGUSTUS AUGUSTUS is a eukaryotic gene prediction tool. It can integrate evidence, e.g. from RNA-Seq, ESTs, proteomics, but can also predict genes ab initio. The PPX extension to AUGUSTUS can take a protein sequence multiple sequence alignment as input to find new members of the family in a genome. It can be run through a web interface (see https://bio.tools/webaugustus), or downloaded and run locally. Gene prediction, Ab-initio gene prediction, Homology-based gene prediction, Homology-based gene prediction, Operation Gene transcripts, Gene and protein families To update http://bioinf.uni-greifswald.de/augustus/ Sequence Analysis augustus bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/augustus https://github.com/galaxyproject/tools-iuc/tree/main/tools/augustus 3.4.0 augustus 3.5.0 Ab-initio gene prediction, Homology-based gene prediction, Homology-based gene prediction, Operation Gene transcripts, Gene and protein families 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 685 11245 True False False +b2btools b2btools_single_sequence This software suite provides structural predictions for protein sequences made by Bio2Byte group.About Bio2Byte: We investigate how the dynamics, conformational states, and available experimental data of proteins relate to their amino acid sequence.Underlying physical and chemical principles are computationally unraveled through data integration, analysis, and machine learning, so connecting themto biological events and improving our understanding of the way proteins work. b2btools b2btools b2bTools The bio2byte tools server (b2btools) offers the following single protein sequence based predictions:- Backbone and sidechain dynamics (DynaMine)- Helix, sheet, coil and polyproline-II propensity- Early folding propensity (EFoldMine)- Disorder (DisoMine)- Beta-sheet aggregation (Agmata)In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'biophysical limits' of a protein family as defined in the MSA Protein disorder prediction, Protein secondary structure prediction, Protein feature detection To update https://bio2byte.be Computational chemistry, Molecular Dynamics, Proteomics, Sequence Analysis, Synthetic Biology iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/b2tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/b2btools 3.0.5+galaxy0 b2btools 3.0.7 Protein disorder prediction, Protein secondary structure prediction 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 345 True False False +bakta bakta """Bakta is a tool for the rapid & standardized annotation of bacterial genomes and plasmids from both isolates and MAGs.It provides dbxref-rich and sORF-including annotations in machine-readable JSON & bioinformatics standard file formats for automatic downstream analysis.""" bakta bakta Bakta Rapid & standardized annotation of bacterial genomes, MAGs & plasmids Genome annotation Genomics, Data submission, annotation and curation, Sequence analysis To update https://github.com/oschwengers/bakta Sequence Analysis bakta iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/bakta https://github.com/galaxyproject/tools-iuc/tree/main/tools/bakta 1.9.3 bakta 1.9.4 Genome annotation Genomics, Data submission, annotation and curation, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 151 2982 True False True +bam2mappingstats bam2mappingstats Generates mapping stats from a bam file. To update https://github.com/phac-nml/galaxy_tools Assembly bam2mappingstats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/bam2mappingstats 1.1.0 perl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +bamclipper bamclipper Soft-clip gene-specific primers from BAM alignment file based on genomic coordinates of primer pairs in BEDPE format. Up-to-date https://github.com/tommyau/bamclipper Sequence Analysis bamclipper nml https://github.com/tommyau/bamclipper https://github.com/phac-nml/galaxy_tools/tree/master/tools/bamclipper 1.0.0 bamclipper 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +bamhash bamhash Hash BAM and FASTQ files to verify data integrity Up-to-date https://github.com/DecodeGenetics/BamHash Sequence Analysis bamhash bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bamhash https://github.com/bgruening/galaxytools/tree/master/tools/bamhash 1.1 bamhash 1.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 169 True False False +bamparse bamparse Generates hit count lists from bam alignments. To update http://artbio.fr RNA, Transcriptomics bamparse artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse 4.1.1 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +bamtools bamtools Operate on and transform BAM datasets in various ways using bamtools bamtools bamtools BamTools BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files. Data handling, Sequence alignment analysis Sequencing, Data management, Sequence analysis Up-to-date https://github.com/pezmaster31/bamtools Sequence Analysis, SAM bamtools devteam https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools 2.5.2 bamtools 2.5.2 Data handling, Sequence alignment analysis Sequencing, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 208 14021 True False True +bamtools_filter bamFilter Filter BAM datasets on various attributes using bamtools filter bamtools bamtools BamTools BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files. Data handling, Sequence alignment analysis Sequencing, Data management, Sequence analysis Up-to-date https://github.com/pezmaster31/bamtools Sequence Analysis, SAM bamtools_filter devteam https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filter https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_filter 2.5.2 bamtools 2.5.2 Data handling, Sequence alignment analysis Sequencing, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1195 114863 True False False +bamtools_split bamtools_split_mapped, bamtools_split_paired, bamtools_split_ref, bamtools_split_tag Utility for filtering BAM files. It is based on the BAMtools suiteof tools by Derek Barnett. bamtools bamtools BamTools BamTools provides a fast, flexible C++ API & toolkit for reading, writing, and managing BAM files. Data handling, Sequence alignment analysis Sequencing, Data management, Sequence analysis Up-to-date https://github.com/pezmaster31/bamtools Sequence Analysis, SAM iuc https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_split https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/bamtools/bamtools_split 2.5.2 bamtools 2.5.2 Data handling, Sequence alignment analysis Sequencing, Sequence analysis 4 3 4 0 4 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 197 4328 True False False +bamutil bamutil_clip_overlap, bamutil_diff bamUtil is a repository that contains several programs that perform operations on SAM/BAM files. To update https://github.com/statgen/bamUtil Sequence Analysis bamutil iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bamutil https://github.com/galaxyproject/tools-iuc/tree/main/tools/bamutil bamutil 1.0.15 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 39 True False False +bandage bandage_image, bandage_info Bandage - A Bioinformatics Application for Navigating De novo Assembly Graphs Easily bandage bandage Bandage GUI program that allows users to interact with the assembly graphs made by de novo assemblers such as Velvet, SPAdes, MEGAHIT and others. It visualises assembly graphs, with connections, using graph layout algorithms. Sequence assembly visualisation Genomics, Sequence assembly Up-to-date https://github.com/rrwick/Bandage Visualization bandage iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bandage https://github.com/galaxyproject/tools-iuc/tree/main/tools/bandage 2022.09 bandage_ng 2022.09 Sequence assembly visualisation Genomics, Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 2016 44390 True False True +barcode_collapse barcode_collapse Paired End randomer aware duplicate removal algorithm To update https://github.com/YeoLab/gscripts RNA, Sequence Analysis barcode_collapse rnateam https://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapse https://github.com/bgruening/galaxytools/tree/master/tools/barcode_collapse 0.1.0 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +baredsc baredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2d baredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. baredsc baredsc baredSC The baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability Up-to-date https://github.com/lldelisle/baredSC Transcriptomics, Visualization baredsc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/baredsc https://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc 1.1.3 baredsc 1.1.3 Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 71 True False False +barrnap barrnap Contains the Barrnap tool for finding ribosomal RNAs in FASTA sequences. barrnap barrnap Barrnap Predict the location of ribosomal RNA genes in genomes. It supports bacteria (5S,23S,16S), archaea (5S,5.8S,23S,16S), mitochondria (12S,16S) and eukaryotes (5S,5.8S,28S,18S). Gene prediction Genomics, Model organisms, Model organisms To update https://github.com/tseemann/barrnap Sequence Analysis barrnap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/barrnap https://github.com/galaxyproject/tools-iuc/tree/main/tools/barrnap 1.2.2 barrnap 0.9 Gene prediction Genomics, Model organisms, Model organisms 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 160 3938 True False False +baseline_calculator tt_baseline Toxicity prediction using QSAR models To update https://github.com/bernt-matthias/mb-galaxy-tools Ecology, Text Manipulation baseline_toxicity_calculator mbernt https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/baseline_calculator 0.1.0+galaxy0 pandas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bax2bam bax2bam BAX to BAM converter Up-to-date https://github.com/pacificbiosciences/bax2bam/ Convert Formats, Sequence Analysis bax2bam iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pax2bam https://github.com/galaxyproject/tools-iuc/tree/main/tools/bax2bam 0.0.11 bax2bam 0.0.11 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 200 True False False +bayescan BayeScan Detecting natural selection from population-based genetic data bayescan bayescan BayeScan BAYEsian genome SCAN for outliers, aims at identifying candidate loci under natural selection from genetic data, using differences in allele frequencies between populations. It is based on the multinomial-Dirichlet model. Statistical inference Genetics, Evolutionary biology, Statistics and probability, DNA polymorphism To update http://cmpg.unibe.ch/software/BayeScan/index.html Sequence Analysis bayescan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bayescan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bayescan 2.1 bayescan 2.0.1 Statistical inference Genetics, Evolutionary biology, Statistics and probability, DNA polymorphism 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 64 True False True +bbtools bbtools_bbduk, bbtools_bbmap, bbtools_bbmerge, bbtools_bbnorm, bbtools_callvariants, bbtools_tadpole BBTools is a suite of fast, multithreaded bioinformatics tools designed for analysis of DNA and RNA sequence data.BBTools can handle common sequencing file formats such as fastq, fasta, sam, scarf, fasta+qual, compressed or raw,with autodetection of quality encoding and interleaving. It is written in Java and works on any platform supportingJava, including Linux, MacOS, and Microsoft Windows and Linux; there are no dependencies other than Java (version7 or higher). Program descriptions and options are shown when running the shell scripts with no parameters. bbmap bbtools, bbmap BBMap BBMap is a fast splice-aware aligner for RNA and DNA. It is faster than almost all short-read aligners, yet retains unrivaled sensitivity and specificity, particularly for reads with many errors and indels. RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignment Sequencing, RNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq Up-to-date https://jgi.doe.gov/data-and-tools/bbtools/ Sequence Analysis bbtools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bbtools 39.08 bbmap 39.08 RNA-Seq analysis, Sequence trimming, Read mapping, Sequence contamination filtering, Read binning, Sequence alignment RNA splicing, Whole genome sequencing, Phylogenetics, Metagenomics, RNA-Seq 6 1 5 0 6 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 0 0 0 0 0 4 0 0 420 6381 True False True +bctools bctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_events bctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0 Up-to-date https://github.com/dmaticzka/bctools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools 0.2.2 bctools 0.2.2 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 87 2895 True False False +bed_to_protein_map bed_to_protein_map Converts a BED file to a tabular list of exon locations To update Proteomics bed_to_protein_map galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bed_to_protein_map https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bed_to_protein_map 0.2.0 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 49 385 True False False +bellerophon bellerophon Filter mapped reads where the mapping spans a junction, retaining the 5-prime read. Up-to-date https://github.com/davebx/bellerophon Sequence Analysis bellerophon iuc https://github.com/davebx/bellerophon https://github.com/galaxyproject/tools-iuc/tree/main/tools/bellerophon 1.0 bellerophon 1.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 123 1194 True False False +best_regression_subsets BestSubsetsRegression1 Perform Best-subsets Regression To update Sequence Analysis, Variant Analysis best_regression_subsets devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/best_regression_subsets https://github.com/galaxyproject/tools-devteam/tree/main/tools/best_regression_subsets 1.0.0 numpy 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 3 True False False +bigscape bigscape Construct sequence similarity networks of BGCs and groups them into GCF BiG-SCAPE BiG-SCAPE BiG-SCAPE A computational framework to explore large-scale biosynthetic diversity.BiG-SCAPE (Biosynthetic Gene Similarity Clustering and Prospecting Engine) is a software package, written in Python, that constructs sequence similarity networks of Biosynthetic Gene Clusters (BGCs) and groups them into Gene Cluster Families (GCFs). BiG-SCAPE does this by rapidly calculating a distance matrix between gene clusters based on a comparison of their protein domain content, order, copy number and sequence identity.It defines a distance metric between Gene Clusters using a combination of three indices (Jaccard Index of domain types, Domain Sequence Similarity the Adjacency...BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynthetic gene clusters (BGCs) across large numbers of genomes, by constructing BGC sequence similarity networks, grouping BGCs into gene cluster families, and exploring gene cluster diversity linked to enzyme phylogenies. Clustering, Global alignment, Fold recognition Phylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein families Up-to-date https://github.com/medema-group/BiG-SCAPE Metagenomics bigscape iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigscape/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigscape 1.1.9 bigscape 1.1.9 Clustering, Global alignment, Fold recognition Phylogeny, Microbial ecology, Mapping, Metabolomics, Bioinformatics, Gene and protein families 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +bigwig_outlier_bed bigwig_outlier_bed pybigtools and numpy code to find continuous runs above a high or below a low quantile cutpoint in bigwig files bigtools bigtools bigtools Bigtools is a library and associated tools for reading and writing bigwig and bigbed files. Rust. To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigwig_outlier_bed Sequence Analysis bigwig_outlier_bed iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bigwig_outlier_bed https://github.com/galaxyproject/tools-iuc/tree/main/tools/bigwig_outlier_bed 0.2.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +binning_refiner bin_refiner Reconciles the outputs of different binning programs with the aim to improve the quality of genome bins,especially with respect to contamination levels. binning_refiner binning_refiner Binning_refiner Improving genome bins through the combination of different binning programs Read binning, Sequence clustering Metagenomics, Sequence assembly, Microbial ecology Up-to-date https://github.com/songweizhi/Binning_refiner Metagenomics binning_refiner iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/binning_refiner/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/binning_refiner 1.4.3 binning_refiner 1.4.3 Read binning, Sequence clustering Metagenomics, Sequence assembly, Microbial ecology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 81 True False True +biohansel biohansel Heidelberg and Enteritidis SNP Elucidation To update https://github.com/phac-nml/biohansel Sequence Analysis biohansel nml https://github.com/phac-nml/biohansel https://github.com/phac-nml/galaxy_tools/tree/master/tools/biohansel 2.4.0 bio_hansel 2.6.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +bioinformatics_cafe fasta_regex_finder Miscellanea of scripts for bioinformatics To update https://github.com/dariober/bioinformatics-cafe/ Sequence Analysis bioinformatics_cafe mbernt https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics-cafe https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioinformatics_cafe 0.1.0 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 71 978 True False False +biom_format biom_add_metadata, biom_convert, biom_from_uc, biom_normalize_table, biom_subset_table, biom_summarize_table The biom-format package provides a command line interface and Python API for working with BIOM files. biomformat biomformat biomformat "This package includes basic tools for reading biom-format files, accessing and subsetting data tables from a biom object, as well as limited support for writing a biom-object back to a biom-format file. The design of this API is intended to match the python API and other tools included with the biom-format project, but with a decidedly ""R flavor"" that should be familiar to R users. This includes S4 classes and methods, as well as extensions of common core functions/methods." Formatting Laboratory information management, Sequence analysis To update https://github.com/biocore/biom-format Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/biom_format https://github.com/galaxyproject/tools-iuc/tree/main/tools/biom_format 2.1.15 biom-format 2.1.7 Formatting Laboratory information management, Sequence analysis 2 2 6 0 2 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 98 3906 True False True +bionano bionano_scaffold Bionano Solve is a set of tools for analyzing Bionano data To update https://bionanogenomics.com/ Assembly bionano bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bionano https://github.com/bgruening/galaxytools/tree/master/tools/bionano 3.7.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 112 531 True False False +bioperl bp_genbank2gff3 Converts GenBank format files to GFF3 bioperl bioperl BioPerl A collection of Perl modules that facilitate the development of Perl scripts for bioinformatics applications. It provides software modules for many of the typical tasks of bioinformatics programming. Data handling, Service invocation Genomics, Software engineering, Data management To update https://bioperl.org/ Sequence Analysis bp_genbank2gff3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bioperl https://github.com/galaxyproject/tools-iuc/tree/main/tools/bioperl 1.1 perl-bioperl 1.7.8 Data handling, Service invocation Genomics, Software engineering 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 240 6736 True False False +biotradis bacteria_tradis, tradis_essentiality, tradis_gene_insert_sites Bio-Tradis is a tool suite dedicated to essentiality analyses with TraDis data. biotradis biotradis biotradis The Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format. Sequence analysis Mobile genetic elements, Workflows Up-to-date https://www.sanger.ac.uk/science/tools/bio-tradis Genome annotation biotradis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/biotradis https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/biotradis 1.4.5 biotradis 1.4.5 Sequence analysis Mobile genetic elements, Workflows 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +biscot biscot Bionano scaffolding correction tool Up-to-date https://github.com/institut-de-genomique/biscot Assembly biscot iuc https://github.com/bgruening/iuc/tree/master/tools/biscot https://github.com/galaxyproject/tools-iuc/tree/main/tools/biscot 2.3.3 biscot 2.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 3 True False False +bismark bismark_pretty_report, bismark_bowtie2, bismark_deduplicate, bismark_methylation_extractor A tool to map bisulfite converted sequence reads and determine cytosine methylation states To update https://www.bioinformatics.babraham.ac.uk/projects/bismark/ Sequence Analysis, Next Gen Mappers bismark bgruening https://github.com/bgruening/galaxytools/tree/master/tools/bismark https://github.com/bgruening/galaxytools/tree/master/tools/bismark 0.22.1 bismark 0.24.2 0 4 4 4 0 4 4 4 0 4 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 4 0 332 12876 True False False +blast2go blast2go Maps BLAST results to GO annotation terms To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go Ontology Manipulation, Sequence Analysis blast2go peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go https://github.com/peterjc/galaxy_blast/tree/master/tools/blast2go 0.0.11 b2g4pipe 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 101 1232 True False True +blast_parser blast_parser Convert 12- or 24-column BLAST output into 3-column hcluster_sg input To update https://github.com/TGAC/earlham-galaxytools/ Phylogenetics blast_parser earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parser https://github.com/TGAC/earlham-galaxytools/tree/master/tools/blast_parser 0.1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 27 296 True False False +blast_plus_remote_blastp blast_plus_remote_blastp NCBI BLAST+ with -remote option To update https://blast.ncbi.nlm.nih.gov/ Sequence Analysis blast_plus_remote_blastp galaxyp https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/blast_plus_remote_blastp 2.6.0 blast 2.16.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +blast_rbh blast_reciprocal_best_hits BLAST Reciprocal Best Hits (RBH) from two FASTA files To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh Fasta Manipulation, Sequence Analysis blast_rbh peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh https://github.com/peterjc/galaxy_blast/tree/master/tools/blast_rbh 0.3.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 121 22499 True False True +blast_to_scaffold blast2scaffold Generate DNA scaffold from blastn or tblastx alignments of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blast_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blast_to_scaffold 1.1.0 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +blastparser_and_hits BlastParser_and_hits Parse blast outputs and compile hits To update http://artbio.fr Assembly, RNA blastparser_and_hits artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/blastparser_and_hits https://github.com/ARTbio/tools-artbio/tree/main/tools/blastparser_and_hits 2.7.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +blastx_to_scaffold blastx2scaffold Generate DNA scaffold from blastx alignment of Contigs To update http://artbio.fr RNA, Sequence Analysis, Assembly blastx_to_scaffold artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold https://github.com/ARTbio/tools-artbio/tree/main/tools/blastx_to_scaffold 1.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +blastxml_to_gapped_gff3 blastxml_to_gapped_gff3 BlastXML to gapped GFF3 To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3 Convert Formats, Sequence Analysis blastxml_to_gapped_gff3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/blastxml_to_gapped_gff3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/blastxml_to_gapped_gff3 1.1 bcbiogff 0.6.6 1 1 1 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 24 185 True False False +blastxml_to_top_descr blastxml_to_top_descr Make table of top BLAST match descriptions To update https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr Convert Formats, Sequence Analysis, Text Manipulation blastxml_to_top_descr peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr https://github.com/peterjc/galaxy_blast/tree/master/tools/blastxml_to_top_descr 0.1.2 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 159 264558 True False True +blat_coverage_report generate_coverage_report Polymorphism of the Reads To update Next Gen Mappers, Sequence Analysis blat_coverage_report devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_coverage_report https://github.com/galaxyproject/tools-devteam/tree/main/tools/blat_coverage_report 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +blat_mapping blat2wig Coverage of the Reads in wiggle format To update Next Gen Mappers, Sequence Analysis blat_mapping devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/blat_mapping https://github.com/galaxyproject/tools-devteam/tree/main/tools/blat_mapping 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +blobtoolkit blobtoolkit Identification and isolation non-target data in draft and publicly available genome assemblies. To update https://blobtoolkit.genomehubs.org/ Sequence Analysis, Assembly blobtoolkit bgruening https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit https://github.com/bgruening/galaxytools/tree/master/tools/blobtoolkit 4.0.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 685 True False False +blockbuster blockbuster Blockbuster detects blocks of overlapping reads using a gaussian-distribution approach. To update http://hoffmann.bioinf.uni-leipzig.de/LIFE/blockbuster.html RNA, Sequence Analysis blockbuster rnateam https://github.com/bgruening/galaxytools/tree/master/tools/blockbuster https://github.com/bgruening/galaxytools/tree/master/tools/blockbuster 0.1.2 blockbuster 0.0.1.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 34 3009 True False False +blockclust blockclust BlockClust detects transcripts with similar processing patterns. Up-to-date https://github.com/bgruening/galaxytools/tree/master/workflows/blockclust RNA blockclust rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/blockclust https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/blockclust 1.1.1 blockclust 1.1.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 15 1478 True False False +bracken est_abundance Bayesian Reestimation of Abundance with KrakEN bracken bracken Bracken Statistical method that computes the abundance of species in DNA sequences from a metagenomics sample. Statistical calculation Metagenomics, Microbial ecology Up-to-date https://ccb.jhu.edu/software/bracken/ Sequence Analysis, Metagenomics bracken iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bracken https://github.com/galaxyproject/tools-iuc/tree/main/tools/bracken 3.0 bracken 3.0 Statistical calculation Metagenomics, Microbial ecology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 326 18351 True False True +braker braker BRAKER is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes . To update https://github.com/Gaius-Augustus/BRAKER Genome annotation braker genouest https://github.com/genouest/galaxy-tools/tree/master/tools/braker https://github.com/genouest/galaxy-tools/tree/master/tools/braker 2.1.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 17 109 True False False +braker3 braker3 BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes . braker3 braker3 BRAKER3 BRAKER3 is a pipeline for fully automated prediction of protein coding gene structures with GeneMark-ES/ET and AUGUSTUS in novel eukaryotic genomes Genome annotation, Gene prediction RNA-Seq, Genomics, Structure prediction, Sequence analysis To update https://github.com/Gaius-Augustus/BRAKER Genome annotation braker3 genouest https://github.com/genouest/galaxy-tools/tree/master/tools/braker https://github.com/genouest/galaxy-tools/tree/master/tools/braker3 3.0.8 Genome annotation, Gene prediction RNA-Seq, Genomics, Structure prediction, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 567 True False False +brew3r_r brew3r_r Extend 3' end of a GTF using another GTF as a template brew3r.r brew3r.r BREW3R.r This R package provide functions that are used in the BREW3R workflow. This mainly contains a function that extend a gtf as GRanges using information from another gtf (also as GRanges). The process allows to extend gene annotation without increasing the overlap between gene ids. Genome annotation Transcriptomics, Genomics To update https://bioconductor.org/packages/release/bioc/html/BREW3R.r.html Transcriptomics, RNA brew3r_r iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_r https://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r 1.0.2 Genome annotation Transcriptomics 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bumbershoot idpqonvertEmbedder, idpassemble, idpqonvert, idpquery, myrimatch To update http://proteowizard.sourceforge.net/ Proteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/bumbershoot 3.0.21142 bumbershoot 3_0_21142_0e4f4a4 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 3 1348 True False False +bundle_collections bundle_collection Tool to bundle up list collection into a single zip to be download To update Sequence Analysis bundle_collections nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/bundle_collections 1.3.0 perl-getopt-long 2.58 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +busco busco BUSCO assess genome and annotation completeness busco busco BUSCO Provides measures for quantitative assessment of genome assembly, gene set, and transcriptome completeness based on evolutionarily informed expectations of gene content from near-universal single-copy orthologs. Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assembly Sequence assembly, Genomics, Transcriptomics, Sequence analysis Up-to-date https://gitlab.com/ezlab/busco/-/releases Sequence Analysis busco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/busco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/busco 5.7.1 busco 5.7.1 Sequence assembly validation, Scaffolding, Genome assembly, Transcriptome assembly Sequence assembly, Transcriptomics, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1804 86180 True False True +bwameth bwameth Fast and accurate alignment of BS-seq reads Up-to-date https://github.com/brentp/bwa-meth Sequence Analysis, Next Gen Mappers bwameth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwameth https://github.com/galaxyproject/tools-iuc/tree/main/tools/bwameth 0.2.7 bwameth 0.2.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 201 10619 True False False +cactus cactus_cactus, cactus_export Cactus is a reference-free whole-genome multiple alignment program cactus cactus Cactus Cactus is a reference-free whole-genome multiple alignment program. Multiple sequence alignment, Genome alignment Genomics, Sequence analysis, Phylogeny, Sequence assembly, Mapping, Phylogenetics To update https://github.com/ComparativeGenomicsToolkit/cactus Sequence Analysis cactus galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/main/tools/cactus https://github.com/galaxyproject/tools-iuc/tree/main/tools/cactus 2.7.1 Multiple sequence alignment, Genome alignment Genomics, Sequence assembly, Mapping, Phylogenetics 0 2 2 1 0 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 26 234 True False False +calculate_contrast_threshold calculate_contrast_threshold Calculates a contrast threshold from the CDT file generated by ``tag_pileup_frequency``. The calculated values are then used to set a uniform contrast for all the heatmaps generated downstream. To update https://github.com/CEGRcode/ChIP-QC-tools/tree/master/calculate_contrast_threshold Visualization, Genomic Interval Operations, SAM calculate_contrast_threshold iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/calculate_contrast_threshold https://github.com/galaxyproject/tools-iuc/tree/main/tools/calculate_contrast_threshold 1.0.0 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +calisp calisp Calgary approach to isotopes in proteomics Up-to-date https://github.com/kinestetika/Calisp/ Proteomics calisp galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/calisp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/calisp 3.0.13 calisp 3.0.13 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 True False False +cami_amber biobox_add_taxid, cami_amber, cami_amber_add, cami_amber_convert Evaluation package for the comparative assessment of genome reconstructions and taxonomic assignments Up-to-date https://github.com/CAMI-challenge/AMBER Metagenomics cami_amber iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/amber/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/cami_amber 2.0.6 cami-amber 2.0.6 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cap3 cap3 cap3 wrapper To update http://artbio.fr Assembly cap3 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 https://github.com/ARTbio/tools-artbio/tree/main/tools/cap3 2.0.1 cap3 10.2011 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 101 7766 True False False +cardinal cardinal_classification, cardinal_colocalization, cardinal_combine, cardinal_data_exporter, cardinal_filtering, cardinal_mz_images, cardinal_preprocessing, cardinal_quality_report, cardinal_segmentations, cardinal_single_ion_segmentation, cardinal_spectra_plots Statistical and computational tools for analyzing mass spectrometry imaging datasets Up-to-date http://cardinalmsi.org Proteomics, Metabolomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinal https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cardinal 3.4.3 bioconductor-cardinal 3.4.3 0 9 11 11 0 9 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 0 11 9 0 277 48705 True False False +cat cat_add_names, cat_bins, cat_contigs, cat_prepare, cat_summarise Contig Annotation Tool (CAT) cat_bins cat_bins CAT and BAT Contig Annotation Tool (CAT) and Bin Annotation Tool (BAT) are pipelines for the taxonomic classification of long DNA sequences and metagenome assembled genomes (MAGs/bins) of both known and (highly) unknown microorganisms, as generated by contemporary metagenomics studies. The core algorithm of both programs involves gene calling, mapping of predicted ORFs against the nr protein database, and voting-based classification of the entire contig / MAG based on classification of the individual ORFs. Taxonomic classification, Sequence assembly, Coding region prediction Metagenomics, Metagenomic sequencing, Taxonomy, Sequence assembly To update https://github.com/dutilh/CAT Metagenomics contig_annotation_tool iuc https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cat https://github.com/galaxyproject/tools-iuc/tree/main/tools/cat 5.2.3 cat 5.3 Taxonomic classification, Sequence assembly, Coding region prediction Metagenomics, Metagenomic sequencing, Taxonomy, Sequence assembly 5 2 5 0 5 2 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 268 2878 True False True +cd_hit_dup cd_hit_dup simple tool for removing duplicates from sequencing reads To update Metagenomics, Sequence Analysis cd_hit_dup devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/cd_hit_dup https://github.com/galaxyproject/tools-devteam/tree/main/tools/cd_hit_dup 0.0.1 cd-hit-auxtools 4.8.1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +cdhit cd_hit Cluster or compare biological sequence datasets cd-hit cd-hit cd-hit Cluster a nucleotide dataset into representative sequences. Sequence clustering Sequencing Up-to-date http://weizhongli-lab.org/cd-hit/ Sequence Analysis, Fasta Manipulation cd_hit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cdhit https://github.com/galaxyproject/tools-iuc/tree/main/tools/cdhit 4.8.1 cd-hit 4.8.1 Sequence clustering Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 280 4474 True False True +cell-types-analysis ct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvals Tools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysis To update Transcriptomics, RNA, Statistics suite_cell_types_analysis ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis 1.1.1 cell-types-analysis 0.1.11 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 6 True False False +cemitool cemitool Gene co-expression network analysis tool cemitool cemitool CEMiTool It unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network. Enrichment analysis, Pathway or network analysis Gene expression, Transcriptomics, Microarray experiment Up-to-date https://www.bioconductor.org/packages/release/bioc/html/CEMiTool.html Transcriptomics, RNA, Statistics cemitool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool https://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool 1.26.0 bioconductor-cemitool 1.26.0 Enrichment analysis, Pathway or network analysis Transcriptomics, Microarray experiment 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 98 True False True +champ_blocs cb_dissim, cb_ivr, cb_div Compute indicators for turnover boulders fields To update Ecology ecology https://github.com/Marie59/champ_blocs https://github.com/galaxyecology/tools-ecology/tree/master/tools/champ_blocs 0.0.0 r-base 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 19 174 True False False +charts charts Enables advanced visualization options in Galaxy Charts To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/ Visualization charts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/charts/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/charts 1.0.1 r-getopt 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 287 3589 True False False +checkm checkm_analyze, checkm_lineage_set, checkm_lineage_wf, checkm_plot, checkm_qa, checkm_taxon_set, checkm_taxonomy_wf, checkm_tetra, checkm_tree, checkm_tree_qa Assess the quality of microbial genomes recovered from isolates, single cells, and metagenomes checkm checkm CheckM CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes. Sequence assembly validation, Validation, Sequence composition calculation, Sequencing quality control, Statistical calculation Genomics, Phylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management To update https://github.com/Ecogenomics/CheckM Metagenomics checkm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/checkm https://github.com/galaxyproject/tools-iuc/tree/main/tools/checkm 1.2.0 checkm-genome 1.2.3 Sequence assembly validation, Sequence composition calculation, Statistical calculation Phylogenomics, Phylogenetics, Taxonomy, Metagenomics, Data quality management 0 0 10 10 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 390 5165 True False True +cherri cherri_eval, cherri_train Computational Help Evaluating RNA-RNA interactions cherri cherri cherri CheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions. Molecular interactions, pathways and networks, Structure analysis, Machine learning To update https://github.com/BackofenLab/Cherri Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cherri https://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri 0.7 cherri 0.8 Molecular interactions, pathways and networks, Structure analysis, Machine learning 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 207 True False False +chipseeker chipseeker A tool for ChIP peak annotation and visualization To update https://bioconductor.org/packages/release/bioc/html/ChIPseeker.html ChIP-seq, Genome annotation chipseeker rnateam https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker https://github.com/bgruening/galaxytools/tree/master/tools/chipseeker 1.32.0 bioconductor-chipseeker 1.38.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 418 15690 True False False +chira chira_collapse, chira_extract, chira_map, chira_merge, chira_quantify Chimeric Read Annotator for RNA-RNA interactome data chira chira ChiRA ChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc. RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA Up-to-date https://github.com/pavanvidem/chira RNA, Transcriptomics, Sequence Analysis chira iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chira https://github.com/galaxyproject/tools-iuc/tree/main/tools/chira 1.4.3 chira 1.4.3 Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 97 6418 True False False +chromeister chromeister ultra-fast pairwise genome comparisons Up-to-date https://github.com/estebanpw/chromeister Sequence Analysis chromeister iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chromeister https://github.com/galaxyproject/tools-iuc/tree/main/tools/chromeister 1.5.a chromeister 1.5.a 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 182 2130 True False False +chromosome_diagram chromosome_diagram Chromosome Diagrams using Biopython To update Graphics, Sequence Analysis, Visualization chromosome_diagram peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/chromosome_diagram 0.0.3 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +circexplorer circexplorer A combined strategy to identify circular RNAs (circRNAs and ciRNAs) To update https://github.com/YangLab/CIRCexplorer Sequence Analysis, RNA circexplorer bgruening https://github.com/bgruening/galaxytools/tree/master/tools/circexplorer https://github.com/bgruening/galaxytools/tree/master/tools/circexplorer 1.1.9.0 circexplorer 1.1.10 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 251 True False False +circexplorer2 circexplorer2 Comprehensive and integrative circular RNA analysis toolset. circexplorer2 circexplorer2 CIRCexplorer2 Genome-wide annotation of circRNAs and their alternative back-splicing/splicing. RNA splicing, Gene transcripts, Literature and language Up-to-date https://github.com/YangLab/CIRCexplorer2 RNA, Assembly circexplorer2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/circexplorer2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/circexplorer2 2.3.8 circexplorer2 2.3.8 RNA splicing, Gene transcripts, Literature and language 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 16 269 True False False +clair3 clair3 Symphonizing pileup and full-alignment for high-performance long-read variant calling clair3 clair3 Clair3 Clair3 is a germline small variant caller for long-reads. Clair3 makes the best of two major method categories: pileup calling handles most variant candidates with speed, and full-alignment tackles complicated candidates to maximize precision and recall. Clair3 runs fast and has superior performance, especially at lower coverage. Clair3 is simple and modular for easy deployment and integration. Variant calling Molecular genetics To update https://github.com/HKU-BAL/Clair3 Sequence Analysis, Variant Analysis clair3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/clair3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/clair3 1.0.8 clair3 1.0.10 Variant calling Molecular genetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 68 1856 True False True +clc_assembly_cell clc_assembler, clc_mapper Galaxy wrapper for the CLC Assembly Cell suite from CLCBio To update https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell Assembly, Next Gen Mappers, SAM clc_assembly_cell peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell https://github.com/peterjc/pico_galaxy/tree/master/tools/clc_assembly_cell 0.0.7 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +climate-stripes climate_stripes Create climate stripes from a tabular input file To update https://www.climate-lab-book.ac.uk/2018/warming-stripes/ Climate Analysis, Visualization climate_stripes climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes 1.0.2 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 237 True False False +clinod clinod NoD: a Nucleolar localization sequence detector for eukaryotic and viral proteins clinod clinod clinod The command line NoD predictor (clinod) can be run from the command line to predict Nucleolar localization sequences (NoLSs) that are short targeting sequences responsible for the localization of proteins to the nucleolus.The predictor accepts a list of FASTA formatted sequences as an input and outputs the NOLS predictions as a result.Please note that currently, JPred secondary structure predictions are not supported by clinod. However, we are working on it. Nucleic acid sequence analysis Sequence analysis To update http://www.compbio.dundee.ac.uk/www-nod/ Sequence Analysis clinod peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/clinod https://github.com/peterjc/pico_galaxy/tree/master/tools/clinod 0.1.0 clinod 1.3 Nucleic acid sequence analysis Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +clustalw clustalw ClustalW multiple sequence alignment program for DNA or proteins clustal2 clustal2 Clustal 2 (Clustal W, Clustal X) Multiple sequence alignment program with a command-line interface (Clustal W) and a graphical user interface (Clustal X). The display colours allow conserved features to be highlighted for easy viewing in the alignment. It is available for several platforms, including Windows, Macintosh PowerMac, Linux and Solaris.Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, Clustal2. Multiple sequence alignment Phylogeny, Sequence analysis Up-to-date http://www.clustal.org/clustal2/ Phylogenetics, Sequence Analysis clustalw devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/clustalw https://github.com/galaxyproject/tools-iuc/tree/main/tools/clustalw 2.1 clustalw 2.1 Multiple sequence alignment Phylogeny, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 651 46793 True False True +cmsearch_deoverlap cmsearch_deoverlap removes lower scoring overlaps from cmsearch results. cmsearch-deoverlap cmsearch-deoverlap cmsearch-deoverlap Removes lower scoring overlaps from cmsearch results. Comparison, Alignment Biology, Medicine To update https://github.com/EBI-Metagenomics/pipeline-v5/blob/master/tools/RNA_prediction/cmsearch-deoverlap/cmsearch-deoverlap.pl RNA cmsearch_deoverlap rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmsearch_deoverlap 0.08+galaxy2 perl Comparison, Alignment Biology, Medicine 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 102 True False True +cmv cmcv, cmv, hmmcv, hmmv cmv is a collection of tools for the visualisation of Hidden Markov Models and RNA-family models. Up-to-date https://github.com/eggzilla/cmv RNA cmv rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmv https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cmv 1.0.8 cmv 1.0.8 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 1 108 True False False +codeml codeml Detects positive selection paml paml PAML Package of programs for phylogenetic analyses of DNA or protein sequences using maximum likelihood. Probabilistic sequence generation, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Phylogenetic tree analysis Phylogenetics, Sequence analysis To update http://abacus.gene.ucl.ac.uk/software/paml.html Phylogenetics codeml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/codeml https://github.com/galaxyproject/tools-iuc/tree/main/tools/codeml 4.9 paml 4.10.7 Probabilistic sequence generation Phylogenetics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 29 60901 True False True +cofold cofold Cofold predicts RNA secondary structures that takes co-transcriptional folding into account. To update http://www.e-rna.org/cofold/ RNA cofold rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cofold https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/cofold 2.0.4.0 cofold 2.0.4 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 342 True False False +cojac cooc_mutbamscan, cooc_pubmut, cooc_tabmut co-occurrence of mutations on amplicons cojac cojac COJAC CoOccurrence adJusted Analysis and Calling - The cojac package comprises a set of command-line tools to analyse co-occurrence of mutations on amplicons. It is useful, for example, for early detection of viral variants of concern (e.g. Alpha, Delta, Omicron) in environmental samples, and has been designed to scan for multiple SARS-CoV-2 variants in wastewater samples, as analyzed jointly by ETH Zurich, EPFL and Eawag. Genetic variation Up-to-date https://github.com/cbg-ethz/cojac Metagenomics, Sequence Analysis cojac iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cojac https://github.com/galaxyproject/tools-iuc/tree/main/tools/cojac 0.9.2 cojac 0.9.2 Genetic variation 2 0 3 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 20 2757 True False True +colabfold colabfold_alphafold, colabfold_msa Protein prediction based on AlphaFold2 Colabfold Colabfold ColabFold ColabFold databases are MMseqs2 expandable profile databases to generate diverse multiple sequence alignments to predict protein structures. Database search, Protein structure prediction, Fold recognition Protein folds and structural domains, Protein folding, stability and design, Structure prediction, Sequence sites, features and motifs, Metagenomics To update https://github.com/sokrypton/ColabFold Proteomics, Graphics colabfold iuc https://github.com/sokrypton/ColabFold https://github.com/galaxyproject/tools-iuc/tree/main/tools/colabfold 1.5.5 Database search, Protein structure prediction, Fold recognition Protein folds and structural domains, Protein folding, stability and design, Structure prediction, Sequence sites, features and motifs, Metagenomics 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +colibread commet, discosnp_rad, discosnp_pp, kissplice, lordec, mapsembler2, takeabreak Colib'read tools are all dedicated to the analysis of NGS datasets without the need of any reference genome To update https://colibread.inria.fr/ Sequence Analysis, Variant Analysis colibread iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/colibread https://github.com/galaxyproject/tools-iuc/tree/main/tools/colibread 24.7.14+galaxy0 commet 24.7.14 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 251 True False False +collapse_collection collapse_dataset Collection tool that collapses a list of files into a single datasset in order of appears in collection To update Sequence Analysis collapse_collections nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/collapse_collection 5.1.0 gawk 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1583 33934 True False False +combineJSON combine_json JSON collection tool that takes multiple JSON data arrays and combines them into a single JSON array. To update Sequence Analysis combine_json nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/combineJSON 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +combine_assembly_stats combine_stats Combine multiple Assemblystats datasets into a single tabular report To update https://github.com/phac-nml/galaxy_tools Assembly combine_assemblystats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_assembly_stats 1.0 perl-getopt-long 2.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +combine_metaphlan_humann combine_metaphlan_humann Combine MetaPhlAn2 and HUMAnN2 outputs to relate genus/species abundances and gene families/pathways abundances combine_metaphlan_and_humann combine_metaphlan_and_humann Combine Metaphlan and HUMAnN This tool combine MetaPhlAn outputs and HUMANnN outputs Aggregation Metagenomics, Molecular interactions, pathways and networks To update Metagenomics combine_metaphlan2_humann2 bebatut https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan2_humann2 https://github.com/bgruening/galaxytools/tree/master/tools/combine_metaphlan_humann 0.3.0 python Aggregation Metagenomics, Molecular interactions, pathways and networks 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 147 True False True +combine_tabular_collection combine Combine Tabular Collection into a single file To update Sequence Analysis combine_tabular_collection nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/combine_tabular_collection 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +compalignp compalignp Compute fractional identity between trusted alignment and test alignment Up-to-date RNA, Sequence Analysis compalignp rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/compalignp 1.0 compalignp 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 220 True False False +compare_humann2_output compare_humann2_output Compare outputs of HUMAnN2 for several samples and extract similar and specific information compare_humann2_outputs compare_humann2_outputs Compare HUMAnN2 outputs This tool compare HUMANnN2 outputs with gene families or pathways and their relative abundances between several samples Comparison Metagenomics, Gene and protein families To update Metagenomics compare_humann2_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output https://github.com/bgruening/galaxytools/tree/master/tools/compare_humann2_output 0.2.0 Comparison Metagenomics, Gene and protein families 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 332 True False True +compleasm compleasm Compleasm: a faster and more accurate reimplementation of BUSCO compleasm compleasm compleasm """Compleasm: a faster and more accurate reimplementation of BUSCO""" Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assembly Sequence assembly, Genomics, Transcriptomics, Sequence analysis Up-to-date https://github.com/huangnengCSU/compleasm Sequence Analysis compleasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/compleasm/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/compleasm 0.2.6 compleasm 0.2.6 Sequence assembly validation, Sequence analysis, Scaffolding, Transcriptome assembly Sequence assembly, Transcriptomics, Sequence analysis 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +compute_motif_frequencies_for_all_motifs compute_motif_frequencies_for_all_motifs Compute Motif Frequencies For All Motifs, motif by motif. To update Sequence Analysis, Statistics compute_motif_frequencies_for_all_motifs devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motif_frequencies_for_all_motifs https://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_motif_frequencies_for_all_motifs 1.0.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 94 True False False +compute_motifs_frequency compute_motifs_frequency Compute Motif Frequencies in indel flanking regions. To update Sequence Analysis, Statistics compute_motifs_frequency devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/compute_motifs_frequency https://github.com/galaxyproject/tools-devteam/tree/main/tools/compute_motifs_frequency 1.0.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 65 True False False +concoct concoct, concoct_coverage_table, concoct_cut_up_fasta, concoct_extract_fasta_bins, concoct_merge_cut_up_clustering CONCOCT (Clustering cONtigs with COverage and ComposiTion) does unsupervised binning of metagenomic contigs byusing nucleotide composition - kmer frequencies - and coverage data for multiple samples. CONCOCT can accurately(up to species level) bin metagenomic contigs. concoct concoct CONCOCT A program for unsupervised binning of metagenomic contigs by using nucleotide composition, coverage data in multiple samples and linkage data from paired end reads. Sequence clustering, Read binning Metagenomics Up-to-date https://github.com/BinPro/CONCOCT Metagenomics concoct iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/concoct https://github.com/galaxyproject/tools-iuc/tree/main/tools/concoct 1.1.0 concoct 1.1.0 Sequence clustering, Read binning Metagenomics 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 92 786 True False True +consensus_from_alignments aligned_to_consensus Tool to compute a consensus sequence from several aligned fasta sequences To update Sequence Analysis consalign ecology https://github.com/ColineRoyaux/Galaxy_tool_projects/tree/main/consensus_from_alignments https://github.com/galaxyecology/tools-ecology/tree/master/tools/consensus_from_alignments 1.0.0 r-bioseq 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 55 585 True False False +consolidate_vcfs consolidate_vcfs Combines freebayes and mpileup files for use by vcf2snvalignment Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis consolidate_vcfs nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/consolidate_vcfs 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +coprarna coprarna Target prediction for prokaryotic trans-acting small RNAs To update https://github.com/PatrickRWright/CopraRNA RNA, Sequence Analysis coprarna rnateam https://github.com/PatrickRWright/CopraRNA https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/coprarna 2.1.1 coprarna 2.1.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +cosg cosg Marker gene identification for single-cell sequencing data using COSG. Up-to-date https://github.com/genecell/COSG Transcriptomics, Sequence Analysis cosg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg 1.0.1 cosg 1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +count_gff_features count_gff_features Count GFF Features To update Sequence Analysis count_gff_features devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/count_gff_features https://github.com/galaxyproject/tools-devteam/tree/main/tools/count_gff_features 0.2 galaxy-ops 1.1.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 49 271 True False False +count_roi_variants count_roi_variants Count sequence variants in region of interest in BAM file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants Assembly, SAM count_roi_variants peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants https://github.com/peterjc/pico_galaxy/tree/master/tools/count_roi_variants 0.0.6 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +coverage_report CoverageReport2 Generate Detailed Coverage Report from BAM file To update https://github.com/galaxyproject/tools-iuc Sequence Analysis coverage_report iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/coverage_report https://github.com/galaxyproject/tools-iuc/tree/main/tools/coverage_report 0.0.4 perl-number-format 1.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +coverage_stats coverage_stats BAM coverage statistics using samtools idxstats and depth To update https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats Assembly, SAM coverage_stats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats https://github.com/peterjc/pico_galaxy/tree/master/tools/coverage_stats 0.1.0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +coverm coverm_contig, coverm_genome CoverM genome and contig wrappers coverm coverm CoverM Read coverage calculator for metagenomics Local alignment Bioinformatics Up-to-date https://github.com/wwood/CoverM Sequence Analysis coverm iuc https://github.com/galaxyproject/tools-iuc/tools/coverm https://github.com/galaxyproject/tools-iuc/tree/main/tools/coverm 0.7.0 coverm 0.7.0 Local alignment Bioinformatics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 72 529 True False True +crispr_studio crispr_studio CRISPR Studio is a program developed to facilitate and accelerate CRISPR array visualization. crisprstudio crisprstudio CRISPRStudio CRISPRStudio is a program developed to facilitate and accelerate CRISPR array visualization. It works by first comparing spacers sequence homology in a dataset, then assigning a two-color-code to each cluster of spacers and finally writing an svg file, which can be opened in graphics vector editor. Visualisation Sequence analysis, Genomics, Data visualisation To update https://github.com/moineaulab/CRISPRStudio Sequence Analysis crispr_studio iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crispr_studio/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/crispr_studio 1+galaxy0 crispr_studio 1 Visualisation Sequence analysis, Genomics, Data visualisation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 636 True False False +crosscontamination_barcode_filter crosscontamination_barcode_filter Barcode contamination discovery tool To update Transcriptomics, Visualization crosscontamination_barcode_filter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filter https://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter 0.3 r-ggplot2 2.2.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 17 347 True False False +crt crispr_recognition_tool CRISPR Recognition Tool To update Sequence Analysis crispr_recognition_tool bgruening https://github.com/bgruening/galaxytools/tree/master/tools/crt https://github.com/bgruening/galaxytools/tree/master/tools/crt 1.2.0 crisper_recognition_tool 1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 74 3389 True False False +cryptogenotyper CryptoGenotyper CryptoGenotyper is a standalone tool to *in-silico* determine species and subtype based on SSU rRNA and gp60 markers. Up-to-date https://github.com/phac-nml/CryptoGenotyper Sequence Analysis cryptogenotyper nml https://github.com/phac-nml/CryptoGenotyper https://github.com/phac-nml/galaxy_tools/tree/master/tools/cryptogenotyper 1.0 cryptogenotyper 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 8518 True False True +ctd_batch ctdBatch_1 CTD analysis of chemicals, diseases, or genes To update Sequence Analysis ctd_batch devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/ctd_batch https://github.com/galaxyproject/tools-devteam/tree/main/tools/ctd_batch 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 203 True False False +cummerbund cummeRbund Wrapper for the Bioconductor cummeRbund library To update https://bioconductor.org/packages/release/bioc/html/cummeRbund.html RNA, Visualization cummerbund devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/cummerbund https://github.com/galaxyproject/tools-devteam/tree/main/tools/cummerbund 2.16.0 fonts-conda-ecosystem 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 31 1782 True False False +custom_pro_db custom_pro_db CustomProDB To update https://bioconductor.org/packages/release/bioc/html/customProDB.html Proteomics custom_pro_db galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_db https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/custom_pro_db 1.22.0 bioconductor-rgalaxy 1.37.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 57 1652 True False False +custom_pro_db_annotation_data_manager CustomProDB Annotation To update https://bioconductor.org/packages/release/bioc/html/customProDB.html Proteomics custom_pro_db_annotation_data_manager galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/custom_pro_db https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/custom_pro_db_annotation_data_manager 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +cutadapt cutadapt Flexible tool to remove adapter sequences (and quality trim) high throughput sequencing reads (fasta/fastq). cutadapt cutadapt Cutadapt Find and remove adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads. Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing Up-to-date https://cutadapt.readthedocs.org/en/stable/ Fasta Manipulation, Fastq Manipulation, Sequence Analysis cutadapt lparsons https://github.com/galaxyproject/tools-iuc/tree/master/tools/cutadapt https://github.com/galaxyproject/tools-iuc/tree/main/tools/cutadapt 4.9 cutadapt 4.9 Sequence trimming, Primer removal, Read pre-processing Genomics, Probes and primers, Sequencing 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 5090 232004 True False True +dada2 dada2_assignTaxonomyAddspecies, dada2_dada, dada2_filterAndTrim, dada2_learnErrors, dada2_makeSequenceTable, dada2_mergePairs, dada2_plotComplexity, dada2_plotQualityProfile, dada2_removeBimeraDenovo, dada2_seqCounts DADA2 wrappers dada2 dada2 dada2 This package infers exact sequence variants (SVs) from amplicon data, replacing the commonly used and coarser OTU clustering approach. This pipeline inputs demultiplexed fastq files, and outputs the sequence variants and their sample-wise abundances after removing substitution and chimera errors. Taxonomic classification is available via a native implementation of the RDP naive Bayesian classifier. Variant calling, DNA barcoding Sequencing, Genetic variation, Microbial ecology, Metagenomics To update https://benjjneb.github.io/dada2/index.html Metagenomics dada2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dada2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/dada2 bioconductor-dada2 1.30.0 Variant calling, DNA barcoding Sequencing, Genetic variation, Microbial ecology, Metagenomics 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 10 0 10 0 0 1 0 0 0 0 0 0 0 0 0 0 0 10 10 0 1263 66609 True False True +das_tool Fasta_to_Contig2Bin, das_tool DAS Tool for genome resolved metagenomics dastool dastool dastool DAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly. Read binning Metagenomics Up-to-date https://github.com/cmks/DAS_Tool Metagenomics das_tool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/das_tool https://github.com/galaxyproject/tools-iuc/tree/main/tools/das_tool 1.1.7 das_tool 1.1.7 Read binning Metagenomics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 24 706 True False True +data-hca hca_matrix_downloader Tools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projects To update Transcriptomics, Sequence Analysis suite_human_cell_atlas_tools ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hca v0.0.4+galaxy0 hca-matrix-downloader 0.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 34 439 True False False +data-scxa retrieve_scxa Tools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/home To update Transcriptomics, Sequence Analysis suite_ebi_expression_atlas ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxa v0.0.2+galaxy2 wget 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 99 799 True False False +data_exploration tool_anonymization, ecology_homogeneity_normality, ecology_beta_diversity, ecology_link_between_var, ecology_presence_abs_abund, ecology_stat_presence_abs Explore data through multiple statistical tools To update Ecology ecology https://github.com/Marie59/Data_explo_tools https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_exploration 0.0.0 r-tangles 0 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 146 658 True False False +data_manager_eggnog_mapper downloads eggnog data for eggnog-mapper To update Proteomics data_manager_eggnog_mapper galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper_data_manager https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +data_manager_eggnog_mapper_abspath download eggnog data for eggnog-mapper To update Proteomics data_manager_eggnog_mapper_abspath galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspath https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/data_manager_eggnog_mapper_abspath 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +dbbuilder dbbuilder Protein Database Downloader To update https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder Proteomics dbbuilder galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dbbuilder 0.3.4 wget 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 161 4758 True False False +decoyfasta Galaxy tool wrapper for the transproteomic pipeline decoyFASTA tool. To update Proteomics decoyfasta galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfasta https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/decoyfasta 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +deepsig deepsig Predictor of signal peptides in proteins based on deep learning Up-to-date https://github.com/BolognaBiocomp/deepsig Genome annotation deepsig iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deepsig https://github.com/galaxyproject/tools-iuc/tree/main/tools/deepsig 1.2.5 deepsig 1.2.5 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 True False False +delete_overlapping_indels delete_overlapping_indels Delete Overlapping Indels from a chromosome indels file To update Sequence Analysis delete_overlapping_indels devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/delete_overlapping_indels https://github.com/galaxyproject/tools-devteam/tree/main/tools/delete_overlapping_indels 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 39 True False False +deseq2 deseq2 Differential gene expression analysis based on the negative binomial distribution DESeq2 DESeq2 DESeq2 R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution. Differential gene expression analysis, RNA-Seq analysis RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics deseq2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq2 2.11.40.8 bioconductor-deseq2 1.42.0 Differential gene expression analysis, RNA-Seq analysis RNA-Seq 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4990 95752 True False True +deseq2_normalization deseq2_normalization Normalizes gene hitlists To update http://artbio.fr RNA, Transcriptomics, Sequence Analysis, Statistics deseq2_normalization artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization 1.40.2+galaxy0 bioconductor-deseq2 1.42.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +dewseq dewseq DEWSeq is a sliding window based peak caller for eCLIP/iCLIP data To update https://github.com/EMBL-Hentze-group/DEWSeq_analysis_helpers Sequence Analysis, RNA, CLIP-seq dewseq rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dewseq https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dewseq 0.1.0+galaxy0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 11 72 True False False +dexseq dexseq, dexseq_count, plotdexseq Inference of differential exon usage in RNA-Seq dexseq dexseq DEXSeq The package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results. Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq Up-to-date https://www.bioconductor.org/packages/release/bioc/html/DEXSeq.html Transcriptomics, RNA, Statistics dexseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq 1.48.0 bioconductor-dexseq 1.48.0 Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 218 16064 True False False +dia_umpire dia_umpire_se DIA-Umpire analysis for data independent acquisition (DIA) mass spectrometry-based proteomics To update http://diaumpire.sourceforge.net/ Proteomics dia_umpire galaxyp https://github.com/galaxyproject/tools-iuc/tree/master/tools/dia_umpire https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dia_umpire 2.1.3 dia_umpire 2.1.6 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 33 True False False +dialignr dialignr DIAlignR is an R package for retention time alignment of targeted mass spectrometric data, including DIA and SWATH-MS data. This tool works with MS2 chromatograms directly and uses dynamic programming for alignment of raw chromatographic traces. DIAlignR uses a hybrid approach of global (feature-based) and local (raw data-based) alignment to establish correspondence between peaks. To update https://github.com/shubham1637/DIAlignR Proteomics dialignr galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr 1.2.0 bioconductor-dialignr 2.10.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 40 True False False +diamond bg_diamond, bg_diamond_makedb, bg_diamond_view DIAMOND is a new alignment tool for aligning short DNA sequencing reads to a protein reference database such as NCBI-NR. diamond diamond Diamond Sequence aligner for protein and translated DNA searches and functions as a drop-in replacement for the NCBI BLAST software tools. It is suitable for protein-protein search as well as DNA-protein search on short reads and longer sequences including contigs and assemblies, providing a speedup of BLAST ranging up to x20,000. Sequence alignment analysis Sequence analysis, Proteins To update https://github.com/bbuchfink/diamond Sequence Analysis diamond bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/diamond https://github.com/galaxyproject/tools-iuc/tree/main/tools/diamond 2.0.15 diamond 2.1.9 Sequence alignment analysis Sequence analysis, Proteins 3 3 3 3 3 3 3 3 0 0 0 0 3 0 0 0 0 0 0 0 3 3 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 3 3 0 963 49711 True False True +diann diann DiaNN (DIA-based Neural Networks) is a software for DIA/SWATH data processing. To update https://github.com/vdemichev/DiaNN Proteomics diann galaxyp https://github.com/vdemichev/DiaNN https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diann 1.8.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 15 True False False +diapysef diapysef diapysef is a convenience package for working with DIA-PASEF data To update https://pypi.org/project/diapysef/ Proteomics diapysef galaxyp https://github.com/galaxyproject/tools-iuc/tree/master/tools/diapysef https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diapysef 0.3.5.0 diapysef 1.0.10 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 245 True False False +diffacto diffacto Diffacto comparative protein abundance estimation To update https://github.com/statisticalbiotechnology/diffacto Proteomics diffacto galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffacto https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/diffacto 1.0.6 diffacto 1.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 7 True False False +disco disco DISCO is a overlap-layout-consensus (OLC) metagenome assembler disco disco DISCO DISCO is software to perform structure determination of protein homo-oligomers with cyclic symmetry.DISCO computes oligomeric protein structures using geometric constraints derived from RDCs and intermolecular distance restraints such as NOEs or disulfide bonds. When a reliable subunit structure can be calculated from intramolecular restraints, DISCO guarantees that all satisfying oligomer structures will be discovered, yet can run in minutes to hours on only a single desktop-class computer. Protein sequence analysis Structure determination To update http://disco.omicsbio.org/ Metagenomics, Assembly disco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/disco/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/disco disco 1.2 Protein sequence analysis Structure determination 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 369 True False True +divide_pg_snp dividePgSnp Separate pgSnp alleles into columns To update Sequence Analysis divide_pg_snp devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/divide_pg_snp https://github.com/galaxyproject/tools-devteam/tree/main/tools/divide_pg_snp 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 32 True False False +dorina dorina_search data source for RNA interactions in post-transcriptional regulation To update RNA, Data Source dorina rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dorina 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1576 True False False +dose_responses dr_curve A tool for analyzing and visualizing the relationship between various doses and their corresponding biological responses Up-to-date https://github.com/bernt-matthias/mb-galaxy-tools Ecology dose_response_analysis_tool ufz https://github.com/bernt-matthias/mb-galaxy-tools/tools/tox_tools/baseline_calculator https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/tox_tools/dose_responses 3.0_1 r-drc 3.0_1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +dot2ct rnastructure_dot2ct Dot-Bracket to Connect Table (CT) To update Sequence Analysis, RNA dot2ct rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2ct https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dot2ct 5.7.a rnastructure 6.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +dotknot dotknot DotKnot is a heuristic method for pseudoknot prediction in a given RNA sequence To update http://dotknot.csse.uwa.edu.au/ RNA, Proteomics dotknot bgruening https://github.com/bgruening/galaxytools/tree/master/tools/rna/dotknot https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/dotknot 1.3.1 vienna_rna 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 83 True False False +dram dram_annotate, dram_distill, dram_merge_annotations, dram_neighborhoods, dram_strainer DRAM for distilling microbial metabolism to automate the curation of microbiome function dram dram DRAM Distilled and Refined Annotation of Metabolism: A tool for the annotation and curation of function for microbial and viral genomes Gene functional annotation Metagenomics, Biological databases, Molecular genetics Up-to-date https://github.com/WrightonLabCSU/DRAM Metagenomics dram iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dram https://github.com/galaxyproject/tools-iuc/tree/main/tools/dram 1.5.0 dram 1.5.0 Gene functional annotation Metagenomics, Biological databases, Molecular genetics 0 0 5 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 39 6886 True False True +drep drep_compare, drep_dereplicate dRep compares and dereplicates genome sets drep drep dRep Fast and accurate genomic comparisons that enables improved genome recovery from metagenomes through de-replication. Genome comparison Metagenomics, Genomics, Sequence analysis Up-to-date https://github.com/MrOlm/drep Metagenomics drep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/drep https://github.com/galaxyproject/tools-iuc/tree/main/tools/drep 3.5.0 drep 3.5.0 Genome comparison Metagenomics, Sequence analysis 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 46 646 True False True +droplet-barcode-plot _dropletBarcodePlot Make a cell barcode plot for droplet single-cell RNA-seq QC To update https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary Sequence Analysis droplet_barcode_plot ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/droplet-rank-plot/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/droplet-barcode-plot 1.6.1+galaxy2 scxa-plots 0.0.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 95 973 True False False +dropletutils dropletutils DropletUtils - Utilities for handling droplet-based single-cell RNA-seq data dropletutils dropletutils DropletUtils Provides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix. Loading, Community profiling Gene expression, RNA-seq, Sequencing, Transcriptomics To update https://bioconductor.org/packages/devel/bioc/html/DropletUtils.html Transcriptomics, Sequence Analysis dropletutils iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils 1.10.0 bioconductor-dropletutils 1.22.0 Sequencing, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 126 3934 True False False +dropletutils dropletutils_empty_drops, dropletutils_read_10x De-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_dropletutils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils 1.0.4 dropletutils-scripts 0.0.5 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 201 1599 True False False +ear make_ear A tool to compile assembly reports and stastics from assembly pipeline To update https://github.com/ERGA-consortium/EARs/tree/main Sequence Analysis, Assembly erga_ear bgruening https://github.com/ERGA-consortium/EARs/tree/main https://github.com/bgruening/galaxytools/tree/master/tools/ear 24.08.26 reportlab 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ectyper ectyper EC-Typer - in silico serotyping of Escherichia coli species Up-to-date https://github.com/phac-nml/ecoli_serotyping Sequence Analysis ectyper nml https://github.com/phac-nml/ecoli_serotyping https://github.com/phac-nml/galaxy_tools/tree/master/tools/ectyper 1.0.0 ectyper 1.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 53 9907 True False True +edger edger Perform RNA-Seq differential expression analysis using edgeR pipeline edger edger edgeR Differential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE. Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq To update http://bioconductor.org/packages/release/bioc/html/edgeR.html Transcriptomics, RNA, Statistics edger iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger https://github.com/galaxyproject/tools-iuc/tree/main/tools/edger 3.36.0 bioconductor-edger 4.0.16 Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 945 18117 True False False +effectiveT3 effectiveT3 Find bacterial type III effectors in protein sequences effectivet3 effectivet3 EffectiveT3 Prediction of putative Type-III secreted proteins. Sequence classification Sequence analysis To update http://effectors.org Sequence Analysis effectivet3 peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3 https://github.com/peterjc/pico_galaxy/tree/master/tools/effectiveT3 0.0.21 effectiveT3 1.0.1 Sequence classification Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +eggnog_mapper eggnog_mapper, eggnog_mapper_annotate, eggnog_mapper_search eggnog-mapper fast functional annotation of novel sequences eggnog-mapper-v2 eggnog-mapper-v2 eggNOG-mapper v2 EggNOG-mapper is a tool for fast functional annotation of novel sequences. It uses precomputed orthologous groups and phylogenies from the eggNOG database (http://eggnog5.embl.de) to transfer functional information from fine-grained orthologs only. Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrieval Metagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysis To update Proteomics eggnog_mapper galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper 2.1.8 eggnog-mapper 2.1.12 Homology-based gene prediction, Genome annotation, Fold recognition, Information extraction, Query and retrieval Metagenomics, Phylogeny, Transcriptomics, Workflows, Sequence analysis 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 3 1 0 510 30565 True False True +egsea egsea This tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testing egsea egsea EGSEA This package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing. Gene set testing Systems biology To update https://bioconductor.org/packages/release/bioc/html/EGSEA.html Transcriptomics, RNA, Statistics egsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea 1.20.0 bioconductor-egsea 1.28.0 Gene set testing Systems biology 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 177 2524 True False False +emboss_5 EMBOSS: antigenic1, EMBOSS: backtranseq2, EMBOSS: banana3, EMBOSS: biosed4, EMBOSS: btwisted5, EMBOSS: cai6, EMBOSS: cai_custom6, EMBOSS: chaos7, EMBOSS: charge8, EMBOSS: checktrans9, EMBOSS: chips10, EMBOSS: cirdna11, EMBOSS: codcmp12, EMBOSS: coderet13, EMBOSS: compseq14, EMBOSS: cpgplot15, EMBOSS: cpgreport16, EMBOSS: cusp17, EMBOSS: cutseq18, EMBOSS: dan19, EMBOSS: degapseq20, EMBOSS: descseq21, EMBOSS: diffseq22, EMBOSS: digest23, EMBOSS: dotmatcher24, EMBOSS: dotpath25, EMBOSS: dottup26, EMBOSS: dreg27, EMBOSS: einverted28, EMBOSS: epestfind29, EMBOSS: equicktandem31, EMBOSS: est2genome32, EMBOSS: etandem33, EMBOSS: extractfeat34, EMBOSS: extractseq35, EMBOSS: freak36, EMBOSS: fuzznuc37, EMBOSS: fuzzpro38, EMBOSS: fuzztran39, EMBOSS: garnier40, EMBOSS: geecee41, EMBOSS: getorf42, EMBOSS: helixturnhelix43, EMBOSS: hmoment44, EMBOSS: iep45, EMBOSS: infoseq46, EMBOSS: isochore47, EMBOSS: lindna48, EMBOSS: marscan49, EMBOSS: maskfeat50, EMBOSS: maskseq51, EMBOSS: matcher52, EMBOSS: megamerger53, EMBOSS: merger54, EMBOSS: msbar55, EMBOSS: needle56, EMBOSS: newcpgreport57, EMBOSS: newcpgseek58, EMBOSS: newseq59, EMBOSS: noreturn60, EMBOSS: notseq61, EMBOSS: nthseq62, EMBOSS: octanol63, EMBOSS: oddcomp64, EMBOSS: palindrome65, EMBOSS: pasteseq66, EMBOSS: patmatdb67, EMBOSS: pepcoil68, EMBOSS: pepinfo69, EMBOSS: pepnet70, EMBOSS: pepstats71, EMBOSS: pepwheel72, EMBOSS: pepwindow73, EMBOSS: pepwindowall74, EMBOSS: plotcon75, EMBOSS: plotorf76, EMBOSS: polydot77, EMBOSS: preg78, EMBOSS: prettyplot79, EMBOSS: prettyseq80, EMBOSS: primersearch81, EMBOSS: revseq82, EMBOSS: seqmatchall83, EMBOSS: seqret84, EMBOSS: showfeat85, EMBOSS: shuffleseq87, EMBOSS: sigcleave88, EMBOSS: sirna89, EMBOSS: sixpack90, EMBOSS: skipseq91, EMBOSS: splitter92, EMBOSS: supermatcher95, EMBOSS: syco96, EMBOSS: tcode97, EMBOSS: textsearch98, EMBOSS: tmap99, EMBOSS: tranalign100, EMBOSS: transeq101, EMBOSS: trimest102, EMBOSS: trimseq103, EMBOSS: twofeat104, EMBOSS: union105, EMBOSS: vectorstrip106, EMBOSS: water107, EMBOSS: wobble108, EMBOSS: wordcount109, EMBOSS: wordmatch110 Galaxy wrappers for EMBOSS version 5.0.0 tools emboss emboss EMBOSS Diverse suite of tools for sequence analysis; many programs analagous to GCG; context-sensitive help for each tool. Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis, Biology To update http://emboss.open-bio.org/ Sequence Analysis, Fasta Manipulation emboss_5 devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/emboss_5 https://github.com/galaxyproject/tools-iuc/tree/main/tools/emboss_5 5.0.0 emboss 6.6.0 Sequence analysis, Local alignment, Sequence alignment analysis, Global alignment, Sequence alignment Molecular biology, Sequence analysis 107 107 107 107 107 107 107 107 0 0 0 0 107 0 0 0 0 0 0 0 0 0 107 0 0 107 0 0 0 107 0 0 0 0 0 0 0 107 107 0 1816 89530 True False True +encyclopedia encyclopedia_encyclopedia, encyclopedia_fasta_to_prosit_csv, encyclopedia_library_to_blib, encyclopedia_prosit_csv_to_library, encyclopedia_quantify, encyclopedia_searchtolib, encyclopedia_walnut Mass Spec Data-Independent Acquisition (DIA) MS/MS analysis To update https://bitbucket.org/searleb/encyclopedia/wiki/Home Proteomics encyclopedia galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/encyclopedia/tools/encyclopedia https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/encyclopedia 1.12.34 encyclopedia 2.12.30 2 4 7 0 2 4 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 48 706 True False False +ete ete_gene_csv_finder, ete_genetree_splitter, ete_homology_classifier, ete_init_taxdb, ete_lineage_generator, ete3_mod, ete_species_tree_generator Analyse phylogenetic trees using the ETE Toolkit ete ete ete The Environment for Tree Exploration (ETE) is a computational framework that simplifies the reconstruction, analysis, and visualization of phylogenetic trees and multiple sequence alignments. Here, we present ETE v3, featuring numerous improvements in the underlying library of methods, and providing a novel set of standalone tools to perform common tasks in comparative genomics and phylogenetics. The new features include (i) building gene-based and supermatrix-based phylogenies using a single command, (ii) testing and visualizing evolutionary models, (iii) calculating distances between trees of different size or including duplications, and (iv) providing seamless integration with the NCBI taxonomy database. ETE is freely available at http://etetoolkit.org Phylogenetic analysis, Phylogenetic tree editing Phylogenetics To update http://etetoolkit.org/ Phylogenetics ete earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete https://github.com/TGAC/earlham-galaxytools/tree/master/tools/ete 3.1.2 ete3 3.1.1 Phylogenetic tree editing Phylogenetics 0 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 45 899 True False True +exomedepth exomedepth ExomeDepth: Calls copy number variants (CNVs) from targeted sequence data exomedepth exomedepth ExomeDepth Copy number variant (CNV) calling algorithm designed to control technical variability between samples. It calls CNVs from targeted sequence data, typically exome sequencing experiments designed to identify the genetic basis of Mendelian disorders. Sequence analysis, Variant calling, Genotyping, Copy number estimation Exome sequencing, Gene transcripts, Mapping, Sequencing, Genetic variation, Rare diseases To update https://cran.r-project.org/package=ExomeDepth Sequence Analysis, Variant Analysis exomedepth crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/exomedepth https://github.com/galaxyproject/tools-iuc/tree/main/tools/exomedepth 1.1.0 r-exomedepth 1.1.16 Sequence analysis, Variant calling, Genotyping, Copy number estimation Exome sequencing, Gene transcripts, Mapping, Genetic variation, Rare diseases 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 29 410 True False False +exonerate exonerate Exonerate is a generic tool for pairwise sequence comparison. exonerate exonerate Exonerate A tool for pairwise sequence alignment. It enables alignment for DNA-DNA and DNA-protein pairs and also gapped and ungapped alignment. Pairwise sequence alignment, Protein threading, Genome alignment Sequence analysis, Sequence sites, features and motifs, Molecular interactions, pathways and networks Up-to-date https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate Sequence Analysis exonerate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/exonerate https://github.com/galaxyproject/tools-iuc/tree/main/tools/exonerate 2.4.0 exonerate 2.4.0 Pairwise sequence alignment, Protein threading, Genome alignment Sequence analysis, Sequence sites, features and motifs, Molecular interactions, pathways and networks 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 59 988 True False False +exparna exparna ExpaRNA is a fast, motif-based comparison and alignment tool for RNA molecules. Up-to-date http://rna.informatik.uni-freiburg.de/ExpaRNA/Input.jsp RNA exparna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/exparna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/exparna 1.0.1 exparna 1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +export2graphlan export2graphlan export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn export2graphlan export2graphlan export2graphlan export2graphlan is a conversion software tool for producing both annotation and tree file for GraPhlAn. In particular, the annotation file tries to highlight specific sub-trees deriving automatically from input file what nodes are important. Conversion Taxonomy, Metabolomics, Biomarkers To update https://bitbucket.org/CibioCM/export2graphlan/overview Metagenomics export2graphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/export2graphlan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/export2graphlan 0.20 export2graphlan 0.22 Conversion Taxonomy, Metabolomics, Biomarkers 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 5265 True False True +express express Quantify the abundances of a set of target sequences from sampled subsequences To update RNA express devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/express https://github.com/galaxyproject/tools-devteam/tree/main/tools/express 1.1.1 eXpress 1.5.1 0 1 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 325 True False False +ez_histograms ez_histograms ggplot2 histograms and density plots To update https://github.com/tidyverse/ggplot2 Visualization, Statistics ez_histograms artbio https://github.com/artbio/tools-artbio/tree/main/tools/ez_histograms https://github.com/ARTbio/tools-artbio/tree/main/tools/ez_histograms 3.4.4 r-ggplot2 2.2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False True +falco falco A high throughput sequence QC analysis tool falco falco Falco A high-speed FastQC emulation for quality control of sequencing data. Sequencing quality control, Visualisation, Read mapping Workflows, Mapping, Imaging To update https://github.com/smithlabcode/falco/ Sequence Analysis falco iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/falco https://github.com/galaxyproject/tools-iuc/tree/main/tools/falco 1.2.2+galaxy1 falco 1.2.3 Sequencing quality control, Visualisation, Read mapping Workflows, Mapping, Imaging 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fargene fargene fARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) fargene fargene fARGene fARGene (Fragmented Antibiotic Resistance Gene iENntifiEr ) is a tool that takes either fragmented metagenomic data or longer sequences as input and predicts and delivers full-length antiobiotic resistance genes as output. Antimicrobial resistance prediction Metagenomics, Microbiology, Public health and epidemiology Up-to-date https://github.com/fannyhb/fargene Sequence Analysis fargene iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fargene https://github.com/galaxyproject/tools-iuc/tree/main/tools/fargene 0.1 fargene 0.1 Antimicrobial resistance prediction Metagenomics, Microbiology, Public health and epidemiology 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 52 459 True False True +fasta2bed fasta2bed Convert multiple fasta file into tabular bed file format To update https://github.com/phac-nml/galaxy_tools Sequence Analysis fasta2bed nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/fasta2bed 1.0.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fasta_extract fa-extract-sequence extract single fasta from multiple fasta file To update https://toolshed.g2.bx.psu.edu/view/nml/fasta_extract Sequence Analysis fasta_extract nml https://toolshed.g2.bx.psu.edu/view/nml/fasta_extract https://github.com/phac-nml/galaxy_tools/tree/master/tools/fasta_extract 1.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 10 True False False +fasta_filter_by_id fasta_filter_by_id Filter FASTA sequences by ID (DEPRECATED) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation fasta_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/fasta_filter_by_id 0.0.7 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fasta_nucleotide_color_plot fasta_nucleotide_color_plot Contains a tool that produces a graphical representation of FASTA data with each nucleotide represented by a selected color. To update https://github.com/seqcode/cegr-tools/tree/master/src/org/seqcode/cegrtools/fourcolorplot Visualization fasta_nucleotide_color_plot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_nucleotide_color_plot https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_nucleotide_color_plot 1.0.1 openjdk 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 15 160 True False False +fasta_stats fasta-stats Display summary statistics for a fasta file. To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_stats/ Sequence Analysis fasta_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasta_stats/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_stats 2.0 numpy 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1080 35336 True False False +fastani fastani Fast alignment-free computation of whole-genome Average Nucleotide Identity fastani fastani FastANI FastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies. Genome alignment, Sequence similarity search Microbiology, Genetic variation To update https://github.com/ParBLiSS/FastANI Sequence Analysis fastani iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastani https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastani 1.3 fastani 1.34 Genome alignment, Sequence similarity search Microbiology, Genetic variation 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 250 3498 True False True +fastg2protlib fastg2protlib-peptides, fastg2protlib-validate Generate FASTA from FASTG To update https://github.com/galaxyproteomics/fastg2protlib.git Proteomics fastg2protlib galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlib https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fastg2protlib 1.0.2 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 28 True False False +fastk fastk_fastk FastK: A K-mer counter (for HQ assembly data sets) To update https://github.com/thegenemyers/FASTK Assembly fastk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastk 1.0.0 fastk 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +fastp fastp Fast all-in-one preprocessing for FASTQ files fastp fastp fastp A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance. Sequencing quality control, Sequence contamination filtering Sequence analysis, Probes and primers Up-to-date https://github.com/OpenGene/fastp Sequence Analysis fastp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastp https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastp 0.23.4 fastp 0.23.4 Sequence contamination filtering Probes and primers 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 1 2803 1055760 True False True +fastq_filter_by_id fastq_filter_by_id Filter FASTQ sequences by ID (DEPRECATED) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id Fastq Manipulation, Sequence Analysis, Text Manipulation fastq_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_filter_by_id 0.0.7 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fastq_pair_names fastq_pair_names Extract FASTQ paired read names To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names Sequence Analysis fastq_pair_names peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_pair_names 0.0.5 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fastq_paired_unpaired fastq_paired_unpaired Divide FASTQ file into paired and unpaired reads To update https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired Sequence Analysis, Text Manipulation fastq_paired_unpaired peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired https://github.com/peterjc/pico_galaxy/tree/master/tools/fastq_paired_unpaired 0.1.5 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fastq_provider fastq_provider Retrieval and download of FASTQ files from ENA and other repositories such as HCA. To update https://github.com/ebi-gene-expression-group/atlas-fastq-provider Data Source, RNA, Transcriptomics atlas_fastq_provider ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_provider https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider 0.4.4 atlas-fastq-provider 0.4.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fastq_utils fastq_filter_n, fastq_trim_poly_at Set of tools for handling fastq files To update https://github.com/nunofonseca/fastq_utils Transcriptomics, RNA fastq_utils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utils https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils 0.25.1+galaxy0 fastq_utils 0.25.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fastqc_stats FastQC_Summary Summary multiple FastQC into a single tabular line report To update https://github.com/phac-nml/galaxy_tools Sequence Analysis fastqc_stats nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/fastqc_stats 1.2 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fastqe fastqe FASTQE fastqe fastqe FASTQE Compute quality stats for FASTQ files and print those stats as emoji... for some reason. Sequencing quality control Sequence analysis, Sequencing To update https://fastqe.com/ Sequence Analysis fastqe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastqe https://github.com/galaxyproject/tools-iuc/tree/main/tools/fastqe 0.3.1+galaxy0 fastqe 0.3.1 Sequencing quality control Sequence analysis, Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1266 4333 True False True +fasttree fasttree FastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences - GVL fasttree fasttree FastTree Infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide or protein sequences. Phylogenetic tree generation (from molecular sequences), Phylogenetic tree generation (maximum likelihood and Bayesian methods) Phylogenetics, Sequence analysis To update http://www.microbesonline.org/fasttree/ Phylogenetics fasttree iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fasttree https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasttree 2.1.10 fasttree 2.1.11 Phylogenetics 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 379 55434 True False True +feature_alignment feature_alignment TRIC integrates information from all available runs via a graph-based alignment strategy Up-to-date Proteomics feature_alignment galaxyp https://github.com/msproteomicstools/msproteomicstools/blob/master/TRIC-README.md https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/feature_alignment 0.11.0 msproteomicstools 0.11.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 18 True False False +featurecounter featureCoverage1 Feature coverage To update Sequence Analysis, Variant Analysis featurecounter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/featurecounter https://github.com/galaxyproject/tools-devteam/tree/main/tools/featurecounter 2.0.0 bx-python 0.12.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 22385 True False False +featurecounts featurecounts featureCounts counts the number of reads aligned to defined masked regions in a reference genome featurecounts featurecounts FeatureCounts featureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package. Read summarisation, RNA-Seq quantification RNA-Seq To update http://bioinf.wehi.edu.au/featureCounts RNA, Transcriptomics, Sequence Analysis featurecounts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts https://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts 2.0.3 subread 2.0.6 Read summarisation, RNA-Seq quantification RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4679 696399 True False True +feelnc feelnc Galaxy wrapper for FEELnc feelnc feelnc FEELnc A tool to annotate long non-coding RNAs from RNA-seq assembled transcripts. Annotation, Classification RNA-seq, Functional, regulatory and non-coding RNA To update https://github.com/tderrien/FEELnc Sequence Analysis feelnc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/feelnc https://github.com/galaxyproject/tools-iuc/tree/main/tools/feelnc 0.2.1 feelnc 0.2 Annotation, Classification Functional, regulatory and non-coding RNA 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 46 1191 True False False +feht feht Automatically identify makers predictive of groups. To update https://github.com/phac-nml/galaxy_tools Sequence Analysis feht nml https://github.com/phac-nml/galaxy_tools https://github.com/phac-nml/galaxy_tools/tree/master/tools/feht 0.1.0 feht 1.1.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fermikit fermi2, fermikit_variants FermiKit is a de novo assembly based variant calling pipeline for deep Illumina resequencing data. Up-to-date https://github.com/lh3/fermikit Assembly, Variant Analysis fermikit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fermikit https://github.com/galaxyproject/tools-iuc/tree/main/tools/fermikit r193 fermi2 r193 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fgsea fgsea Perform gene set testing using fgsea fgsea fgsea fgsea The package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction. Gene-set enrichment analysis Genetics To update https://bioconductor.org/packages/release/bioc/html/fgsea.html Visualization, Transcriptomics, Statistics fgsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fgsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea 1.8.0+galaxy1 bioconductor-fgsea 1.28.0 Gene-set enrichment analysis Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 307 5240 True False False +filter_by_fasta_ids filter_by_fasta_ids Filter FASTA on the headers and/or the sequences To update Fasta Manipulation, Proteomics filter_by_fasta_ids galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/filter_by_fasta_ids 2.3 python 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 426 26274 True False False +filter_density filterdensity Filter out position based on distance between SNVs Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis filter_density nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_density 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +filter_spades_repeats filter_spades_repeat Remove short and repeat contigs/scaffolds To update https://github.com/phac-nml/galaxy_tools/ Assembly filter_spades_repeats nml https://github.com/phac-nml/galaxy_tools/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/filter_spades_repeats 1.0.1 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +filter_stats filterstat SNVPhyl filter_stats Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis filter_stats nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_stats 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +filter_transcripts_via_tracking filter_combined_via_tracking Filter Combined Transcripts To update RNA filter_transcripts_via_tracking devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/filter_transcripts_via_tracking https://github.com/galaxyproject/tools-devteam/tree/main/tools/filter_transcripts_via_tracking 0.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 20 True False False +filter_vcf filtervcf SNVPhyl filter_vcf Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis filter_vcf nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/filter_vcf 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +filtlong filtlong Filtlong - Filtering long reads by quality filtlong filtlong Filtlong Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter. Filtering, Sequencing quality control Up-to-date https://github.com/rrwick/Filtlong Fastq Manipulation, Sequence Analysis filtlong iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/filtlong https://github.com/galaxyproject/tools-iuc/tree/main/tools/filtlong 0.2.1 filtlong 0.2.1 Filtering, Sequencing quality control 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 617 30483 True False True +find_diag_hits find_diag_hits Find diagnostic hits To update https://bitbucket.org/natefoo/taxonomy Metagenomics find_diag_hits devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/find_diag_hits https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/find_diag_hits 1.0.0 taxonomy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 69 True False False +find_repeats findrepeat Find repetitive regions on a reference genome using MUMMer Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis find_repeats nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/find_repeats 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +fisher_test fishertest Fisher's exact test on two-column hit lists. To update http://artbio.fr RNA, Statistics fishertest artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_test https://github.com/ARTbio/tools-artbio/tree/main/tools/fisher_test 2.32.0+galaxy0 bioconductor-qvalue 2.34.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +flair flair_collapse, flair_correct FLAIR (Full-Length Alternative Isoform analysis of RNA) for the correction, isoform definition, and alternative splicing analysis of noisy reads. To update https://github.com/BrooksLabUCSC/flair Nanopore flair iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flair https://github.com/galaxyproject/tools-iuc/tree/main/tools/flair 1.5 flair 2.0.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 14 331 True False False +flash flash Fast Length Adjustment of SHort reads flash flash FLASH Identifies paired-end reads which overlap in the middle, converting them to single long reads Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly Up-to-date https://ccb.jhu.edu/software/FLASH/ Assembly, Fastq Manipulation flash iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/flash https://github.com/galaxyproject/tools-iuc/tree/main/tools/flash 1.2.11 flash 1.2.11 Read pre-processing, Sequence merging, Sequence assembly Sequencing, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 74 13759 True False False +flashlfq flashlfq FlashLFQ mass-spectrometry proteomics label-free quantification flashlfq flashlfq FlashLFQ FlashLFQ is an ultrafast label-free quantification algorithm for mass-spectrometry proteomics. Label-free quantification Proteomics experiment, Proteomics To update https://github.com/smith-chem-wisc/FlashLFQ Proteomics flashlfq galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/flashlfq 1.0.3.1 flashlfq 1.2.6 Label-free quantification Proteomics experiment, Proteomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 17 645 True False True +flye flye Assembly of long and error-prone reads. Flye Flye Flye Flye is a de novo assembler for single molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. It is designed for a wide range of datasets, from small bacterial projects to large mammalian-scale assemblies. The package represents a complete pipeline: it takes raw PB / ONT reads as input and outputs polished contigs. Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing, Genomics To update https://github.com/fenderglass/Flye/ Assembly flye bgruening https://github.com/bgruening/galaxytools/tree/master/tools/flye https://github.com/bgruening/galaxytools/tree/master/tools/flye 2.9.4 flye 2.9.5 Genome assembly, De-novo assembly, Mapping assembly, Cross-assembly Sequence assembly, Metagenomics, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1499 20904 True False True +format_metaphlan2_output format_metaphlan2_output Format MetaPhlAn2 output to extract abundance at different taxonomic levels format_metaphlan2_output format_metaphlan2_output Format metaphlan2 output This tool format output file of MetaPhlan2 containing community content (abundance) at all taxonomic levels (from kingdom to strains). Formatting Taxonomy, Metagenomics To update Metagenomics format_metaphlan2_output bebatut https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output/ https://github.com/bgruening/galaxytools/tree/master/tools/format_metaphlan2_output 0.2.0 Formatting Taxonomy, Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 166 5588 True False True +fraggenescan fraggenescan Tool for finding (fragmented) genes in short read fraggenescan fraggenescan FragGeneScan Application for finding (fragmented) genes in short reads Gene prediction Genetics, Sequence analysis To update https://sourceforge.net/projects/fraggenescan/ Sequence Analysis fraggenescan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fraggenescan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/fraggenescan fraggenescan 1.31 Gene prediction Genetics, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 68 1102 True False True +fragpipe fragpipe Data analysis for mass spectrometry-based proteomics. Up-to-date https://fragpipe.nesvilab.org/ Proteomics fragpipe galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fragpipe https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/fragpipe 20.0 fragpipe 20.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +freyja freyja_aggregate_plot, freyja_boot, freyja_demix, freyja_variants lineage abundances estimation freyja freyja Freyja Recover relative lineage abundances from mixed SARS-CoV-2 samples from a sequencing dataset RNA-Seq quantification Metagenomics To update https://github.com/andersen-lab/Freyja Metagenomics, Sequence Analysis freyja iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/freyja https://github.com/galaxyproject/tools-iuc/tree/main/tools/freyja 1.4.4 freyja 1.5.1 RNA-Seq quantification Metagenomics 2 0 4 0 2 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 55 20021 True False True +frogs FROGS_affiliation_filters, FROGS_affiliation_postprocess, FROGS_affiliation_stats, FROGS_biom_to_stdBiom, FROGS_biom_to_tsv, FROGS_cluster_filters, FROGS_cluster_stats, FROGS_clustering, FROGS_demultiplex, FROGSSTAT_DESeq2_Preprocess, FROGSSTAT_DESeq2_Visualisation, FROGSFUNC_step2_functions, FROGSFUNC_step3_pathways, FROGSFUNC_step1_placeseqs, FROGS_itsx, FROGS_normalisation, FROGSSTAT_Phyloseq_Alpha_Diversity, FROGSSTAT_Phyloseq_Beta_Diversity, FROGSSTAT_Phyloseq_Sample_Clustering, FROGSSTAT_Phyloseq_Composition_Visualisation, FROGSSTAT_Phyloseq_Import_Data, FROGSSTAT_Phyloseq_Multivariate_Analysis_Of_Variance, FROGSSTAT_Phyloseq_Structure_Visualisation, FROGS_preprocess, FROGS_remove_chimera, FROGS_taxonomic_affiliation, FROGS_Tree, FROGS_tsv_to_biom Suite for metabarcoding analysis frogs frogs FROGS The user-friendly and Galaxy-supported pipeline FROGS analyses large sets of DNA amplicons sequences accurately and rapidly, essential for microbe community studies. Taxonomic classification Metagenomics, Microbial ecology, Taxonomy, Evolutionary biology, Sequencing To update http://frogs.toulouse.inrae.fr/ Metagenomics frogs frogs https://github.com/geraldinepascal/FROGS-wrappers/ https://github.com/geraldinepascal/FROGS-wrappers/tree/master/tools/frogs 4.1.0 frogs 5.0.0 Taxonomic classification Metagenomics, Microbial ecology, Taxonomy, Evolutionary biology, Sequencing 0 0 0 28 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +funannotate funannotate_annotate, funannotate_clean, funannotate_compare, funannotate_predict, funannotate_sort Funannotate is a genome prediction, annotation, and comparison software package. funannotate funannotate funannotate funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes). Genome annotation Genomics To update https://funannotate.readthedocs.io Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/funannotate 1.8.15 Genome annotation Genomics 3 5 5 5 3 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 900 5906 True False True +garnett garnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_file De-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_garnett ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett 0.2.8 garnett-cli 0.0.5 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 27 True False False +gblocks gblocks Gblocks Up-to-date http://molevol.cmima.csic.es/castresana/Gblocks.html Sequence Analysis gblocks earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblocks https://github.com/TGAC/earlham-galaxytools/tree/master/tools/gblocks 0.91b gblocks 0.91b 0 1 0 1 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +gdal gdal_gdal_merge, gdal_gdal_translate, gdal_gdaladdo, gdal_gdalbuildvrt, gdal_gdalinfo, gdal_gdalwarp, gdal_ogr2ogr, gdal_ogrinfo Geospatial Data Abstraction Library tools are all dedicated to manipulate raster and vector geospatial data formats. To update https://www.gdal.org Ecology gdal ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal https://github.com/galaxyecology/tools-ecology/tree/master/tools/gdal 3.0.0 0 0 8 8 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 10 1475 True False False +gecko gecko Ungapped genome comparison Up-to-date https://github.com/otorreno/gecko Sequence Analysis gecko iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gecko https://github.com/galaxyproject/tools-iuc/tree/main/tools/gecko 1.2 gecko 1.2 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 112 519 True False False +gemini gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_db_info, gemini_@BINARY@, gemini_@BINARY@, gemini_inheritance, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@, gemini_@BINARY@ GEMINI: a flexible framework for exploring genome variation gemini gemini GEMINI GEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics. Sequence analysis, Genetic variation analysis Sequence analysis To update https://github.com/arq5x/gemini Sequence Analysis, Next Gen Mappers gemini iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gemini https://github.com/galaxyproject/tools-iuc/tree/main/tools/gemini 0.20.1 gemini 0.30.2 Sequence analysis, Genetic variation analysis Sequence analysis 1 2 2 2 1 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 662 4916 True False False +geneiobio gene_iobio_display_generation_iframe Gene.iobio is an interactive tool for variant and trio analysis. To update https://github.com/iobio/gene.iobio Sequence Analysis geneiobio iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/geneiobio https://github.com/galaxyproject/tools-iuc/tree/main/tools/geneiobio 4.7.1+galaxy1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 67 True False False +generate_pc_lda_matrix generate_matrix_for_pca_and_lda1 Generate a Matrix for using PC and LDA To update Sequence Analysis generate_pc_lda_matrix devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/generate_pc_lda_matrix https://github.com/galaxyproject/tools-devteam/tree/main/tools/generate_pc_lda_matrix 1.0.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 119 True False False +genomad genomad_end_to_end Identify virus and plasmid genomes from nucleotide sequences genomad genomad geNomad geNomad is a tool that identifies virus and plasmid genomes from nucleotide sequences. It provides state-of-the-art classification performance and can be used to quickly find mobile genetic elements from genomes, metagenomes, or metatranscriptomes. Sequence annotation, Taxonomic classification Sequence analysis Up-to-date https://github.com/apcamargo/genomad/ Metagenomics genomad ufz https://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/longorf/ https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/genomad 1.8.0 genomad 1.8.0 Sequence annotation, Taxonomic classification Sequence analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +genomic_super_signature genomic_super_signature Interpretation of RNAseq experiments through robust, efficient comparison to public databases genomicsupersignature genomicsupersignature GenomicSuperSignature GenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases. Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment To update https://github.com/shbrief/GenomicSuperSignature Sequence Analysis, RNA, Transcriptomics genomic_super_signature iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signature https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature 1.2.0 bioconductor-genomicsupersignature 1.10.0 Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 11 46 True False False +get_orfs_or_cdss get_orfs_or_cdss Search nucleotide sequences for open reading frames (ORFs), or coding sequences (CDSs) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss Sequence Analysis get_orfs_or_cdss peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss https://github.com/peterjc/pico_galaxy/tree/master/tools/get_orfs_or_cdss 0.2.3 biopython 1.70 0 1 1 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 15 186 True False False +getindelrates_3way indelRates_3way Estimate Indel Rates for 3-way alignments To update Sequence Analysis, Variant Analysis getindelrates_3way devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/getindelrates_3way https://github.com/galaxyproject/tools-devteam/tree/main/tools/getindelrates_3way 1.0.0 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +getindels_2way getIndels_2way Fetch Indels from pairwise alignments To update Sequence Analysis, Variant Analysis getindels_2way devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/getindels_2way https://github.com/galaxyproject/tools-devteam/tree/main/tools/getindels_2way 1.0.0 numpy 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +getmlst getmlst Download MLST datasets by species from pubmlst.org To update Sequence Analysis getmlst nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/getmlst 0.1.4.1 srst2 0.2.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +getorganelle get_annotated_regions_from_gb, get_organelle_from_reads GetOrganelle - This toolkit assembles organelle genomes from genomic skimming data. getorganelle getorganelle GetOrganelle A fast and versatile toolkit for accurate de novo assembly of organelle genomes.This toolkit assemblies organelle genome from genomic skimming data. De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms Up-to-date https://github.com/Kinggerm/GetOrganelle Assembly getorganelle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/getorganelle https://github.com/galaxyproject/tools-iuc/tree/main/tools/getorganelle 1.7.7.1 getorganelle 1.7.7.1 De-novo assembly, Genome assembly, Mapping assembly, Mapping, Sequence trimming Cell biology, Sequence assembly, Whole genome sequencing, Plant biology, Model organisms 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 18 495 True False False +gfastats gfastats Tool for generating sequence statistics and simultaneous genome assembly file manipulation. gfastats gfastats gfastats gfastats is a single fast and exhaustive tool for summary statistics and simultaneous genome assembly file manipulation. gfastats also allows seamless fasta/fastq/gfa conversion. Data handling Computational biology Up-to-date https://github.com/vgl-hub/gfastats Sequence Analysis gfastats bgruening https://github.com/bgruening/galaxytools/tree/master/tools/gfastats https://github.com/bgruening/galaxytools/tree/master/tools/gfastats 1.3.6 gfastats 1.3.6 Data handling Computational biology 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 418 8159 True False False +gff3_rebase gff3.rebase Rebase a GFF against a parent GFF (e.g. an original genome) To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/gff3_rebase Sequence Analysis gff3_rebase iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gff3_rebase https://github.com/galaxyproject/tools-iuc/tree/main/tools/gff3_rebase 1.2 bcbiogff 0.6.6 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 135 True False False +gffread gffread gffread filters and/or converts GFF3/GTF2 records gffread gffread gffread program for filtering, converting and manipulating GFF files Sequence annotation Nucleic acids, Sequence analysis Up-to-date http://ccb.jhu.edu/software/stringtie/gff.shtml#gffread/ Sequence Analysis gffread devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffread https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffread 0.12.7 gffread 0.12.7 Sequence annotation Nucleic acids, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 680 10995 True False False +ggplot2 ggplot2_heatmap, ggplot2_pca, ggplot2_histogram, ggplot2_point, ggplot2_violin ggplot2 is a system for declaratively creating graphics, based on The Grammar of Graphics.You provide the data, tell ggplot2 how to map variables to aesthetics, what graphical primitives to use,and it takes care of the details. ggplot2 ggplot2 ggplot2 Plotting system for R, based on the grammar of graphics. Visualisation Data visualisation To update https://github.com/tidyverse/ggplot2 Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/ggplot2 3.4.0 r-base Visualisation Data visualisation 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 1 0 5 0 0 0 0 0 0 3 0 0 0 0 0 0 0 5 5 0 1388 22148 True False True +gi2taxonomy Fetch Taxonomic Ranks Fetch taxonomic representation gi2taxonomy gi2taxonomy gi2taxonomy The tool fetches taxonomic information for a list of sequence identifiers (i.e. GI numbers, as used by the National Center for Biotechnology Information (NCBI). Database search, ID mapping Taxonomy To update https://bitbucket.org/natefoo/taxonomy Metagenomics gi2taxonomy devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/gi2taxonomy https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/gi2taxonomy 1.1.1 taxonomy 0.10.0 Database search, ID mapping Taxonomy 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 27 660 True False True +glimmer glimmer_acgt_content, glimmer_build_icm, glimmer_extract, glimmer_gbk_to_orf, glimmer_glimmer_to_gff, glimmer_long_orfs, glimmer_knowledge_based, glimmer_not_knowledge_based Glimmer makes gene predictions. gemini gemini GEMINI GEMINI (GEnome MINIng) is a flexible framework for exploring genetic variation in the context of the wealth of genome annotations available for the human genome. By placing genetic variants, sample phenotypes and genotypes, as well as genome annotations into an integrated database framework, GEMINI provides a simple, flexible, and powerful system for exploring genetic variation for disease and population genetics. Sequence analysis, Genetic variation analysis Sequence analysis To update https://ccb.jhu.edu/software/glimmer/ Sequence Analysis bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/glimmer glimmer 3.02 Sequence analysis, Genetic variation analysis Sequence analysis 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 187 3965 True False True +glimmer_hmm GlimmerHMM is a new gene finder based on a Generalized Hidden Markov Model (GHMM) To update https://ccb.jhu.edu/software/glimmerhmm/ Sequence Analysis glimmer_hmm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm https://github.com/bgruening/galaxytools/tree/master/tools/glimmer_hmm 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +gmaj gmaj_1 GMAJ Multiple Alignment Viewer To update Visualization gmaj devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/gmaj https://github.com/galaxyproject/tools-devteam/tree/main/tools/gmaj 2.0.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 11 True False False +goenrichment goenrichment, goslimmer Performs GO Enrichment analysis. goenrichment goenrichment GOEnrichment GOEnrichment is a tool for performing GO enrichment analysis of gene sets, such as those obtained from RNA-seq or Microarray experiments, to help characterize them at the functional level. It is available in Galaxy Europe and as a stand-alone tool.GOEnrichment is flexible in that it allows the user to use any version of the Gene Ontology and any GO annotation file they desire. To enable the use of GO slims, it is accompanied by a sister tool GOSlimmer, which can convert annotation files from full GO to any specified GO slim.The tool features an optional graph clustering algorithm to reduce the redundancy in the set of enriched GO terms and simplify its output.It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian de Ciência. Gene-set enrichment analysis Transcriptomics Up-to-date https://github.com/DanFaria/GOEnrichment Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/goenrichment https://github.com/galaxyproject/tools-iuc/tree/main/tools/goenrichment 2.0.1 goenrichment 2.0.1 Gene-set enrichment analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 408 5484 True False True +goseq goseq goseq does selection-unbiased testing for category enrichment amongst differentially expressed (DE) genes for RNA-seq data goseq goseq GOseq Detect Gene Ontology and/or other user defined categories which are over/under represented in RNA-seq data. Gene functional annotation RNA-Seq To update https://bioconductor.org/packages/release/bioc/html/goseq.html Statistics, RNA, Micro-array Analysis goseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/goseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/goseq 1.50.0 bioconductor-goseq 1.54.0 Gene functional annotation RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1210 19167 True False True +gotohscan rbc_gotohscan Find subsequences in db To update Sequence Analysis gotohscan rnateam https://github.com/bgruening/galaxytools/tree/master/tools/gotohscan https://github.com/bgruening/galaxytools/tree/master/tools/gotohscan 1.3.0 gotohscan 1.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 71 True False False +graphclust graphclust GraphClust can be used for structural clustering of RNA sequences. To update http://www.bioinf.uni-freiburg.de/Software/GraphClust/ RNA graphclust bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphclust https://github.com/bgruening/galaxytools/tree/master/tools/graphclust 0.1 GraphClust 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 True False False +graphlan graphlan, graphlan_annotate GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees graphlan graphlan GraPhlAn GraPhlAn is a software tool for producing high-quality circular representations of taxonomic and phylogenetic trees. GraPhlAn focuses on concise, integrative, informative, and publication-ready representations of phylogenetically- and taxonomically-driven investigation. Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classification Metagenomics, Phylogenetics, Phylogenomics, Cladistics To update https://github.com/biobakery/graphlan Metagenomics, Graphics, Phylogenetics graphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/graphlan graphlan 1.1.3 Phylogenetic inference, Phylogenetic tree visualisation, Phylogenetic tree editing, Taxonomic classification Metagenomics, Phylogenetics, Phylogenomics, Cladistics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 432 9277 True False True +graphmap graphmap_align, graphmap_overlap Mapper for long, error-prone reads. graphmap graphmap graphmap Splice-aware RNA-seq mapper for long reads | GraphMap - A highly sensitive and accurate mapper for long, error-prone reads http://www.nature.com/ncomms/2016/160415/ncomms11307/full/ncomms11307.html https://www.biorxiv.org/content/10.1101/720458v1 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing To update https://github.com/isovic/graphmap/ Assembly graphmap bgruening https://github.com/bgruening/galaxytools/tree/master/tools/graphmap https://github.com/bgruening/galaxytools/tree/master/tools/graphmap 0.5.2 graphmap 0.6.3 Sequence trimming, EST assembly, Read mapping Gene transcripts, RNA-Seq, RNA splicing 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 136 6651 True False True +graphprot graphprot_predict_profile GraphProt models binding preferences of RNA-binding proteins. To update https://github.com/dmaticzka/GraphProt Sequence Analysis, RNA, CLIP-seq graphprot rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/graphprot https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/graphprot 1.1.7+galaxy2 graphprot 1.1.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 474 True False False +gsc_high_dimensions_visualisation high_dimensions_visualisation Generates PCA, t-SNE and HCPC visualisation To update http://artbio.fr Transcriptomics, Visualization gsc_high_dimensions_visualisation artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualization https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation 4.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +gtdb_to_taxdump gtdb_to_taxdump Convert GTDB taxonomy to NCBI taxdump format gtdb_to_taxdump gtdb_to_taxdump gtdb_to_taxdump Tool with multiple functions. Main functions are to create a DIAMOND database from the GTDB taxonomy data or create a NCBI taxdump format out of this data. This tool can also create a mapping between the taxonomy classification between GTDB and NCBI. Data handling, Mapping, Generation Computational biology Up-to-date https://github.com/nick-youngblut/gtdb_to_taxdump Metagenomics gtdb_to_taxdump iuc https://github.com/nick-youngblut/gtdb_to_taxdump https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdb_to_taxdump 0.1.9 gtdb_to_taxdump 0.1.9 Data handling, Mapping, Generation Computational biology 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gtdbtk gtdbtk_classify_wf GTDB-Tk is a software tool kit for assigning objective taxonomic classifications to bacterial and archaeal genomesbased on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds orthousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can alsobe applied to isolate and single-cell genomes. GTDB-Tk GTDB-Tk GTDB-Tk a toolkit to classify genomes with the Genome Taxonomy Database.GTDB-Tk: a toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes.GTDB-Tk is a software toolkit for assigning objective taxonomic classifications to bacterial and archaeal genomes based on the Genome Database Taxonomy GTDB. It is designed to work with recent advances that allow hundreds or thousands of metagenome-assembled genomes (MAGs) to be obtained directly from environmental samples. It can also be applied to isolate and single-cell genomes. The GTDB-Tk is open source and released under the GNU General Public License (Version 3). Genome alignment, Taxonomic classification, Sequence assembly, Query and retrieval Metagenomics, Taxonomy, Phylogenetics, Database management, Proteins To update https://github.com/Ecogenomics/GTDBTk Metagenomics gtdbtk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gtdbtk https://github.com/galaxyproject/tools-iuc/tree/main/tools/gtdbtk 2.3.2 gtdbtk 2.4.0 Genome alignment, Taxonomic classification, Sequence assembly, Query and retrieval Metagenomics, Taxonomy, Phylogenetics, Database management, Proteins 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +gtf-2-gene-list _ensembl_gtf2gene_list Utility to extract annotations from Ensembl GTF files. To update https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary Sequence Analysis gtf2gene_list ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/gtf-2-gene-list/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/gtf-2-gene-list 1.52.0+galaxy0 atlas-gene-annotation-manipulation 1.1.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 155 1678 True False False +gubbins gubbins Gubbins - bacterial recombination detection gubbins gubbins Gubbins Gubbins is a tool for rapid phylogenetic analysis of large samples of recombinant bacterial whole genome sequences. Genotyping, Phylogenetic inference, Ancestral reconstruction Phylogeny, Genotype and phenotype, Whole genome sequencing To update Sequence Analysis gubbins iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gubbins https://github.com/galaxyproject/tools-iuc/tree/main/tools/gubbins 3.2.1 gubbins 3.3.5 Genotyping, Phylogenetic inference, Ancestral reconstruction Phylogeny, Genotype and phenotype, Whole genome sequencing 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 145 3340 True False True +guppy guppy-basecaller A wrapper for the guppy basecaller tool from Oxford Nanopore Technologies To update http://artbio.fr Nanopore guppy_basecaller artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy https://github.com/ARTbio/tools-artbio/tree/main/tools/guppy 6.5.7+galaxy0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +gwastools gwastools_manhattan_plot gwastools gwastools GWASTools Classes for storing very large GWAS data sets and annotation, and functions for GWAS data cleaning and analysis. Deposition, Analysis, Annotation GWAS study To update https://bioconductor.org/packages/release/bioc/html/GWASTools.html Visualization, Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/gwastools 0.1.0 bioconductor-gwastools 1.48.0 Deposition, Analysis, Annotation GWAS study 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 True False False +hamronization hamronize_summarize, hamronize_tool Convert AMR gene detection tool output to hAMRonization specification format. hamronization hamronization hAMRonization Parse multiple Antimicrobial Resistance Analysis Reports into a common data structure Data handling, Antimicrobial resistance prediction, Parsing Public health and epidemiology, Microbiology, Bioinformatics Up-to-date https://github.com/pha4ge/hAMRonization Sequence Analysis hamronization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hamronization https://github.com/galaxyproject/tools-iuc/tree/main/tools/hamronization 1.1.4 hamronization 1.1.4 Antimicrobial resistance prediction, Parsing Public health and epidemiology, Microbiology, Bioinformatics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 117 4459 True False True +hansel bio_hansel Heidelberg and Enteritidis SNP Elucidation Biohansel Biohansel BioHansel BioHansel is a tool for performing high-resolution genotyping of bacterial isolates by identifying phylogenetically informative single nucleotide polymorphisms (SNPs), also known as canonical SNPs, in whole genome sequencing (WGS) data. The application uses a fast k-mer matching algorithm to map pathogen WGS data to canonical SNPs contained in hierarchically structured schemas and assigns genotypes based on the detected SNP profile. Genotyping, SNP detection, Genome assembly Whole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural science Up-to-date https://github.com/phac-nml/bio_hansel Sequence Analysis bio_hansel iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hansel https://github.com/galaxyproject/tools-iuc/tree/main/tools/hansel 2.6.1 bio_hansel 2.6.1 Genotyping, SNP detection, Genome assembly Whole genome sequencing, DNA polymorphism, Genotype and phenotype, Infectious disease, Agricultural science 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 18 339 True False True +hapcut2 hapcut2 Robust and accurate haplotype assembly for diverse sequencing technologies hapcut2 hapcut2 HapCUT2 "HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to ""just work"" with excellent speed and accuracy across a range of long- and short-read sequencing technologies.The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.md" Haplotype mapping, Variant classification Up-to-date https://github.com/vibansal/HapCUT2 Assembly hapcut2 galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapcut2 1.3.4 hapcut2 1.3.4 Haplotype mapping, Variant classification 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +hapog hapog Hapo-G - Haplotype-Aware Polishing of Genomes hapog hapog Hapo-G Hapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes. Genome assembly, Optimisation and refinement Sequence assembly, Genomics Up-to-date https://github.com/institut-de-genomique/HAPO-G Assembly hapog iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hapog https://github.com/galaxyproject/tools-iuc/tree/main/tools/hapog 1.3.8 hapog 1.3.8 Genome assembly, Optimisation and refinement Sequence assembly, Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 295 True False False +hardklor hardklor, kronik Hardklör To update Proteomics hardklor galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/hardklor https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/hardklor 2.30.1+galaxy1 hardklor 2.3.2 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 111 True False False +hcluster_sg hcluster_sg Hierarchically clustering on a sparse graph To update https://github.com/douglasgscofield/hcluster Phylogenetics hcluster_sg earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg 0.5.1.1 hcluster_sg 0.5.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 238 True False False +hcluster_sg_parser hcluster_sg_parser Converts hcluster_sg 3-column output into lists of ids To update https://github.com/TGAC/earlham-galaxytools/ Phylogenetics hcluster_sg_parser earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg_parser https://github.com/TGAC/earlham-galaxytools/tree/master/tools/hcluster_sg_parser 0.2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 290 True False False +heatmap2 ggplot2_heatmap2 heatmap.2 function from the R gplots package To update https://github.com/cran/gplots Visualization ggplot2_heatmap2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/heatmap2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/heatmap2 3.1.3.1 r-gplots 2.17.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1953 44240 True False False +heinz heinz_bum, heinz, heinz_scoring, heinz_visualization An algorithm for identification of the optimal scoring subnetwork. heinz bionet, heinz Heinz Tool for single-species active module discovery. Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks To update https://github.com/ls-cwi/heinz Transcriptomics, Visualization, Statistics heinz iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz https://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz 1.0 bioconductor-bionet 1.62.0 Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 242 1186 True False False +helixer helixer Gene calling with Deep Neural Networks helixer helixer Helixer Deep Learning to predict gene annotations Gene prediction, Genome annotation Sequence analysis, Gene transcripts To update https://github.com/weberlab-hhu/Helixer Genome annotation helixer genouest https://github.com/genouest/galaxy-tools/tree/master/tools/helixer https://github.com/genouest/galaxy-tools/tree/master/tools/helixer 0.3.3 Gene prediction, Genome annotation Sequence analysis, Gene transcripts 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 93 True False False +hgv_fundo hgv_funDo FunDO human genes associated with disease terms To update Sequence Analysis hgv_fundo devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_fundo https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/hgv_fundo 1.0.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 True False False +hgv_hilbertvis hgv_hilbertvis HVIS visualization of genomic data with the Hilbert curve To update https://www.ebi.ac.uk/huber-srv/hilbert/ Graphics, Visualization hgv_hilbertvis devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/hgv/hgv_hilbertvis https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/hgv/hgv_hilbertvis 1.0.0 R 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 True False False +hicexplorer hicexplorer_chicaggregatestatistic, hicexplorer_chicdifferentialtest, hicexplorer_chicexportdata, hicexplorer_chicplotviewpoint, hicexplorer_chicqualitycontrol, hicexplorer_chicsignificantinteractions, hicexplorer_chicviewpoint, hicexplorer_chicviewpointbackgroundmodel, hicexplorer_hicadjustmatrix, hicexplorer_hicaggregatecontacts, hicexplorer_hicaverageregions, hicexplorer_hicbuildmatrix, hicexplorer_hiccomparematrices, hicexplorer_hiccompartmentspolarization, hicexplorer_hicconvertformat, hicexplorer_hiccorrectmatrix, hicexplorer_hiccorrelate, hicexplorer_hicdetectloops, hicexplorer_hicdifferentialtad, hicexplorer_hicfindrestrictionsites, hicexplorer_hicfindtads, hicexplorer_hichyperoptDetectLoops, hicexplorer_hicinfo, hicexplorer_hicinterintratad, hicexplorer_hicmergedomains, hicexplorer_hicmergeloops, hicexplorer_hicmergematrixbins, hicexplorer_hicnormalize, hicexplorer_hicpca, hicexplorer_hicplotaverageregions, hicexplorer_hicplotdistvscounts, hicexplorer_hicplotmatrix, hicexplorer_hicplotsvl, hicexplorer_hicplotviewpoint, hicexplorer_hicquickqc, hicexplorer_hicsummatrices, hicexplorer_hictransform, hicexplorer_hicvalidatelocations HiCExplorer: Set of programs to process, analyze and visualize Hi-C data. Up-to-date https://github.com/deeptools/HiCExplorer Sequence Analysis, Visualization hicexplorer bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer https://github.com/galaxyproject/tools-iuc/tree/main/tools/hicexplorer 3.7.5 hicexplorer 3.7.5 38 38 38 4 38 38 38 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 36 33 0 1085 66003 True False False +hicstuff hicstuff_pipeline A toolkit to generate and manipulate Hi-C matrices To update https://github.com/koszullab/hicstuff Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicstuff https://github.com/galaxyproject/tools-iuc/tree/main/tools/hicstuff 3.1.5 hicstuff 3.2.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +hifiasm hifiasm A fast haplotype-resolved de novo assembler Up-to-date https://github.com/chhylp123/hifiasm Assembly hifiasm bgruening https://github.com/bgruening/galaxytools/tree/master/tools/hifiasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm 0.19.9 hifiasm 0.19.9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 297 1410 True False False +hifiasm_meta hifiasm_meta A hifiasm fork for metagenome assembly using Hifi reads. hifiasm-meta hifiasm-meta Hifiasm-meta Hifiasm_meta - de novo metagenome assembler, based on hifiasm, a haplotype-resolved de novo assembler for PacBio Hifi reads. Sequence assembly Sequence assembly, Metagenomics To update https://github.com/xfengnefx/hifiasm-meta Metagenomics hifiasm_meta galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/hifiasm_meta https://github.com/galaxyproject/tools-iuc/tree/main/tools/hifiasm_meta 0.3.1 hifiasm_meta hamtv0.3.1 Sequence assembly Sequence assembly, Metagenomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 137 True False True +high_dim_heatmap high_dim_heatmap gplot heatmap.2 function adapted for plotting large heatmaps To update https://github.com/cran/gplots Visualization high_dim_heatmap artbio https://github.com/artbio/tools-artbio/tree/main/tools/high_dim_heatmap https://github.com/ARTbio/tools-artbio/tree/main/tools/high_dim_heatmap 3.1.3+galaxy0 r-gplots 2.17.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +hirondelle_crim_ogc_api_processes hirondelle_crim This tool is a wrapper for OGC API Processes coming from https://osf.io/gfbws/. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper https://github.com/galaxyecology/tools-ecology/tree/master/tools/hirondelle_crim_ogc_api_processes 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +hisat hisat HISAT is a fast and sensitive spliced alignment program. To update http://ccb.jhu.edu/software/hisat/index.shtml Assembly hisat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/hisat https://github.com/galaxyproject/tools-devteam/tree/main/tools/hisat 1.0.3 hisat 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 228 True False False +hisat2 hisat2 HISAT2 is a fast and sensitive spliced alignment program. hisat2 hisat2 HISAT2 Alignment program for mapping next-generation sequencing reads (both DNA and RNA) to a population of human genomes (as well as to a single reference genome). Sequence alignment RNA-seq Up-to-date http://ccb.jhu.edu/software/hisat2/ Assembly hisat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hisat2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hisat2 2.2.1 hisat2 2.2.1 Sequence alignment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 4183 299104 True False False +hivtrace hivtrace An application that identifies potential transmission clusters within a supplied FASTA file with an option to find potential links against the Los Alamos HIV Sequence Database. To update Sequence Analysis hivtrace nml https://github.com/phac-nml/galaxy_tools/tree/tools/hivtrace https://github.com/phac-nml/galaxy_tools/tree/master/tools/hivtrace 1.0.1 hivtrace 1.5.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +hmmer3 hmmer_alimask, hmmer_hmmalign, hmmer_hmmbuild, hmmer_hmmconvert, hmmer_hmmemit, hmmer_hmmfetch, hmmer_hmmscan, hmmer_hmmsearch, hmmer_jackhmmer, hmmer_nhmmer, hmmer_nhmmscan, hmmer_phmmer HMMER is used for searching sequence databases for homologs of proteinsequences, and for making protein sequence alignments. It implementsmethods using probabilistic models called profile hidden Markov models(profile HMMs). hmmer3 hmmer3 HMMER3 This tool is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models. The new HMMER3 project, HMMER is now as fast as BLAST for protein search. Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Sequence generation, Data retrieval, Statistical calculation, Database search, Formatting, Database search, Database search, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Database search, Sequence database search Sequence analysis, Sequence sites, features and motifs, Gene and protein families Up-to-date http://hmmer.org/ Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/hmmer3 3.4 hmmer 3.4 Formatting, Multiple sequence alignment, Sequence profile generation, Format validation, Conversion, Data retrieval, Statistical calculation, Formatting, Probabilistic sequence generation, Statistical calculation, Statistical calculation, Sequence database search, Formatting, Sequence database search, Sequence database search Sequence analysis, Sequence sites, features and motifs, Gene and protein families 0 12 12 12 0 12 12 12 0 0 0 0 12 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 0 439 33702 True False True +homer homer_annotatePeaks, homer_findMotifs, homer_findMotifsGenome, homer_gtf_to_annotations, homer_scanMotifGenomeWide HOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and next-gen sequencing analysis. homer homer homer HOMER contains a novel motif discovery algorithm that was designed for regulatory element analysis in genomics applications (DNA only, no protein). It is a differential motif discovery algorithm, which means that it takes two sets of sequences and tries to identify the regulatory elements that are specifically enriched in on set relative to the other. It uses ZOOPS scoring (zero or one occurrence per sequence) coupled with the hypergeometric enrichment calculations (or binomial) to determine motif enrichment. HOMER also tries its best to account for sequenced bias in the dataset. It was designed with ChIP-Seq and promoter analysis in mind, but can be applied to pretty much any nucleic acids motif finding problem. Sequence motif discovery Up-to-date http://homer.ucsd.edu/homer/index.html Sequence Analysis data_manager_homer_preparse iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/homer https://github.com/galaxyproject/tools-iuc/tree/main/tools/homer 4.11 homer 4.11 Sequence motif discovery 0 0 5 4 0 0 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 5 0 0 394 6937 True False False +homer Software for motif discovery and next generation sequencing analysis. To update http://homer.salk.edu/homer/ Sequence Analysis homer bgruening https://github.com/bgruening/galaxytools/tree/master/tools/homer https://github.com/bgruening/galaxytools/tree/master/tools/homer 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +htseq-clip htseq_clip htseq-clip is a toolset for the analysis of eCLIP/iCLIP datasets To update https://github.com/EMBL-Hentze-group/htseq-clip Sequence Analysis, RNA, CLIP-seq htseq_clip rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/htseq-clip https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/htseq-clip 0.1.0+galaxy0 htseq-clip 2.19.0b0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 15 77 True False False +htseq_count htseq_count Count aligned reads (SAM/BAM) that overlap genomic features (GFF) htseq htseq HTSeq Python framework to process and analyse high-throughput sequencing (HTS) data Nucleic acid sequence analysis Sequence analysis Up-to-date https://readthedocs.org/projects/htseq/ Genomic Interval Operations, SAM, Sequence Analysis, RNA htseq_count lparsons https://github.com/galaxyproject/tools-iuc/tree/master/tools/htseq_count https://github.com/galaxyproject/tools-iuc/tree/main/tools/htseq_count 2.0.5 htseq 2.0.5 Nucleic acid sequence analysis Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1419 154533 True False False +humann humann, humann_associate, humann_barplot, humann_join_tables, humann_reduce_table, humann_regroup_table, humann_rename_table, humann_renorm_table, humann_rna_dna_norm, humann_split_stratified_table, humann_split_table, humann_strain_profiler, humann_unpack_pathways HUMAnN for functionally profiling metagenomes and metatranscriptomes at species-level resolution humann humann humann HUMAnN is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data (typically millions of short DNA/RNA reads). This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question “What are the microbes in my community-of-interest doing (or are capable of doing)?” Species frequency estimation, Taxonomic classification, Phylogenetic analysis Metagenomics, Phylogenomics To update http://huttenhower.sph.harvard.edu/humann Metagenomics humann iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/humann https://github.com/galaxyproject/tools-iuc/tree/main/tools/humann 3.8 humann 3.9 Species frequency estimation, Taxonomic classification, Phylogenetic analysis Metagenomics, Phylogenomics 6 13 13 13 6 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 13 0 1045 19521 True False True +hybpiper hybpiper Analyse targeted sequence capture data HybPiper HybPiper HybPiper Paralogs and off-target sequences improve phylogenetic resolution in a densely-sampled study of the breadfruit genus (Artocarpus, Moraceae).Recovering genes from targeted sequence capture data.Current version: 1.3.1 (August 2018).-- Read our article in Applications in Plant Sciences (Open Access).HybPiper was designed for targeted sequence capture, in which DNA sequencing libraries are enriched for gene regions of interest, especially for phylogenetics. HybPiper is a suite of Python scripts that wrap and connect bioinformatics tools in order to extract target sequences from high-throughput DNA sequencing reads. Sequence trimming, Sequence assembly, Read mapping Phylogenetics, Plant biology, Gene transcripts, Sequence assembly, Phylogenomics To update https://github.com/mossmatters/HybPiper Sequence Analysis, Phylogenetics hybpiper iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hybpiper https://github.com/galaxyproject/tools-iuc/tree/main/tools/hybpiper 2.1.6 hybpiper 2.2.0 Sequence trimming, Sequence assembly, Read mapping Phylogenetics, Plant biology, Gene transcripts, Sequence assembly, Phylogenomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +hyphy hyphy_absrel, hyphy_annotate, hyphy_bgm, hyphy_busted, hyphy_cfel, hyphy_conv, hyphy_fade, hyphy_fel, hyphy_fubar, hyphy_gard, hyphy_meme, hyphy_prime, hyphy_relax, hyphy_slac, hyphy_sm19, hyphy_strike_ambigs, hyphy_summary Hypothesis Testing using Phylogenies HyPhy HyPhy HyPhy Software package for the analysis of genetic sequences using techniques in phylogenetics, molecular evolution, and machine learning. Statistical calculation Phylogeny, Small molecules, Molecular interactions, pathways and networks To update http://www.hyphy.org Phylogenetics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hyphy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/hyphy 2.5.47 hyphy 2.5.62 Statistical calculation Phylogeny, Small molecules, Molecular interactions, pathways and networks 17 2 17 2 17 2 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 17 12 0 161 10370 True False True +hypo hypo Super Fast & Accurate Polisher for Long Read Genome Assemblies HyPo HyPo HyPo HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes. Optimisation and refinement, Genome assembly Sequence assembly, Genomics Up-to-date https://github.com/kensung-lab/hypo Assembly hypo iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/hypo https://github.com/galaxyproject/tools-iuc/tree/main/tools/hypo 1.0.3 hypo 1.0.3 Optimisation and refinement, Genome assembly Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 39 354 True False True +icescreen icescreen ICEscreen identifies Integrative Conjugative Elements (ICEs) and Integrative Mobilizable Elements (IMEs) in Bacillota genomes. icescreen icescreen ICEscreen A tool to detect Firmicute ICEs and IMEs, isolated or enclosed in composite structures. Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation To update https://icescreen.migale.inrae.fr/ Genome annotation icescreen iuc https://forgemia.inra.fr/ices_imes_analysis/icescreen https://github.com/galaxyproject/tools-iuc/tree/main/tools/icescreen 1.3.1 icescreen 1.3.2 Database search, Protein feature detection Mobile genetic elements, Sequence sites, features and motifs, Genomics, Molecular interactions, pathways and networks, Structural variation 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +idba_ud idba_hybrid, idba_tran, idba_ud Wrappers for the idba assembler variants. idba idba IDBA A short read assembler based on iterative De Bruijn graph. It is developed under 64-bit Linux, but should be suitable for all unix-like system. Sequence assembly Sequence assembly To update https://i.cs.hku.hk/~alse/hkubrg/projects/index.html Assembly idba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idba_ud https://github.com/galaxyproject/tools-iuc/tree/main/tools/idba_ud idba 1.1.3 Sequence assembly Sequence assembly 3 0 3 3 3 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 69 1127 True False True +idconvert idconvert Convert mass spectrometry identification files on linux or MacOSX To update Proteomics idconvert galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/idconvert proteowizard 3_0_9992 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 275 True False False +idr idr Galaxy wrappers for the IDR package from Nathan Boleu To update https://github.com/nboley/idr Sequence Analysis idr iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/idr/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/idr 2.0.3 idr 2.0.4.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 30 2873 True False False +iedb_api iedb_api Get epitope binding predictions from IEDB-API To update http://tools.immuneepitope.org/main/tools-api/ Data Source, Sequence Analysis iedb_api iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/iedb_api https://github.com/galaxyproject/tools-iuc/tree/main/tools/iedb_api 2.15.2 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 12 1506 True False False +illumina_methylation_analyser illumina_methylation_analyser Methylation analyzer for Illumina 450k DNA emthylation microarrays To update https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser Sequence Analysis illumina_methylation_analyser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser https://github.com/bgruening/galaxytools/tree/master/tools/illumina_methylation_analyser 0.1 Rscript 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +improviser proteomics_improviser Visualisation of PepXML files To update http://www.improviser.uni-freiburg.de/ Proteomics proteomics_improviser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviser https://github.com/bgruening/galaxytools/tree/master/tools/proteomics/improviser 1.1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +indels_3way indels_3way Fetch Indels from 3-way alignments To update Sequence Analysis indels_3way devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/indels_3way https://github.com/galaxyproject/tools-devteam/tree/main/tools/indels_3way 1.0.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 22 True False False +infernal infernal_cmalign, infernal_cmbuild, infernal_cmpress, infernal_cmscan, infernal_cmsearch, infernal_cmstat "Infernal (""INFERence of RNA ALignment"") is for searching DNA sequence databases for RNA structure and sequence similarities." infernal infernal Infernal "Infernal (""INFERence of RNA ALignment"") is for searching DNA sequence databases for RNA structure and sequence similarities. It is an implementation of a special case of profile stochastic context-free grammars called covariance models (CMs). A CM is like a sequence profile, but it scores a combination of sequence consensus and RNA secondary structure consensus, so in many cases, it is more capable of identifying RNA homologs that conserve their secondary structure more than their primary sequence." Nucleic acid feature detection Sequence sites, features and motifs, Structural genomics To update http://infernal.janelia.org/ RNA infernal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/infernal https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/infernal 1.1.4 infernal 1.1.5 Nucleic acid feature detection Sequence sites, features and motifs, Structural genomics 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 67 100294 True False True +inforna INFO-RNA is a service for the design of RNA sequences that fold into a given pseudo-knot free RNA secondary structure. To update http://rna.informatik.uni-freiburg.de/INFORNA/Input.jsp RNA inforna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/inforna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/inforna 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +instagraal instagraal Large genome reassembly based on Hi-C data instagraal instagraal instaGRAAL Chromosome-level quality scaffolding of brown algal genomes using InstaGRAAL.Large genome reassembly based on Hi-C data, continuation of GRAAL.Large genome reassembly based on Hi-C data (continuation and partial rewrite of GRAAL) and post-scaffolding polishing libraries.This work is under continuous development/improvement - see GRAAL for information about the basic principles.sudo pip3 install -e git+https://github.com/koszullab/instagraal.git@master#egg=instagraal.Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it is unclear when it is going to be added, if it is to be added at all. This means instaGRAAL (or indeed any CUDA-based application) will not work on Mojave. If you wish to run it on OS X, the only solution for now is to downgrade to High Sierra (10.13) Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites To update https://github.com/koszullab/instaGRAAL Assembly instagraal bgruening https://github.com/bgruening/galaxytools/tree/master/tools/instagraal https://github.com/bgruening/galaxytools/tree/master/tools/instagraal 0.1.6 Genome assembly, Mapping assembly, Genetic mapping, Scaffolding Sequence assembly, Mapping, Metagenomics, Statistics and probability, DNA binding sites 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 139 True False False +instrain instrain_compare, instrain_profile InStrain is a tool for analysis of co-occurring genome populations from metagenomes instrain instrain InStrain InStrain is a tool for analysis of co-occurring genome populations from metagenomes that allows highly accurate genome comparisons, analysis of coverage, microdiversity, and linkage, and sensitive SNP detection with gene localization and synonymous non-synonymous identification SNP detection, Genome comparison Mapping, Metagenomics To update https://instrain.readthedocs.io/en/latest/# Metagenomics instrain iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/instrain https://github.com/galaxyproject/tools-iuc/tree/main/tools/instrain 1.5.3 instrain 1.9.0 SNP detection, Genome comparison Mapping, Metagenomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 94 True False True +intarna intarna Efficient RNA-RNA interaction prediction incorporating accessibility and seeding of interaction sites. Up-to-date https://github.com/BackofenLab/IntaRNA RNA intarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/intarna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/intarna 3.4.0 intarna 3.4.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 7569 True False False +integron_finder integron_finder """IntegronFinder identify integrons with high accuracy and sensitivity.It searches for attC sites using covariance models, for integron-integrases using HMM profiles, and for other features (promoters, attI site) using pattern matching""" integron_finder integron_finder Integron Finder A tool to detect Integron in DNA sequences. Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotation Functional genomics, Mobile genetic elements, Molecular biology, Sequence analysis Up-to-date https://github.com/gem-pasteur/Integron_Finder Sequence Analysis integronfinder iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/integron_finder https://github.com/galaxyproject/tools-iuc/tree/main/tools/integron_finder 2.0.5 integron_finder 2.0.5 Nucleic acid feature detection, Sequence motif recognition, Protein feature detection, Genome annotation Functional genomics, Mobile genetic elements, Molecular biology, Sequence analysis 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 58 52965 True False True +interpolation interpolation_run_idw_interpolation Run IDW interpolation based on a .csv and .geojson file To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation 1.0 r-getopt 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +interproscan interproscan Interproscan queries the interpro database and provides annotations. interproscan_ebi interproscan_ebi InterProScan (EBI) Scan sequences against the InterPro protein signature databases. Sequence motif recognition, Protein feature detection Gene and protein families, Sequence analysis To update http://www.ebi.ac.uk/Tools/pfa/iprscan5/ Sequence Analysis interproscan bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/interproscan https://github.com/galaxyproject/tools-iuc/tree/main/tools/interproscan 5.59-91.0 interproscan 5.59_91.0 Sequence motif recognition, Protein feature detection Gene and protein families, Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 677 35243 True False True +iprscan5 Interproscan queries the interpro database and provides annotations. To update http://www.ebi.ac.uk/Tools/pfa/iprscan5/ Sequence Analysis iprscan5 bgruening https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5 https://github.com/bgruening/galaxytools/tree/master/tools/iprscan5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +iqtree iqtree Efficient phylogenomic software by maximum likelihood iqtree iqtree iqtree A fast and effective stochastic algorithm to infer phylogenetic trees by maximum likelihood. IQ-TREE compares favorably to RAxML and PhyML in terms of likelihoods with similar computing time Phylogenetic analysis, Sequence analysis Phylogenetics Up-to-date http://www.iqtree.org/ Phylogenetics iqtree iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/iqtree/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/iqtree 2.3.6 iqtree 2.3.6 Phylogenetic analysis, Sequence analysis Phylogenetics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 681 21598 True False True +isescan isescan """ISEScan is a pipeline to identify IS (Insertion Sequence) elements in genome and metagenomebased on profile hidden Markov models constructed from manually curated IS elements.""" ISEScan ISEScan ISEScan Automated identification of insertion sequence elements in prokaryotic genomes. Structural variation detection Genomics, DNA structural variation, Sequence analysis, Genetic variation To update https://github.com/xiezhq/ISEScan Sequence Analysis ISEScan iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/isescan https://github.com/galaxyproject/tools-iuc/tree/main/tools/isescan 1.7.2.3 isescan 1.7.2.1 Structural variation detection Genomics, Sequence analysis, Genetic variation 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 50 57581 True False True +isoformswitchanalyzer isoformswitchanalyzer Statistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms. IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR Enables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well. Sequence comparison, Sequence analysis Computational biology, Gene transcripts To update https://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.html Transcriptomics, RNA, Statistics isoformswitchanalyzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer 1.20.0 bioconductor-isoformswitchanalyzer 2.2.0 Sequence comparison, Sequence analysis Computational biology, Gene transcripts 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 29 822 True False False +isoplot isoplot Isoplot is a software for the visualisation of MS data from C13 labelling experiments To update Metabolomics, Visualization isoplot workflow4metabolomics https://github.com/llegregam/Isoplot/tree/main https://github.com/workflow4metabolomics/tools-metabolomics/tree/master/tools/isoplot 1.3.0+galaxy1 isoplot 1.3.1 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 2 True False False +itsx itsx ITSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences. ITSx ITSx ITSx TSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences, which is commonly used as a molecular barcode for e.g. fungi. As the inclusion of parts of the neighbouring, very conserved, ribosomal genes (SSU, 5S and LSU rRNA sequences) in the sequence identification process can lead to severely misleading results, ITSx identifies and extracts only the ITS regions themselves. Sequence feature detection Functional, regulatory and non-coding RNA, Microbiology Up-to-date https://microbiology.se/software/itsx/ Metagenomics itsx bgruening https://github.com/bgruening/galaxytools/tree/master/tools/itsx https://github.com/bgruening/galaxytools/tree/master/tools/itsx 1.1.3 itsx 1.1.3 Sequence feature detection Functional, regulatory and non-coding RNA, Microbiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 38 868 True False True +ivar ivar_consensus, ivar_filtervariants, ivar_removereads, ivar_trim, ivar_variants iVar is a computational package that contains functions broadly useful for viral amplicon-based sequencing Up-to-date https://github.com/andersen-lab/ivar Sequence Analysis ivar iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ivar/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/ivar 1.4.3 ivar 1.4.3 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 4 0 0 0 4 0 0 0 0 0 0 0 5 5 0 1171 1224275 True False True +jbrowse jbrowse_to_standalone, jbrowse JBrowse Genome Browser integrated as a Galaxy Tool jbrowse jbrowse JBrowse Slick, speedy genome browser with a responsive and dynamic AJAX interface for visualization of genome data. Being developed by the GMOD project as a successor to GBrowse. Genome visualisation Genomics Up-to-date https://jbrowse.org Sequence Analysis jbrowse iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse https://github.com/galaxyproject/tools-iuc/tree/main/tools/jbrowse 1.16.11 jbrowse 1.16.11 Genome visualisation Genomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 2346 18229 True False True +jbrowse2 jbrowse2 JBrowse2 Genome Browser integrated as a Galaxy Tool jbrowse_2 jbrowse_2 JBrowse 2 Modular genome browser with views of synteny and structural variation. Genome visualisation, Structure visualisation, Pathway visualisation Mapping, Structural variation, Genomics, Gene structure, Sequence assembly To update https://jbrowse.org Sequence Analysis jbrowse2 fubar https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse2 https://github.com/bgruening/galaxytools/tree/master/tools/jbrowse2 2.13.1 jbrowse2 2.14.0 Genome visualisation, Structure visualisation, Pathway visualisation Mapping, Structural variation, Genomics, Gene structure, Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +jcvi_gff_stats jcvi_gff_stats Compute statistics from a genome annotation in GFF3 format (using JCVI Python utilities) To update https://github.com/tanghaibao/jcvi Sequence Analysis jcvi_gff_stats iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jcvi_gff_stats https://github.com/galaxyproject/tools-iuc/tree/main/tools/jcvi_gff_stats 0.8.4 jcvi 1.4.16 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 2469 True False False +jellyfish jellyfish Jellyfish is a tool for fast, memory-efficient counting of k-mers in DNA Jellyfish Jellyfish Jellyfish A command-line algorithm for counting k-mers in DNA sequence. k-mer counting Sequence analysis, Genomics To update https://github.com/gmarcais/Jellyfish Assembly jellyfish iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/jellyfish https://github.com/galaxyproject/tools-iuc/tree/main/tools/jellyfish kmer-jellyfish 2.3.1 k-mer counting Sequence analysis, Genomics 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 91 1138 True False True +kaptive kaptive Kaptive reports information about capsular (K) loci found in genome assemblies. To update Sequence Analysis kaptive nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/kaptive 0.3.0 kaptive 3.0.0b5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +kat_filter kat_@EXECUTABLE@ Filtering kmers or reads from a database of kmers hashes To update Sequence Analysis kat_filter nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/kat_filter 2.3 kat 2.4.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +kc-align kc-align Kc-Align custom tool kc-align kc-align kc-align A fast and accurate tool for performing codon-aware multiple sequence alignments Multiple sequence alignment Mapping Up-to-date https://github.com/davebx/kc-align Sequence Analysis kc_align iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kc-align https://github.com/galaxyproject/tools-iuc/tree/main/tools/kc-align 1.0.2 kcalign 1.0.2 Multiple sequence alignment Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 363 True False True +khmer khmer_abundance_distribution_single, khmer_abundance_distribution, khmer_count_median, khmer_partition, khmer_extract_partitions, khmer_filter_abundance, khmer_filter_below_abundance_cutoff, khmer_normalize_by_median In-memory nucleotide sequence k-mer counting, filtering, graph traversal and more khmer khmer khmer khmer is a set of command-line tools for working with DNA shotgun sequencing data from genomes, transcriptomes, metagenomes, and single cells. khmer can make de novo assemblies faster, and sometimes better. khmer can also identify (and fix) problems with shotgun data. Standardisation and normalisation, De-novo assembly Sequence assembly Up-to-date https://khmer.readthedocs.org/ Assembly, Next Gen Mappers khmer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer https://github.com/galaxyproject/tools-iuc/tree/main/tools/khmer 3.0.0a3 khmer 3.0.0a3 Standardisation and normalisation, De-novo assembly Sequence assembly 8 8 8 0 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 8 8 0 63 2022 True False True +kinwalker Kinwalker splits the folding process into a series of events where each event can either be a folding event or a transcription event. To update http://www.bioinf.uni-leipzig.de/Software/Kinwalker/ RNA kinwalker rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/kinwalker https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/kinwalker 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +kleborate kleborate Screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) kleborate kleborate Kleborate Genomic surveillance framework and global population structure for Klebsiella pneumoniae.Kleborate is a tool to screen genome assemblies of Klebsiella pneumoniae and the Klebsiella pneumoniae species complex (KpSC) for:.A manuscript describing the Kleborate software in full is currently in preparation. In the meantime, if you use Kleborate, please cite the preprint: Lam, MMC. et al. Genomic surveillance framework and global population structure for Klebsiella pneumoniae. bioRxiv (2020). Multilocus sequence typing, Genome assembly, Virulence prediction Public health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing To update https://github.com/katholt/Kleborate/wiki Metagenomics kleborate iuc https://github.com/katholt/Kleborate https://github.com/galaxyproject/tools-iuc/tree/main/tools/kleborate 2.3.2 kleborate 3.0.6 Multilocus sequence typing, Genome assembly, Virulence prediction Public health and epidemiology, Metagenomics, Population genomics, Sequence assembly, Whole genome sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 38 319 True False True +kofamscan kofamscan Gene function annotation tool based on KEGG Orthology and hidden Markov model kofamscan kofamscan kofamscan KofamScan is a gene function annotation tool based on KEGG Orthology and hidden Markov model. You need KOfam database to use this tool. Sequence analysis, Gene functional annotation Genomics Up-to-date https://github.com/takaram/kofam_scan Sequence Analysis kofamscan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kofamscan https://github.com/galaxyproject/tools-iuc/tree/main/tools/kofamscan 1.3.0 kofamscan 1.3.0 Sequence analysis, Gene functional annotation Genomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 33 594 True False True +kraken kraken-filter, kraken-mpa-report, kraken-report, kraken-translate, kraken Kraken is a system for assigning taxonomic labels to short DNAsequences, usually obtained through metagenomic studies. Previous attempts by otherbioinformatics software to accomplish this task have often used sequence alignmentor machine learning techniques that were quite slow, leading to the developmentof less sensitive but much faster abundance estimation programs. Kraken aims toachieve high sensitivity and high speed by utilizing exact alignments of k-mersand a novel classification algorithm. kraken kraken Kraken System for assigning taxonomic labels to short DNA sequences, usually obtained through metagenomic studies. Previous attempts by other bioinformatics software to accomplish this task have often used sequence alignment or machine learning techniques that were quite slow, leading to the development of less sensitive but much faster abundance estimation programs. It aims to achieve high sensitivity and high speed by utilizing exact alignments of k-mers and a novel classification algorithm. Taxonomic classification Taxonomy, Metagenomics To update http://ccb.jhu.edu/software/kraken/ Metagenomics kraken devteam https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken/ https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken kraken 1.1.1 Taxonomic classification Taxonomy, Metagenomics 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 5 0 1209 33778 True False True +kraken2 kraken2 Kraken2 for taxonomic designation. kraken2 kraken2 kraken2 Kraken 2 is the newest version of Kraken, a taxonomic classification system using exact k-mer matches to achieve high accuracy and fast classification speeds. This classifier matches each k-mer within a query sequence to the lowest common ancestor (LCA) of all genomes containing the given k-mer. The k-mer assignments inform the classification algorithm. Taxonomic classification Taxonomy, Metagenomics Up-to-date http://ccb.jhu.edu/software/kraken/ Metagenomics kraken2 iuc https://github.com/galaxyproject/tools-iuc/blob/master/tool_collections/kraken2/kraken2/ https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/kraken2/kraken2 2.1.3 kraken2 2.1.3 Taxonomic classification Taxonomy, Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 2367 185308 True False True +kraken2tax Kraken2Tax Convert Kraken output to Galaxy taxonomy data. To update https://bitbucket.org/natefoo/taxonomy Metagenomics kraken2tax devteam https://github.com/galaxyproject/tools-devteam/blob/master/tool_collections/taxonomy/kraken2tax/ https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/kraken2tax 1.2+galaxy0 gawk 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 481 14683 True False True +kraken_biom kraken_biom Create BIOM-format tables (http://biom-format.org) from Kraken output (http://ccb.jhu.edu/software/kraken/) Up-to-date https://github.com/smdabdoub/kraken-biom Metagenomics kraken_biom iuc https://github.com/smdabdoub/kraken-biom https://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_biom 1.2.0 kraken-biom 1.2.0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 182 1444 True False True +kraken_taxonomy_report kraken_taxonomy_report Kraken taxonomy report Kraken-Taxonomy-Report Kraken-Taxonomy-Report Kraken-Taxonomy-Report view report of classification for multiple samples Visualisation, Classification Metagenomics, Taxonomy To update https://github.com/blankenberg/Kraken-Taxonomy-Report Metagenomics kraken_taxonomy_report iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kraken_taxonomy_report https://github.com/galaxyproject/tools-iuc/tree/main/tools/kraken_taxonomy_report 0.0.3 biopython 1.70 Visualisation, Classification Metagenomics, Taxonomy 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 354 2527 True False True +krakentools krakentools_alpha_diversity, krakentools_beta_diversity, krakentools_combine_kreports, krakentools_extract_kraken_reads, krakentools_kreport2krona, krakentools_kreport2mpa KrakenTools is a suite of scripts to be used alongside the Kraken krakentools krakentools KrakenTools KrakenTools provides individual scripts to analyze Kraken/Kraken2/Bracken/KrakenUniq output files Visualisation, Aggregation Taxonomy, Metagenomics Up-to-date https://github.com/jenniferlu717/KrakenTools Metagenomics krakentools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/krakentools https://github.com/galaxyproject/tools-iuc/tree/main/tools/krakentools 1.2 krakentools 1.2 Visualisation, Aggregation Taxonomy, Metagenomics 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 1 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 703 16525 True False True +krocus krocus Predict MLST directly from uncorrected long reads krocus krocus krocus Predict MLST directly from uncorrected long reads Multilocus sequence typing, k-mer counting Public health and epidemiology To update https://github.com/quadram-institute-bioscience/krocus Sequence Analysis krocus iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/krocus https://github.com/galaxyproject/tools-iuc/tree/main/tools/krocus 1.0.1 krocus 1.0.3 Multilocus sequence typing, k-mer counting Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +labels bg_labels remaps and annotates alignments To update https://github.com/bgruening/galaxytools/tree/master/tools/labels Sequence Analysis labels bgruening https://github.com/bgruening/galaxytools/tree/master/tools/labels https://github.com/bgruening/galaxytools/tree/master/tools/labels 1.0.5.0 labels 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +last last_al, last_db, last_split, last_train, last_maf_convert LAST finds similar regions between sequences. last last LAST Short read alignment program incorporating quality scores Sequence alignment Genomics, Comparative genomics To update http://last.cbrc.jp/ Sequence Analysis last iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/last https://github.com/galaxyproject/tools-iuc/tree/main/tools/last 1205 last 1574 Sequence alignment Comparative genomics 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 41 227 True False False +lca_wrapper lca1 Find lowest diagnostic rank To update https://bitbucket.org/natefoo/taxonomy Metagenomics lca_wrapper devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/lca_wrapper https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/lca_wrapper 1.0.1 taxonomy 0.10.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 137 True False True +legsta legsta Performs in silico Legionella pneumophila sequence based typing. legsta legsta legsta Performs in silico Legionella pneumophila sequence based typing Sequence analysis Public health and epidemiology Up-to-date https://github.com/tseemann/legsta Sequence Analysis legsta iuc https://github.com/tseemann/legsta https://github.com/galaxyproject/tools-iuc/tree/main/tools/legsta 0.5.1 legsta 0.5.1 Sequence analysis Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 7 55 True False True +length_and_gc_content length_and_gc_content Gets gene length and gc content from a fasta and a GTF file To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content Fasta Manipulation, Statistics, RNA, Micro-array Analysis length_and_gc_content iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/length_and_gc_content https://github.com/galaxyproject/tools-iuc/tree/main/tools/length_and_gc_content 0.1.2 r-optparse 1.3.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 322 4090 True False False +lfq_protein_quant lfq_protein_quant Enable protein summarisation and quantitation To update https://github.com/compomics/LFQ_galaxy_p Proteomics lfq_protein_quant galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quant https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/lfq_protein_quant 1.0 bioconductor-msnbase 2.28.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 111 True False False +lighter lighter Lighter is a kmer-based error correction method for whole genome sequencing data lighter lighter Lighter Kmer-based error correction method for whole genome sequencing data. Lighter uses sampling (rather than counting) to obtain a set of kmers that are likely from the genome. Using this information, Lighter can correct the reads containing sequence errors. k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Sequencing, Whole genome sequencing, DNA, Genomics To update https://github.com/mourisl/Lighter Sequence Analysis, Fasta Manipulation lighter bgruening https://github.com/bgruening/galaxytools/tree/master/tools/lighter https://github.com/bgruening/galaxytools/tree/master/tools/lighter 1.0 lighter 1.1.3 k-mer counting, Sequence read processing, Sequencing quality control, Sequencing error detection Whole genome sequencing, DNA, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 152 True False True +limma_voom limma_voom Perform RNA-Seq differential expression analysis using limma voom pipeline limma limma limma Data analysis, linear models and differential expression for microarray data. RNA-Seq analysis Molecular biology, Genetics Up-to-date http://bioconductor.org/packages/release/bioc/html/limma.html Transcriptomics, RNA, Statistics limma_voom iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom https://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom 3.58.1 bioconductor-limma 3.58.1 RNA-Seq analysis Molecular biology, Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1012 20344 True False True +lineagespot lineagespot Identification of SARS-CoV-2 related metagenomic mutations based on a single (or a list of) variant(s) file(s) lineagespot lineagespot lineagespot Lineagespot is a framework written in R, and aims to identify and assign different SARS-CoV-2 lineages based on a single variant file (i.e., variant calling format). Variant calling Metagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variation To update https://www.bioconductor.org/packages/release/bioc/html/lineagespot.html Metagenomics, Sequence Analysis lineagespot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/lineagespot https://github.com/galaxyproject/tools-iuc/tree/main/tools/lineagespot 1.6.0 r-base Variant calling Metagenomics, Gene transcripts, Evolutionary biology, Sequencing, Genetic variation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 37 True False True +links links Scaffold genome assemblies with long reads. links links LINKS LINKS (Long Interval Nucleotide K-mer Scaffolder) is a genomics application for scaffolding genome assemblies with long reads, such as those produced by Oxford Nanopore Technologies Ltd. It can be used to scaffold high-quality draft genome assemblies with any long sequences (eg. ONT reads, PacBio reads, other draft genomes, etc). It is also used to scaffold contig pairs linked by ARCS/ARKS. Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing Up-to-date https://github.com/bcgsc/LINKS Assembly links iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/links https://github.com/galaxyproject/tools-iuc/tree/main/tools/links 2.0.1 links 2.0.1 Scaffolding, Genome assembly, Read mapping, Read pre-processing, Sequence trimming Sequence assembly, Mapping, Sequencing 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 77 405 True False False +locarna locarna_exparnap, locarna_multiple, locarna_pairwise, locarna_pairwise_p, locarna_reliability_profile LocARNA - A suite for multiple alignment and folding of RNAs Up-to-date http://www.bioinf.uni-freiburg.de/Software/LocARNA/ RNA locarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/locarna 2.0.1 locarna 2.0.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 339 True False False +logistic_regression_vif LogisticRegression Perform Logistic Regression with vif To update Sequence Analysis, Variant Analysis, Statistics logistic_regression_vif devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/logistic_regression_vif https://github.com/galaxyproject/tools-devteam/tree/main/tools/logistic_regression_vif 1.0.1 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +logol logol_wrapper Logol is a pattern matching grammar language and a set of tools to search a pattern in a sequence Up-to-date http://logol.genouest.org/web/app.php/logol Sequence Analysis genouest https://github.com/genouest/galaxy-tools/tree/master/tools/logol https://github.com/genouest/galaxy-tools/tree/master/tools/logol 1.7.8 logol 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +longorf longORF obtain longest ORF in six-frame translations To update Sequence Analysis longorf mbernt https://github.com/bernt-matthias/mb-galaxy-tools/blob/master/tools/longorf/ https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/longorf 0.3.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +lorikeet lorikeet_spoligotype Tools for M. tuberculosis DNA fingerprinting (spoligotyping) lorikeet lorikeet lorikeet Tools for M. tuberculosis DNA fingerprinting (spoligotyping) Sequence analysis, Genotyping Genotype and phenotype Up-to-date https://github.com/AbeelLab/lorikeet Sequence Analysis lorikeet_spoligotype iuc https://github.com/AbeelLab/lorikeet https://github.com/galaxyproject/tools-iuc/tree/main/tools/lorikeet 20 lorikeet 20 Sequence analysis, Genotyping Genotype and phenotype 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 647 True False True +lotus2 lotus2 LotuS2 OTU processing pipeline lotus2 lotus2 lotus2 LotuS2 is a lightweight and user-friendly pipeline that is fast, precise, and streamlined, using extensive pre- and post-ASV/OTU clustering steps to further increase data quality. High data usage rates and reliability enable high-throughput microbiome analysis in minutes. Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology To update http://lotus2.earlham.ac.uk/ Metagenomics lotus2 earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2 https://github.com/TGAC/earlham-galaxytools/tree/master/tools/lotus2 2.32 lotus2 2.34.1 Sequence feature detection, DNA barcoding Metagenomics, Taxonomy, Microbial ecology 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 114 936 True False True +m6anet m6anet m6anet to detect m6A RNA modifications from nanopore data m6Anet m6Anet m6Anet Detection of m6A from direct RNA sequencing using a Multiple Instance Learning framework. Quantification, Imputation, Gene expression profiling RNA-Seq, Transcriptomics, RNA, Machine learning Up-to-date https://m6anet.readthedocs.io/en/latest Sequence Analysis m6anet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/m6anet https://github.com/galaxyproject/tools-iuc/tree/main/tools/m6anet 2.1.0 m6anet 2.1.0 Quantification, Imputation, Gene expression profiling RNA-Seq, Transcriptomics, RNA, Machine learning 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 True False True +maaslin2 maaslin2 MaAsLin2 is comprehensive R package for efficiently determining multivariable association between microbial meta'omic features and clinical metadata. maaslin2 maaslin2 MaAsLin2 MaAsLin2 is comprehensive R package for efficiently determining multivariable association between phenotypes, environments, exposures, covariates and microbial meta’omic features. MaAsLin2 relies on general linear models to accommodate most modern epidemiological study designs, including cross-sectional and longitudinal, and offers a variety of data exploration, normalization, and transformation methods. Filtering, Statistical calculation, Standardisation and normalisation, Visualisation Metagenomics, Statistics and probability To update http://huttenhower.sph.harvard.edu/maaslin Metagenomics maaslin2 iuc https://github.com/biobakery/Maaslin2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/maaslin2 1.16.0 bioconductor-maaslin2 1.18.0 Filtering, Standardisation and normalisation, Visualisation Metagenomics, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 29 188 True False True +macs2 macs2_bdgbroadcall, macs2_bdgcmp, macs2_bdgdiff, macs2_bdgpeakcall, macs2_callpeak, macs2_filterdup, macs2_predictd, macs2_randsample, macs2_refinepeak MACS - Model-based Analysis of ChIP-Seq macs macs MACS Model-based Analysis of ChIP-seq data. Peak calling, Enrichment analysis, Gene regulatory network analysis ChIP-seq, Molecular interactions, pathways and networks, Transcription factors and regulatory sites Up-to-date https://github.com/taoliu/MACS Sequence Analysis, Statistics macs2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/macs2 2.2.9.1 macs2 2.2.9.1 Peak calling, Enrichment analysis, Gene regulatory network analysis ChIP-seq, Molecular interactions, pathways and networks, Transcription factors and regulatory sites 9 9 9 9 9 9 9 9 0 9 0 0 0 0 0 0 0 0 0 0 9 9 0 0 0 0 0 0 0 9 0 0 0 0 0 0 0 9 9 0 1969 84521 True False False +maf_cpg_filter cpgFilter Mask CpG/non-CpG sites from MAF file To update Sequence Analysis, Variant Analysis maf_cpg_filter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/maf_cpg_filter https://github.com/galaxyproject/tools-devteam/tree/main/tools/maf_cpg_filter 1.0.0 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +mafft rbc_mafft_add, rbc_mafft Multiple alignment program for amino acid or nucleotide sequences MAFFT MAFFT MAFFT MAFFT (Multiple Alignment using Fast Fourier Transform) is a high speed multiple sequence alignment program. Multiple sequence alignment Sequence analysis To update https://mafft.cbrc.jp/alignment/software/ RNA mafft rnateam https://github.com/bgruening/galaxytools/tree/master/tools/mafft https://github.com/bgruening/galaxytools/tree/master/tools/mafft 7.526 mafft 7.525 Multiple sequence alignment Sequence analysis 2 2 2 2 2 2 2 2 0 1 0 0 2 0 0 0 0 0 0 0 1 0 2 0 0 2 0 0 0 2 0 0 0 0 0 0 0 2 2 0 817 143045 True False True +make_nr make_nr Make a FASTA file non-redundant To update https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr Fasta Manipulation, Sequence Analysis make_nr peterjc https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr https://github.com/peterjc/galaxy_blast/tree/master/tools/make_nr 0.0.3 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +maker maker, maker_map_ids MAKER is a portable and easily configurable genome annotation pipeline.Its purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. maker maker MAKER Portable and easily configurable genome annotation pipeline. It’s purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases. Genome annotation Genomics, DNA, Sequence analysis To update http://www.yandell-lab.org/software/maker.html Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/maker https://github.com/galaxyproject/tools-iuc/tree/main/tools/maker 2.31.11 maker 3.01.03 Genome annotation Genomics, DNA, Sequence analysis 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 554 5591 True False True +maldiquant maldi_quant_peak_detection, maldi_quant_preprocessing MALDIquant provides a complete analysis pipeline for MALDI-TOF and other 2D mass spectrometry data. To update http://strimmerlab.org/software/maldiquant/ Proteomics MALDIquant galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/MALDIquant https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maldiquant 1.22.0 r-base 0 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 0 25 3797 True False False +map_peptides_to_bed map_peptides_to_bed Map peptides to a reference genome for display by a genome browser To update Proteomics map_peptides_to_bed galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/map_peptides_to_bed https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/map_peptides_to_bed 0.2 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 41 True False False +mapping_quality_stats mapqstatistics Collects and shows the distribution of MAPQ values in a BAM alignment file To update http://artbio.fr Sequence Analysis, Statistics mapping_quality_stats artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/mapping_quality_stats https://github.com/ARTbio/tools-artbio/tree/main/tools/mapping_quality_stats 0.22.0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +mapping_to_ucsc mapToUCSC Format mapping data as UCSC custom track To update Visualization, Convert Formats, Next Gen Mappers mapping_to_ucsc devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/mapping_to_ucsc https://github.com/galaxyproject/tools-devteam/tree/main/tools/mapping_to_ucsc 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +mapseq mapseq fast and accurate sequence read classification tool designed to assign taxonomy and OTU classifications to ribosomal RNA sequences. mapseq mapseq MAPseq Highly efficient k-mer search with confidence estimates, for rRNA sequence analysis . k-mer counting Functional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifs To update https://github.com/jfmrod/MAPseq Metagenomics mapseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mapseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/mapseq 2.1.1 perl k-mer counting Functional, regulatory and non-coding RNA, Sequence analysis, Sequence sites, features and motifs 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 167 True False True +marine_omics sanntis_marine The Sanntis tool identify biosynthetic gene clusters (BGCs) in genomic & metagenomic data Up-to-date https://github.com/Finn-Lab/SanntiS Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics https://github.com/galaxyecology/tools-ecology/tree/master/tools/marine_omics 0.9.3.5 sanntis 0.9.3.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +mash mash_screen, mash_sketch Fast genome and metagenome distance estimation using MinHash mash mash Mash Fast genome and metagenome distance estimation using MinHash. Sequence distance matrix generation Genomics, Metagenomics, Statistics and probability, Sequence analysis, DNA mutation Up-to-date https://github.com/marbl/Mash Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash https://github.com/galaxyproject/tools-iuc/tree/main/tools/mash 2.3 mash 2.3 Sequence distance matrix generation Metagenomics, Statistics and probability, Sequence analysis, DNA mutation 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 27 9763 True False True +mashmap mashmap Fast local alignment boundaries Up-to-date https://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmap Sequence Analysis mashmap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mashmap https://github.com/galaxyproject/tools-iuc/tree/main/tools/mashmap 3.1.3 mashmap 3.1.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +masigpro masigpro Identify significantly differential expression profiles in time-course microarray experiments masigpro masigpro maSigPro Regression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments. Regression analysis Gene expression, Molecular genetics, Microarray experiment, RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/maSigPro.html Transcriptomics, RNA, Statistics masigpro iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/masigpro https://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro 1.49.3 coreutils 8.25 Regression analysis Gene expression, Microarray experiment, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 576 True False False +mauve_contig_mover mauve_contig_mover Order a draft genome relative to a related reference genome To update https://github.com/phac-nml/mauve_contig_mover Sequence Analysis mauve_contig_mover nml https://github.com/phac-nml/mauve_contig_mover https://github.com/phac-nml/galaxy_tools/tree/master/tools/mauve_contig_mover 1.0.10 mauve 2.4.0.r4736 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +maxbin2 maxbin2 clusters metagenomic contigs into bins maxbin maxbin MaxBin Software for binning assembled metagenomic sequences based on an Expectation-Maximization algorithm. Sequence assembly Metagenomics, Sequence assembly, Microbiology To update https://downloads.jbei.org/data/microbial_communities/MaxBin/MaxBin.html Metagenomics maxbin2 mbernt https://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/maxbin2 maxbin2 2.2.7 Sequence assembly Metagenomics, Sequence assembly, Microbiology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 118 2059 True False True +maxquant maxquant, maxquant_mqpar wrapper for MaxQuant maxquant maxquant MaxQuant Quantitative proteomics software package designed for analyzing large mass-spectrometric data sets. It is specifically aimed at high-resolution MS data. Imputation, Visualisation, Protein quantification, Statistical calculation, Standardisation and normalisation, Heat map generation, Clustering, Principal component plotting Proteomics experiment, Proteomics, Statistics and probability Up-to-date https://www.maxquant.org/ Proteomics maxquant galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/maxquant 2.0.3.0 maxquant 2.0.3.0 Imputation, Visualisation, Protein quantification, Standardisation and normalisation, Heat map generation, Clustering Proteomics experiment, Proteomics, Statistics and probability 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 415 6078 True False True +mcl mcl The Markov Cluster Algorithm, a cluster algorithm for graphs mcl mcl MCL MCL is a clustering algorithm widely used in bioinformatics and gaining traction in other fields. Clustering, Network analysis, Gene regulatory network analysis Molecular interactions, pathways and networks Up-to-date https://micans.org/mcl/man/mcl.html Sequence Analysis mcl iuc https://github.com/galaxyproject/tools-iuc/tree/master/mcl https://github.com/galaxyproject/tools-iuc/tree/main/tools/mcl 22.282 mcl 22.282 Clustering, Gene regulatory network analysis Molecular interactions, pathways and networks 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 10 29 True False True +mea mea Maximum expected accuracy prediction To update http://www.bioinf.uni-leipzig.de/Software/mea RNA mea rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mea https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mea 0.6.4.1 mea 0.6.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 85 True False False +mean-per-zone mean_per_zone Creates a png image showing statistic over areas as defined in the vector file To update https://github.com/NordicESMhub/galaxy-tools/blob/master/tools/mean-per-zone/ Visualization, GIS, Climate Analysis mean_per_zone climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/mean-per-zone 0.2.0 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 24 True False False +medaka medaka_consensus, medaka_consensus_pipeline, medaka_snp, medaka_variant Sequence correction provided by ONT Research medaka medaka Medaka medaka is a tool to create consensus sequences and variant calls from nanopore sequencing data. This task is performed using neural networks applied a pileup of individual sequencing reads against a draft assembly. Base-calling, Variant calling, Sequence assembly Sequence assembly, Machine learning To update https://github.com/nanoporetech/medaka Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/medaka https://github.com/galaxyproject/tools-iuc/tree/main/tools/medaka 1.7.2 medaka 1.11.3 Base-calling, Variant calling, Sequence assembly Sequence assembly, Machine learning 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 3 3 0 768 99863 True False True +medenv iabiodiv_smartbiodiv_med_environ Retrieve environmental data from etopo, cmems and woa To update https://github.com/jeremyfix/medenv Ecology, Data Source ecology https://github.com/jeremyfix/medenv https://github.com/galaxyecology/tools-ecology/tree/master/tools/medenv 0.1.0 pandas 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +megahit megahit An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph. megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly Up-to-date https://github.com/voutcn/megahit Sequence Analysis, Assembly, Metagenomics megahit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit 1.2.9 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 548 9530 True False True +megahit_contig2fastg megahit_contig2fastg A subprogram within the Megahit toolkit for converting contigs to assembly graphs (fastg) megahit megahit MEGAHIT Single node assembler for large and complex metagenomics NGS reads, such as soil. It makes use of succinct de Bruijn graph to achieve low memory usage, whereas its goal is not to make memory usage as low as possible. Genome assembly Metagenomics, Sequencing, Ecology, Sequence assembly To update https://github.com/voutcn/megahit/blob/master/tools/toolkit.cpp Sequence Analysis, Assembly, Metagenomics megahit_contig2fastg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megahit_contig2fastg https://github.com/galaxyproject/tools-iuc/tree/main/tools/megahit_contig2fastg 1.1.3 megahit 1.2.9 Genome assembly Metagenomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 54 475 True False True +megan megan_blast2lca, megan_blast2rma, megan_daa2info, megan_daa2rma, megan_daa_meganizer, megan_read_extractor, megan_sam2rma MEGAN Community Edition - Interactive exploration and analysis of large-scale microbiome sequencing data. MEGAN is a tool for studying the taxonomic content of a set of DNA reads, typically collected in a metagenomics project.In a preprocessing step, a sequence alignment of all reads against a suitable database of reference DNA or proteinsequences must be performed to produce an input file for the program. MEGAN is suitable for DNA reads (metagenomedata), RNA reads (metatranscriptome data), peptide sequences (metaproteomics data) and, using a suitable synonymsfile that maps SILVA ids to taxon ids, for 16S rRNA data (amplicon sequencing). megan megan MEGAN Metagenome Analysis Software - MEGAN (MEtaGenome ANalyzer) is a new computer program that allows laptop analysis of large metagenomic datasets. In a preprocessing step, the set of DNA reads (or contigs) is compared against databases of known sequences using BLAST or another comparison tool. MEGAN can then be used to compute and interactively explore the taxonomical content of the dataset, employing the NCBI taxonomy to summarize and order the results. Sequence analysis, Taxonomic classification Sequence analysis To update https://github.com/husonlab/megan-ce Sequence Analysis megan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/megan https://github.com/galaxyproject/tools-iuc/tree/main/tools/megan 6.21.7 megan 6.25.9 Sequence analysis, Taxonomic classification Sequence analysis 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 261 3610 True False True +meningotype meningotype Assign sequence type to N. meningitidis genome assemblies meningotype meningotype meningotype In silico typing of Neisseria meningitidis contigs. Genotyping, Multilocus sequence typing Microbiology, Genotype and phenotype Up-to-date https://github.com/MDU-PHL/meningotype Sequence Analysis meningotype iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype https://github.com/galaxyproject/tools-iuc/tree/main/tools/meningotype 0.8.5 meningotype 0.8.5 Multilocus sequence typing Microbiology, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +merqury merqury, merquryplot Merqury is a tool for evaluating genomes assemblies based of k-mer operations. merqury merqury Merqury Reference-free quality, completeness, and phasing assessment for genome assemblies.Evaluate genome assemblies with k-mers and more.Often, genome assembly projects have illumina whole genome sequencing reads available for the assembled individual.Merqury provides a set of tools for this purpose. Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology Up-to-date https://github.com/marbl/merqury Assembly merqury iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/merqury https://github.com/galaxyproject/tools-iuc/tree/main/tools/merqury 1.3 merqury 1.3 Genome assembly, k-mer counting, Scaffolding, Phasing, De-novo assembly Sequence assembly, Whole genome sequencing, Plant biology 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 244 2483 True False True +meryl meryl_arithmetic_kmers, meryl_count_kmers, meryl_filter_kmers, meryl_groups_kmers, meryl_histogram_kmers, meryl_print, meryl_trio_mode Meryl a k-mer counter. meryl meryl Meryl Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu. k-mer counting Whole genome sequencing, Genomics, Sequence analysis, Sequencing Up-to-date https://github.com/marbl/meryl Assembly meryl iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl 1.3 merqury 1.3 k-mer counting Whole genome sequencing, Genomics, Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +meta_proteome_analyzer meta_proteome_analyzer MetaProteomeAnalyzer Up-to-date https://github.com/compomics/meta-proteome-analyzer/ Proteomics meta_proteome_analyzer galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzer https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/meta_proteome_analyzer 2.0.0 mpa-portable 2.0.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 10 123 True False False +metabat2 metabat2_jgi_summarize_bam_contig_depths, metabat2 MetaBAT2 (Metagenome Binning based on Abundance and Tetranucleotide frequency) is an automated metagenome binningsoftware that integrates empirical probabilistic distances of genome abundance and tetranucleotide frequency. MetaBAT_2 MetaBAT_2 MetaBAT 2 "an adaptive binning algorithm for robust and efficient genome reconstruction from metagenome assemblies | MetaBAT2 clusters metagenomic contigs into different ""bins"", each of which should correspond to a putative genome | MetaBAT2 uses nucleotide composition information and source strain abundance (measured by depth-of-coverage by aligning the reads to the contigs) to perform binning" Read binning, Sequence assembly, Genome annotation Metagenomics, Sequence assembly, Metagenomic sequencing To update https://bitbucket.org/berkeleylab/metabat/src/master/ Metagenomics metabat2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metabat2/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabat2 2.15 metabat2 2.17 Read binning, Sequence assembly, Genome annotation Metagenomics, Sequence assembly, Metagenomic sequencing 2 1 2 2 2 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 192 4329 True False True +metabuli metabuli_classify Classifying metagenomes by jointly analysing both DNA and amino acid (AA) sequences metabuli metabuli metabuli Metabuli: specific and sensitive metagenomic classification via joint analysis of DNA and amino acid Taxonomic classification Taxonomy Up-to-date https://github.com/steineggerlab/Metabuli Sequence Analysis, Metagenomics metabuli iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metabuli https://github.com/galaxyproject/tools-iuc/tree/main/tools/metabuli 1.0.5 metabuli 1.0.5 Taxonomic classification Taxonomy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +metaeuk metaeuk_easy_predict MetaEuk is a modular toolkit designed for large-scale gene discovery andannotation in eukaryotic metagenomic contigs. Metaeuk combines the fast andsensitive homology search capabilities of MMseqs2 with a dynamic programmingprocedure to recover optimal exons sets. It reduces redundancies in multiplediscoveries of the same gene and resolves conflicting gene predictions onthe same strand. MetaEuk MetaEuk MetaEuk MetaEuk - sensitive, high-throughput gene discovery and annotation for large-scale eukaryotic metagenomics Homology-based gene prediction Metagenomics, Gene and protein families To update https://github.com/soedinglab/metaeuk Sequence Analysis, Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaeuk https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaeuk 5.34c21f2 metaeuk 6.a5d39d9 Homology-based gene prediction Metagenomics, Gene and protein families 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 184 True False True +metagene_annotator metagene_annotator MetaGeneAnnotator gene-finding program for prokaryote and phage metageneannotator metageneannotator MetaGeneAnnotator Prokaryotic gene finding program from environmental genome shotgun sequences or metagenomic sequences. Sequence annotation Genomics, Model organisms, Data submission, annotation and curation Up-to-date http://metagene.nig.ac.jp/ Sequence Analysis metagene_annotator galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/metagene_annotator https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metagene_annotator 1.0 metagene_annotator 1.0 Sequence annotation Genomics, Model organisms, Data submission, annotation and curation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 115 636 True False True +metagenomeseq metagenomeseq_normalizaton metagenomeSeq Normalization metagenomeseq metagenomeseq metagenomeSeq Designed to determine features (be it Operational Taxanomic Unit (OTU), species, etc.) that are differentially abundant between two or more groups of multiple samples. It is designed to address the effects of both normalization and under-sampling of microbial communities on disease association detection and the testing of feature correlations. Sequence visualisation, Statistical calculation Metagenomics, Sequencing To update https://bioconductor.org/packages/3.18/bioc/html/metagenomeSeq.html Metagenomics metagenomeseq_normalization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metagenomeseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/metagenomeseq 1.16.0-0.0.1 bioconductor-metagenomeseq 1.43.0 Sequence visualisation, Statistical calculation Metagenomics, Sequencing 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 753 True False True +metanovo metanovo Produce targeted databases for mass spectrometry analysis. metanovo metanovo MetaNovo An open-source pipeline for probabilistic peptide discovery in complex metaproteomic datasets. Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysis Proteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small molecules Up-to-date https://github.com/uct-cbio/proteomics-pipelines Proteomics metanovo galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metanovo 1.9.4 metanovo 1.9.4 Target-Decoy, de Novo sequencing, Tag-based peptide identification, Protein identification, Expression analysis Proteomics, Microbial ecology, Metagenomics, Proteomics experiment, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 15 4181 True False True +metaphlan customize_metaphlan_database, extract_metaphlan_database, merge_metaphlan_tables, metaphlan MetaPhlAn for Metagenomic Phylogenetic Analysis metaphlan metaphlan MetaPhlAn Computational tool for profiling the composition of microbial communities from metagenomic shotgun sequencing data. Nucleic acid sequence analysis, Phylogenetic tree analysis Metagenomics, Phylogenomics Up-to-date https://github.com/biobakery/MetaPhlAn Metagenomics metaphlan iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/metaphlan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/metaphlan 4.1.1 metaphlan 4.1.1 Nucleic acid sequence analysis Metagenomics, Phylogenomics 1 2 4 4 1 2 4 4 0 0 0 0 0 0 0 0 0 0 0 0 1 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 499 11069 True False True +metaquantome metaquantome_db, metaquantome_expand, metaquantome_filter, metaquantome_sample, metaquantome_stat, metaquantome_viz quantitative analysis of microbiome taxonomy and function metaQuantome metaQuantome metaQuantome metaQuantome software suite analyzes the state of a microbiome by leveraging complex taxonomic and functional hierarchies to summarize peptide-level quantitative information. metaQuantome offers differential abundance analysis, principal components analysis, and clustered heat map visualizations, as well as exploratory analysis for a single sample or experimental condition. Principal component visualisation, Visualisation, Functional clustering, Query and retrieval, Differential protein expression analysis, Heat map generation, Quantification, Indexing, Filtering, Statistical inference Proteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, Metagenomics Up-to-date https://github.com/galaxyproteomics/metaquantome/ Proteomics metaquantome galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome 2.0.2 metaquantome 2.0.2 Principal component visualisation, Functional clustering, Query and retrieval, Heat map generation, Quantification, Indexing, Filtering, Statistical inference Proteomics, Metatranscriptomics, Microbial ecology, Proteomics experiment, Metagenomics 0 6 6 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 104 2522 True False True +metawrapmg metawrapmg_binning A flexible pipeline for genome-resolved metagenomic data analysis metawrap metawrap MetaWRAP MetaWRAP aims to be an easy-to-use metagenomic wrapper suite that accomplishes the core tasks of metagenomic analysis from start to finish: read quality control, assembly, visualization, taxonomic profiling, extracting draft genomes (binning), and functional annotation. Read binning, Sequence assembly, Genome annotation, Sequence trimming, Demultiplexing Whole genome sequencing, Metagenomic sequencing, Metagenomics Up-to-date https://github.com/bxlab/metaWRAP Metagenomics metawrapmg_binning galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/metawrapmg https://github.com/galaxyproject/tools-iuc/tree/main/tools/metawrapmg 1.3.0 metawrap-mg 1.3.0 Read binning, Sequence assembly, Genome annotation, Sequence trimming, Demultiplexing Whole genome sequencing, Metagenomic sequencing, Metagenomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +methtools methtools_calling, r_correlation_matrix, methtools_destrand, methtools_dmr, methtools_filter, methtools_plot, smooth_running_window, methtools_tiling tools for methylation analysis To update https://github.com/bgruening/galaxytools/tree/master/tools/methtools Sequence Analysis methtools bgruening https://github.com/bgruening/galaxytools/tree/master/tools/methtools https://github.com/bgruening/galaxytools/tree/master/tools/methtools 0.1.1 methtools 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5461 True False False +methyldackel pileometh A tool for processing bisulfite sequencing alignments To update https://github.com/dpryan79/MethylDackel Sequence Analysis pileometh bgruening https://github.com/bgruening/galaxytools/tree/master/tools/methyldackel https://github.com/bgruening/galaxytools/tree/master/tools/methyldackel 0.5.2 methyldackel 0.6.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 200 16573 True False False +metilene metilene Differential DNA methylation calling To update RNA, Statistics metilene rnateam https://github.com/bgruening/galaxytools/tree/master/tools/metilene https://github.com/bgruening/galaxytools/tree/master/tools/metilene 0.2.6.1 metilene 0.2.8 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 103 3966 True False False +mg_toolkit mg_toolkit_bulk_download, mg_toolkit_original_metadata Metagenomics toolkit enables scientists to download all of the sample metadata for a given study or sequence to a single csv file. mg-toolkit mg-toolkit mg-toolkit Metagenomics toolkit enables scientists to download all of the sample metadata for a given study or sequence to a single csv file. Data retrieval Metagenomics Up-to-date https://github.com/EBI-Metagenomics/emg-toolkit Metagenomics mg_toolkit iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/mg_toolkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/mg_toolkit 0.10.4 mg-toolkit 0.10.4 Data retrieval Metagenomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +mgnify_seqprep mgnify_seqprep A modifiied vesion of SeqPrep. Made for use with the MGnify pipelines. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers To update https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis mgnify_seqprep bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep https://github.com/bgruening/galaxytools/tree/master/tools/mgnify_seqprep 1.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +miclip mi_clip Identification of binding sites in CLIP-Seq data. To update https://cran.r-project.org/src/contrib/Archive/MiClip/ Sequence Analysis miclip bgruening https://github.com/bgruening/galaxytools/tree/master/tools/miclip https://github.com/bgruening/galaxytools/tree/master/tools/miclip 1.2.0 Rscript 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +microsatbed microsatbed Select microsatellites for a bed file To update https://github.com/lmdu/pytrf Sequence Analysis microsatbed iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/microsatbed https://github.com/galaxyproject/tools-iuc/tree/main/tools/microsatbed 1.3.2 python 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +microsatellite_birthdeath microsatellite_birthdeath Identify microsatellite births and deaths To update Sequence Analysis microsatellite_birthdeath devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsatellite_birthdeath https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsatellite_birthdeath 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +microsats_alignment_level microsats_align1 Extract Orthologous Microsatellites from pair-wise alignments To update Sequence Analysis, Variant Analysis microsats_alignment_level devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_alignment_level https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsats_alignment_level 1.0.0 sputnik 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +microsats_mutability microsats_mutability1 Estimate microsatellite mutability by specified attributes To update Sequence Analysis, Variant Analysis microsats_mutability devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/microsats_mutability https://github.com/galaxyproject/tools-devteam/tree/main/tools/microsats_mutability 1.1.0 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +migmap migmap mapper for full-length T- and B-cell repertoire sequencing MiGMAP MiGMAP MiGMAP Mapper for full-length T- and B-cell repertoire sequencing. Sequence analysis, Read mapping Immunoproteins, genes and antigens, Sequence analysis Up-to-date https://github.com/mikessh/migmap RNA, Sequence Analysis migmap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap https://github.com/galaxyproject/tools-iuc/tree/main/tools/migmap 1.0.3 migmap 1.0.3 Sequence analysis, Read mapping Sequence analysis 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 1226 True False False +minced minced MinCED - Mining CRISPRs in Environmental Datasets To update http://bioweb2.pasteur.fr/docs/modules/minced/0.1.5/_README Sequence Analysis minced bgruening https://github.com/bgruening/galaxytools/tree/master/tools/minced https://github.com/bgruening/galaxytools/tree/master/tools/minced 0.2.0 minced 0.4.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 53 895 True False False +minia minia Short-read assembler based on a de Bruijn graph minia minia Minia Short-read assembler based on a de Bruijn graph, capable of assembling a human genome on a desktop computer in a day. Genome assembly Sequence assembly Up-to-date https://gatb.inria.fr/software/minia/ Assembly minia iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/minia https://github.com/galaxyproject/tools-iuc/tree/main/tools/minia 3.2.6 minia 3.2.6 Genome assembly Sequence assembly 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 109 2206 True False True +miniasm miniasm Miniasm - Ultrafast de novo assembly for long noisy reads (though having no consensus step) miniasm miniasm miniasm Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format. De-novo assembly Genomics, Sequence assembly To update https://github.com/lh3/miniasm Assembly miniasm iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniasm https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniasm 0.3_r179 miniasm 0.3 De-novo assembly Genomics, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 178 11938 True False True +minipolish minipolish Polishing miniasm assemblies minipolish minipolish minipolish A tool that bridges the output of miniasm (long-read assembly) and racon (assembly polishing) together to polish a draft assembly. It also provides read depth information in contigs. Localised reassembly, Read depth analysis Sequence assembly, Sequencing Up-to-date https://github.com/rrwick/Minipolish Sequence Analysis minipolish bgruening https://github.com/bgruening/galaxytools/tree/master/tools/minipolish https://github.com/bgruening/galaxytools/tree/master/tools/minipolish 0.1.3 minipolish 0.1.3 Localised reassembly, Read depth analysis Sequence assembly, Sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 21 185 True False True +miniprot miniprot, miniprot_index Align a protein sequence against a genome with affine gap penalty, splicing and frameshift. miniprot miniprot miniprot Miniprot aligns a protein sequence against a genome with affine gap penalty, splicing and frameshift. It is primarily intended for annotating protein-coding genes in a new species using known genes from other species. Sequence alignment, Protein sequence analysis Sequence sites, features and motifs, Sequence analysis Up-to-date https://github.com/lh3/miniprot Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/miniprot https://github.com/galaxyproject/tools-iuc/tree/main/tools/miniprot 0.13 miniprot 0.13 Sequence alignment, Protein sequence analysis Sequence sites, features and motifs, Sequence analysis 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 30 842 True False True +miranda miranda Finds potential target sites for miRNAs in genomic sequences To update http://www.microrna.org/ RNA miranda earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/miranda https://github.com/TGAC/earlham-galaxytools/tree/master/tools/miranda 3.3a+galaxy1 miranda 3.3a 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 6076 True False False +mircounts mircounts Generates miRNA count lists from read alignments to mirBase. To update http://artbio.fr RNA, Transcriptomics mircounts artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts https://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts 1.6 tar 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +mirmachine mirmachine Tool to detect miRNA in genome sequences Up-to-date https://github.com/sinanugur/MirMachine Sequence Analysis mirmachine iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mirmachine https://github.com/galaxyproject/tools-iuc/tree/main/tools/mirmachine 0.2.13 mirmachine 0.2.13 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +mirnature mirnature Computational detection of canonical microRNAs Up-to-date https://github.com/Bierinformatik/miRNAture RNA, Sequence Analysis mirnature iuc https://github.com/Bierinformatik/miRNAture https://github.com/galaxyproject/tools-iuc/tree/main/tools/mirnature 1.1 mirnature 1.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 10 True False False +mitobim mitobim assemble mitochondrial genomes Up-to-date https://github.com/chrishah/MITObim Assembly mitobim iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitobim https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitobim 1.9.1 mitobim 1.9.1 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 66 881 True False False +mitohifi mitohifi Assembly mitogenomes from Pacbio HiFi read. To update https://github.com/marcelauliano/MitoHiFi/tree/mitohifi_v2 Assembly mitohifi bgruening https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi https://github.com/bgruening/galaxytools/tree/master/tools/mitohifi 3 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 56 613 True False False +mitos mitos, mitos2 de-novo annotation of metazoan mitochondrial genomes mitos mitos MITOS De novo metazoan mitochondrial genome annotation. Genome annotation Zoology, Whole genome sequencing To update http://mitos.bioinf.uni-leipzig.de/ Sequence Analysis mitos iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mitos https://github.com/galaxyproject/tools-iuc/tree/main/tools/mitos 1.1.7 mitos 2.1.9 Genome annotation Zoology, Whole genome sequencing 1 1 2 0 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 236 100920 True False True +mlst mlst, mlst_list Scan contig files against PubMLST typing schemes mlst mlst MLST Multi Locus Sequence Typing from an assembled genome or from a set of reads. Multilocus sequence typing Immunoproteins and antigens To update https://github.com/tseemann/mlst Sequence Analysis mlst iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mlst https://github.com/galaxyproject/tools-iuc/tree/main/tools/mlst 2.22.0 mlst 2.23.0 Multilocus sequence typing Immunoproteins and antigens 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 635 9304 True False True +moFF proteomics_moff moFF (a modest Feature Finder) extracts MS1 intensities from RAW and mzML spectrum files. Up-to-date https://github.com/compomics/moFF Proteomics proteomics_moff galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/moFF https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/moFF 2.0.3 moff 2.0.3 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 759 True False False +mob_suite mob_recon, mob_typer MOB-suite is a set of software tools for clustering, reconstruction and typing of plasmids from draft assemblies To update https://github.com/phac-nml/mob-suite Sequence Analysis mob_suite nml https://github.com/phac-nml/mob-suite https://github.com/phac-nml/galaxy_tools/tree/master/tools/mob_suite 3.0.3 mob_suite 3.1.9 0 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 322 89021 True False True +monocle3 monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkers De-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_monocle3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle3 0.1.4 monocle3-cli 0.0.9 9 0 9 0 9 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 264 3266 True False False +morpheus morpheus Morpheus MS Search Application morpheus morpheus Morpheus A proteomics search algorithm specifically designed for high-resolution tandem mass spectra. Peptide database search Proteomics To update https://cwenger.github.io/Morpheus Proteomics morpheus galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/morpheus 288 morpheus 290 Peptide database search Proteomics 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 140 True False False +mothur mothur_align_check, mothur_align_seqs, mothur_amova, mothur_anosim, mothur_bin_seqs, mothur_biom_info, mothur_chimera_bellerophon, mothur_chimera_ccode, mothur_chimera_check, mothur_chimera_perseus, mothur_chimera_pintail, mothur_chimera_slayer, mothur_chimera_uchime, mothur_chimera_vsearch, mothur_chop_seqs, mothur_classify_otu, mothur_classify_seqs, mothur_classify_tree, mothur_clearcut, mothur_cluster_classic, mothur_cluster_fragments, mothur_cluster_split, mothur_cluster, mothur_collect_shared, mothur_collect_single, mothur_consensus_seqs, mothur_cooccurrence, mothur_corr_axes, mothur_count_groups, mothur_count_seqs, mothur_create_database, mothur_degap_seqs, mothur_deunique_seqs, mothur_deunique_tree, mothur_dist_seqs, mothur_dist_shared, mothur_fastq_info, mothur_filter_seqs, mothur_filter_shared, mothur_get_communitytype, mothur_get_coremicrobiome, mothur_get_dists, mothur_get_group, mothur_get_groups, mothur_get_label, mothur_get_lineage, mothur_get_mimarkspackage, mothur_get_otulabels, mothur_get_otulist, mothur_get_oturep, mothur_get_otus, mothur_get_rabund, mothur_get_relabund, mothur_get_sabund, mothur_get_seqs, mothur_get_sharedseqs, mothur_heatmap_bin, mothur_heatmap_sim, mothur_homova, mothur_indicator, mothur_lefse, mothur_libshuff, mothur_list_otulabels, mothur_list_seqs, mothur_make_biom, mothur_make_contigs, mothur_make_design, mothur_make_fastq, mothur_make_group, mothur_make_lefse, mothur_make_lookup, mothur_make_shared, mothur_make_sra, mothur_mantel, mothur_merge_count, mothur_merge_files, mothur_merge_groups, mothur_merge_sfffiles, mothur_merge_taxsummary, mothur_metastats, mothur_mimarks_attributes, mothur_nmds, mothur_normalize_shared, mothur_otu_association, mothur_otu_hierarchy, mothur_pairwise_seqs, mothur_parse_list, mothur_parsimony, mothur_pca, mothur_pcoa, mothur_pcr_seqs, mothur_phylo_diversity, mothur_phylotype, mothur_pre_cluster, mothur_primer_design, mothur_rarefaction_shared, mothur_rarefaction_single, mothur_remove_dists, mothur_remove_groups, mothur_remove_lineage, mothur_remove_otulabels, mothur_remove_otus, mothur_remove_rare, mothur_remove_seqs, mothur_rename_seqs, mothur_reverse_seqs, mothur_screen_seqs, mothur_sens_spec, mothur_seq_error, mothur_sffinfo, mothur_shhh_flows, mothur_shhh_seqs, mothur_sort_seqs, mothur_split_abund, mothur_split_groups, mothur_sub_sample, mothur_summary_qual, mothur_summary_seqs, mothur_summary_shared, mothur_summary_single, mothur_summary_tax, mothur_taxonomy_to_krona, mothur_tree_shared, mothur_trim_flows, mothur_trim_seqs, mothur_unifrac_unweighted, mothur_unifrac_weighted, mothur_unique_seqs, mothur_venn Mothur wrappers mothur mothur mothur Open-source, platform-independent, community-supported software for describing and comparing microbial communities DNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysis Microbial ecology, Taxonomy, Sequence analysis, Phylogeny To update https://www.mothur.org Metagenomics mothur iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur https://github.com/galaxyproject/tools-iuc/tree/main/tools/mothur 1.0 mothur 1.48.0 DNA barcoding, Sequencing quality control, Sequence clustering, Taxonomic classification, Visualisation, Sequence read processing, Phylogenetic analysis Microbial ecology, Taxonomy, Sequence analysis, Phylogeny 129 129 129 129 129 129 129 129 0 3 0 0 0 0 0 0 0 0 0 0 128 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129 129 0 14353 302916 True False True +mqc mqc Ribosome profiling mapping quality control tool To update https://github.com/Biobix/mQC Sequence Analysis mqc rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/mqc 1.9 mqc 1.10 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 76 True False False +mqppep mqppep_anova, mqppep_preproc MaxQuant Phosphoproteomic Enrichment Pipeline - Preprocessing and ANOVA To update https://github.com/galaxyproteomics/tools-galaxyp/ Proteomics mqppep galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppep https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mqppep 0.1.19 bioconductor-preprocesscore 1.64.0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 True False False +mrbayes mrbayes A program for the Bayesian estimation of phylogeny. To update Sequence Analysis mrbayes nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/mrbayes 1.0.2 mrbayes 3.2.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +msconvert msconvert msconvert Convert and/or filter mass spectrometry files (including vendor formats) using the official Docker container msconvert msconvert msConvert msConvert is a command-line utility for converting between various mass spectrometry data formats, including from raw data from several commercial companies (with vendor libraries, Windows-only). For Windows users, there is also a GUI, msConvertGUI. Filtering, Formatting Proteomics, Proteomics experiment To update http://proteowizard.sourceforge.net/tools.shtml Proteomics msconvert galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msconvert 3.0.20287 Filtering, Formatting Proteomics, Proteomics experiment 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 189 19958 True False True +msgfplus msgfplus MSGF+ To update Proteomics msgfplus galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplus https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msgfplus 0.5 msgf_plus 2024.03.26 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 507 True False False +msms_extractor msms_extractor Extract MS/MS scans from the mzML file(s) based on PSM report. To update Proteomics msms_extractor galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msms_extractor 1.0.0 proteowizard 3_0_9992 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 110 True False False +msstats msstats MSstats tool for analyzing mass spectrometry proteomic datasets msstatstmt msstatstmt MSstatsTMT Tools for detecting differentially abundant peptides and proteins in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labeling Spectrum calculation, Tag-based peptide identification, Differential protein expression profiling Proteomics, Proteomics experiment, Protein expression To update https://github.com/MeenaChoi/MSstats Proteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstats 4.0.0 bioconductor-msstats 4.10.0 Spectrum calculation, Tag-based peptide identification, Differential protein expression profiling Proteomics, Proteomics experiment, Protein expression 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 144 2036 True False False +msstatstmt msstatstmt MSstatsTMT protein significance analysis in shotgun mass spectrometry-based proteomic experiments with tandem mass tag (TMT) labeling To update http://msstats.org/msstatstmt/ Proteomics msstatstmt galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/msstatstmt 2.0.0 bioconductor-msstatstmt 2.10.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 71 726 True False True +mt2mq mt2mq Tool to prepare metatranscriptomic outputs from ASaiM for Metaquantome To update Proteomics mt2mq galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mt2mq 1.1.0 r-tidyverse 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 19 270 True False False +multigsea multigsea GSEA-based pathway enrichment analysis for multi-omics data multiGSEA multiGSEA multiGSEA A GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration. Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules Up-to-date https://bioconductor.org/packages/devel/bioc/html/multiGSEA.html Transcriptomics, Proteomics, Statistics multigsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea 1.12.0 bioconductor-multigsea 1.12.0 Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 53 True False True +multiqc multiqc MultiQC aggregates results from bioinformatics analyses across many samples into a single report multiqc multiqc MultiQC MultiQC aggregates results from multiple bioinformatics analyses across many samples into a single report. It searches a given directory for analysis logs and compiles a HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. Validation, Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics To update http://multiqc.info/ Fastq Manipulation, Statistics, Visualization multiqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc 1.11 multiqc 1.24.1 Sequencing quality control Sequencing, Bioinformatics, Sequence analysis, Genomics 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 8320 162790 True False True +multispecies_orthologous_microsats multispecies_orthologous_microsats Extract orthologous microsatellites To update Sequence Analysis, Variant Analysis multispecies_orthologous_microsats devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/multispecies_orthologous_microsats https://github.com/galaxyproject/tools-devteam/tree/main/tools/multispecies_orthologous_microsats 1.0.0 bx-sputnik 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +mummer mummerplot_wrapper Draw dotplots using mummer, mucmer, or promer with mummerplot To update http://mummer.sourceforge.net/ Graphics, Sequence Analysis, Visualization mummer peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/mummer https://github.com/peterjc/pico_galaxy/tree/master/tools/mummer 0.0.8 ghostscript 9.18 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 83 652 True False False +mummer4 mummer_delta_filter, mummer_dnadiff, mummer_mummer, mummer_mummerplot, mummer_nucmer, mummer_show_coords Mummer4 Tools mummer4 mummer4 Up-to-date https://github.com/mummer4/mummer Sequence Analysis mummer4 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mummer4 https://github.com/galaxyproject/tools-iuc/tree/main/tools/mummer4 4.0.0rc1 mummer4 4.0.0rc1 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 669 18347 True False False +mykrobe mykrobe_predict Antibiotic resistance predictions Mykrobe Mykrobe Mykrobe Antibiotic resistance prediction for Mycobacterium tuberculosis from genome sequence data with Mykrobe.Antibiotic resistance prediction in minutes.Table of Contents generated with DocToc.AMR prediction (Mykrobe predictor).Before attempting to install with bioconda, please ensure you have your channels set up as specified in the documentation. If you don't, you may run into issues with an older version of mykrobe being installed Antimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimming Whole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, Metagenomics To update https://github.com/Mykrobe-tools/mykrobe Sequence Analysis mykrobe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/mykrobe https://github.com/galaxyproject/tools-iuc/tree/main/tools/mykrobe 0.10.0 mykrobe 0.13.0 Antimicrobial resistance prediction, Variant calling, Genotyping, Sequence trimming Whole genome sequencing, Genotype and phenotype, Probes and primers, Genetic variation, Metagenomics 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +mykrobe_parser mykrobe_parseR RScript to parse the results of mykrobe predictor. To update https://github.com/phac-nml/mykrobe-parser Sequence Analysis mykrobe_parser nml https://github.com/phac-nml/mykrobe-parser https://github.com/phac-nml/galaxy_tools/tree/master/tools/mykrobe_parser 0.1.4.1 r-base 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +mz_to_sqlite mz_to_sqlite Creates a SQLite database for proteomics data mztosqlite mztosqlite mzToSQLite Convert proteomics data files into a SQLite database Conversion, Peptide database search Proteomics, Biological databases To update https://github.com/galaxyproteomics/mzToSQLite Proteomics mz_to_sqlite galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/mz_to_sqlite 2.1.1+galaxy0 mztosqlite 2.1.1 Conversion, Peptide database search Proteomics, Biological databases 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 33 844 True False True +mzml_validator mzml_validator mzML Validator checks if mzML file validates against XML Schema Definition of HUPO Proteomics Standard Initiative. To update https://github.com/RECETOX/galaxytools Metabolomics, Proteomics recetox https://github.com/RECETOX/galaxytools/tree/master/tools/mzml_validator https://github.com/RECETOX/galaxytools/tree/master/tools/mzml_validator 0.1.0+galaxy2 lxml 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +naltorfs bicodon_counts_from_fasta, codon_freq_from_bicodons, find_nested_alt_orfs nAlt-ORFs: Nested Alternate Open Reading Frames (nAltORFs) Up-to-date https://github.com/BlankenbergLab/nAltORFs Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/naltorfs/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/naltorfs 0.1.2 naltorfs 0.1.2 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +nanocompore nanocompore_db, nanocompore_sampcomp Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro. Nanocompore Nanocompore Nanocompore RNA modifications detection by comparative Nanopore direct RNA sequencing.RNA modifications detection from Nanopore dRNA-Seq data.Nanocompore identifies differences in ONT nanopore sequencing raw signal corresponding to RNA modifications by comparing 2 samples.Analyses performed for the nanocompore paper.Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from different experimental conditions expected to have a significant impact on RNA modifications. It is recommended to have at least 2 replicates per condition. For example one can use a control condition with a significantly reduced number of modifications such as a cell line for which a modification writing enzyme was knocked-down or knocked-out. Alternatively, on a smaller scale transcripts of interests could be synthesized in-vitro Post-translation modification site prediction, PolyA signal detection, Genotyping, k-mer counting Functional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sites To update https://nanocompore.rna.rocks/ Sequence Analysis nanocompore iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanocompore https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanocompore 1.0.0rc3.post2 nanocompore 1.0.4 PolyA signal detection, Genotyping, k-mer counting Functional, regulatory and non-coding RNA, RNA-Seq, Gene transcripts, Transcriptomics, Transcription factors and regulatory sites 0 1 2 0 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 3 836 True False True +nanoplot nanoplot Plotting tool for long read sequencing data and alignments nanoplot nanoplot NanoPlot NanoPlot is a tool with various visualizations of sequencing data in bam, cram, fastq, fasta or platform-specific TSV summaries, mainly intended for long-read sequencing from Oxford Nanopore Technologies and Pacific Biosciences Scatter plot plotting, Box-Whisker plot plotting Genomics Up-to-date https://github.com/wdecoster/NanoPlot Visualization nanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanoplot/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanoplot 1.43.0 nanoplot 1.43.0 Scatter plot plotting, Box-Whisker plot plotting Genomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 2195 63235 True False True +nanopolishcomp nanopolishcomp_eventaligncollapse, nanopolishcomp_freqmethcalculate NanopolishComp contains 2 modules. Eventalign_collapse collapses the raw file generated by nanopolish eventalign by kmers rather than by event. Freq_meth_calculate methylation frequency at genomic CpG sites from the output of nanopolish call-methylation. nanopolishcomp nanopolishcomp NanopolishComp NanopolishComp is a Python3 package for downstream analyses of Nanopolish output files.It is a companion package for Nanopolish. Methylation analysis, Collapsing methods Sequence analysis, Sequencing, Genetic variation To update https://a-slide.github.io/NanopolishComp Sequence Analysis nanopolishcomp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nanopolishcomp https://github.com/galaxyproject/tools-iuc/tree/main/tools/nanopolishcomp 0.6.11 nanopolishcomp 0.6.12 Methylation analysis, Collapsing methods Sequence analysis, Sequencing, Genetic variation 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 15 1074 True False True +nastiseq nastiseq A method to identify cis-NATs using ssRNA-seq Up-to-date https://ohlerlab.mdc-berlin.de/software/NASTIseq_104/ RNA nastiseq rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/nastiseq https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/nastiseq 1.0 r-nastiseq 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 40 True False False +ncbi_blast_plus blastxml_to_tabular, get_species_taxids, ncbi_blastdbcmd_info, ncbi_blastdbcmd_wrapper, ncbi_blastn_wrapper, ncbi_blastp_wrapper, ncbi_blastx_wrapper, ncbi_convert2blastmask_wrapper, ncbi_deltablast_wrapper, ncbi_dustmasker_wrapper, ncbi_makeblastdb, ncbi_makeprofiledb, ncbi_psiblast_wrapper, ncbi_rpsblast_wrapper, ncbi_rpstblastn_wrapper, ncbi_segmasker_wrapper, ncbi_tblastn_wrapper, ncbi_tblastx_wrapper NCBI BLAST+ To update https://blast.ncbi.nlm.nih.gov/ Sequence Analysis ncbi_blast_plus devteam https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus 2.14.1 python 16 16 16 16 16 16 16 16 0 15 0 0 15 0 0 0 0 0 0 0 16 15 16 0 0 0 0 0 0 16 0 0 0 0 16 0 0 16 15 0 4066 365597 True False True +ncbi_egapx ncbi_egapx Eukaryotic Genome Annotation Pipeline - External (EGAPx) To update https://github.com/ncbi/egapx Genome annotation ncbi_egapx richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_egapx 0.2-alpha 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ncbi_fcs_adaptor ncbi_fcs_adaptor FCS-adaptor detects adaptor and vector contamination in genome sequences. To update https://github.com/ncbi/fcs Sequence Analysis ncbi_fcs_adaptor richard-burhans https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_fcs_adaptor https://github.com/richard-burhans/galaxytools/tree/main/tools/ncbi_fcs_adaptor 0.5.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +ncbi_fcs_gx ncbi_fcs_gx FCS-GX detects contamination from foreign organisms in genome sequences using the genome cross-species aligner (GX). ncbi_fcs ncbi_fcs NCBI fcs The NCBI Foreign Contamination Screen (FCS) is a tool suite for identifying and removing contaminant sequences in genome assemblies. Contaminants are defined as sequences in a dataset that do not originate from the biological source organism and can arise from a variety of environmental and laboratory sources. FCS will help you remove contaminants from genomes before submission to GenBank. Sequence assembly validation, Sequence trimming, Sequence contamination filtering Sequence analysis, Sequence assembly Up-to-date https://github.com/ncbi/fcs-gx Sequence Analysis ncbi_fcs_gx iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx https://github.com/galaxyproject/tools-iuc/tree/main/tools/ncbi_fcs_gx 0.5.4 ncbi-fcs-gx 0.5.4 Sequence assembly validation, Sequence trimming, Sequence contamination filtering Sequence analysis, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +necat necat Error correction and de-novo assembly for ONT Nanopore reads necat necat NECAT NECAT is an error correction and de-novo assembly tool for Nanopore long noisy reads. De-novo assembly Sequence assembly Up-to-date https://github.com/xiaochuanle/NECAT Assembly necat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/necat https://github.com/galaxyproject/tools-iuc/tree/main/tools/necat 0.0.1_update20200803 necat 0.0.1_update20200803 De-novo assembly Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 95 667 True False False +newick_utils newick_display Perform operations on Newick trees newick_utilities newick_utilities Newick Utilities The Newick Utilities are a set of command-line tools for processing phylogenetic trees. They can process arbitrarily large amounts of data and do not require user interaction, which makes them suitable for automating phylogeny processing tasks. Phylogenetic tree generation, Phylogenetic tree analysis, Phylogenetic tree reconstruction Phylogeny, Genomics, Computer science To update http://cegg.unige.ch/newick_utils Visualization, Metagenomics newick_utils iuc https://github.com/tjunier/newick_utils https://github.com/galaxyproject/tools-iuc/tree/main/tools/newick_utils 1.6+galaxy1 newick_utils 1.6 Phylogeny, Genomics, Computer science 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 448 25505 True False True +nextclade nextalign, nextclade Identify differences between your sequences and a reference sequence used by Nextstrain nextclade nextclade Nextclade Nextclade is an open-source project for viral genome alignment, mutation calling, clade assignment, quality checks and phylogenetic placement. Methylation analysis, Variant calling Genomics, Sequence analysis, Cladistics To update https://github.com/nextstrain/nextclade Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nextclade https://github.com/galaxyproject/tools-iuc/tree/main/tools/nextclade 2.7.0 nextalign 2.14.0 Methylation analysis, Variant calling Genomics, Cladistics 1 1 2 2 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 2 0 0 210 4080 True False True +nextdenovo nextdenovo String graph-based de novo assembler for long reads nextdenovo nextdenovo NextDenovo "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a ""correct-then-assemble"" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages." De-novo assembly, Genome assembly Sequencing, Sequence assembly To update https://github.com/Nextomics/NextDenovo Assembly nextdenovo bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo https://github.com/bgruening/galaxytools/tree/master/tools/nextdenovo 2.5.0 nextdenovo 2.5.2 De-novo assembly, Genome assembly Sequencing, Sequence assembly 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 268 True False True +nlstradamus nlstradamus Find nuclear localization signals (NLSs) in protein sequences To update http://www.moseslab.csb.utoronto.ca/NLStradamus Fasta Manipulation, Sequence Analysis nlstradamus peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus https://github.com/peterjc/pico_galaxy/tree/master/tools/nlstradamus 0.0.11 NLStradamus 1.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +nonpareil nonpareil Estimate average coverage in metagenomic datasets nonpareil nonpareil nonpareil Estimate metagenomic coverage and sequence diversity Operation To update http://nonpareil.readthedocs.io Metagenomics nonpareil iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nonpareil https://github.com/galaxyproject/tools-iuc/tree/main/tools/nonpareil 3.1.1 nonpareil 3.5.5 Operation 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 142 True False True +novoplasty novoplasty NOVOPlasty is a de novo assembler and heteroplasmy/variance caller for short circular genomes. To update https://github.com/ndierckx/NOVOPlasty Assembly novoplasty iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/novoplasty https://github.com/galaxyproject/tools-iuc/tree/main/tools/novoplasty 4.3.1 novoplasty 4.3.5 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 162 6384 True False False +nucleosome_prediction Nucleosome Prediction of Nucleosomes Positions on the Genome nucleosome_prediction nucleosome_prediction nucleosome_prediction Prediction of Nucleosomes Positions on the Genome Prediction and recognition, Nucleosome position prediction, Sequence analysis Structural genomics, Nucleic acid sites, features and motifs Up-to-date https://genie.weizmann.ac.il/software/nucleo_exe.html Sequence Analysis nucleosome_prediction bgruening https://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction https://github.com/bgruening/galaxytools/tree/master/tools/nucleosome_prediction 3.0 nucleosome_prediction 3.0 Prediction and recognition, Nucleosome position prediction, Sequence analysis Structural genomics, Nucleic acid sites, features and motifs 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 861 True False True +nugen_nudup nugen_nudup Marks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products. nudup nudup NuDup Marks/removes duplicate molecules based on the molecular tagging technology used in Tecan products. Duplication detection Sequencing Up-to-date https://github.com/tecangenomics/nudup SAM, Metagenomics, Sequence Analysis, Transcriptomics nugen_nudup iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup https://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup 2.3.3 nudup 2.3.3 Duplication detection Sequencing 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +oases oasesoptimiserv Short read assembler To update http://artbio.fr Assembly, RNA oases artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/oases https://github.com/ARTbio/tools-artbio/tree/main/tools/oases 1.4.0 oases 0.2.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +obisindicators obisindicators, obis_data Compute biodiveristy indicators for marine data from obis To update https://github.com/Marie59/obisindicators Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators 0.0.2 r-base 1 0 2 1 1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 45 True False True +obitools obi_illumina_pairend, obi_ngsfilter, obi_annotate, obi_clean, obi_convert, obi_grep, obi_sort, obi_stat, obi_tab, obi_uniq OBITools is a set of programs developed to simplify the manipulation of sequence files obitools obitools OBITools Set of python programs developed to simplify the manipulation of sequence files. They were mainly designed to help us for analyzing Next Generation Sequencer outputs (454 or Illumina) in the context of DNA Metabarcoding. Sequence analysis, Sequence analysis Sequence analysis, DNA, Sequencing Up-to-date http://metabarcoding.org/obitools Sequence Analysis obitools iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/obitools https://github.com/galaxyproject/tools-iuc/tree/main/tools/obitools 1.2.13 obitools 1.2.13 Sequence analysis, Sequence analysis Sequence analysis, DNA, Sequencing 0 10 10 10 0 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 0 503 26251 True False True +ocean argo_getdata, divand_full_analysis Access, process, visualise oceanographic data for the Earth System To update https://github.com/Marie59/FE-ft-ESG/tree/main/argo Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean https://github.com/galaxyecology/tools-ecology/tree/master/tools/ocean 0.1.15 julia 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 True False False +odgi odgi_build, odgi_viz Representing large genomic variation graphs with minimal memory overhead requires a careful encoding of the graph entities. odgi follows the dynamic GBWT in developing a byte-packed version of the graph and paths through it. To update https://github.com/vgteam/odgi Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/odgi/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/odgi 0.3 odgi 0.8.6 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 25 True False False +ogcProcess_otb_bandmath otb_band_math Outputs a monoband image which is the result of a mathematical operation on several multi-band images. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/OtbBandMath https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_bandmath 1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +ogcProcess_otb_meanShiftSmoothing otb_mean_shift_smoothing This application smooths an image using the MeanShift algorithm. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/interpolation https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogcProcess_otb_meanShiftSmoothing 1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +omark omark Proteome quality assessment software omark omark OMArk Proteome quality assessment software Sequence assembly validation, Differential protein expression profiling Proteomics, Sequence analysis, Statistics and probability To update https://github.com/DessimozLab/OMArk Sequence Analysis omark iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/omark/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/omark 0.3.0 Sequence assembly validation, Differential protein expression profiling Proteomics, Sequence analysis, Statistics and probability 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +ont_fast5_api ont_fast5_api_compress_fast5, ont_fast5_api_fast5_subset, ont_fast5_api_multi_to_single_fast5, ont_fast5_api_single_to_multi_fast5 ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore FAST5 file format. To update https://github.com/nanoporetech/ont_fast5_api/ Nanopore ont_fast5_api iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ont_fast5_api https://github.com/galaxyproject/tools-iuc/tree/main/tools/ont_fast5_api 3.1.3 ont-fast5-api 4.1.3 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 39 2654 True False False +openms AccurateMassSearch, AdditiveSeries, BaselineFilter, CVInspector, CompNovo, CompNovoCID, ConsensusID, ConsensusMapNormalizer, ConvertTSVToTraML, ConvertTraMLToTSV, DTAExtractor, DeMeanderize, Decharger, DecoyDatabase, Digestor, DigestorMotif, EICExtractor, ERPairFinder, ExternalCalibration, FFEval, FalseDiscoveryRate, FeatureFinderCentroided, FeatureFinderIdentification, FeatureFinderIsotopeWavelet, FeatureFinderMRM, FeatureFinderMetabo, FeatureFinderMultiplex, FeatureFinderSuperHirn, FeatureLinkerLabeled, FeatureLinkerUnlabeled, FeatureLinkerUnlabeledQT, FidoAdapter, FileConverter, FileFilter, FileInfo, FileMerger, FuzzyDiff, HighResPrecursorMassCorrector, IDConflictResolver, IDDecoyProbability, IDExtractor, IDFileConverter, IDFilter, IDMapper, IDMassAccuracy, IDMerger, IDPosteriorErrorProbability, IDRTCalibration, IDRipper, IDScoreSwitcher, IDSplitter, ITRAQAnalyzer, InclusionExclusionListCreator, InspectAdapter, InternalCalibration, IsobaricAnalyzer, LabeledEval, LowMemPeakPickerHiRes, LowMemPeakPickerHiRes_RandomAccess, LuciphorAdapter, MRMMapper, MRMPairFinder, MRMTransitionGroupPicker, MSGFPlusAdapter, MSSimulator, MapAlignmentEvaluation, MapNormalizer, MapRTTransformer, MapStatistics, MascotAdapter, MascotAdapterOnline, MassCalculator, MassTraceExtractor, MetaProSIP, MetaboliteSpectralMatcher, MultiplexResolver, MzMLSplitter, MzTabExporter, NoiseFilterGaussian, NoiseFilterSGolay, OpenSwathAnalyzer, OpenSwathAssayGenerator, OpenSwathChromatogramExtractor, OpenSwathConfidenceScoring, OpenSwathDIAPreScoring, OpenSwathDecoyGenerator, OpenSwathFeatureXMLToTSV, OpenSwathFileSplitter, OpenSwathMzMLFileCacher, OpenSwathRTNormalizer, OpenSwathRewriteToFeatureXML, OpenSwathWorkflow, PTModel, PTPredict, PeakPickerHiRes, PeakPickerIterative, PeakPickerWavelet, PepNovoAdapter, PeptideIndexer, PhosphoScoring, PrecursorIonSelector, PrecursorMassCorrector, ProteinInference, ProteinQuantifier, ProteinResolver, QCCalculator, QCEmbedder, QCExporter, QCExtractor, QCImporter, QCMerger, QCShrinker, RNPxl, RNPxlXICFilter, RTEvaluation, RTModel, RTPredict, SemanticValidator, SequenceCoverageCalculator, SimpleSearchEngine, SpecLibCreator, SpectraFilterBernNorm, SpectraFilterMarkerMower, SpectraFilterNLargest, SpectraFilterNormalizer, SpectraFilterParentPeakMower, SpectraFilterScaler, SpectraFilterSqrtMower, SpectraFilterThresholdMower, SpectraFilterWindowMower, SpectraMerger, SvmTheoreticalSpectrumGeneratorTrainer, TICCalculator, TMTAnalyzer, TOFCalibration, TextExporter, TopPerc, TransformationEvaluation, XMLValidator, XTandemAdapter OpenMS in version 2.1. To update Proteomics openms bgruening https://github.com/bgruening/galaxytools/tree/master/tools/openms https://github.com/bgruening/galaxytools/tree/master/tools/openms 2.1.0 openms 3.1.0 7 34 135 0 7 34 135 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135 134 0 916 105743 True False False +openms AccurateMassSearch, AssayGeneratorMetabo, BaselineFilter, CVInspector, ClusterMassTraces, ClusterMassTracesByPrecursor, CometAdapter, ConsensusID, ConsensusMapNormalizer, DTAExtractor, DatabaseFilter, DatabaseSuitability, DeMeanderize, DecoyDatabase, Digestor, DigestorMotif, EICExtractor, ERPairFinder, Epifany, ExternalCalibration, FalseDiscoveryRate, FeatureFinderCentroided, FeatureFinderIdentification, FeatureFinderIsotopeWavelet, FeatureFinderMRM, FeatureFinderMetabo, FeatureFinderMetaboIdent, FeatureFinderMultiplex, FeatureLinkerLabeled, FeatureLinkerUnlabeled, FeatureLinkerUnlabeledKD, FeatureLinkerUnlabeledQT, FileConverter, FileFilter, FileInfo, FileMerger, FuzzyDiff, GNPSExport, HighResPrecursorMassCorrector, IDConflictResolver, IDExtractor, IDFileConverter, IDFilter, IDMapper, IDMassAccuracy, IDMerger, IDPosteriorErrorProbability, IDRTCalibration, IDRipper, IDScoreSwitcher, IDSplitter, InternalCalibration, IsobaricAnalyzer, JSONExporter, LuciphorAdapter, MRMMapper, MRMPairFinder, MRMTransitionGroupPicker, MSFraggerAdapter, MSGFPlusAdapter, MSstatsConverter, MapAlignerIdentification, MapAlignerPoseClustering, MapAlignerSpectrum, MapAlignerTreeGuided, MapNormalizer, MapRTTransformer, MapStatistics, MascotAdapter, MascotAdapterOnline, MassCalculator, MassTraceExtractor, MetaProSIP, MetaboliteSpectralMatcher, MultiplexResolver, MzMLSplitter, MzTabExporter, NoiseFilterGaussian, NoiseFilterSGolay, NovorAdapter, NucleicAcidSearchEngine, OpenMSDatabasesInfo, OpenMSInfo, OpenPepXL, OpenPepXLLF, OpenSwathAnalyzer, OpenSwathAssayGenerator, OpenSwathChromatogramExtractor, OpenSwathConfidenceScoring, OpenSwathDIAPreScoring, OpenSwathDecoyGenerator, OpenSwathFeatureXMLToTSV, OpenSwathFileSplitter, OpenSwathMzMLFileCacher, OpenSwathRTNormalizer, OpenSwathRewriteToFeatureXML, OpenSwathWorkflow, PSMFeatureExtractor, PeakPickerHiRes, PeakPickerIterative, PeakPickerWavelet, PeptideIndexer, PercolatorAdapter, PhosphoScoring, PrecursorMassCorrector, ProteinInference, ProteinQuantifier, ProteinResolver, QCCalculator, QCEmbedder, QCExporter, QCExtractor, QCImporter, QCMerger, QCShrinker, QualityControl, RNADigestor, RNAMassCalculator, RNPxlSearch, RNPxlXICFilter, SageAdapter, SeedListGenerator, SemanticValidator, SequenceCoverageCalculator, SimpleSearchEngine, SiriusAdapter, SpecLibCreator, SpecLibSearcher, SpectraFilterBernNorm, SpectraFilterMarkerMower, SpectraFilterNLargest, SpectraFilterNormalizer, SpectraFilterParentPeakMower, SpectraFilterScaler, SpectraFilterSqrtMower, SpectraFilterThresholdMower, SpectraFilterWindowMower, SpectraMerger, SpectraSTSearchAdapter, StaticModification, TICCalculator, TOFCalibration, TargetedFileConverter, TextExporter, TriqlerConverter, XFDR, XMLValidator, XTandemAdapter OpenMS Suite for LC/MS data management and analyses To update https://www.openms.de/ Proteomics openms galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/openms 3.1 openms 3.1.0 8 34 144 0 8 34 144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 141 124 0 886 105432 True False False +optitype optitype Precision HLA typing from NGS data Up-to-date https://github.com/FRED-2/OptiType Sequence Analysis optitype iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/optitype1 https://github.com/galaxyproject/tools-iuc/tree/main/tools/optitype 1.3.5 optitype 1.3.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 24 321 True False False +orfipy orfipy Galaxy wrapper for ORFIPY orfipy orfipy orfipy A fast and flexible tool for extracting ORFs.orfipy is a tool written in python/cython to extract ORFs in extremely an fast and flexible manner. Other popular ORF searching tools are OrfM and getorf. Compared to OrfM and getorf, orfipy provides the most options to fine tune ORF searches. orfipy uses multiple CPU cores and is particularly faster for data containing multiple smaller fasta sequences such as de-novo transcriptome assemblies. Please read the preprint here. Coding region prediction, Database search, Transcriptome assembly, De-novo assembly Computer science, RNA-Seq, Transcriptomics, Small molecules Up-to-date https://github.com/urmi-21/orfipy Sequence Analysis orfipy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/orfipy https://github.com/galaxyproject/tools-iuc/tree/main/tools/orfipy 0.0.4 orfipy 0.0.4 Coding region prediction, Database search, Transcriptome assembly, De-novo assembly Computer science, RNA-Seq, Transcriptomics, Small molecules 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 53 774 True False True +orthofinder orthofinder_onlygroups Accurate inference of orthologous gene groups made easy OrthoFinder OrthoFinder OrthoFinder OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics. It finds orthogroups and orthologs, infers rooted gene trees for all orthogroups and identifies all of the gene duplcation events in those gene trees. It also infers a rooted species tree for the species being analysed and maps the gene duplication events from the gene trees to branches in the species tree. OrthoFinder also provides comprehensive statistics for comparative genomic analyses. Genome comparison, Phylogenetic tree generation (from molecular sequences), Phylogenetic tree analysis, Genome alignment Phylogenetics, Phylogenomics, Bioinformatics, Comparative genomics, Sequence analysis Up-to-date https://github.com/davidemms/OrthoFinder Phylogenetics, Sequence Analysis orthofinder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/orthofinder https://github.com/galaxyproject/tools-iuc/tree/main/tools/orthofinder 2.5.5 orthofinder 2.5.5 Genome comparison, Genome alignment Phylogenetics, Phylogenomics, Bioinformatics, Comparative genomics 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 239 1333 True False True +pacu pacu_map, pacu_snp PACU is a workflow for whole genome sequencing based phylogeny of Illumina and ONT R9/R10 data. pacu pacu PACU PACU is a workflow for whole genome sequencing based phylogeny of Illumina and ONT R9/R10 data.PACU stands for the Prokaryotic Awesome variant Calling Utility and is named after an omnivorous fish (that eats both Illumina and ONT reads). Clustering Phylogenetics, Sequence analysis Up-to-date https://github.com/BioinformaticsPlatformWIV-ISP/PACU Sequence Analysis, Phylogenetics pacu iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pacu https://github.com/galaxyproject/tools-iuc/tree/main/tools/pacu 0.0.5 pacu_snp 0.0.5 Clustering Phylogenetics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pairtools pairtools_dedup, pairtools_parse, pairtools_sort, pairtools_split, pairtools_stats Flexible tools for Hi-C data processing Up-to-date https://pairtools.readthedocs.io Sequence Analysis pairtools iuc https://github.com/open2c/pairtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/pairtools 1.1.0 pairtools 1.1.0 5 0 5 0 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +pangolin pangolin Phylogenetic Assignment of Named Global Outbreak LINeages To update https://github.com/hCoV-2019/pangolin Sequence Analysis pangolin nml https://github.com/hCoV-2019/pangolin https://github.com/phac-nml/galaxy_tools/tree/master/tools/pangolin 1.1.14 pangolin 4.3 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 259 7276 True False False +pangolin pangolin Pangolin assigns SARS-CoV-2 genome sequences their most likely lineages under the Pango nomenclature system. pangolin_cov-lineages pangolin_cov-lineages pangolin Phylogenetic Assignment of Named Global Outbreak LINeages - software package for assigning SARS-CoV-2 genome sequences to global lineages Tree-based sequence alignment, Variant classification Virology Up-to-date https://github.com/cov-lineages/pangolin Sequence Analysis pangolin iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pangolin https://github.com/galaxyproject/tools-iuc/tree/main/tools/pangolin 4.3 pangolin 4.3 Tree-based sequence alignment, Variant classification Virology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 259 7276 True False False +paralyzer paralyzer A method to generate a high resolution map of interaction sites between RNA-binding proteins and their targets. Up-to-date https://ohlerlab.mdc-berlin.de/software/PARalyzer_85/ RNA paralyzer rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/paralyzer https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/paralyzer 1.5 paralyzer 1.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 299 True False False +parse_mito_blast parse_mito_blast Filtering blast out from querying assembly against mitochondrial database. Up-to-date https://raw.githubusercontent.com/VGP/vgp-assembly/master/galaxy_tools/parse_mito_blast/parse_mito_blast.py Sequence Analysis parse_mito_blast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/parse_mito_blast https://github.com/galaxyproject/tools-iuc/tree/main/tools/parse_mito_blast 1.0.2 parse_mito_blast 1.0.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 31 90 True False False +pathview pathview Pathview is a tool set for pathway based data integration and visualization. pathview pathview pathview Tool set for pathway based data integration and visualization that maps and renders a wide variety of biological data on relevant pathway graphs. It downloads the pathway graph data, parses the data file, maps user data to the pathway, and render pathway graph with the mapped data. In addition, it integrates with pathway and gene set (enrichment) analysis tools for large-scale and fully automated analysis. Pathway or network analysis, Pathway or network visualisation Molecular interactions, pathways and networks, Systems biology, Data visualisation To update https://bioconductor.org/packages/release/bioc/html/pathview.html Statistics, RNA, Micro-array Analysis pathview iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pathview https://github.com/galaxyproject/tools-iuc/tree/main/tools/pathview 1.34.0 bioconductor-pathview 1.42.0 Pathway or network analysis, Pathway or network visualisation Molecular interactions, pathways and networks, Systems biology, Data visualisation 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 565 5260 True False False +pathwaymatcher reactome_pathwaymatcher Reactome Pathway Matcher To update https://github.com/LuisFranciscoHS/PathwayMatcher Proteomics reactome_pathwaymatcher galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcher https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pathwaymatcher pathwaymatcher 1.9.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 238 True False False +patrist patrist Extract Patristic Distance From a Tree To update https://gist.github.com/ArtPoon/7330231e74201ded54b87142a1d6cd02 Phylogenetics patrist nml https://github.com/phac-nml/patrist https://github.com/phac-nml/galaxy_tools/tree/master/tools/patrist 0.1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +peakachu peakachu PEAKachu is a peak-caller for CLIP- and RIP-Seq data To update Sequence Analysis, RNA peakachu rnateam https://github.com/tbischler/PEAKachu https://github.com/bgruening/galaxytools/tree/master/tools/peakachu 0.2.0+galaxy1 peakachu 0.2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 78 3109 True False False +pep_pointer pep_pointer PepPointer categorizes peptides by their genomic coordinates. To update Genomic Interval Operations, Proteomics pep_pointer galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointer https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pep_pointer 0.1.3+galaxy1 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 498 True False False +pepquery pepquery A peptide-centric MS search engine for novel peptide identification and validation. To update https://pepquery.org Proteomics pepquery galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery 1.6.2 pepquery 2.0.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 23 4862 True False False +pepquery2 pepquery2, pepquery2_index, pepquery2_show_sets PepQuery2 peptide-centric MS search for peptide identification and validation Up-to-date https://pepquery.org Proteomics pepquery2 galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery2 https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepquery2 2.0.2 pepquery 2.0.2 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 13 717 True False False +peptide_genomic_coordinate peptide_genomic_coordinate Gets genomic coordinate of peptides based on the information in mzsqlite and genomic mapping sqlite files To update Proteomics peptide_genomic_coordinate galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptide_genomic_coordinate 1.0.0 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 9 468 True False False +peptideshaker fasta_cli, ident_params, peptide_shaker, search_gui PeptideShaker and SearchGUI To update http://compomics.github.io Proteomics peptideshaker galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/peptideshaker searchgui 4.3.9 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 0 485 17477 True False True +peptimapper peptimapper_clustqualify, peptimapper_clust_to_gff, peptimapper_pep_match, peptimapper_pep_novo_tag Proteogenomics workflow for the expert annotation of eukaryotic genomes To update https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-019-5431-9 Proteomics genouest https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper https://github.com/genouest/galaxy-tools/tree/master/tools/peptimapper 2.1 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +pepxml_to_xls Convert PepXML to Tabular To update Proteomics pepxml_to_xls galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xls https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pepxml_to_xls 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +percolator batched_set_list_creator, percolator, percolator_input_converters, pout2mzid Percolator To update Proteomics percolator galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/percolator https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/percolator 3.5 percolator 3.6.5 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 5 368 True False False +pfamscan pfamscan Search a FASTA sequence against a library of Pfam HMM. pfamscan pfamscan PfamScan This tool is used to search a FASTA sequence against a library of Pfam HMM. Protein sequence analysis Sequence analysis Up-to-date http://ftp.ebi.ac.uk/pub/databases/Pfam/Tools/ Sequence Analysis pfamscan bgruening https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan https://github.com/bgruening/galaxytools/tree/master/tools/pfamscan 1.6 pfam_scan 1.6 Protein sequence analysis Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 19 165 True False True +pharokka pharokka rapid standardised annotation tool for bacteriophage genomes and metagenomes pharokka pharokka Pharokka Pharokka is a rapid standardised annotation tool for bacteriophage genomes and metagenomes. Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA To update https://github.com/gbouras13/pharokka Genome annotation pharokka iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka https://github.com/galaxyproject/tools-iuc/tree/main/tools/pharokka 1.3.2 " + pharokka + " Genome annotation, Antimicrobial resistance prediction, tRNA gene prediction, Formatting, Sequence assembly Metagenomics, Sequence sites, features and motifs, Workflows, Functional, regulatory and non-coding RNA 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 74 2565 True False True +phyloseq phyloseq_from_biom, phyloseq_from_dada2, phyloseq_plot_ordination, phyloseq_plot_richness Handling and analysis of high-throughput microbiome census data phyloseq phyloseq phyloseq Provides a set of classes and tools to facilitate the import, storage, analysis, and graphical display of microbiome census data. Deposition, Analysis, Visualisation Microbiology, Sequence analysis, Metagenomics Up-to-date https://www.bioconductor.org/packages/release/bioc/html/phyloseq.html Metagenomics phyloseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyloseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/phyloseq 1.46.0 bioconductor-phyloseq 1.46.0 Deposition, Analysis, Visualisation Microbiology, Sequence analysis, Metagenomics 0 1 4 4 0 1 4 4 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 82 812 True False True +phyml phyml PhyML is a phylogeny software based on the maximum-likelihood principle. phyml phyml PhyML Phylogenetic estimation software using Maximum Likelihood Phylogenetic tree generation (maximum likelihood and Bayesian methods) Phylogenetics, Bioinformatics, Phylogenetics Up-to-date http://www.atgc-montpellier.fr/phyml/ Phylogenetics phyml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml https://github.com/galaxyproject/tools-iuc/tree/main/tools/phyml 3.3.20220408 phyml 3.3.20220408 Phylogenetics, Bioinformatics, Phylogenetics 0 1 1 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 104 1770 True False True +pi_db_tools calc_delta_pi, pi_db_split, pi_dbspec_align HiRIEF tools To update Proteomics hirieftools galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/pi_db_tools https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pi_db_tools 1.3 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +picrust picrust_categorize, picrust_compare_biom, picrust_format_tree_and_trait_table, picrust_metagenome_contributions, picrust_normalize_by_copy_number, picrust_predict_metagenomes PICRUSt wrappers picrust picrust PICRUSt PICRUSt (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a bioinformatics software package designed to predict metagenome functional content from marker gene (e.g., 16S rRNA) surveys and full genomes. Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcoding Metagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencing To update https://picrust.github.io/picrust/ Metagenomics picrust iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/picrust https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust 1.1.1 picrust 1.1.4 Phylogenetic reconstruction, Expression analysis, Genome annotation, DNA barcoding Metagenomics, Microbial ecology, Functional, regulatory and non-coding RNA, Metagenomic sequencing 0 6 5 6 0 6 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 45 1095 True False True +picrust2 picrust2_add_descriptions, picrust2_hsp, picrust2_metagenome_pipeline, picrust2_pathway_pipeline, picrust2_pipeline, picrust2_place_seqs, picrust2_shuffle_predictions PICRUSt2: Phylogenetic Investigation of Communities by Reconstruction of Unobserved States picrust2 picrust2 PICRUSt2 PICRUSt2 (Phylogenetic Investigation of Communities by Reconstruction of Unobserved States) is a software for predicting functional abundances based only on marker gene sequences. Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysis Metagenomics, Microbiology, Phylogenetics, Metagenomic sequencing Up-to-date https://github.com/picrust/picrust2/wiki Metagenomics picrust2 iuc https://github.com/picrust/picrust2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/picrust2 2.5.3 picrust2 2.5.3 Phylogenetic reconstruction, Expression analysis, Rarefaction, Pathway analysis Metagenomics, Microbiology, Phylogenetics, Metagenomic sequencing 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 88 1000 True False True +pipmir pipmir A method to identify novel plant miRNA. To update https://ohlerlab.mdc-berlin.de/software/Pipeline_for_the_Identification_of_Plant_miRNAs_84/ RNA pipmir rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/pipmir https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/pipmir 0.1.0 pipmir 1.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 21 275 True False False +piranha piranha Piranha is a peak-caller for CLIP- and RIP-Seq data To update Sequence Analysis, RNA piranha rnateam https://github.com/galaxyproject/tools-iuc/tree/master/tools/piranha https://github.com/bgruening/galaxytools/tree/master/tools/piranha 1.2.1.0 piranha 1.2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 39 1809 True False False +plasflow PlasFlow PlasFlow - Prediction of plasmid sequences in metagenomic contigs. plasflow plasflow PlasFlow PlasFlow is a set of scripts used for prediction of plasmid sequences in metagenomic contigs. Sequence analysis Metagenomics Up-to-date https://github.com/smaegol/PlasFlow Sequence Analysis plasflow iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/plasflow https://github.com/galaxyproject/tools-iuc/tree/main/tools/plasflow 1.1.0 plasflow 1.1.0 Sequence analysis Metagenomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 278 22589 True False True +plasmid_profiler_suite Plasmid Profiler suite defining all dependencies for Plasmid Profiler To update Sequence Analysis suite_plasmid_profiler nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmid_profiler_suite 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +plasmidfinder plasmidfinder """PlasmidFinder provides the detection of replicons in the WGSand assigns the plasmids under study to lineages that trace backthe information to the existing knowledge on Inc groups and suggestspossible reference plasmids for each lineage""" PlasmidFinder PlasmidFinder PlasmidFinder PlasmidFinder is a tool for the identification and typing of Plasmid Replicons in Whole-Genome Sequencing (WGS). Genome assembly, Scaffolding, Multilocus sequence typing Whole genome sequencing, Sequence assembly, Mapping, Probes and primers Up-to-date https://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/ Sequence Analysis plasmidfinder iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/plasmidfinder https://github.com/galaxyproject/tools-iuc/tree/main/tools/plasmidfinder 2.1.6 plasmidfinder 2.1.6 Genome assembly, Scaffolding, Multilocus sequence typing Whole genome sequencing, Sequence assembly, Mapping, Probes and primers 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 22 True False True +plasmidspades plasmidspades Genome assembler for assemblying plasmid To update Assembly plasmidspades nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/plasmidspades 1.1 spades 4.0.0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +platypus bg_platypus efficient and accurate variant-detection in high-throughput sequencing data To update http://www.well.ox.ac.uk/platypus Sequence Analysis platypus bgruening https://github.com/bgruening/galaxytools/tree/master/tools/platypus https://github.com/bgruening/galaxytools/tree/master/tools/platypus 0.0.11 platypus 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +plotly_ml_performance_plots plotly_ml_performance_plots performance plots for machine learning problems To update http://scikit-learn.org/stable/modules/classes.html#module-sklearn.metrics Visualization plotly_ml_performance_plots bgruening https://github.com/bgruening/galaxytools/tree/master/tools/plotly_ml_performance_plots https://github.com/bgruening/galaxytools/tree/master/tools/plotly_ml_performance_plots 0.4 galaxy-ml 0.10.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 71 1323 True False False +plotly_parallel_coordinates_plot plotly_parallel_coordinates_plot parallel coordinates plot produced with plotly To update https://plot.ly/python/parallel-coordinates-plot/ Visualization plotly_parallel_coordinates_plot bgruening https://github.com/bgruening/galaxytools/tree/master/tools/plotly_parallel_coordinates_plot https://github.com/bgruening/galaxytools/tree/master/tools/plotly_parallel_coordinates_plot 0.2 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 37 652 True False False +plotly_regression_performance_plots plotly_regression_performance_plots performance plots for regression problems To update http://scikit-learn.org/stable/supervised_learning.html#supervised-learning Visualization plotly_regression_performance_plots bgruening https://github.com/bgruening/galaxytools/tree/master/tools/plotly_regression_performance_plots https://github.com/bgruening/galaxytools/tree/master/tools/plotly_regression_performance_plots 0.1 python 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 79 843 True False False +pmd_fdr pmd_fdr Calculate Precursor Mass Discrepancy (PMD) for MS/MS To update https://github.com/slhubler/PMD-FDR-for-Galaxy-P Proteomics pmd_fdr galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pmd_fdr https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pmd_fdr 1.4.0 r-base 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +poisson2test poisson2test Poisson two-sample test To update https://bitbucket.org/natefoo/taxonomy Statistics, Metagenomics poisson2test devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/poisson2test https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/poisson2test 1.0.0 taxonomy 0.10.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 116 True False False +polypolish polypolish """Polypolish is a tool for polishing genome assemblies with short reads.Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location).This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix.""" Polypolish Polypolish Polypolish Polypolish is a tool for polishing genome assemblies with short reads. Unlike other tools in this category, Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location). This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix. Genome assembly, Read mapping, Mapping assembly, Sequencing error detection Sequence assembly, Sequence composition, complexity and repeats, Mapping To update https://github.com/rrwick/Polypolish Sequence Analysis polypolish iuc https://github.com/mesocentre-clermont-auvergne/galaxy-tools/tree/master/tools/polypolish https://github.com/galaxyproject/tools-iuc/tree/main/tools/polypolish 0.5.0 polypolish 0.6.0 Genome assembly, Read mapping, Mapping assembly, Sequencing error detection Sequence assembly, Sequence composition, complexity and repeats, Mapping 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 24 239 True False True +predictnls predictnls Python reimplementation of predictNLS for Galaxy To update https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls Sequence Analysis predictnls peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls https://github.com/peterjc/pico_galaxy/tree/master/tools/predictnls 0.0.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +presto presto_alignsets, presto_assemblepairs, presto_buildconsensus, presto_collapseseq, presto_filterseq, presto_maskprimers, presto_pairseq, presto_parseheaders, presto_parselog, presto_partition, prestor_abseq3 pRESTO toolkit for immune repertoire analysis. presto presto pRESTO Integrated collection of platform-independent Python modules for processing raw reads from high-throughput (next-generation) sequencing of lymphocyte repertoires. Nucleic acid sequence analysis Sequencing, DNA, Immunology To update https://presto.readthedocs.io/ Sequence Analysis presto iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/presto https://github.com/galaxyproject/tools-iuc/tree/main/tools/presto 0.6.2 presto 0.7.2 Nucleic acid sequence analysis Sequencing, DNA, Immunology 11 0 0 0 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +pretext pretext_graph, pretext_map, pretext_snapshot Process genome contacts maps processing images. Up-to-date https://github.com/wtsi-hpag/PretextSnapshot Sequence Analysis suite_pretext iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pretext https://github.com/galaxyproject/tools-iuc/tree/main/tools/pretext 0.0.6 pretextgraph 0.0.6 3 2 3 0 3 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 254 2350 True False False +prinseq prinseq PRINSEQ is a tool for easy and rapid quality control and data processing of metagenomic and metatranscriptomic datasets prinseq prinseq PRINSEQ PRINSEQ is a sequence processing tool that can be used to filter, reformat and trim genomic and metagenomic sequence data. It generates summary statistics of the input in graphical and tabular formats that can be used for quality control steps. PRINSEQ is available as both standalone and web-based versions. Read pre-processing, Sequence trimming, Sequence contamination filtering Transcriptomics, Metagenomics, Genomics To update http://prinseq.sourceforge.net/manual.html Fastq Manipulation, Metagenomics prinseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/prinseq/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/prinseq @TOOL_VERSION+galaxy2 prinseq 0.20.4 Read pre-processing, Sequence trimming, Sequence contamination filtering Transcriptomics, Metagenomics 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 70 7881 True False False +probecoverage probecoverage computes and plots read coverage of genomic regions by sequencing datasets To update http://artbio.fr Sequence Analysis, Genomic Interval Operations, Graphics, Statistics probecoverage artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/probecoverage https://github.com/ARTbio/tools-artbio/tree/main/tools/probecoverage 0.22.0 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +prodigal prodigal A protein-coding gene prediction software tool for bacterial and archaeal genomes prodigal prodigal Prodigal Fast, reliable protein-coding gene prediction for prokaryotic genomes. Genome annotation Genomics, Sequence analysis Up-to-date https://github.com/hyattpd/Prodigal Genome annotation prodigal iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal https://github.com/galaxyproject/tools-iuc/tree/main/tools/prodigal 2.6.3 prodigal 2.6.3 Genome annotation Genomics, Sequence analysis 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +progressivemauve progressivemauve, xmfa2gff3 Mauve/ProgressiveMauve Multiple Sequence Aligner To update http://darlinglab.org/mauve/user-guide/progressivemauve.html Sequence Analysis progressivemauve iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/progressivemauve https://github.com/galaxyproject/tools-iuc/tree/main/tools/progressivemauve progressivemauve snapshot_2015_02_13 2 0 2 0 2 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 286 1734 True False False +prokka prokka Rapid annotation of prokaryotic genomes prokka prokka Prokka Software tool to annotate bacterial, archaeal and viral genomes quickly and produce standards-compliant output files. Gene prediction, Coding region prediction, Genome annotation Genomics, Model organisms, Virology Up-to-date http://github.com/tseemann/prokka Sequence Analysis prokka crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/prokka/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/prokka 1.14.6 prokka 1.14.6 Coding region prediction, Genome annotation Genomics, Model organisms, Virology 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 3233 371445 True False True +promer promer4_substitutions Aligns two sets of contigs and reports amino acid substitutions between them To update https://github.com/phac-nml/promer Assembly promer nml https://github.com/phac-nml/promer https://github.com/phac-nml/galaxy_tools/tree/master/tools/promer 1.2 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +prot-scriber prot_scriber Protein annotation of short human readable descriptions Up-to-date https://github.com/usadellab/prot-scriber Proteomics prot_scriber iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/prot-scriber https://github.com/galaxyproject/tools-iuc/tree/main/tools/prot-scriber 0.1.6 prot-scriber 0.1.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 5 True False False +protease_prediction eden_protease_prediction This tool can learn the cleavage specificity of a given class of proteases. To update https://github.com/fabriziocosta/eden Sequence Analysis, Proteomics protease_prediction bgruening https://github.com/bgruening/galaxytools/tree/master/tools/protease_prediction https://github.com/bgruening/galaxytools/tree/master/tools/protease_prediction 0.9 eden 2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 154 True False False +protein_analysis promoter2, Psortb, rxlr_motifs, signalp3, tmhmm2, wolf_psort TMHMM, SignalP, Promoter, RXLR motifs, WoLF PSORT and PSORTb To update https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis Sequence Analysis tmhmm_and_signalp peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis https://github.com/peterjc/pico_galaxy/tree/master/tools/protein_analysis 0.0.13 promoter 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 451 6428 True False False +protein_properties bg_protein_properties Calculation of various properties from given protein sequences To update Sequence Analysis protein_properties bgruening https://github.com/bgruening/galaxytools/tree/master/tools/protein_properties https://github.com/bgruening/galaxytools/tree/master/tools/protein_properties 0.2.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 30 604 True False False +proteinortho proteinortho, proteinortho_grab_proteins, proteinortho_summary Proteinortho is a tool to detect orthologous proteins/genes within different species. proteinortho proteinortho Proteinortho Proteinortho is a tool to detect orthologous genes within different species Sequence clustering, Sequence analysis Comparative genomics To update https://gitlab.com/paulklemm_PHD/proteinortho Proteomics proteinortho iuc https://gitlab.com/paulklemm_PHD/proteinortho https://github.com/galaxyproject/tools-iuc/tree/main/tools/proteinortho 6.3.1 proteinortho 6.3.2 Sequence clustering, Sequence analysis Comparative genomics 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 200 3320 True False True +proteomiqon_joinquantpepionswithproteins proteomiqon_joinquantpepionswithproteins The tool JoinQuantPepIonsWithProteins combines results from ProteinInference and PSMBasedQuantification. To update https://csbiology.github.io/ProteomIQon/tools/JoinQuantPepIonsWithProteins.html Proteomics proteomiqon_joinquantpepionswithproteins galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteins https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_joinquantpepionswithproteins 0.0.1 proteomiqon-joinquantpepionswithproteins 0.0.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 366 True False False +proteomiqon_labeledproteinquantification proteomiqon_labeledproteinquantification The tool LabeledProteinQuantification estimates protein abundances using quantified peptide ions. To update https://csbiology.github.io/ProteomIQon/tools/LabeledProteinQuantification.html Proteomics proteomiqon_labeledproteinquantification galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labeledproteinquantification https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labeledproteinquantification 0.0.1 proteomiqon-labeledproteinquantification 0.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 14 True False False +proteomiqon_labelfreeproteinquantification proteomiqon_labelfreeproteinquantification The tool LabelFreeProteinQuantification estimates protein abundances using quantified peptide ions. To update https://csbiology.github.io/ProteomIQon/tools/LabelfreeProteinQuantification.html Proteomics proteomiqon_labelfreeproteinquantification galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labelfreeproteinquantification https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_labelfreeproteinquantification 0.0.1 proteomiqon-labelfreeproteinquantification 0.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 6 True False False +proteomiqon_mzmltomzlite proteomiqon_mzmltomzlite The tool MzMLToMzLite allows to convert mzML files to mzLite files. Up-to-date https://csbiology.github.io/ProteomIQon/tools/MzMLToMzLite.html Proteomics proteomiqon_mzmltomzlite galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomIQon_MzMLToMzLite https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_mzmltomzlite 0.0.8 proteomiqon-mzmltomzlite 0.0.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 721 True False False +proteomiqon_peptidedb proteomiqon_peptidedb The tool ProteomIQon PeptideDB creates a peptide database in the SQLite format. Up-to-date https://csbiology.github.io/ProteomIQon/tools/PeptideDB.html Proteomics proteomiqon_peptidedb galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidedb https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidedb 0.0.7 proteomiqon-peptidedb 0.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 96 True False False +proteomiqon_peptidespectrummatching proteomiqon_peptidespectrummatching Given raw an MS run in the mzLite format, this tool iterates across all MS/MS scans, determines precursor charge states and possible peptide spectrum matches using reimplementations of SEQUEST,Andromeda and XTandem. Up-to-date https://csbiology.github.io/ProteomIQon/tools/PeptideSpectrumMatching.html Proteomics proteomiqon_peptidespectrummatching galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidespectrummatching https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_peptidespectrummatching 0.0.7 proteomiqon-peptidespectrummatching 0.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 686 True False False +proteomiqon_proteininference proteomiqon_proteininference MS-based shotgun proteomics estimates protein abundances using a proxy: peptides. The process of 'Protein Inference' is concerned with the mapping of identified peptides to the proteins they putatively originated from. Up-to-date https://csbiology.github.io/ProteomIQon/tools/ProteinInference.html Proteomics proteomiqon_proteininference galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_proteininference https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_proteininference 0.0.7 proteomiqon-proteininference 0.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 89 True False False +proteomiqon_psmbasedquantification proteomiqon_psmbasedquantification The PSMBasedQuantification tool was designed to allow label-free quantification as well as quantification of full metabolic labeled samples. To update https://csbiology.github.io/ProteomIQon/tools/PSMBasedQuantification.html Proteomics proteomiqon_psmbasedquantification galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmbasedquantification https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmbasedquantification 0.0.8 proteomiqon-psmbasedquantification 0.0.9 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 604 True False False +proteomiqon_psmstatistics proteomiqon_psmstatistics The PSMStatistics tool utilizes semi supervised machine learning techniques to integrate search engine scores as well as the mentioned quality scores into one single consensus score. Up-to-date https://csbiology.github.io/ProteomIQon/tools/PSMStatistics.html Proteomics proteomiqon_psmstatistics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmstatistics https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteomiqon_psmstatistics 0.0.8 proteomiqon-psmstatistics 0.0.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 4 694 True False False +proteore_venn_diagram proteore_venn_diagram ProteoRE JVenn Diagram To update Proteomics proteore_venn_diagram galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteore_venn_diagram 2021.06.08 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 True False False +pseudogenome pseudogenome Create a pseudogenome from a multiple fasta file either with a JCVI linker or custom length and characters. To update https://github.com/phac-nml/galaxy_tools Sequence Analysis pseudogenome nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/pseudogenome 1.0.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +psm2sam PSMtoSAM PSM to SAM To update https://bioconductor.org/packages/release/bioc/html/proBAMr.html Proteomics psm_to_sam galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tools/bumbershoot/psm2sam https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/probam_suite/psm2sam 1.3.2.1 r-base 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +psm_validation psmvalidator Validate PSM from Ion Fragmentation To update https://github.com/galaxyproteomics/psm_fragments.git Proteomics psm_validation galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validation https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/psm_validation 1.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 20 True False False +psy-maps psy_maps Visualization of regular geographical data on a map with psyplot To update https://github.com/Chilipp/psy-maps Visualization, Climate Analysis psy_maps climate https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/psy-maps https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/psy-maps 1.2.1 python 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 46 469 True False False +pureclip pureclip PureCLIP is an HMM based peak caller specifically designed for eCLIP/iCLIP data To update https://github.com/skrakau/PureCLIP Sequence Analysis, RNA, CLIP-seq pureclip iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pureclip https://github.com/galaxyproject/tools-iuc/tree/main/tools/pureclip 1.0.4 pureclip 1.3.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 36 1423 True False False +purge_dups purge_dups Purge haplotigs and overlaps in an assembly based on read depth purge_dups purge_dups purge_dups Identifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuences Genome assembly, Read binning, Scaffolding Sequence assembly Up-to-date https://github.com/dfguan/purge_dups Assembly purge_dups iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/purge_dups https://github.com/galaxyproject/tools-iuc/tree/main/tools/purge_dups 1.2.6 purge_dups 1.2.6 Genome assembly, Read binning, Scaffolding Sequence assembly 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 167 16800 True False False +pycoqc pycoqc QC metrics for ONT Basecalling pycoqc pycoqc pycoQC PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data. Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing Up-to-date https://github.com/tleonardi/pycoQC Nanopore pycoqc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pycoqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/pycoqc 2.5.2 pycoqc 2.5.2 Sequencing quality control, Statistical calculation Sequence analysis, Data quality management, Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 350 21123 True False True +pygenometracks pygenomeTracks pyGenomeTracks: Standalone program and library to plot beautiful genome browser tracks. pygenometracks pygenometracks pyGenomeTracks reproducible plots for multivariate genomic data sets.Standalone program and library to plot beautiful genome browser tracks.pyGenomeTracks aims to produce high-quality genome browser tracks that are highly customizable. Currently, it is possible to plot:. Visualisation, Formatting Model organisms, Imaging, Workflows To update https://github.com/deeptools/pyGenomeTracks Visualization pygenometracks iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pygenometracks https://github.com/galaxyproject/tools-iuc/tree/main/tools/pygenometracks 3.8 pygenometracks 3.9 Visualisation, Formatting Model organisms, Imaging, Workflows 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 377 11332 True False True +pyprophet pyprophet_export, pyprophet_merge, pyprophet_peptide, pyprophet_protein, pyprophet_score, pyprophet_subsample Semi-supervised learning and scoring of OpenSWATH results. To update https://github.com/PyProphet/pyprophet Proteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet 2.1.4 pyprophet 2.2.5 0 5 6 0 0 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 33 2509 True False False +pyscenic pyscenic_aucell, pyscenic_ctx, pyscenic_grn PySCENIC scripts based on usage at https://pyscenic.readthedocs.io/ To update Transcriptomics, RNA, Sequence Analysis suite_pyscenic ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/pyscenic 0.12.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pysradb pysradb_search pysradb allows to retrieve metadata, such as run accession numbers, from SRA and ENA based on multiple criteria. pysradb pysradb pysradb Python package to query next-generation sequencing metadata and data from NCBI Sequence Read Archive. Deposition, Data retrieval Sequencing, Gene transcripts, Bioinformatics To update https://github.com/saketkc/pysradb Sequence Analysis pysradb_search iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pysradb https://github.com/galaxyproject/tools-iuc/tree/main/tools/pysradb 1.4.2 pysradb 2.2.1 Deposition, Data retrieval Sequencing, Gene transcripts, Bioinformatics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 26 144 True False False +pyteomics mztab2tsv Tools using the pyteomics library pyteomics pyteomics Pyteomics Framework for proteomics data analysis, supporting mzML, MGF, pepXML and more. Protein identification Proteomics, Proteomics experiment To update https://pyteomics.readthedocs.io/en/latest/ Proteomics, Metabolomics pyteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomics https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyteomics 4.4.1 pyteomics 4.7.3 Protein identification Proteomics, Proteomics experiment 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 81 True False False +qiime_add_on qiime_collapse_samples, qiime_make_otu_table QIIME to perform microbial community analysis qiime_add_on qiime_add_on, qiime_core qiime_add_on QIIME 2 is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed. Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics To update http://www.qiime.org Metagenomics qiime iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_add_on qiime 1.9.1 Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 68 1909 True False True +qiime_core qiime_align_seqs, qiime_alpha_diversity, qiime_alpha_rarefaction, qiime_assign_taxonomy, qiime_beta_diversity, qiime_beta_diversity_through_plots, qiime_compare_categories, qiime_core_diversity, qiime_count_seqs, qiime_extract_barcodes, qiime_filter_alignment, qiime_filter_fasta, qiime_filter_otus_from_otu_table, qiime_filter_samples_from_otu_table, qiime_filter_taxa_from_otu_table, qiime_jackknifed_beta_diversity, qiime_make_emperor, qiime_make_otu_heatmap, qiime_make_phylogeny, qiime_multiple_join_paired_ends, qiime_multiple_split_libraries_fastq, qiime_pick_closed_reference_otus, qiime_pick_open_reference_otus, qiime_pick_otus, qiime_pick_rep_set, qiime_plot_taxa_summary, qiime_split_libraries, qiime_split_libraries_fastq, qiime_summarize_taxa, qiime_summarize_taxa_through_plots, qiime_upgma_cluster, qiime_validate_mapping_file QIIME to perform microbial community analysis qiime_core qiime_core qiime_core QIIME 2™ is a next-generation microbiome bioinformatics platform that is extensible, free, open source, and community developed. Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics To update http://www.qiime.org Metagenomics qiime iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiime/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime/qiime_core qiime 1.9.1 Demultiplexing, Visualisation, Taxonomic classification, Phylogenetic analysis, Sequencing quality control Microbial ecology, Phylogeny, Metagenomics, Metatranscriptomics 0 0 32 32 0 0 32 32 0 0 0 0 0 0 0 0 0 0 0 0 31 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 31 0 1155 28681 True False True +qiime_extract_viz qiime_extract_viz Extract vizualization from QIIME artifacts To update http://www.qiime.org Metagenomics qiime_extract_viz iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qiimme_extract_viz https://github.com/galaxyproject/tools-iuc/tree/main/tools/qiime_extract_viz 0.1.0 unzip 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +qq_tools qq_manhattan To update https://CRAN.R-project.org/package=qqman Visualization, Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/qq_tools 0.1.0 r-qqman 0.1.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +qualimap qualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseq Qualimap 2 is a platform-independent application written in Java andR that facilitates the quality control of alignment sequencing data and itsderivatives like feature counts. qualimap qualimap QualiMap Platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data. Sequencing quality control Data quality management Up-to-date http://qualimap.bioinfo.cipf.es/ Sequence Analysis, Transcriptomics, SAM qualimap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap https://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap 2.3 qualimap 2.3 Sequencing quality control Data quality management 4 4 4 1 4 4 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 4 4 0 1328 664470 True False True +quality_filter qualityFilter Filter nucleotides based on quality scores To update Sequence Analysis, Variant Analysis quality_filter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/quality_filter https://github.com/galaxyproject/tools-devteam/tree/main/tools/quality_filter 1.0.1 bx-python 0.12.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +quantp quantp Correlation between protein and transcript abundance To update Proteomics quantp galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantp 1.1.2 r-data.table 1.11.6 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 230 True False False +quantwiz_iq quantwiz_iq Isobaric Quantitation using QuantWiz-IQ Up-to-date https://sourceforge.net/projects/quantwiz/ Proteomics quantwiz_iq galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iq https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/quantwiz_iq 2.0 quantwiz-iq 2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 32 True False False +quasitools aacoverage, aavariants, callcodonvar, callntvar, complexity_bam, complexity_fasta, consensus, distance, dnds, drmutations, hydra, quality A collection of tools for analysing Viral Quasispecies Up-to-date https://github.com/phac-nml/quasitools Sequence Analysis quasitools nml https://github.com/phac-nml/quasitools https://github.com/phac-nml/galaxy_tools/tree/master/tools/quasitools 0.7.0 quasitools 0.7.0 0 12 0 12 0 12 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +quast quast Quast (Quality ASsessment Tool) evaluates genome assemblies. quast quast QUAST QUAST stands for QUality ASsessment Tool. It evaluates a quality of genome assemblies by computing various metrics and providing nice reports. Visualisation, Sequence assembly validation Sequence assembly Up-to-date http://quast.bioinf.spbau.ru/ Assembly quast iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/quast https://github.com/galaxyproject/tools-iuc/tree/main/tools/quast 5.2.0 quast 5.2.0 Visualisation, Sequence assembly validation Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 3567 51567 True False True +quickmerge quickmerge Merge long-read and hybrid assemblies to increase contiguity quickmerge quickmerge quickmerge Quickmerge is a program that uses complementary information from genomes assembled with long reads in order to improve contiguity, and works with assemblies derived from both Pacific Biosciences or Oxford Nanopore. Quickmerge will even work with hybrid assemblies made by combining long reads and Illumina short reads. Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype Up-to-date https://github.com/mahulchak/quickmerge Assembly quickmerge galaxy-australia https://github.com/galaxyproject/tools-iuc/tree/master/tools/quickmerge https://github.com/galaxyproject/tools-iuc/tree/main/tools/quickmerge 0.3 quickmerge 0.3 Genome assembly, Scaffolding, De-novo assembly, Genotyping Structural variation, Sequence assembly, DNA polymorphism, Whole genome sequencing, Genotype and phenotype 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 True False True +rRNA meta_rna Identification of ribosomal RNA genes in metagenomic fragments. To update http://weizhong-lab.ucsd.edu/meta_rna/ RNA rrna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rRNA https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rRNA 0.1 hmmsearch3.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +racon racon Consensus module for raw de novo DNA assembly of long uncorrected reads. Racon Racon Racon Consensus module for raw de novo DNA assembly of long uncorrected readsRacon is intended as a standalone consensus module to correct raw contigs generated by rapid assembly methods which do not include a consensus step. The goal of Racon is to generate genomic consensus which is of similar or better quality compared to the output generated by assembly methods which employ both error correction and consensus steps, while providing a speedup of several times compared to those methods. It supports data produced by both Pacific Biosciences and Oxford Nanopore Technologies. Genome assembly, Mapping assembly Whole genome sequencing, Sequence assembly Up-to-date https://github.com/isovic/racon Sequence Analysis racon bgruening https://github.com/bgruening/galaxytools/tree/master/tools/racon https://github.com/bgruening/galaxytools/tree/master/tools/racon 1.5.0 racon 1.5.0 Genome assembly, Mapping assembly Whole genome sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 309 21353 True False True +ragtag ragtag Reference-guided scaffolding of draft genomes tool. ragtag ragtag ragtag RagTag is a collection of software tools for scaffolding and improving modern genome assemblies. Genome assembly Sequence assembly Up-to-date https://github.com/malonge/RagTag Assembly ragtag iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ragtag https://github.com/galaxyproject/tools-iuc/tree/main/tools/ragtag 2.1.0 ragtag 2.1.0 Genome assembly Sequence assembly 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 237 2833 True False False +rapidnj rapidnj Galaxy wrapper for the RapidNJ tool rapidnj rapidnj RapidNJ A tool for fast canonical neighbor-joining tree construction. Phylogenetic tree generation Phylogeny Up-to-date https://birc.au.dk/software/rapidnj/ Phylogenetics rapidnj iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rapidnj https://github.com/galaxyproject/tools-iuc/tree/main/tools/rapidnj 2.3.2 rapidnj 2.3.2 Phylogeny 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 14 176 True False False +rasusa rasusa Randomly subsample sequencing reads to a specified coverage rasusa rasusa rasusa Produces an unbiased subsample of your reads To update https://github.com/mbhall88/rasusa Sequence Analysis rasusa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rasusa https://github.com/galaxyproject/tools-iuc/tree/main/tools/rasusa 2.0.0 rasusa 2.1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +raven raven Raven is a de novo genome assembler for long uncorrected reads. Up-to-date https://github.com/lbcb-sci/raven Assembly iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raven https://github.com/galaxyproject/tools-iuc/tree/main/tools/raven 1.8.3 raven-assembler 1.8.3 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 262 6902 True False False +rawtools rawtools Raw Tools To update https://github.com/kevinkovalchik/RawTools Proteomics rawtools galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtools https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/rawtools rawtools 2.0.4 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 14 175 True False False +raxml raxml RAxML - A Maximum Likelihood based phylogenetic inference raxml raxml RAxML A tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies. Sequence analysis, Phylogenetic tree analysis Phylogenetics, Sequence analysis To update http://www.exelixis-lab.org/web/software/raxml/ Phylogenetics raxml iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raxml https://github.com/galaxyproject/tools-iuc/tree/main/tools/raxml 8.2.12 raxml 8.2.13 Sequence analysis Phylogenetics 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 383 6808 True False True +rbpbench rbpbench Evaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifs rbpbench rbpbench RBPBench Evaluate CLIP-seq and other genomic region data using a comprehensive collection of RBP binding motifs RNA, Protein interactions, RNA immunoprecipitation, Bioinformatics, Sequence analysis To update https://github.com/michauhl/RBPBench Sequence Analysis, RNA, CLIP-seq rbpbench rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbench https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rbpbench 0.8.1 rbpbench 0.9 RNA, Protein interactions, RNA immunoprecipitation, Bioinformatics, Sequence analysis 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 True False False +rcas rcas RCAS (RNA Centric Annotation System) for functional analysis of transcriptome-wide regions detected by high-throughput experiments To update https://github.com/BIMSBbioinfo/RCAS RNA rcas rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rcas/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rcas 1.5.4 bioconductor-rcas 1.28.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 38 1226 True False False +rcve rcve1 Compute RCVE To update Sequence Analysis, Variant Analysis rcve devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/rcve https://github.com/galaxyproject/tools-devteam/tree/main/tools/rcve 1.0.0 R 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +read_it_and_keep read_it_and_keep Rapid decontamination of SARS-CoV-2 sequencing reads read_it_and_keep read_it_and_keep read_it_and_keep Read contamination removal Filtering, Genome alignment Pathology, Genomics To update https://github.com/GenomePathogenAnalysisService/read-it-and-keep Sequence Analysis read_it_and_keep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/read-it-and-keep https://github.com/galaxyproject/tools-iuc/tree/main/tools/read_it_and_keep 0.2.2 read-it-and-keep 0.3.0 Filtering, Genome alignment Pathology, Genomics 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 71 3370 True False True +reago reago Reago is tool to assembly 16S ribosomal RNA recovery from metagenomic data. reago reago REAGO This is an assembly tool for 16S ribosomal RNA recovery from metagenomic data. Sequence assembly Sequence assembly, RNA, Metagenomics, Microbiology Up-to-date https://github.com/chengyuan/reago-1.1 Metagenomics, RNA reago rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/reago 1.1 reago 1.1 Sequence assembly Sequence assembly, RNA, Metagenomics, Microbiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +recentrifuge recentrifuge """With Recentrifuge, researchers can analyze results from taxonomic classifiers using interactive charts with emphasis on the confidence level of the classifications.In addition to contamination-subtracted samples.Recentrifuge provides shared and exclusive taxa per sample,thus enabling robust contamination removal and comparative analysis in environmental and clinical metagenomics.""" Recentrifuge Recentrifuge Recentrifuge Robust comparative analysis and contamination removal for metagenomics. Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic sequencing Up-to-date https://github.com/khyox/recentrifuge Metagenomics recentrifuge iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/recentrifuge https://github.com/galaxyproject/tools-iuc/tree/main/tools/recentrifuge 1.14.1 recentrifuge 1.14.1 Taxonomic classification, Expression analysis, Cross-assembly Metagenomics, Microbial ecology, Metagenomic sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 48 331 True False True +red red Red (REpeat Detector) red red RED This is a program to detect and visualize RNA editing events at genomic scale using next-generation sequencing data. RNA-Seq analysis, Editing RNA, Sequencing, Data visualisation Up-to-date https://github.com/BioinformaticsToolsmith/Red Sequence Analysis red iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/red https://github.com/galaxyproject/tools-iuc/tree/main/tools/red 2018.09.10 red 2018.09.10 RNA-Seq analysis, Editing RNA, Sequencing, Data visualisation 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 88 578 True False False +refseq_masher refseq_masher_contains, refseq_masher_matches Find what genomes match or are contained within your sequence data using Mash_ and a Mash sketch database. Up-to-date https://github.com/phac-nml/refseq_masher Sequence Analysis refseq_masher nml https://github.com/phac-nml/refseq_masher https://github.com/phac-nml/galaxy_tools/tree/master/tools/refseq_masher 0.1.2 refseq_masher 0.1.2 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +regionalgam regionalgam_ab_index, regionalgam_autocor_acf, regionalgam_flight_curve, regionalgam_glmmpql, regionalgam_gls_adjusted, regionalgam_gls, regionalgam_plot_trend To update https://github.com/RetoSchmucki/regionalGAM Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam https://github.com/galaxyecology/tools-ecology/tree/master/tools/regionalgam 1.5 r-mgcv 0 0 7 7 0 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 0 22 526 True False False +remurna remurna remuRNA - Measurement of Single Nucleotide Polymorphism induced Changes of RNA Conformation To update https://www.ncbi.nlm.nih.gov/CBBresearch/Przytycka/index.cgi#remurna RNA remurna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/remurna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/remurna 1.0.0 remurna 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2 42 True False False +repeat_masker repeatmasker_wrapper RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. To update http://www.repeatmasker.org/ Sequence Analysis repeat_masker bgruening https://github.com/bgruening/galaxytools/tree/master/tools/repeat_masker https://github.com/bgruening/galaxytools/tree/master/tools/repeat_masker 0.1.2 RepeatMasker 4.1.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 248 3750 True False False +repeatexplorer2 repeatexplorer_clustering Tool for annotation of repeats from unassembled shotgun reads. To update https://github.com/repeatexplorer/repex_tarean Genome annotation repeatexplorer2 gga https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/repeatexplorer2 2.3.8 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 True False True +repeatmasker repeatmasker_wrapper RepeatMasker is a program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. repeatmasker repeatmasker RepeatMasker A program that screens DNA sequences for interspersed repeats and low complexity DNA sequences. The output of the program is a detailed annotation of the repeats that are present in the query sequence as well as a modified version of the query sequence in which all the annotated repeats have been masked (default: replaced by Ns). Genome annotation Sequence analysis, Sequence composition, complexity and repeats Up-to-date http://www.repeatmasker.org/ Sequence Analysis repeat_masker bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmasker https://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmasker 4.1.5 repeatmasker 4.1.5 Genome annotation Sequence composition, complexity and repeats 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 248 3750 True False False +repeatmodeler repeatmodeler RepeatModeler - Model repetitive DNA repeatmodeler repeatmodeler RepeatModeler De-novo repeat family identification and modeling package. At the heart of RepeatModeler are two de-novo repeat finding programs ( RECON and RepeatScout ) which employ complementary computational methods for identifying repeat element boundaries and family relationships from sequence data. RepeatModeler assists in automating the runs of RECON and RepeatScout given a genomic database and uses the output to build, refine and classify consensus models of putative interspersed repeats. Repeat sequence detection Sequence composition, complexity and repeats, Sequence composition, complexity and repeats To update https://www.repeatmasker.org/RepeatModeler/ Genome annotation repeatmodeler csbl https://github.com/galaxyproject/tools-iuc/tree/master/tools/repeatmodeler https://github.com/galaxyproject/tools-iuc/tree/main/tools/repeatmodeler 2.0.5 Repeat sequence detection Sequence composition, complexity and repeats, Sequence composition, complexity and repeats 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 217 1177 True False False +retrieve_bold retrieve_bold Search a list of sequences in BOLD (Barcode of Life Data System) from specified taxa list and markers To update https://anaconda.org/conda-forge/r-bold Ecology retrieve_bold ecology https://github.com/wpearman1996/MARES_database_pipeline/tree/master https://github.com/galaxyecology/tools-ecology/tree/master/tools/retrieve_bold 1.3.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +revoluzer revoluzer_crex, revoluzer_distmat revoluzer wrappers revoluzer revoluzer revoluzer Various tools for genome rearrangement analysis. CREx, TreeREx, etc Structural variation detection Molecular evolution, Phylogeny Up-to-date https://gitlab.com/Bernt/revoluzer/ Phylogenetics revoluzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/revoluzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/revoluzer 0.1.6 revoluzer 0.1.6 Structural variation detection Molecular evolution, Phylogeny 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +ribotaper ribotaper_create_annotation, ribotaper_create_metaplots, ribotaper_ribosome_profiling A method for defining traslated ORFs using Ribosome Profiling data. ribotaper ribotaper RiboTaper New analysis pipeline for Ribosome Profiling (Ribo-seq) experiments, which exploits the triplet periodicity of ribosomal footprints to call translated regions. Gene expression profiling Functional genomics To update https://ohlerlab.mdc-berlin.de/software/RiboTaper_126/ RNA ribotaper rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/ribotaper 1.3.1a ribotaper 1.3.1 Gene expression profiling Functional genomics 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 44 628 True False False +ribowaltz ribowaltz_process, ribowaltz_plot Calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data riboWaltz riboWaltz riboWaltz riboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data. Computational biology To update https://github.com/LabTranslationalArchitectomics/riboWaltz Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltz https://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz 1.2.0 ribowaltz 2.0 Computational biology 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 14 161 True False False +rna_shapes RNAshapes Compute secondary structures of RNA To update RNA rnashapes rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapes https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rna_shapes 3.3.0 @EXECUTABLE@ 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 129 True False False +rnabob rbc_rnabob Fast pattern searching for RNA structural motifs To update http://eddylab.org/software.html RNA rnabob rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabob https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnabob 2.2.1.0 rnabob 2.2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 3 164 True False False +rnacode rbc_rnacode Analyze the protein coding potential in MSA To update RNA rnacode rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacode https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacode 0.3.2 rnacode 0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 1358 True False False +rnacommender rbc_rnacommender RNAcommender is a tool for genome-wide recommendation of RNA-protein interactions. To update https://github.com/gianlucacorrado/RNAcommender RNA rnacommender rnateam https://github.com/bgruening/galaxytools/tree/rna_commander/tools/rna_tools/rna_commender https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnacommender 0.1.1 sam 3.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 1074 True False False +rnaformer infer_rnaformer RNAformer: RNA secondary structure prediction To update https://github.com/automl/RNAformer RNA rnaformer rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaformer https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaformer 1.0.0 rnaformer 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +rnalien RNAlien RNAlien unsupervized RNA family model construction To update http://rna.tbi.univie.ac.at/rnalien/ RNA, Sequence Analysis rnalien rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalien https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnalien 1.3.6 rnalien 1.8.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 4 33 True False False +rnaquast rna_quast rnaQuast (RNA Quality Assessment Tool) evaluates genome assemblies. rnaQUAST rnaQUAST rnaQUAST Quality assessment tool for de novo transcriptome assemblies. De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics, RNA-seq Up-to-date https://github.com/ablab/rnaquast Assembly, RNA rnaquast iuc https://git.ufz.de/lehmanju/rnaquast https://github.com/galaxyproject/tools-iuc/tree/main/tools/rnaquast 2.3.0 rnaquast 2.3.0 De-novo assembly, Transcriptome assembly, Sequence assembly validation Sequence assembly, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 109 1110 True False False +rnasnp rnasnp RNAsnp Efficient detection of local RNA secondary structure changes induced by SNPs To update http://rth.dk/resources/rnasnp/ RNA rnasnp rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rnasnp https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnasnp 1.2.0 rnasnp 1.2 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 86 True False False +rnaz rnaz, rnaz_annotate, rnaz_cluster, rnaz_randomize_aln, rnaz_select_seqs, rnaz_window RNAz is a program for predicting structurally conserved and thermodynamically stable RNA secondary structures in multiple sequence alignments. Up-to-date https://www.tbi.univie.ac.at/~wash/RNAz/ RNA rnaz bgruening https://github.com/bgruening/galaxytools/tree/master/tools/rna_team/rnaz https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/rnaz 2.1.1 rnaz 2.1.1 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 28 43279 True False False +roary roary Roary the pangenome pipeline roary roary Roary A high speed stand alone pan genome pipeline, which takes annotated assemblies in GFF3 format (produced by Prokka (Seemann, 2014)) and calculates the pan genome. Genome assembly DNA, Genomics, Mapping Up-to-date https://sanger-pathogens.github.io/Roary/ Sequence Analysis roary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/roary https://github.com/galaxyproject/tools-iuc/tree/main/tools/roary 3.13.0 roary 3.13.0 Genome assembly DNA, Genomics, Mapping 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 656 12225 True False True +rsem extract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtie transcript quantification from RNA-Seq data To update https://github.com/deweylab/RSEM Transcriptomics, RNA rsem artbio https://github.com/artbio/tools-artbio/tree/master/tools/rsem https://github.com/ARTbio/tools-artbio/tree/main/tools/rsem rsem 1.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 1 1 0 67 377 True False False +rseqc rseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tin an RNA-seq quality control package rseqc rseqc RSeQC Provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. Data handling Sequencing Up-to-date https://code.google.com/p/rseqc/ Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualization rseqc nilesh https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc 5.0.3 rseqc 5.0.3 Data handling Sequencing 22 22 22 22 22 22 22 22 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 22 22 0 3206 133498 True False True +ruvseq ruvseq Remove Unwanted Variation from RNA-Seq Data ruvseq ruvseq RUVSeq This package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples. Differential gene expression analysis Gene expression, RNA-seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics ruvseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq 1.26.0 bioconductor-ruvseq 1.36.0 Differential gene expression analysis Gene expression 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 76 1236 True False False +sailfish sailfish Sailfish is a tool for transcript quantification from RNA-seq data To update http://www.cs.cmu.edu/~ckingsf/software/sailfish/ Sequence Analysis, RNA sailfish bgruening https://github.com/bgruening/galaxytools/tree/master/tools/sailfish https://github.com/bgruening/galaxytools/tree/master/tools/sailfish 0.10.1.1 bzip2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 55 4024 True False False +salmon alevin, salmon, salmonquantmerge Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data. salmon salmon Salmon A tool for transcript expression quantification from RNA-seq data Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Gene expression, Transcriptomics To update https://github.com/COMBINE-lab/salmon Sequence Analysis, RNA, Transcriptomics bgruening https://github.com/bgruening/galaxytools/tree/master/tools/salmon https://github.com/bgruening/galaxytools/tree/master/tools/salmon 1.10.1 salmon 1.10.3 Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Transcriptomics 2 2 3 1 2 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 1 0 0 0 2 0 0 0 0 0 0 0 3 3 0 969 61937 True False True +salmon-kallisto-mtx-to-10x _salmon_kallisto_mtx_to_10x Transforms .mtx matrix and associated labels into a format compatible with tools expecting old-style 10X data To update https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary Sequence Analysis salmon_kallisto_mtx_to_10x ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/salmon-kallisto-mtx-to-10x/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/salmon-kallisto-mtx-to-10x 0.0.1+galaxy6 scipy 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 561 True False False +salsa2 salsa A tool to scaffold long read assemblies with Hi-C SALSA SALSA SALSA > VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromosome-scale', 'reference-quality', 'Hi-C', 'scaffolder' | Integrating Hi-C links with assembly graphs for chromosome-scale assembly | SALSA: A tool to scaffold long read assemblies with Hi-C data | SALSA: A tool to scaffold long read assemblies with Hi-C | This code is used to scaffold your assemblies using Hi-C data. This version implements some improvements in the original SALSA algorithm. If you want to use the old version, it can be found in the old_salsa branch Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping Up-to-date https://github.com/marbl/SALSA Assembly salsa iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/salsa2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/salsa2 2.3 salsa2 2.3 Genome assembly, De-novo assembly, Scaffolding Sequence assembly, DNA binding sites, Mapping 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 84 454 True False False +sample_seqs sample_seqs Sub-sample sequences files (e.g. to reduce coverage) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs Assembly, Fasta Manipulation, Fastq Manipulation, Sequence Analysis sample_seqs peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs https://github.com/peterjc/pico_galaxy/tree/master/tools/sample_seqs 0.2.6 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 149 3765 True False False +samtools_depad samtools_depad Re-align a SAM/BAM file with a padded reference (using samtools depad) To update http://www.htslib.org/ Assembly, SAM, Sequence Analysis samtools_depad peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depad 0.0.5 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +samtools_depth samtools_depth Coverage depth via samtools To update http://www.htslib.org/ Assembly, Sequence Analysis, SAM samtools_depth peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_depth 0.0.3 samtools 1.20 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 296 4948 True False False +samtools_idxstats samtools_idxstats BAM mapping statistics (using samtools idxstats) To update http://www.htslib.org/ Assembly, Next Gen Mappers, SAM samtools_idxstats peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats 0.0.6 samtools 1.20 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1450 48426 True False False +sarscov2formatter sarscov2formatter sarscov2formatter custom script Up-to-date https://github.com/nickeener/sarscov2formatter Sequence Analysis sarscov2formatter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2formatter https://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2formatter 1.0 sarscov2formatter 1.0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 7 173 True False True +sarscov2summary sarscov2summary sarscov2summary custom script To update https://github.com/nickeener/sarscov2summary Sequence Analysis sarscov2summary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sarscov2summary https://github.com/galaxyproject/tools-iuc/tree/main/tools/sarscov2summary 0.1 sarscov2summary 0.5 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 140 True False True +sashimi_plot sashimi_plot Generates a sashimi plot from bam files. To update http://artbio.fr RNA, Transcriptomics, Graphics, Visualization sashimi_plot artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plot https://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot 0.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +sc3 sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepare De-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_sc3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc3 1.8.0 sc3-scripts 0.0.6 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 True False False +scanpy anndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_data scanpy-scripts, command-line wrapper scripts around Scanpy. To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis, RNA scanpy_scripts ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpy https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy 1.9.3 scanpy-scripts 1.9.301 27 27 27 0 27 27 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 13 0 2185 39356 True False False +scanpy scanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confounders Scanpy – Single-Cell Analysis in Python scanpy scanpy SCANPY Scalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. Differential gene expression analysis Gene expression, Cell biology, Genetics To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis scanpy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy 1.9.6 scanpy 1.7.2 Differential gene expression analysis Gene expression, Cell biology, Genetics 6 6 6 0 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 0 766 51978 True False False +scater scater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsne Scater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization. scater scater scater Pre-processing, quality control, normalization and visualization of single-cell RNA-seq data. Read pre-processing, Sequencing quality control, Sequence visualisation RNA-seq, Quality affairs, Molecular genetics To update http://bioconductor.org/packages/scater/ Transcriptomics, RNA, Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scater https://github.com/galaxyproject/tools-iuc/tree/main/tools/scater 1.22.0 bioconductor-scater 1.30.1 Read pre-processing, Sequence visualisation Quality affairs, Molecular genetics 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 77 1365 True False False +scater scater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_results De-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scater ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater 1.10.0 scater-scripts 0.0.5 1 2 6 0 1 2 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 16 387 True False False +schicexplorer schicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrol scHiCExplorer: Set of programs to process, analyze and visualize scHi-C data. To update https://github.com/joachimwolff/schicexplorer Sequence Analysis, Transcriptomics, Visualization schicexplorer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorer https://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer 4 schicexplorer 7 16 16 16 0 16 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 16 0 23 779 True False False +scikit-bio scikit_bio_diversity_beta_diversity scikit-bio: an open-source, BSD-licensed, python package providing data structures, algorithms, and educational resources for bioinformatics Up-to-date http://scikit-bio.org/ Sequence Analysis scikit_bio iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scikit_bio https://github.com/galaxyproject/tools-iuc/tree/main/tools/scikit-bio 0.4.2 scikit-bio 0.4.2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 True False False +scmap scmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_features De-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scmap ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap 1.6.4 scmap-cli 0.1.0 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 13 83 True False False +scoary scoary Scoary calculates the assocations between all genes in the accessory genome and the traits. scoary scoary Scoary Pan-genome wide association studies and is designed to take the gene_presence_absence.csv file from Roary as well as a traits file created by the user and calculate the assocations between all genes in the accessory genome (all genes that are present in i genomes where 1 < i < N) and the traits. It reports a list of genes sorted by strength of association per trait. Analysis Genotype and phenotype, Model organisms, GWAS study, Functional genomics Up-to-date https://github.com/AdmiralenOla/Scoary Metagenomics scoary iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scoary https://github.com/galaxyproject/tools-iuc/tree/main/tools/scoary 1.6.16 scoary 1.6.16 Analysis Genotype and phenotype, Model organisms, GWAS study, Functional genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 61 676 True False True +scpipe scpipe A flexible preprocessing pipeline for single-cell RNA-sequencing data scpipe scpipe scPipe A preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols. Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq, Sequencing To update http://bioconductor.org/packages/release/bioc/html/scPipe.html Transcriptomics, RNA, Statistics scpipe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipe https://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe 1.0.0+galaxy2 bioconductor-scpipe 2.2.0 Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 11 628 True False False +scpred scpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_model De-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scpred ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred 1.0.2 scpred-cli 0.1.0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 True False False +sdmpredictors sdmpredictors_list_layers Terrestrial and marine predictors for species distribution modelling. To update https://cran.r-project.org/web/packages/sdmpredictors/index.html Ecology sdmpredictors ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors https://github.com/galaxyecology/tools-ecology/tree/master/tools/sdmpredictors 0.2.15 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +selectsequencesfrommsa selectsequencesfrommsa SelectSequences - selects representative entries from a multiple sequence alignment in clustal format Up-to-date https://github.com/eggzilla/SelectSequences RNA, Sequence Analysis selectsequencesfrommsa rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/selectsequencesfrommsa https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/selectsequencesfrommsa 1.0.5 selectsequencesfrommsa 1.0.5 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 27 457 True False False +semibin semibin_bin, semibin_concatenate_fasta, semibin_generate_cannot_links, semibin_generate_sequence_features, semibin, semibin_train SemiBin: Semi-supervised Metagenomic Binning Using Siamese Neural Networks semibin semibin SemiBin Command tool for metagenomic binning with semi-supervised deep learning using information from reference genomes. Sequence assembly, Read binning Metagenomics, Machine learning, Microbial ecology, Sequence assembly To update https://semibin.readthedocs.io/en/latest/ Metagenomics semibin iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/semibin https://github.com/galaxyproject/tools-iuc/tree/main/tools/semibin 2.0.2 semibin 2.1.0 Sequence assembly, Read binning Metagenomics, Machine learning, Microbial ecology, Sequence assembly 0 0 6 1 0 0 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 39 542 True False True +seq2hla seq2hla Precision HLA typing and expression from RNAseq data seq2hla seq2hla Seq2HLA seq2HLA is a computational tool to determine Human Leukocyte Antigen (HLA) directly from existing and future short RNA-Seq reads. It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie index comprising known HLA alleles and outputs the most likely HLA class I and class II types, a p-value for each call, and the expression of each class. Read mapping, Genetic variation analysis Transcriptomics, Mapping Up-to-date https://github.com/TRON-Bioinformatics/seq2HLA Sequence Analysis seq2hla iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla https://github.com/galaxyproject/tools-iuc/tree/main/tools/seq2hla 2.3 seq2hla 2.3 Read mapping, Genetic variation analysis Transcriptomics, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 16 288 True False False +seq_composition seq_composition Sequence composition To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition Sequence Analysis seq_composition peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition 0.0.5 biopython 1.70 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 71 874 True False False +seq_filter_by_id seq_filter_by_id Filter sequences by ID To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation seq_filter_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_id 0.2.9 biopython 1.70 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 306 25302 True False False +seq_filter_by_mapping seq_filter_by_mapping Filter sequencing reads using SAM/BAM mapping files To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping Assembly, Fasta Manipulation, Fastq Manipulation, SAM, Sequence Analysis seq_filter_by_mapping peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_filter_by_mapping 0.0.8 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 82 3784 True False False +seq_length seq_length Compute sequence length (from FASTA, QUAL, FASTQ, SFF, etc) To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length Fasta Manipulation, Fastq Manipulation, Sequence Analysis seq_length peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_length 0.0.5 biopython 1.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +seq_primer_clip seq_primer_clip Trim off 5' or 3' primers To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip Assembly, Fasta Manipulation, Text Manipulation seq_primer_clip peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_primer_clip 0.0.18 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +seq_rename seq_rename Rename sequences with ID mapping from a tabular file To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename Fasta Manipulation, Sequence Analysis, Text Manipulation seq_rename peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_rename 0.0.10 galaxy_sequence_utils 1.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 True False False +seq_select_by_id seq_select_by_id Select sequences by ID To update https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id Fasta Manipulation, Sequence Analysis, Text Manipulation seq_select_by_id peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_select_by_id 0.0.15 biopython 1.70 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +seqcomplexity seqcomplexity Sequence complexity for raw reads Up-to-date https://github.com/stevenweaver/seqcomplexity Sequence Analysis iuc https://github.com/stephenshank/tools-iuc/tree/seqcomplexity/tools/seqcomplexity/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqcomplexity 0.1.2 seqcomplexity 0.1.2 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 16 68 True False False +seqkit seqkit_fx2tab, seqkit_locate, seqkit_sort, seqkit_stats, seqkit_translate A cross-platform and ultrafast toolkit for FASTA/Q file manipulation seqkit seqkit seqkit FASTA and FASTQ are basic and ubiquitous formats for storing nucleotide and protein sequences. Common manipulations of FASTA/Q file include converting, searching, filtering, deduplication, splitting, shuffling, and sampling. Existing tools only implement some of these manipulations, and not particularly efficiently, and some are only available for certain operating systems. Furthermore, the complicated installation process of required packages and running environments can render these programs less user friendly. SeqKit demonstrates competitive performance in execution time and memory usage compared to similar tools. The efficiency and usability of SeqKit enable researchers to rapidly accomplish common FASTA/Q file manipulations. DNA transcription, Sequence trimming, DNA translation, Sequence conversion Database management, Sequence analysis Up-to-date https://bioinf.shenwei.me/seqkit/ Sequence Analysis seqkit iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqkit 2.8.2 seqkit 2.8.2 DNA transcription, Sequence trimming, DNA translation Database management, Sequence analysis 0 2 5 2 0 2 5 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 129 1964 True False True +seqprep seqprep Tool for merging paired-end Illumina reads and trimming adapters. seqprep seqprep SeqPrep Strips adapters and optionally merges overlapping paired-end (or paired-end contamination in mate-pair libraries) illumina style reads. Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers Up-to-date https://github.com/jstjohn/SeqPrep Fastq Manipulation, Sequence Analysis seqprep iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqprep https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqprep 1.3.2 seqprep 1.3.2 Nucleic acid design Genomics, Sequence assembly, Sequencing, Probes and primers 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +seqsero2 seqsero2 Salmonella serotype prediction from genome sequencing data seqsero2 seqsero2 SeqSero2 "rapid and improved Salmonella serotype determination using whole genome sequencing data | SeqSero-Salmonella Serotyping by Whole Genome Sequencing | Salmonella Serotyping by Whole Genome Sequencing | Online version: http://www.denglab.info/SeqSero2 | Salmonella serotype prediction from genome sequencing data | Citation: SeqSero, Zhang et al. 2015; SeqSero2, Zhang et al. 2019 | Salmonella serotype derterminants databases | Upon executing the command, a directory named 'SeqSero_result_Time_your_run' will be created. Your result will be stored in 'SeqSero_result.txt' in that directory. And the assembled alleles can also be found in the directory if using ""-m a"" (allele mode)" Genome indexing, Antimicrobial resistance prediction, Genome alignment Whole genome sequencing, Sequence assembly, Genomics Up-to-date https://github.com/denglab/SeqSero2 Sequence Analysis seqsero2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqsero2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqsero2 1.3.1 seqsero2 1.3.1 Genome indexing, Antimicrobial resistance prediction, Genome alignment Whole genome sequencing, Sequence assembly, Genomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 True False True +seqtk seqtk_comp, seqtk_cutN, seqtk_dropse, seqtk_fqchk, seqtk_hety, seqtk_listhet, seqtk_mergefa, seqtk_mergepe, seqtk_mutfa, seqtk_randbase, seqtk_sample, seqtk_seq, seqtk_subseq, seqtk_telo, seqtk_trimfq Toolkit for processing sequences in FASTA/Q formats seqtk seqtk seqtk A tool for processing sequences in the FASTA or FASTQ format. It parses both FASTA and FASTQ files which can also be optionally compressed by gzip. Data handling, Sequence file editing Data management Up-to-date https://github.com/lh3/seqtk Sequence Analysis seqtk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqtk 1.4 seqtk 1.4 Data handling, Sequence file editing 15 15 15 15 15 15 15 15 0 0 0 0 14 0 0 0 0 0 0 0 14 0 14 0 0 14 0 0 0 15 0 0 0 0 0 0 0 14 14 14 753 59668 True False False +seqtk_nml seqtk_nml_sample Tool to downsample fastq reads To update https://github.com/lh3/seqtk Sequence Analysis seqtk_nml nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/galaxy_tools/tree/master/tools/seqtk_nml 1.0.1 seqtk 1.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +seqwish seqwish Alignment to variation graph inducer To update https://github.com/ekg/seqwish Sequence Analysis, Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqwish/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/seqwish 0.7.5 seqwish 0.7.10 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 271 True False False +seurat seurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_features De-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1 Up-to-date https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ Transcriptomics, RNA, Statistics, Sequence Analysis suite_seurat ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat 4.0.0 seurat-scripts 4.0.0 14 14 14 11 14 14 14 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 0 0 0 181 1966 True False False +seurat seurat A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data To update https://github.com/satijalab/seurat Transcriptomics, RNA, Statistics seurat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat https://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat 4.3.0.1 r-seurat 3.0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 66 1543 True False False +shasta shasta Fast de novo assembly of long read sequencing data To update https://github.com/chanzuckerberg/shasta Assembly, Nanopore shasta iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shasta https://github.com/galaxyproject/tools-iuc/tree/main/tools/shasta 0.6.0 shasta 0.12.0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 154 763 True False False +shorah shorah_amplicon Reconstruct haplotypes using ShoRAH in amplicon mode shorah shorah ShoRAH Inference of a population from a set of short reads. The package contains programs that support mapping of reads to a reference genome, correcting sequencing errors by locally clustering reads in small windows of the alignment, reconstructing a minimal set of global haplotypes that explain the reads, and estimating the frequencies of the inferred haplotypes. Haplotype mapping, Variant calling Metagenomics, Sequencing, Genetics To update https://github.com/cbg-ethz/shorah/blob/master/README.md Sequence Analysis shorah_amplicon iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shorah https://github.com/galaxyproject/tools-iuc/tree/main/tools/shorah 1.1.3 shorah 1.99.2 Haplotype mapping, Variant calling Metagenomics, Sequencing, Genetics 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +short_reads_figure_high_quality_length hist_high_quality_score Histogram of high quality score reads To update Sequence Analysis, Graphics short_reads_figure_high_quality_length devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_high_quality_length https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_figure_high_quality_length 1.0.0 rpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +short_reads_figure_score quality_score_distribution Build base quality distribution To update Sequence Analysis, Graphics short_reads_figure_score devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/short_reads_figure_score https://github.com/galaxyproject/tools-devteam/tree/main/tools/short_reads_figure_score 1.0.2 fontconfig 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 163 True False False +shovill shovill Faster de novo assembly pipeline based around Spades shovill shovill shovill Shovill is a pipeline for assembly of bacterial isolate genomes from Illumina paired-end reads. Shovill uses SPAdes at its core, but alters the steps before and after the primary assembly step to get similar results in less time. Shovill also supports other assemblers like SKESA, Velvet and Megahit, so you can take advantage of the pre- and post-processing the Shovill provides with those too. Genome assembly Genomics, Microbiology, Sequence assembly Up-to-date https://github.com/tseemann/shovill Assembly shovill iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/shovill https://github.com/galaxyproject/tools-iuc/tree/main/tools/shovill 1.1.0 shovill 1.1.0 Genome assembly Genomics, Microbiology, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1008 41600 True False True +sickle sickle A windowed adaptive trimming tool for FASTQ files using quality sickle sickle sickle A tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads. Sequence trimming Data quality management To update https://github.com/najoshi/sickle Fastq Manipulation, Sequence Analysis sickle iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sickle https://github.com/galaxyproject/tools-iuc/tree/main/tools/sickle 1.33.2 sickle-trim 1.33 Sequence trimming Data quality management 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 269 14982 True False False +sina sina SINA reference based multiple sequence alignment sina sina SINA Aligns and optionally taxonomically classifies your rRNA gene sequences.Reference based multiple sequence alignment Sequence alignment analysis, Multiple sequence alignment, Taxonomic classification, Structure-based sequence alignment Sequencing, RNA, Nucleic acid structure analysis, Taxonomy, Sequence analysis, Taxonomy Up-to-date https://sina.readthedocs.io/en/latest/ Sequence Analysis sina iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sina https://github.com/galaxyproject/tools-iuc/tree/main/tools/sina 1.7.2 sina 1.7.2 Sequence alignment analysis, Multiple sequence alignment, Taxonomic classification, Structure-based sequence alignment Sequencing, RNA, Nucleic acid structure analysis, Taxonomy, Sequence analysis, Taxonomy 1 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 42 1128 True False False +sinto sinto_barcode, sinto_fragments Sinto single-cell analysis tools To update https://github.com/timoast/sinto Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sinto https://github.com/galaxyproject/tools-iuc/tree/main/tools/sinto 0.9.0 sinto 0.10.1 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 17 91 True False False +sistr_cmd sistr_cmd SISTR in silico serotyping tool To update https://github.com/phac-nml/sistr_cmd Sequence Analysis sistr_cmd nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/sistr_cmd 1.1.1 sistr_cmd 1.1.2 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 133 2489 True False True +sixgill sixgill_build, sixgill_filter, sixgill_makefasta, sixgill_merge Six-frame Genome-Inferred Libraries for LC-MS/MS Up-to-date Proteomics, MetaProteomics sixgill galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgill https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/sixgill 0.2.4 sixgill 0.2.4 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 24 293 True False False +slamdunk alleyoop, slamdunk Slamdunk maps and quantifies SLAMseq reads Up-to-date http://t-neumann.github.io/slamdunk RNA, Transcriptomics, Sequence Analysis, Next Gen Mappers slamdunk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunk https://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk 0.4.3 slamdunk 0.4.3 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 361 True False False +sleuth sleuth Sleuth is a program for differential analysis of RNA-Seq data. sleuth sleuth sleuth A statistical model and software application for RNA-seq differential expression analysis. Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation RNA-seq, Gene expression, Statistics and probability Up-to-date https://github.com/pachterlab/sleuth Transcriptomics, RNA, Statistics sleuth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuth https://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth 0.30.1 r-sleuth 0.30.1 Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 64 True False False +small_rna_clusters small_rna_clusters clusters small rna reads in alignment BAM files To update http://artbio.fr RNA, SAM, Graphics, Next Gen Mappers small_rna_clusters artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_clusters https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_clusters 1.3.0 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +small_rna_maps small_rna_maps Generates small read maps from alignment BAM files To update http://artbio.fr RNA, SAM, Graphics, Next Gen Mappers small_rna_maps artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_maps https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_maps 3.1.1 numpy 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +small_rna_signatures overlapping_reads, signature Computes the tendency of small RNAs to overlap with each other. To update http://artbio.fr RNA small_rna_signatures artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/small_rna_signatures https://github.com/ARTbio/tools-artbio/tree/main/tools/small_rna_signatures 3.4.2 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 True False False +smallgenomeutilities smgu_frameshift_deletions_checks Set of utilities for manipulating small viral genome data. v-pipe v-pipe V-pipe Bioinformatics pipeline for the analysis of next-generation sequencing data derived from intra-host viral populations. Read pre-processing, Sequence alignment, Genetic variation analysis Genomics, Population genetics, Workflows, Virology, Sequencing Up-to-date https://github.com/cbg-ethz/smallgenomeutilities Sequence Analysis smallgenomeutilities iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/smallgenomeutilities https://github.com/galaxyproject/tools-iuc/tree/main/tools/smallgenomeutilities 0.4.1 smallgenomeutilities 0.4.1 Read pre-processing, Sequence alignment, Genetic variation analysis Genomics, Population genetics, Workflows, Virology, Sequencing 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 6 121 True False True +smalt smalt SMALT aligns DNA sequencing reads with a reference genome. Up-to-date http://www.sanger.ac.uk/science/tools/smalt-0 Sequence Analysis smalt nml https://sourceforge.net/projects/smalt/ https://github.com/phac-nml/galaxy_tools/tree/master/tools/smalt 0.7.6 smalt 0.7.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +smart_domains smart_domains SMART domains To update http://smart.embl.de/ Sequence Analysis smart_domains earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domains https://github.com/TGAC/earlham-galaxytools/tree/master/tools/smart_domains 0.1.0 perl-bioperl 1.7.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +smudgeplot smudgeplot Inference of ploidy and heterozygosity structure using whole genome sequencing smudgeplots smudgeplots Smudgeplots Reference-free profiling of polyploid genomes | Inference of ploidy and heterozygosity structure using whole genome sequencing data | Smudgeplots are computed from raw or even better from trimmed reads and show the haplotype structure using heterozygous kmer pairs. For example: | This tool extracts heterozygous kmer pairs from kmer dump files and performs gymnastics with them. We are able to disentangle genome structure by comparing the sum of kmer pair coverages (CovA + CovB) to their relative coverage (CovA / (CovA + CovB)). Such an approach also allows us to analyze obscure genomes with duplications, various ploidy levels, etc | GenomeScope 2.0 and Smudgeplots: Reference-free profiling of polyploid genomes Timothy Rhyker Ranallo-Benavidez, Kamil S. Jaron, Michael C. Schatz bioRxiv 747568; doi: https://doi.org/10.1101/747568 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics Up-to-date https://github.com/KamilSJaron/smudgeplot Assembly smudgeplot galaxy-australia https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/smudgeplot 0.2.5 smudgeplot 0.2.5 Sequence trimming, Genotyping, k-mer counting Sequence assembly, Genetic variation, Mathematics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 22 203 True False False +snap snap, snap_training SNAP is a general purpose gene finding program suitable for both eukaryotic and prokaryotic genomes. snap snap SNAP The Semi-HMM-based Nucleic Acid Parser is a gene prediction tool. Gene prediction DNA, DNA polymorphism, Genetics Up-to-date https://github.com/KorfLab/SNAP Sequence Analysis snap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snap https://github.com/galaxyproject/tools-iuc/tree/main/tools/snap 2013_11_29 snap 2013_11_29 Gene prediction DNA polymorphism, Genetics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 133 1349 True False True +snapatac2 snapatac2_clustering, snapatac2_peaks_and_motif, snapatac2_plotting, snapatac2_preprocessing SnapATAC2 – A Python/Rust package for single-cell epigenomics analysis To update https://kzhang.org/SnapATAC2/ Epigenetics, Sequence Analysis snapatac2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snapatac2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/snapatac2 2.6.4 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sniffles sniffles Galaxy wrapper for sniffles sniffles sniffles Sniffles An algorithm for structural variation detection from third generation sequencing alignment. Sequence analysis, Structural variation detection DNA structural variation, Sequencing To update https://github.com/fritzsedlazeck/Sniffles Sequence Analysis sniffles iuc https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/sniffles 1.0.12 sniffles 2.4 Sequence analysis, Structural variation detection Sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 58 919 True False False +snipit snipit Summarise snps relative to a reference sequence snipit snipit snipit Summarise snps relative to a reference sequence Base position variability plotting Virology Up-to-date https://github.com/aineniamh/snipit Variant Analysis, Sequence Analysis snipit iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/snipit https://github.com/galaxyproject/tools-iuc/tree/main/tools/snipit 1.2 snipit 1.2 Base position variability plotting Virology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 669 True False False +snippy snippy_core, snippy, snippy_clean_full_aln Contains the snippy tool for characterising microbial snps snippy snippy snippy Rapid haploid variant calling and core SNP phylogeny generation. Phylogenetic tree visualisation, Phylogenetic tree generation, Variant calling Genomics, Model organisms, DNA polymorphism, Phylogenetics To update https://github.com/tseemann/snippy Sequence Analysis snippy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/snippy https://github.com/galaxyproject/tools-iuc/tree/main/tools/snippy snippy 4.6.0 Phylogenetic tree visualisation, Variant calling Genomics, Model organisms, DNA polymorphism, Phylogenetics 3 3 3 3 3 3 3 3 0 0 0 0 2 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 1372 105708 True False True +snv_matrix snvmatrix Generate matrix of SNV distances Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis snv_matrix nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/snv_matrix 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +socru socru Order and orientation of complete bacterial genomes To update https://github.com/quadram-institute-bioscience/socru Sequence Analysis socru iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/socru https://github.com/galaxyproject/tools-iuc/tree/main/tools/socru 2.1.7 socru 2.2.4 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 13 621 True False False +sonneityping sonneityping Scripts for parsing Mykrobe predict results for Shigella sonnei. sonneityping sonneityping sonneityping Scripts for parsing Mykrobe predict results for Shigella sonnei. Antimicrobial resistance prediction, Variant calling, Genotyping Whole genome sequencing, Genotype and phenotype, Genetic variation, Metagenomics Up-to-date https://github.com/katholt/sonneityping Sequence Analysis sonneityping iuc https://github.com/katholt/sonneityping https://github.com/galaxyproject/tools-iuc/tree/main/tools/sonneityping 20210201 sonneityping 20210201 Antimicrobial resistance prediction, Variant calling, Genotyping Whole genome sequencing, Genotype and phenotype, Genetic variation, Metagenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 True False True +sortmerna bg_sortmerna SortMeRNA is a software designed to rapidly filter ribosomal RNA fragments from metatransriptomic data produced by next-generation sequencers. sortmerna sortmerna SortMeRNA Sequence analysis tool for filtering, mapping and OTU-picking NGS reads. Sequence similarity search, Sequence comparison, Sequence alignment analysis Metatranscriptomics, Metagenomics To update http://bioinfo.lifl.fr/RNA/sortmerna/ RNA sortmerna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sortmerna 4.3.6 sortmerna 4.3.7 Sequence similarity search, Sequence alignment analysis Metatranscriptomics, Metagenomics 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 376 18183 True False True +spades spades_biosyntheticspades, spades_coronaspades, spades_metaplasmidspades, metaspades, spades_metaviralspades, spades_plasmidspades, rnaspades, spades_rnaviralspades, spades SPAdes is an assembly toolkit containing various assembly pipelines. It implements the following 4 stages: assembly graph construction, k-bimer adjustment, construction of paired assembly graph and contig construction. spades coronaspades, biosyntheticspades, metaplasmidspades, plasmidspades, metaspades, rnaspades, metaviralspades, rnaviralspades, spades SPAdes St. Petersburg genome assembler – is intended for both standard isolates and single-cell MDA bacteria assemblies. SPAdes 3.9 works with Illumina or IonTorrent reads and is capable of providing hybrid assemblies using PacBio, Oxford Nanopore and Sanger reads. Additional contigs can be provided and can be used as long reads. Genome assembly Sequence assembly To update https://github.com/ablab/spades Assembly, RNA, Metagenomics spades iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spades https://github.com/galaxyproject/tools-iuc/tree/main/tools/spades 3.15.5 spades 4.0.0 Genome assembly Sequence assembly 9 9 9 9 9 9 9 9 0 0 0 0 1 0 0 0 0 0 0 0 1 3 8 0 0 2 0 0 0 3 0 0 0 0 0 0 0 9 3 0 3547 72953 True False True +spaln list_spaln_tables, spaln Spaln (space-efficient spliced alignment) maps and aligns a set of cDNA or protein sequences onto a whole genomic sequence. To update http://www.genome.ist.i.kyoto-u.ac.jp/~aln_user/spaln/ Sequence Analysis, Genome annotation spaln iuc https://github.com/ogotoh/spaln https://github.com/galaxyproject/tools-iuc/tree/main/tools/spaln 2.4.9 python 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 34 446 True False False +spapros spapros, spapros Select and evaluate probe sets for targeted spatial transcriptomics. Up-to-date https://github.com/theislab/spapros Transcriptomics, Sequence Analysis spapros iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/spapros/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/spapros 0.1.5 spapros 0.1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +spatyper spatyper Determines SPA type based on repeats in a submitted staphylococcal protein A fasta file. Up-to-date https://github.com/HCGB-IGTP/spaTyper Sequence Analysis spatyper nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/spatyper https://github.com/phac-nml/galaxy_tools/tree/master/tools/spatyper 0.3.3 spatyper 0.3.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +spectrast2spectrast_irt gp_spectrast2spectrast_irt Filter from spectraST files to swath input files To update Proteomics spectrast2spectrast_irt galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irt https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2spectrast_irt 0.1.0 msproteomicstools 0.11.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +spectrast2tsv gp_spectrast2tsv Filter from spectraST files to swath input files To update Proteomics spectrast2tsv galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsv https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/spectrast2tsv 0.1.0 msproteomicstools 0.11.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +spocc spocc_occ Get species occurences data To update https://cran.r-project.org/web/packages/spocc/index.html Ecology spocc_occ ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc https://github.com/galaxyecology/tools-ecology/tree/master/tools/spocc 1.2.2 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 56 769 True False False +spolpred spolpred A program for predicting the spoligotype from raw sequence reads To update Sequence Analysis spolpred nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/spolpred 1.0.1 spolpred 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +spotyping spotyping SpoTyping allows fast and accurate in silico Mycobacterium spoligotyping from sequence reads spotyping spotyping SpoTyping Fast and accurate in silico Mycobacterium spoligotyping from sequence reads. Variant pattern analysis Microbiology, Sequencing, Sequence composition, complexity and repeats, Genetic variation Up-to-date https://github.com/xiaeryu/SpoTyping-v2.0 Sequence Analysis spotyping iuc https://github.com/xiaeryu/SpoTyping-v2.0/tree/master/SpoTyping-v2.0-commandLine https://github.com/galaxyproject/tools-iuc/tree/main/tools/spotyping 2.1 spotyping 2.1 Variant pattern analysis Microbiology, Sequencing, Sequence composition, complexity and repeats, Genetic variation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 12 1278 True False True +sr_bowtie bowtieForSmallRNA bowtie wrapper tool to align small RNA sequencing reads To update http://artbio.fr RNA, Next Gen Mappers sr_bowtie artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie https://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie 2.3.0 bowtie 1.3.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False True +sr_bowtie_dataset_annotation sr_bowtie_dataset_annotation Maps iteratively small RNA sequencing datasets to reference sequences. To update http://artbio.fr RNA sr_bowtie_dataset_annotation artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sr_bowtie_dataset_annotation https://github.com/ARTbio/tools-artbio/tree/main/tools/sr_bowtie_dataset_annotation 2.8 bowtie 1.3.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +srs_tools srs_diversity_maps, srs_global_indices, srs_process_data, srs_spectral_indices, srs_pca, srs_preprocess_s2, srs_metadata Compute biodiversity indicators for remote sensing data from Sentinel 2 To update Ecology ecology https://github.com/Marie59/Sentinel_2A/srs_tools https://github.com/galaxyecology/tools-ecology/tree/master/tools/srs_tools 0.0.1 r-base 4 0 7 7 4 0 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 0 0 21 225 True False False +srst2 srst2 Short Read Sequence Typing for Bacterial Pathogens To update Sequence Analysis srst2 nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/srst2 0.3.7 srst2 0.2.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 205 True False True +srst2 srst2 SRST2 Short Read Sequence Typing for Bacterial Pathogens srst2 srst2 srst2 Short Read Sequence Typing for Bacterial Pathogens Multilocus sequence typing Whole genome sequencing, Public health and epidemiology To update http://katholt.github.io/srst2/ Metagenomics srst2 iuc https://github.com/katholt/srst2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/srst2 0.2.0 samtools 1.20 Multilocus sequence typing Whole genome sequencing, Public health and epidemiology 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 22 205 True False True +sshmm sshmm ssHMM is an RNA sequence-structure motif finder for RNA-binding protein data, such as CLIP-Seq data Up-to-date https://github.molgen.mpg.de/heller/ssHMM Sequence Analysis, RNA sshmm rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sshmm/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/sshmm 1.0.7 sshmm 1.0.7 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 223 True False False +stacks stacks_assembleperead, stacks_clonefilter, stacks_cstacks, stacks_denovomap, stacks_genotypes, stacks_populations, stacks_procrad, stacks_pstacks, stacks_refmap, stacks_rxstacks, stacks_sstacks, stacks_stats, stacks_ustacks Stacks is a software pipeline for building loci from short-read sequences, such as RAD-seq stacks stacks Stacks Developed to work with restriction enzyme based sequence data, such as RADseq, for building genetic maps and conducting population genomics and phylogeography analysis. Data handling Mapping, Population genetics To update http://catchenlab.life.illinois.edu/stacks/ Sequence Analysis stacks iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks https://github.com/galaxyproject/tools-iuc/tree/main/tools/stacks stacks 2.65 Data handling Mapping, Population genetics 0 13 13 12 0 13 13 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 13 0 152 11635 True False False +stacks2 stacks2_clonefilter, stacks2_cstacks, stacks2_denovomap, stacks2_gstacks, stacks2_kmerfilter, stacks2_populations, stacks2_procrad, stacks2_refmap, stacks2_shortreads, stacks2_sstacks, stacks2_tsv2bam, stacks2_ustacks Stacks is a software pipeline for building loci from short-read sequences, such as RAD-seq To update http://catchenlab.life.illinois.edu/stacks/ Sequence Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/stacks2 2.55 stacks 2.65 0 12 12 12 0 12 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 0 238 7292 True False False +star_fusion star_fusion STAR Fusion detects fusion genes in RNA-Seq data after running RNA-STAR To update https://github.com/STAR-Fusion/STAR-Fusion Sequence Analysis, Transcriptomics star_fusion iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusion https://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion 0.5.4-3+galaxy1 star-fusion 1.13.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 35 1212 True False False +staramr staramr_search Scan genome contigs against the ResFinder, PlasmidFinder, and PointFinder antimicrobial resistance databases. Up-to-date https://github.com/phac-nml/staramr Sequence Analysis staramr nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr https://github.com/phac-nml/galaxy_tools/tree/master/tools/staramr 0.10.0 staramr 0.10.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 889 12673 True False True +stoc stoceps_filteringsp, stoceps_glm, stoceps_glm_group, stoceps_maketablecarrer, stoceps_trend_indic Tools to analyse STOC data. To update Ecology stoceps ecology https://github.com/Alanamosse/Galaxy-E/tree/stoctool/tools/stoc https://github.com/galaxyecology/tools-ecology/tree/master/tools/stoc 0.0.2 0 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 10 325 True False False +stringmlst stringmlst Rapid and accurate identification of the sequence type (ST) To update Sequence Analysis stringmlst nml https://github.com/phac-nml/galaxy_tools/tree/master/tools/stringmlst 1.1.0 stringMLST 0.6.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +structure structure for using multi-locus genotype data to investigate population structure. structure structure Structure The program structureis a free software package for using multi-locus genotype data to investigate population structure. Its uses include inferring the presence of distinct populations, assigning individuals to populations, studying hybrid zones, identifying migrants and admixed individuals, and estimating population allele frequencies in situations where many individuals are migrants or admixed. Genetic variation analysis Population genetics Up-to-date https://web.stanford.edu/group/pritchardlab/structure.html Phylogenetics, Variant Analysis structure iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/structure https://github.com/galaxyproject/tools-iuc/tree/main/tools/structure 2.3.4 structure 2.3.4 Genetic variation analysis Population genetics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 59 2623 True False True +structureharvester structureharvester for parsing STRUCTURE outputs and for performing the Evanno method Up-to-date http://alumni.soe.ucsc.edu/~dearl/software/structureHarvester/ Phylogenetics, Variant Analysis structureharvester iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/structureharvester https://github.com/galaxyproject/tools-iuc/tree/main/tools/structureharvester 0.6.94 structureharvester 0.6.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +substitution_rates subRate1 Estimate substitution rates for non-coding regions To update Sequence Analysis, Variant Analysis substitution_rates devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/substitution_rates https://github.com/galaxyproject/tools-devteam/tree/main/tools/substitution_rates 1.0.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +substitutions substitutions1 Fetch substitutions from pairwise alignments To update Sequence Analysis, Variant Analysis substitutions devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/substitutions https://github.com/galaxyproject/tools-devteam/tree/main/tools/substitutions 1.0.1 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +suite_qiime2__alignment qiime2__alignment__mafft, qiime2__alignment__mafft_add, qiime2__alignment__mask To update https://github.com/qiime2/q2-alignment Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__alignment 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 6 13 True False True +suite_qiime2__composition qiime2__composition__add_pseudocount, qiime2__composition__ancom, qiime2__composition__ancombc, qiime2__composition__da_barplot, qiime2__composition__tabulate To update https://github.com/qiime2/q2-composition Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__composition 2024.5.0+q2galaxy.2024.5.0 4 4 4 2 4 4 4 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 2 5 True False True +suite_qiime2__cutadapt qiime2__cutadapt__demux_paired, qiime2__cutadapt__demux_single, qiime2__cutadapt__trim_paired, qiime2__cutadapt__trim_single To update https://github.com/qiime2/q2-cutadapt Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__cutadapt 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 5 67 True False True +suite_qiime2__dada2 qiime2__dada2__denoise_ccs, qiime2__dada2__denoise_paired, qiime2__dada2__denoise_pyro, qiime2__dada2__denoise_single To update http://benjjneb.github.io/dada2/ Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__dada2 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 31 202 True False True +suite_qiime2__deblur qiime2__deblur__denoise_16S, qiime2__deblur__denoise_other, qiime2__deblur__visualize_stats To update https://github.com/biocore/deblur Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__deblur 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 9 73 True False True +suite_qiime2__demux qiime2__demux__emp_paired, qiime2__demux__emp_single, qiime2__demux__filter_samples, qiime2__demux__partition_samples_paired, qiime2__demux__partition_samples_single, qiime2__demux__subsample_paired, qiime2__demux__subsample_single, qiime2__demux__summarize, qiime2__demux__tabulate_read_counts To update https://github.com/qiime2/q2-demux Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__demux 2024.5.0+q2galaxy.2024.5.0 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 26 114 True False True +suite_qiime2__diversity qiime2__diversity__adonis, qiime2__diversity__alpha, qiime2__diversity__alpha_correlation, qiime2__diversity__alpha_group_significance, qiime2__diversity__alpha_phylogenetic, qiime2__diversity__alpha_rarefaction, qiime2__diversity__beta, qiime2__diversity__beta_correlation, qiime2__diversity__beta_group_significance, qiime2__diversity__beta_phylogenetic, qiime2__diversity__beta_rarefaction, qiime2__diversity__bioenv, qiime2__diversity__core_metrics, qiime2__diversity__core_metrics_phylogenetic, qiime2__diversity__filter_alpha_diversity, qiime2__diversity__filter_distance_matrix, qiime2__diversity__mantel, qiime2__diversity__partial_procrustes, qiime2__diversity__pcoa, qiime2__diversity__pcoa_biplot, qiime2__diversity__procrustes_analysis, qiime2__diversity__tsne, qiime2__diversity__umap To update https://github.com/qiime2/q2-diversity Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity 2024.5.0+q2galaxy.2024.5.0 21 21 21 21 21 21 21 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 43 168 True False True +suite_qiime2__diversity_lib qiime2__diversity_lib__alpha_passthrough, qiime2__diversity_lib__beta_passthrough, qiime2__diversity_lib__beta_phylogenetic_meta_passthrough, qiime2__diversity_lib__beta_phylogenetic_passthrough, qiime2__diversity_lib__bray_curtis, qiime2__diversity_lib__faith_pd, qiime2__diversity_lib__jaccard, qiime2__diversity_lib__observed_features, qiime2__diversity_lib__pielou_evenness, qiime2__diversity_lib__shannon_entropy, qiime2__diversity_lib__unweighted_unifrac, qiime2__diversity_lib__weighted_unifrac To update https://github.com/qiime2/q2-diversity-lib Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__diversity_lib 2024.5.0+q2galaxy.2024.5.0 12 12 12 12 12 12 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 4 4 True False True +suite_qiime2__emperor qiime2__emperor__biplot, qiime2__emperor__plot, qiime2__emperor__procrustes_plot To update http://emperor.microbio.me Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__emperor 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 2 6 True False True +suite_qiime2__feature_classifier qiime2__feature_classifier__blast, qiime2__feature_classifier__classify_consensus_blast, qiime2__feature_classifier__classify_consensus_vsearch, qiime2__feature_classifier__classify_hybrid_vsearch_sklearn, qiime2__feature_classifier__classify_sklearn, qiime2__feature_classifier__extract_reads, qiime2__feature_classifier__find_consensus_annotation, qiime2__feature_classifier__fit_classifier_naive_bayes, qiime2__feature_classifier__fit_classifier_sklearn, qiime2__feature_classifier__makeblastdb, qiime2__feature_classifier__vsearch_global To update https://github.com/qiime2/q2-feature-classifier Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_classifier 2024.5.0+q2galaxy.2024.5.0 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 48 263 True False True +suite_qiime2__feature_table qiime2__feature_table__core_features, qiime2__feature_table__filter_features, qiime2__feature_table__filter_features_conditionally, qiime2__feature_table__filter_samples, qiime2__feature_table__filter_seqs, qiime2__feature_table__group, qiime2__feature_table__heatmap, qiime2__feature_table__merge, qiime2__feature_table__merge_seqs, qiime2__feature_table__merge_taxa, qiime2__feature_table__presence_absence, qiime2__feature_table__rarefy, qiime2__feature_table__relative_frequency, qiime2__feature_table__rename_ids, qiime2__feature_table__split, qiime2__feature_table__subsample_ids, qiime2__feature_table__summarize, qiime2__feature_table__summarize_plus, qiime2__feature_table__tabulate_feature_frequencies, qiime2__feature_table__tabulate_sample_frequencies, qiime2__feature_table__tabulate_seqs, qiime2__feature_table__transpose To update https://github.com/qiime2/q2-feature-table Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__feature_table 2024.5.0+q2galaxy.2024.5.0 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 59 213 True False True +suite_qiime2__fragment_insertion qiime2__fragment_insertion__classify_otus_experimental, qiime2__fragment_insertion__filter_features, qiime2__fragment_insertion__sepp To update https://github.com/qiime2/q2-fragment-insertion Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__fragment_insertion 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 6 20 True False True +suite_qiime2__longitudinal qiime2__longitudinal__anova, qiime2__longitudinal__feature_volatility, qiime2__longitudinal__first_differences, qiime2__longitudinal__first_distances, qiime2__longitudinal__linear_mixed_effects, qiime2__longitudinal__maturity_index, qiime2__longitudinal__nmit, qiime2__longitudinal__pairwise_differences, qiime2__longitudinal__pairwise_distances, qiime2__longitudinal__plot_feature_volatility, qiime2__longitudinal__volatility To update https://github.com/qiime2/q2-longitudinal Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__longitudinal 2024.5.0+q2galaxy.2024.5.0 11 11 11 11 11 11 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 6 14 True False True +suite_qiime2__metadata qiime2__metadata__distance_matrix, qiime2__metadata__merge, qiime2__metadata__shuffle_groups, qiime2__metadata__tabulate To update https://github.com/qiime2/q2-metadata Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__metadata 2024.5.0+q2galaxy.2024.5.0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 40 232 True False True +suite_qiime2__phylogeny qiime2__phylogeny__align_to_tree_mafft_fasttree, qiime2__phylogeny__align_to_tree_mafft_iqtree, qiime2__phylogeny__align_to_tree_mafft_raxml, qiime2__phylogeny__fasttree, qiime2__phylogeny__filter_table, qiime2__phylogeny__filter_tree, qiime2__phylogeny__iqtree, qiime2__phylogeny__iqtree_ultrafast_bootstrap, qiime2__phylogeny__midpoint_root, qiime2__phylogeny__raxml, qiime2__phylogeny__raxml_rapid_bootstrap, qiime2__phylogeny__robinson_foulds To update https://github.com/qiime2/q2-phylogeny Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__phylogeny 2024.5.0+q2galaxy.2024.5.0 12 12 12 12 12 12 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 0 0 12 37 True False True +suite_qiime2__quality_control qiime2__quality_control__bowtie2_build, qiime2__quality_control__decontam_identify, qiime2__quality_control__decontam_identify_batches, qiime2__quality_control__decontam_remove, qiime2__quality_control__decontam_score_viz, qiime2__quality_control__evaluate_composition, qiime2__quality_control__evaluate_seqs, qiime2__quality_control__evaluate_taxonomy, qiime2__quality_control__exclude_seqs, qiime2__quality_control__filter_reads To update https://github.com/qiime2/q2-quality-control Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_control 2024.5.0+q2galaxy.2024.5.0 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 True False True +suite_qiime2__quality_filter qiime2__quality_filter__q_score To update https://github.com/qiime2/q2-quality-filter Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__quality_filter 2024.5.0+q2galaxy.2024.5.0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 13 True False True +suite_qiime2__rescript qiime2__rescript__cull_seqs, qiime2__rescript__degap_seqs, qiime2__rescript__dereplicate, qiime2__rescript__edit_taxonomy, qiime2__rescript__evaluate_classifications, qiime2__rescript__evaluate_cross_validate, qiime2__rescript__evaluate_fit_classifier, qiime2__rescript__evaluate_seqs, qiime2__rescript__evaluate_taxonomy, qiime2__rescript__extract_seq_segments, qiime2__rescript__filter_seqs_length, qiime2__rescript__filter_seqs_length_by_taxon, qiime2__rescript__filter_taxa, qiime2__rescript__get_gtdb_data, qiime2__rescript__get_ncbi_data, qiime2__rescript__get_ncbi_data_protein, qiime2__rescript__get_ncbi_genomes, qiime2__rescript__get_silva_data, qiime2__rescript__get_unite_data, qiime2__rescript__merge_taxa, qiime2__rescript__orient_seqs, qiime2__rescript__parse_silva_taxonomy, qiime2__rescript__reverse_transcribe, qiime2__rescript__subsample_fasta, qiime2__rescript__trim_alignment To update https://github.com/nbokulich/RESCRIPt Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__rescript 2024.5.0+q2galaxy.2024.5.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +suite_qiime2__sample_classifier qiime2__sample_classifier__classify_samples, qiime2__sample_classifier__classify_samples_from_dist, qiime2__sample_classifier__classify_samples_ncv, qiime2__sample_classifier__confusion_matrix, qiime2__sample_classifier__fit_classifier, qiime2__sample_classifier__fit_regressor, qiime2__sample_classifier__heatmap, qiime2__sample_classifier__metatable, qiime2__sample_classifier__predict_classification, qiime2__sample_classifier__predict_regression, qiime2__sample_classifier__regress_samples, qiime2__sample_classifier__regress_samples_ncv, qiime2__sample_classifier__scatterplot, qiime2__sample_classifier__split_table, qiime2__sample_classifier__summarize To update https://github.com/qiime2/q2-sample-classifier Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__sample_classifier 2024.5.0+q2galaxy.2024.5.0 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 0 0 1 1 True False True +suite_qiime2__taxa qiime2__taxa__barplot, qiime2__taxa__collapse, qiime2__taxa__filter_seqs, qiime2__taxa__filter_table To update https://github.com/qiime2/q2-taxa Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__taxa 2024.5.0+q2galaxy.2024.5.0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 22 172 True False True +suite_qiime2__vsearch qiime2__vsearch__cluster_features_closed_reference, qiime2__vsearch__cluster_features_de_novo, qiime2__vsearch__cluster_features_open_reference, qiime2__vsearch__dereplicate_sequences, qiime2__vsearch__fastq_stats, qiime2__vsearch__merge_pairs, qiime2__vsearch__uchime_denovo, qiime2__vsearch__uchime_ref To update https://github.com/qiime2/q2-vsearch Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2__vsearch 2024.5.0+q2galaxy.2024.5.0 8 8 8 7 8 8 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 8 16 True False True +suite_qiime2_core To update Statistics, Metagenomics, Sequence Analysis q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tool_collections/suite_qiime2_core 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +suite_qiime2_core__tools qiime2_core__tools__export, qiime2_core__tools__import, qiime2_core__tools__import_fastq To update https://qiime2.org Metagenomics, Sequence Analysis, Statistics q2d2 https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools https://github.com/qiime2/galaxy-tools/tree/main/tools/suite_qiime2_core__tools 2024.5.0+dist.he540b0b0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 124 7087 True False True +suite_snvphyl SNVPhyl suite defining all dependencies for SNVPhyl To update Sequence Analysis suite_snvphyl_1_2_3 nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/suite_snvphyl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +syndiva syndiva SynDivA was developed to analyze the diversity of synthetic libraries of a Fibronectin domain. To update Proteomics syndiva iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/SynDivA https://github.com/galaxyproject/tools-iuc/tree/main/tools/syndiva 1.0 clustalo 1.2.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 30 True False False +t2ps Draw_phylogram Draw phylogeny t2ps t2ps Draw phylogeny """Given taxonomy representation (produced by *Fetch taxonomic representation* tool) this utility produces a graphical representations of phylogenetic tree in PDF format."" - Galaxy tool wrapper" Phylogenetic tree visualisation Phylogenomics To update https://bitbucket.org/natefoo/taxonomy Metagenomics t2ps devteam https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2ps 1.0.0 taxonomy 0.10.0 Phylogenetic tree visualisation Phylogenomics 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 31 457 True False True +t2t_report t2t_report Summarize taxonomy To update https://bitbucket.org/natefoo/taxonomy Metagenomics t2t_report devteam https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/taxonomy/t2t_report https://github.com/galaxyproject/tools-devteam/tree/main/tool_collections/taxonomy/t2t_report 1.0.0 taxonomy 0.10.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 26 947 True False True +t_coffee t_coffee T-Coffee To update http://www.tcoffee.org/ Sequence Analysis t_coffee earlhaminst https://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee https://github.com/TGAC/earlham-galaxytools/tree/master/tools/t_coffee 13.45.0.4846264 t-coffee 13.46.0.919e8c6b 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 70 8690 True False True +tapscan tapscan_classify Search for transcription associated proteins (TAPs) To update https://plantcode.cup.uni-freiburg.de/tapscan/ Proteomics tapscan bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tapscan https://github.com/bgruening/galaxytools/tree/master/tools/tapscan 4.76+galaxy0 hmmer 3.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +tarfast5 tarfast5 produces a tar.gz archive of fast5 sequence files To update http://artbio.fr Nanopore tarfast5 artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/tarfast5 https://github.com/ARTbio/tools-artbio/tree/main/tools/tarfast5 0.6.1 pigz 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +targetfinder targetfinder Plant small RNA target prediction tool Up-to-date https://github.com/carringtonlab/TargetFinder.git RNA targetfinder rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder/ https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/targetfinder 1.7 targetfinder 1.7 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 37 713 True False False +tasmanian_mismatch tasmanian_mismatch Analysis of positional mismatches Up-to-date https://github.com/nebiolabs/tasmanian-mismatch Sequence Analysis tasmanian_mismatch iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tasmanian_mismatch https://github.com/galaxyproject/tools-iuc/tree/main/tools/tasmanian_mismatch 1.0.7 tasmanian-mismatch 1.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +taxonkit name2taxid, profile2cami TaxonKit - A Practical and Efficient NCBI Taxonomy Toolkit taxonkit taxonkit TaxonKit TaxonKit is a practical and efficient NCBI taxonomy toolkit. Formatting, Data retrieval Taxonomy, Biotechnology, Ecology Up-to-date https://bioinf.shenwei.me/taxonkit/ Metagenomics taxonkit iuc https://github.com/shenwei356/taxonkit https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonkit 0.17.0 taxonkit 0.17.0 Formatting, Data retrieval Taxonomy, Biotechnology, Ecology 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +taxonomy_filter_refseq taxonomy_filter_refseq Filter RefSeq by taxonomy To update https://github.com/pvanheus/ncbitaxonomy Sequence Analysis, Genome annotation taxonomy_filter_refseq iuc https://github.com/galaxyproject/tools-iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_filter_refseq 0.3.0 rust-ncbitaxonomy 1.0.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +taxonomy_krona_chart taxonomy_krona_chart Krona pie chart from taxonomic profile krona krona Krona Krona creates interactive HTML5 charts of hierarchical data (such as taxonomic abundance in a metagenome). Visualisation Metagenomics To update http://sourceforge.net/projects/krona/ Assembly taxonomy_krona_chart crs4 https://github.com/galaxyproject/tools-iuc/tree/master/tools/taxonomy_krona_chart https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxonomy_krona_chart 2.7.1+galaxy0 krona 2.8.1 Visualisation Metagenomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1801 27426 True False True +taxpasta taxpasta standardise taxonomic profiles taxpasta taxpasta taxpasta TAXonomic Profile Aggregation and STAndardisationThe main purpose of taxpasta is to standardise taxonomic profiles created by a range of bioinformatics tools. We call those tools taxonomic profilers. They each come with their own particular tabular output format. Across the profilers, relative abundances can be reported in read counts, fractions, or percentages, as well as any number of additional columns with extra information. We therefore decided to take the lessons learnt to heart and provide our own solution to deal with this pasticcio. With taxpasta you can ingest all of those formats and, at a minimum, output taxonomy identifiers and their integer counts. Taxpasta can not only standardise profiles but also merge them across samples for the same profiler into a single table. Standardisation and normalisation, Aggregation, Formatting, Conversion Taxonomy, Metagenomics Up-to-date https://taxpasta.readthedocs.io/en/latest/ Sequence Analysis taxpasta iuc https://github.com/taxprofiler/taxpasta https://github.com/galaxyproject/tools-iuc/tree/main/tools/taxpasta 0.7.0 taxpasta 0.7.0 Standardisation and normalisation, Aggregation, Formatting, Conversion Taxonomy, Metagenomics 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +tb-profiler tb_profiler_profile Processes M. tuberculosis sequence data to infer strain type and identify known drug resistance markers. tb-profiler tb-profiler tb-profiler A tool for drug resistance prediction from _M. tuberculosis_ genomic data (sequencing reads, alignments or variants). Antimicrobial resistance prediction To update https://github.com/jodyphelan/TBProfiler Sequence Analysis tbprofiler iuc https://github.com/galaxyproject/tools-iuc/blob/master/tools/tb-profiler https://github.com/galaxyproject/tools-iuc/tree/main/tools/tb-profiler 6.2.1 tb-profiler 6.3.0 Antimicrobial resistance prediction 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 198 5161 True False True +tbl2gff3 tbl2gff3 Table to GFF3 To update https://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3 Convert Formats, Sequence Analysis tbl2gff3 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tbl2gff3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/tbl2gff3 1.2 bcbiogff 0.6.6 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 229 1584 True False False +te_finder te_finder Transposable element insertions finder tefinder tefinder TEfinder A Bioinformatics Pipeline for Detecting New Transposable Element Insertion Events in Next-Generation Sequencing Data.A bioinformatics tool for detecting novel transposable element insertions.TEfinder uses discordant reads to detect novel transposable element insertion events in paired-end sample sequencing data. Genome indexing, Variant calling, PCR primer design Sequencing, Mobile genetic elements, Workflows, Evolutionary biology, Genetic variation To update https://github.com/VistaSohrab/TEfinder Sequence Analysis te_finder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/te_finder/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/te_finder 1.0.1 samtools 1.20 Genome indexing, Variant calling, PCR primer design Sequencing, Mobile genetic elements, Workflows, Evolutionary biology, Genetic variation 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 7 81 True False False +telescope telescope_assign Single locus resolution of Transposable ELEment expression. Telescope-expression Telescope-expression Telescope Telescope is a tool for the characterization of the retrotranscriptome by accurate estimation of transposable element expression and the quantification of transposable element expression using RNA-seq.It can be used for Statistical Performance of TE Quantification Methods.All scripts needed to examine the sensitivity and biases of computational approaches for quantifying TE expression: 1) unique counts, 2) best counts, 3) RepEnrich, 4) TEtranscripts, 5) RSEM, 6) SalmonTE, and 7) Telescope. Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mapping RNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly Up-to-date https://github.com/mlbendall/telescope/ Genome annotation telescope_assign iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/telescope https://github.com/galaxyproject/tools-iuc/tree/main/tools/telescope 1.0.3 telescope 1.0.3 Essential dynamics, Sequence trimming, RNA-Seq quantification, Expression analysis, Read mapping RNA-Seq, Transcriptomics, Mapping, Gene transcripts, Sequence assembly 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +tetoolkit tetoolkit_tetranscripts The TEToolkit suite improves the bioinformatic analysis of repetitive sequences, particularly transposable elements, in order to elucidate novel (and previously ignored) biological insights of their functions in development and diseases. Up-to-date http://hammelllab.labsites.cshl.edu/software/ Sequence Analysis tetoolkit iuc https://github.com/mhammell-laboratory/TEtranscripts https://github.com/galaxyproject/tools-iuc/tree/main/tools/tetoolkit 2.2.3 tetranscripts 2.2.3 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 33 871 True False False +tetyper tetyper Type a specific transposable element (TE) of interest from paired-end sequencing data. Up-to-date https://github.com/aesheppard/TETyper Sequence Analysis tetyper iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tetyper https://github.com/galaxyproject/tools-iuc/tree/main/tools/tetyper 1.1 tetyper 1.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 8 69 True False False +tgsgapcloser tgsgapcloser TGS-GapCloser uses error-prone long reads or preassembled contigs to fill N-gap in the genome assembly. TGS-GapCloser TGS-GapCloser TGS-GapCloser TGS-GapCloser is a fast and accurately passing through the Bermuda in large genome using error-prone third-generation long reads. Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping To update https://github.com/BGI-Qingdao/TGS-GapCloser Assembly tgsgapcloser bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser https://github.com/bgruening/galaxytools/tree/master/tools/tgsgapcloser 1.0.3 tgsgapcloser 1.2.1 Genome assembly, Read mapping, Scaffolding, Localised reassembly Sequencing, Sequence assembly, Phylogeny, Transcription factors and regulatory sites, Mapping 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 36 460 True False False +tiara tiara Tool for identification of eukaryotic sequences in the metagenomic datasets. Tiara Tiara TIARA Total Integrated Archive of Short-Read and Array (TIARA) database, contains personal genomic information obtained from next generation sequencing (NGS) techniques and ultra-high-resolution comparative genomic hybridization (CGH) arrays. This database improves the accuracy of detecting personal genomic variations, such as SNPs, short indels and structural variants (SVs). Genome comparison, Data retrieval, Variant calling, Genome visualisation, Structural variation detection Sequencing, Genomics, DNA polymorphism, DNA structural variation To update https://github.com/ibe-uw/tiara Metagenomics, Sequence Analysis tiara bgruening https://github.com/bgruening/galaxytools/tree/master/tools/tiara https://github.com/bgruening/galaxytools/tree/master/tools/tiara 1.0.3 tiara Genome comparison, Data retrieval, Variant calling, Genome visualisation, Structural variation detection Sequencing, Genomics, DNA polymorphism 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +tn93 tn93_readreduce, tn93, tn93_cluster, tn93_filter Compute distances between sequences To update https://github.com/veg/tn93/ Sequence Analysis tn93 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tn93/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/tn93 1.0.6 tn93 1.0.14 4 0 4 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 4 0 0 17 1881 True False False +tooldistillator tooldistillator, tooldistillator_summarize ToolDistillator extract and aggregate information from different tool outputs to JSON parsable files tooldistillator tooldistillator ToolDistillator ToolDistillator is a tool to extract information from output files of specific tools, expose it as JSON files, and aggregate over several tools.It can produce both a single file to each tool or a summarized file from a set of reports. Data handling, Parsing Microbiology, Bioinformatics, Sequence analysis Up-to-date https://gitlab.com/ifb-elixirfr/abromics/tooldistillator Sequence Analysis tooldistillator iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tooldistillator https://github.com/galaxyproject/tools-iuc/tree/main/tools/tooldistillator 0.9 tooldistillator 0.9 Parsing Microbiology, Bioinformatics, Sequence analysis 2 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +tophat tophat Tophat for Illumina To update RNA, Next Gen Mappers tophat devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat 1.5.0 samtools 1.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 True False False +tophat2 tophat2 Tophat - fast splice junction mapper for RNA-Seq reads To update http://ccb.jhu.edu/software/tophat/index.shtml RNA, Next Gen Mappers tophat2 devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat2 https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat2 2.1.1 bowtie2 2.5.4 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 312 24167 True False False +transdecoder transdecoder TransDecoder finds coding regions within transcripts TransDecoder TransDecoder TransDecoder TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks. Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing To update https://transdecoder.github.io/ Transcriptomics, RNA transdecoder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoder https://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder 5.5.0 transdecoder 5.7.1 Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 348 5468 True False False +transit gff_to_prot, transit_gumbel, transit_hmm, transit_resampling, transit_tn5gaps TRANSIT transit transit TRANSIT A tool for the analysis of Tn-Seq data. It provides an easy to use graphical interface and access to three different analysis methods that allow the user to determine essentiality in a single condition as well as between conditions. Transposon prediction DNA, Sequencing, Mobile genetic elements To update https://github.com/mad-lab/transit/ Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transit/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/transit 3.0.2 transit 3.2.3 Transposon prediction DNA, Sequencing, Mobile genetic elements 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 84 907 True False True +translate_bed translate_bed Translate BED transcript CDS or cDNA in 3 frames To update http://rest.ensembl.org/ Proteomics translate_bed galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bed https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/proteogenomics/translate_bed 0.1.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 49 643 True False False +translate_bed_sequences translate_bed_sequences Perform 3 frame translation of BED file augmented with a sequence column To update Proteomics translate_bed_sequences galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequences https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/translate_bed_sequences 0.2.0 biopython 1.70 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 6 57 True False False +transtermhp transtermhp Finds rho-independent transcription terminators in bacterial genomes transtermhp transtermhp TransTermHP TransTermHP finds rho-independent transcription terminators in bacterial genomes. Each terminator found by the program is assigned a confidence value that estimates its probability of being a true terminator Transcriptional regulatory element prediction Transcription factors and regulatory sites To update https://transterm.cbcb.umd.edu Sequence Analysis transtermhp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transtermhp https://github.com/galaxyproject/tools-iuc/tree/main/tools/transtermhp transtermhp 2.09 Transcriptional regulatory element prediction Transcription factors and regulatory sites 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 5 229 True False True +trim_galore trim_galore Trim Galore adaptive quality and adapter trimmer trim_galore trim_galore Trim Galore A wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries. Sequence trimming, Primer removal, Read pre-processing Sequence analysis To update http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/ Sequence Analysis, Fastq Manipulation trim_galore bgruening https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore https://github.com/bgruening/galaxytools/tree/master/tools/trim_galore 0.6.7 trim-galore 0.6.10 Sequence trimming, Primer removal, Read pre-processing Sequence analysis 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 2334 238699 True False True +trinity trinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_stats Trinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseq trinity trinity Trinity Trinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads. Transcriptome assembly Transcriptomics, Gene expression, Gene transcripts To update https://github.com/trinityrnaseq/trinityrnaseq Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity 2.15.1 trinity 2.15.2 Transcriptome assembly Transcriptomics, Gene transcripts 9 13 13 13 9 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 11 0 0 1 0 0 0 0 13 12 0 1762 31951 True False False +trinotate trinotate Trinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes. trinotate trinotate Trinotate Comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms. Gene functional annotation Gene expression, Transcriptomics To update https://trinotate.github.io/ Transcriptomics, RNA trinotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate 3.2.2 trinotate 4.0.2 Gene functional annotation Transcriptomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 151 1796 True False False +trna_prediction aragorn_trna, trnascan Aragorn predicts tRNA and tmRNA in nucleotide sequences. To update http://mbioserv2.mbioekol.lu.se/ARAGORN/ RNA trna_prediction bgruening https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/trna_prediction https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/trna_prediction 0.6 aragorn 1.2.41 0 2 2 0 0 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 0 236 2935 True False False +trycycler trycycler_cluster, trycycler_consensus, trycycler_partition, trycycler_reconcile_msa, trycycler_subsample Trycycler toolkit wrappers Up-to-date https://github.com/rrwick/Trycycler Assembly trycycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trycycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/trycycler 0.5.5 trycycler 0.5.5 0 5 5 5 0 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 0 147 8942 True False True +tsebra tsebra This tool has been developed to combine BRAKER predictions. tsebra tsebra TSEBRA TSEBRA is a combiner tool that selects transcripts from gene predictions based on the support by extrisic evidence in form of introns and start/stop codons. It was developed to combine BRAKER1 and BRAKER2 predicitons to increase their accuracies. Homology-based gene prediction, Alternative splicing prediction Gene expression, RNA-Seq, Gene transcripts, Model organisms To update https://github.com/Gaius-Augustus/TSEBRA Genome annotation iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tsebra https://github.com/galaxyproject/tools-iuc/tree/main/tools/tsebra 1.1.2.4 tsebra 1.1.2.5 Homology-based gene prediction, Alternative splicing prediction Gene expression, RNA-Seq, Gene transcripts, Model organisms 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 True False False +ucsc_axtchain ucsc_axtchain Chain together genome alignments UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Sequence Analysis ucsc_axtchain iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/axtchain https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_axtchain 455 ucsc-axtchain 469 Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ucsc_blat ucsc_blat Standalone blat sequence search command line tool blat blat BLAT Fast, accurate spliced alignment of DNA sequences. Sequence alignment Sequence analysis To update http://genome.ucsc.edu/goldenPath/help/blatSpec.html Sequence Analysis ucsc_blat yating-l https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc_blat/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_blat 377 ucsc-blat 469 Sequence alignment Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +ucsc_chainnet ucsc_chainnet Make alignment nets out of chains UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis Up-to-date http://hgdownload.cse.ucsc.edu/admin/exe/ Sequence Analysis ucsc_chainnet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/ucsc_chainnet https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainnet 469 ucsc-chainnet 469 Sequence analysis 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ucsc_chainprenet ucsc_chainprenet Remove chains that don't have a chance of being netted UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Sequence Analysis ucsc_chainprenet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainprenet https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainprenet 377 ucsc-chainprenet 469 Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ucsc_chainsort ucsc_chainsort Sort chains. By default sorts by score. UCSC_Genome_Browser_Utilities UCSC_Genome_Browser_Utilities UCSC Genome Browser Utilities Utilities for handling sequences and assemblies from the UCSC Genome Browser project. Sequence analysis To update http://hgdownload.cse.ucsc.edu/admin/exe/ Sequence Analysis ucsc_chainsort iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ucsc-tools/chainsort https://github.com/galaxyproject/tools-iuc/tree/main/tools/ucsc_tools/ucsc_chainsort 455 ucsc-chainsort 469 Sequence analysis 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +ucsc_custom_track build_ucsc_custom_track_1 Build custom track for UCSC genome browser To update Sequence Analysis ucsc_custom_track devteam https://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_track https://github.com/galaxyproject/tools-devteam/tree/main/tools/ucsc_custom_track 1.0.1 python 1 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 45 394 True False False +umi_tools umi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelist UMI-tools extract - Extract UMIs from fastq umi-tools umi-tools UMI-tools Tools for handling Unique Molecular Identifiers in NGS data sets. Sequencing quality control NGS, Sequence sites, features and motifs, Quality affairs To update https://github.com/CGATOxford/UMI-tools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools 1.1.2 umi_tools 1.1.5 Sequencing quality control Sequence sites, features and motifs, Quality affairs 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 5 5 0 379 61618 True False False +unicycler unicycler Unicycler is a hybrid assembly pipeline for bacterial genomes. unicycler unicycler Unicycler A tool for assembling bacterial genomes from a combination of short (2nd generation) and long (3rd generation) sequencing reads. Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly Up-to-date https://github.com/rrwick/Unicycler Assembly unicycler iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/unicycler https://github.com/galaxyproject/tools-iuc/tree/main/tools/unicycler 0.5.1 unicycler 0.5.1 Genome assembly, Aggregation Microbiology, Genomics, Sequencing, Sequence assembly 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1558 65732 True False True +unipept unipept Unipept retrieves metaproteomics information unipept unipept Unipept Metaproteomics data analysis with a focus on interactive data visualizations. Prediction and recognition, Visualisation Proteomics, Proteogenomics, Biodiversity, Workflows To update https://github.com/galaxyproteomics/tools-galaxyp Proteomics unipept galaxyp https://unipept.ugent.be/apidocs https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/unipept 4.5.1 python Prediction and recognition, Visualisation Proteomics, Proteogenomics, Biodiversity, Workflows 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 115 5005 True False True +uniprot_rest_interface uniprot UniProt ID mapping and sequence retrieval To update https://github.com/jdrudolph/uniprot Proteomics, Sequence Analysis uniprot_rest_interface bgruening https://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interface https://github.com/bgruening/galaxytools/tree/master/tools/uniprot_rest_interface 0.6 requests 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 132 2406 True False False +uniprotxml_downloader uniprotxml_downloader Download UniProt proteome in XML or fasta format To update Proteomics uniprotxml_downloader galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/uniprotxml_downloader 2.4.0 requests 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 79 1360 True False True +usher usher_matutils, usher UShER toolkit wrappers usher usher usher The UShER toolkit includes a set of tools for for rapid, accurate placement of samples to existing phylogenies. While not restricted to SARS-CoV-2 phylogenetic analyses, it has enabled real-time phylogenetic analyses and genomic contact tracing in that its placement is orders of magnitude faster and more memory-efficient than previous methods. Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Phylogeny, Evolutionary biology, Cladistics, Genotype and phenotype, Phylogenomics To update https://github.com/yatisht/usher Phylogenetics usher iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/usher https://github.com/galaxyproject/tools-iuc/tree/main/tools/usher 0.2.1 usher 0.6.3 Classification, Phylogenetic tree visualisation, Phylogenetic inference (from molecular sequences) Cladistics, Genotype and phenotype, Phylogenomics 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 5 1060 True False True +valet valet A pipeline for detecting mis-assemblies in metagenomic assemblies. valet valet VALET VALET is a pipeline for detecting mis-assemblies in metagenomic assemblies. Sequence assembly, Sequence assembly visualisation Metagenomics, Sequence assembly To update https://github.com/marbl/VALET Metagenomics valet iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/valet https://github.com/galaxyproject/tools-iuc/tree/main/tools/valet valet 1.0 Sequence assembly, Sequence assembly visualisation Metagenomics, Sequence assembly 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 20 637 True False True +validate_fasta_database validate_fasta_database runs Compomics database identification tool on any FASTA database, and separates valid and invalid entries based on a series of checks. To update Fasta Manipulation, Proteomics validate_fasta_database galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/validate_fasta_database 0.1.5 validate-fasta-database 1.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 25 86 True False False +vapor vapor Classify Influenza samples from raw short read sequence data vapor vapor VAPOR VAPOR is a tool for classification of Influenza samples from raw short read sequence data for downstream bioinformatics analysis. VAPOR is provided with a fasta file of full-length sequences (> 20,000) for a given segment, a set of reads, and attempts to retrieve a reference that is closest to the sample strain. Data retrieval, De-novo assembly, Read mapping Whole genome sequencing, Mapping, Sequence assembly Up-to-date https://github.com/connor-lab/vapor Sequence Analysis vapor iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vapor https://github.com/galaxyproject/tools-iuc/tree/main/tools/vapor 1.0.2 vapor 1.0.2 Data retrieval, De-novo assembly, Read mapping Whole genome sequencing, Mapping, Sequence assembly 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 94 3164 True False True +varvamp varvamp Variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses varvamp varvamp varVAMP variable VirusAMPlicons (varVAMP) is a tool to design primers for highly diverse viruses. The input is an alignment of your viral (full-genome) sequences. PCR primer design Virology, Probes and primers Up-to-date https://github.com/jonas-fuchs/varVAMP/ Sequence Analysis varvamp iuc https://github.com/jonas-fuchs/varVAMP https://github.com/galaxyproject/tools-iuc/tree/main/tools/varvamp 1.2.0 varvamp 1.2.0 PCR primer design Virology, Probes and primers 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +vcf2snvalignment vcf2snvalignment Generates multiple alignment of variant calls Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis vcf2snvalignment nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/vcf2snvalignment 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +vegan vegan_diversity, vegan_fisher_alpha, vegan_rarefaction an R package fo community ecologist vegan vegan vegan Ordination methods, diversity analysis and other functions for community and vegetation ecologists Standardisation and normalisation, Analysis Ecology, Phylogenetics, Environmental science To update https://cran.r-project.org/package=vegan Metagenomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vegan/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/vegan 2.4-3 r-vegan 2.3_4 Standardisation and normalisation, Analysis Ecology, Phylogenetics, Environmental science 3 0 3 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 74 2020 True False True +velvet velvetg, velveth de novo genomic assembler specially designed for short read sequencing technologies velvet velvet Velvet A de novo genomic assembler specially designed for short read sequencing technologies, such as Solexa or 454 or SOLiD. Formatting, De-novo assembly Sequence assembly To update https://www.ebi.ac.uk/~zerbino/velvet/ Assembly velvet devteam https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvet https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet velvet 1.2.10 Formatting, De-novo assembly Sequence assembly 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2083 25420 True False True +velvet_optimiser velvetoptimiser Automatically optimize Velvet assemblies velvetoptimiser velvetoptimiser VelvetOptimiser This tool is designed to run as a wrapper script for the Velvet assembler (Daniel Zerbino, EBI UK) and to assist with optimising the assembly. Optimisation and refinement, Sequence assembly Genomics, Sequence assembly To update Assembly velvetoptimiser simon-gladman https://github.com/galaxyproject/tools-iuc/tree/master/tools/velvetoptimiser https://github.com/galaxyproject/tools-iuc/tree/main/tools/velvet_optimiser 2.2.6+galaxy2 velvet 1.2.10 Optimisation and refinement, Sequence assembly Genomics, Sequence assembly 1 1 1 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 255 4741 True False True +venn_list venn_list Draw Venn Diagram (PDF) from lists, FASTA files, etc To update https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list Graphics, Sequence Analysis, Visualization venn_list peterjc https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list https://github.com/peterjc/pico_galaxy/tree/master/tools/venn_list 0.1.2 galaxy_sequence_utils 1.1.5 1 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 248 5067 True False False +verify_map verify_map Checks the mapping quality of all BAM(s) Up-to-date https://snvphyl.readthedocs.io/en/latest/ Sequence Analysis verify_map nml https://github.com/phac-nml/snvphyl-galaxy https://github.com/phac-nml/snvphyl-galaxy/tree/development/tools/snvphyl-tools/verify_map 1.8.2 snvphyl-tools 1.8.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +verkko verkko Telomere-to-telomere assembly pipeline To update https://github.com/marbl/verkko Assembly verkko iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/verkko https://github.com/galaxyproject/tools-iuc/tree/main/tools/verkko 1.3.1 verkko 2.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 9 22 True False False +vg vg_convert, vg_deconstruct, vg_view Variation graph data structures, interchange formats, alignment, genotyping, and variant calling methods To update https://github.com/vgteam/vg Sequence Analysis, Variant Analysis iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vg https://github.com/galaxyproject/tools-iuc/tree/main/tools/vg 1.23.0 vg 1.56.0 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 3 477 True False False +vienna_rna viennarna_kinfold, viennarna_kinwalker, viennarna_rna2dfold, viennarna_rnaaliduplex, viennarna_rnaalifold, viennarna_rnacofold, viennarna_rnadistance, viennarna_rnaduplex, viennarna_rnaeval, viennarna_rnafold, viennarna_rnaheat, viennarna_rnainverse, viennarna_rnalalifold, viennarna_rnalfold, viennarna_rnapaln, viennarna_rnadpdist, viennarna_rnapkplex, viennarna_rnaplex, viennarna_rnaplfold, viennarna_rnaplot, viennarna_rnasnoop, viennarna_rnasubopt, viennarna_rnaup ViennaRNA - Prediction and comparison of RNA secondary structures To update http://www.tbi.univie.ac.at/RNA/ RNA viennarna rnateam https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna https://github.com/bgruening/galaxytools/tree/master/tools/rna_tools/vienna_rna 2.2.10 viennarna 2.6.4 0 0 21 0 0 0 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 21 0 123 7864 True False False +vigiechiro vigiechiro_bilanenrichipf, vigiechiro_bilanenrichirp, vigiechiro_idcorrect_2ndlayer, vigiechiro_idvalid Tools created by the vigiechiro team to analyses and identify chiro sounds files. To update https://www.vigienature-ecole.fr/les-observatoires/le-protocole-vigie-chiro Ecology vigiechiro ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro https://github.com/galaxyecology/tools-ecology/tree/master/tools/vigiechiro 0.1.1 0 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 351 12203 True False False +virAnnot virannot_blast2tsv, virannot_otu, virAnnot_rps2tsv virAnnot wrappers virannot virannot virAnnot "VirAnnot was build to ease the assembly, blast search, taxonomic annotation and OTUs assignation of viral metagenomic HTS data. It is used in Virologie team of UMR1332 BFP laboratory at INRAE. VirAnnot also takes part of the Euphresco project ""Plant Health Bioinformatics Network"". See more.It is designed to identify viruses in plant metagenomic data but it can be used to assemble and annotate any sequences with the NCBI taxonomy." Sequence annotation, Sequence clustering, Sequence cluster visualisation Metagenomics, Virology, Microbial ecology To update https://github.com/marieBvr/virAnnot Metagenomics virannot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/virAnnot https://github.com/galaxyproject/tools-iuc/tree/main/tools/virAnnot 1.0.1+galaxy0 biopython 1.70 Sequence annotation, Sequence clustering, Sequence cluster visualisation Metagenomics, Virology, Microbial ecology 0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False True +virheat virheat generates a heatmap of allele frequencies from vcf files virheat virheat virHEAT VirHEAT tool generates multi-sample variant-frequency plots from SnpEff-annotated viral variant lists. The tool provides a condensed look at variant frequencies after mapping raw reads to a viral/bacterial reference genome and compares multiple vcf files at the same time. Up-to-date https://github.com/jonas-fuchs/virHEAT Visualization, Variant Analysis virheat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/virheat https://github.com/galaxyproject/tools-iuc/tree/main/tools/virheat 0.7.1 virheat 0.7.1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +virsorter virsorter VirSorter2 applies a multi-classifier, expert-guided approach to detect diverse DNA and RNA virus genomes. virsorter virsorter virsorter Identify DNA and RNA virus sequences. Taxonomic classification Metagenomics Up-to-date https://github.com/jiarong/VirSorter2/ Metagenomics virsorter ufz https://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/tools/virsorter https://github.com/Helmholtz-UFZ/galaxy-tools/tree/main/tools/virsorter 2.2.4 virsorter 2.2.4 Taxonomic classification Metagenomics 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +volcanoplot volcanoplot Tool to create a Volcano Plot To update https://ggplot2.tidyverse.org/ Visualization, Transcriptomics, Statistics volcanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplot https://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot 0.0.6 r-ggplot2 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1749 30946 True False False +vsearch vsearch_alignment, vsearch_chimera_detection, vsearch_clustering, vsearch_dereplication, vsearch_masking, vsearch_search, vsearch_shuffling, vsearch_sorting VSEARCH including searching, clustering, chimera detection, dereplication, sorting, masking and shuffling of sequences. vsearch vsearch VSEARCH High-throughput search and clustering sequence analysis tool. It supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering and conversion. DNA mapping, Chimera detection Metagenomics, Sequence analysis To update https://github.com/torognes/vsearch Sequence Analysis vsearch iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsearch https://github.com/galaxyproject/tools-iuc/tree/main/tools/vsearch 2.8.3 vsearch 2.28.1 DNA mapping, Chimera detection Metagenomics, Sequence analysis 8 8 8 8 8 8 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 0 0 0 0 0 8 0 0 0 0 0 0 0 8 8 0 182 8507 True False True +vsnp vsnp_add_zero_coverage, vsnp_build_tables, vsnp_determine_ref_from_data, vsnp_get_snps, vsnp_statistics The vSNP tools are critical components of several workflows that validate SNPs and produce annotatedSNP tables and corresponding phylogenetic trees. To update https://github.com/USDA-VS/vSNP Sequence Analysis vsnp iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/vsnp https://github.com/galaxyproject/tools-iuc/tree/main/tools/vsnp 3.0.6 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +vt vt_@BINARY@, vt_@BINARY@ A tool set for short variant discovery in genetic sequence data. To update Sequence Analysis, Variant Analysis vt bgruening https://github.com/atks/vt https://github.com/bgruening/galaxytools/tree/master/tools/vt 0.2 vt 2015.11.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +wade wade identify regions of interest To update https://github.com/phac-nml/wade Sequence Analysis wade nml https://github.com/phac-nml/wade https://github.com/phac-nml/galaxy_tools/tree/master/tools/wade 0.2.5+galaxy1 wade 0.2.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +weather_app simple_weather provides simple weather in text format To update http://wttr.in/ Visualization, Web Services simpleweather iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/weather_app https://github.com/galaxyproject/tools-iuc/tree/main/tools/weather_app 0.1.2 curl 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +weightedaverage wtavg Assign weighted-average of the values of features overlapping an interval To update Sequence Analysis, Variant Analysis weightedaverage devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/weightedaverage https://github.com/galaxyproject/tools-devteam/tree/main/tools/weightedaverage 1.0.1 galaxy-ops 1.1.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +windowmasker windowmasker_mkcounts, windowmasker_ustat Identify repetitive regions using WindowMasker To update https://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/lxr/source/src/app/winmasker/ Sequence Analysis windowmasker iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/windowmasker/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/windowmasker 1.0 blast 2.16.0 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 True False False +windowsplitter winSplitter Make windows To update Sequence Analysis, Variant Analysis windowsplitter devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/windowsplitter https://github.com/galaxyproject/tools-devteam/tree/main/tools/windowsplitter 1.0.1 bx-python 0.12.0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 True False False +wtdbg wtdbg WTDBG is a fuzzy Bruijn graph (FBG) approach to long noisy reads assembly. wtdbg2 wtdbg2 wtdbg2 Wtdbg2 is a de novo sequence assembler for long noisy reads produced by PacBio or Oxford Nanopore Technologies (ONT). It assembles raw reads without error correction and then builds the consensus from intermediate assembly output. Wtdbg2 is able to assemble the human and even the 32Gb Axolotl genome at a speed tens of times faster than CANU and FALCON while producing contigs of comparable base accuracy. Genome assembly, De-novo assembly Sequence assembly, Sequencing Up-to-date https://github.com/ruanjue/wtdbg2 Assembly wtdbg bgruening https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg https://github.com/bgruening/galaxytools/tree/master/tools/wtdbg 2.5 wtdbg 2.5 Genome assembly, De-novo assembly Sequence assembly, Sequencing 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 116 1660 True False True +xarray timeseries_extraction, xarray_coords_info, xarray_mapplot, xarray_metadata_info, xarray_netcdf2netcdf, xarray_select xarray (formerly xray) is an open source project and Python package that makes working withlabelled multi-dimensional arrays simple, efficient, and fun!xarray integrates with Dask to support parallel computations and streaming computation on datasetsthat don’t fit into memory. To update http://xarray.pydata.org Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray/ https://github.com/galaxyecology/tools-ecology/tree/master/tools/data_manipulation/xarray 2022.3.0 xarray 5 2 6 5 5 2 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 2 0 175 5876 True False False +xpore xpore_dataprep, xpore_diffmod Identification and quantification of differential RNA modifications from direct RNA sequencing To update https://github.com/GoekeLab/xpore Nanopore xpore artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/xpore https://github.com/ARTbio/tools-artbio/tree/main/tools/xpore 2.1+galaxy0 xpore 2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False +yac_clipper yac Clips 3' adapters for small RNA sequencing reads. To update http://artbio.fr RNA, Fastq Manipulation yac_clipper artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/yac_clipper https://github.com/ARTbio/tools-artbio/tree/main/tools/yac_clipper 2.5.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 True False False +yahs yahs Yet Another Hi-C scaffolding tool Up-to-date https://github.com/c-zhou/yahs Assembly yahs iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs https://github.com/galaxyproject/tools-iuc/tree/main/tools/yahs 1.2a.2 yahs 1.2a.2 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 64 344 True False False +zeiss_lmd_converter ZeissLMDconverter Converts coordinates from a tabular file into a formatted text file readable by Zeiss laser-capture microdissection systems To update https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter Proteomics galaxyp https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/zeiss_lmd_converter 2.0.4 shapely 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +zoo_project_ogc_api_processes zoo_project_ogc_api_processes This tool is a wrapper for OGC API Processes (OTB) coming from the Zoo Project (https://zoo-project.github.io/docs/intro.html) and was created using the OGC-API-Process2Galaxy tool (https://github.com/AquaINFRA/OGC-API-Process2Galaxy). Check the README in the repository for more information. To update https://github.com/AquaINFRA/galaxy Ecology ecology https://github.com/galaxyecology/tools-ecology/tree/master/tools/ogc_api_processes_wrapper https://github.com/galaxyecology/tools-ecology/tree/master/tools/zoo_project_ogc_api_processes 0.1.0 r-base 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 True False False diff --git a/communities/microgalaxy/resources/tools_wordcloud.png b/communities/microgalaxy/resources/tools_wordcloud.png new file mode 100644 index 00000000..ec4ceee2 Binary files /dev/null and b/communities/microgalaxy/resources/tools_wordcloud.png differ diff --git a/communities/microgalaxy/resources/tutorials.html b/communities/microgalaxy/resources/tutorials.html new file mode 100644 index 00000000..44aa545c --- /dev/null +++ b/communities/microgalaxy/resources/tutorials.html @@ -0,0 +1,1263 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandTopicTitleLinkEDAM topicEDAM operationCreationLast modificationVersionTutorialSlidesVideoWorkflowsToolsServers with precise tool versionsServers with tool but different versionsFeedback numberFeedback mean noteVisitorsPage viewsVisit durationVideo views
AssemblyAssembly of metagenomic sequencing datahttps://training.galaxyproject.org//topics/assembly/tutorials/metagenomics-assembly/tutorial.htmlMetagenomics, Sequence assemblyVisualisation, Sequencing quality control, Primer removal, Sequence file editing, Formatting, Read mapping, Sequence assembly validation, Sequence composition calculation, Sequence assembly visualisation, Local alignment, Genome assembly, Sequence trimming, Statistical calculation, Sequence contamination filtering, Sequence alignment analysis, Read pre-processing, Data handling, Variant calling2024-08-182024-08-180TrueFalseFalseTruebg_uniq, megahit_contig2fastg, ngsutils_bam_filter, megahit, bowtie2, tp_cat, quast, random_lines1, collection_column_join, filter_tabular, seqtk_subseq, fastqc, bandage_info, coverm_contig, bandage_image, bamtools, cutadapt, metaspadesUseGalaxy.cz, UseGalaxy.eu0220.1000000
AssemblyGenome Assembly of MRSA from Oxford Nanopore MinION data (and optionally Illumina data)https://training.galaxyproject.org//topics/assembly/tutorials/mrsa-nanopore/tutorial.htmlSequence assembly, Whole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Antimicrobial ResistanceVisualisation, Sequencing quality control, Sequence contamination filtering, Genome assembly, De-novo assembly, Sequence alignment, Box-Whisker plot plotting, Sequence assembly validation, Sequence composition calculation, Read mapping, Scatter plot plotting, Mapping assembly, Sequencing error detection, Sequence assembly visualisation, Cross-assembly, Filtering, Statistical calculation2021-03-242024-03-1314TrueFalseFalseTruenanoplot, fastp, CONVERTER_bz2_to_uncompressed, filtlong, flye, bwa_mem2, quast, fastqc, polypolish, bandage_image, upload1, porechopUseGalaxy.euUseGalaxy.cz06851105713.4333330
AssemblyGenome Assembly of a bacterial genome (MRSA) sequenced using Illumina MiSeq Datahttps://training.galaxyproject.org//topics/assembly/tutorials/mrsa-illumina/tutorial.htmlSequence assembly, Whole genome sequencing, Public health and epidemiology, Genomics, MicrobiologyVisualisation, Sequencing quality control, Sequence contamination filtering, Sequence assembly validation, Sequence composition calculation, Sequence assembly visualisation, Genome assembly, Statistical calculation2021-03-242024-03-1314TrueFalseFalseTruefastp, shovill, quast, fastqc, bandage_info, bandage_image, upload1UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr, UseGalaxy.org (Main)Galaxy@AuBi, GalaxyTrakr, UseGalaxy.no06432103693.7500000
AssemblyMaking sense of a newly assembled genomehttps://training.galaxyproject.org//topics/assembly/tutorials/ecoli_comparison/tutorial.htmlSequence assembly, Genomics, MicrobiologyGenome visualisation, Sequence alignment, Mapping, Read mapping, Sequence visualisation2018-06-142024-06-2429TrueFalseFalseTruecircos, lastz_wrapper_2, random_lines1, Cut1, circos_interval_to_tiles, addValue, collapse_dataset, Grep1, datamash_ops, bedtools_sortbed, tp_sort_header_tool, bedtools_complementbed, tp_replace_in_column, circos_aln_to_links, cat1, tp_cat, fasta_filter_by_length, Filter1, tp_sed_tool, fasta_compute_length, tp_replace_in_line, join1, upload1, jbrowse, bedtools_intersectbed, tp_grep_tool, mergeCols105938120673.0333330
AssemblyUnicycler Assemblyhttps://training.galaxyproject.org//topics/assembly/tutorials/unicycler-assembly/tutorial.htmlSequence assembly, Genomics, MicrobiologyVisualisation, Sequencing quality control, Genome annotation, Sequence assembly validation, Sequence composition calculation, Coding region prediction, Validation, Genome assembly, Gene prediction, Statistical calculation, Aggregation2017-10-112024-03-1323TrueTrueFalseTruemultiqc, quast, prokka, fastqc, unicyclerUseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.auGalaxyTrakr, HyPhy HIV NGS Tools, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no0207475057465214.5500000
EcologyChecking expected species and contamination in bacterial isolatehttps://training.galaxyproject.org//topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/tutorial.htmlWhole genome sequencing, Genomics, Microbiology, Microbial ecologyCross-assembly, Taxonomic classification, Expression analysis, Statistical calculation2024-03-042024-06-274TrueFalseFalseTrueest_abundance, upload1, kraken2, recentrifugeUseGalaxy.eu, UseGalaxy.frGalaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.org (Main)02293023.9500000
EvolutionIdentifying tuberculosis transmission links: from SNPs to transmission clustershttps://training.galaxyproject.org//topics/evolution/tutorials/mtb_transmission/tutorial.htmlGenomics, Microbiology, Infectious disease, DNA polymorphismVariant calling, Phylogenetic tree visualisation, Phylogenetic tree generation, Antimicrobial resistance prediction2022-03-162024-07-1212TrueFalseFalseTrueGrep1, bcftools_consensus, tb_variant_filter, upload1, samtools_view, snp_sites, tb_profiler_profile, tp_grep_tool, tp_cat, snippy, tp_easyjoin_tool, addName, tp_sed_tool, tp_replace_in_line, snp_dists, collapse_dataset, __MERGE_COLLECTION__, trimmomaticUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main)0153324143.1333330
EvolutionTree thinking for tuberculosis evolution and epidemiologyhttps://training.galaxyproject.org//topics/evolution/tutorials/mtb_phylogeny/tutorial.htmlGenomics, Microbiology, Phylogeny, Infectious diseaseSequence analysis, Phylogenetic tree analysis2022-03-162024-03-1211TrueFalseFalseTrueinteractive_tool_rstudio, upload1, raxmlUseGalaxy.euUseGalaxy.fr, UseGalaxy.org (Main)0130819832.1833330
Genome AnnotationGenome annotation with Prokkahttps://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.htmlGenomics, Microbiology, Gene and protein families, Sequence analysisGenome visualisation, Genome annotation, Gene prediction, Coding region prediction2018-03-062024-08-0825TrueTrueTrueTrueprokka, jbrowseUseGalaxy.eu, UseGalaxy.org (Main)Galaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au0207935257544054.3333330
Genome AnnotationRefining Genome Annotations with Apollo (prokaryotes)https://training.galaxyproject.org//topics/genome-annotation/tutorials/apollo/tutorial.htmlGenomics, Microbiology, Gene and protein families, Sequence analysisGenome visualisation2021-06-042024-08-0820TrueTrueTrueTruejbrowse, create_or_update, list_organism, iframe, create_accountUseGalaxy.cz, UseGalaxy.eu, UseGalaxy.no0183681749491604.9500000
Genome AnnotationIdentification of AMR genes in an assembled bacterial genomehttps://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.htmlWhole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Sequence analysis, Infectious disease, Antimicrobial ResistanceGenome visualisation, Genome annotation, Read mapping2024-01-232024-03-135TrueFalseFalseTrueGrep1, jbrowse, bowtie2, tbl2gff3, bakta, staramr_search, upload1UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.frGalaxy@AuBi096713682.9333330
Genome AnnotationBacterial Genome Annotationhttps://training.galaxyproject.org//topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.htmlGenomics, Microbiology, Gene and protein families, Sequence analysis, Whole genome sequencing, Functional genomics, Mobile genetic elementsGenome assembly, Sequence motif recognition, Genome annotation, Nucleic acid feature detection, Structural variation detection, Multilocus sequence typing, Genome visualisation, Protein feature detection, Scaffolding2024-02-012024-08-014TrueFalseFalseTrueGrouping1, jbrowse, upload1, integron_finder, isescan, tp_tail_tool, plasmidfinder, tbl2gff3, bakta, tp_replace_in_columnUseGalaxy.eu, UseGalaxy.frGalaxy@AuBi, UseGalaxy.cz0180023782.3333330
Genome AnnotationComparative gene analysis in unannotated genomeshttps://training.galaxyproject.org//topics/genome-annotation/tutorials/gene-centric/tutorial.htmlGenomics, Gene and protein families, Sequence analysis, PhylogenyMultiple sequence alignment, Database search, Transcriptome assembly, Coding region prediction, De-novo assembly, Sequence alignment analysis, Phylogenetic tree generation2022-09-082024-03-188TrueFalseFalseTruetab2fasta, cat1, orfipy, Add_a_column1, rbc_mafft, rapidnj, bg_diamond_view, regexColumn1, Cut1, bg_diamond_makedb, Filter1, bg_diamond, tp_split_on_column, join1, gops_intersect_1, collapse_datasetUseGalaxy.eu, UseGalaxy.org (Main)UseGalaxy.cz097414763.1000000
Genome AnnotationEssential genes detection with Transposon insertion sequencinghttps://training.galaxyproject.org//topics/genome-annotation/tutorials/tnseq/tutorial.htmlGenomics, Microbiology, Sequence analysis, Mobile genetic elementsTransposon prediction, Primer removal, Sequence trimming, Read pre-processing2019-07-022024-03-1812TrueTrueFalseTruetransit_gumbel, Add_a_column1, deeptools_bam_coverage, tp_easyjoin_tool, bg_find_subsequences, Cut1, Filter1, tp_sort_header_tool, bowtie_wrapper, gff_to_prot, cutadapt, __EXTRACT_DATASET__UseGalaxy.no, UseGalaxy.org.auUseGalaxy.cz, UseGalaxy.eu0207040857394764.2500000
Genome AnnotationGenome annotation with Prokkahttps://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.htmlGenomics, Microbiology, Gene and protein families, Sequence analysisGenome visualisation, Genome annotation, Gene prediction, Coding region prediction2018-03-062024-08-0825TrueTrueTrueTrueprokka, jbrowseUseGalaxy.eu, UseGalaxy.org (Main)Galaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au0207935257544054.3333330
AssemblyGenome Assembly of MRSA from Oxford Nanopore MinION data (and optionally Illumina data)https://training.galaxyproject.org//topics/assembly/tutorials/mrsa-nanopore/tutorial.htmlSequence assembly, Whole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Antimicrobial ResistanceVisualisation, Sequencing quality control, Sequence contamination filtering, Genome assembly, De-novo assembly, Sequence alignment, Box-Whisker plot plotting, Sequence assembly validation, Sequence composition calculation, Read mapping, Scatter plot plotting, Mapping assembly, Sequencing error detection, Sequence assembly visualisation, Cross-assembly, Filtering, Statistical calculation2021-03-242024-03-1314TrueFalseFalseTruenanoplot, fastp, CONVERTER_bz2_to_uncompressed, filtlong, flye, bwa_mem2, quast, fastqc, polypolish, bandage_image, upload1, porechopUseGalaxy.euUseGalaxy.cz06851105713.4333330
AssemblyMaking sense of a newly assembled genomehttps://training.galaxyproject.org//topics/assembly/tutorials/ecoli_comparison/tutorial.htmlSequence assembly, Genomics, MicrobiologyGenome visualisation, Sequence alignment, Mapping, Read mapping, Sequence visualisation2018-06-142024-06-2429TrueFalseFalseTruecircos, lastz_wrapper_2, random_lines1, Cut1, circos_interval_to_tiles, addValue, collapse_dataset, Grep1, datamash_ops, bedtools_sortbed, tp_sort_header_tool, bedtools_complementbed, tp_replace_in_column, circos_aln_to_links, cat1, tp_cat, fasta_filter_by_length, Filter1, tp_sed_tool, fasta_compute_length, tp_replace_in_line, join1, upload1, jbrowse, bedtools_intersectbed, tp_grep_tool, mergeCols105938120673.0333330
Variant AnalysisMicrobial Variant Callinghttps://training.galaxyproject.org//topics/variant-analysis/tutorials/microbial-variants/tutorial.htmlGenomics, Sequence assembly, DNA polymorphism, Microbiology, Sequence analysis, Genetic variationGenome visualisation, Variant calling, Phylogenetic tree generation, Phylogenetic tree visualisation2018-02-262024-03-1523TrueFalseFalseTruejbrowse, snippyUseGalaxy.eu, UseGalaxy.org (Main)GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au012166203222.0000000
Genome AnnotationRefining Genome Annotations with Apollo (prokaryotes)https://training.galaxyproject.org//topics/genome-annotation/tutorials/apollo/tutorial.htmlGenomics, Microbiology, Gene and protein families, Sequence analysisGenome visualisation2021-06-042024-08-0820TrueTrueTrueTruejbrowse, create_or_update, list_organism, iframe, create_accountUseGalaxy.cz, UseGalaxy.eu, UseGalaxy.no0183681749491604.9500000
Genome AnnotationIdentification of AMR genes in an assembled bacterial genomehttps://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.htmlWhole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Sequence analysis, Infectious disease, Antimicrobial ResistanceGenome visualisation, Genome annotation, Read mapping2024-01-232024-03-135TrueFalseFalseTrueGrep1, jbrowse, bowtie2, tbl2gff3, bakta, staramr_search, upload1UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.frGalaxy@AuBi096713682.9333330
Genome AnnotationBacterial Genome Annotationhttps://training.galaxyproject.org//topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.htmlGenomics, Microbiology, Gene and protein families, Sequence analysis, Whole genome sequencing, Functional genomics, Mobile genetic elementsGenome assembly, Sequence motif recognition, Genome annotation, Nucleic acid feature detection, Structural variation detection, Multilocus sequence typing, Genome visualisation, Protein feature detection, Scaffolding2024-02-012024-08-014TrueFalseFalseTrueGrouping1, jbrowse, upload1, integron_finder, isescan, tp_tail_tool, plasmidfinder, tbl2gff3, bakta, tp_replace_in_columnUseGalaxy.eu, UseGalaxy.frGalaxy@AuBi, UseGalaxy.cz0180023782.3333330
MicrobiomeAnalyses of metagenomics data - The global picturehttps://training.galaxyproject.org//topics/microbiome/tutorials/general-tutorial/tutorial.htmlMetagenomics, Microbial ecology, Taxonomy, Sequence analysisVisualisation, Sequencing quality control, Phylogenetic analysis, Taxonomic classification, Sequence read processing, DNA barcoding, Sequence clustering2017-06-222024-08-094TrueFalseFalseTruemothur_cluster_split, mothur_count_seqs, mothur_classify_otu, mothur_merge_files, mothur_pre_cluster, humann2_regroup_table, mothur_make_biom, mothur_make_group, mothur_screen_seqs, mothur_unique_seqs, mothur_summary_seqs, metaphlan2, humann2, krona-text, mothur_make_shared, taxonomy_krona_chart, mothur_align_seqs, humann2_renorm_table, mothur_classify_seqs, mothur_filter_seqs, metaphlan2kronaUseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au0301340812.7500000
MicrobiomeAntibiotic resistance detectionhttps://training.galaxyproject.org//topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.htmlMetagenomic sequencing, Public health and epidemiology, Metagenomics, Microbiology, Infectious disease, Sequence analysis, Antimicrobial ResistanceDe-novo assembly, Sequence analysis, Box-Whisker plot plotting, Pairwise sequence alignment, Scatter plot plotting, Mapping assembly, Sequence assembly visualisation, Genome assembly, Aggregation2019-06-252024-06-144TrueFalseFalseTruenanoplot, gfa_to_fa, racon, PlasFlow, miniasm, minimap2, staramr_search, bandage_image, unicyclerUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au0113017524.0166670
MicrobiomeTaxonomic Profiling and Visualization of Metagenomic Datahttps://training.galaxyproject.org//topics/microbiome/tutorials/taxonomic-profiling/tutorial.htmlMetagenomics, Microbial ecology, Taxonomy, Sequence analysisVisualisation, Nucleic acid sequence analysis, Taxonomic classification, Phylogenetic tree analysis, Statistical calculation, Aggregation2023-05-032024-06-144TrueFalseFalseTrueest_abundance, krakentools_kreport2krona, __UNZIP_COLLECTION__, interactive_tool_phinch, taxonomy_krona_chart, interactive_tool_pavian, kraken2, metaphlan, kraken_biomUseGalaxy.euUseGalaxy.fr, UseGalaxy.org.au0365549931.9500000
MicrobiomeAssembly of metagenomic sequencing datahttps://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-assembly/tutorial.htmlMetagenomics, Sequence assemblyVisualisation, Sequencing quality control, Primer removal, Sequence file editing, Formatting, Read mapping, Sequence assembly validation, Sequence composition calculation, Sequence assembly visualisation, Local alignment, Genome assembly, Sequence trimming, Statistical calculation, Sequence contamination filtering, Sequence alignment analysis, Read pre-processing, Data handling, Variant calling2022-12-052024-06-144TrueFalseFalseTruebg_uniq, megahit_contig2fastg, ngsutils_bam_filter, megahit, bowtie2, tp_cat, quast, random_lines1, collection_column_join, filter_tabular, seqtk_subseq, fastqc, bandage_info, coverm_contig, bandage_image, bamtools, cutadapt, metaspadesUseGalaxy.cz, UseGalaxy.eu0137619312.5333330
MicrobiomeBuilding an amplicon sequence variant (ASV) table from 16S data using DADA2https://training.galaxyproject.org//topics/microbiome/tutorials/dada-16S/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysisVisualisation, Analysis, Variant calling, DNA barcoding, Deposition2024-06-052024-08-097TrueFalseFalseTrue__UNZIP_COLLECTION__, phyloseq_from_dada2, interactive_tool_phyloseq, dada2_filterAndTrim, Grouping1, __SORTLIST__, dada2_learnErrors, dada2_dada, dada2_plotQualityProfile, tp_replace_in_column, dada2_removeBimeraDenovo, cat1, dada2_assignTaxonomyAddspecies, dada2_mergePairs, dada2_makeSequenceTable, collection_element_identifiers, dada2_seqCounts, tp_replace_in_line, Add_a_column1, tp_head_toolUseGalaxy.eu06148402.0666670
MicrobiomePathogen detection from (direct Nanopore) sequencing data using Galaxy - Foodborne Editionhttps://training.galaxyproject.org//topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.htmlMetagenomics, Public health and epidemiology, Taxonomy, Sequence assembly, Pathology, Sequence analysisVisualisation, Sequencing quality control, Sequence composition calculation, Taxonomic classification, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Phylogenetic tree generation, Phylogenetic tree generation (from molecular sequences), Pairwise sequence alignment, Sequence assembly visualisation, Multilocus sequence typing, Cross-assembly, Genome assembly, Base-calling, Validation, Sequence assembly, Statistical calculation, Phylogenetic tree reconstruction, Sequence contamination filtering, De-novo assembly, Mapping, Box-Whisker plot plotting, Phylogenetic tree analysis, Sequence alignment analysis, Scatter plot plotting, Mapping assembly, Multiple sequence alignment, Data handling, Variant calling, Antimicrobial resistance prediction, Aggregation2023-01-262024-07-269TrueFalseFalseTrue__BUILD_LIST__, __FILTER_FAILED_DATASETS__, abricate, newick_display, krakentools_extract_kraken_reads, Count1, Cut1, snpSift_extractFields, kraken2, table_compute, fasta2tab, Remove beginning1, fasttree, add_line_to_file, collapse_dataset, Grep1, Grouping1, bcftools_consensus, bcftools_norm, ggplot2_heatmap, collection_column_join, clair3, tp_sorted_uniq, fasta_merge_files_and_filter_unique_sequences, tp_replace_in_column, CONVERTER_gz_to_uncompressed, regex1, porechop, tab2fasta, __FILTER_EMPTY_DATASETS__, taxonomy_krona_chart, tp_find_and_replace, tp_cut_tool, Paste1, flye, mlst, bedtools_getfastabed, collection_element_identifiers, bandage_image, tp_split_on_column, clustalw, regexColumn1, medaka_consensus_pipeline, samtools_coverage, krakentools_kreport2krona, barchart_gnuplot, nanoplot, param_value_from_file, compose_text_param, fastp, tp_multijoin_tool, multiqc, samtools_fastx, bamtools_split_mapped, snpSift_filter, samtools_depth, fastqc, minimap2, split_file_to_collection, Add_a_column1, tp_head_toolUseGalaxy.eu0168025213.0166670
Microbiome16S Microbial analysis with Nanopore datahttps://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysisVisualisation, Sequencing quality control, Sequence contamination filtering, Validation, Sequence composition calculation, Taxonomic classification, Statistical calculation2020-11-242024-07-315TrueFalseFalseTruefastp, multiqc, taxonomy_krona_chart, fastqc, kraken2, tp_replace_in_line, Remove beginning1, datamash_reverse, porechopUseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.auGalaxyTrakr, UseGalaxy.cz0234433142.8000000
MicrobiomeIdentification of the micro-organisms in a beer using Nanopore sequencinghttps://training.galaxyproject.org//topics/microbiome/tutorials/beer-data-analysis/tutorial.htmlMetagenomics, Microbial ecology, Taxonomy, Sequence analysisVisualisation, Sequencing quality control, Sequence contamination filtering, Sequence composition calculation, Taxonomic classification, Statistical calculation, Aggregation2022-09-292024-06-144TrueFalseFalseTruefastp, taxonomy_krona_chart, fastqc, kraken2, Filter1, porechop, krakentools_kreport2kronaGalaxyTrakr, UseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.auUseGalaxy.cz0110317432.8166670
MicrobiomeMetatranscriptomics analysis using microbiome RNA-seq datahttps://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics/tutorial.htmlMetatranscriptomics, Microbial ecology, Taxonomy, Function analysis, Sequence analysisVisualisation, Primer removal, Sequencing quality control, Sequence similarity search, Phylogenetic analysis, Taxonomic classification, Nucleic acid sequence analysis, Sequence composition calculation, Phylogenetic inference, Validation, Sequence trimming, Conversion, Statistical calculation, Species frequency estimation, Phylogenetic tree editing, Sequence comparison, Phylogenetic tree analysis, Sequence alignment analysis, Read pre-processing, Phylogenetic tree visualisation2019-11-212024-06-144TrueTrueFalseTruehumann_rename_table, Cut1, graphlan_annotate, humann_regroup_table, metaphlan, Grep1, export2graphlan, bg_sortmerna, humann_split_stratified_table, graphlan, fastq_paired_end_interlacer, combine_metaphlan2_humann2, taxonomy_krona_chart, tp_find_and_replace, humann_unpack_pathways, cutadapt, humann, multiqc, fastqc, humann_renorm_tableUseGalaxy.org (Main)UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au0206615457299244.1333330
MicrobiomeMetatranscriptomics analysis using microbiome RNA-seq data (short)https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics-short/tutorial.htmlMetatranscriptomics, Microbial ecology, Taxonomy, Function analysis, Sequence analysisVisualisation, Primer removal, Sequencing quality control, Sequence similarity search, Phylogenetic analysis, Taxonomic classification, Nucleic acid sequence analysis, Sequence composition calculation, Phylogenetic inference, Validation, Sequence trimming, Conversion, Statistical calculation, Species frequency estimation, Phylogenetic tree editing, Sequence comparison, Phylogenetic tree analysis, Sequence alignment analysis, Read pre-processing, Phylogenetic tree visualisation2020-02-132024-06-144TrueFalseFalseTruehumann_rename_table, Cut1, graphlan_annotate, humann_regroup_table, metaphlan, Grep1, export2graphlan, bg_sortmerna, humann_split_stratified_table, graphlan, fastq_paired_end_interlacer, combine_metaphlan2_humann2, taxonomy_krona_chart, tp_find_and_replace, humann_unpack_pathways, cutadapt, humann, multiqc, fastqc, humann_renorm_tableUseGalaxy.org (Main)UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au02342971.6666670
MicrobiomeBinning of metagenomic sequencing datahttps://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-binning/tutorial.htmlMetagenomics, Sequence assemblySequencing quality control, Validation, Genome assembly, Sequence assembly validation, Statistical calculation, Sequence composition calculation2023-12-052024-03-143TrueFalseFalseFalsemegahit, checkm_lineage_wfGalaxyTrakr, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr0164819971.4833330
MicrobiomeQIIME 2 Moving Pictureshttps://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysis2024-03-142024-03-141externalFalseFalseFalseUseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr01121713.8166670
MicrobiomeQIIME 2 Cancer Microbiome Interventionhttps://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysis2024-02-122024-03-143externalFalseFalseFalseUseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr01192202.7166670
Microbiome16S Microbial Analysis with mothur (short)https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysisVisualisation, Sequencing quality control, Phylogenetic analysis, Taxonomic classification, Phylogenetic tree analysis, Phylogenetic tree generation, Sequence read processing, DNA barcoding, Sequence clustering, Phylogenetic tree reconstruction2019-05-132024-06-145TrueFalseFalseTruemothur_remove_lineage, mothur_cluster_split, mothur_count_seqs, mothur_dist_shared, mothur_sub_sample, mothur_classify_otu, newick_display, mothur_chimera_vsearch, mothur_venn, mothur_pre_cluster, XY_Plot_1, mothur_rarefaction_single, collapse_dataset, mothur_screen_seqs, mothur_unique_seqs, mothur_count_groups, mothur_heatmap_sim, mothur_summary_seqs, mothur_tree_shared, mothur_remove_groups, mothur_make_shared, mothur_summary_single, mothur_cluster, mothur_classify_seqs, mothur_dist_seqs, mothur_filter_seqs, mothur_remove_seqsUseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.auUseGalaxy.cz, UseGalaxy.fr0174432115.7333330
Microbiome16S Microbial Analysis with mothur (extended)https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysisVisualisation, Sequencing quality control, Phylogenetic analysis, Taxonomic classification, Phylogenetic tree analysis, Phylogenetic tree generation, Sequence read processing, DNA barcoding, Sequence clustering, Phylogenetic tree reconstruction2017-02-122024-03-144TrueFalseFalseTruemothur_remove_lineage, mothur_cluster_split, mothur_count_seqs, mothur_dist_shared, mothur_make_contigs, mothur_classify_otu, mothur_sub_sample, mothur_taxonomy_to_krona, mothur_chimera_vsearch, newick_display, mothur_venn, mothur_pre_cluster, XY_Plot_1, mothur_rarefaction_single, mothur_make_biom, mothur_screen_seqs, mothur_unique_seqs, mothur_count_groups, mothur_heatmap_sim, mothur_summary_seqs, mothur_tree_shared, mothur_remove_groups, mothur_make_shared, taxonomy_krona_chart, mothur_summary_single, mothur_cluster, mothur_seq_error, mothur_align_seqs, mothur_classify_seqs, mothur_get_groups, mothur_dist_seqs, mothur_filter_seqs, mothur_remove_seqsUseGalaxy.euUseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au0469572292.9833330
Variant AnalysisM. tuberculosis Variant Analysishttps://training.galaxyproject.org//topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.htmlGenomics, Microbiology, Sequence assembly, Genetic variation, Public health and epidemiology, Infectious diseaseGlobal alignment, Sequencing quality control, Sequence contamination filtering, Sequence alignment, Sequence analysis, Sequence composition calculation, Sequence alignment analysis, Taxonomic classification, Phylogenetic tree generation, Variant calling, Local alignment, Phylogenetic tree visualisation, Validation, Genome visualisation, Statistical calculation, Antimicrobial resistance prediction2020-07-252024-07-2630TrueFalseFalseTruetp_awk_tool, kraken2, bcftools_consensus, mosdepth, EMBOSS: seqret84, tb_profiler_profile, qualimap_bamqc, samtools_stats, tb_variant_filter, tp_sed_tool, EMBOSS:%20seqret84, upload1, tbvcfreport, fastp, jbrowse, multiqc, jvarkit_wgscoverageplotter, snippy, fastqc, __FLATTEN__0564189972.9500000
Genome AnnotationIdentification of AMR genes in an assembled bacterial genomehttps://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.htmlWhole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Sequence analysis, Infectious disease, Antimicrobial ResistanceGenome visualisation, Genome annotation, Read mapping2024-01-232024-03-135TrueFalseFalseTrueGrep1, jbrowse, bowtie2, tbl2gff3, bakta, staramr_search, upload1UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.frGalaxy@AuBi096713682.9333330
EvolutionIdentifying tuberculosis transmission links: from SNPs to transmission clustershttps://training.galaxyproject.org//topics/evolution/tutorials/mtb_transmission/tutorial.htmlGenomics, Microbiology, Infectious disease, DNA polymorphismVariant calling, Phylogenetic tree visualisation, Phylogenetic tree generation, Antimicrobial resistance prediction2022-03-162024-07-1212TrueFalseFalseTrueGrep1, bcftools_consensus, tb_variant_filter, upload1, samtools_view, snp_sites, tb_profiler_profile, tp_grep_tool, tp_cat, snippy, tp_easyjoin_tool, addName, tp_sed_tool, tp_replace_in_line, snp_dists, collapse_dataset, __MERGE_COLLECTION__, trimmomaticUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main)0153324143.1333330
EvolutionTree thinking for tuberculosis evolution and epidemiologyhttps://training.galaxyproject.org//topics/evolution/tutorials/mtb_phylogeny/tutorial.htmlGenomics, Microbiology, Phylogeny, Infectious diseaseSequence analysis, Phylogenetic tree analysis2022-03-162024-03-1211TrueFalseFalseTrueinteractive_tool_rstudio, upload1, raxmlUseGalaxy.euUseGalaxy.fr, UseGalaxy.org (Main)0130819832.1833330
Microbiome16S Microbial analysis with Nanopore datahttps://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.htmlMicrobial ecology, Taxonomy, Sequence analysisVisualisation, Sequencing quality control, Sequence contamination filtering, Validation, Sequence composition calculation, Taxonomic classification, Statistical calculation2020-11-242024-07-315TrueFalseFalseTruefastp, multiqc, taxonomy_krona_chart, fastqc, kraken2, tp_replace_in_line, Remove beginning1, datamash_reverse, porechopUseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.auGalaxyTrakr, UseGalaxy.cz0234433142.8000000
ProteomicsmetaQuantome 2: Functionhttps://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-function/tutorial.htmlProteomics, Proteogenomics, Metatranscriptomics, Microbial ecology, MetagenomicsVisualisation, Differential protein expression analysis, Functional clustering, Query and retrieval, Indexing, Filtering, Heat map generation, Statistical inference, Principal component visualisation, Quantification2020-10-292024-03-1514TrueFalseFalseTruemetaquantome_db, metaquantome_sample, metaquantome_stat, metaquantome_expand, metaquantome_filter, metaquantome_vizUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au03485043.8000000
ProteomicsmetaQuantome 3: Taxonomyhttps://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-taxonomy/tutorial.htmlProteomics, Proteogenomics, Metatranscriptomics, Microbial ecology, Metagenomics, TaxonomyVisualisation, Differential protein expression analysis, Functional clustering, Query and retrieval, Indexing, Filtering, Heat map generation, Statistical inference, Principal component visualisation, Quantification2020-10-292024-03-1514TrueFalseFalseTruemetaquantome_db, metaquantome_sample, metaquantome_stat, metaquantome_expand, metaquantome_filter, metaquantome_vizUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au03715022.6333330
ProteomicsmetaQuantome 1: Data creationhttps://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-data-creation/tutorial.htmlProteomics, Proteogenomics, Biodiversity, TaxonomyVisualisation, Label-free quantification, Filtering, Formatting, Prediction and recognition2020-10-162024-03-1420TrueFalseFalseTrueGrep1, msconvert, peptide_shaker, search_gui, Cut1, unipept, Filter1, query_tabular, tp_replace_in_line, Remove beginning1, regex1, flashlfq, tp_replace_in_columnUseGalaxy.euUseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au077313433.8000000
ProteomicsMetaproteomics tutorialhttps://training.galaxyproject.org//topics/proteomics/tutorials/metaproteomics/tutorial.htmlProteomics, Proteogenomics, Biodiversity, TaxonomyVisualisation, Prediction and recognition2017-06-282024-06-1441TrueFalseFalseTruesqlite_to_tabular, peptide_shaker, search_gui, unipept, query_tabularUseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.auUseGalaxy.cz0225637502.6166670
Sequence analysisQuality and contamination control in bacterial isolate using Illumina MiSeq Datahttps://training.galaxyproject.org//topics/sequence-analysis/tutorials/quality-contamination-control/tutorial.htmlWhole genome sequencing, Genomics, Microbiology, Microbial ecologySequencing quality control, Sequence contamination filtering, Cross-assembly, Sequence composition calculation, Taxonomic classification, Expression analysis, Statistical calculation2024-07-152024-07-151TrueFalseFalseTruefastp, est_abundance, fastqc, kraken2, recentrifuge, upload1UseGalaxy.eu, UseGalaxy.frGalaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.org (Main)061763.8833330
Variant AnalysisCalling variants in non-diploid systemshttps://training.galaxyproject.org//topics/variant-analysis/tutorials/non-dip/tutorial.htmlGenomics, Sequence assembly, DNA polymorphism, Microbiology, Sequence analysis, Genetic variationSequencing quality control, Genome indexing, Sequence alignment, Formatting, Sequence composition calculation, Sequence alignment analysis, Read mapping, Generation, Data handling, Variant calling, Statistical calculation2017-02-162024-03-1523TrueFalseFalseTruepicard_MarkDuplicates, freebayes, vcf2tsv, picard_MergeSamFiles, vcffilter2, bamFilter, Cut1, fastqc, bamleftalign, bwa_memUseGalaxy.eu, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main)UseGalaxy.cz, UseGalaxy.org.au07035134272.0500000
Variant AnalysisM. tuberculosis Variant Analysishttps://training.galaxyproject.org//topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.htmlGenomics, Microbiology, Sequence assembly, Genetic variation, Public health and epidemiology, Infectious diseaseGlobal alignment, Sequencing quality control, Sequence contamination filtering, Sequence alignment, Sequence analysis, Sequence composition calculation, Sequence alignment analysis, Taxonomic classification, Phylogenetic tree generation, Variant calling, Local alignment, Phylogenetic tree visualisation, Validation, Genome visualisation, Statistical calculation, Antimicrobial resistance prediction2020-07-252024-07-2630TrueFalseFalseTruetp_awk_tool, kraken2, bcftools_consensus, mosdepth, EMBOSS: seqret84, tb_profiler_profile, qualimap_bamqc, samtools_stats, tb_variant_filter, tp_sed_tool, EMBOSS:%20seqret84, upload1, tbvcfreport, fastp, jbrowse, multiqc, jvarkit_wgscoverageplotter, snippy, fastqc, __FLATTEN__0564189972.9500000
Variant AnalysisMicrobial Variant Callinghttps://training.galaxyproject.org//topics/variant-analysis/tutorials/microbial-variants/tutorial.htmlGenomics, Sequence assembly, DNA polymorphism, Microbiology, Sequence analysis, Genetic variationGenome visualisation, Variant calling, Phylogenetic tree generation, Phylogenetic tree visualisation2018-02-262024-03-1523TrueFalseFalseTruejbrowse, snippyUseGalaxy.eu, UseGalaxy.org (Main)GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au012166203222.0000000
+ +
\ No newline at end of file diff --git a/communities/microgalaxy/resources/tutorials.tsv b/communities/microgalaxy/resources/tutorials.tsv new file mode 100644 index 00000000..3b1e593f --- /dev/null +++ b/communities/microgalaxy/resources/tutorials.tsv @@ -0,0 +1,50 @@ +Topic Title Link EDAM topic EDAM operation Creation Last modification Version Tutorial Slides Video Workflows Tools Servers with precise tool versions Servers with tool but different versions Feedback number Feedback mean note Visitors Page views Visit duration Video views +Assembly Assembly of metagenomic sequencing data https://training.galaxyproject.org//topics/assembly/tutorials/metagenomics-assembly/tutorial.html Metagenomics, Sequence assembly Visualisation, Sequencing quality control, Primer removal, Sequence file editing, Formatting, Read mapping, Sequence assembly validation, Sequence composition calculation, Sequence assembly visualisation, Local alignment, Genome assembly, Sequence trimming, Statistical calculation, Sequence contamination filtering, Sequence alignment analysis, Read pre-processing, Data handling, Variant calling 2024-08-18 2024-08-18 0 True False False True bg_uniq, megahit_contig2fastg, ngsutils_bam_filter, megahit, bowtie2, tp_cat, quast, random_lines1, collection_column_join, filter_tabular, seqtk_subseq, fastqc, bandage_info, coverm_contig, bandage_image, bamtools, cutadapt, metaspades UseGalaxy.cz, UseGalaxy.eu 0 2 2 0.1 0 +Assembly Genome Assembly of MRSA from Oxford Nanopore MinION data (and optionally Illumina data) https://training.galaxyproject.org//topics/assembly/tutorials/mrsa-nanopore/tutorial.html Sequence assembly, Whole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Antimicrobial Resistance Visualisation, Sequencing quality control, Sequence contamination filtering, Genome assembly, De-novo assembly, Sequence alignment, Box-Whisker plot plotting, Sequence assembly validation, Sequence composition calculation, Read mapping, Scatter plot plotting, Mapping assembly, Sequencing error detection, Sequence assembly visualisation, Cross-assembly, Filtering, Statistical calculation 2021-03-24 2024-03-13 14 True False False True nanoplot, fastp, CONVERTER_bz2_to_uncompressed, filtlong, flye, bwa_mem2, quast, fastqc, polypolish, bandage_image, upload1, porechop UseGalaxy.eu UseGalaxy.cz 0 6851 10571 3.433333333333333 0 +Assembly Genome Assembly of a bacterial genome (MRSA) sequenced using Illumina MiSeq Data https://training.galaxyproject.org//topics/assembly/tutorials/mrsa-illumina/tutorial.html Sequence assembly, Whole genome sequencing, Public health and epidemiology, Genomics, Microbiology Visualisation, Sequencing quality control, Sequence contamination filtering, Sequence assembly validation, Sequence composition calculation, Sequence assembly visualisation, Genome assembly, Statistical calculation 2021-03-24 2024-03-13 14 True False False True fastp, shovill, quast, fastqc, bandage_info, bandage_image, upload1 UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr, UseGalaxy.org (Main) Galaxy@AuBi, GalaxyTrakr, UseGalaxy.no 0 6432 10369 3.75 0 +Assembly Making sense of a newly assembled genome https://training.galaxyproject.org//topics/assembly/tutorials/ecoli_comparison/tutorial.html Sequence assembly, Genomics, Microbiology Genome visualisation, Sequence alignment, Mapping, Read mapping, Sequence visualisation 2018-06-14 2024-06-24 29 True False False True circos, lastz_wrapper_2, random_lines1, Cut1, circos_interval_to_tiles, addValue, collapse_dataset, Grep1, datamash_ops, bedtools_sortbed, tp_sort_header_tool, bedtools_complementbed, tp_replace_in_column, circos_aln_to_links, cat1, tp_cat, fasta_filter_by_length, Filter1, tp_sed_tool, fasta_compute_length, tp_replace_in_line, join1, upload1, jbrowse, bedtools_intersectbed, tp_grep_tool, mergeCols1 0 5938 12067 3.033333333333333 0 +Assembly Unicycler Assembly https://training.galaxyproject.org//topics/assembly/tutorials/unicycler-assembly/tutorial.html Sequence assembly, Genomics, Microbiology Visualisation, Sequencing quality control, Genome annotation, Sequence assembly validation, Sequence composition calculation, Coding region prediction, Validation, Genome assembly, Gene prediction, Statistical calculation, Aggregation 2017-10-11 2024-03-13 23 True True False True multiqc, quast, prokka, fastqc, unicycler UseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.au GalaxyTrakr, HyPhy HIV NGS Tools, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no 0 2074750 5746521 4.55 0 +Ecology Checking expected species and contamination in bacterial isolate https://training.galaxyproject.org//topics/ecology/tutorials/bacterial-isolate-species-contamination-checking/tutorial.html Whole genome sequencing, Genomics, Microbiology, Microbial ecology Cross-assembly, Taxonomic classification, Expression analysis, Statistical calculation 2024-03-04 2024-06-27 4 True False False True est_abundance, upload1, kraken2, recentrifuge UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.org (Main) 0 229 302 3.95 0 +Evolution Identifying tuberculosis transmission links: from SNPs to transmission clusters https://training.galaxyproject.org//topics/evolution/tutorials/mtb_transmission/tutorial.html Genomics, Microbiology, Infectious disease, DNA polymorphism Variant calling, Phylogenetic tree visualisation, Phylogenetic tree generation, Antimicrobial resistance prediction 2022-03-16 2024-07-12 12 True False False True Grep1, bcftools_consensus, tb_variant_filter, upload1, samtools_view, snp_sites, tb_profiler_profile, tp_grep_tool, tp_cat, snippy, tp_easyjoin_tool, addName, tp_sed_tool, tp_replace_in_line, snp_dists, collapse_dataset, __MERGE_COLLECTION__, trimmomatic UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main) 0 1533 2414 3.1333333333333333 0 +Evolution Tree thinking for tuberculosis evolution and epidemiology https://training.galaxyproject.org//topics/evolution/tutorials/mtb_phylogeny/tutorial.html Genomics, Microbiology, Phylogeny, Infectious disease Sequence analysis, Phylogenetic tree analysis 2022-03-16 2024-03-12 11 True False False True interactive_tool_rstudio, upload1, raxml UseGalaxy.eu UseGalaxy.fr, UseGalaxy.org (Main) 0 1308 1983 2.183333333333333 0 +Genome Annotation Genome annotation with Prokka https://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.html Genomics, Microbiology, Gene and protein families, Sequence analysis Genome visualisation, Genome annotation, Gene prediction, Coding region prediction 2018-03-06 2024-08-08 25 True True True True prokka, jbrowse UseGalaxy.eu, UseGalaxy.org (Main) Galaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 0 2079352 5754405 4.333333333333333 0 +Genome Annotation Refining Genome Annotations with Apollo (prokaryotes) https://training.galaxyproject.org//topics/genome-annotation/tutorials/apollo/tutorial.html Genomics, Microbiology, Gene and protein families, Sequence analysis Genome visualisation 2021-06-04 2024-08-08 20 True True True True jbrowse, create_or_update, list_organism, iframe, create_account UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.no 0 1836817 4949160 4.95 0 +Genome Annotation Identification of AMR genes in an assembled bacterial genome https://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.html Whole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Sequence analysis, Infectious disease, Antimicrobial Resistance Genome visualisation, Genome annotation, Read mapping 2024-01-23 2024-03-13 5 True False False True Grep1, jbrowse, bowtie2, tbl2gff3, bakta, staramr_search, upload1 UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi 0 967 1368 2.933333333333333 0 +Genome Annotation Bacterial Genome Annotation https://training.galaxyproject.org//topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.html Genomics, Microbiology, Gene and protein families, Sequence analysis, Whole genome sequencing, Functional genomics, Mobile genetic elements Genome assembly, Sequence motif recognition, Genome annotation, Nucleic acid feature detection, Structural variation detection, Multilocus sequence typing, Genome visualisation, Protein feature detection, Scaffolding 2024-02-01 2024-08-01 4 True False False True Grouping1, jbrowse, upload1, integron_finder, isescan, tp_tail_tool, plasmidfinder, tbl2gff3, bakta, tp_replace_in_column UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi, UseGalaxy.cz 0 1800 2378 2.3333333333333335 0 +Genome Annotation Comparative gene analysis in unannotated genomes https://training.galaxyproject.org//topics/genome-annotation/tutorials/gene-centric/tutorial.html Genomics, Gene and protein families, Sequence analysis, Phylogeny Multiple sequence alignment, Database search, Transcriptome assembly, Coding region prediction, De-novo assembly, Sequence alignment analysis, Phylogenetic tree generation 2022-09-08 2024-03-18 8 True False False True tab2fasta, cat1, orfipy, Add_a_column1, rbc_mafft, rapidnj, bg_diamond_view, regexColumn1, Cut1, bg_diamond_makedb, Filter1, bg_diamond, tp_split_on_column, join1, gops_intersect_1, collapse_dataset UseGalaxy.eu, UseGalaxy.org (Main) UseGalaxy.cz 0 974 1476 3.1 0 +Genome Annotation Essential genes detection with Transposon insertion sequencing https://training.galaxyproject.org//topics/genome-annotation/tutorials/tnseq/tutorial.html Genomics, Microbiology, Sequence analysis, Mobile genetic elements Transposon prediction, Primer removal, Sequence trimming, Read pre-processing 2019-07-02 2024-03-18 12 True True False True transit_gumbel, Add_a_column1, deeptools_bam_coverage, tp_easyjoin_tool, bg_find_subsequences, Cut1, Filter1, tp_sort_header_tool, bowtie_wrapper, gff_to_prot, cutadapt, __EXTRACT_DATASET__ UseGalaxy.no, UseGalaxy.org.au UseGalaxy.cz, UseGalaxy.eu 0 2070408 5739476 4.25 0 +Genome Annotation Genome annotation with Prokka https://training.galaxyproject.org//topics/genome-annotation/tutorials/annotation-with-prokka/tutorial.html Genomics, Microbiology, Gene and protein families, Sequence analysis Genome visualisation, Genome annotation, Gene prediction, Coding region prediction 2018-03-06 2024-08-08 25 True True True True prokka, jbrowse UseGalaxy.eu, UseGalaxy.org (Main) Galaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 0 2079352 5754405 4.333333333333333 0 +Assembly Genome Assembly of MRSA from Oxford Nanopore MinION data (and optionally Illumina data) https://training.galaxyproject.org//topics/assembly/tutorials/mrsa-nanopore/tutorial.html Sequence assembly, Whole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Antimicrobial Resistance Visualisation, Sequencing quality control, Sequence contamination filtering, Genome assembly, De-novo assembly, Sequence alignment, Box-Whisker plot plotting, Sequence assembly validation, Sequence composition calculation, Read mapping, Scatter plot plotting, Mapping assembly, Sequencing error detection, Sequence assembly visualisation, Cross-assembly, Filtering, Statistical calculation 2021-03-24 2024-03-13 14 True False False True nanoplot, fastp, CONVERTER_bz2_to_uncompressed, filtlong, flye, bwa_mem2, quast, fastqc, polypolish, bandage_image, upload1, porechop UseGalaxy.eu UseGalaxy.cz 0 6851 10571 3.433333333333333 0 +Assembly Making sense of a newly assembled genome https://training.galaxyproject.org//topics/assembly/tutorials/ecoli_comparison/tutorial.html Sequence assembly, Genomics, Microbiology Genome visualisation, Sequence alignment, Mapping, Read mapping, Sequence visualisation 2018-06-14 2024-06-24 29 True False False True circos, lastz_wrapper_2, random_lines1, Cut1, circos_interval_to_tiles, addValue, collapse_dataset, Grep1, datamash_ops, bedtools_sortbed, tp_sort_header_tool, bedtools_complementbed, tp_replace_in_column, circos_aln_to_links, cat1, tp_cat, fasta_filter_by_length, Filter1, tp_sed_tool, fasta_compute_length, tp_replace_in_line, join1, upload1, jbrowse, bedtools_intersectbed, tp_grep_tool, mergeCols1 0 5938 12067 3.033333333333333 0 +Variant Analysis Microbial Variant Calling https://training.galaxyproject.org//topics/variant-analysis/tutorials/microbial-variants/tutorial.html Genomics, Sequence assembly, DNA polymorphism, Microbiology, Sequence analysis, Genetic variation Genome visualisation, Variant calling, Phylogenetic tree generation, Phylogenetic tree visualisation 2018-02-26 2024-03-15 23 True False False True jbrowse, snippy UseGalaxy.eu, UseGalaxy.org (Main) GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 0 12166 20322 2.0 0 +Genome Annotation Refining Genome Annotations with Apollo (prokaryotes) https://training.galaxyproject.org//topics/genome-annotation/tutorials/apollo/tutorial.html Genomics, Microbiology, Gene and protein families, Sequence analysis Genome visualisation 2021-06-04 2024-08-08 20 True True True True jbrowse, create_or_update, list_organism, iframe, create_account UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.no 0 1836817 4949160 4.95 0 +Genome Annotation Identification of AMR genes in an assembled bacterial genome https://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.html Whole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Sequence analysis, Infectious disease, Antimicrobial Resistance Genome visualisation, Genome annotation, Read mapping 2024-01-23 2024-03-13 5 True False False True Grep1, jbrowse, bowtie2, tbl2gff3, bakta, staramr_search, upload1 UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi 0 967 1368 2.933333333333333 0 +Genome Annotation Bacterial Genome Annotation https://training.galaxyproject.org//topics/genome-annotation/tutorials/bacterial-genome-annotation/tutorial.html Genomics, Microbiology, Gene and protein families, Sequence analysis, Whole genome sequencing, Functional genomics, Mobile genetic elements Genome assembly, Sequence motif recognition, Genome annotation, Nucleic acid feature detection, Structural variation detection, Multilocus sequence typing, Genome visualisation, Protein feature detection, Scaffolding 2024-02-01 2024-08-01 4 True False False True Grouping1, jbrowse, upload1, integron_finder, isescan, tp_tail_tool, plasmidfinder, tbl2gff3, bakta, tp_replace_in_column UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi, UseGalaxy.cz 0 1800 2378 2.3333333333333335 0 +Microbiome Analyses of metagenomics data - The global picture https://training.galaxyproject.org//topics/microbiome/tutorials/general-tutorial/tutorial.html Metagenomics, Microbial ecology, Taxonomy, Sequence analysis Visualisation, Sequencing quality control, Phylogenetic analysis, Taxonomic classification, Sequence read processing, DNA barcoding, Sequence clustering 2017-06-22 2024-08-09 4 True False False True mothur_cluster_split, mothur_count_seqs, mothur_classify_otu, mothur_merge_files, mothur_pre_cluster, humann2_regroup_table, mothur_make_biom, mothur_make_group, mothur_screen_seqs, mothur_unique_seqs, mothur_summary_seqs, metaphlan2, humann2, krona-text, mothur_make_shared, taxonomy_krona_chart, mothur_align_seqs, humann2_renorm_table, mothur_classify_seqs, mothur_filter_seqs, metaphlan2krona UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 0 3013 4081 2.75 0 +Microbiome Antibiotic resistance detection https://training.galaxyproject.org//topics/microbiome/tutorials/plasmid-metagenomics-nanopore/tutorial.html Metagenomic sequencing, Public health and epidemiology, Metagenomics, Microbiology, Infectious disease, Sequence analysis, Antimicrobial Resistance De-novo assembly, Sequence analysis, Box-Whisker plot plotting, Pairwise sequence alignment, Scatter plot plotting, Mapping assembly, Sequence assembly visualisation, Genome assembly, Aggregation 2019-06-25 2024-06-14 4 True False False True nanoplot, gfa_to_fa, racon, PlasFlow, miniasm, minimap2, staramr_search, bandage_image, unicycler UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au 0 1130 1752 4.016666666666667 0 +Microbiome Taxonomic Profiling and Visualization of Metagenomic Data https://training.galaxyproject.org//topics/microbiome/tutorials/taxonomic-profiling/tutorial.html Metagenomics, Microbial ecology, Taxonomy, Sequence analysis Visualisation, Nucleic acid sequence analysis, Taxonomic classification, Phylogenetic tree analysis, Statistical calculation, Aggregation 2023-05-03 2024-06-14 4 True False False True est_abundance, krakentools_kreport2krona, __UNZIP_COLLECTION__, interactive_tool_phinch, taxonomy_krona_chart, interactive_tool_pavian, kraken2, metaphlan, kraken_biom UseGalaxy.eu UseGalaxy.fr, UseGalaxy.org.au 0 3655 4993 1.95 0 +Microbiome Assembly of metagenomic sequencing data https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-assembly/tutorial.html Metagenomics, Sequence assembly Visualisation, Sequencing quality control, Primer removal, Sequence file editing, Formatting, Read mapping, Sequence assembly validation, Sequence composition calculation, Sequence assembly visualisation, Local alignment, Genome assembly, Sequence trimming, Statistical calculation, Sequence contamination filtering, Sequence alignment analysis, Read pre-processing, Data handling, Variant calling 2022-12-05 2024-06-14 4 True False False True bg_uniq, megahit_contig2fastg, ngsutils_bam_filter, megahit, bowtie2, tp_cat, quast, random_lines1, collection_column_join, filter_tabular, seqtk_subseq, fastqc, bandage_info, coverm_contig, bandage_image, bamtools, cutadapt, metaspades UseGalaxy.cz, UseGalaxy.eu 0 1376 1931 2.533333333333333 0 +Microbiome Building an amplicon sequence variant (ASV) table from 16S data using DADA2 https://training.galaxyproject.org//topics/microbiome/tutorials/dada-16S/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Visualisation, Analysis, Variant calling, DNA barcoding, Deposition 2024-06-05 2024-08-09 7 True False False True __UNZIP_COLLECTION__, phyloseq_from_dada2, interactive_tool_phyloseq, dada2_filterAndTrim, Grouping1, __SORTLIST__, dada2_learnErrors, dada2_dada, dada2_plotQualityProfile, tp_replace_in_column, dada2_removeBimeraDenovo, cat1, dada2_assignTaxonomyAddspecies, dada2_mergePairs, dada2_makeSequenceTable, collection_element_identifiers, dada2_seqCounts, tp_replace_in_line, Add_a_column1, tp_head_tool UseGalaxy.eu 0 614 840 2.066666666666667 0 +Microbiome Pathogen detection from (direct Nanopore) sequencing data using Galaxy - Foodborne Edition https://training.galaxyproject.org//topics/microbiome/tutorials/pathogen-detection-from-nanopore-foodborne-data/tutorial.html Metagenomics, Public health and epidemiology, Taxonomy, Sequence assembly, Pathology, Sequence analysis Visualisation, Sequencing quality control, Sequence composition calculation, Taxonomic classification, Phylogenetic tree generation (maximum likelihood and Bayesian methods), Phylogenetic tree generation, Phylogenetic tree generation (from molecular sequences), Pairwise sequence alignment, Sequence assembly visualisation, Multilocus sequence typing, Cross-assembly, Genome assembly, Base-calling, Validation, Sequence assembly, Statistical calculation, Phylogenetic tree reconstruction, Sequence contamination filtering, De-novo assembly, Mapping, Box-Whisker plot plotting, Phylogenetic tree analysis, Sequence alignment analysis, Scatter plot plotting, Mapping assembly, Multiple sequence alignment, Data handling, Variant calling, Antimicrobial resistance prediction, Aggregation 2023-01-26 2024-07-26 9 True False False True __BUILD_LIST__, __FILTER_FAILED_DATASETS__, abricate, newick_display, krakentools_extract_kraken_reads, Count1, Cut1, snpSift_extractFields, kraken2, table_compute, fasta2tab, Remove beginning1, fasttree, add_line_to_file, collapse_dataset, Grep1, Grouping1, bcftools_consensus, bcftools_norm, ggplot2_heatmap, collection_column_join, clair3, tp_sorted_uniq, fasta_merge_files_and_filter_unique_sequences, tp_replace_in_column, CONVERTER_gz_to_uncompressed, regex1, porechop, tab2fasta, __FILTER_EMPTY_DATASETS__, taxonomy_krona_chart, tp_find_and_replace, tp_cut_tool, Paste1, flye, mlst, bedtools_getfastabed, collection_element_identifiers, bandage_image, tp_split_on_column, clustalw, regexColumn1, medaka_consensus_pipeline, samtools_coverage, krakentools_kreport2krona, barchart_gnuplot, nanoplot, param_value_from_file, compose_text_param, fastp, tp_multijoin_tool, multiqc, samtools_fastx, bamtools_split_mapped, snpSift_filter, samtools_depth, fastqc, minimap2, split_file_to_collection, Add_a_column1, tp_head_tool UseGalaxy.eu 0 1680 2521 3.0166666666666666 0 +Microbiome 16S Microbial analysis with Nanopore data https://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Visualisation, Sequencing quality control, Sequence contamination filtering, Validation, Sequence composition calculation, Taxonomic classification, Statistical calculation 2020-11-24 2024-07-31 5 True False False True fastp, multiqc, taxonomy_krona_chart, fastqc, kraken2, tp_replace_in_line, Remove beginning1, datamash_reverse, porechop UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au GalaxyTrakr, UseGalaxy.cz 0 2344 3314 2.8 0 +Microbiome Identification of the micro-organisms in a beer using Nanopore sequencing https://training.galaxyproject.org//topics/microbiome/tutorials/beer-data-analysis/tutorial.html Metagenomics, Microbial ecology, Taxonomy, Sequence analysis Visualisation, Sequencing quality control, Sequence contamination filtering, Sequence composition calculation, Taxonomic classification, Statistical calculation, Aggregation 2022-09-29 2024-06-14 4 True False False True fastp, taxonomy_krona_chart, fastqc, kraken2, Filter1, porechop, krakentools_kreport2krona GalaxyTrakr, UseGalaxy.eu, UseGalaxy.org (Main), UseGalaxy.org.au UseGalaxy.cz 0 1103 1743 2.816666666666667 0 +Microbiome Metatranscriptomics analysis using microbiome RNA-seq data https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics/tutorial.html Metatranscriptomics, Microbial ecology, Taxonomy, Function analysis, Sequence analysis Visualisation, Primer removal, Sequencing quality control, Sequence similarity search, Phylogenetic analysis, Taxonomic classification, Nucleic acid sequence analysis, Sequence composition calculation, Phylogenetic inference, Validation, Sequence trimming, Conversion, Statistical calculation, Species frequency estimation, Phylogenetic tree editing, Sequence comparison, Phylogenetic tree analysis, Sequence alignment analysis, Read pre-processing, Phylogenetic tree visualisation 2019-11-21 2024-06-14 4 True True False True humann_rename_table, Cut1, graphlan_annotate, humann_regroup_table, metaphlan, Grep1, export2graphlan, bg_sortmerna, humann_split_stratified_table, graphlan, fastq_paired_end_interlacer, combine_metaphlan2_humann2, taxonomy_krona_chart, tp_find_and_replace, humann_unpack_pathways, cutadapt, humann, multiqc, fastqc, humann_renorm_table UseGalaxy.org (Main) UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 2066154 5729924 4.133333333333334 0 +Microbiome Metatranscriptomics analysis using microbiome RNA-seq data (short) https://training.galaxyproject.org//topics/microbiome/tutorials/metatranscriptomics-short/tutorial.html Metatranscriptomics, Microbial ecology, Taxonomy, Function analysis, Sequence analysis Visualisation, Primer removal, Sequencing quality control, Sequence similarity search, Phylogenetic analysis, Taxonomic classification, Nucleic acid sequence analysis, Sequence composition calculation, Phylogenetic inference, Validation, Sequence trimming, Conversion, Statistical calculation, Species frequency estimation, Phylogenetic tree editing, Sequence comparison, Phylogenetic tree analysis, Sequence alignment analysis, Read pre-processing, Phylogenetic tree visualisation 2020-02-13 2024-06-14 4 True False False True humann_rename_table, Cut1, graphlan_annotate, humann_regroup_table, metaphlan, Grep1, export2graphlan, bg_sortmerna, humann_split_stratified_table, graphlan, fastq_paired_end_interlacer, combine_metaphlan2_humann2, taxonomy_krona_chart, tp_find_and_replace, humann_unpack_pathways, cutadapt, humann, multiqc, fastqc, humann_renorm_table UseGalaxy.org (Main) UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 234 297 1.6666666666666667 0 +Microbiome Binning of metagenomic sequencing data https://training.galaxyproject.org//topics/microbiome/tutorials/metagenomics-binning/tutorial.html Metagenomics, Sequence assembly Sequencing quality control, Validation, Genome assembly, Sequence assembly validation, Statistical calculation, Sequence composition calculation 2023-12-05 2024-03-14 3 True False False False megahit, checkm_lineage_wf GalaxyTrakr, UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr 0 1648 1997 1.4833333333333334 0 +Microbiome QIIME 2 Moving Pictures https://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-moving-pictures/tutorial.html Microbial ecology, Taxonomy, Sequence analysis 2024-03-14 2024-03-14 1 external False False False UseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr 0 112 171 3.816666666666667 0 +Microbiome QIIME 2 Cancer Microbiome Intervention https://training.galaxyproject.org//topics/microbiome/tutorials/qiime2-cancer-microbiome-intervention/tutorial.html Microbial ecology, Taxonomy, Sequence analysis 2024-02-12 2024-03-14 3 external False False False UseGalaxy.eu, UseGalaxy.org, UseGalaxy.org.au, UseGalaxy.fr 0 119 220 2.716666666666667 0 +Microbiome 16S Microbial Analysis with mothur (short) https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop-short/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Visualisation, Sequencing quality control, Phylogenetic analysis, Taxonomic classification, Phylogenetic tree analysis, Phylogenetic tree generation, Sequence read processing, DNA barcoding, Sequence clustering, Phylogenetic tree reconstruction 2019-05-13 2024-06-14 5 True False False True mothur_remove_lineage, mothur_cluster_split, mothur_count_seqs, mothur_dist_shared, mothur_sub_sample, mothur_classify_otu, newick_display, mothur_chimera_vsearch, mothur_venn, mothur_pre_cluster, XY_Plot_1, mothur_rarefaction_single, collapse_dataset, mothur_screen_seqs, mothur_unique_seqs, mothur_count_groups, mothur_heatmap_sim, mothur_summary_seqs, mothur_tree_shared, mothur_remove_groups, mothur_make_shared, mothur_summary_single, mothur_cluster, mothur_classify_seqs, mothur_dist_seqs, mothur_filter_seqs, mothur_remove_seqs UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au UseGalaxy.cz, UseGalaxy.fr 0 1744 3211 5.733333333333333 0 +Microbiome 16S Microbial Analysis with mothur (extended) https://training.galaxyproject.org//topics/microbiome/tutorials/mothur-miseq-sop/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Visualisation, Sequencing quality control, Phylogenetic analysis, Taxonomic classification, Phylogenetic tree analysis, Phylogenetic tree generation, Sequence read processing, DNA barcoding, Sequence clustering, Phylogenetic tree reconstruction 2017-02-12 2024-03-14 4 True False False True mothur_remove_lineage, mothur_cluster_split, mothur_count_seqs, mothur_dist_shared, mothur_make_contigs, mothur_classify_otu, mothur_sub_sample, mothur_taxonomy_to_krona, mothur_chimera_vsearch, newick_display, mothur_venn, mothur_pre_cluster, XY_Plot_1, mothur_rarefaction_single, mothur_make_biom, mothur_screen_seqs, mothur_unique_seqs, mothur_count_groups, mothur_heatmap_sim, mothur_summary_seqs, mothur_tree_shared, mothur_remove_groups, mothur_make_shared, taxonomy_krona_chart, mothur_summary_single, mothur_cluster, mothur_seq_error, mothur_align_seqs, mothur_classify_seqs, mothur_get_groups, mothur_dist_seqs, mothur_filter_seqs, mothur_remove_seqs UseGalaxy.eu UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au 0 4695 7229 2.9833333333333334 0 +Variant Analysis M. tuberculosis Variant Analysis https://training.galaxyproject.org//topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.html Genomics, Microbiology, Sequence assembly, Genetic variation, Public health and epidemiology, Infectious disease Global alignment, Sequencing quality control, Sequence contamination filtering, Sequence alignment, Sequence analysis, Sequence composition calculation, Sequence alignment analysis, Taxonomic classification, Phylogenetic tree generation, Variant calling, Local alignment, Phylogenetic tree visualisation, Validation, Genome visualisation, Statistical calculation, Antimicrobial resistance prediction 2020-07-25 2024-07-26 30 True False False True tp_awk_tool, kraken2, bcftools_consensus, mosdepth, EMBOSS: seqret84, tb_profiler_profile, qualimap_bamqc, samtools_stats, tb_variant_filter, tp_sed_tool, EMBOSS:%20seqret84, upload1, tbvcfreport, fastp, jbrowse, multiqc, jvarkit_wgscoverageplotter, snippy, fastqc, __FLATTEN__ 0 5641 8997 2.95 0 +Genome Annotation Identification of AMR genes in an assembled bacterial genome https://training.galaxyproject.org//topics/genome-annotation/tutorials/amr-gene-detection/tutorial.html Whole genome sequencing, Public health and epidemiology, Genomics, Microbiology, Sequence analysis, Infectious disease, Antimicrobial Resistance Genome visualisation, Genome annotation, Read mapping 2024-01-23 2024-03-13 5 True False False True Grep1, jbrowse, bowtie2, tbl2gff3, bakta, staramr_search, upload1 UseGalaxy.cz, UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi 0 967 1368 2.933333333333333 0 +Evolution Identifying tuberculosis transmission links: from SNPs to transmission clusters https://training.galaxyproject.org//topics/evolution/tutorials/mtb_transmission/tutorial.html Genomics, Microbiology, Infectious disease, DNA polymorphism Variant calling, Phylogenetic tree visualisation, Phylogenetic tree generation, Antimicrobial resistance prediction 2022-03-16 2024-07-12 12 True False False True Grep1, bcftools_consensus, tb_variant_filter, upload1, samtools_view, snp_sites, tb_profiler_profile, tp_grep_tool, tp_cat, snippy, tp_easyjoin_tool, addName, tp_sed_tool, tp_replace_in_line, snp_dists, collapse_dataset, __MERGE_COLLECTION__, trimmomatic UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org (Main) 0 1533 2414 3.1333333333333333 0 +Evolution Tree thinking for tuberculosis evolution and epidemiology https://training.galaxyproject.org//topics/evolution/tutorials/mtb_phylogeny/tutorial.html Genomics, Microbiology, Phylogeny, Infectious disease Sequence analysis, Phylogenetic tree analysis 2022-03-16 2024-03-12 11 True False False True interactive_tool_rstudio, upload1, raxml UseGalaxy.eu UseGalaxy.fr, UseGalaxy.org (Main) 0 1308 1983 2.183333333333333 0 +Microbiome 16S Microbial analysis with Nanopore data https://training.galaxyproject.org//topics/microbiome/tutorials/nanopore-16S-metagenomics/tutorial.html Microbial ecology, Taxonomy, Sequence analysis Visualisation, Sequencing quality control, Sequence contamination filtering, Validation, Sequence composition calculation, Taxonomic classification, Statistical calculation 2020-11-24 2024-07-31 5 True False False True fastp, multiqc, taxonomy_krona_chart, fastqc, kraken2, tp_replace_in_line, Remove beginning1, datamash_reverse, porechop UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au GalaxyTrakr, UseGalaxy.cz 0 2344 3314 2.8 0 +Proteomics metaQuantome 2: Function https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-function/tutorial.html Proteomics, Proteogenomics, Metatranscriptomics, Microbial ecology, Metagenomics Visualisation, Differential protein expression analysis, Functional clustering, Query and retrieval, Indexing, Filtering, Heat map generation, Statistical inference, Principal component visualisation, Quantification 2020-10-29 2024-03-15 14 True False False True metaquantome_db, metaquantome_sample, metaquantome_stat, metaquantome_expand, metaquantome_filter, metaquantome_viz UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 348 504 3.8 0 +Proteomics metaQuantome 3: Taxonomy https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-taxonomy/tutorial.html Proteomics, Proteogenomics, Metatranscriptomics, Microbial ecology, Metagenomics, Taxonomy Visualisation, Differential protein expression analysis, Functional clustering, Query and retrieval, Indexing, Filtering, Heat map generation, Statistical inference, Principal component visualisation, Quantification 2020-10-29 2024-03-15 14 True False False True metaquantome_db, metaquantome_sample, metaquantome_stat, metaquantome_expand, metaquantome_filter, metaquantome_viz UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 371 502 2.6333333333333333 0 +Proteomics metaQuantome 1: Data creation https://training.galaxyproject.org//topics/proteomics/tutorials/metaquantome-data-creation/tutorial.html Proteomics, Proteogenomics, Biodiversity, Taxonomy Visualisation, Label-free quantification, Filtering, Formatting, Prediction and recognition 2020-10-16 2024-03-14 20 True False False True Grep1, msconvert, peptide_shaker, search_gui, Cut1, unipept, Filter1, query_tabular, tp_replace_in_line, Remove beginning1, regex1, flashlfq, tp_replace_in_column UseGalaxy.eu UseGalaxy.cz, UseGalaxy.no, UseGalaxy.org.au 0 773 1343 3.8 0 +Proteomics Metaproteomics tutorial https://training.galaxyproject.org//topics/proteomics/tutorials/metaproteomics/tutorial.html Proteomics, Proteogenomics, Biodiversity, Taxonomy Visualisation, Prediction and recognition 2017-06-28 2024-06-14 41 True False False True sqlite_to_tabular, peptide_shaker, search_gui, unipept, query_tabular UseGalaxy.eu, UseGalaxy.no, UseGalaxy.org (Main), UseGalaxy.org.au UseGalaxy.cz 0 2256 3750 2.6166666666666667 0 +Sequence analysis Quality and contamination control in bacterial isolate using Illumina MiSeq Data https://training.galaxyproject.org//topics/sequence-analysis/tutorials/quality-contamination-control/tutorial.html Whole genome sequencing, Genomics, Microbiology, Microbial ecology Sequencing quality control, Sequence contamination filtering, Cross-assembly, Sequence composition calculation, Taxonomic classification, Expression analysis, Statistical calculation 2024-07-15 2024-07-15 1 True False False True fastp, est_abundance, fastqc, kraken2, recentrifuge, upload1 UseGalaxy.eu, UseGalaxy.fr Galaxy@AuBi, GalaxyTrakr, UseGalaxy.cz, UseGalaxy.org (Main) 0 61 76 3.8833333333333333 0 +Variant Analysis Calling variants in non-diploid systems https://training.galaxyproject.org//topics/variant-analysis/tutorials/non-dip/tutorial.html Genomics, Sequence assembly, DNA polymorphism, Microbiology, Sequence analysis, Genetic variation Sequencing quality control, Genome indexing, Sequence alignment, Formatting, Sequence composition calculation, Sequence alignment analysis, Read mapping, Generation, Data handling, Variant calling, Statistical calculation 2017-02-16 2024-03-15 23 True False False True picard_MarkDuplicates, freebayes, vcf2tsv, picard_MergeSamFiles, vcffilter2, bamFilter, Cut1, fastqc, bamleftalign, bwa_mem UseGalaxy.eu, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org (Main) UseGalaxy.cz, UseGalaxy.org.au 0 7035 13427 2.05 0 +Variant Analysis M. tuberculosis Variant Analysis https://training.galaxyproject.org//topics/variant-analysis/tutorials/tb-variant-analysis/tutorial.html Genomics, Microbiology, Sequence assembly, Genetic variation, Public health and epidemiology, Infectious disease Global alignment, Sequencing quality control, Sequence contamination filtering, Sequence alignment, Sequence analysis, Sequence composition calculation, Sequence alignment analysis, Taxonomic classification, Phylogenetic tree generation, Variant calling, Local alignment, Phylogenetic tree visualisation, Validation, Genome visualisation, Statistical calculation, Antimicrobial resistance prediction 2020-07-25 2024-07-26 30 True False False True tp_awk_tool, kraken2, bcftools_consensus, mosdepth, EMBOSS: seqret84, tb_profiler_profile, qualimap_bamqc, samtools_stats, tb_variant_filter, tp_sed_tool, EMBOSS:%20seqret84, upload1, tbvcfreport, fastp, jbrowse, multiqc, jvarkit_wgscoverageplotter, snippy, fastqc, __FLATTEN__ 0 5641 8997 2.95 0 +Variant Analysis Microbial Variant Calling https://training.galaxyproject.org//topics/variant-analysis/tutorials/microbial-variants/tutorial.html Genomics, Sequence assembly, DNA polymorphism, Microbiology, Sequence analysis, Genetic variation Genome visualisation, Variant calling, Phylogenetic tree generation, Phylogenetic tree visualisation 2018-02-26 2024-03-15 23 True False False True jbrowse, snippy UseGalaxy.eu, UseGalaxy.org (Main) GalaxyTrakr, UseGalaxy.cz, UseGalaxy.fr, UseGalaxy.no, UseGalaxy.org.au 0 12166 20322 2.0 0 diff --git a/data/communities/spoc/categories b/communities/spoc/metadata/categories similarity index 100% rename from data/communities/spoc/categories rename to communities/spoc/metadata/categories diff --git a/communities/spoc/resources/index.html b/communities/spoc/resources/index.html new file mode 100644 index 00000000..4eb38539 --- /dev/null +++ b/communities/spoc/resources/index.html @@ -0,0 +1,59 @@ + + + + + + Simple HTML Page + + + +
+

SPOC ressources from the Galaxy Codex

+

Tools

+ + + +

Training

+ + +
+ + diff --git a/communities/spoc/resources/tools.html b/communities/spoc/resources/tools.html new file mode 100644 index 00000000..e65fd810 --- /dev/null +++ b/communities/spoc/resources/tools.html @@ -0,0 +1,7063 @@ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ExpandGalaxy wrapper idGalaxy tool idsDescriptionbio.tool idbio.tool idsbiiibio.tool namebio.tool descriptionEDAM operationEDAM topicStatusSourceToolShed categoriesToolShed idGalaxy wrapper ownerGalaxy wrapper sourceGalaxy wrapper parsed folderGalaxy wrapper versionConda idConda versionEDAM operation (no superclasses)EDAM topic (no superclasses)Available on UseGalaxy.org (Main)Available on UseGalaxy.org.auAvailable on UseGalaxy.euAvailable on UseGalaxy.frTools available on UseGalaxy.org (Main)Tools available on UseGalaxy.org.auTools available on UseGalaxy.euTools available on UseGalaxy.frTools available on ANASTASIATools available on APOSTLTools available on ARGs-OAPTools available on BF2I-MAPTools available on BioBixTools available on CIRM-CFBPTools available on Center for Phage Technology (CPT)Tools available on ChemFlowTools available on Coloc-statsTools available on CorGATTools available on CropGalaxyTools available on DintorTools available on FreeBioinfoTools available on GASLINITools available on Galaxy@AuBiTools available on Galaxy@PasteurTools available on GalaxyTrakrTools available on Genomic HyperbrowserTools available on GigaGalaxyTools available on HyPhy HIV NGS ToolsTools available on IPK Galaxy Blast SuiteTools available on ImmPort GalaxyTools available on InteractoMIXTools available on MISSISSIPPITools available on Mandoiu LabTools available on MiModD NacreousMapTools available on OqtansTools available on PalfinderTools available on PepSimiliTools available on PhagePromotorTools available on ProtologgerTools available on UseGalaxy.beTools available on UseGalaxy.czTools available on UseGalaxy.noNo. of tool users (2022-2023) (usegalaxy.eu)Total tool usage (usegalaxy.eu)Deprecated
aegeanaegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parsevalAEGeAn toolkit wrappersgaevalgaevalGAEVALGene Annotation EVAluation.Sequence annotationSequence analysis, Gene structureUp-to-datehttps://github.com/BrendelGroup/AEGeAnTranscriptomics, Sequence Analysisaegeaniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/aegeanhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean0.16.0aegean0.16.0Sequence annotationSequence analysis, Gene structure14441444000000000000000000000000000000004047168
anndataanndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loomImport, Export, Inspect and Manipulate Anndata and Loom objectsTo updatehttps://anndata.readthedocs.ioTranscriptomics, Sequence Analysisanndataiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata0.10.3anndata0.6.22.post154505450000000000000000000000000000000005562535620
arribaarriba, arriba_draw_fusions, arriba_get_filtersArriba detects fusion genes in RNA-Seq data after running RNA-STARUp-to-datehttps://github.com/suhrig/arribaSequence Analysis, Transcriptomicsarribaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/arribahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba2.4.0arriba2.4.0033003300000000000000000000000000000000030383528
askoraskor_deAskoR links EdgeR and AskOmicsTo updatehttps://github.com/askomics/askoRTranscriptomicsaskor_degenouesthttps://github.com/genouest/galaxy-tools/tree/master/tools/askorhttps://github.com/genouest/galaxy-tools/tree/master/tools/askor0.2bioconductor-limma3.58.100000000000000000000000000000000000000000000
bamparsebamparseGenerates hit count lists from bam alignments.To updatehttp://artbio.frRNA, Transcriptomicsbamparseartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/bamparsehttps://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse4.1.1pysam0.22.100000000000000000000000000000001000000000000
baredscbaredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2dbaredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data.baredscbaredscbaredSCThe baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data.Data retrieval, Expression correlation analysis, Differential gene expression profilingRNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probabilityUp-to-datehttps://github.com/lldelisle/baredSCTranscriptomics, Visualizationbaredsciuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/baredschttps://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc1.1.3baredsc1.1.3Data retrieval, Expression correlation analysis, Differential gene expression profilingRNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability404040400000000000000000000000000000000040071
bctoolsbctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_eventsbctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0Up-to-datehttps://github.com/dmaticzka/bctoolsSequence Analysis, Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtoolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools0.2.2bctools0.2.2007000700000000000000000000000000000000077872895
brew3r_rbrew3r_rExtend 3' end of a GTF using another GTF as a templateTo updatehttps://bioconductor.org/packages/release/bioc/html/BREW3R.r.htmlTranscriptomics, RNAbrew3r_riuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_rhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r1.0.210001000000000000000000000000000000000000000
cell-types-analysisct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvalsTools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysisTo updateTranscriptomics, RNA, Statisticssuite_cell_types_analysisebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis1.1.1cell-types-analysis0.1.1100600060000000000000000000000000000000000026
cemitoolcemitoolGene co-expression network analysis toolcemitoolcemitoolCEMiToolIt unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network.Enrichment analysis, Pathway or network analysisGene expression, Transcriptomics, Microarray experimentTo updatehttps://www.bioconductor.org/packages/release/bioc/html/CEMiTool.htmlTranscriptomics, RNA, Statisticscemitooliuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitoolhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool1.18.1bioconductor-cemitool1.26.0Enrichment analysis, Pathway or network analysisTranscriptomics, Microarray experiment101010100000000000000000000000000000000010998
cherricherri_eval, cherri_trainComputational Help Evaluating RNA-RNA interactionscherricherricherriCheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions.Molecular interactions, pathways and networks, Structure analysis, Machine learningTo updatehttps://github.com/BackofenLab/CherriTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cherrihttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri0.7cherri0.8Molecular interactions, pathways and networks, Structure analysis, Machine learning0020002000000000000000000000000000000000201207
chirachira_collapse, chira_extract, chira_map, chira_merge, chira_quantifyChimeric Read Annotator for RNA-RNA interactome datachirachiraChiRAChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc.RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNAUp-to-datehttps://github.com/pavanvidem/chiraRNA, Transcriptomics, Sequence Analysischiraiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/chirahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/chira1.4.3chira1.4.3Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA505050500000000000000000000000000000000055976418
cite_seq_countcite_seq_countCount CMO/HTOCITE-seq-CountCITE-seq-CountCITE-seq-CountTool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment.RNA-Seq quantificationTranscriptomics, Immunoproteins and antigensUp-to-datehttps://github.com/Hoohm/CITE-seq-CountTranscriptomicscite_seq_countiuchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_counthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count1.4.4cite-seq-count1.4.4RNA-Seq quantificationTranscriptomics, Immunoproteins and antigens101010100000000000000000000000000000000010118
cosgcosgMarker gene identification for single-cell sequencing data using COSG.Up-to-datehttps://github.com/genecell/COSGTranscriptomics, Sequence Analysiscosgiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg1.0.1cosg1.0.100000000000000000000000000000000000000000000
cpatcpatCoding-potential assessment tool using an alignment-free logistic regression model.Up-to-datehttps://github.com/liguowang/cpatTranscriptomicscpatbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/cpathttps://github.com/bgruening/galaxytools/tree/master/tools/cpat3.0.5cpat3.0.511111111000000000000000000000000000000001021134
cpm_tpm_rpkcpm_tpm_rpkGenerate CPM,TPM or RPK from raw countsTo updatehttp://artbio.frTranscriptomicscpm_tpm_rpkartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpkhttps://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk0.5.2r-optparse1.3.200000000000000000000000010000001000000000000
crosscontamination_barcode_filtercrosscontamination_barcode_filterBarcode contamination discovery toolTo updateTranscriptomics, Visualizationcrosscontamination_barcode_filteriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter0.3r-ggplot22.2.110101010000000000000000000000000000000001117347
cuffcomparecuffcompareGalaxy wrappers for the Cuffcompare tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffcomparedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcomparehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare2.2.1cufflinks2.2.1111111110000001000000001000000010010000011651130
cuffdiffcuffdiffGalaxy wrappers for the Cuffdiff tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffdiffdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiffhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff2.2.1cufflinks2.2.11010101000010010000000010000000000100000112285831
cufflinkscufflinksGalaxy wrappers for the Cufflinks tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscufflinksdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinkshttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks2.2.1cufflinks2.2.111111111000000100000000110010001001000001131932218
cuffmergecuffmergeGalaxy wrappers for the Cuffmerge tool.Up-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffmergedevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmergehttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge2.2.1cufflinks2.2.11111111100000010000000000000000100100000111223292
cuffnormcuffnormThe Cuffnorm toolUp-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffnormdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnormhttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm2.2.1cufflinks2.2.111101110000000000000000000000001000000001127660
cuffquantcuffquantThe Cuffquant toolUp-to-datehttp://cole-trapnell-lab.github.io/cufflinks/Transcriptomicscuffquantdevteamhttps://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquanthttps://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant2.2.1cufflinks2.2.111101110000000000000000000000001000000001118688
data-hcahca_matrix_downloaderTools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projectsTo updateTranscriptomics, Sequence Analysissuite_human_cell_atlas_toolsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hcav0.0.4+galaxy0hca-matrix-downloader0.0.400100010000000000000000000000000000000001134439
data-scxaretrieve_scxaTools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/homeTo updateTranscriptomics, Sequence Analysissuite_ebi_expression_atlasebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxav0.0.2+galaxy2wget11111111000000000000000000000000000000001199799
decouplerscore_genes_aucell, decoupler_pathway_inference, decoupler_pseudobulkdecoupler - Ensemble of methods to infer biological activitiesTo updatehttps://decoupler-py.readthedocs.io/en/latest/Transcriptomicssuite_decouplerebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler1.4.0+galaxy3decoupler1.5.000100010000000000000000000000000000000000006
deg_annotatedeg_annotateAnnotate DESeq2/DEXSeq output tablesTo updateTranscriptomicsdeg_annotateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate1.1.0bedtools2.31.1111111110000000000000010100100000000000011177419910
deseq2deseq2Differential gene expression analysis based on the negative binomial distributionDESeq2DESeq2DESeq2R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution.Differential gene expression analysis, RNA-Seq analysisRNA-SeqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsdeseq2iuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq22.11.40.8bioconductor-deseq21.42.0Differential gene expression analysis, RNA-Seq analysisRNA-Seq111111110001001000000011100100010000010011499095752
deseq2_normalizationdeseq2_normalizationNormalizes gene hitlistsTo updatehttp://artbio.frRNA, Transcriptomics, Sequence Analysis, Statisticsdeseq2_normalizationartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalizationhttps://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization1.40.2+galaxy0bioconductor-deseq21.42.000000000000000000000000000010001000000000000
dexseqdexseq, dexseq_count, plotdexseqInference of differential exon usage in RNA-SeqdexseqdexseqDEXSeqThe package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results.Enrichment analysis, Exonic splicing enhancer predictionRNA-SeqUp-to-datehttps://www.bioconductor.org/packages/release/bioc/html/DEXSeq.htmlTranscriptomics, RNA, Statisticsdexseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq1.48.0bioconductor-dexseq1.48.0Enrichment analysis, Exonic splicing enhancer predictionRNA-Seq33333333000000000000000000000000000000003321816064
dropletutilsdropletutils_empty_drops, dropletutils_read_10xDe-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_dropletutilsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils1.0.4dropletutils-scripts0.0.52020202000000000000000000000000000000000202011599
dropletutilsdropletutilsDropletUtils - Utilities for handling droplet-based single-cell RNA-seq datadropletutilsdropletutilsDropletUtilsProvides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix.Loading, Community profilingGene expression, RNA-seq, Sequencing, TranscriptomicsTo updatehttps://bioconductor.org/packages/devel/bioc/html/DropletUtils.htmlTranscriptomics, Sequence Analysisdropletutilsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils1.10.0bioconductor-dropletutils1.22.0Sequencing, Transcriptomics1111111100000000000000000001000000000000111263934
edgeredgerPerform RNA-Seq differential expression analysis using edgeR pipelineedgeredgeredgeRDifferential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE.Differential gene expression analysisGenetics, RNA-Seq, ChIP-seqTo updatehttp://bioconductor.org/packages/release/bioc/html/edgeR.htmlTranscriptomics, RNA, Statisticsedgeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/edgerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/edger3.36.0bioconductor-edger4.0.16Differential gene expression analysisGenetics, RNA-Seq, ChIP-seq11111111000000100000001010010001000000001194518117
egseaegseaThis tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testingegseaegseaEGSEAThis package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing.Gene set testingSystems biologyTo updatehttps://bioconductor.org/packages/release/bioc/html/EGSEA.htmlTranscriptomics, RNA, Statisticsegseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/egseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea1.20.0bioconductor-egsea1.28.0Gene set testingSystems biology1110111000000000000000000000000000000000111772524
fastq_providerfastq_providerRetrieval and download of FASTQ files from ENA and other repositories such as HCA.To updatehttps://github.com/ebi-gene-expression-group/atlas-fastq-providerData Source, RNA, Transcriptomicsatlas_fastq_providerebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_providerhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider0.4.4atlas-fastq-provider0.4.700000000000000000000000000000000000000000000
fastq_utilsfastq_filter_n, fastq_trim_poly_atSet of tools for handling fastq filesTo updatehttps://github.com/nunofonseca/fastq_utilsTranscriptomics, RNAfastq_utilsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utilshttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils0.25.1+galaxy0fastq_utils0.25.200000000000000000000000000000000000000000000
featurecountsfeaturecountsfeatureCounts counts the number of reads aligned to defined masked regions in a reference genomefeaturecountsfeaturecountsFeatureCountsfeatureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package.Read summarisation, RNA-Seq quantificationRNA-SeqTo updatehttp://bioinf.wehi.edu.au/featureCountsRNA, Transcriptomics, Sequence Analysisfeaturecountsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecountshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts2.0.3subread2.0.6Read summarisation, RNA-Seq quantificationRNA-Seq1111111100000010000000111001000100000100114679696399
fgseafgseaPerform gene set testing using fgseafgseafgseafgseaThe package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction.Gene-set enrichment analysisGeneticsTo updatehttps://bioconductor.org/packages/release/bioc/html/fgsea.htmlVisualization, Transcriptomics, Statisticsfgseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/fgseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea1.8.0+galaxy1bioconductor-fgsea1.28.0Gene-set enrichment analysisGenetics1111111100000000000000000000000000000000113075240
garnettgarnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_fileDe-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_garnettebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett0.2.8garnett-cli0.0.5007000700000000000000000000000000000000000327
genomic_super_signaturegenomic_super_signatureInterpretation of RNAseq experiments through robust, efficient comparison to public databasesgenomicsupersignaturegenomicsupersignatureGenomicSuperSignatureGenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases.Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reductionRNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experimentTo updatehttps://github.com/shbrief/GenomicSuperSignatureSequence Analysis, RNA, Transcriptomicsgenomic_super_signatureiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signaturehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature1.2.0bioconductor-genomicsupersignature1.10.0Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reductionRNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment0010001000000000000000000000000000000000101146
gffcomparegffcompareGalaxy wrappers for Geo Pertea's GffCompare package.gffcomparegffcomparegffcompareProgram for comparing, annotating, merging and tracking transcripts in GFF files.Sequence annotationNucleic acids, Sequence analysisUp-to-datehttps://github.com/gpertea/gffcompare/Transcriptomicsgffcompareiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcomparehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare0.12.6gffcompare0.12.6Sequence annotationNucleic acids, Sequence analysis1111111100000000000000100000000000000000113813477
gsc_filter_cellsfilter_cellsFilter single cell RNAseq data on libray depth and number of detected genesTo updatehttp://artbio.frTranscriptomicsgsc_filter_cellsartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cellshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells4.3.1+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_filter_genesfilter_genesFilter genes that are detected in less than a fraction of libraries in single cell RNAseq dataTo updatehttp://artbio.frTranscriptomicsgsc_filter_genesartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_geneshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes4.3.1+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_gene_expression_correlationssingle_cell_gene_expression_correlationsCompute single-cell paire-wise gene expressions correlationsTo updatehttp://artbio.frTranscriptomicsgsc_gene_expression_correlationsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlationshttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations4.3.1+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_high_dimensions_visualisationhigh_dimensions_visualisationGenerates PCA, t-SNE and HCPC visualisationTo updatehttp://artbio.frTranscriptomics, Visualizationgsc_high_dimensions_visualisationartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualizationhttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation4.3+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_mannwhitney_demannwhitney_dePerform a mann-whitney differential testing between two sets of gene expression dataTo updatehttp://artbio.frTranscriptomicsgsc_mannwhitney_deartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_dehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de4.1.3+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
gsc_scran_normalizescran_normalizeNormalize raw counts using scranTo updatehttp://artbio.frTranscriptomicsgsc_scran_normalizeartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalizehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize1.28.1+galaxy0bioconductor-scran1.30.00010001000000000000000000000000000000000101478
gsc_signature_scoresignature_scoreCompute signature scores from single cell RNAseq dataTo updatehttp://artbio.frTranscriptomicsgsc_signature_scoreartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_scorehttps://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score2.3.9+galaxy0r-optparse1.3.200000000000000000000000000000000000000000000
heinzheinz_bum, heinz, heinz_scoring, heinz_visualizationAn algorithm for identification of the optimal scoring subnetwork.heinzheinz, bionetHeinzTool for single-species active module discovery.Pathway or network analysisGenetics, Gene expression, Molecular interactions, pathways and networksTo updatehttps://github.com/ls-cwi/heinzTranscriptomics, Visualization, Statisticsheinziuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/heinzhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz1.0bioconductor-bionet1.62.0Pathway or network analysisGenetics, Gene expression, Molecular interactions, pathways and networks4440444000000000000000000000000000000000442421186
isoformswitchanalyzerisoformswitchanalyzerStatistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms.IsoformSwitchAnalyzeRIsoformSwitchAnalyzeRIsoformSwitchAnalyzeREnables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well.Sequence comparison, Sequence analysisComputational biology, Gene transcriptsTo updatehttps://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.htmlTranscriptomics, RNA, Statisticsisoformswitchanalyzeriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer1.20.0bioconductor-isoformswitchanalyzer2.2.0Sequence comparison, Sequence analysisComputational biology, Gene transcripts11111111000000000000000000000000000000001029822
kallistokallisto_pseudo, kallisto_quantkallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment.kallistokallistokallistoA program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment.Gene expression profilingTranscriptomics, RNA-seq, Gene expressionTo updatehttps://pachterlab.github.io/kallisto/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto0.48.0kallisto0.50.1Gene expression profilingTranscriptomics22222222000000000000000220000000000000002229924155
limma_voomlimma_voomPerform RNA-Seq differential expression analysis using limma voom pipelinelimmalimmalimmaData analysis, linear models and differential expression for microarray data.RNA-Seq analysisMolecular biology, GeneticsUp-to-datehttp://bioconductor.org/packages/release/bioc/html/limma.htmlTranscriptomics, RNA, Statisticslimma_voomiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voomhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom3.58.1bioconductor-limma3.58.1RNA-Seq analysisMolecular biology, Genetics111111110000000000000000000000000000000011101220344
masigpromasigproIdentify significantly differential expression profiles in time-course microarray experimentsmasigpromasigpromaSigProRegression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments.Regression analysisGene expression, Molecular genetics, Microarray experiment, RNA-SeqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/maSigPro.htmlTranscriptomics, RNA, Statisticsmasigproiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/masigprohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro1.49.3coreutils8.25Regression analysisGene expression, Microarray experiment, RNA-Seq10101010000000000000000000000000000000001113576
mircountsmircountsGenerates miRNA count lists from read alignments to mirBase.To updatehttp://artbio.frRNA, Transcriptomicsmircountsartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/mircountshttps://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts1.6tar01000100000000000000000000000001000000000000
monocle3monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkersDe-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_monocle3ebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle30.1.4monocle3-cli0.0.99090909000000000000000000000000000000000002643266
multigseamultigseaGSEA-based pathway enrichment analysis for multi-omics datamultiGSEAmultiGSEAmultiGSEAA GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration.Gene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small moleculesUp-to-datehttps://bioconductor.org/packages/devel/bioc/html/multiGSEA.htmlTranscriptomics, Proteomics, Statisticsmultigseaiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/multigseahttps://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea1.12.0bioconductor-multigsea1.12.0Gene-set enrichment analysis, Aggregation, Pathway analysisMetabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules001000100000000000000000000000000000000010253
music_deconvolutionmusic_construct_eset, music_inspect_eset, music_manipulate_eset, music_compare, music_deconvolutionMulti-subject Single Cell deconvolution (MuSiC)Up-to-datehttps://github.com/xuranw/MuSiCTranscriptomicsmusicbgrueninghttps://github.com/galaxyproject/tools-iuc/tree/master/tools/music/https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution0.1.1music-deconvolution0.1.15540554000000000000000000000000000000000502401872
nugen_nudupnugen_nudupMarks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products.nudupnudupNuDupMarks/removes duplicate molecules based on the molecular tagging technology used in Tecan products.Duplication detectionSequencingUp-to-datehttps://github.com/tecangenomics/nudupSAM, Metagenomics, Sequence Analysis, Transcriptomicsnugen_nudupiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nuduphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup2.3.3nudup2.3.3Duplication detectionSequencing00000000000000000000000000000000000000000000
pathifierpathifierpathifierUp-to-datehttps://Transcriptomics, Statisticspathifierartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/pathifierhttps://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier1.40.0bioconductor-pathifier1.40.000100010000000000000000000000000000000001010228
pizzlypizzlyPizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples.To updatehttps://github.com/pmelsted/pizzly/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly0.37.3.1pizzly0.37.310101010000000000000000000000000000000001116208
psiclasspsiclassPsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples.psiclasspsiclassUp-to-datehttps://github.com/splicebox/PsiCLASSTranscriptomicspsiclassiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclasshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass1.0.3psiclass1.0.3001000100000000000000000000000000000000010115
qualimapqualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseqqualimapqualimapQualiMapPlatform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data.Sequencing quality controlData quality managementTo updatehttp://qualimap.bioinfo.cipf.es/Sequence Analysis, Transcriptomics, SAMqualimapiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimaphttps://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap2.2.2dqualimap2.3Sequencing quality controlData quality management4441444100000000000000004001000100000000441328664470
raceidraceid_clustering, raceid_filtnormconf, raceid_inspectclusters, raceid_inspecttrajectory, raceid_trajectoryRaceID3, StemID2, FateID - scRNA analysisTo updatehttps://github.com/dgrun/RaceID3_StemID2_package/Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid0.2.3r-raceid0.1.3555155510000000000000000000000000000000055824569
repenrichedger-repenrich, repenrichRepeat element profilingTo updatehttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrichTranscriptomicsrepenrichartbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrichhttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2.31.102000200000000000000000000000002000000000000
repenrich2edger-repenrich2, repenrich2Repeat element profiling using bowtie2 alignerTo updatehttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2Transcriptomicsrepenrich2artbiohttps://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich22.31.100000000000000000000000000000002000000000000
rgrnastarrna_star, rna_starsoloRNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapperstarstarSTARUltrafast universal RNA-seq data alignerSequence alignmentRNA-Seq, TranscriptomicsTo updatehttps://github.com/alexdobin/STARNext Gen Mappers, Transcriptomicsrgrnastariuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastarhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar2.7.11astar2.7.11bSequence alignmentRNA-Seq, Transcriptomics2222222200010000000000111002000100000100224015425658
ribowaltzribowaltz_process, ribowaltz_plotCalculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling datariboWaltzriboWaltzriboWaltzriboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data.Computational biologyTo updatehttps://github.com/LabTranslationalArchitectomics/riboWaltzTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltzhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz1.2.0ribowaltz2.0Computational biology00200020000000000000000000000000000000002014161
rsemextract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtietranscript quantification from RNA-Seq dataTo updatehttps://github.com/deweylab/RSEMTranscriptomics, RNArsemartbiohttps://github.com/artbio/tools-artbio/tree/master/tools/rsemhttps://github.com/ARTbio/tools-artbio/tree/main/tools/rsemrsem1.3.300100010000000000000000000000004000000001167377
rseqcrseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tinan RNA-seq quality control packagerseqcrseqcRSeQCProvides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc.Data handlingSequencingUp-to-datehttps://code.google.com/p/rseqc/Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualizationrseqcnileshhttps://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqchttps://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc5.0.3rseqc5.0.3Data handlingSequencing2222222222222222000000000000000000022000220000000022223206133498
ruvseqruvseqRemove Unwanted Variation from RNA-Seq DataruvseqruvseqRUVSeqThis package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples.Differential gene expression analysisGene expression, RNA-seqTo updatehttps://www.bioconductor.org/packages/release/bioc/html/DESeq2.htmlTranscriptomics, RNA, Statisticsruvseqiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseqhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq1.26.0bioconductor-ruvseq1.36.0Differential gene expression analysisGene expression101010100000000000000000000000010000000011761236
salmonalevin, salmon, salmonquantmergeSalmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data.salmonsalmonSalmonA tool for transcript expression quantification from RNA-seq dataSequence composition calculation, RNA-Seq quantification, Gene expression analysisRNA-Seq, Gene expression, TranscriptomicsTo updatehttps://github.com/COMBINE-lab/salmonSequence Analysis, RNA, Transcriptomicsbgrueninghttps://github.com/bgruening/galaxytools/tree/master/tools/salmonhttps://github.com/bgruening/galaxytools/tree/master/tools/salmon1.10.1salmon1.10.3Sequence composition calculation, RNA-Seq quantification, Gene expression analysisRNA-Seq, Transcriptomics21312131000000000000000210010001000000003396961937
sashimi_plotsashimi_plotGenerates a sashimi plot from bam files.To updatehttp://artbio.frRNA, Transcriptomics, Graphics, Visualizationsashimi_plotartbiohttps://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plothttps://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot0.1.1python00000000000000000000000010000000000000000000
sc3sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepareDe-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_sc3ebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc31.8.0sc3-scripts0.0.600700070000000000000000000000000000000000019
scanpyscanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confoundersScanpy – Single-Cell Analysis in PythonscanpyscanpySCANPYScalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells.Differential gene expression analysisGene expression, Cell biology, GeneticsTo updatehttps://scanpy.readthedocs.ioTranscriptomics, Sequence Analysisscanpyiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy1.9.6scanpy1.7.2Differential gene expression analysisGene expression, Cell biology, Genetics66606660000000000000000000000000000000006676651978
scanpyanndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_datascanpy-scripts, command-line wrapper scripts around Scanpy.To updatehttps://scanpy.readthedocs.ioTranscriptomics, Sequence Analysis, RNAscanpy_scriptsebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpyhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy1.9.3scanpy-scripts1.9.30122272702227270000000000000000000000000000000001413218539356
scaterscater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_resultsDe-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scaterebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater1.10.0scater-scripts0.0.501600160000000000000000000000000000000002216387
scaterscater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsneScater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization.scaterscaterscaterPre-processing, quality control, normalization and visualization of single-cell RNA-seq data.Read pre-processing, Sequencing quality control, Sequence visualisationRNA-seq, Quality affairs, Molecular geneticsTo updatehttp://bioconductor.org/packages/scater/Transcriptomics, RNA, Visualizationiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scaterhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scater1.22.0bioconductor-scater1.30.1Read pre-processing, Sequence visualisationQuality affairs, Molecular genetics055005500000000000000000000000000000000055771365
sccafrun_sccaf, sccaf_asses, sccaf_asses_merger, sccaf_regress_outSCCAF: Single Cell Clustering Assessment Framework.To updatehttps://github.com/sccaf/sccafTranscriptomicsSCCAFebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccafhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf0.0.9sccaf0.0.100040004000000000000000000000000000000000002110
sceasysceasy_convertConverter between difference single-cell formatsUp-to-datehttps://github.com/cellgeni/sceasy/Transcriptomicssceasy_convertiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy0.0.7r-sceasy0.0.710101010000000000000000000000001000000000090721
sceasysceasy_convertConvert scRNA data object between popular formatsTo updateTranscriptomicssceasyebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy0.0.5r-sceasy0.0.710101010000000000000000000000001000000000090721
schicexplorerschicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrolscHiCExplorer: Set of programs to process, analyze and visualize scHi-C data.To updatehttps://github.com/joachimwolff/schicexplorerSequence Analysis, Transcriptomics, Visualizationschicexploreriuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorerhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer4schicexplorer7001600016000000000000000000000000000000000161623779
scmapscmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_featuresDe-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0.To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scmapebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap1.6.4scmap-cli0.1.00070007000000000000000000000000000000000101383
scpipescpipeA flexible preprocessing pipeline for single-cell RNA-sequencing datascpipescpipescPipeA preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols.Genome annotation, Validation, Alignment, VisualisationGene expression, RNA-Seq, SequencingTo updatehttp://bioconductor.org/packages/release/bioc/html/scPipe.htmlTranscriptomics, RNA, Statisticsscpipeiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe1.0.0+galaxy2bioconductor-scpipe2.2.0Genome annotation, Validation, Alignment, VisualisationGene expression, RNA-Seq10101010000000000000000000000000000000001111628
scpredscpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_modelDe-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0To updateTranscriptomics, RNA, Statistics, Sequence Analysissuite_scpredebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred1.0.2scpred-cli0.1.0004000400000000000000000000000000000000000425
seuratseuratA toolkit for quality control, analysis, and exploration of single cell RNA sequencing dataTo updatehttps://github.com/satijalab/seuratTranscriptomics, RNA, Statisticsseuratiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/seurathttps://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat4.3.0.1r-seurat3.0.2111111110000000000000000000000010000000011661543
seuratseurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_featuresDe-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1Up-to-datehttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/Transcriptomics, RNA, Statistics, Sequence Analysissuite_seuratebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat4.0.0seurat-scripts4.0.0001411001411000000000000000000000001900000000001811966
slamdunkalleyoop, slamdunkSlamdunk maps and quantifies SLAMseq readsUp-to-datehttp://t-neumann.github.io/slamdunkRNA, Transcriptomics, Sequence Analysis, Next Gen Mappersslamdunkiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunkhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk0.4.3slamdunk0.4.32020202000000000000000000000000000000000222361
sleuthsleuthSleuth is a program for differential analysis of RNA-Seq data.sleuthsleuthsleuthA statistical model and software application for RNA-seq differential expression analysis.Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculationRNA-seq, Gene expression, Statistics and probabilityUp-to-datehttps://github.com/pachterlab/sleuthTranscriptomics, RNA, Statisticssleuthiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuthhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth0.30.1r-sleuth0.30.1Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculationGene expression, Statistics and probability001000100000000000000000000000000000000010864
star_fusionstar_fusionSTAR Fusion detects fusion genes in RNA-Seq data after running RNA-STARTo updateSequence Analysis, Transcriptomicsstar_fusioniuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusionhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion0.5.4-3+galaxy1star-fusion1.13.0111011100000000000000010000000000000000011351212
stringtiestringtie, stringtie_mergeStringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts.stringtiestringtieStringTieFast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus.Transcriptome assembly, RNA-Seq analysisTranscriptomics, RNA-seqUp-to-datehttp://ccb.jhu.edu/software/stringtie/Transcriptomicsstringtieiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtiehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie2.2.3stringtie2.2.3Transcriptome assembly, RNA-Seq analysisTranscriptomics2222222200000000000000200000000000000200222165167659
tophat_fusion_posttophat_fusion_postWrapper for Tophat-Fusion post stepTo updateTranscriptomicstophat_fusion_postdevteamhttps://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_posthttps://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post0.1blast+01100110000000000000000000000000000000001115216
transdecodertransdecoderTransDecoder finds coding regions within transcriptsTransDecoderTransDecoderTransDecoderTransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks.Coding region prediction, de Novo sequencing, De-novo assemblyGenomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencingTo updatehttps://transdecoder.github.io/Transcriptomics, RNAtransdecoderiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoderhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder5.5.0transdecoder5.7.1Coding region prediction, de Novo sequencing, De-novo assemblyGenomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing1111111100000000000010001000000000000000113485468
trinitytrinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_statsTrinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseqtrinitytrinityTrinityTrinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads.Transcriptome assemblyTranscriptomics, Gene expression, Gene transcriptsUp-to-datehttps://github.com/trinityrnaseq/trinityrnaseqTranscriptomics, RNAiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trinityhttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity2.15.1trinity2.15.1Transcriptome assemblyTranscriptomics, Gene transcripts913131391313130000000000000012100000011001000001312176231951
trinotatetrinotateTrinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes.trinotatetrinotateTrinotateComprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms.Gene functional annotationGene expression, TranscriptomicsTo updatehttps://trinotate.github.io/Transcriptomics, RNAtrinotateiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotatehttps://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate3.2.2trinotate4.0.2Gene functional annotationTranscriptomics1110111000000000000000001000000000000000111511796
tximporttximportWrapper for the Bioconductor package tximporttximporttximporttximportAn R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages.Pathway or network analysis, Formatting, RNA-Seq analysisTranscriptomics, Gene transcripts, WorkflowsTo updatehttp://bioconductor.org/packages/tximport/Transcriptomicstximportiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/tximporthttps://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport1.22.0bioconductor-tximport1.30.0Pathway or network analysis, Formatting, RNA-Seq analysisTranscriptomics, Gene transcripts, Workflows101010100000000000000000000000000000000011881408
ucsc-cell-browserucsc_cell_browserPython pipeline and Javascript scatter plot library for single-cell datasetsTo updatehttps://cells.ucsc.edu/Transcriptomicsucsc_cell_browserebi-gxahttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.ymlhttps://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser1.0.0+galaxy1ucsc-cell-browser1.2.600100010000000000000000000000000000000001178941
umi_toolsumi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelistUMI-tools extract - Extract UMIs from fastqumi-toolsumi-toolsUMI-toolsTools for handling Unique Molecular Identifiers in NGS data sets.Sequencing quality controlNGS, Sequence sites, features and motifs, Quality affairsTo updatehttps://github.com/CGATOxford/UMI-toolsSequence Analysis, Transcriptomicsiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_toolshttps://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools1.1.2umi_tools1.1.5Sequencing quality controlSequence sites, features and motifs, Quality affairs55555555000000000000000010000005000000005537961618
velocytovelocyto_cliVelocyto is a library for the analysis of RNA velocity.Up-to-datehttp://velocyto.org/Transcriptomicsvelocytoiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/velocytohttps://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto0.17.17velocyto.py0.17.1710101010000000000000000000000000000000001002
volcanoplotvolcanoplotTool to create a Volcano PlotTo updatehttps://ggplot2.tidyverse.org/Visualization, Transcriptomics, Statisticsvolcanoplotiuchttps://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplothttps://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot0.0.6r-ggplot22.2.1111111110000000000000010100000010000000011174930946
+ +
\ No newline at end of file diff --git a/communities/spoc/resources/tools.tsv b/communities/spoc/resources/tools.tsv new file mode 100644 index 00000000..b1844867 --- /dev/null +++ b/communities/spoc/resources/tools.tsv @@ -0,0 +1,100 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on ANASTASIA Tools available on APOSTL Tools available on ARGs-OAP Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CorGAT Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on Protologger Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +aegean aegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parseval AEGeAn toolkit wrappers gaeval gaeval GAEVAL Gene Annotation EVAluation. Sequence annotation Sequence analysis, Gene structure Up-to-date https://github.com/BrendelGroup/AEGeAn Transcriptomics, Sequence Analysis aegean iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aegean https://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean 0.16.0 aegean 0.16.0 Sequence annotation Sequence analysis, Gene structure 1 4 4 4 1 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 47 168 False +anndata anndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loom Import, Export, Inspect and Manipulate Anndata and Loom objects To update https://anndata.readthedocs.io Transcriptomics, Sequence Analysis anndata iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata 0.10.3 anndata 0.6.22.post1 5 4 5 0 5 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 625 35620 False +arriba arriba, arriba_draw_fusions, arriba_get_filters Arriba detects fusion genes in RNA-Seq data after running RNA-STAR Up-to-date https://github.com/suhrig/arriba Sequence Analysis, Transcriptomics arriba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba https://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba 2.4.0 arriba 2.4.0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 38 3528 False +askor askor_de AskoR links EdgeR and AskOmics To update https://github.com/askomics/askoR Transcriptomics askor_de genouest https://github.com/genouest/galaxy-tools/tree/master/tools/askor https://github.com/genouest/galaxy-tools/tree/master/tools/askor 0.2 bioconductor-limma 3.58.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bamparse bamparse Generates hit count lists from bam alignments. To update http://artbio.fr RNA, Transcriptomics bamparse artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse 4.1.1 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +baredsc baredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2d baredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. baredsc baredsc baredSC The baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability Up-to-date https://github.com/lldelisle/baredSC Transcriptomics, Visualization baredsc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/baredsc https://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc 1.1.3 baredsc 1.1.3 Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability 4 0 4 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 71 False +bctools bctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_events bctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0 Up-to-date https://github.com/dmaticzka/bctools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools 0.2.2 bctools 0.2.2 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 87 2895 False +brew3r_r brew3r_r Extend 3' end of a GTF using another GTF as a template To update https://bioconductor.org/packages/release/bioc/html/BREW3R.r.html Transcriptomics, RNA brew3r_r iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_r https://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r 1.0.2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cell-types-analysis ct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvals Tools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysis To update Transcriptomics, RNA, Statistics suite_cell_types_analysis ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis 1.1.1 cell-types-analysis 0.1.11 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 6 False +cemitool cemitool Gene co-expression network analysis tool cemitool cemitool CEMiTool It unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network. Enrichment analysis, Pathway or network analysis Gene expression, Transcriptomics, Microarray experiment To update https://www.bioconductor.org/packages/release/bioc/html/CEMiTool.html Transcriptomics, RNA, Statistics cemitool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool https://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool 1.18.1 bioconductor-cemitool 1.26.0 Enrichment analysis, Pathway or network analysis Transcriptomics, Microarray experiment 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 9 98 False +cherri cherri_eval, cherri_train Computational Help Evaluating RNA-RNA interactions cherri cherri cherri CheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions. Molecular interactions, pathways and networks, Structure analysis, Machine learning To update https://github.com/BackofenLab/Cherri Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cherri https://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri 0.7 cherri 0.8 Molecular interactions, pathways and networks, Structure analysis, Machine learning 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 207 False +chira chira_collapse, chira_extract, chira_map, chira_merge, chira_quantify Chimeric Read Annotator for RNA-RNA interactome data chira chira ChiRA ChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc. RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA Up-to-date https://github.com/pavanvidem/chira RNA, Transcriptomics, Sequence Analysis chira iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chira https://github.com/galaxyproject/tools-iuc/tree/main/tools/chira 1.4.3 chira 1.4.3 Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA 5 0 5 0 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 97 6418 False +cite_seq_count cite_seq_count Count CMO/HTO CITE-seq-Count CITE-seq-Count CITE-seq-Count Tool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment. RNA-Seq quantification Transcriptomics, Immunoproteins and antigens Up-to-date https://github.com/Hoohm/CITE-seq-Count Transcriptomics cite_seq_count iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count 1.4.4 cite-seq-count 1.4.4 RNA-Seq quantification Transcriptomics, Immunoproteins and antigens 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 18 False +cosg cosg Marker gene identification for single-cell sequencing data using COSG. Up-to-date https://github.com/genecell/COSG Transcriptomics, Sequence Analysis cosg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg 1.0.1 cosg 1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cpat cpat Coding-potential assessment tool using an alignment-free logistic regression model. Up-to-date https://github.com/liguowang/cpat Transcriptomics cpat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/cpat https://github.com/bgruening/galaxytools/tree/master/tools/cpat 3.0.5 cpat 3.0.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 21 134 False +cpm_tpm_rpk cpm_tpm_rpk Generate CPM,TPM or RPK from raw counts To update http://artbio.fr Transcriptomics cpm_tpm_rpk artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk 0.5.2 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +crosscontamination_barcode_filter crosscontamination_barcode_filter Barcode contamination discovery tool To update Transcriptomics, Visualization crosscontamination_barcode_filter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filter https://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter 0.3 r-ggplot2 2.2.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 17 347 False +cuffcompare cuffcompare Galaxy wrappers for the Cuffcompare tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffcompare devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 65 1130 False +cuffdiff cuffdiff Galaxy wrappers for the Cuffdiff tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffdiff devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiff https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff 2.2.1 cufflinks 2.2.1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 228 5831 False +cufflinks cufflinks Galaxy wrappers for the Cufflinks tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cufflinks devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinks https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 319 32218 False +cuffmerge cuffmerge Galaxy wrappers for the Cuffmerge tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffmerge devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmerge https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 122 3292 False +cuffnorm cuffnorm The Cuffnorm tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffnorm devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnorm https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 27 660 False +cuffquant cuffquant The Cuffquant tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffquant devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquant https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 18 688 False +data-hca hca_matrix_downloader Tools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projects To update Transcriptomics, Sequence Analysis suite_human_cell_atlas_tools ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hca v0.0.4+galaxy0 hca-matrix-downloader 0.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 34 439 False +data-scxa retrieve_scxa Tools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/home To update Transcriptomics, Sequence Analysis suite_ebi_expression_atlas ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxa v0.0.2+galaxy2 wget 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 99 799 False +decoupler score_genes_aucell, decoupler_pathway_inference, decoupler_pseudobulk decoupler - Ensemble of methods to infer biological activities To update https://decoupler-py.readthedocs.io/en/latest/ Transcriptomics suite_decoupler ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler 1.4.0+galaxy3 decoupler 1.5.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 False +deg_annotate deg_annotate Annotate DESeq2/DEXSeq output tables To update Transcriptomics deg_annotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate 1.1.0 bedtools 2.31.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1774 19910 False +deseq2 deseq2 Differential gene expression analysis based on the negative binomial distribution DESeq2 DESeq2 DESeq2 R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution. Differential gene expression analysis, RNA-Seq analysis RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics deseq2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq2 2.11.40.8 bioconductor-deseq2 1.42.0 Differential gene expression analysis, RNA-Seq analysis RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 4990 95752 False +deseq2_normalization deseq2_normalization Normalizes gene hitlists To update http://artbio.fr RNA, Transcriptomics, Sequence Analysis, Statistics deseq2_normalization artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization 1.40.2+galaxy0 bioconductor-deseq2 1.42.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +dexseq dexseq, dexseq_count, plotdexseq Inference of differential exon usage in RNA-Seq dexseq dexseq DEXSeq The package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results. Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq Up-to-date https://www.bioconductor.org/packages/release/bioc/html/DEXSeq.html Transcriptomics, RNA, Statistics dexseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq 1.48.0 bioconductor-dexseq 1.48.0 Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 218 16064 False +dropletutils dropletutils_empty_drops, dropletutils_read_10x De-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_dropletutils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils 1.0.4 dropletutils-scripts 0.0.5 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 201 1599 False +dropletutils dropletutils DropletUtils - Utilities for handling droplet-based single-cell RNA-seq data dropletutils dropletutils DropletUtils Provides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix. Loading, Community profiling Gene expression, RNA-seq, Sequencing, Transcriptomics To update https://bioconductor.org/packages/devel/bioc/html/DropletUtils.html Transcriptomics, Sequence Analysis dropletutils iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils 1.10.0 bioconductor-dropletutils 1.22.0 Sequencing, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 126 3934 False +edger edger Perform RNA-Seq differential expression analysis using edgeR pipeline edger edger edgeR Differential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE. Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq To update http://bioconductor.org/packages/release/bioc/html/edgeR.html Transcriptomics, RNA, Statistics edger iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger https://github.com/galaxyproject/tools-iuc/tree/main/tools/edger 3.36.0 bioconductor-edger 4.0.16 Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 945 18117 False +egsea egsea This tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testing egsea egsea EGSEA This package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing. Gene set testing Systems biology To update https://bioconductor.org/packages/release/bioc/html/EGSEA.html Transcriptomics, RNA, Statistics egsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea 1.20.0 bioconductor-egsea 1.28.0 Gene set testing Systems biology 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 177 2524 False +fastq_provider fastq_provider Retrieval and download of FASTQ files from ENA and other repositories such as HCA. To update https://github.com/ebi-gene-expression-group/atlas-fastq-provider Data Source, RNA, Transcriptomics atlas_fastq_provider ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_provider https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider 0.4.4 atlas-fastq-provider 0.4.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_utils fastq_filter_n, fastq_trim_poly_at Set of tools for handling fastq files To update https://github.com/nunofonseca/fastq_utils Transcriptomics, RNA fastq_utils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utils https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils 0.25.1+galaxy0 fastq_utils 0.25.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +featurecounts featurecounts featureCounts counts the number of reads aligned to defined masked regions in a reference genome featurecounts featurecounts FeatureCounts featureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package. Read summarisation, RNA-Seq quantification RNA-Seq To update http://bioinf.wehi.edu.au/featureCounts RNA, Transcriptomics, Sequence Analysis featurecounts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts https://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts 2.0.3 subread 2.0.6 Read summarisation, RNA-Seq quantification RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 4679 696399 False +fgsea fgsea Perform gene set testing using fgsea fgsea fgsea fgsea The package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction. Gene-set enrichment analysis Genetics To update https://bioconductor.org/packages/release/bioc/html/fgsea.html Visualization, Transcriptomics, Statistics fgsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fgsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea 1.8.0+galaxy1 bioconductor-fgsea 1.28.0 Gene-set enrichment analysis Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 307 5240 False +garnett garnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_file De-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_garnett ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett 0.2.8 garnett-cli 0.0.5 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 27 False +genomic_super_signature genomic_super_signature Interpretation of RNAseq experiments through robust, efficient comparison to public databases genomicsupersignature genomicsupersignature GenomicSuperSignature GenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases. Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment To update https://github.com/shbrief/GenomicSuperSignature Sequence Analysis, RNA, Transcriptomics genomic_super_signature iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signature https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature 1.2.0 bioconductor-genomicsupersignature 1.10.0 Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 11 46 False +gffcompare gffcompare Galaxy wrappers for Geo Pertea's GffCompare package. gffcompare gffcompare gffcompare Program for comparing, annotating, merging and tracking transcripts in GFF files. Sequence annotation Nucleic acids, Sequence analysis Up-to-date https://github.com/gpertea/gffcompare/ Transcriptomics gffcompare iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare 0.12.6 gffcompare 0.12.6 Sequence annotation Nucleic acids, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 381 3477 False +gsc_filter_cells filter_cells Filter single cell RNAseq data on libray depth and number of detected genes To update http://artbio.fr Transcriptomics gsc_filter_cells artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_filter_genes filter_genes Filter genes that are detected in less than a fraction of libraries in single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_filter_genes artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_gene_expression_correlations single_cell_gene_expression_correlations Compute single-cell paire-wise gene expressions correlations To update http://artbio.fr Transcriptomics gsc_gene_expression_correlations artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlations https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_high_dimensions_visualisation high_dimensions_visualisation Generates PCA, t-SNE and HCPC visualisation To update http://artbio.fr Transcriptomics, Visualization gsc_high_dimensions_visualisation artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualization https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation 4.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_mannwhitney_de mannwhitney_de Perform a mann-whitney differential testing between two sets of gene expression data To update http://artbio.fr Transcriptomics gsc_mannwhitney_de artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de 4.1.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_scran_normalize scran_normalize Normalize raw counts using scran To update http://artbio.fr Transcriptomics gsc_scran_normalize artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize 1.28.1+galaxy0 bioconductor-scran 1.30.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 14 78 False +gsc_signature_score signature_score Compute signature scores from single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_signature_score artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score 2.3.9+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +heinz heinz_bum, heinz, heinz_scoring, heinz_visualization An algorithm for identification of the optimal scoring subnetwork. heinz heinz, bionet Heinz Tool for single-species active module discovery. Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks To update https://github.com/ls-cwi/heinz Transcriptomics, Visualization, Statistics heinz iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz https://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz 1.0 bioconductor-bionet 1.62.0 Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 242 1186 False +isoformswitchanalyzer isoformswitchanalyzer Statistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms. IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR Enables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well. Sequence comparison, Sequence analysis Computational biology, Gene transcripts To update https://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.html Transcriptomics, RNA, Statistics isoformswitchanalyzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer 1.20.0 bioconductor-isoformswitchanalyzer 2.2.0 Sequence comparison, Sequence analysis Computational biology, Gene transcripts 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 29 822 False +kallisto kallisto_pseudo, kallisto_quant kallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment. kallisto kallisto kallisto A program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment. Gene expression profiling Transcriptomics, RNA-seq, Gene expression To update https://pachterlab.github.io/kallisto/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto 0.48.0 kallisto 0.50.1 Gene expression profiling Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 299 24155 False +limma_voom limma_voom Perform RNA-Seq differential expression analysis using limma voom pipeline limma limma limma Data analysis, linear models and differential expression for microarray data. RNA-Seq analysis Molecular biology, Genetics Up-to-date http://bioconductor.org/packages/release/bioc/html/limma.html Transcriptomics, RNA, Statistics limma_voom iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom https://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom 3.58.1 bioconductor-limma 3.58.1 RNA-Seq analysis Molecular biology, Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1012 20344 False +masigpro masigpro Identify significantly differential expression profiles in time-course microarray experiments masigpro masigpro maSigPro Regression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments. Regression analysis Gene expression, Molecular genetics, Microarray experiment, RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/maSigPro.html Transcriptomics, RNA, Statistics masigpro iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/masigpro https://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro 1.49.3 coreutils 8.25 Regression analysis Gene expression, Microarray experiment, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 13 576 False +mircounts mircounts Generates miRNA count lists from read alignments to mirBase. To update http://artbio.fr RNA, Transcriptomics mircounts artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts https://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts 1.6 tar 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +monocle3 monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkers De-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_monocle3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle3 0.1.4 monocle3-cli 0.0.9 9 0 9 0 9 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 264 3266 False +multigsea multigsea GSEA-based pathway enrichment analysis for multi-omics data multiGSEA multiGSEA multiGSEA A GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration. Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules Up-to-date https://bioconductor.org/packages/devel/bioc/html/multiGSEA.html Transcriptomics, Proteomics, Statistics multigsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea 1.12.0 bioconductor-multigsea 1.12.0 Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 53 False +music_deconvolution music_construct_eset, music_inspect_eset, music_manipulate_eset, music_compare, music_deconvolution Multi-subject Single Cell deconvolution (MuSiC) Up-to-date https://github.com/xuranw/MuSiC Transcriptomics music bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/music/ https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution 0.1.1 music-deconvolution 0.1.1 5 5 4 0 5 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 240 1872 False +nugen_nudup nugen_nudup Marks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products. nudup nudup NuDup Marks/removes duplicate molecules based on the molecular tagging technology used in Tecan products. Duplication detection Sequencing Up-to-date https://github.com/tecangenomics/nudup SAM, Metagenomics, Sequence Analysis, Transcriptomics nugen_nudup iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup https://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup 2.3.3 nudup 2.3.3 Duplication detection Sequencing 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pathifier pathifier pathifier Up-to-date https:// Transcriptomics, Statistics pathifier artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier 1.40.0 bioconductor-pathifier 1.40.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 10 228 False +pizzly pizzly Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. To update https://github.com/pmelsted/pizzly/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly 0.37.3.1 pizzly 0.37.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 16 208 False +psiclass psiclass PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples. psiclass psiclass Up-to-date https://github.com/splicebox/PsiCLASS Transcriptomics psiclass iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclass https://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass 1.0.3 psiclass 1.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 15 False +qualimap qualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseq qualimap qualimap QualiMap Platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data. Sequencing quality control Data quality management To update http://qualimap.bioinfo.cipf.es/ Sequence Analysis, Transcriptomics, SAM qualimap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap https://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap 2.2.2d qualimap 2.3 Sequencing quality control Data quality management 4 4 4 1 4 4 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 4 4 1328 664470 False +raceid raceid_clustering, raceid_filtnormconf, raceid_inspectclusters, raceid_inspecttrajectory, raceid_trajectory RaceID3, StemID2, FateID - scRNA analysis To update https://github.com/dgrun/RaceID3_StemID2_package/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid 0.2.3 r-raceid 0.1.3 5 5 5 1 5 5 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 82 4569 False +repenrich edger-repenrich, repenrich Repeat element profiling To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich Transcriptomics repenrich artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich 2.31.1 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 False +repenrich2 edger-repenrich2, repenrich2 Repeat element profiling using bowtie2 aligner To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 Transcriptomics repenrich2 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 2.31.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 False +rgrnastar rna_star, rna_starsolo RNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapper star star STAR Ultrafast universal RNA-seq data aligner Sequence alignment RNA-Seq, Transcriptomics To update https://github.com/alexdobin/STAR Next Gen Mappers, Transcriptomics rgrnastar iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar https://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar 2.7.11a star 2.7.11b Sequence alignment RNA-Seq, Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 2 0 0 0 1 0 0 0 0 0 1 0 0 2 2 4015 425658 False +ribowaltz ribowaltz_process, ribowaltz_plot Calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data riboWaltz riboWaltz riboWaltz riboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data. Computational biology To update https://github.com/LabTranslationalArchitectomics/riboWaltz Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltz https://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz 1.2.0 ribowaltz 2.0 Computational biology 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 14 161 False +rsem extract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtie transcript quantification from RNA-Seq data To update https://github.com/deweylab/RSEM Transcriptomics, RNA rsem artbio https://github.com/artbio/tools-artbio/tree/master/tools/rsem https://github.com/ARTbio/tools-artbio/tree/main/tools/rsem rsem 1.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 1 1 67 377 False +rseqc rseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tin an RNA-seq quality control package rseqc rseqc RSeQC Provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. Data handling Sequencing Up-to-date https://code.google.com/p/rseqc/ Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualization rseqc nilesh https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc 5.0.3 rseqc 5.0.3 Data handling Sequencing 22 22 22 22 22 22 22 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 0 22 22 3206 133498 False +ruvseq ruvseq Remove Unwanted Variation from RNA-Seq Data ruvseq ruvseq RUVSeq This package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples. Differential gene expression analysis Gene expression, RNA-seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics ruvseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq 1.26.0 bioconductor-ruvseq 1.36.0 Differential gene expression analysis Gene expression 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 76 1236 False +salmon alevin, salmon, salmonquantmerge Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data. salmon salmon Salmon A tool for transcript expression quantification from RNA-seq data Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Gene expression, Transcriptomics To update https://github.com/COMBINE-lab/salmon Sequence Analysis, RNA, Transcriptomics bgruening https://github.com/bgruening/galaxytools/tree/master/tools/salmon https://github.com/bgruening/galaxytools/tree/master/tools/salmon 1.10.1 salmon 1.10.3 Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Transcriptomics 2 1 3 1 2 1 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 3 3 969 61937 False +sashimi_plot sashimi_plot Generates a sashimi plot from bam files. To update http://artbio.fr RNA, Transcriptomics, Graphics, Visualization sashimi_plot artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plot https://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot 0.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sc3 sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepare De-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_sc3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc3 1.8.0 sc3-scripts 0.0.6 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 False +scanpy scanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confounders Scanpy – Single-Cell Analysis in Python scanpy scanpy SCANPY Scalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. Differential gene expression analysis Gene expression, Cell biology, Genetics To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis scanpy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy 1.9.6 scanpy 1.7.2 Differential gene expression analysis Gene expression, Cell biology, Genetics 6 6 6 0 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 766 51978 False +scanpy anndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_data scanpy-scripts, command-line wrapper scripts around Scanpy. To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis, RNA scanpy_scripts ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpy https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy 1.9.3 scanpy-scripts 1.9.301 22 27 27 0 22 27 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 13 2185 39356 False +scater scater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_results De-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scater ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater 1.10.0 scater-scripts 0.0.5 0 1 6 0 0 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 16 387 False +scater scater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsne Scater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization. scater scater scater Pre-processing, quality control, normalization and visualization of single-cell RNA-seq data. Read pre-processing, Sequencing quality control, Sequence visualisation RNA-seq, Quality affairs, Molecular genetics To update http://bioconductor.org/packages/scater/ Transcriptomics, RNA, Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scater https://github.com/galaxyproject/tools-iuc/tree/main/tools/scater 1.22.0 bioconductor-scater 1.30.1 Read pre-processing, Sequence visualisation Quality affairs, Molecular genetics 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 77 1365 False +sccaf run_sccaf, sccaf_asses, sccaf_asses_merger, sccaf_regress_out SCCAF: Single Cell Clustering Assessment Framework. To update https://github.com/sccaf/sccaf Transcriptomics SCCAF ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccaf https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf 0.0.9 sccaf 0.0.10 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 110 False +sceasy sceasy_convert Converter between difference single-cell formats Up-to-date https://github.com/cellgeni/sceasy/ Transcriptomics sceasy_convert iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy 0.0.7 r-sceasy 0.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 False +sceasy sceasy_convert Convert scRNA data object between popular formats To update Transcriptomics sceasy ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy 0.0.5 r-sceasy 0.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 False +schicexplorer schicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrol scHiCExplorer: Set of programs to process, analyze and visualize scHi-C data. To update https://github.com/joachimwolff/schicexplorer Sequence Analysis, Transcriptomics, Visualization schicexplorer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorer https://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer 4 schicexplorer 7 0 0 16 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 16 23 779 False +scmap scmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_features De-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scmap ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap 1.6.4 scmap-cli 0.1.0 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 13 83 False +scpipe scpipe A flexible preprocessing pipeline for single-cell RNA-sequencing data scpipe scpipe scPipe A preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols. Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq, Sequencing To update http://bioconductor.org/packages/release/bioc/html/scPipe.html Transcriptomics, RNA, Statistics scpipe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipe https://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe 1.0.0+galaxy2 bioconductor-scpipe 2.2.0 Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 11 628 False +scpred scpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_model De-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scpred ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred 1.0.2 scpred-cli 0.1.0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 False +seurat seurat A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data To update https://github.com/satijalab/seurat Transcriptomics, RNA, Statistics seurat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat https://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat 4.3.0.1 r-seurat 3.0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 66 1543 False +seurat seurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_features De-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1 Up-to-date https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ Transcriptomics, RNA, Statistics, Sequence Analysis suite_seurat ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat 4.0.0 seurat-scripts 4.0.0 0 0 14 11 0 0 14 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 0 0 0 181 1966 False +slamdunk alleyoop, slamdunk Slamdunk maps and quantifies SLAMseq reads Up-to-date http://t-neumann.github.io/slamdunk RNA, Transcriptomics, Sequence Analysis, Next Gen Mappers slamdunk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunk https://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk 0.4.3 slamdunk 0.4.3 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 361 False +sleuth sleuth Sleuth is a program for differential analysis of RNA-Seq data. sleuth sleuth sleuth A statistical model and software application for RNA-seq differential expression analysis. Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation RNA-seq, Gene expression, Statistics and probability Up-to-date https://github.com/pachterlab/sleuth Transcriptomics, RNA, Statistics sleuth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuth https://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth 0.30.1 r-sleuth 0.30.1 Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 8 64 False +star_fusion star_fusion STAR Fusion detects fusion genes in RNA-Seq data after running RNA-STAR To update Sequence Analysis, Transcriptomics star_fusion iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusion https://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion 0.5.4-3+galaxy1 star-fusion 1.13.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 35 1212 False +stringtie stringtie, stringtie_merge StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. stringtie stringtie StringTie Fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus. Transcriptome assembly, RNA-Seq analysis Transcriptomics, RNA-seq Up-to-date http://ccb.jhu.edu/software/stringtie/ Transcriptomics stringtie iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie https://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie 2.2.3 stringtie 2.2.3 Transcriptome assembly, RNA-Seq analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2165 167659 False +tophat_fusion_post tophat_fusion_post Wrapper for Tophat-Fusion post step To update Transcriptomics tophat_fusion_post devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_post https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post 0.1 blast+ 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 15 216 False +transdecoder transdecoder TransDecoder finds coding regions within transcripts TransDecoder TransDecoder TransDecoder TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks. Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing To update https://transdecoder.github.io/ Transcriptomics, RNA transdecoder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoder https://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder 5.5.0 transdecoder 5.7.1 Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 348 5468 False +trinity trinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_stats Trinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseq trinity trinity Trinity Trinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads. Transcriptome assembly Transcriptomics, Gene expression, Gene transcripts Up-to-date https://github.com/trinityrnaseq/trinityrnaseq Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity 2.15.1 trinity 2.15.1 Transcriptome assembly Transcriptomics, Gene transcripts 9 13 13 13 9 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 11 0 0 1 0 0 0 0 0 13 12 1762 31951 False +trinotate trinotate Trinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes. trinotate trinotate Trinotate Comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms. Gene functional annotation Gene expression, Transcriptomics To update https://trinotate.github.io/ Transcriptomics, RNA trinotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate 3.2.2 trinotate 4.0.2 Gene functional annotation Transcriptomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 151 1796 False +tximport tximport Wrapper for the Bioconductor package tximport tximport tximport tximport An R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages. Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows To update http://bioconductor.org/packages/tximport/ Transcriptomics tximport iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tximport https://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport 1.22.0 bioconductor-tximport 1.30.0 Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 88 1408 False +ucsc-cell-browser ucsc_cell_browser Python pipeline and Javascript scatter plot library for single-cell datasets To update https://cells.ucsc.edu/ Transcriptomics ucsc_cell_browser ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser 1.0.0+galaxy1 ucsc-cell-browser 1.2.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 78 941 False +umi_tools umi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelist UMI-tools extract - Extract UMIs from fastq umi-tools umi-tools UMI-tools Tools for handling Unique Molecular Identifiers in NGS data sets. Sequencing quality control NGS, Sequence sites, features and motifs, Quality affairs To update https://github.com/CGATOxford/UMI-tools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools 1.1.2 umi_tools 1.1.5 Sequencing quality control Sequence sites, features and motifs, Quality affairs 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 5 5 379 61618 False +velocyto velocyto_cli Velocyto is a library for the analysis of RNA velocity. Up-to-date http://velocyto.org/ Transcriptomics velocyto iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/velocyto https://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto 0.17.17 velocyto.py 0.17.17 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 False +volcanoplot volcanoplot Tool to create a Volcano Plot To update https://ggplot2.tidyverse.org/ Visualization, Transcriptomics, Statistics volcanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplot https://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot 0.0.6 r-ggplot2 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1749 30946 False diff --git a/communities/spoc/resources/tools_filtered_by_ts_categories.tsv b/communities/spoc/resources/tools_filtered_by_ts_categories.tsv new file mode 100644 index 00000000..b1844867 --- /dev/null +++ b/communities/spoc/resources/tools_filtered_by_ts_categories.tsv @@ -0,0 +1,100 @@ +Galaxy wrapper id Galaxy tool ids Description bio.tool id bio.tool ids biii bio.tool name bio.tool description EDAM operation EDAM topic Status Source ToolShed categories ToolShed id Galaxy wrapper owner Galaxy wrapper source Galaxy wrapper parsed folder Galaxy wrapper version Conda id Conda version EDAM operation (no superclasses) EDAM topic (no superclasses) Available on UseGalaxy.org (Main) Available on UseGalaxy.org.au Available on UseGalaxy.eu Available on UseGalaxy.fr Tools available on UseGalaxy.org (Main) Tools available on UseGalaxy.org.au Tools available on UseGalaxy.eu Tools available on UseGalaxy.fr Tools available on ANASTASIA Tools available on APOSTL Tools available on ARGs-OAP Tools available on BF2I-MAP Tools available on BioBix Tools available on CIRM-CFBP Tools available on Center for Phage Technology (CPT) Tools available on ChemFlow Tools available on Coloc-stats Tools available on CorGAT Tools available on CropGalaxy Tools available on Dintor Tools available on FreeBioinfo Tools available on GASLINI Tools available on Galaxy@AuBi Tools available on Galaxy@Pasteur Tools available on GalaxyTrakr Tools available on Genomic Hyperbrowser Tools available on GigaGalaxy Tools available on HyPhy HIV NGS Tools Tools available on IPK Galaxy Blast Suite Tools available on ImmPort Galaxy Tools available on InteractoMIX Tools available on MISSISSIPPI Tools available on Mandoiu Lab Tools available on MiModD NacreousMap Tools available on Oqtans Tools available on Palfinder Tools available on PepSimili Tools available on PhagePromotor Tools available on Protologger Tools available on UseGalaxy.be Tools available on UseGalaxy.cz Tools available on UseGalaxy.no No. of tool users (2022-2023) (usegalaxy.eu) Total tool usage (usegalaxy.eu) Reviewed Deprecated To keep +aegean aegean_canongff3, aegean_gaeval, aegean_locuspocus, aegean_parseval AEGeAn toolkit wrappers gaeval gaeval GAEVAL Gene Annotation EVAluation. Sequence annotation Sequence analysis, Gene structure Up-to-date https://github.com/BrendelGroup/AEGeAn Transcriptomics, Sequence Analysis aegean iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/aegean https://github.com/galaxyproject/tools-iuc/tree/main/tools/aegean 0.16.0 aegean 0.16.0 Sequence annotation Sequence analysis, Gene structure 1 4 4 4 1 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 47 168 False +anndata anndata_export, anndata_import, anndata_inspect, anndata_manipulate, modify_loom Import, Export, Inspect and Manipulate Anndata and Loom objects To update https://anndata.readthedocs.io Transcriptomics, Sequence Analysis anndata iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/anndata 0.10.3 anndata 0.6.22.post1 5 4 5 0 5 4 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 625 35620 False +arriba arriba, arriba_draw_fusions, arriba_get_filters Arriba detects fusion genes in RNA-Seq data after running RNA-STAR Up-to-date https://github.com/suhrig/arriba Sequence Analysis, Transcriptomics arriba iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/arriba https://github.com/galaxyproject/tools-iuc/tree/main/tools/arriba 2.4.0 arriba 2.4.0 0 3 3 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 38 3528 False +askor askor_de AskoR links EdgeR and AskOmics To update https://github.com/askomics/askoR Transcriptomics askor_de genouest https://github.com/genouest/galaxy-tools/tree/master/tools/askor https://github.com/genouest/galaxy-tools/tree/master/tools/askor 0.2 bioconductor-limma 3.58.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +bamparse bamparse Generates hit count lists from bam alignments. To update http://artbio.fr RNA, Transcriptomics bamparse artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse https://github.com/ARTbio/tools-artbio/tree/main/tools/bamparse 4.1.1 pysam 0.22.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +baredsc baredsc_1d, baredsc_2d, baredsc_combine_1d, baredsc_combine_2d baredSC is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. baredsc baredsc baredSC The baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data. Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability Up-to-date https://github.com/lldelisle/baredSC Transcriptomics, Visualization baredsc iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/baredsc https://github.com/galaxyproject/tools-iuc/tree/main/tools/baredsc 1.1.3 baredsc 1.1.3 Data retrieval, Expression correlation analysis, Differential gene expression profiling RNA-Seq, Cytometry, Transcriptomics, Gene transcripts, Statistics and probability 4 0 4 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 71 False +bctools bctools_convert_to_binary_barcode, bctools_extract_crosslinked_nucleotides, bctools_extract_alignment_ends, bctools_extract_barcodes, bctools_merge_pcr_duplicates, bctools_remove_tail, bctools_remove_spurious_events bctools is a set of tools for handling barcodes and UMIs in NGS data.bctools can be used to merge PCR duplicates according to unique molecular barcodes (UMIs),to extract barcodes from arbitrary positions relative to the read starts,to clean up readthroughs into UMIs with paired-end sequencing andhandles binary barcodes as used with uvCLAP and FLASH.License: Apache License 2.0 Up-to-date https://github.com/dmaticzka/bctools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools https://github.com/galaxyproject/tools-iuc/tree/main/tools/bctools 0.2.2 bctools 0.2.2 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 87 2895 False +brew3r_r brew3r_r Extend 3' end of a GTF using another GTF as a template To update https://bioconductor.org/packages/release/bioc/html/BREW3R.r.html Transcriptomics, RNA brew3r_r iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/brew3r_r https://github.com/galaxyproject/tools-iuc/tree/main/tools/brew3r_r 1.0.2 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cell-types-analysis ct_build_cell_ontology_dict, ct_check_labels, ct_combine_tool_outputs, ct_downsample_cells, ct_get_consensus_outputs, ct_get_empirical_dist, ct_get_tool_perf_table, ct_get_tool_pvals Tools for analysis of predictions from scRNAseq cell type classification tools, see https://github.com/ebi-gene-expression-group/cell-types-analysis To update Transcriptomics, RNA, Statistics suite_cell_types_analysis ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/cell-types-analysis 1.1.1 cell-types-analysis 0.1.11 0 0 6 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 6 False +cemitool cemitool Gene co-expression network analysis tool cemitool cemitool CEMiTool It unifies the discovery and the analysis of coexpression gene modules in a fully automatic manner, while providing a user-friendly html report with high quality graphs. Our tool evaluates if modules contain genes that are over-represented by specific pathways or that are altered in a specific sample group. Additionally, CEMiTool is able to integrate transcriptomic data with interactome information, identifying the potential hubs on each network. Enrichment analysis, Pathway or network analysis Gene expression, Transcriptomics, Microarray experiment To update https://www.bioconductor.org/packages/release/bioc/html/CEMiTool.html Transcriptomics, RNA, Statistics cemitool iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cemitool https://github.com/galaxyproject/tools-iuc/tree/main/tools/cemitool 1.18.1 bioconductor-cemitool 1.26.0 Enrichment analysis, Pathway or network analysis Transcriptomics, Microarray experiment 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 9 98 False +cherri cherri_eval, cherri_train Computational Help Evaluating RNA-RNA interactions cherri cherri cherri CheRRI detects functional RNA-RNA interaction (RRI) sites, by evaluating if an interaction site most likely occurs in nature. It helps to filter interaction sites generated either experimentally or by an RRI prediction algorithm by removing false positive interactions. Molecular interactions, pathways and networks, Structure analysis, Machine learning To update https://github.com/BackofenLab/Cherri Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cherri https://github.com/galaxyproject/tools-iuc/tree/main/tools/cherri 0.7 cherri 0.8 Molecular interactions, pathways and networks, Structure analysis, Machine learning 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 207 False +chira chira_collapse, chira_extract, chira_map, chira_merge, chira_quantify Chimeric Read Annotator for RNA-RNA interactome data chira chira ChiRA ChiRA is a tool suite to analyze RNA-RNA interactome experimental data such as CLASH, CLEAR-CLIP, PARIS, SPLASH, etc. RNA, Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA Up-to-date https://github.com/pavanvidem/chira RNA, Transcriptomics, Sequence Analysis chira iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/chira https://github.com/galaxyproject/tools-iuc/tree/main/tools/chira 1.4.3 chira 1.4.3 Molecular interactions, pathways and networks, Functional, regulatory and non-coding RNA 5 0 5 0 5 0 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 97 6418 False +cite_seq_count cite_seq_count Count CMO/HTO CITE-seq-Count CITE-seq-Count CITE-seq-Count Tool for counting antibody TAGS from a CITE-seq and/or cell hashing experiment. RNA-Seq quantification Transcriptomics, Immunoproteins and antigens Up-to-date https://github.com/Hoohm/CITE-seq-Count Transcriptomics cite_seq_count iuc https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count https://github.com/galaxyproject/tools-iuc/tree/main/tools/cite_seq_count 1.4.4 cite-seq-count 1.4.4 RNA-Seq quantification Transcriptomics, Immunoproteins and antigens 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 18 False +cosg cosg Marker gene identification for single-cell sequencing data using COSG. Up-to-date https://github.com/genecell/COSG Transcriptomics, Sequence Analysis cosg iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/cosg/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/cosg 1.0.1 cosg 1.0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +cpat cpat Coding-potential assessment tool using an alignment-free logistic regression model. Up-to-date https://github.com/liguowang/cpat Transcriptomics cpat bgruening https://github.com/bgruening/galaxytools/tree/master/tools/cpat https://github.com/bgruening/galaxytools/tree/master/tools/cpat 3.0.5 cpat 3.0.5 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 21 134 False +cpm_tpm_rpk cpm_tpm_rpk Generate CPM,TPM or RPK from raw counts To update http://artbio.fr Transcriptomics cpm_tpm_rpk artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk https://github.com/ARTbio/tools-artbio/tree/main/tools/cpm_tpm_rpk 0.5.2 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +crosscontamination_barcode_filter crosscontamination_barcode_filter Barcode contamination discovery tool To update Transcriptomics, Visualization crosscontamination_barcode_filter iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/crosscontamination_barcode_filter https://github.com/galaxyproject/tools-iuc/tree/main/tools/crosscontamination_barcode_filter 0.3 r-ggplot2 2.2.1 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 17 347 False +cuffcompare cuffcompare Galaxy wrappers for the Cuffcompare tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffcompare devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffcompare 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 65 1130 False +cuffdiff cuffdiff Galaxy wrappers for the Cuffdiff tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffdiff devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffdiff https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffdiff 2.2.1 cufflinks 2.2.1 1 0 1 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 228 5831 False +cufflinks cufflinks Galaxy wrappers for the Cufflinks tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cufflinks devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cufflinks https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cufflinks 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 1 319 32218 False +cuffmerge cuffmerge Galaxy wrappers for the Cuffmerge tool. Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffmerge devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffmerge https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffmerge 2.2.1 cufflinks 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 122 3292 False +cuffnorm cuffnorm The Cuffnorm tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffnorm devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffnorm https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffnorm 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 27 660 False +cuffquant cuffquant The Cuffquant tool Up-to-date http://cole-trapnell-lab.github.io/cufflinks/ Transcriptomics cuffquant devteam https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/cufflinks/cuffquant https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/cufflinks/cuffquant 2.2.1 cufflinks 2.2.1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 18 688 False +data-hca hca_matrix_downloader Tools for interacting with the Human Cell Atlas resource https://prod.data.humancellatlas.org/explore/projects To update Transcriptomics, Sequence Analysis suite_human_cell_atlas_tools ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-hca v0.0.4+galaxy0 hca-matrix-downloader 0.0.4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 34 439 False +data-scxa retrieve_scxa Tools for interacting with the EMBL-EBI Expression Atlas resource https://www.ebi.ac.uk/gxa/home https://www.ebi.ac.uk/gxa/sc/home To update Transcriptomics, Sequence Analysis suite_ebi_expression_atlas ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/data-scxa v0.0.2+galaxy2 wget 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 99 799 False +decoupler score_genes_aucell, decoupler_pathway_inference, decoupler_pseudobulk decoupler - Ensemble of methods to infer biological activities To update https://decoupler-py.readthedocs.io/en/latest/ Transcriptomics suite_decoupler ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/decoupler 1.4.0+galaxy3 decoupler 1.5.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 False +deg_annotate deg_annotate Annotate DESeq2/DEXSeq output tables To update Transcriptomics deg_annotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deg_annotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/deg_annotate 1.1.0 bedtools 2.31.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1774 19910 False +deseq2 deseq2 Differential gene expression analysis based on the negative binomial distribution DESeq2 DESeq2 DESeq2 R/Bioconductor package for differential gene expression analysis based on the negative binomial distribution. Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution. Differential gene expression analysis, RNA-Seq analysis RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics deseq2 iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/deseq2 https://github.com/galaxyproject/tools-iuc/tree/main/tools/deseq2 2.11.40.8 bioconductor-deseq2 1.42.0 Differential gene expression analysis, RNA-Seq analysis RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 4990 95752 False +deseq2_normalization deseq2_normalization Normalizes gene hitlists To update http://artbio.fr RNA, Transcriptomics, Sequence Analysis, Statistics deseq2_normalization artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization https://github.com/ARTbio/tools-artbio/tree/main/tools/deseq2_normalization 1.40.2+galaxy0 bioconductor-deseq2 1.42.0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +dexseq dexseq, dexseq_count, plotdexseq Inference of differential exon usage in RNA-Seq dexseq dexseq DEXSeq The package is focused on finding differential exon usage using RNA-seq exon counts between samples with different experimental designs. It provides functions that allows the user to make the necessary statistical tests based on a model that uses the negative binomial distribution to estimate the variance between biological replicates and generalized linear models for testing. The package also provides functions for the visualization and exploration of the results. Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq Up-to-date https://www.bioconductor.org/packages/release/bioc/html/DEXSeq.html Transcriptomics, RNA, Statistics dexseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dexseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/dexseq 1.48.0 bioconductor-dexseq 1.48.0 Enrichment analysis, Exonic splicing enhancer prediction RNA-Seq 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 218 16064 False +dropletutils dropletutils_empty_drops, dropletutils_read_10x De-composed DropletUtils functionality tools, based on https://github.com/ebi-gene-expression-group/dropletutils-scripts and DropletUtils 1.0.3 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_dropletutils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/dropletutils 1.0.4 dropletutils-scripts 0.0.5 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 201 1599 False +dropletutils dropletutils DropletUtils - Utilities for handling droplet-based single-cell RNA-seq data dropletutils dropletutils DropletUtils Provides a number of utility functions for handling single-cell (RNA-seq) data from droplet technologies such as 10X Genomics. This includes data loading, identification of cells from empty droplets, removal of barcode-swapped pseudo-cells, and downsampling of the count matrix. Loading, Community profiling Gene expression, RNA-seq, Sequencing, Transcriptomics To update https://bioconductor.org/packages/devel/bioc/html/DropletUtils.html Transcriptomics, Sequence Analysis dropletutils iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/dropletutils/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/dropletutils 1.10.0 bioconductor-dropletutils 1.22.0 Sequencing, Transcriptomics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 126 3934 False +edger edger Perform RNA-Seq differential expression analysis using edgeR pipeline edger edger edgeR Differential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE. Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq To update http://bioconductor.org/packages/release/bioc/html/edgeR.html Transcriptomics, RNA, Statistics edger iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/edger https://github.com/galaxyproject/tools-iuc/tree/main/tools/edger 3.36.0 bioconductor-edger 4.0.16 Differential gene expression analysis Genetics, RNA-Seq, ChIP-seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 1 945 18117 False +egsea egsea This tool implements the Ensemble of Gene Set Enrichment Analyses (EGSEA) method for gene set testing egsea egsea EGSEA This package implements the Ensemble of Gene Set Enrichment Analyses method for gene set testing. Gene set testing Systems biology To update https://bioconductor.org/packages/release/bioc/html/EGSEA.html Transcriptomics, RNA, Statistics egsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/egsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/egsea 1.20.0 bioconductor-egsea 1.28.0 Gene set testing Systems biology 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 177 2524 False +fastq_provider fastq_provider Retrieval and download of FASTQ files from ENA and other repositories such as HCA. To update https://github.com/ebi-gene-expression-group/atlas-fastq-provider Data Source, RNA, Transcriptomics atlas_fastq_provider ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/fastq_provider https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/fastq_provider 0.4.4 atlas-fastq-provider 0.4.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +fastq_utils fastq_filter_n, fastq_trim_poly_at Set of tools for handling fastq files To update https://github.com/nunofonseca/fastq_utils Transcriptomics, RNA fastq_utils ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utils https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/qc/fastq_utils 0.25.1+galaxy0 fastq_utils 0.25.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +featurecounts featurecounts featureCounts counts the number of reads aligned to defined masked regions in a reference genome featurecounts featurecounts FeatureCounts featureCounts is a very efficient read quantifier. It can be used to summarize RNA-seq reads and gDNA-seq reads to a variety of genomic features such as genes, exons, promoters, gene bodies and genomic bins. It is included in the Bioconductor Rsubread package and also in the SourceForge Subread package. Read summarisation, RNA-Seq quantification RNA-Seq To update http://bioinf.wehi.edu.au/featureCounts RNA, Transcriptomics, Sequence Analysis featurecounts iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/featurecounts https://github.com/galaxyproject/tools-iuc/tree/main/tools/featurecounts 2.0.3 subread 2.0.6 Read summarisation, RNA-Seq quantification RNA-Seq 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 1 4679 696399 False +fgsea fgsea Perform gene set testing using fgsea fgsea fgsea fgsea The package implements an algorithm for fast gene set enrichment analysis. Using the fast algorithm allows to make more permutations and get more fine grained p-values, which allows to use accurate stantard approaches to multiple hypothesis correction. Gene-set enrichment analysis Genetics To update https://bioconductor.org/packages/release/bioc/html/fgsea.html Visualization, Transcriptomics, Statistics fgsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/fgsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/fgsea 1.8.0+galaxy1 bioconductor-fgsea 1.28.0 Gene-set enrichment analysis Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 307 5240 False +garnett garnett_check_markers, garnett_classify_cells, garnett_get_feature_genes, garnett_get_std_output, garnett_train_classifier, garnett_transform_markers, update_marker_file De-composed Garnett functionality tools, see https://github.com/ebi-gene-expression-group/garnett-cli and r-garnett 0.2.8 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_garnett ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/garnett 0.2.8 garnett-cli 0.0.5 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 27 False +genomic_super_signature genomic_super_signature Interpretation of RNAseq experiments through robust, efficient comparison to public databases genomicsupersignature genomicsupersignature GenomicSuperSignature GenomicSuperSignature is a package for the interpretation of RNA-seq experiments through robust, efficient comparison to public databases. Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment To update https://github.com/shbrief/GenomicSuperSignature Sequence Analysis, RNA, Transcriptomics genomic_super_signature iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/genomic_super_signature https://github.com/galaxyproject/tools-iuc/tree/main/tools/genomic_super_signature 1.2.0 bioconductor-genomicsupersignature 1.10.0 Gene-set enrichment analysis, Essential dynamics, Deposition, Principal component visualisation, Dimensionality reduction RNA-Seq, Transcriptomics, Microbial ecology, Genotype and phenotype, Microarray experiment 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 11 46 False +gffcompare gffcompare Galaxy wrappers for Geo Pertea's GffCompare package. gffcompare gffcompare gffcompare Program for comparing, annotating, merging and tracking transcripts in GFF files. Sequence annotation Nucleic acids, Sequence analysis Up-to-date https://github.com/gpertea/gffcompare/ Transcriptomics gffcompare iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/gffcompare https://github.com/galaxyproject/tools-iuc/tree/main/tools/gffcompare 0.12.6 gffcompare 0.12.6 Sequence annotation Nucleic acids, Sequence analysis 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 381 3477 False +gsc_filter_cells filter_cells Filter single cell RNAseq data on libray depth and number of detected genes To update http://artbio.fr Transcriptomics gsc_filter_cells artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_cells 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_filter_genes filter_genes Filter genes that are detected in less than a fraction of libraries in single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_filter_genes artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_filter_genes 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_gene_expression_correlations single_cell_gene_expression_correlations Compute single-cell paire-wise gene expressions correlations To update http://artbio.fr Transcriptomics gsc_gene_expression_correlations artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/gsc_gene_expression_correlations https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_gene_expression_correlations 4.3.1+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_high_dimensions_visualisation high_dimensions_visualisation Generates PCA, t-SNE and HCPC visualisation To update http://artbio.fr Transcriptomics, Visualization gsc_high_dimensions_visualisation artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimension_visualization https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_high_dimensions_visualisation 4.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_mannwhitney_de mannwhitney_de Perform a mann-whitney differential testing between two sets of gene expression data To update http://artbio.fr Transcriptomics gsc_mannwhitney_de artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_mannwhitney_de 4.1.3+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +gsc_scran_normalize scran_normalize Normalize raw counts using scran To update http://artbio.fr Transcriptomics gsc_scran_normalize artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_scran_normalize 1.28.1+galaxy0 bioconductor-scran 1.30.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 14 78 False +gsc_signature_score signature_score Compute signature scores from single cell RNAseq data To update http://artbio.fr Transcriptomics gsc_signature_score artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score https://github.com/ARTbio/tools-artbio/tree/main/tools/gsc_signature_score 2.3.9+galaxy0 r-optparse 1.3.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +heinz heinz_bum, heinz, heinz_scoring, heinz_visualization An algorithm for identification of the optimal scoring subnetwork. heinz heinz, bionet Heinz Tool for single-species active module discovery. Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks To update https://github.com/ls-cwi/heinz Transcriptomics, Visualization, Statistics heinz iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz https://github.com/galaxyproject/tools-iuc/tree/main/tools/heinz 1.0 bioconductor-bionet 1.62.0 Pathway or network analysis Genetics, Gene expression, Molecular interactions, pathways and networks 4 4 4 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 242 1186 False +isoformswitchanalyzer isoformswitchanalyzer Statistical identification of isoform switching from RNA-seq derived quantification of novel and/or annotated full-length isoforms. IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR IsoformSwitchAnalyzeR Enables identification of isoform switches with predicted functional consequences from RNA-seq data. Consequences can be chosen from a long list but includes protein domains gain/loss changes in NMD sensitivity etc. It directly supports import of data from Cufflinks/Cuffdiff, Kallisto, Salmon and RSEM but other transcript qunatification tools are easy to import as well. Sequence comparison, Sequence analysis Computational biology, Gene transcripts To update https://bioconductor.org/packages/devel/bioc/html/IsoformSwitchAnalyzeR.html Transcriptomics, RNA, Statistics isoformswitchanalyzer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/isoformswitchanalyzer https://github.com/galaxyproject/tools-iuc/tree/main/tools/isoformswitchanalyzer 1.20.0 bioconductor-isoformswitchanalyzer 2.2.0 Sequence comparison, Sequence analysis Computational biology, Gene transcripts 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 29 822 False +kallisto kallisto_pseudo, kallisto_quant kallisto is a program for quantifying abundances of transcripts from RNA-Seqdata, or more generally of target sequences using high-throughput sequencingreads. It is based on the novel idea of pseudoalignment for rapidlydetermining the compatibility of reads with targets, without the need foralignment. kallisto kallisto kallisto A program for quantifying abundances of transcripts from RNA-Seq data, or more generally of target sequences using high-throughput sequencing reads. It is based on the novel idea of pseudoalignment for rapidly determining the compatibility of reads with targets, without the need for alignment. Gene expression profiling Transcriptomics, RNA-seq, Gene expression To update https://pachterlab.github.io/kallisto/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/kallisto 0.48.0 kallisto 0.50.1 Gene expression profiling Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 299 24155 False +limma_voom limma_voom Perform RNA-Seq differential expression analysis using limma voom pipeline limma limma limma Data analysis, linear models and differential expression for microarray data. RNA-Seq analysis Molecular biology, Genetics Up-to-date http://bioconductor.org/packages/release/bioc/html/limma.html Transcriptomics, RNA, Statistics limma_voom iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/limma_voom https://github.com/galaxyproject/tools-iuc/tree/main/tools/limma_voom 3.58.1 bioconductor-limma 3.58.1 RNA-Seq analysis Molecular biology, Genetics 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1012 20344 False +masigpro masigpro Identify significantly differential expression profiles in time-course microarray experiments masigpro masigpro maSigPro Regression based approach to find genes for which there are significant gene expression profile differences between experimental groups in time course microarray and RNA-Seq experiments. Regression analysis Gene expression, Molecular genetics, Microarray experiment, RNA-Seq To update https://www.bioconductor.org/packages/release/bioc/html/maSigPro.html Transcriptomics, RNA, Statistics masigpro iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/masigpro https://github.com/galaxyproject/tools-iuc/tree/main/tools/masigpro 1.49.3 coreutils 8.25 Regression analysis Gene expression, Microarray experiment, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 13 576 False +mircounts mircounts Generates miRNA count lists from read alignments to mirBase. To update http://artbio.fr RNA, Transcriptomics mircounts artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts https://github.com/ARTbio/tools-artbio/tree/main/tools/mircounts 1.6 tar 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 False +monocle3 monocle3_create, monocle3_diffExp, monocle3_learnGraph, monocle3_orderCells, monocle3_partition, monocle3_plotCells, monocle3_preprocess, monocle3_reduceDim, monocle3_topmarkers De-composed monocle3 functionality tools, based on https://github.com/ebi-gene-expression-group/monocle-scripts and monocle3 0.1.2. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_monocle3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/monocle3 0.1.4 monocle3-cli 0.0.9 9 0 9 0 9 0 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 264 3266 False +multigsea multigsea GSEA-based pathway enrichment analysis for multi-omics data multiGSEA multiGSEA multiGSEA A GSEA-based pathway enrichment analysis for multi-omics data.multiGSEA: a GSEA-based pathway enrichment analysis for multi-omics data, BMC Bioinformatics 21, 561 (2020).Combining GSEA-based pathway enrichment with multi omics data integration. Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules Up-to-date https://bioconductor.org/packages/devel/bioc/html/multiGSEA.html Transcriptomics, Proteomics, Statistics multigsea iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/multigsea https://github.com/galaxyproject/tools-iuc/tree/main/tools/multigsea 1.12.0 bioconductor-multigsea 1.12.0 Gene-set enrichment analysis, Aggregation, Pathway analysis Metabolomics, Molecular interactions, pathways and networks, Proteomics, Transcriptomics, Small molecules 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 53 False +music_deconvolution music_construct_eset, music_inspect_eset, music_manipulate_eset, music_compare, music_deconvolution Multi-subject Single Cell deconvolution (MuSiC) Up-to-date https://github.com/xuranw/MuSiC Transcriptomics music bgruening https://github.com/galaxyproject/tools-iuc/tree/master/tools/music/ https://github.com/bgruening/galaxytools/tree/master/tools/music_deconvolution 0.1.1 music-deconvolution 0.1.1 5 5 4 0 5 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 240 1872 False +nugen_nudup nugen_nudup Marks/removes PCR introduced duplicate molecules based on the molecular tagging technology used in NuGEN products. nudup nudup NuDup Marks/removes duplicate molecules based on the molecular tagging technology used in Tecan products. Duplication detection Sequencing Up-to-date https://github.com/tecangenomics/nudup SAM, Metagenomics, Sequence Analysis, Transcriptomics nugen_nudup iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/nugen_nudup https://github.com/galaxyproject/tools-iuc/tree/main/tools/nugen_nudup 2.3.3 nudup 2.3.3 Duplication detection Sequencing 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +pathifier pathifier pathifier Up-to-date https:// Transcriptomics, Statistics pathifier artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier https://github.com/ARTbio/tools-artbio/tree/main/tools/pathifier 1.40.0 bioconductor-pathifier 1.40.0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 10 228 False +pizzly pizzly Pizzly is a program for detecting gene fusions from RNA-Seq data of cancer samples. To update https://github.com/pmelsted/pizzly/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/pizzly/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/pizzly 0.37.3.1 pizzly 0.37.3 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 16 208 False +psiclass psiclass PsiCLASS is a reference-based transcriptome assembler for single or multiple RNA-seq samples. psiclass psiclass Up-to-date https://github.com/splicebox/PsiCLASS Transcriptomics psiclass iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/psiclass https://github.com/galaxyproject/tools-iuc/tree/main/tools/psiclass 1.0.3 psiclass 1.0.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 15 False +qualimap qualimap_bamqc, qualimap_counts, qualimap_multi_bamqc, qualimap_rnaseq qualimap qualimap QualiMap Platform-independent application written in Java and R that provides both a Graphical User Inteface (GUI) and a command-line interface to facilitate the quality control of alignment sequencing data. Sequencing quality control Data quality management To update http://qualimap.bioinfo.cipf.es/ Sequence Analysis, Transcriptomics, SAM qualimap iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/qualimap https://github.com/galaxyproject/tools-iuc/tree/main/tools/qualimap 2.2.2d qualimap 2.3 Sequencing quality control Data quality management 4 4 4 1 4 4 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 4 4 1328 664470 False +raceid raceid_clustering, raceid_filtnormconf, raceid_inspectclusters, raceid_inspecttrajectory, raceid_trajectory RaceID3, StemID2, FateID - scRNA analysis To update https://github.com/dgrun/RaceID3_StemID2_package/ Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/raceid3 https://github.com/galaxyproject/tools-iuc/tree/main/tools/raceid 0.2.3 r-raceid 0.1.3 5 5 5 1 5 5 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 82 4569 False +repenrich edger-repenrich, repenrich Repeat element profiling To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich Transcriptomics repenrich artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich 2.31.1 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 False +repenrich2 edger-repenrich2, repenrich2 Repeat element profiling using bowtie2 aligner To update https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 Transcriptomics repenrich2 artbio https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 https://github.com/ARTbio/tools-artbio/tree/main/tools/repenrich2 2.31.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 False +rgrnastar rna_star, rna_starsolo RNA STAR is an ultra fast universal RNA and scRNA-seq aligner and mapper star star STAR Ultrafast universal RNA-seq data aligner Sequence alignment RNA-Seq, Transcriptomics To update https://github.com/alexdobin/STAR Next Gen Mappers, Transcriptomics rgrnastar iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/rgrnastar https://github.com/galaxyproject/tools-iuc/tree/main/tools/rgrnastar 2.7.11a star 2.7.11b Sequence alignment RNA-Seq, Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 2 0 0 0 1 0 0 0 0 0 1 0 0 2 2 4015 425658 False +ribowaltz ribowaltz_process, ribowaltz_plot Calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data riboWaltz riboWaltz riboWaltz riboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data. Computational biology To update https://github.com/LabTranslationalArchitectomics/riboWaltz Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ribowaltz https://github.com/galaxyproject/tools-iuc/tree/main/tools/ribowaltz 1.2.0 ribowaltz 2.0 Computational biology 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 14 161 False +rsem extract_transcript_to_gene_map_from_trinity, purgegtffrommultichromgenes, rsembowtie2, rsembowtie transcript quantification from RNA-Seq data To update https://github.com/deweylab/RSEM Transcriptomics, RNA rsem artbio https://github.com/artbio/tools-artbio/tree/master/tools/rsem https://github.com/ARTbio/tools-artbio/tree/main/tools/rsem rsem 1.3.3 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 1 1 67 377 False +rseqc rseqc_FPKM_count, rseqc_RNA_fragment_size, rseqc_RPKM_saturation, rseqc_bam2wig, rseqc_bam_stat, rseqc_clipping_profile, rseqc_deletion_profile, rseqc_geneBody_coverage, rseqc_geneBody_coverage2, rseqc_infer_experiment, rseqc_inner_distance, rseqc_insertion_profile, rseqc_junction_annotation, rseqc_junction_saturation, rseqc_mismatch_profile, rseqc_read_GC, rseqc_read_NVC, rseqc_read_distribution, rseqc_read_duplication, rseqc_read_hexamer, rseqc_read_quality, rseqc_tin an RNA-seq quality control package rseqc rseqc RSeQC Provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. Some basic modules quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while RNA-seq specific modules evaluate sequencing saturation, mapped reads distribution, coverage uniformity, strand specificity, transcript level RNA integrity etc. Data handling Sequencing Up-to-date https://code.google.com/p/rseqc/ Convert Formats, Sequence Analysis, RNA, Transcriptomics, Visualization rseqc nilesh https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc https://github.com/galaxyproject/tools-iuc/tree/main/tools/rseqc 5.0.3 rseqc 5.0.3 Data handling Sequencing 22 22 22 22 22 22 22 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 0 0 0 22 0 0 0 0 0 0 0 0 22 22 3206 133498 False +ruvseq ruvseq Remove Unwanted Variation from RNA-Seq Data ruvseq ruvseq RUVSeq This package implements the remove unwanted variation (RUV) methods for the normalization of RNA-Seq read counts between samples. Differential gene expression analysis Gene expression, RNA-seq To update https://www.bioconductor.org/packages/release/bioc/html/DESeq2.html Transcriptomics, RNA, Statistics ruvseq iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/ruvseq https://github.com/galaxyproject/tools-iuc/tree/main/tools/ruvseq 1.26.0 bioconductor-ruvseq 1.36.0 Differential gene expression analysis Gene expression 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 76 1236 False +salmon alevin, salmon, salmonquantmerge Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimates from RNA-seq and single-cell data. salmon salmon Salmon A tool for transcript expression quantification from RNA-seq data Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Gene expression, Transcriptomics To update https://github.com/COMBINE-lab/salmon Sequence Analysis, RNA, Transcriptomics bgruening https://github.com/bgruening/galaxytools/tree/master/tools/salmon https://github.com/bgruening/galaxytools/tree/master/tools/salmon 1.10.1 salmon 1.10.3 Sequence composition calculation, RNA-Seq quantification, Gene expression analysis RNA-Seq, Transcriptomics 2 1 3 1 2 1 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 3 3 969 61937 False +sashimi_plot sashimi_plot Generates a sashimi plot from bam files. To update http://artbio.fr RNA, Transcriptomics, Graphics, Visualization sashimi_plot artbio https://github.com/ARTbio/tools-artbio/tree/master/tools/sashimi_plot https://github.com/ARTbio/tools-artbio/tree/main/tools/sashimi_plot 0.1.1 python 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 False +sc3 sc3_calc_biology, sc3_calc_consens, sc3_calc_dists, sc3_calc_transfs, sc3_estimate_k, sc3_kmeans, sc3_prepare De-composed SC3 functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-sc3-scripts and SC3 1.8.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_sc3 ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sc3 1.8.0 sc3-scripts 0.0.6 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 9 False +scanpy scanpy_cluster_reduce_dimension, scanpy_filter, scanpy_inspect, scanpy_normalize, scanpy_plot, scanpy_remove_confounders Scanpy – Single-Cell Analysis in Python scanpy scanpy SCANPY Scalable toolkit for analyzing single-cell gene expression data. It includes preprocessing, visualization, clustering, pseudotime and trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. Differential gene expression analysis Gene expression, Cell biology, Genetics To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis scanpy iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scanpy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/scanpy 1.9.6 scanpy 1.7.2 Differential gene expression analysis Gene expression, Cell biology, Genetics 6 6 6 0 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 766 51978 False +scanpy anndata_ops, scanpy_filter_cells, scanpy_filter_genes, scanpy_find_cluster, scanpy_find_markers, scanpy_find_variable_genes, scanpy_integrate_bbknn, scanpy_integrate_combat, scanpy_integrate_harmony, scanpy_integrate_mnn, scanpy_plot_scrublet, scanpy_multiplet_scrublet, scanpy_compute_graph, scanpy_normalise_data, scanpy_parameter_iterator, scanpy_plot_embed, scanpy_plot_trajectory, scanpy_read_10x, scanpy_regress_variable, scanpy_run_diffmap, scanpy_run_dpt, scanpy_run_fdg, scanpy_run_paga, scanpy_run_pca, scanpy_run_tsne, scanpy_run_umap, scanpy_scale_data scanpy-scripts, command-line wrapper scripts around Scanpy. To update https://scanpy.readthedocs.io Transcriptomics, Sequence Analysis, RNA scanpy_scripts ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/scanpy https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scanpy 1.9.3 scanpy-scripts 1.9.301 22 27 27 0 22 27 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 13 2185 39356 False +scater scater_calculate_cpm, scater_calculate_qc_metrics, scater_filter, scater_is_outlier, scater_normalize, scater_read_10x_results De-composed Scater functionality tools, based on https://github.com/ebi-gene-expression-group/bioconductor-scater-scripts and Scater 1.8.4. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scater ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scater 1.10.0 scater-scripts 0.0.5 0 1 6 0 0 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 16 387 False +scater scater_create_qcmetric_ready_sce, scater_filter, scater_plot_dist_scatter, scater_plot_pca, scater_plot_tsne Scater (Single-Cell Analysis Toolkit for gene Expression data in R) is acollection of tools for doing various analyses of single-cell RNA-seq geneexpression data, with a focus on quality control and visualization. scater scater scater Pre-processing, quality control, normalization and visualization of single-cell RNA-seq data. Read pre-processing, Sequencing quality control, Sequence visualisation RNA-seq, Quality affairs, Molecular genetics To update http://bioconductor.org/packages/scater/ Transcriptomics, RNA, Visualization iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scater https://github.com/galaxyproject/tools-iuc/tree/main/tools/scater 1.22.0 bioconductor-scater 1.30.1 Read pre-processing, Sequence visualisation Quality affairs, Molecular genetics 0 5 5 0 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 77 1365 False +sccaf run_sccaf, sccaf_asses, sccaf_asses_merger, sccaf_regress_out SCCAF: Single Cell Clustering Assessment Framework. To update https://github.com/sccaf/sccaf Transcriptomics SCCAF ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/sccaf https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sccaf 0.0.9 sccaf 0.0.10 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 110 False +sceasy sceasy_convert Converter between difference single-cell formats Up-to-date https://github.com/cellgeni/sceasy/ Transcriptomics sceasy_convert iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sceasy/ https://github.com/galaxyproject/tools-iuc/tree/main/tools/sceasy 0.0.7 r-sceasy 0.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 False +sceasy sceasy_convert Convert scRNA data object between popular formats To update Transcriptomics sceasy ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/sceasy 0.0.5 r-sceasy 0.0.7 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 90 721 False +schicexplorer schicexplorer_schicadjustmatrix, schicexplorer_schiccluster, schicexplorer_schicclustercompartments, schicexplorer_schicclusterminhash, schicexplorer_schicclustersvl, schicexplorer_schicconsensusmatrices, schicexplorer_schiccorrectmatrices, schicexplorer_schiccreatebulkmatrix, schicexplorer_schicdemultiplex, schicexplorer_schicinfo, schicexplorer_schicmergematrixbins, schicexplorer_schicmergetoscool, schicexplorer_schicnormalize, schicexplorer_schicplotclusterprofiles, schicexplorer_schicplotconsensusmatrices, schicexplorer_schicqualitycontrol scHiCExplorer: Set of programs to process, analyze and visualize scHi-C data. To update https://github.com/joachimwolff/schicexplorer Sequence Analysis, Transcriptomics, Visualization schicexplorer iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/schicexplorer https://github.com/galaxyproject/tools-iuc/tree/main/tools/schicexplorer 4 schicexplorer 7 0 0 16 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 16 23 779 False +scmap scmap_get_std_output, scmap_index_cell, scmap_index_cluster, scmap_preprocess_sce, scmap_scmap_cell, scmap_scmap_cluster, scmap_select_features De-composed scmap functionality tools, based on https://github.com/ebi-gene-expression-group/scmap-cli and scmap 1.6.0. To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scmap ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scmap 1.6.4 scmap-cli 0.1.0 0 0 7 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 13 83 False +scpipe scpipe A flexible preprocessing pipeline for single-cell RNA-sequencing data scpipe scpipe scPipe A preprocessing pipeline for single cell RNA-seq data that starts from the fastq files and produces a gene count matrix with associated quality control information. It can process fastq data generated by CEL-seq, MARS-seq, Drop-seq, Chromium 10x and SMART-seq protocols. Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq, Sequencing To update http://bioconductor.org/packages/release/bioc/html/scPipe.html Transcriptomics, RNA, Statistics scpipe iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/scpipe https://github.com/galaxyproject/tools-iuc/tree/main/tools/scpipe 1.0.0+galaxy2 bioconductor-scpipe 2.2.0 Genome annotation, Validation, Alignment, Visualisation Gene expression, RNA-Seq 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 11 628 False +scpred scpred_get_feature_space, scpred_get_std_output, scpred_predict_labels, scpred_train_model De-composed scPred functionality tools, see https://github.com/ebi-gene-expression-group/scpred-cli and r-scPred 1.0 To update Transcriptomics, RNA, Statistics, Sequence Analysis suite_scpred ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/scpred 1.0.2 scpred-cli 0.1.0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 False +seurat seurat A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data To update https://github.com/satijalab/seurat Transcriptomics, RNA, Statistics seurat iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat https://github.com/galaxyproject/tools-iuc/tree/main/tools/seurat 4.3.0.1 r-seurat 3.0.2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 66 1543 False +seurat seurat_convert, seurat_dim_plot, seurat_export_cellbrowser, seurat_filter_cells, seurat_find_clusters, seurat_find_markers, seurat_find_neighbours, seurat_find_variable_genes, seurat_hover_locator, seurat_integration, seurat_map_query, seurat_normalise_data, seurat_plot, seurat_read10x, seurat_run_pca, seurat_run_tsne, seurat_run_umap, seurat_scale_data, seurat_select_integration_features De-composed Seurat functionality tools, based on https://github.com/ebi-gene-expression-group/r-seurat-scripts and Seurat 2.3.1 Up-to-date https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ Transcriptomics, RNA, Statistics, Sequence Analysis suite_seurat ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/seurat 4.0.0 seurat-scripts 4.0.0 0 0 14 11 0 0 14 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 0 0 0 181 1966 False +slamdunk alleyoop, slamdunk Slamdunk maps and quantifies SLAMseq reads Up-to-date http://t-neumann.github.io/slamdunk RNA, Transcriptomics, Sequence Analysis, Next Gen Mappers slamdunk iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/slamdunk https://github.com/galaxyproject/tools-iuc/tree/main/tools/slamdunk 0.4.3 slamdunk 0.4.3 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 361 False +sleuth sleuth Sleuth is a program for differential analysis of RNA-Seq data. sleuth sleuth sleuth A statistical model and software application for RNA-seq differential expression analysis. Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation RNA-seq, Gene expression, Statistics and probability Up-to-date https://github.com/pachterlab/sleuth Transcriptomics, RNA, Statistics sleuth iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/sleuth https://github.com/galaxyproject/tools-iuc/tree/main/tools/sleuth 0.30.1 r-sleuth 0.30.1 Expression data visualisation, Differential gene expression analysis, Gene expression profiling, Statistical calculation Gene expression, Statistics and probability 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 8 64 False +star_fusion star_fusion STAR Fusion detects fusion genes in RNA-Seq data after running RNA-STAR To update Sequence Analysis, Transcriptomics star_fusion iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/star_fusion https://github.com/galaxyproject/tools-iuc/tree/main/tools/star_fusion 0.5.4-3+galaxy1 star-fusion 1.13.0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 35 1212 False +stringtie stringtie, stringtie_merge StringTie is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. stringtie stringtie StringTie Fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional de novo assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus. Transcriptome assembly, RNA-Seq analysis Transcriptomics, RNA-seq Up-to-date http://ccb.jhu.edu/software/stringtie/ Transcriptomics stringtie iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie https://github.com/galaxyproject/tools-iuc/tree/main/tools/stringtie 2.2.3 stringtie 2.2.3 Transcriptome assembly, RNA-Seq analysis Transcriptomics 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2165 167659 False +tophat_fusion_post tophat_fusion_post Wrapper for Tophat-Fusion post step To update Transcriptomics tophat_fusion_post devteam https://github.com/galaxyproject/tools-devteam/tree/master/tools/tophat_fusion_post https://github.com/galaxyproject/tools-devteam/tree/main/tools/tophat_fusion_post 0.1 blast+ 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 15 216 False +transdecoder transdecoder TransDecoder finds coding regions within transcripts TransDecoder TransDecoder TransDecoder TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks. Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing To update https://transdecoder.github.io/ Transcriptomics, RNA transdecoder iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/transdecoder https://github.com/galaxyproject/tools-iuc/tree/main/tools/transdecoder 5.5.0 transdecoder 5.7.1 Coding region prediction, de Novo sequencing, De-novo assembly Genomics, Gene transcripts, RNA-Seq, Gene expression, Sequence assembly, Whole genome sequencing 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 348 5468 False +trinity trinity_abundance_estimates_to_matrix, trinity_align_and_estimate_abundance, trinity_analyze_diff_expr, trinity_contig_exn50_statistic, trinity_define_clusters_by_cutting_tree, describe_samples, trinity_filter_low_expr_transcripts, trinity_gene_to_trans_map, trinity_run_de_analysis, trinity_samples_qccheck, trinity_super_transcripts, trinity, trinity_stats Trinity represents a method for the efficient and robust de novo reconstruction of transcriptomes from RNA-seq datahttps://github.com/trinityrnaseq/trinityrnaseq trinity trinity Trinity Trinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads. Transcriptome assembly Transcriptomics, Gene expression, Gene transcripts Up-to-date https://github.com/trinityrnaseq/trinityrnaseq Transcriptomics, RNA iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinity 2.15.1 trinity 2.15.1 Transcriptome assembly Transcriptomics, Gene transcripts 9 13 13 13 9 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 11 0 0 1 0 0 0 0 0 13 12 1762 31951 False +trinotate trinotate Trinotate is a comprehensive annotation suite designed for automatic functional annotation of de novo transcriptomes. trinotate trinotate Trinotate Comprehensive annotation suite designed for automatic functional annotation of transcriptomes, particularly de novo assembled transcriptomes, from model or non-model organisms. Gene functional annotation Gene expression, Transcriptomics To update https://trinotate.github.io/ Transcriptomics, RNA trinotate iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinotate https://github.com/galaxyproject/tools-iuc/tree/main/tools/trinotate 3.2.2 trinotate 4.0.2 Gene functional annotation Transcriptomics 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 151 1796 False +tximport tximport Wrapper for the Bioconductor package tximport tximport tximport tximport An R/Bioconductor package that imports transcript-level abundance, estimated counts and transcript lengths, and summarizes into matrices for use with downstream gene-level analysis packages. Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows To update http://bioconductor.org/packages/tximport/ Transcriptomics tximport iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/tximport https://github.com/galaxyproject/tools-iuc/tree/main/tools/tximport 1.22.0 bioconductor-tximport 1.30.0 Pathway or network analysis, Formatting, RNA-Seq analysis Transcriptomics, Gene transcripts, Workflows 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 88 1408 False +ucsc-cell-browser ucsc_cell_browser Python pipeline and Javascript scatter plot library for single-cell datasets To update https://cells.ucsc.edu/ Transcriptomics ucsc_cell_browser ebi-gxa https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/tertiary-analysis/ucsc-cell-browser/.shed.yml https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/main/tools/tertiary-analysis/ucsc-cell-browser 1.0.0+galaxy1 ucsc-cell-browser 1.2.6 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 78 941 False +umi_tools umi_tools_count, umi_tools_dedup, umi_tools_extract, umi_tools_group, umi_tools_whitelist UMI-tools extract - Extract UMIs from fastq umi-tools umi-tools UMI-tools Tools for handling Unique Molecular Identifiers in NGS data sets. Sequencing quality control NGS, Sequence sites, features and motifs, Quality affairs To update https://github.com/CGATOxford/UMI-tools Sequence Analysis, Transcriptomics iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools https://github.com/galaxyproject/tools-iuc/tree/main/tools/umi_tools 1.1.2 umi_tools 1.1.5 Sequencing quality control Sequence sites, features and motifs, Quality affairs 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 5 0 0 0 0 0 0 0 0 5 5 379 61618 False +velocyto velocyto_cli Velocyto is a library for the analysis of RNA velocity. Up-to-date http://velocyto.org/ Transcriptomics velocyto iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/velocyto https://github.com/galaxyproject/tools-iuc/tree/main/tools/velocyto 0.17.17 velocyto.py 0.17.17 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 False +volcanoplot volcanoplot Tool to create a Volcano Plot To update https://ggplot2.tidyverse.org/ Visualization, Transcriptomics, Statistics volcanoplot iuc https://github.com/galaxyproject/tools-iuc/tree/master/tools/volcanoplot https://github.com/galaxyproject/tools-iuc/tree/main/tools/volcanoplot 0.0.6 r-ggplot2 2.2.1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1749 30946 False diff --git a/communities/spoc/resources/tools_wordcloud.png b/communities/spoc/resources/tools_wordcloud.png new file mode 100644 index 00000000..b9312415 Binary files /dev/null and b/communities/spoc/resources/tools_wordcloud.png differ diff --git a/subdomains/singlecell/CONTRIBUTORS b/communities/spoc/subdomain/CONTRIBUTORS similarity index 100% rename from subdomains/singlecell/CONTRIBUTORS rename to communities/spoc/subdomain/CONTRIBUTORS diff --git a/subdomains/singlecell/LICENSE b/communities/spoc/subdomain/LICENSE similarity index 100% rename from subdomains/singlecell/LICENSE rename to communities/spoc/subdomain/LICENSE diff --git a/subdomains/singlecell/README.md b/communities/spoc/subdomain/README.md similarity index 100% rename from subdomains/singlecell/README.md rename to communities/spoc/subdomain/README.md diff --git a/subdomains/singlecell/base.yml b/communities/spoc/subdomain/base.yml similarity index 100% rename from subdomains/singlecell/base.yml rename to communities/spoc/subdomain/base.yml diff --git a/subdomains/singlecell/sections/1_beginner.yml b/communities/spoc/subdomain/sections/1_beginner.yml similarity index 100% rename from subdomains/singlecell/sections/1_beginner.yml rename to communities/spoc/subdomain/sections/1_beginner.yml diff --git a/subdomains/singlecell/sections/2_intermediate.yml b/communities/spoc/subdomain/sections/2_intermediate.yml similarity index 100% rename from subdomains/singlecell/sections/2_intermediate.yml rename to communities/spoc/subdomain/sections/2_intermediate.yml diff --git a/subdomains/singlecell/sections/3_advanced.yml b/communities/spoc/subdomain/sections/3_advanced.yml similarity index 100% rename from subdomains/singlecell/sections/3_advanced.yml rename to communities/spoc/subdomain/sections/3_advanced.yml diff --git a/subdomains/singlecell/sections/4_community.yml b/communities/spoc/subdomain/sections/4_community.yml similarity index 100% rename from subdomains/singlecell/sections/4_community.yml rename to communities/spoc/subdomain/sections/4_community.yml diff --git a/subdomains/singlecell/static/custom.css b/communities/spoc/subdomain/static/custom.css similarity index 100% rename from subdomains/singlecell/static/custom.css rename to communities/spoc/subdomain/static/custom.css diff --git a/subdomains/singlecell/static/logo_single_cell.svg b/communities/spoc/subdomain/static/logo_single_cell.svg similarity index 100% rename from subdomains/singlecell/static/logo_single_cell.svg rename to communities/spoc/subdomain/static/logo_single_cell.svg diff --git a/subdomains/singlecell/templates/conclusion.html b/communities/spoc/subdomain/templates/conclusion.html similarity index 100% rename from subdomains/singlecell/templates/conclusion.html rename to communities/spoc/subdomain/templates/conclusion.html diff --git a/subdomains/singlecell/templates/footer.html b/communities/spoc/subdomain/templates/footer.html similarity index 100% rename from subdomains/singlecell/templates/footer.html rename to communities/spoc/subdomain/templates/footer.html diff --git a/subdomains/singlecell/templates/intro.html b/communities/spoc/subdomain/templates/intro.html similarity index 100% rename from subdomains/singlecell/templates/intro.html rename to communities/spoc/subdomain/templates/intro.html diff --git a/subdomains/singlecell/tool_panel/hca-scanpy.yml b/communities/spoc/subdomain/tool_panel/hca-scanpy.yml similarity index 100% rename from subdomains/singlecell/tool_panel/hca-scanpy.yml rename to communities/spoc/subdomain/tool_panel/hca-scanpy.yml diff --git a/subdomains/singlecell/tool_panel/hca-scanpy.yml.lock b/communities/spoc/subdomain/tool_panel/hca-scanpy.yml.lock similarity index 100% rename from subdomains/singlecell/tool_panel/hca-scanpy.yml.lock rename to communities/spoc/subdomain/tool_panel/hca-scanpy.yml.lock diff --git a/subdomains/singlecell/tool_panel/hicexplorer.yml b/communities/spoc/subdomain/tool_panel/hicexplorer.yml similarity index 100% rename from subdomains/singlecell/tool_panel/hicexplorer.yml rename to communities/spoc/subdomain/tool_panel/hicexplorer.yml diff --git a/subdomains/singlecell/tool_panel/hicexplorer.yml.lock b/communities/spoc/subdomain/tool_panel/hicexplorer.yml.lock similarity index 100% rename from subdomains/singlecell/tool_panel/hicexplorer.yml.lock rename to communities/spoc/subdomain/tool_panel/hicexplorer.yml.lock diff --git a/subdomains/singlecell/tool_panel/import.yml b/communities/spoc/subdomain/tool_panel/import.yml similarity index 100% rename from subdomains/singlecell/tool_panel/import.yml rename to communities/spoc/subdomain/tool_panel/import.yml diff --git a/subdomains/singlecell/tool_panel/import.yml.lock b/communities/spoc/subdomain/tool_panel/import.yml.lock similarity index 100% rename from subdomains/singlecell/tool_panel/import.yml.lock rename to communities/spoc/subdomain/tool_panel/import.yml.lock diff --git a/subdomains/singlecell/tool_panel/multiomics.yml b/communities/spoc/subdomain/tool_panel/multiomics.yml similarity index 100% rename from subdomains/singlecell/tool_panel/multiomics.yml rename to communities/spoc/subdomain/tool_panel/multiomics.yml diff --git a/subdomains/singlecell/tool_panel/multiomics.yml.lock b/communities/spoc/subdomain/tool_panel/multiomics.yml.lock similarity index 100% rename from subdomains/singlecell/tool_panel/multiomics.yml.lock rename to communities/spoc/subdomain/tool_panel/multiomics.yml.lock diff --git a/subdomains/singlecell/tool_panel/sccaf.yml b/communities/spoc/subdomain/tool_panel/sccaf.yml similarity index 100% rename from subdomains/singlecell/tool_panel/sccaf.yml rename to communities/spoc/subdomain/tool_panel/sccaf.yml diff --git a/subdomains/singlecell/tool_panel/sccaf.yml.lock b/communities/spoc/subdomain/tool_panel/sccaf.yml.lock similarity index 100% rename from subdomains/singlecell/tool_panel/sccaf.yml.lock rename to communities/spoc/subdomain/tool_panel/sccaf.yml.lock diff --git a/subdomains/singlecell/tool_panel/seurat.yml b/communities/spoc/subdomain/tool_panel/seurat.yml similarity index 100% rename from subdomains/singlecell/tool_panel/seurat.yml rename to communities/spoc/subdomain/tool_panel/seurat.yml diff --git a/subdomains/singlecell/tool_panel/seurat.yml.lock b/communities/spoc/subdomain/tool_panel/seurat.yml.lock similarity index 100% rename from subdomains/singlecell/tool_panel/seurat.yml.lock rename to communities/spoc/subdomain/tool_panel/seurat.yml.lock diff --git a/subdomains/singlecell/tool_panel/single_cell.yml b/communities/spoc/subdomain/tool_panel/single_cell.yml similarity index 100% rename from subdomains/singlecell/tool_panel/single_cell.yml rename to communities/spoc/subdomain/tool_panel/single_cell.yml diff --git a/subdomains/singlecell/tool_panel/single_cell.yml.lock b/communities/spoc/subdomain/tool_panel/single_cell.yml.lock similarity index 100% rename from subdomains/singlecell/tool_panel/single_cell.yml.lock rename to communities/spoc/subdomain/tool_panel/single_cell.yml.lock diff --git a/subdomains/singlecell/tool_panel/spatial.yml b/communities/spoc/subdomain/tool_panel/spatial.yml similarity index 100% rename from subdomains/singlecell/tool_panel/spatial.yml rename to communities/spoc/subdomain/tool_panel/spatial.yml diff --git a/subdomains/singlecell/tool_panel/spatial.yml.lock b/communities/spoc/subdomain/tool_panel/spatial.yml.lock similarity index 100% rename from subdomains/singlecell/tool_panel/spatial.yml.lock rename to communities/spoc/subdomain/tool_panel/spatial.yml.lock diff --git a/subdomains/singlecell/tool_panel/tool_panel_view.yml b/communities/spoc/subdomain/tool_panel/tool_panel_view.yml similarity index 100% rename from subdomains/singlecell/tool_panel/tool_panel_view.yml rename to communities/spoc/subdomain/tool_panel/tool_panel_view.yml diff --git a/subdomains/singlecell/tool_panel/usegalaxy.org.au.yml b/communities/spoc/subdomain/tool_panel/usegalaxy.org.au.yml similarity index 100% rename from subdomains/singlecell/tool_panel/usegalaxy.org.au.yml rename to communities/spoc/subdomain/tool_panel/usegalaxy.org.au.yml diff --git a/subdomains/singlecell/usegalaxy.eu.yml b/communities/spoc/subdomain/usegalaxy.eu.yml similarity index 100% rename from subdomains/singlecell/usegalaxy.eu.yml rename to communities/spoc/subdomain/usegalaxy.eu.yml diff --git a/subdomains/singlecell/usegalaxy.eu/static/custom.css b/communities/spoc/subdomain/usegalaxy.eu/static/custom.css similarity index 100% rename from subdomains/singlecell/usegalaxy.eu/static/custom.css rename to communities/spoc/subdomain/usegalaxy.eu/static/custom.css diff --git a/subdomains/singlecell/usegalaxy.eu/templates/footer.html b/communities/spoc/subdomain/usegalaxy.eu/templates/footer.html similarity index 100% rename from subdomains/singlecell/usegalaxy.eu/templates/footer.html rename to communities/spoc/subdomain/usegalaxy.eu/templates/footer.html diff --git a/subdomains/singlecell/usegalaxy.org.au.yml b/communities/spoc/subdomain/usegalaxy.org.au.yml similarity index 100% rename from subdomains/singlecell/usegalaxy.org.au.yml rename to communities/spoc/subdomain/usegalaxy.org.au.yml diff --git a/subdomains/singlecell/usegalaxy.org.au/templates/footer.html b/communities/spoc/subdomain/usegalaxy.org.au/templates/footer.html similarity index 100% rename from subdomains/singlecell/usegalaxy.org.au/templates/footer.html rename to communities/spoc/subdomain/usegalaxy.org.au/templates/footer.html diff --git a/subdomains/singlecell/usegalaxy.org.yml b/communities/spoc/subdomain/usegalaxy.org.yml similarity index 100% rename from subdomains/singlecell/usegalaxy.org.yml rename to communities/spoc/subdomain/usegalaxy.org.yml diff --git a/sources/README.md b/sources/README.md new file mode 100644 index 00000000..9a6128f2 --- /dev/null +++ b/sources/README.md @@ -0,0 +1,358 @@ +Galaxy Codex +============ + +Galaxy Communities Dock aka Galaxy Codex is a catalog of Galaxy resources (tools, training, workflows) that can be filtered for any community. + +This repository stores the sources to build this catalog. The catalog is automatically updated every week. + +Any Galaxy community can be added to this project and benefit from the dedicated resources, including interactive tables that can be embedded into subdomains and website via an iframe. **Learn [how to add your community](https://training.galaxyproject.org/training-material//topics/dev/tutorials/community-tool-table/tutorial.html) in the dedicated GTN toturial**. + +# Prepare environment + +- Install virtualenv (if not already there) + + ``` + $ python3 -m pip install --user virtualenv + ``` + +- Create virtual environment + + ``` + $ python3 -m venv env + ``` + +- Activate virtual environment + + ``` + $ source env/bin/activate + ``` + +- Install requirements + + ``` + $ python3 -m pip install -r requirements.txt + ``` + +# Extract Galaxy Tool Suites + +![plot](docs/images/Preprint_flowchart.png) + +This tool automatically collects a table of all available Galaxy tool suites including their metadata. Therefore, various sources are parsed to collect the metadata, such as: +* GitHub (parsing each tool wrapper) +* bio.tools +* Bioconda +* Galaxy server (availability, statistics) + +The created table can be filtered to only show the tools relevant for a specific community. + +The tool table benefits from EDAM annotations of the tools, this requires, that the tools are annotation via bio.tools. +**Learn [how to improve metadata for Galaxy tools using the bio.tools registry](https://training.galaxyproject.org/training-material//topics/dev/tutorials/tool-annotation/tutorial.html)**. + +## Extract tool suites and filter per community automatically + +A GitHub action performs every week the following steps: + +- Extract all tools by + 1. Parsing tool GitHub repository from [Planemo monitor listed](https://github.com/galaxyproject/planemo-monitor) + 2. Checking in each repo, their `.shed.yaml` file and filter for categories, such as metagenomics + 3. Extracting metadata from the `.shed.yaml` + 4. Extracting the requirements in the macros or xml to get version supported in Galaxy + 5. Checking available against conda version + 6. Extracting bio.tools information if available in the macros or xml + 7. Checking available on the 3 main galaxy instances (usegalaxy.eu, usegalaxy.org, usegalaxy.org.au) + 8. Getting usage statistics form usegalaxy.eu +- Create an interactive table for all tools: [All tools](https://galaxyproject.github.io/galaxy_tool_metadata_extractor/) +- Filter the tool suite per community +- Create an interactive table for all registered communities, e.g. [microGalaxy](https://galaxyproject.github.io/galaxy_tool_metadata_extractor/microgalaxy/) + +## Extract all tools outside a GitHub Action + +1. Get an API key ([personal token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)) for GitHub +2. Export the GitHub API key as an environment variable: + + ``` + $ export GITHUB_API_KEY= + ``` + +3. Run the script to extract all tools + + ``` + $ bash sources/bin/extract_all_tools.sh + ``` + +The script will generate a TSV file with each tool found in the list of GitHub repositories and metadata for these tools: + +1. Galaxy wrapper id +2. Description +3. bio.tool id +4. bio.tool name +5. bio.tool description +6. EDAM operation +7. EDAM topic +8. Status +9. Source +10. ToolShed categories +11. ToolShed id +12. Galaxy wrapper owner +13. Galaxy wrapper source +14. Galaxy wrapper version +15. Conda id +16. Conda version + +## Filter tools based on their categories in the ToolShed outside a GitHub Action + +1. Run the extraction as explained before +2. (Optional) Create a text file with ToolShed categories for which tools need to be extracted: 1 ToolShed category per row ([example for microbial data analysis](data/microgalaxy/categories)) +3. (Optional) Create a TSV (tabular) file with tool status (1 tool suite per row) as 3 columns: + - ToolShed ids of tool suites (one per line) + - Boolean with True to keep and False to exclude + - Boolean with True if deprecated and False if not + + [Example for microbial data analysis](data/microgalaxy/tools_to_keep_exclude.tsv) + +4. Run the tool extractor script + + ``` + $ python sources/bin/extract_galaxy_tools.py \ + filter \ + --all \ + --ts-filtered + --filtered \ + [--categories ] \ + [--status ] + ``` + +# Training + +Materials are extracted from the Galaxy Training Network and extended with information from Plausible (visits), YouTube (views), feedback and tools. + +## Extract training material and filter per community automatically + +A GitHub action performs every week the following steps: + +- Extract all training by + 1. Parsing the GTN API + 2. Adding EDAM operations from the tools used in the tutorial + 3. Adding visit stats using the Plausible API + 4. Adding video view stats using YouTube API + 5. Adding feedback from the GTN API +- Create an interactive table for all tutorials +- Filter the training per community based on tags +- Create an interactive table for all registered communities + +## Extract tutorials from GTN outside a GitHub Action + +1. Get an API key ([personal token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)) for Plausible +2. Export the Plausible API key as an environment variable: + + ``` + $ export PLAUSIBLE_API_KEY= + ``` + +3. Run the script + + ``` + $ bash sources/bin/extract_all_tutorials.sh + ``` + +## Filter tutorials based on tags outside a GitHub Action + +1. Run the extraction as explained before +2. Create a file named `tutorial_tags` in your community `data` folder with the list of tutorial tags to keep +3. Run the following command + + ``` + $ python sources/bin/extract_gtn_tutorials.py \ + filter\ + --all "results/all_tutorials.json" \ + --filtered "results//tutorials.tsv" \ + --tags "data/communities//tutorial_tags" + ``` + +## Export + +### Generate wordcloud + +Example to generate a wordcloud for the Galaxy tool suites with size of names of tool suites depends on the number of tool users in 2022-2023 on usegalaxy.eu: + +![](results/all_tools_wordcloud.png) + +```bash +$ python sources/bin/create_wordcloud.py \ + --table "results/all_tools.tsv" \ + --name_col "Galaxy wrapper id" \ + --stat_col "No. of tool users (2022-2023) (usegalaxy.eu)" \ + --wordcloud_mask "data/usage_stats/wordcloud_mask.png" \ + --output "results/all_tools_wordcloud.png" \ +``` + +### Create interactive table in HTML + +Example to generate an HTML file with an interactive table with microGalaxy tools that should be kept (`True` in `To keep` column) + +```bash +$ python sources/bin/create_interactive_table.py \ + --table "results/microgalaxy/tools.tsv" \ + --remove-col "Reviewed" \ + --remove-col "To keep" \ + --filter-col "To keep" \ + --template "data/interactive_table_template.html" \ + --output "results/microgalaxy/index.html" +``` + +## Development + +### Tools + +To make a test run of the tool to check its functionalities follow [Usage](#Usage) to set-up the environnement and the API key, then run + +1. Tool extraction + + ```bash + $ bash sources/bin/extract_all_tools.sh test + ``` + + This runs the tool, but only parses the test repository [Galaxy-Tool-Metadata-Extractor-Test-Wrapper](https://github.com/paulzierep/Galaxy-Tool-Metadata-Extractor-Test-Wrapper) + +2. Tool filter + + ```bash + $ bash sources/bin/get_community_tools.sh test + ``` + +3. Create interactive table and wordcloud + + ```bash + $ bash sources/bin/format_tools.sh + ``` + +### Tutorials + +1. Tutorial extraction + + ```bash + $ bash sources/bin/extract_all_tutorials.sh test + ``` + +2. Tutorial filtering + + ```bash + $ bash sources/bin/get_community_tutorials.sh test + ``` + +# Galaxy Labs framework + +## What is a Galaxy Lab? + +A subdomain of a Galaxy server which caters to a specific research community. +The Lab may have a custom Welcome Page and tool panel to make it easier for +users to navigate the platform without the overhead of navigating 1000+ Galaxy +tools. + +> The primary goal of a Galaxy Lab should be to steer its users towards +> best-practice tools, workflows and tutorials. + +To see an example, check out Galaxy Australia's Genome Lab at +https://genome.usegalaxy.org.au. + + +## What does the framework do? + +It builds a custom Galaxy Lab welcome page from YAML and Markdown/HTML content. + +Anyone can build a Lab page using this framework, as long as their content is +accessible online by URL (typically GitHub). This means that you don't need any +web development skills to create a Lab page, though an understanding of HTML +and a flare for design is critical if you want to fine-tune the layout. + +Most of the work is in collecting +tools, workflows, tutorials and other resources that you believe would be most +relevant to a user of your Galaxy Lab - expect this to take some time! Labs +don't build themselves. They are a curated brain dump of a domain expert. + +The main feature of the labs engine is rendering structure content sections from +`section.yml` files: + +![Screenshot of Galaxy Lab sections](../docs/images/labs/labs-sections.png) + +It can also render: + +- Custom intro, conclusion and footer sections written in Markdown/HTML +- Arbitrary variable defined in `base.yml` (allowing for server-specific + context) +- A feedback form which posts submissions to a custom email address +- Contributors from a list of GitHub usernames defined in `CONTRIBUTORS` file +- Any other elements you can think to define in Markdown or HTML, like webforms + or modals (popups). + + +## How does it work? + +Briefly, you put your content somewhere online, ideally on Github. +It needs to have a very specific structure, so take a look at the +[example lab](https://github.com/usegalaxy-au/galaxy-media-site/tree/dev/webapp/home/labs/simple). +To get started, you can copy this folder to your own GitHub repository and +update the files with content relevant to your lab. + +You can then request the webpage like so: + +![Request Galaxy Lab URL](../docs/images/labs/labs-url.png) + +Requesting `base.yml` as above will return the default lab page, but the +convention is to request a `.yml` file that extends the `base.yml` +file with server-specific variables, like `site_name`. + +Currently the rendering engine is deployed at +https://site.usegalaxy.org.au/lab/export +but this is likely to change in the future when the Labs Engine becomes a +separate service. + + +## What do I need to know? + +Most of the framework can be understood by looking at the +[example lab](https://github.com/usegalaxy-au/galaxy-media-site/tree/dev/webapp/home/labs/simple), +but expect to spend some time understanding the `sections.yml` schema, which +looks something like this: + +```yml +# This is a page section +id: beginner +title: Learn to use Galaxy for single-cell analysis +tabs: + # Here we define a list of tabs for the section + - id: pathway + title: Learning pathways + heading_md: > # Markdown/HTML accepted + Connected tutorials to train you to perform single-cell analysis fast! + content: + # Each of these is a collapsable item - known as an "accordion" + - title_md: For first time Galaxy users + description_md: > + The Galaxy Training Network has a learning pathway to introduce both + using Galaxy and performing single-cell RNA-seq analysis. Check out the + Single-Cell RNA-seq analysis pathway to start your analysis journey! + button_link: https://training.galaxyproject.org/training-material/learning-pathways/intro_single_cell.html + button_icon: tutorial + button_tip: Go to learning pathway +``` + +The above content will create the following section: + +![example section from YAML content](../docs/images/labs/example-section.png) + +In addition to learning the Labs Engine YAML schema, an understanding of the +following is required: + +- GitHub +- Markdown +- HTML (optional, for building custom elements) +- CSS (optional, for custom styling) + + +## Where can I get more info? + +The Lab Engine is self-documenting! + +You should find everything you need to build a lab page at +https://site.usegalaxy.org.au/lab/export. diff --git a/bin/compare_tools.py b/sources/bin/compare_tools.py similarity index 100% rename from bin/compare_tools.py rename to sources/bin/compare_tools.py diff --git a/bin/create_interactive_table.py b/sources/bin/create_interactive_table.py similarity index 100% rename from bin/create_interactive_table.py rename to sources/bin/create_interactive_table.py diff --git a/bin/create_wordcloud.py b/sources/bin/create_wordcloud.py similarity index 100% rename from bin/create_wordcloud.py rename to sources/bin/create_wordcloud.py diff --git a/bin/extract_all_tools.sh b/sources/bin/extract_all_tools.sh similarity index 60% rename from bin/extract_all_tools.sh rename to sources/bin/extract_all_tools.sh index faa0822d..e15895ad 100755 --- a/bin/extract_all_tools.sh +++ b/sources/bin/extract_all_tools.sh @@ -1,32 +1,30 @@ #!/usr/bin/env bash -mkdir -p 'results/' - if [ ! -z $1 ] then if [ $1 == "test" ] then echo "Test tool extraction" - python bin/extract_galaxy_tools.py \ + python sources/bin/extract_galaxy_tools.py \ extract \ --api $GITHUB_API_KEY \ - --all-tsv "results/test_tools.tsv" \ - --all "results/test_tools.json" \ + --all-tsv "communities/all/resources/test_tools.tsv" \ + --all "communities/all/resources/test_tools.json" \ --planemo-repository-list "test.list" \ --test else - tsv_output="results/${1}_tools.tsv" - json_output="results/${1}_tools.json" + tsv_output="communities/all/resources/${1}_tools.tsv" + json_output="communities/all/resources/${1}_tools.json" if [[ $1 =~ "01" ]]; then - python bin/extract_galaxy_tools.py \ + python sources/bin/extract_galaxy_tools.py \ extract \ --api $GITHUB_API_KEY \ --all-tsv $tsv_output \ --all $json_output \ --planemo-repository-list $1 else - python bin/extract_galaxy_tools.py \ + python sources/bin/extract_galaxy_tools.py \ extract \ --api $GITHUB_API_KEY \ --all-tsv $tsv_output \ @@ -37,10 +35,10 @@ then fi else echo "Tool extraction" - python bin/extract_galaxy_tools.py \ + python sources/bin/extract_galaxy_tools.py \ extract \ --api $GITHUB_API_KEY \ - --all-tsv 'results/all_tools.tsv' \ - --all 'results/all_tools.json' + --all-tsv 'communities/all/resources/tools.tsv' \ + --all 'communities/all/resources/tools.json' fi diff --git a/sources/bin/extract_all_tutorials.sh b/sources/bin/extract_all_tutorials.sh new file mode 100644 index 00000000..3a9cbd37 --- /dev/null +++ b/sources/bin/extract_all_tutorials.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash + +if [ ! -z $1 ] +then + python sources/bin/extract_gtn_tutorials.py \ + extract \ + --all "communities/all/resources/test_tutorials.json" \ + --tools "communities/all/resources/tools.json" \ + --api $PLAUSIBLE_API_KEY \ + --test +else + python sources/bin/extract_gtn_tutorials.py \ + extract \ + --all "communities/all/resources/tutorials.json" \ + --tools "communities/all/resources/tools.json" \ + --api $PLAUSIBLE_API_KEY +fi \ No newline at end of file diff --git a/bin/extract_galaxy_tools.py b/sources/bin/extract_galaxy_tools.py similarity index 99% rename from bin/extract_galaxy_tools.py rename to sources/bin/extract_galaxy_tools.py index a7c2c408..cf3fdc4c 100644 --- a/bin/extract_galaxy_tools.py +++ b/sources/bin/extract_galaxy_tools.py @@ -37,7 +37,7 @@ project_path = Path(__file__).resolve().parent.parent # galaxy_tool_extractor folder usage_stats_path = project_path.joinpath("data", "usage_stats") conf_path = project_path.joinpath("data", "conf.yml") -public_servers = project_path.joinpath("results", "available_public_servers.csv") +public_servers = project_path.joinpath("data", "available_public_servers.csv") GALAXY_TOOL_STATS = { "No. of tool users (2022-2023) (usegalaxy.eu)": usage_stats_path.joinpath("tool_usage_per_user_2022_23_EU.csv"), diff --git a/bin/extract_gtn_tutorials.py b/sources/bin/extract_gtn_tutorials.py similarity index 100% rename from bin/extract_gtn_tutorials.py rename to sources/bin/extract_gtn_tutorials.py diff --git a/sources/bin/format_tools.sh b/sources/bin/format_tools.sh new file mode 100755 index 00000000..0cf9a46e --- /dev/null +++ b/sources/bin/format_tools.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +python sources/bin/create_interactive_table.py \ + --input "communities/all/resources/tools.tsv" \ + --template "sources/data/interactive_table_template.html" \ + --output "communities/all/resources/tools.html" + +python sources/bin/create_wordcloud.py \ + --input "communities/all/resources/tools.tsv" \ + --name-col "Galaxy wrapper id" \ + --stat-col "No. of tool users (2022-2023) (usegalaxy.eu)" \ + --wordcloud_mask "sources/data/usage_stats/wordcloud_mask.png" \ + --output "communities/all/resources/tools_wordcloud.png" \ \ No newline at end of file diff --git a/sources/bin/get_community_tools.sh b/sources/bin/get_community_tools.sh new file mode 100755 index 00000000..cb9baf63 --- /dev/null +++ b/sources/bin/get_community_tools.sh @@ -0,0 +1,66 @@ +#!/usr/bin/env bash + +# stop on error +set -e + +if [[ ! -z $1 && $1 == "test" ]]; then + python sources/bin/extract_galaxy_tools.py \ + filter \ + --all "communities/all/resources/tools.json" \ + --ts-filtered "communities/microgalaxy/resources/tools_filtered_by_ts_categories.tsv" \ + --filtered "communities/microgalaxy/resources/tools.tsv" \ + --categories "communities/microgalaxy/metadata/categories" \ + --status "communities/microgalaxy/metadata/tool_status.tsv" + + python sources/bin/create_interactive_table.py \ + --input "communities/microgalaxy/resources/tools.tsv" \ + --remove-col "Reviewed" \ + --remove-col "To keep" \ + --filter-col "To keep" \ + --template "sources/data/interactive_table_template.html" \ + --output "communities/microgalaxy/resources/tools.html" + + python sources/bin/create_wordcloud.py \ + --input "communities/microgalaxy/resources/tools.tsv" \ + --name-col "Galaxy wrapper id" \ + --stat-col "No. of tool users (2022-2023) (usegalaxy.eu)" \ + --wordcloud_mask "sources/data/usage_stats/wordcloud_mask.png" \ + --output "communities/microgalaxy/resources/tools_wordcloud.png" + +else + for com_data_fp in communities/* ; do + if [[ -d "$com_data_fp" && ! -L "$com_data_fp" ]]; then + community=`basename "$com_data_fp"` + + echo "$community"; + + mkdir -p "communities/$community/resources" + + python sources/bin/extract_galaxy_tools.py \ + filter \ + --all "communities/all/resources/tools.json" \ + --ts-filtered "communities/$community/resources/tools_filtered_by_ts_categories.tsv" \ + --filtered "communities/$community/resources/tools.tsv" \ + --categories "communities/$community/metadata/categories" \ + --status "communities/$community/metadata/tool_status.tsv" + + python sources/bin/create_interactive_table.py \ + --input "communities/$community/resources/tools.tsv" \ + --remove-col "Reviewed" \ + --remove-col "To keep" \ + --filter-col "To keep" \ + --template "sources/data/interactive_table_template.html" \ + --output "communities/$community/resources/tools.html" + + python sources/bin/create_wordcloud.py \ + --input "communities/$community/resources/tools.tsv" \ + --name-col "Galaxy wrapper id" \ + --stat-col "No. of tool users (2022-2023) (usegalaxy.eu)" \ + --wordcloud_mask "sources/data/usage_stats/wordcloud_mask.png" \ + --output "communities/$community/resources/tools_wordcloud.png" + + fi; + done +fi + + diff --git a/sources/bin/get_community_tutorials.sh b/sources/bin/get_community_tutorials.sh new file mode 100644 index 00000000..2f42080c --- /dev/null +++ b/sources/bin/get_community_tutorials.sh @@ -0,0 +1,38 @@ +#!/usr/bin/env bash + +if [ ! -z $1 ] +then + python sources/bin/extract_gtn_tutorials.py \ + filter \ + --all "communities/all/resources/test_tutorials.json" \ + --filtered "communities/microgalaxy/resources/test_tutorials.tsv" \ + --tags "communities/microgalaxy/metadata/tutorial_tags" + + python sources/bin/create_interactive_table.py \ + --input "communities/microgalaxy/resources/tutorials.tsv" \ + --template "sources/data/interactive_table_template.html" \ + --output "communities/microgalaxy/resources/tutorials.html" + +else + for com_data_fp in data/communities/* ; do + if [[ -d "$com_data_fp" && ! -L "$com_data_fp" ]]; then + community=`basename "$com_data_fp"` + + echo "$community"; + + if [[ -f "data/communities/$community/tutorial_tags" && -f "results/$community/tutorials.tsv" ]]; then + + python sources/bin/extract_gtn_tutorials.py \ + filter \ + --all "communities/all/resources/tutorials.json" \ + --filtered "communities/$community/resources/tutorials.tsv" \ + --tags "communities/$community/metadata/tutorial_tags" + + python sources/bin/create_interactive_table.py \ + --input "communities/$community/resources/tutorials.tsv" \ + --template "sources/data/interactive_table_template.html" \ + --output "communities/$community/resources/tutorials.html" + fi; + fi; + done +fi diff --git a/bin/get_public_galaxy_servers.py b/sources/bin/get_public_galaxy_servers.py similarity index 100% rename from bin/get_public_galaxy_servers.py rename to sources/bin/get_public_galaxy_servers.py diff --git a/subdomains/scripts/parse_tools_to_produce_yml_files.py b/sources/bin/parse_tools_to_produce_yml_files.py similarity index 100% rename from subdomains/scripts/parse_tools_to_produce_yml_files.py rename to sources/bin/parse_tools_to_produce_yml_files.py diff --git a/bin/shared.py b/sources/bin/shared.py similarity index 100% rename from bin/shared.py rename to sources/bin/shared.py diff --git a/bin/tests/test_get_public_server.py b/sources/bin/tests/test_get_public_server.py similarity index 100% rename from bin/tests/test_get_public_server.py rename to sources/bin/tests/test_get_public_server.py diff --git a/bin/tests/test_tool_stats.py b/sources/bin/tests/test_tool_stats.py similarity index 100% rename from bin/tests/test_tool_stats.py rename to sources/bin/tests/test_tool_stats.py diff --git a/subdomains/scripts/tools_au.py b/sources/bin/tools_au.py similarity index 100% rename from subdomains/scripts/tools_au.py rename to sources/bin/tools_au.py diff --git a/sources/bin/update_tools_to_keep_exclude.sh b/sources/bin/update_tools_to_keep_exclude.sh new file mode 100644 index 00000000..bb12aa7b --- /dev/null +++ b/sources/bin/update_tools_to_keep_exclude.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +for com_data_fp in communities/* ; do + if [[ -d "$com_data_fp" && ! -L "$com_data_fp" ]]; then + community=`basename "$com_data_fp"` + + echo "$community"; + + if [[ -f "communities/$community/metadata/tools_to_exclude" && -f "communities/$community/metadata/tools_to_keep" && -f "communities/$community/resources/tutorials.tsv" ]]; then + + python sources/bin/compare_tools.py \ + --filtered_tutorials "communities/$community/resources/tutorials.tsv" \ + --exclude "communities/$community/metadata/tools_to_exclude" \ + --keep "communities/$community/metadata/tools_to_keep" \ + --all_tools "communities/all/resources/tools.tsv" + fi; + fi; +done \ No newline at end of file diff --git a/sources/data/available_public_servers.csv b/sources/data/available_public_servers.csv new file mode 100644 index 00000000..81bac0b2 --- /dev/null +++ b/sources/data/available_public_servers.csv @@ -0,0 +1,37 @@ +name url +APOSTL http://apostl.moffitt.org/ +BF2I-MAP http://bf2i-galaxy.insa-lyon.fr:8080/ +BioBix http://galaxy.ugent.be/ +CIRM-CFBP https://iris.angers.inra.fr/galaxypub-cfbp +Center for Phage Technology (CPT) https://cpt.tamu.edu/galaxy-public/ +ChemFlow https://vm-chemflow-francegrille.eu/ +Coloc-stats https://hyperbrowser.uio.no/coloc-stats +CoralSNP https://coralsnp.science.psu.edu/galaxy/ +CropGalaxy http://cropgalaxy.excellenceinbreeding.org/ +Dintor http://dintor.eurac.edu/ +FreeBioinfo http://www.freebioinfo.org/ +GASLINI http://igg.cloud.ba.infn.it/galaxy +Galaxy@AuBi https://galaxy.mesocentre.uca.fr +Galaxy@Pasteur https://galaxy.pasteur.fr/ +GalaxyTrakr https://galaxytrakr.org/ +Genomic Hyperbrowser http://hyperbrowser.uio.no/hb/ +GigaGalaxy http://gigagalaxy.net/ +HyPhy HIV NGS Tools https://galaxy.hyphy.org/ +IPK Galaxy Blast Suite https://galaxy-web.ipk-gatersleben.de +ImmPort Galaxy https://www.immportgalaxy.org/ +InteractoMIX http://galaxy.interactomix.com/ +MISSISSIPPI https://mississippi.sorbonne-universite.fr +Mandoiu Lab https://neo.engr.uconn.edu/ +MiModD NacreousMap http://mapping-by-sequencing.vm.uni-freiburg.de:8080/ +Oqtans http://galaxy.inf.ethz.ch +Palfinder https://palfinder.ls.manchester.ac.uk/ +PepSimili http://pepsimili.e-nios.com:8080/ +PhagePromotor https://galaxy.bio.di.uminho.pt/ +UseGalaxy.be https://usegalaxy.be/ +UseGalaxy.cz https://usegalaxy.cz/ +UseGalaxy.eu https://usegalaxy.eu +UseGalaxy.fr https://usegalaxy.fr/ +UseGalaxy.no https://usegalaxy.no/ +UseGalaxy.org (Main) https://usegalaxy.org +UseGalaxy.org.au https://usegalaxy.org.au +Viral Variant Visualizer (VVV) https://viralvariant.anses.fr/ diff --git a/data/conf.yml b/sources/data/conf.yml similarity index 100% rename from data/conf.yml rename to sources/data/conf.yml diff --git a/data/interactive_table_template.html b/sources/data/interactive_table_template.html similarity index 100% rename from data/interactive_table_template.html rename to sources/data/interactive_table_template.html diff --git a/data/usage_stats/stats_utils.py b/sources/data/usage_stats/stats_utils.py similarity index 100% rename from data/usage_stats/stats_utils.py rename to sources/data/usage_stats/stats_utils.py diff --git a/data/usage_stats/tool_usage.csv b/sources/data/usage_stats/tool_usage.csv similarity index 100% rename from data/usage_stats/tool_usage.csv rename to sources/data/usage_stats/tool_usage.csv diff --git a/data/usage_stats/tool_usage_per_user_2022_23_EU.csv b/sources/data/usage_stats/tool_usage_per_user_2022_23_EU.csv similarity index 100% rename from data/usage_stats/tool_usage_per_user_2022_23_EU.csv rename to sources/data/usage_stats/tool_usage_per_user_2022_23_EU.csv diff --git a/data/usage_stats/total_tool_usage_EU.csv b/sources/data/usage_stats/total_tool_usage_EU.csv similarity index 100% rename from data/usage_stats/total_tool_usage_EU.csv rename to sources/data/usage_stats/total_tool_usage_EU.csv diff --git a/data/usage_stats/wordcloud_mask.png b/sources/data/usage_stats/wordcloud_mask.png similarity index 100% rename from data/usage_stats/wordcloud_mask.png rename to sources/data/usage_stats/wordcloud_mask.png diff --git a/subdomains/README.md b/subdomains/README.md deleted file mode 100644 index ae3c271d..00000000 --- a/subdomains/README.md +++ /dev/null @@ -1,116 +0,0 @@ -# Galaxy Labs framework - -## What is a Galaxy Lab? - -A subdomain of a Galaxy server which caters to a specific research community. -The Lab may have a custom Welcome Page and tool panel to make it easier for -users to navigate the platform without the overhead of navigating 1000+ Galaxy -tools. - -> The primary goal of a Galaxy Lab should be to steer its users towards -> best-practice tools, workflows and tutorials. - -To see an example, check out Galaxy Australia's Genome Lab at -https://genome.usegalaxy.org.au. - - -## What does the framework do? - -It builds a custom Galaxy Lab welcome page from YAML and Markdown/HTML content. - -Anyone can build a Lab page using this framework, as long as their content is -accessible online by URL (typically GitHub). This means that you don't need any -web development skills to create a Lab page, though an understanding of HTML -and a flare for design is critical if you want to fine-tune the layout. - -Most of the work is in collecting -tools, workflows, tutorials and other resources that you believe would be most -relevant to a user of your Galaxy Lab - expect this to take some time! Labs -don't build themselves. They are a curated brain dump of a domain expert. - -The main feature of the labs engine is rendering structure content sections from -`section.yml` files: - -![Screenshot of Galaxy Lab sections](../docs/images/labs/labs-sections.png) - -It can also render: - -- Custom intro, conclusion and footer sections written in Markdown/HTML -- Arbitrary variable defined in `base.yml` (allowing for server-specific - context) -- A feedback form which posts submissions to a custom email address -- Contributors from a list of GitHub usernames defined in `CONTRIBUTORS` file -- Any other elements you can think to define in Markdown or HTML, like webforms - or modals (popups). - - -## How does it work? - -Briefly, you put your content somewhere online, ideally on Github. -It needs to have a very specific structure, so take a look at the -[example lab](https://github.com/usegalaxy-au/galaxy-media-site/tree/dev/webapp/home/labs/simple). -To get started, you can copy this folder to your own GitHub repository and -update the files with content relevant to your lab. - -You can then request the webpage like so: - -![Request Galaxy Lab URL](../docs/images/labs/labs-url.png) - -Requesting `base.yml` as above will return the default lab page, but the -convention is to request a `.yml` file that extends the `base.yml` -file with server-specific variables, like `site_name`. - -Currently the rendering engine is deployed at -https://site.usegalaxy.org.au/lab/export -but this is likely to change in the future when the Labs Engine becomes a -separate service. - - -## What do I need to know? - -Most of the framework can be understood by looking at the -[example lab](https://github.com/usegalaxy-au/galaxy-media-site/tree/dev/webapp/home/labs/simple), -but expect to spend some time understanding the `sections.yml` schema, which -looks something like this: - -```yml -# This is a page section -id: beginner -title: Learn to use Galaxy for single-cell analysis -tabs: - # Here we define a list of tabs for the section - - id: pathway - title: Learning pathways - heading_md: > # Markdown/HTML accepted - Connected tutorials to train you to perform single-cell analysis fast! - content: - # Each of these is a collapsable item - known as an "accordion" - - title_md: For first time Galaxy users - description_md: > - The Galaxy Training Network has a learning pathway to introduce both - using Galaxy and performing single-cell RNA-seq analysis. Check out the - Single-Cell RNA-seq analysis pathway to start your analysis journey! - button_link: https://training.galaxyproject.org/training-material/learning-pathways/intro_single_cell.html - button_icon: tutorial - button_tip: Go to learning pathway -``` - -The above content will create the following section: - -![example section from YAML content](../docs/images/labs/example-section.png) - -In addition to learning the Labs Engine YAML schema, an understanding of the -following is required: - -- GitHub -- Markdown -- HTML (optional, for building custom elements) -- CSS (optional, for custom styling) - - -## Where can I get more info? - -The Lab Engine is self-documenting! - -You should find everything you need to build a lab page at -https://site.usegalaxy.org.au/lab/export.